From 28eba5e41f57e621d63c2d74c90f942190cb5e4d Mon Sep 17 00:00:00 2001 From: zc he Date: Wed, 20 Nov 2024 20:08:08 +0800 Subject: [PATCH] Fix single-use env and other fixes (#149) This PR 1. fix #146 , check the test cases in the new env.nu file, remind me if any format is missing. 2. force whitespace in between of binary expression: `1+1` should be command 3. simplify the unquoted rule with lexical precedence. --- grammar.js | 173 +- src/grammar.json | 14709 +- src/node-types.json | 39 +- src/parser.c | 666517 +++++++++++++++-------------- test/corpus/expr/binary-expr.nu | 6 +- test/corpus/expr/identifier.nu | 20 + test/corpus/pipe/env.nu | 133 + 7 files changed, 347014 insertions(+), 334583 deletions(-) create mode 100644 test/corpus/pipe/env.nu diff --git a/grammar.js b/grammar.js index 0a6e8df..dca986e 100644 --- a/grammar.js +++ b/grammar.js @@ -24,9 +24,7 @@ module.exports = grammar({ conflicts: ($) => [ [$._binary_predicate_parenthesized], - [$._expression, $._expr_binary_expression], [$._expression_parenthesized, $._expr_binary_expression_parenthesized], - [$._immediate_decimal], [$._match_pattern_list, $.val_list], [$._match_pattern_record, $.val_record], [$._match_pattern_record_variable, $._value], @@ -106,13 +104,7 @@ module.exports = grammar({ ), ); }, - - identifier: (_$) => { - const excluded = "\\[\\]\\-{}<>=\"`'@?,:."; - return token( - seq(none_of(excluded + "&*!^+#$"), repeat(none_of(excluded))), - ); - }, + identifier: (_$) => _identifier_rules(false), long_flag_identifier: (_$) => token.immediate(/[0-9\p{XID_Start}_][\p{XID_Continue}?_-]*/), @@ -589,18 +581,29 @@ module.exports = grammar({ pipe_element: ($) => choice( - seq($._expression, optional($.redirection)), + seq( + _env_variable_rule(false, $), + $._expression, + optional($.redirection), + ), + seq(_env_variable_rule(false, $), $.command), $._ctrl_expression, $.where_command, - $.command, ), pipe_element_parenthesized: ($) => choice( - seq($._expression_parenthesized, optional($.redirection)), + seq( + _env_variable_rule(true, $), + $._expression_parenthesized, + optional($.redirection), + ), + seq( + _env_variable_rule(true, $), + alias($._command_parenthesized, $.command), + ), $._ctrl_expression_parenthesized, alias($.where_command_parenthesized, $.where_command), - alias($._command_parenthesized, $.command), ), /// Scope Statements @@ -1231,6 +1234,20 @@ module.exports = grammar({ ); }, + /// Single-use env variables: FOO=BAR cmd + + env_var: ($) => + seq( + field( + "variable", + alias( + token(prec(PREC().low, seq(_identifier_rules(false), PUNC().eq))), + $.identifier, + ), + ), + field("value", alias(_identifier_rules(true), $.val_string)), + ), + /// Commands command: _command_rule(false), @@ -1318,6 +1335,15 @@ module.exports = grammar({ }, }); +/** + * @param {boolean} immediate + */ +function _identifier_rules(immediate) { + const func = immediate ? token.immediate : token; + const excluded = "\\[\\]\\-{}<>=\"`'@?,:."; + return func(seq(none_of(excluded + "&*!^+#$"), repeat(none_of(excluded)))); +} + /** * @param {string} field_name * @param {string} entry @@ -1561,6 +1587,15 @@ function _command_rule(parenthesized) { }; } +/** + * @param {boolean} parenthesized + * @param {any} $ + */ +function _env_variable_rule(parenthesized, $) { + const sep = parenthesized ? $._separator : $._space; + return repeat(seq($.env_var, repeat1(sep))); +} + /** * @param {boolean} parenthesized */ @@ -1629,7 +1664,7 @@ function _expr_binary_rule(parenthesized) { ...TABLE().map(([precedence, opr]) => { const seq_array = [ field("lhs", _expr), - field("opr", opr), + field("opr", operator_with_separator(opr, parenthesized)), field( "rhs", choice( @@ -1725,7 +1760,7 @@ function _decimal_rule(immediate) { optional(digits), optional(exponent), ), - seq(head_token(PUNC().dot), digits, optional(exponent)), + token(seq(head_token(PUNC().dot), digits, optional(exponent))), seq( token( seq( @@ -1742,6 +1777,7 @@ function _decimal_rule(immediate) { /** * @param {boolean} anonymous + * @param {boolean} with_end_decimal */ function _range_rule(anonymous, with_end_decimal = false) { // Divide each dot as a token to distinguish $.val_range and $.val_number @@ -1868,9 +1904,6 @@ function _unquoted_rule(type) { const pattern = token(seq(none_of(excluded_first), repeat(pattern_once))); const pattern_repeat = token(repeat(pattern_once)); const pattern_repeat1 = token(repeat1(pattern_once)); - const pattern_with_dot = none_of(excluded_common + "."); - const pattern_with_le = none_of(excluded_common + "<="); - const pattern_with_dollar = none_of(excluded_common + "$"); // because this catches almost anything, we want to ensure it is // picked as the a last resort after everything else has failed. @@ -1884,61 +1917,24 @@ function _unquoted_rule(type) { choice( token(prec(PREC().lowest, token(pattern))), - // distinguish between unquoted and val_range in cmd_arg seq( - $._val_range, choice( - token.immediate(pattern_with_dot), - token.immediate(PUNC().dot), + $._val_range, + $._val_number_decimal, + SPECIAL().pos_infinity, + SPECIAL().neg_infinity, + SPECIAL().not_a_number, ), - token.immediate(pattern_repeat), - ), - seq( - token(PUNC().dot), - token.immediate(pattern_with_dot), - token.immediate(pattern_repeat), - ), - seq( - OPR().range_inclusive, - token.immediate(pattern_with_le), - token.immediate(pattern_repeat), - ), - seq( - choice(OPR().range_inclusive2, OPR().range_exclusive), - token.immediate(pattern_with_dollar), - token.immediate(pattern_repeat), + token.immediate(prec(PREC().lowest, pattern_repeat1)), ), - seq( - OPR().range_inclusive, - token.immediate(PUNC().dot), - token.immediate(pattern_repeat), - ), - choice( - OPR().range_inclusive, - OPR().range_inclusive2, - OPR().range_exclusive, - ), - seq(OPR().range_inclusive, optional(token.immediate(pattern_once))), - seq(token(PUNC().dot), optional(token.immediate(pattern_with_dot))), - // distinguish between $.val_number and unquoted string starting with numeric characters seq( choice( - $._val_number_decimal, - token(SPECIAL().pos_infinity), - token(SPECIAL().neg_infinity), - token(SPECIAL().not_a_number), + OPR().range_inclusive, + OPR().range_inclusive2, + OPR().range_exclusive, ), - token.immediate(pattern_once), - token.immediate(pattern_repeat), - ), - - // recognize unquoted string starting with numeric characters - // e.g. 192.168.0.1 - seq( - $._val_number_decimal, - token.immediate(PUNC().dot), - token.immediate(pattern_repeat), + token.immediate(prec(PREC().lowest, pattern_repeat)), ), // recognize unquoted string starting with special patterns @@ -2071,6 +2067,25 @@ function open_brace() { return alias(token(seq(BRACK().open_brace, /\s*/)), BRACK().open_brace); } +/** + * group operator and its preceding/succeeding whitespace/newline + * @param {string} opr + * @param {boolean} parenthesized + */ +function operator_with_separator(opr, parenthesized) { + const sep = parenthesized ? choice(/[ \t]/, /\r?\n/) : /[ \t]/; + return alias(token(seq(repeat1(sep), opr, repeat1(sep))), opr); +} + +/** + * [ele1, array] -> array<[ele1, ele2]> + * @param {any} first + * @param {array} last_array + */ +function flatten_ops(first, last_array) { + return last_array.map((x) => [first, x]); +} + // operators function OPR() { return { @@ -2165,20 +2180,20 @@ function STATEMENT_PREC() { /// map of operators and their precedence function TABLE() { - const multiplicatives = choice( + const multiplicatives = [ OPR().times, OPR().divide, OPR().modulo, OPR().floor, - ); + ]; // `range` is not included here and is handled separately return [ - [PREC().power, choice(OPR().power, OPR().append)], - [PREC().multiplicative, multiplicatives], - [PREC().additive, choice(OPR().plus, OPR().minus)], - [PREC().bit_shift, choice(OPR().bit_shl, OPR().bit_shr)], - [PREC().regex, choice(OPR().regex_match, OPR().regex_not_match)], + ...flatten_ops(PREC().power, [OPR().power, OPR().append]), + ...flatten_ops(PREC().multiplicative, multiplicatives), + ...flatten_ops(PREC().additive, [OPR().plus, OPR().minus]), + ...flatten_ops(PREC().bit_shift, [OPR().bit_shl, OPR().bit_shr]), + ...flatten_ops(PREC().regex, [OPR().regex_match, OPR().regex_not_match]), [PREC().bit_and, OPR().bit_and], [PREC().bit_xor, OPR().bit_xor], [PREC().bit_or, OPR().bit_or], @@ -2194,26 +2209,26 @@ function BINARY() { } function PREDICATE() { - const memberships = choice( + const memberships = [ OPR().in, OPR().not_in, OPR().starts_with, OPR().ends_with, - ); + ]; - const comparatives = choice( + const comparatives = [ OPR().equal, OPR().not_equal, OPR().less_than, OPR().less_than_equal, OPR().greater_than, OPR().greater_than_equal, - ); + ]; return [ - [PREC().membership, memberships], - [PREC().comparative, comparatives], - [PREC().regex, choice(OPR().regex_match, OPR().regex_not_match)], + ...flatten_ops(PREC().membership, memberships), + ...flatten_ops(PREC().comparative, comparatives), + ...flatten_ops(PREC().regex, [OPR().regex_match, OPR().regex_not_match]), ]; } diff --git a/src/grammar.json b/src/grammar.json index 7047ceb..a2144fd 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4568,6 +4568,25 @@ { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "env_var" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_space" + } + } + ] + } + }, { "type": "SYMBOL", "name": "_expression" @@ -4587,16 +4606,40 @@ ] }, { - "type": "SYMBOL", - "name": "_ctrl_expression" + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "env_var" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_space" + } + } + ] + } + }, + { + "type": "SYMBOL", + "name": "command" + } + ] }, { "type": "SYMBOL", - "name": "where_command" + "name": "_ctrl_expression" }, { "type": "SYMBOL", - "name": "command" + "name": "where_command" } ] }, @@ -4606,6 +4649,25 @@ { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "env_var" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_separator" + } + } + ] + } + }, { "type": "SYMBOL", "name": "_expression_parenthesized" @@ -4624,6 +4686,39 @@ } ] }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "env_var" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_separator" + } + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_command_parenthesized" + }, + "named": true, + "value": "command" + } + ] + }, { "type": "SYMBOL", "name": "_ctrl_expression_parenthesized" @@ -4636,15 +4731,6 @@ }, "named": true, "value": "where_command" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_command_parenthesized" - }, - "named": true, - "value": "command" } ] }, @@ -5674,25 +5760,8 @@ "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "in" - }, - { - "type": "STRING", - "value": "not-in" - }, - { - "type": "STRING", - "value": "starts-with" - }, - { - "type": "STRING", - "value": "ends-with" - } - ] + "type": "STRING", + "value": "in" } }, { @@ -5743,7 +5812,7 @@ }, { "type": "PREC_LEFT", - "value": 10, + "value": 9, "content": { "type": "SEQ", "members": [ @@ -5771,36 +5840,92 @@ { "type": "FIELD", "name": "opr", + "content": { + "type": "STRING", + "value": "not-in" + } + }, + { + "type": "FIELD", + "name": "rhs", "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "==" + "type": "SYMBOL", + "name": "_value" }, { - "type": "STRING", - "value": "!=" + "type": "SYMBOL", + "name": "val_range" }, { - "type": "STRING", - "value": "<" + "type": "SYMBOL", + "name": "expr_unary" }, { - "type": "STRING", - "value": "<=" + "type": "SYMBOL", + "name": "expr_parenthesized" }, { - "type": "STRING", - "value": ">" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" }, { - "type": "STRING", - "value": ">=" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_where_predicate_lhs" + }, + { + "type": "SYMBOL", + "name": "val_variable" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" } ] } }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "STRING", + "value": "starts-with" + } + }, { "type": "FIELD", "name": "rhs", @@ -5849,7 +5974,7 @@ }, { "type": "PREC_LEFT", - "value": 8, + "value": 9, "content": { "type": "SEQ", "members": [ @@ -5878,17 +6003,8 @@ "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=~" - }, - { - "type": "STRING", - "value": "!~" - } - ] + "type": "STRING", + "value": "ends-with" } }, { @@ -5936,195 +6052,63 @@ } ] } - } - ] - }, - "_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value" - }, - { - "type": "SYMBOL", - "name": "expr_binary" - }, - { - "type": "SYMBOL", - "name": "expr_unary" - }, - { - "type": "SYMBOL", - "name": "val_range" - }, - { - "type": "SYMBOL", - "name": "expr_parenthesized" - } - ] - }, - "_expression_parenthesized": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value" - }, - { - "type": "SYMBOL", - "name": "expr_unary" - }, - { - "type": "SYMBOL", - "name": "val_range" - }, - { - "type": "SYMBOL", - "name": "expr_parenthesized" }, { - "type": "ALIAS", + "type": "PREC_LEFT", + "value": 10, "content": { - "type": "SYMBOL", - "name": "expr_binary_parenthesized" - }, - "named": true, - "value": "expr_binary" - } - ] - }, - "expr_unary": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "TOKEN", + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "not" + "type": "SYMBOL", + "name": "_where_predicate_lhs" }, { - "type": "PATTERN", - "value": "\\s" + "type": "SYMBOL", + "name": "val_variable" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" } ] } }, - "named": false, - "value": "not" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "val_bool" - }, - { - "type": "SYMBOL", - "name": "expr_parenthesized" - }, - { - "type": "SYMBOL", - "name": "val_variable" - }, - { - "type": "SYMBOL", - "name": "expr_unary" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "_expr_unary_minus" - } - ] - }, - "_expr_unary_minus": { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "(" - } - }, - { - "type": "SYMBOL", - "name": "_block_body" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "expr_binary": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_LEFT", - "value": 14, - "content": { - "type": "SEQ", - "members": [ { "type": "FIELD", - "name": "lhs", + "name": "opr", "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" + "type": "STRING", + "value": "==" } }, { "type": "FIELD", - "name": "opr", + "name": "rhs", "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "**" + "type": "SYMBOL", + "name": "_value" }, { - "type": "STRING", - "value": "++" - } - ] - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "CHOICE", - "members": [ + "type": "SYMBOL", + "name": "val_range" + }, { "type": "SYMBOL", - "name": "_expr_binary_expression" + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" }, { "type": "ALIAS", @@ -6152,43 +6136,39 @@ }, { "type": "PREC_LEFT", - "value": 13, + "value": 10, "content": { "type": "SEQ", "members": [ { "type": "FIELD", "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" - } - }, - { - "type": "FIELD", - "name": "opr", "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "/" + "type": "SYMBOL", + "name": "_where_predicate_lhs" }, { - "type": "STRING", - "value": "mod" + "type": "SYMBOL", + "name": "val_variable" }, { - "type": "STRING", - "value": "//" + "type": "SYMBOL", + "name": "expr_parenthesized" } ] } }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "STRING", + "value": "!=" + } + }, { "type": "FIELD", "name": "rhs", @@ -6197,7 +6177,19 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression" + "name": "_value" + }, + { + "type": "SYMBOL", + "name": "val_range" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" }, { "type": "ALIAS", @@ -6225,35 +6217,39 @@ }, { "type": "PREC_LEFT", - "value": 12, + "value": 10, "content": { "type": "SEQ", "members": [ { "type": "FIELD", "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" - } - }, - { - "type": "FIELD", - "name": "opr", "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "+" + "type": "SYMBOL", + "name": "_where_predicate_lhs" }, { - "type": "STRING", - "value": "-" + "type": "SYMBOL", + "name": "val_variable" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" } ] } }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "STRING", + "value": "<" + } + }, { "type": "FIELD", "name": "rhs", @@ -6262,7 +6258,19 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression" + "name": "_value" + }, + { + "type": "SYMBOL", + "name": "val_range" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" }, { "type": "ALIAS", @@ -6290,35 +6298,39 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 10, "content": { "type": "SEQ", "members": [ { "type": "FIELD", "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" - } - }, - { - "type": "FIELD", - "name": "opr", "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "bit-shl" + "type": "SYMBOL", + "name": "_where_predicate_lhs" }, { - "type": "STRING", - "value": "bit-shr" + "type": "SYMBOL", + "name": "val_variable" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" } ] } }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "STRING", + "value": "<=" + } + }, { "type": "FIELD", "name": "rhs", @@ -6327,72 +6339,19 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression" + "name": "_value" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "unquoted" - }, - "named": true, - "value": "val_string" + "type": "SYMBOL", + "name": "val_range" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_with_expr" - }, - "named": true, - "value": "val_string" - } - ] - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 8, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" - } - }, - { - "type": "FIELD", - "name": "opr", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=~" + "type": "SYMBOL", + "name": "expr_unary" }, - { - "type": "STRING", - "value": "!~" - } - ] - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "CHOICE", - "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression" + "name": "expr_parenthesized" }, { "type": "ALIAS", @@ -6420,80 +6379,37 @@ }, { "type": "PREC_LEFT", - "value": 7, + "value": 10, "content": { "type": "SEQ", "members": [ { "type": "FIELD", "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" - } - }, - { - "type": "FIELD", - "name": "opr", - "content": { - "type": "STRING", - "value": "bit-and" - } - }, - { - "type": "FIELD", - "name": "rhs", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression" + "name": "_where_predicate_lhs" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "unquoted" - }, - "named": true, - "value": "val_string" + "type": "SYMBOL", + "name": "val_variable" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_with_expr" - }, - "named": true, - "value": "val_string" + "type": "SYMBOL", + "name": "expr_parenthesized" } ] } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" - } }, { "type": "FIELD", "name": "opr", "content": { "type": "STRING", - "value": "bit-xor" + "value": ">" } }, { @@ -6504,7 +6420,19 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression" + "name": "_value" + }, + { + "type": "SYMBOL", + "name": "val_range" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" }, { "type": "ALIAS", @@ -6532,7 +6460,7 @@ }, { "type": "PREC_LEFT", - "value": 5, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -6540,8 +6468,21 @@ "type": "FIELD", "name": "lhs", "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_where_predicate_lhs" + }, + { + "type": "SYMBOL", + "name": "val_variable" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" + } + ] } }, { @@ -6549,7 +6490,7 @@ "name": "opr", "content": { "type": "STRING", - "value": "bit-or" + "value": ">=" } }, { @@ -6560,7 +6501,19 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression" + "name": "_value" + }, + { + "type": "SYMBOL", + "name": "val_range" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" }, { "type": "ALIAS", @@ -6588,7 +6541,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 8, "content": { "type": "SEQ", "members": [ @@ -6596,8 +6549,21 @@ "type": "FIELD", "name": "lhs", "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_where_predicate_lhs" + }, + { + "type": "SYMBOL", + "name": "val_variable" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" + } + ] } }, { @@ -6605,7 +6571,7 @@ "name": "opr", "content": { "type": "STRING", - "value": "and" + "value": "=~" } }, { @@ -6616,7 +6582,19 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression" + "name": "_value" + }, + { + "type": "SYMBOL", + "name": "val_range" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" }, { "type": "ALIAS", @@ -6644,7 +6622,7 @@ }, { "type": "PREC_LEFT", - "value": 3, + "value": 8, "content": { "type": "SEQ", "members": [ @@ -6652,8 +6630,21 @@ "type": "FIELD", "name": "lhs", "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_where_predicate_lhs" + }, + { + "type": "SYMBOL", + "name": "val_variable" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" + } + ] } }, { @@ -6661,7 +6652,7 @@ "name": "opr", "content": { "type": "STRING", - "value": "xor" + "value": "!~" } }, { @@ -6672,7 +6663,19 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression" + "name": "_value" + }, + { + "type": "SYMBOL", + "name": "val_range" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" }, { "type": "ALIAS", @@ -6697,66 +6700,158 @@ } ] } + } + ] + }, + "_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_value" }, { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" - } - }, - { - "type": "FIELD", - "name": "opr", - "content": { - "type": "STRING", - "value": "or" - } - }, - { - "type": "FIELD", - "name": "rhs", + "type": "SYMBOL", + "name": "expr_binary" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "val_range" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" + } + ] + }, + "_expression_parenthesized": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_value" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "val_range" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "expr_binary_parenthesized" + }, + "named": true, + "value": "expr_binary" + } + ] + }, + "expr_unary": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_expr_binary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "unquoted" - }, - "named": true, - "value": "val_string" + "type": "STRING", + "value": "not" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_with_expr" - }, - "named": true, - "value": "val_string" + "type": "PATTERN", + "value": "\\s" } ] } - } - ] + }, + "named": false, + "value": "not" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "val_bool" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" + }, + { + "type": "SYMBOL", + "name": "val_variable" + }, + { + "type": "SYMBOL", + "name": "expr_unary" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "_expr_unary_minus" + } + ] + }, + "_expr_unary_minus": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "-" } }, + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "(" + } + }, + { + "type": "SYMBOL", + "name": "_block_body" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "expr_binary": { + "type": "CHOICE", + "members": [ { "type": "PREC_LEFT", - "value": 9, + "value": 14, "content": { "type": "SEQ", "members": [ @@ -6772,25 +6867,35 @@ "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "in" - }, - { - "type": "STRING", - "value": "not-in" - }, - { - "type": "STRING", - "value": "starts-with" - }, - { - "type": "STRING", - "value": "ends-with" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "**" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } - ] + }, + "named": false, + "value": "**" } }, { @@ -6829,7 +6934,7 @@ }, { "type": "PREC_LEFT", - "value": 10, + "value": 14, "content": { "type": "SEQ", "members": [ @@ -6845,33 +6950,35 @@ "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "==" - }, - { - "type": "STRING", - "value": "!=" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "<=" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "STRING", - "value": ">=" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "++" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } - ] + }, + "named": false, + "value": "++" } }, { @@ -6910,7 +7017,7 @@ }, { "type": "PREC_LEFT", - "value": 8, + "value": 13, "content": { "type": "SEQ", "members": [ @@ -6926,25 +7033,43 @@ "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=~" - }, - { - "type": "STRING", - "value": "!~" - } - ] - } - }, - { - "type": "FIELD", - "name": "rhs", - "content": { - "type": "CHOICE", - "members": [ + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "*" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ { "type": "SYMBOL", "name": "_expr_binary_expression" @@ -6972,15 +7097,10 @@ } ] } - } - ] - }, - "expr_binary_parenthesized": { - "type": "CHOICE", - "members": [ + }, { "type": "PREC_LEFT", - "value": 14, + "value": 13, "content": { "type": "SEQ", "members": [ @@ -6989,38 +7109,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "**" - }, - { - "type": "STRING", - "value": "++" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + }, + "named": false, + "value": "/" } }, { @@ -7031,7 +7155,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7053,13 +7177,6 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } @@ -7075,46 +7192,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": "mod" - }, - { - "type": "STRING", - "value": "//" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "mod" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + }, + "named": false, + "value": "mod" } }, { @@ -7125,7 +7238,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7147,20 +7260,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 12, + "value": 13, "content": { "type": "SEQ", "members": [ @@ -7169,38 +7275,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "//" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + }, + "named": false, + "value": "//" } }, { @@ -7211,7 +7321,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7233,20 +7343,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -7255,38 +7358,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" } }, { - "type": "REPEAT", + "type": "FIELD", + "name": "opr", "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "FIELD", - "name": "opr", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "bit-shl" - }, - { - "type": "STRING", - "value": "bit-shr" - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "+" } }, { @@ -7297,7 +7404,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7319,20 +7426,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 8, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -7341,38 +7441,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=~" - }, - { - "type": "STRING", - "value": "!~" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + }, + "named": false, + "value": "-" } }, { @@ -7383,7 +7487,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7405,20 +7509,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 7, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -7427,29 +7524,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "STRING", - "value": "bit-and" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "bit-shl" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "bit-shl" } }, { @@ -7460,7 +7570,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7482,20 +7592,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 6, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -7504,29 +7607,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "STRING", - "value": "bit-xor" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "bit-shr" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "bit-shr" } }, { @@ -7537,7 +7653,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7559,20 +7675,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 5, + "value": 8, "content": { "type": "SEQ", "members": [ @@ -7581,29 +7690,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "STRING", - "value": "bit-or" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "=~" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "=~" } }, { @@ -7614,7 +7736,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7636,20 +7758,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 4, + "value": 8, "content": { "type": "SEQ", "members": [ @@ -7658,29 +7773,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "STRING", - "value": "and" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "!~" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "!~" } }, { @@ -7691,7 +7819,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7713,20 +7841,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 3, + "value": 7, "content": { "type": "SEQ", "members": [ @@ -7735,29 +7856,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "STRING", - "value": "xor" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "bit-and" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "bit-and" } }, { @@ -7768,7 +7902,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7790,20 +7924,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 2, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -7812,29 +7939,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "STRING", - "value": "or" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "bit-xor" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "bit-xor" } }, { @@ -7845,7 +7985,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7867,20 +8007,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 9, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -7889,46 +8022,42 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "in" - }, - { - "type": "STRING", - "value": "not-in" - }, - { - "type": "STRING", - "value": "starts-with" - }, - { - "type": "STRING", - "value": "ends-with" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "bit-or" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + }, + "named": false, + "value": "bit-or" } }, { @@ -7939,7 +8068,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -7961,20 +8090,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 10, + "value": 4, "content": { "type": "SEQ", "members": [ @@ -7983,54 +8105,125 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" } }, { "type": "FIELD", "name": "opr", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "==" - }, - { - "type": "STRING", - "value": "!=" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "<=" - }, - { - "type": "STRING", - "value": ">" - }, + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "and" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "and" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ { - "type": "STRING", - "value": ">=" + "type": "SYMBOL", + "name": "_expr_binary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" } ] } - }, + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ { - "type": "REPEAT", + "type": "FIELD", + "name": "lhs", "content": { "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "xor" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "xor" } }, { @@ -8041,7 +8234,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -8063,20 +8256,13 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } }, { "type": "PREC_LEFT", - "value": 8, + "value": 2, "content": { "type": "SEQ", "members": [ @@ -8085,38 +8271,125 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" } }, { - "type": "REPEAT", + "type": "FIELD", + "name": "opr", "content": { - "type": "SYMBOL", - "name": "_newline" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "or" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "or" } }, { "type": "FIELD", - "name": "opr", + "name": "rhs", "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "=~" + "type": "SYMBOL", + "name": "_expr_binary_expression" }, { - "type": "STRING", - "value": "!~" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" } ] } - }, + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ { - "type": "REPEAT", + "type": "FIELD", + "name": "lhs", "content": { "type": "SYMBOL", - "name": "_newline" + "name": "_expr_binary_expression" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "in" } }, { @@ -8127,7 +8400,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expr_binary_expression_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", @@ -8149,2538 +8422,4638 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } } ] } - } - ] - }, - "_expr_binary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value" - }, - { - "type": "SYMBOL", - "name": "expr_binary" - }, - { - "type": "SYMBOL", - "name": "expr_unary" - }, - { - "type": "SYMBOL", - "name": "expr_parenthesized" - } - ] - }, - "_expr_binary_expression_parenthesized": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expr_binary_parenthesized" - }, - "named": true, - "value": "expr_binary" - }, - { - "type": "SYMBOL", - "name": "expr_unary" - }, - { - "type": "SYMBOL", - "name": "expr_parenthesized" - } - ] - }, - "expr_parenthesized": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_parenthesized_body" - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "cell_path" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_spread_parenthesized": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "...(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_parenthesized_body" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "cell_path" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_expr_parenthesized_immediate": { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "(" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_parenthesized_body" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_parenthesized_body": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminator" - } - }, - { - "type": "REPEAT", + "type": "PREC_LEFT", + "value": 9, "content": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_block_body_statement_parenthesized" + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression" + } }, { - "type": "REPEAT1", + "type": "FIELD", + "name": "opr", "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "STRING", - "value": ";" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "not-in" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } - ] + }, + "named": false, + "value": "not-in" } - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "SYMBOL", - "name": "_block_body_statement_parenthesized" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminator" - } - } - ] - }, - "val_range": { - "type": "PREC_RIGHT", - "value": 15, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ + }, { "type": "FIELD", - "name": "start", + "name": "rhs", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "expr_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_val_number_decimal" + "name": "unquoted" }, "named": true, - "value": "val_number" + "value": "val_string" }, { - "type": "SYMBOL", - "name": "val_variable" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" } ] } - }, + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "lhs", "content": { - "type": "STRING", - "value": ".." + "type": "SYMBOL", + "name": "_expr_binary_expression" } }, { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "opr", "content": { - "type": "STRING", - "value": "." - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { + "type": "ALIAS", + "content": { "type": "TOKEN", "content": { - "type": "STRING", - "value": "..=" + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "starts-with" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "..<" - } - } - ] + "named": false, + "value": "starts-with" + } }, { "type": "FIELD", - "name": "end", + "name": "rhs", "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression" + }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_expr_parenthesized_immediate" + "name": "unquoted" }, "named": true, - "value": "expr_parenthesized" + "value": "val_string" }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_immediate_decimal" + "name": "_unquoted_with_expr" }, "named": true, - "value": "val_number" - }, - { - "type": "SYMBOL", - "name": "val_variable" + "value": "val_string" } ] } } ] - }, - { + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { "type": "SEQ", "members": [ { - "type": "TOKEN", + "type": "FIELD", + "name": "lhs", "content": { - "type": "STRING", - "value": ".." + "type": "SYMBOL", + "name": "_expr_binary_expression" } }, { "type": "FIELD", - "name": "step", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "ends-with" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "ends-with" + } + }, + { + "type": "FIELD", + "name": "rhs", "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression" + }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_expr_parenthesized_immediate" + "name": "unquoted" }, "named": true, - "value": "expr_parenthesized" + "value": "val_string" }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_immediate_decimal" + "name": "_unquoted_with_expr" }, "named": true, - "value": "val_number" - }, - { - "type": "SYMBOL", - "name": "val_variable" + "value": "val_string" } ] } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression" + } }, { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", "content": { - "type": "STRING", - "value": "..=" + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "..<" - } - } - ] + "named": false, + "value": "==" + } }, { "type": "FIELD", - "name": "end", + "name": "rhs", "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression" + }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_expr_parenthesized_immediate" + "name": "unquoted" }, "named": true, - "value": "expr_parenthesized" + "value": "val_string" }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_immediate_decimal" + "name": "_unquoted_with_expr" }, "named": true, - "value": "val_number" - }, - { - "type": "SYMBOL", - "name": "val_variable" + "value": "val_string" } ] } } ] - }, - { + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { "type": "SEQ", "members": [ { "type": "FIELD", - "name": "start", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] + } + }, + "named": false, + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "rhs", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "expr_parenthesized" + "name": "_expr_binary_expression" }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_val_number_decimal" + "name": "unquoted" }, "named": true, - "value": "val_number" + "value": "val_string" }, { - "type": "SYMBOL", - "name": "val_variable" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" } ] } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { - "type": "FIELD", - "name": "step", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_expr_parenthesized_immediate" - }, - "named": true, - "value": "expr_parenthesized" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_immediate_decimal" - }, - "named": true, - "value": "val_number" - }, - { - "type": "SYMBOL", - "name": "val_variable" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "..=" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "..<" - } - } - ] + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression" + } }, { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "end", + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "REPEAT1", "content": { - "type": "SYMBOL", - "name": "_expr_parenthesized_immediate" - }, - "named": true, - "value": "expr_parenthesized" + "type": "PATTERN", + "value": "[ \\t]" + } }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_immediate_decimal" - }, - "named": true, - "value": "val_number" + "type": "STRING", + "value": "<" }, { - "type": "SYMBOL", - "name": "val_variable" + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } } ] } }, - { - "type": "BLANK" - } - ] + "named": false, + "value": "<" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } } ] } - ] - } - }, - "_val_range": { - "type": "PREC_RIGHT", - "value": 14, - "content": { - "type": "CHOICE", - "members": [ - { + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_val_number_decimal" - }, - { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "lhs", "content": { - "type": "STRING", - "value": ".." + "type": "SYMBOL", + "name": "_expr_binary_expression" } }, { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "opr", "content": { - "type": "STRING", - "value": "." - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { + "type": "ALIAS", + "content": { "type": "TOKEN", "content": { - "type": "STRING", - "value": "..=" + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "..<" - } - } - ] + "named": false, + "value": "<=" + } }, { - "type": "SYMBOL", - "name": "_immediate_decimal" + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } } ] - }, - { + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { "type": "SEQ", "members": [ { - "type": "TOKEN", + "type": "FIELD", + "name": "lhs", "content": { - "type": "STRING", - "value": ".." + "type": "SYMBOL", + "name": "_expr_binary_expression" } }, { - "type": "SYMBOL", - "name": "_immediate_decimal" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", "content": { - "type": "STRING", - "value": "..=" + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "..<" - } - } - ] - }, - { - "type": "SYMBOL", - "name": "_immediate_decimal" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_val_number_decimal" + "named": false, + "value": ">" + } }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ".." - } + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" }, - { + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { "type": "SYMBOL", - "name": "_immediate_decimal" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "..=" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "..<" + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_immediate_decimal" - }, - { - "type": "BLANK" - } - ] + ] + } } ] } - ] - } - }, - "_val_range_with_end": { - "type": "PREC_RIGHT", - "value": 14, - "content": { - "type": "CHOICE", - "members": [ - { + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_val_number_decimal" - }, - { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "lhs", "content": { - "type": "STRING", - "value": ".." + "type": "SYMBOL", + "name": "_expr_binary_expression" } }, { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "opr", "content": { - "type": "STRING", - "value": "." - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "..=" - } - }, - { + "type": "ALIAS", + "content": { "type": "TOKEN", "content": { - "type": "STRING", - "value": "..<" + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": ">=" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } - } - ] + }, + "named": false, + "value": ">=" + } }, { - "type": "SYMBOL", - "name": "_immediate_decimal" + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } } ] - }, - { + } + }, + { + "type": "PREC_LEFT", + "value": 8, + "content": { "type": "SEQ", "members": [ { - "type": "TOKEN", + "type": "FIELD", + "name": "lhs", "content": { - "type": "STRING", - "value": ".." + "type": "SYMBOL", + "name": "_expr_binary_expression" } }, { - "type": "SYMBOL", - "name": "_immediate_decimal" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", "content": { - "type": "STRING", - "value": "..=" + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { + "type": "STRING", + "value": "=~" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + } + ] } }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "..<" - } - } - ] + "named": false, + "value": "=~" + } }, { - "type": "SYMBOL", - "name": "_immediate_decimal" + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } } ] - }, - { + } + }, + { + "type": "PREC_LEFT", + "value": 8, + "content": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_val_number_decimal" + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression" + } }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } + }, + { "type": "STRING", - "value": ".." + "value": "!~" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[ \\t]" + } } - }, - { - "type": "SYMBOL", - "name": "_immediate_decimal" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "..=" + ] } }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "..<" - } - } - ] + "named": false, + "value": "!~" + } }, { - "type": "SYMBOL", - "name": "_immediate_decimal" - } - ] - } - ] - } - }, - "_immediate_decimal": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] } - ] - } - ] - }, + } + ] + } + } + ] + }, + "expr_binary_parenthesized": { + "type": "CHOICE", + "members": [ { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { "type": "STRING", - "value": "+" + "value": "**" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } } - } - ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" + ] } - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + }, + "named": false, + "value": "**" } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] } - ] - } - ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } }, { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { "type": "STRING", - "value": "+" + "value": "++" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } } - } - ] + ] + } }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" + "named": false, + "value": "++" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" } - } - ] - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + ] } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" - } - ] - } - ] + ] + } }, { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { "type": "STRING", - "value": "-" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "+" - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "_+" + "value": "*" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." + ] } }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" + "named": false, + "value": "*" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" } - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" } - ] - } - ] - } - ] - }, - "_value": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "val_variable" - }, - { - "type": "SYMBOL", - "name": "val_nothing" - }, - { - "type": "SYMBOL", - "name": "val_bool" - }, - { - "type": "SYMBOL", - "name": "val_number" - }, - { - "type": "SYMBOL", - "name": "val_duration" - }, - { - "type": "SYMBOL", - "name": "val_filesize" - }, - { - "type": "SYMBOL", - "name": "val_binary" - }, - { - "type": "SYMBOL", - "name": "val_string" - }, - { - "type": "SYMBOL", - "name": "val_interpolated" - }, - { - "type": "SYMBOL", - "name": "val_date" - }, - { - "type": "SYMBOL", - "name": "val_list" - }, - { - "type": "SYMBOL", - "name": "val_record" - }, - { - "type": "SYMBOL", - "name": "val_table" - }, - { - "type": "SYMBOL", - "name": "val_closure" - } - ] - }, - "val_nothing": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "null" - }, - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "(" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ")" } - } - ] - } - ] - }, - "val_bool": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "true" - }, - { - "type": "STRING", - "value": "false" - } - ] - }, - "_spread_variable": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "...$" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" + ] } }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "cell_path" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "val_variable": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "FIELD", - "name": "name", + "type": "PREC_LEFT", + "value": 13, "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "nu" - }, + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, { - "type": "STRING", - "value": "in" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } }, { - "type": "STRING", - "value": "env" + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "/" + } }, { - "type": "SYMBOL", - "name": "identifier" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } } ] } }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "cell_path" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "val_number": { - "type": "SYMBOL", - "name": "_val_number" - }, - "_val_number_decimal": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "TOKEN", - "content": { + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { "type": "STRING", - "value": "+" + "value": "mod" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } } - } - ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" + ] } - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + }, + "named": false, + "value": "mod" } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "-" - } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "+" - } - } - ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" } - } - ] - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + ] } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" - } - ] - } - ] + ] + } }, { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { "type": "STRING", - "value": "-" + "value": "//" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } } + ] + } + }, + "named": false, + "value": "//" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" }, - { - "type": "TOKEN", - "content": { + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { "type": "STRING", "value": "+" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "_+" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." + ] } }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\d_]*\\d[\\d_]*" + "named": false, + "value": "+" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" } - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" - } - }, - { - "type": "BLANK" + ] } - ] - } - ] - } - ] - }, - "_val_number": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_val_number_decimal" - }, - { - "type": "PATTERN", - "value": "0x[0-9a-fA-F_]+" - }, - { - "type": "PATTERN", - "value": "0b[01_]+" - }, - { - "type": "PATTERN", - "value": "0o[0-7_]+" - }, - { - "type": "PATTERN", - "value": "[iI][nN][fF]([iI][nN][iI][tT][yY])?" - }, - { - "type": "PATTERN", - "value": "-[iI][nN][fF]([iI][nN][iI][tT][yY])?" - }, - { - "type": "PATTERN", - "value": "[nN][aA][nN]" - } - ] - }, - "val_duration": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "value", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_val_number_decimal" - }, - "named": true, - "value": "val_number" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] } }, { - "type": "FIELD", - "name": "unit", + "type": "PREC_LEFT", + "value": 12, "content": { - "type": "SYMBOL", - "name": "duration_unit" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "-" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] } - } - ] - }, - "val_filesize": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "0b" }, { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "value", - "content": { - "type": "ALIAS", + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", "content": { "type": "SYMBOL", - "name": "_val_number_decimal" - }, - "named": true, - "value": "val_number" - } - }, - { - "type": "FIELD", - "name": "unit", - "content": { - "type": "SYMBOL", - "name": "filesize_unit" + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "bit-shl" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "bit-shl" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } } - } - ] - } - ] - }, - "filesize_unit": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "b" - }, - { - "type": "STRING", - "value": "B" - }, - { - "type": "STRING", - "value": "kb" - }, - { - "type": "STRING", - "value": "kB" - }, - { - "type": "STRING", - "value": "Kb" - }, - { - "type": "STRING", - "value": "KB" - }, - { - "type": "STRING", - "value": "mb" - }, - { - "type": "STRING", - "value": "mB" - }, - { - "type": "STRING", - "value": "Mb" - }, - { - "type": "STRING", - "value": "MB" - }, - { - "type": "STRING", - "value": "gb" - }, - { - "type": "STRING", - "value": "gB" - }, - { - "type": "STRING", - "value": "Gb" - }, - { - "type": "STRING", - "value": "GB" - }, - { - "type": "STRING", - "value": "tb" - }, - { - "type": "STRING", - "value": "tB" - }, - { - "type": "STRING", - "value": "Tb" - }, - { - "type": "STRING", - "value": "TB" - }, - { - "type": "STRING", - "value": "pb" - }, - { - "type": "STRING", - "value": "pB" - }, - { - "type": "STRING", - "value": "Pb" - }, - { - "type": "STRING", - "value": "PB" - }, - { - "type": "STRING", - "value": "eb" - }, - { - "type": "STRING", - "value": "eB" - }, - { - "type": "STRING", - "value": "Eb" - }, - { - "type": "STRING", - "value": "EB" - }, - { - "type": "STRING", - "value": "kib" - }, - { - "type": "STRING", - "value": "kiB" - }, - { - "type": "STRING", - "value": "kIB" - }, - { - "type": "STRING", - "value": "kIb" - }, - { - "type": "STRING", - "value": "Kib" - }, - { - "type": "STRING", - "value": "KIb" - }, - { - "type": "STRING", - "value": "KIB" - }, - { - "type": "STRING", - "value": "mib" - }, - { - "type": "STRING", - "value": "miB" - }, - { - "type": "STRING", - "value": "mIB" - }, - { - "type": "STRING", - "value": "mIb" - }, - { - "type": "STRING", - "value": "Mib" - }, - { - "type": "STRING", - "value": "MIb" - }, - { - "type": "STRING", - "value": "MIB" - }, - { - "type": "STRING", - "value": "gib" - }, - { - "type": "STRING", - "value": "giB" - }, - { - "type": "STRING", - "value": "gIB" - }, - { - "type": "STRING", - "value": "gIb" - }, - { - "type": "STRING", - "value": "Gib" - }, - { - "type": "STRING", - "value": "GIb" - }, - { - "type": "STRING", - "value": "GIB" - }, - { - "type": "STRING", - "value": "tib" - }, - { - "type": "STRING", - "value": "tiB" - }, - { - "type": "STRING", - "value": "tIB" - }, - { - "type": "STRING", - "value": "tIb" - }, - { - "type": "STRING", - "value": "Tib" - }, - { - "type": "STRING", - "value": "TIb" - }, - { - "type": "STRING", - "value": "TIB" - }, - { - "type": "STRING", - "value": "pib" - }, - { - "type": "STRING", - "value": "piB" - }, - { - "type": "STRING", - "value": "pIB" - }, - { - "type": "STRING", - "value": "pIb" - }, - { - "type": "STRING", - "value": "Pib" - }, - { - "type": "STRING", - "value": "PIb" - }, - { - "type": "STRING", - "value": "PIB" - }, - { - "type": "STRING", - "value": "eib" - }, - { - "type": "STRING", - "value": "eiB" - }, - { - "type": "STRING", - "value": "eIB" - }, - { - "type": "STRING", - "value": "eIb" - }, - { - "type": "STRING", - "value": "Eib" - }, - { - "type": "STRING", - "value": "EIb" - }, - { - "type": "STRING", - "value": "EIB" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "bit-shr" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "bit-shr" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "=~" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "=~" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "!~" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "!~" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "bit-and" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "bit-and" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "bit-xor" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "bit-xor" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "bit-or" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "bit-or" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "and" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "and" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "xor" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "xor" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "or" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "or" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "in" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "not-in" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "not-in" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "starts-with" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "starts-with" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "ends-with" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "ends-with" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "==" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] } - ] - } - }, - "duration_unit": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "ns" - }, - { - "type": "STRING", - "value": "µs" - }, - { - "type": "STRING", - "value": "us" - }, - { - "type": "STRING", - "value": "ms" - }, - { - "type": "STRING", - "value": "sec" - }, - { - "type": "STRING", - "value": "min" - }, - { - "type": "STRING", - "value": "hr" - }, - { - "type": "STRING", - "value": "day" - }, - { - "type": "STRING", - "value": "wk" + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "!=" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "<" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] } - ] - } - }, - "val_binary": { - "type": "SEQ", - "members": [ + }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "0b" - }, - { - "type": "STRING", - "value": "0o" - }, - { - "type": "STRING", - "value": "0x" - } - ] + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "<=" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] + } }, { - "type": "IMMEDIATE_TOKEN", + "type": "PREC_LEFT", + "value": 10, "content": { - "type": "STRING", - "value": "[" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": ">" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] } }, { - "type": "REPEAT", + "type": "PREC_LEFT", + "value": 10, "content": { - "type": "FIELD", - "name": "digit", - "content": { - "type": "SEQ", - "members": [ - { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { "type": "SYMBOL", - "name": "hex_digit" - }, - { + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": ">=" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": ">=" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "," + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" }, { - "type": "BLANK" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" } ] } - ] - } - } - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "hex_digit": { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[0-9a-fA-F]+" - } - }, - "val_date": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]{4}-[0-9]{2}-[0-9]{2}", - "flags": "i" - }, - { - "type": "PATTERN", - "value": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}(\\.[0-9]+)?([Zz]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] } - ] - } - }, - "_stringish": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "val_string" - }, - { - "type": "SYMBOL", - "name": "val_interpolated" - }, - { - "type": "SYMBOL", - "name": "expr_parenthesized" - }, - { - "type": "SYMBOL", - "name": "val_variable" - } - ] - }, - "val_string": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_str_double_quotes" - }, - { - "type": "SYMBOL", - "name": "_str_single_quotes" }, { - "type": "SYMBOL", - "name": "_str_back_ticks" - } - ] - }, - "_str_double_quotes": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\"" - }, - { - "type": "REPEAT", + "type": "PREC_LEFT", + "value": 8, "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_escaped_str_content" + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "=~" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "=~" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } }, { - "type": "SYMBOL", - "name": "escape_sequence" + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } } ] } }, { - "type": "STRING", - "value": "\"" - } - ] - }, - "_escaped_str_content": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^\"\\\\]+" - } - } - }, - "_str_single_quotes": { - "type": "PATTERN", - "value": "'[^']*'" - }, - "_str_back_ticks": { - "type": "PATTERN", - "value": "`[^`]*`" - }, - "escape_sequence": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "CHOICE", + "type": "PREC_LEFT", + "value": 8, + "content": { + "type": "SEQ", "members": [ { - "type": "PATTERN", - "value": "[^xu]" + "type": "FIELD", + "name": "lhs", + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + } }, { - "type": "PATTERN", - "value": "u[0-9a-fA-F]{4}" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } }, { - "type": "PATTERN", - "value": "u\\{[0-9a-fA-F]+\\}" + "type": "FIELD", + "name": "opr", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + }, + { + "type": "STRING", + "value": "!~" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + } + ] + } + } + ] + } + }, + "named": false, + "value": "!~" + } }, { - "type": "PATTERN", - "value": "x[0-9a-fA-F]{2}" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr_binary_expression_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } } ] } - ] - } - }, - "val_interpolated": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_inter_single_quotes" - }, - { - "type": "SYMBOL", - "name": "_inter_double_quotes" } ] }, - "escaped_interpolated_content": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^\"\\\\(]+" - } - } - }, - "unescaped_interpolated_content": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^'(]+" - } - } - }, - "_inter_single_quotes": { - "type": "SEQ", + "_expr_binary_expression": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "$'" + "type": "SYMBOL", + "name": "_value" }, { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "expr", - "content": { - "type": "SYMBOL", - "name": "expr_interpolated" - } - }, - { - "type": "SYMBOL", - "name": "unescaped_interpolated_content" - } - ] - } + "type": "SYMBOL", + "name": "expr_binary" }, { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "'" - } + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" } ] }, - "_inter_double_quotes": { - "type": "SEQ", + "_expr_binary_expression_parenthesized": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "$\"" + "type": "SYMBOL", + "name": "_value" }, { - "type": "REPEAT", + "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "expr", - "content": { - "type": "SYMBOL", - "name": "expr_interpolated" - } - }, - { - "type": "SYMBOL", - "name": "inter_escape_sequence" - }, - { - "type": "SYMBOL", - "name": "escaped_interpolated_content" - } - ] - } + "type": "SYMBOL", + "name": "expr_binary_parenthesized" + }, + "named": true, + "value": "expr_binary" }, { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\"" - } + "type": "SYMBOL", + "name": "expr_unary" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" } ] }, - "inter_escape_sequence": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^xu]" - }, - { - "type": "PATTERN", - "value": "u[0-9a-fA-F]{4}" - }, - { - "type": "PATTERN", - "value": "u\\{[0-9a-fA-F]+\\}" - }, - { - "type": "PATTERN", - "value": "x[0-9a-fA-F]{2}" - }, - { - "type": "STRING", - "value": "(" - } - ] - } - ] - } - }, - "expr_interpolated": { + "expr_parenthesized": { "type": "SEQ", "members": [ { @@ -10694,22 +13067,34 @@ { "type": "STRING", "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "cell_path" + }, + { + "type": "BLANK" + } + ] } ] }, - "val_list": { + "_spread_parenthesized": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "[" + "value": "...(" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "list_body" + "name": "_parenthesized_body" }, { "type": "BLANK" @@ -10718,7 +13103,7 @@ }, { "type": "STRING", - "value": "]" + "value": ")" }, { "type": "CHOICE", @@ -10734,19 +13119,22 @@ } ] }, - "_spread_list": { + "_expr_parenthesized_immediate": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "...[" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "(" + } }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "list_body" + "name": "_parenthesized_body" }, { "type": "BLANK" @@ -10755,971 +13143,2702 @@ }, { "type": "STRING", - "value": "]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "cell_path" - }, - { - "type": "BLANK" - } - ] + "value": ")" } ] }, - "_spread_listish": { - "type": "CHOICE", + "_parenthesized_body": { + "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_spread_list" - }, - "named": true, - "value": "val_list" + "name": "_terminator" + } }, { - "type": "ALIAS", + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_block_body_statement_parenthesized" + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + } + } + ] + } + }, + { + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_spread_variable" - }, - "named": true, - "value": "val_variable" + "name": "_newline" + } }, { - "type": "ALIAS", + "type": "SYMBOL", + "name": "_block_body_statement_parenthesized" + }, + { + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_spread_parenthesized" + "name": "_terminator" + } + } + ] + }, + "val_range": { + "type": "PREC_RIGHT", + "value": 15, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "start", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expr_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_val_number_decimal" + }, + "named": true, + "value": "val_number" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "." + } + } + ] }, - "named": true, - "value": "expr_parenthesized" - } - ] - }, - "list_body": { - "type": "PREC", - "value": 20, - "content": { - "type": "SEQ", - "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "..=" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "..<" + } + } + ] + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_expr_parenthesized_immediate" + }, + "named": true, + "value": "expr_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_immediate_decimal" + }, + "named": true, + "value": "val_number" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] + } + } + ] }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "entry", - "content": { - "type": "SYMBOL", - "name": "val_entry" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "FIELD", + "name": "step", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_expr_parenthesized_immediate" + }, + "named": true, + "value": "expr_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_immediate_decimal" + }, + "named": true, + "value": "val_number" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "..=" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "..<" + } } + ] + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_expr_parenthesized_immediate" + }, + "named": true, + "value": "expr_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_immediate_decimal" + }, + "named": true, + "value": "val_number" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] } - ] - } + } + ] }, { "type": "SEQ", "members": [ { "type": "FIELD", - "name": "entry", + "name": "start", "content": { - "type": "SYMBOL", - "name": "val_entry" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expr_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_val_number_decimal" + }, + "named": true, + "value": "val_number" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] } }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } - ] - } - }, - "val_entry": { - "type": "PREC", - "value": 10, - "content": { - "type": "FIELD", - "name": "item", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_item_expression" - }, - { - "type": "FIELD", - "name": "spread", - "content": { - "type": "SYMBOL", - "name": "_spread_listish" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_in_list" - }, - "named": true, - "value": "val_string" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_in_list_with_expr" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "FIELD", + "name": "step", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_expr_parenthesized_immediate" + }, + "named": true, + "value": "expr_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_immediate_decimal" + }, + "named": true, + "value": "val_number" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "..=" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "..<" + } + } + ] }, - "named": true, - "value": "val_string" - } - ] - } - } - }, - "_item_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value" - }, - { - "type": "SYMBOL", - "name": "val_range" - }, - { - "type": "SYMBOL", - "name": "expr_parenthesized" - } - ] - }, - "val_record": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "PATTERN", - "value": "\\s*" - } - ] - } - }, - "named": false, - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "record_body" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "cell_path" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_spread_record": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "...{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "record_body" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "cell_path" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_spread_recordish": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_spread_record" - }, - "named": true, - "value": "val_record" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_spread_variable" - }, - "named": true, - "value": "val_variable" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_spread_parenthesized" - }, - "named": true, - "value": "expr_parenthesized" - } - ] + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "end", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_expr_parenthesized_immediate" + }, + "named": true, + "value": "expr_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_immediate_decimal" + }, + "named": true, + "value": "val_number" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } }, - "record_body": { - "type": "PREC", - "value": 20, + "_val_range": { + "type": "PREC_RIGHT", + "value": 14, "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "entry", - "content": { - "type": "SYMBOL", - "name": "record_entry" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } - }, { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "entry", + "type": "SYMBOL", + "name": "_val_number_decimal" + }, + { + "type": "IMMEDIATE_TOKEN", "content": { - "type": "SYMBOL", - "name": "record_entry" + "type": "STRING", + "value": ".." } }, { - "type": "REPEAT", + "type": "IMMEDIATE_TOKEN", "content": { - "type": "SYMBOL", - "name": "_entry_separator" + "type": "STRING", + "value": "." } } ] - } - ] - } - }, - "_entry_separator": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 20, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "PATTERN", - "value": "\\s" - } - ] - } - } - }, - "record_entry": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "spread", - "content": { - "type": "SYMBOL", - "name": "_spread_recordish" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "key", - "content": { + }, + { + "type": "SEQ", + "members": [ + { "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "cmd_identifier" - }, - "named": true, - "value": "identifier" - }, - { - "type": "ALIAS", + "type": "TOKEN", "content": { - "type": "SYMBOL", - "name": "_record_key" - }, - "named": true, - "value": "identifier" - }, - { - "type": "SYMBOL", - "name": "val_string" - }, - { - "type": "SYMBOL", - "name": "val_number" - }, - { - "type": "SYMBOL", - "name": "val_variable" - }, - { - "type": "SYMBOL", - "name": "expr_parenthesized" + "type": "STRING", + "value": ".." + } }, { - "type": "ALIAS", + "type": "TOKEN", "content": { "type": "STRING", - "value": "def" - }, - "named": true, - "value": "identifier" + "value": "..=" + } }, { - "type": "ALIAS", + "type": "TOKEN", "content": { "type": "STRING", - "value": "alias" - }, - "named": true, - "value": "identifier" - }, + "value": "..<" + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_immediate_decimal" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "SYMBOL", + "name": "_immediate_decimal" + }, + { + "type": "CHOICE", + "members": [ { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "use" - }, - "named": true, - "value": "identifier" + "value": ".." + } }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "export-env" - }, - "named": true, - "value": "identifier" + "value": "..=" + } }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "extern" - }, - "named": true, - "value": "identifier" + "value": "..<" + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_immediate_decimal" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_val_number_decimal" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "SYMBOL", + "name": "_immediate_decimal" + } + ] }, { - "type": "ALIAS", + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "module" - }, - "named": true, - "value": "identifier" + "value": ".." + } }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "let" - }, - "named": true, - "value": "identifier" + "value": "..=" + } }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "let-env" - }, - "named": true, - "value": "identifier" + "value": "..<" + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_immediate_decimal" }, { - "type": "ALIAS", + "type": "BLANK" + } + ] + } + ] + } + ] + } + }, + "_val_range_with_end": { + "type": "PREC_RIGHT", + "value": 14, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_val_number_decimal" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "." + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", "content": { "type": "STRING", - "value": "mut" - }, - "named": true, - "value": "identifier" + "value": ".." + } }, { - "type": "ALIAS", + "type": "TOKEN", "content": { "type": "STRING", - "value": "const" - }, - "named": true, - "value": "identifier" + "value": "..=" + } }, { - "type": "ALIAS", + "type": "TOKEN", "content": { "type": "STRING", - "value": "hide" - }, - "named": true, - "value": "identifier" - }, + "value": "..<" + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_immediate_decimal" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "SYMBOL", + "name": "_immediate_decimal" + }, + { + "type": "CHOICE", + "members": [ { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "hide-env" - }, - "named": true, - "value": "identifier" + "value": ".." + } }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "source" - }, - "named": true, - "value": "identifier" + "value": "..=" + } }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "source-env" - }, - "named": true, - "value": "identifier" + "value": "..<" + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_immediate_decimal" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_val_number_decimal" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "SYMBOL", + "name": "_immediate_decimal" + } + ] }, { - "type": "ALIAS", + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "overlay" - }, - "named": true, - "value": "identifier" + "value": ".." + } }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "register" - }, - "named": true, - "value": "identifier" + "value": "..=" + } }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "for" - }, - "named": true, - "value": "identifier" - }, + "value": "..<" + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_immediate_decimal" + } + ] + } + ] + } + }, + "_immediate_decimal": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "loop" - }, - "named": true, - "value": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "+" + } + } + ] }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { - "type": "STRING", - "value": "while" - }, - "named": true, - "value": "identifier" - }, + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "." + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "error" - }, - "named": true, - "value": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "+" + } + } + ] }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { - "type": "STRING", - "value": "do" - }, - "named": true, - "value": "identifier" - }, + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "." + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "." + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "CHOICE", + "members": [ { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { - "type": "STRING", - "value": "if" - }, - "named": true, - "value": "identifier" + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } }, { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "else" - }, - "named": true, - "value": "identifier" - }, + "type": "BLANK" + } + ] + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "try" - }, - "named": true, - "value": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "+" + } + } + ] }, { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "catch" - }, - "named": true, - "value": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "_+" + } + }, + { + "type": "BLANK" + } + ] }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "match" - }, - "named": true, - "value": "identifier" + "value": "." + } }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { - "type": "STRING", - "value": "break" - }, - "named": true, - "value": "identifier" - }, + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + "_value": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "val_variable" + }, + { + "type": "SYMBOL", + "name": "val_nothing" + }, + { + "type": "SYMBOL", + "name": "val_bool" + }, + { + "type": "SYMBOL", + "name": "val_number" + }, + { + "type": "SYMBOL", + "name": "val_duration" + }, + { + "type": "SYMBOL", + "name": "val_filesize" + }, + { + "type": "SYMBOL", + "name": "val_binary" + }, + { + "type": "SYMBOL", + "name": "val_string" + }, + { + "type": "SYMBOL", + "name": "val_interpolated" + }, + { + "type": "SYMBOL", + "name": "val_date" + }, + { + "type": "SYMBOL", + "name": "val_list" + }, + { + "type": "SYMBOL", + "name": "val_record" + }, + { + "type": "SYMBOL", + "name": "val_table" + }, + { + "type": "SYMBOL", + "name": "val_closure" + } + ] + }, + "val_nothing": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "null" + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "(" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ")" + } + } + ] + } + ] + }, + "val_bool": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "false" + } + ] + }, + "_spread_variable": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "...$" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "cell_path" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "val_variable": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "nu" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "env" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "cell_path" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "val_number": { + "type": "SYMBOL", + "name": "_val_number" + }, + "_val_number_decimal": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "continue" - }, - "named": true, - "value": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "+" + } + } + ] }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { - "type": "STRING", - "value": "return" - }, - "named": true, - "value": "identifier" - }, + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "." + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "as" - }, - "named": true, - "value": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "+" + } + } + ] }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { - "type": "STRING", - "value": "in" - }, - "named": true, - "value": "identifier" - }, + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "." + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "." + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "CHOICE", + "members": [ { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { - "type": "STRING", - "value": "hide" - }, - "named": true, - "value": "identifier" + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } }, { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "list" - }, - "named": true, - "value": "identifier" - }, + "type": "BLANK" + } + ] + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "new" - }, - "named": true, - "value": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "+" + } + } + ] }, { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "use" - }, - "named": true, - "value": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "_+" + } + }, + { + "type": "BLANK" + } + ] }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "make" - }, - "named": true, - "value": "identifier" + "value": "." + } }, { - "type": "ALIAS", + "type": "IMMEDIATE_TOKEN", "content": { + "type": "PATTERN", + "value": "[\\d_]*\\d[\\d_]*" + } + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][-+]?[\\d_]*\\d[\\d_]*" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + "_val_number": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_val_number_decimal" + }, + { + "type": "PATTERN", + "value": "0x[0-9a-fA-F_]+" + }, + { + "type": "PATTERN", + "value": "0b[01_]+" + }, + { + "type": "PATTERN", + "value": "0o[0-7_]+" + }, + { + "type": "PATTERN", + "value": "[iI][nN][fF]([iI][nN][iI][tT][yY])?" + }, + { + "type": "PATTERN", + "value": "-[iI][nN][fF]([iI][nN][iI][tT][yY])?" + }, + { + "type": "PATTERN", + "value": "[nN][aA][nN]" + } + ] + }, + "val_duration": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_val_number_decimal" + }, + "named": true, + "value": "val_number" + } + }, + { + "type": "FIELD", + "name": "unit", + "content": { + "type": "SYMBOL", + "name": "duration_unit" + } + } + ] + }, + "val_filesize": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_val_number_decimal" + }, + "named": true, + "value": "val_number" + } + }, + { + "type": "FIELD", + "name": "unit", + "content": { + "type": "SYMBOL", + "name": "filesize_unit" + } + } + ] + } + ] + }, + "filesize_unit": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "b" + }, + { + "type": "STRING", + "value": "B" + }, + { + "type": "STRING", + "value": "kb" + }, + { + "type": "STRING", + "value": "kB" + }, + { + "type": "STRING", + "value": "Kb" + }, + { + "type": "STRING", + "value": "KB" + }, + { + "type": "STRING", + "value": "mb" + }, + { + "type": "STRING", + "value": "mB" + }, + { + "type": "STRING", + "value": "Mb" + }, + { + "type": "STRING", + "value": "MB" + }, + { + "type": "STRING", + "value": "gb" + }, + { + "type": "STRING", + "value": "gB" + }, + { + "type": "STRING", + "value": "Gb" + }, + { + "type": "STRING", + "value": "GB" + }, + { + "type": "STRING", + "value": "tb" + }, + { + "type": "STRING", + "value": "tB" + }, + { + "type": "STRING", + "value": "Tb" + }, + { + "type": "STRING", + "value": "TB" + }, + { + "type": "STRING", + "value": "pb" + }, + { + "type": "STRING", + "value": "pB" + }, + { + "type": "STRING", + "value": "Pb" + }, + { + "type": "STRING", + "value": "PB" + }, + { + "type": "STRING", + "value": "eb" + }, + { + "type": "STRING", + "value": "eB" + }, + { + "type": "STRING", + "value": "Eb" + }, + { + "type": "STRING", + "value": "EB" + }, + { + "type": "STRING", + "value": "kib" + }, + { + "type": "STRING", + "value": "kiB" + }, + { + "type": "STRING", + "value": "kIB" + }, + { + "type": "STRING", + "value": "kIb" + }, + { + "type": "STRING", + "value": "Kib" + }, + { + "type": "STRING", + "value": "KIb" + }, + { + "type": "STRING", + "value": "KIB" + }, + { + "type": "STRING", + "value": "mib" + }, + { + "type": "STRING", + "value": "miB" + }, + { + "type": "STRING", + "value": "mIB" + }, + { + "type": "STRING", + "value": "mIb" + }, + { + "type": "STRING", + "value": "Mib" + }, + { + "type": "STRING", + "value": "MIb" + }, + { + "type": "STRING", + "value": "MIB" + }, + { + "type": "STRING", + "value": "gib" + }, + { + "type": "STRING", + "value": "giB" + }, + { + "type": "STRING", + "value": "gIB" + }, + { + "type": "STRING", + "value": "gIb" + }, + { + "type": "STRING", + "value": "Gib" + }, + { + "type": "STRING", + "value": "GIb" + }, + { + "type": "STRING", + "value": "GIB" + }, + { + "type": "STRING", + "value": "tib" + }, + { + "type": "STRING", + "value": "tiB" + }, + { + "type": "STRING", + "value": "tIB" + }, + { + "type": "STRING", + "value": "tIb" + }, + { + "type": "STRING", + "value": "Tib" + }, + { + "type": "STRING", + "value": "TIb" + }, + { + "type": "STRING", + "value": "TIB" + }, + { + "type": "STRING", + "value": "pib" + }, + { + "type": "STRING", + "value": "piB" + }, + { + "type": "STRING", + "value": "pIB" + }, + { + "type": "STRING", + "value": "pIb" + }, + { + "type": "STRING", + "value": "Pib" + }, + { + "type": "STRING", + "value": "PIb" + }, + { + "type": "STRING", + "value": "PIB" + }, + { + "type": "STRING", + "value": "eib" + }, + { + "type": "STRING", + "value": "eiB" + }, + { + "type": "STRING", + "value": "eIB" + }, + { + "type": "STRING", + "value": "eIb" + }, + { + "type": "STRING", + "value": "Eib" + }, + { + "type": "STRING", + "value": "EIb" + }, + { + "type": "STRING", + "value": "EIB" + } + ] + } + }, + "duration_unit": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "ns" + }, + { + "type": "STRING", + "value": "µs" + }, + { + "type": "STRING", + "value": "us" + }, + { + "type": "STRING", + "value": "ms" + }, + { + "type": "STRING", + "value": "sec" + }, + { + "type": "STRING", + "value": "min" + }, + { + "type": "STRING", + "value": "hr" + }, + { + "type": "STRING", + "value": "day" + }, + { + "type": "STRING", + "value": "wk" + } + ] + } + }, + "val_binary": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "STRING", + "value": "0o" + }, + { + "type": "STRING", + "value": "0x" + } + ] + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "[" + } + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "digit", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "hex_digit" + }, + { + "type": "CHOICE", + "members": [ + { "type": "STRING", - "value": "export" + "value": "," }, - "named": true, - "value": "identifier" - } - ] + { + "type": "BLANK" + } + ] + } + ] + } + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "hex_digit": { + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]+" + } + }, + "val_date": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]{4}-[0-9]{2}-[0-9]{2}", + "flags": "i" + }, + { + "type": "PATTERN", + "value": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}(\\.[0-9]+)?([Zz]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?" + } + ] + } + }, + "_stringish": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "val_string" + }, + { + "type": "SYMBOL", + "name": "val_interpolated" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] + }, + "val_string": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_str_double_quotes" + }, + { + "type": "SYMBOL", + "name": "_str_single_quotes" + }, + { + "type": "SYMBOL", + "name": "_str_back_ticks" + } + ] + }, + "_str_double_quotes": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_escaped_str_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + "_escaped_str_content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\"\\\\]+" + } + } + }, + "_str_single_quotes": { + "type": "PATTERN", + "value": "'[^']*'" + }, + "_str_back_ticks": { + "type": "PATTERN", + "value": "`[^`]*`" + }, + "escape_sequence": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^xu]" + }, + { + "type": "PATTERN", + "value": "u[0-9a-fA-F]{4}" + }, + { + "type": "PATTERN", + "value": "u\\{[0-9a-fA-F]+\\}" + }, + { + "type": "PATTERN", + "value": "x[0-9a-fA-F]{2}" + } + ] + } + ] + } + }, + "val_interpolated": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_inter_single_quotes" + }, + { + "type": "SYMBOL", + "name": "_inter_double_quotes" + } + ] + }, + "escaped_interpolated_content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\"\\\\(]+" + } + } + }, + "unescaped_interpolated_content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^'(]+" + } + } + }, + "_inter_single_quotes": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "expr", + "content": { + "type": "SYMBOL", + "name": "expr_interpolated" + } + }, + { + "type": "SYMBOL", + "name": "unescaped_interpolated_content" } - }, - { - "type": "ALIAS", - "content": { - "type": "TOKEN", + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "'" + } + } + ] + }, + "_inter_double_quotes": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "expr", "content": { - "type": "PREC", - "value": 20, - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "\\s*" - }, - { - "type": "STRING", - "value": ":" - } - ] - } + "type": "SYMBOL", + "name": "expr_interpolated" } }, - "named": false, - "value": ":" + { + "type": "SYMBOL", + "name": "inter_escape_sequence" + }, + { + "type": "SYMBOL", + "name": "escaped_interpolated_content" + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "\"" + } + } + ] + }, + "inter_escape_sequence": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^xu]" + }, + { + "type": "PATTERN", + "value": "u[0-9a-fA-F]{4}" + }, + { + "type": "PATTERN", + "value": "u\\{[0-9a-fA-F]+\\}" + }, + { + "type": "PATTERN", + "value": "x[0-9a-fA-F]{2}" + }, + { + "type": "STRING", + "value": "(" + } + ] + } + ] + } + }, + "expr_interpolated": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_parenthesized_body" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "val_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "list_body" }, { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_item_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_in_record" - }, - "named": true, - "value": "val_string" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_in_record_with_expr" - }, - "named": true, - "value": "val_string" - } - ] - } + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "cell_path" + }, + { + "type": "BLANK" } ] } ] }, - "_record_key": { + "_spread_list": { "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "...[" + }, { "type": "CHOICE", "members": [ { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "-" - } + "type": "SYMBOL", + "name": "list_body" }, { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "+" - } + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "cell_path" + }, + { + "type": "BLANK" } ] + } + ] + }, + "_spread_listish": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_spread_list" + }, + "named": true, + "value": "val_list" }, { - "type": "IMMEDIATE_TOKEN", + "type": "ALIAS", "content": { + "type": "SYMBOL", + "name": "_spread_variable" + }, + "named": true, + "value": "val_variable" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_spread_parenthesized" + }, + "named": true, + "value": "expr_parenthesized" + } + ] + }, + "list_body": { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { "type": "REPEAT", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "entry", + "content": { + "type": "SYMBOL", + "name": "val_entry" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "entry", + "content": { + "type": "SYMBOL", + "name": "val_entry" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] } - } - ] + ] + } }, - "_table_head_separator": { - "type": "TOKEN", + "val_entry": { + "type": "PREC", + "value": 10, "content": { - "type": "PREC", - "value": 20, + "type": "FIELD", + "name": "item", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "PATTERN", - "value": "\\s*" + "type": "SYMBOL", + "name": "_item_expression" }, { - "type": "STRING", - "value": ";" + "type": "FIELD", + "name": "spread", + "content": { + "type": "SYMBOL", + "name": "_spread_listish" + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_in_list" + }, + "named": true, + "value": "val_string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_in_list_with_expr" + }, + "named": true, + "value": "val_string" } ] } } }, - "val_table": { - "type": "SEQ", + "_item_expression": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "[" + "type": "SYMBOL", + "name": "_value" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } + "type": "SYMBOL", + "name": "val_range" }, { - "type": "FIELD", - "name": "head", + "type": "SYMBOL", + "name": "expr_parenthesized" + } + ] + }, + "val_record": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "val_list" - }, - { - "type": "SYMBOL", - "name": "_table_head_separator" - } - ] - } + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "PATTERN", + "value": "\\s*" + } + ] + } + }, + "named": false, + "value": "{" }, { "type": "CHOICE", "members": [ { - "type": "PREC", - "value": 20, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "row", - "content": { - "type": "SYMBOL", - "name": "val_list" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "row", - "content": { - "type": "SYMBOL", - "name": "val_list" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } - ] - } + "type": "SYMBOL", + "name": "record_body" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "cell_path" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_spread_record": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "...{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "record_body" }, { "type": "BLANK" @@ -11728,7 +15847,7 @@ }, { "type": "STRING", - "value": "]" + "value": "}" }, { "type": "CHOICE", @@ -11744,534 +15863,559 @@ } ] }, - "val_closure": { - "type": "SEQ", + "_spread_recordish": { + "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "SYMBOL", + "name": "_spread_record" + }, + "named": true, + "value": "val_record" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_spread_variable" + }, + "named": true, + "value": "val_variable" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_spread_parenthesized" + }, + "named": true, + "value": "expr_parenthesized" + } + ] + }, + "record_body": { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "REPEAT", "content": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "{" + "type": "FIELD", + "name": "entry", + "content": { + "type": "SYMBOL", + "name": "record_entry" + } }, { - "type": "PATTERN", - "value": "\\s*" + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } } ] } }, - "named": false, - "value": "{" - }, - { + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "entry", + "content": { + "type": "SYMBOL", + "name": "record_entry" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + ] + } + }, + "_entry_separator": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 20, + "content": { "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "SYMBOL", - "name": "parameter_pipes" - } + "type": "STRING", + "value": "," }, { - "type": "BLANK" + "type": "PATTERN", + "value": "\\s" } ] - }, - { - "type": "SYMBOL", - "name": "_block_body" - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "cell_path": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "path" } } }, - "path": { - "type": "SEQ", + "record_entry": { + "type": "CHOICE", "members": [ { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "spread", "content": { - "type": "STRING", - "value": "." + "type": "SYMBOL", + "name": "_spread_recordish" } }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { "type": "FIELD", - "name": "raw_path", + "name": "key", "content": { "type": "CHOICE", "members": [ { - "type": "IMMEDIATE_TOKEN", + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "cmd_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_record_key" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "val_string" + }, + { + "type": "SYMBOL", + "name": "val_number" + }, + { + "type": "SYMBOL", + "name": "val_variable" + }, + { + "type": "SYMBOL", + "name": "expr_parenthesized" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "def" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "alias" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "use" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "export-env" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "extern" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "module" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}.,:?]" - } - } - } + "type": "STRING", + "value": "let" + }, + "named": true, + "value": "identifier" }, { "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "val_string" + "type": "STRING", + "value": "let-env" }, - "named": false, - "value": "quoted" - } - ] - } - }, - { - "type": "FIELD", - "name": "protected_path", - "content": { - "type": "SEQ", - "members": [ + "named": true, + "value": "identifier" + }, { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}.,:?]" - } - } - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "val_string" - }, - "named": false, - "value": "quoted" - } - ] + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "mut" + }, + "named": true, + "value": "identifier" }, { - "type": "STRING", - "value": "?" - } - ] - } - } - ] - } - ] - }, - "command": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "head", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "^" - }, - { - "type": "BLANK" - } - ] + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "const" }, - { - "type": "SYMBOL", - "name": "cmd_identifier" - } - ] - } - }, - { - "type": "FIELD", - "name": "head", - "content": { - "type": "SEQ", - "members": [ - { + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { "type": "STRING", - "value": "^" + "value": "hide" }, - { - "type": "SYMBOL", - "name": "_stringish" - } - ] - } - } - ] - }, - { - "type": "PREC_DYNAMIC", - "value": 10, - "content": { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ + "named": true, + "value": "identifier" + }, { - "type": "SYMBOL", - "name": "_space" + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "hide-env" + }, + "named": true, + "value": "identifier" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_cmd_arg" - }, - { - "type": "BLANK" - } - ] - } - ] - } - } - } - ] - } - }, - "_command_parenthesized": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "head", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "^" - }, - { - "type": "BLANK" - } - ] + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "source" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "source-env" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "overlay" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "register" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "for" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "loop" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "while" }, - { - "type": "SYMBOL", - "name": "cmd_identifier" - } - ] - } - }, - { - "type": "FIELD", - "name": "head", - "content": { - "type": "SEQ", - "members": [ - { + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { "type": "STRING", - "value": "^" + "value": "error" }, - { - "type": "SYMBOL", - "name": "_stringish" - } - ] - } - } - ] - }, - { - "type": "PREC_DYNAMIC", - "value": 10, - "content": { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ + "named": true, + "value": "identifier" + }, { - "type": "SYMBOL", - "name": "_separator" + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "do" + }, + "named": true, + "value": "identifier" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_cmd_arg" - }, - { - "type": "BLANK" - } - ] - } - ] - } - } - } - ] - } - }, - "_cmd_arg": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "redir", - "content": { - "type": "PREC_RIGHT", - "value": 10, - "content": { - "type": "SYMBOL", - "name": "redirection" - } - } - }, - { - "type": "FIELD", - "name": "flag", - "content": { - "type": "PREC_RIGHT", - "value": 9, - "content": { - "type": "SYMBOL", - "name": "_flag" - } - } - }, - { - "type": "FIELD", - "name": "arg", - "content": { - "type": "PREC_RIGHT", - "value": 8, - "content": { - "type": "SYMBOL", - "name": "_value" - } - } - }, - { - "type": "FIELD", - "name": "arg", - "content": { - "type": "PREC_RIGHT", - "value": 8, - "content": { - "type": "SYMBOL", - "name": "val_range" - } - } - }, - { - "type": "FIELD", - "name": "arg", - "content": { - "type": "PREC_RIGHT", - "value": 7, - "content": { - "type": "SYMBOL", - "name": "expr_parenthesized" - } - } - }, - { - "type": "FIELD", - "name": "arg_spread", - "content": { - "type": "SYMBOL", - "name": "_spread_listish" - } - }, - { - "type": "FIELD", - "name": "arg_str", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "unquoted" - }, - "named": true, - "value": "val_string" - } - }, - { - "type": "FIELD", - "name": "arg_str", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_with_expr" - }, - "named": true, - "value": "val_string" - } - } - ] - }, - "flag_value": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value" - }, - { - "type": "SYMBOL", - "name": "val_string" - } - ] - }, - "redirection": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "err>" - }, - { - "type": "STRING", - "value": "out>" - }, - { - "type": "STRING", - "value": "e>" - }, - { - "type": "STRING", - "value": "o>" - }, - { - "type": "STRING", - "value": "err+out>" - }, - { - "type": "STRING", - "value": "out+err>" - }, - { - "type": "STRING", - "value": "o+e>" - }, - { - "type": "STRING", - "value": "e+o>" - }, - { - "type": "STRING", - "value": "err>>" - }, - { - "type": "STRING", - "value": "out>>" - }, - { - "type": "STRING", - "value": "e>>" - }, - { - "type": "STRING", - "value": "o>>" - }, - { - "type": "STRING", - "value": "err+out>>" - }, - { - "type": "STRING", - "value": "out+err>>" - }, - { - "type": "STRING", - "value": "o+e>>" + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "if" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "else" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "try" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "catch" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "match" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "break" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "continue" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "return" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "as" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "in" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "hide" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "list" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "new" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "use" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "make" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "export" + }, + "named": true, + "value": "identifier" + } + ] + } }, { - "type": "STRING", - "value": "e+o>>" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_space" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "\\s*" + }, + { + "type": "STRING", + "value": ":" + } + ] + } + } + }, + "named": false, + "value": ":" }, { "type": "FIELD", - "name": "file_path", + "name": "value", "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "_item_expression" + }, { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_unquoted_naive" + "name": "_unquoted_in_record" }, "named": true, "value": "val_string" }, { - "type": "SYMBOL", - "name": "_stringish" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_in_record_with_expr" + }, + "named": true, + "value": "val_string" } ] } @@ -12280,73 +16424,151 @@ } ] }, - "_flag": { - "type": "PREC_RIGHT", - "value": 5, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "short_flag" - }, - { - "type": "SYMBOL", - "name": "long_flag" + "_record_key": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "+" + } + } + ] + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" + } } - ] + } + ] + }, + "_table_head_separator": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "\\s*" + }, + { + "type": "STRING", + "value": ";" + } + ] + } } }, - "_flags_parenthesized": { + "val_table": { "type": "SEQ", "members": [ { - "type": "REPEAT1", + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_separator" + "name": "_newline" } }, { - "type": "SYMBOL", - "name": "_flag" - } - ] - }, - "_flag_value": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value" - }, - { - "type": "ALIAS", + "type": "FIELD", + "name": "head", "content": { - "type": "SYMBOL", - "name": "unquoted" - }, - "named": true, - "value": "val_string" - } - ] - }, - "short_flag": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "val_list" + }, + { + "type": "SYMBOL", + "name": "_table_head_separator" + } + ] + } }, { "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "name", + "type": "PREC", + "value": 20, "content": { - "type": "SYMBOL", - "name": "short_flag_identifier" + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "row", + "content": { + "type": "SYMBOL", + "name": "val_list" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "row", + "content": { + "type": "SYMBOL", + "name": "val_list" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + ] } }, { @@ -12354,28 +16576,16 @@ } ] }, + { + "type": "STRING", + "value": "]" + }, { "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "=" - } - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_flag_value" - } - } - ] + "type": "SYMBOL", + "name": "cell_path" }, { "type": "BLANK" @@ -12384,29 +16594,39 @@ } ] }, - "short_flag_identifier": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[\\p{XID_Continue}?@!%_-]+" - } - }, - "long_flag": { + "val_closure": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "--" + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "PATTERN", + "value": "\\s*" + } + ] + } + }, + "named": false, + "value": "{" }, { "type": "CHOICE", "members": [ { "type": "FIELD", - "name": "name", + "name": "parameters", "content": { "type": "SYMBOL", - "name": "long_flag_identifier" + "name": "parameter_pipes" } }, { @@ -12415,747 +16635,828 @@ ] }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "=" - } - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_flag_value" - } - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "_block_body" + }, + { + "type": "STRING", + "value": "}" } ] }, - "_unquoted_naive": { - "type": "TOKEN", + "cell_path": { + "type": "PREC_RIGHT", + "value": 1, "content": { "type": "REPEAT1", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();{}]" + "type": "SYMBOL", + "name": "path" } - } - }, - "unquoted": { - "type": "PREC_LEFT", - "value": -69, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -69, - "content": { - "type": "TOKEN", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$-]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" - } - } - ] - } - } - } - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_val_range" - }, - { + } + }, + "path": { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "." + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "raw_path", + "content": { "type": "CHOICE", "members": [ { "type": "IMMEDIATE_TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'.]" + "type": "PREC", + "value": -1, + "content": { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}.,:?]" + } + } } }, { - "type": "IMMEDIATE_TOKEN", + "type": "ALIAS", "content": { - "type": "STRING", - "value": "." - } + "type": "SYMBOL", + "name": "val_string" + }, + "named": false, + "value": "quoted" } ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", - "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" - } - } - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'.]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", - "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" - } - } - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'<=]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", - "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" - } - } - } } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", + }, + { + "type": "FIELD", + "name": "protected_path", + "content": { + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "..=" + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}.,:?]" + } + } + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "val_string" + }, + "named": false, + "value": "quoted" + } + ] }, { "type": "STRING", - "value": "..<" + "value": "?" } ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", - "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" - } - } - } } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "IMMEDIATE_TOKEN", + } + ] + } + ] + }, + "env_var": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "variable", + "content": { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, "content": { - "type": "TOKEN", - "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" - } - } - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "STRING", - "value": "..=" - }, - { - "type": "STRING", - "value": "..<" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "CHOICE", + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\-{}<>=\"`'@?,:.&*!^+#$]" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\-{}<>=\"`'@?,:.]" + } + } + ] + } + }, + { + "type": "STRING", + "value": "=" + } + ] + } + } + }, + "named": true, + "value": "identifier" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "ALIAS", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "SEQ", "members": [ { - "type": "IMMEDIATE_TOKEN", + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\-{}<>=\"`'@?,:.&*!^+#$]" + }, + { + "type": "REPEAT", "content": { "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\-{}<>=\"`'@?,:.]" } - }, - { - "type": "BLANK" } ] } - ] - }, + }, + "named": true, + "value": "val_string" + } + } + ] + }, + "command": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "TOKEN", + "type": "FIELD", + "name": "head", "content": { - "type": "STRING", - "value": "." + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "cmd_identifier" + } + ] } }, { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'.]" + "type": "FIELD", + "name": "head", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "SYMBOL", + "name": "_stringish" } - }, - { - "type": "BLANK" - } - ] + ] + } } ] }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", + "type": "PREC_DYNAMIC", + "value": 10, + "content": { + "type": "REPEAT", + "content": { + "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "_val_number_decimal" - }, - { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[iI][nN][fF]([iI][nN][iI][tT][yY])?" - } - }, - { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "-[iI][nN][fF]([iI][nN][iI][tT][yY])?" - } + "name": "_space" }, { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[nN][aA][nN]" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_cmd_arg" + }, + { + "type": "BLANK" + } + ] } ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", - "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" - } - } - } } - ] - }, + } + } + ] + } + }, + "_command_parenthesized": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_val_number_decimal" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "head", "content": { - "type": "TOKEN", - "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "cmd_identifier" } - } + ] } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_unquoted_anonymous_prefix" }, { - "type": "IMMEDIATE_TOKEN", + "type": "FIELD", + "name": "head", "content": { - "type": "TOKEN", - "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "SYMBOL", + "name": "_stringish" } - } + ] } } ] - } - ] - } - }, - "_unquoted_in_list": { - "type": "PREC_LEFT", - "value": -69, - "content": { - "type": "CHOICE", - "members": [ + }, { - "type": "TOKEN", + "type": "PREC_DYNAMIC", + "value": 10, "content": { - "type": "PREC", - "value": -69, - "content": { - "type": "TOKEN", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_separator" + }, + { + "type": "CHOICE", "members": [ { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$]" + "type": "SYMBOL", + "name": "_cmd_arg" }, { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" - } + "type": "BLANK" } ] } - } + ] } } - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_val_range" - }, - { + } + ] + } + }, + "_cmd_arg": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "redir", + "content": { + "type": "PREC_RIGHT", + "value": 10, + "content": { + "type": "SYMBOL", + "name": "redirection" + } + } + }, + { + "type": "FIELD", + "name": "flag", + "content": { + "type": "PREC_RIGHT", + "value": 9, + "content": { + "type": "SYMBOL", + "name": "_flag" + } + } + }, + { + "type": "FIELD", + "name": "arg", + "content": { + "type": "PREC_RIGHT", + "value": 8, + "content": { + "type": "SYMBOL", + "name": "_value" + } + } + }, + { + "type": "FIELD", + "name": "arg", + "content": { + "type": "PREC_RIGHT", + "value": 8, + "content": { + "type": "SYMBOL", + "name": "val_range" + } + } + }, + { + "type": "FIELD", + "name": "arg", + "content": { + "type": "PREC_RIGHT", + "value": 7, + "content": { + "type": "SYMBOL", + "name": "expr_parenthesized" + } + } + }, + { + "type": "FIELD", + "name": "arg_spread", + "content": { + "type": "SYMBOL", + "name": "_spread_listish" + } + }, + { + "type": "FIELD", + "name": "arg_str", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + }, + { + "type": "FIELD", + "name": "arg_str", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_with_expr" + }, + "named": true, + "value": "val_string" + } + } + ] + }, + "flag_value": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_value" + }, + { + "type": "SYMBOL", + "name": "val_string" + } + ] + }, + "redirection": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "err>" + }, + { + "type": "STRING", + "value": "out>" + }, + { + "type": "STRING", + "value": "e>" + }, + { + "type": "STRING", + "value": "o>" + }, + { + "type": "STRING", + "value": "err+out>" + }, + { + "type": "STRING", + "value": "out+err>" + }, + { + "type": "STRING", + "value": "o+e>" + }, + { + "type": "STRING", + "value": "e+o>" + }, + { + "type": "STRING", + "value": "err>>" + }, + { + "type": "STRING", + "value": "out>>" + }, + { + "type": "STRING", + "value": "e>>" + }, + { + "type": "STRING", + "value": "o>>" + }, + { + "type": "STRING", + "value": "err+out>>" + }, + { + "type": "STRING", + "value": "out+err>>" + }, + { + "type": "STRING", + "value": "o+e>>" + }, + { + "type": "STRING", + "value": "e+o>>" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_space" + }, + { + "type": "FIELD", + "name": "file_path", + "content": { "type": "CHOICE", "members": [ { - "type": "IMMEDIATE_TOKEN", + "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',.]" - } + "type": "SYMBOL", + "name": "_unquoted_naive" + }, + "named": true, + "value": "val_string" }, { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - } - ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", - "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" - } + "type": "SYMBOL", + "name": "_stringish" } - } + ] } - ] + } + ] + } + ] + }, + "_flag": { + "type": "PREC_RIGHT", + "value": 5, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "short_flag" }, { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',.]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", + "type": "SYMBOL", + "name": "long_flag" + } + ] + } + }, + "_flags_parenthesized": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_separator" + } + }, + { + "type": "SYMBOL", + "name": "_flag" + } + ] + }, + "_flag_value": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_value" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unquoted" + }, + "named": true, + "value": "val_string" + } + ] + }, + "short_flag": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "short_flag_identifier" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" - } + "type": "STRING", + "value": "=" } - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',<=]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", + }, + { + "type": "FIELD", + "name": "value", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" - } + "type": "SYMBOL", + "name": "_flag_value" } } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "short_flag_identifier": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[\\p{XID_Continue}?@!%_-]+" + } + }, + "long_flag": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "--" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "long_flag_identifier" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "..=" - }, - { + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { "type": "STRING", - "value": "..<" + "value": "=" } - ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',$]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", + }, + { + "type": "FIELD", + "name": "value", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" - } + "type": "SYMBOL", + "name": "_flag_value" } } - } - ] - }, + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_unquoted_naive": { + "type": "TOKEN", + "content": { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();{}]" + } + } + }, + "unquoted": { + "type": "PREC_LEFT", + "value": -69, + "content": { + "type": "CHOICE", + "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "IMMEDIATE_TOKEN", + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -69, + "content": { + "type": "TOKEN", "content": { "type": "TOKEN", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" - } + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$-]" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" + } + } + ] } } } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "STRING", - "value": "..=" - }, - { - "type": "STRING", - "value": "..<" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" - } - }, - { - "type": "BLANK" - } - ] - } - ] + } }, { "type": "SEQ", "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, { "type": "CHOICE", "members": [ { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',.]" - } + "type": "SYMBOL", + "name": "_val_range" }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ { "type": "SYMBOL", "name": "_val_number_decimal" }, { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[iI][nN][fF]([iI][nN][iI][tT][yY])?" - } + "type": "PATTERN", + "value": "[iI][nN][fF]([iI][nN][iI][tT][yY])?" }, { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "-[iI][nN][fF]([iI][nN][iI][tT][yY])?" - } + "type": "PATTERN", + "value": "-[iI][nN][fF]([iI][nN][iI][tT][yY])?" }, { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[nN][aA][nN]" - } + "type": "PATTERN", + "value": "[nN][aA][nN]" } ] }, { "type": "IMMEDIATE_TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", + "type": "PREC", + "value": -69, "content": { - "type": "REPEAT", + "type": "TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" + } } } } @@ -13166,25 +17467,35 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_val_number_decimal" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "STRING", + "value": "..=" + }, + { + "type": "STRING", + "value": "..<" + } + ] }, { "type": "IMMEDIATE_TOKEN", "content": { - "type": "TOKEN", + "type": "PREC", + "value": -69, "content": { - "type": "REPEAT", + "type": "TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" + } } } } @@ -13206,7 +17517,7 @@ "type": "REPEAT1", "content": { "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`']" } } } @@ -13216,7 +17527,7 @@ ] } }, - "_unquoted_in_record": { + "_unquoted_in_list": { "type": "PREC_LEFT", "value": -69, "content": { @@ -13227,126 +17538,71 @@ "content": { "type": "PREC", "value": -69, - "content": { - "type": "TOKEN", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" - } - } - ] - } - } - } - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_val_range" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,.]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - } - ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", - "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" - } - } - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,.]" - } - }, - { - "type": "IMMEDIATE_TOKEN", + "content": { + "type": "TOKEN", "content": { "type": "TOKEN", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" - } + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$]" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" + } + } + ] } } } - ] + } }, { "type": "SEQ", "members": [ { - "type": "STRING", - "value": ".." - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,<=]" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_val_range" + }, + { + "type": "SYMBOL", + "name": "_val_number_decimal" + }, + { + "type": "PATTERN", + "value": "[iI][nN][fF]([iI][nN][iI][tT][yY])?" + }, + { + "type": "PATTERN", + "value": "-[iI][nN][fF]([iI][nN][iI][tT][yY])?" + }, + { + "type": "PATTERN", + "value": "[nN][aA][nN]" + } + ] }, { "type": "IMMEDIATE_TOKEN", "content": { - "type": "TOKEN", + "type": "PREC", + "value": -69, "content": { - "type": "REPEAT", + "type": "TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" + } } } } @@ -13359,6 +17615,10 @@ { "type": "CHOICE", "members": [ + { + "type": "STRING", + "value": ".." + }, { "type": "STRING", "value": "..=" @@ -13372,19 +17632,16 @@ { "type": "IMMEDIATE_TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,$]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", + "type": "PREC", + "value": -69, "content": { - "type": "REPEAT", + "type": "TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" + } } } } @@ -13395,98 +17652,61 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": ".." - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } + "type": "SYMBOL", + "name": "_unquoted_anonymous_prefix" }, { "type": "IMMEDIATE_TOKEN", "content": { "type": "TOKEN", "content": { - "type": "REPEAT", + "type": "REPEAT1", "content": { "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`',]" } } } } ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "STRING", - "value": "..=" - }, - { - "type": "STRING", - "value": "..<" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, + } + ] + } + }, + "_unquoted_in_record": { + "type": "PREC_LEFT", + "value": -69, + "content": { + "type": "CHOICE", + "members": [ { - "type": "SEQ", - "members": [ - { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -69, + "content": { "type": "TOKEN", "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,.]" - } - }, - { - "type": "BLANK" + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$]" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" + } + } + ] } - ] + } } - ] + } }, { "type": "SEQ", @@ -13494,49 +17714,41 @@ { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "_val_range" + }, { "type": "SYMBOL", "name": "_val_number_decimal" }, { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[iI][nN][fF]([iI][nN][iI][tT][yY])?" - } + "type": "PATTERN", + "value": "[iI][nN][fF]([iI][nN][iI][tT][yY])?" }, { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "-[iI][nN][fF]([iI][nN][iI][tT][yY])?" - } + "type": "PATTERN", + "value": "-[iI][nN][fF]([iI][nN][iI][tT][yY])?" }, { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[nN][aA][nN]" - } + "type": "PATTERN", + "value": "[nN][aA][nN]" } ] }, { "type": "IMMEDIATE_TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "TOKEN", + "type": "PREC", + "value": -69, "content": { - "type": "REPEAT", + "type": "TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" + } } } } @@ -13547,25 +17759,35 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_val_number_decimal" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "STRING", + "value": "..=" + }, + { + "type": "STRING", + "value": "..<" + } + ] }, { "type": "IMMEDIATE_TOKEN", "content": { - "type": "TOKEN", + "type": "PREC", + "value": -69, "content": { - "type": "REPEAT", + "type": "TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`':,]" + } } } } @@ -14033,17 +18255,10 @@ [ "_binary_predicate_parenthesized" ], - [ - "_expression", - "_expr_binary_expression" - ], [ "_expression_parenthesized", "_expr_binary_expression_parenthesized" ], - [ - "_immediate_decimal" - ], [ "_match_pattern_list", "val_list" diff --git a/src/node-types.json b/src/node-types.json index 4367e25..a733fe7 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1625,6 +1625,32 @@ } } }, + { + "type": "env_var", + "named": true, + "fields": { + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "val_string", + "named": true + } + ] + }, + "variable": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, { "type": "expr_binary", "named": true, @@ -3574,6 +3600,10 @@ "type": "ctrl_try", "named": true }, + { + "type": "env_var", + "named": true + }, { "type": "expr_binary", "named": true @@ -5383,11 +5413,6 @@ } } }, - { - "type": "wild_card", - "named": true, - "fields": {} - }, { "type": "!=", "named": false @@ -6092,6 +6117,10 @@ "type": "while", "named": false }, + { + "type": "wild_card", + "named": true + }, { "type": "xor", "named": false diff --git a/src/parser.c b/src/parser.c index 59195c4..99d4a70 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8042 -#define LARGE_STATE_COUNT 1684 -#define SYMBOL_COUNT 481 +#define STATE_COUNT 8062 +#define LARGE_STATE_COUNT 1678 +#define SYMBOL_COUNT 524 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 280 +#define TOKEN_COUNT 320 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 72 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 272 +#define PRODUCTION_ID_COUNT 274 enum ts_symbol_identifiers { sym_identifier = 1, @@ -179,7 +179,7 @@ enum ts_symbol_identifiers { anon_sym_overlay = 153, anon_sym_new = 154, anon_sym_as = 155, - anon_sym_STAR = 156, + sym_wild_card = 156, anon_sym_QMARK2 = 157, anon_sym_where = 158, anon_sym_and = 159, @@ -197,317 +197,360 @@ enum ts_symbol_identifiers { anon_sym_BANG_TILDE = 171, aux_sym_expr_unary_token1 = 172, anon_sym_LPAREN2 = 173, - anon_sym_STAR_STAR = 174, - anon_sym_PLUS_PLUS = 175, - anon_sym_SLASH = 176, - anon_sym_mod = 177, - anon_sym_SLASH_SLASH = 178, - anon_sym_PLUS = 179, - anon_sym_bit_DASHshl = 180, - anon_sym_bit_DASHshr = 181, - anon_sym_bit_DASHand = 182, - anon_sym_bit_DASHxor = 183, - anon_sym_bit_DASHor = 184, - anon_sym_DOT_DOT_DOT_LPAREN = 185, - anon_sym_DOT_DOT2 = 186, - anon_sym_DOT = 187, - anon_sym_DOT_DOT_EQ = 188, - anon_sym_DOT_DOT_LT = 189, - anon_sym_DOT_DOT_EQ2 = 190, - anon_sym_DOT_DOT_LT2 = 191, - aux_sym__immediate_decimal_token1 = 192, - aux_sym__immediate_decimal_token2 = 193, - aux_sym__immediate_decimal_token3 = 194, - aux_sym__immediate_decimal_token4 = 195, - anon_sym_RPAREN2 = 196, - anon_sym_DOT_DOT_DOT_DOLLAR = 197, - anon_sym_nu = 198, - anon_sym_env = 199, - aux_sym__val_number_decimal_token1 = 200, - aux_sym__val_number_decimal_token2 = 201, - anon_sym_DOT2 = 202, - aux_sym__val_number_decimal_token3 = 203, - aux_sym__val_number_token1 = 204, - aux_sym__val_number_token2 = 205, - aux_sym__val_number_token3 = 206, - anon_sym_0b = 207, - sym_filesize_unit = 208, - sym_duration_unit = 209, - anon_sym_0o = 210, - anon_sym_0x = 211, - anon_sym_LBRACK2 = 212, - sym_hex_digit = 213, - sym_val_date = 214, - anon_sym_DQUOTE = 215, - sym__escaped_str_content = 216, - sym__str_single_quotes = 217, - sym__str_back_ticks = 218, - sym_escape_sequence = 219, - sym_escaped_interpolated_content = 220, - sym_unescaped_interpolated_content = 221, - anon_sym_DOLLAR_SQUOTE = 222, - anon_sym_SQUOTE = 223, - anon_sym_DOLLAR_DQUOTE = 224, - anon_sym_DQUOTE2 = 225, - sym_inter_escape_sequence = 226, - anon_sym_DOT_DOT_DOT_LBRACK = 227, - anon_sym_DOT_DOT_DOT_LBRACE = 228, - sym__entry_separator = 229, - aux_sym_record_entry_token1 = 230, - aux_sym__record_key_token1 = 231, - sym__table_head_separator = 232, - aux_sym_path_token1 = 233, - anon_sym_CARET = 234, - anon_sym_err_GT = 235, - anon_sym_out_GT = 236, - anon_sym_e_GT = 237, - anon_sym_o_GT = 238, - anon_sym_err_PLUSout_GT = 239, - anon_sym_out_PLUSerr_GT = 240, - anon_sym_o_PLUSe_GT = 241, - anon_sym_e_PLUSo_GT = 242, - anon_sym_err_GT_GT = 243, - anon_sym_out_GT_GT = 244, - anon_sym_e_GT_GT = 245, - anon_sym_o_GT_GT = 246, - anon_sym_err_PLUSout_GT_GT = 247, - anon_sym_out_PLUSerr_GT_GT = 248, - anon_sym_o_PLUSe_GT_GT = 249, - anon_sym_e_PLUSo_GT_GT = 250, - anon_sym_EQ2 = 251, - sym_short_flag_identifier = 252, - sym__unquoted_naive = 253, - aux_sym_unquoted_token1 = 254, - aux_sym_unquoted_token2 = 255, - aux_sym_unquoted_token3 = 256, - aux_sym_unquoted_token4 = 257, - aux_sym_unquoted_token5 = 258, - aux_sym_unquoted_token6 = 259, - aux_sym_unquoted_token7 = 260, - aux_sym__unquoted_in_list_token1 = 261, - aux_sym__unquoted_in_list_token2 = 262, - aux_sym__unquoted_in_list_token3 = 263, - aux_sym__unquoted_in_list_token4 = 264, - aux_sym__unquoted_in_list_token5 = 265, - aux_sym__unquoted_in_list_token6 = 266, - aux_sym__unquoted_in_list_token7 = 267, - aux_sym__unquoted_in_record_token1 = 268, - aux_sym__unquoted_in_record_token2 = 269, - aux_sym__unquoted_in_record_token3 = 270, - aux_sym__unquoted_in_record_token4 = 271, - aux_sym__unquoted_in_record_token5 = 272, - aux_sym__unquoted_in_record_token6 = 273, - aux_sym__unquoted_in_record_token7 = 274, - aux_sym__unquoted_with_expr_token1 = 275, - aux_sym__unquoted_in_list_with_expr_token1 = 276, - aux_sym__unquoted_in_record_with_expr_token1 = 277, - anon_sym_POUND = 278, - aux_sym_comment_token1 = 279, - sym_nu_script = 280, - sym_shebang = 281, - sym__block_body_statement = 282, - sym__declaration = 283, - sym_decl_alias = 284, - sym_stmt_let = 285, - sym_stmt_mut = 286, - sym_stmt_const = 287, - sym_assignment = 288, - sym__assignment_pattern = 289, - sym__mutable_assignment_pattern = 290, - sym__statement = 291, - sym_pipeline = 292, - sym__block_body_statement_parenthesized = 293, - sym__declaration_parenthesized = 294, - sym_decl_alias_parenthesized = 295, - sym_stmt_let_parenthesized = 296, - sym_stmt_mut_parenthesized = 297, - sym_stmt_const_parenthesized = 298, - sym_assignment_parenthesized = 299, - sym__assignment_pattern_parenthesized = 300, - sym__mutable_assignment_pattern_parenthesized = 301, - sym__statement_parenthesized = 302, - sym_pipeline_parenthesized = 303, - sym__block_body = 304, - sym_cmd_identifier = 305, - sym__command_name = 306, - sym__variable_name = 307, - aux_sym__pipe_separator = 308, - sym_decl_def = 309, - sym_decl_export = 310, - sym_decl_extern = 311, - sym_decl_module = 312, - sym_decl_use = 313, - sym_returns = 314, - sym__one_type = 315, - sym__multiple_types = 316, - sym_parameter_parens = 317, - sym_parameter_bracks = 318, - sym_parameter_pipes = 319, - sym_parameter = 320, - sym__param_name = 321, - sym_param_type = 322, - sym_param_value = 323, - sym__type_annotation = 324, - sym__all_type = 325, - sym_flat_type = 326, - sym_collection_type = 327, - sym_list_type = 328, - sym_param_cmd = 329, - sym_param_rest = 330, - sym_param_opt = 331, - sym_param_long_flag = 332, - sym_flag_capsule = 333, - sym_param_short_flag = 334, - sym__ctrl_statement = 335, - sym__ctrl_expression = 336, - sym__ctrl_expression_parenthesized = 337, - sym_ctrl_for = 338, - sym_ctrl_loop = 339, - sym_ctrl_error = 340, - sym_ctrl_while = 341, - sym_ctrl_do = 342, - sym_ctrl_do_parenthesized = 343, - sym_ctrl_if = 344, - sym_ctrl_if_parenthesized = 345, - sym_ctrl_match = 346, - sym_match_arm = 347, - sym_default_arm = 348, - sym_match_pattern = 349, - sym__match_pattern = 350, - sym_match_guard = 351, - sym__match_pattern_expression = 352, - sym__match_pattern_value = 353, - sym__match_pattern_list = 354, - sym__match_pattern_rest = 355, - sym__match_pattern_record = 356, - sym__match_pattern_record_variable = 357, - sym_ctrl_try = 358, - sym_ctrl_try_parenthesized = 359, - sym_ctrl_return = 360, - sym_pipe_element = 361, - sym_pipe_element_parenthesized = 362, - sym_stmt_source = 363, - sym_stmt_register = 364, - sym__stmt_hide = 365, - sym_hide_mod = 366, - sym_hide_env = 367, - sym__stmt_overlay = 368, - sym_overlay_list = 369, - sym_overlay_hide = 370, - sym_overlay_new = 371, - sym_overlay_use = 372, - sym_scope_pattern = 373, - sym_wild_card = 374, - sym_command_list = 375, - sym_block = 376, - sym__blosure = 377, - sym__where_predicate_lhs = 378, - sym_where_command = 379, - sym_where_command_parenthesized = 380, - sym__binary_predicate = 381, - sym__binary_predicate_parenthesized = 382, - sym__predicate = 383, - sym__expression = 384, - sym__expression_parenthesized = 385, - sym_expr_unary = 386, - sym__expr_unary_minus = 387, - sym_expr_binary = 388, - sym_expr_binary_parenthesized = 389, - sym__expr_binary_expression = 390, - sym__expr_binary_expression_parenthesized = 391, - sym_expr_parenthesized = 392, - sym__spread_parenthesized = 393, - sym__expr_parenthesized_immediate = 394, - sym__parenthesized_body = 395, - sym_val_range = 396, - sym__val_range = 397, - sym__val_range_with_end = 398, - sym__immediate_decimal = 399, - sym__value = 400, - sym_val_nothing = 401, - sym_val_bool = 402, - sym__spread_variable = 403, - sym_val_variable = 404, - sym_val_number = 405, - sym__val_number_decimal = 406, - sym__val_number = 407, - sym_val_duration = 408, - sym_val_filesize = 409, - sym_val_binary = 410, - sym_val_string = 411, - sym__str_double_quotes = 412, - sym_val_interpolated = 413, - sym__inter_single_quotes = 414, - sym__inter_double_quotes = 415, - sym_expr_interpolated = 416, - sym_val_list = 417, - sym__spread_list = 418, - sym_list_body = 419, - sym_val_entry = 420, - sym_val_record = 421, - sym__spread_record = 422, - sym_record_body = 423, - sym_record_entry = 424, - sym__record_key = 425, - sym_val_table = 426, - sym_val_closure = 427, - sym_cell_path = 428, - sym_path = 429, - sym_command = 430, - sym__command_parenthesized = 431, - sym__cmd_arg = 432, - sym_redirection = 433, - sym__flag = 434, - sym__flags_parenthesized = 435, - sym_short_flag = 436, - sym_long_flag = 437, - sym_unquoted = 438, - sym__unquoted_in_list = 439, - sym__unquoted_in_record = 440, - sym__unquoted_with_expr = 441, - sym__unquoted_in_list_with_expr = 442, - sym__unquoted_in_record_with_expr = 443, - sym__unquoted_anonymous_prefix = 444, - sym_comment = 445, - aux_sym_shebang_repeat1 = 446, - aux_sym_pipeline_repeat1 = 447, - aux_sym_pipeline_parenthesized_repeat1 = 448, - aux_sym__block_body_repeat1 = 449, - aux_sym__block_body_repeat2 = 450, - aux_sym_decl_def_repeat1 = 451, - aux_sym__multiple_types_repeat1 = 452, - aux_sym__multiple_types_repeat2 = 453, - aux_sym_parameter_parens_repeat1 = 454, - aux_sym_collection_type_repeat1 = 455, - aux_sym_ctrl_do_repeat1 = 456, - aux_sym_ctrl_do_repeat2 = 457, - aux_sym_ctrl_do_parenthesized_repeat1 = 458, - aux_sym_ctrl_do_parenthesized_repeat2 = 459, - aux_sym_ctrl_do_parenthesized_repeat3 = 460, - aux_sym_ctrl_match_repeat1 = 461, - aux_sym_match_pattern_repeat1 = 462, - aux_sym__match_pattern_list_repeat1 = 463, - aux_sym__match_pattern_record_repeat1 = 464, - aux_sym_command_list_repeat1 = 465, - aux_sym__parenthesized_body_repeat1 = 466, - aux_sym__parenthesized_body_repeat2 = 467, - aux_sym_val_binary_repeat1 = 468, - aux_sym__str_double_quotes_repeat1 = 469, - aux_sym__inter_single_quotes_repeat1 = 470, - aux_sym__inter_double_quotes_repeat1 = 471, - aux_sym_list_body_repeat1 = 472, - aux_sym_record_body_repeat1 = 473, - aux_sym_val_table_repeat1 = 474, - aux_sym_cell_path_repeat1 = 475, - aux_sym_command_repeat1 = 476, - aux_sym__command_parenthesized_repeat1 = 477, - aux_sym__unquoted_with_expr_repeat1 = 478, - aux_sym__unquoted_in_list_with_expr_repeat1 = 479, - aux_sym__unquoted_in_record_with_expr_repeat1 = 480, - anon_alias_sym__head = 481, - anon_alias_sym__prefix = 482, - anon_alias_sym__unit = 483, - anon_alias_sym_quoted = 484, + aux_sym_expr_binary_token1 = 174, + aux_sym_expr_binary_token2 = 175, + aux_sym_expr_binary_token3 = 176, + aux_sym_expr_binary_token4 = 177, + aux_sym_expr_binary_token5 = 178, + aux_sym_expr_binary_token6 = 179, + aux_sym_expr_binary_token7 = 180, + aux_sym_expr_binary_token8 = 181, + aux_sym_expr_binary_token9 = 182, + aux_sym_expr_binary_token10 = 183, + aux_sym_expr_binary_token11 = 184, + aux_sym_expr_binary_token12 = 185, + aux_sym_expr_binary_token13 = 186, + aux_sym_expr_binary_token14 = 187, + aux_sym_expr_binary_token15 = 188, + aux_sym_expr_binary_token16 = 189, + aux_sym_expr_binary_token17 = 190, + aux_sym_expr_binary_token18 = 191, + aux_sym_expr_binary_token19 = 192, + aux_sym_expr_binary_token20 = 193, + aux_sym_expr_binary_token21 = 194, + aux_sym_expr_binary_token22 = 195, + aux_sym_expr_binary_token23 = 196, + aux_sym_expr_binary_token24 = 197, + aux_sym_expr_binary_token25 = 198, + aux_sym_expr_binary_token26 = 199, + aux_sym_expr_binary_token27 = 200, + aux_sym_expr_binary_token28 = 201, + aux_sym_expr_binary_parenthesized_token1 = 202, + aux_sym_expr_binary_parenthesized_token2 = 203, + aux_sym_expr_binary_parenthesized_token3 = 204, + aux_sym_expr_binary_parenthesized_token4 = 205, + aux_sym_expr_binary_parenthesized_token5 = 206, + aux_sym_expr_binary_parenthesized_token6 = 207, + aux_sym_expr_binary_parenthesized_token7 = 208, + aux_sym_expr_binary_parenthesized_token8 = 209, + aux_sym_expr_binary_parenthesized_token9 = 210, + aux_sym_expr_binary_parenthesized_token10 = 211, + aux_sym_expr_binary_parenthesized_token11 = 212, + aux_sym_expr_binary_parenthesized_token12 = 213, + aux_sym_expr_binary_parenthesized_token13 = 214, + aux_sym_expr_binary_parenthesized_token14 = 215, + aux_sym_expr_binary_parenthesized_token15 = 216, + aux_sym_expr_binary_parenthesized_token16 = 217, + aux_sym_expr_binary_parenthesized_token17 = 218, + aux_sym_expr_binary_parenthesized_token18 = 219, + aux_sym_expr_binary_parenthesized_token19 = 220, + aux_sym_expr_binary_parenthesized_token20 = 221, + aux_sym_expr_binary_parenthesized_token21 = 222, + aux_sym_expr_binary_parenthesized_token22 = 223, + aux_sym_expr_binary_parenthesized_token23 = 224, + aux_sym_expr_binary_parenthesized_token24 = 225, + aux_sym_expr_binary_parenthesized_token25 = 226, + aux_sym_expr_binary_parenthesized_token26 = 227, + aux_sym_expr_binary_parenthesized_token27 = 228, + aux_sym_expr_binary_parenthesized_token28 = 229, + anon_sym_DOT_DOT_DOT_LPAREN = 230, + anon_sym_DOT_DOT2 = 231, + anon_sym_DOT = 232, + anon_sym_DOT_DOT_EQ = 233, + anon_sym_DOT_DOT_LT = 234, + anon_sym_DOT_DOT_EQ2 = 235, + anon_sym_DOT_DOT_LT2 = 236, + aux_sym__immediate_decimal_token1 = 237, + aux_sym__immediate_decimal_token2 = 238, + aux_sym__immediate_decimal_token3 = 239, + aux_sym__immediate_decimal_token4 = 240, + aux_sym__immediate_decimal_token5 = 241, + anon_sym_RPAREN2 = 242, + anon_sym_DOT_DOT_DOT_DOLLAR = 243, + anon_sym_nu = 244, + anon_sym_env = 245, + aux_sym__val_number_decimal_token1 = 246, + aux_sym__val_number_decimal_token2 = 247, + aux_sym__val_number_decimal_token3 = 248, + aux_sym__val_number_decimal_token4 = 249, + aux_sym__val_number_token1 = 250, + aux_sym__val_number_token2 = 251, + aux_sym__val_number_token3 = 252, + anon_sym_0b = 253, + sym_filesize_unit = 254, + sym_duration_unit = 255, + anon_sym_0o = 256, + anon_sym_0x = 257, + anon_sym_LBRACK2 = 258, + sym_hex_digit = 259, + sym_val_date = 260, + anon_sym_DQUOTE = 261, + sym__escaped_str_content = 262, + sym__str_single_quotes = 263, + sym__str_back_ticks = 264, + sym_escape_sequence = 265, + sym_escaped_interpolated_content = 266, + sym_unescaped_interpolated_content = 267, + anon_sym_DOLLAR_SQUOTE = 268, + anon_sym_SQUOTE = 269, + anon_sym_DOLLAR_DQUOTE = 270, + anon_sym_DQUOTE2 = 271, + sym_inter_escape_sequence = 272, + anon_sym_DOT_DOT_DOT_LBRACK = 273, + anon_sym_DOT_DOT_DOT_LBRACE = 274, + sym__entry_separator = 275, + aux_sym_record_entry_token1 = 276, + anon_sym_PLUS = 277, + aux_sym__record_key_token1 = 278, + sym__table_head_separator = 279, + aux_sym_path_token1 = 280, + aux_sym_env_var_token1 = 281, + aux_sym_env_var_token2 = 282, + anon_sym_CARET = 283, + anon_sym_err_GT = 284, + anon_sym_out_GT = 285, + anon_sym_e_GT = 286, + anon_sym_o_GT = 287, + anon_sym_err_PLUSout_GT = 288, + anon_sym_out_PLUSerr_GT = 289, + anon_sym_o_PLUSe_GT = 290, + anon_sym_e_PLUSo_GT = 291, + anon_sym_err_GT_GT = 292, + anon_sym_out_GT_GT = 293, + anon_sym_e_GT_GT = 294, + anon_sym_o_GT_GT = 295, + anon_sym_err_PLUSout_GT_GT = 296, + anon_sym_out_PLUSerr_GT_GT = 297, + anon_sym_o_PLUSe_GT_GT = 298, + anon_sym_e_PLUSo_GT_GT = 299, + anon_sym_EQ2 = 300, + sym_short_flag_identifier = 301, + sym__unquoted_naive = 302, + aux_sym_unquoted_token1 = 303, + aux_sym_unquoted_token2 = 304, + aux_sym_unquoted_token3 = 305, + aux_sym_unquoted_token4 = 306, + aux_sym__unquoted_in_list_token1 = 307, + aux_sym__unquoted_in_list_token2 = 308, + aux_sym__unquoted_in_list_token3 = 309, + aux_sym__unquoted_in_list_token4 = 310, + aux_sym__unquoted_in_record_token1 = 311, + aux_sym__unquoted_in_record_token2 = 312, + aux_sym__unquoted_in_record_token3 = 313, + aux_sym__unquoted_in_record_token4 = 314, + aux_sym__unquoted_with_expr_token1 = 315, + aux_sym__unquoted_in_list_with_expr_token1 = 316, + aux_sym__unquoted_in_record_with_expr_token1 = 317, + anon_sym_POUND = 318, + aux_sym_comment_token1 = 319, + sym_nu_script = 320, + sym_shebang = 321, + sym__block_body_statement = 322, + sym__declaration = 323, + sym_decl_alias = 324, + sym_stmt_let = 325, + sym_stmt_mut = 326, + sym_stmt_const = 327, + sym_assignment = 328, + sym__assignment_pattern = 329, + sym__mutable_assignment_pattern = 330, + sym__statement = 331, + sym_pipeline = 332, + sym__block_body_statement_parenthesized = 333, + sym__declaration_parenthesized = 334, + sym_decl_alias_parenthesized = 335, + sym_stmt_let_parenthesized = 336, + sym_stmt_mut_parenthesized = 337, + sym_stmt_const_parenthesized = 338, + sym_assignment_parenthesized = 339, + sym__assignment_pattern_parenthesized = 340, + sym__mutable_assignment_pattern_parenthesized = 341, + sym__statement_parenthesized = 342, + sym_pipeline_parenthesized = 343, + sym__block_body = 344, + sym_cmd_identifier = 345, + sym__command_name = 346, + sym__variable_name = 347, + aux_sym__pipe_separator = 348, + sym_decl_def = 349, + sym_decl_export = 350, + sym_decl_extern = 351, + sym_decl_module = 352, + sym_decl_use = 353, + sym_returns = 354, + sym__one_type = 355, + sym__multiple_types = 356, + sym_parameter_parens = 357, + sym_parameter_bracks = 358, + sym_parameter_pipes = 359, + sym_parameter = 360, + sym__param_name = 361, + sym_param_type = 362, + sym_param_value = 363, + sym__type_annotation = 364, + sym__all_type = 365, + sym_flat_type = 366, + sym_collection_type = 367, + sym_list_type = 368, + sym_param_cmd = 369, + sym_param_rest = 370, + sym_param_opt = 371, + sym_param_long_flag = 372, + sym_flag_capsule = 373, + sym_param_short_flag = 374, + sym__ctrl_statement = 375, + sym__ctrl_expression = 376, + sym__ctrl_expression_parenthesized = 377, + sym_ctrl_for = 378, + sym_ctrl_loop = 379, + sym_ctrl_error = 380, + sym_ctrl_while = 381, + sym_ctrl_do = 382, + sym_ctrl_do_parenthesized = 383, + sym_ctrl_if = 384, + sym_ctrl_if_parenthesized = 385, + sym_ctrl_match = 386, + sym_match_arm = 387, + sym_default_arm = 388, + sym_match_pattern = 389, + sym__match_pattern = 390, + sym_match_guard = 391, + sym__match_pattern_expression = 392, + sym__match_pattern_value = 393, + sym__match_pattern_list = 394, + sym__match_pattern_rest = 395, + sym__match_pattern_record = 396, + sym__match_pattern_record_variable = 397, + sym_ctrl_try = 398, + sym_ctrl_try_parenthesized = 399, + sym_ctrl_return = 400, + sym_pipe_element = 401, + sym_pipe_element_parenthesized = 402, + sym_stmt_source = 403, + sym_stmt_register = 404, + sym__stmt_hide = 405, + sym_hide_mod = 406, + sym_hide_env = 407, + sym__stmt_overlay = 408, + sym_overlay_list = 409, + sym_overlay_hide = 410, + sym_overlay_new = 411, + sym_overlay_use = 412, + sym_scope_pattern = 413, + sym_command_list = 414, + sym_block = 415, + sym__blosure = 416, + sym__where_predicate_lhs = 417, + sym_where_command = 418, + sym_where_command_parenthesized = 419, + sym__binary_predicate = 420, + sym__binary_predicate_parenthesized = 421, + sym__predicate = 422, + sym__expression = 423, + sym__expression_parenthesized = 424, + sym_expr_unary = 425, + sym__expr_unary_minus = 426, + sym_expr_binary = 427, + sym_expr_binary_parenthesized = 428, + sym__expr_binary_expression = 429, + sym__expr_binary_expression_parenthesized = 430, + sym_expr_parenthesized = 431, + sym__spread_parenthesized = 432, + sym__expr_parenthesized_immediate = 433, + sym__parenthesized_body = 434, + sym_val_range = 435, + sym__val_range = 436, + sym__val_range_with_end = 437, + sym__immediate_decimal = 438, + sym__value = 439, + sym_val_nothing = 440, + sym_val_bool = 441, + sym__spread_variable = 442, + sym_val_variable = 443, + sym_val_number = 444, + sym__val_number_decimal = 445, + sym__val_number = 446, + sym_val_duration = 447, + sym_val_filesize = 448, + sym_val_binary = 449, + sym_val_string = 450, + sym__str_double_quotes = 451, + sym_val_interpolated = 452, + sym__inter_single_quotes = 453, + sym__inter_double_quotes = 454, + sym_expr_interpolated = 455, + sym_val_list = 456, + sym__spread_list = 457, + sym_list_body = 458, + sym_val_entry = 459, + sym_val_record = 460, + sym__spread_record = 461, + sym_record_body = 462, + sym_record_entry = 463, + sym__record_key = 464, + sym_val_table = 465, + sym_val_closure = 466, + sym_cell_path = 467, + sym_path = 468, + sym_env_var = 469, + sym_command = 470, + sym__command_parenthesized = 471, + sym__cmd_arg = 472, + sym_redirection = 473, + sym__flag = 474, + sym__flags_parenthesized = 475, + sym_short_flag = 476, + sym_long_flag = 477, + sym_unquoted = 478, + sym__unquoted_in_list = 479, + sym__unquoted_in_record = 480, + sym__unquoted_with_expr = 481, + sym__unquoted_in_list_with_expr = 482, + sym__unquoted_in_record_with_expr = 483, + sym__unquoted_anonymous_prefix = 484, + sym_comment = 485, + aux_sym_shebang_repeat1 = 486, + aux_sym_pipeline_repeat1 = 487, + aux_sym_pipeline_parenthesized_repeat1 = 488, + aux_sym__block_body_repeat1 = 489, + aux_sym__block_body_repeat2 = 490, + aux_sym_decl_def_repeat1 = 491, + aux_sym__multiple_types_repeat1 = 492, + aux_sym__multiple_types_repeat2 = 493, + aux_sym_parameter_parens_repeat1 = 494, + aux_sym_collection_type_repeat1 = 495, + aux_sym_ctrl_do_repeat1 = 496, + aux_sym_ctrl_do_repeat2 = 497, + aux_sym_ctrl_do_parenthesized_repeat1 = 498, + aux_sym_ctrl_do_parenthesized_repeat2 = 499, + aux_sym_ctrl_do_parenthesized_repeat3 = 500, + aux_sym_ctrl_match_repeat1 = 501, + aux_sym_match_pattern_repeat1 = 502, + aux_sym__match_pattern_list_repeat1 = 503, + aux_sym__match_pattern_record_repeat1 = 504, + aux_sym_pipe_element_repeat1 = 505, + aux_sym_pipe_element_repeat2 = 506, + aux_sym_pipe_element_parenthesized_repeat1 = 507, + aux_sym_command_list_repeat1 = 508, + aux_sym__parenthesized_body_repeat1 = 509, + aux_sym__parenthesized_body_repeat2 = 510, + aux_sym_val_binary_repeat1 = 511, + aux_sym__str_double_quotes_repeat1 = 512, + aux_sym__inter_single_quotes_repeat1 = 513, + aux_sym__inter_double_quotes_repeat1 = 514, + aux_sym_list_body_repeat1 = 515, + aux_sym_record_body_repeat1 = 516, + aux_sym_val_table_repeat1 = 517, + aux_sym_cell_path_repeat1 = 518, + aux_sym_command_repeat1 = 519, + aux_sym__command_parenthesized_repeat1 = 520, + aux_sym__unquoted_with_expr_repeat1 = 521, + aux_sym__unquoted_in_list_with_expr_repeat1 = 522, + aux_sym__unquoted_in_record_with_expr_repeat1 = 523, + anon_alias_sym__head = 524, + anon_alias_sym__prefix = 525, + anon_alias_sym__unit = 526, + anon_alias_sym_quoted = 527, }; static const char * const ts_symbol_names[] = { @@ -667,7 +710,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_overlay] = "overlay", [anon_sym_new] = "new", [anon_sym_as] = "as", - [anon_sym_STAR] = "*", + [sym_wild_card] = "wild_card", [anon_sym_QMARK2] = "\?", [anon_sym_where] = "where", [anon_sym_and] = "and", @@ -685,17 +728,62 @@ static const char * const ts_symbol_names[] = { [anon_sym_BANG_TILDE] = "!~", [aux_sym_expr_unary_token1] = "not", [anon_sym_LPAREN2] = "(", - [anon_sym_STAR_STAR] = "**", - [anon_sym_PLUS_PLUS] = "++", - [anon_sym_SLASH] = "/", - [anon_sym_mod] = "mod", - [anon_sym_SLASH_SLASH] = "//", - [anon_sym_PLUS] = "+", - [anon_sym_bit_DASHshl] = "bit-shl", - [anon_sym_bit_DASHshr] = "bit-shr", - [anon_sym_bit_DASHand] = "bit-and", - [anon_sym_bit_DASHxor] = "bit-xor", - [anon_sym_bit_DASHor] = "bit-or", + [aux_sym_expr_binary_token1] = "**", + [aux_sym_expr_binary_token2] = "++", + [aux_sym_expr_binary_token3] = "*", + [aux_sym_expr_binary_token4] = "/", + [aux_sym_expr_binary_token5] = "mod", + [aux_sym_expr_binary_token6] = "//", + [aux_sym_expr_binary_token7] = "+", + [aux_sym_expr_binary_token8] = "-", + [aux_sym_expr_binary_token9] = "bit-shl", + [aux_sym_expr_binary_token10] = "bit-shr", + [aux_sym_expr_binary_token11] = "=~", + [aux_sym_expr_binary_token12] = "!~", + [aux_sym_expr_binary_token13] = "bit-and", + [aux_sym_expr_binary_token14] = "bit-xor", + [aux_sym_expr_binary_token15] = "bit-or", + [aux_sym_expr_binary_token16] = "and", + [aux_sym_expr_binary_token17] = "xor", + [aux_sym_expr_binary_token18] = "or", + [aux_sym_expr_binary_token19] = "in", + [aux_sym_expr_binary_token20] = "not-in", + [aux_sym_expr_binary_token21] = "starts-with", + [aux_sym_expr_binary_token22] = "ends-with", + [aux_sym_expr_binary_token23] = "==", + [aux_sym_expr_binary_token24] = "!=", + [aux_sym_expr_binary_token25] = "<", + [aux_sym_expr_binary_token26] = "<=", + [aux_sym_expr_binary_token27] = ">", + [aux_sym_expr_binary_token28] = ">=", + [aux_sym_expr_binary_parenthesized_token1] = "**", + [aux_sym_expr_binary_parenthesized_token2] = "++", + [aux_sym_expr_binary_parenthesized_token3] = "*", + [aux_sym_expr_binary_parenthesized_token4] = "/", + [aux_sym_expr_binary_parenthesized_token5] = "mod", + [aux_sym_expr_binary_parenthesized_token6] = "//", + [aux_sym_expr_binary_parenthesized_token7] = "+", + [aux_sym_expr_binary_parenthesized_token8] = "-", + [aux_sym_expr_binary_parenthesized_token9] = "bit-shl", + [aux_sym_expr_binary_parenthesized_token10] = "bit-shr", + [aux_sym_expr_binary_parenthesized_token11] = "=~", + [aux_sym_expr_binary_parenthesized_token12] = "!~", + [aux_sym_expr_binary_parenthesized_token13] = "bit-and", + [aux_sym_expr_binary_parenthesized_token14] = "bit-xor", + [aux_sym_expr_binary_parenthesized_token15] = "bit-or", + [aux_sym_expr_binary_parenthesized_token16] = "and", + [aux_sym_expr_binary_parenthesized_token17] = "xor", + [aux_sym_expr_binary_parenthesized_token18] = "or", + [aux_sym_expr_binary_parenthesized_token19] = "in", + [aux_sym_expr_binary_parenthesized_token20] = "not-in", + [aux_sym_expr_binary_parenthesized_token21] = "starts-with", + [aux_sym_expr_binary_parenthesized_token22] = "ends-with", + [aux_sym_expr_binary_parenthesized_token23] = "==", + [aux_sym_expr_binary_parenthesized_token24] = "!=", + [aux_sym_expr_binary_parenthesized_token25] = "<", + [aux_sym_expr_binary_parenthesized_token26] = "<=", + [aux_sym_expr_binary_parenthesized_token27] = ">", + [aux_sym_expr_binary_parenthesized_token28] = ">=", [anon_sym_DOT_DOT_DOT_LPAREN] = "...(", [anon_sym_DOT_DOT2] = "..", [anon_sym_DOT] = ".", @@ -707,14 +795,15 @@ static const char * const ts_symbol_names[] = { [aux_sym__immediate_decimal_token2] = "_immediate_decimal_token2", [aux_sym__immediate_decimal_token3] = "_immediate_decimal_token3", [aux_sym__immediate_decimal_token4] = "_immediate_decimal_token4", + [aux_sym__immediate_decimal_token5] = "_immediate_decimal_token5", [anon_sym_RPAREN2] = ")", [anon_sym_DOT_DOT_DOT_DOLLAR] = "...$", [anon_sym_nu] = "nu", [anon_sym_env] = "env", [aux_sym__val_number_decimal_token1] = "_val_number_decimal_token1", [aux_sym__val_number_decimal_token2] = "_val_number_decimal_token2", - [anon_sym_DOT2] = ".", [aux_sym__val_number_decimal_token3] = "_val_number_decimal_token3", + [aux_sym__val_number_decimal_token4] = "_val_number_decimal_token4", [aux_sym__val_number_token1] = "_val_number_token1", [aux_sym__val_number_token2] = "_val_number_token2", [aux_sym__val_number_token3] = "_val_number_token3", @@ -742,9 +831,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOT_DOT_DOT_LBRACE] = "...{", [sym__entry_separator] = "_entry_separator", [aux_sym_record_entry_token1] = ":", + [anon_sym_PLUS] = "+", [aux_sym__record_key_token1] = "_record_key_token1", [sym__table_head_separator] = "_table_head_separator", [aux_sym_path_token1] = "path_token1", + [aux_sym_env_var_token1] = "identifier", + [aux_sym_env_var_token2] = "val_string", [anon_sym_CARET] = "^", [anon_sym_err_GT] = "err>", [anon_sym_out_GT] = "out>", @@ -769,23 +861,14 @@ static const char * const ts_symbol_names[] = { [aux_sym_unquoted_token2] = "unquoted_token2", [aux_sym_unquoted_token3] = "unquoted_token3", [aux_sym_unquoted_token4] = "unquoted_token4", - [aux_sym_unquoted_token5] = "unquoted_token5", - [aux_sym_unquoted_token6] = "unquoted_token6", - [aux_sym_unquoted_token7] = "unquoted_token7", [aux_sym__unquoted_in_list_token1] = "_unquoted_in_list_token1", [aux_sym__unquoted_in_list_token2] = "_unquoted_in_list_token2", [aux_sym__unquoted_in_list_token3] = "_unquoted_in_list_token3", [aux_sym__unquoted_in_list_token4] = "_unquoted_in_list_token4", - [aux_sym__unquoted_in_list_token5] = "_unquoted_in_list_token5", - [aux_sym__unquoted_in_list_token6] = "_unquoted_in_list_token6", - [aux_sym__unquoted_in_list_token7] = "_unquoted_in_list_token7", [aux_sym__unquoted_in_record_token1] = "_unquoted_in_record_token1", [aux_sym__unquoted_in_record_token2] = "_unquoted_in_record_token2", [aux_sym__unquoted_in_record_token3] = "_unquoted_in_record_token3", [aux_sym__unquoted_in_record_token4] = "_unquoted_in_record_token4", - [aux_sym__unquoted_in_record_token5] = "_unquoted_in_record_token5", - [aux_sym__unquoted_in_record_token6] = "_unquoted_in_record_token6", - [aux_sym__unquoted_in_record_token7] = "_unquoted_in_record_token7", [aux_sym__unquoted_with_expr_token1] = "_unquoted_with_expr_token1", [aux_sym__unquoted_in_list_with_expr_token1] = "_unquoted_in_list_with_expr_token1", [aux_sym__unquoted_in_record_with_expr_token1] = "_unquoted_in_record_with_expr_token1", @@ -885,7 +968,6 @@ static const char * const ts_symbol_names[] = { [sym_overlay_new] = "overlay_new", [sym_overlay_use] = "overlay_use", [sym_scope_pattern] = "scope_pattern", - [sym_wild_card] = "wild_card", [sym_command_list] = "command_list", [sym_block] = "block", [sym__blosure] = "_blosure", @@ -941,6 +1023,7 @@ static const char * const ts_symbol_names[] = { [sym_val_closure] = "val_closure", [sym_cell_path] = "cell_path", [sym_path] = "path", + [sym_env_var] = "env_var", [sym_command] = "command", [sym__command_parenthesized] = "command", [sym__cmd_arg] = "_cmd_arg", @@ -976,6 +1059,9 @@ static const char * const ts_symbol_names[] = { [aux_sym_match_pattern_repeat1] = "match_pattern_repeat1", [aux_sym__match_pattern_list_repeat1] = "_match_pattern_list_repeat1", [aux_sym__match_pattern_record_repeat1] = "_match_pattern_record_repeat1", + [aux_sym_pipe_element_repeat1] = "pipe_element_repeat1", + [aux_sym_pipe_element_repeat2] = "pipe_element_repeat2", + [aux_sym_pipe_element_parenthesized_repeat1] = "pipe_element_parenthesized_repeat1", [aux_sym_command_list_repeat1] = "command_list_repeat1", [aux_sym__parenthesized_body_repeat1] = "_parenthesized_body_repeat1", [aux_sym__parenthesized_body_repeat2] = "_parenthesized_body_repeat2", @@ -1155,7 +1241,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_overlay] = anon_sym_overlay, [anon_sym_new] = anon_sym_new, [anon_sym_as] = anon_sym_as, - [anon_sym_STAR] = anon_sym_STAR, + [sym_wild_card] = sym_wild_card, [anon_sym_QMARK2] = anon_sym_QMARK, [anon_sym_where] = anon_sym_where, [anon_sym_and] = anon_sym_and, @@ -1173,17 +1259,62 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_BANG_TILDE] = anon_sym_BANG_TILDE, [aux_sym_expr_unary_token1] = aux_sym_expr_unary_token1, [anon_sym_LPAREN2] = anon_sym_LPAREN, - [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, - [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_mod] = anon_sym_mod, - [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_bit_DASHshl] = anon_sym_bit_DASHshl, - [anon_sym_bit_DASHshr] = anon_sym_bit_DASHshr, - [anon_sym_bit_DASHand] = anon_sym_bit_DASHand, - [anon_sym_bit_DASHxor] = anon_sym_bit_DASHxor, - [anon_sym_bit_DASHor] = anon_sym_bit_DASHor, + [aux_sym_expr_binary_token1] = aux_sym_expr_binary_token1, + [aux_sym_expr_binary_token2] = aux_sym_expr_binary_token2, + [aux_sym_expr_binary_token3] = aux_sym_expr_binary_token3, + [aux_sym_expr_binary_token4] = aux_sym_expr_binary_token4, + [aux_sym_expr_binary_token5] = aux_sym_expr_binary_token5, + [aux_sym_expr_binary_token6] = aux_sym_expr_binary_token6, + [aux_sym_expr_binary_token7] = anon_sym_PLUS, + [aux_sym_expr_binary_token8] = anon_sym_DASH, + [aux_sym_expr_binary_token9] = aux_sym_expr_binary_token9, + [aux_sym_expr_binary_token10] = aux_sym_expr_binary_token10, + [aux_sym_expr_binary_token11] = anon_sym_EQ_TILDE, + [aux_sym_expr_binary_token12] = anon_sym_BANG_TILDE, + [aux_sym_expr_binary_token13] = aux_sym_expr_binary_token13, + [aux_sym_expr_binary_token14] = aux_sym_expr_binary_token14, + [aux_sym_expr_binary_token15] = aux_sym_expr_binary_token15, + [aux_sym_expr_binary_token16] = anon_sym_and, + [aux_sym_expr_binary_token17] = anon_sym_xor, + [aux_sym_expr_binary_token18] = anon_sym_or, + [aux_sym_expr_binary_token19] = anon_sym_in, + [aux_sym_expr_binary_token20] = anon_sym_not_DASHin, + [aux_sym_expr_binary_token21] = anon_sym_starts_DASHwith, + [aux_sym_expr_binary_token22] = anon_sym_ends_DASHwith, + [aux_sym_expr_binary_token23] = anon_sym_EQ_EQ, + [aux_sym_expr_binary_token24] = anon_sym_BANG_EQ, + [aux_sym_expr_binary_token25] = anon_sym_LT, + [aux_sym_expr_binary_token26] = anon_sym_LT_EQ, + [aux_sym_expr_binary_token27] = anon_sym_GT, + [aux_sym_expr_binary_token28] = anon_sym_GT_EQ, + [aux_sym_expr_binary_parenthesized_token1] = aux_sym_expr_binary_token1, + [aux_sym_expr_binary_parenthesized_token2] = aux_sym_expr_binary_token2, + [aux_sym_expr_binary_parenthesized_token3] = aux_sym_expr_binary_token3, + [aux_sym_expr_binary_parenthesized_token4] = aux_sym_expr_binary_token4, + [aux_sym_expr_binary_parenthesized_token5] = aux_sym_expr_binary_token5, + [aux_sym_expr_binary_parenthesized_token6] = aux_sym_expr_binary_token6, + [aux_sym_expr_binary_parenthesized_token7] = anon_sym_PLUS, + [aux_sym_expr_binary_parenthesized_token8] = anon_sym_DASH, + [aux_sym_expr_binary_parenthesized_token9] = aux_sym_expr_binary_token9, + [aux_sym_expr_binary_parenthesized_token10] = aux_sym_expr_binary_token10, + [aux_sym_expr_binary_parenthesized_token11] = anon_sym_EQ_TILDE, + [aux_sym_expr_binary_parenthesized_token12] = anon_sym_BANG_TILDE, + [aux_sym_expr_binary_parenthesized_token13] = aux_sym_expr_binary_token13, + [aux_sym_expr_binary_parenthesized_token14] = aux_sym_expr_binary_token14, + [aux_sym_expr_binary_parenthesized_token15] = aux_sym_expr_binary_token15, + [aux_sym_expr_binary_parenthesized_token16] = anon_sym_and, + [aux_sym_expr_binary_parenthesized_token17] = anon_sym_xor, + [aux_sym_expr_binary_parenthesized_token18] = anon_sym_or, + [aux_sym_expr_binary_parenthesized_token19] = anon_sym_in, + [aux_sym_expr_binary_parenthesized_token20] = anon_sym_not_DASHin, + [aux_sym_expr_binary_parenthesized_token21] = anon_sym_starts_DASHwith, + [aux_sym_expr_binary_parenthesized_token22] = anon_sym_ends_DASHwith, + [aux_sym_expr_binary_parenthesized_token23] = anon_sym_EQ_EQ, + [aux_sym_expr_binary_parenthesized_token24] = anon_sym_BANG_EQ, + [aux_sym_expr_binary_parenthesized_token25] = anon_sym_LT, + [aux_sym_expr_binary_parenthesized_token26] = anon_sym_LT_EQ, + [aux_sym_expr_binary_parenthesized_token27] = anon_sym_GT, + [aux_sym_expr_binary_parenthesized_token28] = anon_sym_GT_EQ, [anon_sym_DOT_DOT_DOT_LPAREN] = anon_sym_DOT_DOT_DOT_LPAREN, [anon_sym_DOT_DOT2] = anon_sym_DOT_DOT, [anon_sym_DOT] = anon_sym_DOT, @@ -1195,14 +1326,15 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__immediate_decimal_token2] = aux_sym__immediate_decimal_token2, [aux_sym__immediate_decimal_token3] = aux_sym__immediate_decimal_token3, [aux_sym__immediate_decimal_token4] = aux_sym__immediate_decimal_token4, + [aux_sym__immediate_decimal_token5] = aux_sym__immediate_decimal_token5, [anon_sym_RPAREN2] = anon_sym_RPAREN, [anon_sym_DOT_DOT_DOT_DOLLAR] = anon_sym_DOT_DOT_DOT_DOLLAR, [anon_sym_nu] = anon_sym_nu, [anon_sym_env] = anon_sym_env, [aux_sym__val_number_decimal_token1] = aux_sym__val_number_decimal_token1, [aux_sym__val_number_decimal_token2] = aux_sym__val_number_decimal_token2, - [anon_sym_DOT2] = anon_sym_DOT, [aux_sym__val_number_decimal_token3] = aux_sym__val_number_decimal_token3, + [aux_sym__val_number_decimal_token4] = aux_sym__val_number_decimal_token4, [aux_sym__val_number_token1] = aux_sym__val_number_token1, [aux_sym__val_number_token2] = aux_sym__val_number_token2, [aux_sym__val_number_token3] = aux_sym__val_number_token3, @@ -1230,9 +1362,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOT_DOT_DOT_LBRACE] = anon_sym_DOT_DOT_DOT_LBRACE, [sym__entry_separator] = sym__entry_separator, [aux_sym_record_entry_token1] = anon_sym_COLON, + [anon_sym_PLUS] = anon_sym_PLUS, [aux_sym__record_key_token1] = aux_sym__record_key_token1, [sym__table_head_separator] = sym__table_head_separator, [aux_sym_path_token1] = aux_sym_path_token1, + [aux_sym_env_var_token1] = sym_identifier, + [aux_sym_env_var_token2] = sym_val_string, [anon_sym_CARET] = anon_sym_CARET, [anon_sym_err_GT] = anon_sym_err_GT, [anon_sym_out_GT] = anon_sym_out_GT, @@ -1257,23 +1392,14 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_unquoted_token2] = aux_sym_unquoted_token2, [aux_sym_unquoted_token3] = aux_sym_unquoted_token3, [aux_sym_unquoted_token4] = aux_sym_unquoted_token4, - [aux_sym_unquoted_token5] = aux_sym_unquoted_token5, - [aux_sym_unquoted_token6] = aux_sym_unquoted_token6, - [aux_sym_unquoted_token7] = aux_sym_unquoted_token7, [aux_sym__unquoted_in_list_token1] = aux_sym__unquoted_in_list_token1, [aux_sym__unquoted_in_list_token2] = aux_sym__unquoted_in_list_token2, [aux_sym__unquoted_in_list_token3] = aux_sym__unquoted_in_list_token3, [aux_sym__unquoted_in_list_token4] = aux_sym__unquoted_in_list_token4, - [aux_sym__unquoted_in_list_token5] = aux_sym__unquoted_in_list_token5, - [aux_sym__unquoted_in_list_token6] = aux_sym__unquoted_in_list_token6, - [aux_sym__unquoted_in_list_token7] = aux_sym__unquoted_in_list_token7, [aux_sym__unquoted_in_record_token1] = aux_sym__unquoted_in_record_token1, [aux_sym__unquoted_in_record_token2] = aux_sym__unquoted_in_record_token2, [aux_sym__unquoted_in_record_token3] = aux_sym__unquoted_in_record_token3, [aux_sym__unquoted_in_record_token4] = aux_sym__unquoted_in_record_token4, - [aux_sym__unquoted_in_record_token5] = aux_sym__unquoted_in_record_token5, - [aux_sym__unquoted_in_record_token6] = aux_sym__unquoted_in_record_token6, - [aux_sym__unquoted_in_record_token7] = aux_sym__unquoted_in_record_token7, [aux_sym__unquoted_with_expr_token1] = aux_sym__unquoted_with_expr_token1, [aux_sym__unquoted_in_list_with_expr_token1] = aux_sym__unquoted_in_list_with_expr_token1, [aux_sym__unquoted_in_record_with_expr_token1] = aux_sym__unquoted_in_record_with_expr_token1, @@ -1373,7 +1499,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_overlay_new] = sym_overlay_new, [sym_overlay_use] = sym_overlay_use, [sym_scope_pattern] = sym_scope_pattern, - [sym_wild_card] = sym_wild_card, [sym_command_list] = sym_command_list, [sym_block] = sym_block, [sym__blosure] = sym__blosure, @@ -1429,6 +1554,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_val_closure] = sym_val_closure, [sym_cell_path] = sym_cell_path, [sym_path] = sym_path, + [sym_env_var] = sym_env_var, [sym_command] = sym_command, [sym__command_parenthesized] = sym_command, [sym__cmd_arg] = sym__cmd_arg, @@ -1464,6 +1590,9 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_match_pattern_repeat1] = aux_sym_match_pattern_repeat1, [aux_sym__match_pattern_list_repeat1] = aux_sym__match_pattern_list_repeat1, [aux_sym__match_pattern_record_repeat1] = aux_sym__match_pattern_record_repeat1, + [aux_sym_pipe_element_repeat1] = aux_sym_pipe_element_repeat1, + [aux_sym_pipe_element_repeat2] = aux_sym_pipe_element_repeat2, + [aux_sym_pipe_element_parenthesized_repeat1] = aux_sym_pipe_element_parenthesized_repeat1, [aux_sym_command_list_repeat1] = aux_sym_command_list_repeat1, [aux_sym__parenthesized_body_repeat1] = aux_sym__parenthesized_body_repeat1, [aux_sym__parenthesized_body_repeat2] = aux_sym__parenthesized_body_repeat2, @@ -2111,9 +2240,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_STAR] = { + [sym_wild_card] = { .visible = true, - .named = false, + .named = true, }, [anon_sym_QMARK2] = { .visible = true, @@ -2183,47 +2312,227 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_STAR_STAR] = { + [aux_sym_expr_binary_token1] = { .visible = true, .named = false, }, - [anon_sym_PLUS_PLUS] = { + [aux_sym_expr_binary_token2] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { + [aux_sym_expr_binary_token3] = { .visible = true, .named = false, }, - [anon_sym_mod] = { + [aux_sym_expr_binary_token4] = { .visible = true, .named = false, }, - [anon_sym_SLASH_SLASH] = { + [aux_sym_expr_binary_token5] = { .visible = true, .named = false, }, - [anon_sym_PLUS] = { + [aux_sym_expr_binary_token6] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token7] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token8] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token9] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token10] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token11] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token12] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token13] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token14] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token15] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token16] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token17] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token18] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token19] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token20] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token21] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token22] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token23] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token24] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token25] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token26] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token27] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_token28] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token3] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token4] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token5] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token6] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token7] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token8] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token9] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token10] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token11] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token12] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token13] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token14] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token15] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token16] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token17] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token18] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token19] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token20] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token21] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token22] = { .visible = true, .named = false, }, - [anon_sym_bit_DASHshl] = { + [aux_sym_expr_binary_parenthesized_token23] = { .visible = true, .named = false, }, - [anon_sym_bit_DASHshr] = { + [aux_sym_expr_binary_parenthesized_token24] = { .visible = true, .named = false, }, - [anon_sym_bit_DASHand] = { + [aux_sym_expr_binary_parenthesized_token25] = { .visible = true, .named = false, }, - [anon_sym_bit_DASHxor] = { + [aux_sym_expr_binary_parenthesized_token26] = { .visible = true, .named = false, }, - [anon_sym_bit_DASHor] = { + [aux_sym_expr_binary_parenthesized_token27] = { + .visible = true, + .named = false, + }, + [aux_sym_expr_binary_parenthesized_token28] = { .visible = true, .named = false, }, @@ -2271,6 +2580,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__immediate_decimal_token5] = { + .visible = false, + .named = false, + }, [anon_sym_RPAREN2] = { .visible = true, .named = false, @@ -2295,11 +2608,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [anon_sym_DOT2] = { - .visible = true, + [aux_sym__val_number_decimal_token3] = { + .visible = false, .named = false, }, - [aux_sym__val_number_decimal_token3] = { + [aux_sym__val_number_decimal_token4] = { .visible = false, .named = false, }, @@ -2411,6 +2724,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, [aux_sym__record_key_token1] = { .visible = false, .named = false, @@ -2423,6 +2740,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_env_var_token1] = { + .visible = true, + .named = true, + }, + [aux_sym_env_var_token2] = { + .visible = true, + .named = true, + }, [anon_sym_CARET] = { .visible = true, .named = false, @@ -2519,18 +2844,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_unquoted_token5] = { - .visible = false, - .named = false, - }, - [aux_sym_unquoted_token6] = { - .visible = false, - .named = false, - }, - [aux_sym_unquoted_token7] = { - .visible = false, - .named = false, - }, [aux_sym__unquoted_in_list_token1] = { .visible = false, .named = false, @@ -2547,18 +2860,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__unquoted_in_list_token5] = { - .visible = false, - .named = false, - }, - [aux_sym__unquoted_in_list_token6] = { - .visible = false, - .named = false, - }, - [aux_sym__unquoted_in_list_token7] = { - .visible = false, - .named = false, - }, [aux_sym__unquoted_in_record_token1] = { .visible = false, .named = false, @@ -2575,18 +2876,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__unquoted_in_record_token5] = { - .visible = false, - .named = false, - }, - [aux_sym__unquoted_in_record_token6] = { - .visible = false, - .named = false, - }, - [aux_sym__unquoted_in_record_token7] = { - .visible = false, - .named = false, - }, [aux_sym__unquoted_with_expr_token1] = { .visible = false, .named = false, @@ -2983,10 +3272,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_wild_card] = { - .visible = true, - .named = true, - }, [sym_command_list] = { .visible = true, .named = true, @@ -3207,6 +3492,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_env_var] = { + .visible = true, + .named = true, + }, [sym_command] = { .visible = true, .named = true, @@ -3347,6 +3636,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_pipe_element_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipe_element_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_pipe_element_parenthesized_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_command_list_repeat1] = { .visible = false, .named = false, @@ -3614,239 +3915,241 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [33] = {.index = 49, .length = 1}, [34] = {.index = 50, .length = 1}, [35] = {.index = 51, .length = 2}, - [36] = {.index = 53, .length = 6}, - [37] = {.index = 59, .length = 1}, - [38] = {.index = 59, .length = 1}, - [39] = {.index = 60, .length = 2}, - [40] = {.index = 62, .length = 5}, - [41] = {.index = 67, .length = 3}, - [42] = {.index = 70, .length = 1}, - [43] = {.index = 71, .length = 4}, - [44] = {.index = 75, .length = 4}, - [45] = {.index = 79, .length = 3}, - [46] = {.index = 82, .length = 2}, - [47] = {.index = 84, .length = 1}, - [48] = {.index = 85, .length = 1}, - [50] = {.index = 86, .length = 1}, - [51] = {.index = 87, .length = 2}, + [36] = {.index = 53, .length = 2}, + [37] = {.index = 55, .length = 6}, + [38] = {.index = 61, .length = 1}, + [39] = {.index = 61, .length = 1}, + [40] = {.index = 62, .length = 2}, + [41] = {.index = 64, .length = 5}, + [42] = {.index = 69, .length = 3}, + [43] = {.index = 72, .length = 1}, + [44] = {.index = 73, .length = 4}, + [45] = {.index = 77, .length = 4}, + [46] = {.index = 81, .length = 1}, + [47] = {.index = 82, .length = 3}, + [48] = {.index = 85, .length = 2}, + [49] = {.index = 87, .length = 1}, + [51] = {.index = 88, .length = 1}, [52] = {.index = 89, .length = 2}, - [53] = {.index = 91, .length = 1}, - [54] = {.index = 92, .length = 2}, - [55] = {.index = 94, .length = 2}, - [56] = {.index = 96, .length = 1}, - [57] = {.index = 97, .length = 4}, - [58] = {.index = 101, .length = 1}, - [59] = {.index = 102, .length = 1}, - [60] = {.index = 103, .length = 1}, - [61] = {.index = 104, .length = 1}, - [62] = {.index = 105, .length = 2}, - [63] = {.index = 105, .length = 2}, - [64] = {.index = 107, .length = 3}, - [65] = {.index = 110, .length = 1}, - [66] = {.index = 111, .length = 3}, - [67] = {.index = 114, .length = 2}, - [68] = {.index = 116, .length = 1}, - [69] = {.index = 117, .length = 1}, - [70] = {.index = 118, .length = 2}, - [71] = {.index = 120, .length = 7}, - [72] = {.index = 127, .length = 1}, - [73] = {.index = 128, .length = 1}, - [74] = {.index = 129, .length = 2}, - [75] = {.index = 131, .length = 5}, - [76] = {.index = 136, .length = 1}, - [77] = {.index = 137, .length = 1}, - [78] = {.index = 138, .length = 1}, - [79] = {.index = 139, .length = 10}, - [80] = {.index = 149, .length = 3}, - [81] = {.index = 149, .length = 3}, - [82] = {.index = 152, .length = 2}, - [83] = {.index = 152, .length = 2}, - [84] = {.index = 152, .length = 2}, - [85] = {.index = 152, .length = 2}, - [86] = {.index = 154, .length = 4}, - [87] = {.index = 158, .length = 4}, - [88] = {.index = 162, .length = 2}, - [89] = {.index = 164, .length = 4}, - [90] = {.index = 168, .length = 4}, - [91] = {.index = 172, .length = 1}, - [92] = {.index = 173, .length = 1}, - [93] = {.index = 174, .length = 1}, - [94] = {.index = 175, .length = 1}, - [95] = {.index = 175, .length = 1}, - [96] = {.index = 176, .length = 1}, - [97] = {.index = 177, .length = 5}, - [98] = {.index = 182, .length = 5}, - [99] = {.index = 187, .length = 1}, - [100] = {.index = 187, .length = 1}, - [101] = {.index = 188, .length = 2}, - [103] = {.index = 190, .length = 2}, - [104] = {.index = 192, .length = 1}, - [105] = {.index = 193, .length = 4}, - [106] = {.index = 197, .length = 1}, - [107] = {.index = 198, .length = 1}, - [108] = {.index = 199, .length = 1}, - [109] = {.index = 200, .length = 2}, - [110] = {.index = 202, .length = 1}, - [111] = {.index = 199, .length = 1}, - [112] = {.index = 203, .length = 2}, - [113] = {.index = 205, .length = 1}, - [114] = {.index = 206, .length = 2}, - [115] = {.index = 208, .length = 2}, - [116] = {.index = 210, .length = 4}, - [117] = {.index = 214, .length = 1}, - [118] = {.index = 215, .length = 1}, - [119] = {.index = 203, .length = 2}, - [120] = {.index = 216, .length = 2}, - [121] = {.index = 216, .length = 2}, - [122] = {.index = 216, .length = 2}, - [123] = {.index = 216, .length = 2}, - [124] = {.index = 218, .length = 2}, - [125] = {.index = 220, .length = 1}, - [126] = {.index = 221, .length = 9}, - [127] = {.index = 230, .length = 2}, - [128] = {.index = 232, .length = 1}, - [129] = {.index = 233, .length = 2}, - [130] = {.index = 235, .length = 1}, - [131] = {.index = 236, .length = 2}, - [132] = {.index = 236, .length = 2}, - [133] = {.index = 236, .length = 2}, - [134] = {.index = 236, .length = 2}, - [135] = {.index = 238, .length = 4}, - [136] = {.index = 242, .length = 5}, - [137] = {.index = 247, .length = 5}, - [138] = {.index = 252, .length = 2}, - [139] = {.index = 254, .length = 5}, - [140] = {.index = 259, .length = 2}, - [141] = {.index = 259, .length = 2}, - [142] = {.index = 261, .length = 6}, - [143] = {.index = 267, .length = 3}, - [144] = {.index = 270, .length = 3}, - [145] = {.index = 273, .length = 6}, - [146] = {.index = 279, .length = 2}, - [147] = {.index = 279, .length = 2}, - [148] = {.index = 281, .length = 3}, - [149] = {.index = 284, .length = 1}, - [150] = {.index = 285, .length = 2}, - [151] = {.index = 287, .length = 2}, - [152] = {.index = 289, .length = 2}, - [153] = {.index = 291, .length = 2}, - [154] = {.index = 293, .length = 3}, - [155] = {.index = 293, .length = 3}, - [156] = {.index = 296, .length = 3}, - [157] = {.index = 296, .length = 3}, - [158] = {.index = 299, .length = 5}, + [53] = {.index = 91, .length = 2}, + [54] = {.index = 93, .length = 6}, + [55] = {.index = 99, .length = 1}, + [56] = {.index = 100, .length = 2}, + [57] = {.index = 102, .length = 2}, + [58] = {.index = 104, .length = 1}, + [59] = {.index = 105, .length = 4}, + [60] = {.index = 109, .length = 1}, + [61] = {.index = 110, .length = 1}, + [62] = {.index = 111, .length = 1}, + [63] = {.index = 112, .length = 1}, + [64] = {.index = 113, .length = 2}, + [65] = {.index = 113, .length = 2}, + [66] = {.index = 115, .length = 3}, + [67] = {.index = 118, .length = 1}, + [68] = {.index = 119, .length = 3}, + [69] = {.index = 122, .length = 2}, + [70] = {.index = 124, .length = 1}, + [71] = {.index = 125, .length = 1}, + [72] = {.index = 126, .length = 2}, + [73] = {.index = 128, .length = 7}, + [74] = {.index = 135, .length = 1}, + [75] = {.index = 136, .length = 1}, + [76] = {.index = 137, .length = 2}, + [77] = {.index = 139, .length = 5}, + [78] = {.index = 144, .length = 1}, + [79] = {.index = 145, .length = 1}, + [80] = {.index = 146, .length = 1}, + [81] = {.index = 147, .length = 10}, + [82] = {.index = 157, .length = 3}, + [83] = {.index = 157, .length = 3}, + [84] = {.index = 160, .length = 2}, + [85] = {.index = 160, .length = 2}, + [86] = {.index = 160, .length = 2}, + [87] = {.index = 160, .length = 2}, + [88] = {.index = 162, .length = 4}, + [89] = {.index = 166, .length = 4}, + [90] = {.index = 170, .length = 2}, + [91] = {.index = 172, .length = 4}, + [92] = {.index = 176, .length = 4}, + [93] = {.index = 180, .length = 1}, + [94] = {.index = 181, .length = 1}, + [95] = {.index = 182, .length = 1}, + [96] = {.index = 183, .length = 1}, + [97] = {.index = 183, .length = 1}, + [98] = {.index = 184, .length = 1}, + [99] = {.index = 185, .length = 5}, + [100] = {.index = 190, .length = 5}, + [101] = {.index = 195, .length = 1}, + [102] = {.index = 195, .length = 1}, + [103] = {.index = 196, .length = 2}, + [105] = {.index = 198, .length = 2}, + [106] = {.index = 200, .length = 1}, + [107] = {.index = 201, .length = 4}, + [108] = {.index = 205, .length = 1}, + [109] = {.index = 206, .length = 1}, + [110] = {.index = 207, .length = 1}, + [111] = {.index = 208, .length = 2}, + [112] = {.index = 210, .length = 1}, + [113] = {.index = 207, .length = 1}, + [114] = {.index = 211, .length = 2}, + [115] = {.index = 213, .length = 1}, + [116] = {.index = 214, .length = 2}, + [117] = {.index = 216, .length = 2}, + [118] = {.index = 218, .length = 4}, + [119] = {.index = 222, .length = 1}, + [120] = {.index = 223, .length = 1}, + [121] = {.index = 211, .length = 2}, + [122] = {.index = 224, .length = 2}, + [123] = {.index = 224, .length = 2}, + [124] = {.index = 224, .length = 2}, + [125] = {.index = 224, .length = 2}, + [126] = {.index = 226, .length = 2}, + [127] = {.index = 228, .length = 1}, + [128] = {.index = 229, .length = 9}, + [129] = {.index = 238, .length = 2}, + [130] = {.index = 240, .length = 1}, + [131] = {.index = 241, .length = 2}, + [132] = {.index = 243, .length = 1}, + [133] = {.index = 244, .length = 2}, + [134] = {.index = 244, .length = 2}, + [135] = {.index = 244, .length = 2}, + [136] = {.index = 244, .length = 2}, + [137] = {.index = 246, .length = 4}, + [138] = {.index = 250, .length = 5}, + [139] = {.index = 255, .length = 5}, + [140] = {.index = 260, .length = 2}, + [141] = {.index = 262, .length = 5}, + [142] = {.index = 267, .length = 2}, + [143] = {.index = 267, .length = 2}, + [144] = {.index = 269, .length = 6}, + [145] = {.index = 275, .length = 3}, + [146] = {.index = 278, .length = 3}, + [147] = {.index = 281, .length = 6}, + [148] = {.index = 287, .length = 2}, + [149] = {.index = 287, .length = 2}, + [150] = {.index = 289, .length = 3}, + [151] = {.index = 292, .length = 1}, + [152] = {.index = 293, .length = 2}, + [153] = {.index = 295, .length = 2}, + [154] = {.index = 297, .length = 2}, + [155] = {.index = 299, .length = 2}, + [156] = {.index = 301, .length = 3}, + [157] = {.index = 301, .length = 3}, + [158] = {.index = 304, .length = 3}, [159] = {.index = 304, .length = 3}, - [160] = {.index = 307, .length = 3}, - [161] = {.index = 310, .length = 1}, - [162] = {.index = 311, .length = 1}, - [163] = {.index = 312, .length = 2}, - [164] = {.index = 314, .length = 4}, - [165] = {.index = 318, .length = 3}, - [166] = {.index = 318, .length = 3}, - [167] = {.index = 318, .length = 3}, - [168] = {.index = 318, .length = 3}, - [169] = {.index = 318, .length = 3}, - [170] = {.index = 318, .length = 3}, - [171] = {.index = 318, .length = 3}, - [172] = {.index = 318, .length = 3}, - [173] = {.index = 321, .length = 6}, - [174] = {.index = 327, .length = 5}, - [175] = {.index = 332, .length = 1}, - [176] = {.index = 332, .length = 1}, - [177] = {.index = 333, .length = 2}, - [178] = {.index = 335, .length = 2}, - [179] = {.index = 337, .length = 3}, - [180] = {.index = 340, .length = 6}, - [181] = {.index = 346, .length = 3}, - [182] = {.index = 349, .length = 4}, - [183] = {.index = 353, .length = 3}, - [185] = {.index = 356, .length = 2}, - [186] = {.index = 358, .length = 2}, - [187] = {.index = 360, .length = 2}, - [188] = {.index = 362, .length = 9}, - [189] = {.index = 371, .length = 9}, - [190] = {.index = 380, .length = 3}, - [191] = {.index = 380, .length = 3}, - [192] = {.index = 383, .length = 5}, - [193] = {.index = 388, .length = 5}, - [194] = {.index = 393, .length = 5}, - [195] = {.index = 398, .length = 1}, - [196] = {.index = 399, .length = 2}, - [197] = {.index = 401, .length = 1}, - [198] = {.index = 402, .length = 2}, - [199] = {.index = 404, .length = 1}, - [200] = {.index = 405, .length = 2}, - [201] = {.index = 407, .length = 2}, - [202] = {.index = 409, .length = 1}, - [203] = {.index = 410, .length = 4}, - [204] = {.index = 414, .length = 4}, - [205] = {.index = 418, .length = 6}, - [206] = {.index = 424, .length = 3}, - [207] = {.index = 427, .length = 6}, - [208] = {.index = 433, .length = 2}, - [209] = {.index = 435, .length = 1}, - [210] = {.index = 436, .length = 1}, - [211] = {.index = 437, .length = 2}, - [212] = {.index = 439, .length = 6}, - [213] = {.index = 445, .length = 4}, - [214] = {.index = 449, .length = 3}, - [215] = {.index = 452, .length = 4}, - [216] = {.index = 456, .length = 3}, - [217] = {.index = 459, .length = 3}, - [218] = {.index = 462, .length = 3}, - [219] = {.index = 465, .length = 3}, - [220] = {.index = 468, .length = 3}, - [221] = {.index = 471, .length = 3}, - [222] = {.index = 474, .length = 2}, - [223] = {.index = 476, .length = 2}, - [224] = {.index = 478, .length = 9}, - [225] = {.index = 487, .length = 5}, - [226] = {.index = 492, .length = 5}, - [227] = {.index = 497, .length = 5}, - [228] = {.index = 502, .length = 5}, - [229] = {.index = 507, .length = 2}, - [230] = {.index = 509, .length = 2}, - [231] = {.index = 511, .length = 2}, - [232] = {.index = 513, .length = 1}, - [233] = {.index = 514, .length = 4}, - [234] = {.index = 518, .length = 2}, - [235] = {.index = 518, .length = 2}, - [236] = {.index = 520, .length = 3}, - [237] = {.index = 523, .length = 2}, - [238] = {.index = 525, .length = 4}, - [239] = {.index = 529, .length = 3}, - [240] = {.index = 532, .length = 3}, - [241] = {.index = 535, .length = 3}, - [242] = {.index = 538, .length = 3}, - [243] = {.index = 541, .length = 3}, - [244] = {.index = 544, .length = 3}, - [245] = {.index = 547, .length = 3}, - [246] = {.index = 550, .length = 3}, - [247] = {.index = 553, .length = 2}, - [248] = {.index = 555, .length = 2}, - [249] = {.index = 557, .length = 5}, - [250] = {.index = 562, .length = 5}, - [251] = {.index = 567, .length = 5}, - [252] = {.index = 572, .length = 3}, - [253] = {.index = 572, .length = 3}, - [254] = {.index = 575, .length = 3}, - [255] = {.index = 578, .length = 3}, - [256] = {.index = 581, .length = 3}, - [257] = {.index = 584, .length = 3}, - [258] = {.index = 587, .length = 3}, - [259] = {.index = 590, .length = 3}, - [260] = {.index = 593, .length = 3}, - [261] = {.index = 596, .length = 3}, - [262] = {.index = 599, .length = 2}, - [263] = {.index = 601, .length = 5}, - [264] = {.index = 606, .length = 3}, - [265] = {.index = 609, .length = 3}, - [266] = {.index = 612, .length = 3}, - [267] = {.index = 615, .length = 3}, - [268] = {.index = 618, .length = 3}, - [269] = {.index = 621, .length = 3}, - [270] = {.index = 624, .length = 3}, - [271] = {.index = 627, .length = 3}, + [160] = {.index = 307, .length = 5}, + [161] = {.index = 312, .length = 3}, + [162] = {.index = 315, .length = 3}, + [163] = {.index = 318, .length = 1}, + [164] = {.index = 319, .length = 1}, + [165] = {.index = 320, .length = 2}, + [166] = {.index = 322, .length = 4}, + [167] = {.index = 326, .length = 3}, + [168] = {.index = 326, .length = 3}, + [169] = {.index = 326, .length = 3}, + [170] = {.index = 326, .length = 3}, + [171] = {.index = 326, .length = 3}, + [172] = {.index = 326, .length = 3}, + [173] = {.index = 326, .length = 3}, + [174] = {.index = 326, .length = 3}, + [175] = {.index = 329, .length = 6}, + [176] = {.index = 335, .length = 5}, + [177] = {.index = 340, .length = 1}, + [178] = {.index = 340, .length = 1}, + [179] = {.index = 341, .length = 2}, + [180] = {.index = 343, .length = 2}, + [181] = {.index = 345, .length = 3}, + [182] = {.index = 348, .length = 6}, + [183] = {.index = 354, .length = 3}, + [184] = {.index = 357, .length = 4}, + [185] = {.index = 361, .length = 3}, + [187] = {.index = 364, .length = 2}, + [188] = {.index = 366, .length = 2}, + [189] = {.index = 368, .length = 2}, + [190] = {.index = 370, .length = 9}, + [191] = {.index = 379, .length = 9}, + [192] = {.index = 388, .length = 3}, + [193] = {.index = 388, .length = 3}, + [194] = {.index = 391, .length = 5}, + [195] = {.index = 396, .length = 5}, + [196] = {.index = 401, .length = 5}, + [197] = {.index = 406, .length = 1}, + [198] = {.index = 407, .length = 2}, + [199] = {.index = 409, .length = 1}, + [200] = {.index = 410, .length = 2}, + [201] = {.index = 412, .length = 1}, + [202] = {.index = 413, .length = 2}, + [203] = {.index = 415, .length = 2}, + [204] = {.index = 417, .length = 1}, + [205] = {.index = 418, .length = 4}, + [206] = {.index = 422, .length = 4}, + [207] = {.index = 426, .length = 6}, + [208] = {.index = 432, .length = 3}, + [209] = {.index = 435, .length = 6}, + [210] = {.index = 441, .length = 2}, + [211] = {.index = 443, .length = 1}, + [212] = {.index = 444, .length = 1}, + [213] = {.index = 445, .length = 2}, + [214] = {.index = 447, .length = 6}, + [215] = {.index = 453, .length = 4}, + [216] = {.index = 457, .length = 3}, + [217] = {.index = 460, .length = 4}, + [218] = {.index = 464, .length = 3}, + [219] = {.index = 467, .length = 3}, + [220] = {.index = 470, .length = 3}, + [221] = {.index = 473, .length = 3}, + [222] = {.index = 476, .length = 3}, + [223] = {.index = 479, .length = 3}, + [224] = {.index = 482, .length = 2}, + [225] = {.index = 484, .length = 2}, + [226] = {.index = 486, .length = 9}, + [227] = {.index = 495, .length = 5}, + [228] = {.index = 500, .length = 5}, + [229] = {.index = 505, .length = 5}, + [230] = {.index = 510, .length = 5}, + [231] = {.index = 515, .length = 2}, + [232] = {.index = 517, .length = 2}, + [233] = {.index = 519, .length = 2}, + [234] = {.index = 521, .length = 1}, + [235] = {.index = 522, .length = 4}, + [236] = {.index = 526, .length = 2}, + [237] = {.index = 526, .length = 2}, + [238] = {.index = 528, .length = 3}, + [239] = {.index = 531, .length = 2}, + [240] = {.index = 533, .length = 4}, + [241] = {.index = 537, .length = 3}, + [242] = {.index = 540, .length = 3}, + [243] = {.index = 543, .length = 3}, + [244] = {.index = 546, .length = 3}, + [245] = {.index = 549, .length = 3}, + [246] = {.index = 552, .length = 3}, + [247] = {.index = 555, .length = 3}, + [248] = {.index = 558, .length = 3}, + [249] = {.index = 561, .length = 2}, + [250] = {.index = 563, .length = 2}, + [251] = {.index = 565, .length = 5}, + [252] = {.index = 570, .length = 5}, + [253] = {.index = 575, .length = 5}, + [254] = {.index = 580, .length = 3}, + [255] = {.index = 580, .length = 3}, + [256] = {.index = 583, .length = 3}, + [257] = {.index = 586, .length = 3}, + [258] = {.index = 589, .length = 3}, + [259] = {.index = 592, .length = 3}, + [260] = {.index = 595, .length = 3}, + [261] = {.index = 598, .length = 3}, + [262] = {.index = 601, .length = 3}, + [263] = {.index = 604, .length = 3}, + [264] = {.index = 607, .length = 2}, + [265] = {.index = 609, .length = 5}, + [266] = {.index = 614, .length = 3}, + [267] = {.index = 617, .length = 3}, + [268] = {.index = 620, .length = 3}, + [269] = {.index = 623, .length = 3}, + [270] = {.index = 626, .length = 3}, + [271] = {.index = 629, .length = 3}, + [272] = {.index = 632, .length = 3}, + [273] = {.index = 635, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3931,108 +4234,118 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [50] = {field_expr, 0}, [51] = + {field_value, 1}, + {field_variable, 0}, + [53] = {field_head, 0}, {field_head, 1}, - [53] = + [55] = {field_arg, 1, .inherited = true}, {field_arg_spread, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_head, 0}, {field_redir, 1, .inherited = true}, - [59] = + [61] = {field_start, 0}, - [60] = + [62] = {field_unit, 1}, {field_value, 0}, - [62] = + [64] = {field_dollar_name, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_type, 2, .inherited = true}, {field_value, 2, .inherited = true}, {field_var_name, 2, .inherited = true}, - [67] = + [69] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [70] = + [72] = {field_module, 2}, - [71] = + [73] = {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [75] = + [77] = {field_body, 2}, {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [79] = + [81] = + {field_wildcard, 0}, + [82] = {field_command, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [82] = + [85] = {field_import_pattern, 2}, {field_module, 1}, - [84] = - {field_wildcard, 0}, - [85] = + [87] = {field_command_list, 0}, - [86] = + [88] = {field_entry, 1}, - [87] = + [89] = {field_entry, 0, .inherited = true}, {field_entry, 1}, - [89] = + [91] = {field_entry, 0, .inherited = true}, {field_entry, 1, .inherited = true}, - [91] = + [93] = + {field_arg, 1, .inherited = true}, + {field_arg_spread, 1, .inherited = true}, + {field_arg_str, 1, .inherited = true}, + {field_flag, 1, .inherited = true}, + {field_head, 1, .inherited = true}, + {field_redir, 1, .inherited = true}, + [99] = {field_error_record, 2}, - [92] = + [100] = {field_body, 2}, {field_condition, 1}, - [94] = + [102] = {field_condition, 1}, {field_then_branch, 2}, - [96] = + [104] = {field_param_name, 0}, - [97] = + [105] = {field_param_name, 0, .inherited = true}, {field_param_optional, 0, .inherited = true}, {field_param_rest, 0, .inherited = true}, {field_param_short_flag, 0, .inherited = true}, - [101] = + [109] = {field_param_rest, 0}, - [102] = + [110] = {field_param_optional, 0}, - [103] = + [111] = {field_param_long_flag, 0}, - [104] = + [112] = {field_param_short_flag, 0}, - [105] = + [113] = {field_plugin, 1}, {field_signature, 2}, - [107] = + [115] = {field_dollar_name, 2, .inherited = true}, {field_var_name, 2, .inherited = true}, {field_variable, 2}, - [110] = + [118] = {field_overlay, 2}, - [111] = + [119] = {field_overlay, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [114] = + [122] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [116] = + [124] = {field_digit, 0}, - [117] = + [125] = {field_expr, 1, .inherited = true}, - [118] = + [126] = {field_expr, 0, .inherited = true}, {field_expr, 1, .inherited = true}, - [120] = + [128] = {field_arg, 2, .inherited = true}, {field_arg_spread, 2, .inherited = true}, {field_arg_str, 2, .inherited = true}, @@ -4040,26 +4353,26 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_head, 0}, {field_head, 1}, {field_redir, 2, .inherited = true}, - [127] = + [135] = {field_arg, 0}, - [128] = + [136] = {field_arg_spread, 0}, - [129] = + [137] = {field_arg_spread, 0}, {field_name, 0, .inherited = true}, - [131] = + [139] = {field_arg, 1, .inherited = true}, {field_arg_spread, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_redir, 1, .inherited = true}, - [136] = + [144] = {field_redir, 0}, - [137] = + [145] = {field_flag, 0}, - [138] = + [146] = {field_arg_str, 0}, - [139] = + [147] = {field_arg, 0, .inherited = true}, {field_arg, 1, .inherited = true}, {field_arg_spread, 0, .inherited = true}, @@ -4070,113 +4383,113 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_flag, 1, .inherited = true}, {field_redir, 0, .inherited = true}, {field_redir, 1, .inherited = true}, - [149] = + [157] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 2}, - [152] = + [160] = {field_end, 2}, {field_start, 0}, - [154] = + [162] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [158] = + [166] = {field_body, 3}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [162] = + [170] = {field_import_pattern, 3}, {field_module, 2}, - [164] = + [172] = {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_value, 3}, - [168] = + [176] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_value, 2}, {field_var_name, 0, .inherited = true}, - [172] = + [180] = {field_flat_type, 0}, - [173] = + [181] = {field_type, 1, .inherited = true}, - [174] = + [182] = {field_type, 0}, - [175] = + [183] = {field_value, 2}, - [176] = + [184] = {field_type, 0, .inherited = true}, - [177] = + [185] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [182] = + [190] = {field_body, 3}, {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [187] = + [195] = {field_raw_path, 1}, - [188] = + [196] = {field_head, 1}, {field_head, 2}, - [190] = + [198] = {field_entry, 1, .inherited = true}, {field_entry, 2}, - [192] = + [200] = {field_try_branch, 2}, - [193] = + [201] = {field_lhs, 2, .inherited = true}, {field_opr, 2, .inherited = true}, {field_predicate, 2}, {field_rhs, 2, .inherited = true}, - [197] = + [205] = {field_predicate, 2}, - [198] = + [206] = {field_error_record, 3}, - [199] = + [207] = {field_scrutinee, 1}, - [200] = + [208] = {field_item, 0, .inherited = true}, {field_rest, 0, .inherited = true}, - [202] = + [210] = {field_entry, 0, .inherited = true}, - [203] = + [211] = {field_key, 0}, {field_value, 2}, - [205] = + [213] = {field_name, 0}, - [206] = + [214] = {field_param_name, 0}, {field_param_name, 1}, - [208] = + [216] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [210] = + [218] = {field_param_name, 1, .inherited = true}, {field_param_optional, 1, .inherited = true}, {field_param_rest, 1, .inherited = true}, {field_param_short_flag, 1, .inherited = true}, - [214] = + [222] = {field_param_long_flag, 1}, - [215] = + [223] = {field_parameters, 1}, - [216] = + [224] = {field_end, 3}, {field_step, 1}, - [218] = + [226] = {field_catch_branch, 3}, {field_try_branch, 1}, - [220] = + [228] = {field_overlay, 3}, - [221] = + [229] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 2, .inherited = true}, @@ -4186,184 +4499,184 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [230] = + [238] = {field_digit, 0}, {field_digit, 1}, - [232] = + [240] = {field_digit, 2, .inherited = true}, - [233] = + [241] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [235] = + [243] = {field_file_path, 2}, - [236] = + [244] = {field_start, 0}, {field_step, 2}, - [238] = + [246] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [242] = + [250] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [247] = + [255] = {field_body, 4}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [252] = + [260] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [254] = + [262] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [259] = + [267] = {field_name, 1}, {field_value, 3}, - [261] = + [269] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 3}, {field_unquoted_name, 1, .inherited = true}, - [267] = + [275] = {field_cmd, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [270] = + [278] = {field_cmd, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [273] = + [281] = {field_cmd, 0, .inherited = true}, {field_cmd, 1, .inherited = true}, {field_quoted_name, 0, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [279] = + [287] = {field_protected_path, 1}, {field_protected_path, 2}, - [281] = + [289] = {field_head, 1}, {field_head, 2}, {field_row, 3}, - [284] = + [292] = {field_row, 0}, - [285] = + [293] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [287] = + [295] = {field_head, 2}, {field_head, 3}, - [289] = + [297] = {field_condition, 1}, {field_then_branch, 3}, - [291] = + [299] = {field_condition, 2}, {field_then_branch, 3}, - [293] = + [301] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [296] = + [304] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [299] = + [307] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [304] = + [312] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [307] = + [315] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [310] = + [318] = {field_name, 2}, - [311] = + [319] = {field_param_value, 1}, - [312] = + [320] = {field_flag_capsule, 2}, {field_param_long_flag, 1}, - [314] = + [322] = {field_overlay, 2}, {field_quoted_name, 4, .inherited = true}, {field_rename, 4}, {field_unquoted_name, 4, .inherited = true}, - [318] = + [326] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [321] = + [329] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [327] = + [335] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [332] = + [340] = {field_key, 0}, - [333] = + [341] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [335] = + [343] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [337] = + [345] = {field_cmd, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [340] = + [348] = {field_cmd, 1, .inherited = true}, {field_cmd, 2}, {field_quoted_name, 1, .inherited = true}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [346] = + [354] = {field_head, 1}, {field_head, 2}, {field_row, 4}, - [349] = + [357] = {field_head, 1}, {field_head, 2}, {field_row, 3, .inherited = true}, {field_row, 4}, - [353] = + [361] = {field_head, 2}, {field_head, 3}, {field_row, 4}, - [356] = + [364] = {field_condition, 2}, {field_then_branch, 4}, - [358] = + [366] = {field_catch_branch, 4}, {field_try_branch, 1}, - [360] = + [368] = {field_catch_branch, 4}, {field_try_branch, 2}, - [362] = + [370] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4373,7 +4686,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [371] = + [379] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4383,138 +4696,138 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [380] = + [388] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [383] = + [391] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [388] = + [396] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [393] = + [401] = {field_body, 5}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [398] = + [406] = {field_rest, 1}, - [399] = + [407] = {field_item, 0}, {field_item, 1}, - [401] = + [409] = {field_item, 1, .inherited = true}, - [402] = + [410] = {field_item, 0, .inherited = true}, {field_item, 1, .inherited = true}, - [404] = + [412] = {field_entry, 1, .inherited = true}, - [405] = + [413] = {field_default_pattern, 0}, {field_expression, 2}, - [407] = + [415] = {field_expression, 2}, {field_pattern, 0}, - [409] = + [417] = {field_param_value, 2}, - [410] = + [418] = {field_overlay, 2}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [414] = + [422] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [418] = + [426] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [424] = + [432] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [427] = + [435] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [433] = + [441] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [435] = + [443] = {field_completion, 2}, - [436] = + [444] = {field_type, 2, .inherited = true}, - [437] = + [445] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [439] = + [447] = {field_cmd, 2, .inherited = true}, {field_cmd, 3}, {field_quoted_name, 2, .inherited = true}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [445] = + [453] = {field_head, 1}, {field_head, 2}, {field_row, 4, .inherited = true}, {field_row, 5}, - [449] = + [457] = {field_head, 2}, {field_head, 3}, {field_row, 5}, - [452] = + [460] = {field_head, 2}, {field_head, 3}, {field_row, 4, .inherited = true}, {field_row, 5}, - [456] = + [464] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [459] = + [467] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [462] = + [470] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [465] = + [473] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [468] = + [476] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [471] = + [479] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [474] = + [482] = {field_catch_branch, 5}, {field_try_branch, 1}, - [476] = + [484] = {field_catch_branch, 5}, {field_try_branch, 2}, - [478] = + [486] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4524,191 +4837,191 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [487] = + [495] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [492] = + [500] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [497] = + [505] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [502] = + [510] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [507] = + [515] = {field_item, 1, .inherited = true}, {field_rest, 2}, - [509] = + [517] = {field_default_pattern, 1}, {field_expression, 3}, - [511] = + [519] = {field_expression, 3}, {field_pattern, 1}, - [513] = + [521] = {field_param_value, 3}, - [514] = + [522] = {field_overlay, 3}, {field_quoted_name, 6, .inherited = true}, {field_rename, 6}, {field_unquoted_name, 6, .inherited = true}, - [518] = + [526] = {field_key, 0}, {field_type, 2, .inherited = true}, - [520] = + [528] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [523] = + [531] = {field_type, 2, .inherited = true}, {field_type, 3, .inherited = true}, - [525] = + [533] = {field_head, 2}, {field_head, 3}, {field_row, 5, .inherited = true}, {field_row, 6}, - [529] = + [537] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [532] = + [540] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [535] = + [543] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [538] = + [546] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [541] = + [549] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [544] = + [552] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [547] = + [555] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [550] = + [558] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [553] = + [561] = {field_catch_branch, 6}, {field_try_branch, 1}, - [555] = + [563] = {field_catch_branch, 6}, {field_try_branch, 2}, - [557] = + [565] = {field_body, 7}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [562] = + [570] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [567] = + [575] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [572] = + [580] = {field_completion, 3}, {field_key, 0}, {field_type, 2, .inherited = true}, - [575] = + [583] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [578] = + [586] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [581] = + [589] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [584] = + [592] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [587] = + [595] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [590] = + [598] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [593] = + [601] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [596] = + [604] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [599] = + [607] = {field_catch_branch, 7}, {field_try_branch, 2}, - [601] = + [609] = {field_body, 8}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [606] = + [614] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [609] = + [617] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [612] = + [620] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [615] = + [623] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [618] = + [626] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [621] = + [629] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [624] = + [632] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [627] = + [635] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, @@ -4731,120 +5044,120 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [31] = { [0] = sym_val_string, }, - [38] = { + [39] = { [0] = sym_val_number, }, - [39] = { + [40] = { [0] = sym_val_number, }, - [49] = { + [50] = { [1] = anon_alias_sym__unit, }, - [63] = { + [65] = { [1] = sym_val_string, }, - [78] = { + [80] = { [0] = sym_val_string, }, - [81] = { + [83] = { [2] = sym_val_string, }, - [83] = { + [85] = { [2] = sym_val_number, }, - [84] = { + [86] = { [0] = sym_val_number, }, - [85] = { + [87] = { [0] = sym_val_number, [2] = sym_val_number, }, - [95] = { + [97] = { [2] = sym_val_string, }, - [100] = { + [102] = { [1] = anon_alias_sym_quoted, }, - [102] = { + [104] = { [0] = anon_alias_sym__head, }, - [111] = { + [113] = { [1] = sym_val_string, }, - [112] = { + [114] = { [0] = sym_identifier, }, - [121] = { + [123] = { [3] = sym_val_number, }, - [122] = { + [124] = { [1] = sym_val_number, }, - [123] = { + [125] = { [1] = sym_val_number, [3] = sym_val_number, }, - [132] = { + [134] = { [2] = sym_val_number, }, - [133] = { + [135] = { [0] = sym_val_number, }, - [134] = { + [136] = { [0] = sym_val_number, [2] = sym_val_number, }, - [141] = { + [143] = { [3] = sym_val_string, }, - [147] = { + [149] = { [1] = anon_alias_sym_quoted, }, - [155] = { + [157] = { [3] = sym_val_string, }, - [157] = { + [159] = { [3] = sym_val_string, }, - [166] = { + [168] = { [4] = sym_val_number, }, - [167] = { + [169] = { [2] = sym_val_number, }, - [168] = { + [170] = { [2] = sym_val_number, [4] = sym_val_number, }, - [169] = { + [171] = { [0] = sym_val_number, }, - [170] = { + [172] = { [0] = sym_val_number, [4] = sym_val_number, }, - [171] = { + [173] = { [0] = sym_val_number, [2] = sym_val_number, }, - [172] = { + [174] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [176] = { + [178] = { [0] = sym_identifier, }, - [184] = { + [186] = { [1] = sym_val_string, }, - [191] = { + [193] = { [4] = sym_val_string, }, - [235] = { + [237] = { [0] = sym_identifier, }, - [253] = { + [255] = { [0] = sym_identifier, }, }; @@ -4885,132 +5198,132 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 3, - [5] = 3, - [6] = 6, - [7] = 6, - [8] = 6, - [9] = 6, - [10] = 6, - [11] = 6, - [12] = 6, - [13] = 6, - [14] = 6, - [15] = 6, - [16] = 6, - [17] = 6, - [18] = 6, - [19] = 6, - [20] = 6, - [21] = 6, - [22] = 6, - [23] = 6, - [24] = 24, - [25] = 24, - [26] = 24, - [27] = 24, + [5] = 5, + [6] = 5, + [7] = 3, + [8] = 3, + [9] = 5, + [10] = 3, + [11] = 5, + [12] = 3, + [13] = 3, + [14] = 3, + [15] = 3, + [16] = 3, + [17] = 3, + [18] = 3, + [19] = 3, + [20] = 3, + [21] = 3, + [22] = 3, + [23] = 3, + [24] = 3, + [25] = 3, + [26] = 3, + [27] = 5, [28] = 28, [29] = 28, - [30] = 30, - [31] = 30, + [30] = 28, + [31] = 28, [32] = 32, [33] = 33, - [34] = 28, - [35] = 30, - [36] = 32, - [37] = 28, - [38] = 30, - [39] = 32, - [40] = 28, - [41] = 32, - [42] = 30, - [43] = 32, - [44] = 28, + [34] = 32, + [35] = 35, + [36] = 36, + [37] = 33, + [38] = 32, + [39] = 35, + [40] = 33, + [41] = 35, + [42] = 32, + [43] = 35, + [44] = 36, [45] = 33, [46] = 32, - [47] = 28, - [48] = 32, - [49] = 28, - [50] = 32, - [51] = 28, - [52] = 28, - [53] = 28, - [54] = 32, - [55] = 28, - [56] = 32, - [57] = 28, - [58] = 32, - [59] = 28, - [60] = 32, - [61] = 32, - [62] = 32, - [63] = 32, - [64] = 32, - [65] = 32, - [66] = 32, - [67] = 32, - [68] = 32, - [69] = 32, - [70] = 32, - [71] = 28, - [72] = 28, - [73] = 28, - [74] = 28, - [75] = 28, - [76] = 28, - [77] = 28, - [78] = 28, - [79] = 32, - [80] = 80, - [81] = 80, - [82] = 82, - [83] = 83, - [84] = 80, - [85] = 85, - [86] = 83, + [47] = 35, + [48] = 33, + [49] = 35, + [50] = 33, + [51] = 35, + [52] = 33, + [53] = 35, + [54] = 33, + [55] = 35, + [56] = 33, + [57] = 35, + [58] = 33, + [59] = 35, + [60] = 33, + [61] = 35, + [62] = 33, + [63] = 35, + [64] = 33, + [65] = 35, + [66] = 33, + [67] = 35, + [68] = 35, + [69] = 35, + [70] = 35, + [71] = 35, + [72] = 35, + [73] = 35, + [74] = 35, + [75] = 35, + [76] = 33, + [77] = 33, + [78] = 33, + [79] = 33, + [80] = 33, + [81] = 33, + [82] = 33, + [83] = 33, + [84] = 33, + [85] = 33, + [86] = 33, [87] = 87, - [88] = 80, - [89] = 87, - [90] = 80, - [91] = 83, - [92] = 80, - [93] = 80, - [94] = 80, - [95] = 80, - [96] = 80, - [97] = 97, - [98] = 97, - [99] = 99, - [100] = 85, - [101] = 101, - [102] = 97, - [103] = 101, - [104] = 97, - [105] = 101, - [106] = 97, - [107] = 97, - [108] = 97, - [109] = 97, - [110] = 97, - [111] = 97, - [112] = 97, - [113] = 97, - [114] = 97, - [115] = 97, - [116] = 101, - [117] = 117, - [118] = 118, - [119] = 119, - [120] = 120, - [121] = 121, - [122] = 122, - [123] = 123, - [124] = 123, - [125] = 125, - [126] = 126, - [127] = 126, - [128] = 128, - [129] = 129, - [130] = 130, + [88] = 88, + [89] = 89, + [90] = 87, + [91] = 87, + [92] = 92, + [93] = 88, + [94] = 87, + [95] = 87, + [96] = 87, + [97] = 92, + [98] = 87, + [99] = 88, + [100] = 87, + [101] = 87, + [102] = 87, + [103] = 87, + [104] = 87, + [105] = 87, + [106] = 87, + [107] = 107, + [108] = 108, + [109] = 108, + [110] = 110, + [111] = 108, + [112] = 112, + [113] = 108, + [114] = 110, + [115] = 108, + [116] = 110, + [117] = 108, + [118] = 110, + [119] = 108, + [120] = 110, + [121] = 108, + [122] = 108, + [123] = 108, + [124] = 107, + [125] = 108, + [126] = 108, + [127] = 108, + [128] = 108, + [129] = 108, + [130] = 110, [131] = 131, [132] = 132, [133] = 133, @@ -5020,399 +5333,399 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [137] = 137, [138] = 138, [139] = 139, - [140] = 140, - [141] = 141, + [140] = 139, + [141] = 137, [142] = 142, [143] = 143, [144] = 144, [145] = 145, - [146] = 142, + [146] = 146, [147] = 147, [148] = 148, [149] = 149, [150] = 150, [151] = 151, - [152] = 149, - [153] = 141, - [154] = 143, - [155] = 145, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, [156] = 156, [157] = 157, [158] = 158, - [159] = 158, + [159] = 156, [160] = 160, [161] = 161, [162] = 162, - [163] = 162, - [164] = 162, - [165] = 161, - [166] = 166, - [167] = 167, + [163] = 161, + [164] = 164, + [165] = 165, + [166] = 158, + [167] = 164, [168] = 168, - [169] = 169, - [170] = 169, + [169] = 162, + [170] = 170, [171] = 171, - [172] = 171, + [172] = 172, [173] = 173, - [174] = 174, + [174] = 171, [175] = 175, [176] = 176, [177] = 177, - [178] = 178, - [179] = 176, - [180] = 180, + [178] = 177, + [179] = 175, + [180] = 175, [181] = 181, [182] = 182, [183] = 183, - [184] = 184, - [185] = 185, + [184] = 182, + [185] = 183, [186] = 186, [187] = 187, - [188] = 177, + [188] = 188, [189] = 189, - [190] = 183, + [190] = 190, [191] = 191, [192] = 192, - [193] = 193, + [193] = 190, [194] = 194, [195] = 195, - [196] = 185, - [197] = 197, - [198] = 187, - [199] = 181, - [200] = 184, - [201] = 201, - [202] = 182, - [203] = 186, + [196] = 196, + [197] = 192, + [198] = 198, + [199] = 194, + [200] = 196, + [201] = 195, + [202] = 202, + [203] = 203, [204] = 204, - [205] = 180, - [206] = 178, + [205] = 191, + [206] = 206, [207] = 207, - [208] = 193, - [209] = 195, + [208] = 208, + [209] = 204, [210] = 210, - [211] = 201, - [212] = 212, - [213] = 192, - [214] = 194, - [215] = 215, - [216] = 128, - [217] = 204, - [218] = 189, - [219] = 191, - [220] = 197, + [211] = 211, + [212] = 207, + [213] = 208, + [214] = 214, + [215] = 198, + [216] = 202, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 203, [221] = 221, - [222] = 222, - [223] = 207, + [222] = 206, + [223] = 223, [224] = 224, - [225] = 221, - [226] = 212, - [227] = 210, - [228] = 129, - [229] = 130, - [230] = 230, - [231] = 128, + [225] = 225, + [226] = 226, + [227] = 142, + [228] = 210, + [229] = 217, + [230] = 218, + [231] = 231, [232] = 232, - [233] = 233, - [234] = 215, - [235] = 235, - [236] = 236, - [237] = 237, - [238] = 238, - [239] = 192, - [240] = 238, - [241] = 131, - [242] = 132, - [243] = 243, - [244] = 224, - [245] = 245, - [246] = 246, + [233] = 225, + [234] = 176, + [235] = 224, + [236] = 221, + [237] = 144, + [238] = 142, + [239] = 219, + [240] = 226, + [241] = 241, + [242] = 242, + [243] = 223, + [244] = 143, + [245] = 214, + [246] = 211, [247] = 247, [248] = 248, - [249] = 129, - [250] = 235, + [249] = 249, + [250] = 142, [251] = 251, - [252] = 252, - [253] = 253, - [254] = 254, - [255] = 255, - [256] = 256, - [257] = 257, - [258] = 134, - [259] = 222, - [260] = 260, - [261] = 261, + [252] = 143, + [253] = 144, + [254] = 242, + [255] = 146, + [256] = 148, + [257] = 145, + [258] = 147, + [259] = 149, + [260] = 231, + [261] = 241, [262] = 262, [263] = 263, [264] = 264, [265] = 265, [266] = 266, - [267] = 267, - [268] = 268, + [267] = 210, + [268] = 219, [269] = 269, [270] = 270, [271] = 271, - [272] = 166, - [273] = 233, - [274] = 236, - [275] = 135, - [276] = 207, - [277] = 230, - [278] = 237, - [279] = 130, - [280] = 133, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 280, [281] = 281, - [282] = 128, + [282] = 282, [283] = 283, - [284] = 192, - [285] = 232, + [284] = 284, + [285] = 285, [286] = 286, [287] = 287, [288] = 288, - [289] = 271, - [290] = 131, - [291] = 132, - [292] = 128, - [293] = 137, - [294] = 136, - [295] = 138, - [296] = 134, - [297] = 135, - [298] = 133, - [299] = 299, - [300] = 300, - [301] = 192, - [302] = 192, - [303] = 303, - [304] = 221, - [305] = 212, - [306] = 210, - [307] = 221, - [308] = 212, - [309] = 309, - [310] = 210, - [311] = 311, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 146, + [298] = 251, + [299] = 148, + [300] = 145, + [301] = 301, + [302] = 302, + [303] = 210, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 231, + [308] = 308, + [309] = 241, + [310] = 219, + [311] = 219, [312] = 312, - [313] = 207, + [313] = 313, [314] = 314, [315] = 315, [316] = 316, [317] = 317, - [318] = 318, + [318] = 147, [319] = 319, - [320] = 320, + [320] = 149, [321] = 321, [322] = 322, - [323] = 323, - [324] = 324, + [323] = 144, + [324] = 142, [325] = 325, [326] = 326, - [327] = 327, + [327] = 152, [328] = 328, [329] = 329, - [330] = 330, + [330] = 150, [331] = 331, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, + [332] = 151, + [333] = 263, + [334] = 262, + [335] = 264, [336] = 336, - [337] = 129, - [338] = 130, - [339] = 339, - [340] = 207, - [341] = 318, + [337] = 265, + [338] = 266, + [339] = 143, + [340] = 340, + [341] = 341, [342] = 342, - [343] = 237, - [344] = 129, - [345] = 130, - [346] = 128, - [347] = 235, - [348] = 236, - [349] = 137, - [350] = 237, - [351] = 315, - [352] = 207, - [353] = 353, - [354] = 135, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 303, - [360] = 319, - [361] = 320, - [362] = 321, - [363] = 322, - [364] = 323, - [365] = 324, - [366] = 366, - [367] = 367, - [368] = 325, - [369] = 326, - [370] = 327, - [371] = 371, - [372] = 328, + [343] = 176, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 210, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 264, + [353] = 344, + [354] = 354, + [355] = 341, + [356] = 342, + [357] = 345, + [358] = 346, + [359] = 347, + [360] = 349, + [361] = 350, + [362] = 296, + [363] = 363, + [364] = 154, + [365] = 322, + [366] = 210, + [367] = 336, + [368] = 312, + [369] = 369, + [370] = 317, + [371] = 145, + [372] = 321, [373] = 373, - [374] = 329, - [375] = 133, - [376] = 330, - [377] = 331, - [378] = 332, - [379] = 333, + [374] = 308, + [375] = 295, + [376] = 351, + [377] = 231, + [378] = 378, + [379] = 241, [380] = 380, - [381] = 236, - [382] = 335, - [383] = 221, + [381] = 381, + [382] = 325, + [383] = 326, [384] = 384, - [385] = 212, - [386] = 136, - [387] = 210, - [388] = 221, - [389] = 389, - [390] = 212, - [391] = 138, - [392] = 392, - [393] = 393, - [394] = 210, - [395] = 395, - [396] = 396, - [397] = 309, - [398] = 398, - [399] = 134, + [385] = 340, + [386] = 143, + [387] = 144, + [388] = 388, + [389] = 142, + [390] = 390, + [391] = 328, + [392] = 302, + [393] = 304, + [394] = 231, + [395] = 305, + [396] = 152, + [397] = 306, + [398] = 147, + [399] = 149, [400] = 400, - [401] = 312, - [402] = 311, - [403] = 288, - [404] = 287, - [405] = 166, - [406] = 406, + [401] = 241, + [402] = 146, + [403] = 263, + [404] = 148, + [405] = 405, + [406] = 150, [407] = 407, - [408] = 408, - [409] = 409, - [410] = 300, - [411] = 131, - [412] = 132, - [413] = 314, - [414] = 299, - [415] = 371, - [416] = 139, - [417] = 235, - [418] = 334, - [419] = 137, - [420] = 133, + [408] = 407, + [409] = 369, + [410] = 410, + [411] = 151, + [412] = 265, + [413] = 266, + [414] = 331, + [415] = 219, + [416] = 329, + [417] = 417, + [418] = 145, + [419] = 419, + [420] = 152, [421] = 421, - [422] = 422, - [423] = 355, - [424] = 424, - [425] = 357, - [426] = 358, - [427] = 408, + [422] = 150, + [423] = 151, + [424] = 143, + [425] = 144, + [426] = 154, + [427] = 427, [428] = 428, - [429] = 131, - [430] = 132, + [429] = 429, + [430] = 430, [431] = 431, - [432] = 432, - [433] = 139, - [434] = 235, - [435] = 236, + [432] = 147, + [433] = 149, + [434] = 434, + [435] = 354, [436] = 436, - [437] = 237, - [438] = 438, - [439] = 356, - [440] = 406, - [441] = 407, - [442] = 389, - [443] = 443, - [444] = 393, - [445] = 445, - [446] = 235, - [447] = 396, - [448] = 398, - [449] = 449, - [450] = 236, - [451] = 192, - [452] = 409, - [453] = 453, - [454] = 454, - [455] = 136, - [456] = 138, - [457] = 237, - [458] = 129, - [459] = 134, - [460] = 130, - [461] = 135, - [462] = 392, - [463] = 395, - [464] = 384, - [465] = 207, - [466] = 400, - [467] = 467, - [468] = 139, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 134, + [437] = 437, + [438] = 146, + [439] = 148, + [440] = 390, + [441] = 441, + [442] = 231, + [443] = 241, + [444] = 373, + [445] = 264, + [446] = 265, + [447] = 266, + [448] = 380, + [449] = 263, + [450] = 264, + [451] = 265, + [452] = 266, + [453] = 210, + [454] = 219, + [455] = 405, + [456] = 410, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 417, + [464] = 400, + [465] = 388, + [466] = 384, + [467] = 378, + [468] = 263, + [469] = 431, + [470] = 441, + [471] = 457, + [472] = 152, + [473] = 427, + [474] = 210, [475] = 475, [476] = 476, - [477] = 428, - [478] = 421, - [479] = 135, - [480] = 480, - [481] = 481, - [482] = 137, - [483] = 133, - [484] = 484, - [485] = 485, + [477] = 477, + [478] = 146, + [479] = 148, + [480] = 145, + [481] = 150, + [482] = 231, + [483] = 151, + [484] = 241, + [485] = 219, [486] = 486, - [487] = 431, + [487] = 154, [488] = 488, [489] = 489, - [490] = 490, + [490] = 459, [491] = 491, - [492] = 445, - [493] = 493, - [494] = 212, - [495] = 495, + [492] = 492, + [493] = 429, + [494] = 494, + [495] = 430, [496] = 496, - [497] = 453, - [498] = 210, - [499] = 192, - [500] = 454, + [497] = 266, + [498] = 498, + [499] = 499, + [500] = 500, [501] = 501, - [502] = 436, - [503] = 503, - [504] = 207, + [502] = 502, + [503] = 147, + [504] = 504, [505] = 505, - [506] = 506, + [506] = 458, [507] = 507, - [508] = 432, - [509] = 131, - [510] = 132, - [511] = 511, - [512] = 136, - [513] = 422, - [514] = 138, - [515] = 515, + [508] = 460, + [509] = 461, + [510] = 421, + [511] = 462, + [512] = 512, + [513] = 263, + [514] = 149, + [515] = 264, [516] = 516, [517] = 517, - [518] = 467, - [519] = 438, - [520] = 520, - [521] = 424, - [522] = 221, + [518] = 428, + [519] = 519, + [520] = 434, + [521] = 436, + [522] = 522, [523] = 523, - [524] = 517, + [524] = 437, [525] = 525, - [526] = 526, + [526] = 265, [527] = 527, [528] = 528, [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, + [530] = 231, + [531] = 241, + [532] = 152, [533] = 533, [534] = 534, [535] = 535, @@ -5422,8 +5735,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [539] = 539, [540] = 540, [541] = 541, - [542] = 516, - [543] = 471, + [542] = 301, + [543] = 543, [544] = 544, [545] = 545, [546] = 546, @@ -5431,272 +5744,272 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [548] = 548, [549] = 549, [550] = 550, - [551] = 551, + [551] = 263, [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, + [553] = 264, + [554] = 265, + [555] = 266, [556] = 556, [557] = 557, [558] = 558, [559] = 559, - [560] = 560, + [560] = 475, [561] = 561, - [562] = 562, - [563] = 563, + [562] = 501, + [563] = 154, [564] = 564, - [565] = 565, + [565] = 145, [566] = 566, - [567] = 353, + [567] = 567, [568] = 568, [569] = 569, - [570] = 406, - [571] = 407, - [572] = 137, - [573] = 136, - [574] = 138, - [575] = 139, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, [576] = 576, - [577] = 134, - [578] = 135, - [579] = 133, - [580] = 221, - [581] = 212, - [582] = 210, - [583] = 470, - [584] = 486, - [585] = 235, - [586] = 236, - [587] = 237, - [588] = 503, - [589] = 589, - [590] = 406, - [591] = 489, - [592] = 526, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 150, + [587] = 151, + [588] = 148, + [589] = 512, + [590] = 384, + [591] = 378, + [592] = 494, [593] = 593, - [594] = 472, - [595] = 480, - [596] = 527, - [597] = 484, - [598] = 485, - [599] = 473, - [600] = 528, - [601] = 529, - [602] = 530, - [603] = 531, - [604] = 532, - [605] = 533, - [606] = 534, - [607] = 535, - [608] = 536, - [609] = 537, - [610] = 538, - [611] = 496, - [612] = 507, - [613] = 449, - [614] = 493, - [615] = 505, - [616] = 520, - [617] = 481, - [618] = 525, - [619] = 544, - [620] = 469, - [621] = 545, - [622] = 622, - [623] = 495, - [624] = 589, - [625] = 475, - [626] = 488, - [627] = 546, - [628] = 547, - [629] = 548, - [630] = 549, - [631] = 550, - [632] = 551, - [633] = 568, - [634] = 569, - [635] = 139, - [636] = 552, - [637] = 134, - [638] = 135, - [639] = 133, - [640] = 553, - [641] = 554, - [642] = 555, - [643] = 556, - [644] = 557, - [645] = 235, - [646] = 236, - [647] = 558, - [648] = 237, - [649] = 559, - [650] = 523, - [651] = 560, - [652] = 561, - [653] = 562, - [654] = 539, - [655] = 540, - [656] = 541, - [657] = 563, - [658] = 565, - [659] = 564, - [660] = 407, - [661] = 661, - [662] = 662, - [663] = 663, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, + [594] = 146, + [595] = 145, + [596] = 569, + [597] = 533, + [598] = 489, + [599] = 381, + [600] = 571, + [601] = 572, + [602] = 573, + [603] = 574, + [604] = 575, + [605] = 576, + [606] = 577, + [607] = 476, + [608] = 525, + [609] = 534, + [610] = 578, + [611] = 561, + [612] = 488, + [613] = 535, + [614] = 491, + [615] = 579, + [616] = 580, + [617] = 499, + [618] = 581, + [619] = 582, + [620] = 620, + [621] = 583, + [622] = 536, + [623] = 584, + [624] = 537, + [625] = 148, + [626] = 585, + [627] = 519, + [628] = 522, + [629] = 629, + [630] = 538, + [631] = 539, + [632] = 264, + [633] = 486, + [634] = 568, + [635] = 559, + [636] = 154, + [637] = 540, + [638] = 541, + [639] = 543, + [640] = 477, + [641] = 263, + [642] = 507, + [643] = 544, + [644] = 545, + [645] = 546, + [646] = 492, + [647] = 566, + [648] = 567, + [649] = 547, + [650] = 548, + [651] = 549, + [652] = 504, + [653] = 550, + [654] = 384, + [655] = 378, + [656] = 556, + [657] = 564, + [658] = 552, + [659] = 265, + [660] = 266, + [661] = 557, + [662] = 146, + [663] = 523, + [664] = 558, + [665] = 529, + [666] = 517, + [667] = 496, [668] = 668, [669] = 669, [670] = 670, - [671] = 668, - [672] = 665, + [671] = 671, + [672] = 672, [673] = 673, - [674] = 663, - [675] = 662, - [676] = 666, - [677] = 673, - [678] = 678, - [679] = 679, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 675, + [679] = 673, [680] = 680, - [681] = 353, - [682] = 682, - [683] = 683, - [684] = 449, - [685] = 177, + [681] = 669, + [682] = 674, + [683] = 676, + [684] = 680, + [685] = 685, [686] = 686, [687] = 687, - [688] = 180, + [688] = 301, [689] = 689, - [690] = 178, - [691] = 183, - [692] = 182, + [690] = 690, + [691] = 691, + [692] = 381, [693] = 693, - [694] = 694, - [695] = 197, + [694] = 196, + [695] = 194, [696] = 696, - [697] = 694, - [698] = 201, - [699] = 204, - [700] = 694, - [701] = 693, - [702] = 696, - [703] = 694, - [704] = 693, - [705] = 694, - [706] = 706, - [707] = 694, - [708] = 694, - [709] = 694, - [710] = 694, - [711] = 694, - [712] = 694, - [713] = 694, - [714] = 694, - [715] = 694, - [716] = 694, - [717] = 694, - [718] = 694, - [719] = 694, - [720] = 694, - [721] = 177, - [722] = 128, - [723] = 723, - [724] = 183, - [725] = 353, - [726] = 215, - [727] = 727, - [728] = 727, - [729] = 727, - [730] = 449, - [731] = 129, - [732] = 130, - [733] = 180, - [734] = 182, - [735] = 178, - [736] = 727, - [737] = 727, - [738] = 727, - [739] = 727, - [740] = 727, - [741] = 727, - [742] = 727, - [743] = 727, - [744] = 727, - [745] = 727, - [746] = 727, - [747] = 727, - [748] = 727, - [749] = 727, - [750] = 727, - [751] = 727, - [752] = 727, - [753] = 753, - [754] = 134, - [755] = 131, - [756] = 132, - [757] = 197, - [758] = 201, - [759] = 135, - [760] = 760, - [761] = 133, - [762] = 204, - [763] = 330, - [764] = 335, - [765] = 332, - [766] = 334, - [767] = 333, - [768] = 314, - [769] = 315, - [770] = 309, - [771] = 318, - [772] = 319, - [773] = 320, - [774] = 321, - [775] = 322, - [776] = 323, - [777] = 777, - [778] = 778, - [779] = 324, - [780] = 325, - [781] = 326, - [782] = 327, - [783] = 328, - [784] = 329, - [785] = 331, - [786] = 215, - [787] = 312, - [788] = 788, - [789] = 137, - [790] = 790, - [791] = 136, - [792] = 138, - [793] = 128, - [794] = 794, - [795] = 795, - [796] = 796, + [697] = 696, + [698] = 696, + [699] = 699, + [700] = 696, + [701] = 696, + [702] = 202, + [703] = 696, + [704] = 696, + [705] = 705, + [706] = 696, + [707] = 696, + [708] = 708, + [709] = 696, + [710] = 696, + [711] = 696, + [712] = 696, + [713] = 696, + [714] = 696, + [715] = 705, + [716] = 203, + [717] = 696, + [718] = 696, + [719] = 696, + [720] = 696, + [721] = 696, + [722] = 708, + [723] = 705, + [724] = 696, + [725] = 221, + [726] = 217, + [727] = 218, + [728] = 301, + [729] = 196, + [730] = 214, + [731] = 194, + [732] = 211, + [733] = 142, + [734] = 734, + [735] = 734, + [736] = 736, + [737] = 734, + [738] = 381, + [739] = 734, + [740] = 144, + [741] = 202, + [742] = 203, + [743] = 734, + [744] = 734, + [745] = 734, + [746] = 734, + [747] = 734, + [748] = 734, + [749] = 734, + [750] = 734, + [751] = 734, + [752] = 734, + [753] = 734, + [754] = 734, + [755] = 734, + [756] = 734, + [757] = 734, + [758] = 734, + [759] = 734, + [760] = 734, + [761] = 143, + [762] = 762, + [763] = 147, + [764] = 149, + [765] = 211, + [766] = 214, + [767] = 217, + [768] = 218, + [769] = 146, + [770] = 148, + [771] = 145, + [772] = 321, + [773] = 773, + [774] = 302, + [775] = 142, + [776] = 304, + [777] = 306, + [778] = 221, + [779] = 779, + [780] = 305, + [781] = 150, + [782] = 151, + [783] = 331, + [784] = 152, + [785] = 785, + [786] = 344, + [787] = 345, + [788] = 346, + [789] = 347, + [790] = 349, + [791] = 350, + [792] = 296, + [793] = 322, + [794] = 336, + [795] = 312, + [796] = 317, [797] = 797, - [798] = 798, - [799] = 799, - [800] = 800, - [801] = 801, - [802] = 802, + [798] = 295, + [799] = 351, + [800] = 325, + [801] = 326, + [802] = 328, [803] = 803, [804] = 804, [805] = 805, - [806] = 806, - [807] = 807, + [806] = 143, + [807] = 144, [808] = 808, - [809] = 384, + [809] = 809, [810] = 810, [811] = 811, [812] = 812, [813] = 813, [814] = 814, [815] = 815, - [816] = 816, + [816] = 405, [817] = 817, [818] = 818, [819] = 819, @@ -5706,1462 +6019,1462 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [823] = 823, [824] = 824, [825] = 825, - [826] = 810, + [826] = 826, [827] = 827, [828] = 828, [829] = 829, - [830] = 129, - [831] = 829, + [830] = 830, + [831] = 803, [832] = 832, - [833] = 408, - [834] = 827, - [835] = 835, - [836] = 836, - [837] = 828, - [838] = 835, - [839] = 796, - [840] = 800, - [841] = 832, - [842] = 794, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 843, - [853] = 801, - [854] = 802, - [855] = 803, - [856] = 804, - [857] = 805, - [858] = 807, - [859] = 808, - [860] = 811, - [861] = 812, - [862] = 813, - [863] = 814, - [864] = 815, - [865] = 816, - [866] = 817, - [867] = 818, - [868] = 819, - [869] = 820, - [870] = 821, - [871] = 822, - [872] = 823, - [873] = 824, - [874] = 825, - [875] = 810, - [876] = 827, - [877] = 828, - [878] = 829, - [879] = 797, - [880] = 835, - [881] = 797, + [833] = 833, + [834] = 804, + [835] = 805, + [836] = 808, + [837] = 809, + [838] = 810, + [839] = 811, + [840] = 812, + [841] = 813, + [842] = 814, + [843] = 815, + [844] = 817, + [845] = 822, + [846] = 818, + [847] = 819, + [848] = 820, + [849] = 821, + [850] = 824, + [851] = 826, + [852] = 827, + [853] = 829, + [854] = 830, + [855] = 855, + [856] = 832, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 823, + [871] = 855, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 868, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, [882] = 882, [883] = 883, - [884] = 806, - [885] = 836, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 795, - [890] = 798, - [891] = 799, - [892] = 882, - [893] = 796, - [894] = 894, - [895] = 800, - [896] = 883, - [897] = 806, - [898] = 836, - [899] = 886, - [900] = 887, - [901] = 888, - [902] = 795, - [903] = 798, - [904] = 832, - [905] = 799, - [906] = 794, - [907] = 843, - [908] = 844, - [909] = 845, - [910] = 846, - [911] = 801, - [912] = 802, - [913] = 847, - [914] = 803, - [915] = 804, - [916] = 805, - [917] = 848, - [918] = 849, - [919] = 807, - [920] = 808, - [921] = 850, - [922] = 851, - [923] = 811, - [924] = 883, - [925] = 812, - [926] = 886, - [927] = 139, - [928] = 844, - [929] = 845, - [930] = 813, - [931] = 846, - [932] = 847, - [933] = 814, - [934] = 815, - [935] = 816, - [936] = 817, - [937] = 818, - [938] = 819, - [939] = 820, - [940] = 821, - [941] = 822, - [942] = 823, - [943] = 824, - [944] = 825, - [945] = 848, - [946] = 946, - [947] = 130, - [948] = 882, - [949] = 894, - [950] = 849, - [951] = 850, - [952] = 952, - [953] = 851, - [954] = 954, - [955] = 887, - [956] = 888, - [957] = 894, - [958] = 132, - [959] = 959, - [960] = 960, - [961] = 959, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 965, + [884] = 884, + [885] = 833, + [886] = 804, + [887] = 805, + [888] = 808, + [889] = 809, + [890] = 810, + [891] = 811, + [892] = 812, + [893] = 813, + [894] = 814, + [895] = 815, + [896] = 817, + [897] = 822, + [898] = 818, + [899] = 819, + [900] = 820, + [901] = 821, + [902] = 824, + [903] = 826, + [904] = 827, + [905] = 829, + [906] = 830, + [907] = 803, + [908] = 832, + [909] = 857, + [910] = 858, + [911] = 859, + [912] = 860, + [913] = 861, + [914] = 862, + [915] = 863, + [916] = 864, + [917] = 865, + [918] = 866, + [919] = 867, + [920] = 868, + [921] = 869, + [922] = 823, + [923] = 855, + [924] = 872, + [925] = 873, + [926] = 874, + [927] = 875, + [928] = 928, + [929] = 877, + [930] = 878, + [931] = 879, + [932] = 880, + [933] = 881, + [934] = 882, + [935] = 883, + [936] = 884, + [937] = 857, + [938] = 858, + [939] = 859, + [940] = 860, + [941] = 390, + [942] = 861, + [943] = 862, + [944] = 863, + [945] = 864, + [946] = 865, + [947] = 866, + [948] = 867, + [949] = 872, + [950] = 873, + [951] = 874, + [952] = 875, + [953] = 928, + [954] = 877, + [955] = 878, + [956] = 879, + [957] = 880, + [958] = 881, + [959] = 882, + [960] = 883, + [961] = 884, + [962] = 869, + [963] = 154, + [964] = 833, + [965] = 928, [966] = 966, - [967] = 967, + [967] = 149, [968] = 968, - [969] = 969, - [970] = 438, + [969] = 441, + [970] = 427, [971] = 971, - [972] = 131, + [972] = 146, [973] = 973, [974] = 974, [975] = 975, - [976] = 453, - [977] = 424, + [976] = 429, + [977] = 977, [978] = 978, - [979] = 454, - [980] = 134, + [979] = 979, + [980] = 980, [981] = 981, - [982] = 135, - [983] = 133, + [982] = 982, + [983] = 983, [984] = 984, - [985] = 985, - [986] = 436, - [987] = 960, + [985] = 148, + [986] = 986, + [987] = 145, [988] = 988, - [989] = 989, - [990] = 990, - [991] = 991, + [989] = 430, + [990] = 431, + [991] = 147, [992] = 992, - [993] = 993, + [993] = 974, [994] = 994, - [995] = 995, + [995] = 973, [996] = 996, [997] = 997, [998] = 998, [999] = 999, - [1000] = 993, - [1001] = 994, - [1002] = 997, - [1003] = 998, - [1004] = 999, - [1005] = 995, - [1006] = 996, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 1009, + [1009] = 998, [1010] = 1010, [1011] = 1011, - [1012] = 991, - [1013] = 1007, - [1014] = 1008, - [1015] = 1009, - [1016] = 1010, - [1017] = 1011, - [1018] = 1018, - [1019] = 991, - [1020] = 137, - [1021] = 993, - [1022] = 994, - [1023] = 136, - [1024] = 138, - [1025] = 1007, - [1026] = 997, - [1027] = 995, - [1028] = 993, - [1029] = 994, - [1030] = 997, - [1031] = 993, - [1032] = 994, - [1033] = 997, - [1034] = 998, - [1035] = 998, - [1036] = 999, - [1037] = 999, - [1038] = 995, - [1039] = 995, - [1040] = 996, - [1041] = 1007, - [1042] = 1008, - [1043] = 1009, - [1044] = 1010, - [1045] = 1011, - [1046] = 993, - [1047] = 994, - [1048] = 997, - [1049] = 998, - [1050] = 999, - [1051] = 995, - [1052] = 996, - [1053] = 1007, - [1054] = 1008, - [1055] = 1009, - [1056] = 1010, - [1057] = 1011, - [1058] = 991, - [1059] = 993, - [1060] = 994, - [1061] = 997, - [1062] = 998, - [1063] = 999, - [1064] = 995, - [1065] = 996, - [1066] = 1007, - [1067] = 1008, - [1068] = 1009, - [1069] = 1010, - [1070] = 1011, - [1071] = 991, - [1072] = 991, - [1073] = 996, - [1074] = 993, - [1075] = 994, - [1076] = 997, - [1077] = 998, - [1078] = 999, - [1079] = 995, - [1080] = 996, - [1081] = 1007, - [1082] = 1008, - [1083] = 1009, - [1084] = 1010, - [1085] = 1011, - [1086] = 991, - [1087] = 1008, - [1088] = 1007, - [1089] = 1009, - [1090] = 1010, + [1012] = 1012, + [1013] = 1013, + [1014] = 152, + [1015] = 150, + [1016] = 151, + [1017] = 1008, + [1018] = 1000, + [1019] = 1001, + [1020] = 1002, + [1021] = 1003, + [1022] = 1004, + [1023] = 1005, + [1024] = 1006, + [1025] = 1011, + [1026] = 1012, + [1027] = 1013, + [1028] = 996, + [1029] = 1000, + [1030] = 1001, + [1031] = 1002, + [1032] = 1003, + [1033] = 1004, + [1034] = 1005, + [1035] = 1006, + [1036] = 1007, + [1037] = 1008, + [1038] = 998, + [1039] = 1011, + [1040] = 1012, + [1041] = 1013, + [1042] = 1000, + [1043] = 1001, + [1044] = 1002, + [1045] = 1003, + [1046] = 1004, + [1047] = 1005, + [1048] = 1006, + [1049] = 1007, + [1050] = 1008, + [1051] = 998, + [1052] = 1011, + [1053] = 1012, + [1054] = 1013, + [1055] = 1007, + [1056] = 1000, + [1057] = 1001, + [1058] = 1002, + [1059] = 1003, + [1060] = 1004, + [1061] = 1005, + [1062] = 1062, + [1063] = 1007, + [1064] = 1008, + [1065] = 998, + [1066] = 1011, + [1067] = 1012, + [1068] = 1013, + [1069] = 475, + [1070] = 1000, + [1071] = 1001, + [1072] = 1002, + [1073] = 1003, + [1074] = 1004, + [1075] = 1005, + [1076] = 1006, + [1077] = 1007, + [1078] = 1008, + [1079] = 998, + [1080] = 1011, + [1081] = 1012, + [1082] = 1013, + [1083] = 1000, + [1084] = 1001, + [1085] = 1002, + [1086] = 1003, + [1087] = 1004, + [1088] = 1005, + [1089] = 1006, + [1090] = 1007, [1091] = 1008, - [1092] = 1009, - [1093] = 1093, - [1094] = 1011, - [1095] = 991, - [1096] = 1010, - [1097] = 471, - [1098] = 1098, - [1099] = 965, - [1100] = 1011, - [1101] = 1101, - [1102] = 991, - [1103] = 993, - [1104] = 994, - [1105] = 997, - [1106] = 998, - [1107] = 999, - [1108] = 995, - [1109] = 996, - [1110] = 1007, - [1111] = 998, - [1112] = 1008, - [1113] = 1009, - [1114] = 1010, - [1115] = 1011, - [1116] = 996, - [1117] = 992, - [1118] = 999, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 436, - [1123] = 472, - [1124] = 1124, - [1125] = 1125, - [1126] = 480, + [1092] = 998, + [1093] = 1011, + [1094] = 1012, + [1095] = 1013, + [1096] = 1000, + [1097] = 1001, + [1098] = 1002, + [1099] = 1003, + [1100] = 1004, + [1101] = 1005, + [1102] = 1006, + [1103] = 1007, + [1104] = 1008, + [1105] = 998, + [1106] = 1011, + [1107] = 1012, + [1108] = 1013, + [1109] = 1000, + [1110] = 1001, + [1111] = 1002, + [1112] = 1003, + [1113] = 1004, + [1114] = 1005, + [1115] = 1006, + [1116] = 1007, + [1117] = 1008, + [1118] = 998, + [1119] = 1011, + [1120] = 1012, + [1121] = 1013, + [1122] = 999, + [1123] = 1123, + [1124] = 1006, + [1125] = 544, + [1126] = 146, [1127] = 1127, [1128] = 1128, [1129] = 1129, [1130] = 1130, - [1131] = 134, + [1131] = 441, [1132] = 1132, [1133] = 1133, - [1134] = 1134, - [1135] = 1135, - [1136] = 493, - [1137] = 1137, + [1134] = 1128, + [1135] = 154, + [1136] = 1129, + [1137] = 148, [1138] = 1138, - [1139] = 135, - [1140] = 1140, - [1141] = 507, - [1142] = 133, - [1143] = 505, - [1144] = 484, - [1145] = 485, - [1146] = 488, - [1147] = 520, - [1148] = 481, - [1149] = 1149, - [1150] = 489, - [1151] = 139, - [1152] = 544, - [1153] = 1153, - [1154] = 469, - [1155] = 1155, - [1156] = 564, - [1157] = 1157, - [1158] = 545, + [1139] = 559, + [1140] = 561, + [1141] = 145, + [1142] = 1142, + [1143] = 1143, + [1144] = 1144, + [1145] = 517, + [1146] = 523, + [1147] = 525, + [1148] = 486, + [1149] = 507, + [1150] = 476, + [1151] = 488, + [1152] = 519, + [1153] = 522, + [1154] = 1154, + [1155] = 533, + [1156] = 496, + [1157] = 477, + [1158] = 405, [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 1162, + [1160] = 534, + [1161] = 492, + [1162] = 504, [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1132, - [1168] = 1133, - [1169] = 1134, - [1170] = 495, - [1171] = 589, + [1167] = 1167, + [1168] = 1168, + [1169] = 529, + [1170] = 1170, + [1171] = 1171, [1172] = 1172, - [1173] = 1173, + [1173] = 1127, [1174] = 1174, [1175] = 1175, - [1176] = 1176, - [1177] = 546, - [1178] = 1178, - [1179] = 547, - [1180] = 548, - [1181] = 549, - [1182] = 550, - [1183] = 551, + [1176] = 535, + [1177] = 536, + [1178] = 537, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, [1184] = 1184, [1185] = 1185, [1186] = 1186, - [1187] = 552, - [1188] = 384, - [1189] = 553, - [1190] = 554, - [1191] = 555, - [1192] = 556, - [1193] = 557, - [1194] = 558, - [1195] = 559, - [1196] = 523, - [1197] = 560, - [1198] = 561, - [1199] = 562, - [1200] = 563, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1204, - [1206] = 1206, + [1187] = 1187, + [1188] = 538, + [1189] = 539, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 540, + [1196] = 541, + [1197] = 543, + [1198] = 545, + [1199] = 546, + [1200] = 547, + [1201] = 548, + [1202] = 549, + [1203] = 550, + [1204] = 556, + [1205] = 557, + [1206] = 558, [1207] = 1207, [1208] = 1208, [1209] = 1209, - [1210] = 1208, - [1211] = 1206, + [1210] = 1210, + [1211] = 1211, [1212] = 1212, - [1213] = 1207, - [1214] = 1202, - [1215] = 1203, - [1216] = 1209, - [1217] = 1212, + [1213] = 1210, + [1214] = 1208, + [1215] = 1215, + [1216] = 1216, + [1217] = 1211, [1218] = 1218, - [1219] = 1219, - [1220] = 1219, - [1221] = 1221, - [1222] = 1219, - [1223] = 1221, - [1224] = 1221, - [1225] = 130, - [1226] = 1226, + [1219] = 1215, + [1220] = 1216, + [1221] = 1218, + [1222] = 1212, + [1223] = 1209, + [1224] = 1224, + [1225] = 1225, + [1226] = 1225, [1227] = 1227, - [1228] = 1226, - [1229] = 1229, - [1230] = 353, - [1231] = 129, - [1232] = 1227, - [1233] = 177, + [1228] = 1228, + [1229] = 1225, + [1230] = 1228, + [1231] = 1228, + [1232] = 1232, + [1233] = 1233, [1234] = 1234, - [1235] = 1234, + [1235] = 1235, [1236] = 1236, - [1237] = 1229, + [1237] = 1233, [1238] = 1238, - [1239] = 1236, - [1240] = 187, - [1241] = 449, - [1242] = 184, - [1243] = 128, - [1244] = 177, - [1245] = 134, - [1246] = 128, - [1247] = 135, - [1248] = 133, - [1249] = 177, - [1250] = 1250, - [1251] = 131, - [1252] = 132, - [1253] = 1253, - [1254] = 1254, - [1255] = 183, - [1256] = 180, - [1257] = 182, - [1258] = 178, - [1259] = 1238, - [1260] = 181, - [1261] = 137, - [1262] = 130, - [1263] = 181, - [1264] = 182, - [1265] = 128, - [1266] = 178, - [1267] = 182, - [1268] = 178, - [1269] = 183, - [1270] = 136, - [1271] = 138, - [1272] = 194, - [1273] = 184, - [1274] = 193, - [1275] = 192, + [1239] = 190, + [1240] = 1240, + [1241] = 142, + [1242] = 1242, + [1243] = 142, + [1244] = 1236, + [1245] = 1238, + [1246] = 1240, + [1247] = 1247, + [1248] = 1247, + [1249] = 1249, + [1250] = 301, + [1251] = 1251, + [1252] = 1252, + [1253] = 381, + [1254] = 190, + [1255] = 143, + [1256] = 144, + [1257] = 196, + [1258] = 192, + [1259] = 143, + [1260] = 144, + [1261] = 142, + [1262] = 191, + [1263] = 195, + [1264] = 1264, + [1265] = 194, + [1266] = 147, + [1267] = 149, + [1268] = 191, + [1269] = 148, + [1270] = 145, + [1271] = 144, + [1272] = 202, + [1273] = 146, + [1274] = 149, + [1275] = 1275, [1276] = 195, - [1277] = 187, - [1278] = 204, - [1279] = 189, - [1280] = 191, - [1281] = 197, - [1282] = 201, - [1283] = 183, - [1284] = 1253, - [1285] = 1250, - [1286] = 180, - [1287] = 180, - [1288] = 177, - [1289] = 129, - [1290] = 1290, - [1291] = 204, - [1292] = 197, + [1277] = 148, + [1278] = 145, + [1279] = 203, + [1280] = 142, + [1281] = 194, + [1282] = 206, + [1283] = 207, + [1284] = 208, + [1285] = 198, + [1286] = 192, + [1287] = 194, + [1288] = 143, + [1289] = 147, + [1290] = 196, + [1291] = 196, + [1292] = 146, [1293] = 1293, - [1294] = 197, - [1295] = 201, - [1296] = 1296, - [1297] = 201, + [1294] = 206, + [1295] = 1295, + [1296] = 1293, + [1297] = 143, [1298] = 1298, - [1299] = 131, - [1300] = 192, - [1301] = 189, - [1302] = 191, - [1303] = 1303, - [1304] = 1304, - [1305] = 1290, - [1306] = 1290, - [1307] = 215, - [1308] = 1308, - [1309] = 1298, - [1310] = 1296, - [1311] = 1304, - [1312] = 134, - [1313] = 135, - [1314] = 133, - [1315] = 1296, - [1316] = 194, - [1317] = 193, - [1318] = 195, - [1319] = 221, - [1320] = 212, - [1321] = 210, - [1322] = 1298, - [1323] = 128, - [1324] = 1308, - [1325] = 1298, - [1326] = 1296, - [1327] = 130, - [1328] = 132, - [1329] = 1290, - [1330] = 1308, - [1331] = 1298, - [1332] = 1296, - [1333] = 1290, - [1334] = 1308, - [1335] = 1298, - [1336] = 1296, - [1337] = 1290, - [1338] = 1308, - [1339] = 1298, - [1340] = 1296, - [1341] = 1290, - [1342] = 1308, - [1343] = 1298, - [1344] = 1296, - [1345] = 1290, - [1346] = 1308, - [1347] = 1298, - [1348] = 1296, - [1349] = 1290, - [1350] = 1308, + [1299] = 152, + [1300] = 1300, + [1301] = 210, + [1302] = 150, + [1303] = 151, + [1304] = 207, + [1305] = 1275, + [1306] = 1306, + [1307] = 208, + [1308] = 202, + [1309] = 1295, + [1310] = 203, + [1311] = 1298, + [1312] = 198, + [1313] = 1293, + [1314] = 202, + [1315] = 1295, + [1316] = 1298, + [1317] = 1306, + [1318] = 203, + [1319] = 146, + [1320] = 1300, + [1321] = 148, + [1322] = 145, + [1323] = 1298, + [1324] = 1300, + [1325] = 144, + [1326] = 1300, + [1327] = 211, + [1328] = 152, + [1329] = 214, + [1330] = 217, + [1331] = 218, + [1332] = 1293, + [1333] = 1295, + [1334] = 1298, + [1335] = 1300, + [1336] = 150, + [1337] = 151, + [1338] = 1293, + [1339] = 1295, + [1340] = 1298, + [1341] = 1293, + [1342] = 142, + [1343] = 219, + [1344] = 1293, + [1345] = 1295, + [1346] = 1298, + [1347] = 1300, + [1348] = 194, + [1349] = 1293, + [1350] = 1295, [1351] = 1298, - [1352] = 1296, - [1353] = 1308, - [1354] = 1290, - [1355] = 1308, - [1356] = 1298, - [1357] = 1296, - [1358] = 1290, - [1359] = 1308, - [1360] = 1298, - [1361] = 1296, - [1362] = 1290, - [1363] = 1308, - [1364] = 1298, - [1365] = 1296, - [1366] = 1290, - [1367] = 1308, - [1368] = 1298, - [1369] = 1296, - [1370] = 207, - [1371] = 1290, - [1372] = 1298, - [1373] = 1308, - [1374] = 183, - [1375] = 180, - [1376] = 182, - [1377] = 178, - [1378] = 204, - [1379] = 1290, - [1380] = 129, - [1381] = 177, - [1382] = 1382, - [1383] = 183, - [1384] = 1293, - [1385] = 132, - [1386] = 138, - [1387] = 224, - [1388] = 215, - [1389] = 133, - [1390] = 1390, - [1391] = 177, - [1392] = 212, - [1393] = 128, - [1394] = 134, - [1395] = 210, - [1396] = 235, - [1397] = 236, - [1398] = 129, - [1399] = 1303, - [1400] = 207, - [1401] = 237, - [1402] = 136, - [1403] = 221, - [1404] = 204, - [1405] = 135, - [1406] = 131, - [1407] = 197, - [1408] = 201, - [1409] = 137, - [1410] = 130, - [1411] = 230, - [1412] = 180, - [1413] = 183, - [1414] = 1390, - [1415] = 236, - [1416] = 138, - [1417] = 180, - [1418] = 237, - [1419] = 1419, - [1420] = 192, - [1421] = 178, - [1422] = 129, - [1423] = 139, - [1424] = 131, - [1425] = 132, - [1426] = 689, - [1427] = 130, + [1352] = 1300, + [1353] = 1293, + [1354] = 1295, + [1355] = 1298, + [1356] = 1300, + [1357] = 1293, + [1358] = 1295, + [1359] = 1298, + [1360] = 1300, + [1361] = 1293, + [1362] = 1295, + [1363] = 1298, + [1364] = 1300, + [1365] = 1293, + [1366] = 1295, + [1367] = 1298, + [1368] = 1300, + [1369] = 1293, + [1370] = 1295, + [1371] = 1298, + [1372] = 1300, + [1373] = 1293, + [1374] = 1295, + [1375] = 1298, + [1376] = 1300, + [1377] = 1293, + [1378] = 1298, + [1379] = 196, + [1380] = 147, + [1381] = 149, + [1382] = 221, + [1383] = 1295, + [1384] = 1300, + [1385] = 154, + [1386] = 210, + [1387] = 211, + [1388] = 214, + [1389] = 217, + [1390] = 218, + [1391] = 219, + [1392] = 147, + [1393] = 142, + [1394] = 149, + [1395] = 1395, + [1396] = 231, + [1397] = 218, + [1398] = 143, + [1399] = 152, + [1400] = 144, + [1401] = 146, + [1402] = 148, + [1403] = 145, + [1404] = 241, + [1405] = 202, + [1406] = 221, + [1407] = 1407, + [1408] = 211, + [1409] = 154, + [1410] = 214, + [1411] = 217, + [1412] = 203, + [1413] = 150, + [1414] = 151, + [1415] = 264, + [1416] = 219, + [1417] = 194, + [1418] = 196, + [1419] = 1407, + [1420] = 154, + [1421] = 211, + [1422] = 262, + [1423] = 1423, + [1424] = 150, + [1425] = 265, + [1426] = 152, + [1427] = 266, [1428] = 1428, - [1429] = 177, - [1430] = 134, - [1431] = 135, - [1432] = 207, - [1433] = 230, - [1434] = 139, - [1435] = 133, - [1436] = 131, - [1437] = 132, - [1438] = 178, - [1439] = 182, - [1440] = 215, - [1441] = 182, - [1442] = 1442, - [1443] = 128, - [1444] = 235, - [1445] = 139, - [1446] = 224, - [1447] = 137, - [1448] = 192, - [1449] = 136, - [1450] = 706, - [1451] = 212, - [1452] = 134, - [1453] = 136, - [1454] = 192, - [1455] = 326, - [1456] = 204, - [1457] = 327, - [1458] = 138, - [1459] = 328, - [1460] = 329, - [1461] = 330, - [1462] = 331, - [1463] = 332, - [1464] = 333, - [1465] = 334, - [1466] = 335, - [1467] = 183, - [1468] = 180, - [1469] = 314, - [1470] = 128, - [1471] = 182, - [1472] = 137, - [1473] = 315, - [1474] = 1442, - [1475] = 210, - [1476] = 318, - [1477] = 137, - [1478] = 178, - [1479] = 319, - [1480] = 221, - [1481] = 320, - [1482] = 312, - [1483] = 197, - [1484] = 197, - [1485] = 210, - [1486] = 136, - [1487] = 300, - [1488] = 201, - [1489] = 204, - [1490] = 135, - [1491] = 133, - [1492] = 138, - [1493] = 131, - [1494] = 132, - [1495] = 321, - [1496] = 689, - [1497] = 207, - [1498] = 1498, - [1499] = 177, - [1500] = 318, - [1501] = 134, - [1502] = 322, - [1503] = 129, - [1504] = 130, - [1505] = 207, - [1506] = 192, - [1507] = 135, - [1508] = 319, - [1509] = 320, - [1510] = 323, - [1511] = 321, - [1512] = 322, - [1513] = 323, - [1514] = 324, - [1515] = 183, - [1516] = 325, - [1517] = 326, - [1518] = 327, - [1519] = 328, - [1520] = 329, - [1521] = 330, - [1522] = 331, - [1523] = 332, - [1524] = 333, - [1525] = 334, - [1526] = 335, - [1527] = 309, - [1528] = 133, - [1529] = 128, - [1530] = 324, - [1531] = 221, - [1532] = 212, - [1533] = 325, - [1534] = 201, - [1535] = 315, - [1536] = 139, - [1537] = 325, - [1538] = 326, - [1539] = 408, - [1540] = 396, - [1541] = 221, - [1542] = 398, - [1543] = 207, - [1544] = 215, - [1545] = 134, - [1546] = 135, - [1547] = 312, - [1548] = 133, - [1549] = 180, - [1550] = 318, - [1551] = 309, - [1552] = 384, - [1553] = 128, - [1554] = 235, - [1555] = 236, - [1556] = 237, - [1557] = 319, - [1558] = 320, - [1559] = 321, - [1560] = 182, - [1561] = 1561, - [1562] = 322, - [1563] = 212, - [1564] = 335, - [1565] = 314, - [1566] = 212, - [1567] = 723, - [1568] = 309, - [1569] = 137, - [1570] = 334, - [1571] = 210, - [1572] = 389, - [1573] = 177, - [1574] = 136, - [1575] = 237, - [1576] = 138, - [1577] = 139, - [1578] = 314, - [1579] = 393, - [1580] = 327, - [1581] = 328, - [1582] = 329, - [1583] = 323, - [1584] = 330, - [1585] = 129, - [1586] = 315, - [1587] = 312, - [1588] = 706, - [1589] = 331, - [1590] = 130, - [1591] = 178, - [1592] = 324, - [1593] = 221, - [1594] = 204, - [1595] = 356, - [1596] = 332, - [1597] = 183, - [1598] = 357, - [1599] = 129, - [1600] = 358, - [1601] = 300, - [1602] = 130, - [1603] = 406, - [1604] = 197, - [1605] = 215, - [1606] = 210, - [1607] = 954, - [1608] = 333, - [1609] = 384, - [1610] = 407, - [1611] = 235, - [1612] = 236, - [1613] = 201, - [1614] = 355, - [1615] = 192, + [1429] = 151, + [1430] = 1430, + [1431] = 263, + [1432] = 149, + [1433] = 214, + [1434] = 146, + [1435] = 241, + [1436] = 194, + [1437] = 217, + [1438] = 218, + [1439] = 231, + [1440] = 143, + [1441] = 144, + [1442] = 145, + [1443] = 251, + [1444] = 210, + [1445] = 148, + [1446] = 154, + [1447] = 196, + [1448] = 147, + [1449] = 336, + [1450] = 1450, + [1451] = 147, + [1452] = 149, + [1453] = 196, + [1454] = 210, + [1455] = 296, + [1456] = 202, + [1457] = 264, + [1458] = 295, + [1459] = 203, + [1460] = 351, + [1461] = 266, + [1462] = 194, + [1463] = 322, + [1464] = 325, + [1465] = 152, + [1466] = 302, + [1467] = 346, + [1468] = 196, + [1469] = 326, + [1470] = 150, + [1471] = 151, + [1472] = 219, + [1473] = 328, + [1474] = 221, + [1475] = 221, + [1476] = 312, + [1477] = 262, + [1478] = 210, + [1479] = 321, + [1480] = 349, + [1481] = 350, + [1482] = 194, + [1483] = 347, + [1484] = 265, + [1485] = 251, + [1486] = 203, + [1487] = 304, + [1488] = 202, + [1489] = 699, + [1490] = 305, + [1491] = 263, + [1492] = 194, + [1493] = 331, + [1494] = 231, + [1495] = 1423, + [1496] = 344, + [1497] = 196, + [1498] = 345, + [1499] = 196, + [1500] = 194, + [1501] = 241, + [1502] = 145, + [1503] = 306, + [1504] = 146, + [1505] = 142, + [1506] = 219, + [1507] = 148, + [1508] = 317, + [1509] = 351, + [1510] = 241, + [1511] = 231, + [1512] = 388, + [1513] = 344, + [1514] = 384, + [1515] = 336, + [1516] = 994, + [1517] = 302, + [1518] = 210, + [1519] = 203, + [1520] = 405, + [1521] = 214, + [1522] = 347, + [1523] = 331, + [1524] = 231, + [1525] = 312, + [1526] = 203, + [1527] = 217, + [1528] = 405, + [1529] = 317, + [1530] = 321, + [1531] = 400, + [1532] = 975, + [1533] = 218, + [1534] = 295, + [1535] = 980, + [1536] = 997, + [1537] = 982, + [1538] = 304, + [1539] = 417, + [1540] = 828, + [1541] = 390, + [1542] = 390, + [1543] = 1543, + [1544] = 325, + [1545] = 966, + [1546] = 968, + [1547] = 326, + [1548] = 147, + [1549] = 328, + [1550] = 241, + [1551] = 345, + [1552] = 202, + [1553] = 221, + [1554] = 211, + [1555] = 699, + [1556] = 202, + [1557] = 346, + [1558] = 196, + [1559] = 373, + [1560] = 149, + [1561] = 203, + [1562] = 263, + [1563] = 986, + [1564] = 378, + [1565] = 194, + [1566] = 202, + [1567] = 988, + [1568] = 984, + [1569] = 142, + [1570] = 350, + [1571] = 981, + [1572] = 264, + [1573] = 992, + [1574] = 150, + [1575] = 143, + [1576] = 144, + [1577] = 349, + [1578] = 202, + [1579] = 296, + [1580] = 265, + [1581] = 151, + [1582] = 977, + [1583] = 266, + [1584] = 217, + [1585] = 219, + [1586] = 306, + [1587] = 322, + [1588] = 978, + [1589] = 203, + [1590] = 699, + [1591] = 305, + [1592] = 154, + [1593] = 214, + [1594] = 211, + [1595] = 983, + [1596] = 979, + [1597] = 152, + [1598] = 218, + [1599] = 971, + [1600] = 373, + [1601] = 390, + [1602] = 148, + [1603] = 421, + [1604] = 1604, + [1605] = 384, + [1606] = 1606, + [1607] = 1607, + [1608] = 217, + [1609] = 145, + [1610] = 428, + [1611] = 434, + [1612] = 436, + [1613] = 437, + [1614] = 221, + [1615] = 211, [1616] = 1616, - [1617] = 1617, - [1618] = 1618, - [1619] = 129, - [1620] = 563, - [1621] = 1621, - [1622] = 130, - [1623] = 235, - [1624] = 564, - [1625] = 968, - [1626] = 236, - [1627] = 988, - [1628] = 1628, - [1629] = 135, - [1630] = 357, - [1631] = 128, - [1632] = 1561, - [1633] = 358, - [1634] = 235, - [1635] = 355, - [1636] = 130, - [1637] = 398, - [1638] = 237, - [1639] = 407, - [1640] = 408, - [1641] = 966, - [1642] = 201, - [1643] = 384, - [1644] = 989, - [1645] = 954, - [1646] = 1621, - [1647] = 974, - [1648] = 438, - [1649] = 139, - [1650] = 131, - [1651] = 132, - [1652] = 723, - [1653] = 1653, - [1654] = 207, - [1655] = 424, - [1656] = 197, - [1657] = 436, - [1658] = 454, - [1659] = 1659, - [1660] = 134, - [1661] = 236, - [1662] = 131, - [1663] = 132, - [1664] = 135, - [1665] = 356, - [1666] = 389, - [1667] = 215, - [1668] = 182, - [1669] = 406, - [1670] = 129, - [1671] = 204, - [1672] = 396, - [1673] = 954, - [1674] = 1674, - [1675] = 1675, - [1676] = 180, - [1677] = 237, - [1678] = 453, - [1679] = 133, - [1680] = 178, - [1681] = 133, - [1682] = 134, - [1683] = 393, - [1684] = 133, - [1685] = 963, - [1686] = 197, - [1687] = 131, - [1688] = 1303, - [1689] = 438, - [1690] = 1690, - [1691] = 989, - [1692] = 135, - [1693] = 1693, - [1694] = 137, - [1695] = 966, - [1696] = 134, - [1697] = 453, - [1698] = 454, - [1699] = 969, - [1700] = 1653, - [1701] = 424, - [1702] = 988, - [1703] = 436, - [1704] = 1704, - [1705] = 471, - [1706] = 424, - [1707] = 1093, - [1708] = 436, - [1709] = 1098, - [1710] = 129, - [1711] = 990, - [1712] = 1018, - [1713] = 1018, - [1714] = 212, - [1715] = 967, - [1716] = 1621, - [1717] = 201, - [1718] = 204, - [1719] = 1617, - [1720] = 975, - [1721] = 1721, - [1722] = 974, - [1723] = 136, - [1724] = 138, - [1725] = 985, - [1726] = 137, - [1727] = 1093, - [1728] = 981, - [1729] = 964, - [1730] = 131, - [1731] = 971, - [1732] = 968, - [1733] = 516, - [1734] = 978, - [1735] = 132, - [1736] = 136, - [1737] = 138, - [1738] = 132, - [1739] = 1675, - [1740] = 954, - [1741] = 1690, - [1742] = 1101, - [1743] = 192, - [1744] = 968, - [1745] = 1101, - [1746] = 1628, - [1747] = 984, - [1748] = 1616, - [1749] = 1749, - [1750] = 471, - [1751] = 988, - [1752] = 210, - [1753] = 1753, - [1754] = 989, - [1755] = 962, - [1756] = 973, - [1757] = 966, - [1758] = 974, - [1759] = 207, - [1760] = 130, - [1761] = 438, - [1762] = 1659, - [1763] = 221, - [1764] = 453, - [1765] = 454, - [1766] = 1098, - [1767] = 560, - [1768] = 589, - [1769] = 546, - [1770] = 547, - [1771] = 548, - [1772] = 549, - [1773] = 550, - [1774] = 551, - [1775] = 552, - [1776] = 553, - [1777] = 554, - [1778] = 555, - [1779] = 556, - [1780] = 557, - [1781] = 558, - [1782] = 559, - [1783] = 523, - [1784] = 560, - [1785] = 561, - [1786] = 562, - [1787] = 471, - [1788] = 1753, - [1789] = 1789, - [1790] = 516, - [1791] = 520, - [1792] = 1792, - [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 493, - [1803] = 544, - [1804] = 505, - [1805] = 507, - [1806] = 545, - [1807] = 1807, - [1808] = 131, - [1809] = 132, - [1810] = 481, - [1811] = 589, - [1812] = 546, - [1813] = 547, - [1814] = 548, - [1815] = 549, - [1816] = 550, - [1817] = 551, - [1818] = 552, - [1819] = 553, - [1820] = 554, - [1821] = 555, - [1822] = 556, - [1823] = 557, - [1824] = 558, - [1825] = 559, - [1826] = 523, - [1827] = 561, - [1828] = 562, - [1829] = 563, - [1830] = 564, - [1831] = 469, - [1832] = 495, - [1833] = 134, - [1834] = 488, - [1835] = 489, - [1836] = 525, - [1837] = 135, - [1838] = 472, - [1839] = 480, - [1840] = 137, - [1841] = 406, - [1842] = 133, - [1843] = 1101, - [1844] = 485, - [1845] = 526, - [1846] = 527, - [1847] = 528, - [1848] = 407, - [1849] = 529, - [1850] = 530, - [1851] = 531, - [1852] = 136, - [1853] = 138, - [1854] = 532, - [1855] = 533, - [1856] = 534, - [1857] = 535, - [1858] = 536, - [1859] = 537, - [1860] = 538, - [1861] = 139, - [1862] = 221, - [1863] = 212, - [1864] = 210, - [1865] = 1093, - [1866] = 1098, - [1867] = 1101, - [1868] = 424, - [1869] = 438, - [1870] = 453, - [1871] = 454, - [1872] = 1872, - [1873] = 1873, - [1874] = 1018, - [1875] = 989, - [1876] = 436, - [1877] = 1877, - [1878] = 235, - [1879] = 236, - [1880] = 237, - [1881] = 134, - [1882] = 135, + [1617] = 146, + [1618] = 441, + [1619] = 968, + [1620] = 148, + [1621] = 214, + [1622] = 145, + [1623] = 147, + [1624] = 149, + [1625] = 152, + [1626] = 971, + [1627] = 154, + [1628] = 986, + [1629] = 217, + [1630] = 1543, + [1631] = 202, + [1632] = 988, + [1633] = 211, + [1634] = 405, + [1635] = 218, + [1636] = 150, + [1637] = 151, + [1638] = 263, + [1639] = 1123, + [1640] = 218, + [1641] = 264, + [1642] = 265, + [1643] = 266, + [1644] = 1062, + [1645] = 231, + [1646] = 1646, + [1647] = 203, + [1648] = 214, + [1649] = 429, + [1650] = 263, + [1651] = 143, + [1652] = 210, + [1653] = 430, + [1654] = 431, + [1655] = 217, + [1656] = 264, + [1657] = 241, + [1658] = 144, + [1659] = 218, + [1660] = 378, + [1661] = 219, + [1662] = 218, + [1663] = 265, + [1664] = 266, + [1665] = 475, + [1666] = 1606, + [1667] = 211, + [1668] = 146, + [1669] = 214, + [1670] = 1670, + [1671] = 417, + [1672] = 400, + [1673] = 388, + [1674] = 214, + [1675] = 211, + [1676] = 217, + [1677] = 427, + [1678] = 546, + [1679] = 1138, + [1680] = 218, + [1681] = 436, + [1682] = 492, + [1683] = 504, + [1684] = 1684, + [1685] = 1685, + [1686] = 519, + [1687] = 968, + [1688] = 522, + [1689] = 263, + [1690] = 1159, + [1691] = 971, + [1692] = 145, + [1693] = 1606, + [1694] = 1694, + [1695] = 1010, + [1696] = 437, + [1697] = 1697, + [1698] = 1698, + [1699] = 217, + [1700] = 427, + [1701] = 1701, + [1702] = 1123, + [1703] = 1703, + [1704] = 264, + [1705] = 477, + [1706] = 1062, + [1707] = 219, + [1708] = 231, + [1709] = 1154, + [1710] = 241, + [1711] = 429, + [1712] = 430, + [1713] = 431, + [1714] = 1714, + [1715] = 152, + [1716] = 1144, + [1717] = 428, + [1718] = 421, + [1719] = 475, + [1720] = 441, + [1721] = 441, + [1722] = 265, + [1723] = 147, + [1724] = 149, + [1725] = 429, + [1726] = 150, + [1727] = 151, + [1728] = 427, + [1729] = 1685, + [1730] = 1175, + [1731] = 214, + [1732] = 986, + [1733] = 430, + [1734] = 517, + [1735] = 431, + [1736] = 266, + [1737] = 533, + [1738] = 211, + [1739] = 988, + [1740] = 476, + [1741] = 434, + [1742] = 1606, + [1743] = 523, + [1744] = 525, + [1745] = 534, + [1746] = 1746, + [1747] = 1163, + [1748] = 1164, + [1749] = 1165, + [1750] = 496, + [1751] = 302, + [1752] = 306, + [1753] = 304, + [1754] = 331, + [1755] = 344, + [1756] = 345, + [1757] = 346, + [1758] = 347, + [1759] = 349, + [1760] = 350, + [1761] = 296, + [1762] = 322, + [1763] = 336, + [1764] = 312, + [1765] = 317, + [1766] = 321, + [1767] = 295, + [1768] = 351, + [1769] = 325, + [1770] = 326, + [1771] = 328, + [1772] = 1166, + [1773] = 1167, + [1774] = 1607, + [1775] = 441, + [1776] = 1670, + [1777] = 1168, + [1778] = 146, + [1779] = 488, + [1780] = 405, + [1781] = 486, + [1782] = 507, + [1783] = 535, + [1784] = 1207, + [1785] = 536, + [1786] = 537, + [1787] = 538, + [1788] = 539, + [1789] = 540, + [1790] = 541, + [1791] = 543, + [1792] = 544, + [1793] = 545, + [1794] = 1143, + [1795] = 547, + [1796] = 548, + [1797] = 549, + [1798] = 550, + [1799] = 556, + [1800] = 557, + [1801] = 558, + [1802] = 529, + [1803] = 1170, + [1804] = 1010, + [1805] = 1171, + [1806] = 1172, + [1807] = 1616, + [1808] = 1130, + [1809] = 210, + [1810] = 148, + [1811] = 1133, + [1812] = 1142, + [1813] = 305, + [1814] = 1814, + [1815] = 221, + [1816] = 1697, + [1817] = 1817, + [1818] = 1010, + [1819] = 488, + [1820] = 1714, + [1821] = 1132, + [1822] = 142, + [1823] = 331, + [1824] = 519, + [1825] = 427, + [1826] = 522, + [1827] = 1123, + [1828] = 1701, + [1829] = 305, + [1830] = 1830, + [1831] = 405, + [1832] = 571, + [1833] = 496, + [1834] = 477, + [1835] = 142, + [1836] = 429, + [1837] = 302, + [1838] = 430, + [1839] = 431, + [1840] = 154, + [1841] = 384, + [1842] = 492, + [1843] = 504, + [1844] = 572, + [1845] = 573, + [1846] = 574, + [1847] = 575, + [1848] = 441, + [1849] = 378, + [1850] = 1850, + [1851] = 146, + [1852] = 1010, + [1853] = 576, + [1854] = 577, + [1855] = 578, + [1856] = 221, + [1857] = 579, + [1858] = 580, + [1859] = 581, + [1860] = 582, + [1861] = 583, + [1862] = 584, + [1863] = 585, + [1864] = 344, + [1865] = 345, + [1866] = 142, + [1867] = 517, + [1868] = 152, + [1869] = 1062, + [1870] = 263, + [1871] = 264, + [1872] = 306, + [1873] = 265, + [1874] = 266, + [1875] = 346, + [1876] = 347, + [1877] = 349, + [1878] = 1684, + [1879] = 304, + [1880] = 1880, + [1881] = 350, + [1882] = 296, [1883] = 1883, - [1884] = 133, - [1885] = 137, - [1886] = 136, - [1887] = 138, - [1888] = 1166, - [1889] = 1303, - [1890] = 946, - [1891] = 408, - [1892] = 1390, - [1893] = 1093, - [1894] = 544, - [1895] = 1895, - [1896] = 1098, - [1897] = 1897, - [1898] = 1693, - [1899] = 545, - [1900] = 1807, - [1901] = 1895, - [1902] = 1897, - [1903] = 1799, - [1904] = 1018, - [1905] = 484, - [1906] = 493, - [1907] = 1907, - [1908] = 407, + [1884] = 1123, + [1885] = 322, + [1886] = 336, + [1887] = 533, + [1888] = 312, + [1889] = 317, + [1890] = 321, + [1891] = 148, + [1892] = 1062, + [1893] = 295, + [1894] = 351, + [1895] = 325, + [1896] = 523, + [1897] = 525, + [1898] = 326, + [1899] = 1899, + [1900] = 150, + [1901] = 328, + [1902] = 559, + [1903] = 151, + [1904] = 1904, + [1905] = 534, + [1906] = 145, + [1907] = 561, + [1908] = 507, [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1093, - [1913] = 1913, - [1914] = 1098, - [1915] = 139, - [1916] = 1916, - [1917] = 1917, - [1918] = 1918, - [1919] = 1101, - [1920] = 529, - [1921] = 530, - [1922] = 531, - [1923] = 1923, - [1924] = 488, - [1925] = 489, - [1926] = 1926, - [1927] = 472, - [1928] = 480, - [1929] = 1929, - [1930] = 484, - [1931] = 485, - [1932] = 1932, - [1933] = 493, - [1934] = 488, - [1935] = 489, - [1936] = 134, - [1937] = 1872, - [1938] = 1873, - [1939] = 135, - [1940] = 133, - [1941] = 532, - [1942] = 533, - [1943] = 534, - [1944] = 535, - [1945] = 536, - [1946] = 537, - [1947] = 538, - [1948] = 544, - [1949] = 954, - [1950] = 472, - [1951] = 321, - [1952] = 322, - [1953] = 323, - [1954] = 137, - [1955] = 480, - [1956] = 129, - [1957] = 324, - [1958] = 1795, - [1959] = 505, - [1960] = 1960, - [1961] = 507, - [1962] = 545, - [1963] = 136, - [1964] = 138, - [1965] = 484, - [1966] = 1966, - [1967] = 485, - [1968] = 309, - [1969] = 315, - [1970] = 1877, - [1971] = 319, - [1972] = 320, - [1973] = 1973, + [1910] = 535, + [1911] = 1698, + [1912] = 1912, + [1913] = 486, + [1914] = 536, + [1915] = 1915, + [1916] = 537, + [1917] = 145, + [1918] = 231, + [1919] = 1817, + [1920] = 1830, + [1921] = 1921, + [1922] = 1922, + [1923] = 538, + [1924] = 1924, + [1925] = 539, + [1926] = 540, + [1927] = 541, + [1928] = 543, + [1929] = 544, + [1930] = 545, + [1931] = 546, + [1932] = 547, + [1933] = 143, + [1934] = 144, + [1935] = 548, + [1936] = 549, + [1937] = 550, + [1938] = 556, + [1939] = 557, + [1940] = 1940, + [1941] = 558, + [1942] = 529, + [1943] = 1943, + [1944] = 559, + [1945] = 561, + [1946] = 1946, + [1947] = 1947, + [1948] = 476, + [1949] = 1921, + [1950] = 475, + [1951] = 148, + [1952] = 1922, + [1953] = 241, + [1954] = 146, + [1955] = 519, + [1956] = 1946, + [1957] = 1947, + [1958] = 1958, + [1959] = 345, + [1960] = 536, + [1961] = 529, + [1962] = 1962, + [1963] = 1963, + [1964] = 1964, + [1965] = 537, + [1966] = 295, + [1967] = 492, + [1968] = 351, + [1969] = 146, + [1970] = 523, + [1971] = 1971, + [1972] = 331, + [1973] = 1912, [1974] = 1974, - [1975] = 1797, - [1976] = 1798, - [1977] = 520, - [1978] = 481, - [1979] = 589, - [1980] = 1800, - [1981] = 1801, - [1982] = 546, - [1983] = 547, - [1984] = 548, - [1985] = 549, - [1986] = 550, - [1987] = 551, - [1988] = 552, - [1989] = 553, - [1990] = 554, - [1991] = 555, - [1992] = 556, - [1993] = 557, - [1994] = 558, - [1995] = 559, - [1996] = 523, - [1997] = 560, - [1998] = 561, - [1999] = 562, - [2000] = 563, - [2001] = 564, - [2002] = 2002, - [2003] = 2003, + [1975] = 1975, + [1976] = 1976, + [1977] = 1977, + [1978] = 1978, + [1979] = 549, + [1980] = 1980, + [1981] = 572, + [1982] = 573, + [1983] = 574, + [1984] = 575, + [1985] = 1985, + [1986] = 265, + [1987] = 1987, + [1988] = 504, + [1989] = 475, + [1990] = 486, + [1991] = 1123, + [1992] = 1992, + [1993] = 1924, + [1994] = 1994, + [1995] = 1995, + [1996] = 384, + [1997] = 1850, + [1998] = 325, + [1999] = 143, + [2000] = 326, + [2001] = 538, + [2002] = 1062, + [2003] = 1132, [2004] = 2004, - [2005] = 2005, + [2005] = 144, [2006] = 2006, - [2007] = 2007, + [2007] = 525, [2008] = 2008, [2009] = 2009, [2010] = 2010, - [2011] = 2011, - [2012] = 2012, + [2011] = 535, + [2012] = 145, [2013] = 2013, - [2014] = 1794, + [2014] = 1909, [2015] = 2015, [2016] = 2016, - [2017] = 1883, - [2018] = 2018, + [2017] = 576, + [2018] = 577, [2019] = 2019, - [2020] = 235, - [2021] = 236, - [2022] = 237, - [2023] = 325, - [2024] = 326, - [2025] = 2025, - [2026] = 327, - [2027] = 328, - [2028] = 329, - [2029] = 330, - [2030] = 312, - [2031] = 331, - [2032] = 332, - [2033] = 333, - [2034] = 334, - [2035] = 335, - [2036] = 1184, - [2037] = 1186, + [2020] = 2020, + [2021] = 2021, + [2022] = 2022, + [2023] = 550, + [2024] = 1915, + [2025] = 579, + [2026] = 305, + [2027] = 488, + [2028] = 559, + [2029] = 306, + [2030] = 221, + [2031] = 2031, + [2032] = 556, + [2033] = 2033, + [2034] = 557, + [2035] = 2035, + [2036] = 378, + [2037] = 507, [2038] = 2038, - [2039] = 469, - [2040] = 2040, - [2041] = 1121, - [2042] = 2042, - [2043] = 495, - [2044] = 526, - [2045] = 384, + [2039] = 539, + [2040] = 580, + [2041] = 540, + [2042] = 146, + [2043] = 534, + [2044] = 1123, + [2045] = 2045, [2046] = 2046, - [2047] = 527, - [2048] = 1796, - [2049] = 528, - [2050] = 1157, - [2051] = 1161, - [2052] = 525, - [2053] = 1140, - [2054] = 1155, - [2055] = 1201, - [2056] = 1149, - [2057] = 1153, - [2058] = 1119, - [2059] = 1160, - [2060] = 1162, - [2061] = 1164, - [2062] = 1120, - [2063] = 1124, - [2064] = 1125, - [2065] = 1130, - [2066] = 130, - [2067] = 318, - [2068] = 1138, - [2069] = 2069, - [2070] = 2070, - [2071] = 2071, + [2047] = 263, + [2048] = 581, + [2049] = 1994, + [2050] = 2050, + [2051] = 2051, + [2052] = 2052, + [2053] = 541, + [2054] = 2054, + [2055] = 543, + [2056] = 328, + [2057] = 533, + [2058] = 2058, + [2059] = 2059, + [2060] = 154, + [2061] = 578, + [2062] = 582, + [2063] = 2063, + [2064] = 544, + [2065] = 583, + [2066] = 2066, + [2067] = 545, + [2068] = 2068, + [2069] = 1062, + [2070] = 302, + [2071] = 558, [2072] = 2072, - [2073] = 2073, - [2074] = 2074, - [2075] = 2075, + [2073] = 522, + [2074] = 584, + [2075] = 546, [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 1390, - [2080] = 2080, + [2077] = 547, + [2078] = 1880, + [2079] = 1883, + [2080] = 561, [2081] = 2081, - [2082] = 128, - [2083] = 2083, - [2084] = 520, - [2085] = 2085, - [2086] = 436, - [2087] = 2087, - [2088] = 314, - [2089] = 481, - [2090] = 1792, - [2091] = 2091, - [2092] = 469, - [2093] = 1166, - [2094] = 215, - [2095] = 505, - [2096] = 507, - [2097] = 406, - [2098] = 2019, - [2099] = 2099, - [2100] = 2100, - [2101] = 1789, - [2102] = 2102, - [2103] = 495, - [2104] = 1793, + [2082] = 2082, + [2083] = 1940, + [2084] = 1943, + [2085] = 571, + [2086] = 1899, + [2087] = 1904, + [2088] = 585, + [2089] = 548, + [2090] = 1814, + [2091] = 304, + [2092] = 2092, + [2093] = 346, + [2094] = 517, + [2095] = 2095, + [2096] = 347, + [2097] = 349, + [2098] = 2098, + [2099] = 144, + [2100] = 350, + [2101] = 266, + [2102] = 476, + [2103] = 296, + [2104] = 148, [2105] = 2105, - [2106] = 133, - [2107] = 424, - [2108] = 131, - [2109] = 132, + [2106] = 322, + [2107] = 2107, + [2108] = 2108, + [2109] = 2109, [2110] = 2110, - [2111] = 954, - [2112] = 139, - [2113] = 2113, - [2114] = 135, - [2115] = 946, - [2116] = 134, - [2117] = 436, - [2118] = 128, - [2119] = 408, - [2120] = 2120, - [2121] = 131, - [2122] = 384, - [2123] = 2123, - [2124] = 132, - [2125] = 453, - [2126] = 454, - [2127] = 135, - [2128] = 215, - [2129] = 2129, - [2130] = 989, - [2131] = 2131, - [2132] = 177, - [2133] = 133, + [2111] = 145, + [2112] = 148, + [2113] = 336, + [2114] = 264, + [2115] = 496, + [2116] = 312, + [2117] = 317, + [2118] = 477, + [2119] = 2119, + [2120] = 143, + [2121] = 321, + [2122] = 2122, + [2123] = 344, + [2124] = 543, + [2125] = 2125, + [2126] = 559, + [2127] = 558, + [2128] = 536, + [2129] = 529, + [2130] = 148, + [2131] = 537, + [2132] = 2132, + [2133] = 545, [2134] = 2134, - [2135] = 438, - [2136] = 2136, - [2137] = 134, - [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 2141, + [2135] = 533, + [2136] = 546, + [2137] = 561, + [2138] = 547, + [2139] = 986, + [2140] = 149, + [2141] = 147, [2142] = 2142, - [2143] = 2143, - [2144] = 2144, - [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2148, - [2149] = 2149, - [2150] = 2150, - [2151] = 2151, - [2152] = 2152, - [2153] = 2153, - [2154] = 353, - [2155] = 178, - [2156] = 2156, - [2157] = 136, - [2158] = 138, - [2159] = 2159, - [2160] = 2160, - [2161] = 2161, - [2162] = 2162, + [2143] = 390, + [2144] = 146, + [2145] = 541, + [2146] = 145, + [2147] = 538, + [2148] = 145, + [2149] = 988, + [2150] = 548, + [2151] = 147, + [2152] = 441, + [2153] = 971, + [2154] = 2154, + [2155] = 2155, + [2156] = 549, + [2157] = 149, + [2158] = 146, + [2159] = 828, + [2160] = 142, + [2161] = 430, + [2162] = 431, [2163] = 2163, - [2164] = 2164, - [2165] = 2165, - [2166] = 974, - [2167] = 2167, - [2168] = 2168, - [2169] = 1093, - [2170] = 2170, - [2171] = 2171, - [2172] = 2172, - [2173] = 2173, + [2164] = 534, + [2165] = 429, + [2166] = 539, + [2167] = 550, + [2168] = 148, + [2169] = 556, + [2170] = 535, + [2171] = 557, + [2172] = 540, + [2173] = 544, [2174] = 2174, - [2175] = 453, - [2176] = 454, - [2177] = 2177, - [2178] = 989, - [2179] = 990, - [2180] = 2180, - [2181] = 967, - [2182] = 975, - [2183] = 985, + [2175] = 390, + [2176] = 221, + [2177] = 968, + [2178] = 427, + [2179] = 405, + [2180] = 1010, + [2181] = 2181, + [2182] = 2182, + [2183] = 2183, [2184] = 2184, [2185] = 2185, - [2186] = 964, - [2187] = 971, - [2188] = 1098, - [2189] = 978, - [2190] = 984, - [2191] = 962, - [2192] = 973, - [2193] = 981, - [2194] = 963, - [2195] = 969, - [2196] = 215, - [2197] = 2197, - [2198] = 2198, - [2199] = 2199, - [2200] = 988, + [2186] = 2186, + [2187] = 2187, + [2188] = 2188, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 301, + [2193] = 429, + [2194] = 427, + [2195] = 430, + [2196] = 431, + [2197] = 152, + [2198] = 150, + [2199] = 151, + [2200] = 2200, [2201] = 2201, - [2202] = 137, - [2203] = 2203, + [2202] = 2202, + [2203] = 441, [2204] = 2204, [2205] = 2205, - [2206] = 438, + [2206] = 2206, [2207] = 2207, [2208] = 2208, - [2209] = 424, + [2209] = 2209, [2210] = 2210, [2211] = 2211, [2212] = 2212, [2213] = 2213, - [2214] = 436, + [2214] = 2214, [2215] = 2215, [2216] = 2216, - [2217] = 966, + [2217] = 2217, [2218] = 2218, [2219] = 2219, - [2220] = 1018, + [2220] = 2220, [2221] = 2221, [2222] = 2222, [2223] = 2223, [2224] = 2224, [2225] = 2225, [2226] = 2226, - [2227] = 1101, - [2228] = 2228, + [2227] = 2227, + [2228] = 977, [2229] = 2229, [2230] = 2230, [2231] = 2231, [2232] = 2232, [2233] = 2233, [2234] = 2234, - [2235] = 2235, + [2235] = 978, [2236] = 2236, [2237] = 2237, - [2238] = 968, + [2238] = 2238, [2239] = 2239, [2240] = 2240, [2241] = 2241, - [2242] = 136, + [2242] = 979, [2243] = 2243, [2244] = 2244, [2245] = 2245, - [2246] = 2246, - [2247] = 2247, - [2248] = 2248, + [2246] = 980, + [2247] = 981, + [2248] = 194, [2249] = 2249, [2250] = 2250, - [2251] = 2251, - [2252] = 2201, - [2253] = 138, - [2254] = 2254, - [2255] = 2255, - [2256] = 2256, - [2257] = 2257, - [2258] = 2258, - [2259] = 183, + [2251] = 196, + [2252] = 982, + [2253] = 983, + [2254] = 984, + [2255] = 975, + [2256] = 441, + [2257] = 992, + [2258] = 994, + [2259] = 2259, [2260] = 2260, [2261] = 2261, [2262] = 2262, [2263] = 2263, [2264] = 2264, [2265] = 2265, - [2266] = 180, + [2266] = 2266, [2267] = 2267, [2268] = 2268, - [2269] = 2162, + [2269] = 2269, [2270] = 2270, [2271] = 2271, [2272] = 2272, - [2273] = 2273, - [2274] = 2274, - [2275] = 2275, - [2276] = 137, - [2277] = 2277, - [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 128, + [2273] = 997, + [2274] = 966, + [2275] = 143, + [2276] = 144, + [2277] = 559, + [2278] = 561, + [2279] = 1123, + [2280] = 1062, + [2281] = 221, [2282] = 2282, [2283] = 2283, [2284] = 2284, @@ -7172,27 +7485,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2289] = 2289, [2290] = 2290, [2291] = 2291, - [2292] = 182, + [2292] = 2292, [2293] = 2293, - [2294] = 2290, - [2295] = 2293, + [2294] = 2294, + [2295] = 2295, [2296] = 2296, - [2297] = 2296, + [2297] = 152, [2298] = 2298, - [2299] = 2299, - [2300] = 2300, + [2299] = 142, + [2300] = 2296, [2301] = 2301, [2302] = 2302, - [2303] = 129, - [2304] = 130, - [2305] = 2305, - [2306] = 2306, - [2307] = 2307, - [2308] = 2308, - [2309] = 2309, - [2310] = 2310, - [2311] = 1163, - [2312] = 2312, + [2303] = 2303, + [2304] = 2304, + [2305] = 968, + [2306] = 971, + [2307] = 986, + [2308] = 988, + [2309] = 150, + [2310] = 151, + [2311] = 2311, + [2312] = 2298, [2313] = 2313, [2314] = 2314, [2315] = 2315, @@ -7206,5722 +7519,5742 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2323] = 2323, [2324] = 2324, [2325] = 2325, - [2326] = 197, + [2326] = 2326, [2327] = 2327, [2328] = 2328, - [2329] = 1098, - [2330] = 2330, - [2331] = 2331, - [2332] = 2332, + [2329] = 2329, + [2330] = 2311, + [2331] = 2322, + [2332] = 2327, [2333] = 2333, [2334] = 2334, [2335] = 2335, [2336] = 2336, - [2337] = 2337, - [2338] = 129, + [2337] = 429, + [2338] = 427, [2339] = 2339, [2340] = 2340, - [2341] = 201, - [2342] = 1303, + [2341] = 2341, + [2342] = 2342, [2343] = 2343, [2344] = 2344, [2345] = 2345, - [2346] = 2346, - [2347] = 2347, - [2348] = 1093, + [2346] = 430, + [2347] = 431, + [2348] = 2348, [2349] = 2349, [2350] = 2350, [2351] = 2351, [2352] = 2352, - [2353] = 1101, + [2353] = 2353, [2354] = 2354, [2355] = 2355, [2356] = 2356, - [2357] = 2357, - [2358] = 130, + [2357] = 1010, + [2358] = 2358, [2359] = 2359, [2360] = 2360, - [2361] = 134, - [2362] = 177, - [2363] = 135, - [2364] = 133, + [2361] = 2361, + [2362] = 2362, + [2363] = 2363, + [2364] = 2364, [2365] = 2365, - [2366] = 1293, + [2366] = 2366, [2367] = 2367, - [2368] = 564, + [2368] = 2368, [2369] = 2369, [2370] = 2370, [2371] = 2371, - [2372] = 2372, + [2372] = 2301, [2373] = 2373, [2374] = 2374, [2375] = 2375, [2376] = 2376, - [2377] = 2377, - [2378] = 2378, + [2377] = 147, + [2378] = 149, [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 954, + [2380] = 2301, + [2381] = 2302, + [2382] = 2298, [2383] = 2383, - [2384] = 2162, + [2384] = 1154, [2385] = 2385, - [2386] = 2386, + [2386] = 1175, [2387] = 2387, - [2388] = 2388, - [2389] = 2389, + [2388] = 2303, + [2389] = 2304, [2390] = 2390, [2391] = 2391, [2392] = 2392, [2393] = 2393, [2394] = 2394, [2395] = 2395, - [2396] = 1018, + [2396] = 2396, [2397] = 2397, [2398] = 2398, - [2399] = 2399, + [2399] = 475, [2400] = 2400, [2401] = 2401, [2402] = 2402, [2403] = 2403, [2404] = 2404, - [2405] = 2405, - [2406] = 2160, - [2407] = 2407, + [2405] = 146, + [2406] = 2302, + [2407] = 148, [2408] = 2408, - [2409] = 2409, + [2409] = 145, [2410] = 2410, [2411] = 2411, [2412] = 2412, - [2413] = 2413, - [2414] = 2414, + [2413] = 2303, + [2414] = 2304, [2415] = 2415, [2416] = 2416, - [2417] = 2160, - [2418] = 2161, + [2417] = 2298, + [2418] = 2418, [2419] = 2419, - [2420] = 2184, - [2421] = 2185, + [2420] = 1138, + [2421] = 2421, [2422] = 2422, - [2423] = 449, - [2424] = 2416, + [2423] = 2423, + [2424] = 2424, [2425] = 2425, [2426] = 2426, [2427] = 2427, [2428] = 2428, - [2429] = 2429, - [2430] = 2430, - [2431] = 2431, - [2432] = 2184, - [2433] = 2185, - [2434] = 471, - [2435] = 2435, - [2436] = 2436, - [2437] = 2437, + [2429] = 2301, + [2430] = 2302, + [2431] = 517, + [2432] = 2432, + [2433] = 2303, + [2434] = 2304, + [2435] = 476, + [2436] = 523, + [2437] = 525, [2438] = 2438, - [2439] = 2439, - [2440] = 2440, - [2441] = 2441, - [2442] = 2442, - [2443] = 1172, - [2444] = 1173, - [2445] = 1174, - [2446] = 1175, - [2447] = 1176, - [2448] = 2426, - [2449] = 2427, - [2450] = 1178, + [2439] = 1181, + [2440] = 1182, + [2441] = 1183, + [2442] = 1184, + [2443] = 1185, + [2444] = 1186, + [2445] = 1187, + [2446] = 1190, + [2447] = 1191, + [2448] = 1192, + [2449] = 1193, + [2450] = 1194, [2451] = 2451, - [2452] = 2451, - [2453] = 1129, - [2454] = 2376, - [2455] = 2435, - [2456] = 204, - [2457] = 2161, + [2452] = 2452, + [2453] = 486, + [2454] = 2454, + [2455] = 2455, + [2456] = 507, + [2457] = 2457, [2458] = 2458, [2459] = 2459, [2460] = 2460, - [2461] = 2414, - [2462] = 563, + [2461] = 2461, + [2462] = 2462, [2463] = 2463, - [2464] = 2458, - [2465] = 1159, - [2466] = 2466, - [2467] = 1185, - [2468] = 1127, - [2469] = 1128, - [2470] = 2459, - [2471] = 2323, - [2472] = 2379, - [2473] = 2399, - [2474] = 2439, + [2464] = 2464, + [2465] = 519, + [2466] = 522, + [2467] = 1010, + [2468] = 496, + [2469] = 477, + [2470] = 2470, + [2471] = 492, + [2472] = 504, + [2473] = 2473, + [2474] = 2474, [2475] = 2475, [2476] = 2476, [2477] = 2477, - [2478] = 2415, - [2479] = 1121, - [2480] = 472, - [2481] = 1201, - [2482] = 1176, - [2483] = 560, - [2484] = 189, - [2485] = 561, - [2486] = 1149, - [2487] = 562, - [2488] = 1153, - [2489] = 1129, - [2490] = 1390, - [2491] = 1186, - [2492] = 1119, - [2493] = 1159, + [2478] = 2478, + [2479] = 2479, + [2480] = 2480, + [2481] = 2481, + [2482] = 2482, + [2483] = 441, + [2484] = 2484, + [2485] = 2485, + [2486] = 2486, + [2487] = 2487, + [2488] = 2488, + [2489] = 2489, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, [2494] = 2494, - [2495] = 1160, - [2496] = 1162, - [2497] = 553, - [2498] = 1164, - [2499] = 1163, - [2500] = 547, - [2501] = 1120, - [2502] = 1185, - [2503] = 554, - [2504] = 1124, - [2505] = 1127, - [2506] = 481, + [2495] = 2495, + [2496] = 2496, + [2497] = 2463, + [2498] = 2498, + [2499] = 2499, + [2500] = 2355, + [2501] = 2385, + [2502] = 2427, + [2503] = 2503, + [2504] = 2461, + [2505] = 2464, + [2506] = 2493, [2507] = 2507, - [2508] = 1125, - [2509] = 1128, - [2510] = 545, - [2511] = 1130, - [2512] = 134, - [2513] = 555, - [2514] = 589, - [2515] = 954, - [2516] = 548, - [2517] = 484, - [2518] = 187, - [2519] = 135, - [2520] = 181, - [2521] = 485, - [2522] = 131, - [2523] = 564, - [2524] = 488, - [2525] = 2525, - [2526] = 489, + [2508] = 2508, + [2509] = 190, + [2510] = 2510, + [2511] = 1123, + [2512] = 381, + [2513] = 202, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, + [2517] = 2517, + [2518] = 2518, + [2519] = 2519, + [2520] = 2520, + [2521] = 1062, + [2522] = 2522, + [2523] = 143, + [2524] = 2524, + [2525] = 191, + [2526] = 2526, [2527] = 2527, - [2528] = 549, - [2529] = 563, - [2530] = 132, - [2531] = 480, - [2532] = 2532, - [2533] = 1138, - [2534] = 550, - [2535] = 556, - [2536] = 180, - [2537] = 551, - [2538] = 557, - [2539] = 544, - [2540] = 552, - [2541] = 493, - [2542] = 182, - [2543] = 178, - [2544] = 191, - [2545] = 558, - [2546] = 1184, - [2547] = 505, - [2548] = 507, - [2549] = 183, - [2550] = 469, - [2551] = 546, - [2552] = 2552, - [2553] = 559, - [2554] = 1157, - [2555] = 1172, - [2556] = 989, - [2557] = 436, - [2558] = 133, - [2559] = 1161, - [2560] = 523, - [2561] = 520, - [2562] = 1173, - [2563] = 194, - [2564] = 184, - [2565] = 1140, - [2566] = 1174, - [2567] = 193, - [2568] = 495, - [2569] = 1155, - [2570] = 1175, - [2571] = 195, - [2572] = 1178, - [2573] = 2129, - [2574] = 193, - [2575] = 197, - [2576] = 2576, - [2577] = 472, - [2578] = 195, - [2579] = 201, - [2580] = 137, - [2581] = 2581, - [2582] = 484, - [2583] = 2583, - [2584] = 2576, - [2585] = 139, - [2586] = 480, - [2587] = 2581, - [2588] = 2588, - [2589] = 128, - [2590] = 189, - [2591] = 2591, - [2592] = 485, - [2593] = 2593, - [2594] = 2594, - [2595] = 1093, - [2596] = 138, - [2597] = 2136, - [2598] = 2598, - [2599] = 489, - [2600] = 488, - [2601] = 2131, - [2602] = 989, - [2603] = 192, - [2604] = 1101, - [2605] = 177, - [2606] = 2594, - [2607] = 1098, - [2608] = 2588, - [2609] = 2609, - [2610] = 2583, - [2611] = 2120, - [2612] = 2598, - [2613] = 194, - [2614] = 2614, - [2615] = 384, - [2616] = 2616, - [2617] = 204, - [2618] = 2110, - [2619] = 136, - [2620] = 191, - [2621] = 2621, - [2622] = 488, - [2623] = 489, - [2624] = 215, - [2625] = 2625, - [2626] = 2626, - [2627] = 2627, - [2628] = 2628, - [2629] = 2626, - [2630] = 2627, - [2631] = 472, - [2632] = 480, + [2528] = 203, + [2529] = 2529, + [2530] = 2452, + [2531] = 2390, + [2532] = 2387, + [2533] = 2424, + [2534] = 144, + [2535] = 2535, + [2536] = 2536, + [2537] = 2498, + [2538] = 488, + [2539] = 535, + [2540] = 1133, + [2541] = 559, + [2542] = 1192, + [2543] = 148, + [2544] = 523, + [2545] = 1171, + [2546] = 145, + [2547] = 517, + [2548] = 1166, + [2549] = 537, + [2550] = 1142, + [2551] = 536, + [2552] = 1193, + [2553] = 191, + [2554] = 1143, + [2555] = 441, + [2556] = 544, + [2557] = 545, + [2558] = 1194, + [2559] = 2559, + [2560] = 546, + [2561] = 547, + [2562] = 1182, + [2563] = 548, + [2564] = 1163, + [2565] = 1144, + [2566] = 525, + [2567] = 549, + [2568] = 152, + [2569] = 533, + [2570] = 2570, + [2571] = 504, + [2572] = 541, + [2573] = 1187, + [2574] = 1165, + [2575] = 150, + [2576] = 151, + [2577] = 550, + [2578] = 556, + [2579] = 1167, + [2580] = 557, + [2581] = 558, + [2582] = 194, + [2583] = 1183, + [2584] = 196, + [2585] = 1138, + [2586] = 1168, + [2587] = 1175, + [2588] = 529, + [2589] = 1184, + [2590] = 476, + [2591] = 543, + [2592] = 208, + [2593] = 1181, + [2594] = 538, + [2595] = 192, + [2596] = 1172, + [2597] = 211, + [2598] = 1407, + [2599] = 486, + [2600] = 1207, + [2601] = 195, + [2602] = 507, + [2603] = 561, + [2604] = 1159, + [2605] = 2605, + [2606] = 1185, + [2607] = 519, + [2608] = 1164, + [2609] = 214, + [2610] = 1154, + [2611] = 1190, + [2612] = 1170, + [2613] = 496, + [2614] = 477, + [2615] = 206, + [2616] = 1186, + [2617] = 488, + [2618] = 217, + [2619] = 539, + [2620] = 534, + [2621] = 1130, + [2622] = 146, + [2623] = 147, + [2624] = 149, + [2625] = 198, + [2626] = 522, + [2627] = 540, + [2628] = 492, + [2629] = 1191, + [2630] = 218, + [2631] = 207, + [2632] = 2632, [2633] = 2633, - [2634] = 318, - [2635] = 128, - [2636] = 319, - [2637] = 183, - [2638] = 180, - [2639] = 182, - [2640] = 320, - [2641] = 178, - [2642] = 221, - [2643] = 212, - [2644] = 210, - [2645] = 484, - [2646] = 485, - [2647] = 189, - [2648] = 191, - [2649] = 2649, - [2650] = 321, - [2651] = 322, - [2652] = 323, - [2653] = 324, - [2654] = 2654, - [2655] = 2655, - [2656] = 194, - [2657] = 129, - [2658] = 193, - [2659] = 195, - [2660] = 325, - [2661] = 326, - [2662] = 327, - [2663] = 328, - [2664] = 128, - [2665] = 329, - [2666] = 330, - [2667] = 2667, - [2668] = 207, - [2669] = 331, - [2670] = 2625, - [2671] = 384, - [2672] = 332, - [2673] = 333, - [2674] = 334, - [2675] = 335, - [2676] = 2633, + [2634] = 2634, + [2635] = 2635, + [2636] = 2636, + [2637] = 2637, + [2638] = 2638, + [2639] = 207, + [2640] = 2132, + [2641] = 208, + [2642] = 198, + [2643] = 477, + [2644] = 492, + [2645] = 152, + [2646] = 2646, + [2647] = 2632, + [2648] = 2634, + [2649] = 405, + [2650] = 151, + [2651] = 2155, + [2652] = 1062, + [2653] = 154, + [2654] = 2142, + [2655] = 2646, + [2656] = 2656, + [2657] = 522, + [2658] = 150, + [2659] = 2636, + [2660] = 2637, + [2661] = 2656, + [2662] = 1123, + [2663] = 2125, + [2664] = 2664, + [2665] = 191, + [2666] = 2134, + [2667] = 202, + [2668] = 206, + [2669] = 142, + [2670] = 496, + [2671] = 203, + [2672] = 519, + [2673] = 504, + [2674] = 344, + [2675] = 492, + [2676] = 504, [2677] = 2677, - [2678] = 2678, - [2679] = 2678, - [2680] = 314, - [2681] = 2654, - [2682] = 2655, + [2678] = 221, + [2679] = 2679, + [2680] = 2680, + [2681] = 2681, + [2682] = 331, [2683] = 2683, - [2684] = 2684, - [2685] = 2685, - [2686] = 2683, - [2687] = 2683, - [2688] = 2685, - [2689] = 134, - [2690] = 309, - [2691] = 2677, - [2692] = 135, - [2693] = 315, - [2694] = 139, - [2695] = 133, - [2696] = 2684, - [2697] = 2697, - [2698] = 2628, - [2699] = 2667, - [2700] = 312, - [2701] = 2697, - [2702] = 130, - [2703] = 237, - [2704] = 135, - [2705] = 129, - [2706] = 353, - [2707] = 192, - [2708] = 197, - [2709] = 133, - [2710] = 192, - [2711] = 130, - [2712] = 201, - [2713] = 134, - [2714] = 2714, - [2715] = 129, - [2716] = 130, - [2717] = 207, - [2718] = 204, - [2719] = 235, - [2720] = 236, - [2721] = 230, - [2722] = 128, - [2723] = 131, - [2724] = 132, - [2725] = 224, - [2726] = 215, - [2727] = 2727, - [2728] = 132, - [2729] = 221, - [2730] = 133, - [2731] = 130, - [2732] = 128, - [2733] = 207, - [2734] = 1653, - [2735] = 221, - [2736] = 207, - [2737] = 136, - [2738] = 138, - [2739] = 212, - [2740] = 954, - [2741] = 212, - [2742] = 210, - [2743] = 2743, - [2744] = 2744, - [2745] = 2745, - [2746] = 2746, - [2747] = 137, - [2748] = 210, - [2749] = 2749, - [2750] = 2750, - [2751] = 2746, - [2752] = 2745, - [2753] = 129, - [2754] = 2754, - [2755] = 192, - [2756] = 2749, - [2757] = 449, - [2758] = 511, - [2759] = 2759, - [2760] = 134, - [2761] = 511, - [2762] = 2762, - [2763] = 131, - [2764] = 192, - [2765] = 131, - [2766] = 132, - [2767] = 135, - [2768] = 134, - [2769] = 135, - [2770] = 133, - [2771] = 2754, - [2772] = 357, - [2773] = 406, - [2774] = 407, - [2775] = 137, - [2776] = 136, - [2777] = 138, - [2778] = 436, - [2779] = 128, - [2780] = 221, - [2781] = 212, - [2782] = 210, - [2783] = 192, - [2784] = 353, - [2785] = 1797, - [2786] = 235, - [2787] = 236, - [2788] = 237, - [2789] = 1798, - [2790] = 2790, - [2791] = 398, - [2792] = 129, - [2793] = 130, - [2794] = 207, - [2795] = 221, - [2796] = 212, - [2797] = 210, - [2798] = 131, - [2799] = 207, - [2800] = 132, - [2801] = 137, - [2802] = 136, - [2803] = 138, - [2804] = 989, - [2805] = 300, - [2806] = 2806, - [2807] = 2750, - [2808] = 471, - [2809] = 134, - [2810] = 177, - [2811] = 135, - [2812] = 139, - [2813] = 133, - [2814] = 2814, - [2815] = 2815, - [2816] = 237, - [2817] = 318, - [2818] = 424, - [2819] = 2819, - [2820] = 1800, - [2821] = 319, - [2822] = 320, - [2823] = 576, - [2824] = 321, - [2825] = 322, - [2826] = 323, - [2827] = 324, - [2828] = 325, - [2829] = 326, - [2830] = 327, - [2831] = 328, - [2832] = 2832, - [2833] = 329, - [2834] = 330, - [2835] = 331, - [2836] = 332, - [2837] = 333, - [2838] = 334, - [2839] = 335, - [2840] = 469, - [2841] = 576, - [2842] = 1801, - [2843] = 2843, - [2844] = 453, - [2845] = 454, - [2846] = 235, - [2847] = 495, - [2848] = 1018, - [2849] = 356, - [2850] = 2790, - [2851] = 2815, - [2852] = 358, - [2853] = 2853, - [2854] = 2854, - [2855] = 1753, - [2856] = 236, - [2857] = 438, - [2858] = 2858, - [2859] = 555, - [2860] = 136, - [2861] = 138, - [2862] = 589, - [2863] = 235, - [2864] = 2864, - [2865] = 556, - [2866] = 557, - [2867] = 689, - [2868] = 207, - [2869] = 355, - [2870] = 558, - [2871] = 559, - [2872] = 523, - [2873] = 560, - [2874] = 561, - [2875] = 356, - [2876] = 357, - [2877] = 358, - [2878] = 562, - [2879] = 2879, - [2880] = 563, - [2881] = 236, - [2882] = 389, - [2883] = 183, - [2884] = 335, - [2885] = 2885, - [2886] = 180, - [2887] = 2864, - [2888] = 237, - [2889] = 564, - [2890] = 134, - [2891] = 2891, - [2892] = 480, - [2893] = 493, - [2894] = 2894, - [2895] = 2895, - [2896] = 393, - [2897] = 221, - [2898] = 182, - [2899] = 135, - [2900] = 212, - [2901] = 178, - [2902] = 396, - [2903] = 2903, - [2904] = 545, - [2905] = 133, - [2906] = 210, - [2907] = 546, - [2908] = 481, - [2909] = 1098, - [2910] = 384, - [2911] = 353, - [2912] = 544, - [2913] = 547, - [2914] = 139, - [2915] = 134, - [2916] = 484, - [2917] = 332, - [2918] = 330, - [2919] = 449, - [2920] = 135, - [2921] = 333, - [2922] = 548, - [2923] = 2858, - [2924] = 1101, - [2925] = 129, - [2926] = 139, - [2927] = 133, - [2928] = 192, - [2929] = 549, - [2930] = 130, - [2931] = 331, - [2932] = 327, - [2933] = 177, - [2934] = 550, - [2935] = 488, - [2936] = 131, - [2937] = 132, - [2938] = 2938, - [2939] = 489, - [2940] = 334, - [2941] = 551, - [2942] = 552, - [2943] = 553, - [2944] = 128, - [2945] = 398, - [2946] = 1093, - [2947] = 192, - [2948] = 137, - [2949] = 353, - [2950] = 235, - [2951] = 236, - [2952] = 326, - [2953] = 328, - [2954] = 554, - [2955] = 318, - [2956] = 505, - [2957] = 520, - [2958] = 507, - [2959] = 319, - [2960] = 320, - [2961] = 321, - [2962] = 406, - [2963] = 322, - [2964] = 323, - [2965] = 324, - [2966] = 329, - [2967] = 237, - [2968] = 2885, - [2969] = 472, - [2970] = 325, - [2971] = 407, - [2972] = 485, - [2973] = 384, - [2974] = 436, - [2975] = 136, - [2976] = 138, - [2977] = 178, - [2978] = 407, - [2979] = 438, - [2980] = 131, - [2981] = 132, - [2982] = 453, - [2983] = 454, - [2984] = 358, - [2985] = 192, - [2986] = 449, - [2987] = 398, - [2988] = 129, - [2989] = 134, - [2990] = 135, + [2684] = 142, + [2685] = 194, + [2686] = 2686, + [2687] = 196, + [2688] = 345, + [2689] = 2689, + [2690] = 210, + [2691] = 405, + [2692] = 346, + [2693] = 347, + [2694] = 349, + [2695] = 350, + [2696] = 211, + [2697] = 214, + [2698] = 217, + [2699] = 218, + [2700] = 2700, + [2701] = 219, + [2702] = 143, + [2703] = 144, + [2704] = 2704, + [2705] = 2705, + [2706] = 2689, + [2707] = 2707, + [2708] = 322, + [2709] = 146, + [2710] = 336, + [2711] = 2711, + [2712] = 148, + [2713] = 312, + [2714] = 2707, + [2715] = 2715, + [2716] = 154, + [2717] = 145, + [2718] = 2700, + [2719] = 317, + [2720] = 321, + [2721] = 147, + [2722] = 2722, + [2723] = 149, + [2724] = 295, + [2725] = 351, + [2726] = 2722, + [2727] = 325, + [2728] = 326, + [2729] = 328, + [2730] = 2722, + [2731] = 302, + [2732] = 305, + [2733] = 2733, + [2734] = 306, + [2735] = 2704, + [2736] = 2677, + [2737] = 2737, + [2738] = 2686, + [2739] = 2733, + [2740] = 2715, + [2741] = 519, + [2742] = 522, + [2743] = 2679, + [2744] = 206, + [2745] = 2681, + [2746] = 2683, + [2747] = 496, + [2748] = 477, + [2749] = 207, + [2750] = 142, + [2751] = 208, + [2752] = 198, + [2753] = 2737, + [2754] = 304, + [2755] = 2705, + [2756] = 296, + [2757] = 203, + [2758] = 143, + [2759] = 231, + [2760] = 152, + [2761] = 143, + [2762] = 241, + [2763] = 148, + [2764] = 143, + [2765] = 144, + [2766] = 144, + [2767] = 150, + [2768] = 151, + [2769] = 210, + [2770] = 145, + [2771] = 142, + [2772] = 202, + [2773] = 144, + [2774] = 147, + [2775] = 149, + [2776] = 146, + [2777] = 301, + [2778] = 219, + [2779] = 221, + [2780] = 210, + [2781] = 143, + [2782] = 527, + [2783] = 2783, + [2784] = 2784, + [2785] = 2785, + [2786] = 147, + [2787] = 144, + [2788] = 149, + [2789] = 219, + [2790] = 231, + [2791] = 145, + [2792] = 264, + [2793] = 2793, + [2794] = 241, + [2795] = 2795, + [2796] = 2785, + [2797] = 211, + [2798] = 2783, + [2799] = 2799, + [2800] = 2800, + [2801] = 146, + [2802] = 146, + [2803] = 265, + [2804] = 262, + [2805] = 210, + [2806] = 214, + [2807] = 148, + [2808] = 148, + [2809] = 145, + [2810] = 142, + [2811] = 2811, + [2812] = 152, + [2813] = 148, + [2814] = 266, + [2815] = 263, + [2816] = 145, + [2817] = 218, + [2818] = 150, + [2819] = 1616, + [2820] = 527, + [2821] = 2821, + [2822] = 2822, + [2823] = 147, + [2824] = 151, + [2825] = 149, + [2826] = 217, + [2827] = 2793, + [2828] = 2784, + [2829] = 251, + [2830] = 219, + [2831] = 2831, + [2832] = 381, + [2833] = 146, + [2834] = 593, + [2835] = 147, + [2836] = 149, + [2837] = 210, + [2838] = 2838, + [2839] = 2839, + [2840] = 152, + [2841] = 152, + [2842] = 210, + [2843] = 475, + [2844] = 593, + [2845] = 150, + [2846] = 151, + [2847] = 2847, + [2848] = 430, + [2849] = 142, + [2850] = 263, + [2851] = 373, + [2852] = 264, + [2853] = 431, + [2854] = 265, + [2855] = 266, + [2856] = 1899, + [2857] = 1904, + [2858] = 429, + [2859] = 1698, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, + [2863] = 427, + [2864] = 476, + [2865] = 151, + [2866] = 488, + [2867] = 441, + [2868] = 331, + [2869] = 344, + [2870] = 345, + [2871] = 346, + [2872] = 347, + [2873] = 231, + [2874] = 2831, + [2875] = 350, + [2876] = 296, + [2877] = 219, + [2878] = 219, + [2879] = 322, + [2880] = 336, + [2881] = 312, + [2882] = 317, + [2883] = 2861, + [2884] = 321, + [2885] = 154, + [2886] = 295, + [2887] = 2887, + [2888] = 351, + [2889] = 325, + [2890] = 326, + [2891] = 328, + [2892] = 1880, + [2893] = 150, + [2894] = 1883, + [2895] = 1010, + [2896] = 241, + [2897] = 384, + [2898] = 378, + [2899] = 301, + [2900] = 2887, + [2901] = 417, + [2902] = 400, + [2903] = 231, + [2904] = 143, + [2905] = 388, + [2906] = 146, + [2907] = 148, + [2908] = 144, + [2909] = 145, + [2910] = 241, + [2911] = 349, + [2912] = 2912, + [2913] = 492, + [2914] = 331, + [2915] = 231, + [2916] = 550, + [2917] = 504, + [2918] = 556, + [2919] = 557, + [2920] = 2920, + [2921] = 558, + [2922] = 529, + [2923] = 534, + [2924] = 541, + [2925] = 2925, + [2926] = 210, + [2927] = 533, + [2928] = 559, + [2929] = 561, + [2930] = 2930, + [2931] = 2930, + [2932] = 417, + [2933] = 194, + [2934] = 2925, + [2935] = 2912, + [2936] = 539, + [2937] = 2937, + [2938] = 241, + [2939] = 536, + [2940] = 219, + [2941] = 762, + [2942] = 142, + [2943] = 263, + [2944] = 486, + [2945] = 405, + [2946] = 2946, + [2947] = 373, + [2948] = 384, + [2949] = 344, + [2950] = 378, + [2951] = 345, + [2952] = 346, + [2953] = 347, + [2954] = 241, + [2955] = 349, + [2956] = 196, + [2957] = 350, + [2958] = 151, + [2959] = 296, + [2960] = 322, + [2961] = 336, + [2962] = 312, + [2963] = 317, + [2964] = 321, + [2965] = 295, + [2966] = 351, + [2967] = 325, + [2968] = 145, + [2969] = 328, + [2970] = 154, + [2971] = 231, + [2972] = 2972, + [2973] = 543, + [2974] = 143, + [2975] = 301, + [2976] = 400, + [2977] = 154, + [2978] = 144, + [2979] = 540, + [2980] = 264, + [2981] = 1123, + [2982] = 517, + [2983] = 146, + [2984] = 381, + [2985] = 523, + [2986] = 544, + [2987] = 145, + [2988] = 545, + [2989] = 265, + [2990] = 266, [2991] = 2991, - [2992] = 133, - [2993] = 2993, - [2994] = 130, - [2995] = 2995, - [2996] = 221, - [2997] = 137, - [2998] = 183, - [2999] = 177, - [3000] = 3000, - [3001] = 235, - [3002] = 3002, - [3003] = 3003, - [3004] = 236, - [3005] = 204, - [3006] = 237, - [3007] = 197, - [3008] = 201, - [3009] = 212, - [3010] = 471, - [3011] = 689, - [3012] = 356, - [3013] = 207, - [3014] = 221, - [3015] = 212, - [3016] = 449, - [3017] = 406, - [3018] = 210, - [3019] = 357, - [3020] = 210, - [3021] = 183, - [3022] = 180, - [3023] = 706, - [3024] = 139, - [3025] = 516, - [3026] = 182, - [3027] = 3027, - [3028] = 207, - [3029] = 237, - [3030] = 197, - [3031] = 3031, - [3032] = 546, - [3033] = 180, - [3034] = 532, - [3035] = 221, - [3036] = 182, - [3037] = 3037, - [3038] = 212, - [3039] = 178, - [3040] = 525, - [3041] = 201, - [3042] = 210, - [3043] = 528, - [3044] = 532, - [3045] = 533, - [3046] = 534, - [3047] = 535, - [3048] = 536, - [3049] = 537, - [3050] = 538, - [3051] = 547, - [3052] = 548, - [3053] = 533, - [3054] = 3054, - [3055] = 723, - [3056] = 3056, - [3057] = 353, - [3058] = 353, - [3059] = 549, - [3060] = 550, - [3061] = 551, - [3062] = 552, - [3063] = 192, - [3064] = 553, - [3065] = 554, - [3066] = 555, - [3067] = 556, - [3068] = 557, - [3069] = 558, - [3070] = 559, - [3071] = 523, - [3072] = 560, - [3073] = 561, - [3074] = 562, - [3075] = 407, - [3076] = 534, - [3077] = 207, - [3078] = 3078, - [3079] = 134, - [3080] = 535, - [3081] = 527, - [3082] = 137, - [3083] = 563, - [3084] = 2938, - [3085] = 536, - [3086] = 528, - [3087] = 3087, - [3088] = 183, - [3089] = 3089, - [3090] = 135, - [3091] = 525, - [3092] = 537, - [3093] = 538, - [3094] = 544, - [3095] = 406, - [3096] = 235, - [3097] = 3097, - [3098] = 3098, - [3099] = 530, - [3100] = 237, - [3101] = 3101, - [3102] = 3102, - [3103] = 529, - [3104] = 3104, - [3105] = 235, - [3106] = 133, - [3107] = 131, - [3108] = 236, - [3109] = 545, + [2992] = 522, + [2993] = 146, + [2994] = 2994, + [2995] = 519, + [2996] = 263, + [2997] = 2997, + [2998] = 1062, + [2999] = 301, + [3000] = 507, + [3001] = 150, + [3002] = 525, + [3003] = 546, + [3004] = 547, + [3005] = 148, + [3006] = 538, + [3007] = 264, + [3008] = 388, + [3009] = 548, + [3010] = 147, + [3011] = 149, + [3012] = 537, + [3013] = 496, + [3014] = 477, + [3015] = 535, + [3016] = 265, + [3017] = 266, + [3018] = 152, + [3019] = 148, + [3020] = 549, + [3021] = 326, + [3022] = 384, + [3023] = 699, + [3024] = 266, + [3025] = 437, + [3026] = 203, + [3027] = 150, + [3028] = 151, + [3029] = 147, + [3030] = 149, + [3031] = 143, + [3032] = 210, + [3033] = 3033, + [3034] = 3034, + [3035] = 194, + [3036] = 428, + [3037] = 417, + [3038] = 400, + [3039] = 388, + [3040] = 154, + [3041] = 194, + [3042] = 196, + [3043] = 434, + [3044] = 144, + [3045] = 381, + [3046] = 421, + [3047] = 429, + [3048] = 381, + [3049] = 436, + [3050] = 152, + [3051] = 431, + [3052] = 219, + [3053] = 231, + [3054] = 475, + [3055] = 202, + [3056] = 441, + [3057] = 405, + [3058] = 241, + [3059] = 219, + [3060] = 373, + [3061] = 378, + [3062] = 263, + [3063] = 264, + [3064] = 3064, + [3065] = 265, + [3066] = 266, + [3067] = 146, + [3068] = 148, + [3069] = 145, + [3070] = 263, + [3071] = 196, + [3072] = 196, + [3073] = 264, + [3074] = 210, + [3075] = 194, + [3076] = 3076, + [3077] = 265, + [3078] = 430, + [3079] = 3079, + [3080] = 545, + [3081] = 154, + [3082] = 546, + [3083] = 547, + [3084] = 548, + [3085] = 549, + [3086] = 550, + [3087] = 576, + [3088] = 577, + [3089] = 578, + [3090] = 556, + [3091] = 579, + [3092] = 580, + [3093] = 557, + [3094] = 581, + [3095] = 3095, + [3096] = 202, + [3097] = 558, + [3098] = 529, + [3099] = 147, + [3100] = 231, + [3101] = 301, + [3102] = 149, + [3103] = 241, + [3104] = 203, + [3105] = 202, + [3106] = 579, + [3107] = 3107, + [3108] = 301, + [3109] = 580, [3110] = 3110, - [3111] = 526, - [3112] = 706, - [3113] = 516, - [3114] = 132, - [3115] = 177, - [3116] = 531, - [3117] = 527, - [3118] = 136, - [3119] = 138, - [3120] = 529, - [3121] = 564, - [3122] = 204, - [3123] = 530, - [3124] = 3124, - [3125] = 236, - [3126] = 526, - [3127] = 3127, - [3128] = 3128, - [3129] = 531, - [3130] = 589, - [3131] = 3131, - [3132] = 139, - [3133] = 438, - [3134] = 221, - [3135] = 180, - [3136] = 449, - [3137] = 407, - [3138] = 235, - [3139] = 212, - [3140] = 133, - [3141] = 3141, - [3142] = 182, - [3143] = 236, - [3144] = 723, - [3145] = 210, - [3146] = 2995, - [3147] = 136, - [3148] = 138, - [3149] = 3097, - [3150] = 237, - [3151] = 449, + [3111] = 581, + [3112] = 3112, + [3113] = 582, + [3114] = 583, + [3115] = 582, + [3116] = 241, + [3117] = 3117, + [3118] = 583, + [3119] = 263, + [3120] = 584, + [3121] = 585, + [3122] = 559, + [3123] = 211, + [3124] = 537, + [3125] = 218, + [3126] = 584, + [3127] = 538, + [3128] = 585, + [3129] = 145, + [3130] = 264, + [3131] = 561, + [3132] = 203, + [3133] = 150, + [3134] = 151, + [3135] = 575, + [3136] = 265, + [3137] = 3137, + [3138] = 152, + [3139] = 576, + [3140] = 266, + [3141] = 533, + [3142] = 539, + [3143] = 577, + [3144] = 578, + [3145] = 540, + [3146] = 194, + [3147] = 231, + [3148] = 571, + [3149] = 3149, + [3150] = 571, + [3151] = 3151, [3152] = 3152, - [3153] = 135, - [3154] = 178, - [3155] = 760, - [3156] = 204, - [3157] = 516, - [3158] = 137, - [3159] = 3159, - [3160] = 471, - [3161] = 3161, - [3162] = 3162, - [3163] = 134, - [3164] = 139, - [3165] = 197, - [3166] = 436, - [3167] = 453, - [3168] = 406, - [3169] = 3169, - [3170] = 1621, - [3171] = 3171, + [3153] = 535, + [3154] = 541, + [3155] = 196, + [3156] = 543, + [3157] = 203, + [3158] = 194, + [3159] = 544, + [3160] = 219, + [3161] = 536, + [3162] = 384, + [3163] = 378, + [3164] = 699, + [3165] = 572, + [3166] = 573, + [3167] = 574, + [3168] = 699, + [3169] = 575, + [3170] = 572, + [3171] = 534, [3172] = 3172, - [3173] = 3173, - [3174] = 201, - [3175] = 454, - [3176] = 528, - [3177] = 1621, - [3178] = 236, - [3179] = 407, + [3173] = 217, + [3174] = 210, + [3175] = 573, + [3176] = 202, + [3177] = 214, + [3178] = 146, + [3179] = 574, [3180] = 3180, [3181] = 3181, - [3182] = 3182, - [3183] = 3102, - [3184] = 237, - [3185] = 537, - [3186] = 538, - [3187] = 553, - [3188] = 554, - [3189] = 406, - [3190] = 3087, - [3191] = 3191, - [3192] = 197, - [3193] = 534, - [3194] = 555, - [3195] = 3195, - [3196] = 201, - [3197] = 3197, - [3198] = 529, - [3199] = 561, - [3200] = 558, - [3201] = 525, - [3202] = 523, - [3203] = 562, - [3204] = 3204, - [3205] = 3205, - [3206] = 551, - [3207] = 235, - [3208] = 544, - [3209] = 556, - [3210] = 564, - [3211] = 552, - [3212] = 3212, - [3213] = 545, - [3214] = 560, - [3215] = 563, - [3216] = 204, - [3217] = 530, - [3218] = 532, - [3219] = 134, - [3220] = 135, - [3221] = 589, - [3222] = 533, - [3223] = 139, - [3224] = 546, - [3225] = 526, - [3226] = 547, - [3227] = 536, - [3228] = 531, - [3229] = 548, - [3230] = 557, - [3231] = 549, - [3232] = 3232, - [3233] = 133, - [3234] = 550, + [3182] = 148, + [3183] = 196, + [3184] = 431, + [3185] = 381, + [3186] = 3186, + [3187] = 3187, + [3188] = 3188, + [3189] = 3189, + [3190] = 3190, + [3191] = 384, + [3192] = 378, + [3193] = 3149, + [3194] = 154, + [3195] = 211, + [3196] = 429, + [3197] = 214, + [3198] = 430, + [3199] = 217, + [3200] = 218, + [3201] = 441, + [3202] = 263, + [3203] = 264, + [3204] = 265, + [3205] = 266, + [3206] = 152, + [3207] = 150, + [3208] = 151, + [3209] = 202, + [3210] = 203, + [3211] = 202, + [3212] = 475, + [3213] = 3213, + [3214] = 203, + [3215] = 241, + [3216] = 146, + [3217] = 148, + [3218] = 145, + [3219] = 211, + [3220] = 214, + [3221] = 217, + [3222] = 218, + [3223] = 263, + [3224] = 1606, + [3225] = 264, + [3226] = 265, + [3227] = 266, + [3228] = 381, + [3229] = 211, + [3230] = 214, + [3231] = 217, + [3232] = 218, + [3233] = 3233, + [3234] = 3234, [3235] = 3235, [3236] = 3236, - [3237] = 559, - [3238] = 788, - [3239] = 3031, - [3240] = 527, - [3241] = 535, - [3242] = 3242, - [3243] = 3243, - [3244] = 3244, - [3245] = 3245, - [3246] = 3246, - [3247] = 3247, - [3248] = 760, - [3249] = 3242, - [3250] = 3250, - [3251] = 3251, - [3252] = 3252, - [3253] = 3250, - [3254] = 3244, - [3255] = 3247, - [3256] = 3245, - [3257] = 3243, - [3258] = 3252, - [3259] = 3251, - [3260] = 788, - [3261] = 1135, - [3262] = 139, - [3263] = 954, - [3264] = 1165, - [3265] = 1137, - [3266] = 989, - [3267] = 954, - [3268] = 454, - [3269] = 453, - [3270] = 436, - [3271] = 192, - [3272] = 438, - [3273] = 207, - [3274] = 424, - [3275] = 2160, - [3276] = 1018, - [3277] = 424, - [3278] = 2161, - [3279] = 194, - [3280] = 210, - [3281] = 191, - [3282] = 453, - [3283] = 436, - [3284] = 193, - [3285] = 454, - [3286] = 212, - [3287] = 221, - [3288] = 989, - [3289] = 2185, - [3290] = 2184, - [3291] = 438, - [3292] = 3292, - [3293] = 1166, - [3294] = 3294, - [3295] = 189, - [3296] = 195, - [3297] = 2162, - [3298] = 2324, - [3299] = 407, + [3237] = 3237, + [3238] = 3238, + [3239] = 3239, + [3240] = 3240, + [3241] = 231, + [3242] = 540, + [3243] = 154, + [3244] = 574, + [3245] = 575, + [3246] = 1179, + [3247] = 539, + [3248] = 559, + [3249] = 571, + [3250] = 541, + [3251] = 543, + [3252] = 544, + [3253] = 545, + [3254] = 546, + [3255] = 547, + [3256] = 548, + [3257] = 549, + [3258] = 550, + [3259] = 556, + [3260] = 557, + [3261] = 211, + [3262] = 214, + [3263] = 576, + [3264] = 558, + [3265] = 217, + [3266] = 218, + [3267] = 577, + [3268] = 578, + [3269] = 211, + [3270] = 529, + [3271] = 263, + [3272] = 214, + [3273] = 3273, + [3274] = 264, + [3275] = 384, + [3276] = 217, + [3277] = 3277, + [3278] = 579, + [3279] = 580, + [3280] = 581, + [3281] = 378, + [3282] = 265, + [3283] = 218, + [3284] = 582, + [3285] = 583, + [3286] = 266, + [3287] = 3287, + [3288] = 3288, + [3289] = 584, + [3290] = 585, + [3291] = 561, + [3292] = 533, + [3293] = 3293, + [3294] = 534, + [3295] = 535, + [3296] = 536, + [3297] = 146, + [3298] = 148, + [3299] = 145, [3300] = 3300, [3301] = 3301, - [3302] = 235, - [3303] = 236, - [3304] = 2162, - [3305] = 237, - [3306] = 3306, - [3307] = 406, - [3308] = 3308, - [3309] = 1172, - [3310] = 3310, - [3311] = 177, - [3312] = 3312, - [3313] = 1173, - [3314] = 1174, - [3315] = 1175, - [3316] = 3316, - [3317] = 1176, - [3318] = 3318, - [3319] = 1178, - [3320] = 1129, - [3321] = 1159, - [3322] = 1018, - [3323] = 1163, - [3324] = 1185, - [3325] = 1127, - [3326] = 2386, - [3327] = 2390, - [3328] = 2392, - [3329] = 2395, - [3330] = 2397, - [3331] = 2400, - [3332] = 2404, - [3333] = 2407, - [3334] = 2413, - [3335] = 2422, - [3336] = 2425, - [3337] = 2429, - [3338] = 3306, - [3339] = 2327, - [3340] = 2347, - [3341] = 2370, - [3342] = 2374, - [3343] = 2380, - [3344] = 2388, - [3345] = 2402, - [3346] = 2428, - [3347] = 2436, - [3348] = 2441, - [3349] = 2325, - [3350] = 2332, - [3351] = 2344, - [3352] = 2346, - [3353] = 2349, - [3354] = 2360, - [3355] = 2389, - [3356] = 2393, - [3357] = 2403, - [3358] = 2411, - [3359] = 2431, - [3360] = 2438, - [3361] = 2476, - [3362] = 2315, - [3363] = 2328, - [3364] = 2333, - [3365] = 2334, - [3366] = 2340, - [3367] = 2343, - [3368] = 2350, - [3369] = 2367, - [3370] = 2185, - [3371] = 2387, - [3372] = 2409, - [3373] = 2419, - [3374] = 2437, - [3375] = 2430, - [3376] = 2440, - [3377] = 2442, - [3378] = 2316, - [3379] = 2318, - [3380] = 2321, - [3381] = 2331, - [3382] = 2335, - [3383] = 2336, - [3384] = 2337, - [3385] = 2339, - [3386] = 2345, - [3387] = 2351, - [3388] = 2354, - [3389] = 2355, - [3390] = 2356, - [3391] = 2357, - [3392] = 2359, - [3393] = 2365, - [3394] = 2369, - [3395] = 2371, - [3396] = 2373, - [3397] = 2375, - [3398] = 2377, - [3399] = 2378, - [3400] = 2381, - [3401] = 2383, - [3402] = 2391, - [3403] = 2394, - [3404] = 2398, - [3405] = 2401, - [3406] = 2405, - [3407] = 2408, - [3408] = 2410, - [3409] = 2412, - [3410] = 2460, - [3411] = 2463, - [3412] = 2466, - [3413] = 2475, - [3414] = 2477, - [3415] = 2312, - [3416] = 2313, - [3417] = 2314, - [3418] = 2317, - [3419] = 2319, - [3420] = 2320, - [3421] = 2322, - [3422] = 128, - [3423] = 3306, - [3424] = 2160, - [3425] = 2161, - [3426] = 1128, - [3427] = 2184, - [3428] = 2372, - [3429] = 177, - [3430] = 689, - [3431] = 180, - [3432] = 1166, - [3433] = 182, - [3434] = 1165, - [3435] = 3435, - [3436] = 178, - [3437] = 177, - [3438] = 3438, - [3439] = 3439, - [3440] = 183, - [3441] = 134, - [3442] = 135, - [3443] = 133, - [3444] = 1172, - [3445] = 1173, - [3446] = 1174, - [3447] = 1175, - [3448] = 1176, - [3449] = 1178, - [3450] = 1129, - [3451] = 1159, - [3452] = 1163, - [3453] = 1185, - [3454] = 1127, - [3455] = 1128, - [3456] = 1135, - [3457] = 1137, - [3458] = 177, - [3459] = 207, - [3460] = 3460, - [3461] = 2552, - [3462] = 177, - [3463] = 2507, - [3464] = 2532, - [3465] = 180, - [3466] = 197, - [3467] = 201, - [3468] = 182, - [3469] = 204, - [3470] = 178, - [3471] = 182, - [3472] = 180, - [3473] = 128, - [3474] = 183, - [3475] = 180, - [3476] = 178, - [3477] = 182, - [3478] = 178, - [3479] = 128, - [3480] = 183, - [3481] = 183, - [3482] = 689, - [3483] = 3460, - [3484] = 706, - [3485] = 689, - [3486] = 215, - [3487] = 516, - [3488] = 130, - [3489] = 180, - [3490] = 537, - [3491] = 531, - [3492] = 1293, - [3493] = 201, - [3494] = 529, - [3495] = 197, - [3496] = 530, - [3497] = 534, - [3498] = 129, - [3499] = 533, - [3500] = 535, - [3501] = 3501, - [3502] = 3502, - [3503] = 706, - [3504] = 204, - [3505] = 3505, - [3506] = 3502, - [3507] = 3501, - [3508] = 204, - [3509] = 201, - [3510] = 182, - [3511] = 525, - [3512] = 538, - [3513] = 536, - [3514] = 532, - [3515] = 197, - [3516] = 1303, - [3517] = 3505, - [3518] = 706, - [3519] = 178, - [3520] = 204, - [3521] = 183, - [3522] = 723, - [3523] = 689, + [3302] = 3302, + [3303] = 3303, + [3304] = 3304, + [3305] = 3305, + [3306] = 572, + [3307] = 537, + [3308] = 191, + [3309] = 573, + [3310] = 1174, + [3311] = 538, + [3312] = 3180, + [3313] = 785, + [3314] = 1180, + [3315] = 3315, + [3316] = 1606, + [3317] = 1606, + [3318] = 3137, + [3319] = 206, + [3320] = 3320, + [3321] = 3321, + [3322] = 3322, + [3323] = 3321, + [3324] = 3324, + [3325] = 3325, + [3326] = 3326, + [3327] = 3327, + [3328] = 3322, + [3329] = 3329, + [3330] = 3327, + [3331] = 762, + [3332] = 3332, + [3333] = 207, + [3334] = 208, + [3335] = 198, + [3336] = 3320, + [3337] = 3329, + [3338] = 3324, + [3339] = 3326, + [3340] = 3325, + [3341] = 785, + [3342] = 143, + [3343] = 785, + [3344] = 144, + [3345] = 154, + [3346] = 441, + [3347] = 427, + [3348] = 147, + [3349] = 149, + [3350] = 430, + [3351] = 2470, + [3352] = 142, + [3353] = 431, + [3354] = 210, + [3355] = 142, + [3356] = 146, + [3357] = 148, + [3358] = 219, + [3359] = 145, + [3360] = 429, + [3361] = 431, + [3362] = 2301, + [3363] = 2302, + [3364] = 431, + [3365] = 150, + [3366] = 231, + [3367] = 151, + [3368] = 1010, + [3369] = 2559, + [3370] = 2298, + [3371] = 429, + [3372] = 430, + [3373] = 2304, + [3374] = 427, + [3375] = 441, + [3376] = 2570, + [3377] = 3377, + [3378] = 241, + [3379] = 430, + [3380] = 3380, + [3381] = 2303, + [3382] = 429, + [3383] = 152, + [3384] = 441, + [3385] = 427, + [3386] = 2370, + [3387] = 3387, + [3388] = 3388, + [3389] = 265, + [3390] = 1010, + [3391] = 264, + [3392] = 1132, + [3393] = 2298, + [3394] = 3394, + [3395] = 3395, + [3396] = 1181, + [3397] = 1182, + [3398] = 1183, + [3399] = 1184, + [3400] = 1185, + [3401] = 1186, + [3402] = 1187, + [3403] = 1190, + [3404] = 1191, + [3405] = 1192, + [3406] = 1193, + [3407] = 1194, + [3408] = 3394, + [3409] = 1010, + [3410] = 3410, + [3411] = 2395, + [3412] = 263, + [3413] = 2397, + [3414] = 2400, + [3415] = 2402, + [3416] = 266, + [3417] = 2404, + [3418] = 2408, + [3419] = 2410, + [3420] = 2412, + [3421] = 2415, + [3422] = 2418, + [3423] = 2298, + [3424] = 2419, + [3425] = 2422, + [3426] = 3394, + [3427] = 2475, + [3428] = 2477, + [3429] = 2478, + [3430] = 2480, + [3431] = 2482, + [3432] = 2484, + [3433] = 2487, + [3434] = 2489, + [3435] = 2490, + [3436] = 2492, + [3437] = 2494, + [3438] = 2496, + [3439] = 2499, + [3440] = 2503, + [3441] = 2508, + [3442] = 2510, + [3443] = 2514, + [3444] = 2515, + [3445] = 2517, + [3446] = 2518, + [3447] = 2520, + [3448] = 2522, + [3449] = 2526, + [3450] = 2527, + [3451] = 2529, + [3452] = 2535, + [3453] = 2536, + [3454] = 2454, + [3455] = 2507, + [3456] = 2396, + [3457] = 2426, + [3458] = 2519, + [3459] = 2393, + [3460] = 2401, + [3461] = 2301, + [3462] = 2421, + [3463] = 2302, + [3464] = 2432, + [3465] = 2457, + [3466] = 2459, + [3467] = 2474, + [3468] = 2481, + [3469] = 2486, + [3470] = 2495, + [3471] = 2516, + [3472] = 2524, + [3473] = 2451, + [3474] = 2356, + [3475] = 2358, + [3476] = 2359, + [3477] = 2367, + [3478] = 3478, + [3479] = 2374, + [3480] = 2376, + [3481] = 2379, + [3482] = 2383, + [3483] = 2391, + [3484] = 2394, + [3485] = 2398, + [3486] = 2403, + [3487] = 2411, + [3488] = 2416, + [3489] = 2423, + [3490] = 2428, + [3491] = 2438, + [3492] = 2455, + [3493] = 2458, + [3494] = 2460, + [3495] = 2462, + [3496] = 2473, + [3497] = 2476, + [3498] = 2479, + [3499] = 2485, + [3500] = 2488, + [3501] = 2360, + [3502] = 2361, + [3503] = 2362, + [3504] = 2363, + [3505] = 2364, + [3506] = 2365, + [3507] = 2366, + [3508] = 2368, + [3509] = 2369, + [3510] = 2371, + [3511] = 2373, + [3512] = 2375, + [3513] = 2303, + [3514] = 2304, + [3515] = 384, + [3516] = 378, + [3517] = 2301, + [3518] = 2302, + [3519] = 3519, + [3520] = 2303, + [3521] = 2304, + [3522] = 3522, + [3523] = 3523, [3524] = 3524, - [3525] = 3525, - [3526] = 183, - [3527] = 201, - [3528] = 526, - [3529] = 527, - [3530] = 528, - [3531] = 197, - [3532] = 1390, - [3533] = 194, - [3534] = 3534, - [3535] = 723, - [3536] = 183, - [3537] = 193, - [3538] = 215, - [3539] = 195, - [3540] = 2532, - [3541] = 511, - [3542] = 128, - [3543] = 189, - [3544] = 191, - [3545] = 2552, - [3546] = 2507, - [3547] = 204, - [3548] = 197, - [3549] = 723, - [3550] = 201, - [3551] = 706, - [3552] = 3552, - [3553] = 3553, - [3554] = 3554, - [3555] = 398, - [3556] = 128, - [3557] = 3557, - [3558] = 3558, - [3559] = 1093, - [3560] = 129, - [3561] = 130, - [3562] = 129, - [3563] = 1098, - [3564] = 130, - [3565] = 723, - [3566] = 1101, - [3567] = 471, - [3568] = 192, - [3569] = 356, - [3570] = 357, - [3571] = 207, - [3572] = 358, - [3573] = 576, - [3574] = 556, - [3575] = 135, - [3576] = 472, - [3577] = 480, - [3578] = 481, - [3579] = 133, - [3580] = 484, - [3581] = 485, - [3582] = 210, - [3583] = 589, - [3584] = 545, - [3585] = 546, - [3586] = 212, - [3587] = 547, - [3588] = 548, - [3589] = 549, - [3590] = 550, - [3591] = 551, - [3592] = 544, - [3593] = 552, - [3594] = 553, - [3595] = 131, - [3596] = 132, - [3597] = 469, - [3598] = 554, - [3599] = 555, - [3600] = 557, - [3601] = 3003, - [3602] = 315, - [3603] = 309, - [3604] = 558, - [3605] = 131, - [3606] = 132, - [3607] = 128, - [3608] = 319, - [3609] = 320, - [3610] = 321, - [3611] = 322, - [3612] = 323, - [3613] = 324, - [3614] = 325, - [3615] = 326, - [3616] = 327, - [3617] = 312, - [3618] = 328, - [3619] = 329, - [3620] = 330, - [3621] = 760, - [3622] = 331, - [3623] = 495, - [3624] = 559, - [3625] = 314, - [3626] = 332, - [3627] = 520, - [3628] = 333, - [3629] = 334, - [3630] = 523, - [3631] = 335, - [3632] = 560, - [3633] = 561, - [3634] = 562, - [3635] = 493, - [3636] = 563, - [3637] = 505, - [3638] = 564, - [3639] = 134, - [3640] = 221, - [3641] = 488, - [3642] = 507, - [3643] = 489, - [3644] = 760, - [3645] = 318, - [3646] = 215, - [3647] = 325, - [3648] = 137, - [3649] = 136, - [3650] = 138, - [3651] = 128, - [3652] = 334, - [3653] = 326, - [3654] = 327, - [3655] = 319, - [3656] = 320, - [3657] = 328, - [3658] = 329, - [3659] = 330, - [3660] = 406, - [3661] = 237, - [3662] = 321, - [3663] = 322, - [3664] = 136, - [3665] = 138, - [3666] = 323, - [3667] = 331, - [3668] = 760, - [3669] = 332, - [3670] = 3078, - [3671] = 335, - [3672] = 236, - [3673] = 314, - [3674] = 129, - [3675] = 318, - [3676] = 3037, - [3677] = 3089, - [3678] = 130, - [3679] = 309, - [3680] = 333, - [3681] = 312, - [3682] = 3110, - [3683] = 235, - [3684] = 760, - [3685] = 3124, - [3686] = 324, - [3687] = 315, - [3688] = 954, - [3689] = 137, - [3690] = 407, - [3691] = 3691, - [3692] = 438, - [3693] = 408, - [3694] = 131, - [3695] = 139, - [3696] = 954, - [3697] = 132, - [3698] = 989, - [3699] = 2853, - [3700] = 453, - [3701] = 2113, - [3702] = 207, - [3703] = 954, - [3704] = 2832, - [3705] = 408, - [3706] = 424, - [3707] = 954, - [3708] = 454, - [3709] = 384, - [3710] = 1653, - [3711] = 134, - [3712] = 436, - [3713] = 135, - [3714] = 133, - [3715] = 946, - [3716] = 967, - [3717] = 454, - [3718] = 1753, - [3719] = 946, - [3720] = 438, - [3721] = 989, - [3722] = 453, - [3723] = 454, - [3724] = 1018, - [3725] = 989, - [3726] = 453, - [3727] = 454, - [3728] = 436, - [3729] = 137, - [3730] = 1018, - [3731] = 136, - [3732] = 138, - [3733] = 436, - [3734] = 1693, - [3735] = 516, - [3736] = 966, - [3737] = 974, - [3738] = 3738, - [3739] = 954, - [3740] = 453, - [3741] = 424, - [3742] = 408, - [3743] = 424, - [3744] = 968, - [3745] = 988, - [3746] = 436, - [3747] = 424, - [3748] = 471, - [3749] = 3749, - [3750] = 990, - [3751] = 975, - [3752] = 985, - [3753] = 964, - [3754] = 971, - [3755] = 978, - [3756] = 984, - [3757] = 438, - [3758] = 946, - [3759] = 408, - [3760] = 962, - [3761] = 973, - [3762] = 981, - [3763] = 963, - [3764] = 969, - [3765] = 989, - [3766] = 438, - [3767] = 2339, - [3768] = 2332, - [3769] = 2344, - [3770] = 2346, - [3771] = 2349, - [3772] = 2360, - [3773] = 2389, - [3774] = 2393, - [3775] = 2403, - [3776] = 2411, - [3777] = 2431, - [3778] = 2438, - [3779] = 2476, - [3780] = 2315, - [3781] = 2328, - [3782] = 2422, - [3783] = 559, - [3784] = 523, - [3785] = 560, - [3786] = 2333, - [3787] = 1793, - [3788] = 2334, - [3789] = 561, - [3790] = 2340, - [3791] = 562, - [3792] = 2343, - [3793] = 2350, - [3794] = 2367, - [3795] = 563, - [3796] = 2372, - [3797] = 2387, - [3798] = 564, - [3799] = 2409, - [3800] = 1794, - [3801] = 2392, - [3802] = 2425, - [3803] = 2395, - [3804] = 488, - [3805] = 489, - [3806] = 1093, - [3807] = 2419, - [3808] = 2429, - [3809] = 2397, - [3810] = 2437, - [3811] = 545, - [3812] = 493, - [3813] = 2400, - [3814] = 1800, - [3815] = 1801, - [3816] = 472, - [3817] = 480, - [3818] = 1098, - [3819] = 2430, - [3820] = 2440, - [3821] = 2442, - [3822] = 2316, - [3823] = 2318, - [3824] = 2321, - [3825] = 2324, - [3826] = 2331, - [3827] = 2335, - [3828] = 2336, - [3829] = 2337, - [3830] = 356, - [3831] = 589, - [3832] = 1797, - [3833] = 424, - [3834] = 1795, - [3835] = 357, - [3836] = 1796, - [3837] = 1798, - [3838] = 546, - [3839] = 1792, - [3840] = 2390, - [3841] = 2345, - [3842] = 358, - [3843] = 2351, - [3844] = 2354, - [3845] = 2355, - [3846] = 2853, - [3847] = 2356, - [3848] = 2357, - [3849] = 398, - [3850] = 2359, - [3851] = 2365, - [3852] = 2369, - [3853] = 2371, - [3854] = 989, - [3855] = 2373, - [3856] = 139, - [3857] = 2375, - [3858] = 2377, - [3859] = 469, - [3860] = 2381, - [3861] = 2383, - [3862] = 2391, - [3863] = 2394, - [3864] = 2398, - [3865] = 2401, - [3866] = 505, - [3867] = 507, - [3868] = 547, - [3869] = 438, - [3870] = 1018, - [3871] = 453, - [3872] = 454, - [3873] = 520, - [3874] = 481, - [3875] = 548, - [3876] = 2405, - [3877] = 549, - [3878] = 550, - [3879] = 551, - [3880] = 552, - [3881] = 2408, - [3882] = 2410, - [3883] = 2412, - [3884] = 484, - [3885] = 485, - [3886] = 1101, - [3887] = 2460, - [3888] = 2463, - [3889] = 2466, - [3890] = 2475, - [3891] = 2477, - [3892] = 2312, - [3893] = 2313, - [3894] = 2314, - [3895] = 2317, - [3896] = 2319, - [3897] = 2320, - [3898] = 2322, - [3899] = 134, - [3900] = 1172, - [3901] = 1173, - [3902] = 1174, - [3903] = 1175, - [3904] = 1176, - [3905] = 1178, - [3906] = 1129, - [3907] = 1159, - [3908] = 1163, - [3909] = 1185, - [3910] = 1127, - [3911] = 1128, - [3912] = 135, - [3913] = 133, - [3914] = 2404, - [3915] = 2407, - [3916] = 553, - [3917] = 554, - [3918] = 436, - [3919] = 544, - [3920] = 555, - [3921] = 2327, - [3922] = 2347, - [3923] = 556, - [3924] = 1018, - [3925] = 557, - [3926] = 2832, - [3927] = 2370, - [3928] = 2374, - [3929] = 2380, - [3930] = 495, - [3931] = 558, - [3932] = 2388, - [3933] = 2402, - [3934] = 2428, - [3935] = 2413, - [3936] = 2436, - [3937] = 2441, - [3938] = 2386, - [3939] = 2325, - [3940] = 2378, - [3941] = 1130, - [3942] = 1138, - [3943] = 1178, - [3944] = 1173, - [3945] = 1129, - [3946] = 3946, - [3947] = 3947, - [3948] = 1159, - [3949] = 3949, - [3950] = 1163, - [3951] = 3949, - [3952] = 1185, - [3953] = 1127, - [3954] = 1128, - [3955] = 3955, - [3956] = 1174, - [3957] = 1175, - [3958] = 1018, - [3959] = 3959, - [3960] = 3960, - [3961] = 3961, - [3962] = 3962, - [3963] = 3963, - [3964] = 3964, - [3965] = 1018, - [3966] = 3966, - [3967] = 1184, - [3968] = 1186, - [3969] = 3946, - [3970] = 3970, - [3971] = 3971, - [3972] = 1165, - [3973] = 1121, - [3974] = 436, - [3975] = 3975, + [3525] = 1181, + [3526] = 1182, + [3527] = 1183, + [3528] = 1184, + [3529] = 1185, + [3530] = 1186, + [3531] = 1187, + [3532] = 1190, + [3533] = 1191, + [3534] = 1192, + [3535] = 1193, + [3536] = 1194, + [3537] = 219, + [3538] = 196, + [3539] = 1132, + [3540] = 1174, + [3541] = 194, + [3542] = 1179, + [3543] = 196, + [3544] = 1132, + [3545] = 194, + [3546] = 1180, + [3547] = 3547, + [3548] = 417, + [3549] = 196, + [3550] = 196, + [3551] = 196, + [3552] = 203, + [3553] = 142, + [3554] = 699, + [3555] = 221, + [3556] = 3556, + [3557] = 202, + [3558] = 400, + [3559] = 203, + [3560] = 388, + [3561] = 699, + [3562] = 3556, + [3563] = 373, + [3564] = 194, + [3565] = 194, + [3566] = 194, + [3567] = 202, + [3568] = 3568, + [3569] = 578, + [3570] = 572, + [3571] = 202, + [3572] = 3572, + [3573] = 143, + [3574] = 218, + [3575] = 144, + [3576] = 194, + [3577] = 3572, + [3578] = 3578, + [3579] = 573, + [3580] = 3578, + [3581] = 574, + [3582] = 211, + [3583] = 699, + [3584] = 579, + [3585] = 580, + [3586] = 581, + [3587] = 582, + [3588] = 202, + [3589] = 584, + [3590] = 585, + [3591] = 575, + [3592] = 214, + [3593] = 3593, + [3594] = 217, + [3595] = 211, + [3596] = 217, + [3597] = 3593, + [3598] = 203, + [3599] = 218, + [3600] = 202, + [3601] = 191, + [3602] = 3602, + [3603] = 2470, + [3604] = 571, + [3605] = 203, + [3606] = 196, + [3607] = 203, + [3608] = 214, + [3609] = 576, + [3610] = 577, + [3611] = 583, + [3612] = 2570, + [3613] = 211, + [3614] = 214, + [3615] = 218, + [3616] = 218, + [3617] = 699, + [3618] = 211, + [3619] = 218, + [3620] = 2559, + [3621] = 3621, + [3622] = 527, + [3623] = 217, + [3624] = 203, + [3625] = 147, + [3626] = 149, + [3627] = 211, + [3628] = 214, + [3629] = 1407, + [3630] = 146, + [3631] = 202, + [3632] = 148, + [3633] = 3633, + [3634] = 3634, + [3635] = 206, + [3636] = 214, + [3637] = 207, + [3638] = 208, + [3639] = 198, + [3640] = 3640, + [3641] = 217, + [3642] = 217, + [3643] = 699, + [3644] = 145, + [3645] = 345, + [3646] = 2839, + [3647] = 152, + [3648] = 211, + [3649] = 151, + [3650] = 214, + [3651] = 219, + [3652] = 217, + [3653] = 218, + [3654] = 221, + [3655] = 210, + [3656] = 2847, + [3657] = 3657, + [3658] = 142, + [3659] = 305, + [3660] = 302, + [3661] = 306, + [3662] = 593, + [3663] = 304, + [3664] = 331, + [3665] = 344, + [3666] = 346, + [3667] = 347, + [3668] = 349, + [3669] = 350, + [3670] = 296, + [3671] = 322, + [3672] = 336, + [3673] = 312, + [3674] = 317, + [3675] = 321, + [3676] = 295, + [3677] = 351, + [3678] = 325, + [3679] = 326, + [3680] = 328, + [3681] = 150, + [3682] = 336, + [3683] = 317, + [3684] = 321, + [3685] = 295, + [3686] = 351, + [3687] = 325, + [3688] = 326, + [3689] = 231, + [3690] = 306, + [3691] = 328, + [3692] = 142, + [3693] = 221, + [3694] = 143, + [3695] = 302, + [3696] = 304, + [3697] = 3697, + [3698] = 154, + [3699] = 762, + [3700] = 331, + [3701] = 344, + [3702] = 305, + [3703] = 142, + [3704] = 345, + [3705] = 346, + [3706] = 347, + [3707] = 349, + [3708] = 350, + [3709] = 241, + [3710] = 144, + [3711] = 296, + [3712] = 559, + [3713] = 561, + [3714] = 322, + [3715] = 312, + [3716] = 3095, + [3717] = 143, + [3718] = 266, + [3719] = 378, + [3720] = 144, + [3721] = 265, + [3722] = 263, + [3723] = 3172, + [3724] = 264, + [3725] = 3117, + [3726] = 3079, + [3727] = 3107, + [3728] = 762, + [3729] = 384, + [3730] = 762, + [3731] = 3181, + [3732] = 3732, + [3733] = 142, + [3734] = 1616, + [3735] = 146, + [3736] = 429, + [3737] = 430, + [3738] = 431, + [3739] = 143, + [3740] = 390, + [3741] = 148, + [3742] = 145, + [3743] = 429, + [3744] = 430, + [3745] = 431, + [3746] = 2154, + [3747] = 144, + [3748] = 441, + [3749] = 147, + [3750] = 149, + [3751] = 427, + [3752] = 441, + [3753] = 219, + [3754] = 427, + [3755] = 390, + [3756] = 146, + [3757] = 3757, + [3758] = 390, + [3759] = 431, + [3760] = 441, + [3761] = 828, + [3762] = 1010, + [3763] = 148, + [3764] = 1010, + [3765] = 1698, + [3766] = 429, + [3767] = 429, + [3768] = 147, + [3769] = 152, + [3770] = 221, + [3771] = 3771, + [3772] = 427, + [3773] = 429, + [3774] = 430, + [3775] = 145, + [3776] = 149, + [3777] = 150, + [3778] = 431, + [3779] = 151, + [3780] = 430, + [3781] = 828, + [3782] = 475, + [3783] = 441, + [3784] = 430, + [3785] = 1010, + [3786] = 431, + [3787] = 441, + [3788] = 427, + [3789] = 1684, + [3790] = 388, + [3791] = 2475, + [3792] = 2477, + [3793] = 2478, + [3794] = 2480, + [3795] = 2482, + [3796] = 2484, + [3797] = 2487, + [3798] = 2489, + [3799] = 2490, + [3800] = 2492, + [3801] = 2494, + [3802] = 2496, + [3803] = 2499, + [3804] = 2503, + [3805] = 2508, + [3806] = 2510, + [3807] = 2514, + [3808] = 2515, + [3809] = 2517, + [3810] = 2518, + [3811] = 2520, + [3812] = 2522, + [3813] = 2526, + [3814] = 2527, + [3815] = 2529, + [3816] = 2535, + [3817] = 2536, + [3818] = 2454, + [3819] = 2507, + [3820] = 2396, + [3821] = 2426, + [3822] = 2519, + [3823] = 2393, + [3824] = 2401, + [3825] = 2421, + [3826] = 2432, + [3827] = 2457, + [3828] = 2459, + [3829] = 2474, + [3830] = 2481, + [3831] = 2486, + [3832] = 2495, + [3833] = 2516, + [3834] = 2524, + [3835] = 2451, + [3836] = 2356, + [3837] = 2358, + [3838] = 2359, + [3839] = 2367, + [3840] = 2370, + [3841] = 2374, + [3842] = 2376, + [3843] = 2379, + [3844] = 2383, + [3845] = 2391, + [3846] = 2394, + [3847] = 2398, + [3848] = 2403, + [3849] = 2411, + [3850] = 2416, + [3851] = 2423, + [3852] = 2428, + [3853] = 2438, + [3854] = 2455, + [3855] = 2458, + [3856] = 2460, + [3857] = 2462, + [3858] = 2473, + [3859] = 2476, + [3860] = 2479, + [3861] = 2485, + [3862] = 2488, + [3863] = 2360, + [3864] = 2361, + [3865] = 2362, + [3866] = 2363, + [3867] = 2364, + [3868] = 2365, + [3869] = 2366, + [3870] = 2368, + [3871] = 2369, + [3872] = 2371, + [3873] = 2373, + [3874] = 2375, + [3875] = 1880, + [3876] = 486, + [3877] = 507, + [3878] = 1924, + [3879] = 405, + [3880] = 523, + [3881] = 1010, + [3882] = 525, + [3883] = 150, + [3884] = 151, + [3885] = 476, + [3886] = 559, + [3887] = 221, + [3888] = 561, + [3889] = 488, + [3890] = 2847, + [3891] = 154, + [3892] = 427, + [3893] = 152, + [3894] = 1946, + [3895] = 1947, + [3896] = 519, + [3897] = 522, + [3898] = 2839, + [3899] = 533, + [3900] = 496, + [3901] = 477, + [3902] = 534, + [3903] = 492, + [3904] = 504, + [3905] = 535, + [3906] = 517, + [3907] = 536, + [3908] = 537, + [3909] = 538, + [3910] = 539, + [3911] = 540, + [3912] = 429, + [3913] = 1123, + [3914] = 541, + [3915] = 543, + [3916] = 427, + [3917] = 544, + [3918] = 545, + [3919] = 546, + [3920] = 547, + [3921] = 1181, + [3922] = 1182, + [3923] = 1183, + [3924] = 1184, + [3925] = 1185, + [3926] = 1186, + [3927] = 1187, + [3928] = 1190, + [3929] = 1191, + [3930] = 1192, + [3931] = 1193, + [3932] = 1194, + [3933] = 1883, + [3934] = 548, + [3935] = 1181, + [3936] = 1182, + [3937] = 1183, + [3938] = 1184, + [3939] = 1185, + [3940] = 1186, + [3941] = 1187, + [3942] = 1190, + [3943] = 1191, + [3944] = 1192, + [3945] = 1193, + [3946] = 1194, + [3947] = 549, + [3948] = 417, + [3949] = 550, + [3950] = 556, + [3951] = 557, + [3952] = 2395, + [3953] = 2397, + [3954] = 2400, + [3955] = 2402, + [3956] = 2404, + [3957] = 2408, + [3958] = 2410, + [3959] = 2412, + [3960] = 2415, + [3961] = 2418, + [3962] = 2419, + [3963] = 558, + [3964] = 529, + [3965] = 2422, + [3966] = 1899, + [3967] = 1940, + [3968] = 400, + [3969] = 1062, + [3970] = 1904, + [3971] = 1943, + [3972] = 430, + [3973] = 431, + [3974] = 373, + [3975] = 441, [3976] = 3976, [3977] = 3977, - [3978] = 1135, - [3979] = 1137, - [3980] = 1157, + [3978] = 1010, + [3979] = 3979, + [3980] = 3980, [3981] = 3981, - [3982] = 1161, - [3983] = 1140, - [3984] = 1155, + [3982] = 1174, + [3983] = 3983, + [3984] = 3984, [3985] = 3985, - [3986] = 1201, + [3986] = 1010, [3987] = 3987, - [3988] = 3949, - [3989] = 1149, + [3988] = 3988, + [3989] = 3989, [3990] = 3990, - [3991] = 1153, - [3992] = 3955, + [3991] = 3991, + [3992] = 3992, [3993] = 3993, [3994] = 3994, - [3995] = 1119, - [3996] = 3996, - [3997] = 1160, + [3995] = 3995, + [3996] = 1180, + [3997] = 3997, [3998] = 3998, - [3999] = 3955, + [3999] = 3999, [4000] = 4000, - [4001] = 1162, + [4001] = 4001, [4002] = 4002, - [4003] = 1164, - [4004] = 1176, - [4005] = 1120, - [4006] = 1172, - [4007] = 1124, - [4008] = 1125, - [4009] = 4009, + [4003] = 4003, + [4004] = 4004, + [4005] = 405, + [4006] = 3984, + [4007] = 3985, + [4008] = 4008, + [4009] = 3981, [4010] = 4010, - [4011] = 1129, - [4012] = 1163, - [4013] = 1178, - [4014] = 1178, - [4015] = 1176, - [4016] = 1129, - [4017] = 1185, - [4018] = 3003, - [4019] = 1172, - [4020] = 1159, - [4021] = 1127, - [4022] = 1174, - [4023] = 1128, - [4024] = 1173, - [4025] = 1163, - [4026] = 1185, - [4027] = 1127, - [4028] = 1159, - [4029] = 1172, - [4030] = 1128, - [4031] = 1173, - [4032] = 1174, - [4033] = 1175, - [4034] = 1175, + [4011] = 4011, + [4012] = 1179, + [4013] = 1010, + [4014] = 3985, + [4015] = 3981, + [4016] = 4016, + [4017] = 1190, + [4018] = 1192, + [4019] = 1181, + [4020] = 1181, + [4021] = 1182, + [4022] = 1183, + [4023] = 1184, + [4024] = 1185, + [4025] = 1186, + [4026] = 1187, + [4027] = 1191, + [4028] = 1192, + [4029] = 1193, + [4030] = 1194, + [4031] = 1186, + [4032] = 1194, + [4033] = 4003, + [4034] = 1187, [4035] = 4035, - [4036] = 3947, - [4037] = 4037, - [4038] = 1176, - [4039] = 3089, - [4040] = 3124, + [4036] = 1193, + [4037] = 1182, + [4038] = 3983, + [4039] = 1183, + [4040] = 4040, [4041] = 4041, - [4042] = 4042, - [4043] = 4043, - [4044] = 4044, - [4045] = 4045, + [4042] = 1185, + [4043] = 1190, + [4044] = 1191, + [4045] = 1184, [4046] = 4046, [4047] = 4047, - [4048] = 3078, - [4049] = 4041, - [4050] = 4041, - [4051] = 4041, - [4052] = 4041, - [4053] = 4041, - [4054] = 4044, - [4055] = 3110, - [4056] = 4041, - [4057] = 4045, - [4058] = 4046, - [4059] = 4047, - [4060] = 4042, - [4061] = 4041, - [4062] = 3037, - [4063] = 4063, - [4064] = 4041, - [4065] = 4043, - [4066] = 4063, - [4067] = 1238, - [4068] = 187, - [4069] = 181, - [4070] = 177, - [4071] = 1253, - [4072] = 1238, - [4073] = 184, - [4074] = 181, - [4075] = 177, - [4076] = 178, - [4077] = 187, - [4078] = 183, - [4079] = 180, - [4080] = 1238, - [4081] = 1253, - [4082] = 1250, - [4083] = 184, - [4084] = 182, - [4085] = 1253, - [4086] = 189, - [4087] = 182, - [4088] = 192, - [4089] = 178, - [4090] = 177, - [4091] = 197, - [4092] = 194, - [4093] = 193, - [4094] = 195, - [4095] = 191, - [4096] = 201, - [4097] = 187, - [4098] = 181, - [4099] = 183, - [4100] = 180, - [4101] = 1238, - [4102] = 1250, - [4103] = 184, - [4104] = 204, - [4105] = 184, - [4106] = 195, - [4107] = 181, - [4108] = 182, - [4109] = 201, - [4110] = 1250, - [4111] = 189, - [4112] = 204, - [4113] = 194, - [4114] = 177, - [4115] = 1253, - [4116] = 183, - [4117] = 221, - [4118] = 180, - [4119] = 178, - [4120] = 212, - [4121] = 210, - [4122] = 193, - [4123] = 187, - [4124] = 215, - [4125] = 197, - [4126] = 207, - [4127] = 191, + [4048] = 4048, + [4049] = 3079, + [4050] = 4048, + [4051] = 3117, + [4052] = 3095, + [4053] = 4053, + [4054] = 4054, + [4055] = 4048, + [4056] = 4048, + [4057] = 4057, + [4058] = 3181, + [4059] = 4059, + [4060] = 4053, + [4061] = 4061, + [4062] = 3107, + [4063] = 4057, + [4064] = 4054, + [4065] = 4048, + [4066] = 4048, + [4067] = 4048, + [4068] = 4046, + [4069] = 4048, + [4070] = 3172, + [4071] = 4059, + [4072] = 4061, + [4073] = 4048, + [4074] = 4047, + [4075] = 190, + [4076] = 190, + [4077] = 195, + [4078] = 192, + [4079] = 195, + [4080] = 194, + [4081] = 191, + [4082] = 192, + [4083] = 190, + [4084] = 196, + [4085] = 331, + [4086] = 326, + [4087] = 195, + [4088] = 196, + [4089] = 206, + [4090] = 328, + [4091] = 305, + [4092] = 203, + [4093] = 190, + [4094] = 306, + [4095] = 202, + [4096] = 302, + [4097] = 192, + [4098] = 321, + [4099] = 194, + [4100] = 304, + [4101] = 295, + [4102] = 191, + [4103] = 351, + [4104] = 325, + [4105] = 207, + [4106] = 344, + [4107] = 345, + [4108] = 208, + [4109] = 198, + [4110] = 1275, + [4111] = 346, + [4112] = 347, + [4113] = 349, + [4114] = 350, + [4115] = 296, + [4116] = 322, + [4117] = 336, + [4118] = 312, + [4119] = 317, + [4120] = 219, + [4121] = 221, + [4122] = 210, + [4123] = 211, + [4124] = 196, + [4125] = 195, + [4126] = 203, + [4127] = 1275, [4128] = 192, - [4129] = 189, - [4130] = 212, - [4131] = 230, - [4132] = 195, - [4133] = 221, - [4134] = 204, - [4135] = 237, - [4136] = 194, - [4137] = 191, - [4138] = 178, - [4139] = 215, - [4140] = 193, - [4141] = 180, - [4142] = 182, - [4143] = 210, - [4144] = 201, - [4145] = 207, - [4146] = 192, - [4147] = 1250, - [4148] = 197, - [4149] = 183, - [4150] = 235, - [4151] = 224, - [4152] = 236, - [4153] = 177, - [4154] = 230, - [4155] = 215, - [4156] = 236, - [4157] = 128, - [4158] = 204, - [4159] = 197, - [4160] = 192, - [4161] = 1293, - [4162] = 235, - [4163] = 221, - [4164] = 207, - [4165] = 224, - [4166] = 237, - [4167] = 4167, - [4168] = 210, - [4169] = 212, - [4170] = 192, - [4171] = 201, - [4172] = 1303, - [4173] = 221, - [4174] = 182, - [4175] = 235, - [4176] = 183, - [4177] = 130, - [4178] = 128, - [4179] = 207, - [4180] = 177, - [4181] = 221, - [4182] = 1303, - [4183] = 184, - [4184] = 1390, - [4185] = 178, - [4186] = 353, - [4187] = 236, - [4188] = 210, - [4189] = 237, - [4190] = 2525, - [4191] = 207, - [4192] = 181, - [4193] = 192, - [4194] = 129, - [4195] = 212, - [4196] = 230, - [4197] = 4167, - [4198] = 300, - [4199] = 187, - [4200] = 210, - [4201] = 215, - [4202] = 180, - [4203] = 1293, - [4204] = 224, - [4205] = 212, - [4206] = 2527, - [4207] = 178, - [4208] = 193, - [4209] = 195, - [4210] = 237, - [4211] = 393, - [4212] = 300, - [4213] = 192, - [4214] = 4214, - [4215] = 4215, - [4216] = 4216, - [4217] = 134, - [4218] = 135, - [4219] = 133, - [4220] = 207, - [4221] = 131, - [4222] = 132, - [4223] = 954, - [4224] = 396, - [4225] = 204, - [4226] = 1390, - [4227] = 197, - [4228] = 201, - [4229] = 187, - [4230] = 181, - [4231] = 194, - [4232] = 207, - [4233] = 221, - [4234] = 212, - [4235] = 184, + [4129] = 214, + [4130] = 191, + [4131] = 207, + [4132] = 202, + [4133] = 217, + [4134] = 208, + [4135] = 198, + [4136] = 218, + [4137] = 194, + [4138] = 206, + [4139] = 296, + [4140] = 349, + [4141] = 142, + [4142] = 208, + [4143] = 317, + [4144] = 321, + [4145] = 295, + [4146] = 304, + [4147] = 306, + [4148] = 331, + [4149] = 211, + [4150] = 325, + [4151] = 351, + [4152] = 207, + [4153] = 344, + [4154] = 346, + [4155] = 322, + [4156] = 328, + [4157] = 210, + [4158] = 219, + [4159] = 347, + [4160] = 203, + [4161] = 1275, + [4162] = 345, + [4163] = 305, + [4164] = 194, + [4165] = 302, + [4166] = 142, + [4167] = 326, + [4168] = 196, + [4169] = 221, + [4170] = 202, + [4171] = 350, + [4172] = 336, + [4173] = 231, + [4174] = 206, + [4175] = 214, + [4176] = 217, + [4177] = 218, + [4178] = 241, + [4179] = 198, + [4180] = 312, + [4181] = 262, + [4182] = 202, + [4183] = 211, + [4184] = 190, + [4185] = 143, + [4186] = 251, + [4187] = 217, + [4188] = 231, + [4189] = 219, + [4190] = 241, + [4191] = 210, + [4192] = 218, + [4193] = 203, + [4194] = 475, + [4195] = 1275, + [4196] = 1123, + [4197] = 1062, + [4198] = 263, + [4199] = 214, + [4200] = 264, + [4201] = 266, + [4202] = 144, + [4203] = 221, + [4204] = 154, + [4205] = 265, + [4206] = 142, + [4207] = 544, + [4208] = 301, + [4209] = 519, + [4210] = 217, + [4211] = 522, + [4212] = 545, + [4213] = 218, + [4214] = 496, + [4215] = 477, + [4216] = 231, + [4217] = 492, + [4218] = 504, + [4219] = 251, + [4220] = 557, + [4221] = 190, + [4222] = 146, + [4223] = 148, + [4224] = 145, + [4225] = 1407, + [4226] = 142, + [4227] = 241, + [4228] = 263, + [4229] = 264, + [4230] = 265, + [4231] = 266, + [4232] = 143, + [4233] = 191, + [4234] = 144, + [4235] = 488, [4236] = 210, - [4237] = 189, - [4238] = 191, - [4239] = 449, - [4240] = 2525, - [4241] = 180, - [4242] = 235, - [4243] = 182, - [4244] = 2527, - [4245] = 183, - [4246] = 236, - [4247] = 230, - [4248] = 129, - [4249] = 236, - [4250] = 237, - [4251] = 355, - [4252] = 130, + [4237] = 221, + [4238] = 147, + [4239] = 149, + [4240] = 195, + [4241] = 210, + [4242] = 546, + [4243] = 214, + [4244] = 529, + [4245] = 547, + [4246] = 549, + [4247] = 219, + [4248] = 219, + [4249] = 262, + [4250] = 517, + [4251] = 548, + [4252] = 550, [4253] = 192, - [4254] = 389, - [4255] = 224, - [4256] = 235, - [4257] = 328, - [4258] = 396, - [4259] = 210, - [4260] = 321, - [4261] = 4215, - [4262] = 235, - [4263] = 453, - [4264] = 137, - [4265] = 454, - [4266] = 236, - [4267] = 221, - [4268] = 237, - [4269] = 128, - [4270] = 322, - [4271] = 323, - [4272] = 324, - [4273] = 408, - [4274] = 325, - [4275] = 326, - [4276] = 4276, - [4277] = 424, - [4278] = 327, - [4279] = 300, - [4280] = 329, - [4281] = 330, - [4282] = 207, - [4283] = 331, - [4284] = 332, - [4285] = 333, - [4286] = 334, - [4287] = 335, - [4288] = 136, - [4289] = 138, - [4290] = 954, - [4291] = 215, - [4292] = 207, - [4293] = 207, - [4294] = 389, - [4295] = 204, + [4254] = 533, + [4255] = 194, + [4256] = 196, + [4257] = 523, + [4258] = 525, + [4259] = 534, + [4260] = 211, + [4261] = 556, + [4262] = 486, + [4263] = 507, + [4264] = 535, + [4265] = 476, + [4266] = 536, + [4267] = 537, + [4268] = 538, + [4269] = 539, + [4270] = 540, + [4271] = 541, + [4272] = 543, + [4273] = 558, + [4274] = 147, + [4275] = 194, + [4276] = 208, + [4277] = 265, + [4278] = 143, + [4279] = 144, + [4280] = 198, + [4281] = 192, + [4282] = 196, + [4283] = 266, + [4284] = 210, + [4285] = 1123, + [4286] = 149, + [4287] = 231, + [4288] = 231, + [4289] = 152, + [4290] = 475, + [4291] = 390, + [4292] = 263, + [4293] = 241, + [4294] = 264, + [4295] = 151, [4296] = 4296, - [4297] = 438, - [4298] = 197, - [4299] = 314, - [4300] = 221, - [4301] = 4216, - [4302] = 201, - [4303] = 318, + [4297] = 2664, + [4298] = 219, + [4299] = 206, + [4300] = 4300, + [4301] = 1407, + [4302] = 1062, + [4303] = 241, [4304] = 4304, - [4305] = 309, - [4306] = 134, - [4307] = 135, - [4308] = 311, - [4309] = 288, - [4310] = 4310, - [4311] = 393, - [4312] = 215, - [4313] = 319, - [4314] = 320, - [4315] = 192, - [4316] = 128, - [4317] = 131, - [4318] = 436, - [4319] = 132, - [4320] = 133, - [4321] = 4214, - [4322] = 315, - [4323] = 398, - [4324] = 356, - [4325] = 357, - [4326] = 358, - [4327] = 212, - [4328] = 212, - [4329] = 355, - [4330] = 210, - [4331] = 287, - [4332] = 312, - [4333] = 4333, - [4334] = 989, - [4335] = 192, - [4336] = 4310, - [4337] = 333, - [4338] = 954, - [4339] = 4339, - [4340] = 355, - [4341] = 1018, - [4342] = 334, - [4343] = 207, - [4344] = 236, - [4345] = 129, - [4346] = 453, - [4347] = 454, - [4348] = 314, - [4349] = 438, - [4350] = 408, - [4351] = 335, - [4352] = 311, - [4353] = 389, - [4354] = 4354, - [4355] = 230, - [4356] = 326, - [4357] = 328, - [4358] = 327, - [4359] = 130, - [4360] = 406, - [4361] = 396, - [4362] = 329, - [4363] = 330, - [4364] = 139, + [4305] = 381, + [4306] = 195, + [4307] = 251, + [4308] = 262, + [4309] = 202, + [4310] = 203, + [4311] = 146, + [4312] = 148, + [4313] = 145, + [4314] = 207, + [4315] = 150, + [4316] = 556, + [4317] = 492, + [4318] = 504, + [4319] = 231, + [4320] = 152, + [4321] = 434, + [4322] = 507, + [4323] = 296, + [4324] = 4304, + [4325] = 436, + [4326] = 241, + [4327] = 150, + [4328] = 151, + [4329] = 305, + [4330] = 441, + [4331] = 537, + [4332] = 263, + [4333] = 322, + [4334] = 263, + [4335] = 350, + [4336] = 421, + [4337] = 429, + [4338] = 522, + [4339] = 517, + [4340] = 264, + [4341] = 336, + [4342] = 538, + [4343] = 539, + [4344] = 540, + [4345] = 533, + [4346] = 312, + [4347] = 202, + [4348] = 265, + [4349] = 535, + [4350] = 317, + [4351] = 266, + [4352] = 541, + [4353] = 543, + [4354] = 321, + [4355] = 306, + [4356] = 544, + [4357] = 545, + [4358] = 546, + [4359] = 547, + [4360] = 548, + [4361] = 147, + [4362] = 154, + [4363] = 264, + [4364] = 149, [4365] = 4365, - [4366] = 288, - [4367] = 4367, - [4368] = 331, - [4369] = 989, - [4370] = 237, - [4371] = 210, - [4372] = 4296, - [4373] = 129, - [4374] = 309, - [4375] = 4375, - [4376] = 4276, - [4377] = 221, - [4378] = 393, - [4379] = 235, - [4380] = 237, - [4381] = 224, - [4382] = 315, - [4383] = 128, - [4384] = 407, - [4385] = 212, - [4386] = 318, - [4387] = 436, - [4388] = 358, - [4389] = 137, - [4390] = 398, - [4391] = 221, - [4392] = 207, - [4393] = 287, - [4394] = 4333, - [4395] = 212, - [4396] = 424, - [4397] = 130, - [4398] = 210, - [4399] = 136, - [4400] = 236, - [4401] = 138, - [4402] = 319, - [4403] = 320, - [4404] = 312, - [4405] = 4304, - [4406] = 235, - [4407] = 356, - [4408] = 215, - [4409] = 357, - [4410] = 4410, - [4411] = 384, - [4412] = 300, - [4413] = 321, - [4414] = 322, - [4415] = 323, - [4416] = 324, - [4417] = 325, - [4418] = 332, - [4419] = 4419, - [4420] = 4420, - [4421] = 4421, - [4422] = 4422, - [4423] = 4423, - [4424] = 4424, - [4425] = 4425, - [4426] = 224, - [4427] = 4427, - [4428] = 4428, - [4429] = 4429, - [4430] = 4430, - [4431] = 207, - [4432] = 4432, - [4433] = 4433, - [4434] = 954, - [4435] = 4435, - [4436] = 4436, - [4437] = 236, - [4438] = 4438, - [4439] = 4439, - [4440] = 4440, - [4441] = 4365, - [4442] = 436, - [4443] = 4443, - [4444] = 4444, - [4445] = 4445, - [4446] = 4446, - [4447] = 4447, - [4448] = 4448, - [4449] = 408, - [4450] = 4450, - [4451] = 384, - [4452] = 4452, - [4453] = 4453, - [4454] = 4454, + [4366] = 549, + [4367] = 550, + [4368] = 430, + [4369] = 295, + [4370] = 142, + [4371] = 557, + [4372] = 302, + [4373] = 431, + [4374] = 210, + [4375] = 351, + [4376] = 427, + [4377] = 325, + [4378] = 265, + [4379] = 4379, + [4380] = 349, + [4381] = 529, + [4382] = 304, + [4383] = 326, + [4384] = 4296, + [4385] = 2664, + [4386] = 4386, + [4387] = 559, + [4388] = 342, + [4389] = 519, + [4390] = 219, + [4391] = 344, + [4392] = 146, + [4393] = 968, + [4394] = 971, + [4395] = 221, + [4396] = 266, + [4397] = 496, + [4398] = 986, + [4399] = 988, + [4400] = 561, + [4401] = 4401, + [4402] = 523, + [4403] = 345, + [4404] = 211, + [4405] = 4300, + [4406] = 477, + [4407] = 148, + [4408] = 214, + [4409] = 476, + [4410] = 262, + [4411] = 217, + [4412] = 221, + [4413] = 145, + [4414] = 328, + [4415] = 218, + [4416] = 210, + [4417] = 525, + [4418] = 373, + [4419] = 417, + [4420] = 400, + [4421] = 388, + [4422] = 536, + [4423] = 486, + [4424] = 488, + [4425] = 331, + [4426] = 142, + [4427] = 203, + [4428] = 428, + [4429] = 219, + [4430] = 251, + [4431] = 390, + [4432] = 340, + [4433] = 341, + [4434] = 4434, + [4435] = 534, + [4436] = 437, + [4437] = 346, + [4438] = 347, + [4439] = 558, + [4440] = 142, + [4441] = 390, + [4442] = 263, + [4443] = 210, + [4444] = 264, + [4445] = 331, + [4446] = 219, + [4447] = 265, + [4448] = 266, + [4449] = 421, + [4450] = 427, + [4451] = 417, + [4452] = 1010, + [4453] = 312, + [4454] = 968, [4455] = 4455, - [4456] = 4456, + [4456] = 971, [4457] = 4457, - [4458] = 4458, - [4459] = 4459, - [4460] = 4460, - [4461] = 237, - [4462] = 393, - [4463] = 4463, - [4464] = 4464, - [4465] = 4465, - [4466] = 4466, - [4467] = 4467, - [4468] = 4468, - [4469] = 4469, - [4470] = 989, - [4471] = 4471, - [4472] = 1617, - [4473] = 4473, - [4474] = 4474, - [4475] = 4475, - [4476] = 4476, - [4477] = 4477, - [4478] = 4478, - [4479] = 4479, - [4480] = 4480, + [4458] = 304, + [4459] = 219, + [4460] = 384, + [4461] = 221, + [4462] = 306, + [4463] = 400, + [4464] = 346, + [4465] = 388, + [4466] = 347, + [4467] = 211, + [4468] = 349, + [4469] = 302, + [4470] = 231, + [4471] = 350, + [4472] = 241, + [4473] = 154, + [4474] = 378, + [4475] = 214, + [4476] = 317, + [4477] = 210, + [4478] = 296, + [4479] = 217, + [4480] = 321, [4481] = 4481, - [4482] = 4482, - [4483] = 4483, - [4484] = 4484, - [4485] = 4485, - [4486] = 4486, - [4487] = 4487, - [4488] = 954, - [4489] = 968, - [4490] = 4490, - [4491] = 988, - [4492] = 4492, - [4493] = 4493, - [4494] = 4494, - [4495] = 4495, - [4496] = 128, - [4497] = 4497, - [4498] = 4498, - [4499] = 207, - [4500] = 438, - [4501] = 4501, - [4502] = 4502, - [4503] = 424, - [4504] = 139, - [4505] = 134, - [4506] = 4506, - [4507] = 4507, - [4508] = 4508, - [4509] = 4509, - [4510] = 4510, - [4511] = 4511, - [4512] = 4512, - [4513] = 4513, + [4482] = 986, + [4483] = 4365, + [4484] = 345, + [4485] = 429, + [4486] = 218, + [4487] = 4379, + [4488] = 295, + [4489] = 322, + [4490] = 988, + [4491] = 351, + [4492] = 325, + [4493] = 326, + [4494] = 4386, + [4495] = 328, + [4496] = 340, + [4497] = 143, + [4498] = 430, + [4499] = 431, + [4500] = 341, + [4501] = 434, + [4502] = 4434, + [4503] = 342, + [4504] = 4504, + [4505] = 231, + [4506] = 4401, + [4507] = 152, + [4508] = 336, + [4509] = 143, + [4510] = 144, + [4511] = 305, + [4512] = 150, + [4513] = 151, [4514] = 4514, - [4515] = 4515, - [4516] = 4516, - [4517] = 4517, - [4518] = 4518, - [4519] = 192, - [4520] = 4520, - [4521] = 4521, - [4522] = 4522, + [4515] = 441, + [4516] = 437, + [4517] = 405, + [4518] = 241, + [4519] = 436, + [4520] = 144, + [4521] = 373, + [4522] = 344, [4523] = 4523, - [4524] = 235, + [4524] = 428, [4525] = 4525, - [4526] = 398, - [4527] = 177, - [4528] = 974, - [4529] = 4529, - [4530] = 135, + [4526] = 4526, + [4527] = 4527, + [4528] = 4528, + [4529] = 144, + [4530] = 4530, [4531] = 4531, [4532] = 4532, - [4533] = 355, - [4534] = 131, + [4533] = 4533, + [4534] = 4534, [4535] = 4535, - [4536] = 132, + [4536] = 4536, [4537] = 4537, [4538] = 4538, [4539] = 4539, [4540] = 4540, [4541] = 4541, - [4542] = 235, + [4542] = 4542, [4543] = 4543, - [4544] = 356, - [4545] = 1018, - [4546] = 131, - [4547] = 132, - [4548] = 230, - [4549] = 4549, - [4550] = 236, - [4551] = 357, + [4544] = 4544, + [4545] = 4545, + [4546] = 4546, + [4547] = 4547, + [4548] = 4548, + [4549] = 146, + [4550] = 4550, + [4551] = 4551, [4552] = 4552, [4553] = 4553, - [4554] = 4554, - [4555] = 237, - [4556] = 396, + [4554] = 148, + [4555] = 4555, + [4556] = 145, [4557] = 4557, - [4558] = 358, - [4559] = 4559, - [4560] = 406, - [4561] = 129, - [4562] = 4562, + [4558] = 4558, + [4559] = 263, + [4560] = 142, + [4561] = 4561, + [4562] = 1607, [4563] = 4563, - [4564] = 133, + [4564] = 4564, [4565] = 4565, - [4566] = 4566, - [4567] = 4567, - [4568] = 177, + [4566] = 231, + [4567] = 264, + [4568] = 4568, [4569] = 4569, - [4570] = 130, - [4571] = 4571, + [4570] = 4570, + [4571] = 265, [4572] = 4572, [4573] = 4573, - [4574] = 4574, - [4575] = 4575, + [4574] = 266, + [4575] = 262, [4576] = 4576, [4577] = 4577, - [4578] = 4578, + [4578] = 373, [4579] = 4579, [4580] = 4580, - [4581] = 134, - [4582] = 4582, - [4583] = 966, + [4581] = 4581, + [4582] = 1010, + [4583] = 378, [4584] = 4584, - [4585] = 453, - [4586] = 454, + [4585] = 4585, + [4586] = 4586, [4587] = 4587, - [4588] = 1653, + [4588] = 4588, [4589] = 4589, [4590] = 4590, - [4591] = 407, - [4592] = 135, - [4593] = 133, + [4591] = 4591, + [4592] = 4592, + [4593] = 384, [4594] = 4594, - [4595] = 389, + [4595] = 241, [4596] = 4596, [4597] = 4597, [4598] = 4598, - [4599] = 4599, + [4599] = 430, [4600] = 4600, [4601] = 4601, - [4602] = 192, - [4603] = 534, - [4604] = 968, - [4605] = 988, - [4606] = 321, - [4607] = 525, - [4608] = 322, - [4609] = 537, - [4610] = 4589, - [4611] = 332, + [4602] = 4602, + [4603] = 4603, + [4604] = 4604, + [4605] = 4605, + [4606] = 4606, + [4607] = 4607, + [4608] = 4608, + [4609] = 4609, + [4610] = 4610, + [4611] = 4611, [4612] = 4612, [4613] = 4613, - [4614] = 2131, - [4615] = 323, - [4616] = 324, - [4617] = 210, + [4614] = 421, + [4615] = 4615, + [4616] = 4616, + [4617] = 4617, [4618] = 4618, - [4619] = 300, - [4620] = 136, - [4621] = 137, + [4619] = 4619, + [4620] = 4620, + [4621] = 4621, [4622] = 4622, - [4623] = 954, - [4624] = 312, - [4625] = 325, - [4626] = 133, - [4627] = 326, + [4623] = 219, + [4624] = 4624, + [4625] = 4625, + [4626] = 4626, + [4627] = 4627, [4628] = 4628, - [4629] = 438, - [4630] = 4525, - [4631] = 4419, - [4632] = 471, - [4633] = 1093, - [4634] = 138, - [4635] = 134, + [4629] = 4629, + [4630] = 4630, + [4631] = 4631, + [4632] = 4632, + [4633] = 4633, + [4634] = 4634, + [4635] = 4635, [4636] = 4636, - [4637] = 183, - [4638] = 1653, - [4639] = 180, - [4640] = 436, - [4641] = 333, - [4642] = 4531, - [4643] = 1098, - [4644] = 4494, - [4645] = 207, - [4646] = 207, - [4647] = 314, - [4648] = 221, - [4649] = 424, - [4650] = 4539, - [4651] = 318, - [4652] = 4516, - [4653] = 538, - [4654] = 221, - [4655] = 4532, - [4656] = 530, - [4657] = 4501, + [4637] = 441, + [4638] = 405, + [4639] = 428, + [4640] = 4640, + [4641] = 434, + [4642] = 4642, + [4643] = 4643, + [4644] = 4644, + [4645] = 4645, + [4646] = 4646, + [4647] = 263, + [4648] = 436, + [4649] = 4649, + [4650] = 4650, + [4651] = 968, + [4652] = 971, + [4653] = 437, + [4654] = 4654, + [4655] = 4655, + [4656] = 986, + [4657] = 988, [4658] = 4658, - [4659] = 212, - [4660] = 4660, - [4661] = 531, - [4662] = 1617, - [4663] = 4613, - [4664] = 4664, - [4665] = 210, - [4666] = 4622, - [4667] = 4667, + [4659] = 4659, + [4660] = 146, + [4661] = 441, + [4662] = 148, + [4663] = 147, + [4664] = 149, + [4665] = 4665, + [4666] = 251, + [4667] = 429, [4668] = 4668, - [4669] = 4669, - [4670] = 4517, - [4671] = 4636, - [4672] = 182, - [4673] = 4541, - [4674] = 1101, - [4675] = 966, + [4669] = 427, + [4670] = 4670, + [4671] = 264, + [4672] = 4672, + [4673] = 4673, + [4674] = 4674, + [4675] = 154, [4676] = 4676, - [4677] = 335, - [4678] = 974, - [4679] = 2129, - [4680] = 536, - [4681] = 989, - [4682] = 331, + [4677] = 390, + [4678] = 4678, + [4679] = 431, + [4680] = 1154, + [4681] = 143, + [4682] = 241, [4683] = 4683, - [4684] = 327, - [4685] = 1018, - [4686] = 4686, - [4687] = 309, - [4688] = 4535, - [4689] = 4584, + [4684] = 4684, + [4685] = 265, + [4686] = 1175, + [4687] = 4687, + [4688] = 147, + [4689] = 149, [4690] = 4690, - [4691] = 135, - [4692] = 1789, - [4693] = 319, - [4694] = 4636, - [4695] = 4520, - [4696] = 320, - [4697] = 177, - [4698] = 4521, - [4699] = 192, - [4700] = 4515, - [4701] = 989, - [4702] = 178, - [4703] = 4522, - [4704] = 4704, - [4705] = 180, - [4706] = 526, - [4707] = 4690, - [4708] = 527, + [4691] = 4523, + [4692] = 4692, + [4693] = 196, + [4694] = 4694, + [4695] = 266, + [4696] = 4696, + [4697] = 145, + [4698] = 4698, + [4699] = 417, + [4700] = 400, + [4701] = 388, + [4702] = 4702, + [4703] = 4703, + [4704] = 231, + [4705] = 4705, + [4706] = 4706, + [4707] = 4707, + [4708] = 1138, [4709] = 4709, - [4710] = 328, - [4711] = 329, - [4712] = 182, - [4713] = 131, - [4714] = 132, - [4715] = 516, - [4716] = 137, - [4717] = 4538, - [4718] = 4718, - [4719] = 178, - [4720] = 1693, - [4721] = 1753, - [4722] = 315, - [4723] = 528, - [4724] = 334, - [4725] = 212, - [4726] = 183, - [4727] = 453, - [4728] = 4507, - [4729] = 4509, - [4730] = 454, - [4731] = 128, - [4732] = 4514, - [4733] = 532, - [4734] = 4734, - [4735] = 535, - [4736] = 4668, - [4737] = 330, - [4738] = 533, - [4739] = 136, - [4740] = 4669, - [4741] = 4741, - [4742] = 4636, - [4743] = 138, - [4744] = 529, - [4745] = 4580, - [4746] = 530, - [4747] = 485, - [4748] = 561, - [4749] = 526, - [4750] = 1798, - [4751] = 204, - [4752] = 1789, - [4753] = 4753, - [4754] = 4754, - [4755] = 4755, - [4756] = 2120, - [4757] = 488, - [4758] = 562, - [4759] = 528, - [4760] = 545, - [4761] = 589, - [4762] = 4762, - [4763] = 496, - [4764] = 4764, - [4765] = 529, - [4766] = 130, - [4767] = 489, - [4768] = 1093, - [4769] = 4734, - [4770] = 398, - [4771] = 547, - [4772] = 563, - [4773] = 1753, - [4774] = 550, - [4775] = 549, - [4776] = 531, - [4777] = 237, - [4778] = 4778, - [4779] = 4658, - [4780] = 469, - [4781] = 2110, + [4710] = 4710, + [4711] = 1616, + [4712] = 4712, + [4713] = 305, + [4714] = 4714, + [4715] = 312, + [4716] = 317, + [4717] = 321, + [4718] = 266, + [4719] = 579, + [4720] = 4720, + [4721] = 4721, + [4722] = 1912, + [4723] = 295, + [4724] = 4527, + [4725] = 4577, + [4726] = 580, + [4727] = 4592, + [4728] = 581, + [4729] = 4594, + [4730] = 582, + [4731] = 4616, + [4732] = 4628, + [4733] = 583, + [4734] = 584, + [4735] = 4645, + [4736] = 351, + [4737] = 4655, + [4738] = 325, + [4739] = 4670, + [4740] = 4690, + [4741] = 4692, + [4742] = 4702, + [4743] = 585, + [4744] = 326, + [4745] = 4745, + [4746] = 4746, + [4747] = 4747, + [4748] = 328, + [4749] = 194, + [4750] = 202, + [4751] = 428, + [4752] = 434, + [4753] = 4526, + [4754] = 4624, + [4755] = 146, + [4756] = 4756, + [4757] = 4640, + [4758] = 1616, + [4759] = 441, + [4760] = 194, + [4761] = 265, + [4762] = 576, + [4763] = 196, + [4764] = 986, + [4765] = 988, + [4766] = 4745, + [4767] = 4767, + [4768] = 4745, + [4769] = 4720, + [4770] = 1607, + [4771] = 4642, + [4772] = 577, + [4773] = 219, + [4774] = 436, + [4775] = 306, + [4776] = 578, + [4777] = 148, + [4778] = 437, + [4779] = 1062, + [4780] = 4780, + [4781] = 304, [4782] = 4782, - [4783] = 4628, - [4784] = 356, - [4785] = 2110, - [4786] = 4786, - [4787] = 1303, - [4788] = 4788, - [4789] = 236, - [4790] = 207, - [4791] = 471, - [4792] = 4792, - [4793] = 4793, - [4794] = 4794, - [4795] = 4795, - [4796] = 180, - [4797] = 4797, - [4798] = 4798, - [4799] = 472, - [4800] = 551, - [4801] = 4801, - [4802] = 221, - [4803] = 1101, - [4804] = 544, - [4805] = 552, - [4806] = 4806, - [4807] = 137, - [4808] = 182, - [4809] = 355, - [4810] = 4810, - [4811] = 4811, - [4812] = 212, - [4813] = 4813, - [4814] = 178, - [4815] = 4741, - [4816] = 553, - [4817] = 564, - [4818] = 210, - [4819] = 1693, - [4820] = 197, - [4821] = 2120, - [4822] = 554, - [4823] = 183, - [4824] = 4824, - [4825] = 2136, - [4826] = 129, - [4827] = 555, - [4828] = 480, - [4829] = 4829, - [4830] = 4830, - [4831] = 4831, - [4832] = 527, - [4833] = 1792, - [4834] = 204, - [4835] = 556, - [4836] = 134, - [4837] = 2938, - [4838] = 4838, - [4839] = 484, - [4840] = 384, - [4841] = 4841, - [4842] = 557, - [4843] = 1795, - [4844] = 1796, - [4845] = 1293, - [4846] = 408, - [4847] = 4847, - [4848] = 4848, - [4849] = 532, - [4850] = 139, - [4851] = 4851, - [4852] = 235, - [4853] = 197, - [4854] = 1018, - [4855] = 407, - [4856] = 533, - [4857] = 4857, - [4858] = 357, - [4859] = 546, - [4860] = 4667, - [4861] = 201, - [4862] = 493, - [4863] = 135, - [4864] = 133, - [4865] = 534, - [4866] = 4866, - [4867] = 4676, - [4868] = 535, + [4783] = 147, + [4784] = 149, + [4785] = 331, + [4786] = 4721, + [4787] = 4787, + [4788] = 1010, + [4789] = 4789, + [4790] = 264, + [4791] = 251, + [4792] = 219, + [4793] = 336, + [4794] = 210, + [4795] = 302, + [4796] = 4745, + [4797] = 1154, + [4798] = 2155, + [4799] = 2132, + [4800] = 4800, + [4801] = 429, + [4802] = 572, + [4803] = 427, + [4804] = 4804, + [4805] = 1175, + [4806] = 1123, + [4807] = 263, + [4808] = 573, + [4809] = 574, + [4810] = 430, + [4811] = 431, + [4812] = 344, + [4813] = 264, + [4814] = 575, + [4815] = 152, + [4816] = 4816, + [4817] = 421, + [4818] = 345, + [4819] = 4557, + [4820] = 265, + [4821] = 4821, + [4822] = 4822, + [4823] = 266, + [4824] = 1138, + [4825] = 4825, + [4826] = 4826, + [4827] = 346, + [4828] = 152, + [4829] = 475, + [4830] = 203, + [4831] = 150, + [4832] = 151, + [4833] = 347, + [4834] = 4834, + [4835] = 349, + [4836] = 142, + [4837] = 4746, + [4838] = 4747, + [4839] = 441, + [4840] = 350, + [4841] = 968, + [4842] = 1684, + [4843] = 1698, + [4844] = 262, + [4845] = 4683, + [4846] = 150, + [4847] = 151, + [4848] = 145, + [4849] = 4710, + [4850] = 4625, + [4851] = 971, + [4852] = 4611, + [4853] = 263, + [4854] = 4603, + [4855] = 571, + [4856] = 296, + [4857] = 4834, + [4858] = 322, + [4859] = 4859, + [4860] = 579, + [4861] = 4821, + [4862] = 2142, + [4863] = 146, + [4864] = 559, + [4865] = 4865, + [4866] = 585, + [4867] = 4867, + [4868] = 148, [4869] = 4869, - [4870] = 4870, - [4871] = 136, - [4872] = 558, - [4873] = 525, - [4874] = 138, - [4875] = 516, - [4876] = 4876, + [4870] = 1010, + [4871] = 145, + [4872] = 4872, + [4873] = 488, + [4874] = 231, + [4875] = 486, + [4876] = 4767, [4877] = 4877, - [4878] = 236, - [4879] = 389, - [4880] = 1800, + [4878] = 561, + [4879] = 150, + [4880] = 523, [4881] = 4881, - [4882] = 2136, - [4883] = 536, - [4884] = 559, - [4885] = 505, - [4886] = 507, - [4887] = 4887, - [4888] = 495, - [4889] = 1801, - [4890] = 4890, - [4891] = 237, - [4892] = 520, - [4893] = 235, - [4894] = 473, - [4895] = 396, - [4896] = 4686, - [4897] = 537, - [4898] = 475, + [4882] = 4882, + [4883] = 4883, + [4884] = 4884, + [4885] = 545, + [4886] = 4886, + [4887] = 151, + [4888] = 504, + [4889] = 535, + [4890] = 2125, + [4891] = 1123, + [4892] = 241, + [4893] = 540, + [4894] = 525, + [4895] = 4895, + [4896] = 4896, + [4897] = 583, + [4898] = 543, [4899] = 4899, - [4900] = 4900, - [4901] = 4718, - [4902] = 4902, - [4903] = 548, - [4904] = 300, - [4905] = 1098, - [4906] = 538, - [4907] = 1793, - [4908] = 481, - [4909] = 358, - [4910] = 4910, - [4911] = 201, - [4912] = 1797, - [4913] = 1794, - [4914] = 523, - [4915] = 406, - [4916] = 560, - [4917] = 989, - [4918] = 393, - [4919] = 4919, - [4920] = 4920, - [4921] = 1303, - [4922] = 1390, - [4923] = 177, - [4924] = 469, - [4925] = 473, - [4926] = 475, - [4927] = 4899, - [4928] = 4928, - [4929] = 4929, - [4930] = 495, - [4931] = 520, - [4932] = 4932, - [4933] = 4933, - [4934] = 424, + [4900] = 202, + [4901] = 4901, + [4902] = 519, + [4903] = 492, + [4904] = 4904, + [4905] = 2605, + [4906] = 154, + [4907] = 580, + [4908] = 546, + [4909] = 4909, + [4910] = 1062, + [4911] = 1912, + [4912] = 547, + [4913] = 477, + [4914] = 4914, + [4915] = 4915, + [4916] = 4916, + [4917] = 1684, + [4918] = 203, + [4919] = 146, + [4920] = 148, + [4921] = 145, + [4922] = 4922, + [4923] = 143, + [4924] = 4756, + [4925] = 548, + [4926] = 4926, + [4927] = 549, + [4928] = 522, + [4929] = 211, + [4930] = 144, + [4931] = 4931, + [4932] = 1880, + [4933] = 1883, + [4934] = 2134, [4935] = 4935, - [4936] = 4936, + [4936] = 152, [4937] = 4937, [4938] = 4938, - [4939] = 2110, - [4940] = 4940, - [4941] = 438, - [4942] = 177, - [4943] = 4866, - [4944] = 453, - [4945] = 454, - [4946] = 496, - [4947] = 4798, - [4948] = 4948, - [4949] = 4949, - [4950] = 4881, - [4951] = 176, - [4952] = 436, + [4939] = 390, + [4940] = 489, + [4941] = 550, + [4942] = 475, + [4943] = 4943, + [4944] = 219, + [4945] = 537, + [4946] = 1946, + [4947] = 1947, + [4948] = 4822, + [4949] = 582, + [4950] = 499, + [4951] = 4951, + [4952] = 4714, [4953] = 4953, - [4954] = 4954, + [4954] = 218, [4955] = 4955, - [4956] = 4956, - [4957] = 4957, + [4956] = 538, + [4957] = 491, [4958] = 4958, - [4959] = 4959, - [4960] = 4960, - [4961] = 2591, - [4962] = 4962, - [4963] = 4963, - [4964] = 131, - [4965] = 132, - [4966] = 471, + [4959] = 217, + [4960] = 4825, + [4961] = 214, + [4962] = 556, + [4963] = 584, + [4964] = 4964, + [4965] = 2142, + [4966] = 4966, [4967] = 4967, - [4968] = 4824, - [4969] = 4969, - [4970] = 4970, + [4968] = 4968, + [4969] = 384, + [4970] = 194, [4971] = 4971, - [4972] = 4972, - [4973] = 134, - [4974] = 135, + [4972] = 476, + [4973] = 557, + [4974] = 2125, [4975] = 4975, - [4976] = 133, + [4976] = 581, [4977] = 4977, [4978] = 4978, - [4979] = 4754, - [4980] = 2995, - [4981] = 4167, - [4982] = 4982, - [4983] = 4983, - [4984] = 204, - [4985] = 235, - [4986] = 197, - [4987] = 236, - [4988] = 201, - [4989] = 237, - [4990] = 4813, - [4991] = 4877, - [4992] = 4753, - [4993] = 4793, - [4994] = 4794, - [4995] = 4797, - [4996] = 4996, - [4997] = 4997, - [4998] = 4841, - [4999] = 4999, - [5000] = 4866, - [5001] = 355, - [5002] = 207, - [5003] = 389, - [5004] = 393, - [5005] = 396, + [4979] = 1924, + [4980] = 507, + [4981] = 533, + [4982] = 4804, + [4983] = 571, + [4984] = 378, + [4985] = 536, + [4986] = 4986, + [4987] = 534, + [4988] = 541, + [4989] = 1698, + [4990] = 558, + [4991] = 1899, + [4992] = 1904, + [4993] = 529, + [4994] = 517, + [4995] = 405, + [4996] = 572, + [4997] = 210, + [4998] = 573, + [4999] = 574, + [5000] = 544, + [5001] = 496, + [5002] = 575, + [5003] = 4816, + [5004] = 5004, + [5005] = 2134, [5006] = 5006, - [5007] = 2136, - [5008] = 1792, - [5009] = 525, - [5010] = 5010, - [5011] = 5011, - [5012] = 5012, - [5013] = 5013, - [5014] = 2120, - [5015] = 5015, - [5016] = 564, - [5017] = 5017, - [5018] = 4982, - [5019] = 4983, - [5020] = 5010, - [5021] = 5011, - [5022] = 526, - [5023] = 527, - [5024] = 528, - [5025] = 5025, - [5026] = 1793, - [5027] = 1794, - [5028] = 529, - [5029] = 530, - [5030] = 531, - [5031] = 5031, - [5032] = 1795, - [5033] = 1796, - [5034] = 532, - [5035] = 533, - [5036] = 534, - [5037] = 535, - [5038] = 536, - [5039] = 537, - [5040] = 538, - [5041] = 5041, + [5007] = 373, + [5008] = 417, + [5009] = 196, + [5010] = 1940, + [5011] = 1943, + [5012] = 400, + [5013] = 388, + [5014] = 576, + [5015] = 577, + [5016] = 578, + [5017] = 539, + [5018] = 5018, + [5019] = 571, + [5020] = 190, + [5021] = 475, + [5022] = 4899, + [5023] = 522, + [5024] = 5024, + [5025] = 4909, + [5026] = 4922, + [5027] = 476, + [5028] = 5028, + [5029] = 5029, + [5030] = 5030, + [5031] = 203, + [5032] = 557, + [5033] = 441, + [5034] = 540, + [5035] = 543, + [5036] = 4914, + [5037] = 2635, + [5038] = 2638, + [5039] = 428, + [5040] = 5040, + [5041] = 537, [5042] = 5042, - [5043] = 493, - [5044] = 488, - [5045] = 489, - [5046] = 2938, - [5047] = 544, - [5048] = 472, - [5049] = 480, - [5050] = 1293, - [5051] = 505, - [5052] = 507, - [5053] = 545, - [5054] = 484, - [5055] = 485, - [5056] = 2614, - [5057] = 2616, - [5058] = 5058, - [5059] = 1797, - [5060] = 1798, - [5061] = 4936, - [5062] = 4937, - [5063] = 4938, - [5064] = 481, - [5065] = 589, - [5066] = 5066, - [5067] = 1800, - [5068] = 1801, - [5069] = 5069, - [5070] = 546, - [5071] = 5071, - [5072] = 547, - [5073] = 548, + [5043] = 434, + [5044] = 5044, + [5045] = 5045, + [5046] = 263, + [5047] = 5047, + [5048] = 5048, + [5049] = 5049, + [5050] = 264, + [5051] = 5030, + [5052] = 558, + [5053] = 5053, + [5054] = 211, + [5055] = 427, + [5056] = 5056, + [5057] = 529, + [5058] = 265, + [5059] = 429, + [5060] = 266, + [5061] = 534, + [5062] = 214, + [5063] = 507, + [5064] = 5064, + [5065] = 5018, + [5066] = 549, + [5067] = 1924, + [5068] = 5068, + [5069] = 4872, + [5070] = 538, + [5071] = 2125, + [5072] = 5072, + [5073] = 430, [5074] = 5074, - [5075] = 5075, - [5076] = 549, - [5077] = 550, - [5078] = 5078, - [5079] = 551, - [5080] = 5080, - [5081] = 552, + [5075] = 496, + [5076] = 431, + [5077] = 436, + [5078] = 477, + [5079] = 4915, + [5080] = 2134, + [5081] = 217, [5082] = 5082, - [5083] = 553, - [5084] = 554, - [5085] = 5085, - [5086] = 555, - [5087] = 556, - [5088] = 557, - [5089] = 558, - [5090] = 559, - [5091] = 523, - [5092] = 560, - [5093] = 561, - [5094] = 562, + [5083] = 5083, + [5084] = 5084, + [5085] = 5018, + [5086] = 5086, + [5087] = 559, + [5088] = 2605, + [5089] = 218, + [5090] = 5090, + [5091] = 492, + [5092] = 437, + [5093] = 544, + [5094] = 5094, [5095] = 5095, - [5096] = 563, - [5097] = 5097, - [5098] = 5098, - [5099] = 547, - [5100] = 177, - [5101] = 548, - [5102] = 549, - [5103] = 550, - [5104] = 551, - [5105] = 552, - [5106] = 553, - [5107] = 554, - [5108] = 555, - [5109] = 556, - [5110] = 557, - [5111] = 558, - [5112] = 559, - [5113] = 560, - [5114] = 561, - [5115] = 562, - [5116] = 563, - [5117] = 564, - [5118] = 4969, - [5119] = 436, - [5120] = 4970, - [5121] = 469, - [5122] = 5122, - [5123] = 5123, - [5124] = 5124, - [5125] = 5125, + [5096] = 5096, + [5097] = 147, + [5098] = 149, + [5099] = 5099, + [5100] = 5100, + [5101] = 572, + [5102] = 4904, + [5103] = 573, + [5104] = 489, + [5105] = 574, + [5106] = 5106, + [5107] = 575, + [5108] = 488, + [5109] = 5109, + [5110] = 533, + [5111] = 548, + [5112] = 1940, + [5113] = 1943, + [5114] = 5114, + [5115] = 5115, + [5116] = 577, + [5117] = 578, + [5118] = 491, + [5119] = 486, + [5120] = 5120, + [5121] = 545, + [5122] = 517, + [5123] = 4958, + [5124] = 1946, + [5125] = 1947, [5126] = 5126, - [5127] = 5127, - [5128] = 495, - [5129] = 520, - [5130] = 5130, - [5131] = 5131, - [5132] = 5132, - [5133] = 3097, - [5134] = 3087, - [5135] = 5025, - [5136] = 4866, - [5137] = 5137, - [5138] = 488, - [5139] = 489, + [5127] = 561, + [5128] = 579, + [5129] = 580, + [5130] = 581, + [5131] = 582, + [5132] = 583, + [5133] = 584, + [5134] = 585, + [5135] = 5135, + [5136] = 1899, + [5137] = 499, + [5138] = 5072, + [5139] = 5139, [5140] = 5140, - [5141] = 5141, - [5142] = 3102, - [5143] = 5143, + [5141] = 4951, + [5142] = 5142, + [5143] = 4877, [5144] = 5144, - [5145] = 5145, + [5145] = 504, [5146] = 5146, - [5147] = 472, - [5148] = 480, - [5149] = 5015, - [5150] = 5150, - [5151] = 5151, - [5152] = 5152, - [5153] = 5153, + [5147] = 5147, + [5148] = 5148, + [5149] = 202, + [5150] = 539, + [5151] = 231, + [5152] = 5106, + [5153] = 5109, [5154] = 5154, - [5155] = 2525, - [5156] = 484, - [5157] = 485, - [5158] = 516, - [5159] = 183, - [5160] = 5160, - [5161] = 180, - [5162] = 5041, - [5163] = 184, - [5164] = 5097, - [5165] = 5165, + [5155] = 5140, + [5156] = 241, + [5157] = 5157, + [5158] = 541, + [5159] = 5159, + [5160] = 546, + [5161] = 5161, + [5162] = 5162, + [5163] = 219, + [5164] = 5159, + [5165] = 191, [5166] = 5166, [5167] = 5167, - [5168] = 183, - [5169] = 5169, - [5170] = 3031, - [5171] = 180, + [5168] = 5168, + [5169] = 519, + [5170] = 5170, + [5171] = 5171, [5172] = 5172, - [5173] = 4971, - [5174] = 4972, - [5175] = 182, - [5176] = 5176, - [5177] = 5177, - [5178] = 182, - [5179] = 5179, - [5180] = 5180, - [5181] = 5181, - [5182] = 5182, - [5183] = 5183, + [5173] = 1407, + [5174] = 535, + [5175] = 5175, + [5176] = 191, + [5177] = 523, + [5178] = 5168, + [5179] = 525, + [5180] = 421, + [5181] = 547, + [5182] = 550, + [5183] = 190, [5184] = 5184, - [5185] = 5185, - [5186] = 5186, - [5187] = 5187, - [5188] = 5188, - [5189] = 5189, + [5185] = 1904, + [5186] = 536, + [5187] = 4895, + [5188] = 556, + [5189] = 1880, [5190] = 5190, - [5191] = 5191, - [5192] = 5042, - [5193] = 178, + [5191] = 1883, + [5192] = 5192, + [5193] = 5193, [5194] = 5194, - [5195] = 5195, - [5196] = 5017, - [5197] = 5197, - [5198] = 5165, + [5195] = 2142, + [5196] = 576, + [5197] = 2635, + [5198] = 5115, [5199] = 5199, - [5200] = 194, + [5200] = 5200, [5201] = 5201, - [5202] = 5152, - [5203] = 1303, - [5204] = 193, + [5202] = 537, + [5203] = 538, + [5204] = 152, [5205] = 5205, - [5206] = 5206, - [5207] = 195, - [5208] = 177, + [5206] = 430, + [5207] = 431, + [5208] = 218, [5209] = 5209, - [5210] = 5210, - [5211] = 5211, - [5212] = 5212, + [5210] = 507, + [5211] = 539, + [5212] = 540, [5213] = 5213, [5214] = 5214, [5215] = 5215, - [5216] = 178, + [5216] = 541, [5217] = 5217, [5218] = 5218, - [5219] = 5219, + [5219] = 5095, [5220] = 5220, - [5221] = 5221, + [5221] = 543, [5222] = 5222, [5223] = 5223, [5224] = 5224, - [5225] = 5225, - [5226] = 5226, - [5227] = 2614, - [5228] = 2616, - [5229] = 5229, - [5230] = 4933, + [5225] = 5083, + [5226] = 5094, + [5227] = 488, + [5228] = 5084, + [5229] = 194, + [5230] = 5230, [5231] = 5231, - [5232] = 4935, - [5233] = 185, - [5234] = 424, - [5235] = 5235, - [5236] = 5236, + [5232] = 5232, + [5233] = 544, + [5234] = 5234, + [5235] = 150, + [5236] = 217, [5237] = 5237, - [5238] = 2591, - [5239] = 5012, + [5238] = 5238, + [5239] = 151, [5240] = 5240, - [5241] = 189, - [5242] = 191, - [5243] = 177, + [5241] = 5241, + [5242] = 3149, + [5243] = 5243, [5244] = 5244, - [5245] = 4956, - [5246] = 4957, - [5247] = 2995, - [5248] = 187, - [5249] = 181, - [5250] = 5201, - [5251] = 4960, - [5252] = 5252, - [5253] = 137, - [5254] = 136, - [5255] = 138, - [5256] = 4962, - [5257] = 187, - [5258] = 493, - [5259] = 5259, - [5260] = 184, - [5261] = 544, - [5262] = 5262, - [5263] = 2552, - [5264] = 2507, - [5265] = 2532, - [5266] = 189, - [5267] = 191, - [5268] = 194, - [5269] = 193, - [5270] = 195, - [5271] = 181, + [5245] = 492, + [5246] = 211, + [5247] = 476, + [5248] = 504, + [5249] = 5249, + [5250] = 5193, + [5251] = 194, + [5252] = 2605, + [5253] = 5253, + [5254] = 5064, + [5255] = 5082, + [5256] = 5256, + [5257] = 5257, + [5258] = 3180, + [5259] = 535, + [5260] = 5260, + [5261] = 5261, + [5262] = 421, + [5263] = 486, + [5264] = 192, + [5265] = 5096, + [5266] = 196, + [5267] = 545, + [5268] = 546, + [5269] = 547, + [5270] = 5270, + [5271] = 5271, [5272] = 5272, - [5273] = 5273, - [5274] = 1390, - [5275] = 5275, - [5276] = 189, - [5277] = 191, - [5278] = 194, - [5279] = 193, - [5280] = 195, - [5281] = 353, + [5273] = 519, + [5274] = 5274, + [5275] = 522, + [5276] = 5276, + [5277] = 196, + [5278] = 5278, + [5279] = 548, + [5280] = 549, + [5281] = 436, [5282] = 5282, - [5283] = 4754, - [5284] = 5284, - [5285] = 4940, - [5286] = 505, - [5287] = 507, - [5288] = 545, - [5289] = 5289, - [5290] = 438, + [5283] = 5283, + [5284] = 550, + [5285] = 5157, + [5286] = 556, + [5287] = 5287, + [5288] = 427, + [5289] = 5120, + [5290] = 534, [5291] = 5291, - [5292] = 453, - [5293] = 454, - [5294] = 5031, + [5292] = 557, + [5293] = 558, + [5294] = 5294, [5295] = 5295, - [5296] = 481, - [5297] = 177, + [5296] = 263, + [5297] = 207, [5298] = 5298, - [5299] = 589, - [5300] = 546, - [5301] = 5013, - [5302] = 523, - [5303] = 128, - [5304] = 191, - [5305] = 5305, + [5299] = 5299, + [5300] = 5300, + [5301] = 529, + [5302] = 5302, + [5303] = 5303, + [5304] = 5304, + [5305] = 5142, [5306] = 5306, - [5307] = 1303, - [5308] = 5308, - [5309] = 201, - [5310] = 201, - [5311] = 1293, - [5312] = 192, - [5313] = 178, - [5314] = 183, - [5315] = 526, - [5316] = 527, - [5317] = 4996, - [5318] = 4997, - [5319] = 1303, + [5307] = 5307, + [5308] = 5243, + [5309] = 5309, + [5310] = 5310, + [5311] = 5311, + [5312] = 517, + [5313] = 5313, + [5314] = 206, + [5315] = 2470, + [5316] = 207, + [5317] = 208, + [5318] = 198, + [5319] = 5319, [5320] = 5320, - [5321] = 528, - [5322] = 529, - [5323] = 530, - [5324] = 531, - [5325] = 1293, - [5326] = 180, - [5327] = 177, - [5328] = 5328, - [5329] = 186, - [5330] = 194, - [5331] = 193, - [5332] = 195, - [5333] = 525, + [5321] = 191, + [5322] = 5322, + [5323] = 5323, + [5324] = 5241, + [5325] = 5325, + [5326] = 5326, + [5327] = 536, + [5328] = 266, + [5329] = 5329, + [5330] = 428, + [5331] = 5331, + [5332] = 5332, + [5333] = 5333, [5334] = 5334, - [5335] = 532, - [5336] = 533, - [5337] = 534, - [5338] = 535, - [5339] = 536, - [5340] = 537, - [5341] = 538, - [5342] = 2532, + [5335] = 5335, + [5336] = 5056, + [5337] = 5337, + [5338] = 5338, + [5339] = 434, + [5340] = 5340, + [5341] = 5341, + [5342] = 5342, [5343] = 5343, [5344] = 5344, [5345] = 5345, - [5346] = 309, - [5347] = 312, - [5348] = 318, - [5349] = 319, - [5350] = 320, - [5351] = 321, - [5352] = 322, - [5353] = 323, - [5354] = 324, - [5355] = 325, - [5356] = 326, - [5357] = 327, - [5358] = 328, - [5359] = 329, - [5360] = 330, - [5361] = 331, - [5362] = 332, - [5363] = 333, - [5364] = 334, - [5365] = 335, - [5366] = 314, - [5367] = 315, - [5368] = 2614, - [5369] = 5320, - [5370] = 5370, - [5371] = 3097, - [5372] = 2507, - [5373] = 182, - [5374] = 178, - [5375] = 180, + [5346] = 206, + [5347] = 5347, + [5348] = 208, + [5349] = 198, + [5350] = 5304, + [5351] = 5231, + [5352] = 265, + [5353] = 5126, + [5354] = 5354, + [5355] = 3137, + [5356] = 195, + [5357] = 5135, + [5358] = 301, + [5359] = 5359, + [5360] = 5360, + [5361] = 5361, + [5362] = 5362, + [5363] = 496, + [5364] = 437, + [5365] = 5190, + [5366] = 5366, + [5367] = 477, + [5368] = 264, + [5369] = 533, + [5370] = 5148, + [5371] = 5371, + [5372] = 192, + [5373] = 5042, + [5374] = 5374, + [5375] = 5018, [5376] = 5376, - [5377] = 204, - [5378] = 5378, - [5379] = 2616, - [5380] = 2527, - [5381] = 177, - [5382] = 5382, - [5383] = 197, - [5384] = 449, - [5385] = 5320, - [5386] = 183, - [5387] = 5387, - [5388] = 180, + [5377] = 195, + [5378] = 441, + [5379] = 5379, + [5380] = 1407, + [5381] = 5272, + [5382] = 523, + [5383] = 5383, + [5384] = 525, + [5385] = 429, + [5386] = 5386, + [5387] = 5194, + [5388] = 5114, [5389] = 5389, - [5390] = 5390, - [5391] = 2591, - [5392] = 5308, - [5393] = 2136, - [5394] = 182, - [5395] = 2110, - [5396] = 1303, - [5397] = 5397, - [5398] = 5398, - [5399] = 5399, - [5400] = 5400, - [5401] = 5401, - [5402] = 5402, - [5403] = 5403, + [5390] = 214, + [5391] = 5391, + [5392] = 5392, + [5393] = 2638, + [5394] = 5394, + [5395] = 5395, + [5396] = 5396, + [5397] = 202, + [5398] = 196, + [5399] = 576, + [5400] = 5396, + [5401] = 196, + [5402] = 191, + [5403] = 5396, [5404] = 5404, [5405] = 5405, - [5406] = 5406, - [5407] = 5407, + [5406] = 194, + [5407] = 5396, [5408] = 5408, - [5409] = 5409, - [5410] = 5320, - [5411] = 5411, - [5412] = 197, - [5413] = 177, + [5409] = 561, + [5410] = 194, + [5411] = 577, + [5412] = 5412, + [5413] = 574, [5414] = 5414, [5415] = 5415, - [5416] = 5320, - [5417] = 183, - [5418] = 180, - [5419] = 5419, - [5420] = 1390, - [5421] = 5421, - [5422] = 178, - [5423] = 182, - [5424] = 5025, - [5425] = 182, - [5426] = 2120, - [5427] = 2552, - [5428] = 189, - [5429] = 204, - [5430] = 178, - [5431] = 183, - [5432] = 5320, - [5433] = 192, - [5434] = 192, - [5435] = 5167, - [5436] = 5436, - [5437] = 5437, - [5438] = 5177, - [5439] = 326, - [5440] = 5184, - [5441] = 5441, - [5442] = 1390, - [5443] = 5437, - [5444] = 5387, - [5445] = 322, - [5446] = 180, - [5447] = 2552, - [5448] = 332, - [5449] = 335, - [5450] = 192, - [5451] = 5179, - [5452] = 212, - [5453] = 1390, - [5454] = 128, - [5455] = 329, - [5456] = 197, - [5457] = 204, - [5458] = 178, - [5459] = 309, - [5460] = 215, - [5461] = 177, - [5462] = 204, - [5463] = 197, - [5464] = 312, - [5465] = 330, - [5466] = 3557, - [5467] = 327, - [5468] = 201, - [5469] = 197, - [5470] = 334, - [5471] = 197, - [5472] = 5190, - [5473] = 210, - [5474] = 178, - [5475] = 328, - [5476] = 331, - [5477] = 2552, - [5478] = 2507, - [5479] = 2532, - [5480] = 5436, - [5481] = 189, - [5482] = 183, - [5483] = 180, - [5484] = 182, - [5485] = 320, - [5486] = 183, - [5487] = 201, - [5488] = 1303, - [5489] = 314, - [5490] = 128, - [5491] = 5305, - [5492] = 177, - [5493] = 321, - [5494] = 1390, - [5495] = 5306, - [5496] = 221, - [5497] = 201, - [5498] = 128, - [5499] = 129, - [5500] = 333, - [5501] = 323, - [5502] = 204, - [5503] = 182, - [5504] = 5441, - [5505] = 5404, - [5506] = 1293, - [5507] = 183, - [5508] = 180, - [5509] = 130, - [5510] = 324, - [5511] = 325, - [5512] = 315, - [5513] = 204, - [5514] = 182, - [5515] = 5182, - [5516] = 318, - [5517] = 5183, - [5518] = 178, - [5519] = 5382, - [5520] = 319, - [5521] = 201, - [5522] = 5522, - [5523] = 210, - [5524] = 5524, - [5525] = 5525, - [5526] = 5526, - [5527] = 5527, - [5528] = 5528, - [5529] = 5529, - [5530] = 5530, - [5531] = 5531, - [5532] = 5532, - [5533] = 954, - [5534] = 5534, - [5535] = 129, - [5536] = 207, - [5537] = 134, - [5538] = 135, - [5539] = 133, - [5540] = 5540, - [5541] = 5522, - [5542] = 1293, - [5543] = 5543, - [5544] = 5522, - [5545] = 5545, - [5546] = 5546, - [5547] = 5547, - [5548] = 5548, - [5549] = 5549, - [5550] = 1617, - [5551] = 5551, - [5552] = 130, - [5553] = 204, - [5554] = 5554, - [5555] = 5555, - [5556] = 197, - [5557] = 201, - [5558] = 221, - [5559] = 5551, - [5560] = 5560, - [5561] = 5540, - [5562] = 235, - [5563] = 129, - [5564] = 130, - [5565] = 5543, - [5566] = 1653, - [5567] = 1303, - [5568] = 1303, - [5569] = 5569, - [5570] = 221, - [5571] = 236, - [5572] = 5572, - [5573] = 5573, - [5574] = 5574, - [5575] = 5575, + [5416] = 5416, + [5417] = 196, + [5418] = 5418, + [5419] = 5396, + [5420] = 2142, + [5421] = 571, + [5422] = 194, + [5423] = 579, + [5424] = 5396, + [5425] = 578, + [5426] = 5426, + [5427] = 5427, + [5428] = 2125, + [5429] = 5429, + [5430] = 5430, + [5431] = 580, + [5432] = 581, + [5433] = 5433, + [5434] = 582, + [5435] = 5435, + [5436] = 583, + [5437] = 2635, + [5438] = 575, + [5439] = 584, + [5440] = 5440, + [5441] = 585, + [5442] = 2134, + [5443] = 5443, + [5444] = 5444, + [5445] = 2470, + [5446] = 203, + [5447] = 5447, + [5448] = 5448, + [5449] = 194, + [5450] = 5396, + [5451] = 5451, + [5452] = 5452, + [5453] = 573, + [5454] = 5086, + [5455] = 202, + [5456] = 381, + [5457] = 5090, + [5458] = 2559, + [5459] = 2570, + [5460] = 206, + [5461] = 207, + [5462] = 208, + [5463] = 198, + [5464] = 559, + [5465] = 196, + [5466] = 5466, + [5467] = 5396, + [5468] = 5412, + [5469] = 5469, + [5470] = 5470, + [5471] = 5471, + [5472] = 2470, + [5473] = 2638, + [5474] = 5474, + [5475] = 3149, + [5476] = 203, + [5477] = 5477, + [5478] = 572, + [5479] = 5479, + [5480] = 5396, + [5481] = 5481, + [5482] = 5482, + [5483] = 5483, + [5484] = 5484, + [5485] = 5485, + [5486] = 5486, + [5487] = 5487, + [5488] = 194, + [5489] = 2664, + [5490] = 196, + [5491] = 5491, + [5492] = 2559, + [5493] = 5493, + [5494] = 5494, + [5495] = 221, + [5496] = 5496, + [5497] = 5371, + [5498] = 1407, + [5499] = 5499, + [5500] = 211, + [5501] = 5501, + [5502] = 214, + [5503] = 5486, + [5504] = 5487, + [5505] = 5505, + [5506] = 5506, + [5507] = 2570, + [5508] = 217, + [5509] = 218, + [5510] = 5493, + [5511] = 5494, + [5512] = 5474, + [5513] = 202, + [5514] = 203, + [5515] = 202, + [5516] = 5516, + [5517] = 5485, + [5518] = 5444, + [5519] = 202, + [5520] = 203, + [5521] = 142, + [5522] = 5299, + [5523] = 206, + [5524] = 5300, + [5525] = 143, + [5526] = 5516, + [5527] = 210, + [5528] = 203, + [5529] = 5491, + [5530] = 204, + [5531] = 1407, + [5532] = 221, + [5533] = 5341, + [5534] = 142, + [5535] = 5486, + [5536] = 5487, + [5537] = 5505, + [5538] = 5506, + [5539] = 211, + [5540] = 214, + [5541] = 5493, + [5542] = 5494, + [5543] = 207, + [5544] = 208, + [5545] = 198, + [5546] = 217, + [5547] = 218, + [5548] = 5516, + [5549] = 5485, + [5550] = 5427, + [5551] = 5466, + [5552] = 5505, + [5553] = 5506, + [5554] = 5484, + [5555] = 219, + [5556] = 5501, + [5557] = 5487, + [5558] = 5493, + [5559] = 5494, + [5560] = 5493, + [5561] = 5494, + [5562] = 5493, + [5563] = 5494, + [5564] = 5564, + [5565] = 202, + [5566] = 5334, + [5567] = 203, + [5568] = 194, + [5569] = 196, + [5570] = 5564, + [5571] = 2559, + [5572] = 2570, + [5573] = 5333, + [5574] = 5335, + [5575] = 144, [5576] = 5576, - [5577] = 237, + [5577] = 214, [5578] = 5578, - [5579] = 183, - [5580] = 180, - [5581] = 128, - [5582] = 5551, - [5583] = 5560, - [5584] = 5584, - [5585] = 5555, - [5586] = 5586, - [5587] = 5587, - [5588] = 5588, - [5589] = 5589, + [5579] = 202, + [5580] = 5580, + [5581] = 5578, + [5582] = 5582, + [5583] = 219, + [5584] = 3697, + [5585] = 5576, + [5586] = 210, + [5587] = 217, + [5588] = 5582, + [5589] = 5576, [5590] = 5590, [5591] = 5591, - [5592] = 5592, - [5593] = 183, - [5594] = 180, - [5595] = 5522, - [5596] = 5543, - [5597] = 5555, - [5598] = 5540, - [5599] = 5551, - [5600] = 210, - [5601] = 207, + [5592] = 210, + [5593] = 147, + [5594] = 5594, + [5595] = 149, + [5596] = 5582, + [5597] = 5597, + [5598] = 5598, + [5599] = 5578, + [5600] = 5580, + [5601] = 5601, [5602] = 5602, - [5603] = 5522, - [5604] = 5543, - [5605] = 5555, - [5606] = 5540, - [5607] = 5551, - [5608] = 5555, - [5609] = 5551, - [5610] = 182, - [5611] = 5555, - [5612] = 5551, - [5613] = 5555, - [5614] = 5551, - [5615] = 5555, - [5616] = 5551, - [5617] = 192, - [5618] = 5555, - [5619] = 5551, - [5620] = 5555, - [5621] = 5551, - [5622] = 5555, - [5623] = 5551, - [5624] = 5555, - [5625] = 5551, - [5626] = 221, - [5627] = 204, - [5628] = 182, - [5629] = 5555, - [5630] = 207, - [5631] = 204, - [5632] = 212, - [5633] = 212, - [5634] = 197, - [5635] = 5551, - [5636] = 5560, - [5637] = 197, - [5638] = 210, - [5639] = 201, - [5640] = 178, - [5641] = 201, - [5642] = 212, - [5643] = 5602, - [5644] = 5560, - [5645] = 5645, - [5646] = 5646, - [5647] = 5647, - [5648] = 5648, - [5649] = 5522, - [5650] = 5543, - [5651] = 5651, - [5652] = 5551, - [5653] = 5551, - [5654] = 5560, - [5655] = 178, - [5656] = 5560, - [5657] = 1293, - [5658] = 5543, - [5659] = 5551, - [5660] = 5660, - [5661] = 5661, - [5662] = 131, - [5663] = 132, - [5664] = 5664, - [5665] = 5522, - [5666] = 3557, - [5667] = 135, - [5668] = 324, - [5669] = 1800, - [5670] = 1801, - [5671] = 325, - [5672] = 1617, - [5673] = 1798, - [5674] = 326, - [5675] = 2806, - [5676] = 134, - [5677] = 327, - [5678] = 133, - [5679] = 224, - [5680] = 5680, - [5681] = 309, - [5682] = 215, - [5683] = 312, - [5684] = 318, - [5685] = 319, - [5686] = 320, - [5687] = 321, - [5688] = 322, - [5689] = 323, - [5690] = 324, - [5691] = 325, - [5692] = 326, - [5693] = 327, - [5694] = 328, - [5695] = 329, - [5696] = 330, - [5697] = 331, - [5698] = 332, - [5699] = 333, - [5700] = 334, - [5701] = 335, - [5702] = 314, - [5703] = 207, - [5704] = 315, - [5705] = 1390, - [5706] = 328, - [5707] = 1795, - [5708] = 1796, - [5709] = 329, - [5710] = 201, - [5711] = 436, - [5712] = 1653, - [5713] = 1390, - [5714] = 330, - [5715] = 5715, - [5716] = 5716, - [5717] = 5717, - [5718] = 236, - [5719] = 5680, - [5720] = 131, - [5721] = 5404, - [5722] = 207, - [5723] = 331, - [5724] = 132, - [5725] = 438, - [5726] = 5726, - [5727] = 221, - [5728] = 204, - [5729] = 230, - [5730] = 135, - [5731] = 5680, - [5732] = 333, - [5733] = 212, - [5734] = 230, - [5735] = 334, - [5736] = 319, - [5737] = 453, - [5738] = 454, - [5739] = 320, - [5740] = 335, - [5741] = 1793, - [5742] = 1794, - [5743] = 5404, - [5744] = 210, - [5745] = 204, - [5746] = 2843, - [5747] = 237, - [5748] = 235, - [5749] = 1303, - [5750] = 235, - [5751] = 318, - [5752] = 1293, - [5753] = 314, - [5754] = 236, - [5755] = 321, - [5756] = 207, - [5757] = 224, - [5758] = 197, - [5759] = 237, - [5760] = 201, - [5761] = 236, - [5762] = 133, - [5763] = 5717, - [5764] = 1693, - [5765] = 1753, - [5766] = 5717, - [5767] = 131, - [5768] = 309, - [5769] = 132, - [5770] = 322, - [5771] = 128, - [5772] = 323, - [5773] = 197, - [5774] = 424, - [5775] = 128, - [5776] = 237, - [5777] = 1018, - [5778] = 137, - [5779] = 235, - [5780] = 134, - [5781] = 1797, - [5782] = 315, - [5783] = 136, - [5784] = 138, - [5785] = 1293, - [5786] = 989, - [5787] = 5787, - [5788] = 312, - [5789] = 954, - [5790] = 1792, - [5791] = 332, - [5792] = 192, - [5793] = 237, - [5794] = 192, - [5795] = 2903, - [5796] = 327, - [5797] = 328, - [5798] = 454, - [5799] = 329, - [5800] = 330, - [5801] = 325, - [5802] = 5802, - [5803] = 309, - [5804] = 315, - [5805] = 2136, - [5806] = 438, - [5807] = 312, - [5808] = 2843, - [5809] = 130, - [5810] = 333, - [5811] = 5811, - [5812] = 2120, - [5813] = 5802, - [5814] = 1390, - [5815] = 287, - [5816] = 335, - [5817] = 5817, - [5818] = 5818, - [5819] = 5819, - [5820] = 5820, - [5821] = 5821, - [5822] = 5822, - [5823] = 319, - [5824] = 471, - [5825] = 318, - [5826] = 137, - [5827] = 315, - [5828] = 2110, - [5829] = 5829, - [5830] = 5830, - [5831] = 5831, - [5832] = 424, - [5833] = 5833, + [5603] = 5603, + [5604] = 5604, + [5605] = 5605, + [5606] = 5606, + [5607] = 241, + [5608] = 5608, + [5609] = 218, + [5610] = 5610, + [5611] = 5576, + [5612] = 5612, + [5613] = 5582, + [5614] = 5614, + [5615] = 5615, + [5616] = 5616, + [5617] = 5617, + [5618] = 5618, + [5619] = 5619, + [5620] = 5620, + [5621] = 5621, + [5622] = 211, + [5623] = 5623, + [5624] = 5624, + [5625] = 5620, + [5626] = 5626, + [5627] = 5615, + [5628] = 210, + [5629] = 5582, + [5630] = 5576, + [5631] = 5631, + [5632] = 194, + [5633] = 5633, + [5634] = 196, + [5635] = 5582, + [5636] = 214, + [5637] = 5578, + [5638] = 5580, + [5639] = 5639, + [5640] = 5640, + [5641] = 217, + [5642] = 5615, + [5643] = 5620, + [5644] = 5582, + [5645] = 218, + [5646] = 5620, + [5647] = 1607, + [5648] = 143, + [5649] = 5582, + [5650] = 211, + [5651] = 1407, + [5652] = 5615, + [5653] = 5582, + [5654] = 5654, + [5655] = 5615, + [5656] = 5582, + [5657] = 5615, + [5658] = 5582, + [5659] = 5615, + [5660] = 5582, + [5661] = 211, + [5662] = 5662, + [5663] = 5615, + [5664] = 5582, + [5665] = 203, + [5666] = 5615, + [5667] = 5582, + [5668] = 214, + [5669] = 5615, + [5670] = 5582, + [5671] = 211, + [5672] = 217, + [5673] = 5615, + [5674] = 218, + [5675] = 219, + [5676] = 202, + [5677] = 219, + [5678] = 203, + [5679] = 1616, + [5680] = 214, + [5681] = 5681, + [5682] = 5682, + [5683] = 5683, + [5684] = 5684, + [5685] = 144, + [5686] = 5633, + [5687] = 217, + [5688] = 5688, + [5689] = 5689, + [5690] = 5690, + [5691] = 5691, + [5692] = 5692, + [5693] = 5693, + [5694] = 5694, + [5695] = 5578, + [5696] = 5580, + [5697] = 5582, + [5698] = 5578, + [5699] = 5615, + [5700] = 5580, + [5701] = 218, + [5702] = 231, + [5703] = 5582, + [5704] = 5576, + [5705] = 5580, + [5706] = 5615, + [5707] = 202, + [5708] = 1880, + [5709] = 5709, + [5710] = 5709, + [5711] = 152, + [5712] = 305, + [5713] = 1883, + [5714] = 1924, + [5715] = 306, + [5716] = 221, + [5717] = 264, + [5718] = 145, + [5719] = 231, + [5720] = 231, + [5721] = 1407, + [5722] = 331, + [5723] = 344, + [5724] = 345, + [5725] = 346, + [5726] = 347, + [5727] = 349, + [5728] = 350, + [5729] = 296, + [5730] = 322, + [5731] = 336, + [5732] = 312, + [5733] = 317, + [5734] = 321, + [5735] = 295, + [5736] = 351, + [5737] = 325, + [5738] = 326, + [5739] = 328, + [5740] = 302, + [5741] = 214, + [5742] = 304, + [5743] = 142, + [5744] = 302, + [5745] = 304, + [5746] = 331, + [5747] = 344, + [5748] = 345, + [5749] = 346, + [5750] = 347, + [5751] = 349, + [5752] = 350, + [5753] = 296, + [5754] = 322, + [5755] = 336, + [5756] = 312, + [5757] = 317, + [5758] = 321, + [5759] = 295, + [5760] = 351, + [5761] = 325, + [5762] = 326, + [5763] = 328, + [5764] = 305, + [5765] = 306, + [5766] = 231, + [5767] = 219, + [5768] = 265, + [5769] = 147, + [5770] = 1899, + [5771] = 149, + [5772] = 1904, + [5773] = 217, + [5774] = 150, + [5775] = 151, + [5776] = 241, + [5777] = 266, + [5778] = 241, + [5779] = 148, + [5780] = 1607, + [5781] = 302, + [5782] = 5709, + [5783] = 1010, + [5784] = 218, + [5785] = 5484, + [5786] = 5484, + [5787] = 203, + [5788] = 328, + [5789] = 5789, + [5790] = 427, + [5791] = 1616, + [5792] = 304, + [5793] = 1407, + [5794] = 1940, + [5795] = 1943, + [5796] = 5796, + [5797] = 211, + [5798] = 142, + [5799] = 331, + [5800] = 241, + [5801] = 146, + [5802] = 3697, + [5803] = 211, + [5804] = 429, + [5805] = 5789, + [5806] = 214, + [5807] = 430, + [5808] = 431, + [5809] = 5809, + [5810] = 217, + [5811] = 218, + [5812] = 344, + [5813] = 345, + [5814] = 5814, + [5815] = 346, + [5816] = 347, + [5817] = 1684, + [5818] = 349, + [5819] = 350, + [5820] = 1698, + [5821] = 1946, + [5822] = 1947, + [5823] = 296, + [5824] = 322, + [5825] = 336, + [5826] = 312, + [5827] = 317, + [5828] = 321, + [5829] = 295, + [5830] = 263, + [5831] = 441, + [5832] = 210, + [5833] = 351, [5834] = 5834, - [5835] = 207, - [5836] = 129, - [5837] = 5837, - [5838] = 1018, - [5839] = 129, - [5840] = 334, - [5841] = 5841, - [5842] = 436, - [5843] = 332, - [5844] = 136, - [5845] = 321, - [5846] = 138, - [5847] = 5404, - [5848] = 136, - [5849] = 322, - [5850] = 138, - [5851] = 5851, - [5852] = 2806, - [5853] = 314, - [5854] = 1753, - [5855] = 5837, - [5856] = 5856, - [5857] = 323, - [5858] = 324, - [5859] = 5820, - [5860] = 2895, - [5861] = 989, - [5862] = 320, - [5863] = 331, - [5864] = 311, - [5865] = 128, - [5866] = 137, - [5867] = 326, - [5868] = 5834, - [5869] = 5817, - [5870] = 5819, - [5871] = 5822, - [5872] = 235, - [5873] = 5821, - [5874] = 453, - [5875] = 314, - [5876] = 1693, - [5877] = 5818, - [5878] = 5878, - [5879] = 192, - [5880] = 954, - [5881] = 288, - [5882] = 5829, - [5883] = 5831, - [5884] = 5833, - [5885] = 5851, - [5886] = 236, - [5887] = 130, - [5888] = 129, - [5889] = 5889, - [5890] = 547, - [5891] = 5891, - [5892] = 5889, - [5893] = 212, - [5894] = 5894, - [5895] = 5895, - [5896] = 548, - [5897] = 5897, - [5898] = 5898, - [5899] = 549, + [5835] = 325, + [5836] = 326, + [5837] = 5789, + [5838] = 427, + [5839] = 340, + [5840] = 1232, + [5841] = 341, + [5842] = 1407, + [5843] = 262, + [5844] = 5844, + [5845] = 152, + [5846] = 263, + [5847] = 5847, + [5848] = 1684, + [5849] = 150, + [5850] = 5850, + [5851] = 151, + [5852] = 331, + [5853] = 262, + [5854] = 5854, + [5855] = 295, + [5856] = 325, + [5857] = 5857, + [5858] = 5850, + [5859] = 2991, + [5860] = 5854, + [5861] = 5857, + [5862] = 2134, + [5863] = 263, + [5864] = 429, + [5865] = 5865, + [5866] = 326, + [5867] = 5867, + [5868] = 265, + [5869] = 430, + [5870] = 431, + [5871] = 265, + [5872] = 351, + [5873] = 263, + [5874] = 302, + [5875] = 142, + [5876] = 2972, + [5877] = 305, + [5878] = 1010, + [5879] = 306, + [5880] = 265, + [5881] = 266, + [5882] = 5882, + [5883] = 5883, + [5884] = 5884, + [5885] = 2946, + [5886] = 5884, + [5887] = 1407, + [5888] = 5888, + [5889] = 328, + [5890] = 5890, + [5891] = 304, + [5892] = 5888, + [5893] = 264, + [5894] = 5844, + [5895] = 5883, + [5896] = 344, + [5897] = 305, + [5898] = 143, + [5899] = 144, [5900] = 5900, - [5901] = 550, - [5902] = 128, - [5903] = 129, - [5904] = 5889, - [5905] = 5891, - [5906] = 5906, - [5907] = 551, - [5908] = 552, - [5909] = 5895, - [5910] = 1793, - [5911] = 5898, - [5912] = 5900, - [5913] = 553, - [5914] = 554, - [5915] = 5895, - [5916] = 5889, - [5917] = 5891, - [5918] = 131, - [5919] = 555, - [5920] = 556, - [5921] = 557, - [5922] = 5895, - [5923] = 1617, - [5924] = 5898, - [5925] = 5925, - [5926] = 5900, - [5927] = 558, - [5928] = 183, - [5929] = 5889, - [5930] = 559, - [5931] = 5891, - [5932] = 5932, - [5933] = 523, - [5934] = 560, - [5935] = 5895, - [5936] = 561, - [5937] = 5898, - [5938] = 562, - [5939] = 5900, - [5940] = 5940, - [5941] = 5941, - [5942] = 5878, - [5943] = 5889, - [5944] = 563, - [5945] = 5891, - [5946] = 989, - [5947] = 212, - [5948] = 139, - [5949] = 564, - [5950] = 5895, - [5951] = 488, - [5952] = 5898, - [5953] = 489, - [5954] = 5900, - [5955] = 1794, - [5956] = 5889, - [5957] = 5957, - [5958] = 5891, - [5959] = 408, + [5901] = 345, + [5902] = 266, + [5903] = 211, + [5904] = 5847, + [5905] = 5865, + [5906] = 266, + [5907] = 214, + [5908] = 5908, + [5909] = 441, + [5910] = 142, + [5911] = 143, + [5912] = 144, + [5913] = 1698, + [5914] = 251, + [5915] = 5915, + [5916] = 5484, + [5917] = 2994, + [5918] = 217, + [5919] = 5919, + [5920] = 346, + [5921] = 347, + [5922] = 349, + [5923] = 350, + [5924] = 5924, + [5925] = 231, + [5926] = 342, + [5927] = 2142, + [5928] = 306, + [5929] = 218, + [5930] = 264, + [5931] = 264, + [5932] = 251, + [5933] = 321, + [5934] = 241, + [5935] = 2125, + [5936] = 5890, + [5937] = 5900, + [5938] = 5919, + [5939] = 296, + [5940] = 322, + [5941] = 336, + [5942] = 312, + [5943] = 317, + [5944] = 5944, + [5945] = 5945, + [5946] = 5946, + [5947] = 5947, + [5948] = 5948, + [5949] = 5945, + [5950] = 5950, + [5951] = 5951, + [5952] = 5952, + [5953] = 5953, + [5954] = 5954, + [5955] = 5955, + [5956] = 5956, + [5957] = 5945, + [5958] = 5958, + [5959] = 5959, [5960] = 5960, - [5961] = 5895, - [5962] = 5898, - [5963] = 5898, - [5964] = 1101, - [5965] = 5900, - [5966] = 505, - [5967] = 398, - [5968] = 5898, - [5969] = 5889, - [5970] = 5891, + [5961] = 5959, + [5962] = 5946, + [5963] = 5947, + [5964] = 5954, + [5965] = 1607, + [5966] = 308, + [5967] = 5953, + [5968] = 5954, + [5969] = 5955, + [5970] = 5956, [5971] = 5971, - [5972] = 4310, - [5973] = 5895, - [5974] = 5974, - [5975] = 5898, - [5976] = 356, - [5977] = 5900, - [5978] = 5978, - [5979] = 5979, - [5980] = 207, - [5981] = 5889, - [5982] = 5891, - [5983] = 472, - [5984] = 480, - [5985] = 5895, - [5986] = 5986, - [5987] = 5898, - [5988] = 5900, - [5989] = 5989, - [5990] = 5889, - [5991] = 5891, - [5992] = 5992, - [5993] = 5895, - [5994] = 5898, - [5995] = 5900, - [5996] = 5889, - [5997] = 5891, - [5998] = 5895, - [5999] = 1653, - [6000] = 5898, - [6001] = 5900, - [6002] = 5889, - [6003] = 5891, - [6004] = 1795, - [6005] = 6005, - [6006] = 406, - [6007] = 5900, - [6008] = 5889, - [6009] = 5891, - [6010] = 6010, - [6011] = 6011, - [6012] = 954, - [6013] = 5900, - [6014] = 5889, - [6015] = 5891, + [5972] = 5945, + [5973] = 5973, + [5974] = 1880, + [5975] = 5959, + [5976] = 5946, + [5977] = 210, + [5978] = 5953, + [5979] = 1946, + [5980] = 5954, + [5981] = 5955, + [5982] = 5956, + [5983] = 4401, + [5984] = 373, + [5985] = 5959, + [5986] = 5946, + [5987] = 5945, + [5988] = 5988, + [5989] = 5953, + [5990] = 5954, + [5991] = 5955, + [5992] = 5956, + [5993] = 5946, + [5994] = 5945, + [5995] = 1883, + [5996] = 5959, + [5997] = 5946, + [5998] = 194, + [5999] = 5999, + [6000] = 427, + [6001] = 5953, + [6002] = 5954, + [6003] = 5955, + [6004] = 5956, + [6005] = 5945, + [6006] = 5867, + [6007] = 3033, + [6008] = 6008, + [6009] = 5959, + [6010] = 5946, + [6011] = 3034, + [6012] = 6012, + [6013] = 5953, + [6014] = 5954, + [6015] = 5955, [6016] = 6016, - [6017] = 5900, - [6018] = 5889, - [6019] = 5891, - [6020] = 2991, - [6021] = 5900, - [6022] = 5889, - [6023] = 5891, - [6024] = 5891, - [6025] = 1800, - [6026] = 5891, - [6027] = 484, - [6028] = 5891, - [6029] = 5891, - [6030] = 5891, - [6031] = 5891, - [6032] = 5891, - [6033] = 5891, - [6034] = 5891, - [6035] = 5891, - [6036] = 5891, - [6037] = 5891, - [6038] = 5891, - [6039] = 5891, - [6040] = 5891, - [6041] = 5891, - [6042] = 5891, - [6043] = 5891, - [6044] = 6044, - [6045] = 5891, - [6046] = 5891, - [6047] = 5891, - [6048] = 5891, - [6049] = 5891, - [6050] = 5891, - [6051] = 5891, - [6052] = 485, - [6053] = 1801, - [6054] = 5979, - [6055] = 192, - [6056] = 6056, - [6057] = 407, - [6058] = 2993, - [6059] = 1617, - [6060] = 6060, - [6061] = 436, - [6062] = 1796, - [6063] = 5906, - [6064] = 5957, - [6065] = 6065, - [6066] = 221, - [6067] = 300, - [6068] = 5895, - [6069] = 507, - [6070] = 5891, - [6071] = 357, - [6072] = 5898, - [6073] = 544, - [6074] = 438, - [6075] = 303, - [6076] = 210, - [6077] = 424, - [6078] = 5900, - [6079] = 139, - [6080] = 6080, + [6017] = 5956, + [6018] = 5945, + [6019] = 5954, + [6020] = 5959, + [6021] = 5946, + [6022] = 210, + [6023] = 5955, + [6024] = 378, + [6025] = 6025, + [6026] = 5953, + [6027] = 219, + [6028] = 5956, + [6029] = 6029, + [6030] = 5945, + [6031] = 6031, + [6032] = 5953, + [6033] = 5954, + [6034] = 5959, + [6035] = 5955, + [6036] = 5946, + [6037] = 5955, + [6038] = 144, + [6039] = 1899, + [6040] = 5953, + [6041] = 5956, + [6042] = 5945, + [6043] = 6043, + [6044] = 1904, + [6045] = 5959, + [6046] = 5946, + [6047] = 6047, + [6048] = 441, + [6049] = 5953, + [6050] = 5956, + [6051] = 5945, + [6052] = 1940, + [6053] = 5959, + [6054] = 5946, + [6055] = 219, + [6056] = 1943, + [6057] = 5953, + [6058] = 6058, + [6059] = 5956, + [6060] = 5945, + [6061] = 5959, + [6062] = 5946, + [6063] = 6063, + [6064] = 5953, + [6065] = 5956, + [6066] = 5945, + [6067] = 5959, + [6068] = 5946, + [6069] = 6069, + [6070] = 5953, + [6071] = 5956, + [6072] = 5945, + [6073] = 5959, + [6074] = 5946, + [6075] = 5959, + [6076] = 384, + [6077] = 143, + [6078] = 5945, + [6079] = 5959, + [6080] = 5946, [6081] = 6081, - [6082] = 6082, - [6083] = 6083, - [6084] = 6084, - [6085] = 1653, - [6086] = 520, - [6087] = 5889, - [6088] = 481, - [6089] = 6089, - [6090] = 1093, - [6091] = 132, - [6092] = 6092, + [6082] = 5945, + [6083] = 5959, + [6084] = 5946, + [6085] = 5953, + [6086] = 5945, + [6087] = 5959, + [6088] = 5946, + [6089] = 5959, + [6090] = 5959, + [6091] = 5946, + [6092] = 5946, [6093] = 6093, - [6094] = 1792, - [6095] = 6095, - [6096] = 453, - [6097] = 454, - [6098] = 2806, - [6099] = 2843, - [6100] = 989, - [6101] = 5891, - [6102] = 358, - [6103] = 6103, - [6104] = 469, - [6105] = 954, - [6106] = 221, - [6107] = 5891, - [6108] = 207, - [6109] = 6109, - [6110] = 3027, - [6111] = 6111, - [6112] = 192, - [6113] = 1797, - [6114] = 130, - [6115] = 545, - [6116] = 5891, - [6117] = 384, - [6118] = 5895, - [6119] = 493, - [6120] = 5898, - [6121] = 5900, - [6122] = 1798, - [6123] = 177, - [6124] = 5889, - [6125] = 5889, - [6126] = 5900, - [6127] = 210, - [6128] = 6128, - [6129] = 5891, - [6130] = 1098, - [6131] = 4333, - [6132] = 495, - [6133] = 221, - [6134] = 5895, - [6135] = 300, - [6136] = 5895, - [6137] = 299, - [6138] = 5898, - [6139] = 5900, - [6140] = 589, - [6141] = 207, - [6142] = 6065, + [6094] = 5946, + [6095] = 5946, + [6096] = 5946, + [6097] = 5946, + [6098] = 5946, + [6099] = 5946, + [6100] = 5946, + [6101] = 5946, + [6102] = 5946, + [6103] = 5946, + [6104] = 5946, + [6105] = 5946, + [6106] = 5946, + [6107] = 5946, + [6108] = 5946, + [6109] = 5946, + [6110] = 5946, + [6111] = 5946, + [6112] = 5946, + [6113] = 5946, + [6114] = 5946, + [6115] = 5946, + [6116] = 5946, + [6117] = 5946, + [6118] = 5946, + [6119] = 5956, + [6120] = 5945, + [6121] = 1235, + [6122] = 2991, + [6123] = 6063, + [6124] = 6069, + [6125] = 6125, + [6126] = 6125, + [6127] = 6127, + [6128] = 1947, + [6129] = 144, + [6130] = 5956, + [6131] = 196, + [6132] = 6132, + [6133] = 1616, + [6134] = 5946, + [6135] = 405, + [6136] = 430, + [6137] = 431, + [6138] = 142, + [6139] = 1607, + [6140] = 6140, + [6141] = 219, + [6142] = 6008, [6143] = 6143, - [6144] = 130, - [6145] = 5900, - [6146] = 212, - [6147] = 6080, - [6148] = 5889, - [6149] = 6084, - [6150] = 2832, - [6151] = 2853, - [6152] = 398, - [6153] = 6153, - [6154] = 356, - [6155] = 357, - [6156] = 358, - [6157] = 5891, - [6158] = 6158, - [6159] = 398, - [6160] = 356, - [6161] = 357, - [6162] = 358, - [6163] = 6163, - [6164] = 954, - [6165] = 5895, - [6166] = 546, - [6167] = 5898, - [6168] = 210, - [6169] = 5900, + [6144] = 6012, + [6145] = 1616, + [6146] = 210, + [6147] = 329, + [6148] = 6029, + [6149] = 5953, + [6150] = 5946, + [6151] = 6008, + [6152] = 6012, + [6153] = 5953, + [6154] = 154, + [6155] = 5954, + [6156] = 5955, + [6157] = 6157, + [6158] = 5956, + [6159] = 5959, + [6160] = 5945, + [6161] = 1924, + [6162] = 6162, + [6163] = 6008, + [6164] = 5945, + [6165] = 5959, + [6166] = 6012, + [6167] = 2946, + [6168] = 429, + [6169] = 5959, [6170] = 6170, - [6171] = 5891, - [6172] = 6172, - [6173] = 6173, - [6174] = 1792, - [6175] = 6175, - [6176] = 6176, + [6171] = 6171, + [6172] = 5946, + [6173] = 263, + [6174] = 143, + [6175] = 390, + [6176] = 4434, [6177] = 6177, - [6178] = 215, - [6179] = 6173, - [6180] = 1018, - [6181] = 6176, - [6182] = 6182, - [6183] = 237, - [6184] = 6184, - [6185] = 6185, - [6186] = 235, - [6187] = 6187, - [6188] = 5986, - [6189] = 5989, - [6190] = 6190, - [6191] = 6191, - [6192] = 3104, - [6193] = 6177, - [6194] = 132, - [6195] = 210, - [6196] = 6196, - [6197] = 389, - [6198] = 6176, - [6199] = 6177, - [6200] = 989, - [6201] = 210, - [6202] = 178, - [6203] = 6176, - [6204] = 6204, - [6205] = 1093, - [6206] = 236, - [6207] = 6207, - [6208] = 1693, - [6209] = 400, - [6210] = 395, - [6211] = 1101, + [6178] = 264, + [6179] = 6179, + [6180] = 6180, + [6181] = 417, + [6182] = 400, + [6183] = 6183, + [6184] = 5953, + [6185] = 265, + [6186] = 266, + [6187] = 6179, + [6188] = 6093, + [6189] = 373, + [6190] = 5954, + [6191] = 5955, + [6192] = 388, + [6193] = 417, + [6194] = 400, + [6195] = 388, + [6196] = 5956, + [6197] = 5956, + [6198] = 5945, + [6199] = 5946, + [6200] = 6200, + [6201] = 6201, + [6202] = 6202, + [6203] = 5945, + [6204] = 417, + [6205] = 142, + [6206] = 6206, + [6207] = 2946, + [6208] = 1880, + [6209] = 1883, + [6210] = 6210, + [6211] = 6211, [6212] = 6212, - [6213] = 6213, + [6213] = 6210, [6214] = 6214, - [6215] = 138, + [6215] = 6210, [6216] = 6216, - [6217] = 6172, - [6218] = 6177, - [6219] = 393, - [6220] = 6011, - [6221] = 1800, - [6222] = 6176, - [6223] = 6177, - [6224] = 6175, - [6225] = 1793, - [6226] = 1753, - [6227] = 207, - [6228] = 6177, - [6229] = 1794, - [6230] = 1617, - [6231] = 6176, - [6232] = 6232, - [6233] = 355, - [6234] = 6234, - [6235] = 236, - [6236] = 2832, - [6237] = 207, - [6238] = 129, - [6239] = 6177, - [6240] = 6176, + [6217] = 6217, + [6218] = 6211, + [6219] = 2991, + [6220] = 5950, + [6221] = 5951, + [6222] = 6210, + [6223] = 210, + [6224] = 6210, + [6225] = 6211, + [6226] = 221, + [6227] = 6210, + [6228] = 6211, + [6229] = 6211, + [6230] = 6211, + [6231] = 219, + [6232] = 148, + [6233] = 231, + [6234] = 6210, + [6235] = 6211, + [6236] = 6211, + [6237] = 6237, + [6238] = 1940, + [6239] = 5988, + [6240] = 5999, [6241] = 6241, - [6242] = 237, - [6243] = 6176, - [6244] = 134, - [6245] = 6245, - [6246] = 6246, - [6247] = 6177, - [6248] = 398, - [6249] = 3101, - [6250] = 128, - [6251] = 6177, - [6252] = 2853, - [6253] = 221, - [6254] = 6176, - [6255] = 6176, - [6256] = 396, - [6257] = 212, - [6258] = 6258, - [6259] = 356, - [6260] = 6260, - [6261] = 1693, - [6262] = 6212, - [6263] = 6172, - [6264] = 1653, - [6265] = 6241, - [6266] = 6177, - [6267] = 1753, - [6268] = 357, - [6269] = 6177, - [6270] = 6176, - [6271] = 6204, - [6272] = 358, - [6273] = 3098, - [6274] = 954, - [6275] = 3131, - [6276] = 6276, - [6277] = 6176, - [6278] = 6177, - [6279] = 1018, - [6280] = 396, - [6281] = 182, - [6282] = 6212, - [6283] = 6172, - [6284] = 6176, - [6285] = 180, - [6286] = 207, - [6287] = 6212, - [6288] = 6172, - [6289] = 6060, - [6290] = 6290, - [6291] = 6212, - [6292] = 6172, - [6293] = 1798, - [6294] = 6081, - [6295] = 6212, - [6296] = 6172, - [6297] = 130, - [6298] = 5878, - [6299] = 6212, - [6300] = 6172, - [6301] = 235, - [6302] = 389, - [6303] = 6212, - [6304] = 6172, - [6305] = 6212, - [6306] = 131, - [6307] = 6212, - [6308] = 6172, - [6309] = 1797, - [6310] = 6212, - [6311] = 6172, - [6312] = 6177, - [6313] = 6212, - [6314] = 6172, - [6315] = 134, - [6316] = 6212, - [6317] = 6172, + [6242] = 6210, + [6243] = 6211, + [6244] = 6244, + [6245] = 1924, + [6246] = 6210, + [6247] = 6211, + [6248] = 6248, + [6249] = 354, + [6250] = 6250, + [6251] = 6210, + [6252] = 6211, + [6253] = 6253, + [6254] = 1010, + [6255] = 147, + [6256] = 6210, + [6257] = 1123, + [6258] = 6211, + [6259] = 149, + [6260] = 5867, + [6261] = 6210, + [6262] = 6262, + [6263] = 6211, + [6264] = 219, + [6265] = 1943, + [6266] = 6210, + [6267] = 6211, + [6268] = 1062, + [6269] = 5952, + [6270] = 6210, + [6271] = 6211, + [6272] = 1946, + [6273] = 380, + [6274] = 1947, + [6275] = 6275, + [6276] = 145, + [6277] = 241, + [6278] = 231, + [6279] = 203, + [6280] = 219, + [6281] = 6281, + [6282] = 6282, + [6283] = 5971, + [6284] = 5973, + [6285] = 6132, + [6286] = 6286, + [6287] = 6287, + [6288] = 6288, + [6289] = 6289, + [6290] = 6248, + [6291] = 1899, + [6292] = 1904, + [6293] = 147, + [6294] = 149, + [6295] = 1684, + [6296] = 6296, + [6297] = 6297, + [6298] = 305, + [6299] = 6214, + [6300] = 1010, + [6301] = 146, + [6302] = 1698, + [6303] = 305, + [6304] = 306, + [6305] = 1607, + [6306] = 231, + [6307] = 6210, + [6308] = 6308, + [6309] = 148, + [6310] = 6310, + [6311] = 145, + [6312] = 6312, + [6313] = 6211, + [6314] = 306, + [6315] = 304, + [6316] = 6217, + [6317] = 6317, [6318] = 6318, - [6319] = 6212, - [6320] = 6177, - [6321] = 6212, - [6322] = 6172, - [6323] = 6212, - [6324] = 6172, - [6325] = 6212, - [6326] = 6172, - [6327] = 6212, - [6328] = 6172, - [6329] = 6212, - [6330] = 6172, - [6331] = 6212, - [6332] = 6172, - [6333] = 135, - [6334] = 393, - [6335] = 133, - [6336] = 212, - [6337] = 6176, - [6338] = 6103, - [6339] = 135, - [6340] = 235, - [6341] = 237, - [6342] = 6342, - [6343] = 1098, - [6344] = 314, - [6345] = 315, - [6346] = 6082, - [6347] = 1795, - [6348] = 1796, - [6349] = 137, - [6350] = 6350, - [6351] = 6172, - [6352] = 392, - [6353] = 355, - [6354] = 6177, - [6355] = 3027, - [6356] = 6010, - [6357] = 6176, - [6358] = 6358, - [6359] = 6176, - [6360] = 136, - [6361] = 1801, - [6362] = 133, - [6363] = 131, - [6364] = 6364, - [6365] = 236, - [6366] = 954, - [6367] = 132, - [6368] = 221, - [6369] = 6245, - [6370] = 6177, - [6371] = 2938, - [6372] = 6372, - [6373] = 6373, - [6374] = 6374, - [6375] = 6375, - [6376] = 6376, - [6377] = 236, - [6378] = 237, - [6379] = 6379, - [6380] = 3131, + [6319] = 6297, + [6320] = 142, + [6321] = 1684, + [6322] = 6297, + [6323] = 6214, + [6324] = 1616, + [6325] = 1698, + [6326] = 6297, + [6327] = 6214, + [6328] = 6210, + [6329] = 6297, + [6330] = 6214, + [6331] = 6297, + [6332] = 6214, + [6333] = 6333, + [6334] = 6297, + [6335] = 6214, + [6336] = 6297, + [6337] = 6214, + [6338] = 6338, + [6339] = 6297, + [6340] = 6214, + [6341] = 6341, + [6342] = 6297, + [6343] = 6214, + [6344] = 6297, + [6345] = 6214, + [6346] = 202, + [6347] = 6297, + [6348] = 6214, + [6349] = 241, + [6350] = 6297, + [6351] = 6214, + [6352] = 241, + [6353] = 6297, + [6354] = 6214, + [6355] = 6297, + [6356] = 6214, + [6357] = 6297, + [6358] = 6214, + [6359] = 6297, + [6360] = 6214, + [6361] = 6297, + [6362] = 6214, + [6363] = 6297, + [6364] = 6214, + [6365] = 6297, + [6366] = 6214, + [6367] = 6297, + [6368] = 6214, + [6369] = 6297, + [6370] = 6214, + [6371] = 6210, + [6372] = 6262, + [6373] = 6286, + [6374] = 6211, + [6375] = 373, + [6376] = 2839, + [6377] = 2847, + [6378] = 400, + [6379] = 388, + [6380] = 146, [6381] = 6381, - [6382] = 6382, - [6383] = 1018, - [6384] = 6384, - [6385] = 207, - [6386] = 6386, - [6387] = 6387, - [6388] = 438, + [6382] = 210, + [6383] = 6310, + [6384] = 302, + [6385] = 266, + [6386] = 1616, + [6387] = 1010, + [6388] = 6388, [6389] = 6389, - [6390] = 6390, - [6391] = 6391, + [6390] = 427, + [6391] = 5215, [6392] = 6392, [6393] = 6393, - [6394] = 6373, - [6395] = 6381, + [6394] = 6394, + [6395] = 6395, [6396] = 6396, - [6397] = 3098, + [6397] = 6397, [6398] = 6398, [6399] = 6399, - [6400] = 3308, - [6401] = 3310, + [6400] = 6400, + [6401] = 6401, [6402] = 6402, [6403] = 6403, - [6404] = 438, - [6405] = 235, + [6404] = 6404, + [6405] = 6393, [6406] = 6406, - [6407] = 6407, - [6408] = 6408, - [6409] = 204, - [6410] = 6410, - [6411] = 3104, - [6412] = 6412, - [6413] = 1617, - [6414] = 4928, - [6415] = 136, + [6407] = 6399, + [6408] = 6394, + [6409] = 6409, + [6410] = 6403, + [6411] = 6411, + [6412] = 6395, + [6413] = 429, + [6414] = 6414, + [6415] = 441, [6416] = 6416, [6417] = 6417, - [6418] = 4929, + [6418] = 264, [6419] = 6419, - [6420] = 453, - [6421] = 6421, - [6422] = 136, - [6423] = 138, - [6424] = 424, - [6425] = 6425, - [6426] = 6426, - [6427] = 4948, - [6428] = 454, - [6429] = 138, - [6430] = 6430, - [6431] = 6431, - [6432] = 4949, - [6433] = 6433, - [6434] = 6434, + [6420] = 6392, + [6421] = 6393, + [6422] = 6394, + [6423] = 6395, + [6424] = 6396, + [6425] = 6397, + [6426] = 6398, + [6427] = 6399, + [6428] = 6428, + [6429] = 430, + [6430] = 431, + [6431] = 6404, + [6432] = 6432, + [6433] = 6406, + [6434] = 6398, [6435] = 6435, [6436] = 6436, - [6437] = 6437, - [6438] = 6433, - [6439] = 6439, - [6440] = 6440, - [6441] = 6441, - [6442] = 6442, + [6437] = 6403, + [6438] = 6438, + [6439] = 143, + [6440] = 144, + [6441] = 5146, + [6442] = 6406, [6443] = 6443, - [6444] = 6444, - [6445] = 3169, - [6446] = 6446, - [6447] = 6447, - [6448] = 6431, - [6449] = 6374, - [6450] = 6375, - [6451] = 6376, - [6452] = 6393, - [6453] = 6373, - [6454] = 6381, - [6455] = 6399, - [6456] = 6456, - [6457] = 6457, - [6458] = 6458, - [6459] = 6459, - [6460] = 989, - [6461] = 6461, - [6462] = 6436, - [6463] = 6463, - [6464] = 6433, - [6465] = 954, - [6466] = 6442, - [6467] = 438, - [6468] = 6468, - [6469] = 424, - [6470] = 954, - [6471] = 6431, - [6472] = 6374, - [6473] = 6375, - [6474] = 6376, - [6475] = 6393, - [6476] = 6373, - [6477] = 6381, - [6478] = 6399, - [6479] = 137, - [6480] = 6480, - [6481] = 6436, - [6482] = 6433, - [6483] = 6442, - [6484] = 6442, - [6485] = 6485, - [6486] = 236, - [6487] = 6487, - [6488] = 6488, - [6489] = 6431, - [6490] = 6374, - [6491] = 6375, - [6492] = 6376, - [6493] = 6393, - [6494] = 6373, - [6495] = 6381, - [6496] = 6399, - [6497] = 6318, - [6498] = 6436, - [6499] = 6433, - [6500] = 3027, - [6501] = 6442, - [6502] = 453, - [6503] = 454, - [6504] = 6431, - [6505] = 6374, - [6506] = 6375, - [6507] = 6376, - [6508] = 6393, - [6509] = 6373, - [6510] = 6381, - [6511] = 6399, - [6512] = 6512, - [6513] = 6436, - [6514] = 6514, - [6515] = 6433, - [6516] = 6442, - [6517] = 6517, - [6518] = 6431, - [6519] = 6374, - [6520] = 6375, - [6521] = 6376, - [6522] = 6393, - [6523] = 6373, - [6524] = 6381, - [6525] = 6399, - [6526] = 6436, - [6527] = 237, - [6528] = 6433, - [6529] = 6442, - [6530] = 6530, - [6531] = 6431, - [6532] = 6374, - [6533] = 6375, - [6534] = 6376, - [6535] = 6393, - [6536] = 6373, - [6537] = 6381, - [6538] = 6399, - [6539] = 6436, + [6444] = 6392, + [6445] = 6393, + [6446] = 6394, + [6447] = 6395, + [6448] = 6396, + [6449] = 6397, + [6450] = 6398, + [6451] = 6399, + [6452] = 6452, + [6453] = 6392, + [6454] = 6454, + [6455] = 6404, + [6456] = 6406, + [6457] = 6392, + [6458] = 6393, + [6459] = 6403, + [6460] = 6394, + [6461] = 429, + [6462] = 6244, + [6463] = 427, + [6464] = 219, + [6465] = 6392, + [6466] = 6393, + [6467] = 6394, + [6468] = 6395, + [6469] = 6396, + [6470] = 6397, + [6471] = 6398, + [6472] = 6399, + [6473] = 6395, + [6474] = 6474, + [6475] = 6396, + [6476] = 6404, + [6477] = 6406, + [6478] = 6397, + [6479] = 6398, + [6480] = 1010, + [6481] = 6403, + [6482] = 6399, + [6483] = 6483, + [6484] = 6484, + [6485] = 5139, + [6486] = 6392, + [6487] = 6393, + [6488] = 6394, + [6489] = 6395, + [6490] = 6396, + [6491] = 6397, + [6492] = 6398, + [6493] = 6399, + [6494] = 441, + [6495] = 6495, + [6496] = 6404, + [6497] = 6406, + [6498] = 6392, + [6499] = 6499, + [6500] = 6403, + [6501] = 6501, + [6502] = 6502, + [6503] = 6392, + [6504] = 6504, + [6505] = 6392, + [6506] = 6393, + [6507] = 6394, + [6508] = 6395, + [6509] = 6396, + [6510] = 6397, + [6511] = 6398, + [6512] = 6399, + [6513] = 5171, + [6514] = 6404, + [6515] = 6515, + [6516] = 6406, + [6517] = 1607, + [6518] = 430, + [6519] = 152, + [6520] = 6403, + [6521] = 6393, + [6522] = 431, + [6523] = 6404, + [6524] = 6406, + [6525] = 6392, + [6526] = 6393, + [6527] = 6394, + [6528] = 6395, + [6529] = 6396, + [6530] = 6397, + [6531] = 6398, + [6532] = 6399, + [6533] = 431, + [6534] = 6393, + [6535] = 6404, + [6536] = 6394, + [6537] = 6406, + [6538] = 6395, + [6539] = 6403, [6540] = 6540, - [6541] = 6433, - [6542] = 6542, - [6543] = 6442, - [6544] = 6399, - [6545] = 6431, - [6546] = 6374, - [6547] = 6375, - [6548] = 6376, - [6549] = 6393, - [6550] = 6373, - [6551] = 6381, - [6552] = 6399, - [6553] = 6436, - [6554] = 6433, - [6555] = 6555, - [6556] = 6442, - [6557] = 6557, - [6558] = 6558, - [6559] = 6431, - [6560] = 6374, - [6561] = 6375, - [6562] = 6376, - [6563] = 6393, - [6564] = 6373, - [6565] = 6381, - [6566] = 6399, - [6567] = 6436, - [6568] = 6433, - [6569] = 6569, - [6570] = 6442, - [6571] = 6571, - [6572] = 6572, - [6573] = 6573, - [6574] = 6574, - [6575] = 436, - [6576] = 6576, - [6577] = 6431, - [6578] = 6374, - [6579] = 6375, - [6580] = 6376, - [6581] = 6393, - [6582] = 6373, - [6583] = 6381, - [6584] = 6399, - [6585] = 2995, - [6586] = 6436, - [6587] = 6433, - [6588] = 6436, - [6589] = 6442, - [6590] = 6590, - [6591] = 6591, - [6592] = 6431, - [6593] = 6374, - [6594] = 6375, - [6595] = 6376, - [6596] = 6393, - [6597] = 6373, - [6598] = 6381, - [6599] = 6399, - [6600] = 6600, - [6601] = 424, - [6602] = 6436, - [6603] = 6433, - [6604] = 6433, - [6605] = 6605, - [6606] = 6442, - [6607] = 6607, - [6608] = 6431, - [6609] = 6374, - [6610] = 6375, - [6611] = 6376, - [6612] = 6393, - [6613] = 6373, - [6614] = 6381, - [6615] = 6399, + [6541] = 3234, + [6542] = 6392, + [6543] = 6393, + [6544] = 6394, + [6545] = 6395, + [6546] = 6396, + [6547] = 6397, + [6548] = 6398, + [6549] = 6399, + [6550] = 6550, + [6551] = 5170, + [6552] = 6404, + [6553] = 6406, + [6554] = 6540, + [6555] = 6403, + [6556] = 6556, + [6557] = 6394, + [6558] = 6392, + [6559] = 6393, + [6560] = 6394, + [6561] = 6395, + [6562] = 6396, + [6563] = 6397, + [6564] = 6398, + [6565] = 6399, + [6566] = 6396, + [6567] = 6397, + [6568] = 6404, + [6569] = 6406, + [6570] = 6403, + [6571] = 6398, + [6572] = 265, + [6573] = 6392, + [6574] = 6393, + [6575] = 6394, + [6576] = 6395, + [6577] = 6396, + [6578] = 6397, + [6579] = 6398, + [6580] = 6399, + [6581] = 6581, + [6582] = 6404, + [6583] = 6406, + [6584] = 6403, + [6585] = 6585, + [6586] = 6586, + [6587] = 6392, + [6588] = 6393, + [6589] = 6394, + [6590] = 6395, + [6591] = 6396, + [6592] = 6397, + [6593] = 6398, + [6594] = 6399, + [6595] = 6595, + [6596] = 6404, + [6597] = 6406, + [6598] = 6403, + [6599] = 6599, + [6600] = 6404, + [6601] = 6406, + [6602] = 6602, + [6603] = 6403, + [6604] = 6604, + [6605] = 6404, + [6606] = 6406, + [6607] = 6403, + [6608] = 6608, + [6609] = 6404, + [6610] = 6406, + [6611] = 6403, + [6612] = 6612, + [6613] = 6404, + [6614] = 6406, + [6615] = 6403, [6616] = 6616, - [6617] = 6419, - [6618] = 6436, - [6619] = 6433, - [6620] = 6442, - [6621] = 6431, - [6622] = 6374, - [6623] = 6375, - [6624] = 6376, - [6625] = 6393, - [6626] = 6373, - [6627] = 6381, - [6628] = 6399, - [6629] = 6436, - [6630] = 6433, - [6631] = 6442, - [6632] = 6431, - [6633] = 6374, - [6634] = 6375, - [6635] = 6376, - [6636] = 6393, - [6637] = 6373, - [6638] = 6381, - [6639] = 6399, - [6640] = 6436, - [6641] = 6433, - [6642] = 6442, - [6643] = 6442, - [6644] = 436, - [6645] = 6431, - [6646] = 6374, - [6647] = 6375, - [6648] = 6376, - [6649] = 6393, - [6650] = 6373, - [6651] = 6381, - [6652] = 6399, - [6653] = 6436, - [6654] = 6433, - [6655] = 6442, - [6656] = 6656, - [6657] = 6431, - [6658] = 6374, - [6659] = 6375, - [6660] = 6376, - [6661] = 6393, - [6662] = 6373, - [6663] = 6381, - [6664] = 6399, - [6665] = 6436, - [6666] = 6433, - [6667] = 6442, - [6668] = 6463, - [6669] = 6431, - [6670] = 6374, - [6671] = 6375, - [6672] = 6376, - [6673] = 6393, - [6674] = 6373, - [6675] = 6381, - [6676] = 6399, - [6677] = 6677, - [6678] = 6678, - [6679] = 6436, - [6680] = 6433, - [6681] = 6442, - [6682] = 6682, - [6683] = 6431, - [6684] = 6374, - [6685] = 6375, - [6686] = 6376, - [6687] = 6393, - [6688] = 6373, - [6689] = 6381, - [6690] = 6399, - [6691] = 6691, - [6692] = 6436, - [6693] = 6433, - [6694] = 6442, - [6695] = 6431, - [6696] = 6374, - [6697] = 6375, - [6698] = 6376, - [6699] = 6393, - [6700] = 6373, - [6701] = 6381, - [6702] = 6399, - [6703] = 6703, - [6704] = 6436, - [6705] = 6433, - [6706] = 6442, - [6707] = 6436, - [6708] = 6433, - [6709] = 6442, - [6710] = 6436, - [6711] = 6433, - [6712] = 6442, - [6713] = 6436, - [6714] = 6433, - [6715] = 6442, - [6716] = 438, - [6717] = 6436, - [6718] = 6433, - [6719] = 6442, - [6720] = 6436, - [6721] = 6433, - [6722] = 6442, - [6723] = 6436, - [6724] = 6433, - [6725] = 6442, - [6726] = 6436, - [6727] = 6433, - [6728] = 6442, - [6729] = 6436, - [6730] = 6433, - [6731] = 6442, - [6732] = 6436, - [6733] = 6433, - [6734] = 6442, - [6735] = 6436, - [6736] = 6433, - [6737] = 6442, - [6738] = 6436, - [6739] = 6433, - [6740] = 6442, - [6741] = 6741, - [6742] = 6436, - [6743] = 6433, - [6744] = 6442, - [6745] = 6436, - [6746] = 6433, - [6747] = 6442, - [6748] = 6436, - [6749] = 6433, - [6750] = 6442, - [6751] = 6436, - [6752] = 6433, - [6753] = 6442, - [6754] = 6436, - [6755] = 6433, - [6756] = 6442, + [6617] = 6404, + [6618] = 6406, + [6619] = 6403, + [6620] = 6620, + [6621] = 6404, + [6622] = 6406, + [6623] = 6403, + [6624] = 263, + [6625] = 6404, + [6626] = 6406, + [6627] = 6403, + [6628] = 6395, + [6629] = 6404, + [6630] = 6406, + [6631] = 6403, + [6632] = 6632, + [6633] = 6404, + [6634] = 6406, + [6635] = 6403, + [6636] = 217, + [6637] = 6404, + [6638] = 6406, + [6639] = 6403, + [6640] = 6640, + [6641] = 6404, + [6642] = 6406, + [6643] = 6403, + [6644] = 6644, + [6645] = 6404, + [6646] = 6406, + [6647] = 6403, + [6648] = 6403, + [6649] = 6404, + [6650] = 6406, + [6651] = 6403, + [6652] = 436, + [6653] = 6404, + [6654] = 6406, + [6655] = 6403, + [6656] = 6381, + [6657] = 6404, + [6658] = 6406, + [6659] = 6403, + [6660] = 436, + [6661] = 6404, + [6662] = 6406, + [6663] = 6403, + [6664] = 6396, + [6665] = 6404, + [6666] = 6406, + [6667] = 6403, + [6668] = 6397, + [6669] = 6404, + [6670] = 6406, + [6671] = 6403, + [6672] = 6398, + [6673] = 6404, + [6674] = 6406, + [6675] = 6403, + [6676] = 214, + [6677] = 6404, + [6678] = 6406, + [6679] = 6403, + [6680] = 6394, + [6681] = 6404, + [6682] = 6406, + [6683] = 6403, + [6684] = 6684, + [6685] = 6404, + [6686] = 6406, + [6687] = 6403, + [6688] = 6688, + [6689] = 6404, + [6690] = 6406, + [6691] = 6403, + [6692] = 6692, + [6693] = 6404, + [6694] = 6406, + [6695] = 6403, + [6696] = 6399, + [6697] = 6404, + [6698] = 6406, + [6699] = 6403, + [6700] = 6399, + [6701] = 6392, + [6702] = 6406, + [6703] = 6403, + [6704] = 6404, + [6705] = 6406, + [6706] = 6403, + [6707] = 6404, + [6708] = 6406, + [6709] = 6403, + [6710] = 6404, + [6711] = 6406, + [6712] = 6403, + [6713] = 6406, + [6714] = 6403, + [6715] = 6406, + [6716] = 6403, + [6717] = 6406, + [6718] = 6403, + [6719] = 6406, + [6720] = 6403, + [6721] = 6721, + [6722] = 6722, + [6723] = 6474, + [6724] = 150, + [6725] = 421, + [6726] = 2839, + [6727] = 151, + [6728] = 6728, + [6729] = 218, + [6730] = 6399, + [6731] = 6731, + [6732] = 6644, + [6733] = 6392, + [6734] = 6734, + [6735] = 6735, + [6736] = 6736, + [6737] = 6737, + [6738] = 6393, + [6739] = 6739, + [6740] = 6740, + [6741] = 6394, + [6742] = 2847, + [6743] = 6395, + [6744] = 6396, + [6745] = 6499, + [6746] = 6608, + [6747] = 6397, + [6748] = 6398, + [6749] = 6399, + [6750] = 3410, + [6751] = 3522, + [6752] = 6752, + [6753] = 6632, + [6754] = 6754, + [6755] = 6755, + [6756] = 6404, [6757] = 6757, - [6758] = 6436, - [6759] = 6433, - [6760] = 6442, - [6761] = 6761, - [6762] = 6436, - [6763] = 6433, - [6764] = 6442, - [6765] = 6436, - [6766] = 6433, - [6767] = 6442, - [6768] = 6436, - [6769] = 6433, - [6770] = 6442, - [6771] = 6436, - [6772] = 6433, - [6773] = 6442, - [6774] = 6436, - [6775] = 6433, - [6776] = 6442, - [6777] = 6436, - [6778] = 6433, - [6779] = 6442, - [6780] = 3312, - [6781] = 6436, - [6782] = 6433, - [6783] = 6442, - [6784] = 3316, - [6785] = 6436, - [6786] = 6433, - [6787] = 6442, - [6788] = 6436, - [6789] = 6433, - [6790] = 6442, - [6791] = 6436, - [6792] = 6433, - [6793] = 6442, - [6794] = 6436, - [6795] = 6433, - [6796] = 6442, - [6797] = 6436, - [6798] = 6433, - [6799] = 6442, - [6800] = 6433, - [6801] = 6442, - [6802] = 6433, - [6803] = 6442, - [6804] = 6433, - [6805] = 6442, - [6806] = 6433, - [6807] = 6442, - [6808] = 6433, - [6809] = 6442, - [6810] = 6810, + [6758] = 6758, + [6759] = 6395, + [6760] = 6404, + [6761] = 6404, + [6762] = 6406, + [6763] = 441, + [6764] = 6764, + [6765] = 6765, + [6766] = 264, + [6767] = 6767, + [6768] = 6768, + [6769] = 231, + [6770] = 263, + [6771] = 6406, + [6772] = 6417, + [6773] = 6404, + [6774] = 6774, + [6775] = 6775, + [6776] = 6406, + [6777] = 6403, + [6778] = 6778, + [6779] = 6779, + [6780] = 266, + [6781] = 427, + [6782] = 6782, + [6783] = 6783, + [6784] = 6784, + [6785] = 3213, + [6786] = 150, + [6787] = 151, + [6788] = 6403, + [6789] = 3239, + [6790] = 6403, + [6791] = 241, + [6792] = 152, + [6793] = 6392, + [6794] = 6794, + [6795] = 6393, + [6796] = 437, + [6797] = 6797, + [6798] = 6394, + [6799] = 6393, + [6800] = 6395, + [6801] = 6396, + [6802] = 6802, + [6803] = 6397, + [6804] = 417, + [6805] = 400, + [6806] = 429, + [6807] = 388, + [6808] = 6398, + [6809] = 6392, + [6810] = 421, [6811] = 6811, [6812] = 6812, [6813] = 6813, - [6814] = 6607, - [6815] = 6815, - [6816] = 6816, - [6817] = 6817, - [6818] = 6558, - [6819] = 6819, - [6820] = 516, - [6821] = 6821, - [6822] = 6822, - [6823] = 6823, - [6824] = 954, - [6825] = 453, - [6826] = 197, - [6827] = 454, - [6828] = 6828, + [6814] = 6814, + [6815] = 6393, + [6816] = 6394, + [6817] = 6392, + [6818] = 6393, + [6819] = 6394, + [6820] = 6395, + [6821] = 6396, + [6822] = 6397, + [6823] = 6398, + [6824] = 6399, + [6825] = 6404, + [6826] = 6404, + [6827] = 3519, + [6828] = 3387, [6829] = 6829, [6830] = 6830, - [6831] = 428, - [6832] = 6374, + [6831] = 6399, + [6832] = 428, [6833] = 6833, - [6834] = 6834, + [6834] = 6404, [6835] = 6835, - [6836] = 6342, + [6836] = 6836, [6837] = 6837, [6838] = 6838, - [6839] = 1653, - [6840] = 3300, - [6841] = 6828, - [6842] = 3301, - [6843] = 453, - [6844] = 6844, - [6845] = 6845, - [6846] = 6846, - [6847] = 6682, - [6848] = 6848, - [6849] = 1617, - [6850] = 6850, - [6851] = 6591, - [6852] = 436, - [6853] = 6436, - [6854] = 6436, + [6839] = 6395, + [6840] = 6396, + [6841] = 1684, + [6842] = 6406, + [6843] = 6206, + [6844] = 1698, + [6845] = 6397, + [6846] = 6398, + [6847] = 6399, + [6848] = 441, + [6849] = 6849, + [6850] = 6403, + [6851] = 6396, + [6852] = 264, + [6853] = 6853, + [6854] = 6854, [6855] = 6855, - [6856] = 6856, - [6857] = 3101, + [6856] = 3236, + [6857] = 6403, [6858] = 6858, - [6859] = 201, + [6859] = 6859, [6860] = 6860, - [6861] = 6861, - [6862] = 6862, - [6863] = 1693, - [6864] = 1753, + [6861] = 6403, + [6862] = 437, + [6863] = 3237, + [6864] = 430, [6865] = 6865, - [6866] = 6866, - [6867] = 6375, - [6868] = 6290, - [6869] = 6436, - [6870] = 6431, - [6871] = 6833, - [6872] = 1018, - [6873] = 6873, - [6874] = 6874, - [6875] = 6875, - [6876] = 5169, - [6877] = 1653, - [6878] = 6878, - [6879] = 436, - [6880] = 989, - [6881] = 6881, - [6882] = 454, - [6883] = 6393, - [6884] = 6884, - [6885] = 6829, - [6886] = 6514, - [6887] = 137, - [6888] = 6888, - [6889] = 2832, - [6890] = 2853, - [6891] = 6376, - [6892] = 235, - [6893] = 6893, - [6894] = 6894, + [6866] = 431, + [6867] = 6392, + [6868] = 428, + [6869] = 6393, + [6870] = 6394, + [6871] = 6395, + [6872] = 6406, + [6873] = 434, + [6874] = 6396, + [6875] = 6397, + [6876] = 211, + [6877] = 6398, + [6878] = 6399, + [6879] = 263, + [6880] = 6397, + [6881] = 3240, + [6882] = 6882, + [6883] = 6404, + [6884] = 373, + [6885] = 6406, + [6886] = 3395, + [6887] = 265, + [6888] = 265, + [6889] = 434, + [6890] = 6396, + [6891] = 6891, + [6892] = 6403, + [6893] = 3478, + [6894] = 6404, [6895] = 6895, [6896] = 6896, - [6897] = 6403, + [6897] = 6897, [6898] = 6898, - [6899] = 6821, - [6900] = 4996, - [6901] = 6901, - [6902] = 6902, - [6903] = 6903, - [6904] = 6904, - [6905] = 6873, - [6906] = 6605, + [6899] = 6406, + [6900] = 6392, + [6901] = 6393, + [6902] = 6394, + [6903] = 6395, + [6904] = 6396, + [6905] = 6404, + [6906] = 6906, [6907] = 6907, - [6908] = 6908, - [6909] = 6909, - [6910] = 6896, - [6911] = 6911, - [6912] = 6912, - [6913] = 6913, - [6914] = 6406, + [6908] = 429, + [6909] = 6406, + [6910] = 6910, + [6911] = 6397, + [6912] = 6865, + [6913] = 2839, + [6914] = 2847, [6915] = 6915, [6916] = 6916, [6917] = 6917, - [6918] = 6387, - [6919] = 3101, - [6920] = 6920, - [6921] = 6407, - [6922] = 1693, - [6923] = 6898, - [6924] = 3181, - [6925] = 6925, - [6926] = 6616, - [6927] = 6903, - [6928] = 6904, - [6929] = 6929, - [6930] = 6907, - [6931] = 6931, - [6932] = 6416, - [6933] = 6909, - [6934] = 6896, - [6935] = 6911, - [6936] = 6912, - [6937] = 6823, - [6938] = 6915, - [6939] = 6916, + [6918] = 6398, + [6919] = 6399, + [6920] = 6403, + [6921] = 6504, + [6922] = 6922, + [6923] = 6398, + [6924] = 6924, + [6925] = 6397, + [6926] = 6404, + [6927] = 6927, + [6928] = 6406, + [6929] = 6404, + [6930] = 266, + [6931] = 231, + [6932] = 1607, + [6933] = 6933, + [6934] = 6934, + [6935] = 6935, + [6936] = 6936, + [6937] = 6937, + [6938] = 6938, + [6939] = 6939, [6940] = 6940, - [6941] = 6917, - [6942] = 4997, - [6943] = 6855, - [6944] = 6944, - [6945] = 6417, - [6946] = 3182, + [6941] = 1616, + [6942] = 241, + [6943] = 6403, + [6944] = 430, + [6945] = 6389, + [6946] = 6404, [6947] = 6947, - [6948] = 6898, + [6948] = 6948, [6949] = 6949, - [6950] = 6950, + [6950] = 3273, [6951] = 6951, - [6952] = 6952, - [6953] = 6953, - [6954] = 6904, - [6955] = 6391, - [6956] = 6907, - [6957] = 6909, - [6958] = 6896, - [6959] = 6911, + [6952] = 6854, + [6953] = 6891, + [6954] = 6954, + [6955] = 6954, + [6956] = 6956, + [6957] = 3277, + [6958] = 3287, + [6959] = 6959, [6960] = 6960, - [6961] = 6912, - [6962] = 6904, - [6963] = 6915, - [6964] = 6916, - [6965] = 6917, - [6966] = 6912, - [6967] = 6384, + [6961] = 6855, + [6962] = 6962, + [6963] = 3236, + [6964] = 6964, + [6965] = 6965, + [6966] = 6966, + [6967] = 6967, [6968] = 6968, - [6969] = 6874, - [6970] = 6970, + [6969] = 6969, + [6970] = 3237, [6971] = 6971, - [6972] = 438, - [6973] = 6898, - [6974] = 6838, - [6975] = 6844, - [6976] = 424, + [6972] = 6948, + [6973] = 427, + [6974] = 6960, + [6975] = 3293, + [6976] = 6976, [6977] = 6977, - [6978] = 6904, + [6978] = 3288, [6979] = 6979, - [6980] = 6907, - [6981] = 6811, - [6982] = 6875, - [6983] = 6909, - [6984] = 6896, - [6985] = 6911, - [6986] = 6912, - [6987] = 6987, - [6988] = 3097, - [6989] = 6915, - [6990] = 6916, - [6991] = 6909, - [6992] = 6917, - [6993] = 6993, - [6994] = 6896, - [6995] = 6865, - [6996] = 6845, - [6997] = 6997, - [6998] = 3104, - [6999] = 6846, - [7000] = 6866, - [7001] = 6898, - [7002] = 6911, - [7003] = 7003, - [7004] = 6915, - [7005] = 6916, - [7006] = 6904, + [6980] = 6980, + [6981] = 6768, + [6982] = 6954, + [6983] = 6959, + [6984] = 6959, + [6985] = 6960, + [6986] = 6962, + [6987] = 176, + [6988] = 6774, + [6989] = 6964, + [6990] = 6965, + [6991] = 6966, + [6992] = 6960, + [6993] = 6967, + [6994] = 6764, + [6995] = 6954, + [6996] = 6968, + [6997] = 6969, + [6998] = 6948, + [6999] = 6962, + [7000] = 6765, + [7001] = 6927, + [7002] = 7002, + [7003] = 6778, + [7004] = 7004, + [7005] = 6794, + [7006] = 7006, [7007] = 7007, - [7008] = 7008, - [7009] = 6907, - [7010] = 6835, + [7008] = 3213, + [7009] = 7009, + [7010] = 6954, [7011] = 7011, - [7012] = 6909, - [7013] = 6896, - [7014] = 6911, + [7012] = 6620, + [7013] = 6416, + [7014] = 7014, [7015] = 7015, - [7016] = 6912, - [7017] = 6979, - [7018] = 6915, - [7019] = 6916, - [7020] = 7020, - [7021] = 6917, - [7022] = 6848, - [7023] = 7020, - [7024] = 3003, - [7025] = 6813, - [7026] = 6898, - [7027] = 7027, - [7028] = 954, - [7029] = 6837, - [7030] = 7030, - [7031] = 6904, - [7032] = 6815, - [7033] = 6907, - [7034] = 7034, - [7035] = 6909, - [7036] = 6896, - [7037] = 6911, - [7038] = 6389, - [7039] = 6912, - [7040] = 7040, - [7041] = 6915, - [7042] = 6916, - [7043] = 6917, - [7044] = 1653, - [7045] = 1753, - [7046] = 7046, - [7047] = 6898, - [7048] = 6898, - [7049] = 6569, - [7050] = 6571, - [7051] = 166, - [7052] = 6904, - [7053] = 7030, - [7054] = 6907, - [7055] = 6920, - [7056] = 7056, - [7057] = 6909, - [7058] = 6896, - [7059] = 6911, - [7060] = 6912, - [7061] = 6915, - [7062] = 6916, - [7063] = 6917, - [7064] = 6372, - [7065] = 6895, - [7066] = 6898, - [7067] = 6903, - [7068] = 6977, - [7069] = 6677, - [7070] = 6904, - [7071] = 6678, - [7072] = 6907, - [7073] = 6909, - [7074] = 6896, - [7075] = 6911, - [7076] = 6912, - [7077] = 6915, - [7078] = 6916, - [7079] = 6904, - [7080] = 6917, - [7081] = 6810, - [7082] = 7082, - [7083] = 6947, - [7084] = 6907, - [7085] = 6691, - [7086] = 6858, - [7087] = 6898, - [7088] = 6917, - [7089] = 6904, - [7090] = 6907, - [7091] = 7091, - [7092] = 6572, - [7093] = 6909, - [7094] = 6911, - [7095] = 6912, - [7096] = 6903, - [7097] = 6915, - [7098] = 6916, - [7099] = 6917, - [7100] = 6390, - [7101] = 7101, - [7102] = 6909, - [7103] = 453, - [7104] = 6896, - [7105] = 454, - [7106] = 6898, - [7107] = 6898, - [7108] = 6911, - [7109] = 6904, - [7110] = 6907, - [7111] = 6573, - [7112] = 6909, - [7113] = 6896, - [7114] = 6911, - [7115] = 6912, - [7116] = 6574, - [7117] = 7117, - [7118] = 6915, - [7119] = 6916, - [7120] = 6850, - [7121] = 6917, - [7122] = 6912, - [7123] = 6915, - [7124] = 6916, - [7125] = 6907, - [7126] = 6517, - [7127] = 7127, - [7128] = 6909, - [7129] = 6896, - [7130] = 6911, - [7131] = 6912, - [7132] = 6917, - [7133] = 7133, - [7134] = 6915, - [7135] = 6916, - [7136] = 6917, - [7137] = 6576, - [7138] = 7138, - [7139] = 1653, - [7140] = 1693, - [7141] = 6907, - [7142] = 1617, - [7143] = 6909, - [7144] = 6896, - [7145] = 6911, - [7146] = 6912, - [7147] = 6915, - [7148] = 6916, - [7149] = 6917, - [7150] = 469, - [7151] = 6898, - [7152] = 6590, - [7153] = 6907, - [7154] = 7154, - [7155] = 6909, - [7156] = 6896, - [7157] = 6911, - [7158] = 7030, - [7159] = 6912, - [7160] = 3195, - [7161] = 6915, - [7162] = 6916, - [7163] = 3204, - [7164] = 6917, - [7165] = 7165, - [7166] = 3232, - [7167] = 3235, - [7168] = 6907, - [7169] = 436, - [7170] = 3205, - [7171] = 6909, - [7172] = 6896, - [7173] = 6911, - [7174] = 6915, - [7175] = 6916, - [7176] = 3169, - [7177] = 6917, - [7178] = 6834, - [7179] = 7179, - [7180] = 7030, - [7181] = 6898, - [7182] = 7182, - [7183] = 7183, - [7184] = 7184, - [7185] = 6903, - [7186] = 6904, - [7187] = 6907, - [7188] = 7188, - [7189] = 6396, - [7190] = 438, - [7191] = 6816, - [7192] = 6909, - [7193] = 6896, - [7194] = 6911, - [7195] = 6917, + [7016] = 6960, + [7017] = 5161, + [7018] = 7018, + [7019] = 6962, + [7020] = 6964, + [7021] = 6965, + [7022] = 6966, + [7023] = 6967, + [7024] = 3239, + [7025] = 6968, + [7026] = 6969, + [7027] = 6948, + [7028] = 1010, + [7029] = 6550, + [7030] = 6515, + [7031] = 1010, + [7032] = 6858, + [7033] = 1698, + [7034] = 6954, + [7035] = 7035, + [7036] = 7036, + [7037] = 6960, + [7038] = 6962, + [7039] = 6964, + [7040] = 6965, + [7041] = 6966, + [7042] = 6964, + [7043] = 6965, + [7044] = 6966, + [7045] = 6967, + [7046] = 6860, + [7047] = 6968, + [7048] = 6969, + [7049] = 6964, + [7050] = 6965, + [7051] = 6948, + [7052] = 6966, + [7053] = 301, + [7054] = 3240, + [7055] = 7055, + [7056] = 476, + [7057] = 6895, + [7058] = 6935, + [7059] = 7059, + [7060] = 7060, + [7061] = 266, + [7062] = 6954, + [7063] = 1616, + [7064] = 6960, + [7065] = 3300, + [7066] = 6962, + [7067] = 429, + [7068] = 6964, + [7069] = 6965, + [7070] = 6966, + [7071] = 6967, + [7072] = 7007, + [7073] = 6936, + [7074] = 6968, + [7075] = 6969, + [7076] = 6938, + [7077] = 6811, + [7078] = 6948, + [7079] = 6409, + [7080] = 430, + [7081] = 431, + [7082] = 6812, + [7083] = 3301, + [7084] = 6954, + [7085] = 264, + [7086] = 6960, + [7087] = 6962, + [7088] = 6934, + [7089] = 6964, + [7090] = 6965, + [7091] = 6966, + [7092] = 6688, + [7093] = 6967, + [7094] = 7094, + [7095] = 6968, + [7096] = 6969, + [7097] = 1607, + [7098] = 6948, + [7099] = 6813, + [7100] = 7100, + [7101] = 6954, + [7102] = 6967, + [7103] = 6814, + [7104] = 6960, + [7105] = 6962, + [7106] = 6968, + [7107] = 6964, + [7108] = 6965, + [7109] = 6966, + [7110] = 6969, + [7111] = 6967, + [7112] = 7112, + [7113] = 7002, + [7114] = 6968, + [7115] = 6969, + [7116] = 6948, + [7117] = 6401, + [7118] = 5598, + [7119] = 3303, + [7120] = 3302, + [7121] = 1616, + [7122] = 1698, + [7123] = 6954, + [7124] = 3304, + [7125] = 6775, + [7126] = 3305, + [7127] = 6960, + [7128] = 6962, + [7129] = 5619, + [7130] = 6964, + [7131] = 6965, + [7132] = 6966, + [7133] = 265, + [7134] = 6967, + [7135] = 1607, + [7136] = 6968, + [7137] = 6969, + [7138] = 6948, + [7139] = 7139, + [7140] = 6483, + [7141] = 7141, + [7142] = 6954, + [7143] = 7060, + [7144] = 7144, + [7145] = 7145, + [7146] = 6960, + [7147] = 6962, + [7148] = 7148, + [7149] = 6964, + [7150] = 6965, + [7151] = 6966, + [7152] = 7152, + [7153] = 6967, + [7154] = 6948, + [7155] = 6968, + [7156] = 6969, + [7157] = 6428, + [7158] = 6948, + [7159] = 7144, + [7160] = 7160, + [7161] = 6432, + [7162] = 7162, + [7163] = 6731, + [7164] = 6962, + [7165] = 6964, + [7166] = 6965, + [7167] = 6966, + [7168] = 7100, + [7169] = 6967, + [7170] = 6435, + [7171] = 6968, + [7172] = 6969, + [7173] = 6948, + [7174] = 7174, + [7175] = 6581, + [7176] = 6967, + [7177] = 6443, + [7178] = 6452, + [7179] = 6968, + [7180] = 6962, + [7181] = 6969, + [7182] = 6585, + [7183] = 6964, + [7184] = 6965, + [7185] = 6966, + [7186] = 6967, + [7187] = 1684, + [7188] = 6968, + [7189] = 6969, + [7190] = 6734, + [7191] = 6948, + [7192] = 6735, + [7193] = 6692, + [7194] = 6954, + [7195] = 7195, [7196] = 7196, - [7197] = 6912, - [7198] = 7198, - [7199] = 7199, - [7200] = 6915, - [7201] = 6916, - [7202] = 6862, - [7203] = 7203, - [7204] = 6917, - [7205] = 6446, - [7206] = 3236, - [7207] = 1617, + [7197] = 6962, + [7198] = 6736, + [7199] = 7100, + [7200] = 6964, + [7201] = 6965, + [7202] = 6966, + [7203] = 6967, + [7204] = 7204, + [7205] = 6737, + [7206] = 6968, + [7207] = 6969, [7208] = 7208, - [7209] = 7209, - [7210] = 3098, - [7211] = 6856, - [7212] = 7030, + [7209] = 6739, + [7210] = 6948, + [7211] = 6728, + [7212] = 6779, [7213] = 7213, - [7214] = 7214, - [7215] = 3212, - [7216] = 6898, - [7217] = 7217, - [7218] = 6408, - [7219] = 6860, - [7220] = 7117, - [7221] = 6903, - [7222] = 6904, - [7223] = 3191, - [7224] = 6410, - [7225] = 6907, + [7214] = 7112, + [7215] = 6962, + [7216] = 6964, + [7217] = 6965, + [7218] = 6966, + [7219] = 512, + [7220] = 6967, + [7221] = 6968, + [7222] = 6969, + [7223] = 7223, + [7224] = 6948, + [7225] = 6954, [7226] = 7226, - [7227] = 989, - [7228] = 6909, - [7229] = 6896, - [7230] = 6911, - [7231] = 6903, - [7232] = 6912, - [7233] = 6916, - [7234] = 6952, - [7235] = 6915, - [7236] = 6916, - [7237] = 6412, - [7238] = 6444, - [7239] = 6530, - [7240] = 6902, - [7241] = 6456, - [7242] = 6917, - [7243] = 1018, - [7244] = 6968, - [7245] = 6904, - [7246] = 6457, - [7247] = 7027, - [7248] = 353, + [7227] = 7227, + [7228] = 7228, + [7229] = 6740, + [7230] = 6556, + [7231] = 6959, + [7232] = 6960, + [7233] = 7139, + [7234] = 7234, + [7235] = 6962, + [7236] = 7236, + [7237] = 6939, + [7238] = 6964, + [7239] = 6965, + [7240] = 6966, + [7241] = 1010, + [7242] = 6967, + [7243] = 6968, + [7244] = 6969, + [7245] = 6948, + [7246] = 7246, + [7247] = 3234, + [7248] = 6916, [7249] = 7249, - [7250] = 436, - [7251] = 6386, - [7252] = 6894, - [7253] = 7253, - [7254] = 7254, - [7255] = 989, - [7256] = 7256, - [7257] = 6458, - [7258] = 7007, - [7259] = 6741, - [7260] = 453, - [7261] = 454, + [7250] = 7250, + [7251] = 7251, + [7252] = 6752, + [7253] = 6754, + [7254] = 6755, + [7255] = 441, + [7256] = 6757, + [7257] = 6948, + [7258] = 6495, + [7259] = 6758, + [7260] = 6829, + [7261] = 6830, [7262] = 7262, - [7263] = 7030, - [7264] = 6993, - [7265] = 7003, - [7266] = 7209, - [7267] = 7127, - [7268] = 1753, - [7269] = 6907, - [7270] = 6912, - [7271] = 6421, - [7272] = 6426, - [7273] = 7273, - [7274] = 6435, - [7275] = 6437, - [7276] = 6434, - [7277] = 6703, - [7278] = 6898, + [7263] = 7112, + [7264] = 429, + [7265] = 7035, + [7266] = 6954, + [7267] = 6454, + [7268] = 7036, + [7269] = 6959, + [7270] = 6960, + [7271] = 6962, + [7272] = 6836, + [7273] = 6964, + [7274] = 6965, + [7275] = 7275, + [7276] = 7276, + [7277] = 7277, + [7278] = 7278, [7279] = 7279, - [7280] = 1018, - [7281] = 436, - [7282] = 3131, - [7283] = 6903, - [7284] = 1018, - [7285] = 6952, - [7286] = 6904, - [7287] = 424, - [7288] = 7256, - [7289] = 7289, - [7290] = 7262, - [7291] = 6993, - [7292] = 7003, - [7293] = 7209, - [7294] = 6907, - [7295] = 6881, - [7296] = 6878, - [7297] = 7138, - [7298] = 7298, - [7299] = 7299, - [7300] = 7299, - [7301] = 6952, - [7302] = 7302, - [7303] = 7256, - [7304] = 6944, - [7305] = 7262, - [7306] = 6993, - [7307] = 7003, - [7308] = 7209, - [7309] = 6909, - [7310] = 6952, - [7311] = 6896, - [7312] = 7256, - [7313] = 7262, - [7314] = 6993, - [7315] = 7003, - [7316] = 7209, - [7317] = 6911, - [7318] = 6952, - [7319] = 7319, - [7320] = 7256, - [7321] = 7262, - [7322] = 6993, - [7323] = 7003, - [7324] = 7209, - [7325] = 6952, - [7326] = 6439, - [7327] = 7256, - [7328] = 7262, - [7329] = 6993, - [7330] = 7003, - [7331] = 7209, - [7332] = 6952, - [7333] = 7256, - [7334] = 6949, - [7335] = 7262, - [7336] = 6993, - [7337] = 6960, - [7338] = 7003, - [7339] = 7209, - [7340] = 6952, - [7341] = 6909, - [7342] = 7256, - [7343] = 6896, - [7344] = 7262, - [7345] = 6993, - [7346] = 6911, - [7347] = 7003, - [7348] = 7209, - [7349] = 7349, - [7350] = 6952, - [7351] = 7256, - [7352] = 6912, - [7353] = 7262, - [7354] = 6993, - [7355] = 6888, - [7356] = 7003, - [7357] = 7209, - [7358] = 6952, - [7359] = 6480, - [7360] = 7256, - [7361] = 6488, - [7362] = 7262, - [7363] = 6993, - [7364] = 6512, - [7365] = 7003, - [7366] = 7209, - [7367] = 6952, - [7368] = 6440, - [7369] = 7256, - [7370] = 438, - [7371] = 7262, - [7372] = 6993, - [7373] = 6441, - [7374] = 7003, - [7375] = 7209, - [7376] = 6952, - [7377] = 5066, - [7378] = 7256, - [7379] = 5572, - [7380] = 7262, - [7381] = 6993, - [7382] = 6382, - [7383] = 7003, - [7384] = 7209, - [7385] = 6952, - [7386] = 5587, - [7387] = 7256, - [7388] = 6459, - [7389] = 7262, - [7390] = 6993, - [7391] = 6915, - [7392] = 7003, - [7393] = 7209, - [7394] = 6952, - [7395] = 7256, - [7396] = 6916, - [7397] = 7262, - [7398] = 6993, - [7399] = 6461, - [7400] = 7003, - [7401] = 7209, - [7402] = 6952, - [7403] = 7256, - [7404] = 6907, - [7405] = 7262, - [7406] = 6993, - [7407] = 7407, - [7408] = 7003, - [7409] = 7209, - [7410] = 6952, - [7411] = 7256, - [7412] = 6917, - [7413] = 7262, - [7414] = 6993, - [7415] = 7003, - [7416] = 7209, - [7417] = 6952, - [7418] = 7256, - [7419] = 7117, - [7420] = 7262, - [7421] = 6993, - [7422] = 7003, - [7423] = 7209, - [7424] = 6952, - [7425] = 7256, - [7426] = 954, - [7427] = 7262, - [7428] = 6993, - [7429] = 7003, - [7430] = 7209, - [7431] = 6952, - [7432] = 7256, - [7433] = 7433, - [7434] = 7262, - [7435] = 6993, - [7436] = 7003, - [7437] = 7209, - [7438] = 7262, - [7439] = 6819, - [7440] = 6822, - [7441] = 495, - [7442] = 516, - [7443] = 3180, - [7444] = 6861, - [7445] = 6402, - [7446] = 7446, - [7447] = 989, - [7448] = 453, - [7449] = 454, - [7450] = 7450, - [7451] = 6392, - [7452] = 6379, - [7453] = 470, - [7454] = 6915, - [7455] = 7034, - [7456] = 6761, - [7457] = 7101, - [7458] = 7256, - [7459] = 7030, - [7460] = 7249, - [7461] = 7253, - [7462] = 6912, - [7463] = 7463, - [7464] = 7464, - [7465] = 7465, - [7466] = 7466, - [7467] = 7467, - [7468] = 7468, - [7469] = 7469, - [7470] = 7470, - [7471] = 7471, - [7472] = 7472, - [7473] = 7473, - [7474] = 7471, - [7475] = 7475, - [7476] = 7471, - [7477] = 7477, - [7478] = 7478, - [7479] = 7471, - [7480] = 7480, - [7481] = 7480, - [7482] = 7482, - [7483] = 7483, - [7484] = 7484, + [7280] = 6966, + [7281] = 7249, + [7282] = 6947, + [7283] = 7148, + [7284] = 6967, + [7285] = 427, + [7286] = 147, + [7287] = 7160, + [7288] = 6968, + [7289] = 7250, + [7290] = 6969, + [7291] = 149, + [7292] = 6962, + [7293] = 6948, + [7294] = 7294, + [7295] = 7295, + [7296] = 266, + [7297] = 7297, + [7298] = 6837, + [7299] = 7174, + [7300] = 7152, + [7301] = 7014, + [7302] = 6838, + [7303] = 7303, + [7304] = 7011, + [7305] = 5086, + [7306] = 5090, + [7307] = 7307, + [7308] = 6959, + [7309] = 7309, + [7310] = 6897, + [7311] = 7311, + [7312] = 7312, + [7313] = 6502, + [7314] = 7314, + [7315] = 7018, + [7316] = 6967, + [7317] = 6898, + [7318] = 7112, + [7319] = 6954, + [7320] = 7320, + [7321] = 7307, + [7322] = 6402, + [7323] = 6782, + [7324] = 6595, + [7325] = 6414, + [7326] = 6599, + [7327] = 6419, + [7328] = 7328, + [7329] = 7295, + [7330] = 6602, + [7331] = 6438, + [7332] = 6959, + [7333] = 6960, + [7334] = 6962, + [7335] = 6604, + [7336] = 6960, + [7337] = 3149, + [7338] = 6906, + [7339] = 6964, + [7340] = 6965, + [7341] = 6907, + [7342] = 6966, + [7343] = 6967, + [7344] = 6962, + [7345] = 6968, + [7346] = 6964, + [7347] = 6965, + [7348] = 6966, + [7349] = 6969, + [7350] = 6967, + [7351] = 6968, + [7352] = 6969, + [7353] = 6948, + [7354] = 6948, + [7355] = 430, + [7356] = 7356, + [7357] = 431, + [7358] = 6947, + [7359] = 6915, + [7360] = 6924, + [7361] = 7014, + [7362] = 6964, + [7363] = 7311, + [7364] = 6965, + [7365] = 7307, + [7366] = 7311, + [7367] = 7367, + [7368] = 7312, + [7369] = 7314, + [7370] = 7294, + [7371] = 488, + [7372] = 6966, + [7373] = 6947, + [7374] = 7312, + [7375] = 7014, + [7376] = 7307, + [7377] = 7311, + [7378] = 7312, + [7379] = 7314, + [7380] = 6947, + [7381] = 7112, + [7382] = 7014, + [7383] = 7307, + [7384] = 7311, + [7385] = 6612, + [7386] = 7312, + [7387] = 7314, + [7388] = 6947, + [7389] = 7014, + [7390] = 7307, + [7391] = 7311, + [7392] = 6722, + [7393] = 7312, + [7394] = 7314, + [7395] = 6954, + [7396] = 6947, + [7397] = 6910, + [7398] = 7014, + [7399] = 7307, + [7400] = 7311, + [7401] = 7312, + [7402] = 7314, + [7403] = 6922, + [7404] = 6947, + [7405] = 7014, + [7406] = 7307, + [7407] = 7311, + [7408] = 7312, + [7409] = 7314, + [7410] = 6616, + [7411] = 6947, + [7412] = 7328, + [7413] = 7014, + [7414] = 6959, + [7415] = 7307, + [7416] = 7311, + [7417] = 7312, + [7418] = 7314, + [7419] = 6947, + [7420] = 6960, + [7421] = 7014, + [7422] = 7307, + [7423] = 7311, + [7424] = 7312, + [7425] = 7314, + [7426] = 6947, + [7427] = 6962, + [7428] = 7014, + [7429] = 7307, + [7430] = 7311, + [7431] = 7431, + [7432] = 7312, + [7433] = 7314, + [7434] = 6947, + [7435] = 7014, + [7436] = 6962, + [7437] = 7307, + [7438] = 7311, + [7439] = 6964, + [7440] = 7312, + [7441] = 7314, + [7442] = 6965, + [7443] = 6947, + [7444] = 6966, + [7445] = 7014, + [7446] = 7307, + [7447] = 7311, + [7448] = 7312, + [7449] = 7314, + [7450] = 6947, + [7451] = 7014, + [7452] = 6967, + [7453] = 7307, + [7454] = 7311, + [7455] = 6933, + [7456] = 7312, + [7457] = 7314, + [7458] = 6968, + [7459] = 7014, + [7460] = 6969, + [7461] = 7307, + [7462] = 7311, + [7463] = 7312, + [7464] = 7314, + [7465] = 6947, + [7466] = 7014, + [7467] = 7307, + [7468] = 7311, + [7469] = 6948, + [7470] = 7312, + [7471] = 7314, + [7472] = 6947, + [7473] = 7014, + [7474] = 6959, + [7475] = 7307, + [7476] = 7311, + [7477] = 263, + [7478] = 7312, + [7479] = 7314, + [7480] = 6947, + [7481] = 7014, + [7482] = 7112, + [7483] = 7307, + [7484] = 7311, [7485] = 7485, - [7486] = 7486, - [7487] = 1693, - [7488] = 7488, - [7489] = 7477, - [7490] = 7482, - [7491] = 7491, - [7492] = 7475, - [7493] = 7485, - [7494] = 7494, - [7495] = 7495, - [7496] = 7471, - [7497] = 7477, - [7498] = 7498, - [7499] = 1018, - [7500] = 7498, - [7501] = 7501, - [7502] = 7502, - [7503] = 7471, - [7504] = 2162, - [7505] = 7480, - [7506] = 5190, - [7507] = 7471, - [7508] = 7508, - [7509] = 7471, - [7510] = 7480, - [7511] = 7511, - [7512] = 7512, - [7513] = 4798, - [7514] = 7477, - [7515] = 7482, - [7516] = 7516, - [7517] = 438, - [7518] = 7475, - [7519] = 1693, - [7520] = 7485, - [7521] = 7521, - [7522] = 7471, - [7523] = 7470, - [7524] = 7524, - [7525] = 7525, - [7526] = 7469, - [7527] = 7527, - [7528] = 7480, - [7529] = 436, - [7530] = 7530, - [7531] = 7531, - [7532] = 7532, + [7486] = 7312, + [7487] = 7314, + [7488] = 6947, + [7489] = 7014, + [7490] = 7490, + [7491] = 7307, + [7492] = 7311, + [7493] = 7312, + [7494] = 7314, + [7495] = 6947, + [7496] = 7014, + [7497] = 7307, + [7498] = 7311, + [7499] = 7312, + [7500] = 7314, + [7501] = 6947, + [7502] = 7014, + [7503] = 6940, + [7504] = 7307, + [7505] = 7311, + [7506] = 7312, + [7507] = 7314, + [7508] = 6947, + [7509] = 7014, + [7510] = 7307, + [7511] = 7311, + [7512] = 7004, + [7513] = 7312, + [7514] = 7314, + [7515] = 6968, + [7516] = 6767, + [7517] = 6954, + [7518] = 6948, + [7519] = 7519, + [7520] = 6947, + [7521] = 7314, + [7522] = 6849, + [7523] = 6959, + [7524] = 6960, + [7525] = 6853, + [7526] = 6962, + [7527] = 7112, + [7528] = 263, + [7529] = 6969, + [7530] = 6964, + [7531] = 6965, + [7532] = 441, [7533] = 7533, - [7534] = 7484, - [7535] = 2129, - [7536] = 2131, - [7537] = 7475, - [7538] = 7538, - [7539] = 7463, - [7540] = 7471, - [7541] = 7485, - [7542] = 7491, - [7543] = 7512, - [7544] = 7532, - [7545] = 7545, - [7546] = 7486, - [7547] = 7471, - [7548] = 5177, + [7534] = 6966, + [7535] = 264, + [7536] = 6967, + [7537] = 265, + [7538] = 6968, + [7539] = 6969, + [7540] = 1684, + [7541] = 7541, + [7542] = 7542, + [7543] = 7543, + [7544] = 1698, + [7545] = 441, + [7546] = 7546, + [7547] = 7547, + [7548] = 2155, [7549] = 7549, [7550] = 7550, [7551] = 7551, - [7552] = 5179, + [7552] = 7552, [7553] = 7553, - [7554] = 7550, + [7554] = 7554, [7555] = 7555, - [7556] = 449, + [7556] = 7556, [7557] = 7557, - [7558] = 436, - [7559] = 7477, - [7560] = 4899, + [7558] = 7553, + [7559] = 7559, + [7560] = 427, [7561] = 7561, [7562] = 7562, - [7563] = 7482, - [7564] = 7471, - [7565] = 7468, + [7563] = 7563, + [7564] = 7564, + [7565] = 7565, [7566] = 7566, - [7567] = 7470, - [7568] = 7525, - [7569] = 7569, - [7570] = 7475, - [7571] = 7463, + [7567] = 7567, + [7568] = 7556, + [7569] = 3240, + [7570] = 381, + [7571] = 7571, [7572] = 7572, - [7573] = 7530, - [7574] = 7553, - [7575] = 7516, - [7576] = 7477, - [7577] = 7482, - [7578] = 7485, + [7573] = 7573, + [7574] = 7542, + [7575] = 7575, + [7576] = 7576, + [7577] = 7577, + [7578] = 7578, [7579] = 7579, - [7580] = 438, - [7581] = 7467, - [7582] = 7471, - [7583] = 7470, - [7584] = 7463, - [7585] = 7477, - [7586] = 7471, - [7587] = 5169, - [7588] = 2110, - [7589] = 7482, - [7590] = 7482, - [7591] = 7470, - [7592] = 7477, - [7593] = 7482, - [7594] = 7463, - [7595] = 7495, - [7596] = 7596, - [7597] = 7597, - [7598] = 7598, - [7599] = 7551, - [7600] = 7470, - [7601] = 7471, + [7580] = 150, + [7581] = 151, + [7582] = 2134, + [7583] = 7561, + [7584] = 1684, + [7585] = 7561, + [7586] = 7562, + [7587] = 7541, + [7588] = 5334, + [7589] = 7589, + [7590] = 7562, + [7591] = 5215, + [7592] = 7592, + [7593] = 4951, + [7594] = 7561, + [7595] = 7595, + [7596] = 7592, + [7597] = 7562, + [7598] = 7564, + [7599] = 7599, + [7600] = 7567, + [7601] = 7601, [7602] = 7602, - [7603] = 7463, + [7603] = 7603, [7604] = 7604, - [7605] = 7475, - [7606] = 5167, - [7607] = 7470, - [7608] = 7549, - [7609] = 7609, - [7610] = 7531, - [7611] = 7463, - [7612] = 7612, - [7613] = 7602, + [7605] = 7605, + [7606] = 7555, + [7607] = 429, + [7608] = 1010, + [7609] = 7564, + [7610] = 7610, + [7611] = 7567, + [7612] = 7564, + [7613] = 7567, [7614] = 7614, - [7615] = 7615, - [7616] = 7470, - [7617] = 7463, - [7618] = 7475, - [7619] = 7485, - [7620] = 7471, - [7621] = 2120, - [7622] = 7485, - [7623] = 7470, - [7624] = 7545, - [7625] = 7538, - [7626] = 7470, + [7615] = 7561, + [7616] = 7562, + [7617] = 3239, + [7618] = 7554, + [7619] = 7561, + [7620] = 7564, + [7621] = 7567, + [7622] = 5299, + [7623] = 1698, + [7624] = 7624, + [7625] = 7599, + [7626] = 7562, [7627] = 7627, - [7628] = 7628, - [7629] = 7471, - [7630] = 7470, - [7631] = 1753, + [7628] = 7603, + [7629] = 7629, + [7630] = 7561, + [7631] = 7631, [7632] = 7632, [7633] = 7633, - [7634] = 7470, + [7634] = 7562, [7635] = 7635, - [7636] = 7471, - [7637] = 7470, - [7638] = 7614, - [7639] = 454, - [7640] = 7640, - [7641] = 7470, + [7636] = 7636, + [7637] = 5300, + [7638] = 7638, + [7639] = 7639, + [7640] = 7549, + [7641] = 7572, [7642] = 7642, [7643] = 7643, - [7644] = 7615, - [7645] = 7628, - [7646] = 424, - [7647] = 7470, - [7648] = 7538, - [7649] = 7649, - [7650] = 7471, - [7651] = 7470, - [7652] = 7652, - [7653] = 7471, - [7654] = 5182, - [7655] = 7501, - [7656] = 7598, - [7657] = 7643, - [7658] = 7555, - [7659] = 7532, - [7660] = 7494, - [7661] = 424, - [7662] = 7649, + [7644] = 7541, + [7645] = 7645, + [7646] = 7646, + [7647] = 7647, + [7648] = 7589, + [7649] = 7541, + [7650] = 7557, + [7651] = 3236, + [7652] = 7565, + [7653] = 7541, + [7654] = 7654, + [7655] = 7541, + [7656] = 7567, + [7657] = 3237, + [7658] = 7577, + [7659] = 2125, + [7660] = 7541, + [7661] = 7661, + [7662] = 7601, [7663] = 7663, [7664] = 7664, - [7665] = 5183, - [7666] = 1018, - [7667] = 7597, - [7668] = 5184, - [7669] = 7471, - [7670] = 7670, - [7671] = 7579, - [7672] = 453, - [7673] = 454, - [7674] = 453, - [7675] = 7675, - [7676] = 7670, - [7677] = 7633, - [7678] = 7525, - [7679] = 7475, - [7680] = 7485, - [7681] = 2136, - [7682] = 7566, - [7683] = 989, - [7684] = 7488, - [7685] = 7471, - [7686] = 1753, - [7687] = 7572, - [7688] = 7688, - [7689] = 7689, - [7690] = 7690, - [7691] = 7691, - [7692] = 7692, + [7665] = 7541, + [7666] = 7543, + [7667] = 7667, + [7668] = 430, + [7669] = 7541, + [7670] = 431, + [7671] = 7610, + [7672] = 7541, + [7673] = 7673, + [7674] = 7667, + [7675] = 7579, + [7676] = 7546, + [7677] = 7561, + [7678] = 7562, + [7679] = 7559, + [7680] = 5371, + [7681] = 1684, + [7682] = 7564, + [7683] = 7567, + [7684] = 7667, + [7685] = 7661, + [7686] = 7686, + [7687] = 7633, + [7688] = 7635, + [7689] = 7573, + [7690] = 7551, + [7691] = 2132, + [7692] = 7664, [7693] = 7693, - [7694] = 7689, - [7695] = 7695, - [7696] = 7696, - [7697] = 7697, + [7694] = 7694, + [7695] = 2142, + [7696] = 2298, + [7697] = 152, [7698] = 7698, - [7699] = 7699, - [7700] = 7700, - [7701] = 7701, + [7699] = 7561, + [7700] = 7562, + [7701] = 7663, [7702] = 7702, - [7703] = 7692, - [7704] = 7704, - [7705] = 7695, + [7703] = 7564, + [7704] = 7564, + [7705] = 7567, [7706] = 7706, - [7707] = 7707, - [7708] = 7689, - [7709] = 7693, - [7710] = 7691, - [7711] = 7691, + [7707] = 7639, + [7708] = 7564, + [7709] = 7709, + [7710] = 7710, + [7711] = 7567, [7712] = 7712, - [7713] = 7698, - [7714] = 7691, - [7715] = 7715, - [7716] = 407, - [7717] = 7695, - [7718] = 7718, - [7719] = 7701, - [7720] = 7715, - [7721] = 7721, - [7722] = 7722, - [7723] = 7715, - [7724] = 7724, - [7725] = 7715, - [7726] = 7695, + [7713] = 7627, + [7714] = 7552, + [7715] = 5333, + [7716] = 5335, + [7717] = 5341, + [7718] = 7710, + [7719] = 7561, + [7720] = 7562, + [7721] = 7564, + [7722] = 7567, + [7723] = 4958, + [7724] = 3234, + [7725] = 7576, + [7726] = 7578, [7727] = 7727, - [7728] = 7724, + [7728] = 7728, [7729] = 7729, [7730] = 7730, - [7731] = 7706, - [7732] = 7715, - [7733] = 7693, + [7731] = 7731, + [7732] = 7732, + [7733] = 7733, [7734] = 7734, - [7735] = 7706, - [7736] = 7695, - [7737] = 7700, - [7738] = 7700, + [7735] = 7735, + [7736] = 7736, + [7737] = 7737, + [7738] = 7735, [7739] = 7739, - [7740] = 7706, - [7741] = 7712, + [7740] = 7737, + [7741] = 7735, [7742] = 7742, - [7743] = 7693, - [7744] = 7689, + [7743] = 7743, + [7744] = 7744, [7745] = 7745, - [7746] = 7695, + [7746] = 7746, [7747] = 7747, - [7748] = 7693, - [7749] = 7749, - [7750] = 7698, - [7751] = 7724, - [7752] = 7752, + [7748] = 7748, + [7749] = 7731, + [7750] = 7728, + [7751] = 7728, + [7752] = 7737, [7753] = 7753, - [7754] = 7754, - [7755] = 7755, - [7756] = 7689, - [7757] = 7698, - [7758] = 7695, - [7759] = 407, - [7760] = 7715, + [7754] = 7734, + [7755] = 7728, + [7756] = 7756, + [7757] = 7756, + [7758] = 7737, + [7759] = 7734, + [7760] = 7737, [7761] = 7761, - [7762] = 7690, - [7763] = 7763, - [7764] = 7706, - [7765] = 7765, - [7766] = 7693, - [7767] = 7691, - [7768] = 7700, - [7769] = 7715, - [7770] = 7715, - [7771] = 7771, - [7772] = 7706, - [7773] = 7693, - [7774] = 7715, - [7775] = 406, - [7776] = 7689, - [7777] = 7691, - [7778] = 7715, - [7779] = 7698, - [7780] = 7700, - [7781] = 406, - [7782] = 7695, - [7783] = 7695, - [7784] = 7727, - [7785] = 7785, - [7786] = 7786, + [7762] = 7762, + [7763] = 7737, + [7764] = 7764, + [7765] = 7735, + [7766] = 7766, + [7767] = 7767, + [7768] = 7768, + [7769] = 7739, + [7770] = 7770, + [7771] = 7728, + [7772] = 7756, + [7773] = 7638, + [7774] = 7774, + [7775] = 7737, + [7776] = 7753, + [7777] = 7777, + [7778] = 7764, + [7779] = 7728, + [7780] = 7767, + [7781] = 7756, + [7782] = 7782, + [7783] = 7767, + [7784] = 7784, + [7785] = 7734, + [7786] = 7737, [7787] = 7787, - [7788] = 7788, - [7789] = 7789, - [7790] = 7724, - [7791] = 7700, - [7792] = 7718, - [7793] = 7690, - [7794] = 7700, - [7795] = 7724, - [7796] = 7698, - [7797] = 7765, - [7798] = 7693, - [7799] = 7695, - [7800] = 7700, - [7801] = 7693, + [7788] = 7770, + [7789] = 7731, + [7790] = 7790, + [7791] = 7791, + [7792] = 7792, + [7793] = 7793, + [7794] = 7794, + [7795] = 7774, + [7796] = 7796, + [7797] = 7731, + [7798] = 7746, + [7799] = 7747, + [7800] = 7767, + [7801] = 7766, [7802] = 7802, - [7803] = 7698, - [7804] = 7691, - [7805] = 7707, - [7806] = 7724, - [7807] = 406, - [7808] = 7808, - [7809] = 7754, - [7810] = 7712, - [7811] = 7695, - [7812] = 7712, + [7803] = 7803, + [7804] = 7804, + [7805] = 7805, + [7806] = 7806, + [7807] = 7807, + [7808] = 7746, + [7809] = 7809, + [7810] = 7731, + [7811] = 7811, + [7812] = 7774, [7813] = 7813, - [7814] = 7765, - [7815] = 7695, - [7816] = 7715, - [7817] = 7704, - [7818] = 7700, - [7819] = 7691, - [7820] = 7715, - [7821] = 7698, - [7822] = 7724, - [7823] = 7689, - [7824] = 7700, - [7825] = 7825, - [7826] = 7695, - [7827] = 7765, - [7828] = 7695, - [7829] = 7706, - [7830] = 7830, - [7831] = 7707, - [7832] = 7832, - [7833] = 407, - [7834] = 7754, - [7835] = 7695, - [7836] = 7836, - [7837] = 7706, - [7838] = 7838, - [7839] = 7698, - [7840] = 7765, - [7841] = 7715, - [7842] = 7693, + [7814] = 7767, + [7815] = 7734, + [7816] = 7753, + [7817] = 7817, + [7818] = 7805, + [7819] = 7774, + [7820] = 7728, + [7821] = 7728, + [7822] = 7756, + [7823] = 7737, + [7824] = 7756, + [7825] = 7735, + [7826] = 7774, + [7827] = 7728, + [7828] = 7737, + [7829] = 7756, + [7830] = 7734, + [7831] = 7746, + [7832] = 7813, + [7833] = 7737, + [7834] = 7767, + [7835] = 7835, + [7836] = 7767, + [7837] = 7837, + [7838] = 7730, + [7839] = 7753, + [7840] = 7774, + [7841] = 7730, + [7842] = 7746, [7843] = 7843, - [7844] = 7707, - [7845] = 7688, - [7846] = 7754, - [7847] = 7715, - [7848] = 7691, - [7849] = 7715, - [7850] = 7702, - [7851] = 7700, - [7852] = 7788, - [7853] = 7765, - [7854] = 7706, - [7855] = 7693, - [7856] = 7695, - [7857] = 7857, - [7858] = 7712, - [7859] = 7706, - [7860] = 7691, - [7861] = 7690, - [7862] = 7689, - [7863] = 7698, - [7864] = 7864, - [7865] = 7693, - [7866] = 7765, - [7867] = 7754, - [7868] = 7695, - [7869] = 7693, - [7870] = 7715, - [7871] = 7724, - [7872] = 7825, - [7873] = 7700, - [7874] = 7690, - [7875] = 7695, - [7876] = 7754, - [7877] = 7808, - [7878] = 7765, - [7879] = 7693, - [7880] = 7698, + [7844] = 7746, + [7845] = 7767, + [7846] = 7846, + [7847] = 7756, + [7848] = 7848, + [7849] = 7849, + [7850] = 7735, + [7851] = 7728, + [7852] = 7774, + [7853] = 7756, + [7854] = 7793, + [7855] = 7737, + [7856] = 7734, + [7857] = 7746, + [7858] = 7787, + [7859] = 7737, + [7860] = 7767, + [7861] = 7861, + [7862] = 7846, + [7863] = 7767, + [7864] = 7774, + [7865] = 7753, + [7866] = 7805, + [7867] = 7728, + [7868] = 7756, + [7869] = 7733, + [7870] = 7737, + [7871] = 7871, + [7872] = 7731, + [7873] = 7746, + [7874] = 7874, + [7875] = 7767, + [7876] = 7774, + [7877] = 7767, + [7878] = 7878, + [7879] = 7748, + [7880] = 7766, [7881] = 7881, - [7882] = 7712, - [7883] = 7691, - [7884] = 7724, - [7885] = 7698, - [7886] = 7752, - [7887] = 7712, - [7888] = 7707, - [7889] = 7836, - [7890] = 7765, - [7891] = 7891, - [7892] = 7715, - [7893] = 7695, - [7894] = 7894, - [7895] = 7895, - [7896] = 7896, - [7897] = 7706, - [7898] = 7691, - [7899] = 7715, - [7900] = 7700, - [7901] = 7765, - [7902] = 7715, - [7903] = 7702, - [7904] = 7695, - [7905] = 7693, - [7906] = 7715, - [7907] = 7727, - [7908] = 7693, - [7909] = 7771, - [7910] = 7722, - [7911] = 7712, - [7912] = 7765, - [7913] = 7765, - [7914] = 7691, + [7882] = 7770, + [7883] = 384, + [7884] = 7746, + [7885] = 7731, + [7886] = 7886, + [7887] = 7887, + [7888] = 7774, + [7889] = 7747, + [7890] = 7753, + [7891] = 7803, + [7892] = 7728, + [7893] = 7893, + [7894] = 7753, + [7895] = 7728, + [7896] = 7756, + [7897] = 7734, + [7898] = 7737, + [7899] = 7774, + [7900] = 7900, + [7901] = 7901, + [7902] = 7734, + [7903] = 7805, + [7904] = 7767, + [7905] = 7905, + [7906] = 7746, + [7907] = 7728, + [7908] = 7756, + [7909] = 7909, + [7910] = 7774, + [7911] = 7753, + [7912] = 7813, + [7913] = 7767, + [7914] = 7767, [7915] = 7915, - [7916] = 7715, - [7917] = 7917, - [7918] = 7724, - [7919] = 7700, - [7920] = 7698, - [7921] = 7695, - [7922] = 7690, - [7923] = 7765, - [7924] = 7698, - [7925] = 7925, - [7926] = 7688, - [7927] = 7695, - [7928] = 7928, + [7916] = 7753, + [7917] = 7793, + [7918] = 7918, + [7919] = 7919, + [7920] = 384, + [7921] = 7774, + [7922] = 7733, + [7923] = 7746, + [7924] = 7744, + [7925] = 7767, + [7926] = 7886, + [7927] = 7735, + [7928] = 7753, [7929] = 7929, - [7930] = 7930, - [7931] = 7695, - [7932] = 7891, - [7933] = 7891, - [7934] = 7765, - [7935] = 7688, - [7936] = 7724, - [7937] = 7691, - [7938] = 7715, - [7939] = 7700, - [7940] = 7940, - [7941] = 7695, - [7942] = 7700, - [7943] = 7715, - [7944] = 7765, - [7945] = 7734, - [7946] = 7946, - [7947] = 7693, - [7948] = 7706, - [7949] = 7696, - [7950] = 7698, - [7951] = 7699, - [7952] = 7881, - [7953] = 7690, + [7930] = 7735, + [7931] = 7762, + [7932] = 7774, + [7933] = 7901, + [7934] = 7747, + [7935] = 7728, + [7936] = 7728, + [7937] = 7756, + [7938] = 7734, + [7939] = 7848, + [7940] = 7737, + [7941] = 7746, + [7942] = 7774, + [7943] = 7756, + [7944] = 7944, + [7945] = 7747, + [7946] = 7756, + [7947] = 7767, + [7948] = 7900, + [7949] = 7728, + [7950] = 7950, + [7951] = 7774, + [7952] = 7756, + [7953] = 7787, [7954] = 7954, - [7955] = 7808, - [7956] = 7693, - [7957] = 7561, - [7958] = 7702, - [7959] = 7959, - [7960] = 7688, - [7961] = 7745, - [7962] = 7695, - [7963] = 7712, - [7964] = 7891, - [7965] = 7704, - [7966] = 7966, - [7967] = 7695, - [7968] = 7745, - [7969] = 7969, - [7970] = 7771, - [7971] = 7691, - [7972] = 7715, - [7973] = 7742, - [7974] = 7695, - [7975] = 7706, - [7976] = 7976, - [7977] = 7977, - [7978] = 7712, - [7979] = 7693, - [7980] = 7706, - [7981] = 7754, - [7982] = 7702, - [7983] = 7689, - [7984] = 7712, - [7985] = 7691, - [7986] = 7715, - [7987] = 7864, - [7988] = 7988, - [7989] = 7724, - [7990] = 7700, - [7991] = 7894, - [7992] = 7695, - [7993] = 7690, - [7994] = 7704, - [7995] = 7995, - [7996] = 7693, - [7997] = 7915, - [7998] = 7752, - [7999] = 7954, - [8000] = 7695, - [8001] = 7691, - [8002] = 7707, + [7955] = 7767, + [7956] = 7766, + [7957] = 7753, + [7958] = 7805, + [7959] = 7756, + [7960] = 7734, + [7961] = 7730, + [7962] = 7737, + [7963] = 7756, + [7964] = 7756, + [7965] = 7787, + [7966] = 7746, + [7967] = 7767, + [7968] = 7731, + [7969] = 7756, + [7970] = 7970, + [7971] = 7813, + [7972] = 384, + [7973] = 7756, + [7974] = 7731, + [7975] = 7756, + [7976] = 7813, + [7977] = 7787, + [7978] = 7762, + [7979] = 7979, + [7980] = 7766, + [7981] = 7753, + [7982] = 7756, + [7983] = 7767, + [7984] = 7804, + [7985] = 7730, + [7986] = 7735, + [7987] = 7756, + [7988] = 7728, + [7989] = 7756, + [7990] = 7743, + [7991] = 7777, + [7992] = 7734, + [7993] = 7756, + [7994] = 378, + [7995] = 7737, + [7996] = 378, + [7997] = 7871, + [7998] = 7998, + [7999] = 7756, + [8000] = 7753, + [8001] = 7874, + [8002] = 8002, [8003] = 8003, - [8004] = 7690, - [8005] = 7691, - [8006] = 7988, - [8007] = 7747, - [8008] = 8008, - [8009] = 8009, - [8010] = 7988, - [8011] = 7689, - [8012] = 8012, - [8013] = 7704, - [8014] = 7691, - [8015] = 7925, - [8016] = 7698, - [8017] = 7715, - [8018] = 7988, - [8019] = 7724, - [8020] = 7700, - [8021] = 7734, - [8022] = 8022, - [8023] = 7691, - [8024] = 7693, - [8025] = 7715, - [8026] = 8022, - [8027] = 7695, - [8028] = 7765, - [8029] = 7707, - [8030] = 7857, - [8031] = 7695, - [8032] = 8032, - [8033] = 7724, - [8034] = 7695, - [8035] = 8035, - [8036] = 7693, - [8037] = 7712, - [8038] = 7693, - [8039] = 7715, - [8040] = 7690, - [8041] = 8041, + [8004] = 8004, + [8005] = 7735, + [8006] = 7728, + [8007] = 8007, + [8008] = 7756, + [8009] = 7790, + [8010] = 7734, + [8011] = 7732, + [8012] = 7737, + [8013] = 7753, + [8014] = 8014, + [8015] = 7787, + [8016] = 7756, + [8017] = 7728, + [8018] = 7756, + [8019] = 7878, + [8020] = 8020, + [8021] = 7737, + [8022] = 7746, + [8023] = 7767, + [8024] = 7735, + [8025] = 7805, + [8026] = 7774, + [8027] = 7756, + [8028] = 378, + [8029] = 7731, + [8030] = 7813, + [8031] = 7787, + [8032] = 7753, + [8033] = 7734, + [8034] = 7874, + [8035] = 7728, + [8036] = 7874, + [8037] = 7730, + [8038] = 7874, + [8039] = 7728, + [8040] = 7874, + [8041] = 8014, + [8042] = 7756, + [8043] = 7734, + [8044] = 8044, + [8045] = 8045, + [8046] = 7737, + [8047] = 7736, + [8048] = 7739, + [8049] = 7753, + [8050] = 8050, + [8051] = 7753, + [8052] = 7767, + [8053] = 7764, + [8054] = 7918, + [8055] = 7756, + [8056] = 7746, + [8057] = 7767, + [8058] = 8058, + [8059] = 7735, + [8060] = 7813, + [8061] = 8061, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -13236,6 +13569,11 @@ static TSCharacterRange aux_sym_path_token1_character_set_1[] = { {'\\', '\\'}, {'^', 'z'}, {'~', 0x10ffff}, }; +static TSCharacterRange aux_sym_env_var_token1_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'/', '9'}, {'=', '='}, {'A', 'Z'}, + {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, +}; + static TSCharacterRange sym_short_flag_identifier_character_set_1[] = { {'!', '!'}, {'%', '%'}, {'-', '-'}, {'0', '9'}, {'?', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, @@ -13342,56 +13680,16 @@ static TSCharacterRange aux_sym_unquoted_token1_character_set_2[] = { {'a', 'z'}, {'~', 0x10ffff}, }; -static TSCharacterRange aux_sym_unquoted_token2_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '-'}, {'/', ':'}, {'<', 'Z'}, {'\\', '\\'}, - {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, -}; - -static TSCharacterRange aux_sym_unquoted_token4_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', ':'}, {'>', 'Z'}, {'\\', '\\'}, {'^', '_'}, - {'a', 'z'}, {'~', 0x10ffff}, -}; - -static TSCharacterRange aux_sym_unquoted_token5_character_set_1[] = { +static TSCharacterRange aux_sym__unquoted_in_list_token1_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '#'}, {'%', '&'}, {'*', ':'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static TSCharacterRange aux_sym__unquoted_in_list_token1_character_set_1[] = { +static TSCharacterRange aux_sym__unquoted_in_list_token1_character_set_2[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', ':'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static TSCharacterRange aux_sym__unquoted_in_list_token2_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', '-'}, {'/', ':'}, {'<', 'Z'}, - {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, -}; - -static TSCharacterRange aux_sym__unquoted_in_list_token4_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', ':'}, {'>', 'Z'}, {'\\', '\\'}, - {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, -}; - -static TSCharacterRange aux_sym__unquoted_in_list_token5_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '#'}, {'%', '&'}, {'*', '+'}, {'-', ':'}, {'<', 'Z'}, - {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, -}; - -static TSCharacterRange aux_sym__unquoted_in_record_token2_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', '-'}, {'/', '9'}, {'<', 'Z'}, - {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, -}; - -static TSCharacterRange aux_sym__unquoted_in_record_token4_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', '9'}, {'>', 'Z'}, {'\\', '\\'}, - {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, -}; - -static TSCharacterRange aux_sym__unquoted_in_record_token5_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '#'}, {'%', '&'}, {'*', '+'}, {'-', '9'}, {'<', 'Z'}, - {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, -}; - static TSCharacterRange aux_sym__unquoted_in_list_with_expr_token1_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '\''}, {'*', '+'}, {'-', ':'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '{'}, {'}', 0x10ffff}, @@ -13402,14271 +13700,13896 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(969); + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '"', 2426, - '#', 4580, - '$', 2106, - '\'', 2457, - '(', 2210, - ')', 1965, - '*', 2150, - '+', 2235, - ',', 1966, - '-', 2010, - '.', 2275, - '/', 2225, - ':', 2453, - ';', 1929, - '<', 1994, - '=', 2565, - '>', 1995, - '?', 2003, - '@', 1999, - '[', 2406, - ']', 1963, - '^', 2460, - '_', 2097, - '`', 2458, - '{', 2088, - '|', 1930, - '}', 2089, - '\t', 17, - ' ', 17, - '!', 4104, - '&', 4104, - 0x0b, 565, - '\f', 565, + '\n', 2933, + '\r', 2, + '!', 3060, + '"', 3586, + '#', 5026, + '$', 3188, + '&', 3055, + '\'', 3603, + '(', 3294, + ')', 2986, + '*', 3262, + '+', 3617, + ',', 2987, + '-', 3031, + '.', 3379, + '/', 3061, + '0', 3067, + ':', 3615, + ';', 2938, + '<', 3017, + '=', 3764, + '>', 3019, + '?', 3024, + '@', 3020, + 'B', 3088, + 'E', 3056, + 'G', 3065, + 'I', 3086, + 'K', 3065, + 'M', 3065, + 'N', 3085, + 'P', 3065, + 'T', 3065, + '[', 3546, + '\\', 3059, + ']', 2984, + '^', 3699, + '_', 3174, + '`', 3069, + 'a', 3080, + 'b', 3082, + 'c', 3070, + 'd', 3071, + 'e', 3057, + 'f', 3072, + 'g', 3064, + 'h', 3079, + 'i', 3066, + 'k', 3064, + 'l', 3074, + 'm', 3062, + 'n', 3075, + 'o', 3058, + 'p', 3064, + 'r', 3076, + 's', 3077, + 't', 3063, + 'u', 3084, + 'v', 3073, + 'w', 3078, + 'x', 3081, + '{', 3087, + '|', 2939, + '}', 3170, + 0xb5, 3083, + '\t', 1, + ' ', 1, + 0x0b, 649, + '\f', 649, + 'A', 3088, + 'C', 3088, + 'D', 3088, + 'F', 3088, ); - if (lookahead != 0) ADVANCE(4133); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3068); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3089); + if (lookahead != 0) ADVANCE(2720); END_STATE(); case 1: ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1019, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2152, - '+', 2236, - ',', 1966, - '-', 2023, - '.', 2277, - '/', 2221, - '0', 2333, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 982, - '>', 1996, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1157, - 'b', 1141, - 'c', 1055, - 'd', 1073, - 'e', 1002, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1054, - 'n', 1101, - 'o', 1004, - 'r', 1076, - 's', 1184, - 't', 1203, - 'u', 1238, - 'w', 1133, - 'x', 1193, - '|', 1930, - '}', 2089, - '\t', 3, - ' ', 3, - 0x0b, 565, - '\f', 565, + '\n', 2933, + '\r', 2, + '!', 1206, + '"', 3586, + '#', 5026, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '*', 3261, + '+', 3616, + ',', 2987, + '-', 3032, + '.', 1198, + '/', 2366, + '0', 2423, + ':', 3615, + ';', 2938, + '<', 3287, + '=', 1143, + '>', 3019, + '?', 3263, + 'I', 2707, + 'N', 2703, + '[', 2983, + ']', 2984, + '^', 3699, + '_', 3175, + '`', 695, + 'a', 2556, + 'b', 2522, + 'c', 2450, + 'd', 2489, + 'e', 2375, + 'f', 2436, + 'h', 2524, + 'i', 2418, + 'l', 2497, + 'm', 2448, + 'n', 2490, + 'o', 2374, + 'r', 2508, + 's', 2587, + 't', 2606, + 'u', 2641, + 'v', 2445, + 'w', 2519, + 'x', 2577, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 1, + ' ', 1, + '&', 1399, + '@', 1399, + 0x0b, 649, + '\f', 649, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\'' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + if (('A' <= lookahead && lookahead <= 'F')) ADVANCE(2715); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2431); + if (lookahead != 0) ADVANCE(2720); END_STATE(); case 2: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1019, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2152, - '+', 2236, - ',', 1966, - '-', 2023, - '.', 2277, - '/', 2221, - '0', 2333, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 982, - '>', 1996, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1157, - 'b', 1141, - 'c', 1055, - 'd', 1073, - 'e', 1002, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1054, - 'n', 1101, - 'o', 1004, - 'r', 1076, - 's', 1184, - 't', 1203, - 'u', 1238, - 'w', 1133, - 'x', 1193, - '{', 2088, - '|', 1930, - '}', 2089, - '\t', 4, - ' ', 4, - 0x0b, 565, - '\f', 565, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(2933); + if (lookahead == ':') ADVANCE(3615); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(649); END_STATE(); case 3: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1019, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2152, - '+', 2236, - ',', 1966, - '-', 2023, - '.', 2355, - '/', 2221, - '0', 2333, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 982, - '>', 1996, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1157, - 'b', 1141, - 'c', 1055, - 'd', 1073, - 'e', 1002, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1054, - 'n', 1101, - 'o', 1004, - 'r', 1076, - 's', 1184, - 't', 1203, - 'u', 1238, - 'w', 1133, - 'x', 1193, - '|', 1930, - '}', 2089, - '\t', 3, - ' ', 3, - 0x0b, 565, - '\f', 565, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\'' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(226); + if (lookahead == ':') ADVANCE(3615); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(649); END_STATE(); case 4: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1019, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2152, - '+', 2236, - ',', 1966, - '-', 2023, - '.', 2355, - '/', 2221, - '0', 2333, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 982, - '>', 1996, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1157, - 'b', 1141, - 'c', 1055, - 'd', 1073, - 'e', 1002, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1054, - 'n', 1101, - 'o', 1004, - 'r', 1076, - 's', 1184, - 't', 1203, - 'u', 1238, - 'w', 1133, - 'x', 1193, - '{', 2088, - '|', 1930, - '}', 2089, - '\t', 4, - ' ', 4, - 0x0b, 565, - '\f', 565, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(3350); END_STATE(); case 5: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1019, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2152, - '+', 2236, - ',', 1966, - '-', 2023, - '.', 2355, - '/', 2221, - '0', 2333, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 982, - '>', 1996, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1157, - 'b', 1141, - 'c', 1055, - 'd', 1073, - 'e', 1002, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1054, - 'n', 1101, - 'o', 1004, - 'r', 1076, - 's', 1184, - 't', 1203, - 'u', 1238, - 'w', 1133, - 'x', 1193, - '|', 1930, - '}', 2089, - '\t', 5, - ' ', 5, - 0x0b, 565, - '\f', 565, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(3347); END_STATE(); case 6: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1019, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2152, - '+', 2236, - ',', 1966, - '-', 2023, - '.', 2354, - '/', 2221, - '0', 2333, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 982, - '>', 1996, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1157, - 'b', 1141, - 'c', 1055, - 'd', 1073, - 'e', 1002, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1054, - 'n', 1101, - 'o', 1004, - 'r', 1076, - 's', 1184, - 't', 1203, - 'u', 1238, - 'w', 1133, - 'x', 1193, - '|', 1930, - '}', 2089, - '\t', 5, - ' ', 5, - 0x0b, 565, - '\f', 565, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(3367); END_STATE(); case 7: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 569, - '#', 4580, - '$', 1969, - '(', 1964, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - '?', 2157, - 'a', 671, - 'b', 653, - 'e', 537, - 'f', 599, - 'i', 637, - 'm', 683, - 'n', 687, - 'o', 540, - 's', 734, - 't', 706, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - '\t', 8, - ' ', 8, - 0x0b, 565, - '\f', 565, - ); + if (lookahead == '\n') ADVANCE(3355); END_STATE(); case 8: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 569, - '#', 4580, - '$', 1969, - '(', 1964, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - '?', 2157, - 'a', 671, - 'b', 653, - 'e', 537, - 'f', 599, - 'i', 637, - 'm', 683, - 'n', 687, - 'o', 540, - 's', 734, - 't', 706, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - '\t', 8, - ' ', 8, - 0x0b, 565, - '\f', 565, - ); + if (lookahead == '\n') ADVANCE(3344); END_STATE(); case 9: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 569, - '#', 4580, - '*', 2152, - '+', 2237, - '-', 2032, - '.', 2279, - '/', 2221, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 982, - '>', 1996, - '?', 2157, - 'a', 671, - 'b', 653, - 'e', 537, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '|', 1930, - '}', 2089, - '\t', 10, - ' ', 10, - 0x0b, 565, - '\f', 565, - ); + if (lookahead == '\n') ADVANCE(3349); END_STATE(); case 10: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 569, - '#', 4580, - '*', 2152, - '+', 2237, - '-', 2032, - '/', 2221, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 982, - '>', 1996, - '?', 2157, - 'a', 671, - 'b', 653, - 'e', 537, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '|', 1930, - '}', 2089, - '\t', 10, - ' ', 10, - 0x0b, 565, - '\f', 565, - ); + if (lookahead == '\n') ADVANCE(3366); END_STATE(); case 11: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 569, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 537, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '|', 1930, - '}', 2089, - '\t', 11, - ' ', 11, - 0x0b, 565, - '\f', 565, - ); + if (lookahead == '\n') ADVANCE(3354); END_STATE(); case 12: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1528, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 1527, - '/', 2220, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'B', 2379, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - '_', 1546, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1511, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1512, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '|', 1930, - '}', 2089, - 0xb5, 1596, - '\t', 11, - ' ', 11, - 0x0b, 565, - '\f', 565, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1615); + if (lookahead == '\n') ADVANCE(3362); END_STATE(); case 13: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1528, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 1527, - '/', 2220, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'B', 2379, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1511, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1512, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '|', 1930, - '}', 2089, - 0xb5, 1596, - '\t', 11, - ' ', 11, - 0x0b, 565, - '\f', 565, - ); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1615); + if (lookahead == '\n') ADVANCE(3361); END_STATE(); case 14: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1528, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 1527, - '/', 2220, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'B', 2379, - 'E', 1540, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1515, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1512, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '|', 1930, - '}', 2089, - 0xb5, 1596, - '\t', 11, - ' ', 11, - 0x0b, 565, - '\f', 565, - ); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1615); + if (lookahead == '\n') ADVANCE(3359); END_STATE(); case 15: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1528, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'B', 2379, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1511, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1512, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '|', 1930, - '}', 2089, - 0xb5, 1596, - '\t', 11, - ' ', 11, - 0x0b, 565, - '\f', 565, - ); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1615); + if (lookahead == '\n') ADVANCE(3348); END_STATE(); case 16: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '!', 1407, - '#', 4583, - '*', 2154, - '+', 2244, - '-', 2033, - '/', 2223, - ':', 2453, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 1434, - 'b', 1429, - 'e', 1397, - 'i', 1435, - 'm', 1442, - 'n', 1441, - 'o', 1395, - 's', 1458, - 'x', 1440, - '|', 1930, - '}', 2089, - '\t', 11, - ' ', 11, - 0x0b, 565, - '\f', 565, - ); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1472); + if (lookahead == '\n') ADVANCE(3360); END_STATE(); case 17: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - ')', 1965, - '*', 2150, - '+', 2235, - ',', 1966, - '-', 2010, - '.', 2351, - '/', 2225, - ':', 2453, - ';', 1929, - '<', 2192, - '=', 981, - '>', 1995, - '?', 2157, - '[', 1962, - ']', 1963, - '^', 2460, - '_', 2097, - '`', 594, - '{', 2088, - '|', 1930, - '}', 2089, - '\t', 17, - ' ', 17, - 0x0b, 565, - '\f', 565, - ); - if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '/' < lookahead) && - (lookahead < ':' || '@' < lookahead)) ADVANCE(1713); + if (lookahead == '\n') ADVANCE(3358); END_STATE(); case 18: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 556, - '-', 2024, - '.', 2352, - '0', 2331, - ':', 2453, - ';', 1929, - '=', 2565, - 'I', 780, - 'N', 771, - '[', 1962, - '_', 588, - '`', 594, - 'a', 662, - 'c', 680, - 'd', 628, - 'e', 533, - 'f', 599, - 'h', 649, - 'i', 638, - 'l', 650, - 'm', 595, - 'n', 627, - 'o', 535, - 't', 702, - 'u', 715, - '{', 2088, - '|', 1930, - '}', 2089, - '\t', 19, - ' ', 19, - 0x0b, 565, - '\f', 565, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2347); + if (lookahead == '\n') ADVANCE(3363); END_STATE(); case 19: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 556, - '-', 2024, - '.', 2352, - '0', 2331, - ':', 2453, - ';', 1929, - 'I', 780, - 'N', 771, - '[', 1962, - '_', 588, - '`', 594, - 'a', 662, - 'c', 680, - 'd', 628, - 'e', 533, - 'f', 599, - 'h', 649, - 'i', 638, - 'l', 650, - 'm', 595, - 'n', 627, - 'o', 535, - 't', 702, - 'u', 715, - '{', 2088, - '|', 1930, - '}', 2089, - '\t', 19, - ' ', 19, - 0x0b, 565, - '\f', 565, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2347); + if (lookahead == '\n') ADVANCE(3356); END_STATE(); case 20: - ADVANCE_MAP( - '\n', 1926, - '\r', 21, - '#', 4580, - ':', 2453, - ';', 1929, - 'e', 532, - 'o', 535, - '|', 1930, - '}', 2089, - '\t', 1927, - ' ', 1927, - 0x0b, 565, - '\f', 565, - ); + if (lookahead == '\n') ADVANCE(3352); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(1926); - if (lookahead == ':') ADVANCE(2453); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(565); + if (lookahead == '\n') ADVANCE(3353); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(1925); + if (lookahead == '\n') ADVANCE(3357); END_STATE(); case 23: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2279, - '/', 2220, - '0', 3369, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3342, - 'G', 3345, - 'I', 3441, - 'K', 3345, - 'M', 3345, - 'N', 3438, - 'P', 3345, - 'T', 3345, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 3405, - 'b', 2381, - 'd', 3377, - 'e', 3308, - 'f', 3376, - 'g', 3344, - 'h', 3421, - 'i', 3361, - 'k', 3344, - 'm', 3346, - 'n', 3410, - 'o', 3324, - 'p', 3344, - 's', 3386, - 't', 3343, - 'u', 3427, - 'w', 3401, - 'x', 3413, - '{', 2088, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3371); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); + if (lookahead == '\n') ADVANCE(3365); END_STATE(); case 24: + if (lookahead == '\n') ADVANCE(3364); + END_STATE(); + case 25: + if (lookahead == '\n') ADVANCE(2932); + END_STATE(); + case 26: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2279, - '/', 2220, - '0', 3369, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3345, - 'G', 3345, - 'I', 3441, - 'K', 3345, - 'M', 3345, - 'N', 3438, - 'P', 3345, - 'T', 3345, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 3405, - 'b', 2381, - 'd', 3377, - 'e', 3322, - 'f', 3376, - 'g', 3344, - 'h', 3421, - 'i', 3361, - 'k', 3344, - 'm', 3346, - 'n', 3410, - 'o', 3324, - 'p', 3344, - 's', 3386, - 't', 3343, - 'u', 3427, - 'w', 3401, - 'x', 3413, - '{', 2088, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '!', 3885, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '*', 3842, + '+', 3850, + ',', 2987, + '-', 634, + '.', 3875, + '/', 3881, + '0', 3473, + '<', 3886, + '=', 3887, + '>', 3888, + '?', 3263, + 'I', 4021, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'a', 3947, + 'b', 3938, + 'e', 3852, + 'f', 3917, + 'i', 3902, + 'm', 3956, + 'n', 3952, + 'o', 3854, + 's', 3977, + 't', 3960, + 'x', 3954, + '{', 3169, + '}', 3170, + '\t', 26, + ' ', 26, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3371); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && + (lookahead < ';' || '?' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); - case 25: + case 27: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2279, - '/', 2220, - '0', 2297, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3342, - 'G', 3345, - 'I', 3441, - 'K', 3345, - 'M', 3345, - 'N', 3438, - 'P', 3345, - 'T', 3345, - '[', 1962, - '_', 2094, - '`', 594, - 'a', 3405, - 'b', 2381, - 'd', 3377, - 'e', 3308, - 'f', 3376, - 'g', 3344, - 'h', 3421, - 'i', 3361, - 'k', 3344, - 'm', 3346, - 'n', 3410, - 'o', 3324, - 'p', 3344, - 's', 3386, - 't', 3343, - 'u', 3427, - 'w', 3401, - 'x', 3413, - '{', 2088, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '!', 3885, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '*', 3842, + '+', 3850, + ',', 2987, + '-', 634, + '.', 3875, + '/', 3881, + '0', 3473, + '<', 3886, + '=', 3887, + '>', 3888, + 'I', 4021, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'a', 3947, + 'b', 3938, + 'e', 3852, + 'f', 3917, + 'i', 3902, + 'm', 3956, + 'n', 3952, + 'o', 3854, + 's', 3977, + 't', 3960, + 'x', 3954, + '{', 3169, + '}', 3170, + '\t', 27, + ' ', 27, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); - case 26: + case 28: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2352, - '/', 2220, - '0', 3369, - '<', 2193, - '=', 3333, - '>', 1996, - 'I', 3441, - 'N', 3438, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 3405, - 'b', 3397, - 'e', 3323, - 'f', 3376, - 'i', 3361, - 'm', 3409, - 'n', 3411, - 'o', 3324, - 's', 3433, - 't', 3422, - 'x', 3413, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '!', 3885, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '*', 3842, + '+', 3850, + ',', 2987, + '-', 632, + '.', 3875, + '/', 3881, + '0', 3473, + '<', 3886, + '=', 3887, + '>', 3888, + 'I', 4021, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'a', 3947, + 'b', 3938, + 'e', 3852, + 'f', 3917, + 'i', 3902, + 'm', 3956, + 'n', 3952, + 'o', 3854, + 's', 3977, + 't', 3960, + 'x', 3954, + '{', 3169, + '}', 3170, + '\t', 28, + ' ', 28, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3371); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '9' < lookahead) && (lookahead < ';' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); - END_STATE(); - case 27: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2010, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3348, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 11, lookahead))) ADVANCE(3304); - END_STATE(); - case 28: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2010, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3348, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 11, lookahead))) ADVANCE(3304); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2010, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3351, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '!', 660, + '#', 5024, + ')', 2986, + '*', 587, + '+', 591, + ',', 2987, + '-', 656, + '/', 645, + ';', 2938, + '<', 663, + '=', 1144, + '>', 666, + '?', 3263, + 'a', 800, + 'b', 776, + 'e', 605, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 610, + 's', 903, + 'x', 818, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 29, + ' ', 29, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 11, lookahead))) ADVANCE(3304); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3348, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '{', 2088, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '!', 660, + '#', 5024, + ')', 2986, + '*', 588, + '+', 612, + ',', 2987, + '-', 3039, + '/', 646, + ';', 2938, + '<', 663, + '=', 664, + '>', 666, + '?', 3263, + 'a', 800, + 'b', 776, + 'e', 605, + 'i', 749, + 'm', 826, + 'n', 821, + 'o', 610, + 's', 903, + 'x', 818, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 30, + ' ', 30, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(64); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3348, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '{', 2088, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '!', 660, + '#', 5024, + ')', 2986, + '*', 588, + '+', 612, + '-', 934, + '/', 646, + ';', 2938, + '<', 663, + '=', 665, + '>', 666, + 'a', 800, + 'b', 776, + 'e', 605, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 610, + 's', 903, + 'x', 818, + '|', 2939, + '}', 3170, + '\t', 31, + ' ', 31, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(64); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3351, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '{', 2088, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '!', 660, + '#', 5024, + ')', 2986, + '*', 588, + '+', 612, + '-', 934, + '/', 646, + ';', 2938, + '<', 663, + '=', 665, + '>', 666, + 'a', 800, + 'b', 776, + 'e', 599, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 594, + 's', 903, + 'x', 818, + '|', 2939, + '}', 3170, + '\t', 32, + ' ', 32, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(64); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2010, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'a', 3407, - 'b', 3400, - 'e', 3408, - 'i', 3406, - 'm', 3412, - 'n', 3417, - 'o', 3420, - 's', 3434, - 'x', 3416, - '}', 2089, + '\n', 2932, + '\r', 25, + '!', 660, + '#', 5024, + '*', 588, + '+', 612, + ',', 2987, + '-', 934, + '/', 646, + '<', 663, + '=', 665, + '>', 666, + 'a', 800, + 'b', 776, + 'e', 808, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 846, + 's', 903, + 'x', 818, + '}', 3170, + '\t', 33, + ' ', 33, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 11, lookahead))) ADVANCE(3304); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'a', 3407, - 'b', 3400, - 'e', 3408, - 'i', 3406, - 'm', 3412, - 'n', 3417, - 'o', 3420, - 's', 3434, - 'x', 3416, - '{', 2088, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 636, + '-', 3047, + '.', 637, + '0', 2425, + ';', 2938, + '=', 1142, + '>', 3018, + '@', 3020, + 'I', 2707, + 'N', 2703, + '[', 2983, + '_', 2429, + '`', 695, + 'a', 2559, + 'c', 2446, + 'e', 2378, + 'f', 2442, + 'i', 2557, + 'l', 2526, + 'n', 2578, + 'o', 2379, + 't', 2633, + 'v', 2447, + 'x', 2575, + '{', 3169, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(64); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + lookahead == ' ') SKIP(35); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2432); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2352, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - 'I', 2771, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2709, - 'e', 2649, - 'f', 2689, - 'i', 2680, - 'm', 2724, - 'n', 2726, - 'o', 2651, - 's', 2749, - 't', 2736, - 'x', 2728, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 636, + '-', 3047, + '.', 637, + '0', 2425, + ';', 2938, + '=', 1142, + '>', 3018, + 'I', 2707, + 'N', 2703, + '[', 2983, + '_', 2429, + '`', 695, + 'a', 2559, + 'c', 2446, + 'e', 2378, + 'f', 2442, + 'i', 2557, + 'l', 2526, + 'n', 2578, + 'o', 2379, + 't', 2633, + 'v', 2447, + 'x', 2575, + '{', 3169, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(35); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2432); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2352, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - '?', 2157, - 'I', 2771, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2709, - 'e', 2649, - 'f', 2689, - 'i', 2680, - 'm', 2724, - 'n', 2726, - 'o', 2651, - 's', 2749, - 't', 2736, - 'x', 2728, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 3462, + '+', 1405, + '-', 3047, + '.', 1406, + '0', 3472, + ';', 2938, + '=', 3764, + 'I', 1637, + 'N', 1634, + '[', 2983, + '^', 3699, + '_', 1427, + '`', 695, + 'a', 1523, + 'b', 1568, + 'c', 1428, + 'd', 1454, + 'e', 1532, + 'f', 1431, + 'h', 1508, + 'i', 1424, + 'l', 1476, + 'm', 1433, + 'n', 1455, + 'o', 1628, + 'r', 1456, + 's', 1546, + 't', 1560, + 'u', 1588, + 'w', 1501, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(37); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '?' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2352, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - 'I', 2771, - 'N', 2766, - '[', 2406, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2709, - 'e', 2649, - 'f', 2689, - 'i', 2680, - 'm', 2724, - 'n', 2726, - 'o', 2651, - 's', 2749, - 't', 2736, - 'x', 2728, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 1405, + '-', 3047, + '.', 1406, + '0', 3472, + ';', 2938, + 'I', 1637, + 'N', 1634, + '[', 2983, + '^', 3699, + '_', 1427, + '`', 695, + 'a', 1523, + 'b', 1568, + 'c', 1428, + 'd', 1454, + 'e', 1532, + 'f', 1431, + 'h', 1508, + 'i', 1424, + 'l', 1476, + 'm', 1433, + 'n', 1455, + 'o', 1628, + 'r', 1456, + 's', 1546, + 't', 1560, + 'u', 1588, + 'w', 1501, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(37); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2352, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - 'I', 2771, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2709, - 'e', 2649, - 'f', 2689, - 'i', 2680, - 'm', 2724, - 'n', 2726, - 'o', 2651, - 's', 2749, - 't', 2736, - 'x', 2728, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 1405, + '-', 3047, + '.', 1406, + '0', 3472, + '=', 3764, + 'I', 1637, + 'N', 1634, + '[', 2983, + '^', 3699, + '_', 1427, + '`', 695, + 'a', 1534, + 'b', 1582, + 'c', 1430, + 'd', 1479, + 'e', 1533, + 'f', 1432, + 'h', 1511, + 'i', 1426, + 'l', 1485, + 'm', 1443, + 'n', 1455, + 'o', 1629, + 'r', 1494, + 's', 1555, + 't', 1569, + 'u', 1598, + 'w', 1506, + '{', 3169, + '\t', 2937, + ' ', 2937, + '!', 1943, + '&', 1943, + '*', 1943, + ',', 1943, + '?', 1943, + '@', 1943, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2279, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - '?', 2157, - 'I', 2771, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2709, - 'e', 2649, - 'f', 2689, - 'i', 2680, - 'm', 2724, - 'n', 2726, - 'o', 2651, - 's', 2749, - 't', 2736, - 'x', 2728, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 1405, + '-', 3047, + '.', 1406, + '0', 3472, + 'I', 1637, + 'N', 1634, + '[', 2983, + '^', 3699, + '_', 1427, + '`', 695, + 'a', 1534, + 'b', 1568, + 'c', 1429, + 'd', 1478, + 'e', 1187, + 'f', 1432, + 'h', 1511, + 'i', 1424, + 'l', 1485, + 'm', 1434, + 'n', 1455, + 'o', 1188, + 'r', 1495, + 's', 1555, + 't', 1560, + 'u', 1598, + 'w', 1507, + '{', 3169, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(39); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '?' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2279, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - 'B', 2379, - 'E', 2675, - 'G', 2678, - 'I', 2771, - 'K', 2678, - 'M', 2678, - 'N', 2766, - 'P', 2678, - 'T', 2678, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2381, - 'd', 2690, - 'e', 2643, - 'f', 2689, - 'g', 2677, - 'h', 2735, - 'i', 2680, - 'k', 2677, - 'm', 2679, - 'n', 2725, - 'o', 2651, - 'p', 2677, - 's', 2701, - 't', 2676, - 'u', 2744, - 'w', 2713, - 'x', 2728, - '{', 2088, - '}', 2089, - 0xb5, 2744, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 1405, + '-', 3047, + '.', 1406, + '0', 3472, + 'I', 1929, + 'N', 1924, + '[', 2983, + '^', 3699, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1659, + 'l', 1739, + 'm', 1686, + 'n', 1731, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(40); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2279, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - 'I', 2771, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2709, - 'e', 2649, - 'f', 2689, - 'i', 2680, - 'm', 2724, - 'n', 2726, - 'o', 2651, - 's', 2749, - 't', 2736, - 'x', 2728, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 1405, + '-', 616, + '.', 1661, + '=', 3764, + 'I', 1929, + 'N', 1924, + '[', 3546, + ']', 2984, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); case 42: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2276, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - '?', 2157, - 'I', 2771, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2709, - 'e', 2649, - 'f', 2689, - 'i', 2680, - 'm', 2724, - 'n', 2726, - 'o', 2651, - 's', 2749, - 't', 2736, - 'x', 2728, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 1405, + '-', 616, + '.', 1661, + 'I', 1929, + 'N', 1924, + ']', 2984, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '?' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); case 43: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2276, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - 'I', 2771, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2709, - 'e', 2649, - 'f', 2689, - 'i', 2680, - 'm', 2724, - 'n', 2726, - 'o', 2651, - 's', 2749, - 't', 2736, - 'x', 2728, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 3878, + '-', 3047, + '.', 3875, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3955, + 'o', 3855, + 't', 3960, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(43); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 44: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2358, - '/', 2220, - '0', 2297, - '<', 2193, - '=', 2666, - '>', 1996, - 'B', 2379, - 'E', 2675, - 'G', 2678, - 'I', 2771, - 'K', 2678, - 'M', 2678, - 'N', 2766, - 'P', 2678, - 'T', 2678, - '[', 1962, - '_', 2094, - '`', 594, - 'a', 2720, - 'b', 2381, - 'd', 2690, - 'e', 2643, - 'f', 2689, - 'g', 2677, - 'h', 2735, - 'i', 2680, - 'k', 2677, - 'm', 2679, - 'n', 2725, - 'o', 2651, - 'p', 2677, - 's', 2701, - 't', 2676, - 'u', 2744, - 'w', 2713, - 'x', 2728, - '{', 2088, - '}', 2089, - 0xb5, 2744, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 3878, + '-', 3033, + '.', 3875, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == ' ') SKIP(44); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 45: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2358, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - 'B', 2379, - 'E', 2675, - 'G', 2678, - 'I', 2771, - 'K', 2678, - 'M', 2678, - 'N', 2766, - 'P', 2678, - 'T', 2678, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2381, - 'd', 2690, - 'e', 2643, - 'f', 2689, - 'g', 2677, - 'h', 2735, - 'i', 2680, - 'k', 2677, - 'm', 2679, - 'n', 2725, - 'o', 2651, - 'p', 2677, - 's', 2701, - 't', 2676, - 'u', 2744, - 'w', 2713, - 'x', 2728, - '{', 2088, - '}', 2089, - 0xb5, 2744, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 4469, + '-', 4468, + '.', 4470, + '0', 3474, + ';', 2938, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(45); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); case 46: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2358, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - 'B', 2379, - 'E', 2678, - 'G', 2678, - 'I', 2771, - 'K', 2678, - 'M', 2678, - 'N', 2766, - 'P', 2678, - 'T', 2678, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2381, - 'd', 2690, - 'e', 2648, - 'f', 2689, - 'g', 2677, - 'h', 2735, - 'i', 2680, - 'k', 2677, - 'm', 2679, - 'n', 2725, - 'o', 2651, - 'p', 2677, - 's', 2701, - 't', 2676, - 'u', 2744, - 'w', 2713, - 'x', 2728, - '{', 2088, - '}', 2089, - 0xb5, 2744, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 4469, + '-', 4468, + '.', 4465, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(46); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); case 47: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2358, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - 'I', 2771, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2709, - 'e', 2649, - 'f', 2689, - 'i', 2680, - 'm', 2724, - 'n', 2726, - 'o', 2651, - 's', 2749, - 't', 2736, - 'x', 2728, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3875, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, + '\t', 27, + ' ', 27, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 48: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2665, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '*', 2151, - '+', 2241, - ',', 1966, - '-', 2028, - '.', 2352, - '/', 2220, - '0', 2329, - '<', 2193, - '=', 2666, - '>', 1996, - 'I', 2771, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'a', 2720, - 'b', 2709, - 'e', 2649, - 'f', 2689, - 'i', 2680, - 'm', 2724, - 'n', 2726, - 'o', 2651, - 's', 2749, - 't', 2736, - 'x', 2728, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4079, + ',', 2987, + '-', 4078, + '.', 4080, + '0', 3426, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 3176, + '`', 695, + 'd', 4120, + 'e', 4041, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4043, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '}', 3170, + 0xb5, 4164, + '\t', 27, + ' ', 27, + 'B', 3524, + 'b', 3524, + 'I', 4195, + 'i', 4195, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(48); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); case 49: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3179, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '*', 2151, - '+', 2241, - ',', 1966, - '-', 2028, - '.', 2276, - '/', 2220, - '0', 2297, - '<', 2193, - '=', 3333, - '>', 1996, - 'I', 3229, - 'N', 3226, - '[', 1962, - '_', 2094, - '`', 594, - 'a', 3202, - 'b', 3197, - 'e', 3172, - 'f', 3188, - 'i', 3181, - 'm', 3206, - 'n', 3207, - 'o', 3173, - 's', 3221, - 't', 3215, - 'x', 3209, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4079, + ',', 2987, + '-', 4078, + '.', 4080, + '0', 3475, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 3178, + '`', 695, + 'd', 4120, + 'e', 4041, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4043, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '}', 3170, + 0xb5, 4164, + '\t', 27, + ' ', 27, + 'B', 3524, + 'b', 3524, + 'I', 4195, + 'i', 4195, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(48); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3163); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); case 50: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3179, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2239, - ',', 1966, - '-', 2029, - '.', 2275, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - '_', 3183, - 'a', 3204, - 'b', 3199, - 'e', 3205, - 'i', 3203, - 'm', 3208, - 'n', 3212, - 'o', 3214, - 's', 3222, - 'x', 3211, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4079, + ',', 2987, + '-', 4078, + '.', 4080, + '0', 3475, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 3178, + '`', 695, + 'd', 4120, + 'e', 4044, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4043, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '}', 3170, + 0xb5, 4164, + '\t', 27, + ' ', 27, + 'B', 3524, + 'b', 3524, + 'I', 4195, + 'i', 4195, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 11, lookahead))) ADVANCE(3163); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); case 51: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3179, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2239, - '-', 2029, - '.', 2275, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - '_', 3183, - 'a', 3204, - 'b', 3199, - 'e', 3205, - 'i', 3203, - 'm', 3208, - 'n', 3212, - 'o', 3214, - 's', 3222, - 'x', 3211, - '{', 2088, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4079, + ',', 2987, + '-', 4078, + '.', 3394, + '0', 3475, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 3178, + '`', 695, + 'd', 4120, + 'e', 4041, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4043, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '}', 3170, + 0xb5, 4164, + '\t', 27, + ' ', 27, + 'B', 3524, + 'b', 3524, + 'I', 4195, + 'i', 4195, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3163); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); case 52: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3248, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '*', 2151, - '+', 2241, - ',', 1966, - '-', 2028, - '.', 2276, - '/', 2220, - '0', 2297, - '<', 2193, - '=', 3250, - '>', 1996, - 'I', 3301, - 'N', 3298, - '[', 1962, - '_', 2094, - '`', 594, - 'a', 3274, - 'b', 3269, - 'e', 3241, - 'f', 3260, - 'i', 3253, - 'm', 3278, - 'n', 3279, - 'o', 3242, - 's', 3293, - 't', 3287, - 'x', 3281, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3880, + ',', 2987, + '-', 641, + '.', 3876, + '0', 3427, + 'N', 4016, + '[', 2983, + '_', 3177, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(48); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == ' ') SKIP(84); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3232); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 53: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3248, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2239, - ',', 1966, - '-', 2029, - '.', 2275, - '/', 2220, - '<', 2193, - '=', 3250, - '>', 1996, - '_', 3255, - 'a', 3276, - 'b', 3271, - 'e', 3277, - 'i', 3275, - 'm', 3280, - 'n', 3284, - 'o', 3286, - 's', 3294, - 'x', 3283, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3880, + ',', 2987, + '-', 641, + '.', 3387, + '0', 3427, + 'N', 4016, + '[', 2983, + '_', 3177, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 12, lookahead))) ADVANCE(3232); + lookahead == ' ') SKIP(84); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 54: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3248, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2239, - '-', 2029, - '.', 2275, - '/', 2220, - '<', 2193, - '=', 3250, - '>', 1996, - '_', 3255, - 'a', 3276, - 'b', 3271, - 'e', 3277, - 'i', 3275, - 'm', 3280, - 'n', 3284, - 'o', 3286, - 's', 3294, - 'x', 3283, - '{', 2088, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3403, + ':', 2980, + '<', 3016, + '=', 1142, + '>', 3018, + '?', 3263, + '@', 3020, + '[', 3546, + ']', 2984, + '`', 695, + '{', 3169, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + lookahead == ' ') SKIP(55); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); END_STATE(); case 55: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2811, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '*', 2151, - '+', 2240, - ',', 1966, - '-', 2024, - '.', 2352, - '/', 2220, - '0', 2297, - '<', 2193, - '=', 2813, - '>', 1996, - 'I', 2869, - 'N', 2866, - '[', 1962, - '_', 2094, - '`', 594, - 'a', 2842, - 'b', 2837, - 'e', 2801, - 'f', 2828, - 'i', 2816, - 'm', 2846, - 'n', 2847, - 'o', 2802, - 's', 2861, - 't', 2855, - 'x', 2849, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 643, + ':', 2980, + '=', 1142, + '>', 3018, + '?', 3263, + ']', 2984, + '`', 695, + '{', 3169, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2791); + lookahead == ' ') SKIP(55); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 56: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2811, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2010, - '/', 2220, - '<', 2193, - '=', 2813, - '>', 1996, - '_', 2820, - 'a', 2844, - 'b', 2839, - 'e', 2845, - 'i', 2843, - 'm', 2848, - 'n', 2852, - 'o', 2854, - 's', 2862, - 'x', 2851, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 1408, + '0', 3479, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(56); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); case 57: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2811, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - '<', 2193, - '=', 2813, - '>', 1996, - '_', 2820, - 'a', 2844, - 'b', 2839, - 'e', 2845, - 'i', 2843, - 'm', 2848, - 'n', 2852, - 'o', 2854, - 's', 2862, - 'x', 2851, - '{', 2088, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 633, + '.', 3395, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, + '\t', 28, + ' ', 28, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(64); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 58: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3475, - '"', 2426, - '#', 4589, - '$', 1978, - '\'', 527, - '(', 2210, - '*', 2153, - '+', 2242, - ',', 1967, - '-', 2030, - '.', 2359, - '/', 2222, - '0', 3495, - '<', 2194, - '=', 3477, - '>', 1997, - 'I', 3679, - 'N', 3670, - '[', 1962, - '_', 2095, - '`', 594, - 'a', 3568, - 'b', 3549, - 'e', 3445, - 'f', 3500, - 'i', 3491, - 'm', 3584, - 'n', 3581, - 'o', 3444, - 's', 3633, - 't', 3596, - 'x', 3583, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3875, + '0', 3473, + '?', 3263, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == ' ') SKIP(58); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3709); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 59: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3475, - '#', 4589, - '(', 2210, - '*', 2153, - '+', 2243, - ',', 1967, - '-', 2034, - '/', 2222, - '<', 2194, - '=', 3477, - '>', 1997, - 'a', 3568, - 'b', 3549, - 'e', 3573, - 'i', 3570, - 'm', 3584, - 'n', 3582, - 'o', 3595, - 's', 3633, - 'x', 3583, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3875, + '0', 3473, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3846, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 11, lookahead))) ADVANCE(3709); + lookahead == ' ') SKIP(62); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 60: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3475, - '#', 4589, - '(', 2210, - '*', 2153, - '+', 2243, - '-', 2034, - '/', 2222, - '<', 2194, - '=', 3477, - '>', 1997, - 'a', 3568, - 'b', 3549, - 'e', 3573, - 'i', 3570, - 'm', 3584, - 'n', 3582, - 'o', 3595, - 's', 3633, - 'x', 3583, - '{', 2088, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3875, + '0', 3473, + 'N', 4016, + '[', 3546, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, + '\t', 27, + ' ', 27, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(64); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3709); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 61: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2011, - '.', 2279, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - '?', 2157, - 'B', 2379, - 'E', 582, - 'G', 584, - 'K', 584, - 'M', 584, - 'P', 584, - 'T', 584, - '[', 2406, - '_', 589, - 'a', 672, - 'b', 2382, - 'd', 597, - 'e', 528, - 'g', 583, - 'h', 700, - 'i', 637, - 'k', 583, - 'm', 585, - 'n', 690, - 'o', 540, - 'p', 583, - 's', 629, - 't', 583, - 'u', 712, - 'w', 656, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 712, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3875, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, + '\t', 27, + ' ', 27, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 62: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2011, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - '?', 2157, - 'a', 672, - 'b', 653, - 'e', 537, - 'i', 637, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3875, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || lookahead == ' ') SKIP(62); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 63: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2010, - '/', 2220, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 673, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 696, - 's', 734, - 'x', 685, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3875, + '0', 3427, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3177, + '`', 695, + 'e', 3846, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(63); + lookahead == ' ') SKIP(62); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 64: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 673, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 696, - 's', 734, - 'x', 685, - '{', 2088, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3877, + '0', 3473, + 'E', 3897, + 'G', 3900, + 'K', 3900, + 'M', 3900, + 'N', 4016, + 'P', 3900, + 'T', 3900, + '[', 2983, + '_', 3173, + '`', 695, + 'd', 3918, + 'e', 3845, + 'f', 3917, + 'g', 3899, + 'h', 3959, + 'k', 3899, + 'm', 3901, + 'n', 3971, + 'o', 3855, + 'p', 3899, + 's', 3929, + 't', 3898, + 'u', 3972, + 'w', 3941, + '{', 3169, + '}', 3170, + 0xb5, 3972, + '\t', 27, + ' ', 27, + 'B', 3524, + 'b', 3524, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(64); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 65: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - '*', 2151, - '+', 2239, - ',', 1966, - '-', 2029, - '/', 2220, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 673, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 696, - 's', 734, - 'x', 685, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3877, + '0', 3473, + 'E', 3900, + 'G', 3900, + 'K', 3900, + 'M', 3900, + 'N', 4016, + 'P', 3900, + 'T', 3900, + '[', 2983, + '_', 3173, + '`', 695, + 'd', 3918, + 'e', 3851, + 'f', 3917, + 'g', 3899, + 'h', 3959, + 'k', 3899, + 'm', 3901, + 'n', 3971, + 'o', 3855, + 'p', 3899, + 's', 3929, + 't', 3898, + 'u', 3972, + 'w', 3941, + '{', 3169, + '}', 3170, + 0xb5, 3972, + '\t', 27, + ' ', 27, + 'B', 3524, + 'b', 3524, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(65); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 66: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - '*', 2151, - '+', 2239, - '-', 2029, - '/', 2220, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 673, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 696, - 's', 734, - 'x', 685, - '{', 2088, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3877, + '0', 3473, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3846, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(66); + lookahead == ' ') SKIP(62); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 67: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2661, - ',', 1966, - '-', 559, - '.', 2276, - '0', 2297, - 'N', 2766, - '[', 1962, - '_', 2094, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3877, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, + '\t', 27, + ' ', 27, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(87); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 562, - ':', 1958, - '=', 981, - '>', 1995, - '?', 2157, - ']', 1963, - '`', 594, - '{', 2088, - '|', 1930, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3877, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(62); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 69: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ':', 1958, - '<', 1994, - '=', 981, - '>', 1995, - '?', 2157, - '@', 1999, - '[', 2406, - ']', 1963, - '`', 594, - '{', 2088, - '|', 1930, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3877, + '0', 3427, + 'E', 3897, + 'G', 3900, + 'K', 3900, + 'M', 3900, + 'N', 4016, + 'P', 3900, + 'T', 3900, + '[', 2983, + '_', 3177, + '`', 695, + 'd', 3918, + 'e', 3845, + 'f', 3917, + 'g', 3899, + 'h', 3959, + 'k', 3899, + 'm', 3901, + 'n', 3971, + 'o', 3855, + 'p', 3899, + 's', 3929, + 't', 3898, + 'u', 3972, + 'w', 3941, + '{', 3169, + '}', 3170, + 0xb5, 3972, + '\t', 27, + ' ', 27, + 'B', 3524, + 'b', 3524, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1713); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2355, - '0', 2333, - 'I', 1301, - 'N', 1297, - '[', 2406, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3877, + '0', 3427, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3177, + '`', 695, + 'e', 3846, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + lookahead == ' ') SKIP(62); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2355, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3395, + '0', 3473, + '?', 3263, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, + '\t', 26, + ' ', 26, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2352, - '0', 2297, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2094, - '`', 594, - 'e', 2644, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3395, + '0', 3473, + '?', 3263, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(58); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2352, - '0', 2297, - 'N', 2766, - '[', 1962, - '_', 2094, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3395, + '0', 3473, + 'E', 3897, + 'G', 3900, + 'K', 3900, + 'M', 3900, + 'N', 4016, + 'P', 3900, + 'T', 3900, + '[', 2983, + '_', 3173, + '`', 695, + 'd', 3918, + 'e', 3845, + 'f', 3917, + 'g', 3899, + 'h', 3959, + 'k', 3899, + 'm', 3901, + 'n', 3971, + 'o', 3855, + 'p', 3899, + 's', 3929, + 't', 3898, + 'u', 3972, + 'w', 3941, + '{', 3169, + '}', 3170, + 0xb5, 3972, + '\t', 27, + ' ', 27, + 'B', 3524, + 'b', 3524, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2352, - '0', 2329, - '?', 2157, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3395, + '0', 3473, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3846, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(62); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2352, - '0', 2329, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2644, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3395, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(62); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 76: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2352, - '0', 2329, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3382, + '0', 3473, + '?', 3263, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, + '\t', 26, + ' ', 26, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 77: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2279, - '0', 2329, - '?', 2157, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3382, + '0', 3473, + '?', 3263, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(58); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 78: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2279, - '0', 2329, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2644, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3382, + '0', 3473, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3846, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(62); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2279, - '0', 2329, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3382, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, + '\t', 27, + ' ', 27, + 'I', 4021, + 'i', 4021, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2276, - '0', 2329, - '?', 2157, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + ',', 2987, + '-', 635, + '.', 3382, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(62); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2276, - '0', 2329, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2644, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3878, + '-', 635, + '.', 3875, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(81); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 82: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2276, - '0', 2329, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4079, + ',', 2987, + '-', 4078, + '.', 4076, + '0', 3475, + 'N', 4188, + '[', 2983, + '_', 3178, + '`', 695, + 'e', 4045, + 'f', 4121, + 'n', 4174, + 'o', 4043, + 't', 4152, + '{', 3169, + '}', 3170, + '\t', 27, + ' ', 27, + 'I', 4195, + 'i', 4195, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2358, - '0', 2297, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2094, - '`', 594, - 'e', 2644, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 1200, + '0', 3480, + 'I', 1386, + 'N', 1381, + '[', 3546, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1305, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == ' ') SKIP(56); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2358, - '0', 2329, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2644, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3880, + ',', 2987, + '-', 641, + '.', 3876, + '0', 3473, + 'N', 4016, + '[', 2983, + '_', 3173, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(84); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - ',', 1966, - '-', 555, - '.', 2358, - '0', 2329, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '\'', 585, + ')', 2986, + '*', 3260, + '+', 1405, + '-', 635, + '.', 1661, + ';', 2938, + '=', 673, + 'I', 1929, + 'N', 1924, + '[', 2983, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == ' ') SKIP(85); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1943); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2660, - '-', 554, - '.', 2352, - '0', 2329, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5031, + '$', 2995, + '\'', 585, + '(', 3294, + '+', 4249, + ',', 2988, + '-', 4248, + '.', 4245, + '0', 4275, + 'N', 4417, + '[', 2983, + '_', 3179, + '`', 695, + 'e', 4228, + 'f', 4281, + 'n', 4394, + 'o', 4229, + 't', 4356, + '{', 3169, + '}', 3170, + '\t', 27, + ' ', 27, + 'I', 4426, + 'i', 4426, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(86); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4279); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4456); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2661, - ',', 1966, - '-', 559, - '.', 2352, - '0', 2329, - 'N', 2766, - '[', 1962, - '_', 2093, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + '+', 4566, + ',', 2987, + '-', 3037, + '.', 4562, + ':', 2980, + ']', 2984, + '_', 2422, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(87); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + lookahead == ' ') SKIP(116); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 88: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 1016, - '-', 2024, - '.', 2352, - '0', 2328, - ';', 1929, - '=', 2565, - 'I', 1301, - 'N', 1297, - '[', 1962, - '^', 2460, - '_', 1031, - '`', 594, - 'a', 1158, - 'b', 1214, - 'c', 1038, - 'd', 1073, - 'e', 1167, - 'f', 1041, - 'h', 1136, - 'i', 1028, - 'l', 1096, - 'm', 1043, - 'n', 1074, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1125, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + '+', 4566, + ',', 2987, + '-', 3037, + '.', 4562, + ']', 2984, + '_', 2422, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(89); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2344); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead == ' ') SKIP(117); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 89: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 1016, - '-', 2024, - '.', 2352, - '0', 2328, - ';', 1929, - 'I', 1301, - 'N', 1297, - '[', 1962, - '^', 2460, - '_', 1031, - '`', 594, - 'a', 1158, - 'b', 1214, - 'c', 1038, - 'd', 1073, - 'e', 1167, - 'f', 1041, - 'h', 1136, - 'i', 1028, - 'l', 1096, - 'm', 1043, - 'n', 1074, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1125, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + '+', 4566, + ',', 2987, + '-', 3037, + '.', 3399, + ':', 2980, + ']', 2984, + '_', 2422, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(89); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2344); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead == ' ') SKIP(116); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 90: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 556, - '-', 2024, - '.', 2352, - '0', 1631, - ';', 1929, - '=', 981, - '>', 1995, - '@', 1999, - 'I', 1704, - 'N', 1700, - '[', 1962, - '_', 1633, - '`', 594, - 'a', 1665, - 'c', 1639, - 'e', 1617, - 'f', 1640, - 'i', 1663, - 'l', 1655, - 'n', 1670, - 'o', 1616, - 't', 1677, - 'v', 1642, - 'x', 1673, - '{', 2088, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + '+', 4566, + ',', 2987, + '-', 3037, + '.', 3399, + ']', 2984, + '_', 2422, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1713); + lookahead == ' ') SKIP(117); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 556, - '-', 2024, - '.', 2352, - '0', 1631, - ';', 1929, - '=', 981, - '>', 1995, - 'I', 1704, - 'N', 1700, - '[', 1962, - '_', 1633, - '`', 594, - 'a', 1665, - 'c', 1639, - 'e', 1617, - 'f', 1640, - 'i', 1663, - 'l', 1655, - 'n', 1670, - 'o', 1616, - 't', 1677, - 'v', 1642, - 'x', 1673, - '{', 2088, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3403, + ':', 2980, + 'E', 2372, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + ']', 2984, + 'd', 2439, + 'e', 2371, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + '|', 2939, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1713); + lookahead == ' ') SKIP(123); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 1016, - '-', 2024, - '.', 2352, - '0', 2328, - 'I', 1301, - 'N', 1297, - '[', 1962, - '^', 2460, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1214, - 'c', 1039, - 'd', 1098, - 'e', 1003, - 'f', 1042, - 'h', 1144, - 'i', 1028, - 'l', 1111, - 'm', 1044, - 'n', 1074, - 'o', 1005, - 'r', 1119, - 's', 1198, - 't', 1203, - 'u', 1247, - 'w', 1135, - '{', 2088, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3403, + ':', 2980, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(92); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2344); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead == ' ') SKIP(123); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2373); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 1016, - '-', 2024, - '.', 2352, - '0', 2328, - 'I', 1301, - 'N', 1297, - '[', 1962, - '^', 2460, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1028, - 'l', 1111, - 'm', 1056, - 'n', 1074, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '{', 2088, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3403, + 'E', 2372, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + ']', 2984, + 'd', 2439, + 'e', 2371, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + '|', 2939, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(93); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2344); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead == ' ') SKIP(124); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 94: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 1016, - '-', 543, - '.', 2351, - '=', 2565, - 'I', 1301, - 'N', 1297, - '[', 2406, - ']', 1963, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '{', 2088, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3403, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(95); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead == ' ') SKIP(124); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2373); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 95: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 1016, - '-', 543, - '.', 2351, - 'I', 1301, - 'N', 1297, - ']', 1963, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '{', 2088, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + ':', 2980, + 'E', 2372, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + ']', 2984, + '_', 2422, + 'd', 2439, + 'e', 2371, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + '|', 2939, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(95); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead == ' ') SKIP(123); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 96: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 2660, - '-', 2024, - '.', 2352, - '0', 2329, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2730, - 'o', 2652, - 't', 2736, - '{', 2088, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + ':', 2980, + 'E', 2372, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + ']', 2984, + 'd', 2439, + 'e', 2371, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + '|', 2939, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(96); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + lookahead == ' ') SKIP(123); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 97: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 2660, - '-', 2012, - '.', 2352, - '0', 2329, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '{', 2088, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + ':', 2980, + 'E', 2416, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + ']', 2984, + 'd', 2439, + 'e', 2415, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + '|', 2939, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(97); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + lookahead == ' ') SKIP(123); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 3718, - '-', 3717, - '.', 2352, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + ':', 2980, + ']', 2984, + '_', 2422, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + lookahead == ' ') SKIP(123); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2373); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 3718, - '-', 3717, - '.', 2364, - '0', 2330, - ';', 1929, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + ':', 2980, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(99); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + lookahead == ' ') SKIP(123); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2373); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - ')', 1965, - '*', 2150, - '+', 1016, - '-', 555, - '.', 2351, - ';', 1929, - '=', 572, - 'I', 1301, - 'N', 1297, - '[', 1962, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + ':', 2980, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1316); + lookahead == ' ') SKIP(123); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '+', 560, - ',', 1966, - '-', 2014, - '.', 2275, - ';', 1929, - '=', 572, - '_', 589, - 'a', 671, - 'e', 538, - 'i', 636, - 'o', 540, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + 'E', 2372, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + ']', 2984, + '_', 2422, + 'd', 2439, + 'e', 2371, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + '|', 2939, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ' ') SKIP(124); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 102: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '+', 560, - ',', 1966, - '-', 2014, - '.', 2281, - ':', 1958, - ']', 1963, - '_', 1638, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + 'E', 2372, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + ']', 2984, + 'd', 2439, + 'e', 2371, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + '|', 2939, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(124); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 103: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '+', 3899, - ',', 1966, - '-', 2014, - '.', 2281, - ':', 1958, - ']', 1963, - '_', 3904, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + 'E', 2416, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + ']', 2984, + 'd', 2439, + 'e', 2415, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + '|', 2939, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(131); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3926); + lookahead == ' ') SKIP(124); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || - ('>' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3910); + lookahead == '+' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 104: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '+', 3899, - ',', 1966, - '-', 2014, - '.', 2281, - ']', 1963, - '_', 3904, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + ']', 2984, + '_', 2422, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(132); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3926); + lookahead == ' ') SKIP(124); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2373); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || + lookahead == '+' || lookahead == ':' || - ('>' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3910); + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 105: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '+', 3914, - ',', 1966, - '-', 2014, - '.', 2281, - ':', 1958, - ']', 1963, - '_', 3919, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(131); + lookahead == ' ') SKIP(124); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2373); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || + lookahead == '+' || + lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3925); + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 106: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '+', 3914, - ',', 1966, - '-', 2014, - '.', 2281, - ']', 1963, - '_', 3919, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4567, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(132); + lookahead == ' ') SKIP(124); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || + lookahead == '+' || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3925); + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 107: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '+', 3794, - ',', 1966, - '-', 2014, - '.', 2281, - ':', 1958, - ']', 1963, - '_', 3802, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4563, + ':', 2980, + ']', 2984, + '_', 2422, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(131); + lookahead == ' ') SKIP(123); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2373); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || + lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == '^') ADVANCE(4655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 108: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '+', 3794, - ',', 1966, - '-', 2014, - '.', 2281, - ']', 1963, - '_', 3802, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4563, + ':', 2980, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(132); + lookahead == ' ') SKIP(123); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2373); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || - lookahead == ':' || + lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 109: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2281, - ':', 1958, - '=', 981, - '?', 2157, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4563, + ':', 2980, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(137); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(123); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 110: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2281, - ':', 1958, - ']', 1963, - '_', 3802, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4563, + ']', 2984, + '_', 2422, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); + lookahead == ' ') SKIP(124); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3793); + lookahead == 'e') ADVANCE(2373); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || + lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 111: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2281, - ':', 1958, - ']', 1963, - '_', 3802, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4563, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); + lookahead == ' ') SKIP(124); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2373); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || + lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 112: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2281, - ':', 1958, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 4563, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3793); + lookahead == ' ') SKIP(124); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || + lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 113: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2281, - ':', 1958, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3398, + ':', 2980, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); + lookahead == ' ') SKIP(123); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2373); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 114: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2281, - ']', 1963, - '_', 3802, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3398, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(141); + lookahead == ' ') SKIP(124); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); + lookahead == 'e') ADVANCE(2373); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == '^') ADVANCE(4655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 115: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2281, - ']', 1963, - '_', 3802, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 2985, + '+', 636, + '-', 3047, + '.', 684, + '0', 2424, + 'N', 2703, + '_', 2429, + 'f', 2443, + 'n', 2579, + 't', 2633, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == ' ') SKIP(115); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2707); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2429); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 116: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2281, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + '+', 642, + ',', 2987, + '-', 3036, + '.', 644, + ':', 2980, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3793); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == ' ') SKIP(116); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 117: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2281, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + '+', 642, + ',', 2987, + '-', 3036, + '.', 644, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == ' ') SKIP(117); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 118: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ':', 1958, - 'E', 3932, - 'G', 3947, - 'K', 3947, - 'M', 3947, - 'P', 3947, - 'T', 3947, - ']', 1963, - '_', 3952, - 'd', 3957, - 'e', 3931, - 'g', 3946, - 'h', 3966, - 'k', 3946, - 'm', 3948, - 'n', 3969, - 'p', 3946, - 's', 3960, - 't', 3946, - 'u', 3969, - 'w', 3963, - '|', 1930, - 0xb5, 3969, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 638, + ':', 2980, + ';', 2938, + '=', 1142, + 'a', 799, + 'e', 607, + 'i', 796, + 'o', 608, + 'x', 817, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3926); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3973); + lookahead == ' ') SKIP(125); END_STATE(); case 119: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ':', 1958, - 'E', 3932, - 'G', 3947, - 'K', 3947, - 'M', 3947, - 'P', 3947, - 'T', 3947, - ']', 1963, - 'd', 3957, - 'e', 3931, - 'g', 3946, - 'h', 3966, - 'k', 3946, - 'm', 3948, - 'n', 3969, - 'p', 3946, - 's', 3960, - 't', 3946, - 'u', 3969, - 'w', 3963, - '|', 1930, - 0xb5, 3969, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3401, + ':', 2980, + '=', 1142, + '?', 3263, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3926); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3973); + lookahead == ' ') SKIP(121); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 120: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ':', 1958, - 'E', 3947, - 'G', 3947, - 'K', 3947, - 'M', 3947, - 'P', 3947, - 'T', 3947, - ']', 1963, - 'd', 3957, - 'e', 3946, - 'g', 3946, - 'h', 3966, - 'k', 3946, - 'm', 3948, - 'n', 3969, - 'p', 3946, - 's', 3960, - 't', 3946, - 'u', 3969, - 'w', 3963, - '|', 1930, - 0xb5, 3969, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 643, + ':', 2980, + '=', 1142, + '?', 3024, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3926); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3973); + lookahead == ' ') SKIP(122); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 121: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ':', 1958, - ']', 1963, - '_', 3802, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 643, + ':', 2980, + '=', 1142, + '?', 3263, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3793); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == ' ') SKIP(121); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 122: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ':', 1958, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 643, + ':', 2980, + '=', 1142, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3793); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == ' ') SKIP(122); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 123: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ':', 1958, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 643, + ':', 2980, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + lookahead == ' ') SKIP(123); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 124: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - 'E', 3932, - 'G', 3947, - 'K', 3947, - 'M', 3947, - 'P', 3947, - 'T', 3947, - ']', 1963, - '_', 3952, - 'd', 3957, - 'e', 3931, - 'g', 3946, - 'h', 3966, - 'k', 3946, - 'm', 3948, - 'n', 3969, - 'p', 3946, - 's', 3960, - 't', 3946, - 'u', 3969, - 'w', 3963, - '|', 1930, - 0xb5, 3969, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 643, + ']', 2984, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3926); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3973); + lookahead == ' ') SKIP(124); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 125: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - 'E', 3932, - 'G', 3947, - 'K', 3947, - 'M', 3947, - 'P', 3947, - 'T', 3947, - ']', 1963, - 'd', 3957, - 'e', 3931, - 'g', 3946, - 'h', 3966, - 'k', 3946, - 'm', 3948, - 'n', 3969, - 'p', 3946, - 's', 3960, - 't', 3946, - 'u', 3969, - 'w', 3963, - '|', 1930, - 0xb5, 3969, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + ',', 2987, + '-', 3030, + ':', 2980, + ';', 2938, + '=', 1142, + 'a', 799, + 'e', 607, + 'i', 796, + 'o', 608, + 'x', 817, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3926); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3973); + lookahead == ' ') SKIP(125); END_STATE(); case 126: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - 'E', 3947, - 'G', 3947, - 'K', 3947, - 'M', 3947, - 'P', 3947, - 'T', 3947, - ']', 1963, - 'd', 3957, - 'e', 3946, - 'g', 3946, - 'h', 3966, - 'k', 3946, - 'm', 3948, - 'n', 3969, - 'p', 3946, - 's', 3960, - 't', 3946, - 'u', 3969, - 'w', 3963, - '|', 1930, - 0xb5, 3969, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3392, + ';', 2938, + '=', 673, + '?', 3263, + 'E', 680, + 'G', 680, + 'K', 680, + 'M', 680, + 'P', 680, + 'T', 680, + '[', 3546, + 'd', 698, + 'e', 603, + 'g', 679, + 'h', 834, + 'i', 746, + 'k', 679, + 'm', 681, + 'n', 857, + 'o', 611, + 'p', 679, + 's', 739, + 't', 679, + 'u', 857, + 'w', 780, + '{', 3169, + '|', 2939, + '}', 3170, + 0xb5, 857, + '\t', 30, + ' ', 30, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3926); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3973); END_STATE(); case 127: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ']', 1963, - '_', 3802, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ',', 2987, + '.', 3392, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '}', 3170, + 0xb5, 4164, + '\t', 33, + ' ', 33, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4218); END_STATE(); case 128: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ',', 2987, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '}', 3170, + 0xb5, 4164, + '\t', 33, + ' ', 33, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3793); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4218); END_STATE(); case 129: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ',', 2987, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '}', 3170, + 0xb5, 4164, + '\t', 33, + ' ', 33, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3812); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4218); END_STATE(); case 130: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 1964, - '+', 556, - '-', 2024, - '.', 2351, - '0', 1632, - 'N', 1700, - '_', 1633, - 'f', 1641, - 'n', 1671, - 't', 1677, - '{', 2088, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ',', 2987, + '.', 4081, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4102, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '}', 3170, + 0xb5, 4164, + '\t', 33, + ' ', 33, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1704); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4218); END_STATE(); case 131: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - '+', 560, - ',', 1966, - '-', 2014, - '.', 562, - ':', 1958, - ']', 1963, - '|', 1930, - ); + if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(3392); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(131); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(144); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 132: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - '+', 560, - ',', 1966, - '-', 2014, - '.', 562, - ']', 1963, - '|', 1930, - ); + if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4081); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(132); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(144); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 133: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - '+', 560, - ',', 1966, - '-', 2014, - ';', 1929, - '=', 572, - 'a', 671, - 'e', 538, - 'i', 636, - 'o', 540, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); + if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4081); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(133); + lookahead == ' ') SKIP(144); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 134: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 3935, - ':', 1958, - ']', 1963, - '|', 1930, - ); + if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4081); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3926); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3973); + lookahead == ' ') SKIP(144); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 135: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 3935, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 674, + '.', 3378, + ':', 2980, + ';', 2938, + '=', 1142, + '>', 3018, + '@', 3020, + '[', 2983, + 'c', 2509, + 'e', 2628, + 'f', 2695, + 'i', 2558, + 'l', 2526, + 'o', 2568, + 'v', 2447, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3926); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3973); + lookahead == ' ') SKIP(136); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 136: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 562, - ':', 1958, - '=', 981, - '?', 2003, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 674, + ':', 2980, + ';', 2938, + '=', 1142, + '>', 3018, + '[', 2983, + 'c', 2509, + 'e', 2628, + 'f', 2695, + 'i', 2558, + 'l', 2526, + 'o', 2568, + 'v', 2447, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(138); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(136); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 137: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 562, - ':', 1958, - '=', 981, - '?', 2157, - ']', 1963, - '|', 1930, - ); + if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == ',') ADVANCE(2987); + if (lookahead == '}') ADVANCE(3170); if (lookahead == '\t' || - lookahead == ' ') SKIP(137); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') ADVANCE(33); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4218); END_STATE(); case 138: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 562, - ':', 1958, - '=', 981, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '.', 3392, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 0xb5, 4164, + '\t', 2937, + ' ', 2937, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(138); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 139: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 562, - ':', 1958, - ']', 1963, - '_', 1638, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 0xb5, 4164, + '\t', 2937, + ' ', 2937, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 140: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 562, - ':', 1958, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 0xb5, 4164, + '\t', 2937, + ' ', 2937, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 141: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 562, - ']', 1963, - '|', 1930, + '\n', 2932, + '\r', 25, + '#', 5024, + '.', 4081, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4102, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 0xb5, 4164, + '\t', 2937, + ' ', 2937, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 142: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 561, - ':', 1958, - ']', 1963, - '_', 1638, - '|', 1930, - ); + if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(3764); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') ADVANCE(2937); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); END_STATE(); case 143: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2281, - ':', 1958, - ']', 1963, - '|', 1930, - ); + if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(3764); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1618); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') ADVANCE(2937); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 144: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 2280, - ':', 1958, - ']', 1963, - '|', 1930, - ); + if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1618); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(144); END_STATE(); case 145: - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - '-', 2011, - '.', 2279, - ':', 1958, - ';', 1929, - '=', 2565, - '>', 1995, - '@', 1999, - '[', 1962, - 'c', 1647, - 'e', 1684, - 'f', 1698, - 'i', 1664, - 'l', 1655, - 'o', 1668, - 'v', 1642, - '{', 2088, - '}', 2089, - ); + if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(5024); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') ADVANCE(2937); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 146: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - '-', 2011, - ':', 1958, - ';', 1929, - '>', 1995, - '[', 1962, - 'c', 1647, - 'e', 1684, - 'f', 1698, - 'i', 1664, - 'l', 1655, - 'o', 1668, - 'v', 1642, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5031, + '(', 3294, + ',', 2988, + '}', 3170, + '\t', 33, + ' ', 33, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4456); END_STATE(); case 147: - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == '{') ADVANCE(2088); + if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(5031); + if (lookahead == '(') ADVANCE(3294); if (lookahead == '\t' || - lookahead == ' ') SKIP(158); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') ADVANCE(2937); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 148: - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '{') ADVANCE(2088); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5030, + '$', 2994, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3044, + '.', 4675, + ':', 2981, + ']', 2984, + '|', 2939, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(158); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(123); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4727); END_STATE(); case 149: - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '{') ADVANCE(2088); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5030, + '$', 2994, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3044, + '.', 4675, + ']', 2984, + '|', 2939, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(158); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(124); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4727); END_STATE(); case 150: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '.', 2275, - '_', 3183, - '\t', 1928, - ' ', 1928, - '+', 3176, - '-', 3176, - '<', 3304, - '=', 3304, + '\n', 2935, + '\r', 172, + '!', 1644, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '*', 1182, + '+', 3618, + ',', 2987, + '-', 3045, + '.', 1408, + '/', 1414, + '0', 3479, + ':', 3615, + ';', 2938, + '<', 663, + '=', 1144, + '>', 666, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1779, + 'b', 1763, + 'c', 1673, + 'd', 1713, + 'e', 1183, + 'f', 1674, + 'h', 1759, + 'i', 1658, + 'l', 1727, + 'm', 1677, + 'n', 1714, + 'o', 1185, + 'r', 1716, + 's', 1804, + 't', 1824, + 'u', 1855, + 'w', 1754, + 'x', 1810, + '|', 2939, + '}', 3170, + '\t', 150, + ' ', 150, + 0x0b, 649, + '\f', 649, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3163); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead != 0 && + (lookahead < '\'' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); case 151: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '.', 2275, - '_', 3255, - '\t', 1928, - ' ', 1928, - '+', 3245, - '-', 3245, + '\n', 2935, + '\r', 172, + '!', 1644, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '*', 1182, + '+', 3618, + ',', 2987, + '-', 3045, + '.', 1408, + '/', 1414, + '0', 3479, + ':', 3615, + ';', 2938, + '<', 663, + '=', 1144, + '>', 666, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1779, + 'b', 1763, + 'c', 1673, + 'd', 1713, + 'e', 1183, + 'f', 1674, + 'h', 1759, + 'i', 1658, + 'l', 1727, + 'm', 1677, + 'n', 1714, + 'o', 1185, + 'r', 1716, + 's', 1804, + 't', 1824, + 'u', 1855, + 'w', 1754, + 'x', 1810, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 151, + ' ', 151, + 0x0b, 649, + '\f', 649, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1943); END_STATE(); case 152: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '.', 2279, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - 0xb5, 3427, - '\t', 1928, - ' ', 1928, - 'B', 2379, - 'b', 2379, + '\n', 2935, + '\r', 172, + '!', 1644, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '*', 1182, + '+', 3618, + ',', 2987, + '-', 3045, + '.', 1408, + '/', 1414, + '0', 3479, + ':', 3615, + ';', 2938, + '<', 663, + '=', 1144, + '>', 666, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1779, + 'b', 1763, + 'c', 1673, + 'd', 1713, + 'e', 1183, + 'f', 1674, + 'h', 1759, + 'i', 1658, + 'l', 1727, + 'm', 1677, + 'n', 1714, + 'o', 1185, + 'r', 1716, + 's', 1804, + 't', 1824, + 'u', 1855, + 'w', 1754, + 'x', 1810, + '|', 2939, + '}', 3170, + '\t', 152, + ' ', 152, + 0x0b, 649, + '\f', 649, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); case 153: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '.', 2279, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - 0xb5, 3427, - '\t', 1928, - ' ', 1928, - 'B', 2379, - 'b', 2379, + '\n', 2935, + '\r', 172, + '!', 660, + '#', 5024, + '*', 587, + '+', 591, + '-', 656, + '/', 645, + ':', 3615, + ';', 2938, + '<', 663, + '=', 1144, + '>', 666, + '?', 3263, + 'a', 800, + 'b', 776, + 'e', 605, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 610, + 's', 903, + 'x', 818, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 153, + ' ', 153, + 0x0b, 649, + '\f', 649, ); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); END_STATE(); case 154: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '.', 2279, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3353, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - 0xb5, 3427, - '\t', 1928, - ' ', 1928, - 'B', 2379, - 'b', 2379, + '\n', 2935, + '\r', 172, + '!', 660, + '#', 5024, + '*', 588, + '+', 612, + '-', 3039, + '/', 646, + ':', 3615, + ';', 2938, + '<', 663, + '=', 664, + '>', 666, + '?', 3263, + 'a', 800, + 'b', 776, + 'e', 605, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 610, + 's', 903, + 'x', 818, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 154, + ' ', 154, + 0x0b, 649, + '\f', 649, ); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); END_STATE(); case 155: - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '=') ADVANCE(2565); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1928); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1892); + ADVANCE_MAP( + '\n', 2935, + '\r', 172, + '!', 660, + '#', 5024, + '*', 588, + '+', 612, + '-', 3039, + '/', 646, + ':', 3615, + ';', 2938, + '<', 663, + '=', 664, + '>', 666, + 'a', 800, + 'b', 776, + 'e', 605, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 610, + 's', 903, + 'x', 818, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 155, + ' ', 155, + 0x0b, 649, + '\f', 649, + ); END_STATE(); case 156: - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '=') ADVANCE(2565); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1928); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ADVANCE_MAP( + '\n', 2935, + '\r', 172, + '!', 660, + '#', 5024, + '*', 588, + '+', 612, + '-', 934, + '/', 646, + ':', 3615, + ';', 2938, + '<', 663, + '=', 664, + '>', 666, + 'a', 800, + 'b', 776, + 'e', 605, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 610, + 's', 903, + 'x', 818, + '|', 2939, + '}', 3170, + '\t', 156, + ' ', 156, + 0x0b, 649, + '\f', 649, + ); END_STATE(); case 157: - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1928); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + ADVANCE_MAP( + '\n', 2935, + '\r', 172, + '!', 660, + '#', 5024, + '*', 588, + '+', 612, + '-', 934, + '/', 646, + ':', 3615, + ';', 2938, + '<', 663, + '=', 665, + '>', 666, + 'a', 800, + 'b', 776, + 'e', 605, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 610, + 's', 903, + 'x', 818, + '|', 2939, + '}', 3170, + '\t', 157, + ' ', 157, + 0x0b, 649, + '\f', 649, + ); END_STATE(); case 158: - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '{') ADVANCE(2088); - if (lookahead == '\t' || - lookahead == ' ') SKIP(158); + ADVANCE_MAP( + '\n', 2935, + '\r', 172, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 636, + '-', 3047, + '.', 637, + '0', 3476, + ':', 3615, + ';', 2938, + '?', 3263, + 'I', 966, + 'N', 957, + '[', 2983, + '_', 687, + '`', 695, + 'a', 784, + 'c', 816, + 'd', 737, + 'e', 601, + 'f', 700, + 'h', 766, + 'i', 750, + 'l', 767, + 'm', 696, + 'n', 736, + 'o', 595, + 't', 835, + 'u', 861, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 158, + ' ', 158, + 0x0b, 649, + '\f', 649, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); END_STATE(); case 159: - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1928); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3304); + ADVANCE_MAP( + '\n', 2935, + '\r', 172, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 636, + '-', 3047, + '.', 3381, + '0', 3476, + ':', 3615, + ';', 2938, + '=', 3764, + '?', 3263, + 'I', 966, + 'N', 957, + '[', 2983, + '_', 687, + '`', 695, + 'a', 784, + 'c', 816, + 'd', 737, + 'e', 601, + 'f', 700, + 'h', 766, + 'i', 750, + 'l', 767, + 'm', 696, + 'n', 736, + 'o', 595, + 't', 835, + 'u', 861, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 158, + ' ', 158, + 0x0b, 649, + '\f', 649, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); END_STATE(); case 160: - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4589); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1928); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ADVANCE_MAP( + '\n', 2935, + '\r', 172, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '*', 1416, + '+', 3619, + ',', 2987, + '-', 3046, + '.', 3400, + '/', 1417, + '0', 3479, + ':', 3615, + ';', 2938, + '=', 1142, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1184, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1186, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '|', 2939, + '}', 3170, + '\t', 150, + ' ', 150, + 0x0b, 649, + '\f', 649, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead != 0 && + (lookahead < '\'' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); case 161: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4587, - '$', 1976, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2019, - '.', 3983, - ':', 1959, - ']', 1963, - '|', 1930, + '\n', 2935, + '\r', 172, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '*', 1416, + '+', 3619, + ',', 2987, + '-', 3046, + '.', 3400, + '/', 1417, + '0', 3479, + ':', 3615, + ';', 2938, + '=', 1142, + 'I', 1929, + 'N', 1924, + '[', 3546, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1184, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1186, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 151, + ' ', 151, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(140); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4048); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(4032); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1943); END_STATE(); case 162: ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4587, - '$', 1976, - '(', 2210, - ')', 1965, - ',', 1966, - '-', 2019, - '.', 3983, - ']', 1963, - '|', 1930, + '\n', 2935, + '\r', 172, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '*', 1416, + '+', 3619, + ',', 2987, + '-', 3046, + '.', 1411, + '/', 1417, + '0', 3479, + ':', 3615, + ';', 2938, + '=', 1142, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1184, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1186, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '|', 2939, + '}', 3170, + '\t', 152, + ' ', 152, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(141); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4048); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(4032); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); case 163: ADVANCE_MAP( - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3332, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3348, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - 0xb5, 3427, + '\n', 2935, + '\r', 172, + '#', 5024, + '*', 654, + '+', 596, + '-', 655, + '.', 3392, + '/', 657, + ':', 3615, + ';', 2938, + '=', 1142, + '?', 3263, + 'e', 607, + 'o', 611, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 153, + ' ', 153, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); END_STATE(); case 164: ADVANCE_MAP( - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3332, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3348, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - 0xb5, 3427, + '\n', 2935, + '\r', 172, + '#', 5024, + '-', 3030, + '.', 638, + ':', 3615, + ';', 2938, + '=', 673, + 'e', 607, + 'o', 611, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 155, + ' ', 155, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(181); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); END_STATE(); case 165: ADVANCE_MAP( - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3332, - '>', 1996, - 'B', 2379, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3351, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - 0xb5, 3427, + '\n', 2935, + '\r', 172, + '#', 5024, + '-', 3030, + '.', 3378, + ':', 3615, + ';', 2938, + '=', 673, + '?', 3263, + 'e', 607, + 'o', 611, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 154, + ' ', 154, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(181); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); END_STATE(); case 166: ADVANCE_MAP( - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2011, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3348, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '{', 2088, - 0xb5, 3427, + '\n', 2935, + '\r', 172, + '#', 5024, + '.', 3392, + ':', 3615, + ';', 2938, + '=', 673, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2302, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 156, + ' ', 156, + 'B', 3524, + 'b', 3524, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(182); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 167: ADVANCE_MAP( - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2011, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3348, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '{', 2088, - 0xb5, 3427, + '\n', 2935, + '\r', 172, + '#', 5024, + '.', 2316, + ':', 3615, + ';', 2938, + '=', 673, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + '_', 2333, + 'd', 2334, + 'e', 2302, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 156, + ' ', 156, + 'B', 3524, + 'b', 3524, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(182); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 168: ADVANCE_MAP( - '!', 3331, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2011, - '.', 2279, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3351, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3420, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '{', 2088, - 0xb5, 3427, + '\n', 2935, + '\r', 172, + '#', 5024, + '.', 2316, + ':', 3615, + ';', 2938, + '=', 673, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2302, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 156, + ' ', 156, + 'B', 3524, + 'b', 3524, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(182); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 169: ADVANCE_MAP( - '!', 3331, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - '<', 2193, - '=', 3332, - '>', 1996, - 'a', 3407, - 'b', 3400, - 'e', 3408, - 'i', 3406, - 'm', 3412, - 'n', 3417, - 'o', 3420, - 's', 3434, - 'x', 3416, + '\n', 2935, + '\r', 172, + '#', 5024, + '.', 2316, + ':', 3615, + ';', 2938, + '=', 673, + 'E', 2328, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2305, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 156, + ' ', 156, + 'B', 3524, + 'b', 3524, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(181); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 170: ADVANCE_MAP( - '!', 3331, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2011, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - 'a', 3407, - 'b', 3400, - 'e', 3408, - 'i', 3406, - 'm', 3412, - 'n', 3417, - 'o', 3420, - 's', 3434, - 'x', 3416, - '{', 2088, + '\n', 2935, + '\r', 172, + '#', 5024, + ':', 3615, + ';', 2938, + 'e', 600, + 'o', 595, + '|', 2939, + '}', 3170, + '\t', 2936, + ' ', 2936, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(182); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); END_STATE(); case 171: ADVANCE_MAP( - '!', 3179, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2239, - '-', 2029, - '.', 2275, - '/', 2220, - '<', 2193, - '=', 3332, - '>', 1996, - '_', 3183, - 'a', 3204, - 'b', 3199, - 'e', 3205, - 'i', 3203, - 'm', 3208, - 'n', 3212, - 'o', 3214, - 's', 3222, - 'x', 3211, + '\n', 2935, + '\r', 172, + '#', 5027, + ':', 3615, + ';', 2938, + 'e', 2226, + 'o', 2227, + '|', 2939, + '}', 3170, + '\t', 157, + ' ', 157, + 0x0b, 649, + '\f', 649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(183); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3163); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 172: - ADVANCE_MAP( - '!', 3179, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2239, - '-', 2014, - '.', 2275, - '/', 2220, - '<', 2193, - '=', 3333, - '>', 1996, - '_', 3183, - 'a', 3204, - 'b', 3199, - 'e', 3205, - 'i', 3203, - 'm', 3208, - 'n', 3212, - 'o', 3214, - 's', 3222, - 'x', 3211, - '{', 2088, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(184); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3163); + if (lookahead == '\n') ADVANCE(2935); + if (lookahead == ':') ADVANCE(3615); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(649); END_STATE(); case 173: - ADVANCE_MAP( - '!', 3248, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2239, - '-', 2029, - '.', 2275, - '/', 2220, - '<', 2193, - '=', 3249, - '>', 1996, - '_', 3255, - 'a', 3276, - 'b', 3271, - 'e', 3277, - 'i', 3275, - 'm', 3280, - 'n', 3284, - 'o', 3286, - 's', 3294, - 'x', 3283, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(183); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + if (lookahead == '\n') ADVANCE(2934); END_STATE(); case 174: ADVANCE_MAP( - '!', 3248, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2239, - '-', 2014, - '.', 2275, - '/', 2220, - '<', 2193, - '=', 3250, - '>', 1996, - '_', 3255, - 'a', 3276, - 'b', 3271, - 'e', 3277, - 'i', 3275, - 'm', 3280, - 'n', 3284, - 'o', 3286, - 's', 3294, - 'x', 3283, - '{', 2088, + '\n', 2934, + '\r', 173, + '!', 662, + '#', 5024, + '$', 2989, + ')', 2986, + '*', 250, + '+', 223, + '-', 251, + '.', 692, + '/', 228, + ';', 2938, + '<', 254, + '=', 667, + '>', 255, + 'a', 791, + 'b', 765, + 'e', 604, + 'i', 748, + 'm', 824, + 'n', 814, + 'o', 609, + 's', 871, + 'x', 823, + '{', 3169, + '|', 2939, + '\t', 174, + ' ', 174, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(184); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); END_STATE(); case 175: ADVANCE_MAP( - '!', 2811, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - '<', 2193, - '=', 2812, - '>', 1996, - '_', 2820, - 'a', 2844, - 'b', 2839, - 'e', 2845, - 'i', 2843, - 'm', 2848, - 'n', 2852, - 'o', 2854, - 's', 2862, - 'x', 2851, + '\n', 2934, + '\r', 173, + '!', 662, + '#', 5024, + ')', 2986, + '*', 250, + '+', 224, + '-', 253, + '/', 228, + ';', 2938, + '<', 254, + '=', 667, + '>', 255, + '?', 3263, + 'a', 791, + 'b', 765, + 'e', 604, + 'i', 748, + 'm', 824, + 'n', 814, + 'o', 609, + 's', 871, + 'x', 823, + '{', 3169, + '|', 2939, + '\t', 175, + ' ', 175, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); END_STATE(); case 176: ADVANCE_MAP( - '!', 2811, - '#', 4580, - '(', 2210, - '*', 2151, - '+', 2238, - '-', 2011, - '/', 2220, - '<', 2193, - '=', 2813, - '>', 1996, - '_', 2820, - 'a', 2844, - 'b', 2839, - 'e', 2845, - 'i', 2843, - 'm', 2848, - 'n', 2852, - 'o', 2854, - 's', 2862, - 'x', 2851, - '{', 2088, + '\n', 2934, + '\r', 173, + '!', 662, + '#', 5024, + ')', 2986, + '*', 250, + '+', 224, + '-', 253, + '/', 228, + ';', 2938, + '<', 254, + '=', 668, + '>', 255, + 'a', 791, + 'b', 765, + 'e', 598, + 'i', 801, + 'm', 824, + 'n', 814, + 'o', 593, + 's', 871, + 'x', 823, + '|', 2939, + '\t', 176, + ' ', 176, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(182); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); END_STATE(); case 177: ADVANCE_MAP( - '!', 3475, - '#', 4589, - '(', 2210, - '*', 2153, - '+', 2243, - '-', 2034, - '/', 2222, - '<', 2194, - '=', 3476, - '>', 1997, - 'a', 3568, - 'b', 3549, - 'e', 3573, - 'i', 3570, - 'm', 3584, - 'n', 3582, - 'o', 3595, - 's', 3633, - 'x', 3583, + '\n', 2934, + '\r', 173, + '!', 662, + '#', 5024, + ')', 2986, + '*', 250, + '+', 224, + '-', 253, + '/', 228, + ';', 2938, + '<', 254, + '=', 668, + '>', 255, + 'a', 791, + 'b', 765, + 'e', 604, + 'i', 801, + 'm', 824, + 'n', 814, + 'o', 609, + 's', 871, + 'x', 823, + '{', 3169, + '|', 2939, + '\t', 177, + ' ', 177, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(181); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3709); END_STATE(); case 178: ADVANCE_MAP( - '!', 3475, - '#', 4589, - '(', 2210, - '*', 2153, - '+', 2243, - '-', 2021, - '/', 2222, - '<', 2194, - '=', 3477, - '>', 1997, - 'a', 3568, - 'b', 3549, - 'e', 3573, - 'i', 3570, - 'm', 3584, - 'n', 3582, - 'o', 3595, - 's', 3633, - 'x', 3583, - '{', 2088, + '\n', 2934, + '\r', 173, + '!', 662, + '#', 5024, + ')', 2986, + '*', 250, + '+', 224, + '-', 253, + '/', 228, + ';', 2938, + '<', 254, + '=', 668, + '>', 255, + 'a', 791, + 'b', 765, + 'e', 604, + 'i', 801, + 'm', 824, + 'n', 814, + 'o', 609, + 's', 871, + 'x', 823, + '|', 2939, + '\t', 178, + ' ', 178, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(182); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3709); END_STATE(); case 179: ADVANCE_MAP( - '!', 569, - '#', 4580, - '$', 1969, - '*', 2151, - '+', 2238, - '-', 2011, - '.', 2275, - '/', 2220, - ':', 2453, - ';', 2456, - '<', 2193, - '=', 571, - '>', 1996, - '?', 2157, - 'a', 671, - 'b', 653, - 'e', 673, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 696, - 's', 734, - 'x', 685, - '{', 2088, - '\t', 180, - ' ', 180, + '\n', 2934, + '\r', 173, + '!', 662, + '#', 5024, + ')', 2986, + '*', 249, + '+', 222, + '-', 252, + '/', 227, + ';', 2938, + '<', 254, + '=', 1145, + '>', 255, + '?', 3263, + 'a', 791, + 'b', 765, + 'e', 604, + 'i', 801, + 'm', 824, + 'n', 814, + 'o', 609, + 's', 871, + 'x', 823, + '{', 3169, + '|', 2939, + '\t', 179, + ' ', 179, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(564); END_STATE(); case 180: ADVANCE_MAP( - '!', 569, - '#', 4580, - '$', 1969, - '*', 2151, - '+', 2238, - '-', 2011, - '/', 2220, - ':', 2453, - ';', 2456, - '<', 2193, - '=', 571, - '>', 1996, - '?', 2157, - 'a', 671, - 'b', 653, - 'e', 673, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 696, - 's', 734, - 'x', 685, - '{', 2088, + '\n', 2934, + '\r', 173, + '!', 662, + '#', 5024, + '*', 250, + '+', 224, + '-', 253, + '/', 228, + '<', 254, + '=', 668, + '>', 255, + 'a', 791, + 'b', 765, + 'e', 797, + 'i', 801, + 'm', 824, + 'n', 814, + 'o', 845, + 's', 871, + 'x', 823, + '{', 3169, '\t', 180, ' ', 180, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(564); END_STATE(); case 181: ADVANCE_MAP( - '!', 569, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - '<', 2193, - '=', 570, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 673, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 696, - 's', 734, - 'x', 685, + '\n', 2934, + '\r', 173, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + '.', 639, + ';', 2938, + '=', 673, + '[', 3546, + '_', 691, + 'e', 607, + 'i', 746, + 'o', 611, + '{', 3169, + '|', 2939, + '\t', 174, + ' ', 174, + '+', 642, + '-', 642, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 182: ADVANCE_MAP( - '!', 569, - '#', 4580, - '*', 2151, - '+', 2238, - '-', 2011, - '/', 2220, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 673, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 696, - 's', 734, - 'x', 685, - '{', 2088, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + ')', 2986, + '*', 654, + '+', 596, + '-', 655, + '.', 3392, + '/', 657, + ';', 2938, + '=', 1142, + '?', 3263, + 'E', 680, + 'G', 680, + 'K', 680, + 'M', 680, + 'P', 680, + 'T', 680, + 'd', 698, + 'e', 603, + 'g', 679, + 'h', 834, + 'k', 679, + 'm', 681, + 'n', 857, + 'o', 611, + 'p', 679, + 's', 739, + 't', 679, + 'u', 857, + 'w', 780, + '{', 3169, + '|', 2939, + 0xb5, 857, + '\t', 179, + ' ', 179, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(182); END_STATE(); case 183: ADVANCE_MAP( - '!', 569, - '#', 4580, - '*', 2151, - '+', 2239, - '-', 2029, - '/', 2220, - '<', 2193, - '=', 570, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 673, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 696, - 's', 734, - 'x', 685, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4049, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 178, + ' ', 178, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(183); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 184: ADVANCE_MAP( - '!', 569, - '#', 4580, - '*', 2151, - '+', 2239, - '-', 2014, - '/', 2220, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 673, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 696, - 's', 734, - 'x', 685, - '{', 2088, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 176, + ' ', 176, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(184); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 185: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 2106, - '\'', 527, - '(', 2210, - '+', 3901, - ',', 1966, - '-', 3900, - '.', 2276, - '0', 2298, - 'N', 3908, - '[', 1962, - ']', 1963, - '_', 3903, - '`', 594, - 'e', 3897, - 'f', 3905, - 'n', 3907, - 'o', 3898, - 't', 3906, - '{', 2088, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4049, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 178, + ' ', 178, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3909); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3926); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 186: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 2106, - '\'', 527, - '(', 2210, - '+', 3901, - ',', 2448, - '-', 3900, - '.', 2276, - '0', 2298, - 'N', 3908, - '[', 1962, - ']', 1963, - '_', 3903, - '`', 594, - 'e', 3897, - 'f', 3905, - 'n', 3907, - 'o', 3898, - 't', 3906, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3909, - 'i', 3909, - '<', 3926, - '=', 3926, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 176, + ' ', 176, + 'B', 3524, + 'b', 3524, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 187: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2277, - '0', 2300, - 'B', 2379, - 'E', 4358, - 'G', 4363, - 'I', 4403, - 'K', 4363, - 'M', 4363, - 'N', 4402, - 'P', 4363, - 'T', 4363, - '_', 4371, - '`', 594, - 'a', 4392, - 'b', 2383, - 'c', 4379, - 'd', 4377, - 'e', 4357, - 'f', 4375, - 'g', 4362, - 'h', 4390, - 'i', 4369, - 'k', 4362, - 'l', 4382, - 'm', 4359, - 'n', 4383, - 'o', 4401, - 'p', 4362, - 'r', 4381, - 's', 4385, - 't', 4361, - 'u', 4399, - 'w', 4388, - '}', 2089, - 0xb5, 4398, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4049, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 178, + ' ', 178, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4356); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4356); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 188: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2277, - '0', 2300, - 'E', 4111, - 'I', 4132, - 'N', 4131, - '_', 4108, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4110, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 176, + ' ', 176, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 189: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2277, - '0', 4373, - 'B', 2379, - 'E', 4358, - 'G', 4363, - 'I', 4403, - 'K', 4363, - 'M', 4363, - 'N', 4402, - 'P', 4363, - 'T', 4363, - '_', 4370, - '`', 594, - 'a', 4392, - 'b', 2383, - 'c', 4379, - 'd', 4377, - 'e', 4357, - 'f', 4375, - 'g', 4362, - 'h', 4390, - 'i', 4369, - 'k', 4362, - 'l', 4382, - 'm', 4359, - 'n', 4383, - 'o', 4401, - 'p', 4362, - 'r', 4381, - 's', 4385, - 't', 4361, - 'u', 4399, - 'w', 4388, - '}', 2089, - 0xb5, 4398, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4046, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 178, + ' ', 178, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4356); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4374); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4356); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 190: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2277, - '0', 4373, - 'B', 2379, - 'E', 4363, - 'G', 4363, - 'I', 4403, - 'K', 4363, - 'M', 4363, - 'N', 4402, - 'P', 4363, - 'T', 4363, - '_', 4370, - '`', 594, - 'a', 4392, - 'b', 2383, - 'c', 4379, - 'd', 4377, - 'e', 4360, - 'f', 4375, - 'g', 4362, - 'h', 4390, - 'i', 4369, - 'k', 4362, - 'l', 4382, - 'm', 4359, - 'n', 4383, - 'o', 4401, - 'p', 4362, - 'r', 4381, - 's', 4385, - 't', 4361, - 'u', 4399, - 'w', 4388, - '}', 2089, - 0xb5, 4398, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4052, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 176, + ' ', 176, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4356); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4374); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4356); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 191: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2277, - '0', 4113, - 'E', 4111, - 'I', 4132, - 'N', 4131, - '_', 4107, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4110, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + '.', 3392, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 180, + ' ', 180, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4114); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 192: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2277, - '0', 4113, - 'I', 4132, - 'N', 4131, - '_', 4107, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4125, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 180, + ' ', 180, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4114); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 193: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2278, - '0', 2300, - 'E', 4111, - 'I', 4132, - 'N', 4131, - '_', 4108, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4110, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 180, + ' ', 180, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 194: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2278, - '0', 2300, - 'I', 4132, - 'N', 4131, - '_', 4108, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4125, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, + '\n', 2934, + '\r', 173, + '#', 5024, + '(', 3294, + '.', 4081, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4102, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 180, + ' ', 180, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 195: - ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2278, - '0', 4113, - 'E', 4111, - 'I', 4132, - 'N', 4131, - '_', 4107, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4110, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, - ); + if (lookahead == '\n') ADVANCE(2934); + if (lookahead == '\r') ADVANCE(173); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4114); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + lookahead == ' ') ADVANCE(180); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 196: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2278, - '0', 4113, - 'I', 4132, - 'N', 4131, - '_', 4107, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4125, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2302, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '{', 3169, + '|', 2939, + 0xb5, 2355, + '\t', 177, + ' ', 177, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4114); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 197: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2355, - '0', 2300, - 'I', 4132, - 'N', 4131, - '_', 4108, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4125, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2310, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2311, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + 0xb5, 2355, + '\t', 176, + ' ', 176, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 198: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2277, - '0', 2300, - 'B', 2379, - 'E', 4358, - 'G', 4363, - 'I', 4403, - 'K', 4363, - 'M', 4363, - 'N', 4402, - 'P', 4363, - 'T', 4363, - '_', 4371, - '`', 594, - 'a', 4392, - 'b', 2383, - 'c', 4379, - 'd', 4377, - 'e', 4357, - 'f', 4375, - 'g', 4362, - 'h', 4390, - 'i', 4369, - 'k', 4362, - 'l', 4382, - 'm', 4359, - 'n', 4383, - 'o', 4401, - 'p', 4362, - 'r', 4381, - 's', 4385, - 't', 4361, - 'u', 4399, - 'w', 4388, - '}', 2089, - 0xb5, 4398, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + '_', 2333, + 'd', 2334, + 'e', 2302, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '{', 3169, + '|', 2939, + 0xb5, 2355, + '\t', 177, + ' ', 177, + 'B', 3524, + 'b', 3524, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4356); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4356); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 199: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2277, - '0', 2300, - 'E', 4111, - 'I', 4132, - 'N', 4131, - '_', 4108, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4110, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + '_', 2333, + 'd', 2334, + 'e', 2310, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2311, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + 0xb5, 2355, + '\t', 176, + ' ', 176, + 'B', 3524, + 'b', 3524, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 200: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2277, - '0', 4373, - 'B', 2379, - 'E', 4358, - 'G', 4363, - 'I', 4403, - 'K', 4363, - 'M', 4363, - 'N', 4402, - 'P', 4363, - 'T', 4363, - '_', 4370, - '`', 594, - 'a', 4392, - 'b', 2383, - 'c', 4379, - 'd', 4377, - 'e', 4357, - 'f', 4375, - 'g', 4362, - 'h', 4390, - 'i', 4369, - 'k', 4362, - 'l', 4382, - 'm', 4359, - 'n', 4383, - 'o', 4401, - 'p', 4362, - 'r', 4381, - 's', 4385, - 't', 4361, - 'u', 4399, - 'w', 4388, - '}', 2089, - 0xb5, 4398, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2302, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '{', 3169, + '|', 2939, + 0xb5, 2355, + '\t', 177, + ' ', 177, + 'B', 3524, + 'b', 3524, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4356); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4374); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4356); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 201: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2277, - '0', 4373, - 'B', 2379, - 'E', 4363, - 'G', 4363, - 'I', 4403, - 'K', 4363, - 'M', 4363, - 'N', 4402, - 'P', 4363, - 'T', 4363, - '_', 4370, - '`', 594, - 'a', 4392, - 'b', 2383, - 'c', 4379, - 'd', 4377, - 'e', 4360, - 'f', 4375, - 'g', 4362, - 'h', 4390, - 'i', 4369, - 'k', 4362, - 'l', 4382, - 'm', 4359, - 'n', 4383, - 'o', 4401, - 'p', 4362, - 'r', 4381, - 's', 4385, - 't', 4361, - 'u', 4399, - 'w', 4388, - '}', 2089, - 0xb5, 4398, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2310, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2311, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + 0xb5, 2355, + '\t', 176, + ' ', 176, + 'B', 3524, + 'b', 3524, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4356); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4374); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4356); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 202: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2277, - '0', 4113, - 'E', 4111, - 'I', 4132, - 'N', 4131, - '_', 4107, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4110, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2328, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2305, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '{', 3169, + '|', 2939, + 0xb5, 2355, + '\t', 177, + ' ', 177, + 'B', 3524, + 'b', 3524, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4114); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 203: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2277, - '0', 4113, - 'I', 4132, - 'N', 4131, - '_', 4107, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4125, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2328, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2308, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2311, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + 0xb5, 2355, + '\t', 176, + ' ', 176, + 'B', 3524, + 'b', 3524, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4114); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 204: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2278, - '0', 2300, - 'E', 4111, - 'I', 4132, - 'N', 4131, - '_', 4108, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4110, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + '.', 3378, + ';', 2938, + '=', 673, + '?', 3263, + 'e', 607, + 'i', 746, + 'o', 611, + '{', 3169, + '|', 2939, + '\t', 175, + ' ', 175, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); END_STATE(); case 205: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2278, - '0', 2300, - 'I', 4132, - 'N', 4131, - '_', 4108, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4125, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + ';', 2938, + 'e', 2306, + 'o', 2304, + '|', 2939, + '\t', 178, + ' ', 178, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 206: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2278, - '0', 4113, - 'E', 4111, - 'I', 4132, - 'N', 4131, - '_', 4107, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4110, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + ';', 2938, + 'e', 4047, + 'o', 4051, + '|', 2939, + '\t', 178, + ' ', 178, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4114); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 207: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2278, - '0', 4113, - 'I', 4132, - 'N', 4131, - '_', 4107, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4125, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + ';', 2938, + 'e', 2309, + 'o', 2311, + '|', 2939, + '\t', 176, + ' ', 176, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4114); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 208: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2355, - '0', 2300, - 'I', 4132, - 'N', 4131, - '_', 4108, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4125, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5024, + ')', 2986, + ';', 2938, + 'e', 4053, + 'o', 4057, + '|', 2939, + '\t', 176, + ' ', 176, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 209: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2355, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '\n', 2934, + '\r', 173, + '#', 5031, + '(', 3294, + ')', 2986, + ';', 2938, + 'e', 4232, + 'o', 4233, + '|', 2939, + '\t', 178, + ' ', 178, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 210: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2249, - '-', 2024, - '.', 2355, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '\n', 2934, + '\r', 173, + '#', 5031, + '(', 3294, + ')', 2986, + ';', 2938, + 'e', 4234, + 'o', 4236, + '|', 2939, + '\t', 176, + ' ', 176, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 211: - ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2352, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + if (lookahead == '\n') ADVANCE(2934); + if (lookahead == '\r') ADVANCE(173); + if (lookahead == '#') ADVANCE(5031); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '{') ADVANCE(3169); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(180); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 212: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3901, - ',', 1966, - '-', 3900, - '.', 2276, - '0', 2298, - 'N', 3908, - '[', 1962, - ']', 1963, - '_', 3903, - '`', 594, - 'e', 3897, - 'f', 3905, - 'n', 3907, - 'o', 3898, - 't', 3906, - '{', 2088, + '\n', 2934, + '\r', 173, + '#', 5027, + ')', 2986, + ';', 2938, + 'e', 2226, + 'o', 2227, + '|', 2939, + '\t', 178, + ' ', 178, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3909); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3926); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 213: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3934, - ',', 2448, - '-', 3933, - '.', 2279, - '0', 3953, - 'E', 3941, - 'G', 3944, - 'K', 3944, - 'M', 3944, - 'N', 3971, - 'P', 3944, - 'T', 3944, - '[', 1962, - ']', 1963, - '_', 3949, - '`', 594, - 'd', 3956, - 'e', 3930, - 'f', 3955, - 'g', 3943, - 'h', 3964, - 'k', 3943, - 'm', 3945, - 'n', 3968, - 'o', 3929, - 'p', 3943, - 's', 3959, - 't', 3942, - 'u', 3967, - 'w', 3962, - '{', 2088, - 0xb5, 3967, - '\t', 2449, - ' ', 2449, - 'B', 2379, - 'b', 2379, - 'I', 3972, - 'i', 3972, + '\n', 2934, + '\r', 173, + '#', 5027, + ')', 2986, + ';', 2938, + 'e', 2230, + 'o', 2231, + '|', 2939, + '\t', 176, + ' ', 176, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3954); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 214: - ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3934, - ',', 2448, - '-', 3933, - '.', 2279, - '0', 3953, - 'E', 3944, - 'G', 3944, - 'K', 3944, - 'M', 3944, - 'N', 3971, - 'P', 3944, - 'T', 3944, - '[', 1962, - ']', 1963, - '_', 3949, - '`', 594, - 'd', 3956, - 'e', 3927, - 'f', 3955, - 'g', 3943, - 'h', 3964, - 'k', 3943, - 'm', 3945, - 'n', 3968, - 'o', 3929, - 'p', 3943, - 's', 3959, - 't', 3942, - 'u', 3967, - 'w', 3962, - '{', 2088, - 0xb5, 3967, - '\t', 2449, - ' ', 2449, - 'B', 2379, - 'b', 2379, - 'I', 3972, - 'i', 3972, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3954); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + if (lookahead == '\n') ADVANCE(248); END_STATE(); case 215: + if (lookahead == '\n') ADVANCE(3346); + END_STATE(); + case 216: + if (lookahead == '\n') ADVANCE(3351); + END_STATE(); + case 217: + if (lookahead == '\n') ADVANCE(3368); + END_STATE(); + case 218: + if (lookahead == '\n') ADVANCE(3370); + END_STATE(); + case 219: + if (lookahead == '\n') ADVANCE(3345); + END_STATE(); + case 220: + if (lookahead == '\n') ADVANCE(3369); + END_STATE(); + case 221: + if (lookahead == '\n') ADVANCE(3371); + END_STATE(); + case 222: + if (lookahead == '\r') ADVANCE(4); + if (lookahead == '+') ADVANCE(256); + if (lookahead == '=') ADVANCE(1169); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3350); + END_STATE(); + case 223: + if (lookahead == '\r') ADVANCE(4); + if (lookahead == '+') ADVANCE(257); + if (lookahead == '.') ADVANCE(683); + if (lookahead == '_') ADVANCE(642); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + END_STATE(); + case 224: + if (lookahead == '\r') ADVANCE(4); + if (lookahead == '+') ADVANCE(257); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3350); + END_STATE(); + case 225: + if (lookahead == '\r') ADVANCE(4); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3350); + END_STATE(); + case 226: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3934, - ',', 2448, - '-', 3933, - '.', 2279, - '0', 2298, - 'E', 3941, - 'G', 3944, - 'K', 3944, - 'M', 3944, - 'N', 3971, - 'P', 3944, - 'T', 3944, - '[', 1962, - ']', 1963, - '_', 3951, - '`', 594, - 'd', 3956, - 'e', 3930, - 'f', 3955, - 'g', 3943, - 'h', 3964, - 'k', 3943, - 'm', 3945, - 'n', 3968, - 'o', 3929, - 'p', 3943, - 's', 3959, - 't', 3942, - 'u', 3967, - 'w', 3962, - '{', 2088, - 0xb5, 3967, - '\t', 2449, - ' ', 2449, - 'B', 2379, - 'b', 2379, - 'I', 3972, - 'i', 3972, + '\r', 3, + '!', 662, + '*', 586, + '+', 225, + '/', 228, + ':', 3615, + '=', 668, + 'a', 791, + 'b', 765, + 'e', 797, + 'i', 801, + 'm', 824, + 'n', 814, + 'o', 845, + 's', 871, + 'x', 823, + 0x0b, 649, + '\f', 649, + '\t', 226, + '\n', 226, + ' ', 226, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); END_STATE(); - case 216: + case 227: + if (lookahead == '\r') ADVANCE(5); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '=') ADVANCE(1172); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3347); + END_STATE(); + case 228: + if (lookahead == '\r') ADVANCE(5); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3347); + END_STATE(); + case 229: + if (lookahead == '\r') ADVANCE(6); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3367); + END_STATE(); + case 230: + if (lookahead == '\r') ADVANCE(7); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3355); + END_STATE(); + case 231: + if (lookahead == '\r') ADVANCE(8); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3344); + END_STATE(); + case 232: + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3349); + END_STATE(); + case 233: + if (lookahead == '\r') ADVANCE(10); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3366); + END_STATE(); + case 234: + if (lookahead == '\r') ADVANCE(11); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3354); + END_STATE(); + case 235: + if (lookahead == '\r') ADVANCE(12); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3362); + END_STATE(); + case 236: + if (lookahead == '\r') ADVANCE(13); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3361); + END_STATE(); + case 237: + if (lookahead == '\r') ADVANCE(14); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3359); + END_STATE(); + case 238: + if (lookahead == '\r') ADVANCE(15); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3348); + END_STATE(); + case 239: + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3360); + END_STATE(); + case 240: + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3358); + END_STATE(); + case 241: + if (lookahead == '\r') ADVANCE(18); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3363); + END_STATE(); + case 242: + if (lookahead == '\r') ADVANCE(19); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3356); + END_STATE(); + case 243: + if (lookahead == '\r') ADVANCE(20); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3352); + END_STATE(); + case 244: + if (lookahead == '\r') ADVANCE(21); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3353); + END_STATE(); + case 245: + if (lookahead == '\r') ADVANCE(22); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3357); + END_STATE(); + case 246: + if (lookahead == '\r') ADVANCE(23); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3365); + END_STATE(); + case 247: + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3364); + END_STATE(); + case 248: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3798, - ',', 1966, - '-', 3797, - '.', 2276, - '0', 2298, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3801, - '`', 594, - 'e', 3790, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, + '\r', 214, + '!', 662, + '*', 250, + '+', 224, + '-', 253, + '/', 228, + '<', 254, + '=', 668, + '>', 255, + 'a', 791, + 'b', 765, + 'e', 797, + 'i', 801, + 'm', 824, + 'n', 814, + 'o', 845, + 's', 871, + 'x', 823, + '\t', 248, + '\n', 248, + ' ', 248, ); + END_STATE(); + case 249: + if (lookahead == '\r') ADVANCE(215); + if (lookahead == '*') ADVANCE(231); + if (lookahead == '=') ADVANCE(1171); if (lookahead == '\t' || - lookahead == ' ') SKIP(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + lookahead == '\n' || + lookahead == ' ') ADVANCE(3346); END_STATE(); - case 217: + case 250: + if (lookahead == '\r') ADVANCE(215); + if (lookahead == '*') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3346); + END_STATE(); + case 251: + if (lookahead == '\r') ADVANCE(216); + if (lookahead == '.') ADVANCE(683); + if (lookahead == '_') ADVANCE(642); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + END_STATE(); + case 252: + if (lookahead == '\r') ADVANCE(216); + if (lookahead == '=') ADVANCE(1170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3351); + END_STATE(); + case 253: + if (lookahead == '\r') ADVANCE(216); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3351); + END_STATE(); + case 254: + if (lookahead == '\r') ADVANCE(217); + if (lookahead == '=') ADVANCE(258); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3368); + END_STATE(); + case 255: + if (lookahead == '\r') ADVANCE(218); + if (lookahead == '=') ADVANCE(259); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3370); + END_STATE(); + case 256: + if (lookahead == '\r') ADVANCE(219); + if (lookahead == '=') ADVANCE(1173); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3345); + END_STATE(); + case 257: + if (lookahead == '\r') ADVANCE(219); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3345); + END_STATE(); + case 258: + if (lookahead == '\r') ADVANCE(220); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3369); + END_STATE(); + case 259: + if (lookahead == '\r') ADVANCE(221); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3371); + END_STATE(); + case 260: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3798, - ',', 2448, - '-', 3797, - '.', 2276, - '0', 2298, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3801, - '`', 594, - 'e', 3790, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3811, - 'i', 3811, + '!', 660, + '#', 5024, + '*', 588, + '+', 612, + '-', 3039, + '/', 646, + '<', 663, + '=', 665, + '>', 666, + 'a', 800, + 'b', 776, + 'e', 808, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 846, + 's', 903, + 'x', 818, + '{', 3169, + '\t', 260, + ' ', 260, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); END_STATE(); - case 218: + case 261: + ADVANCE_MAP( + '!', 660, + '#', 5024, + '*', 588, + '+', 612, + '-', 934, + '/', 646, + '<', 663, + '=', 664, + '>', 666, + 'a', 800, + 'b', 776, + 'e', 808, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 846, + 's', 903, + 'x', 818, + '|', 2939, + '\t', 261, + ' ', 261, + ); + END_STATE(); + case 262: + ADVANCE_MAP( + '!', 660, + '#', 5024, + '*', 588, + '+', 612, + '-', 934, + '/', 646, + '<', 663, + '=', 665, + '>', 666, + 'a', 800, + 'b', 776, + 'e', 808, + 'i', 802, + 'm', 826, + 'n', 821, + 'o', 846, + 's', 903, + 'x', 818, + '{', 3169, + '\t', 262, + ' ', 262, + ); + END_STATE(); + case 263: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3916, - ',', 1966, - '-', 3915, - '.', 2276, - '0', 2298, - 'N', 3923, - '[', 1962, - ']', 1963, - '_', 3918, - '`', 594, - 'e', 3912, - 'f', 3920, - 'n', 3922, - 'o', 3913, - 't', 3921, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + '+', 636, + '-', 3048, + '.', 637, + '0', 3783, + '=', 3764, + 'N', 3809, + '[', 2983, + '_', 3784, + '`', 695, + 'f', 3791, + 'n', 3798, + 't', 3799, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(308); + lookahead == ' ') SKIP(267); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3924); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3911); + lookahead == 'i') ADVANCE(3814); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3790); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); - case 219: + case 264: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3916, - ',', 2448, - '-', 3915, - '.', 2276, - '0', 2298, - 'N', 3923, - '[', 1962, - ']', 1963, - '_', 3918, - '`', 594, - 'e', 3912, - 'f', 3920, - 'n', 3922, - 'o', 3913, - 't', 3921, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3924, - 'i', 3924, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 1405, + '-', 3047, + '.', 1406, + '0', 3472, + ';', 3627, + 'I', 1637, + 'N', 1634, + '[', 2983, + '^', 3699, + '_', 1427, + '`', 695, + 'a', 1534, + 'b', 1568, + 'c', 1429, + 'd', 1478, + 'e', 1533, + 'f', 1432, + 'h', 1511, + 'i', 1424, + 'l', 1485, + 'm', 1434, + 'n', 1455, + 'o', 1629, + 'r', 1495, + 's', 1555, + 't', 1560, + 'u', 1598, + 'w', 1507, + '{', 3169, + '\t', 264, + ' ', 264, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(652); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3911); + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); END_STATE(); - case 220: + case 265: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2250, - ',', 1316, - '-', 2028, - '.', 2278, - '0', 2300, - 'I', 4332, - 'N', 4331, - '_', 4313, - '`', 594, - 'a', 4324, - 'b', 4328, - 'c', 4317, - 'd', 4318, - 'e', 4325, - 'f', 4315, - 'h', 4323, - 'i', 4312, - 'l', 4320, - 'm', 4316, - 'n', 4321, - 'o', 4330, - 'r', 4319, - 's', 4326, - 't', 4327, - 'u', 4329, - 'w', 4322, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 1405, + '-', 3047, + '.', 1406, + '0', 3472, + 'I', 1637, + 'N', 1634, + '[', 2983, + '^', 3699, + '_', 1427, + '`', 695, + 'a', 1534, + 'b', 1582, + 'c', 1430, + 'd', 1479, + 'e', 1533, + 'f', 1432, + 'h', 1511, + 'i', 1426, + 'l', 1485, + 'm', 1443, + 'n', 1455, + 'o', 1629, + 'r', 1494, + 's', 1555, + 't', 1569, + 'u', 1598, + 'w', 1506, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (lookahead == '>' || - lookahead == '^') ADVANCE(4310); - if (lookahead == '<' || - lookahead == '=') ADVANCE(4356); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ' ') SKIP(265); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4310); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); END_STATE(); - case 221: + case 266: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2250, - ',', 1316, - '-', 2028, - '.', 2278, - '0', 2300, - 'I', 4132, - 'N', 4131, - '_', 4108, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4125, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 636, + '-', 3047, + '.', 637, + '0', 3476, + 'N', 957, + '[', 3546, + '_', 687, + '`', 695, + 'f', 700, + 'n', 820, + 't', 840, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + lookahead == ' ') SKIP(267); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(966); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); END_STATE(); - case 222: + case 267: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2250, - ',', 1316, - '-', 2028, - '.', 2278, - '0', 2300, - 'I', 4355, - 'N', 4354, - '_', 4336, - '`', 594, - 'a', 4347, - 'b', 4351, - 'c', 4340, - 'd', 4341, - 'e', 4348, - 'f', 4338, - 'h', 4346, - 'i', 4335, - 'l', 4343, - 'm', 4339, - 'n', 4344, - 'o', 4353, - 'r', 4342, - 's', 4349, - 't', 4350, - 'u', 4352, - 'w', 4345, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 636, + '-', 3047, + '.', 637, + '0', 3476, + 'N', 957, + '[', 2983, + '_', 687, + '`', 695, + 'f', 700, + 'n', 820, + 't', 840, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4333); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4333); + lookahead == ' ') SKIP(267); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(966); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); END_STATE(); - case 223: + case 268: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2250, - ',', 2448, - '-', 2028, - '.', 2278, - '0', 2300, - '<', 1994, - 'I', 1301, - 'N', 1297, - ']', 1963, - '_', 1034, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 636, + '-', 3047, + '.', 637, + '0', 2743, + '=', 3764, + 'N', 2868, + '[', 2983, + '_', 2744, + '`', 695, + 'f', 2752, + 'n', 2816, + 't', 2821, + '{', 3169, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + if (lookahead == '\t' || + lookahead == ' ') SKIP(267); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2876); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2750); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); END_STATE(); - case 224: + case 269: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2250, - ',', 2448, - '-', 2028, - '.', 2278, - '0', 2300, - 'I', 4332, - 'N', 4331, - '[', 1962, - ']', 1963, - '_', 4313, - '`', 594, - 'a', 4324, - 'b', 4328, - 'c', 4317, - 'd', 4318, - 'e', 4325, - 'f', 4315, - 'h', 4323, - 'i', 4312, - 'l', 4320, - 'm', 4316, - 'n', 4321, - 'o', 4330, - 'r', 4319, - 's', 4326, - 't', 4327, - 'u', 4329, - 'w', 4322, - '}', 2089, - '\t', 2449, - ' ', 2449, - '>', 4310, - '^', 4310, - '<', 4356, - '=', 4356, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 636, + '-', 3033, + '.', 637, + '0', 3476, + 'N', 957, + '[', 2983, + '_', 687, + '`', 695, + 'f', 700, + 'n', 820, + 't', 840, + '{', 3169, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4310); + if (lookahead == '\t' || + lookahead == ' ') SKIP(269); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(966); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); END_STATE(); - case 225: + case 270: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2250, - ',', 2448, - '-', 2028, - '.', 2278, - '0', 2300, - 'I', 4132, - 'N', 4131, - '_', 4108, - '`', 594, - 'a', 4124, - 'b', 4128, - 'c', 4117, - 'd', 4118, - 'e', 4125, - 'f', 4115, - 'h', 4123, - 'i', 4106, - 'l', 4120, - 'm', 4116, - 'n', 4121, - 'o', 4130, - 'r', 4119, - 's', 4126, - 't', 4127, - 'u', 4129, - 'w', 4122, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 3878, + '-', 3047, + '.', 3875, + '0', 3473, + ':', 3615, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3955, + 'o', 3855, + 't', 3960, + '{', 3169, + '\t', 270, + ' ', 270, + 'I', 4021, + 'i', 4021, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4104); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + (lookahead < '0' || ';' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); - case 226: + case 271: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2250, - ',', 2448, - '-', 2028, - '.', 2278, - '0', 2300, - 'I', 4355, - 'N', 4354, - '_', 4336, - '`', 594, - 'a', 4347, - 'b', 4351, - 'c', 4340, - 'd', 4341, - 'e', 4348, - 'f', 4338, - 'h', 4346, - 'i', 4335, - 'l', 4343, - 'm', 4339, - 'n', 4344, - 'o', 4353, - 'r', 4342, - 's', 4349, - 't', 4350, - 'u', 4352, - 'w', 4345, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 3878, + '-', 635, + '.', 3875, + ':', 3615, + 'N', 4016, + '_', 3903, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, + '\t', 271, + ' ', 271, + 'I', 4021, + 'i', 4021, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4333); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || ';' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4333); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); - case 227: + case 272: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 2250, - '-', 2028, - '.', 2278, - '0', 2300, - 'I', 1301, - 'N', 1297, - '_', 1034, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 3878, + '-', 635, + '.', 3875, + 'N', 4016, + '_', 3903, + '`', 695, + 'e', 3853, + 'f', 3917, + 'n', 3987, + 'o', 3855, + 't', 3960, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ' ') SKIP(272); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + lookahead != ';' && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); - case 228: + case 273: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 4470, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + END_STATE(); + case 274: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3720, - ',', 1966, - '-', 3719, - '.', 2276, - '0', 2298, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3731, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 4079, + '-', 3051, + '.', 4080, + '0', 3426, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4112, + '`', 695, + 'd', 4120, + 'e', 4099, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4144, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(308); + lookahead == ' ') SKIP(267); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); - case 229: + case 275: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3720, - ',', 2448, - '-', 3719, - '.', 2276, - '0', 2298, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3731, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 4079, + '-', 3051, + '.', 4080, + '0', 3475, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4115, + '`', 695, + 'd', 4120, + 'e', 4099, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4144, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (lookahead == '\t' || + lookahead == ' ') SKIP(267); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); - case 230: + case 276: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3796, - ',', 2448, - '-', 3795, - '.', 2352, - '0', 2298, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3801, - '`', 594, - 'e', 3790, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3811, - 'i', 3811, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 4079, + '-', 3051, + '.', 4080, + '0', 3475, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4115, + '`', 695, + 'd', 4120, + 'e', 4102, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4144, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (lookahead == '\t' || + lookahead == ' ') SKIP(267); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); - case 231: + case 277: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3796, - ',', 2448, - '-', 3795, - '.', 2279, - '0', 3805, - 'E', 3804, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3799, - '`', 594, - 'e', 3792, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3811, - 'i', 3811, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 4079, + '-', 3051, + '.', 4076, + '0', 3475, + 'N', 4188, + '[', 2983, + '_', 4115, + '`', 695, + 'f', 4121, + 'n', 4145, + 't', 4152, + '{', 3169, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3806); + if (lookahead == '\t' || + lookahead == ' ') SKIP(267); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); - case 232: + case 278: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3796, - ',', 2448, - '-', 3795, - '.', 2279, - '0', 3805, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3799, - '`', 594, - 'e', 3790, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3811, - 'i', 3811, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 4079, + '-', 3051, + '.', 3394, + '0', 3475, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4115, + '`', 695, + 'd', 4120, + 'e', 4099, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4144, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3806); + if (lookahead == '\t' || + lookahead == ' ') SKIP(267); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); - case 233: + case 279: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3796, - ',', 2448, - '-', 3795, - '.', 2279, - '0', 2298, - 'E', 3804, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3801, - '`', 594, - 'e', 3792, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3811, - 'i', 3811, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 4751, + '-', 4750, + '.', 4749, + '0', 3477, + 'N', 4782, + '[', 2983, + '_', 4757, + '`', 695, + 'e', 4744, + 'f', 4762, + 'n', 4779, + 'o', 4745, + 't', 4772, + '{', 3169, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (lookahead == '\t' || + lookahead == ' ') SKIP(279); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4788); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3500); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4802); END_STATE(); - case 234: + case 280: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3796, - ',', 2448, - '-', 3795, - '.', 2276, - '0', 3805, - 'E', 3804, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3799, - '`', 594, - 'e', 3792, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3811, - 'i', 3811, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 4465, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3806); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 235: + case 281: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3796, - ',', 2448, - '-', 3795, - '.', 2276, - '0', 3805, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3799, - '`', 594, - 'e', 3790, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3811, - 'i', 3811, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4566, + ',', 2987, + '-', 4565, + '.', 4558, + '0', 3428, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4583, + '`', 695, + 'e', 4551, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3806); + if (lookahead == '\t' || + lookahead == ' ') SKIP(401); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 236: + case 282: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3796, - ',', 2448, - '-', 3795, - '.', 2276, - '0', 2298, - 'E', 3804, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3801, - '`', 594, - 'e', 3792, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3811, - 'i', 3811, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4566, + ',', 2987, + '-', 4565, + '.', 3384, + '0', 3428, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4583, + '`', 695, + 'e', 4551, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (lookahead == '\t' || + lookahead == ' ') SKIP(401); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 237: + case 283: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 2210, - '+', 3796, - ',', 2448, - '-', 3795, - '.', 2276, - '0', 2298, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3801, - '`', 594, - 'e', 3790, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3811, - 'i', 3811, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4566, + ',', 3610, + '-', 4565, + '.', 4558, + '0', 3428, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4583, + '`', 695, + 'e', 4551, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 238: + case 284: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 1966, - '-', 2024, - '.', 2278, - '0', 2333, - ':', 2453, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 240, - ' ', 240, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4566, + ',', 3610, + '-', 4565, + '.', 3384, + '0', 3428, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4583, + '`', 695, + 'e', 4551, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 239: + case 285: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 1966, - '-', 2024, - '.', 2278, - '0', 2333, - ':', 2453, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 241, - ' ', 241, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 1200, + '0', 3431, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1224, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 240: + case 286: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 1966, - '-', 2024, - '.', 2355, - '0', 2333, - ':', 2453, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 240, - ' ', 240, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 1200, + '0', 3480, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 241: + case 287: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 1966, - '-', 2024, - '.', 2355, - '0', 2333, - ':', 2453, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 241, - ' ', 241, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 1200, + '0', 3480, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1305, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 242: + case 288: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 1316, - '-', 2024, - '.', 2355, - '0', 4373, - 'I', 4403, - 'N', 4402, - '_', 4370, - '`', 594, - 'a', 4392, - 'b', 4397, - 'c', 4379, - 'd', 4380, - 'e', 4393, - 'f', 4375, - 'h', 4389, - 'i', 4369, - 'l', 4382, - 'm', 4378, - 'n', 4384, - 'o', 4401, - 'r', 4381, - 's', 4394, - 't', 4395, - 'u', 4400, - 'w', 4387, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 3402, + '0', 3480, + 'B', 3524, + 'E', 1208, + 'G', 1213, + 'I', 1386, + 'K', 1213, + 'M', 1213, + 'N', 1381, + 'P', 1213, + 'T', 1213, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 3525, + 'c', 1236, + 'd', 1234, + 'e', 1207, + 'f', 1233, + 'g', 1212, + 'h', 1286, + 'i', 1214, + 'k', 1212, + 'l', 1268, + 'm', 1209, + 'n', 1261, + 'o', 1373, + 'p', 1212, + 'r', 1252, + 's', 1265, + 't', 1211, + 'u', 1345, + 'w', 1282, + '}', 3170, + 0xb5, 1344, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(349); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4356); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4374); + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4356); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 243: + case 289: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2277, - '0', 2333, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 3402, + '0', 3480, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 244: + case 290: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2277, - '0', 2333, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 3391, + '0', 3480, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 245: + case 291: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2277, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 1202, + '0', 3431, + 'B', 3524, + 'E', 1208, + 'G', 1213, + 'I', 1386, + 'K', 1213, + 'M', 1213, + 'N', 1381, + 'P', 1213, + 'T', 1213, + '_', 1224, + '`', 695, + 'a', 1300, + 'b', 3525, + 'c', 1236, + 'd', 1234, + 'e', 1207, + 'f', 1233, + 'g', 1212, + 'h', 1286, + 'i', 1214, + 'k', 1212, + 'l', 1268, + 'm', 1209, + 'n', 1261, + 'o', 1373, + 'p', 1212, + 'r', 1252, + 's', 1265, + 't', 1211, + 'u', 1345, + 'w', 1282, + '}', 3170, + 0xb5, 1344, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 246: + case 292: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2278, - '0', 2333, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 1202, + '0', 3431, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1224, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 247: + case 293: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2278, - '0', 2333, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 1202, + '0', 3480, + 'B', 3524, + 'E', 1208, + 'G', 1213, + 'I', 1386, + 'K', 1213, + 'M', 1213, + 'N', 1381, + 'P', 1213, + 'T', 1213, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 3525, + 'c', 1236, + 'd', 1234, + 'e', 1207, + 'f', 1233, + 'g', 1212, + 'h', 1286, + 'i', 1214, + 'k', 1212, + 'l', 1268, + 'm', 1209, + 'n', 1261, + 'o', 1373, + 'p', 1212, + 'r', 1252, + 's', 1265, + 't', 1211, + 'u', 1345, + 'w', 1282, + '}', 3170, + 0xb5, 1344, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 248: + case 294: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2278, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 1202, + '0', 3480, + 'B', 3524, + 'E', 1213, + 'G', 1213, + 'I', 1386, + 'K', 1213, + 'M', 1213, + 'N', 1381, + 'P', 1213, + 'T', 1213, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 3525, + 'c', 1236, + 'd', 1234, + 'e', 1210, + 'f', 1233, + 'g', 1212, + 'h', 1286, + 'i', 1214, + 'k', 1212, + 'l', 1268, + 'm', 1209, + 'n', 1261, + 'o', 1373, + 'p', 1212, + 'r', 1252, + 's', 1265, + 't', 1211, + 'u', 1345, + 'w', 1282, + '}', 3170, + 0xb5, 1344, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 249: + case 295: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2355, - '0', 2300, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1034, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 1202, + '0', 3480, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 250: + case 296: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2355, - '0', 2300, - 'I', 1301, - 'N', 1297, - '_', 1034, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 1943, + '-', 3049, + '.', 1202, + '0', 3480, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1305, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 251: + case 297: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2355, - '0', 4373, - 'I', 4403, - 'N', 4402, - '_', 4370, - '`', 594, - 'a', 4392, - 'b', 4397, - 'c', 4379, - 'd', 4380, - 'e', 4393, - 'f', 4375, - 'h', 4389, - 'i', 4369, - 'l', 4382, - 'm', 4378, - 'n', 4384, - 'o', 4401, - 'r', 4381, - 's', 4394, - 't', 4395, - 'u', 4400, - 'w', 4387, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 1200, + '0', 3431, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1224, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4356); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4374); + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4356); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 252: + case 298: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2355, - '0', 2333, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 1200, + '0', 3480, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 253: + case 299: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2355, - '0', 2333, - 'I', 1301, - 'N', 1297, - '[', 2406, - ']', 1963, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 1200, + '0', 3480, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1305, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 254: + case 300: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2354, - '0', 2300, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1034, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 3402, + '0', 3480, + 'B', 3524, + 'E', 1208, + 'G', 1213, + 'I', 1386, + 'K', 1213, + 'M', 1213, + 'N', 1381, + 'P', 1213, + 'T', 1213, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 3525, + 'c', 1236, + 'd', 1234, + 'e', 1207, + 'f', 1233, + 'g', 1212, + 'h', 1286, + 'i', 1214, + 'k', 1212, + 'l', 1268, + 'm', 1209, + 'n', 1261, + 'o', 1373, + 'p', 1212, + 'r', 1252, + 's', 1265, + 't', 1211, + 'u', 1345, + 'w', 1282, + '}', 3170, + 0xb5, 1344, + '\t', 3611, + ' ', 3611, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 255: + case 301: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2354, - '0', 2333, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 3402, + '0', 3480, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 256: + case 302: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - ',', 2448, - '-', 2024, - '.', 2354, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 3391, + '0', 3480, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 257: + case 303: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2277, - '0', 2333, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 1202, + '0', 3431, + 'B', 3524, + 'E', 1208, + 'G', 1213, + 'I', 1386, + 'K', 1213, + 'M', 1213, + 'N', 1381, + 'P', 1213, + 'T', 1213, + '_', 1224, + '`', 695, + 'a', 1300, + 'b', 3525, + 'c', 1236, + 'd', 1234, + 'e', 1207, + 'f', 1233, + 'g', 1212, + 'h', 1286, + 'i', 1214, + 'k', 1212, + 'l', 1268, + 'm', 1209, + 'n', 1261, + 'o', 1373, + 'p', 1212, + 'r', 1252, + 's', 1265, + 't', 1211, + 'u', 1345, + 'w', 1282, + '}', 3170, + 0xb5, 1344, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 258: + case 304: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2277, - '0', 2333, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 1202, + '0', 3431, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1224, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 259: + case 305: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2277, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 1202, + '0', 3480, + 'B', 3524, + 'E', 1208, + 'G', 1213, + 'I', 1386, + 'K', 1213, + 'M', 1213, + 'N', 1381, + 'P', 1213, + 'T', 1213, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 3525, + 'c', 1236, + 'd', 1234, + 'e', 1207, + 'f', 1233, + 'g', 1212, + 'h', 1286, + 'i', 1214, + 'k', 1212, + 'l', 1268, + 'm', 1209, + 'n', 1261, + 'o', 1373, + 'p', 1212, + 'r', 1252, + 's', 1265, + 't', 1211, + 'u', 1345, + 'w', 1282, + '}', 3170, + 0xb5, 1344, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 260: + case 306: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2278, - '0', 2333, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 1202, + '0', 3480, + 'B', 3524, + 'E', 1213, + 'G', 1213, + 'I', 1386, + 'K', 1213, + 'M', 1213, + 'N', 1381, + 'P', 1213, + 'T', 1213, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 3525, + 'c', 1236, + 'd', 1234, + 'e', 1210, + 'f', 1233, + 'g', 1212, + 'h', 1286, + 'i', 1214, + 'k', 1212, + 'l', 1268, + 'm', 1209, + 'n', 1261, + 'o', 1373, + 'p', 1212, + 'r', 1252, + 's', 1265, + 't', 1211, + 'u', 1345, + 'w', 1282, + '}', 3170, + 0xb5, 1344, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 261: + case 307: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2278, - '0', 2333, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 1202, + '0', 3480, + 'E', 1226, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1225, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 262: + case 308: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2278, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 1202, + '0', 3480, + 'I', 1386, + 'N', 1381, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1305, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 263: + case 309: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2355, - '0', 2300, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1034, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 4560, + '0', 3428, + 'E', 4578, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'N', 4626, + 'P', 4581, + 'T', 4581, + '[', 2983, + ']', 2984, + '_', 4583, + '`', 695, + 'd', 4597, + 'e', 4553, + 'f', 4596, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4617, + 'o', 4552, + 'p', 4580, + 's', 4602, + 't', 4579, + 'u', 4618, + 'w', 4605, + '{', 3169, + 0xb5, 4618, + '\t', 3611, + ' ', 3611, + 'B', 3524, + 'b', 3524, + 'I', 4633, + 'i', 4633, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 264: + case 310: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2355, - '0', 2300, - 'I', 1301, - 'N', 1297, - '_', 1034, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 4560, + '0', 3428, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4583, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 265: + case 311: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2355, - '0', 2333, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 4560, + '0', 3478, + 'E', 4578, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'N', 4626, + 'P', 4581, + 'T', 4581, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'd', 4597, + 'e', 4553, + 'f', 4596, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4617, + 'o', 4552, + 'p', 4580, + 's', 4602, + 't', 4579, + 'u', 4618, + 'w', 4605, + '{', 3169, + 0xb5, 4618, + '\t', 3611, + ' ', 3611, + 'B', 3524, + 'b', 3524, + 'I', 4633, + 'i', 4633, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 266: + case 312: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2355, - '0', 2333, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 4560, + '0', 3478, + 'E', 4581, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'N', 4626, + 'P', 4581, + 'T', 4581, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'd', 4597, + 'e', 4550, + 'f', 4596, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4617, + 'o', 4552, + 'p', 4580, + 's', 4602, + 't', 4579, + 'u', 4618, + 'w', 4605, + '{', 3169, + 0xb5, 4618, + '\t', 3611, + ' ', 3611, + 'B', 3524, + 'b', 3524, + 'I', 4633, + 'i', 4633, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 267: + case 313: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 4560, + '0', 3478, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + END_STATE(); + case 314: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 4560, + '0', 3478, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4551, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + END_STATE(); + case 315: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 4559, + '0', 3428, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4583, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + END_STATE(); + case 316: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 4559, + '0', 3478, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + END_STATE(); + case 317: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 4559, + '0', 3478, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4551, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + END_STATE(); + case 318: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 3397, + '0', 3478, + 'E', 4578, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'N', 4626, + 'P', 4581, + 'T', 4581, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'd', 4597, + 'e', 4553, + 'f', 4596, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4617, + 'o', 4552, + 'p', 4580, + 's', 4602, + 't', 4579, + 'u', 4618, + 'w', 4605, + '{', 3169, + 0xb5, 4618, + '\t', 3611, + ' ', 3611, + 'B', 3524, + 'b', 3524, + 'I', 4633, + 'i', 4633, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + END_STATE(); + case 319: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 3397, + '0', 3478, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + END_STATE(); + case 320: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 3386, + '0', 3478, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + END_STATE(); + case 321: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2355, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3620, + ',', 1943, + '-', 3053, + '.', 3390, + '0', 3431, + 'I', 1386, + 'N', 1381, + '_', 1224, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1305, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + lookahead == ' ') SKIP(400); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 268: + case 322: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2354, - '0', 2300, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1034, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3620, + ',', 1943, + '-', 3053, + '.', 1199, + '0', 3431, + 'I', 1386, + 'N', 1381, + '_', 1224, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1305, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ' ') SKIP(400); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 269: + case 323: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2354, - '0', 2333, - 'E', 1036, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1035, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3620, + ',', 3610, + '-', 3053, + '.', 3390, + '0', 3431, + 'I', 1386, + 'N', 1381, + '[', 2983, + ']', 2984, + '_', 1224, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1305, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 270: + case 324: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2249, - '-', 2024, - '.', 2354, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 3620, + ',', 3610, + '-', 3053, + '.', 1199, + '0', 3431, + 'I', 1386, + 'N', 1381, + '_', 1224, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1305, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 271: + case 325: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2352, - '0', 2298, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3731, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4472, + ',', 2987, + '-', 4471, + '.', 4466, + '0', 3429, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4493, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(401); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 272: + case 326: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2352, - '0', 2298, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3731, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4472, + ',', 2987, + '-', 4471, + '.', 3385, + '0', 3429, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4493, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(401); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 273: + case 327: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2352, - '0', 2330, - ';', 2456, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 273, - ' ', 273, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4472, + ',', 3610, + '-', 4471, + '.', 4466, + '0', 3429, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4493, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(568); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 274: + case 328: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2352, - '0', 2330, - '?', 2157, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 3294, + '+', 4472, + ',', 3610, + '-', 4471, + '.', 3385, + '0', 3429, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4493, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 275: + case 329: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2352, - '0', 2330, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 2987, + '-', 3047, + '.', 1408, + '0', 3479, + ':', 3615, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 329, + ' ', 329, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 276: + case 330: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2352, - '0', 2330, - 'N', 3759, - '[', 2406, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 2987, + '-', 3047, + '.', 1408, + '0', 3479, + ':', 3615, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 330, + ' ', 330, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 277: + case 331: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2352, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 2987, + '-', 3047, + '.', 3389, + '0', 3479, + ':', 3615, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 329, + ' ', 329, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 278: + case 332: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2279, - '0', 2330, - '?', 2157, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 2987, + '-', 3047, + '.', 3389, + '0', 3479, + ':', 3615, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 330, + ' ', 330, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 279: + case 333: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2279, - '0', 2330, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 3400, + '0', 3479, + '<', 3016, + 'I', 1929, + 'N', 1924, + ']', 2984, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 280: + case 334: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2279, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 3400, + '0', 3479, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 281: + case 335: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2276, - '0', 2330, - ';', 2456, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 273, - ' ', 273, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 3400, + '0', 3479, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(568); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 282: + case 336: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2276, - '0', 2330, - '?', 2157, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 1408, + '0', 3479, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 283: + case 337: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2276, - '0', 2330, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 1408, + '0', 3430, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1669, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 284: + case 338: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2358, - '0', 2298, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3731, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 3389, + '0', 3479, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 285: + case 339: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2358, - '0', 2330, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 3389, + '0', 3479, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 286: + case 340: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 1966, - '-', 3717, - '.', 2358, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 3389, + '0', 3479, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 287: + case 341: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2352, - '0', 2298, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3731, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 1411, + '0', 3479, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 288: + case 342: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2352, - '0', 2298, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3731, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 1411, + '0', 3479, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 289: + case 343: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2352, - '0', 2330, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + ',', 3610, + '-', 3047, + '.', 1411, + '0', 3430, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1669, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 290: + case 344: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2352, - '0', 2330, - 'N', 3759, - '[', 2406, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '}', 2089, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 3400, + '0', 3479, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(347); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 291: + case 345: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2352, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '}', 2089, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 3400, + '0', 3479, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 292: + case 346: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2279, - '0', 2330, - '?', 2157, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 3400, + '0', 3479, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 293: + case 347: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2279, - '0', 2330, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 1408, + '0', 3479, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(347); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 294: + case 348: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2279, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 1408, + '0', 3479, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 295: + case 349: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2276, - '0', 2330, - ';', 2456, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2450, - ' ', 2450, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 1408, + '0', 3479, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2451); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 296: + case 350: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2276, - '0', 2330, - '?', 2157, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 1408, + '0', 3430, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1669, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 297: + case 351: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2276, - '0', 2330, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 3389, + '0', 3479, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(347); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 298: + case 352: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2276, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 3389, + '0', 3479, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 299: + case 353: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2358, - '0', 2298, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3731, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 3389, + '0', 3479, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 300: + case 354: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2358, - '0', 2330, - 'E', 3733, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3713, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 1411, + '0', 3479, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 301: + case 355: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2358, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 1411, + '0', 3479, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 302: + case 356: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3934, - ',', 1966, - '-', 3933, - '.', 2352, - '0', 3953, - 'N', 3971, - '[', 1962, - ']', 1963, - '_', 3949, - '`', 594, - 'e', 3928, - 'f', 3955, - 'n', 3970, - 'o', 3929, - 't', 3965, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3621, + '-', 3047, + '.', 1411, + '0', 3430, + 'E', 1671, + 'I', 1929, + 'N', 1924, + '_', 1669, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1670, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3972); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3954); + lookahead == ' ') SKIP(349); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 303: + case 357: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 4465, + '0', 3474, + ';', 3627, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 357, + ' ', 357, + 'I', 4527, + 'i', 4527, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(652); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + END_STATE(); + case 358: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3934, - ',', 1966, - '-', 3933, - '.', 2279, - '0', 3953, - 'E', 3941, - 'G', 3944, - 'K', 3944, - 'M', 3944, - 'N', 3971, - 'P', 3944, - 'T', 3944, - '[', 1962, - ']', 1963, - '_', 3949, - '`', 594, - 'd', 3956, - 'e', 3930, - 'f', 3955, - 'g', 3943, - 'h', 3964, - 'k', 3943, - 'm', 3945, - 'n', 3968, - 'o', 3929, - 'p', 3943, - 's', 3959, - 't', 3942, - 'u', 3967, - 'w', 3962, - '{', 2088, - 0xb5, 3967, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 4465, + '0', 3474, + '?', 3263, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + lookahead == ' ') SKIP(358); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3972); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3954); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 304: + case 359: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3934, - ',', 1966, - '-', 3933, - '.', 2279, - '0', 3953, - 'E', 3944, - 'G', 3944, - 'K', 3944, - 'M', 3944, - 'N', 3971, - 'P', 3944, - 'T', 3944, - '[', 1962, - ']', 1963, - '_', 3949, - '`', 594, - 'd', 3956, - 'e', 3927, - 'f', 3955, - 'g', 3943, - 'h', 3964, - 'k', 3943, - 'm', 3945, - 'n', 3968, - 'o', 3929, - 'p', 3943, - 's', 3959, - 't', 3942, - 'u', 3967, - 'w', 3962, - '{', 2088, - 0xb5, 3967, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 4465, + '0', 3474, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3972); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3954); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 305: + case 360: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3934, - ',', 1966, - '-', 3933, - '.', 2279, - '0', 2298, - 'E', 3941, - 'G', 3944, - 'K', 3944, - 'M', 3944, - 'N', 3971, - 'P', 3944, - 'T', 3944, - '[', 1962, - ']', 1963, - '_', 3951, - '`', 594, - 'd', 3956, - 'e', 3930, - 'f', 3955, - 'g', 3943, - 'h', 3964, - 'k', 3943, - 'm', 3945, - 'n', 3968, - 'o', 3929, - 'p', 3943, - 's', 3959, - 't', 3942, - 'u', 3967, - 'w', 3962, - '{', 2088, - 0xb5, 3967, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 4465, + '0', 3474, + 'N', 4521, + '[', 3546, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3972); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 306: + case 361: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3934, - ',', 2448, - '-', 3933, - '.', 2352, - '0', 3953, - 'N', 3971, - '[', 1962, - ']', 1963, - '_', 3949, - '`', 594, - 'e', 3928, - 'f', 3955, - 'n', 3970, - 'o', 3929, - 't', 3965, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3972, - 'i', 3972, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 4465, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3954); + if (lookahead == '\t' || + lookahead == ' ') SKIP(361); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 307: + case 362: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 2250, - '-', 2028, - '.', 2355, - '0', 2333, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1102, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1133, - '}', 2089, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 4465, + '0', 3429, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4493, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2349); + lookahead == ' ') SKIP(361); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 308: + case 363: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3720, - ',', 1966, - '-', 3719, - '.', 2352, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 4467, + '0', 3474, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(308); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 309: + case 364: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3796, - ',', 1966, - '-', 3795, - '.', 2352, - '0', 2298, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3801, - '`', 594, - 'e', 3790, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 4467, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 310: + case 365: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3796, - ',', 1966, - '-', 3795, - '.', 2279, - '0', 3805, - 'E', 3804, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3799, - '`', 594, - 'e', 3792, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 4467, + '0', 3429, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4493, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3806); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 311: + case 366: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3796, - ',', 1966, - '-', 3795, - '.', 2279, - '0', 3805, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3799, - '`', 594, - 'e', 3790, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 3396, + '0', 3474, + '?', 3263, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(358); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3806); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 312: + case 367: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3796, - ',', 1966, - '-', 3795, - '.', 2279, - '0', 2298, - 'E', 3804, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3801, - '`', 594, - 'e', 3792, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 3396, + '0', 3474, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 313: + case 368: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3796, - ',', 1966, - '-', 3795, - '.', 2276, - '0', 3805, - 'E', 3804, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3799, - '`', 594, - 'e', 3792, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 3396, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3806); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 314: + case 369: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 3383, + '0', 3474, + ';', 3627, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 357, + ' ', 357, + 'I', 4527, + 'i', 4527, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(652); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + END_STATE(); + case 370: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3796, - ',', 1966, - '-', 3795, - '.', 2276, - '0', 3805, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3799, - '`', 594, - 'e', 3790, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 3383, + '0', 3474, + '?', 3263, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(358); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3806); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 315: + case 371: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3796, - ',', 1966, - '-', 3795, - '.', 2276, - '0', 2298, - 'E', 3804, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3801, - '`', 594, - 'e', 3792, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 2987, + '-', 4468, + '.', 3383, + '0', 3474, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 316: + case 372: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - '(', 1964, - '+', 3796, - ',', 1966, - '-', 3795, - '.', 2276, - '0', 2298, - 'N', 3810, - '[', 1962, - ']', 1963, - '_', 3801, - '`', 594, - 'e', 3790, - 'f', 3807, - 'n', 3809, - 'o', 3791, - 't', 3808, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 4465, + '0', 3474, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3811); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2309); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 317: + case 373: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - ',', 1966, - '-', 2011, - '.', 2275, - ':', 1958, - '=', 981, - '>', 1995, - '?', 2157, - '`', 594, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 4465, + '0', 3474, + 'N', 4521, + '[', 3546, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '}', 3170, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(320); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 318: + case 374: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - ',', 1966, - '-', 2011, - ':', 2453, - '=', 2565, - '>', 1995, - '`', 594, - '\t', 319, - ' ', 319, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 4465, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '}', 3170, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '[' && - lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1713); + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 319: + case 375: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - ',', 1966, - '-', 2011, - ':', 2453, - '>', 1995, - '`', 594, - '\t', 319, - ' ', 319, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 4465, + '0', 3429, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4493, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '[' && - lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1713); + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 320: + case 376: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1969, - '\'', 527, - ',', 1966, - '-', 2011, - ':', 1958, - '=', 981, - '>', 1995, - '?', 2157, - '`', 594, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 4467, + '0', 3474, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(320); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 321: + case 377: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - '+', 556, - '-', 2025, - '.', 2352, - '0', 2584, - '=', 2565, - 'N', 2610, - '[', 1962, - '_', 2585, - '`', 594, - 'f', 2592, - 'n', 2599, - 't', 2600, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 4467, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(325); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2615); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2591); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 322: + case 378: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 1016, - '-', 2024, - '.', 2352, - '0', 2328, - ';', 2456, - 'I', 1301, - 'N', 1297, - '[', 1962, - '^', 2460, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1214, - 'c', 1039, - 'd', 1098, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1028, - 'l', 1111, - 'm', 1044, - 'n', 1074, - 'o', 1289, - 'r', 1119, - 's', 1198, - 't', 1203, - 'u', 1247, - 'w', 1135, - '{', 2088, - '\t', 322, - ' ', 322, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 4467, + '0', 3429, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4493, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(568); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2344); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 323: + case 379: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 556, - '-', 2024, - '.', 2352, - '0', 2331, - '?', 2157, - 'N', 771, - '[', 1962, - '_', 588, - '`', 594, - 'f', 599, - 'n', 684, - 't', 706, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 3396, + '0', 3474, + '?', 3263, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(323); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(780); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2347); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 324: + case 380: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 556, - '-', 2024, - '.', 2352, - '0', 2331, - 'N', 771, - '[', 2406, - '_', 588, - '`', 594, - 'f', 599, - 'n', 684, - 't', 706, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 3396, + '0', 3474, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(325); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(780); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2347); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 325: + case 381: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 556, - '-', 2024, - '.', 2352, - '0', 2331, - 'N', 771, - '[', 1962, - '_', 588, - '`', 594, - 'f', 599, - 'n', 684, - 't', 706, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 3396, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(325); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(780); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2347); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 326: + case 382: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 556, - '-', 2024, - '.', 2352, - '0', 1736, - '=', 2565, - 'N', 1861, - '[', 1962, - '_', 1737, - '`', 594, - 'f', 1745, - 'n', 1809, - 't', 1814, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 3383, + '0', 3474, + ';', 3627, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3612, + ' ', 3612, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(325); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1743); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1892); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3613); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 327: + case 383: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 556, - '-', 2024, - '.', 2276, - '0', 2331, - '?', 2157, - 'N', 771, - '[', 1962, - '_', 588, - '`', 594, - 'f', 599, - 'n', 684, - 't', 706, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 3383, + '0', 3474, + '?', 3263, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(323); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(780); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2347); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 328: + case 384: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 556, - '-', 2012, - '.', 2352, - '0', 2331, - 'N', 771, - '[', 1962, - '_', 588, - '`', 594, - 'f', 599, - 'n', 684, - 't', 706, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 3383, + '0', 3474, + 'E', 4499, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4460, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(328); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(780); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2347); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 329: + case 385: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 2660, - '-', 2024, - '.', 2352, - '0', 2329, - ':', 2453, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2730, - 'o', 2652, - 't', 2736, - '{', 2088, - '\t', 329, - ' ', 329, - 'I', 2771, - 'i', 2771, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4469, + ',', 3610, + '-', 4468, + '.', 3383, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4527, + 'i', 4527, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 330: + case 386: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 2660, - '-', 555, - '.', 2352, - ':', 2453, - 'N', 2766, - '_', 2681, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, - '\t', 330, - ' ', 330, - 'I', 2771, - 'i', 2771, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3623, + ',', 3610, + '-', 3049, + '.', 1200, + '0', 3480, + 'I', 1386, + 'N', 1381, + '[', 3546, + ']', 2984, + '_', 1219, + '`', 695, + 'a', 1300, + 'b', 1335, + 'c', 1236, + 'd', 1264, + 'e', 1305, + 'f', 1233, + 'h', 1287, + 'i', 1214, + 'l', 1268, + 'm', 1229, + 'n', 1262, + 'o', 1373, + 'r', 1252, + 's', 1316, + 't', 1329, + 'u', 1346, + 'w', 1283, + '}', 3170, + '\t', 3611, + ' ', 3611, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2345); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4835); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '0' || '>' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); END_STATE(); - case 331: + case 387: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 2660, - '-', 555, - '.', 2352, - 'N', 2766, - '_', 2681, - '`', 594, - 'e', 2650, - 'f', 2689, - 'n', 2759, - 'o', 2652, - 't', 2736, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 4560, + '0', 3428, + 'E', 4578, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'N', 4626, + 'P', 4581, + 'T', 4581, + '[', 2983, + ']', 2984, + '_', 4583, + '`', 695, + 'd', 4597, + 'e', 4553, + 'f', 4596, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4617, + 'o', 4552, + 'p', 4580, + 's', 4602, + 't', 4579, + 'u', 4618, + 'w', 4605, + '{', 3169, + 0xb5, 4618, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(331); + lookahead == ' ') SKIP(361); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2790); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 332: + case 388: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 3718, - ',', 2448, - '-', 3717, - '.', 2364, - '0', 2330, - 'N', 3759, - '[', 1962, - ']', 1963, - '_', 3728, - '`', 594, - 'e', 3711, - 'f', 3735, - 'n', 3755, - 'o', 3712, - 't', 3748, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 3766, - 'i', 3766, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 4560, + '0', 3428, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4583, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2346); + if (lookahead == '\t' || + lookahead == ' ') SKIP(361); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3788); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 333: + case 389: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 4055, - '-', 4054, - '.', 2352, - '0', 2332, - 'N', 4083, - '[', 1962, - '_', 4061, - '`', 594, - 'e', 4049, - 'f', 4063, - 'n', 4080, - 'o', 4050, - 't', 4073, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 4560, + '0', 3478, + 'E', 4578, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'N', 4626, + 'P', 4581, + 'T', 4581, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'd', 4597, + 'e', 4553, + 'f', 4596, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4617, + 'o', 4552, + 'p', 4580, + 's', 4602, + 't', 4579, + 'u', 4618, + 'w', 4605, + '{', 3169, + 0xb5, 4618, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(333); + lookahead == ' ') SKIP(361); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4089); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2348); + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4103); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 334: + case 390: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 560, - '-', 2028, - '.', 2352, - '0', 2331, - 'N', 771, - '[', 1962, - '_', 588, - '`', 594, - 'f', 599, - 'n', 684, - 't', 706, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 4560, + '0', 3478, + 'E', 4581, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'N', 4626, + 'P', 4581, + 'T', 4581, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'd', 4597, + 'e', 4550, + 'f', 4596, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4617, + 'o', 4552, + 'p', 4580, + 's', 4602, + 't', 4579, + 'u', 4618, + 'w', 4605, + '{', 3169, + 0xb5, 4618, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(334); + lookahead == ' ') SKIP(361); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(780); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2347); + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 335: + case 391: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 3328, - '-', 2024, - '.', 2352, - '0', 3370, - 'N', 3439, - '[', 1962, - '_', 3364, - '`', 594, - 'f', 3381, - 'n', 3415, - 't', 3425, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 4560, + '0', 3478, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(325); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3442); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3372); + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 336: + case 392: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 3328, - '-', 2024, - '.', 2279, - '0', 3370, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'N', 3439, - 'P', 3354, - 'T', 3354, - '[', 1962, - '_', 3364, - '`', 594, - 'd', 3379, - 'e', 3349, - 'f', 3381, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3414, - 'p', 3353, - 's', 3390, - 't', 3352, - 'u', 3427, - 'w', 3401, - '{', 2088, - 0xb5, 3427, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 4560, + '0', 3478, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4551, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(325); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3442); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3372); + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 337: + case 393: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 3328, - '-', 2024, - '.', 2279, - '0', 3370, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'N', 3439, - 'P', 3354, - 'T', 3354, - '[', 1962, - '_', 3364, - '`', 594, - 'd', 3379, - 'e', 3353, - 'f', 3381, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3414, - 'p', 3353, - 's', 3390, - 't', 3352, - 'u', 3427, - 'w', 3401, - '{', 2088, - 0xb5, 3427, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 4559, + '0', 3428, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4583, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(325); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3442); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3372); + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 338: + case 394: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 3328, - '-', 2024, - '.', 2279, - '0', 2299, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'N', 3439, - 'P', 3354, - 'T', 3354, - '[', 1962, - '_', 3366, - '`', 594, - 'd', 3379, - 'e', 3349, - 'f', 3381, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3414, - 'p', 3353, - 's', 3390, - 't', 3352, - 'u', 3427, - 'w', 3401, - '{', 2088, - 0xb5, 3427, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 4559, + '0', 3478, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(325); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3442); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2310); + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 339: + case 395: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 3176, - '-', 2028, - '.', 2276, - '0', 2299, - 'N', 3227, - '[', 1962, - '_', 3183, - '`', 594, - 'f', 3189, - 'n', 3210, - 't', 3217, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 4559, + '0', 3478, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4551, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(334); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3230); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2310); + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3163); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 340: + case 396: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 3245, - '-', 2028, - '.', 2276, - '0', 2299, - 'N', 3299, - '[', 1962, - '_', 3255, - '`', 594, - 'f', 3261, - 'n', 3282, - 't', 3289, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 3397, + '0', 3478, + 'E', 4578, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'N', 4626, + 'P', 4581, + 'T', 4581, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'd', 4597, + 'e', 4553, + 'f', 4596, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4617, + 'o', 4552, + 'p', 4580, + 's', 4602, + 't', 4579, + 'u', 4618, + 'w', 4605, + '{', 3169, + 0xb5, 4618, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(334); + lookahead == ' ') SKIP(361); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3302); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2310); + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3232); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 341: + case 397: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 2806, - '-', 2024, - '.', 2352, - '0', 2299, - 'N', 2867, - '[', 1962, - '_', 2820, - '`', 594, - 'f', 2829, - 'n', 2850, - 't', 2857, - '{', 2088, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 3397, + '0', 3478, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(325); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2870); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2310); + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 342: - if (lookahead == '"') ADVANCE(2426); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '\'') ADVANCE(2457); - if (lookahead == '`') ADVANCE(2458); + case 398: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 2987, + '-', 4568, + '.', 3386, + '0', 3478, + 'E', 4592, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4554, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(362); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(2459); + lookahead == ' ') SKIP(361); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 343: + case 399: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 1016, - ',', 2448, - '-', 555, - '.', 2351, - 'I', 1301, - 'N', 1297, - ']', 1963, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4569, + ',', 3610, + '-', 4568, + '.', 4559, + '0', 3478, + 'N', 4626, + '[', 2983, + ']', 2984, + '_', 4588, + '`', 695, + 'e', 4551, + 'f', 4596, + 'n', 4622, + 'o', 4552, + 't', 4613, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4633, + 'i', 4633, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 344: + case 400: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 1016, - '-', 543, - '.', 2275, - ':', 2453, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '\t', 347, - ' ', 347, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 3624, + '-', 3052, + '.', 1409, + '0', 3479, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1780, + 'b', 1829, + 'c', 1673, + 'd', 1713, + 'e', 1789, + 'f', 1674, + 'h', 1759, + 'i', 1657, + 'l', 1727, + 'm', 1676, + 'n', 1715, + 'o', 1901, + 'r', 1716, + 's', 1805, + 't', 1824, + 'u', 1855, + 'w', 1754, + '}', 3170, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '\t' || + lookahead == ' ') SKIP(400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 345: + case 401: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 1016, - '-', 543, - '.', 2275, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + '(', 2985, + '+', 4472, + ',', 2987, + '-', 4471, + '.', 4466, + '0', 3474, + 'N', 4521, + '[', 2983, + ']', 2984, + '_', 4488, + '`', 695, + 'e', 4458, + 'f', 4501, + 'n', 4518, + 'o', 4459, + 't', 4511, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1316); + lookahead == ' ') SKIP(401); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4527); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); END_STATE(); - case 346: + case 402: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 1016, - '-', 543, - '.', 2351, - ':', 2453, - ';', 2456, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '\t', 346, - ' ', 346, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + ',', 2987, + '-', 3030, + '.', 3378, + ':', 2980, + ';', 3627, + '=', 1142, + '>', 3018, + '?', 3263, + '`', 695, + '\t', 405, + ' ', 405, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(564); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(652); if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ']' && + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); END_STATE(); - case 347: + case 403: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 1016, - '-', 543, - '.', 2351, - ':', 2453, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '\t', 347, - ' ', 347, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + ',', 2987, + '-', 3030, + ':', 3615, + '=', 3764, + '>', 3018, + '`', 695, + '{', 3169, + '\t', 404, + ' ', 404, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ']' && + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); END_STATE(); - case 348: + case 404: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 1016, - '-', 543, - '.', 2351, - '=', 2565, - 'I', 1869, - 'N', 1861, - '_', 1737, - '`', 594, - 'a', 1792, - 'b', 1821, - 'c', 1749, - 'd', 1758, - 'e', 1795, - 'f', 1744, - 'h', 1783, - 'i', 1732, - 'l', 1765, - 'm', 1746, - 'n', 1759, - 'o', 1853, - 'r', 1760, - 's', 1808, - 't', 1816, - 'u', 1831, - 'w', 1780, + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + ',', 2987, + '-', 3030, + ':', 3615, + '>', 3018, + '`', 695, + '{', 3169, + '\t', 404, + ' ', 404, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1737); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1892); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '[' && + lookahead != ']' && + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); + END_STATE(); + case 405: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '$', 2989, + '\'', 585, + ',', 2987, + '-', 3030, + ':', 2980, + ';', 3627, + '=', 1142, + '>', 3018, + '?', 3263, + '`', 695, + '\t', 405, + ' ', 405, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(652); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '[' && + lookahead != ']' && + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); + END_STATE(); + case 406: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + ',', 3610, + '-', 635, + '.', 1661, + 'I', 1929, + 'N', 1924, + ']', 2984, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '\t', 3611, + ' ', 3611, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(1316); + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 349: + case 407: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 1016, - '-', 543, - '.', 2351, - '?', 2157, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 616, + '.', 3404, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1316); + lookahead == ' ') SKIP(411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1943); END_STATE(); - case 350: + case 408: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 1016, - '-', 543, - '.', 2351, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 616, + '.', 3404, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1316); + lookahead == ' ') SKIP(412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1943); END_STATE(); - case 351: + case 409: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 1017, - '-', 544, - '.', 2351, - ';', 2456, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '\t', 351, - ' ', 351, + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 616, + '.', 1661, + ':', 3615, + ';', 3627, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '\t', 409, + ' ', 409, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(568); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 352: + case 410: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 1017, - '-', 544, - '.', 2351, - 'I', 1301, - 'N', 1297, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 616, + '.', 1661, + '=', 3764, + 'I', 2876, + 'N', 2868, + '_', 2744, + '`', 695, + 'a', 2799, + 'b', 2828, + 'c', 2756, + 'd', 2765, + 'e', 2802, + 'f', 2751, + 'h', 2790, + 'i', 2739, + 'l', 2772, + 'm', 2753, + 'n', 2766, + 'o', 2860, + 'r', 2767, + 's', 2815, + 't', 2823, + 'u', 2838, + 'w', 2787, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1316); + lookahead == ' ') SKIP(412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2744); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < 'A' || '[' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 353: + case 411: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 616, + '.', 1661, + '?', 3263, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1943); + END_STATE(); + case 412: + ADVANCE_MAP( + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 616, + '.', 1661, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1943); + END_STATE(); + case 413: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 3329, - '-', 3327, - '.', 2351, - 'I', 3440, - 'N', 3437, - '_', 3362, - '`', 594, - 'a', 3404, - 'b', 3426, - 'c', 3374, - 'd', 3387, - 'e', 3403, - 'f', 3375, - 'h', 3398, - 'i', 3360, - 'l', 3392, - 'm', 3382, - 'n', 3384, - 'o', 3436, - 'r', 3393, - 's', 3419, - 't', 3424, - 'u', 3432, - 'w', 3395, + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 4074, + '.', 1661, + 'I', 1929, + 'N', 1924, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(350); + lookahead == ' ') SKIP(412); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); + lookahead == '^') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 354: + case 414: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 3329, - '-', 3327, - '.', 2279, - 'B', 2379, - 'E', 3336, - 'G', 3341, - 'I', 3440, - 'K', 3341, - 'M', 3341, - 'N', 3437, - 'P', 3341, - 'T', 3341, - '_', 3365, - '`', 594, - 'a', 3404, - 'b', 2384, - 'c', 3374, - 'd', 3380, - 'e', 3335, - 'f', 3375, - 'g', 3340, - 'h', 3399, - 'i', 3360, - 'k', 3340, - 'l', 3392, - 'm', 3337, - 'n', 3383, - 'o', 3436, - 'p', 3340, - 'r', 3393, - 's', 3389, - 't', 3339, - 'u', 3431, - 'w', 3396, - 0xb5, 3427, + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 4074, + '.', 1410, + 'B', 3524, + 'E', 1650, + 'G', 1655, + 'I', 1929, + 'K', 1655, + 'M', 1655, + 'N', 1924, + 'P', 1655, + 'T', 1655, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 3526, + 'c', 1688, + 'd', 1683, + 'e', 1649, + 'f', 1675, + 'g', 1654, + 'h', 1766, + 'i', 1656, + 'k', 1654, + 'l', 1739, + 'm', 1651, + 'n', 1732, + 'o', 1902, + 'p', 1654, + 'r', 1744, + 's', 1734, + 't', 1653, + 'u', 1853, + 'w', 1757, + 0xb5, 1852, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(350); + lookahead == ' ') SKIP(412); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == '^') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 355: + case 415: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 3329, - '-', 3327, - '.', 2279, - 'B', 2379, - 'E', 3336, - 'G', 3341, - 'I', 3440, - 'K', 3341, - 'M', 3341, - 'N', 3437, - 'P', 3341, - 'T', 3341, - '_', 3362, - '`', 594, - 'a', 3404, - 'b', 2384, - 'c', 3374, - 'd', 3380, - 'e', 3335, - 'f', 3375, - 'g', 3340, - 'h', 3399, - 'i', 3360, - 'k', 3340, - 'l', 3392, - 'm', 3337, - 'n', 3383, - 'o', 3436, - 'p', 3340, - 'r', 3393, - 's', 3389, - 't', 3339, - 'u', 3431, - 'w', 3396, - 0xb5, 3427, + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 4074, + '.', 1410, + 'B', 3524, + 'E', 1650, + 'G', 1655, + 'I', 1929, + 'K', 1655, + 'M', 1655, + 'N', 1924, + 'P', 1655, + 'T', 1655, + '_', 1669, + '`', 695, + 'a', 1790, + 'b', 3526, + 'c', 1688, + 'd', 1683, + 'e', 1649, + 'f', 1675, + 'g', 1654, + 'h', 1766, + 'i', 1656, + 'k', 1654, + 'l', 1739, + 'm', 1651, + 'n', 1732, + 'o', 1902, + 'p', 1654, + 'r', 1744, + 's', 1734, + 't', 1653, + 'u', 1853, + 'w', 1757, + 0xb5, 1852, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(350); + lookahead == ' ') SKIP(412); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); + lookahead == '^') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 356: + case 416: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 3329, - '-', 3327, - '.', 2279, - 'B', 2379, - 'E', 3341, - 'G', 3341, - 'I', 3440, - 'K', 3341, - 'M', 3341, - 'N', 3437, - 'P', 3341, - 'T', 3341, - '_', 3362, - '`', 594, - 'a', 3404, - 'b', 2384, - 'c', 3374, - 'd', 3380, - 'e', 3338, - 'f', 3375, - 'g', 3340, - 'h', 3399, - 'i', 3360, - 'k', 3340, - 'l', 3392, - 'm', 3337, - 'n', 3383, - 'o', 3436, - 'p', 3340, - 'r', 3393, - 's', 3389, - 't', 3339, - 'u', 3431, - 'w', 3396, - 0xb5, 3427, + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 4074, + '.', 1410, + 'B', 3524, + 'E', 1655, + 'G', 1655, + 'I', 1929, + 'K', 1655, + 'M', 1655, + 'N', 1924, + 'P', 1655, + 'T', 1655, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 3526, + 'c', 1688, + 'd', 1683, + 'e', 1652, + 'f', 1675, + 'g', 1654, + 'h', 1766, + 'i', 1656, + 'k', 1654, + 'l', 1739, + 'm', 1651, + 'n', 1732, + 'o', 1902, + 'p', 1654, + 'r', 1744, + 's', 1734, + 't', 1653, + 'u', 1853, + 'w', 1757, + 0xb5, 1852, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(350); + lookahead == ' ') SKIP(412); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); + lookahead == '^') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3304); - END_STATE(); - case 357: - ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 3177, - '-', 3174, - '.', 2275, - ';', 2456, - 'I', 3228, - 'N', 3225, - '_', 3182, - '`', 594, - 'a', 3201, - 'b', 3218, - 'c', 3186, - 'd', 3192, - 'e', 3200, - 'f', 3187, - 'h', 3198, - 'i', 3180, - 'l', 3193, - 'm', 3190, - 'n', 3191, - 'o', 3224, - 'r', 3194, - 's', 3213, - 't', 3216, - 'u', 3220, - 'w', 3196, - '\t', 351, - ' ', 351, - '<', 3304, - '=', 3304, - '$', 3163, - ':', 3163, - '>', 3163, - '^', 3163, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(568); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3163); - END_STATE(); - case 358: - ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 3246, - '-', 3243, - '.', 2275, - 'I', 3300, - 'N', 3297, - '_', 3254, - '`', 594, - 'a', 3273, - 'b', 3290, - 'c', 3258, - 'd', 3264, - 'e', 3272, - 'f', 3259, - 'h', 3270, - 'i', 3252, - 'l', 3265, - 'm', 3262, - 'n', 3263, - 'o', 3296, - 'r', 3266, - 's', 3285, - 't', 3288, - 'u', 3292, - 'w', 3268, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(352); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3232); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 359: + case 417: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - '+', 2807, - '-', 2804, - '.', 2351, - 'I', 2868, - 'N', 2865, - '_', 2819, - '`', 594, - 'a', 2841, - 'b', 2858, - 'c', 2826, - 'd', 2832, - 'e', 2840, - 'f', 2827, - 'h', 2838, - 'i', 2815, - 'l', 2833, - 'm', 2830, - 'n', 2831, - 'o', 2864, - 'r', 2834, - 's', 2853, - 't', 2856, - 'u', 2860, - 'w', 2836, + '"', 3586, + '#', 5024, + '\'', 585, + '+', 1405, + '-', 4074, + '.', 3393, + 'B', 3524, + 'E', 1650, + 'G', 1655, + 'I', 1929, + 'K', 1655, + 'M', 1655, + 'N', 1924, + 'P', 1655, + 'T', 1655, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 3526, + 'c', 1688, + 'd', 1683, + 'e', 1649, + 'f', 1675, + 'g', 1654, + 'h', 1766, + 'i', 1656, + 'k', 1654, + 'l', 1739, + 'm', 1651, + 'n', 1732, + 'o', 1902, + 'p', 1654, + 'r', 1744, + 's', 1734, + 't', 1653, + 'u', 1853, + 'w', 1757, + 0xb5, 1852, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(350); + lookahead == ' ') SKIP(412); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(2791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == '^') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2791); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 360: + case 418: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - ',', 1966, - '-', 577, - '<', 1994, - '=', 981, - '>', 1995, - '@', 1999, - '`', 594, - '{', 2088, + '"', 3586, + '#', 5024, + '\'', 585, + ',', 2987, + '-', 674, + '<', 3016, + '=', 1142, + '>', 3018, + '@', 3020, + '`', 695, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(419); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); - case 361: + case 419: ADVANCE_MAP( - '"', 2426, - '#', 4580, - '\'', 527, - ',', 1966, - '-', 577, - '=', 981, - '>', 1995, - '`', 594, - '{', 2088, + '"', 3586, + '#', 5024, + '\'', 585, + ',', 2987, + '-', 674, + '=', 1142, + '>', 3018, + '`', 695, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(419); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); - case 362: - if (lookahead == '"') ADVANCE(2426); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '\'') ADVANCE(527); - if (lookahead == '`') ADVANCE(594); + case 420: + if (lookahead == '"') ADVANCE(3586); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '\'') ADVANCE(585); + if (lookahead == '`') ADVANCE(695); if (lookahead == '\t' || - lookahead == ' ') SKIP(362); + lookahead == ' ') SKIP(420); END_STATE(); - case 363: + case 421: + if (lookahead == '"') ADVANCE(3586); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '\'') ADVANCE(3628); + if (lookahead == '`') ADVANCE(3687); + if (lookahead == '\t' || + lookahead == ' ') SKIP(420); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3696); + END_STATE(); + case 422: ADVANCE_MAP( - '"', 2426, - '#', 4584, - '$', 1974, - '\'', 527, - '(', 2210, - '+', 2247, - ',', 1316, - '-', 2026, - '.', 2356, - '0', 4458, - 'I', 4561, - 'N', 4553, - '_', 4459, - '`', 594, - 'a', 4503, - 'b', 4524, - 'c', 4461, - 'd', 4472, - 'e', 4508, - 'f', 4462, - 'h', 4495, - 'i', 4457, - 'l', 4485, - 'm', 4463, - 'n', 4473, - 'o', 4550, - 'r', 4474, - 's', 4514, - 't', 4520, - 'u', 4532, - 'w', 4494, - '}', 2089, + '"', 3586, + '#', 5028, + '$', 2993, + '\'', 585, + '(', 3294, + '+', 3622, + ',', 1943, + '-', 3050, + '.', 4896, + '0', 4899, + 'I', 5005, + 'N', 4997, + '_', 4901, + '`', 695, + 'a', 4947, + 'b', 4968, + 'c', 4905, + 'd', 4916, + 'e', 4952, + 'f', 4906, + 'h', 4939, + 'i', 4898, + 'l', 4929, + 'm', 4907, + 'n', 4917, + 'o', 4994, + 'r', 4918, + 's', 4958, + 't', 4964, + 'u', 4976, + 'w', 4938, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(349); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4573); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4459); + lookahead == '^') ADVANCE(5017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4901); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4572); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5016); END_STATE(); - case 364: + case 423: ADVANCE_MAP( - '"', 2426, - '#', 4584, - '$', 1974, - '\'', 527, - '(', 2210, - '+', 2247, - ',', 2448, - '-', 2026, - '.', 2356, - '0', 4458, - 'I', 4561, - 'N', 4553, - '_', 4459, - '`', 594, - 'a', 4503, - 'b', 4524, - 'c', 4461, - 'd', 4472, - 'e', 4508, - 'f', 4462, - 'h', 4495, - 'i', 4457, - 'l', 4485, - 'm', 4463, - 'n', 4473, - 'o', 4550, - 'r', 4474, - 's', 4514, - 't', 4520, - 'u', 4532, - 'w', 4494, - '}', 2089, - '\t', 2449, - ' ', 2449, + '"', 3586, + '#', 5028, + '$', 2993, + '\'', 585, + '(', 3294, + '+', 3622, + ',', 3610, + '-', 3050, + '.', 4896, + '0', 4899, + 'I', 5005, + 'N', 4997, + '_', 4901, + '`', 695, + 'a', 4947, + 'b', 4968, + 'c', 4905, + 'd', 4916, + 'e', 4952, + 'f', 4906, + 'h', 4939, + 'i', 4898, + 'l', 4929, + 'm', 4907, + 'n', 4917, + 'o', 4994, + 'r', 4918, + 's', 4958, + 't', 4964, + 'u', 4976, + 'w', 4938, + '}', 3170, + '\t', 3611, + ' ', 3611, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4573); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4459); + lookahead == '^') ADVANCE(5017); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4901); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4572); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5016); END_STATE(); - case 365: + case 424: ADVANCE_MAP( - '"', 2426, - '#', 4589, - '$', 1971, - '\'', 527, - '(', 1964, - '+', 3470, - '-', 2030, - '.', 2359, - '0', 3495, - 'N', 3670, - '[', 1962, - '_', 3499, - '`', 594, - 'f', 3500, - 'n', 3590, - 't', 3596, - '{', 2088, + '"', 3586, + '#', 5031, + '$', 2991, + '\'', 585, + '(', 2985, + '+', 4249, + '-', 3054, + '.', 4245, + '0', 4275, + 'N', 4417, + '[', 2983, + '_', 4280, + '`', 695, + 'f', 4281, + 'n', 4346, + 't', 4356, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(325); + lookahead == ' ') SKIP(267); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3679); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4279); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3709); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4456); END_STATE(); - case 366: + case 425: ADVANCE_MAP( - '"', 2426, - '#', 4589, - '\'', 527, - '+', 3468, - '-', 3464, - '.', 2365, - 'I', 3681, - 'N', 3671, - '_', 3494, - '`', 594, - 'a', 3562, - 'b', 3603, - 'c', 3501, - 'd', 3520, - 'e', 3559, - 'f', 3502, - 'h', 3546, - 'i', 3492, - 'l', 3527, - 'm', 3503, - 'n', 3521, - 'o', 3656, - 'r', 3522, - 's', 3578, - 't', 3602, - 'u', 3624, - 'w', 3545, + '"', 3586, + '#', 5031, + '\'', 585, + '+', 4246, + '-', 4242, + '.', 4270, + 'I', 4428, + 'N', 4418, + '_', 4274, + '`', 695, + 'a', 4330, + 'b', 4361, + 'c', 4282, + 'd', 4296, + 'e', 4328, + 'f', 4283, + 'h', 4319, + 'i', 4267, + 'l', 4303, + 'm', 4284, + 'n', 4297, + 'o', 4405, + 'r', 4298, + 's', 4343, + 't', 4359, + 'u', 4380, + 'w', 4318, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(350); + lookahead == ' ') SKIP(412); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); + lookahead == '^') ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4274); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3689); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4436); END_STATE(); - case 367: + case 426: ADVANCE_MAP( - '"', 2426, - '#', 4587, - '$', 1976, - '\'', 527, - '(', 2210, - '+', 3981, - ',', 2448, - '-', 3980, - '.', 2360, - '0', 3994, - 'N', 4020, - '[', 1962, - ']', 1963, - '_', 3995, - '`', 594, - 'e', 3974, - 'f', 3999, - 'n', 4016, - 'o', 3975, - 't', 4009, - '{', 2088, - '\t', 2449, - ' ', 2449, - 'I', 4025, - 'i', 4025, + '"', 3586, + '#', 5030, + '$', 2994, + '\'', 585, + '(', 3294, + '+', 4672, + ',', 3610, + '-', 4671, + '.', 4673, + '0', 4686, + 'N', 4715, + '[', 2983, + ']', 2984, + '_', 4688, + '`', 695, + 'e', 4665, + 'f', 4694, + 'n', 4711, + 'o', 4666, + 't', 4704, + '{', 3169, + '\t', 3611, + ' ', 3611, + 'I', 4720, + 'i', 4720, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4691); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4743); END_STATE(); - case 368: + case 427: ADVANCE_MAP( - '"', 2426, - '#', 4587, - '$', 1976, - '\'', 527, - '(', 1964, - '+', 3981, - ',', 1966, - '-', 3980, - '.', 2360, - '0', 3994, - 'N', 4020, - '[', 1962, - ']', 1963, - '_', 3995, - '`', 594, - 'e', 3974, - 'f', 3999, - 'n', 4016, - 'o', 3975, - 't', 4009, - '{', 2088, + '"', 3586, + '#', 5030, + '$', 2994, + '\'', 585, + '(', 2985, + '+', 4672, + ',', 2987, + '-', 4671, + '.', 4673, + '0', 4686, + 'N', 4715, + '[', 2983, + ']', 2984, + '_', 4688, + '`', 695, + 'e', 4665, + 'f', 4694, + 'n', 4711, + 'o', 4666, + 't', 4704, + '{', 3169, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4025); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3998); + lookahead == 'i') ADVANCE(4720); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4691); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4743); END_STATE(); - case 369: - if (lookahead == '"') ADVANCE(2426); - if (lookahead == '#') ADVANCE(2429); - if (lookahead == '\\') ADVANCE(752); + case 428: + if (lookahead == '"') ADVANCE(3586); + if (lookahead == '#') ADVANCE(3589); + if (lookahead == '\\') ADVANCE(911); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2428); - if (lookahead != 0) ADVANCE(2429); + lookahead == ' ') ADVANCE(3588); + if (lookahead != 0) ADVANCE(3589); END_STATE(); - case 370: - if (lookahead == '"') ADVANCE(2427); - if (lookahead == '#') ADVANCE(4593); - if (lookahead == '$') ADVANCE(1973); - if (lookahead == '\'') ADVANCE(2637); - if (lookahead == '(') ADVANCE(1964); - if (lookahead == '`') ADVANCE(2638); + case 429: + if (lookahead == '"') ADVANCE(3587); + if (lookahead == '#') ADVANCE(5034); + if (lookahead == '$') ADVANCE(2992); + if (lookahead == '\'') ADVANCE(3836); + if (lookahead == '(') ADVANCE(2985); + if (lookahead == '`') ADVANCE(3837); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); + lookahead == ' ') SKIP(429); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2639); - END_STATE(); - case 371: - if (lookahead == '"') ADVANCE(2444); - if (lookahead == '#') ADVANCE(2436); - if (lookahead == '(') ADVANCE(1964); - if (lookahead == '\\') ADVANCE(746); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2435); - if (lookahead != 0) ADVANCE(2436); - END_STATE(); - case 372: - ADVANCE_MAP( - '#', 4580, - '$', 1969, - '(', 2210, - '.', 2275, - '<', 3304, - '=', 3334, - '_', 3183, - 'i', 3195, - '|', 1930, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(415); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3176); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3163); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); END_STATE(); - case 373: - ADVANCE_MAP( - '#', 4580, - '$', 1969, - '(', 2210, - '.', 2275, - '<', 3304, - '=', 3334, - '_', 3183, - '|', 1930, - ); + case 430: + if (lookahead == '"') ADVANCE(3606); + if (lookahead == '#') ADVANCE(3597); + if (lookahead == '(') ADVANCE(2985); + if (lookahead == '\\') ADVANCE(905); if (lookahead == '\t' || - lookahead == ' ') SKIP(416); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3176); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3163); + lookahead == ' ') ADVANCE(3596); + if (lookahead != 0) ADVANCE(3597); END_STATE(); - case 374: + case 431: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '(', 2210, - '.', 2275, - '=', 2814, - '_', 2820, - 'i', 2835, - '|', 1930, + '#', 5024, + '$', 2989, + '(', 3294, + '.', 3408, + '=', 4090, + '_', 4112, + 'i', 4134, + '|', 2939, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(415); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2808); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(2791); - END_STATE(); - case 375: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == '|') ADVANCE(1930); - if (lookahead == '\t' || - lookahead == ' ') SKIP(416); + lookahead == ' ') SKIP(464); if (lookahead == '+' || - lookahead == '-') ADVANCE(2808); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == '-') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 376: - ADVANCE_MAP( - '#', 4580, - '$', 1969, - '(', 2210, - '.', 2275, - '=', 3251, - '_', 3255, - 'i', 3267, - '|', 1930, - ); + case 432: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(3408); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(415); + lookahead == ' ') SKIP(465); if (lookahead == '+' || - lookahead == '-') ADVANCE(3245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + lookahead == '-') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 377: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '=') ADVANCE(3251); - if (lookahead == '_') ADVANCE(3255); - if (lookahead == '|') ADVANCE(1930); + case 433: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(3408); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(416); + lookahead == ' ') SKIP(467); if (lookahead == '+' || - lookahead == '-') ADVANCE(3245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + lookahead == '-') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 378: + case 434: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '(', 2210, - '.', 2275, - ']', 1963, - '_', 4314, - '}', 2089, - '\t', 2452, - ' ', 2452, - '+', 4311, - '-', 4311, - '<', 4356, - '=', 4356, + '#', 5024, + '$', 2989, + '(', 3294, + '.', 4585, + ']', 2984, + '_', 4583, + '\t', 3614, + ' ', 3614, + '+', 4566, + '-', 4566, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ',') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '=' < lookahead) && + lookahead != ';' && lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4310); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 379: + case 435: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '(', 2210, - '.', 2275, - ']', 1963, - '_', 3902, - '\t', 2452, - ' ', 2452, - '+', 3899, - '-', 3899, - '<', 3926, - '=', 3926, + '#', 5024, + '$', 2989, + '(', 3294, + '.', 4814, + '_', 4813, + '}', 3170, + '\t', 3614, + ' ', 3614, + '+', 4805, + '-', 4805, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < ';' || '=' < lookahead) && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3896); + lookahead == ',') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 380: + case 436: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '(', 2210, - '.', 2275, - ']', 1963, - '_', 3917, - '\t', 2452, - ' ', 2452, - '+', 3914, - '-', 3914, + '#', 5024, + '$', 2989, + '(', 3294, + '.', 3405, + ']', 2984, + '_', 4583, + '}', 3170, + '\t', 3614, + ' ', 3614, + '+', 4566, + '-', 4566, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ',') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -27674,854 +27597,1018 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3911); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 381: + case 437: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '(', 2210, - '.', 2275, - ']', 1963, - '_', 3800, - '\t', 2452, - ' ', 2452, - '+', 3794, - '-', 3794, + '#', 5024, + '$', 2989, + '(', 3294, + '.', 3406, + '_', 4813, + '}', 3170, + '\t', 3614, + ' ', 3614, + '+', 4805, + '-', 4805, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + lookahead == ',') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 382: + case 438: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '(', 2210, - '.', 2275, - '_', 4337, - '}', 2089, - '\t', 2452, - ' ', 2452, - '+', 4334, - '-', 4334, + '#', 5024, + '$', 2989, + '(', 3294, + '.', 4117, + '=', 4090, + '_', 4112, + 'i', 4134, + '|', 2939, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(4333); + if (lookahead == '\t' || + lookahead == ' ') SKIP(464); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 383: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(3183); - if (lookahead == '{') ADVANCE(2088); + case 439: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4117); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(418); + lookahead == ' ') SKIP(465); if (lookahead == '+' || - lookahead == '-') ADVANCE(3176); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3163); + lookahead == '-') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 384: + case 440: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4117); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == '{') ADVANCE(3169); + if (lookahead == '\t' || + lookahead == ' ') SKIP(467); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + END_STATE(); + case 441: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '(', 2210, - '.', 2275, - '_', 4109, - '}', 2089, - '\t', 2452, - ' ', 2452, - '+', 4105, - '-', 4105, + '#', 5024, + '$', 2989, + '(', 2985, + '-', 3029, + '=', 3764, + 'f', 700, + 'i', 796, + 'n', 819, + 't', 840, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(4104); - END_STATE(); - case 385: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == '{') ADVANCE(2088); if (lookahead == '\t' || - lookahead == ' ') SKIP(418); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2808); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(442); END_STATE(); - case 386: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '+') ADVANCE(560); - if (lookahead == '-') ADVANCE(2014); - if (lookahead == '{') ADVANCE(2088); + case 442: + ADVANCE_MAP( + '#', 5024, + '$', 2989, + '(', 2985, + '-', 3029, + 'f', 700, + 'i', 796, + 'n', 819, + 't', 840, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(386); + lookahead == ' ') SKIP(442); END_STATE(); - case 387: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '+') ADVANCE(560); - if (lookahead == '-') ADVANCE(2014); + case 443: + ADVANCE_MAP( + '#', 5024, + '$', 2989, + '-', 3030, + '.', 3392, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(453); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 388: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '+') ADVANCE(3176); - if (lookahead == '-') ADVANCE(2014); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(3185); + case 444: + ADVANCE_MAP( + '#', 5024, + '$', 2989, + '-', 3030, + '.', 3392, + 'E', 2370, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + 'd', 2439, + 'e', 2369, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); + lookahead == ' ') SKIP(457); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || - ('>' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3231); + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 389: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '+') ADVANCE(3176); - if (lookahead == '-') ADVANCE(2014); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(3183); - if (lookahead == '{') ADVANCE(2088); + case 445: + ADVANCE_MAP( + '#', 5024, + '$', 2989, + '-', 3030, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(386); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3163); + lookahead == ' ') SKIP(453); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 390: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '+') ADVANCE(3245); - if (lookahead == '-') ADVANCE(2014); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(3257); + case 446: + ADVANCE_MAP( + '#', 5024, + '$', 2989, + '-', 3030, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3232); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3303); + lookahead == ' ') SKIP(453); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 391: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '+') ADVANCE(3245); - if (lookahead == '-') ADVANCE(2014); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(3255); - if (lookahead == '{') ADVANCE(2088); + case 447: + ADVANCE_MAP( + '#', 5024, + '$', 2989, + '-', 3030, + '.', 4081, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4102, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + lookahead == ' ') SKIP(453); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 392: + case 448: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '-', 2011, - '.', 2279, - 'E', 3312, - 'G', 3358, - 'K', 3358, - 'M', 3358, - 'P', 3358, - 'T', 3358, - '_', 3368, - 'd', 3378, - 'e', 3311, - 'g', 3357, - 'h', 3423, - 'k', 3357, - 'm', 3359, - 'n', 3430, - 'p', 3357, - 's', 3388, - 't', 3357, - 'u', 3430, - 'w', 3402, - 0xb5, 3430, + '#', 5024, + '$', 2989, + '-', 3030, + '.', 4081, + 'E', 2416, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + 'd', 2439, + 'e', 2415, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(457); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); + lookahead == 'b') ADVANCE(3528); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 393: + case 449: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '-', 2011, - '.', 2279, - 'E', 3312, - 'G', 3358, - 'K', 3358, - 'M', 3358, - 'P', 3358, - 'T', 3358, - 'd', 3378, - 'e', 3311, - 'g', 3357, - 'h', 3423, - 'k', 3357, - 'm', 3359, - 'n', 3430, - 'p', 3357, - 's', 3388, - 't', 3357, - 'u', 3430, - 'w', 3402, - 0xb5, 3430, + '#', 5024, + '$', 2989, + '-', 3030, + '.', 4081, + 'E', 2370, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + '_', 2422, + 'd', 2439, + 'e', 2369, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(457); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); + lookahead == 'b') ADVANCE(3528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 394: + case 450: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '-', 2011, - '.', 2279, - 'E', 3358, - 'G', 3358, - 'K', 3358, - 'M', 3358, - 'P', 3358, - 'T', 3358, - 'd', 3378, - 'e', 3357, - 'g', 3357, - 'h', 3423, - 'k', 3357, - 'm', 3359, - 'n', 3430, - 'p', 3357, - 's', 3388, - 't', 3357, - 'u', 3430, - 'w', 3402, - 0xb5, 3430, + '#', 5024, + '$', 2989, + '-', 3030, + '.', 4081, + 'E', 2370, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + 'd', 2439, + 'e', 2369, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(457); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); + lookahead == 'b') ADVANCE(3528); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); - END_STATE(); - case 395: - ADVANCE_MAP( - '#', 4580, - '$', 1969, - '-', 2011, - '.', 2279, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '{', 2088, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(402); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3304); - END_STATE(); - case 396: - ADVANCE_MAP( - '#', 4580, - '$', 1969, - '-', 2011, - '.', 2279, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '{', 2088, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(402); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3304); - END_STATE(); - case 397: - ADVANCE_MAP( - '#', 4580, - '$', 1969, - '-', 2011, - '.', 2279, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3353, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '{', 2088, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(402); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 398: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2011); - if (lookahead == '=') ADVANCE(2565); - if (lookahead == '{') ADVANCE(2088); + case 451: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '-') ADVANCE(3030); + if (lookahead == '=') ADVANCE(3764); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(402); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1892); + lookahead == ' ') SKIP(453); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); END_STATE(); - case 399: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2011); - if (lookahead == '=') ADVANCE(2565); + case 452: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '-') ADVANCE(3030); + if (lookahead == '=') ADVANCE(3764); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1860); + lookahead == ' ') SKIP(457); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2867); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(1713); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2720); END_STATE(); - case 400: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2011); - if (lookahead == '_') ADVANCE(2822); + case 453: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '-') ADVANCE(3030); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(2791); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(2871); + lookahead == ' ') SKIP(453); END_STATE(); - case 401: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2011); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == '{') ADVANCE(2088); + case 454: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '-') ADVANCE(3030); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(402); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 402: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2011); - if (lookahead == '{') ADVANCE(2088); - if (lookahead == '\t' || - lookahead == ' ') SKIP(402); - END_STATE(); - case 403: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2011); - if (lookahead == '{') ADVANCE(2088); - if (lookahead == '\t' || - lookahead == ' ') SKIP(402); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3304); - END_STATE(); - case 404: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2011); - if (lookahead == '{') ADVANCE(2088); + case 455: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '-') ADVANCE(3030); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(404); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(455); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); - case 405: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2011); + case 456: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '-') ADVANCE(3030); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(457); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 406: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2011); + case 457: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '-') ADVANCE(3030); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(457); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); - case 407: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2016); - if (lookahead == '=') ADVANCE(2565); - if (lookahead == '{') ADVANCE(2088); + case 458: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '-') ADVANCE(3041); + if (lookahead == '=') ADVANCE(3764); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(402); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + lookahead == ' ') SKIP(453); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); - case 408: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '-') ADVANCE(2016); - if (lookahead == '=') ADVANCE(2565); + case 459: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '-') ADVANCE(3041); + if (lookahead == '=') ADVANCE(3764); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(457); if (lookahead == '!' || lookahead == '?' || - lookahead == '@') ADVANCE(2636); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2619); + lookahead == '@') ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3818); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(1713); - END_STATE(); - case 409: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(3185); - if (lookahead == '\t' || - lookahead == ' ') SKIP(421); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3176); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('>' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3231); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2720); END_STATE(); - case 410: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(3257); + case 460: + ADVANCE_MAP( + '#', 5024, + '$', 2989, + '.', 3392, + 'E', 2370, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + 'd', 2439, + 'e', 2369, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); + lookahead == ' ') SKIP(471); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); if (lookahead == '!' || lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || + ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3232); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3303); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 411: + case 461: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '.', 2279, - 'E', 3312, - 'G', 3358, - 'K', 3358, - 'M', 3358, - 'P', 3358, - 'T', 3358, - '_', 3368, - 'd', 3378, - 'e', 3311, - 'g', 3357, - 'h', 3423, - 'k', 3357, - 'm', 3359, - 'n', 3430, - 'p', 3357, - 's', 3388, - 't', 3357, - 'u', 3430, - 'w', 3402, - 0xb5, 3430, + '#', 5024, + '$', 2989, + '.', 4081, + 'E', 2416, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + 'd', 2439, + 'e', 2415, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); + lookahead == ' ') SKIP(471); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); + lookahead == 'b') ADVANCE(3528); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 412: + case 462: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '.', 2279, - 'E', 3312, - 'G', 3358, - 'K', 3358, - 'M', 3358, - 'P', 3358, - 'T', 3358, - 'd', 3378, - 'e', 3311, - 'g', 3357, - 'h', 3423, - 'k', 3357, - 'm', 3359, - 'n', 3430, - 'p', 3357, - 's', 3388, - 't', 3357, - 'u', 3430, - 'w', 3402, - 0xb5, 3430, + '#', 5024, + '$', 2989, + '.', 4081, + 'E', 2370, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + '_', 2422, + 'd', 2439, + 'e', 2369, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); + lookahead == ' ') SKIP(471); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); + lookahead == 'b') ADVANCE(3528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 413: + case 463: ADVANCE_MAP( - '#', 4580, - '$', 1969, - '.', 2279, - 'E', 3358, - 'G', 3358, - 'K', 3358, - 'M', 3358, - 'P', 3358, - 'T', 3358, - 'd', 3378, - 'e', 3357, - 'g', 3357, - 'h', 3423, - 'k', 3357, - 'm', 3359, - 'n', 3430, - 'p', 3357, - 's', 3388, - 't', 3357, - 'u', 3430, - 'w', 3402, - 0xb5, 3430, + '#', 5024, + '$', 2989, + '.', 4081, + 'E', 2370, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + 'd', 2439, + 'e', 2369, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); + lookahead == ' ') SKIP(471); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); + lookahead == 'b') ADVANCE(3528); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 414: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '=') ADVANCE(2565); + case 464: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '.') ADVANCE(692); + if (lookahead == '=') ADVANCE(673); + if (lookahead == 'i') ADVANCE(746); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if (lookahead == '!' || - lookahead == '-' || - lookahead == '?' || - lookahead == '@') ADVANCE(2636); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2619); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '.' < lookahead) && - (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(1713); + lookahead == ' ') SKIP(464); + if (lookahead == '+' || + lookahead == '-') ADVANCE(642); END_STATE(); - case 415: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '=') ADVANCE(572); - if (lookahead == 'i') ADVANCE(636); - if (lookahead == '|') ADVANCE(1930); + case 465: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '.') ADVANCE(692); + if (lookahead == '=') ADVANCE(673); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(415); + lookahead == ' ') SKIP(465); if (lookahead == '+' || - lookahead == '-') ADVANCE(560); + lookahead == '-') ADVANCE(642); END_STATE(); - case 416: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '=') ADVANCE(572); - if (lookahead == '|') ADVANCE(1930); + case 466: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '.') ADVANCE(692); + if (lookahead == ']') ADVANCE(2984); if (lookahead == '\t' || - lookahead == ' ') SKIP(416); + lookahead == ' ') SKIP(466); if (lookahead == '+' || - lookahead == '-') ADVANCE(560); + lookahead == '-') ADVANCE(642); END_STATE(); - case 417: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '_') ADVANCE(2822); + case 467: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '.') ADVANCE(692); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(2791); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(2871); + lookahead == ' ') SKIP(467); + if (lookahead == '+' || + lookahead == '-') ADVANCE(642); END_STATE(); - case 418: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '{') ADVANCE(2088); + case 468: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '.') ADVANCE(692); if (lookahead == '\t' || - lookahead == ' ') SKIP(418); + lookahead == ' ') SKIP(468); if (lookahead == '+' || - lookahead == '-') ADVANCE(560); + lookahead == '-') ADVANCE(642); END_STATE(); - case 419: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); + case 469: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '=') ADVANCE(3764); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); + lookahead == ' ') SKIP(471); + if (lookahead == '!' || + lookahead == '-' || + lookahead == '?' || + lookahead == '@') ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3818); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '.' < lookahead) && + (lookahead < '0' || '[' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(2720); + END_STATE(); + case 470: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '\t' || + lookahead == ' ') SKIP(471); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 420: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); + case 471: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(471); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); - case 421: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '$') ADVANCE(1969); - if (lookahead == '\t' || - lookahead == ' ') SKIP(421); - if (lookahead == '+' || - lookahead == '-') ADVANCE(560); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + case 472: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '-', 3030, + '.', 3392, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 260, + ' ', 260, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 422: + case 473: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2275, - ']', 1963, - '_', 4109, - '}', 2089, - '\t', 2452, - ' ', 2452, - 'E', 4112, - 'e', 4112, + '#', 5024, + '(', 3294, + '-', 3030, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 260, + ' ', 260, + 'B', 3524, + 'b', 3524, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 423: + case 474: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '-', 3030, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 260, + ' ', 260, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 475: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '-', 3030, + '.', 4081, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4102, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 260, + ' ', 260, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 476: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 3392, + '=', 4090, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 261, + ' ', 261, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 477: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 3392, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 262, + ' ', 262, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 478: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2275, - ']', 1963, - '_', 3800, - '\t', 2452, - ' ', 2452, - 'E', 3803, - 'e', 3803, + '#', 5024, + '(', 3294, + '.', 3392, + 'E', 4578, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'P', 4581, + 'T', 4581, + ']', 2984, + 'd', 4597, + 'e', 4577, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4618, + 'p', 4580, + 's', 4602, + 't', 4580, + 'u', 4618, + 'w', 4605, + '}', 3170, + 0xb5, 4618, + '\t', 3614, + ' ', 3614, + 'B', 3524, + 'b', 3524, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ',') ADVANCE(3610); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && - lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 424: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == ']') ADVANCE(1963); - if (lookahead == '_') ADVANCE(3800); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); + case 479: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 3392, + 'E', 4807, + 'G', 4809, + 'K', 4809, + 'M', 4809, + 'P', 4809, + 'T', 4809, + 'd', 4819, + 'e', 4806, + 'g', 4808, + 'h', 4825, + 'k', 4808, + 'm', 4810, + 'n', 4826, + 'p', 4808, + 's', 4822, + 't', 4808, + 'u', 4826, + 'w', 4823, + '}', 3170, + 0xb5, 4826, + '\t', 3614, + ' ', 3614, + 'B', 3524, + 'b', 3524, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 425: + case 480: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2275, - ']', 1963, - '\t', 2452, - ' ', 2452, - 'E', 3803, - 'e', 3803, + '#', 5024, + '(', 3294, + '.', 3392, + ']', 2984, + '}', 3170, + '\t', 3614, + ' ', 3614, + 'E', 4592, + 'e', 4592, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); + lookahead == ',') ADVANCE(3610); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -28529,17 +28616,236 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 426: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == ']') ADVANCE(1963); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); + case 481: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 3392, + '}', 3170, + '\t', 3614, + ' ', 3614, + 'E', 4817, + 'e', 4817, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 482: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 4081, + '=', 4090, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 261, + ' ', 261, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 483: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 4081, + '=', 4090, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 261, + ' ', 261, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 484: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 4081, + '=', 4090, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4102, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, + '\t', 261, + ' ', 261, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 485: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 262, + ' ', 262, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 486: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 262, + ' ', 262, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 487: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 4081, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4102, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '{', 3169, + 0xb5, 4164, + '\t', 262, + ' ', 262, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 488: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 3378, + ']', 2984, + '}', 3170, + '\t', 3614, + ' ', 3614, + 'E', 4592, + 'e', 4592, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); + lookahead == ',') ADVANCE(3610); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -28547,185 +28853,216 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); - END_STATE(); - case 427: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(4109); - if (lookahead == '}') ADVANCE(2089); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4104); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 428: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == '{') ADVANCE(2088); + case 489: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(3378); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(507); + lookahead == ' ') SKIP(563); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 429: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '{') ADVANCE(2088); - if (lookahead == '\t' || - lookahead == ' ') SKIP(507); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + case 490: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 3378, + '}', 3170, + '\t', 3614, + ' ', 3614, + 'E', 4817, + 'e', 4817, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 430: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '{') ADVANCE(2088); - if (lookahead == '\t' || - lookahead == ' ') SKIP(507); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + case 491: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 4804, + 'E', 4807, + 'G', 4809, + 'K', 4809, + 'M', 4809, + 'P', 4809, + 'T', 4809, + '_', 4813, + 'd', 4819, + 'e', 4806, + 'g', 4808, + 'h', 4825, + 'k', 4808, + 'm', 4810, + 'n', 4826, + 'p', 4808, + 's', 4822, + 't', 4808, + 'u', 4826, + 'w', 4823, + '}', 3170, + 0xb5, 4826, + '\t', 3614, + ' ', 3614, + 'B', 3524, + 'b', 3524, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 431: + case 492: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2275, - '}', 2089, - '\t', 2452, - ' ', 2452, - 'E', 4112, - 'e', 4112, + '#', 5024, + '(', 3294, + '.', 4804, + 'E', 4807, + 'G', 4809, + 'K', 4809, + 'M', 4809, + 'P', 4809, + 'T', 4809, + 'd', 4819, + 'e', 4806, + 'g', 4808, + 'h', 4825, + 'k', 4808, + 'm', 4810, + 'n', 4826, + 'p', 4808, + 's', 4822, + 't', 4808, + 'u', 4826, + 'w', 4823, + '}', 3170, + 0xb5, 4826, + '\t', 3614, + ' ', 3614, + 'B', 3524, + 'b', 3524, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4104); + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 432: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '}') ADVANCE(2089); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); + case 493: + ADVANCE_MAP( + '#', 5024, + '(', 3294, + '.', 4804, + 'E', 4809, + 'G', 4809, + 'K', 4809, + 'M', 4809, + 'P', 4809, + 'T', 4809, + 'd', 4819, + 'e', 4808, + 'g', 4808, + 'h', 4825, + 'k', 4808, + 'm', 4810, + 'n', 4826, + 'p', 4808, + 's', 4822, + 't', 4808, + 'u', 4826, + 'w', 4823, + '}', 3170, + 0xb5, 4826, + '\t', 3614, + ' ', 3614, + 'B', 3524, + 'b', 3524, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4104); + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 433: + case 494: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2279, - 'E', 4365, - 'G', 4367, - 'K', 4367, - 'M', 4367, - 'P', 4367, - 'T', 4367, - '_', 4372, - 'd', 4376, - 'e', 4364, - 'g', 4366, - 'h', 4396, - 'k', 4366, - 'm', 4368, - 'n', 4398, - 'p', 4366, - 's', 4386, - 't', 4366, - 'u', 4398, - 'w', 4391, - '}', 2089, - 0xb5, 4398, - '\t', 2452, - ' ', 2452, - 'B', 2379, - 'b', 2379, + '#', 5024, + '(', 3294, + '.', 4804, + '_', 4813, + '}', 3170, + '\t', 3614, + ' ', 3614, + 'E', 4817, + 'e', 4817, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4356); + lookahead == ',') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 434: + case 495: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2279, - 'E', 4365, - 'G', 4367, - 'K', 4367, - 'M', 4367, - 'P', 4367, - 'T', 4367, - 'd', 4376, - 'e', 4364, - 'g', 4366, - 'h', 4396, - 'k', 4366, - 'm', 4368, - 'n', 4398, - 'p', 4366, - 's', 4386, - 't', 4366, - 'u', 4398, - 'w', 4391, - '}', 2089, - 0xb5, 4398, - '\t', 2452, - ' ', 2452, - 'B', 2379, - 'b', 2379, + '#', 5024, + '(', 3294, + '.', 4804, + '}', 3170, + '\t', 3614, + ' ', 3614, + 'E', 4817, + 'e', 4817, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4356); + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 435: + case 496: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4804); + if (lookahead == '}') ADVANCE(3170); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3614); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 497: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2279, - 'E', 3937, - 'G', 3939, - 'K', 3939, - 'M', 3939, - 'P', 3939, - 'T', 3939, - ']', 1963, - '_', 3950, - 'd', 3958, - 'e', 3936, - 'g', 3938, - 'h', 3964, - 'k', 3938, - 'm', 3940, - 'n', 3967, - 'p', 3938, - 's', 3961, - 't', 3938, - 'u', 3967, - 'w', 3962, - '}', 2089, - 0xb5, 3967, - '\t', 2452, - ' ', 2452, - 'B', 2379, - 'b', 2379, + '#', 5024, + '(', 3294, + '.', 4561, + 'E', 4578, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'P', 4581, + 'T', 4581, + ']', 2984, + '_', 4583, + 'd', 4597, + 'e', 4577, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4618, + 'p', 4580, + 's', 4602, + 't', 4580, + 'u', 4618, + 'w', 4605, + '}', 3170, + 0xb5, 4618, + '\t', 3614, + ' ', 3614, + 'B', 3524, + 'b', 3524, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ',') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -28734,40 +29071,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 436: + case 498: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2279, - 'E', 3937, - 'G', 3939, - 'K', 3939, - 'M', 3939, - 'P', 3939, - 'T', 3939, - ']', 1963, - 'd', 3958, - 'e', 3936, - 'g', 3938, - 'h', 3964, - 'k', 3938, - 'm', 3940, - 'n', 3967, - 'p', 3938, - 's', 3961, - 't', 3938, - 'u', 3967, - 'w', 3962, - 0xb5, 3967, - '\t', 2452, - ' ', 2452, - 'B', 2379, - 'b', 2379, + '#', 5024, + '(', 3294, + '.', 4561, + 'E', 4578, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'P', 4581, + 'T', 4581, + ']', 2984, + 'd', 4597, + 'e', 4577, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4618, + 'p', 4580, + 's', 4602, + 't', 4580, + 'u', 4618, + 'w', 4605, + 0xb5, 4618, + '\t', 3614, + ' ', 3614, + 'B', 3524, + 'b', 3524, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); + lookahead == ',') ADVANCE(3610); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -28775,142 +29112,151 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 437: + case 499: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2279, - 'E', 4367, - 'G', 4367, - 'K', 4367, - 'M', 4367, - 'P', 4367, - 'T', 4367, - 'd', 4376, - 'e', 4366, - 'g', 4366, - 'h', 4396, - 'k', 4366, - 'm', 4368, - 'n', 4398, - 'p', 4366, - 's', 4386, - 't', 4366, - 'u', 4398, - 'w', 4391, - '}', 2089, - 0xb5, 4398, - '\t', 2452, - ' ', 2452, - 'B', 2379, - 'b', 2379, + '#', 5024, + '(', 3294, + '.', 4561, + 'E', 4581, + 'G', 4581, + 'K', 4581, + 'M', 4581, + 'P', 4581, + 'T', 4581, + ']', 2984, + 'd', 4597, + 'e', 4580, + 'g', 4580, + 'h', 4612, + 'k', 4580, + 'm', 4582, + 'n', 4618, + 'p', 4580, + 's', 4602, + 't', 4580, + 'u', 4618, + 'w', 4605, + 0xb5, 4618, + '\t', 3614, + ' ', 3614, + 'B', 3524, + 'b', 3524, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4356); + lookahead == ',') ADVANCE(3610); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 438: + case 500: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2279, - 'E', 3939, - 'G', 3939, - 'K', 3939, - 'M', 3939, - 'P', 3939, - 'T', 3939, - ']', 1963, - 'd', 3958, - 'e', 3938, - 'g', 3938, - 'h', 3964, - 'k', 3938, - 'm', 3940, - 'n', 3967, - 'p', 3938, - 's', 3961, - 't', 3938, - 'u', 3967, - 'w', 3962, - 0xb5, 3967, - '\t', 2452, - ' ', 2452, - 'B', 2379, - 'b', 2379, + '#', 5024, + '(', 3294, + '.', 4561, + ']', 2984, + '_', 4583, + '}', 3170, + '\t', 3614, + ' ', 3614, + 'E', 4592, + 'e', 4592, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); + lookahead == ',') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && + lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 439: + case 501: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2279, - ']', 1963, - '_', 3800, - '}', 2089, - '\t', 2452, - ' ', 2452, - 'E', 3803, - 'e', 3803, + '#', 5024, + '(', 3294, + '.', 4561, + ']', 2984, + '}', 3170, + '\t', 3614, + ' ', 3614, + 'E', 4592, + 'e', 4592, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ',') ADVANCE(3610); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && - lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 440: + case 502: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4561); + if (lookahead == ']') ADVANCE(2984); + if (lookahead == '}') ADVANCE(3170); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3614); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3610); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + END_STATE(); + case 503: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2279, - ']', 1963, - '}', 2089, - '\t', 2452, - ' ', 2452, - 'E', 3803, - 'e', 3803, + '#', 5024, + '(', 3294, + ']', 2984, + '_', 4583, + '\t', 3614, + ' ', 3614, + 'E', 4592, + 'e', 4592, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); + lookahead == ',') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && + lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 441: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == ']') ADVANCE(1963); - if (lookahead == '}') ADVANCE(2089); + case 504: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == ']') ADVANCE(2984); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); + lookahead == ' ') ADVANCE(3614); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4592); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); + lookahead == ',') ADVANCE(3610); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -28918,1292 +29264,1157 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3789); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 442: - ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2279, - '_', 4109, - '}', 2089, - '\t', 2452, - ' ', 2452, - 'E', 4112, - 'e', 4112, - ); + case 505: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == ']') ADVANCE(2984); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3614); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4104); + lookahead == ',') ADVANCE(3610); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); END_STATE(); - case 443: + case 506: ADVANCE_MAP( - '#', 4580, - '(', 2210, - '.', 2279, - '}', 2089, - '\t', 2452, - ' ', 2452, - 'E', 4112, - 'e', 4112, + '#', 5024, + '(', 3294, + '_', 4813, + '}', 3170, + '\t', 3614, + ' ', 3614, + 'E', 4817, + 'e', 4817, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4104); + lookahead == ',') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 444: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '}') ADVANCE(2089); + case 507: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4104); + lookahead == ' ') SKIP(563); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 445: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '+') ADVANCE(560); - if (lookahead == '-') ADVANCE(2014); + case 508: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(445); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(563); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 446: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '+') ADVANCE(3176); - if (lookahead == '-') ADVANCE(2014); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(3185); + case 509: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '}') ADVANCE(3170); if (lookahead == '\t' || - lookahead == ' ') SKIP(445); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (lookahead == '!' || - lookahead == '$' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('>' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3231); + lookahead == ' ') ADVANCE(3614); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4817); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 447: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == ',') ADVANCE(1966); - if (lookahead == ']') ADVANCE(1963); + case 510: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '}') ADVANCE(3170); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3614); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 511: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == ',') ADVANCE(2987); + if (lookahead == ']') ADVANCE(2984); if (lookahead == '\t' || - lookahead == ' ') SKIP(447); + lookahead == ' ') SKIP(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2407); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3547); END_STATE(); - case 448: + case 512: ADVANCE_MAP( - '#', 4580, - ',', 2448, - '.', 2275, - ';', 2456, - '?', 2157, - ']', 1963, - '\t', 2450, - ' ', 2450, + '#', 5024, + ',', 3610, + '.', 3378, + ';', 3627, + '?', 3263, + ']', 2984, + '\t', 3612, + ' ', 3612, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2451); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3613); END_STATE(); - case 449: + case 513: ADVANCE_MAP( - '#', 4580, - '-', 2011, - '.', 2279, - 'E', 3312, - 'G', 3358, - 'K', 3358, - 'M', 3358, - 'P', 3358, - 'T', 3358, - '_', 3368, - 'd', 3378, - 'e', 3311, - 'g', 3357, - 'h', 3423, - 'k', 3357, - 'm', 3359, - 'n', 3430, - 'p', 3357, - 's', 3388, - 't', 3357, - 'u', 3430, - 'w', 3402, - 0xb5, 3430, + '#', 5024, + '-', 3030, + '.', 3392, + 'E', 2370, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + 'd', 2439, + 'e', 2369, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(454); + lookahead == ' ') SKIP(519); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); + lookahead == 'b') ADVANCE(3528); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 450: + case 514: ADVANCE_MAP( - '#', 4580, - '-', 2011, - '.', 2279, - 'E', 3312, - 'G', 3358, - 'K', 3358, - 'M', 3358, - 'P', 3358, - 'T', 3358, - 'd', 3378, - 'e', 3311, - 'g', 3357, - 'h', 3423, - 'k', 3357, - 'm', 3359, - 'n', 3430, - 'p', 3357, - 's', 3388, - 't', 3357, - 'u', 3430, - 'w', 3402, - 0xb5, 3430, + '#', 5024, + '-', 3030, + '.', 4081, + 'E', 2416, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + 'd', 2439, + 'e', 2415, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(454); + lookahead == ' ') SKIP(519); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); + lookahead == 'b') ADVANCE(3528); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 451: + case 515: ADVANCE_MAP( - '#', 4580, - '-', 2011, - '.', 2279, - 'E', 3358, - 'G', 3358, - 'K', 3358, - 'M', 3358, - 'P', 3358, - 'T', 3358, - 'd', 3378, - 'e', 3357, - 'g', 3357, - 'h', 3423, - 'k', 3357, - 'm', 3359, - 'n', 3430, - 'p', 3357, - 's', 3388, - 't', 3357, - 'u', 3430, - 'w', 3402, - 0xb5, 3430, + '#', 5024, + '-', 3030, + '.', 4081, + 'E', 2370, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + '_', 2422, + 'd', 2439, + 'e', 2369, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(454); + lookahead == ' ') SKIP(519); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); + lookahead == 'b') ADVANCE(3528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 452: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '-') ADVANCE(2011); - if (lookahead == '_') ADVANCE(2822); + case 516: + ADVANCE_MAP( + '#', 5024, + '-', 3030, + '.', 4081, + 'E', 2370, + 'G', 2416, + 'K', 2416, + 'M', 2416, + 'P', 2416, + 'T', 2416, + 'd', 2439, + 'e', 2369, + 'g', 2415, + 'h', 2595, + 'k', 2415, + 'm', 2417, + 'n', 2635, + 'p', 2415, + 's', 2468, + 't', 2415, + 'u', 2635, + 'w', 2529, + 0xb5, 2635, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(454); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); + lookahead == ' ') SKIP(519); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(2791); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(2871); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 453: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '-') ADVANCE(2011); + case 517: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '-') ADVANCE(3030); + if (lookahead == '{') ADVANCE(3169); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(260); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 518: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '-') ADVANCE(3030); if (lookahead == '\t' || - lookahead == ' ') SKIP(454); + lookahead == ' ') SKIP(519); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3304); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3443); + lookahead == '^') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 454: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '-') ADVANCE(2011); + case 519: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '-') ADVANCE(3030); if (lookahead == '\t' || - lookahead == ' ') SKIP(454); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(519); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); - case 455: + case 520: ADVANCE_MAP( - '#', 4580, - '.', 2275, - ':', 2453, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'd', 1547, - 'e', 1537, - 'g', 1539, - 'h', 1588, - 'k', 1539, - 'm', 1542, - 'n', 1596, - 'p', 1539, - 's', 1557, - 't', 1539, - 'u', 1596, - 'w', 1569, - 0xb5, 1596, - '\t', 492, - ' ', 492, - 'B', 2379, - 'b', 2379, + '#', 5024, + '.', 3392, + '=', 4090, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'i', 4134, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); - END_STATE(); - case 456: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == 'i') ADVANCE(2835); - if (lookahead == '|') ADVANCE(1930); - if (lookahead == '\t' || - lookahead == ' ') SKIP(496); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); - END_STATE(); - case 457: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == 'i') ADVANCE(2835); - if (lookahead == '|') ADVANCE(1930); if (lookahead == '\t' || - lookahead == ' ') SKIP(496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); - END_STATE(); - case 458: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == '|') ADVANCE(1930); - if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); - END_STATE(); - case 459: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == '|') ADVANCE(1930); - if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(551); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 460: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == 'i') ADVANCE(2835); - if (lookahead == '|') ADVANCE(1930); + case 521: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(3392); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == 'i') ADVANCE(4134); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(496); + lookahead == ' ') SKIP(551); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); - END_STATE(); - case 461: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == 'i') ADVANCE(2835); - if (lookahead == '|') ADVANCE(1930); - if (lookahead == '\t' || - lookahead == ' ') SKIP(496); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 462: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '|') ADVANCE(1930); + case 522: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(3392); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); + lookahead == ' ') SKIP(552); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); - END_STATE(); - case 463: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '|') ADVANCE(1930); - if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 464: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '?') ADVANCE(2157); - if (lookahead == ']') ADVANCE(1963); - if (lookahead == '}') ADVANCE(2089); + case 523: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(3392); + if (lookahead == '?') ADVANCE(3263); + if (lookahead == ']') ADVANCE(2984); + if (lookahead == '}') ADVANCE(3170); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); + lookahead == ' ') ADVANCE(3614); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - END_STATE(); - case 465: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(3183); - if (lookahead == 'i') ADVANCE(3203); - if (lookahead == '\t' || - lookahead == ' ') SKIP(506); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3176); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3163); - END_STATE(); - case 466: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(3255); - if (lookahead == 'i') ADVANCE(3275); - if (lookahead == '\t' || - lookahead == ' ') SKIP(506); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); - END_STATE(); - case 467: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == '\t' || - lookahead == ' ') SKIP(510); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2808); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); - END_STATE(); - case 468: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '\t' || - lookahead == ' ') SKIP(511); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4104); - END_STATE(); - case 469: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2275); - if (lookahead == '\t' || - lookahead == ' ') SKIP(511); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3789); + lookahead == ',') ADVANCE(3610); END_STATE(); - case 470: - ADVANCE_MAP( - '#', 4580, - '.', 2279, - '=', 3334, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'i', 3394, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '|', 1930, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(496); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); - END_STATE(); - case 471: - ADVANCE_MAP( - '#', 4580, - '.', 2279, - '=', 3334, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '|', 1930, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); - END_STATE(); - case 472: + case 524: ADVANCE_MAP( - '#', 4580, - '.', 2279, - '=', 3334, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'i', 3394, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '|', 1930, - 0xb5, 3427, + '#', 5024, + '.', 3392, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'i', 4140, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(496); + lookahead == ' ') SKIP(561); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 473: + case 525: ADVANCE_MAP( - '#', 4580, - '.', 2279, - '=', 3334, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '|', 1930, - 0xb5, 3427, + '#', 5024, + '.', 4081, + '=', 4090, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'i', 4134, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); + lookahead == ' ') SKIP(551); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 474: + case 526: ADVANCE_MAP( - '#', 4580, - '.', 2279, - '=', 3334, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3353, - 'g', 3353, - 'h', 3421, - 'i', 3394, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '|', 1930, - 0xb5, 3427, + '#', 5024, + '.', 4081, + '=', 4090, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'i', 4134, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(496); + lookahead == ' ') SKIP(551); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 475: + case 527: ADVANCE_MAP( - '#', 4580, - '.', 2279, - '=', 3334, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3353, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '|', 1930, - 0xb5, 3427, + '#', 5024, + '.', 4081, + '=', 4090, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4102, + 'g', 4102, + 'h', 4151, + 'i', 4134, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); + lookahead == ' ') SKIP(551); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 476: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == 'i') ADVANCE(2835); - if (lookahead == '|') ADVANCE(1930); + case 528: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(4081); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == 'i') ADVANCE(4134); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(496); + lookahead == ' ') SKIP(551); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == 'e') ADVANCE(4110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 477: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == '|') ADVANCE(1930); + case 529: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(4081); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); + lookahead == ' ') SKIP(552); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == 'e') ADVANCE(4110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 478: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == 'i') ADVANCE(2835); - if (lookahead == '|') ADVANCE(1930); + case 530: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(4081); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == 'i') ADVANCE(4134); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(496); + lookahead == ' ') SKIP(551); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 479: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == 'i') ADVANCE(2835); - if (lookahead == '|') ADVANCE(1930); + case 531: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(4081); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == 'i') ADVANCE(4134); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(496); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(551); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 480: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '|') ADVANCE(1930); + case 532: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(4081); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); + lookahead == ' ') SKIP(552); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2823); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); - END_STATE(); - case 481: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '=') ADVANCE(2814); - if (lookahead == '|') ADVANCE(1930); - if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 482: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '.') ADVANCE(2279); - if (lookahead == '?') ADVANCE(2157); - if (lookahead == ']') ADVANCE(1963); - if (lookahead == '}') ADVANCE(2089); + case 533: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(4081); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); + lookahead == ' ') SKIP(552); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 483: + case 534: ADVANCE_MAP( - '#', 4580, - '.', 2279, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - 0xb5, 3427, + '#', 5024, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'i', 4140, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); + lookahead == ' ') SKIP(561); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 484: + case 535: ADVANCE_MAP( - '#', 4580, - '.', 2279, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '{', 2088, - 0xb5, 3427, + '#', 5024, + '.', 4081, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'i', 4140, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(507); + lookahead == ' ') SKIP(561); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 485: + case 536: ADVANCE_MAP( - '#', 4580, - '.', 2279, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - 0xb5, 3427, + '#', 5024, + '.', 4081, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4102, + 'g', 4102, + 'h', 4151, + 'i', 4140, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); + lookahead == ' ') SKIP(561); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 486: + case 537: ADVANCE_MAP( - '#', 4580, - '.', 2279, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '{', 2088, - 0xb5, 3427, + '#', 5024, + '.', 3378, + ':', 3615, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2325, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + 0xb5, 2355, + '\t', 547, + ' ', 547, + 'B', 3524, + 'b', 3524, ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + END_STATE(); + case 538: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(3378); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == 'i') ADVANCE(4134); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(507); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == ' ') SKIP(551); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 487: - ADVANCE_MAP( - '#', 4580, - '.', 2279, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3353, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - 0xb5, 3427, - ); + case 539: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(3378); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == ' ') SKIP(552); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 488: - ADVANCE_MAP( - '#', 4580, - '.', 2279, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3353, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '{', 2088, - 0xb5, 3427, - ); + case 540: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(3378); + if (lookahead == '?') ADVANCE(3263); + if (lookahead == ']') ADVANCE(2984); + if (lookahead == '}') ADVANCE(3170); if (lookahead == '\t' || - lookahead == ' ') SKIP(507); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == ' ') ADVANCE(3614); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3610); END_STATE(); - case 489: + case 541: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(3408); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == '\t' || + lookahead == ' ') SKIP(542); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 542: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(692); + if (lookahead == '\t' || + lookahead == ' ') SKIP(542); + if (lookahead == '+' || + lookahead == '-') ADVANCE(642); + END_STATE(); + case 543: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(4117); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == '\t' || + lookahead == ' ') SKIP(542); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 544: ADVANCE_MAP( - '#', 4580, - ':', 2453, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - '_', 1546, - 'd', 1547, - 'e', 1537, - 'g', 1539, - 'h', 1588, - 'k', 1539, - 'm', 1542, - 'n', 1596, - 'p', 1539, - 's', 1557, - 't', 1539, - 'u', 1596, - 'w', 1569, - 0xb5, 1596, - '\t', 492, - ' ', 492, - 'B', 2379, - 'b', 2379, + '#', 5024, + ':', 3615, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + '_', 2333, + 'd', 2334, + 'e', 2325, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + 0xb5, 2355, + '\t', 547, + ' ', 547, + 'B', 3524, + 'b', 3524, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 490: + case 545: ADVANCE_MAP( - '#', 4580, - ':', 2453, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'd', 1547, - 'e', 1537, - 'g', 1539, - 'h', 1588, - 'k', 1539, - 'm', 1542, - 'n', 1596, - 'p', 1539, - 's', 1557, - 't', 1539, - 'u', 1596, - 'w', 1569, - 0xb5, 1596, - '\t', 492, - ' ', 492, - 'B', 2379, - 'b', 2379, + '#', 5024, + ':', 3615, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2325, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + 0xb5, 2355, + '\t', 547, + ' ', 547, + 'B', 3524, + 'b', 3524, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 491: + case 546: ADVANCE_MAP( - '#', 4580, - ':', 2453, - 'E', 1540, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'd', 1547, - 'e', 1539, - 'g', 1539, - 'h', 1588, - 'k', 1539, - 'm', 1542, - 'n', 1596, - 'p', 1539, - 's', 1557, - 't', 1539, - 'u', 1596, - 'w', 1569, - 0xb5, 1596, - '\t', 492, - ' ', 492, - 'B', 2379, - 'b', 2379, + '#', 5024, + ':', 3615, + 'E', 2328, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2327, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + 0xb5, 2355, + '\t', 547, + ' ', 547, + 'B', 3524, + 'b', 3524, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 492: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == ':') ADVANCE(2453); + case 547: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == ':') ADVANCE(3615); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(492); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); + lookahead == ' ') ADVANCE(547); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); END_STATE(); - case 493: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '=') ADVANCE(2565); - if (lookahead == 'i') ADVANCE(2598); + case 548: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(3764); + if (lookahead == 'i') ADVANCE(3797); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + lookahead == ' ') SKIP(561); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); - case 494: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '=') ADVANCE(2565); - if (lookahead == 'i') ADVANCE(1800); + case 549: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(3764); + if (lookahead == 'i') ADVANCE(2807); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1892); + lookahead == ' ') SKIP(561); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); END_STATE(); - case 495: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '=') ADVANCE(2565); - if (lookahead == '{') ADVANCE(2088); + case 550: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(3764); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(507); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + lookahead == ' ') SKIP(563); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); - case 496: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '=') ADVANCE(572); - if (lookahead == 'i') ADVANCE(636); - if (lookahead == '|') ADVANCE(1930); + case 551: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(673); + if (lookahead == 'i') ADVANCE(746); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(496); + lookahead == ' ') SKIP(551); END_STATE(); - case 497: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '=') ADVANCE(572); - if (lookahead == '|') ADVANCE(1930); + case 552: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(673); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); + lookahead == ' ') SKIP(552); END_STATE(); - case 498: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '=') ADVANCE(3334); - if (lookahead == 'i') ADVANCE(3394); - if (lookahead == '|') ADVANCE(1930); + case 553: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == 'i') ADVANCE(4134); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(496); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3304); + lookahead == ' ') SKIP(551); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 499: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '=') ADVANCE(3334); - if (lookahead == '|') ADVANCE(1930); + case 554: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '_') ADVANCE(4112); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3304); + lookahead == ' ') SKIP(552); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 500: - ADVANCE_MAP( - '#', 4580, - ']', 1963, - 'c', 1647, - 'e', 1684, - 'f', 1698, - 'i', 1664, - 'l', 1655, - 'o', 1668, - 'v', 1642, - '\t', 2452, - ' ', 2452, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + case 555: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == 'i') ADVANCE(4134); + if (lookahead == '|') ADVANCE(2939); + if (lookahead == '\t' || + lookahead == ' ') SKIP(551); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 501: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == ']') ADVANCE(1963); + case 556: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == 'i') ADVANCE(4134); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3926); + lookahead == ' ') SKIP(551); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 502: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '_') ADVANCE(2820); - if (lookahead == 'i') ADVANCE(2843); + case 557: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') ADVANCE(261); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 503: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == 'i') ADVANCE(3406); + case 558: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '=') ADVANCE(4090); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3304); + lookahead == ' ') SKIP(552); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4110); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 504: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == 'i') ADVANCE(1667); + case 559: + ADVANCE_MAP( + '#', 5024, + ']', 2984, + 'c', 2509, + 'e', 2628, + 'f', 2695, + 'i', 2558, + 'l', 2526, + 'o', 2568, + 'v', 2447, + '\t', 3614, + ' ', 3614, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + END_STATE(); + case 560: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == 'i') ADVANCE(4140); if (lookahead == '\t' || - lookahead == ' ') SKIP(504); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1713); + lookahead == ' ') SKIP(561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 505: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == 'i') ADVANCE(670); + case 561: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == 'i') ADVANCE(796); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); + lookahead == ' ') SKIP(561); END_STATE(); - case 506: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == 'i') ADVANCE(670); + case 562: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == 'i') ADVANCE(2566); if (lookahead == '\t' || - lookahead == ' ') SKIP(506); - if (lookahead == '+' || - lookahead == '-') ADVANCE(560); + lookahead == ' ') SKIP(562); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); - case 507: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '{') ADVANCE(2088); + case 563: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(507); + lookahead == ' ') SKIP(563); END_STATE(); - case 508: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '{') ADVANCE(2088); + case 564: + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3304); + lookahead == ' ') ADVANCE(262); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 509: - if (lookahead == '#') ADVANCE(4580); - if (lookahead == '}') ADVANCE(2089); + case 565: + if (lookahead == '#') ADVANCE(5024); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4356); + lookahead == ' ') SKIP(565); END_STATE(); - case 510: - if (lookahead == '#') ADVANCE(4580); + case 566: + if (lookahead == '#') ADVANCE(5024); if (lookahead == '\t' || - lookahead == ' ') SKIP(510); - if (lookahead == '+' || - lookahead == '-') ADVANCE(560); + lookahead == ' ') SKIP(565); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3055); END_STATE(); - case 511: - if (lookahead == '#') ADVANCE(4580); + case 567: + if (lookahead == '#') ADVANCE(5024); if (lookahead == '\t' || - lookahead == ' ') SKIP(511); + lookahead == ' ') SKIP(565); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3698); END_STATE(); - case 512: - if (lookahead == '#') ADVANCE(4580); + case 568: + if (lookahead == '#') ADVANCE(5024); if (lookahead == '\t' || - lookahead == ' ') SKIP(511); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2036); + lookahead == ' ') SKIP(565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 513: - if (lookahead == '#') ADVANCE(4580); + case 569: + if (lookahead == '#') ADVANCE(5024); if (lookahead == '\t' || - lookahead == ' ') SKIP(511); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + lookahead == ' ') SKIP(565); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); END_STATE(); - case 514: - if (lookahead == '#') ADVANCE(4584); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '}') ADVANCE(2089); + case 570: + if (lookahead == '#') ADVANCE(5024); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); + lookahead == ' ') SKIP(565); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + END_STATE(); + case 571: + if (lookahead == '#') ADVANCE(5028); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '}') ADVANCE(3170); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3614); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + lookahead == ',') ADVANCE(3610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); END_STATE(); - case 515: - if (lookahead == '#') ADVANCE(4584); - if (lookahead == '(') ADVANCE(2210); + case 572: + if (lookahead == '#') ADVANCE(5028); + if (lookahead == '(') ADVANCE(3294); if (lookahead == '\t' || - lookahead == ' ') SKIP(511); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + lookahead == ' ') SKIP(565); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); END_STATE(); - case 516: - if (lookahead == '#') ADVANCE(4589); - if (lookahead == '$') ADVANCE(1978); - if (lookahead == '-') ADVANCE(2021); - if (lookahead == '{') ADVANCE(2088); + case 573: + if (lookahead == '#') ADVANCE(5031); + if (lookahead == '$') ADVANCE(2995); + if (lookahead == '-') ADVANCE(3043); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(404); + lookahead == ' ') SKIP(455); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3709); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3693); + lookahead == '^') ADVANCE(4456); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4440); END_STATE(); - case 517: - if (lookahead == '#') ADVANCE(4589); - if (lookahead == '$') ADVANCE(1978); + case 574: + if (lookahead == '#') ADVANCE(5031); + if (lookahead == '$') ADVANCE(2995); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); + lookahead == ' ') SKIP(471); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3709); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3693); + lookahead == '^') ADVANCE(4456); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4440); END_STATE(); - case 518: - if (lookahead == '#') ADVANCE(4589); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '{') ADVANCE(2088); + case 575: + if (lookahead == '#') ADVANCE(5031); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '-') ADVANCE(3043); + if (lookahead == '{') ADVANCE(3169); if (lookahead == '\t' || - lookahead == ' ') SKIP(507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + lookahead == ' ') ADVANCE(260); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); - case 519: - if (lookahead == '#') ADVANCE(4589); - if (lookahead == '-') ADVANCE(2021); + case 576: + if (lookahead == '#') ADVANCE(5031); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '=') ADVANCE(4262); + if (lookahead == '|') ADVANCE(2939); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(261); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + END_STATE(); + case 577: + if (lookahead == '#') ADVANCE(5031); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '{') ADVANCE(3169); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(262); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + END_STATE(); + case 578: + if (lookahead == '#') ADVANCE(5031); + if (lookahead == '-') ADVANCE(3043); if (lookahead == '\t' || - lookahead == ' ') SKIP(454); + lookahead == ' ') SKIP(519); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3709); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3693); - END_STATE(); - case 520: - if (lookahead == '#') ADVANCE(4589); - if (lookahead == '=') ADVANCE(3482); - if (lookahead == 'i') ADVANCE(3539); - if (lookahead == '|') ADVANCE(1930); - if (lookahead == '\t' || - lookahead == ' ') SKIP(496); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + lookahead == '^') ADVANCE(4456); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4440); END_STATE(); - case 521: - if (lookahead == '#') ADVANCE(4589); - if (lookahead == '=') ADVANCE(3482); - if (lookahead == '|') ADVANCE(1930); + case 579: + if (lookahead == '#') ADVANCE(5031); + if (lookahead == '=') ADVANCE(4262); + if (lookahead == 'i') ADVANCE(4315); + if (lookahead == '|') ADVANCE(2939); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + lookahead == ' ') SKIP(551); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); - case 522: - if (lookahead == '#') ADVANCE(4589); - if (lookahead == 'i') ADVANCE(3570); + case 580: + if (lookahead == '#') ADVANCE(5031); + if (lookahead == 'i') ADVANCE(4339); if (lookahead == '\t' || - lookahead == ' ') SKIP(505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + lookahead == ' ') SKIP(561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); - case 523: - if (lookahead == '#') ADVANCE(4583); - if (lookahead == ':') ADVANCE(2453); + case 581: + if (lookahead == '#') ADVANCE(5027); + if (lookahead == ':') ADVANCE(3615); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(492); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + lookahead == ' ') ADVANCE(547); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); - case 524: - if (lookahead == '#') ADVANCE(4587); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == ']') ADVANCE(1963); + case 582: + if (lookahead == '#') ADVANCE(5030); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == ']') ADVANCE(2984); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); + lookahead == ' ') ADVANCE(3614); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); + lookahead == ',') ADVANCE(3610); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -30211,5372 +30422,3974 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4048); - END_STATE(); - case 525: - if (lookahead == '#') ADVANCE(4587); - if (lookahead == '(') ADVANCE(2210); - if (lookahead == '\t' || - lookahead == ' ') SKIP(511); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); - END_STATE(); - case 526: - if (lookahead == '#') ADVANCE(2438); - if (lookahead == '\'') ADVANCE(2441); - if (lookahead == '(') ADVANCE(1964); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2437); - if (lookahead != 0) ADVANCE(2438); - END_STATE(); - case 527: - if (lookahead == '\'') ADVANCE(2430); - if (lookahead != 0) ADVANCE(527); - END_STATE(); - case 528: - ADVANCE_MAP( - '+', 591, - '-', 593, - '>', 2478, - 'I', 772, - '_', 593, - 'i', 772, - 'n', 615, - 'r', 705, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - END_STATE(); - case 529: - if (lookahead == '+') ADVANCE(591); - if (lookahead == '-') ADVANCE(593); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(705); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - END_STATE(); - case 530: - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'l') ADVANCE(720); - if (lookahead == 'r') ADVANCE(703); - END_STATE(); - case 531: - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(703); - END_STATE(); - case 532: - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'r') ADVANCE(703); - END_STATE(); - case 533: - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 'x') ADVANCE(743); - END_STATE(); - case 534: - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(731); - END_STATE(); - case 535: - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'u') ADVANCE(731); - END_STATE(); - case 536: - if (lookahead == '+') ADVANCE(681); - if (lookahead == '>') ADVANCE(764); - END_STATE(); - case 537: - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(705); - END_STATE(); - case 538: - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'r') ADVANCE(705); - END_STATE(); - case 539: - if (lookahead == '+') ADVANCE(631); - if (lookahead == '>') ADVANCE(766); - END_STATE(); - case 540: - if (lookahead == '+') ADVANCE(630); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(736); - END_STATE(); - case 541: - if (lookahead == '+') ADVANCE(688); - if (lookahead == '>') ADVANCE(2462); - END_STATE(); - case 542: - if (lookahead == '+') ADVANCE(634); - if (lookahead == '>') ADVANCE(2470); - END_STATE(); - case 543: - if (lookahead == '-') ADVANCE(2004); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(556); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); - END_STATE(); - case 544: - if (lookahead == '-') ADVANCE(2004); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); - END_STATE(); - case 545: - if (lookahead == '-') ADVANCE(600); - END_STATE(); - case 546: - if (lookahead == '-') ADVANCE(679); - END_STATE(); - case 547: - if (lookahead == '-') ADVANCE(652); - END_STATE(); - case 548: - if (lookahead == '-') ADVANCE(652); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2209); - END_STATE(); - case 549: - if (lookahead == '-') ADVANCE(723); - END_STATE(); - case 550: - if (lookahead == '-') ADVANCE(798); - END_STATE(); - case 551: - if (lookahead == '-') ADVANCE(755); - END_STATE(); - case 552: - if (lookahead == '-') ADVANCE(695); - END_STATE(); - case 553: - if (lookahead == '-') ADVANCE(756); - END_STATE(); - case 554: - if (lookahead == '.') ADVANCE(586); - if (lookahead == '>') ADVANCE(1961); - if (lookahead == '_') ADVANCE(556); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); - END_STATE(); - case 555: - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(556); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); - END_STATE(); - case 556: - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(556); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); - END_STATE(); - case 557: - if (lookahead == '.') ADVANCE(2274); - END_STATE(); - case 558: - if (lookahead == '.') ADVANCE(2000); - END_STATE(); - case 559: - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); - END_STATE(); - case 560: - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); - END_STATE(); - case 561: - if (lookahead == '.') ADVANCE(2273); - END_STATE(); - case 562: - if (lookahead == '.') ADVANCE(558); - END_STATE(); - case 563: - if (lookahead == '2') ADVANCE(786); - if (lookahead == '0' || - lookahead == '1') ADVANCE(792); - END_STATE(); - case 564: - if (lookahead == ':') ADVANCE(2453); - if (lookahead == ';') ADVANCE(2456); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(564); - END_STATE(); - case 565: - if (lookahead == ':') ADVANCE(2453); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(565); - END_STATE(); - case 566: - if (lookahead == ':') ADVANCE(794); - END_STATE(); - case 567: - if (lookahead == ':') ADVANCE(795); - END_STATE(); - case 568: - if (lookahead == ';') ADVANCE(2456); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(568); - END_STATE(); - case 569: - if (lookahead == '=') ADVANCE(2189); - if (lookahead == '~') ADVANCE(2205); - END_STATE(); - case 570: - if (lookahead == '=') ADVANCE(2186); - if (lookahead == '>') ADVANCE(2090); - if (lookahead == '~') ADVANCE(2202); - END_STATE(); - case 571: - if (lookahead == '=') ADVANCE(2186); - if (lookahead == '~') ADVANCE(2202); - END_STATE(); - case 572: - if (lookahead == '>') ADVANCE(2090); - END_STATE(); - case 573: - if (lookahead == '>') ADVANCE(2518); - END_STATE(); - case 574: - if (lookahead == '>') ADVANCE(2510); - END_STATE(); - case 575: - if (lookahead == '>') ADVANCE(2494); - END_STATE(); - case 576: - if (lookahead == '>') ADVANCE(2502); - END_STATE(); - case 577: - if (lookahead == '>') ADVANCE(1961); - END_STATE(); - case 578: - if (lookahead == '>') ADVANCE(763); - END_STATE(); - case 579: - if (lookahead == '>') ADVANCE(765); - END_STATE(); - case 580: - if (lookahead == '>') ADVANCE(767); - END_STATE(); - case 581: - if (lookahead == '>') ADVANCE(768); - END_STATE(); - case 582: - if (lookahead == 'I') ADVANCE(772); - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'i') ADVANCE(606); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4743); END_STATE(); case 583: - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(772); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + if (lookahead == '#') ADVANCE(5030); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '\t' || + lookahead == ' ') SKIP(565); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 584: - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(606); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + if (lookahead == '#') ADVANCE(3599); + if (lookahead == '\'') ADVANCE(3602); + if (lookahead == '(') ADVANCE(2985); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3598); + if (lookahead != 0) ADVANCE(3599); END_STATE(); case 585: - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(667); - if (lookahead == 'o') ADVANCE(613); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + if (lookahead == '\'') ADVANCE(3590); + if (lookahead != 0) ADVANCE(585); END_STATE(); case 586: - if (lookahead == '_') ADVANCE(586); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2367); + if (lookahead == '*') ADVANCE(231); END_STATE(); case 587: - if (lookahead == '_') ADVANCE(587); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2318); + if (lookahead == '*') ADVANCE(938); + if (lookahead == '=') ADVANCE(1171); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3298); END_STATE(); case 588: - if (lookahead == '_') ADVANCE(588); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if (lookahead == '*') ADVANCE(938); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3298); END_STATE(); case 589: - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (lookahead == '+') ADVANCE(688); + if (lookahead == '-') ADVANCE(690); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == '_') ADVANCE(690); + if (lookahead == 'n') ADVANCE(726); + if (lookahead == 'r') ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); END_STATE(); case 590: - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'o') ADVANCE(578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + if (lookahead == '+') ADVANCE(688); + if (lookahead == '-') ADVANCE(690); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == '_') ADVANCE(690); + if (lookahead == 'r') ADVANCE(839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); END_STATE(); case 591: - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'o') ADVANCE(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + if (lookahead == '+') ADVANCE(659); + if (lookahead == '=') ADVANCE(1169); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3306); END_STATE(); case 592: - if (lookahead == '_') ADVANCE(593); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(925); + if (lookahead == 'r') ADVANCE(3274); + if (lookahead == 'u') ADVANCE(881); END_STATE(); case 593: - if (lookahead == '_') ADVANCE(593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(925); + if (lookahead == 'r') ADVANCE(236); + if (lookahead == 'u') ADVANCE(881); END_STATE(); case 594: - if (lookahead == '`') ADVANCE(2432); - if (lookahead != 0) ADVANCE(594); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(925); + if (lookahead == 'r') ADVANCE(945); + if (lookahead == 'u') ADVANCE(881); END_STATE(); case 595: - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'o') ADVANCE(614); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(925); + if (lookahead == 'u') ADVANCE(881); END_STATE(); case 596: - if (lookahead == 'a') ADVANCE(732); + if (lookahead == '+') ADVANCE(658); + if (lookahead == '=') ADVANCE(1169); END_STATE(); case 597: - if (lookahead == 'a') ADVANCE(757); + if (lookahead == '+') ADVANCE(811); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'l') ADVANCE(863); + if (lookahead == 'r') ADVANCE(836); END_STATE(); case 598: - if (lookahead == 'a') ADVANCE(713); + if (lookahead == '+') ADVANCE(811); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'n') ADVANCE(715); + if (lookahead == 'r') ADVANCE(836); END_STATE(); case 599: - if (lookahead == 'a') ADVANCE(665); + if (lookahead == '+') ADVANCE(811); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'r') ADVANCE(836); END_STATE(); case 600: - if (lookahead == 'a') ADVANCE(674); - if (lookahead == 'o') ADVANCE(698); - if (lookahead == 's') ADVANCE(646); - if (lookahead == 'x') ADVANCE(686); + if (lookahead == '+') ADVANCE(811); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'r') ADVANCE(836); END_STATE(); case 601: - if (lookahead == 'a') ADVANCE(710); + if (lookahead == '+') ADVANCE(811); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'r') ADVANCE(836); + if (lookahead == 'x') ADVANCE(897); END_STATE(); case 602: - if (lookahead == 'a') ADVANCE(742); + if (lookahead == '+') ADVANCE(813); + if (lookahead == '>') ADVANCE(927); END_STATE(); case 603: - if (lookahead == 'a') ADVANCE(730); + if (lookahead == '+') ADVANCE(815); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'I') ADVANCE(958); + if (lookahead == 'i') ADVANCE(958); + if (lookahead == 'r') ADVANCE(839); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); END_STATE(); case 604: - if (lookahead == 'a') ADVANCE(728); + if (lookahead == '+') ADVANCE(815); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'n') ADVANCE(715); + if (lookahead == 'r') ADVANCE(839); END_STATE(); case 605: - if (lookahead == 'a') ADVANCE(733); + if (lookahead == '+') ADVANCE(815); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'r') ADVANCE(839); END_STATE(); case 606: - if (lookahead == 'b') ADVANCE(2379); + if (lookahead == '+') ADVANCE(815); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'n') ADVANCE(726); + if (lookahead == 'r') ADVANCE(839); END_STATE(); case 607: - if (lookahead == 'c') ADVANCE(2386); + if (lookahead == '+') ADVANCE(815); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'r') ADVANCE(839); END_STATE(); case 608: - if (lookahead == 'c') ADVANCE(619); + if (lookahead == '+') ADVANCE(740); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'r') ADVANCE(3274); + if (lookahead == 'u') ADVANCE(884); END_STATE(); case 609: - if (lookahead == 'c') ADVANCE(644); + if (lookahead == '+') ADVANCE(740); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'r') ADVANCE(236); + if (lookahead == 'u') ADVANCE(884); END_STATE(); case 610: - if (lookahead == 'c') ADVANCE(645); + if (lookahead == '+') ADVANCE(740); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'r') ADVANCE(945); + if (lookahead == 'u') ADVANCE(884); END_STATE(); case 611: - if (lookahead == 'd') ADVANCE(2159); + if (lookahead == '+') ADVANCE(740); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'u') ADVANCE(884); END_STATE(); case 612: - if (lookahead == 'd') ADVANCE(2259); + if (lookahead == '+') ADVANCE(935); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3306); END_STATE(); case 613: - if (lookahead == 'd') ADVANCE(2226); + if (lookahead == '+') ADVANCE(825); + if (lookahead == '>') ADVANCE(3701); END_STATE(); case 614: - if (lookahead == 'd') ADVANCE(747); + if (lookahead == '+') ADVANCE(742); + if (lookahead == '>') ADVANCE(929); END_STATE(); case 615: - if (lookahead == 'd') ADVANCE(716); + if (lookahead == '+') ADVANCE(744); + if (lookahead == '>') ADVANCE(3706); END_STATE(); case 616: - if (lookahead == 'd') ADVANCE(623); + if (lookahead == '-') ADVANCE(3025); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '_') ADVANCE(636); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 617: - if (lookahead == 'e') ADVANCE(1383); + if (lookahead == '-') ADVANCE(707); END_STATE(); case 618: - if (lookahead == 'e') ADVANCE(1473); + if (lookahead == '-') ADVANCE(913); END_STATE(); case 619: - if (lookahead == 'e') ADVANCE(660); + if (lookahead == '-') ADVANCE(775); END_STATE(); case 620: - if (lookahead == 'e') ADVANCE(701); + if (lookahead == '-') ADVANCE(706); END_STATE(); case 621: - if (lookahead == 'e') ADVANCE(1988); + if (lookahead == '-') ADVANCE(812); END_STATE(); case 622: - if (lookahead == 'e') ADVANCE(1954); + if (lookahead == '-') ADVANCE(778); END_STATE(); case 623: - if (lookahead == 'e') ADVANCE(2128); + if (lookahead == '-') ADVANCE(771); END_STATE(); case 624: - if (lookahead == 'e') ADVANCE(2062); + if (lookahead == '-') ADVANCE(873); END_STATE(); case 625: - if (lookahead == 'e') ADVANCE(1950); + if (lookahead == '-') ADVANCE(984); END_STATE(); case 626: - if (lookahead == 'e') ADVANCE(2079); + if (lookahead == '-') ADVANCE(914); END_STATE(); case 627: - if (lookahead == 'e') ADVANCE(754); - if (lookahead == 'o') ADVANCE(724); - if (lookahead == 'u') ADVANCE(663); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + if (lookahead == '-') ADVANCE(833); END_STATE(); case 628: - if (lookahead == 'e') ADVANCE(639); - if (lookahead == 'o') ADVANCE(2069); + if (lookahead == '-') ADVANCE(916); END_STATE(); case 629: - if (lookahead == 'e') ADVANCE(607); - if (lookahead == 't') ADVANCE(601); + if (lookahead == '-') ADVANCE(917); END_STATE(); case 630: - if (lookahead == 'e') ADVANCE(574); + if (lookahead == '-') ADVANCE(918); END_STATE(); case 631: - if (lookahead == 'e') ADVANCE(707); + if (lookahead == '-') ADVANCE(919); END_STATE(); case 632: - if (lookahead == 'e') ADVANCE(704); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '>') ADVANCE(2982); + if (lookahead == '_') ADVANCE(636); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 633: - if (lookahead == 'e') ADVANCE(579); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '>') ADVANCE(2982); + if (lookahead == '_') ADVANCE(636); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 634: - if (lookahead == 'e') ADVANCE(709); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '_') ADVANCE(636); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 635: - if (lookahead == 'f') ADVANCE(1987); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '_') ADVANCE(636); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 636: - if (lookahead == 'f') ADVANCE(2073); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '_') ADVANCE(636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 637: - if (lookahead == 'f') ADVANCE(2073); - if (lookahead == 'n') ADVANCE(2046); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(684); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); END_STATE(); case 638: - if (lookahead == 'f') ADVANCE(2073); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(774); + if (lookahead == '.') ADVANCE(3377); END_STATE(); case 639: - if (lookahead == 'f') ADVANCE(1939); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(692); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); END_STATE(); case 640: - if (lookahead == 'h') ADVANCE(2182); + if (lookahead == '.') ADVANCE(3021); END_STATE(); case 641: - if (lookahead == 'h') ADVANCE(2178); + if (lookahead == '.') ADVANCE(683); + if (lookahead == '_') ADVANCE(642); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 642: - if (lookahead == 'h') ADVANCE(1980); + if (lookahead == '.') ADVANCE(683); + if (lookahead == '_') ADVANCE(642); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 643: - if (lookahead == 'h') ADVANCE(1985); + if (lookahead == '.') ADVANCE(640); END_STATE(); case 644: - if (lookahead == 'h') ADVANCE(2084); + if (lookahead == '.') ADVANCE(640); + if (lookahead == '_') ADVANCE(692); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); END_STATE(); case 645: - if (lookahead == 'h') ADVANCE(2111); + if (lookahead == '/') ADVANCE(939); + if (lookahead == '=') ADVANCE(1172); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3300); END_STATE(); case 646: - if (lookahead == 'h') ADVANCE(659); + if (lookahead == '/') ADVANCE(939); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3300); END_STATE(); case 647: - if (lookahead == 'h') ADVANCE(546); + if (lookahead == '2') ADVANCE(972); + if (lookahead == '0' || + lookahead == '1') ADVANCE(979); END_STATE(); case 648: - if (lookahead == 'i') ADVANCE(722); + if (lookahead == ':') ADVANCE(3615); + if (lookahead == ';') ADVANCE(3627); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(648); END_STATE(); case 649: - if (lookahead == 'i') ADVANCE(616); + if (lookahead == ':') ADVANCE(3615); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(649); END_STATE(); case 650: - if (lookahead == 'i') ADVANCE(717); + if (lookahead == ':') ADVANCE(976); END_STATE(); case 651: - if (lookahead == 'i') ADVANCE(598); + if (lookahead == ':') ADVANCE(980); END_STATE(); case 652: - if (lookahead == 'i') ADVANCE(666); + if (lookahead == ';') ADVANCE(3627); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(652); END_STATE(); case 653: - if (lookahead == 'i') ADVANCE(738); + if (lookahead == '=') ADVANCE(3285); + if (lookahead == '~') ADVANCE(3291); END_STATE(); case 654: - if (lookahead == 'i') ADVANCE(740); + if (lookahead == '=') ADVANCE(1171); END_STATE(); case 655: - if (lookahead == 'i') ADVANCE(741); + if (lookahead == '=') ADVANCE(1170); END_STATE(); case 656: - if (lookahead == 'k') ADVANCE(2386); + if (lookahead == '=') ADVANCE(1170); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3307); END_STATE(); case 657: - if (lookahead == 'k') ADVANCE(624); - if (lookahead == 't') ADVANCE(609); + if (lookahead == '=') ADVANCE(1172); END_STATE(); case 658: - if (lookahead == 'l') ADVANCE(1485); + if (lookahead == '=') ADVANCE(1173); END_STATE(); case 659: - if (lookahead == 'l') ADVANCE(2251); - if (lookahead == 'r') ADVANCE(2255); + if (lookahead == '=') ADVANCE(1173); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3297); END_STATE(); case 660: - if (lookahead == 'l') ADVANCE(661); + if (lookahead == '=') ADVANCE(936); + if (lookahead == '~') ADVANCE(937); END_STATE(); case 661: - if (lookahead == 'l') ADVANCE(552); + if (lookahead == '=') ADVANCE(3284); + if (lookahead == '>') ADVANCE(3171); + if (lookahead == '~') ADVANCE(3290); END_STATE(); case 662: - if (lookahead == 'l') ADVANCE(651); + if (lookahead == '=') ADVANCE(229); + if (lookahead == '~') ADVANCE(230); END_STATE(); case 663: - if (lookahead == 'l') ADVANCE(658); + if (lookahead == '=') ADVANCE(940); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3340); END_STATE(); case 664: - if (lookahead == 'l') ADVANCE(625); + if (lookahead == '=') ADVANCE(941); + if (lookahead == '>') ADVANCE(3171); + if (lookahead == '~') ADVANCE(942); END_STATE(); case 665: - if (lookahead == 'l') ADVANCE(718); + if (lookahead == '=') ADVANCE(941); + if (lookahead == '~') ADVANCE(942); END_STATE(); case 666: - if (lookahead == 'n') ADVANCE(2174); + if (lookahead == '=') ADVANCE(943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3342); END_STATE(); case 667: - if (lookahead == 'n') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(3171); + if (lookahead == '~') ADVANCE(234); END_STATE(); case 668: - if (lookahead == 'n') ADVANCE(1986); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '~') ADVANCE(234); END_STATE(); case 669: - if (lookahead == 'n') ADVANCE(1946); + if (lookahead == '>') ADVANCE(3736); END_STATE(); case 670: - if (lookahead == 'n') ADVANCE(2046); + if (lookahead == '>') ADVANCE(3731); END_STATE(); case 671: - if (lookahead == 'n') ADVANCE(611); + if (lookahead == '>') ADVANCE(3721); END_STATE(); case 672: - if (lookahead == 'n') ADVANCE(611); - if (lookahead == 's') ADVANCE(2142); + if (lookahead == '>') ADVANCE(3726); END_STATE(); case 673: - if (lookahead == 'n') ADVANCE(615); + if (lookahead == '>') ADVANCE(3171); END_STATE(); case 674: - if (lookahead == 'n') ADVANCE(612); + if (lookahead == '>') ADVANCE(2982); END_STATE(); case 675: - if (lookahead == 'n') ADVANCE(719); + if (lookahead == '>') ADVANCE(926); END_STATE(); case 676: - if (lookahead == 'o') ADVANCE(635); + if (lookahead == '>') ADVANCE(928); END_STATE(); case 677: - if (lookahead == 'o') ADVANCE(2069); + if (lookahead == '>') ADVANCE(930); END_STATE(); case 678: - if (lookahead == 'o') ADVANCE(578); + if (lookahead == '>') ADVANCE(931); END_STATE(); case 679: - if (lookahead == 'o') ADVANCE(693); + if (lookahead == 'I') ADVANCE(958); + if (lookahead == 'i') ADVANCE(958); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); END_STATE(); case 680: - if (lookahead == 'o') ADVANCE(675); + if (lookahead == 'I') ADVANCE(958); + if (lookahead == 'i') ADVANCE(710); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); END_STATE(); case 681: - if (lookahead == 'o') ADVANCE(750); + if (lookahead == 'I') ADVANCE(958); + if (lookahead == 'i') ADVANCE(794); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); END_STATE(); case 682: - if (lookahead == 'o') ADVANCE(573); + if (lookahead == '_') ADVANCE(682); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); END_STATE(); case 683: - if (lookahead == 'o') ADVANCE(613); + if (lookahead == '_') ADVANCE(683); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); END_STATE(); case 684: - if (lookahead == 'o') ADVANCE(724); - if (lookahead == 'u') ADVANCE(663); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + if (lookahead == '_') ADVANCE(684); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); END_STATE(); case 685: - if (lookahead == 'o') ADVANCE(697); + if (lookahead == '_') ADVANCE(686); + if (lookahead == '+' || + lookahead == '-') ADVANCE(686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); END_STATE(); case 686: - if (lookahead == 'o') ADVANCE(699); + if (lookahead == '_') ADVANCE(686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); END_STATE(); case 687: - if (lookahead == 'o') ADVANCE(727); + if (lookahead == '_') ADVANCE(687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 688: - if (lookahead == 'o') ADVANCE(751); + if (lookahead == '_') ADVANCE(690); + if (lookahead == 'o') ADVANCE(669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); END_STATE(); case 689: - if (lookahead == 'o') ADVANCE(739); + if (lookahead == '_') ADVANCE(690); + if (lookahead == '+' || + lookahead == '-') ADVANCE(690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); END_STATE(); case 690: - if (lookahead == 'o') ADVANCE(739); - if (lookahead == 's') ADVANCE(2386); + if (lookahead == '_') ADVANCE(690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); END_STATE(); case 691: - if (lookahead == 'p') ADVANCE(603); + if (lookahead == '_') ADVANCE(691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 692: - if (lookahead == 'p') ADVANCE(621); + if (lookahead == '_') ADVANCE(692); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); END_STATE(); case 693: - if (lookahead == 'p') ADVANCE(735); + if (lookahead == '_') ADVANCE(694); + if (lookahead == '+' || + lookahead == '-') ADVANCE(694); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); END_STATE(); case 694: - if (lookahead == 'p') ADVANCE(596); + if (lookahead == '_') ADVANCE(694); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); END_STATE(); case 695: - if (lookahead == 'p') ADVANCE(605); + if (lookahead == '`') ADVANCE(3592); + if (lookahead != 0) ADVANCE(695); END_STATE(); case 696: - if (lookahead == 'r') ADVANCE(2169); + if (lookahead == 'a') ADVANCE(781); + if (lookahead == 'o') ADVANCE(716); END_STATE(); case 697: - if (lookahead == 'r') ADVANCE(2164); + if (lookahead == 'a') ADVANCE(841); END_STATE(); case 698: - if (lookahead == 'r') ADVANCE(2267); + if (lookahead == 'a') ADVANCE(920); END_STATE(); case 699: - if (lookahead == 'r') ADVANCE(2263); + if (lookahead == 'a') ADVANCE(858); END_STATE(); case 700: - if (lookahead == 'r') ADVANCE(2386); + if (lookahead == 'a') ADVANCE(790); END_STATE(); case 701: - if (lookahead == 'r') ADVANCE(668); + if (lookahead == 'a') ADVANCE(883); END_STATE(); case 702: - if (lookahead == 'r') ADVANCE(749); + if (lookahead == 'a') ADVANCE(890); END_STATE(); case 703: - if (lookahead == 'r') ADVANCE(536); + if (lookahead == 'a') ADVANCE(885); END_STATE(); case 704: - if (lookahead == 'r') ADVANCE(669); + if (lookahead == 'a') ADVANCE(896); END_STATE(); case 705: - if (lookahead == 'r') ADVANCE(541); + if (lookahead == 'a') ADVANCE(879); END_STATE(); case 706: - if (lookahead == 'r') ADVANCE(748); + if (lookahead == 'a') ADVANCE(807); + if (lookahead == 'o') ADVANCE(851); + if (lookahead == 's') ADVANCE(759); + if (lookahead == 'x') ADVANCE(827); END_STATE(); case 707: - if (lookahead == 'r') ADVANCE(711); + if (lookahead == 'a') ADVANCE(806); + if (lookahead == 'o') ADVANCE(848); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 'x') ADVANCE(828); END_STATE(); case 708: - if (lookahead == 'r') ADVANCE(576); + if (lookahead == 'a') ADVANCE(855); END_STATE(); case 709: - if (lookahead == 'r') ADVANCE(708); + if (lookahead == 'a') ADVANCE(856); END_STATE(); case 710: - if (lookahead == 'r') ADVANCE(745); + if (lookahead == 'b') ADVANCE(3524); END_STATE(); case 711: - if (lookahead == 'r') ADVANCE(581); + if (lookahead == 'c') ADVANCE(3529); END_STATE(); case 712: - if (lookahead == 's') ADVANCE(2386); + if (lookahead == 'c') ADVANCE(730); END_STATE(); case 713: - if (lookahead == 's') ADVANCE(977); + if (lookahead == 'c') ADVANCE(757); END_STATE(); case 714: - if (lookahead == 's') ADVANCE(2142); + if (lookahead == 'c') ADVANCE(758); END_STATE(); case 715: - if (lookahead == 's') ADVANCE(622); + if (lookahead == 'd') ADVANCE(860); END_STATE(); case 716: - if (lookahead == 's') ADVANCE(551); + if (lookahead == 'd') ADVANCE(906); END_STATE(); case 717: - if (lookahead == 's') ADVANCE(725); + if (lookahead == 'd') ADVANCE(3266); END_STATE(); case 718: - if (lookahead == 's') ADVANCE(618); + if (lookahead == 'd') ADVANCE(732); END_STATE(); case 719: - if (lookahead == 's') ADVANCE(726); + if (lookahead == 'd') ADVANCE(237); END_STATE(); case 720: - if (lookahead == 's') ADVANCE(626); + if (lookahead == 'd') ADVANCE(238); END_STATE(); case 721: - if (lookahead == 's') ADVANCE(553); + if (lookahead == 'd') ADVANCE(946); END_STATE(); case 722: - if (lookahead == 't') ADVANCE(647); + if (lookahead == 'd') ADVANCE(947); END_STATE(); case 723: - if (lookahead == 't') ADVANCE(758); + if (lookahead == 'd') ADVANCE(242); END_STATE(); case 724: - if (lookahead == 't') ADVANCE(787); + if (lookahead == 'd') ADVANCE(951); END_STATE(); case 725: - if (lookahead == 't') ADVANCE(1989); + if (lookahead == 'd') ADVANCE(867); END_STATE(); case 726: - if (lookahead == 't') ADVANCE(992); + if (lookahead == 'd') ADVANCE(869); END_STATE(); case 727: - if (lookahead == 't') ADVANCE(548); + if (lookahead == 'e') ADVANCE(3007); END_STATE(); case 728: - if (lookahead == 't') ADVANCE(609); + if (lookahead == 'e') ADVANCE(2218); END_STATE(); case 729: - if (lookahead == 't') ADVANCE(620); + if (lookahead == 'e') ADVANCE(2263); END_STATE(); case 730: - if (lookahead == 't') ADVANCE(642); + if (lookahead == 'e') ADVANCE(783); END_STATE(); case 731: - if (lookahead == 't') ADVANCE(539); + if (lookahead == 'e') ADVANCE(2973); END_STATE(); case 732: - if (lookahead == 't') ADVANCE(729); + if (lookahead == 'e') ADVANCE(3226); END_STATE(); case 733: - if (lookahead == 't') ADVANCE(643); + if (lookahead == 'e') ADVANCE(3126); END_STATE(); case 734: - if (lookahead == 't') ADVANCE(601); + if (lookahead == 'e') ADVANCE(2966); END_STATE(); case 735: - if (lookahead == 't') ADVANCE(549); + if (lookahead == 'e') ADVANCE(3154); END_STATE(); case 736: - if (lookahead == 't') ADVANCE(542); + if (lookahead == 'e') ADVANCE(912); + if (lookahead == 'o') ADVANCE(874); + if (lookahead == 'u') ADVANCE(785); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(964); END_STATE(); case 737: - if (lookahead == 't') ADVANCE(575); + if (lookahead == 'e') ADVANCE(751); + if (lookahead == 'o') ADVANCE(3139); END_STATE(); case 738: - if (lookahead == 't') ADVANCE(545); + if (lookahead == 'e') ADVANCE(838); END_STATE(); case 739: - if (lookahead == 't') ADVANCE(547); + if (lookahead == 'e') ADVANCE(711); END_STATE(); case 740: - if (lookahead == 't') ADVANCE(640); + if (lookahead == 'e') ADVANCE(670); END_STATE(); case 741: - if (lookahead == 't') ADVANCE(641); + if (lookahead == 'e') ADVANCE(842); END_STATE(); case 742: - if (lookahead == 't') ADVANCE(610); + if (lookahead == 'e') ADVANCE(844); END_STATE(); case 743: - if (lookahead == 't') ADVANCE(632); + if (lookahead == 'e') ADVANCE(676); END_STATE(); case 744: - if (lookahead == 't') ADVANCE(580); + if (lookahead == 'e') ADVANCE(849); END_STATE(); case 745: - if (lookahead == 't') ADVANCE(721); + if (lookahead == 'f') ADVANCE(3006); END_STATE(); case 746: - if (lookahead == 'u') ADVANCE(759); - if (lookahead == 'x') ADVANCE(806); - if (lookahead != 0) ADVANCE(2445); + if (lookahead == 'f') ADVANCE(3146); END_STATE(); case 747: - if (lookahead == 'u') ADVANCE(664); + if (lookahead == 'f') ADVANCE(3146); + if (lookahead == 'n') ADVANCE(3108); END_STATE(); case 748: - if (lookahead == 'u') ADVANCE(617); + if (lookahead == 'f') ADVANCE(3146); + if (lookahead == 'n') ADVANCE(235); END_STATE(); case 749: - if (lookahead == 'u') ADVANCE(617); - if (lookahead == 'y') ADVANCE(2107); + if (lookahead == 'f') ADVANCE(3146); + if (lookahead == 'n') ADVANCE(944); END_STATE(); case 750: - if (lookahead == 'u') ADVANCE(744); + if (lookahead == 'f') ADVANCE(3146); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(960); END_STATE(); case 751: - if (lookahead == 'u') ADVANCE(737); + if (lookahead == 'f') ADVANCE(2948); END_STATE(); case 752: - if (lookahead == 'u') ADVANCE(760); - if (lookahead == 'x') ADVANCE(807); - if (lookahead != 0) ADVANCE(2434); + if (lookahead == 'h') ADVANCE(788); END_STATE(); case 753: - if (lookahead == 'w') ADVANCE(648); + if (lookahead == 'h') ADVANCE(2996); END_STATE(); case 754: - if (lookahead == 'w') ADVANCE(2138); + if (lookahead == 'h') ADVANCE(3282); END_STATE(); case 755: - if (lookahead == 'w') ADVANCE(654); + if (lookahead == 'h') ADVANCE(3280); END_STATE(); case 756: - if (lookahead == 'w') ADVANCE(655); + if (lookahead == 'h') ADVANCE(3004); END_STATE(); case 757: - if (lookahead == 'y') ADVANCE(2386); + if (lookahead == 'h') ADVANCE(3162); END_STATE(); case 758: - if (lookahead == 'y') ADVANCE(692); + if (lookahead == 'h') ADVANCE(3196); END_STATE(); case 759: - if (lookahead == '{') ADVANCE(803); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(801); + if (lookahead == 'h') ADVANCE(789); END_STATE(); case 760: - if (lookahead == '{') ADVANCE(805); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(808); + if (lookahead == 'h') ADVANCE(621); END_STATE(); case 761: - if (lookahead == '|') ADVANCE(1933); + if (lookahead == 'h') ADVANCE(246); END_STATE(); case 762: - if (lookahead == '|') ADVANCE(1934); + if (lookahead == 'h') ADVANCE(247); END_STATE(); case 763: - if (lookahead == '|') ADVANCE(1938); + if (lookahead == 'h') ADVANCE(955); END_STATE(); case 764: - if (lookahead == '|') ADVANCE(1931); + if (lookahead == 'h') ADVANCE(956); END_STATE(); case 765: - if (lookahead == '|') ADVANCE(1937); + if (lookahead == 'i') ADVANCE(872); END_STATE(); case 766: - if (lookahead == '|') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(718); END_STATE(); case 767: - if (lookahead == '|') ADVANCE(1935); + if (lookahead == 'i') ADVANCE(864); END_STATE(); case 768: - if (lookahead == '|') ADVANCE(1936); + if (lookahead == 'i') ADVANCE(699); END_STATE(); case 769: - if (lookahead == '}') ADVANCE(2445); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(769); + if (lookahead == 'i') ADVANCE(878); END_STATE(); case 770: - if (lookahead == '}') ADVANCE(2434); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(770); + if (lookahead == 'i') ADVANCE(882); END_STATE(); case 771: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + if (lookahead == 'i') ADVANCE(792); END_STATE(); case 772: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + if (lookahead == 'i') ADVANCE(889); END_STATE(); case 773: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1506); + if (lookahead == 'i') ADVANCE(892); END_STATE(); case 774: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1503); + if (lookahead == 'i') ADVANCE(893); END_STATE(); case 775: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(782); + if (lookahead == 'i') ADVANCE(803); END_STATE(); case 776: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(783); + if (lookahead == 'i') ADVANCE(894); END_STATE(); case 777: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(773); + if (lookahead == 'i') ADVANCE(895); END_STATE(); case 778: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1509); + if (lookahead == 'i') ADVANCE(804); END_STATE(); case 779: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(775); + if (lookahead == 'i') ADVANCE(898); END_STATE(); case 780: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(774); + if (lookahead == 'k') ADVANCE(3529); END_STATE(); case 781: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(776); + if (lookahead == 'k') ADVANCE(733); + if (lookahead == 't') ADVANCE(713); END_STATE(); case 782: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(785); + if (lookahead == 'l') ADVANCE(2271); END_STATE(); case 783: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(784); + if (lookahead == 'l') ADVANCE(786); END_STATE(); case 784: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1497); + if (lookahead == 'l') ADVANCE(768); END_STATE(); case 785: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1505); + if (lookahead == 'l') ADVANCE(782); END_STATE(); case 786: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2412); + if (lookahead == 'l') ADVANCE(627); END_STATE(); case 787: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2209); + if (lookahead == 'l') ADVANCE(734); END_STATE(); case 788: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(567); + if (lookahead == 'l') ADVANCE(243); + if (lookahead == 'r') ADVANCE(244); END_STATE(); case 789: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2409); + if (lookahead == 'l') ADVANCE(952); + if (lookahead == 'r') ADVANCE(953); END_STATE(); case 790: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); + if (lookahead == 'l') ADVANCE(862); END_STATE(); case 791: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2420); + if (lookahead == 'n') ADVANCE(719); END_STATE(); case 792: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2412); + if (lookahead == 'n') ADVANCE(3278); END_STATE(); case 793: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); + if (lookahead == 'n') ADVANCE(3005); END_STATE(); case 794: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(788); + if (lookahead == 'n') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); END_STATE(); case 795: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(789); + if (lookahead == 'n') ADVANCE(2959); END_STATE(); case 796: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2419); + if (lookahead == 'n') ADVANCE(3108); END_STATE(); case 797: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(793); + if (lookahead == 'n') ADVANCE(715); END_STATE(); case 798: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(796); + if (lookahead == 'n') ADVANCE(717); END_STATE(); case 799: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(566); + if (lookahead == 'n') ADVANCE(717); + if (lookahead == 's') ADVANCE(3250); END_STATE(); case 800: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (lookahead == 'n') ADVANCE(721); END_STATE(); case 801: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(806); + if (lookahead == 'n') ADVANCE(235); END_STATE(); case 802: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2445); + if (lookahead == 'n') ADVANCE(944); END_STATE(); case 803: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(769); + if (lookahead == 'n') ADVANCE(241); END_STATE(); case 804: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2434); + if (lookahead == 'n') ADVANCE(950); END_STATE(); case 805: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(770); + if (lookahead == 'n') ADVANCE(865); END_STATE(); case 806: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(802); + if (lookahead == 'n') ADVANCE(723); END_STATE(); case 807: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(804); + if (lookahead == 'n') ADVANCE(724); END_STATE(); case 808: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(807); + if (lookahead == 'n') ADVANCE(725); END_STATE(); case 809: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '[', 2406, - '_', 3366, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3309, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3321, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(834); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(3304); + if (lookahead == 'o') ADVANCE(745); END_STATE(); case 810: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3325, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3317, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '|', 1930, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if (lookahead == 'o') ADVANCE(3139); END_STATE(); case 811: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3309, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3321, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '|', 1930, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(835); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if (lookahead == 'o') ADVANCE(675); END_STATE(); case 812: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3325, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3317, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '|', 1930, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if (lookahead == 'o') ADVANCE(831); END_STATE(); case 813: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3319, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3321, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '|', 1930, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(835); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if (lookahead == 'o') ADVANCE(909); END_STATE(); case 814: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3333, - '>', 1996, - 'B', 2379, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'b', 2382, - 'd', 3379, - 'e', 3313, - 'g', 3353, - 'h', 3421, - 'i', 3406, - 'k', 3353, - 'm', 3355, - 'n', 3418, - 'o', 3317, - 'p', 3353, - 's', 3391, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '|', 1930, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if (lookahead == 'o') ADVANCE(877); END_STATE(); case 815: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3333, - '>', 1996, - 'a', 3407, - 'b', 3400, - 'e', 3320, - 'i', 3406, - 'm', 3412, - 'n', 3417, - 'o', 3321, - 's', 3434, - 'x', 3416, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(835); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if (lookahead == 'o') ADVANCE(669); END_STATE(); case 816: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3331, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3333, - '>', 1996, - 'a', 3407, - 'b', 3400, - 'e', 3315, - 'i', 3406, - 'm', 3412, - 'n', 3417, - 'o', 3317, - 's', 3434, - 'x', 3416, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3304); + if (lookahead == 'o') ADVANCE(805); END_STATE(); case 817: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3179, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2239, - '-', 2029, - '.', 2275, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3333, - '>', 1996, - '_', 3183, - 'a', 3204, - 'b', 3199, - 'e', 3170, - 'i', 3203, - 'm', 3208, - 'n', 3212, - 'o', 3171, - 's', 3222, - 'x', 3211, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(3163); + if (lookahead == 'o') ADVANCE(837); END_STATE(); case 818: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3179, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2239, - '-', 2029, - '.', 2275, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3333, - '>', 1996, - '_', 3183, - 'a', 3204, - 'b', 3199, - 'e', 3166, - 'i', 3203, - 'm', 3208, - 'n', 3212, - 'o', 3168, - 's', 3222, - 'x', 3211, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(838); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3163); + if (lookahead == 'o') ADVANCE(850); END_STATE(); case 819: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3248, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2239, - '-', 2029, - '.', 2275, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3250, - '>', 1996, - '_', 3255, - 'a', 3276, - 'b', 3271, - 'e', 3239, - 'i', 3275, - 'm', 3280, - 'n', 3284, - 'o', 3240, - 's', 3294, - 'x', 3283, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(827); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(3232); + if (lookahead == 'o') ADVANCE(874); END_STATE(); case 820: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3248, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2239, - '-', 2029, - '.', 2275, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 3250, - '>', 1996, - '_', 3255, - 'a', 3276, - 'b', 3271, - 'e', 3235, - 'i', 3275, - 'm', 3280, - 'n', 3284, - 'o', 3237, - 's', 3294, - 'x', 3283, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(838); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + if (lookahead == 'o') ADVANCE(874); + if (lookahead == 'u') ADVANCE(785); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(964); END_STATE(); case 821: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2811, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 2813, - '>', 1996, - '_', 2820, - 'a', 2844, - 'b', 2839, - 'e', 2799, - 'i', 2843, - 'm', 2848, - 'n', 2852, - 'o', 2800, - 's', 2862, - 'x', 2851, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(835); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if (lookahead == 'o') ADVANCE(888); END_STATE(); case 822: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 2811, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 2813, - '>', 1996, - '_', 2820, - 'a', 2844, - 'b', 2839, - 'e', 2795, - 'i', 2843, - 'm', 2848, - 'n', 2852, - 'o', 2797, - 's', 2862, - 'x', 2851, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if (lookahead == 'o') ADVANCE(891); END_STATE(); case 823: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3475, - '#', 4589, - '(', 2210, - ')', 1965, - '*', 2153, - '+', 2243, - '-', 2034, - '/', 2222, - ';', 1929, - '<', 2194, - '=', 3477, - '>', 1997, - 'a', 3568, - 'b', 3549, - 'e', 3448, - 'i', 3570, - 'm', 3584, - 'n', 3582, - 'o', 3450, - 's', 3633, - 'x', 3583, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(835); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3709); + if (lookahead == 'o') ADVANCE(847); END_STATE(); case 824: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 3475, - '#', 4589, - '(', 2210, - ')', 1965, - '*', 2153, - '+', 2243, - '-', 2034, - '/', 2222, - ';', 1929, - '<', 2194, - '=', 3477, - '>', 1997, - 'a', 3568, - 'b', 3549, - 'e', 3453, - 'i', 3570, - 'm', 3584, - 'n', 3582, - 'o', 3455, - 's', 3633, - 'x', 3583, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3709); + if (lookahead == 'o') ADVANCE(720); END_STATE(); case 825: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - '$', 1969, - ')', 1965, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2011, - '.', 2275, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - '?', 2157, - 'E', 592, - 'a', 672, - 'b', 653, - 'e', 529, - 'i', 637, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(826); + if (lookahead == 'o') ADVANCE(910); END_STATE(); case 826: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - '$', 1969, - ')', 1965, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2011, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - '?', 2157, - 'a', 672, - 'b', 653, - 'e', 537, - 'i', 637, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(826); + if (lookahead == 'o') ADVANCE(722); END_STATE(); case 827: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - '$', 1969, - ')', 1965, - '*', 2151, - '+', 2239, - '-', 2029, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 537, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(827); + if (lookahead == 'o') ADVANCE(853); END_STATE(); case 828: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2152, - '+', 2237, - ',', 1966, - '-', 2032, - '.', 2279, - '/', 2221, - ';', 1929, - '<', 2193, - '=', 982, - '>', 1996, - '?', 2157, - 'E', 592, - '_', 589, - 'a', 671, - 'b', 653, - 'e', 529, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(830); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (lookahead == 'o') ADVANCE(852); END_STATE(); case 829: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - '(', 2210, - ')', 1965, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2010, - '.', 2279, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - '?', 2157, - 'B', 2379, - 'E', 582, - 'G', 584, - 'K', 584, - 'M', 584, - 'P', 584, - 'T', 584, - '[', 2406, - 'a', 671, - 'b', 2382, - 'd', 597, - 'e', 528, - 'g', 583, - 'h', 700, - 'i', 637, - 'k', 583, - 'm', 585, - 'n', 690, - 'o', 540, - 'p', 583, - 's', 629, - 't', 583, - 'u', 712, - 'w', 656, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 712, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(832); + if (lookahead == 'p') ADVANCE(701); END_STATE(); case 830: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - ')', 1965, - '*', 2152, - '+', 2237, - ',', 1966, - '-', 2032, - '/', 2221, - ';', 1929, - '<', 2193, - '=', 982, - '>', 1996, - '?', 2157, - 'a', 671, - 'b', 653, - 'e', 537, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(830); + if (lookahead == 'p') ADVANCE(727); END_STATE(); case 831: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2010, - '.', 2275, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - '?', 2157, - 'E', 592, - '_', 589, - 'a', 671, - 'b', 653, - 'e', 529, - 'i', 637, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (lookahead == 'p') ADVANCE(887); END_STATE(); case 832: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - ',', 1966, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - '?', 2157, - 'a', 671, - 'b', 653, - 'e', 537, - 'i', 637, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(832); + if (lookahead == 'p') ADVANCE(702); END_STATE(); case 833: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 537, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(833); + if (lookahead == 'p') ADVANCE(703); END_STATE(); case 834: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 537, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(834); + if (lookahead == 'r') ADVANCE(3529); END_STATE(); case 835: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 537, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(835); + if (lookahead == 'r') ADVANCE(908); END_STATE(); case 836: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 531, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 534, - 's', 734, - 'x', 685, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); + if (lookahead == 'r') ADVANCE(602); END_STATE(); case 837: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2239, - '-', 2029, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 537, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 540, - 's', 734, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(837); + if (lookahead == 'r') ADVANCE(3270); END_STATE(); case 838: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 569, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2239, - '-', 2029, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 671, - 'b', 653, - 'e', 531, - 'i', 670, - 'm', 683, - 'n', 689, - 'o', 534, - 's', 734, - 'x', 685, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(838); + if (lookahead == 'r') ADVANCE(793); END_STATE(); case 839: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1528, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 1527, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - 'B', 2379, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - '_', 1546, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1511, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1512, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 1596, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(833); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'r') ADVANCE(613); END_STATE(); case 840: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1528, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 1527, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - 'B', 2379, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1511, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1512, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 1596, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'r') ADVANCE(907); END_STATE(); case 841: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1528, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 1527, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - 'B', 2379, - 'E', 1540, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1515, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1512, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 1596, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'r') ADVANCE(900); END_STATE(); case 842: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1528, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 1527, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'B', 2379, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - '_', 1546, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1519, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1520, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '|', 1930, - '}', 2089, - 0xb5, 1596, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'r') ADVANCE(795); END_STATE(); case 843: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1528, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 1527, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'B', 2379, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1519, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1520, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '|', 1930, - '}', 2089, - 0xb5, 1596, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'r') ADVANCE(672); END_STATE(); case 844: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1528, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 1527, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'B', 2379, - 'E', 1540, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1517, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1520, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '|', 1930, - '}', 2089, - 0xb5, 1596, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'r') ADVANCE(854); END_STATE(); case 845: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1528, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 570, - '>', 1996, - 'B', 2379, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1511, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1512, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 1596, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'r') ADVANCE(236); END_STATE(); case 846: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1528, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '.', 2279, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'B', 2379, - 'E', 1538, - 'G', 1540, - 'K', 1540, - 'M', 1540, - 'P', 1540, - 'T', 1540, - 'a', 1574, - 'b', 2380, - 'd', 1547, - 'e', 1519, - 'g', 1539, - 'h', 1588, - 'i', 1573, - 'k', 1539, - 'm', 1541, - 'n', 1582, - 'o', 1520, - 'p', 1539, - 's', 1556, - 't', 1539, - 'u', 1596, - 'w', 1569, - 'x', 1578, - '|', 1930, - '}', 2089, - 0xb5, 1596, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'r') ADVANCE(945); END_STATE(); case 847: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1528, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 1574, - 'b', 1565, - 'e', 1516, - 'i', 1573, - 'm', 1579, - 'n', 1583, - 'o', 1512, - 's', 1600, - 'x', 1578, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'r') ADVANCE(239); END_STATE(); case 848: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1528, - '#', 4580, - ')', 1965, - '*', 2151, - '+', 2238, - '-', 2010, - '/', 2220, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 1574, - 'b', 1565, - 'e', 1518, - 'i', 1573, - 'm', 1579, - 'n', 1583, - 'o', 1520, - 's', 1600, - 'x', 1578, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'r') ADVANCE(240); END_STATE(); case 849: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1407, - '#', 4583, - ')', 1965, - '*', 2154, - '+', 2244, - '-', 2033, - '/', 2223, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 1434, - 'b', 1429, - 'e', 1397, - 'i', 1435, - 'm', 1442, - 'n', 1441, - 'o', 1395, - 's', 1458, - 'x', 1440, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + if (lookahead == 'r') ADVANCE(843); END_STATE(); case 850: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '!', 1407, - '#', 4583, - ')', 1965, - '*', 2154, - '+', 2244, - '-', 2033, - '/', 2223, - ';', 1929, - '<', 2193, - '=', 571, - '>', 1996, - 'a', 1434, - 'b', 1429, - 'e', 1399, - 'i', 1435, - 'm', 1442, - 'n', 1441, - 'o', 1400, - 's', 1458, - 'x', 1440, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + if (lookahead == 'r') ADVANCE(948); END_STATE(); case 851: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2352, - '0', 2329, - ';', 1929, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + if (lookahead == 'r') ADVANCE(949); END_STATE(); case 852: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 3330, - '-', 2012, - '.', 2279, - '0', 3369, - ';', 1929, - 'E', 3342, - 'G', 3345, - 'K', 3345, - 'M', 3345, - 'N', 3438, - 'P', 3345, - 'T', 3345, - '[', 1962, - '_', 3363, - '`', 594, - 'd', 3377, - 'e', 3310, - 'f', 3376, - 'g', 3344, - 'h', 3421, - 'k', 3344, - 'm', 3347, - 'n', 3428, - 'o', 3307, - 'p', 3344, - 's', 3385, - 't', 3343, - 'u', 3427, - 'w', 3401, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3441); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3371); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3304); + if (lookahead == 'r') ADVANCE(245); END_STATE(); case 853: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 3330, - '-', 2012, - '.', 2279, - '0', 3369, - ';', 1929, - 'E', 3345, - 'G', 3345, - 'K', 3345, - 'M', 3345, - 'N', 3438, - 'P', 3345, - 'T', 3345, - '[', 1962, - '_', 3363, - '`', 594, - 'd', 3377, - 'e', 3305, - 'f', 3376, - 'g', 3344, - 'h', 3421, - 'k', 3344, - 'm', 3347, - 'n', 3428, - 'o', 3307, - 'p', 3344, - 's', 3385, - 't', 3343, - 'u', 3427, - 'w', 3401, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3441); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3371); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3304); + if (lookahead == 'r') ADVANCE(954); END_STATE(); case 854: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 3330, - '-', 2012, - '.', 2279, - '0', 2297, - ';', 1929, - 'E', 3342, - 'G', 3345, - 'K', 3345, - 'M', 3345, - 'N', 3438, - 'P', 3345, - 'T', 3345, - '[', 1962, - '_', 3367, - '`', 594, - 'd', 3377, - 'e', 3310, - 'f', 3376, - 'g', 3344, - 'h', 3421, - 'k', 3344, - 'm', 3347, - 'n', 3428, - 'o', 3307, - 'p', 3344, - 's', 3385, - 't', 3343, - 'u', 3427, - 'w', 3401, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 3427, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3441); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3304); + if (lookahead == 'r') ADVANCE(678); END_STATE(); case 855: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 3178, - '-', 2013, - '.', 2276, - '0', 2297, - ';', 1929, - 'N', 3226, - '[', 1962, - '_', 3184, - '`', 594, - 'e', 3164, - 'f', 3188, - 'n', 3223, - 'o', 3165, - 't', 3215, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(894); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3229); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3163); + if (lookahead == 'r') ADVANCE(901); END_STATE(); case 856: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2810, - '-', 2013, - '.', 2276, - '0', 2297, - ';', 1929, - 'N', 2866, - '[', 1962, - '_', 2821, - '`', 594, - 'e', 2792, - 'f', 2828, - 'n', 2863, - 'o', 2793, - 't', 2855, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(894); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2791); + if (lookahead == 'r') ADVANCE(902); END_STATE(); case 857: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 3247, - '-', 2013, - '.', 2276, - '0', 2297, - ';', 1929, - 'N', 3298, - '[', 1962, - '_', 3256, - '`', 594, - 'e', 3233, - 'f', 3260, - 'n', 3295, - 'o', 3234, - 't', 3287, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(894); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3301); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3232); + if (lookahead == 's') ADVANCE(3529); END_STATE(); case 858: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2661, - '-', 2013, - '.', 2276, - '0', 2297, - ';', 1929, - 'N', 2766, - '[', 1962, - '_', 2687, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(894); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + if (lookahead == 's') ADVANCE(1135); END_STATE(); case 859: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2809, - '-', 2012, - '.', 2352, - '0', 2297, - ';', 1929, - 'N', 2866, - '[', 1962, - '_', 2821, - '`', 594, - 'e', 2792, - 'f', 2828, - 'n', 2863, - 'o', 2793, - 't', 2855, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2791); + if (lookahead == 's') ADVANCE(3250); END_STATE(); case 860: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2809, - '-', 2012, - '.', 2279, - '0', 2824, - ';', 1929, - 'E', 2818, - 'N', 2866, - '[', 1962, - '_', 2817, - '`', 594, - 'e', 2794, - 'f', 2828, - 'n', 2863, - 'o', 2793, - 't', 2855, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2825); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2791); + if (lookahead == 's') ADVANCE(618); END_STATE(); case 861: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2809, - '-', 2012, - '.', 2279, - '0', 2824, - ';', 1929, - 'N', 2866, - '[', 1962, - '_', 2817, - '`', 594, - 'e', 2792, - 'f', 2828, - 'n', 2863, - 'o', 2793, - 't', 2855, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2825); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2791); + if (lookahead == 's') ADVANCE(731); END_STATE(); case 862: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2809, - '-', 2012, - '.', 2279, - '0', 2297, - ';', 1929, - 'E', 2818, - 'N', 2866, - '[', 1962, - '_', 2821, - '`', 594, - 'e', 2794, - 'f', 2828, - 'n', 2863, - 'o', 2793, - 't', 2855, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2791); + if (lookahead == 's') ADVANCE(729); END_STATE(); case 863: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2809, - '-', 2012, - '.', 2276, - '0', 2824, - ';', 1929, - 'E', 2818, - 'N', 2866, - '[', 1962, - '_', 2817, - '`', 594, - 'e', 2794, - 'f', 2828, - 'n', 2863, - 'o', 2793, - 't', 2855, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2825); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2791); + if (lookahead == 's') ADVANCE(735); END_STATE(); case 864: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2809, - '-', 2012, - '.', 2276, - '0', 2824, - ';', 1929, - 'N', 2866, - '[', 1962, - '_', 2817, - '`', 594, - 'e', 2792, - 'f', 2828, - 'n', 2863, - 'o', 2793, - 't', 2855, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2825); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2791); + if (lookahead == 's') ADVANCE(875); END_STATE(); case 865: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2809, - '-', 2012, - '.', 2276, - '0', 2297, - ';', 1929, - 'E', 2818, - 'N', 2866, - '[', 1962, - '_', 2821, - '`', 594, - 'e', 2794, - 'f', 2828, - 'n', 2863, - 'o', 2793, - 't', 2855, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2791); + if (lookahead == 's') ADVANCE(876); END_STATE(); case 866: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 2809, - '-', 2012, - '.', 2276, - '0', 2297, - ';', 1929, - 'N', 2866, - '[', 1962, - '_', 2821, - '`', 594, - 'e', 2792, - 'f', 2828, - 'n', 2863, - 'o', 2793, - 't', 2855, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2791); + if (lookahead == 's') ADVANCE(626); END_STATE(); case 867: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 556, - '-', 2024, - '.', 2352, - '0', 2331, - ';', 1929, - '=', 572, - 'I', 780, - 'N', 771, - '[', 1962, - '_', 588, - '`', 594, - 'a', 671, - 'c', 602, - 'd', 677, - 'e', 530, - 'f', 599, - 'i', 638, - 'm', 604, - 'n', 684, - 'o', 534, - 't', 702, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(867); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2347); + if (lookahead == 's') ADVANCE(628); END_STATE(); case 868: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2249, - '-', 2024, - '.', 2353, - '0', 2328, - ':', 1958, - ';', 1929, - '=', 981, - '>', 1995, - 'I', 1301, - 'N', 1297, - '[', 1962, - ']', 1963, - '^', 2460, - '_', 1031, - '`', 594, - 'a', 1159, - 'b', 1214, - 'c', 1055, - 'd', 1073, - 'e', 1171, - 'f', 1041, - 'h', 1136, - 'i', 1029, - 'l', 1097, - 'm', 1053, - 'n', 1100, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1125, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(868); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2344); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(1316); + if (lookahead == 's') ADVANCE(629); END_STATE(); case 869: - if (eof) ADVANCE(969); - ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2352, - '0', 1735, - ';', 1929, - '=', 2565, - 'N', 1861, - '[', 1962, - '_', 1737, - '`', 594, - 'e', 1714, - 'f', 1745, - 'n', 1848, - 'o', 1715, - 't', 1814, - '{', 2088, - '|', 1930, - '}', 2089, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1740); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1892); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + if (lookahead == 's') ADVANCE(630); END_STATE(); case 870: - if (eof) ADVANCE(969); + if (lookahead == 's') ADVANCE(631); + END_STATE(); + case 871: + if (lookahead == 't') ADVANCE(697); + END_STATE(); + case 872: + if (lookahead == 't') ADVANCE(617); + END_STATE(); + case 873: + if (lookahead == 't') ADVANCE(921); + END_STATE(); + case 874: + if (lookahead == 't') ADVANCE(973); + END_STATE(); + case 875: + if (lookahead == 't') ADVANCE(3008); + END_STATE(); + case 876: + if (lookahead == 't') ADVANCE(1162); + END_STATE(); + case 877: + if (lookahead == 't') ADVANCE(619); + END_STATE(); + case 878: + if (lookahead == 't') ADVANCE(761); + END_STATE(); + case 879: + if (lookahead == 't') ADVANCE(713); + END_STATE(); + case 880: + if (lookahead == 't') ADVANCE(738); + END_STATE(); + case 881: + if (lookahead == 't') ADVANCE(614); + END_STATE(); + case 882: + if (lookahead == 't') ADVANCE(760); + END_STATE(); + case 883: + if (lookahead == 't') ADVANCE(753); + END_STATE(); + case 884: + if (lookahead == 't') ADVANCE(615); + END_STATE(); + case 885: + if (lookahead == 't') ADVANCE(756); + END_STATE(); + case 886: + if (lookahead == 't') ADVANCE(671); + END_STATE(); + case 887: + if (lookahead == 't') ADVANCE(624); + END_STATE(); + case 888: + if (lookahead == 't') ADVANCE(622); + END_STATE(); + case 889: + if (lookahead == 't') ADVANCE(763); + END_STATE(); + case 890: + if (lookahead == 't') ADVANCE(880); + END_STATE(); + case 891: + if (lookahead == 't') ADVANCE(623); + END_STATE(); + case 892: + if (lookahead == 't') ADVANCE(754); + END_STATE(); + case 893: + if (lookahead == 't') ADVANCE(755); + END_STATE(); + case 894: + if (lookahead == 't') ADVANCE(620); + END_STATE(); + case 895: + if (lookahead == 't') ADVANCE(762); + END_STATE(); + case 896: + if (lookahead == 't') ADVANCE(714); + END_STATE(); + case 897: + if (lookahead == 't') ADVANCE(741); + END_STATE(); + case 898: + if (lookahead == 't') ADVANCE(764); + END_STATE(); + case 899: + if (lookahead == 't') ADVANCE(677); + END_STATE(); + case 900: + if (lookahead == 't') ADVANCE(866); + END_STATE(); + case 901: + if (lookahead == 't') ADVANCE(868); + END_STATE(); + case 902: + if (lookahead == 't') ADVANCE(870); + END_STATE(); + case 903: + if (lookahead == 't') ADVANCE(708); + END_STATE(); + case 904: + if (lookahead == 't') ADVANCE(709); + END_STATE(); + case 905: + if (lookahead == 'u') ADVANCE(923); + if (lookahead == 'x') ADVANCE(992); + if (lookahead != 0) ADVANCE(3607); + END_STATE(); + case 906: + if (lookahead == 'u') ADVANCE(787); + END_STATE(); + case 907: + if (lookahead == 'u') ADVANCE(728); + END_STATE(); + case 908: + if (lookahead == 'u') ADVANCE(728); + if (lookahead == 'y') ADVANCE(3189); + END_STATE(); + case 909: + if (lookahead == 'u') ADVANCE(899); + END_STATE(); + case 910: + if (lookahead == 'u') ADVANCE(886); + END_STATE(); + case 911: + if (lookahead == 'u') ADVANCE(922); + if (lookahead == 'x') ADVANCE(993); + if (lookahead != 0) ADVANCE(3594); + END_STATE(); + case 912: + if (lookahead == 'w') ADVANCE(3243); + END_STATE(); + case 913: + if (lookahead == 'w') ADVANCE(769); + END_STATE(); + case 914: + if (lookahead == 'w') ADVANCE(777); + END_STATE(); + case 915: + if (lookahead == 'w') ADVANCE(770); + END_STATE(); + case 916: + if (lookahead == 'w') ADVANCE(772); + END_STATE(); + case 917: + if (lookahead == 'w') ADVANCE(779); + END_STATE(); + case 918: + if (lookahead == 'w') ADVANCE(773); + END_STATE(); + case 919: + if (lookahead == 'w') ADVANCE(774); + END_STATE(); + case 920: + if (lookahead == 'y') ADVANCE(3529); + END_STATE(); + case 921: + if (lookahead == 'y') ADVANCE(830); + END_STATE(); + case 922: + if (lookahead == '{') ADVANCE(988); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(994); + END_STATE(); + case 923: + if (lookahead == '{') ADVANCE(991); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(990); + END_STATE(); + case 924: + if (lookahead == '|') ADVANCE(2942); + END_STATE(); + case 925: + if (lookahead == '|') ADVANCE(2943); + END_STATE(); + case 926: + if (lookahead == '|') ADVANCE(2947); + END_STATE(); + case 927: + if (lookahead == '|') ADVANCE(2940); + END_STATE(); + case 928: + if (lookahead == '|') ADVANCE(2946); + END_STATE(); + case 929: + if (lookahead == '|') ADVANCE(2941); + END_STATE(); + case 930: + if (lookahead == '|') ADVANCE(2944); + END_STATE(); + case 931: + if (lookahead == '|') ADVANCE(2945); + END_STATE(); + case 932: + if (lookahead == '}') ADVANCE(3594); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(932); + END_STATE(); + case 933: + if (lookahead == '}') ADVANCE(3607); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(933); + END_STATE(); + case 934: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3307); + END_STATE(); + case 935: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3297); + END_STATE(); + case 936: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3339); + END_STATE(); + case 937: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3315); + END_STATE(); + case 938: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3296); + END_STATE(); + case 939: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3304); + END_STATE(); + case 940: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3341); + END_STATE(); + case 941: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3337); + END_STATE(); + case 942: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3313); + END_STATE(); + case 943: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3343); + END_STATE(); + case 944: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3329); + END_STATE(); + case 945: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3327); + END_STATE(); + case 946: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3323); + END_STATE(); + case 947: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3302); + END_STATE(); + case 948: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3325); + END_STATE(); + case 949: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3321); + END_STATE(); + case 950: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3331); + END_STATE(); + case 951: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3317); + END_STATE(); + case 952: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3309); + END_STATE(); + case 953: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3311); + END_STATE(); + case 954: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3319); + END_STATE(); + case 955: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3335); + END_STATE(); + case 956: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3333); + END_STATE(); + case 957: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(964); + END_STATE(); + case 958: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + END_STATE(); + case 959: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2294); + END_STATE(); + case 960: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2289); + END_STATE(); + case 961: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(968); + END_STATE(); + case 962: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(969); + END_STATE(); + case 963: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(959); + END_STATE(); + case 964: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2300); + END_STATE(); + case 965: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(961); + END_STATE(); + case 966: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(960); + END_STATE(); + case 967: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(962); + END_STATE(); + case 968: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(970); + END_STATE(); + case 969: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(971); + END_STATE(); + case 970: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2291); + END_STATE(); + case 971: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2279); + END_STATE(); + case 972: + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3558); + END_STATE(); + case 973: + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + END_STATE(); + case 974: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); + END_STATE(); + case 975: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(651); + END_STATE(); + case 976: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(975); + END_STATE(); + case 977: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3551); + END_STATE(); + case 978: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3574); + END_STATE(); + case 979: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3558); + END_STATE(); + case 980: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(977); + END_STATE(); + case 981: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(625); + END_STATE(); + case 982: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3571); + END_STATE(); + case 983: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(981); + END_STATE(); + case 984: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(982); + END_STATE(); + case 985: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(650); + END_STATE(); + case 986: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(985); + END_STATE(); + case 987: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3594); + END_STATE(); + case 988: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(932); + END_STATE(); + case 989: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3607); + END_STATE(); + case 990: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(992); + END_STATE(); + case 991: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(933); + END_STATE(); + case 992: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(989); + END_STATE(); + case 993: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(987); + END_STATE(); + case 994: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(993); + END_STATE(); + case 995: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '!', 653, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3378, + ';', 2938, + '<', 3287, + '=', 661, + '>', 3019, + '?', 3263, + 'E', 689, + '[', 3546, + '_', 691, + 'a', 799, + 'e', 589, + 'i', 747, + 'n', 822, + 'o', 608, + 's', 904, + 'x', 817, + '{', 3169, + '|', 2939, + '}', 3170, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(996); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + END_STATE(); + case 996: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '!', 653, + '#', 5024, + '$', 2989, + ')', 2986, + ',', 2987, + '-', 3030, + ';', 2938, + '<', 3287, + '=', 661, + '>', 3019, + '?', 3263, + 'a', 799, + 'e', 606, + 'i', 747, + 'n', 822, + 'o', 608, + 's', 904, + 'x', 817, + '{', 3169, + '|', 2939, + '}', 3170, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(996); + END_STATE(); + case 997: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '!', 653, + '#', 5024, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3392, + ';', 2938, + '<', 3287, + '=', 661, + '>', 3019, + '?', 3263, + 'E', 689, + '_', 691, + 'a', 799, + 'e', 589, + 'i', 747, + 'n', 822, + 'o', 608, + 's', 904, + 'x', 817, + '{', 3169, + '|', 2939, + '}', 3170, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + END_STATE(); + case 998: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '!', 653, + '#', 5024, + ')', 2986, + ',', 2987, + '-', 3030, + ';', 2938, + '<', 3287, + '=', 661, + '>', 3019, + '?', 3263, + 'a', 799, + 'e', 606, + 'i', 747, + 'n', 822, + 'o', 608, + 's', 904, + 'x', 817, + '{', 3169, + '|', 2939, + '}', 3170, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(998); + END_STATE(); + case 999: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5026, + '$', 2990, + '\'', 585, + '(', 2985, + '+', 1405, + '-', 3047, + '.', 1406, + '0', 3472, + ';', 2938, + 'I', 1637, + 'N', 1634, + '[', 2983, + '^', 3699, + '_', 1427, + '`', 695, + 'a', 1523, + 'b', 1568, + 'c', 1428, + 'd', 1454, + 'e', 1532, + 'f', 1431, + 'h', 1508, + 'i', 1424, + 'l', 1476, + 'm', 1433, + 'n', 1455, + 'o', 1628, + 'r', 1456, + 's', 1546, + 't', 1560, + 'u', 1588, + 'w', 1501, + '{', 3169, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(999); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); + END_STATE(); + case 1000: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2352, - '0', 2297, - ';', 1929, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2687, - '`', 594, - 'e', 2646, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3875, + '0', 3473, + ';', 2938, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 871: - if (eof) ADVANCE(969); + case 1001: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2352, - '0', 2297, - ';', 1929, - 'N', 2766, - '[', 1962, - '_', 2687, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4080, + '0', 3426, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4112, + '`', 695, + 'd', 4120, + 'e', 4049, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '|', 2939, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 872: - if (eof) ADVANCE(969); + case 1002: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2352, - '0', 2329, - ';', 1929, - '=', 2565, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4080, + '0', 3426, + ';', 2938, + 'E', 4110, + 'N', 4188, + '[', 2983, + '_', 4112, + '`', 695, + 'e', 4050, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 873: - if (eof) ADVANCE(969); + case 1003: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2352, - '0', 2329, - ';', 1929, - '?', 2157, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4080, + '0', 3475, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4115, + '`', 695, + 'd', 4120, + 'e', 4049, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '|', 2939, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(873); + lookahead == ' ') SKIP(1026); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 874: - if (eof) ADVANCE(969); + case 1004: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2352, - '0', 2329, - ';', 1929, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2646, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4080, + '0', 3475, + ';', 2938, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4115, + '`', 695, + 'd', 4120, + 'e', 4046, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '|', 2939, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 875: - if (eof) ADVANCE(969); + case 1005: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2352, - '0', 2329, - ';', 1929, - 'N', 2766, - '[', 2406, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4080, + '0', 3475, + ';', 2938, + 'E', 4110, + 'N', 4188, + '[', 2983, + '_', 4115, + '`', 695, + 'e', 4050, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 876: - if (eof) ADVANCE(969); + case 1006: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2352, - '0', 2329, - ';', 1929, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4080, + '0', 3475, + ';', 2938, + 'N', 4188, + '[', 2983, + '_', 4115, + '`', 695, + 'e', 4047, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 877: - if (eof) ADVANCE(969); + case 1007: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2279, - '0', 2329, - ';', 1929, - '?', 2157, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4076, + '0', 3426, + ';', 2938, + 'E', 4110, + 'N', 4188, + '[', 2983, + '_', 4112, + '`', 695, + 'e', 4050, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(873); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 878: - if (eof) ADVANCE(969); + case 1008: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2279, - '0', 2329, - ';', 1929, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2646, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4076, + '0', 3475, + ';', 2938, + 'E', 4110, + 'N', 4188, + '[', 2983, + '_', 4115, + '`', 695, + 'e', 4050, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 879: - if (eof) ADVANCE(969); + case 1009: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2279, - '0', 2329, - ';', 1929, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4076, + '0', 3475, + ';', 2938, + 'N', 4188, + '[', 2983, + '_', 4115, + '`', 695, + 'e', 4047, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 880: - if (eof) ADVANCE(969); + case 1010: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2276, - '0', 2329, - ';', 1929, - '?', 2157, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 3394, + '0', 3475, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4115, + '`', 695, + 'd', 4120, + 'e', 4049, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '|', 2939, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(873); + lookahead == ' ') SKIP(1026); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 881: - if (eof) ADVANCE(969); + case 1011: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2276, - '0', 2329, - ';', 1929, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2646, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 3394, + '0', 3475, + ';', 2938, + 'E', 4110, + 'N', 4188, + '[', 2983, + '_', 4115, + '`', 695, + 'e', 4050, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 882: - if (eof) ADVANCE(969); + case 1012: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2276, - '0', 2329, - ';', 1929, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 3380, + '0', 3475, + ';', 2938, + 'E', 4110, + 'N', 4188, + '[', 2983, + '_', 4115, + '`', 695, + 'e', 4050, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 883: - if (eof) ADVANCE(969); + case 1013: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2361, - '0', 2329, - ';', 1929, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, - 'I', 2771, - 'i', 2771, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4082, + '-', 3038, + '.', 4077, + '0', 3426, + ';', 2938, + 'N', 4188, + '[', 2983, + '_', 4112, + '`', 695, + 'e', 4047, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 884: - if (eof) ADVANCE(969); + case 1014: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2358, - '0', 2297, - ';', 1929, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2687, - '`', 594, - 'e', 2646, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4082, + '-', 3038, + '.', 3388, + '0', 3426, + ';', 2938, + 'N', 4188, + '[', 2983, + '_', 4112, + '`', 695, + 'e', 4047, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1043); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4218); END_STATE(); - case 885: - if (eof) ADVANCE(969); + case 1015: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2358, - '0', 2329, - ';', 1929, - 'E', 2685, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2646, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 3880, + '-', 3035, + '.', 3876, + '0', 3427, + ';', 2938, + 'N', 4016, + '[', 2983, + '_', 3912, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1043); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 886: - if (eof) ADVANCE(969); + case 1016: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2012, - '.', 2358, - '0', 2329, - ';', 1929, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 3880, + '-', 3035, + '.', 3387, + '0', 3427, + ';', 2938, + 'N', 4016, + '[', 2983, + '_', 3912, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1043); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 887: - if (eof) ADVANCE(969); + case 1017: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 1405, + '-', 3047, + '.', 1406, + '0', 3472, + ';', 2938, + '=', 673, + 'I', 1637, + 'N', 1634, + '[', 2983, + '^', 3699, + '_', 1427, + '`', 695, + 'a', 1523, + 'b', 1568, + 'c', 1428, + 'd', 1454, + 'e', 1532, + 'f', 1431, + 'h', 1508, + 'i', 1424, + 'l', 1476, + 'm', 1433, + 'n', 1455, + 'o', 1628, + 'r', 1456, + 's', 1546, + 't', 1560, + 'u', 1588, + 'w', 1501, + '{', 3169, + '|', 2939, + '}', 3170, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1017); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1643); + END_STATE(); + case 1018: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 636, + '-', 3047, + '.', 637, + '0', 3476, + ';', 2938, + '=', 673, + 'I', 966, + 'N', 957, + '[', 2983, + '_', 687, + '`', 695, + 'a', 798, + 'c', 704, + 'd', 810, + 'e', 597, + 'f', 700, + 'i', 750, + 'm', 705, + 'n', 820, + 'o', 592, + 't', 835, + 'x', 817, + '{', 3169, + '|', 2939, + '}', 3170, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1018); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); + END_STATE(); + case 1019: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2660, - '-', 2015, - '.', 2352, - '0', 2583, - ';', 1929, - '=', 2565, - 'N', 2610, - '[', 1962, - '_', 2585, - '`', 594, - 'e', 2566, - 'f', 2592, - 'n', 2609, - 'o', 2567, - 't', 2600, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3621, + '-', 3047, + '.', 1412, + '0', 3472, + ':', 2980, + ';', 2938, + '=', 1142, + '>', 3018, + 'I', 1637, + 'N', 1634, + '[', 2983, + ']', 2984, + '^', 3699, + '_', 1427, + '`', 695, + 'a', 1524, + 'b', 1568, + 'c', 1442, + 'd', 1454, + 'e', 1536, + 'f', 1431, + 'h', 1508, + 'i', 1425, + 'l', 1477, + 'm', 1441, + 'n', 1480, + 'o', 1628, + 'r', 1456, + 's', 1546, + 't', 1560, + 'u', 1588, + 'w', 1501, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1019); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead)) ADVANCE(1643); + END_STATE(); + case 1020: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3879, + '0', 3473, + ';', 2938, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, + 'I', 4021, + 'i', 4021, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(4040); + END_STATE(); + case 1021: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3875, + '0', 2742, + ';', 2938, + '=', 3764, + 'N', 2868, + '[', 2983, + '_', 2744, + '`', 695, + 'e', 2721, + 'f', 2752, + 'n', 2855, + 'o', 2722, + 't', 2821, + '{', 3169, + '|', 2939, + '}', 3170, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2615); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + lookahead == 'i') ADVANCE(2876); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2747); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 888: - if (eof) ADVANCE(969); + case 1022: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 3330, - '-', 2012, - '.', 2352, - '0', 3369, - ';', 1929, - 'N', 3438, - '[', 1962, - '_', 3363, - '`', 594, - 'e', 3306, - 'f', 3376, - 'n', 3435, - 'o', 3307, - 't', 3422, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3875, + '0', 3473, + ';', 2938, + '=', 3764, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3441); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3371); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3304); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 889: - if (eof) ADVANCE(969); + case 1023: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 3330, - '-', 2012, - '.', 2279, - '0', 3369, - ';', 1929, - 'E', 3342, - 'G', 3345, - 'K', 3345, - 'M', 3345, - 'N', 3438, - 'P', 3345, - 'T', 3345, - '[', 1962, - '_', 3363, - '`', 594, - 'd', 3377, - 'e', 3310, - 'f', 3376, - 'g', 3344, - 'h', 3421, - 'k', 3344, - 'm', 3347, - 'n', 3428, - 'o', 3307, - 'p', 3344, - 's', 3385, - 't', 3343, - 'u', 3427, - 'w', 3401, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3875, + '0', 3473, + ';', 2938, + '?', 3263, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + lookahead == ' ') SKIP(1023); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3441); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3371); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3304); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 890: - if (eof) ADVANCE(969); + case 1024: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 3330, - '-', 2012, - '.', 2279, - '0', 3369, - ';', 1929, - 'E', 3345, - 'G', 3345, - 'K', 3345, - 'M', 3345, - 'N', 3438, - 'P', 3345, - 'T', 3345, - '[', 1962, - '_', 3363, - '`', 594, - 'd', 3377, - 'e', 3305, - 'f', 3376, - 'g', 3344, - 'h', 3421, - 'k', 3344, - 'm', 3347, - 'n', 3428, - 'o', 3307, - 'p', 3344, - 's', 3385, - 't', 3343, - 'u', 3427, - 'w', 3401, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3875, + '0', 3473, + ';', 2938, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3848, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3441); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3371); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3304); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 891: - if (eof) ADVANCE(969); + case 1025: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 3330, - '-', 2012, - '.', 2279, - '0', 2297, - ';', 1929, - 'E', 3342, - 'G', 3345, - 'K', 3345, - 'M', 3345, - 'N', 3438, - 'P', 3345, - 'T', 3345, - '[', 1962, - '_', 3367, - '`', 594, - 'd', 3377, - 'e', 3310, - 'f', 3376, - 'g', 3344, - 'h', 3421, - 'k', 3344, - 'm', 3347, - 'n', 3428, - 'o', 3307, - 'p', 3344, - 's', 3385, - 't', 3343, - 'u', 3427, - 'w', 3401, - '{', 2088, - '|', 1930, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3875, + '0', 3473, + ';', 2938, + 'N', 4016, + '[', 3546, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3441); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3304); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 892: - if (eof) ADVANCE(969); + case 1026: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 3178, - '-', 2013, - '.', 2276, - '0', 2297, - ';', 1929, - 'N', 3226, - '[', 1962, - '_', 3184, - '`', 594, - 'e', 3164, - 'f', 3188, - 'n', 3223, - 'o', 3165, - 't', 3215, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3875, + '0', 3473, + ';', 2938, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(894); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3229); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3163); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 893: - if (eof) ADVANCE(969); + case 1027: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 3247, - '-', 2013, - '.', 2276, - '0', 2297, - ';', 1929, - 'N', 3298, - '[', 1962, - '_', 3256, - '`', 594, - 'e', 3233, - 'f', 3260, - 'n', 3295, - 'o', 3234, - 't', 3287, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3875, + '0', 3427, + ';', 2938, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3912, + '`', 695, + 'e', 3848, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(894); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3301); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3232); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 894: - if (eof) ADVANCE(969); + case 1028: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2661, - '-', 2013, - '.', 2352, - '0', 2329, - ';', 1929, - 'N', 2766, - '[', 1962, - '_', 2681, - '`', 594, - 'e', 2641, - 'f', 2689, - 'n', 2759, - 'o', 2642, - 't', 2736, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3877, + '0', 3473, + ';', 2938, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3848, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(894); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2345); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2790); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 895: - if (eof) ADVANCE(969); + case 1029: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 2809, - '-', 2012, - '.', 2352, - '0', 2297, - ';', 1929, - 'N', 2866, - '[', 1962, - '_', 2821, - '`', 594, - 'e', 2792, - 'f', 2828, - 'n', 2863, - 'o', 2793, - 't', 2855, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3877, + '0', 3473, + ';', 2938, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2308); + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2791); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 896: - if (eof) ADVANCE(969); + case 1030: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - ')', 2319, - '+', 1016, - '-', 2024, - '.', 2352, - '0', 2328, - ';', 1929, - '=', 572, - 'I', 1301, - 'N', 1297, - '[', 1962, - '^', 2460, - '_', 1031, - '`', 594, - 'a', 1158, - 'b', 1214, - 'c', 1038, - 'd', 1073, - 'e', 1167, - 'f', 1041, - 'h', 1136, - 'i', 1028, - 'l', 1096, - 'm', 1043, - 'n', 1074, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1125, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3877, + '0', 3427, + ';', 2938, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3912, + '`', 695, + 'e', 3848, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2344); + lookahead == ' ') SKIP(1026); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1316); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 897: - if (eof) ADVANCE(969); + case 1031: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 1016, - '-', 2024, - '.', 2352, - '0', 2328, - ';', 1929, - '=', 572, - 'I', 1301, - 'N', 1297, - '[', 1962, - '^', 2460, - '_', 1031, - '`', 594, - 'a', 1158, - 'b', 1214, - 'c', 1038, - 'd', 1073, - 'e', 1167, - 'f', 1041, - 'h', 1136, - 'i', 1028, - 'l', 1096, - 'm', 1043, - 'n', 1074, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1125, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3395, + '0', 3473, + ';', 2938, + '?', 3263, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2344); + lookahead == ' ') SKIP(1023); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1316); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 898: - if (eof) ADVANCE(969); + case 1032: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - '(', 1964, - ')', 1965, - '*', 2150, - '+', 1016, - '-', 555, - '.', 2351, - ';', 1929, - '=', 981, - '>', 1995, - 'I', 1301, - 'N', 1297, - '[', 1962, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3395, + '0', 3473, + ';', 2938, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3848, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(898); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + lookahead == ' ') SKIP(1026); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 899: - if (eof) ADVANCE(969); + case 1033: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - ')', 1965, - '*', 2150, - '+', 1016, - '-', 555, - '.', 2275, - ':', 1958, - ';', 1929, - '=', 981, - '?', 2157, - 'I', 1301, - 'N', 1297, - '[', 1962, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3395, + '0', 3473, + ';', 2938, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(901); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + lookahead == ' ') SKIP(1026); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 900: - if (eof) ADVANCE(969); + case 1034: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - ')', 1965, - '*', 2150, - '+', 1016, - '-', 555, - '.', 2275, - ':', 1958, - ';', 1929, - '=', 981, - 'I', 1301, - 'N', 1297, - '[', 1962, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3382, + '0', 3473, + ';', 2938, + '?', 3263, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + lookahead == ' ') SKIP(1023); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 901: - if (eof) ADVANCE(969); + case 1035: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - ')', 1965, - '*', 2150, - '+', 1016, - '-', 555, - '.', 2351, - ':', 1958, - ';', 1929, - '=', 981, - '?', 2157, - 'I', 1301, - 'N', 1297, - '[', 1962, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3382, + '0', 3473, + ';', 2938, + 'E', 3910, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3848, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(901); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + lookahead == ' ') SKIP(1026); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 902: - if (eof) ADVANCE(969); + case 1036: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - ')', 1965, - '*', 2150, - '+', 1016, - '-', 555, - '.', 2351, - ':', 1958, - ';', 1929, - '=', 981, - 'I', 1301, - 'N', 1297, - '[', 1962, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3033, + '.', 3382, + '0', 3473, + ';', 2938, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + lookahead == ' ') SKIP(1026); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 903: - if (eof) ADVANCE(969); + case 1037: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - ')', 1965, - '*', 2150, - '+', 1016, - '-', 555, - '.', 2351, - ';', 1929, - 'I', 1301, - 'N', 1297, - '[', 1962, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3878, + '-', 3040, + '.', 3875, + '0', 3782, + ';', 2938, + '=', 3764, + 'N', 3809, + '[', 2983, + '_', 3784, + '`', 695, + 'e', 3765, + 'f', 3791, + 'n', 3808, + 'o', 3766, + 't', 3799, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(903); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + lookahead == ' ') SKIP(1026); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3814); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3787); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + lookahead != ']') ADVANCE(4040); END_STATE(); - case 904: - if (eof) ADVANCE(969); + case 1038: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4080, + '0', 3426, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4112, + '`', 695, + 'd', 4120, + 'e', 4049, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '|', 2939, + '}', 3170, + 0xb5, 4164, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1026); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(4218); + END_STATE(); + case 1039: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4080, + '0', 3475, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4115, + '`', 695, + 'd', 4120, + 'e', 4049, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '|', 2939, + '}', 3170, + 0xb5, 4164, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1026); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(4218); + END_STATE(); + case 1040: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4080, + '0', 3475, + ';', 2938, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4115, + '`', 695, + 'd', 4120, + 'e', 4046, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '|', 2939, + '}', 3170, + 0xb5, 4164, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1026); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(4218); + END_STATE(); + case 1041: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 4076, + '0', 3475, + ';', 2938, + 'N', 4188, + '[', 2983, + '_', 4115, + '`', 695, + 'e', 4047, + 'f', 4121, + 'n', 4174, + 'o', 4051, + 't', 4152, + '{', 3169, + '|', 2939, + '}', 3170, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1026); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(4218); + END_STATE(); + case 1042: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 4079, + '-', 3034, + '.', 3394, + '0', 3475, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'N', 4188, + 'P', 4103, + 'T', 4103, + '[', 2983, + '_', 4115, + '`', 695, + 'd', 4120, + 'e', 4049, + 'f', 4121, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4163, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4101, + 'u', 4164, + 'w', 4135, + '{', 3169, + '|', 2939, + '}', 3170, + 0xb5, 4164, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1026); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(4218); + END_STATE(); + case 1043: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '$', 2990, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 3880, + '-', 3035, + '.', 3876, + '0', 3473, + ';', 2938, + 'N', 4016, + '[', 2983, + '_', 3903, + '`', 695, + 'e', 3843, + 'f', 3917, + 'n', 3987, + 'o', 3844, + 't', 3960, + '{', 3169, + '|', 2939, + '}', 3170, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4021); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(4040); + END_STATE(); + case 1044: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - ')', 1965, - '*', 2150, - '+', 1017, - '-', 559, - '.', 2351, - ';', 1929, - 'I', 1301, - 'N', 1297, - '[', 1962, - '_', 1031, - '`', 594, - 'a', 1169, - 'b', 1232, - 'c', 1040, - 'd', 1099, - 'e', 1168, - 'f', 1042, - 'h', 1144, - 'i', 1030, - 'l', 1111, - 'm', 1056, - 'n', 1075, - 'o', 1289, - 'r', 1118, - 's', 1198, - 't', 1215, - 'u', 1247, - 'w', 1134, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '\'', 585, + '(', 2985, + ')', 2986, + '*', 3260, + '+', 1405, + '-', 635, + '.', 1661, + ';', 2938, + '=', 1142, + '>', 3018, + 'I', 1929, + 'N', 1924, + '[', 2983, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '{', 3169, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(904); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + lookahead == ' ') SKIP(1044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 905: - if (eof) ADVANCE(969); + case 1045: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - ')', 1965, - '*', 2150, - '+', 3177, - '-', 3175, - '.', 2275, - ';', 1929, - 'I', 3228, - 'N', 3225, - '[', 1962, - '_', 3182, - '`', 594, - 'a', 3201, - 'b', 3218, - 'c', 3186, - 'd', 3192, - 'e', 3200, - 'f', 3187, - 'h', 3198, - 'i', 3180, - 'l', 3193, - 'm', 3190, - 'n', 3191, - 'o', 3224, - 'r', 3194, - 's', 3213, - 't', 3216, - 'u', 3220, - 'w', 3196, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '\'', 585, + ')', 2986, + '*', 3260, + '+', 1405, + '-', 635, + '.', 3404, + ';', 2938, + '?', 3263, + 'I', 1929, + 'N', 1924, + '[', 2983, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(904); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (lookahead == '$' || - (':' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ' ') SKIP(1047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && + (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3163); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 906: - if (eof) ADVANCE(969); + case 1046: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - ')', 1965, - '*', 2150, - '+', 3246, - '-', 3244, - '.', 2275, - ';', 1929, - 'I', 3300, - 'N', 3297, - '[', 1962, - '_', 3254, - '`', 594, - 'a', 3273, - 'b', 3290, - 'c', 3258, - 'd', 3264, - 'e', 3272, - 'f', 3259, - 'h', 3270, - 'i', 3252, - 'l', 3265, - 'm', 3262, - 'n', 3263, - 'o', 3296, - 'r', 3266, - 's', 3285, - 't', 3288, - 'u', 3292, - 'w', 3268, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '\'', 585, + ')', 2986, + '*', 3260, + '+', 1405, + '-', 635, + '.', 3404, + ';', 2938, + 'I', 1929, + 'N', 1924, + '[', 2983, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(904); - if ((':' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3232); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ' ') SKIP(1048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && + (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3232); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 907: - if (eof) ADVANCE(969); + case 1047: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4580, - '\'', 527, - ')', 1965, - '*', 2150, - '+', 2807, - '-', 2805, - '.', 2351, - ';', 1929, - 'I', 2868, - 'N', 2865, - '[', 1962, - '_', 2819, - '`', 594, - 'a', 2841, - 'b', 2858, - 'c', 2826, - 'd', 2832, - 'e', 2840, - 'f', 2827, - 'h', 2838, - 'i', 2815, - 'l', 2833, - 'm', 2830, - 'n', 2831, - 'o', 2864, - 'r', 2834, - 's', 2853, - 't', 2856, - 'u', 2860, - 'w', 2836, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '\'', 585, + ')', 2986, + '*', 3260, + '+', 1405, + '-', 635, + '.', 1661, + ';', 2938, + '?', 3263, + 'I', 1929, + 'N', 1924, + '[', 2983, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(903); - if (lookahead == '$' || - (':' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(2791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + lookahead == ' ') SKIP(1047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && + (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2791); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 908: - if (eof) ADVANCE(969); + case 1048: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4582, - '$', 1970, - '\'', 527, - '(', 1964, - '+', 1016, - '-', 2024, - '.', 2352, - '0', 2328, - ';', 1929, - 'I', 1301, - 'N', 1297, - '[', 1962, - '^', 2460, - '_', 1031, - '`', 594, - 'a', 1158, - 'b', 1214, - 'c', 1038, - 'd', 1073, - 'e', 1167, - 'f', 1041, - 'h', 1136, - 'i', 1028, - 'l', 1096, - 'm', 1043, - 'n', 1074, - 'o', 1288, - 'r', 1076, - 's', 1185, - 't', 1203, - 'u', 1238, - 'w', 1125, - '{', 2088, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5024, + '\'', 585, + ')', 2986, + '*', 3260, + '+', 1405, + '-', 635, + '.', 1661, + ';', 2938, + 'I', 1929, + 'N', 1924, + '[', 2983, + '_', 1664, + '`', 695, + 'a', 1790, + 'b', 1846, + 'c', 1688, + 'd', 1728, + 'e', 1792, + 'f', 1675, + 'h', 1767, + 'i', 1656, + 'l', 1739, + 'm', 1686, + 'n', 1733, + 'o', 1902, + 'r', 1744, + 's', 1816, + 't', 1830, + 'u', 1861, + 'w', 1758, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(908); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2344); + lookahead == ' ') SKIP(1048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1316); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); END_STATE(); - case 909: - if (eof) ADVANCE(969); + case 1049: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4589, - '$', 1971, - '\'', 527, - '(', 2210, - ')', 1965, - '+', 3470, - '-', 2020, - '.', 2359, - '0', 3495, - ';', 1929, - 'N', 3670, - '[', 1962, - '_', 3499, - '`', 594, - 'e', 3449, - 'f', 3500, - 'n', 3645, - 'o', 3451, - 't', 3596, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5031, + '$', 2991, + '\'', 585, + '(', 3294, + ')', 2986, + '+', 4249, + '-', 3042, + '.', 4245, + '0', 4275, + ';', 2938, + 'N', 4417, + '[', 2983, + '_', 4280, + '`', 695, + 'e', 4232, + 'f', 4281, + 'n', 4394, + 'o', 4233, + 't', 4356, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3679); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4279); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3709); + lookahead != ']') ADVANCE(4456); END_STATE(); - case 910: - if (eof) ADVANCE(969); + case 1050: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '"', 2426, - '#', 4589, - '$', 1971, - '\'', 527, - '(', 1964, - ')', 1965, - '+', 3470, - '-', 2020, - '.', 2359, - '0', 3495, - ';', 1929, - 'N', 3670, - '[', 1962, - '_', 3499, - '`', 594, - 'e', 3449, - 'f', 3500, - 'n', 3645, - 'o', 3451, - 't', 3596, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '"', 3586, + '#', 5031, + '$', 2991, + '\'', 585, + '(', 2985, + ')', 2986, + '+', 4249, + '-', 3042, + '.', 4245, + '0', 4275, + ';', 2938, + 'N', 4417, + '[', 2983, + '_', 4280, + '`', 695, + 'e', 4232, + 'f', 4281, + 'n', 4394, + 'o', 4233, + 't', 4356, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(876); + lookahead == ' ') SKIP(1026); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3679); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4279); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3709); + lookahead != ']') ADVANCE(4456); END_STATE(); - case 911: - if (eof) ADVANCE(969); + case 1051: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + '+', 642, + ',', 2987, + '-', 3036, + '.', 3407, + ';', 2938, + '=', 673, + '_', 691, + 'a', 798, + 'e', 607, + 'i', 746, + 'o', 608, + 'x', 817, + '{', 3169, + '|', 2939, + '}', 3170, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + END_STATE(); + case 1052: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - '[', 2406, - '_', 3183, - 'e', 3167, - 'o', 3169, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, - '+', 3176, - '-', 3176, - '<', 3304, - '=', 3304, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + '.', 3408, + ';', 2938, + '[', 3546, + '_', 4112, + 'e', 4053, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, + '+', 4082, + '-', 4082, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -35584,32206 +34397,35913 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3163); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); END_STATE(); - case 912: - if (eof) ADVANCE(969); + case 1053: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 3183, - 'a', 3204, - 'e', 3167, - 'o', 3168, - 'x', 3211, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + '.', 3408, + ';', 2938, + '_', 4112, + 'a', 4141, + 'e', 4053, + 'o', 4056, + 'x', 4147, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(921); + lookahead == ' ') SKIP(1058); if (lookahead == '+' || - lookahead == '-') ADVANCE(3176); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3163); + lookahead == '-') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 913: - if (eof) ADVANCE(969); + case 1054: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 3255, - 'a', 3276, - 'e', 3236, - 'o', 3237, - 'x', 3283, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + '.', 4117, + ';', 2938, + '_', 4112, + 'a', 4141, + 'e', 4053, + 'o', 4056, + 'x', 4147, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(921); + lookahead == ' ') SKIP(1058); if (lookahead == '+' || - lookahead == '-') ADVANCE(3245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + lookahead == '-') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 914: - if (eof) ADVANCE(969); + case 1055: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 3255, - 'e', 3236, - 'o', 3238, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, - '+', 3245, - '-', 3245, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + '(', 3294, + ')', 2986, + '.', 4117, + ';', 2938, + '_', 4112, + 'e', 4053, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, + '+', 4082, + '-', 4082, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); END_STATE(); - case 915: - if (eof) ADVANCE(969); + case 1056: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 3255, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + '+', 642, + ',', 2987, + '-', 3036, + '.', 692, + ';', 2938, + '=', 673, + 'a', 798, + 'e', 607, + 'i', 746, + 'o', 608, + 'x', 817, + '{', 3169, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(922); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + lookahead == ' ') SKIP(1056); END_STATE(); - case 916: - if (eof) ADVANCE(969); + case 1057: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + '-', 3030, + '.', 3392, + ';', 2938, + '=', 3764, + '?', 3263, + 'e', 2726, + 'o', 2725, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, + ); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); + END_STATE(); + case 1058: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 2820, - 'a', 2844, - 'e', 2796, - 'o', 2797, - 'x', 2851, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '$', 2989, + ')', 2986, + '.', 692, + ';', 2938, + 'a', 798, + 'e', 600, + 'o', 592, + 'x', 817, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(921); + lookahead == ' ') SKIP(1058); if (lookahead == '+' || - lookahead == '-') ADVANCE(2808); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == '-') ADVANCE(642); END_STATE(); - case 917: - if (eof) ADVANCE(969); + case 1059: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 2820, - 'e', 2796, - 'o', 2798, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, - '+', 2808, - '-', 2808, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '*', 654, + '+', 596, + ',', 2987, + '-', 655, + '.', 3392, + '/', 657, + ';', 2938, + '=', 1142, + '?', 3263, + 'E', 680, + 'G', 680, + 'K', 680, + 'M', 680, + 'P', 680, + 'T', 680, + '[', 3546, + 'd', 698, + 'e', 603, + 'g', 679, + 'h', 834, + 'k', 679, + 'm', 681, + 'n', 857, + 'o', 611, + 'p', 679, + 's', 739, + 't', 679, + 'u', 857, + 'w', 780, + '{', 3169, + '|', 2939, + '}', 3170, + 0xb5, 857, + '\t', 29, + ' ', 29, + 'B', 3524, + 'b', 3524, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(2791); END_STATE(); - case 918: - if (eof) ADVANCE(969); + case 1060: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - '.', 557, - ':', 1958, - ';', 1929, - '=', 981, - '[', 2406, - 'a', 672, - 'e', 538, - 'i', 670, - 'o', 540, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'a', 4141, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4056, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 'x', 4147, + '|', 2939, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(919); + lookahead == ' ') SKIP(1112); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 919: - if (eof) ADVANCE(969); + case 1061: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ',', 1966, - '-', 2011, - ':', 1958, - ';', 1929, - '=', 981, - 'a', 672, - 'e', 538, - 'i', 670, - 'o', 540, - 'x', 685, - '{', 2088, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4049, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 31, + ' ', 31, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(919); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 920: - if (eof) ADVANCE(969); + case 1062: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - '-', 2011, - '.', 2279, - ';', 1929, - '=', 2565, - '?', 2157, - 'e', 1718, - 'o', 1719, - '{', 2088, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 2937, + ' ', 2937, + 'B', 3524, + 'b', 3524, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1892); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 921: - if (eof) ADVANCE(969); + case 1063: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ';', 1929, - 'a', 671, - 'e', 532, - 'o', 534, - 'x', 685, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 32, + ' ', 32, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(921); - if (lookahead == '+' || - lookahead == '-') ADVANCE(560); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 922: - if (eof) ADVANCE(969); + case 1064: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '$', 1969, - ')', 1965, - ';', 1929, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 4110, + 'a', 4141, + 'e', 4055, + 'o', 4056, + 'x', 4147, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(922); - if (lookahead == '+' || - lookahead == '-') ADVANCE(560); + lookahead == ' ') SKIP(1112); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 923: - if (eof) ADVANCE(969); + case 1065: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 4110, + 'e', 4055, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 1066: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - 'E', 2823, - '_', 2820, - 'a', 2844, - 'e', 2803, - 'o', 2797, - 'x', 2851, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'a', 4141, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4056, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 'x', 4147, + '|', 2939, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(1112); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 924: - if (eof) ADVANCE(969); + case 1067: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - 'E', 2823, - '_', 2820, - 'e', 2803, - 'o', 2798, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4049, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 31, + ' ', 31, + 'B', 3524, + 'b', 3524, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 925: - if (eof) ADVANCE(969); + case 1068: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - 'E', 2823, - 'a', 2844, - 'e', 2803, - 'o', 2797, - 'x', 2851, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 2937, + ' ', 2937, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 926: - if (eof) ADVANCE(969); + case 1069: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - 'E', 2823, - 'e', 2803, - 'o', 2798, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 32, + ' ', 32, + 'B', 3524, + 'b', 3524, ); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 927: - if (eof) ADVANCE(969); + case 1070: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 2820, - 'a', 2844, - 'e', 2796, - 'o', 2797, - 'x', 2851, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'a', 4141, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4056, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 'x', 4147, + '|', 2939, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(1112); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 928: - if (eof) ADVANCE(969); + case 1071: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 2820, - 'e', 2796, - 'o', 2798, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4049, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 31, + ' ', 31, + 'B', 3524, + 'b', 3524, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 929: - if (eof) ADVANCE(969); + case 1072: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 2820, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 2937, + ' ', 2937, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 930: - if (eof) ADVANCE(969); + case 1073: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4054, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 32, + ' ', 32, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 1074: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - 'a', 2844, - 'e', 2796, - 'o', 2797, - 'x', 2851, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'a', 4141, + 'd', 4120, + 'e', 4052, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4056, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + 'x', 4147, + '|', 2939, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(1112); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 931: - if (eof) ADVANCE(969); + case 1075: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2275, - ';', 1929, - 'e', 2796, - 'o', 2798, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4046, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4051, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 31, + ' ', 31, + 'B', 3524, + 'b', 3524, ); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 932: - if (eof) ADVANCE(969); + case 1076: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'a', 3407, - 'd', 3379, - 'e', 3326, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'o', 3317, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '|', 1930, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4052, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 2937, + ' ', 2937, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 933: - if (eof) ADVANCE(969); + case 1077: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'd', 3379, - 'e', 3326, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'o', 3318, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '|', 1930, - '}', 2089, - 0xb5, 3427, - '\t', 1928, - ' ', 1928, - 'B', 2379, - 'b', 2379, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'd', 4120, + 'e', 4052, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'o', 4057, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '|', 2939, + '}', 3170, + 0xb5, 4164, + '\t', 32, + ' ', 32, + 'B', 3524, + 'b', 3524, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 934: - if (eof) ADVANCE(969); + case 1078: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'd', 3379, - 'e', 3326, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'o', 3317, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '|', 1930, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4110, + '_', 4112, + 'a', 4141, + 'e', 4055, + 'o', 4056, + 'x', 4147, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == ' ') SKIP(1112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 935: - if (eof) ADVANCE(969); + case 1079: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3326, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'o', 3318, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '|', 1930, - '}', 2089, - 0xb5, 3427, - '\t', 1928, - ' ', 1928, - 'B', 2379, - 'b', 2379, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4110, + '_', 4112, + 'e', 4055, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, ); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 936: - if (eof) ADVANCE(969); + case 1080: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'E', 2823, - '_', 2820, - 'a', 2844, - 'e', 2803, - 'o', 2797, - 'x', 2851, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4110, + 'a', 4141, + 'e', 4055, + 'o', 4056, + 'x', 4147, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(1112); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 937: - if (eof) ADVANCE(969); + case 1081: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'E', 2823, - '_', 2820, - 'e', 2803, - 'o', 2798, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'E', 4110, + 'e', 4055, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 938: - if (eof) ADVANCE(969); + case 1082: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'E', 2823, - 'a', 2844, - 'e', 2803, - 'o', 2797, - 'x', 2851, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'a', 4141, + 'e', 4053, + 'o', 4056, + 'x', 4147, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(1112); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 939: - if (eof) ADVANCE(969); + case 1083: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'E', 2823, - 'e', 2803, - 'o', 2798, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 4081, + ';', 2938, + 'e', 4053, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, ); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 940: - if (eof) ADVANCE(969); + case 1084: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3407, - 'd', 3379, - 'e', 3314, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'o', 3317, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - 'x', 3416, - '|', 1930, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 3378, + ';', 2938, + 'E', 4110, + 'a', 4141, + 'e', 4055, + 'o', 4056, + 'x', 4147, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == ' ') SKIP(1112); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 941: - if (eof) ADVANCE(969); + case 1085: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'd', 3379, - 'e', 3314, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'o', 3318, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '|', 1930, - '}', 2089, - 0xb5, 3427, - '\t', 1928, - ' ', 1928, - 'B', 2379, - 'b', 2379, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + '.', 3378, + ';', 2938, + 'E', 4110, + 'e', 4055, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, ); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 942: - if (eof) ADVANCE(969); + case 1086: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'a', 2844, - 'e', 2796, - 'o', 2797, - 'x', 2851, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + ';', 2938, + 'E', 4110, + '_', 4112, + 'a', 4141, + 'e', 4055, + 'o', 4056, + 'x', 4147, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(1112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 943: - if (eof) ADVANCE(969); + case 1087: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - '(', 2210, - ')', 1965, - '.', 2279, - ';', 1929, - 'e', 2796, - 'o', 2798, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + ';', 2938, + 'E', 4110, + '_', 4112, + 'e', 4055, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, ); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 944: - if (eof) ADVANCE(969); + case 1088: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '+', 560, - '-', 2014, - ';', 1929, - 'a', 714, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + ';', 2938, + 'E', 4110, + 'a', 4141, + 'e', 4055, + 'o', 4056, + 'x', 4147, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(944); + lookahead == ' ') SKIP(1112); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 945: - if (eof) ADVANCE(969); + case 1089: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '+', 3176, - '-', 2014, - '.', 2275, - ';', 1929, - '_', 3183, - 'a', 3219, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + ';', 2938, + 'E', 4110, + 'e', 4055, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(944); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3163); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 946: - if (eof) ADVANCE(969); + case 1090: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '+', 3245, - '-', 2014, - '.', 2275, - ';', 1929, - '_', 3255, - 'a', 3291, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + ';', 2938, + 'a', 4141, + 'e', 4053, + 'o', 4056, + 'x', 4147, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3232); + lookahead == ' ') SKIP(1112); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 947: - if (eof) ADVANCE(969); + case 1091: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + '(', 3294, + ')', 2986, + ';', 2938, + 'e', 4053, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 1092: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + ',', 2987, + '-', 3030, + '.', 3378, + ';', 2938, + '=', 673, + '?', 3263, + 'E', 689, + 'e', 590, + 'i', 746, + 'o', 611, + '{', 3169, + '|', 2939, + '}', 3170, + '\t', 30, + ' ', 30, + ); + END_STATE(); + case 1093: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '-', 2011, - '.', 2279, - ';', 1929, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - '_', 3366, - 'a', 3429, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 3030, + '.', 3392, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'a', 4165, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(1100); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 948: - if (eof) ADVANCE(969); + case 1094: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '-', 2011, - '.', 2279, - ';', 1929, - 'E', 3350, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3429, - 'd', 3379, - 'e', 3349, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 3030, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + '_', 4112, + 'a', 4165, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(1100); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 949: - if (eof) ADVANCE(969); + case 1095: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '-', 2011, - '.', 2279, - ';', 1929, - 'E', 3354, - 'G', 3354, - 'K', 3354, - 'M', 3354, - 'P', 3354, - 'T', 3354, - 'a', 3429, - 'd', 3379, - 'e', 3353, - 'g', 3353, - 'h', 3421, - 'k', 3353, - 'm', 3356, - 'n', 3427, - 'p', 3353, - 's', 3390, - 't', 3353, - 'u', 3427, - 'w', 3401, - '}', 2089, - 0xb5, 3427, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 3030, + '.', 4081, + ';', 2938, + 'E', 4100, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'a', 4165, + 'd', 4120, + 'e', 4099, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(1100); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3304); + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 950: - if (eof) ADVANCE(969); + case 1096: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '-', 2011, - ';', 1929, - '=', 2565, - 'a', 1828, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 3030, + '.', 4081, + ';', 2938, + 'E', 4103, + 'G', 4103, + 'K', 4103, + 'M', 4103, + 'P', 4103, + 'T', 4103, + 'a', 4165, + 'd', 4120, + 'e', 4102, + 'g', 4102, + 'h', 4151, + 'k', 4102, + 'm', 4104, + 'n', 4164, + 'p', 4102, + 's', 4127, + 't', 4102, + 'u', 4164, + 'w', 4135, + '}', 3170, + 0xb5, 4164, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1892); + lookahead == ' ') SKIP(1100); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 951: - if (eof) ADVANCE(969); + case 1097: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '-', 2011, - ';', 1929, - '=', 2565, - 'a', 714, - 'i', 670, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 3030, + ';', 2938, + '=', 3764, + 'a', 2835, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(954); + lookahead == ' ') SKIP(1100); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); END_STATE(); - case 952: - if (eof) ADVANCE(969); + case 1098: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '-', 2011, - ';', 1929, - '_', 2820, - 'a', 2859, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 3030, + ';', 2938, + '=', 3764, + 'a', 859, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2791); + lookahead == ' ') SKIP(1100); END_STATE(); - case 953: - if (eof) ADVANCE(969); + case 1099: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '-', 2011, - ';', 1929, - 'a', 3429, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 3030, + ';', 2938, + 'a', 4165, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3304); + lookahead == ' ') SKIP(1100); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 954: - if (eof) ADVANCE(969); + case 1100: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '-', 2011, - ';', 1929, - 'a', 714, - 'i', 670, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 3030, + ';', 2938, + 'a', 859, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(954); + lookahead == ' ') SKIP(1100); END_STATE(); - case 955: - if (eof) ADVANCE(969); + case 1101: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '-', 2011, - ';', 1929, - 'a', 714, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '-', 3041, + ';', 2938, + '=', 3764, + 'a', 3802, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(1100); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); - case 956: - if (eof) ADVANCE(969); + case 1102: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '-', 2016, - ';', 1929, - '=', 2565, - 'a', 2603, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2302, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 31, + ' ', 31, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(955); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 957: - if (eof) ADVANCE(969); + case 1103: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '.', 2275, - ';', 1929, - '?', 2157, - 'e', 532, - 'o', 535, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '.', 3392, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2310, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2311, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 32, + ' ', 32, + 'B', 3524, + 'b', 3524, ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 958: - if (eof) ADVANCE(969); + case 1104: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 3183, - 'e', 3167, - 'o', 3169, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, - '+', 3176, - '-', 3176, - '<', 3304, - '=', 3304, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + '_', 2333, + 'd', 2334, + 'e', 2302, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 31, + ' ', 31, + 'B', 3524, + 'b', 3524, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 959: - if (eof) ADVANCE(969); + case 1105: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - '.', 2275, - ';', 1929, - '_', 3183, - '{', 2088, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + '_', 2333, + 'd', 2334, + 'e', 2310, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2311, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 32, + ' ', 32, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(964); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3176); - if (lookahead == '<' || - lookahead == '=') ADVANCE(3304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 960: - if (eof) ADVANCE(969); + case 1106: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - ';', 1929, - '=', 2565, - 'e', 2570, - 'o', 2571, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2302, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 31, + ' ', 31, + 'B', 3524, + 'b', 3524, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 961: - if (eof) ADVANCE(969); + case 1107: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - ';', 1929, - 'a', 3407, - 'e', 3316, - 'o', 3317, - 'x', 3416, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2326, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2310, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2311, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 32, + ' ', 32, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 962: - if (eof) ADVANCE(969); + case 1108: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - ';', 1929, - 'a', 671, - 'e', 532, - 'o', 534, - 'x', 685, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2328, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2305, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2304, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 31, + ' ', 31, + 'B', 3524, + 'b', 3524, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 963: - if (eof) ADVANCE(969); + case 1109: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4580, - ')', 1965, - ';', 1929, - 'e', 3316, - 'o', 3318, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '.', 2316, + ';', 2938, + 'E', 2328, + 'G', 2328, + 'K', 2328, + 'M', 2328, + 'P', 2328, + 'T', 2328, + 'd', 2334, + 'e', 2308, + 'g', 2327, + 'h', 2348, + 'k', 2327, + 'm', 2329, + 'n', 2355, + 'o', 2311, + 'p', 2327, + 's', 2337, + 't', 2327, + 'u', 2355, + 'w', 2342, + '|', 2939, + '}', 3170, + 0xb5, 2355, + '\t', 32, + ' ', 32, + 'B', 3524, + 'b', 3524, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); - case 964: - if (eof) ADVANCE(969); - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == ')') ADVANCE(1965); - if (lookahead == ';') ADVANCE(1929); - if (lookahead == '{') ADVANCE(2088); - if (lookahead == '}') ADVANCE(2089); - if (lookahead == '\t' || - lookahead == ' ') SKIP(964); - if (lookahead == '+' || - lookahead == '-') ADVANCE(560); + case 1110: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + '.', 3378, + ';', 2938, + '?', 3263, + 'e', 600, + 'o', 595, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, + ); END_STATE(); - case 965: - if (eof) ADVANCE(969); - if (lookahead == '\n') ADVANCE(1925); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '#') ADVANCE(4580); - if (lookahead == ')') ADVANCE(1965); - if (lookahead == ';') ADVANCE(1929); - if (lookahead == '{') ADVANCE(2088); - if (lookahead == '}') ADVANCE(2089); + case 1111: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + ';', 2938, + '=', 3764, + 'e', 3770, + 'o', 3769, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, + ); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + END_STATE(); + case 1112: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + ';', 2938, + 'a', 798, + 'e', 600, + 'o', 592, + 'x', 817, + '|', 2939, + '}', 3170, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(965); + lookahead == ' ') SKIP(1112); END_STATE(); - case 966: - if (eof) ADVANCE(969); + case 1113: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + ';', 2938, + 'e', 2306, + 'o', 2304, + '|', 2939, + '}', 3170, + '\t', 31, + ' ', 31, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + END_STATE(); + case 1114: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + ';', 2938, + 'e', 4047, + 'o', 4051, + '|', 2939, + '}', 3170, + '\t', 31, + ' ', 31, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 1115: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + ';', 2938, + 'e', 2309, + 'o', 2311, + '|', 2939, + '}', 3170, + '\t', 32, + ' ', 32, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + END_STATE(); + case 1116: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5024, + ')', 2986, + ';', 2938, + 'e', 4053, + 'o', 4057, + '|', 2939, + '}', 3170, + '\t', 32, + ' ', 32, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); + case 1117: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4589, - '(', 2210, - ')', 1965, - ';', 1929, - 'a', 3568, - 'e', 3454, - 'o', 3455, - 'x', 3583, - '|', 1930, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5031, + '(', 3294, + ')', 2986, + ';', 2938, + 'a', 4338, + 'e', 4234, + 'o', 4235, + 'x', 4349, + '|', 2939, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + lookahead == ' ') SKIP(1112); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); - case 967: - if (eof) ADVANCE(969); + case 1118: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4589, - '(', 2210, - ')', 1965, - ';', 1929, - 'e', 3454, - 'o', 3456, - '|', 1930, - '}', 2089, - '\t', 1928, - ' ', 1928, + '\n', 2932, + '\r', 25, + '#', 5031, + '(', 3294, + ')', 2986, + ';', 2938, + 'e', 4232, + 'o', 4233, + '|', 2939, + '}', 3170, + '\t', 31, + ' ', 31, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); - case 968: - if (eof) ADVANCE(969); + case 1119: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5031, + '(', 3294, + ')', 2986, + ';', 2938, + 'e', 4234, + 'o', 4236, + '|', 2939, + '}', 3170, + '\t', 2937, + ' ', 2937, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + END_STATE(); + case 1120: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5031, + '(', 3294, + ')', 2986, + ';', 2938, + 'e', 4234, + 'o', 4236, + '|', 2939, + '}', 3170, + '\t', 32, + ' ', 32, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + END_STATE(); + case 1121: + if (eof) ADVANCE(1124); ADVANCE_MAP( - '\n', 1925, - '\r', 22, - '#', 4589, - ')', 1965, - '-', 2021, - ';', 1929, - 'a', 3619, - '}', 2089, + '\n', 2932, + '\r', 25, + '#', 5031, + ')', 2986, + '-', 3043, + ';', 2938, + 'a', 4376, + '}', 3170, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + lookahead == ' ') SKIP(1100); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); - case 969: + case 1122: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5027, + ')', 2986, + ';', 2938, + 'e', 2226, + 'o', 2227, + '|', 2939, + '}', 3170, + '\t', 31, + ' ', 31, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + END_STATE(); + case 1123: + if (eof) ADVANCE(1124); + ADVANCE_MAP( + '\n', 2932, + '\r', 25, + '#', 5027, + ')', 2986, + ';', 2938, + 'e', 2230, + 'o', 2231, + '|', 2939, + '}', 3170, + '\t', 32, + ' ', 32, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + END_STATE(); + case 1124: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 970: + case 1125: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 971: + case 1126: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 972: + case 1127: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(971); - if (lookahead == '\r') ADVANCE(973); - if (lookahead == '#') ADVANCE(4581); + if (lookahead == '\n') ADVANCE(1126); + if (lookahead == '\r') ADVANCE(1128); + if (lookahead == '#') ADVANCE(5025); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(972); - if (lookahead != 0) ADVANCE(973); + lookahead == ' ') ADVANCE(1127); + if (lookahead != 0) ADVANCE(1128); END_STATE(); - case 973: + case 1128: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(971); - if (lookahead == '\r') ADVANCE(973); - if (lookahead != 0) ADVANCE(973); + if (lookahead == '\n') ADVANCE(1126); + if (lookahead == '\r') ADVANCE(1128); + if (lookahead != 0) ADVANCE(1128); END_STATE(); - case 974: + case 1129: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(1382); - if (lookahead == '-') ADVANCE(4439); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4442); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == '-') ADVANCE(2198); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2207); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2204); END_STATE(); - case 975: + case 1130: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(1382); - if (lookahead == '-') ADVANCE(4174); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4177); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == '-') ADVANCE(2199); + if (lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2207); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2206); END_STATE(); - case 976: + case 1131: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1376); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == '-') ADVANCE(2199); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2207); END_STATE(); - case 977: + case 1132: + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == '-') ADVANCE(4879); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4882); + END_STATE(); + case 1133: + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(2210); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2217); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2216); + END_STATE(); + case 1134: + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(2210); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + END_STATE(); + case 1135: ACCEPT_TOKEN(anon_sym_alias); END_STATE(); - case 978: + case 1136: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1318); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4433); + if (lookahead == ',') ADVANCE(1957); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1953); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1955); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1952); END_STATE(); - case 979: + case 1137: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1318); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4168); + if (lookahead == ',') ADVANCE(1957); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4872); END_STATE(); - case 980: + case 1138: + ACCEPT_TOKEN(anon_sym_alias); + if (lookahead == ',') ADVANCE(1957); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1955); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1954); + END_STATE(); + case 1139: ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1318); + if (lookahead == ',') ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1955); END_STATE(); - case 981: + case 1140: + ACCEPT_TOKEN(anon_sym_alias); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1957); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1956); + END_STATE(); + case 1141: + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1957); + END_STATE(); + case 1142: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 982: + case 1143: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(2186); - if (lookahead == '~') ADVANCE(2202); + if (lookahead == '=') ADVANCE(3839); + if (lookahead == '~') ADVANCE(3840); END_STATE(); - case 983: + case 1144: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(941); + if (lookahead == '~') ADVANCE(942); + END_STATE(); + case 1145: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '~') ADVANCE(234); + END_STATE(); + case 1146: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1330); - if (lookahead == '-') ADVANCE(4418); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4421); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == '-') ADVANCE(1979); + if (lookahead == '@') ADVANCE(1986); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1985); END_STATE(); - case 984: + case 1147: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1330); - if (lookahead == '-') ADVANCE(4153); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4156); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == '-') ADVANCE(1980); + if (lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1987); END_STATE(); - case 985: + case 1148: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1324); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == '-') ADVANCE(1980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); - case 986: + case 1149: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == '-') ADVANCE(4856); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + END_STATE(); + case 1150: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '-') ADVANCE(1991); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1998); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); + END_STATE(); + case 1151: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '-') ADVANCE(1991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + END_STATE(); + case 1152: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1330); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4421); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); END_STATE(); - case 987: + case 1153: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1330); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4156); + if (lookahead == ',') ADVANCE(1998); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); END_STATE(); - case 988: + case 1154: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + if (lookahead == ',') ADVANCE(1998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); - case 989: + case 1155: + ACCEPT_TOKEN(anon_sym_let_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + END_STATE(); + case 1156: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1331); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4424); + if (lookahead == ',') ADVANCE(2004); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2000); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2002); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1999); END_STATE(); - case 990: + case 1157: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1331); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4159); + if (lookahead == ',') ADVANCE(2004); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4860); END_STATE(); - case 991: + case 1158: ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(2004); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2002); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2001); END_STATE(); - case 992: + case 1159: + ACCEPT_TOKEN(anon_sym_mut); + if (lookahead == ',') ADVANCE(2004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2002); + END_STATE(); + case 1160: + ACCEPT_TOKEN(anon_sym_mut); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2004); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2003); + END_STATE(); + case 1161: + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); + END_STATE(); + case 1162: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 993: + case 1163: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1332); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4435); + if (lookahead == ',') ADVANCE(2010); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2006); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2008); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2005); END_STATE(); - case 994: + case 1164: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1332); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4170); + if (lookahead == ',') ADVANCE(2010); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4875); END_STATE(); - case 995: + case 1165: ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1332); + if (lookahead == ',') ADVANCE(2010); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2008); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2007); END_STATE(); - case 996: + case 1166: + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == ',') ADVANCE(2010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2008); + END_STATE(); + case 1167: + ACCEPT_TOKEN(anon_sym_const); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2010); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2009); + END_STATE(); + case 1168: + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); + END_STATE(); + case 1169: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 997: + case 1170: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 998: + case 1171: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 999: + case 1172: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 1000: + case 1173: ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); - case 1001: + case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(2320); - if (lookahead == '(') ADVANCE(2271); - if (lookahead == '{') ADVANCE(2447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(3344); + if (lookahead == '\r') ADVANCE(8); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1002: + case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1187); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'l') ADVANCE(1246); - if (lookahead == 'n') ADVANCE(1069); - if (lookahead == 'r') ADVANCE(1210); - if (lookahead == 'x') ADVANCE(1201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(3358); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1003: + case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'l') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1217); - if (lookahead == 'x') ADVANCE(1202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(3356); + if (lookahead == '\r') ADVANCE(19); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1004: + case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1104); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(1262); - if (lookahead == 'v') ADVANCE(1105); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(3352); + if (lookahead == '\r') ADVANCE(20); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1005: + case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1107); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'u') ADVANCE(1266); - if (lookahead == 'v') ADVANCE(1116); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(3353); + if (lookahead == '\r') ADVANCE(21); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1006: + case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1189); - if (lookahead == '>') ADVANCE(2462); - if (lookahead == 'o') ADVANCE(1206); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '\n') ADVANCE(3357); + if (lookahead == '\r') ADVANCE(22); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1007: + case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1197); - if (lookahead == '>') ADVANCE(764); - if (lookahead == 'o') ADVANCE(1207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '$') ADVANCE(3463); + if (lookahead == '(') ADVANCE(3372); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '{') ADVANCE(3609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1008: + case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1110); - if (lookahead == '>') ADVANCE(2470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '$') ADVANCE(3463); + if (lookahead == '(') ADVANCE(3372); + if (lookahead == '{') ADVANCE(3609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); - case 1009: + case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1117); - if (lookahead == '>') ADVANCE(766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '*') ADVANCE(1911); + if (lookahead == '=') ADVANCE(1171); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3298); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); - case 1010: + case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '+') ADVANCE(1806); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'l') ADVANCE(1857); + if (lookahead == 'n') ADVANCE(1699); + if (lookahead == 'r') ADVANCE(1825); + if (lookahead == 'x') ADVANCE(1819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); - case 1011: + case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '+') ADVANCE(1806); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'l') ADVANCE(1857); + if (lookahead == 'r') ADVANCE(1825); + if (lookahead == 'x') ADVANCE(1819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); - case 1012: + case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1140); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '+') ADVANCE(1730); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'r') ADVANCE(1913); + if (lookahead == 'u') ADVANCE(1873); + if (lookahead == 'v') ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); - case 1013: + case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '+') ADVANCE(1730); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'u') ADVANCE(1873); + if (lookahead == 'v') ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); - case 1014: + case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '+') ADVANCE(1548); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'l') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(1567); + if (lookahead == 'x') ADVANCE(1559); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); - case 1015: + case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '+') ADVANCE(1492); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == '>') ADVANCE(925); + if (lookahead == 'u') ADVANCE(1612); + if (lookahead == 'v') ADVANCE(1493); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); - case 1016: + case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1032); - if (lookahead == '_') ADVANCE(1016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '+') ADVANCE(1550); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == '>') ADVANCE(927); + if (lookahead == 'o') ADVANCE(1564); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); - case 1017: + case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1033); - if (lookahead == '_') ADVANCE(1017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '+') ADVANCE(1809); + if (lookahead == '>') ADVANCE(3701); + if (lookahead == 'o') ADVANCE(1827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); - case 1018: + case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '+') ADVANCE(1738); + if (lookahead == '>') ADVANCE(3706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); - case 1019: + case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2189); - if (lookahead == '~') ADVANCE(2205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == '+') ADVANCE(1489); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == '>') ADVANCE(929); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); - case 1020: + case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2518); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '-') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1021: + case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2510); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '-') ADVANCE(1352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1022: + case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2494); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '-') ADVANCE(1396); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1023: + case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '-') ADVANCE(1328); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1024: + case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.') ADVANCE(1215); + if (lookahead == '_') ADVANCE(1197); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1025: + case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.') ADVANCE(3180); + if (lookahead == '_') ADVANCE(1216); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); - case 1026: + case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1027: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1028: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(2076); - if (lookahead == 'n') ADVANCE(1365); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1029: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(2076); - if (lookahead == 'n') ADVANCE(2049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1030: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(1356); - if (lookahead == 'n') ADVANCE(1365); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1031: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1032: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1032); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2367); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1033: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1033); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1034: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1035: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1037); - if (lookahead == 'l') ADVANCE(1246); - if (lookahead == 'r') ADVANCE(1218); - if (lookahead == 'x') ADVANCE(1201); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1036: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1037); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1037: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1038: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1252); - if (lookahead == 'o') ADVANCE(1172); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1039: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1252); - if (lookahead == 'o') ADVANCE(1181); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1040: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1252); - if (lookahead == 'o') ADVANCE(1183); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1041: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1042: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1043: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1152); - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 'u') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1044: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1152); - if (lookahead == 'o') ADVANCE(1072); - if (lookahead == 'u') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1045: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1150); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1046: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1294); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1047: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1151); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1048: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1049: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1050: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1051: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1180); - if (lookahead == 'o') ADVANCE(1212); - if (lookahead == 's') ADVANCE(1130); - if (lookahead == 'x') ADVANCE(1194); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1052: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1228); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1053: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1154); - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 'u') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1054: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1154); - if (lookahead == 'o') ADVANCE(1066); - if (lookahead == 'u') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1055: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1272); - if (lookahead == 'o') ADVANCE(1172); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1056: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1153); - if (lookahead == 'o') ADVANCE(1072); - if (lookahead == 'u') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1057: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1058: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1059: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1060: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1061: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1062: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1063: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1064: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1065: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2159); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1066: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1067: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1068: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1285); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1069: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1070: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1071: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1072: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1073: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1120); - if (lookahead == 'o') ADVANCE(2072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1074: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1290); - if (lookahead == 'o') ADVANCE(1255); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1075: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1290); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1076: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1077: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1078: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1357); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1079: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1080: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1374); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1081: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1383); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1082: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1083: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1473); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1084: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2158); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1085: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2068); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1086: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1087: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2121); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1088: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1353); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1089: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1322); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1090: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1091: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1092: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1093: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1094: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1333); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1095: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1341); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1096: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1253); - if (lookahead == 'i') ADVANCE(1241); - if (lookahead == 'o') ADVANCE(1186); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1097: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1253); - if (lookahead == 'i') ADVANCE(1245); - if (lookahead == 'o') ADVANCE(1186); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1098: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1121); - if (lookahead == 'o') ADVANCE(2072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1099: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1121); - if (lookahead == 'o') ADVANCE(1355); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1100: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1291); - if (lookahead == 'o') ADVANCE(1255); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1101: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1291); - if (lookahead == 'o') ADVANCE(1267); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1102: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1291); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1103: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1104: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1105: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1222); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1106: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1107: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1108: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1219); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1109: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1208); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1110: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1229); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1111: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1263); - if (lookahead == 'i') ADVANCE(1241); - if (lookahead == 'o') ADVANCE(1188); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1112: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1113: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1209); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1114: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1227); - if (lookahead == 'i') ADVANCE(1163); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1115: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1227); - if (lookahead == 'i') ADVANCE(1165); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1116: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1223); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1117: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1118: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1119: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1120: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(1942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1121: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1122: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1146); - if (lookahead == 't') ADVANCE(1279); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1123: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1149); - if (lookahead == 't') ADVANCE(1279); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1124: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1149); - if (lookahead == 't') ADVANCE(1284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1125: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1114); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1126: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1359); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1127: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1128: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1129: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1130: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1156); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1131: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2182); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1132: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2178); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1133: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1139); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1134: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1135: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1136: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1137: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1138: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1179); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1139: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1163); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1140: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1177); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1141: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1265); - if (lookahead == 'r') ADVANCE(1103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1142: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1269); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1143: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1144: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1145: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1146: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1147: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1165); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1148: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1182); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1149: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1150: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1151: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1361); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1152: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1080); - if (lookahead == 't') ADVANCE(1060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1153: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1080); - if (lookahead == 't') ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1154: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1093); - if (lookahead == 't') ADVANCE(1060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1155: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1485); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1156: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2251); - if (lookahead == 'r') ADVANCE(2255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1157: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1137); - if (lookahead == 'n') ADVANCE(1065); - if (lookahead == 's') ADVANCE(2147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1158: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1137); - if (lookahead == 's') ADVANCE(1364); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1159: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1137); - if (lookahead == 's') ADVANCE(2147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1160: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1155); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1161: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1162: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1163: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1164: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1165: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1166: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1167: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1218); - if (lookahead == 'x') ADVANCE(1201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1168: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1235); - if (lookahead == 'x') ADVANCE(1202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1169: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1145); - if (lookahead == 's') ADVANCE(1364); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1170: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1171: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1246); - if (lookahead == 'r') ADVANCE(1218); - if (lookahead == 'x') ADVANCE(1201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1172: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1173: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1174: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2118); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1175: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1176: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1363); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1177: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2174); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1178: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1179: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1280); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1180: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1181: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1248); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1182: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1183: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1184: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1276); - if (lookahead == 't') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1185: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1276); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1186: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1199); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1187: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1188: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1189: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1190: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1191: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1206); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1192: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1224); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1193: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1194: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1195: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1196: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1197: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1282); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1198: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); - END_STATE(); - case 1199: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.') ADVANCE(1201); + if (lookahead == '_') ADVANCE(1216); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1352); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.') ADVANCE(1201); + if (lookahead == '_') ADVANCE(1221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1192); - if (lookahead == 't') ADVANCE(1108); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.') ADVANCE(1180); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1196); - if (lookahead == 't') ADVANCE(1112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.') ADVANCE(3375); + if (lookahead == '_') ADVANCE(1221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1277); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.') ADVANCE(1220); + if (lookahead == '_') ADVANCE(1203); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == ':') ADVANCE(3864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1351); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '=') ADVANCE(1173); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '=') ADVANCE(3286); + if (lookahead == '~') ADVANCE(3292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1354); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + ADVANCE_MAP( + ',', 1943, + 'I', 1382, + '_', 1227, + 'i', 1382, + 'l', 1347, + 'r', 1337, + 'x', 1327, + '+', 1227, + '-', 1227, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + ADVANCE_MAP( + ',', 1943, + 'I', 1382, + '_', 1227, + 'i', 1239, + '+', 1227, + '-', 1227, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1350); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + ADVANCE_MAP( + ',', 1943, + 'I', 1382, + 'a', 1295, + 'i', 1313, + 'o', 1245, + 's', 3529, + 'u', 1354, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + ADVANCE_MAP( + ',', 1943, + 'I', 1382, + 'i', 1382, + 'l', 1347, + 'r', 1337, + 'x', 1327, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2164); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'I') ADVANCE(1382); + if (lookahead == 'i') ADVANCE(1382); + if (lookahead == 'r') ADVANCE(1369); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2267); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'I') ADVANCE(1382); + if (lookahead == 'i') ADVANCE(1382); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'I') ADVANCE(1382); + if (lookahead == 'i') ADVANCE(1239); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'N') ADVANCE(1383); + if (lookahead == 'f') ADVANCE(3150); + if (lookahead == 'n') ADVANCE(3111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1278); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1215); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1216); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1218); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1191); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1173); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1219); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1174); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1161); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1223); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1162); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1175); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1227); + if (lookahead == 'l') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1337); + if (lookahead == 'x') ADVANCE(1327); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1227); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1176); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1227); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1227); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1227); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1275); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1307); + if (lookahead == 'o') ADVANCE(1333); + if (lookahead == 's') ADVANCE(1274); + if (lookahead == 'x') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1295); + if (lookahead == 'o') ADVANCE(1245); + if (lookahead == 'u') ADVANCE(1354); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1106); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1378); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1306); + if (lookahead == 'o') ADVANCE(1330); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1379); + if (lookahead == 'e') ADVANCE(1272); + if (lookahead == 'o') ADVANCE(3143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1343); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(980); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1359); + if (lookahead == 'o') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(1366); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'c') ADVANCE(1248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'c') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1258); - if (lookahead == 't') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'c') ADVANCE(1279); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1273); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'c') ADVANCE(1280); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'c') ADVANCE(1259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'd') ADVANCE(1371); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'd') ADVANCE(1176); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'd') ADVANCE(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1259); - if (lookahead == 't') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1259); - if (lookahead == 't') ADVANCE(1148); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1274); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1273); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3158); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1372); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1331); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1332); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1374); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'u') ADVANCE(1302); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1374); + if (lookahead == 'u') ADVANCE(1302); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1375); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1272); + if (lookahead == 'o') ADVANCE(3143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1241); + if (lookahead == 'o') ADVANCE(1368); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1339); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1353); + if (lookahead == 'i') ADVANCE(1348); + if (lookahead == 'o') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1332); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1338); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'f') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'f') ADVANCE(2952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'g') ADVANCE(1291); + if (lookahead == 't') ADVANCE(1372); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(1299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1250); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(2996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1081); - if (lookahead == 'y') ADVANCE(2110); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1081); - if (lookahead == 'y') ADVANCE(1358); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1220); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3200); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3166); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1268); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(1193); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1270); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(1290); + if (lookahead == 'k') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(1290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1226); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1358); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1164); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1247); + if (lookahead == 'r') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1166); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1105); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1116); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1373); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2141); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1351); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1142); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1363); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1143); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'k') ADVANCE(3093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'k') ADVANCE(1256); + if (lookahead == 't') ADVANCE(1243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(2271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1298); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1196); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1498); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1177); + if (lookahead == 'r') ADVANCE(1178); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1288); + if (lookahead == 's') ADVANCE(3254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1509); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1497); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1347); + if (lookahead == 'r') ADVANCE(1337); + if (lookahead == 'x') ADVANCE(1327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2369); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1350); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2209); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(3279); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(3005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2415); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1349); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(2963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(3207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2368); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1316); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1368); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1317: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1318: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1318); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1319: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1319); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1320: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1320); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1321: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1321); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1322: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1322); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1323: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == '-') ADVANCE(1325); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(3123); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1324: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1325: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1327); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1364); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1326: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1327: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1328); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1320); + if (lookahead == 't') ADVANCE(1270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1328: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1330); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1329: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1369); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1330: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(3105); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1331: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(3000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1332: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1332); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(3223); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1333: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == '-') ADVANCE(1335); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1175); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1334: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(1336); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1335: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(1337); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1336: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(1339); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1179); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1337: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(1338); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1338: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(1340); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1339: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(2134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1340: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1341: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == '-') ADVANCE(1343); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1357); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1342: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(1344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1343: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(1345); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 's') ADVANCE(1139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1344: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(1347); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 's') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1345: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(1346); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 's') ADVANCE(3532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1346: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(1348); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 's') ADVANCE(1253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1347: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(2124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 's') ADVANCE(1254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1348: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 's') ADVANCE(1355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1349: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 's') ADVANCE(1356); + if (lookahead == 't') ADVANCE(1289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1350: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1350); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 's') ADVANCE(1251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1351: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1351); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 's') ADVANCE(1367); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1352: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1352); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1380); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1353: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1353); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1354: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1354); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1159); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1355: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1355); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(3012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1356: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1356); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1166); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1357: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1357); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1358: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1358); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1359: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1359); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1360: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1360); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1361: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1361); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1362: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1362); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1360); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1363: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1363); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1276); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1364: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1364); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1194); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1365: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1366); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1366: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1368); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1278); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1367: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1369); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(1269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1368: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1367); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1342); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1369: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1250); + if (lookahead == 'y') ADVANCE(3193); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1370: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1371); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1260); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1371: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1372: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1340); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1373: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'v') ADVANCE(1267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1374: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1374); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'w') ADVANCE(3247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1375: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == '-') ADVANCE(1377); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'w') ADVANCE(1284); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1376: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'e') ADVANCE(1378); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'w') ADVANCE(1292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1377: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'e') ADVANCE(1379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'w') ADVANCE(1293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1378: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'n') ADVANCE(1380); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'y') ADVANCE(3240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1379: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'n') ADVANCE(1381); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'y') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1380: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'v') ADVANCE(1945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'y') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1381: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'v') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1382: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1383: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1384: - ACCEPT_TOKEN(anon_sym_true); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1388); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1385: - ACCEPT_TOKEN(anon_sym_true); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1386: - ACCEPT_TOKEN(anon_sym_true); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1383); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1387: - ACCEPT_TOKEN(anon_sym_true); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1384); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1388: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1389); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1389: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2279); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1390: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1391: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3516); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1392: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1393: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1204); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1394: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1392); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1395: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(1422); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'r') ADVANCE(2171); - if (lookahead == 'u') ADVANCE(1461); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1396: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(1423); - if (lookahead == '>') ADVANCE(2470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1395); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1397: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(1438); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'n') ADVANCE(1419); - if (lookahead == 'r') ADVANCE(1446); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1393); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1398: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(1439); - if (lookahead == '>') ADVANCE(2462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3514); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1399: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(1443); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'n') ADVANCE(1419); - if (lookahead == 'r') ADVANCE(1450); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); END_STATE(); case 1400: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(1424); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'r') ADVANCE(2171); - if (lookahead == 'u') ADVANCE(1465); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '-') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1401: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(1445); - if (lookahead == '>') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '-') ADVANCE(1905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1402: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(1425); - if (lookahead == '>') ADVANCE(766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '-') ADVANCE(1764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1403: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '-') ADVANCE(1417); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '-') ADVANCE(1940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1404: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '-') ADVANCE(1470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '-') ADVANCE(1906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1405: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '-') ADVANCE(1430); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '.') ADVANCE(1660); + if (lookahead == '_') ADVANCE(1405); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1406: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '-') ADVANCE(1471); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1407: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '=') ADVANCE(2189); - if (lookahead == '~') ADVANCE(2206); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '.') ADVANCE(1181); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1408: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(2518); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '.') ADVANCE(1407); + if (lookahead == '_') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1409: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(2510); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '.') ADVANCE(1407); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1410: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(2494); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1411: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(2502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '.') ADVANCE(3374); + if (lookahead == '_') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1412: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '.') ADVANCE(3181); + if (lookahead == '_') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1413: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '.') ADVANCE(1665); + if (lookahead == '_') ADVANCE(1413); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1414: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '/') ADVANCE(1912); + if (lookahead == '=') ADVANCE(1172); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1415: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ':') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1416: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'a') ADVANCE(1452); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(1171); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1417: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'a') ADVANCE(1437); - if (lookahead == 'o') ADVANCE(1448); - if (lookahead == 's') ADVANCE(1426); - if (lookahead == 'x') ADVANCE(1444); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(1172); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1418: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'd') ADVANCE(2161); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(1173); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1419: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'd') ADVANCE(1456); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(1173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1420: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'd') ADVANCE(2228); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == '>') ADVANCE(926); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1421: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'd') ADVANCE(2260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == '>') ADVANCE(928); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1422: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(1409); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == '>') ADVANCE(930); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1423: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(1453); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == '>') ADVANCE(931); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1424: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(1413); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'N') ADVANCE(1635); + if (lookahead == 'f') ADVANCE(3151); + if (lookahead == 'n') ADVANCE(2166); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1425: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(1454); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'N') ADVANCE(1635); + if (lookahead == 'f') ADVANCE(3151); + if (lookahead == 'n') ADVANCE(3114); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1426: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'h') ADVANCE(1433); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'N') ADVANCE(1635); + if (lookahead == 'f') ADVANCE(2097); + if (lookahead == 'n') ADVANCE(2166); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1427: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'h') ADVANCE(2183); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == '_') ADVANCE(1427); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1428: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'h') ADVANCE(2179); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1600); + if (lookahead == 'o') ADVANCE(1537); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1429: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'i') ADVANCE(1459); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1600); + if (lookahead == 'o') ADVANCE(1543); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1430: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'i') ADVANCE(1436); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1600); + if (lookahead == 'o') ADVANCE(1545); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1431: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'i') ADVANCE(1462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1535); + if (lookahead == 'o') ADVANCE(1561); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1432: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'i') ADVANCE(1464); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1535); + if (lookahead == 'o') ADVANCE(1562); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1433: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'l') ADVANCE(2252); - if (lookahead == 'r') ADVANCE(2256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1519); + if (lookahead == 'o') ADVANCE(1450); + if (lookahead == 'u') ADVANCE(1602); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1434: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'n') ADVANCE(1418); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1519); + if (lookahead == 'o') ADVANCE(1453); + if (lookahead == 'u') ADVANCE(1605); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1435: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'n') ADVANCE(2056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1517); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1436: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'n') ADVANCE(2175); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1632); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1437: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'n') ADVANCE(1421); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1518); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1438: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(1408); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1633); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1439: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(1468); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1586); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1440: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(1447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1587); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1441: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(1460); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1521); + if (lookahead == 'o') ADVANCE(1450); + if (lookahead == 'u') ADVANCE(1602); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1442: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(1420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1613); + if (lookahead == 'o') ADVANCE(1537); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1443: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(1412); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'a') ADVANCE(1520); + if (lookahead == 'o') ADVANCE(1453); + if (lookahead == 'u') ADVANCE(1605); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1444: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(1449); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'c') ADVANCE(1502); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1445: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(1469); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'c') ADVANCE(1503); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1446: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(1398); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'c') ADVANCE(1505); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1447: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2166); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'c') ADVANCE(1504); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1448: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2268); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'c') ADVANCE(1467); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1449: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'c') ADVANCE(1475); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1450: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(1401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'd') ADVANCE(1625); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1451: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(1411); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'd') ADVANCE(1459); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1452: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(1467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'd') ADVANCE(1474); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1453: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(1451); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'd') ADVANCE(1627); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1454: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(1455); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1496); + if (lookahead == 'o') ADVANCE(3144); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1455: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(1415); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1630); + if (lookahead == 'o') ADVANCE(1603); + if (lookahead == 'u') ADVANCE(1525); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1638); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1456: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 's') ADVANCE(1404); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1498); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1457: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 's') ADVANCE(1406); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(2978); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1458: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(1416); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(2103); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1459: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(1403); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(3231); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1460: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(1405); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(2196); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1461: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(1396); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(2218); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1462: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(1427); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1962); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1463: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(1410); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(2263); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1464: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(1428); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(3264); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1465: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(1402); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(3137); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1466: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(1414); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(2971); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1467: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(1457); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(3214); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1468: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'u') ADVANCE(1463); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(2079); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1469: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'u') ADVANCE(1466); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1977); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1470: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'w') ADVANCE(1431); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(3100); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1471: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'w') ADVANCE(1432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(2133); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1472: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(3159); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1473: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(3131); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1474: - ACCEPT_TOKEN(anon_sym_false); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(2021); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1475: - ACCEPT_TOKEN(anon_sym_false); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(2041); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1476: - ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1601); + if (lookahead == 'i') ADVANCE(1590); + if (lookahead == 'o') ADVANCE(1547); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1477: - ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1601); + if (lookahead == 'i') ADVANCE(1594); + if (lookahead == 'o') ADVANCE(1547); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(3144); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(2091); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1631); + if (lookahead == 'o') ADVANCE(1603); + if (lookahead == 'u') ADVANCE(1525); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1638); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1435); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1575); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1437); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1484: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1572); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1610); + if (lookahead == 'i') ADVANCE(1590); + if (lookahead == 'o') ADVANCE(1549); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1486: - ACCEPT_TOKEN(anon_sym_null); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1565); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1487: - ACCEPT_TOKEN(anon_sym_null); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1574); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1488: - ACCEPT_TOKEN(anon_sym_null); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1566); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1489: - ACCEPT_TOKEN(anon_sym_null); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1581); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1490: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1579); + if (lookahead == 'i') ADVANCE(1528); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1491: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1579); + if (lookahead == 'i') ADVANCE(1530); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1492: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1421); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1493: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1577); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1494: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1500); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1495: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'e') ADVANCE(1499); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1496: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'f') ADVANCE(2953); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1497: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'f') ADVANCE(1950); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1498: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1303); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'g') ADVANCE(1513); + if (lookahead == 't') ADVANCE(1620); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1499: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2772); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'g') ADVANCE(1516); + if (lookahead == 't') ADVANCE(1620); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1500: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3767); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'g') ADVANCE(1516); + if (lookahead == 't') ADVANCE(1623); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1501: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1706); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'h') ADVANCE(1490); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1502: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4090); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'h') ADVANCE(2115); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1503: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(781); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'h') ADVANCE(3167); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1504: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'h') ADVANCE(2121); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1505: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'h') ADVANCE(3201); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1506: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(779); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'h') ADVANCE(1514); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1507: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3769); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'h') ADVANCE(1491); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1508: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4092); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'i') ADVANCE(1451); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1509: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'i') ADVANCE(1439); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1510: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'i') ADVANCE(1542); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1511: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 1543, - '-', 1545, - '>', 2478, - 'I', 1614, - '_', 1545, - 'i', 1614, - 'n', 1555, - 'r', 1589, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'i') ADVANCE(1452); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1512: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1558); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(1602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'i') ADVANCE(1440); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1513: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1577); - if (lookahead == '>') ADVANCE(2462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'i') ADVANCE(1592); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1514: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1559); - if (lookahead == '>') ADVANCE(2470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'i') ADVANCE(1530); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1515: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 1576, - '>', 2478, - 'I', 1614, - 'i', 1614, - 'n', 1555, - 'r', 1589, - 'B', 2379, - 'b', 2379, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'i') ADVANCE(1544); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1516: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1576); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'n') ADVANCE(1555); - if (lookahead == 'r') ADVANCE(1589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'i') ADVANCE(1599); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1517: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 1580, - '>', 761, - 'I', 1614, - 'i', 1614, - 'n', 1555, - 'r', 1591, - 'B', 2379, - 'b', 2379, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'k') ADVANCE(3094); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1518: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1580); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'n') ADVANCE(1555); - if (lookahead == 'r') ADVANCE(1591); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'k') ADVANCE(2127); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1519: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 1544, - '-', 1545, - '>', 761, - 'I', 1614, - '_', 1545, - 'i', 1614, - 'n', 1555, - 'r', 1591, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'k') ADVANCE(1460); + if (lookahead == 't') ADVANCE(1445); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1520: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1560); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(1606); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'k') ADVANCE(1460); + if (lookahead == 't') ADVANCE(1447); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1521: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1584); - if (lookahead == '>') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'k') ADVANCE(1473); + if (lookahead == 't') ADVANCE(1445); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1522: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1561); - if (lookahead == '>') ADVANCE(766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(2271); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1523: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1509); + if (lookahead == 's') ADVANCE(2145); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1524: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1509); + if (lookahead == 's') ADVANCE(3255); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1525: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1522); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1526: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1436); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1527: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(2274); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1438); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1528: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '=') ADVANCE(2189); - if (lookahead == '~') ADVANCE(2205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1465); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1529: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2518); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1466); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1530: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2510); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1468); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1531: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2494); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1469); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1532: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(1571); + if (lookahead == 'x') ADVANCE(1558); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1533: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(1584); + if (lookahead == 'x') ADVANCE(1559); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1534: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1512); + if (lookahead == 's') ADVANCE(2145); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1535: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1593); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1536: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'l') ADVANCE(1597); + if (lookahead == 'r') ADVANCE(1571); + if (lookahead == 'x') ADVANCE(1558); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1537: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1614); - if (lookahead == '_') ADVANCE(1545); - if (lookahead == 'i') ADVANCE(1614); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1545); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'n') ADVANCE(1591); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1538: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1614); - if (lookahead == '_') ADVANCE(1545); - if (lookahead == 'i') ADVANCE(1550); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1545); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'n') ADVANCE(2964); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1539: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1614); - if (lookahead == 'i') ADVANCE(1614); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'n') ADVANCE(3208); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1540: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1614); - if (lookahead == 'i') ADVANCE(1550); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'n') ADVANCE(1971); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1541: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1614); - if (lookahead == 'i') ADVANCE(1572); - if (lookahead == 'o') ADVANCE(1554); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'n') ADVANCE(2139); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1542: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1614); - if (lookahead == 'i') ADVANCE(1572); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'n') ADVANCE(1621); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1543: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1545); - if (lookahead == 'o') ADVANCE(1529); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'n') ADVANCE(1595); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1544: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1545); - if (lookahead == 'o') ADVANCE(1533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'n') ADVANCE(1624); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1545: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1545); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'n') ADVANCE(1596); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1546: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1546); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'o') ADVANCE(1617); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1547: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'o') ADVANCE(1556); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1548: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'o') ADVANCE(1420); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1549: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1575); - if (lookahead == 'o') ADVANCE(1586); - if (lookahead == 's') ADVANCE(1564); - if (lookahead == 'x') ADVANCE(1581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'o') ADVANCE(1557); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1550: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'o') ADVANCE(1622); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1551: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'o') ADVANCE(1563); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1552: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(2159); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'o') ADVANCE(1578); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1553: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(2259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'o') ADVANCE(1564); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1554: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(2226); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'o') ADVANCE(1580); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1555: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(1597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'o') ADVANCE(1626); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1556: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1551); - if (lookahead == 't') ADVANCE(1548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'p') ADVANCE(3124); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1557: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1551); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'p') ADVANCE(2073); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1558: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'p') ADVANCE(1552); + if (lookahead == 't') ADVANCE(1484); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1559: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'p') ADVANCE(1554); + if (lookahead == 't') ADVANCE(1487); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1560: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1618); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1561: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1595); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(3106); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1562: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(2182); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(2067); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1563: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(2178); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(3001); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1564: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(1570); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(2085); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1565: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1599); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(3224); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1566: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1571); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(2061); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1567: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1603); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1189); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1568: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1605); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1481); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1569: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1619); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1570: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'l') ADVANCE(2251); - if (lookahead == 'r') ADVANCE(2255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1448); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1571: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(2174); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1551); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1572: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1538); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1573: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(2046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1539); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1574: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1552); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1540); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1575: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1553); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1526); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1576: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1541); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1577: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1527); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1578: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1608); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1579: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1464); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1580: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1611); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1581: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1585); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1582: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1601); - if (lookahead == 's') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1483); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1583: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1601); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1449); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1584: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1553); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1585: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2164); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'r') ADVANCE(1423); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1586: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2267); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1140); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1587: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1956); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1588: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1457); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1589: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1513); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1458); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1590: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1604); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1591: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1521); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1606); + if (lookahead == 't') ADVANCE(1510); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1592: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1615); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1593: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1463); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1594: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1609); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1595: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1607); + if (lookahead == 't') ADVANCE(1510); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1596: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1607); + if (lookahead == 't') ADVANCE(1515); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1597: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(1525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1472); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1598: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(1526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1462); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1599: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 's') ADVANCE(1616); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1600: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1444); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1601: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1150); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1602: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1514); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1160); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1603: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1642); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1604: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(2184); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1605: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(2003); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1606: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1167); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1607: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(2009); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1608: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1598); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1133); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1609: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(1604); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(3013); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1610: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(1607); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1989); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1611: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(1567); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(2208); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1612: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(1568); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1192); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1613: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1446); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1614: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1422); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1615: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1486); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1616: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1653); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'n') ADVANCE(1648); - if (lookahead == 'r') ADVANCE(2170); - if (lookahead == 'u') ADVANCE(1692); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 't') ADVANCE(1488); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1617: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1669); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'l') ADVANCE(1687); - if (lookahead == 'r') ADVANCE(1678); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1570); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1618: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1637); - if (lookahead == '-') ADVANCE(593); - if (lookahead == '_') ADVANCE(1637); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1461); + if (lookahead == 'y') ADVANCE(3194); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1619: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1672); - if (lookahead == '>') ADVANCE(764); - if (lookahead == 'o') ADVANCE(1680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1461); + if (lookahead == 'y') ADVANCE(2109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1620: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1652); - if (lookahead == '>') ADVANCE(766); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1573); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1621: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(676); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1470); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1622: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(753); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1614); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1623: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(691); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1576); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1624: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(608); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1471); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1625: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(797); - if (lookahead == '_') ADVANCE(1633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1529); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1626: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(694); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1583); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1627: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(763); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'u') ADVANCE(1531); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1628: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(765); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'v') ADVANCE(1482); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1629: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(767); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'v') ADVANCE(1493); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1630: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(768); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'w') ADVANCE(2190); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1631: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1633); - if (lookahead == 'b') ADVANCE(2372); - if (lookahead == 'o') ADVANCE(2391); - if (lookahead == 'x') ADVANCE(2399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'w') ADVANCE(3248); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1632: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1633); - if (lookahead == 'b') ADVANCE(1709); - if (lookahead == 'o') ADVANCE(1711); - if (lookahead == 'x') ADVANCE(1712); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'y') ADVANCE(3241); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1633: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'y') ADVANCE(2055); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1634: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1625); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1638); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1635: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2281); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1636: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1640); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1637: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1637); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1635); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1638: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2300); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1639: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1690); - if (lookahead == 'e') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1636); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1640: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1661); - if (lookahead == 'u') ADVANCE(1662); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1641); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1641: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1661); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2279); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1642: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1681); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1643: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(3697); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); END_STATE(); case 1644: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1654); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '=') ADVANCE(936); + if (lookahead == '~') ADVANCE(1910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1645: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '>') ADVANCE(3736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1646: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2160); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '>') ADVANCE(3731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1647: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '>') ADVANCE(3721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1648: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1621); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '>') ADVANCE(3726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1649: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2082); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + 'I', 1925, + '_', 1672, + 'i', 1925, + 'l', 1862, + 'r', 1849, + 'x', 1820, + '+', 1672, + '-', 1672, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1650: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1390); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I') ADVANCE(1925); + if (lookahead == '_') ADVANCE(1672); + if (lookahead == 'i') ADVANCE(1689); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1672); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1651: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1480); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + 'I', 1925, + 'a', 1777, + 'i', 1798, + 'o', 1704, + 's', 3529, + 'u', 1867, + 'B', 3524, + 'b', 3524, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1652: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1683); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I') ADVANCE(1925); + if (lookahead == 'i') ADVANCE(1925); + if (lookahead == 'l') ADVANCE(1862); + if (lookahead == 'r') ADVANCE(1849); + if (lookahead == 'x') ADVANCE(1820); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1653: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1628); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I') ADVANCE(1925); + if (lookahead == 'i') ADVANCE(1925); + if (lookahead == 'r') ADVANCE(1890); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1654: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(2114); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I') ADVANCE(1925); + if (lookahead == 'i') ADVANCE(1925); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1655: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(1688); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I') ADVANCE(1925); + if (lookahead == 'i') ADVANCE(1689); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1656: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1492); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N') ADVANCE(1926); + if (lookahead == 'f') ADVANCE(2098); + if (lookahead == 'n') ADVANCE(2167); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1657: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1658); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N') ADVANCE(1926); + if (lookahead == 'f') ADVANCE(3152); + if (lookahead == 'n') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1658: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1623); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N') ADVANCE(1926); + if (lookahead == 'f') ADVANCE(3152); + if (lookahead == 'n') ADVANCE(3113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1659: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N') ADVANCE(1926); + if (lookahead == 'f') ADVANCE(3152); + if (lookahead == 'n') ADVANCE(2167); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1660: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1624); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1661: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1689); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1662: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1663); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1663: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1676); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1702); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1664: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1676); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1665: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1646); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1666: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2389); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1667: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2055); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1668); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1668: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1648); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1669: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1627); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1670: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1691); - if (lookahead == 'u') ADVANCE(1659); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1705); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1672); + if (lookahead == 'l') ADVANCE(1857); + if (lookahead == 'r') ADVANCE(1848); + if (lookahead == 'x') ADVANCE(1819); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1671: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1691); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1705); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1672); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1672: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1697); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1673: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1679); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1870); + if (lookahead == 'o') ADVANCE(1795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1674: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1791); + if (lookahead == 'o') ADVANCE(1826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1675: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1682); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1791); + if (lookahead == 'o') ADVANCE(1821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1676: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1675); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1776); + if (lookahead == 'o') ADVANCE(1698); + if (lookahead == 'u') ADVANCE(1872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1677: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1696); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1776); + if (lookahead == 'o') ADVANCE(1697); + if (lookahead == 'u') ADVANCE(1872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1678: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1619); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1679: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1680: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1983); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1681: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1622); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1682: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1695); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1683: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1686); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1909); + if (lookahead == 'e') ADVANCE(1745); + if (lookahead == 'o') ADVANCE(2092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1684: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1685); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1685: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1674); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1802); + if (lookahead == 'o') ADVANCE(1839); + if (lookahead == 's') ADVANCE(1753); + if (lookahead == 'x') ADVANCE(1813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1686: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1630); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1777); + if (lookahead == 'o') ADVANCE(1704); + if (lookahead == 'u') ADVANCE(1867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1687: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1649); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1688: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1693); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'a') ADVANCE(1885); + if (lookahead == 'o') ADVANCE(1801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1689: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1651); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1690: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1644); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'c') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1691: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1710); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'c') ADVANCE(1751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1692: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1620); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'c') ADVANCE(1752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1693: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1992); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'c') ADVANCE(1749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1694: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1629); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'c') ADVANCE(1750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1695: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1626); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'c') ADVANCE(1723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1696: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1650); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'c') ADVANCE(1726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1697: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1694); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'd') ADVANCE(1897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1698: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1662); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'd') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1699: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(2389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'd') ADVANCE(1854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1700: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1705); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'd') ADVANCE(1914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1701: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'd') ADVANCE(1719); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1702: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1501); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'd') ADVANCE(1918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1703: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1707); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'd') ADVANCE(1725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1704: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1702); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'd') ADVANCE(1900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1705: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1510); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1706: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1703); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1707: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1708); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1708: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1504); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1709: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1709); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1710: - ACCEPT_TOKEN(sym_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2209); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1711: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1711); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1712: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1712); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1713: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1746); + if (lookahead == 'o') ADVANCE(3145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1714: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2722); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'r') ADVANCE(1815); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1904); + if (lookahead == 'o') ADVANCE(1881); + if (lookahead == 'u') ADVANCE(1781); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1715: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2702); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'u') ADVANCE(1839); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1904); + if (lookahead == 'u') ADVANCE(1781); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1716: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2723); - if (lookahead == '>') ADVANCE(2462); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1717: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2703); - if (lookahead == '>') ADVANCE(2470); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1718: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'r') ADVANCE(1818); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3161); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1719: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'u') ADVANCE(1841); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1720: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(681); - if (lookahead == '>') ADVANCE(764); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1721: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '>') ADVANCE(766); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1722: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(1882); - if (lookahead == '_') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1737); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1723: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(1761); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1724: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(1763); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1725: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(1766); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1726: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(1768); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1727: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(1884); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1871); + if (lookahead == 'i') ADVANCE(1856); + if (lookahead == 'o') ADVANCE(1807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1728: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(1888); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1745); + if (lookahead == 'o') ADVANCE(2092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1729: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(1890); - if (lookahead == '_') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1737); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1730: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(794); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1731: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(2789); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1903); + if (lookahead == 'o') ADVANCE(1878); + if (lookahead == 'u') ADVANCE(1781); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1732: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1862); - if (lookahead == 'f') ADVANCE(1895); - if (lookahead == 'n') ADVANCE(1863); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1903); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'u') ADVANCE(1781); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1733: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(1885); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1903); + if (lookahead == 'u') ADVANCE(1781); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1734: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(1886); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1690); + if (lookahead == 'o') ADVANCE(1899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1735: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1737); - if (lookahead == 'b') ADVANCE(2376); - if (lookahead == 'o') ADVANCE(2395); - if (lookahead == 'x') ADVANCE(2403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1739); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1736: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1737); - if (lookahead == 'b') ADVANCE(2376); - if (lookahead == 'o') ADVANCE(2395); - if (lookahead == 'x') ADVANCE(2403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1742); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1737: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1737); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1738: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1722); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1739: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1738); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1877); + if (lookahead == 'i') ADVANCE(1863); + if (lookahead == 'o') ADVANCE(1808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1740: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1739); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1741: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1729); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1742: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1741); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1743: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1742); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1744: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1790); - if (lookahead == 'o') ADVANCE(1824); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1745: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1790); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'f') ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1746: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1789); - if (lookahead == 'o') ADVANCE(1754); - if (lookahead == 'u') ADVANCE(1842); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'f') ADVANCE(2954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1747: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1788); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'g') ADVANCE(1769); + if (lookahead == 't') ADVANCE(1892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1748: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1859); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'g') ADVANCE(1773); + if (lookahead == 't') ADVANCE(1895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1749: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1836); - if (lookahead == 'o') ADVANCE(1798); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(2116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1750: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1832); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(2122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1751: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1781); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(3203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1752: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1767); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(3168); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1753: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1782); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(1784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1754: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1852); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(1762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1755: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1762); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(1922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1756: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1388); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(1923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1757: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1478); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(1771); + if (lookahead == 'k') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1758: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1778); - if (lookahead == 'o') ADVANCE(1894); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(1771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1759: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1858); - if (lookahead == 'u') ADVANCE(1793); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1868); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1760: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1779); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1761: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1799); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1762: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1724); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1763: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1801); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1880); + if (lookahead == 'r') ADVANCE(1729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1764: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1747); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1765: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1837); - if (lookahead == 'i') ADVANCE(1833); - if (lookahead == 'o') ADVANCE(1807); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1766: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1802); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1703); + if (lookahead == 'r') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1767: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1726); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1768: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1803); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1769: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1822); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1770: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1902); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1771: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1820); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1772: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1903); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1773: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1907); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(1865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1774: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1915); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'k') ADVANCE(2128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1775: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1917); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'k') ADVANCE(3095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1776: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1922); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'k') ADVANCE(1720); + if (lookahead == 't') ADVANCE(1692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1777: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1826); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'k') ADVANCE(1707); + if (lookahead == 't') ADVANCE(1694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1778: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(1896); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(2271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1779: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(1787); - if (lookahead == 't') ADVANCE(1850); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1760); + if (lookahead == 'n') ADVANCE(1700); + if (lookahead == 's') ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1780: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1786); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1760); + if (lookahead == 's') ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1781: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1910); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1782: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1914); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1679); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1783: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1755); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1784: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1750); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1919); + if (lookahead == 'r') ADVANCE(1920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1785: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1806); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1786: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1796); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1787: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1830); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1788: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(1909); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1789: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(1773); - if (lookahead == 't') ADVANCE(1753); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1857); + if (lookahead == 'r') ADVANCE(1848); + if (lookahead == 'x') ADVANCE(1819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1790: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1829); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1768); + if (lookahead == 's') ADVANCE(2146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1791: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1490); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1792: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1784); - if (lookahead == 's') ADVANCE(1893); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(1862); + if (lookahead == 'r') ADVANCE(1849); + if (lookahead == 'x') ADVANCE(1820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1793: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1791); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1794: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1748); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(2140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1795: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1819); - if (lookahead == 'x') ADVANCE(1813); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(1858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1796: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1774); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(2965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1797: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1775); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(3209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1798: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1835); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1799: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1854); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(1894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1800: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2053); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(1917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1801: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1855); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(1864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1802: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1857); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(1702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1803: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1856); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(1896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1804: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1916); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1889); + if (lookahead == 't') ADVANCE(1687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1805: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1918); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1806: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1851); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1807: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1812); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1808: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1849); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1809: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1838); - if (lookahead == 'u') ADVANCE(1793); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1868); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1810: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1825); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1811: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1823); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1812: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1906); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1813: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1811); - if (lookahead == 't') ADVANCE(1771); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1814: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1847); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1815: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1716); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1816: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1846); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'o') ADVANCE(1899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1817: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1752); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'p') ADVANCE(2074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1818: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1720); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'p') ADVANCE(3125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1819: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1810); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'p') ADVANCE(1812); + if (lookahead == 't') ADVANCE(1737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1820: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1804); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'p') ADVANCE(1815); + if (lookahead == 't') ADVANCE(1741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1821: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1764); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(2068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1822: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1794); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(2086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1823: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1840); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(2062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1824: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1897); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1825: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1912); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1190); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1826: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1923); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(3107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1827: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1805); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(3003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1828: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2145); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(3225); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1829: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1757); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1830: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1845); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1831: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1770); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1832: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1908); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1833: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1843); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1834: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1772); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1835: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1844); - if (lookahead == 't') ADVANCE(1785); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1836: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1751); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1837: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1723); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1838: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1877); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1839: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1717); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1840: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1725); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1841: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1721); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1842: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1899); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1843: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1905); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1844: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1911); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1845: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1777); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1846: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1756); - if (lookahead == 'y') ADVANCE(1901); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1847: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1756); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1848: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1793); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1868); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1849: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1817); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'r') ADVANCE(1814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1850: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1827); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1851: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1776); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1852: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1797); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1853: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1769); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(3531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1854: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1904); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1401); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1855: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1913); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1856: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1921); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1857: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1924); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1718); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1858: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'w') ADVANCE(1900); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1875); + if (lookahead == 't') ADVANCE(1761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1859: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(1920); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1712); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1860: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-' || - lookahead == '?') ADVANCE(1892); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1860); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1861: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1868); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1862: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1867); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1863: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1865); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1864: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1872); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1869); + if (lookahead == 't') ADVANCE(1772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1865: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1871); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1866: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1873); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 's') ADVANCE(1404); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1867: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1870); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(2004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1868: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1892); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(2185); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1869: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1862); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(2010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1870: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1864); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1871: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1866); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1151); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1872: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1874); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1161); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1873: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1875); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1874: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1892); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(3015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1875: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1898); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1168); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1876: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1876); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1877: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2209); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1878: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1878); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1879: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1727); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(2209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1880: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1400); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1881: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1402); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1882: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1879); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1883: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1730); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1884: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1885: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1881); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1886: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1883); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1887: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1734); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1888: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1887); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(1866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1889: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1728); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1890: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1889); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1711); + if (lookahead == 'y') ADVANCE(2110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1891: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1891); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1711); + if (lookahead == 'y') ADVANCE(3195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1892: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1893: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1364); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1894: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1355); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1895: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1356); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1896: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1897: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1351); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1786); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1898: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1899: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1900: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(1788); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1901: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1358); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'v') ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1902: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1319); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'v') ADVANCE(1743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1903: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1357); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'w') ADVANCE(2191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1904: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1330); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'w') ADVANCE(3249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1905: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'w') ADVANCE(1765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1906: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1352); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'w') ADVANCE(1770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1907: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1374); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'y') ADVANCE(2056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1908: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1318); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'y') ADVANCE(3242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1909: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1361); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'y') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1910: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1359); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1911: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1332); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1912: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1354); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1913: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1914: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1360); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1915: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1353); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1916: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1916); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1321); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1917: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1322); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1918: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1363); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1919: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1382); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1920: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1921: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1922: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1362); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3335); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1923: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1350); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3333); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1924: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1320); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1925: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1926: - ACCEPT_TOKEN(sym__newline); - if (lookahead == ':') ADVANCE(2453); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(565); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1927: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\n') ADVANCE(1926); - if (lookahead == '\r') ADVANCE(21); - if (lookahead == ':') ADVANCE(2453); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1927); - if (lookahead == 0x0b || - lookahead == '\f') ADVANCE(565); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1928: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1928); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1929: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1930: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1931: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1932: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2279); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1933: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1934: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1935: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3516); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1936: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1403); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1937: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1415); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1938: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1939: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1940: - ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1317); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4415); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1941: - ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1317); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4150); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1942: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3514); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1943: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1320); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); case 1944: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1320); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4188); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == ',') ADVANCE(1951); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1946); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1944); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1945); END_STATE(); case 1945: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1320); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == ',') ADVANCE(1951); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1946); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1949); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1945); END_STATE(); case 1946: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == ',') ADVANCE(1951); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1946); END_STATE(); case 1947: - ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1321); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4443); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == ',') ADVANCE(1951); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1947); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1948); END_STATE(); case 1948: - ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1321); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4178); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == ',') ADVANCE(1951); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1949); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1948); END_STATE(); case 1949: - ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1321); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == ',') ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1949); END_STATE(); case 1950: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1951); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1950); END_STATE(); case 1951: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1322); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4444); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); END_STATE(); case 1952: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1322); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4179); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == ',') ADVANCE(1957); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1953); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1955); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1952); END_STATE(); case 1953: - ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1322); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == ',') ADVANCE(1957); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1953); END_STATE(); case 1954: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == ',') ADVANCE(1957); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1955); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1954); END_STATE(); case 1955: - ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1319); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4426); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == ',') ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1955); END_STATE(); case 1956: - ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1319); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4161); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1957); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1957: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1319); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1957); END_STATE(); case 1958: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == ',') ADVANCE(1963); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1959); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1959: - ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == ',') ADVANCE(1963); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); END_STATE(); case 1960: - ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == ',') ADVANCE(1963); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1960); END_STATE(); case 1961: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == ',') ADVANCE(1963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); END_STATE(); case 1962: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1963); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1962); END_STATE(); case 1963: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1963); END_STATE(); case 1964: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + if (lookahead == ',') ADVANCE(1966); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1964); END_STATE(); case 1965: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + if (lookahead == ',') ADVANCE(1966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1965); END_STATE(); case 1966: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1966); END_STATE(); case 1967: - ACCEPT_TOKEN(anon_sym_COMMA); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == ',') ADVANCE(1972); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1968); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1967); END_STATE(); case 1968: - ACCEPT_TOKEN(anon_sym_COMMA); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == ',') ADVANCE(1972); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1968); END_STATE(); case 1969: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == ',') ADVANCE(1972); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1969); END_STATE(); case 1970: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2442); - if (lookahead == '\'') ADVANCE(2439); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == ',') ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); END_STATE(); case 1971: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2442); - if (lookahead == '\'') ADVANCE(2439); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1971); END_STATE(); case 1972: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2442); - if (lookahead == '\'') ADVANCE(2439); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); case 1973: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2443); - if (lookahead == '\'') ADVANCE(2440); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2639); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if (lookahead == ',') ADVANCE(1978); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1974); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1973); END_STATE(); case 1974: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if (lookahead == ',') ADVANCE(1978); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1974); END_STATE(); case 1975: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if (lookahead == ',') ADVANCE(1978); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1975); END_STATE(); case 1976: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if (lookahead == ',') ADVANCE(1978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1976); END_STATE(); case 1977: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1978); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1977); END_STATE(); case 1978: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1978); END_STATE(); case 1979: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == 'e') ADVANCE(1981); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); END_STATE(); case 1980: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == 'e') ADVANCE(1982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); case 1981: - ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(1354); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == 'n') ADVANCE(1983); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); END_STATE(); case 1982: - ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(1354); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4171); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == 'n') ADVANCE(1984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); case 1983: - ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == 'v') ADVANCE(1152); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); END_STATE(); case 1984: - ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1354); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == 'v') ADVANCE(1154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); case 1985: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1986); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1985); END_STATE(); case 1986: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); END_STATE(); case 1987: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1988: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(1998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); case 1989: - ACCEPT_TOKEN(anon_sym_list); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == '-') ADVANCE(1992); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1998); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); END_STATE(); case 1990: - ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(1372); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4422); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == '-') ADVANCE(1992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 1991: - ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(1372); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4157); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'e') ADVANCE(1993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 1992: - ACCEPT_TOKEN(anon_sym_list); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'e') ADVANCE(1994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 1993: - ACCEPT_TOKEN(anon_sym_list); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'n') ADVANCE(1996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 1994: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'n') ADVANCE(1995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 1995: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'v') ADVANCE(1998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 1996: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(2199); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'v') ADVANCE(1155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 1997: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(2200); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1998); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); END_STATE(); case 1998: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(2201); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 1999: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if (lookahead == ',') ADVANCE(2004); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2000); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2002); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1999); END_STATE(); case 2000: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if (lookahead == ',') ADVANCE(2004); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); END_STATE(); case 2001: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if (lookahead == ',') ADVANCE(2004); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2002); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2001); END_STATE(); case 2002: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if (lookahead == ',') ADVANCE(2004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2002); END_STATE(); case 2003: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2004); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2003); END_STATE(); case 2004: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); END_STATE(); case 2005: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if (lookahead == ',') ADVANCE(2010); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2006); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2008); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2005); END_STATE(); case 2006: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if (lookahead == ',') ADVANCE(2010); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2006); END_STATE(); case 2007: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if (lookahead == ',') ADVANCE(2010); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2008); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2007); END_STATE(); case 2008: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if (lookahead == ',') ADVANCE(2010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2008); END_STATE(); case 2009: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2010); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2009); END_STATE(); case 2010: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); END_STATE(); case 2011: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2004); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == 'e') ADVANCE(2013); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); END_STATE(); case 2012: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2004); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(556); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == 'e') ADVANCE(2014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); END_STATE(); case 2013: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2004); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == 'n') ADVANCE(2015); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); END_STATE(); case 2014: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2004); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == 'n') ADVANCE(2016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); END_STATE(); case 2015: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2005); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(2578); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == 'v') ADVANCE(3233); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); END_STATE(); case 2016: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2005); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == 'v') ADVANCE(3235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); END_STATE(); case 2017: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2009); - if (lookahead == '.') ADVANCE(2944); - if (lookahead == '_') ADVANCE(2914); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2018); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2020); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2017); END_STATE(); case 2018: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2009); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); END_STATE(); case 2019: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2006); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2020); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2019); END_STATE(); case 2020: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2008); - if (lookahead == '.') ADVANCE(3499); - if (lookahead == '_') ADVANCE(3470); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3679); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); END_STATE(); case 2021: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2008); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == '-') ADVANCE(2024); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2030); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); END_STATE(); case 2022: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2007); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == '-') ADVANCE(2024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2023: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '=') ADVANCE(997); - if (lookahead == '_') ADVANCE(556); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'e') ADVANCE(2025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2024: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(556); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'e') ADVANCE(2026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2025: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(2578); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'n') ADVANCE(2028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2026: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4460); - if (lookahead == '_') ADVANCE(4455); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4562); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4460); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'n') ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2027: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4195); - if (lookahead == '_') ADVANCE(4190); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4195); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'v') ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2028: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'v') ADVANCE(3236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2029: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2030); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); END_STATE(); case 2030: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(3499); - if (lookahead == '_') ADVANCE(3470); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3679); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2031: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(2944); - if (lookahead == '_') ADVANCE(2914); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == 'e') ADVANCE(2033); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); END_STATE(); case 2032: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(997); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == 'e') ADVANCE(2034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); END_STATE(); case 2033: - ACCEPT_TOKEN(anon_sym_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == 'n') ADVANCE(2035); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); END_STATE(); case 2034: - ACCEPT_TOKEN(anon_sym_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == 'n') ADVANCE(2036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); END_STATE(); case 2035: - ACCEPT_TOKEN(anon_sym_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == 'v') ADVANCE(3216); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); END_STATE(); case 2036: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == 'v') ADVANCE(3218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); END_STATE(); case 2037: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(1361); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4434); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2038); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2038: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(1361); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4169); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); END_STATE(); case 2039: - ACCEPT_TOKEN(anon_sym_break); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1361); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2039); END_STATE(); case 2040: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(1362); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4451); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(2050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); END_STATE(); case 2041: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(1362); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4186); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == '-') ADVANCE(2044); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); END_STATE(); case 2042: - ACCEPT_TOKEN(anon_sym_continue); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1362); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == '-') ADVANCE(2044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2043: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(1351); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4417); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'e') ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2044: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(1351); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4152); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'e') ADVANCE(2046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2045: - ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1351); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'n') ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2046: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'n') ADVANCE(2047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2047: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4408); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4413); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'v') ADVANCE(2050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2048: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4143); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4148); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'v') ADVANCE(3219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2049: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1366); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1371); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); END_STATE(); case 2050: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3676); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2051: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3121); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); + if (lookahead == ',') ADVANCE(2056); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2052); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2054); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2051); END_STATE(); case 2052: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1499); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); + if (lookahead == ',') ADVANCE(2056); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); case 2053: - ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); + if (lookahead == ',') ADVANCE(2056); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2054); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2053); END_STATE(); case 2054: - ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); + if (lookahead == ',') ADVANCE(2056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); END_STATE(); case 2055: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2056); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2055); END_STATE(); case 2056: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2056); END_STATE(); case 2057: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); + if (lookahead == ',') ADVANCE(2062); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2058); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2057); END_STATE(); case 2058: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); + if (lookahead == ',') ADVANCE(2062); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2058); END_STATE(); case 2059: - ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(1352); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4432); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); + if (lookahead == ',') ADVANCE(2062); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2059); END_STATE(); case 2060: - ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(1352); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4167); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); + if (lookahead == ',') ADVANCE(2062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); END_STATE(); case 2061: - ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1352); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2062); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2061); END_STATE(); case 2062: - ACCEPT_TOKEN(anon_sym_make); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2062); END_STATE(); case 2063: - ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(1374); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4423); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == ',') ADVANCE(2068); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2064); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2063); END_STATE(); case 2064: - ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(1374); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4158); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == ',') ADVANCE(2068); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2064); END_STATE(); case 2065: - ACCEPT_TOKEN(anon_sym_make); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1374); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == ',') ADVANCE(2068); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2065); END_STATE(); case 2066: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(1353); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4438); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == ',') ADVANCE(2068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); END_STATE(); case 2067: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(1353); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4173); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2068); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2067); END_STATE(); case 2068: - ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1353); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2068); END_STATE(); case 2069: - ACCEPT_TOKEN(anon_sym_do); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); + if (lookahead == ',') ADVANCE(2074); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2070); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2072); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2069); END_STATE(); case 2070: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(1355); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4406); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); + if (lookahead == ',') ADVANCE(2074); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2070); END_STATE(); case 2071: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(1355); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4141); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); + if (lookahead == ',') ADVANCE(2074); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2072); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2071); END_STATE(); case 2072: - ACCEPT_TOKEN(anon_sym_do); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1355); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); + if (lookahead == ',') ADVANCE(2074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2073: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2074); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2073); END_STATE(); case 2074: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(1356); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4407); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2075: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(1356); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4142); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); + if (lookahead == ',') ADVANCE(2080); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2076); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2075); END_STATE(); case 2076: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1356); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); + if (lookahead == ',') ADVANCE(2080); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2076); END_STATE(); case 2077: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); + if (lookahead == ',') ADVANCE(2080); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2077); END_STATE(); case 2078: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); + if (lookahead == ',') ADVANCE(2080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); END_STATE(); case 2079: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2080); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2079); END_STATE(); case 2080: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(1357); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4416); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2080); END_STATE(); case 2081: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(1357); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4151); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); + if (lookahead == ',') ADVANCE(2086); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2082); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2084); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2081); END_STATE(); case 2082: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); + if (lookahead == ',') ADVANCE(2086); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2083: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1357); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); + if (lookahead == ',') ADVANCE(2086); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2084); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2083); END_STATE(); case 2084: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); + if (lookahead == ',') ADVANCE(2086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2084); END_STATE(); case 2085: - ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(1360); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4437); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2086); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2085); END_STATE(); case 2086: - ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(1360); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4172); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2086); END_STATE(); case 2087: - ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1360); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); + if (lookahead == ',') ADVANCE(2092); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2088); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2087); END_STATE(); case 2088: - ACCEPT_TOKEN(aux_sym_ctrl_match_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2088); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); + if (lookahead == ',') ADVANCE(2092); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2088); END_STATE(); case 2089: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); + if (lookahead == ',') ADVANCE(2092); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2089); END_STATE(); case 2090: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); + if (lookahead == ',') ADVANCE(2092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2090); END_STATE(); case 2091: - ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2092); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2091); END_STATE(); case 2092: - ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2092); END_STATE(); case 2093: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); + if (lookahead == ',') ADVANCE(2098); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2094); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2096); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); END_STATE(); case 2094: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); + if (lookahead == ',') ADVANCE(2098); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2095: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); + if (lookahead == ',') ADVANCE(2098); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2096); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2095); END_STATE(); case 2096: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); + if (lookahead == ',') ADVANCE(2098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2096); END_STATE(); case 2097: - ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2098); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2097); END_STATE(); case 2098: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1001); - if (lookahead == '<') ADVANCE(2287); - if (lookahead == '=') ADVANCE(2282); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2099: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2640); - if (lookahead == '<') ADVANCE(2287); - if (lookahead == '=') ADVANCE(2282); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); + if (lookahead == ',') ADVANCE(2104); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2100); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2102); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2099); END_STATE(); case 2100: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '<') ADVANCE(2287); - if (lookahead == '=') ADVANCE(2282); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); + if (lookahead == ',') ADVANCE(2104); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2100); END_STATE(); case 2101: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2287); - if (lookahead == '=') ADVANCE(2282); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); + if (lookahead == ',') ADVANCE(2104); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2102); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2101); END_STATE(); case 2102: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2290); - if (lookahead == '=') ADVANCE(2285); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); + if (lookahead == ',') ADVANCE(2104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2102); END_STATE(); case 2103: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2288); - if (lookahead == '=') ADVANCE(2283); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2104); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2103); END_STATE(); case 2104: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2291); - if (lookahead == '=') ADVANCE(2286); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2104); END_STATE(); case 2105: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2289); - if (lookahead == '=') ADVANCE(2284); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); + if (lookahead == ',') ADVANCE(2110); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2106); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2108); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); END_STATE(); case 2106: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); + if (lookahead == ',') ADVANCE(2110); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); END_STATE(); case 2107: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); + if (lookahead == ',') ADVANCE(2110); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2108); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2107); END_STATE(); case 2108: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(1358); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4425); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); + if (lookahead == ',') ADVANCE(2110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2108); END_STATE(); case 2109: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(1358); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4160); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2110); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2109); END_STATE(); case 2110: - ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1358); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2110); END_STATE(); case 2111: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); + if (lookahead == ',') ADVANCE(2116); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2112); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2114); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2111); END_STATE(); case 2112: - ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(1359); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4427); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); + if (lookahead == ',') ADVANCE(2116); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2114); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2112); END_STATE(); case 2113: - ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(1359); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4162); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); + if (lookahead == ',') ADVANCE(2116); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2114); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2113); END_STATE(); case 2114: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); + if (lookahead == ',') ADVANCE(2116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2114); END_STATE(); case 2115: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1359); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2116); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2115); END_STATE(); case 2116: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(1363); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4445); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2116); END_STATE(); case 2117: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(1363); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4180); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); + if (lookahead == ',') ADVANCE(2122); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2118); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2117); END_STATE(); case 2118: - ACCEPT_TOKEN(anon_sym_return); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1363); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); + if (lookahead == ',') ADVANCE(2122); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2118); END_STATE(); case 2119: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1348); - if (lookahead == '-') ADVANCE(4446); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4449); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); + if (lookahead == ',') ADVANCE(2122); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); END_STATE(); case 2120: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1348); - if (lookahead == '-') ADVANCE(4181); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4184); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); + if (lookahead == ',') ADVANCE(2122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); case 2121: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1342); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2122); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2121); END_STATE(); case 2122: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1348); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4449); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2122); END_STATE(); case 2123: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1348); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4184); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); + if (lookahead == ',') ADVANCE(2128); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2124); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2123); END_STATE(); case 2124: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1348); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); + if (lookahead == ',') ADVANCE(2128); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2124); END_STATE(); case 2125: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(1350); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4452); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); + if (lookahead == ',') ADVANCE(2128); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2126: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(1350); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4187); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); + if (lookahead == ',') ADVANCE(2128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2126); END_STATE(); case 2127: - ACCEPT_TOKEN(anon_sym_register); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1350); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2128); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2128: - ACCEPT_TOKEN(anon_sym_hide); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2128); END_STATE(); case 2129: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1340); - if (lookahead == '-') ADVANCE(4428); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4431); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); + if (lookahead == ',') ADVANCE(2134); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2130); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2132); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2129); END_STATE(); case 2130: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1340); - if (lookahead == '-') ADVANCE(4163); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4166); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); + if (lookahead == ',') ADVANCE(2134); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2130); END_STATE(); case 2131: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1334); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); + if (lookahead == ',') ADVANCE(2134); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2132); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2131); END_STATE(); case 2132: - ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1340); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4431); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); + if (lookahead == ',') ADVANCE(2134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2132); END_STATE(); case 2133: - ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1340); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4166); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2134); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2134: - ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2134); END_STATE(); case 2135: - ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1349); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4450); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); + if (lookahead == ',') ADVANCE(2140); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2136); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2138); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2135); END_STATE(); case 2136: - ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1349); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4185); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); + if (lookahead == ',') ADVANCE(2140); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2136); END_STATE(); case 2137: - ACCEPT_TOKEN(anon_sym_overlay); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); + if (lookahead == ',') ADVANCE(2140); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2138); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2137); END_STATE(); case 2138: - ACCEPT_TOKEN(anon_sym_new); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); + if (lookahead == ',') ADVANCE(2140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2138); END_STATE(); case 2139: - ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(1373); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4414); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2140); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2139); END_STATE(); case 2140: - ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(1373); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4149); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2140); END_STATE(); case 2141: - ACCEPT_TOKEN(anon_sym_new); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); + if (lookahead == ',') ADVANCE(2146); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2142); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2144); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2141); END_STATE(); case 2142: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); + if (lookahead == ',') ADVANCE(2146); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2142); END_STATE(); case 2143: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(1364); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4405); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); + if (lookahead == ',') ADVANCE(2146); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2144); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2143); END_STATE(); case 2144: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(1364); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4140); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); + if (lookahead == ',') ADVANCE(2146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2144); END_STATE(); case 2145: - ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2146); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2145); END_STATE(); case 2146: - ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); END_STATE(); case 2147: - ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1364); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2153); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2165); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2149); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2148: - ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2153); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2165); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2150); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2149: - ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2153); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2165); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2148); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2150: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2153); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2165); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2151); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2151: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2211); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2153); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2165); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2152); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2152: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2211); - if (lookahead == '=') ADVANCE(998); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2153); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2153: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2213); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2165); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2153); END_STATE(); case 2154: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2158); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); END_STATE(); case 2155: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(2214); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2160); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); END_STATE(); case 2156: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2159); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); END_STATE(); case 2157: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2161); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); END_STATE(); case 2158: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2155); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); END_STATE(); case 2159: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2157); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); END_STATE(); case 2160: - ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2163); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); END_STATE(); case 2161: - ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); END_STATE(); case 2162: - ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2165); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); END_STATE(); case 2163: - ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2164); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); END_STATE(); case 2164: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); END_STATE(); case 2165: - ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ',') ADVANCE(2179); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); END_STATE(); case 2166: - ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2168); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2179); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); END_STATE(); case 2167: - ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2168: - ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2172); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2179); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); END_STATE(); case 2169: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2174); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2179); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); END_STATE(); case 2170: - ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2171: - ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2175); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2172: - ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2169); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2179); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); END_STATE(); case 2173: - ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2171); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2174: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2177); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2179); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); END_STATE(); case 2175: - ACCEPT_TOKEN(anon_sym_not_DASHin); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2176); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2176: - ACCEPT_TOKEN(anon_sym_not_DASHin); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2179); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2177: - ACCEPT_TOKEN(anon_sym_not_DASHin); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2178); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2179); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); END_STATE(); case 2178: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2179); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); END_STATE(); case 2179: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2180: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); + if (lookahead == ',') ADVANCE(2185); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2181); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2183); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2180); END_STATE(); case 2181: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); + if (lookahead == ',') ADVANCE(2185); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2183); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2181); END_STATE(); case 2182: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); + if (lookahead == ',') ADVANCE(2185); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2183); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2182); END_STATE(); case 2183: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); + if (lookahead == ',') ADVANCE(2185); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2183); END_STATE(); case 2184: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2185); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2184); END_STATE(); case 2185: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2185); END_STATE(); case 2186: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if (lookahead == ',') ADVANCE(2191); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2187); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2189); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2186); END_STATE(); case 2187: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if (lookahead == ',') ADVANCE(2191); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2189); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2187); END_STATE(); case 2188: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if (lookahead == ',') ADVANCE(2191); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2189); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2188); END_STATE(); case 2189: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if (lookahead == ',') ADVANCE(2191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2189); END_STATE(); case 2190: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2191); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2190); END_STATE(); case 2191: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2191); END_STATE(); case 2192: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); + if (lookahead == ',') ADVANCE(2197); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2193); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2195); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2192); END_STATE(); case 2193: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2196); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); + if (lookahead == ',') ADVANCE(2197); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2193); END_STATE(); case 2194: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2197); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); + if (lookahead == ',') ADVANCE(2197); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2195); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2194); END_STATE(); case 2195: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2198); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); + if (lookahead == ',') ADVANCE(2197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2195); END_STATE(); case 2196: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2197); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2196); END_STATE(); case 2197: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2197); END_STATE(); case 2198: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == 'e') ADVANCE(2200); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2205); END_STATE(); case 2199: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == 'e') ADVANCE(2201); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2207); END_STATE(); case 2200: - ACCEPT_TOKEN(anon_sym_GT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == 'n') ADVANCE(2202); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2205); END_STATE(); case 2201: - ACCEPT_TOKEN(anon_sym_GT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == 'n') ADVANCE(2203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2207); END_STATE(); case 2202: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == 'v') ADVANCE(2955); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2205); END_STATE(); case 2203: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == 'v') ADVANCE(2957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2207); END_STATE(); case 2204: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2205); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2207); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2204); END_STATE(); case 2205: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2205); END_STATE(); case 2206: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2207); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2206); END_STATE(); case 2207: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == ',') ADVANCE(2217); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2207); END_STATE(); case 2208: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == '-') ADVANCE(2211); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2217); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2216); END_STATE(); case 2209: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == '-') ADVANCE(2211); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2210: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == 'e') ADVANCE(2212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2211: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == 'e') ADVANCE(2213); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2212: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == 'n') ADVANCE(2215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2213: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == 'n') ADVANCE(2214); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2214: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == 'v') ADVANCE(1966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2215: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if (lookahead == 'v') ADVANCE(2958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2216: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '=') ADVANCE(1000); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2217); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2216); END_STATE(); case 2217: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2218: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 2219: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_true); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); END_STATE(); case 2220: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2231); + ACCEPT_TOKEN(anon_sym_true); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 2221: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2231); - if (lookahead == '=') ADVANCE(999); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2222: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2233); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 2223: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2224: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(2234); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 2225: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 2226: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2246); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'r') ADVANCE(2250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2227: - ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(1164); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2243); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'u') ADVANCE(2256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2228: - ACCEPT_TOKEN(anon_sym_mod); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2247); + if (lookahead == '>') ADVANCE(3701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2229: - ACCEPT_TOKEN(anon_sym_mod); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2242); + if (lookahead == '>') ADVANCE(3706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2230: - ACCEPT_TOKEN(anon_sym_mod); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2248); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'r') ADVANCE(2252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2231: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2244); + if (lookahead == '>') ADVANCE(925); + if (lookahead == 'u') ADVANCE(2258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2232: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2249); + if (lookahead == '>') ADVANCE(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2233: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '+') ADVANCE(2245); + if (lookahead == '>') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2234: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '>') ADVANCE(3736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2235: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '>') ADVANCE(3731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2236: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2216); - if (lookahead == '.') ADVANCE(1032); - if (lookahead == '=') ADVANCE(996); - if (lookahead == '_') ADVANCE(1016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '>') ADVANCE(3721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2237: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2216); - if (lookahead == '=') ADVANCE(996); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '>') ADVANCE(3726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2238: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2215); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '>') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2239: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2215); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '>') ADVANCE(928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2240: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2215); - if (lookahead == '.') ADVANCE(2682); - if (lookahead == '_') ADVANCE(2660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '>') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2241: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2215); - if (lookahead == '.') ADVANCE(2688); - if (lookahead == '_') ADVANCE(2661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == '>') ADVANCE(931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2242: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2218); - if (lookahead == '.') ADVANCE(3499); - if (lookahead == '_') ADVANCE(3470); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'e') ADVANCE(2251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2243: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2218); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'e') ADVANCE(2235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2244: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'e') ADVANCE(2239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2245: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2219); - if (lookahead == '.') ADVANCE(2944); - if (lookahead == '_') ADVANCE(2914); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'e') ADVANCE(2255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2246: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(2219); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'o') ADVANCE(2234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2247: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(4459); - if (lookahead == '_') ADVANCE(4454); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4459); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'o') ADVANCE(2260); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2248: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(4194); - if (lookahead == '_') ADVANCE(4189); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4194); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'o') ADVANCE(2238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2249: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1032); - if (lookahead == '_') ADVANCE(1016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'o') ADVANCE(2261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2250: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1033); - if (lookahead == '_') ADVANCE(1017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'r') ADVANCE(2228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2251: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'r') ADVANCE(2253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2252: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'r') ADVANCE(2232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2253: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'r') ADVANCE(2237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2254: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'r') ADVANCE(2241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2255: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'r') ADVANCE(2254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2256: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 't') ADVANCE(2229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2257: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 't') ADVANCE(2236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2258: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 't') ADVANCE(2233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2259: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 't') ADVANCE(2240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2260: - ACCEPT_TOKEN(anon_sym_bit_DASHand); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'u') ADVANCE(2257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2261: - ACCEPT_TOKEN(anon_sym_bit_DASHand); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == 'u') ADVANCE(2259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2262: - ACCEPT_TOKEN(anon_sym_bit_DASHand); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); END_STATE(); case 2263: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 2264: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(anon_sym_false); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); END_STATE(); case 2265: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_false); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 2266: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2267: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 2268: - ACCEPT_TOKEN(anon_sym_bit_DASHor); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2269: - ACCEPT_TOKEN(anon_sym_bit_DASHor); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 2270: - ACCEPT_TOKEN(anon_sym_bit_DASHor); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 2271: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 2272: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1001); - if (lookahead == '<') ADVANCE(2293); - if (lookahead == '=') ADVANCE(2292); + ACCEPT_TOKEN(anon_sym_null); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); END_STATE(); case 2273: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(2000); - if (lookahead == '<') ADVANCE(2293); - if (lookahead == '=') ADVANCE(2292); + ACCEPT_TOKEN(anon_sym_null); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 2274: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(2293); - if (lookahead == '=') ADVANCE(2292); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2275: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 2276: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2101); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2277: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2272); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 2278: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1015); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 2279: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2274); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); END_STATE(); case 2280: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2273); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2709); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2281: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(558); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1639); END_STATE(); case 2282: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1930); END_STATE(); case 2283: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1387); END_STATE(); case 2284: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4022); END_STATE(); case 2285: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4528); END_STATE(); case 2286: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4196); END_STATE(); case 2287: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4789); END_STATE(); case 2288: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4634); END_STATE(); case 2289: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(967); END_STATE(); case 2290: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2291: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); END_STATE(); case 2292: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3691); END_STATE(); case 2293: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4478); END_STATE(); case 2294: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(2784); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(965); END_STATE(); case 2295: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3778); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4832); END_STATE(); case 2296: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(797); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4530); END_STATE(); case 2297: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2303); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4198); END_STATE(); case 2298: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2305); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4791); END_STATE(); case 2299: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2307); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4636); END_STATE(); case 2300: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (lookahead == 'b') ADVANCE(1306); - if (lookahead == 'o') ADVANCE(1308); - if (lookahead == 'x') ADVANCE(1315); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); END_STATE(); case 2301: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2302: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2294); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '+', 2330, + '-', 2332, + '>', 3711, + 'I', 2363, + '_', 2332, + 'i', 2363, + 'r', 2349, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2303: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2302); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2345); + if (lookahead == '>') ADVANCE(3701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2304: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2295); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2338); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'u') ADVANCE(2356); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2305: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2304); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2344); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'I') ADVANCE(2363); + if (lookahead == 'i') ADVANCE(2363); + if (lookahead == 'r') ADVANCE(2349); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2306: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2296); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2344); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'r') ADVANCE(2349); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2307: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2306); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2339); + if (lookahead == '>') ADVANCE(3706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2308: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2303); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2346); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'I') ADVANCE(2363); + if (lookahead == 'i') ADVANCE(2363); + if (lookahead == 'r') ADVANCE(2350); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2309: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2305); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2346); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'r') ADVANCE(2350); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2310: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2307); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '+', 2331, + '-', 2332, + '>', 924, + 'I', 2363, + '_', 2332, + 'i', 2363, + 'r', 2350, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2311: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2311); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2340); + if (lookahead == '>') ADVANCE(925); + if (lookahead == 'u') ADVANCE(2358); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2312: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2312); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2312); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2341); + if (lookahead == '>') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2313: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2313); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(2347); + if (lookahead == '>') ADVANCE(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2314: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == ',') ADVANCE(2364); + if (lookahead == ':') ADVANCE(4073); if (lookahead == '_') ADVANCE(2314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2314); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4063); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2315); END_STATE(); case 2315: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(2315); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == ',') ADVANCE(2364); + if (lookahead == ':') ADVANCE(4073); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4063); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2315); END_STATE(); case 2316: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(2316); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '.') ADVANCE(3377); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2317: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(2317); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(3736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2318: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2318); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2318); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(3731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2319: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(3721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2320: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(3726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2321: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2322: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2323: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1312); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2324: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2784); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2325: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3778); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'I') ADVANCE(2363); + if (lookahead == '_') ADVANCE(2332); + if (lookahead == 'i') ADVANCE(2363); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2332); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2326: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4099); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'I') ADVANCE(2363); + if (lookahead == '_') ADVANCE(2332); + if (lookahead == 'i') ADVANCE(2335); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2332); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2327: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(797); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'I') ADVANCE(2363); + if (lookahead == 'i') ADVANCE(2363); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2328: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2335); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'I') ADVANCE(2363); + if (lookahead == 'i') ADVANCE(2335); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2329: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2337); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'I') ADVANCE(2363); + if (lookahead == 'i') ADVANCE(2343); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2330: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2339); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '_') ADVANCE(2332); + if (lookahead == 'o') ADVANCE(2317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2331: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2341); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '_') ADVANCE(2332); + if (lookahead == 'o') ADVANCE(2321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2332: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2343); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '_') ADVANCE(2332); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2333: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(1306); - if (lookahead == 'o') ADVANCE(1308); - if (lookahead == 'x') ADVANCE(1315); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '_') ADVANCE(2333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2334: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2323); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'a') ADVANCE(2362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2335: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2334); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2336: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2324); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'c') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2337: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2336); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'e') ADVANCE(2336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2338: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2325); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'e') ADVANCE(2318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2339: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2338); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'e') ADVANCE(2351); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2340: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2327); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'e') ADVANCE(2322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2341: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2340); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'e') ADVANCE(2354); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2342: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2326); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'k') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2343: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2342); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'n') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2344: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2335); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'o') ADVANCE(2317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2345: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2337); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'o') ADVANCE(2360); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2346: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2339); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'o') ADVANCE(2321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2347: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2341); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'o') ADVANCE(2361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2348: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2343); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2349: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(2303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2350: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(2350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(2313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2351: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(2352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2352: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2101); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(2320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2353: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2098); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(2324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2354: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2272); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(2353); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2355: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1015); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 's') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2356: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(4456); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(2307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2357: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(4191); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(2319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2358: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2274); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(2312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2359: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2102); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(2323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2360: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2103); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'u') ADVANCE(2357); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2361: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2099); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'u') ADVANCE(2359); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2362: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2104); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'y') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2363: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2105); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2364: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2100); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2364); END_STATE(); case 2365: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); END_STATE(); case 2366: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\n') ADVANCE(3347); + if (lookahead == '\r') ADVANCE(5); + if (lookahead == '/') ADVANCE(2367); + if (lookahead == '=') ADVANCE(1172); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3299); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2720); END_STATE(); case 2367: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2367); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2367); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\n') ADVANCE(3349); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3303); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2368: - ACCEPT_TOKEN(aux_sym__val_number_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2368); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\n') ADVANCE(3348); + if (lookahead == '\r') ADVANCE(15); + if (lookahead == 'u') ADVANCE(2548); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3301); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2369: - ACCEPT_TOKEN(aux_sym__val_number_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2369); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2420); + if (lookahead == '-') ADVANCE(4111); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == '_') ADVANCE(2420); + if (lookahead == 'i') ADVANCE(2704); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2370: - ACCEPT_TOKEN(aux_sym__val_number_token3); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2370); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2420); + if (lookahead == '-') ADVANCE(4111); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == '_') ADVANCE(2420); + if (lookahead == 'i') ADVANCE(2451); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2371: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2369); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2420); + if (lookahead == '-') ADVANCE(4593); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == '_') ADVANCE(2420); + if (lookahead == 'i') ADVANCE(2704); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2372: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1709); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2420); + if (lookahead == '-') ADVANCE(4593); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == '_') ADVANCE(2420); + if (lookahead == 'i') ADVANCE(2451); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2373: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3688); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2420); + if (lookahead == '-') ADVANCE(4593); + if (lookahead == '_') ADVANCE(2420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2374: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3133); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2491); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'n') ADVANCE(2496); + if (lookahead == 'r') ADVANCE(3275); + if (lookahead == 'u') ADVANCE(2657); + if (lookahead == 'v') ADVANCE(2506); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2375: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2620); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2571); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'l') ADVANCE(2644); + if (lookahead == 'n') ADVANCE(2465); + if (lookahead == 'r') ADVANCE(2629); + if (lookahead == 'x') ADVANCE(2592); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2376: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1876); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2574); + if (lookahead == '>') ADVANCE(3701); + if (lookahead == 'o') ADVANCE(2601); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2377: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4029); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2574); + if (lookahead == '>') ADVANCE(3701); + if (lookahead == 'o') ADVANCE(2602); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2378: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3876); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2576); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'l') ADVANCE(2648); + if (lookahead == 'r') ADVANCE(2607); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2379: - ACCEPT_TOKEN(sym_filesize_unit); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2495); + if (lookahead == '>') ADVANCE(925); + if (lookahead == 'n') ADVANCE(2500); + if (lookahead == 'r') ADVANCE(3276); + if (lookahead == 'u') ADVANCE(2670); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2380: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1599); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2581); + if (lookahead == '>') ADVANCE(927); + if (lookahead == 'o') ADVANCE(2605); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2381: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(2751); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2502); + if (lookahead == '>') ADVANCE(3706); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2382: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(738); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '>') ADVANCE(929); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2383: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1103); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3650); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2384: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1106); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3658); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2385: - ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3675); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2386: - ACCEPT_TOKEN(sym_duration_unit); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2387: - ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1957); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2388: - ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1319); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1228); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2389: - ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1285); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2390: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2370); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1315); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2391: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1711); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2392: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1394); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2393: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3139); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1322); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2394: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2622); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1240); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2395: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1878); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(829); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2396: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4033); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(712); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2397: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3880); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(809); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2398: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2368); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(983); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2399: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1712); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3676); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2400: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3708); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3663); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2401: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3153); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1376); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2402: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2635); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1326); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2403: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1891); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1892); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(832); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2404: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3677); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2405: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3894); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1377); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2406: - ACCEPT_TOKEN(anon_sym_LBRACK2); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(915); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2407: - ACCEPT_TOKEN(sym_hex_digit); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2407); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(3736); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2408: - ACCEPT_TOKEN(sym_val_date); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(3731); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2409: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(791); - if (lookahead == '+' || - lookahead == '-') ADVANCE(563); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2408); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(3721); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2410: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2782); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2662); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2408); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(3726); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2411: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3781); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3721); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2408); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(926); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2412: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2423); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(928); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2413: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2424); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2777); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2414: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2425); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3775); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(931); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2415: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1314); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == 'i') ADVANCE(2704); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2416: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2786); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == 'i') ADVANCE(2451); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2417: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3784); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == 'i') ADVANCE(2560); + if (lookahead == 's') ADVANCE(3533); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2418: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4101); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(2705); + if (lookahead == 'f') ADVANCE(3149); + if (lookahead == 'm') ADVANCE(2593); + if (lookahead == 'n') ADVANCE(3109); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2419: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(800); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2420); + if (lookahead == 'o') ADVANCE(2407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2420: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(563); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2408); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2420); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2421: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2662); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2408); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2421); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2712); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2421); + if (('2' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2422: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3721); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2408); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2422); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2423: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (lookahead == 'b') ADVANCE(3517); + if (lookahead == 'o') ADVANCE(3534); + if (lookahead == 'x') ADVANCE(3540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2428); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2424: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2777); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (lookahead == 'b') ADVANCE(2712); + if (lookahead == 'o') ADVANCE(2714); + if (lookahead == 'x') ADVANCE(2719); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2425: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3775); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (lookahead == 'b') ADVANCE(3518); + if (lookahead == 'o') ADVANCE(3534); + if (lookahead == 'x') ADVANCE(3540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2426: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2392); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2427: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2639); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2398); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2428: - ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(2429); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2428); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - lookahead != '\\') ADVANCE(2429); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2426); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2429: - ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(2429); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2430: - ACCEPT_TOKEN(sym__str_single_quotes); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2427); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2431: - ACCEPT_TOKEN(sym__str_single_quotes); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2639); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2428); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2432: - ACCEPT_TOKEN(sym__str_back_ticks); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2433: - ACCEPT_TOKEN(sym__str_back_ticks); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2639); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2433); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2434: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2530); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2435: - ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(2436); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2435); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - lookahead != '(' && - lookahead != '\\') ADVANCE(2436); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2700); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2436: - ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '(' && - lookahead != '\\') ADVANCE(2436); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2550); + if (lookahead == 'o') ADVANCE(2599); + if (lookahead == 'u') ADVANCE(2553); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2437: - ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(2438); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2437); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '(') ADVANCE(2438); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2531); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2438: - ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '(') ADVANCE(2438); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2701); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2439: - ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2699); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2440: - ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2639); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2636); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2441: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2442: - ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2551); + if (lookahead == 'u') ADVANCE(2555); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2443: - ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2639); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2551); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2444: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2445: - ACCEPT_TOKEN(sym_inter_escape_sequence); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2616); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2446: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2675); + if (lookahead == 'e') ADVANCE(2554); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2447: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2618); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2448: - ACCEPT_TOKEN(sym__entry_separator); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2533); + if (lookahead == 'o') ADVANCE(2462); + if (lookahead == 'u') ADVANCE(2660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2449: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(2448); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2449); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2622); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2450: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(2448); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2450); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2451); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(2674); + if (lookahead == 'e') ADVANCE(2552); + if (lookahead == 'o') ADVANCE(2569); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2451: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(2456); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(568); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'b') ADVANCE(3528); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2452: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(3533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2453: - ACCEPT_TOKEN(aux_sym_record_entry_token1); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(2514); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2454: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(4586); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2455); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(2515); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2455: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2455); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(2516); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2456: - ACCEPT_TOKEN(sym__table_head_separator); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(2517); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2457: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(2430); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ',' || - lookahead == '.' || - lookahead == ':' || - lookahead == ';' || - lookahead == '?' || - lookahead == '[' || - lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(527); - if (lookahead != 0) ADVANCE(2457); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(2518); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2458: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(2432); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ',' || - lookahead == '.' || - lookahead == ':' || - lookahead == ';' || - lookahead == '?' || - lookahead == '[' || - lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(594); - if (lookahead != 0) ADVANCE(2458); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(2482); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2459: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(2459); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(2485); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2460: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(3268); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2461: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2525); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(3267); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2462: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2525); - if (lookahead == '|') ADVANCE(1931); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(2368); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2463: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2528); - if (lookahead == '|') ADVANCE(1931); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(2693); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2464: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2528); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(2649); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2465: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2526); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(2650); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2466: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2529); - if (lookahead == '|') ADVANCE(1931); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(2471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2467: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(2479); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2468: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2527); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2452); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2469: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2530); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2470: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2530); - if (lookahead == '|') ADVANCE(1932); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3155); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2471: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2533); - if (lookahead == '|') ADVANCE(1932); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3227); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2472: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2533); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3127); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2473: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2531); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2223); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2474: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2534); - if (lookahead == '|') ADVANCE(1932); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2475: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2534); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2268); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2476: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2532); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3265); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2477: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2535); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3133); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2478: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2535); - if (lookahead == '|') ADVANCE(1933); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3157); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2479: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2538); - if (lookahead == '|') ADVANCE(1933); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3228); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2480: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2538); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3129); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2481: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2536); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2967); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2482: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2539); - if (lookahead == '|') ADVANCE(1933); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3210); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2483: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2539); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3135); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2484: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2537); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2969); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2485: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2540); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3211); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2486: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2540); - if (lookahead == '|') ADVANCE(1934); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3096); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2487: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2543); - if (lookahead == '|') ADVANCE(1934); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3098); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2488: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2543); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(3160); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2489: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2541); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2511); + if (lookahead == 'o') ADVANCE(3142); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2490: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2544); - if (lookahead == '|') ADVANCE(1934); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2697); + if (lookahead == 'o') ADVANCE(2669); + if (lookahead == 'u') ADVANCE(2536); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2708); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2491: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2544); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2408); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2492: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2542); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2434); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2493: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2545); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2437); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2494: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2545); - if (lookahead == '|') ADVANCE(1935); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2495: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2548); - if (lookahead == '|') ADVANCE(1935); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2412); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2496: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2548); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2390); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2497: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2546); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2659); + if (lookahead == 'i') ADVANCE(2643); + if (lookahead == 'o') ADVANCE(2573); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2498: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2549); - if (lookahead == '|') ADVANCE(1935); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2619); + if (lookahead == 'i') ADVANCE(2545); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2499: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2549); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2619); + if (lookahead == 'i') ADVANCE(2547); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2500: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2547); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2397); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2501: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2550); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2502: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2550); - if (lookahead == '|') ADVANCE(1936); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2624); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2503: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2553); - if (lookahead == '|') ADVANCE(1936); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2613); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2504: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2553); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2603); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2505: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2551); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2604); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2506: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2554); - if (lookahead == '|') ADVANCE(1936); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2631); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2507: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2554); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2627); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2508: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2552); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2513); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2509: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2555); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(2554); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2510: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2555); - if (lookahead == '|') ADVANCE(1937); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(2949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2511: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2558); - if (lookahead == '|') ADVANCE(1937); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(2951); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2512: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2558); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'g') ADVANCE(2525); + if (lookahead == 't') ADVANCE(2687); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2513: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2556); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'g') ADVANCE(2528); + if (lookahead == 't') ADVANCE(2689); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2514: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2559); - if (lookahead == '|') ADVANCE(1937); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(3197); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2515: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2559); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(3163); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2516: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(3199); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2517: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2560); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(3165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2518: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2560); - if (lookahead == '|') ADVANCE(1938); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(3202); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2519: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2563); - if (lookahead == '|') ADVANCE(1938); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(2499); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2520: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2563); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(2567); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2521: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2561); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(2440); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2522: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2564); - if (lookahead == '|') ADVANCE(1938); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(2672); + if (lookahead == 'r') ADVANCE(2493); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2523: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2564); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(2441); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2524: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2562); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(2467); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2525: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(2645); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2526: - ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2527: - ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(2570); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2528: - ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(2651); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2529: - ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(3533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2530: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(3090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2531: - ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(3092); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2532: - ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(2472); + if (lookahead == 't') ADVANCE(2454); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2533: - ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(2480); + if (lookahead == 't') ADVANCE(2456); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2534: - ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2276); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2535: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2537); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2536: - ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2534); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2537: - ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2386); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2538: - ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2387); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2539: - ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2435); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2540: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2541: - ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2393); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2542: - ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2394); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2543: - ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2395); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2544: - ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2396); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2545: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2477); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2546: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2481); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2547: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2483); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2548: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2484); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2549: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2538); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2550: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2642); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2551: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2552: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2541); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2553: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2542); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2554: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2543); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2555: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2544); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2556: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(2523); + if (lookahead == 'n') ADVANCE(2461); + if (lookahead == 's') ADVANCE(3253); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2557: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(2594); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2705); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2558: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2559: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(2460); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2560: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(3533); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2561: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(2640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2562: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(2960); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2563: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(3204); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2564: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(2962); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2565: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(3206); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2566: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2722); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'r') ADVANCE(2601); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(3118); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2567: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2702); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'u') ADVANCE(2606); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(2690); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2568: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2723); - if (lookahead == '>') ADVANCE(2462); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(2500); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2569: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2703); - if (lookahead == '>') ADVANCE(2470); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(2646); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2570: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'r') ADVANCE(2602); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(2691); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2571: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'u') ADVANCE(2607); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2407); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2572: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(681); - if (lookahead == '>') ADVANCE(764); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2588); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2573: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '>') ADVANCE(766); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2589); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2574: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(2626); - if (lookahead == '_') ADVANCE(2585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2688); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2575: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(2628); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2598); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2576: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(2632); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2411); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2577: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(2634); - if (lookahead == '_') ADVANCE(2585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2600); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2578: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2666); + if (lookahead == 'u') ADVANCE(2536); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2708); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2579: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(794); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2666); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2708); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2580: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(2789); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2605); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2581: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(2629); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2692); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2582: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(2630); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2583: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2585); - if (lookahead == 'b') ADVANCE(2375); - if (lookahead == 'o') ADVANCE(2394); - if (lookahead == 'x') ADVANCE(2402); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2587); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2621); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2584: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2585); - if (lookahead == 'b') ADVANCE(2375); - if (lookahead == 'o') ADVANCE(2394); - if (lookahead == 'x') ADVANCE(2402); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2590); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2623); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2585: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2625); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2586: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2574); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2626); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2587: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2586); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(2694); + if (lookahead == 't') ADVANCE(2449); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2588: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2587); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(3120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2589: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2577); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(3122); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2590: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2589); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(2582); + if (lookahead == 't') ADVANCE(2501); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2591: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2590); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(2583); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2592: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2595); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(2584); + if (lookahead == 't') ADVANCE(2503); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2593: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(1389); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(2585); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2594: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(1479); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(2586); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2595: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2604); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2596: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(1491); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2376); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2597: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2596); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3102); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2598: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'n') ADVANCE(2054); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3272); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2599: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'o') ADVANCE(2605); - if (lookahead == 'u') ADVANCE(2597); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2614); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3104); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2600: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2608); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3271); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2601: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2568); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2997); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2602: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2572); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2999); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2603: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(2146); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3220); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2604: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(2594); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3222); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2605: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(2621); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3002); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2606: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(2569); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2685); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2607: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(2573); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2380); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2608: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(2593); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2385); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2609: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(2597); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2614); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2562); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2610: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2614); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2458); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2611: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2613); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2563); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2612: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2617); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2410); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2613: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2616); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2564); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2614: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2636); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2539); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2615: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2611); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2565); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2616: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2612); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2391); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2617: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2618); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2681); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2618: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2636); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2406); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2619: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-' || - lookahead == '?' || - lookahead == '@') ADVANCE(2636); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2619); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2476); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2620: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2620); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2663); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2621: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2209); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2678); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2622: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2622); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2682); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2623: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2575); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2665); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2624: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2581); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2625: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2580); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2679); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2626: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2680); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2627: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2632); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2628: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2624); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2634); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2629: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2625); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2377); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2630: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2627); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2459); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2631: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2582); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2540); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2632: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2631); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2414); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2633: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2576); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2686); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2634: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2633); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(2580); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2635: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2635); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(3533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2636: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2636); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(1136); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2637: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(2431); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(527); - if (lookahead != 0) ADVANCE(2637); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(1138); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2638: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(2433); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(594); - if (lookahead != 0) ADVANCE(2638); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2658); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2639: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2639); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2470); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2640: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(2320); - if (lookahead == '(') ADVANCE(2271); - if (lookahead == '[') ADVANCE(2446); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2661); + if (lookahead == 't') ADVANCE(2520); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2641: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2722); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'r') ADVANCE(2737); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2474); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2642: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2702); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'u') ADVANCE(2750); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2475); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2643: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - ADVANCE_MAP( - '+', 2684, - '-', 2686, - '>', 2477, - 'I', 2767, - '_', 2686, - 'i', 2767, - 'n', 2698, - 'r', 2738, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2662); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2644: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2684); - if (lookahead == '-') ADVANCE(2686); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == '_') ADVANCE(2686); - if (lookahead == 'r') ADVANCE(2738); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2478); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2645: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2723); - if (lookahead == '>') ADVANCE(2462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2676); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2646: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2683); - if (lookahead == '-') ADVANCE(2686); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == '_') ADVANCE(2686); - if (lookahead == 'r') ADVANCE(2737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2664); + if (lookahead == 't') ADVANCE(2527); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2647: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2703); - if (lookahead == '>') ADVANCE(2470); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2667); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2648: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - ADVANCE_MAP( - '+', 2727, - '>', 2477, - 'I', 2767, - 'i', 2767, - 'n', 2698, - 'r', 2738, - 'B', 2379, - 'b', 2379, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2488); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2649: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2727); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'n') ADVANCE(2698); - if (lookahead == 'r') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2399); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2650: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2727); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'r') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2401); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2651: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2704); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(2756); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2677); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2652: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2704); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'u') ADVANCE(2756); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2404); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2653: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2731); - if (lookahead == '>') ADVANCE(2461); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(2405); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2654: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2705); - if (lookahead == '>') ADVANCE(2469); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1146); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2655: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2691); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1156); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2656: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2763); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2383); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2657: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2710); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2381); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2658: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2785); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(3009); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2659: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2764); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1147); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2660: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2682); - if (lookahead == '_') ADVANCE(2660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1158); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2661: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2688); - if (lookahead == '_') ADVANCE(2661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1163); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2662: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2775); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2783); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(3011); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2663: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2787); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1129); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2664: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2789); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2665: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(2189); - if (lookahead == '~') ADVANCE(2205); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2666: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(2186); - if (lookahead == '~') ADVANCE(2202); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2713); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2667: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2518); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(3014); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2668: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2510); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2669: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2494); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2389); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2670: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2502); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2382); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2671: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2409); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2672: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2509); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2388); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2673: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2493); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2413); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2674: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2501); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2455); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2675: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == '_') ADVANCE(2686); - if (lookahead == 'i') ADVANCE(2693); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2457); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2676: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == 'i') ADVANCE(2767); - if (lookahead == 'r') ADVANCE(2760); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2504); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2677: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == 'i') ADVANCE(2767); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2505); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2678: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == 'i') ADVANCE(2693); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2400); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2679: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == 'i') ADVANCE(2719); - if (lookahead == 'o') ADVANCE(2697); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2402); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2680: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N') ADVANCE(2768); - if (lookahead == 'n') ADVANCE(2052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2403); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2681: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2682: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2682); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2367); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(2653); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2683: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2686); - if (lookahead == 'o') ADVANCE(2667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2610); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2684: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2686); - if (lookahead == 'o') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2473); + if (lookahead == 'y') ADVANCE(3190); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2685: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2686); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2473); + if (lookahead == 'y') ADVANCE(3192); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2686: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2473); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2687: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2611); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2688: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2318); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2671); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2689: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2716); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2615); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2690: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2765); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2486); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2691: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2721); - if (lookahead == 'o') ADVANCE(2733); - if (lookahead == 's') ADVANCE(2708); - if (lookahead == 'x') ADVANCE(2729); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2487); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2692: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2741); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2673); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2693: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2546); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2694: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'c') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2630); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2695: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(2159); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(2555); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2696: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(2259); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'w') ADVANCE(3244); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2697: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(2226); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'w') ADVANCE(3246); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2698: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(2746); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(3533); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2699: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1383); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(3533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2700: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1473); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(3237); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2701: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2694); - if (lookahead == 't') ADVANCE(2692); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(3239); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2702: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '{') ADVANCE(988); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2718); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2703: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2739); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2708); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2704: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2672); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2705: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2743); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2280); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2706: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(2182); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2710); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2707: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(2178); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2705); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2708: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(2715); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2301); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2709: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2751); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2706); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2710: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2718); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2711); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2711: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2752); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2290); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2712: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(2755); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2712); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2713: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'k') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2714: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1485); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2714); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2715: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2251); - if (lookahead == 'r') ADVANCE(2255); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2716: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2745); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3595); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2717: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2716); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2718: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(2174); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2717); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2719: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2719); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2720: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(2695); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2721: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(2696); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3950); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'r') ADVANCE(2822); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2722: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2667); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3930); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'u') ADVANCE(2846); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2723: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2761); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3951); + if (lookahead == '>') ADVANCE(3701); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2724: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2697); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3931); + if (lookahead == '>') ADVANCE(3706); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2725: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2754); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(925); + if (lookahead == 'u') ADVANCE(2848); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2726: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2754); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(811); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'r') ADVANCE(2825); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2727: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2671); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(813); + if (lookahead == '>') ADVANCE(927); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2728: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2732); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(742); + if (lookahead == '>') ADVANCE(929); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2729: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2734); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2889); + if (lookahead == '_') ADVANCE(2744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2744); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2730: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2748); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2768); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 2731: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2762); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2770); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2732: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2164); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2773); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2733: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2267); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2775); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2734: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2263); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2891); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2735: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2895); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2736: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2760); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2897); + if (lookahead == '_') ADVANCE(2744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2744); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2737: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2645); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == ':') ADVANCE(976); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2738: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2653); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == ':') ADVANCE(4039); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2739: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2740); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N') ADVANCE(2869); + if (lookahead == 'f') ADVANCE(2902); + if (lookahead == 'n') ADVANCE(2870); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2740: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2670); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T') ADVANCE(2892); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2741: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2758); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T') ADVANCE(2893); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2742: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2674); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2744); + if (lookahead == 'b') ADVANCE(3522); + if (lookahead == 'o') ADVANCE(3538); + if (lookahead == 'x') ADVANCE(3544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2746); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2743: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2742); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2744); + if (lookahead == 'b') ADVANCE(3522); + if (lookahead == 'o') ADVANCE(3538); + if (lookahead == 'x') ADVANCE(3544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2749); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2744: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2744); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2745: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2700); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2729); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2746: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2656); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2745); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2747: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2659); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2746); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2748: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2776); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2736); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2749: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2692); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2748); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2750: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2647); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2749); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2751: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2655); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2797); + if (lookahead == 'o') ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2752: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2706); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2797); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2753: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2796); + if (lookahead == 'o') ADVANCE(2761); + if (lookahead == 'u') ADVANCE(2849); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2754: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2657); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2795); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2755: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2707); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2866); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2756: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2654); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2843); + if (lookahead == 'o') ADVANCE(2805); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2757: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2673); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2839); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2758: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2747); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(2788); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2759: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(2774); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2760: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2699); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(2789); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2761: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2753); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'd') ADVANCE(2859); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2762: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2757); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'd') ADVANCE(2769); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2763: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'w') ADVANCE(2711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2221); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2764: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'w') ADVANCE(2712); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2266); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2765: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'y') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2785); + if (lookahead == 'o') ADVANCE(2901); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2766: - ACCEPT_TOKEN(aux_sym_unquoted_token1); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2865); + if (lookahead == 'u') ADVANCE(2800); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + lookahead == 'a') ADVANCE(2875); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2767: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2786); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2768: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1499); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2806); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 2769: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2731); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2770: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1509); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2808); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2771: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2754); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2772: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2769); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2844); + if (lookahead == 'i') ADVANCE(2840); + if (lookahead == 'o') ADVANCE(2814); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2773: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2774); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2809); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2774: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2733); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2775: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2413); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2810); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2776: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2209); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2829); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2777: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2909); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2778: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2658); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2827); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2779: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2664); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2910); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2780: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2416); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2914); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2781: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2410); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2922); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2782: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2421); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2924); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2783: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2413); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2929); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2784: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2778); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2833); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2785: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2780); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'f') ADVANCE(2903); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2786: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2779); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'g') ADVANCE(2794); + if (lookahead == 't') ADVANCE(2857); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2787: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2781); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'h') ADVANCE(2793); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2788: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2663); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'h') ADVANCE(2917); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2789: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2788); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'h') ADVANCE(2921); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2790: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2790); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'i') ADVANCE(2762); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2791: - ACCEPT_TOKEN(aux_sym_unquoted_token2); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'i') ADVANCE(2757); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2792: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2722); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'r') ADVANCE(2737); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'i') ADVANCE(2813); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2793: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2702); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'u') ADVANCE(2750); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'i') ADVANCE(2803); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2794: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2683); - if (lookahead == '-') ADVANCE(2686); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == '_') ADVANCE(2686); - if (lookahead == 'r') ADVANCE(2737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'i') ADVANCE(2837); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2795: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(703); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'k') ADVANCE(2916); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2796: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'r') ADVANCE(703); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'k') ADVANCE(2780); + if (lookahead == 't') ADVANCE(2760); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2797: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(731); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(2836); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2798: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'u') ADVANCE(731); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(2274); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2799: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(705); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(2791); + if (lookahead == 's') ADVANCE(2900); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2800: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(736); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(2798); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2801: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2727); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'n') ADVANCE(2698); - if (lookahead == 'r') ADVANCE(2738); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(2755); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2802: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(2704); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(2756); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(2841); + if (lookahead == 'r') ADVANCE(2826); + if (lookahead == 'x') ADVANCE(2820); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2803: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(590); - if (lookahead == '-') ADVANCE(593); - if (lookahead == '>') ADVANCE(761); - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'r') ADVANCE(703); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(2781); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2804: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(2004); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(556); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(2782); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2805: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(556); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(2842); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2806: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(556); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(2861); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 2807: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(1032); - if (lookahead == '_') ADVANCE(1016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(3116); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2808: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(2862); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2809: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2682); - if (lookahead == '_') ADVANCE(2660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(2864); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2810: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2688); - if (lookahead == '_') ADVANCE(2661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(2863); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2811: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2189); - if (lookahead == '~') ADVANCE(2205); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(2923); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2812: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2186); - if (lookahead == '>') ADVANCE(2090); - if (lookahead == '~') ADVANCE(2202); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(2925); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2813: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2186); - if (lookahead == '~') ADVANCE(2202); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(2858); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2814: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2090); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'o') ADVANCE(2819); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2815: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(1356); - if (lookahead == 'n') ADVANCE(1365); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'o') ADVANCE(2856); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2816: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N') ADVANCE(2768); - if (lookahead == 'n') ADVANCE(2052); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'o') ADVANCE(2845); + if (lookahead == 'u') ADVANCE(2800); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2875); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2817: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'o') ADVANCE(2832); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2818: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2686); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'o') ADVANCE(2830); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2819: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(1034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'p') ADVANCE(2913); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2820: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'p') ADVANCE(2818); + if (lookahead == 't') ADVANCE(2778); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2821: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2854); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2822: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2723); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2823: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(593); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2853); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2824: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2337); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2759); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2825: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2337); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2727); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2826: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1252); - if (lookahead == 'o') ADVANCE(1183); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2817); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2827: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1205); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2811); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2828: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(2716); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2771); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2829: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(665); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2801); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2830: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(1153); - if (lookahead == 'o') ADVANCE(1072); - if (lookahead == 'u') ADVANCE(1257); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2847); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2831: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1290); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2904); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2832: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1121); - if (lookahead == 'o') ADVANCE(1355); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2919); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2833: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1263); - if (lookahead == 'i') ADVANCE(1241); - if (lookahead == 'o') ADVANCE(1188); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2930); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2834: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(1124); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(2812); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2835: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(2073); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(3256); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2836: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(1147); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(2764); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2837: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(2751); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(2852); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2838: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(1071); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(2777); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2839: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(738); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(2915); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2840: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1235); - if (lookahead == 'x') ADVANCE(1202); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(2850); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2841: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(1145); - if (lookahead == 's') ADVANCE(1364); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(2779); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2842: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(2695); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(2851); + if (lookahead == 't') ADVANCE(2792); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2843: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(2046); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(2758); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2844: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(611); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(2730); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2845: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(615); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(2884); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2846: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(2697); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(2724); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2847: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(2754); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(2732); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2848: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(613); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(2728); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2849: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(2732); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(2906); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2850: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(724); - if (lookahead == 'u') ADVANCE(663); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(2912); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2851: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(697); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(2918); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2852: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(739); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(2784); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2853: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(1286); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(2763); + if (lookahead == 'y') ADVANCE(2908); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2854: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2169); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(2763); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2855: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2760); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(2800); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2875); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2856: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1278); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(2824); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2857: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(748); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(2834); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2858: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(1106); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(2783); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2859: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(2142); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(2804); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2860: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(1082); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'v') ADVANCE(2776); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2861: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(2692); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'v') ADVANCE(2911); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 2862: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(601); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'v') ADVANCE(2920); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2863: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'v') ADVANCE(2928); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2864: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'v') ADVANCE(1116); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'v') ADVANCE(2931); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2865: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'w') ADVANCE(2907); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2866: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'y') ADVANCE(2927); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2867: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-' || + lookahead == '?') ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 2868: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1299); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2875); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2869: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2768); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2874); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2870: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(774); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2872); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2871: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2879); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2872: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - ADVANCE_MAP( - '!', 2919, - '#', 4590, - '$', 1979, - '*', 2155, - '+', 2245, - ',', 1968, - '-', 2031, - '.', 2362, - '/', 2224, - '0', 2940, - '<', 2195, - '=', 2921, - '>', 1998, - 'I', 3124, - 'N', 3115, - '_', 2096, - 'a', 3013, - 'b', 2994, - 'e', 2888, - 'f', 2945, - 'i', 2935, - 'm', 3029, - 'n', 3026, - 'o', 2887, - 's', 3078, - 't', 3040, - 'x', 3028, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2943); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 12, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2878); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2873: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - ADVANCE_MAP( - '!', 2919, - '#', 4590, - '*', 2155, - '+', 2246, - ',', 1968, - '-', 2035, - '/', 2224, - '<', 2195, - '=', 2921, - '>', 1998, - 'a', 3013, - 'b', 2994, - 'e', 3017, - 'i', 3018, - 'm', 3029, - 'n', 3027, - 'o', 3044, - 's', 3078, - 'x', 3028, - ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token4_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2880); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2874: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - ADVANCE_MAP( - '!', 2919, - '#', 4590, - '*', 2155, - '+', 2246, - '-', 2035, - '/', 2224, - '<', 2195, - '=', 2920, - '>', 1998, - 'a', 3013, - 'b', 2994, - 'e', 3017, - 'i', 3018, - 'm', 3029, - 'n', 3027, - 'o', 3044, - 's', 3078, - 'x', 3028, - ); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2877); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2875: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - ADVANCE_MAP( - '!', 2919, - '#', 4590, - '*', 2155, - '+', 2246, - '-', 2035, - '/', 2224, - '<', 2195, - '=', 2921, - '>', 1998, - 'a', 3013, - 'b', 2994, - 'e', 3017, - 'i', 3018, - 'm', 3029, - 'n', 3027, - 'o', 3044, - 's', 3078, - 'x', 3028, - ); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2876: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - ADVANCE_MAP( - '!', 2919, - '#', 4590, - '*', 2155, - '+', 2246, - '-', 2018, - '/', 2224, - '<', 2195, - '=', 2921, - '>', 1998, - 'a', 3013, - 'b', 2994, - 'e', 3017, - 'i', 3018, - 'm', 3029, - 'n', 3027, - 'o', 3044, - 's', 3078, - 'x', 3028, - ); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2869); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2877: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - ADVANCE_MAP( - '#', 4590, - '$', 1972, - '+', 2914, - '-', 2031, - '.', 2362, - '0', 2940, - 'N', 3115, - '_', 2944, - 'f', 2945, - 'n', 3035, - 't', 3040, - 'I', 3124, - 'i', 3124, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2943); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2871); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2878: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4590); - if (lookahead == '$') ADVANCE(1979); - if (lookahead == '-') ADVANCE(2018); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3154); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3138); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2873); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2879: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4590); - if (lookahead == '$') ADVANCE(1979); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3154); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3138); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2881); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2880: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - ADVANCE_MAP( - '#', 4590, - '+', 2911, - '-', 2906, - '.', 2366, - 'I', 3126, - 'N', 3116, - '_', 2938, - 'a', 3007, - 'b', 3048, - 'c', 2946, - 'd', 2963, - 'e', 3002, - 'f', 2947, - 'h', 2991, - 'i', 2936, - 'l', 2972, - 'm', 2948, - 'n', 2964, - 'o', 3101, - 'r', 2965, - 's', 3023, - 't', 3043, - 'u', 3069, - 'w', 2990, - ); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3154); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2938); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2882); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2881: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4590); - if (lookahead == '-') ADVANCE(2018); - if (lookahead == '!' || - lookahead == '$' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3154); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3138); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2882: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4590); - if (lookahead == '=') ADVANCE(2930); - if (lookahead == 'i') ADVANCE(2984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2905); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2883: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4590); - if (lookahead == '=') ADVANCE(2930); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2883); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2884: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4590); - if (lookahead == '_') ADVANCE(2939); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2312); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2885: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4590); - if (lookahead == 'i') ADVANCE(3018); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2885); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2886: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4590); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2734); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2887: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2971); - if (lookahead == '>') ADVANCE(2491); - if (lookahead == 'r') ADVANCE(2173); - if (lookahead == 'u') ADVANCE(3080); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2740); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2888: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(3022); - if (lookahead == '>') ADVANCE(2483); - if (lookahead == 'n') ADVANCE(2956); - if (lookahead == 'r') ADVANCE(3041); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2738); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2889: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(3025); - if (lookahead == '>') ADVANCE(2467); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2886); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2890: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2977); - if (lookahead == '>') ADVANCE(2475); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2737); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2891: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(3031); - if (lookahead == '>') ADVANCE(2482); - if (lookahead == 'n') ADVANCE(2956); - if (lookahead == 'r') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2887); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2892: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(3031); - if (lookahead == '>') ADVANCE(2482); - if (lookahead == 'r') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2888); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2893: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2978); - if (lookahead == '>') ADVANCE(2490); - if (lookahead == 'r') ADVANCE(2173); - if (lookahead == 'u') ADVANCE(3084); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2890); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2894: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2978); - if (lookahead == '>') ADVANCE(2490); - if (lookahead == 'u') ADVANCE(3084); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2741); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2895: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(3036); - if (lookahead == '>') ADVANCE(2466); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2894); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2896: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(3034); - if (lookahead == '>') ADVANCE(3106); - if (lookahead == 'n') ADVANCE(2956); - if (lookahead == 'r') ADVANCE(3056); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2735); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2897: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(3034); - if (lookahead == '>') ADVANCE(3106); - if (lookahead == 'r') ADVANCE(3056); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2898: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2980); - if (lookahead == '>') ADVANCE(3107); - if (lookahead == 'r') ADVANCE(2173); - if (lookahead == 'u') ADVANCE(3085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2898); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2899: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2980); - if (lookahead == '>') ADVANCE(3107); - if (lookahead == 'u') ADVANCE(3085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 2900: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(3037); - if (lookahead == '>') ADVANCE(3109); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); END_STATE(); case 2901: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2981); - if (lookahead == '>') ADVANCE(2474); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2092); END_STATE(); case 2902: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+') ADVANCE(2982); - if (lookahead == '>') ADVANCE(3111); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2903: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2953); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); END_STATE(); case 2904: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(3146); - if (lookahead == '_') ADVANCE(2944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2068); END_STATE(); case 2905: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(3103); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 2906: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2009); - if (lookahead == '.') ADVANCE(2944); - if (lookahead == '_') ADVANCE(2914); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); END_STATE(); case 2907: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2993); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2191); END_STATE(); case 2908: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(2975); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2110); END_STATE(); case 2909: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(3147); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1963); END_STATE(); case 2910: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '-') ADVANCE(3104); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2104); END_STATE(); case 2911: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(2938); - if (lookahead == '_') ADVANCE(2911); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2938); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); case 2912: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(3144); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2915); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2185); END_STATE(); case 2913: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(2944); - if (lookahead == '_') ADVANCE(2914); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2914: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(2944); - if (lookahead == '_') ADVANCE(2914); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2197); END_STATE(); case 2915: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '2') ADVANCE(3135); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3145); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1957); END_STATE(); case 2916: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ':') ADVANCE(3137); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3140); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2128); END_STATE(); case 2917: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ':') ADVANCE(3150); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2116); END_STATE(); case 2918: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ':') ADVANCE(3152); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); END_STATE(); case 2919: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(2191); - if (lookahead == '~') ADVANCE(2208); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2086); END_STATE(); case 2920: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(2188); - if (lookahead == '>') ADVANCE(2092); - if (lookahead == '~') ADVANCE(2204); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2921: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '=') ADVANCE(2188); - if (lookahead == '~') ADVANCE(2204); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2122); END_STATE(); case 2922: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2522); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2080); END_STATE(); case 2923: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2514); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); case 2924: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2498); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1978); END_STATE(); case 2925: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2506); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2140); END_STATE(); case 2926: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2523); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); END_STATE(); case 2927: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2515); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2056); END_STATE(); case 2928: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2499); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 2929: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2134); END_STATE(); case 2930: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(2092); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2062); END_STATE(); case 2931: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(3108); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1966); END_STATE(); case 2932: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(3110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 2933: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(3112); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym__newline); + ADVANCE_MAP( + '\r', 3, + '!', 662, + '*', 586, + '+', 225, + '/', 228, + ':', 3615, + '=', 668, + 'a', 791, + 'b', 765, + 'e', 797, + 'i', 801, + 'm', 824, + 'n', 814, + 'o', 845, + 's', 871, + 'x', 823, + 0x0b, 649, + '\f', 649, + '\t', 226, + '\n', 226, + ' ', 226, + ); END_STATE(); case 2934: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '>') ADVANCE(3113); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym__newline); + ADVANCE_MAP( + '\r', 214, + '!', 662, + '*', 250, + '+', 224, + '-', 253, + '/', 228, + '<', 254, + '=', 668, + '>', 255, + 'a', 791, + 'b', 765, + 'e', 797, + 'i', 801, + 'm', 824, + 'n', 814, + 'o', 845, + 's', 871, + 'x', 823, + '\t', 248, + '\n', 248, + ' ', 248, + ); END_STATE(); case 2935: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(3117); - if (lookahead == 'n') ADVANCE(2051); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym__newline); + if (lookahead == ':') ADVANCE(3615); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(649); END_STATE(); case 2936: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N') ADVANCE(3118); - if (lookahead == 'f') ADVANCE(3134); - if (lookahead == 'n') ADVANCE(3118); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\n') ADVANCE(2935); + if (lookahead == '\r') ADVANCE(172); + if (lookahead == ':') ADVANCE(3615); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2936); + if (lookahead == 0x0b || + lookahead == '\f') ADVANCE(649); END_STATE(); case 2937: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'T') ADVANCE(3149); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2937); END_STATE(); case 2938: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2938); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2938); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 2939: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2939); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2312); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 2940: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2944); - if (lookahead == 'b') ADVANCE(2374); - if (lookahead == 'o') ADVANCE(2393); - if (lookahead == 'x') ADVANCE(2401); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2942); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 2941: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2904); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 2942: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 2943: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2942); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 2944: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(2944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 2945: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(3006); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 2946: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(3075); - if (lookahead == 'o') ADVANCE(3015); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 2947: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(3012); - if (lookahead == 'o') ADVANCE(3042); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 2948: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(3001); - if (lookahead == 'o') ADVANCE(2960); - if (lookahead == 'u') ADVANCE(3074); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 2949: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(3000); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_def); + if (lookahead == ',') ADVANCE(1951); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1946); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1944); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1945); END_STATE(); case 2950: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(3105); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_def); + if (lookahead == ',') ADVANCE(1951); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4854); END_STATE(); case 2951: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(3063); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_def); + if (lookahead == ',') ADVANCE(1951); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1947); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1948); END_STATE(); case 2952: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(3055); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_def); + if (lookahead == ',') ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1949); END_STATE(); case 2953: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'a') ADVANCE(3021); - if (lookahead == 'o') ADVANCE(3046); - if (lookahead == 's') ADVANCE(2986); - if (lookahead == 'x') ADVANCE(3032); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_def); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1951); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1950); END_STATE(); case 2954: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2987); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); END_STATE(); case 2955: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'c') ADVANCE(2966); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (lookahead == ',') ADVANCE(1966); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1964); END_STATE(); case 2956: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(3066); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (lookahead == ',') ADVANCE(1966); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4893); END_STATE(); case 2957: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2163); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (lookahead == ',') ADVANCE(1966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1965); END_STATE(); case 2958: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2230); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1966); END_STATE(); case 2959: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2262); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 2960: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(3093); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == ',') ADVANCE(1972); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1968); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1967); END_STATE(); case 2961: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'd') ADVANCE(2966); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == ',') ADVANCE(1972); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4883); END_STATE(); case 2962: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == ',') ADVANCE(1972); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1969); END_STATE(); case 2963: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2983); - if (lookahead == 'o') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == ',') ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); END_STATE(); case 2964: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(3102); - if (lookahead == 'u') ADVANCE(3009); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3125); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_extern); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1971); END_STATE(); case 2965: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2985); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_extern); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); case 2966: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2908); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 2967: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1387); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_module); + if (lookahead == ',') ADVANCE(1978); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1974); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1973); END_STATE(); case 2968: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1477); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_module); + if (lookahead == ',') ADVANCE(1978); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4884); END_STATE(); case 2969: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1394); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_module); + if (lookahead == ',') ADVANCE(1978); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1975); END_STATE(); case 2970: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(1484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_module); + if (lookahead == ',') ADVANCE(1978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1976); END_STATE(); case 2971: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2927); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_module); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1978); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1977); END_STATE(); case 2972: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(3076); - if (lookahead == 'i') ADVANCE(3068); - if (lookahead == 'o') ADVANCE(3024); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1978); END_STATE(); case 2973: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2949); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 2974: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(3042); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_use); + if (lookahead == ',') ADVANCE(1963); + if (lookahead == '-' || + lookahead == '@') ADVANCE(1959); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1958); END_STATE(); case 2975: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(3019); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_use); + if (lookahead == ',') ADVANCE(1963); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4863); END_STATE(); case 2976: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(3057); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_use); + if (lookahead == ',') ADVANCE(1963); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1960); END_STATE(); case 2977: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(3058); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_use); + if (lookahead == ',') ADVANCE(1963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); END_STATE(); case 2978: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2923); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_use); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1963); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1962); END_STATE(); case 2979: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(3053); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1963); END_STATE(); case 2980: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(2932); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 2981: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(3060); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_COLON); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 2982: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'e') ADVANCE(3061); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 2983: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 2984: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'f') ADVANCE(2078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 2985: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'g') ADVANCE(2999); - if (lookahead == 't') ADVANCE(3097); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 2986: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(3005); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 2987: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 2988: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2185); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_COMMA); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 2989: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2181); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 2990: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'h') ADVANCE(2996); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(3604); + if (lookahead == '\'') ADVANCE(3600); END_STATE(); case 2991: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2961); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(3604); + if (lookahead == '\'') ADVANCE(3600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 2992: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(2951); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(3605); + if (lookahead == '\'') ADVANCE(3601); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); END_STATE(); case 2993: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(3016); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); END_STATE(); case 2994: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(3073); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 2995: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(3020); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 2996: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(3011); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 2997: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(3081); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_error); + if (lookahead == ',') ADVANCE(2086); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2082); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2084); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2081); END_STATE(); case 2998: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(3083); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_error); + if (lookahead == ',') ADVANCE(2086); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4876); END_STATE(); case 2999: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'i') ADVANCE(3070); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_error); + if (lookahead == ',') ADVANCE(2086); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2084); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2083); END_STATE(); case 3000: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'k') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_error); + if (lookahead == ',') ADVANCE(2086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2084); END_STATE(); case 3001: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'k') ADVANCE(2962); - if (lookahead == 't') ADVANCE(2954); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_error); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2086); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2085); END_STATE(); case 3002: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(3069); - if (lookahead == 'r') ADVANCE(3052); - if (lookahead == 'x') ADVANCE(3039); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_error); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3003: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1489); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_error); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2086); END_STATE(); case 3004: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(1496); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 3005: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2254); - if (lookahead == 'r') ADVANCE(2258); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 3006: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(3065); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 3007: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2992); - if (lookahead == 's') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 3008: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(3004); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_list); END_STATE(); case 3009: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(3003); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_list); + if (lookahead == ',') ADVANCE(2185); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2181); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2183); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2180); END_STATE(); case 3010: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2950); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_list); + if (lookahead == ',') ADVANCE(2185); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4869); END_STATE(); case 3011: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(2962); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_list); + if (lookahead == ',') ADVANCE(2185); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2183); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2182); END_STATE(); case 3012: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'l') ADVANCE(3071); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_list); + if (lookahead == ',') ADVANCE(2185); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2183); END_STATE(); case 3013: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2957); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_list); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2185); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2184); END_STATE(); case 3014: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_list); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3015: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(3067); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_list); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2185); END_STATE(); case 3016: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2177); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 3017: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2956); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(3288); END_STATE(); case 3018: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2058); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 3019: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(3100); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(3289); END_STATE(); case 3020: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(3092); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 3021: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'n') ADVANCE(2959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 3022: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2926); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (lookahead == '$') ADVANCE(3463); + if (lookahead == '(') ADVANCE(3372); + if (lookahead == '{') ADVANCE(3609); END_STATE(); case 3023: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3095); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3024: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3038); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 3025: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3094); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 3026: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3079); - if (lookahead == 'u') ADVANCE(3008); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3123); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3027: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3079); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3028: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3045); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3029: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 3030: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3042); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3025); END_STATE(); case 3031: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2922); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3025); + if (lookahead == '.') ADVANCE(2314); + if (lookahead == '=') ADVANCE(1170); + if (lookahead == '_') ADVANCE(3686); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3032: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3047); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + ADVANCE_MAP( + '-', 3025, + '.', 4474, + '=', 1170, + '_', 4464, + '\t', 3307, + ' ', 3307, + 'I', 4477, + 'i', 4477, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3033: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3049); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3025); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '_') ADVANCE(636); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3034: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3025); + if (lookahead == '.') ADVANCE(4105); + if (lookahead == '_') ADVANCE(4079); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4197); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3035: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3077); - if (lookahead == 'u') ADVANCE(3008); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3123); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3025); + if (lookahead == '.') ADVANCE(683); + if (lookahead == '_') ADVANCE(642); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3036: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3098); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3025); + if (lookahead == '.') ADVANCE(683); + if (lookahead == '_') ADVANCE(642); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3037: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'o') ADVANCE(3099); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3025); + if (lookahead == '.') ADVANCE(4584); + if (lookahead == '_') ADVANCE(4566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3038: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'p') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3025); + if (lookahead == '.') ADVANCE(4116); + if (lookahead == '_') ADVANCE(4082); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4197); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3039: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'p') ADVANCE(3033); - if (lookahead == 't') ADVANCE(2979); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3025); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3307); END_STATE(); case 3040: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3091); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3026); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '_') ADVANCE(3777); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3814); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3041: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2889); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3026); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3042: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3028); + if (lookahead == '.') ADVANCE(4280); + if (lookahead == '_') ADVANCE(4249); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4426); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3043: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3096); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3044: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2173); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(3027); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3045: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2168); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '=') ADVANCE(1170); + if (lookahead == '_') ADVANCE(636); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3046: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2270); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '=') ADVANCE(1170); + if (lookahead == '_') ADVANCE(636); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3047: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2266); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '_') ADVANCE(636); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3048: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2973); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '_') ADVANCE(3777); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3814); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3049: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3076); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(4811); + if (lookahead == '_') ADVANCE(4803); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3050: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2955); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(4902); + if (lookahead == '_') ADVANCE(4895); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5006); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4902); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); END_STATE(); case 3051: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2895); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(4105); + if (lookahead == '_') ADVANCE(4079); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4197); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3052: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3030); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(683); + if (lookahead == '_') ADVANCE(642); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3053: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3014); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(4812); + if (lookahead == '_') ADVANCE(4805); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3054: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2929); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(4280); + if (lookahead == '_') ADVANCE(4249); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4426); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3055: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3089); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 3056: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2900); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == '+') ADVANCE(2420); + if (lookahead == '-') ADVANCE(3636); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == '_') ADVANCE(2420); + if (lookahead == 'i') ADVANCE(2451); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3527); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3057: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3010); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + ADVANCE_MAP( + '+', 2419, + '-', 3636, + '>', 3711, + 'I', 2704, + '_', 2420, + 'i', 2704, + 'l', 2639, + 'n', 2464, + 'r', 2596, + 'x', 2590, + 'B', 3527, + 'b', 3527, + ); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3058: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3054); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == '+') ADVANCE(2491); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'n') ADVANCE(2469); + if (lookahead == 'r') ADVANCE(3276); + if (lookahead == 'u') ADVANCE(2657); + if (lookahead == 'v') ADVANCE(2494); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3059: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + ADVANCE_MAP( + ',', 3594, + ':', 3594, + '=', 3594, + 'u', 2702, + 'x', 2717, + '-', 3594, + '@', 3594, + '.', 3594, + '?', 3594, + '<', 3594, + '>', 3594, + '"', 3594, + '\'', 3594, + '`', 3594, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ';' || + lookahead == '[' || + lookahead == ']' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(3594); + if (lookahead != 0) ADVANCE(3595); END_STATE(); case 3060: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3059); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == '=') ADVANCE(3285); + if (lookahead == '~') ADVANCE(3291); END_STATE(); case 3061: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(3062); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == '=') ADVANCE(1172); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2720); END_STATE(); case 3062: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'r') ADVANCE(2934); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + ADVANCE_MAP( + 'I', 2704, + 'a', 2532, + 'i', 2560, + 'o', 2463, + 's', 3533, + 'u', 2655, + 'B', 3528, + 'b', 3528, + ); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3063: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == 'i') ADVANCE(2704); + if (lookahead == 'r') ADVANCE(2684); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3064: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2149); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == 'i') ADVANCE(2704); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3065: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2970); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'I') ADVANCE(2704); + if (lookahead == 'i') ADVANCE(2451); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3528); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3066: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2905); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'N') ADVANCE(2705); + if (lookahead == 'f') ADVANCE(3147); + if (lookahead == 'm') ADVANCE(2591); + if (lookahead == 'n') ADVANCE(3110); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3067: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(3074); - if (lookahead == 't') ADVANCE(2995); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == '_') ADVANCE(3422); + if (lookahead == 'b') ADVANCE(3517); + if (lookahead == 'o') ADVANCE(3534); + if (lookahead == 'x') ADVANCE(3540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3424); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3068: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(3074); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == '_') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3424); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3069: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2962); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == '`') ADVANCE(3592); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == '.' || + lookahead == ':' || + lookahead == ';' || + lookahead == '?' || + lookahead == '[' || + lookahead == ']' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(695); + if (lookahead != 0) ADVANCE(3687); END_STATE(); case 3070: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(3088); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'a') ADVANCE(2668); + if (lookahead == 'e') ADVANCE(2535); + if (lookahead == 'o') ADVANCE(2561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3071: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2968); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'a') ADVANCE(2698); + if (lookahead == 'e') ADVANCE(2510); + if (lookahead == 'o') ADVANCE(3140); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3072: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 's') ADVANCE(2910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'a') ADVANCE(2550); + if (lookahead == 'o') ADVANCE(2597); + if (lookahead == 'u') ADVANCE(2549); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3073: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2903); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'a') ADVANCE(2608); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3074: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'e') ADVANCE(2654); + if (lookahead == 'i') ADVANCE(2638); + if (lookahead == 'o') ADVANCE(2572); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3075: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2954); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'e') ADVANCE(2696); + if (lookahead == 'o') ADVANCE(2656); + if (lookahead == 's') ADVANCE(3533); + if (lookahead == 'u') ADVANCE(2536); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2708); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3076: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2908); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'e') ADVANCE(2512); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3077: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(3136); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'e') ADVANCE(2452); + if (lookahead == 'o') ADVANCE(2683); + if (lookahead == 't') ADVANCE(2444); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3078: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2952); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'h') ADVANCE(2498); + if (lookahead == 'k') ADVANCE(3533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3079: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2907); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'i') ADVANCE(2466); + if (lookahead == 'r') ADVANCE(3533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3080: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2890); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'l') ADVANCE(2521); + if (lookahead == 'n') ADVANCE(2460); + if (lookahead == 's') ADVANCE(3251); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3081: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'o') ADVANCE(2598); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3082: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2928); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'r') ADVANCE(2492); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3083: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2989); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 's') ADVANCE(3533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3084: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 's') ADVANCE(3530); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3085: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2708); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3086: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2924); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2705); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3087: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2933); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3169); END_STATE(); case 3088: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(2974); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3089: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 't') ADVANCE(3072); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(sym_param_short_flag_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3090: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(3008); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3123); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_break); + if (lookahead == ',') ADVANCE(2128); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2124); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2123); END_STATE(); case 3091: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_break); + if (lookahead == ',') ADVANCE(2128); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4873); END_STATE(); case 3092: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2962); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_break); + if (lookahead == ',') ADVANCE(2128); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2125); END_STATE(); case 3093: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(3011); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_break); + if (lookahead == ',') ADVANCE(2128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2126); END_STATE(); case 3094: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(3082); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_break); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2128); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2127); END_STATE(); case 3095: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(3050); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_break); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2128); END_STATE(); case 3096: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(2967); - if (lookahead == 'y') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == ',') ADVANCE(2134); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2130); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2132); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2129); END_STATE(); case 3097: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(3053); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == ',') ADVANCE(2134); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4891); END_STATE(); case 3098: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(3086); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == ',') ADVANCE(2134); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2132); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2131); END_STATE(); case 3099: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'u') ADVANCE(3087); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == ',') ADVANCE(2134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2132); END_STATE(); case 3100: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_continue); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2134); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2133); END_STATE(); case 3101: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'v') ADVANCE(2976); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_continue); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2134); END_STATE(); case 3102: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == ',') ADVANCE(2068); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2064); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2063); END_STATE(); case 3103: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2997); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == ',') ADVANCE(2068); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4855); END_STATE(); case 3104: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'w') ADVANCE(2998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == ',') ADVANCE(2068); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2065); END_STATE(); case 3105: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'y') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == ',') ADVANCE(2068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); END_STATE(); case 3106: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '|') ADVANCE(1933); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_for); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2068); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2067); END_STATE(); case 3107: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '|') ADVANCE(1934); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2068); END_STATE(); case 3108: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '|') ADVANCE(1938); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 3109: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '|') ADVANCE(1931); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_in); + ADVANCE_MAP( + '\n', 3362, + '\r', 12, + ',', 2179, + '\t', 3328, + ' ', 3328, + 'F', 2154, + 'f', 2154, + '-', 2165, + '.', 2165, + '?', 2165, + '@', 2165, + ); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); END_STATE(); case 3110: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '|') ADVANCE(1937); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2153); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2165); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2147); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); END_STATE(); case 3111: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '|') ADVANCE(1932); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2156); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); END_STATE(); case 3112: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '|') ADVANCE(1935); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4848); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); END_STATE(); case 3113: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '|') ADVANCE(1936); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3329); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 3114: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2915); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3154); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3114); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2168); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2179); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); END_STATE(); case 3115: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3123); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); END_STATE(); case 3116: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3125); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_in); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 3117: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3121); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_in); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3118: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3122); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3119: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3120: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3130); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == ',') ADVANCE(2074); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2070); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2072); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2069); END_STATE(); case 3121: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3127); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == ',') ADVANCE(2074); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4870); END_STATE(); case 3122: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3128); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == ',') ADVANCE(2074); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2072); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2071); END_STATE(); case 3123: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == ',') ADVANCE(2074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); END_STATE(); case 3124: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3117); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_loop); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2074); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2073); END_STATE(); case 3125: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2074); END_STATE(); case 3126: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3118); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_make); END_STATE(); case 3127: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3119); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_make); + if (lookahead == ',') ADVANCE(2197); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2193); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2195); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2192); END_STATE(); case 3128: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3120); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_make); + if (lookahead == ',') ADVANCE(2197); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4871); END_STATE(); case 3129: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3131); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_make); + if (lookahead == ',') ADVANCE(2197); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2195); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2194); END_STATE(); case 3130: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3132); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_make); + if (lookahead == ',') ADVANCE(2197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2195); END_STATE(); case 3131: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_make); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2197); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2196); END_STATE(); case 3132: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_make); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2197); END_STATE(); case 3133: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3133); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == ',') ADVANCE(2080); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2076); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2075); END_STATE(); case 3134: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == ',') ADVANCE(2080); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4878); END_STATE(); case 3135: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2916); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == ',') ADVANCE(2080); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2077); END_STATE(); case 3136: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2209); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == ',') ADVANCE(2080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); END_STATE(); case 3137: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3140); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_while); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2080); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2079); END_STATE(); case 3138: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(3138); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2080); END_STATE(); case 3139: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3139); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 3140: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3154); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == ',') ADVANCE(2092); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2088); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2087); END_STATE(); case 3141: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2937); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == ',') ADVANCE(2092); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4846); END_STATE(); case 3142: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2918); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == ',') ADVANCE(2092); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2089); END_STATE(); case 3143: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2912); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == ',') ADVANCE(2092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2090); END_STATE(); case 3144: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3114); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_do); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2092); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2091); END_STATE(); case 3145: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2916); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_do); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2092); END_STATE(); case 3146: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3148); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 3147: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3141); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == ',') ADVANCE(2098); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2094); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2096); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); END_STATE(); case 3148: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2909); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == ',') ADVANCE(2098); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4847); END_STATE(); case 3149: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3142); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == ',') ADVANCE(2098); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2096); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2095); END_STATE(); case 3150: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3143); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == ',') ADVANCE(2098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2096); END_STATE(); case 3151: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_if); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2098); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2097); END_STATE(); case 3152: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3151); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2098); END_STATE(); case 3153: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3153); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3154: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 3155: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (eof) ADVANCE(969); - ADVANCE_MAP( - '!', 2919, - '#', 4590, - '*', 2155, - '+', 2246, - '-', 2035, - '/', 2224, - '<', 2195, - '=', 2921, - '>', 1998, - 'a', 3013, - 'b', 2994, - 'e', 2891, - 'i', 3018, - 'm', 3029, - 'n', 3027, - 'o', 2893, - 's', 3078, - 'x', 3028, - ); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == ',') ADVANCE(2104); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2100); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2102); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2099); END_STATE(); case 3156: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (eof) ADVANCE(969); - ADVANCE_MAP( - '!', 2919, - '#', 4590, - '*', 2155, - '+', 2246, - '-', 2035, - '/', 2224, - '<', 2195, - '=', 2921, - '>', 1998, - 'a', 3013, - 'b', 2994, - 'e', 2896, - 'i', 3018, - 'm', 3029, - 'n', 3027, - 'o', 2898, - 's', 3078, - 'x', 3028, - ); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == ',') ADVANCE(2104); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4864); END_STATE(); case 3157: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (eof) ADVANCE(969); - ADVANCE_MAP( - '#', 4590, - '$', 1972, - '+', 2914, - '-', 2017, - '.', 2362, - '0', 2940, - 'N', 3115, - '_', 2944, - 'e', 2892, - 'f', 2945, - 'n', 3090, - 'o', 2894, - 't', 3040, - 'I', 3124, - 'i', 3124, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2943); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == ',') ADVANCE(2104); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2102); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2101); END_STATE(); case 3158: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (eof) ADVANCE(969); - ADVANCE_MAP( - '#', 4590, - '*', 2156, - '+', 2911, - '-', 2913, - '.', 2366, - 'I', 3126, - 'N', 3116, - '_', 2938, - 'a', 3007, - 'b', 3048, - 'c', 2946, - 'd', 2963, - 'e', 3002, - 'f', 2947, - 'h', 2991, - 'i', 2936, - 'l', 2972, - 'm', 2948, - 'n', 2964, - 'o', 3101, - 'r', 2965, - 's', 3023, - 't', 3043, - 'u', 3069, - 'w', 2990, - ); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3154); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2938); - if ((!eof && set_contains(aux_sym_unquoted_token5_character_set_1, 11, lookahead))) ADVANCE(3134); + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == ',') ADVANCE(2104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2102); END_STATE(); case 3159: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (eof) ADVANCE(969); - if (lookahead == '#') ADVANCE(4590); - if (lookahead == '-') ADVANCE(2018); - if (lookahead == 'a') ADVANCE(3064); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_else); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2104); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2103); END_STATE(); case 3160: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (eof) ADVANCE(969); - if (lookahead == '#') ADVANCE(4590); - if (lookahead == 'a') ADVANCE(3013); - if (lookahead == 'e') ADVANCE(2897); - if (lookahead == 'o') ADVANCE(2898); - if (lookahead == 'x') ADVANCE(3028); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3161: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (eof) ADVANCE(969); - if (lookahead == '#') ADVANCE(4590); - if (lookahead == 'e') ADVANCE(2897); - if (lookahead == 'o') ADVANCE(2899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2104); END_STATE(); case 3162: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (eof) ADVANCE(969); - if (lookahead == '#') ADVANCE(4590); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 3163: - ACCEPT_TOKEN(aux_sym_unquoted_token4); + ACCEPT_TOKEN(anon_sym_match); + if (lookahead == ',') ADVANCE(2122); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2118); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2117); END_STATE(); case 3164: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(2722); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'r') ADVANCE(2737); + ACCEPT_TOKEN(anon_sym_match); + if (lookahead == ',') ADVANCE(2122); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4877); END_STATE(); case 3165: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(2702); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'u') ADVANCE(2750); + ACCEPT_TOKEN(anon_sym_match); + if (lookahead == ',') ADVANCE(2122); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); END_STATE(); case 3166: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(703); + ACCEPT_TOKEN(anon_sym_match); + if (lookahead == ',') ADVANCE(2122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); case 3167: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'r') ADVANCE(703); + ACCEPT_TOKEN(anon_sym_match); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2122); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2121); END_STATE(); case 3168: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(731); + ACCEPT_TOKEN(anon_sym_match); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2122); END_STATE(); case 3169: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'u') ADVANCE(731); + ACCEPT_TOKEN(aux_sym_ctrl_match_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3169); END_STATE(); case 3170: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(705); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 3171: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(736); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 3172: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(2727); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'n') ADVANCE(2698); - if (lookahead == 'r') ADVANCE(2738); + ACCEPT_TOKEN(anon_sym_EQ_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3173: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(2704); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(2756); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(3903); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3174: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(2004); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3175: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3176: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(4112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 3177: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(1033); - if (lookahead == '_') ADVANCE(1017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(3912); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 3178: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(2688); - if (lookahead == '_') ADVANCE(2661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(4115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3179: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(2189); - if (lookahead == '~') ADVANCE(2205); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(4280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3180: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(1356); - if (lookahead == 'n') ADVANCE(1365); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(3022); + if (lookahead == '<') ADVANCE(3412); + if (lookahead == '=') ADVANCE(3409); END_STATE(); case 3181: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(2768); - if (lookahead == 'n') ADVANCE(2052); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(1181); + if (lookahead == '<') ADVANCE(3412); + if (lookahead == '=') ADVANCE(3409); END_STATE(); case 3182: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(3841); + if (lookahead == '<') ADVANCE(3412); + if (lookahead == '=') ADVANCE(3409); END_STATE(); case 3183: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(4457); + if (lookahead == '<') ADVANCE(3412); + if (lookahead == '=') ADVANCE(3409); END_STATE(); case 3184: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(3412); + if (lookahead == '=') ADVANCE(3409); END_STATE(); case 3185: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(3414); + if (lookahead == '=') ADVANCE(3411); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3186: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1252); - if (lookahead == 'o') ADVANCE(1183); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(3413); + if (lookahead == '=') ADVANCE(3410); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3187: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1205); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 3188: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(2716); + ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(3604); + if (lookahead == '\'') ADVANCE(3600); END_STATE(); case 3189: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(665); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 3190: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(1153); - if (lookahead == 'o') ADVANCE(1072); - if (lookahead == 'u') ADVANCE(1257); + ACCEPT_TOKEN(anon_sym_try); + if (lookahead == ',') ADVANCE(2110); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2106); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2108); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); END_STATE(); case 3191: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1290); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(anon_sym_try); + if (lookahead == ',') ADVANCE(2110); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4862); END_STATE(); case 3192: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1121); - if (lookahead == 'o') ADVANCE(1355); + ACCEPT_TOKEN(anon_sym_try); + if (lookahead == ',') ADVANCE(2110); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2108); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2107); END_STATE(); case 3193: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1263); - if (lookahead == 'i') ADVANCE(1241); - if (lookahead == 'o') ADVANCE(1188); + ACCEPT_TOKEN(anon_sym_try); + if (lookahead == ',') ADVANCE(2110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2108); END_STATE(); case 3194: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(1124); + ACCEPT_TOKEN(anon_sym_try); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2110); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2109); END_STATE(); case 3195: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(2073); + ACCEPT_TOKEN(anon_sym_try); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2110); END_STATE(); case 3196: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(1147); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 3197: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(2751); + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == ',') ADVANCE(2116); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2112); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2114); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2111); END_STATE(); case 3198: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(1071); + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == ',') ADVANCE(2116); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4874); END_STATE(); case 3199: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(738); + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == ',') ADVANCE(2116); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2114); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2113); END_STATE(); case 3200: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1235); - if (lookahead == 'x') ADVANCE(1202); + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == ',') ADVANCE(2116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2114); END_STATE(); case 3201: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(1145); - if (lookahead == 's') ADVANCE(1364); + ACCEPT_TOKEN(anon_sym_catch); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2116); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2115); END_STATE(); case 3202: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(2695); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3203: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(2046); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2116); END_STATE(); case 3204: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(611); + ACCEPT_TOKEN(anon_sym_return); + if (lookahead == ',') ADVANCE(2140); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2136); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2138); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2135); END_STATE(); case 3205: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(615); + ACCEPT_TOKEN(anon_sym_return); + if (lookahead == ',') ADVANCE(2140); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4885); END_STATE(); case 3206: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(2697); + ACCEPT_TOKEN(anon_sym_return); + if (lookahead == ',') ADVANCE(2140); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2138); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2137); END_STATE(); case 3207: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(2754); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(anon_sym_return); + if (lookahead == ',') ADVANCE(2140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2138); END_STATE(); case 3208: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(613); + ACCEPT_TOKEN(anon_sym_return); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2140); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2139); END_STATE(); case 3209: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(2732); + ACCEPT_TOKEN(anon_sym_return); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2140); END_STATE(); case 3210: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(724); - if (lookahead == 'u') ADVANCE(663); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(2031); + if (lookahead == '@') ADVANCE(2038); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 3211: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(697); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(2032); + if (lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2039); END_STATE(); case 3212: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(739); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(2032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); END_STATE(); case 3213: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(1286); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(4886); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); END_STATE(); case 3214: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2169); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == '-') ADVANCE(2043); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); END_STATE(); case 3215: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2760); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == '-') ADVANCE(2043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 3216: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1278); + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); END_STATE(); case 3217: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(748); + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if (lookahead == ',') ADVANCE(2050); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); END_STATE(); case 3218: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(1106); + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if (lookahead == ',') ADVANCE(2050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); END_STATE(); case 3219: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(2142); + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); END_STATE(); case 3220: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(1082); + ACCEPT_TOKEN(anon_sym_register); + if (lookahead == ',') ADVANCE(2062); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2058); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2057); END_STATE(); case 3221: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(2692); + ACCEPT_TOKEN(anon_sym_register); + if (lookahead == ',') ADVANCE(2062); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4892); END_STATE(); case 3222: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(601); + ACCEPT_TOKEN(anon_sym_register); + if (lookahead == ',') ADVANCE(2062); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2059); END_STATE(); case 3223: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(anon_sym_register); + if (lookahead == ',') ADVANCE(2062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); END_STATE(); case 3224: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(1116); + ACCEPT_TOKEN(anon_sym_register); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2062); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2061); END_STATE(); case 3225: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(anon_sym_register); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2062); END_STATE(); case 3226: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(anon_sym_hide); END_STATE(); case 3227: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == '-') ADVANCE(2011); + if (lookahead == '@') ADVANCE(2018); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2020); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2017); END_STATE(); case 3228: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1299); + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == '-') ADVANCE(2012); + if (lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2020); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2019); END_STATE(); case 3229: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2768); + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == '-') ADVANCE(2012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); END_STATE(); case 3230: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(774); + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == '-') ADVANCE(4865); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); END_STATE(); case 3231: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == '-') ADVANCE(2023); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2030); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); END_STATE(); case 3232: - ACCEPT_TOKEN(aux_sym_unquoted_token5); + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == '-') ADVANCE(2023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 3233: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(2722); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'r') ADVANCE(2737); + ACCEPT_TOKEN(anon_sym_hide_DASHenv); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); END_STATE(); case 3234: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(2702); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'u') ADVANCE(2750); + ACCEPT_TOKEN(anon_sym_hide_DASHenv); + if (lookahead == ',') ADVANCE(2030); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); END_STATE(); case 3235: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(703); + ACCEPT_TOKEN(anon_sym_hide_DASHenv); + if (lookahead == ',') ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); END_STATE(); case 3236: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'r') ADVANCE(703); + ACCEPT_TOKEN(anon_sym_hide_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 3237: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(731); + ACCEPT_TOKEN(anon_sym_overlay); + if (lookahead == ',') ADVANCE(2056); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2052); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2054); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2051); END_STATE(); case 3238: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'u') ADVANCE(731); + ACCEPT_TOKEN(anon_sym_overlay); + if (lookahead == ',') ADVANCE(2056); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4890); END_STATE(); case 3239: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(705); + ACCEPT_TOKEN(anon_sym_overlay); + if (lookahead == ',') ADVANCE(2056); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2054); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2053); END_STATE(); case 3240: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(736); + ACCEPT_TOKEN(anon_sym_overlay); + if (lookahead == ',') ADVANCE(2056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); END_STATE(); case 3241: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(2727); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'n') ADVANCE(2698); - if (lookahead == 'r') ADVANCE(2738); + ACCEPT_TOKEN(anon_sym_overlay); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2056); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2055); END_STATE(); case 3242: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '+') ADVANCE(2704); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(2756); + ACCEPT_TOKEN(anon_sym_overlay); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2056); END_STATE(); case 3243: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '-') ADVANCE(2004); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 3244: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(anon_sym_new); + if (lookahead == ',') ADVANCE(2191); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2187); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2189); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2186); END_STATE(); case 3245: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(anon_sym_new); + if (lookahead == ',') ADVANCE(2191); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4861); END_STATE(); case 3246: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '.') ADVANCE(1033); - if (lookahead == '_') ADVANCE(1017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(anon_sym_new); + if (lookahead == ',') ADVANCE(2191); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2189); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2188); END_STATE(); case 3247: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '.') ADVANCE(2688); - if (lookahead == '_') ADVANCE(2661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(anon_sym_new); + if (lookahead == ',') ADVANCE(2191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2189); END_STATE(); case 3248: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(2189); - if (lookahead == '~') ADVANCE(2205); + ACCEPT_TOKEN(anon_sym_new); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2191); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2190); END_STATE(); case 3249: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(2186); - if (lookahead == '>') ADVANCE(2090); - if (lookahead == '~') ADVANCE(2202); + ACCEPT_TOKEN(anon_sym_new); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2191); END_STATE(); case 3250: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '=') ADVANCE(2186); - if (lookahead == '~') ADVANCE(2202); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 3251: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '>') ADVANCE(2090); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == ',') ADVANCE(2146); + if (lookahead == '-' || + lookahead == '@') ADVANCE(2142); + if (lookahead == '.' || + lookahead == '?') ADVANCE(2144); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2141); END_STATE(); case 3252: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(1356); - if (lookahead == 'n') ADVANCE(1365); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == ',') ADVANCE(2146); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4845); END_STATE(); case 3253: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N') ADVANCE(2768); - if (lookahead == 'n') ADVANCE(2052); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == ',') ADVANCE(2146); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(2144); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2143); END_STATE(); case 3254: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == ',') ADVANCE(2146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2144); END_STATE(); case 3255: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(anon_sym_as); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2146); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2145); END_STATE(); case 3256: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(anon_sym_as); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 3257: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == '_') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(anon_sym_as); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3258: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1252); - if (lookahead == 'o') ADVANCE(1183); + ACCEPT_TOKEN(anon_sym_as); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); END_STATE(); case 3259: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1205); + ACCEPT_TOKEN(anon_sym_as); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3260: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(2716); + ACCEPT_TOKEN(sym_wild_card); END_STATE(); case 3261: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(665); + ACCEPT_TOKEN(sym_wild_card); + if (lookahead == '*') ADVANCE(1174); + if (lookahead == '=') ADVANCE(1171); END_STATE(); case 3262: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'a') ADVANCE(1153); - if (lookahead == 'o') ADVANCE(1072); - if (lookahead == 'u') ADVANCE(1257); + ACCEPT_TOKEN(sym_wild_card); + if (lookahead == '=') ADVANCE(1171); END_STATE(); case 3263: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1290); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 3264: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1121); - if (lookahead == 'o') ADVANCE(1355); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 3265: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1263); - if (lookahead == 'i') ADVANCE(1241); - if (lookahead == 'o') ADVANCE(1188); + ACCEPT_TOKEN(anon_sym_where); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3266: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'e') ADVANCE(1124); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 3267: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'f') ADVANCE(2073); + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '\n') ADVANCE(3359); + if (lookahead == '\r') ADVANCE(14); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3322); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3268: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'h') ADVANCE(1147); + ACCEPT_TOKEN(anon_sym_and); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3269: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(2751); + ACCEPT_TOKEN(anon_sym_and); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3270: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(1071); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 3271: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'i') ADVANCE(738); + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '\n') ADVANCE(3360); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3324); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3272: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1235); - if (lookahead == 'x') ADVANCE(1202); + ACCEPT_TOKEN(anon_sym_xor); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3273: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'l') ADVANCE(1145); - if (lookahead == 's') ADVANCE(1364); + ACCEPT_TOKEN(anon_sym_xor); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3274: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(2695); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 3275: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(2046); + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '\n') ADVANCE(3361); + if (lookahead == '\r') ADVANCE(13); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3326); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3276: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(611); + ACCEPT_TOKEN(anon_sym_or); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3277: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'n') ADVANCE(615); + ACCEPT_TOKEN(anon_sym_or); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3278: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(2697); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 3279: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(2754); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(anon_sym_not_DASHin); + if (lookahead == '\n') ADVANCE(3363); + if (lookahead == '\r') ADVANCE(18); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3330); END_STATE(); case 3280: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(613); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 3281: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(2732); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); + if (lookahead == '\n') ADVANCE(3364); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3332); END_STATE(); case 3282: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(724); - if (lookahead == 'u') ADVANCE(663); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 3283: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(697); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); + if (lookahead == '\n') ADVANCE(3365); + if (lookahead == '\r') ADVANCE(23); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3334); END_STATE(); case 3284: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(739); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 3285: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'o') ADVANCE(1286); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 3286: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2169); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '\n') ADVANCE(3367); + if (lookahead == '\r') ADVANCE(6); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3338); END_STATE(); case 3287: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(2760); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(3288); END_STATE(); case 3288: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1278); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 3289: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(748); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 3290: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'r') ADVANCE(1106); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 3291: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 's') ADVANCE(2142); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 3292: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 's') ADVANCE(1082); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); + if (lookahead == '\n') ADVANCE(3355); + if (lookahead == '\r') ADVANCE(7); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3314); END_STATE(); case 3293: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(2692); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 3294: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 't') ADVANCE(601); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 3295: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(aux_sym_expr_binary_token1); + if (lookahead == '\n') ADVANCE(3344); + if (lookahead == '\r') ADVANCE(8); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3295); END_STATE(); case 3296: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'v') ADVANCE(1116); + ACCEPT_TOKEN(aux_sym_expr_binary_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3296); END_STATE(); case 3297: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym_expr_binary_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3297); END_STATE(); case 3298: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(aux_sym_expr_binary_token3); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3298); END_STATE(); case 3299: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + ACCEPT_TOKEN(aux_sym_expr_binary_token4); + if (lookahead == '\n') ADVANCE(3347); + if (lookahead == '\r') ADVANCE(5); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3299); END_STATE(); case 3300: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1299); + ACCEPT_TOKEN(aux_sym_expr_binary_token4); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3300); END_STATE(); case 3301: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2768); + ACCEPT_TOKEN(aux_sym_expr_binary_token5); + if (lookahead == '\n') ADVANCE(3348); + if (lookahead == '\r') ADVANCE(15); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3301); END_STATE(); case 3302: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(774); + ACCEPT_TOKEN(aux_sym_expr_binary_token5); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3302); END_STATE(); case 3303: - ACCEPT_TOKEN(aux_sym_unquoted_token5); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_expr_binary_token6); + if (lookahead == '\n') ADVANCE(3349); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3303); END_STATE(); case 3304: - ACCEPT_TOKEN(aux_sym_unquoted_token6); + ACCEPT_TOKEN(aux_sym_expr_binary_token6); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3304); END_STATE(); case 3305: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2722); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == 'i') ADVANCE(2767); - if (lookahead == 'r') ADVANCE(2737); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_token7); + if (lookahead == '\n') ADVANCE(3350); + if (lookahead == '\r') ADVANCE(4); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3305); END_STATE(); case 3306: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2722); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'r') ADVANCE(2737); + ACCEPT_TOKEN(aux_sym_expr_binary_token7); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3306); END_STATE(); case 3307: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2702); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'u') ADVANCE(2750); + ACCEPT_TOKEN(aux_sym_expr_binary_token8); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3307); END_STATE(); case 3308: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 2684, - '-', 2686, - '>', 2477, - 'I', 2767, - '_', 2686, - 'i', 2767, - 'n', 2698, - 'r', 2738, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_token9); + if (lookahead == '\n') ADVANCE(3352); + if (lookahead == '\r') ADVANCE(20); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3308); END_STATE(); case 3309: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 591, - '-', 593, - '>', 2478, - 'I', 772, - '_', 593, - 'i', 772, - 'n', 615, - 'r', 705, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_token9); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3309); END_STATE(); case 3310: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 2683, - '-', 2686, - '>', 2478, - 'I', 2767, - '_', 2686, - 'i', 2767, - 'r', 2737, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_token10); + if (lookahead == '\n') ADVANCE(3353); + if (lookahead == '\r') ADVANCE(21); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3310); END_STATE(); case 3311: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(1637); - if (lookahead == '-') ADVANCE(593); - if (lookahead == 'I') ADVANCE(1701); - if (lookahead == '_') ADVANCE(1637); - if (lookahead == 'i') ADVANCE(1701); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_expr_binary_token10); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3311); END_STATE(); case 3312: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(1637); - if (lookahead == '-') ADVANCE(593); - if (lookahead == 'I') ADVANCE(1701); - if (lookahead == '_') ADVANCE(1637); - if (lookahead == 'i') ADVANCE(1643); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_expr_binary_token11); + if (lookahead == '\n') ADVANCE(3354); + if (lookahead == '\r') ADVANCE(11); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3312); END_STATE(); case 3313: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 678, - '>', 761, - 'I', 772, - 'i', 772, - 'n', 615, - 'r', 703, - 'B', 2379, - 'b', 2379, - ); + ACCEPT_TOKEN(aux_sym_expr_binary_token11); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3313); END_STATE(); case 3314: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(772); - if (lookahead == 'r') ADVANCE(703); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_token12); + if (lookahead == '\n') ADVANCE(3355); + if (lookahead == '\r') ADVANCE(7); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3314); END_STATE(); case 3315: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(703); + ACCEPT_TOKEN(aux_sym_expr_binary_token12); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3315); END_STATE(); case 3316: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(678); - if (lookahead == '>') ADVANCE(761); - if (lookahead == 'r') ADVANCE(703); + ACCEPT_TOKEN(aux_sym_expr_binary_token13); + if (lookahead == '\n') ADVANCE(3356); + if (lookahead == '\r') ADVANCE(19); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3316); END_STATE(); case 3317: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(731); + ACCEPT_TOKEN(aux_sym_expr_binary_token13); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3317); END_STATE(); case 3318: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(633); - if (lookahead == '>') ADVANCE(762); - if (lookahead == 'u') ADVANCE(731); + ACCEPT_TOKEN(aux_sym_expr_binary_token14); + if (lookahead == '\n') ADVANCE(3357); + if (lookahead == '\r') ADVANCE(22); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3318); END_STATE(); case 3319: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 682, - '>', 2478, - 'I', 772, - 'i', 772, - 'n', 615, - 'r', 705, - 'B', 2379, - 'b', 2379, - ); + ACCEPT_TOKEN(aux_sym_expr_binary_token14); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3319); END_STATE(); case 3320: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(682); - if (lookahead == '>') ADVANCE(2478); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'r') ADVANCE(705); + ACCEPT_TOKEN(aux_sym_expr_binary_token15); + if (lookahead == '\n') ADVANCE(3358); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3320); END_STATE(); case 3321: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '>') ADVANCE(2486); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(736); + ACCEPT_TOKEN(aux_sym_expr_binary_token15); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3321); END_STATE(); case 3322: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 2727, - '>', 2477, - 'I', 2767, - 'i', 2767, - 'n', 2698, - 'r', 2738, - 'B', 2379, - 'b', 2379, - ); + ACCEPT_TOKEN(aux_sym_expr_binary_token16); + if (lookahead == '\n') ADVANCE(3359); + if (lookahead == '\r') ADVANCE(14); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3322); END_STATE(); case 3323: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2727); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'n') ADVANCE(2698); - if (lookahead == 'r') ADVANCE(2738); + ACCEPT_TOKEN(aux_sym_expr_binary_token16); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3323); END_STATE(); case 3324: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '+') ADVANCE(2704); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'r') ADVANCE(2169); - if (lookahead == 'u') ADVANCE(2756); + ACCEPT_TOKEN(aux_sym_expr_binary_token17); + if (lookahead == '\n') ADVANCE(3360); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3324); END_STATE(); case 3325: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 590, - '-', 593, - '>', 761, - 'I', 772, - '_', 593, - 'i', 772, - 'n', 615, - 'r', 703, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_token17); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3325); END_STATE(); case 3326: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - '+', 590, - '-', 593, - '>', 761, - 'I', 772, - '_', 593, - 'i', 772, - 'r', 703, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_token18); + if (lookahead == '\n') ADVANCE(3361); + if (lookahead == '\r') ADVANCE(13); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3326); END_STATE(); case 3327: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '-') ADVANCE(2004); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(556); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_expr_binary_token18); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3327); END_STATE(); case 3328: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '.') ADVANCE(586); - if (lookahead == '_') ADVANCE(556); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_expr_binary_token19); + if (lookahead == '\n') ADVANCE(3362); + if (lookahead == '\r') ADVANCE(12); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3328); END_STATE(); case 3329: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '.') ADVANCE(1032); - if (lookahead == '_') ADVANCE(1016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_expr_binary_token19); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3329); END_STATE(); case 3330: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '.') ADVANCE(2682); - if (lookahead == '_') ADVANCE(2660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_expr_binary_token20); + if (lookahead == '\n') ADVANCE(3363); + if (lookahead == '\r') ADVANCE(18); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3330); END_STATE(); case 3331: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(2189); - if (lookahead == '~') ADVANCE(2205); + ACCEPT_TOKEN(aux_sym_expr_binary_token20); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3331); END_STATE(); case 3332: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(2186); - if (lookahead == '>') ADVANCE(2090); - if (lookahead == '~') ADVANCE(2202); + ACCEPT_TOKEN(aux_sym_expr_binary_token21); + if (lookahead == '\n') ADVANCE(3364); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3332); END_STATE(); case 3333: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '=') ADVANCE(2186); - if (lookahead == '~') ADVANCE(2202); + ACCEPT_TOKEN(aux_sym_expr_binary_token21); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3333); END_STATE(); case 3334: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '>') ADVANCE(2090); + ACCEPT_TOKEN(aux_sym_expr_binary_token22); + if (lookahead == '\n') ADVANCE(3365); + if (lookahead == '\r') ADVANCE(23); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3334); END_STATE(); case 3335: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - 'I', 1298, - '_', 1037, - 'i', 1298, - 'l', 1240, - 'r', 1235, - 'x', 1202, - '+', 1037, - '-', 1037, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_token22); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3335); END_STATE(); case 3336: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1298); - if (lookahead == '_') ADVANCE(1037); - if (lookahead == 'i') ADVANCE(1057); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1037); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_token23); + if (lookahead == '\n') ADVANCE(3366); + if (lookahead == '\r') ADVANCE(10); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3336); END_STATE(); case 3337: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - 'I', 1298, - 'a', 1153, - 'i', 1178, - 'o', 1072, - 's', 2386, - 'u', 1257, - 'B', 2379, - 'b', 2379, - ); + ACCEPT_TOKEN(aux_sym_expr_binary_token23); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3337); END_STATE(); case 3338: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1298); - if (lookahead == 'i') ADVANCE(1298); - if (lookahead == 'l') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1235); - if (lookahead == 'x') ADVANCE(1202); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_token24); + if (lookahead == '\n') ADVANCE(3367); + if (lookahead == '\r') ADVANCE(6); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3338); END_STATE(); case 3339: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1298); - if (lookahead == 'i') ADVANCE(1298); - if (lookahead == 'r') ADVANCE(1278); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_token24); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3339); END_STATE(); case 3340: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1298); - if (lookahead == 'i') ADVANCE(1298); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_token25); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3340); END_STATE(); case 3341: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1298); - if (lookahead == 'i') ADVANCE(1057); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_token26); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3341); END_STATE(); case 3342: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == '_') ADVANCE(2686); - if (lookahead == 'i') ADVANCE(2693); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_token27); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3342); END_STATE(); case 3343: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == 'i') ADVANCE(2767); - if (lookahead == 'r') ADVANCE(2760); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_token28); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3343); END_STATE(); case 3344: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == 'i') ADVANCE(2767); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token1); + if (lookahead == '\r') ADVANCE(8); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3344); END_STATE(); case 3345: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == 'i') ADVANCE(2693); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token2); + if (lookahead == '\r') ADVANCE(219); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3345); END_STATE(); case 3346: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == 'i') ADVANCE(2719); - if (lookahead == 'o') ADVANCE(2697); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token3); + if (lookahead == '\r') ADVANCE(215); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3346); END_STATE(); case 3347: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(2767); - if (lookahead == 'i') ADVANCE(2719); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token4); + if (lookahead == '\r') ADVANCE(5); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3347); END_STATE(); case 3348: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - ADVANCE_MAP( - 'I', 772, - '_', 593, - 'i', 772, - 'n', 615, - '+', 593, - '-', 593, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token5); + if (lookahead == '\r') ADVANCE(15); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3348); END_STATE(); case 3349: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'i') ADVANCE(772); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token6); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3349); END_STATE(); case 3350: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'i') ADVANCE(606); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token7); + if (lookahead == '\r') ADVANCE(4); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3350); END_STATE(); case 3351: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(772); - if (lookahead == 'n') ADVANCE(615); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token8); + if (lookahead == '\r') ADVANCE(216); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3351); END_STATE(); case 3352: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(772); - if (lookahead == 'r') ADVANCE(748); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token9); + if (lookahead == '\r') ADVANCE(20); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3352); END_STATE(); case 3353: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(772); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token10); + if (lookahead == '\r') ADVANCE(21); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3353); END_STATE(); case 3354: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(606); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token11); + if (lookahead == '\r') ADVANCE(11); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3354); END_STATE(); case 3355: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(667); - if (lookahead == 'o') ADVANCE(613); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token12); + if (lookahead == '\r') ADVANCE(7); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3355); END_STATE(); case 3356: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(667); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token13); + if (lookahead == '\r') ADVANCE(19); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3356); END_STATE(); case 3357: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1701); - if (lookahead == 'i') ADVANCE(1701); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token14); + if (lookahead == '\r') ADVANCE(22); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3357); END_STATE(); case 3358: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1701); - if (lookahead == 'i') ADVANCE(1643); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token15); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3358); END_STATE(); case 3359: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'I') ADVANCE(1701); - if (lookahead == 'i') ADVANCE(1666); - if (lookahead == 's') ADVANCE(2389); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token16); + if (lookahead == '\r') ADVANCE(14); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3359); END_STATE(); case 3360: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(1356); - if (lookahead == 'n') ADVANCE(1365); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token17); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3360); END_STATE(); case 3361: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N') ADVANCE(2768); - if (lookahead == 'n') ADVANCE(2052); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token18); + if (lookahead == '\r') ADVANCE(13); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3361); END_STATE(); case 3362: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token19); + if (lookahead == '\r') ADVANCE(12); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3362); END_STATE(); case 3363: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(2681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token20); + if (lookahead == '\r') ADVANCE(18); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3363); END_STATE(); case 3364: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(588); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token21); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3364); END_STATE(); case 3365: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token22); + if (lookahead == '\r') ADVANCE(23); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3365); END_STATE(); case 3366: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token23); + if (lookahead == '\r') ADVANCE(10); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3366); END_STATE(); case 3367: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token24); + if (lookahead == '\r') ADVANCE(6); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3367); END_STATE(); case 3368: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token25); + if (lookahead == '\r') ADVANCE(217); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3368); END_STATE(); case 3369: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2337); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token26); + if (lookahead == '\r') ADVANCE(220); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3369); END_STATE(); case 3370: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2341); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token27); + if (lookahead == '\r') ADVANCE(218); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3370); END_STATE(); case 3371: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2337); + ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token28); + if (lookahead == '\r') ADVANCE(221); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3371); END_STATE(); case 3372: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2341); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 3373: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(3022); + if (lookahead == '<') ADVANCE(3416); + if (lookahead == '=') ADVANCE(3415); END_STATE(); case 3374: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1252); - if (lookahead == 'o') ADVANCE(1183); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1181); + if (lookahead == '<') ADVANCE(3416); + if (lookahead == '=') ADVANCE(3415); END_STATE(); case 3375: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1205); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1180); + if (lookahead == '<') ADVANCE(3416); + if (lookahead == '=') ADVANCE(3415); END_STATE(); case 3376: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(2716); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(3021); + if (lookahead == '<') ADVANCE(3416); + if (lookahead == '=') ADVANCE(3415); END_STATE(); case 3377: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(2765); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(3416); + if (lookahead == '=') ADVANCE(3415); END_STATE(); case 3378: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1699); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 3379: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(757); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3373); + if (lookahead == '_') ADVANCE(1216); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); END_STATE(); case 3380: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1296); - if (lookahead == 'e') ADVANCE(1121); - if (lookahead == 'o') ADVANCE(1355); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); END_STATE(); case 3381: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(665); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(684); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); END_STATE(); case 3382: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'a') ADVANCE(1153); - if (lookahead == 'o') ADVANCE(1072); - if (lookahead == 'u') ADVANCE(1257); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(3905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); END_STATE(); case 3383: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1290); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4490); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); END_STATE(); case 3384: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1290); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); END_STATE(); case 3385: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2694); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); END_STATE(); case 3386: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(2694); - if (lookahead == 't') ADVANCE(2692); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4590); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); END_STATE(); case 3387: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1121); - if (lookahead == 'o') ADVANCE(1355); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(3914); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); END_STATE(); case 3388: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1645); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); END_STATE(); case 3389: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1058); - if (lookahead == 'o') ADVANCE(1286); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1407); + if (lookahead == '_') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); END_STATE(); case 3390: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(607); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1201); + if (lookahead == '_') ADVANCE(1216); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); END_STATE(); case 3391: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(607); - if (lookahead == 't') ADVANCE(601); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1201); + if (lookahead == '_') ADVANCE(1221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); END_STATE(); case 3392: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1263); - if (lookahead == 'i') ADVANCE(1241); - if (lookahead == 'o') ADVANCE(1188); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3377); END_STATE(); case 3393: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'e') ADVANCE(1124); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); END_STATE(); case 3394: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'f') ADVANCE(2073); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(4106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); END_STATE(); case 3395: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(1147); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(3905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); END_STATE(); case 3396: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'h') ADVANCE(1147); - if (lookahead == 'k') ADVANCE(2386); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(4490); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); END_STATE(); case 3397: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(2751); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(4590); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); END_STATE(); case 3398: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(1071); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(4564); END_STATE(); case 3399: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(1071); - if (lookahead == 'r') ADVANCE(2386); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(4564); + if (lookahead == '_') ADVANCE(4585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); END_STATE(); case 3400: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'i') ADVANCE(738); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3374); + if (lookahead == '_') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); END_STATE(); case 3401: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'k') ADVANCE(2386); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(640); END_STATE(); case 3402: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'k') ADVANCE(2389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3375); + if (lookahead == '_') ADVANCE(1221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); END_STATE(); case 3403: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1235); - if (lookahead == 'x') ADVANCE(1202); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3376); END_STATE(); case 3404: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'l') ADVANCE(1145); - if (lookahead == 's') ADVANCE(1364); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); END_STATE(); case 3405: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(2695); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(4585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); END_STATE(); case 3406: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(2046); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(4814); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3457); END_STATE(); case 3407: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(611); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(692); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); END_STATE(); case 3408: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'n') ADVANCE(615); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(4117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); END_STATE(); case 3409: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(2697); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 3410: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(2754); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3411: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(2754); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3412: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(613); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 3413: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(2732); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3414: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(724); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'u') ADVANCE(663); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3415: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(724); - if (lookahead == 'u') ADVANCE(663); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 3416: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(697); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 3417: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(739); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(3682); + if (lookahead == '_') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3425); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3418: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(739); - if (lookahead == 's') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(4030); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 3419: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'o') ADVANCE(1286); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(4539); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 3420: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2169); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(4208); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 3421: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(4645); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 3422: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2760); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3423: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(2389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3424: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1278); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3423); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3425: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(748); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3425); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3426: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'r') ADVANCE(1106); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); END_STATE(); case 3427: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3436); END_STATE(); case 3428: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3438); END_STATE(); case 3429: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(2142); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); case 3430: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(2389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (lookahead == 'b') ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1935); + if (lookahead == 'x') ADVANCE(1942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 3431: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(2388); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (lookahead == 'b') ADVANCE(1390); + if (lookahead == 'o') ADVANCE(1391); + if (lookahead == 'x') ADVANCE(1398); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 3432: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 's') ADVANCE(1082); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); case 3433: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(2692); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3420); END_STATE(); case 3434: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 't') ADVANCE(601); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3433); END_STATE(); case 3435: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'u') ADVANCE(2717); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); END_STATE(); case 3436: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'v') ADVANCE(1116); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3435); END_STATE(); case 3437: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3421); END_STATE(); case 3438: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2770); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3437); END_STATE(); case 3439: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3419); END_STATE(); case 3440: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1299); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3439); END_STATE(); case 3441: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2768); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); END_STATE(); case 3442: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(774); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3436); END_STATE(); case 3443: - ACCEPT_TOKEN(aux_sym_unquoted_token6); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3438); END_STATE(); case 3444: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3524); - if (lookahead == '>') ADVANCE(2488); - if (lookahead == 'r') ADVANCE(2172); - if (lookahead == 'u') ADVANCE(3635); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); case 3445: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3577); - if (lookahead == '>') ADVANCE(2480); - if (lookahead == 'n') ADVANCE(3512); - if (lookahead == 'r') ADVANCE(3597); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3446: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3580); - if (lookahead == '>') ADVANCE(2464); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(3446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3447: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3532); - if (lookahead == '>') ADVANCE(2472); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(3447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); END_STATE(); case 3448: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3586); - if (lookahead == '>') ADVANCE(2479); - if (lookahead == 'n') ADVANCE(3512); - if (lookahead == 'r') ADVANCE(3606); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + if (lookahead == '_') ADVANCE(3448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3449: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3586); - if (lookahead == '>') ADVANCE(2479); - if (lookahead == 'r') ADVANCE(3606); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3449); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1217); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); END_STATE(); case 3450: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3533); - if (lookahead == '>') ADVANCE(2487); - if (lookahead == 'r') ADVANCE(2172); - if (lookahead == 'u') ADVANCE(3639); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); END_STATE(); case 3451: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3533); - if (lookahead == '>') ADVANCE(2487); - if (lookahead == 'u') ADVANCE(3639); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3451); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); END_STATE(); case 3452: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3591); - if (lookahead == '>') ADVANCE(2463); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3452); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); END_STATE(); case 3453: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3589); - if (lookahead == '>') ADVANCE(3661); - if (lookahead == 'n') ADVANCE(3512); - if (lookahead == 'r') ADVANCE(3611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3453); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3915); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); END_STATE(); case 3454: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3589); - if (lookahead == '>') ADVANCE(3661); - if (lookahead == 'r') ADVANCE(3611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3454); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(693); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); END_STATE(); case 3455: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3535); - if (lookahead == '>') ADVANCE(3662); - if (lookahead == 'r') ADVANCE(2172); - if (lookahead == 'u') ADVANCE(3640); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3455); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4586); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); END_STATE(); case 3456: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3535); - if (lookahead == '>') ADVANCE(3662); - if (lookahead == 'u') ADVANCE(3640); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3456); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); END_STATE(); case 3457: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3592); - if (lookahead == '>') ADVANCE(3664); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3457); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3457); END_STATE(); case 3458: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3536); - if (lookahead == '>') ADVANCE(2471); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3458); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3458); END_STATE(); case 3459: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+') ADVANCE(3537); - if (lookahead == '>') ADVANCE(3666); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3459); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4841); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3459); END_STATE(); case 3460: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '-') ADVANCE(3508); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3460); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4225); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3460); END_STATE(); case 3461: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '-') ADVANCE(3701); - if (lookahead == '_') ADVANCE(3499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(3461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); END_STATE(); case 3462: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '-') ADVANCE(3658); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 3463: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '-') ADVANCE(3548); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 3464: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '-') ADVANCE(2008); - if (lookahead == '.') ADVANCE(3499); - if (lookahead == '_') ADVANCE(3470); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3679); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); END_STATE(); case 3465: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '-') ADVANCE(3530); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(1938); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3466: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '-') ADVANCE(3702); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4030); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3467: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '-') ADVANCE(3659); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4539); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3468: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '.') ADVANCE(3494); - if (lookahead == '_') ADVANCE(3468); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4208); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3469: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '.') ADVANCE(3699); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3471); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4798); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3470: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '.') ADVANCE(3499); - if (lookahead == '_') ADVANCE(3470); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token2_character_set_1, 11, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4645); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3471: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '2') ADVANCE(3690); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3700); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(983); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3472: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == ':') ADVANCE(3692); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3482); END_STATE(); case 3473: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == ':') ADVANCE(3705); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3484); END_STATE(); case 3474: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == ':') ADVANCE(3707); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); END_STATE(); case 3475: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '=') ADVANCE(2190); - if (lookahead == '~') ADVANCE(2207); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3488); END_STATE(); case 3476: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '=') ADVANCE(2187); - if (lookahead == '>') ADVANCE(2091); - if (lookahead == '~') ADVANCE(2203); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3490); END_STATE(); case 3477: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '=') ADVANCE(2187); - if (lookahead == '~') ADVANCE(2203); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3492); END_STATE(); case 3478: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(2520); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (lookahead == 'b') ADVANCE(3519); + if (lookahead == 'o') ADVANCE(3535); + if (lookahead == 'x') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); END_STATE(); case 3479: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(2512); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (lookahead == 'b') ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1935); + if (lookahead == 'x') ADVANCE(1942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3480: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(2496); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (lookahead == 'b') ADVANCE(1390); + if (lookahead == 'o') ADVANCE(1391); + if (lookahead == 'x') ADVANCE(1398); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3481: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(2504); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3465); END_STATE(); case 3482: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(2091); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3481); END_STATE(); case 3483: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(2519); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3466); END_STATE(); case 3484: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(2511); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3483); END_STATE(); case 3485: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(2495); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3467); END_STATE(); case 3486: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(2503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3485); END_STATE(); case 3487: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(3663); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3468); END_STATE(); case 3488: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(3665); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3487); END_STATE(); case 3489: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(3667); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3471); END_STATE(); case 3490: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '>') ADVANCE(3668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3489); END_STATE(); case 3491: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'N') ADVANCE(3672); - if (lookahead == 'n') ADVANCE(2050); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3469); END_STATE(); case 3492: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'N') ADVANCE(3673); - if (lookahead == 'f') ADVANCE(3689); - if (lookahead == 'n') ADVANCE(3673); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3491); END_STATE(); case 3493: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'T') ADVANCE(3704); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3470); END_STATE(); case 3494: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '_') ADVANCE(3494); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3493); END_STATE(); case 3495: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '_') ADVANCE(3499); - if (lookahead == 'b') ADVANCE(2373); - if (lookahead == 'o') ADVANCE(2392); - if (lookahead == 'x') ADVANCE(2400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3482); END_STATE(); case 3496: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '_') ADVANCE(3499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3484); END_STATE(); case 3497: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '_') ADVANCE(3499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); END_STATE(); case 3498: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '_') ADVANCE(3499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3488); END_STATE(); case 3499: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '_') ADVANCE(3499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3490); END_STATE(); case 3500: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'a') ADVANCE(3560); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3492); END_STATE(); case 3501: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'a') ADVANCE(3630); - if (lookahead == 'o') ADVANCE(3572); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); END_STATE(); case 3502: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'a') ADVANCE(3567); - if (lookahead == 'o') ADVANCE(3601); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); END_STATE(); case 3503: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'a') ADVANCE(3556); - if (lookahead == 'o') ADVANCE(3515); - if (lookahead == 'u') ADVANCE(3629); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + if (lookahead == '_') ADVANCE(3503); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3504: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'a') ADVANCE(3555); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3504); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); END_STATE(); case 3505: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'a') ADVANCE(3660); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); END_STATE(); case 3506: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'a') ADVANCE(3618); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3506); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1222); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); END_STATE(); case 3507: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'a') ADVANCE(3610); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3507); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3906); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); END_STATE(); case 3508: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'a') ADVANCE(3576); - if (lookahead == 'o') ADVANCE(3599); - if (lookahead == 's') ADVANCE(3541); - if (lookahead == 'x') ADVANCE(3587); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3508); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4491); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); END_STATE(); case 3509: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'c') ADVANCE(3544); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3509); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); END_STATE(); case 3510: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'c') ADVANCE(3523); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3510); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); END_STATE(); case 3511: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'd') ADVANCE(2162); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3511); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4760); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); END_STATE(); case 3512: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'd') ADVANCE(3621); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3512); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); END_STATE(); case 3513: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'd') ADVANCE(2229); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + if (lookahead == '_') ADVANCE(3513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); END_STATE(); case 3514: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'd') ADVANCE(2261); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__val_number_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3514); END_STATE(); case 3515: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'd') ADVANCE(3648); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_token2); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3515); END_STATE(); case 3516: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'd') ADVANCE(3523); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__val_number_token3); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3516); END_STATE(); case 3517: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(1393); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '_') ADVANCE(2712); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2421); + if (('2' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3518: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(1483); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2712); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3519: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3515); END_STATE(); case 3520: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3538); - if (lookahead == 'o') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4435); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3521: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3657); - if (lookahead == 'u') ADVANCE(3564); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3680); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3819); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3522: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3540); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2883); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 3523: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3465); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4724); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3524: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3479); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); case 3525: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(1386); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'r') ADVANCE(1266); END_STATE(); case 3526: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(1476); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'r') ADVANCE(1736); END_STATE(); case 3527: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3631); - if (lookahead == 'i') ADVANCE(3623); - if (lookahead == 'o') ADVANCE(3579); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_filesize_unit); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3528: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3504); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_filesize_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3529: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3601); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_duration_unit); END_STATE(); case 3530: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3574); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_duration_unit); + if (lookahead == 'e') ADVANCE(2974); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3531: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3612); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_duration_unit); + if (lookahead == 'e') ADVANCE(1963); END_STATE(); case 3532: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3613); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_duration_unit); + if (lookahead == 'e') ADVANCE(2977); END_STATE(); case 3533: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_duration_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3534: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3608); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2714); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3535: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3488); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3516); END_STATE(); case 3536: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3615); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4441); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3537: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'e') ADVANCE(3616); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3821); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3538: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'f') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2885); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 3539: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'f') ADVANCE(2077); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4728); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3540: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'g') ADVANCE(3554); - if (lookahead == 't') ADVANCE(3652); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2719); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3541: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'h') ADVANCE(3558); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3514); END_STATE(); case 3542: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'h') ADVANCE(2184); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4455); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3543: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'h') ADVANCE(2180); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3834); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3544: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'h') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2898); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); END_STATE(); case 3545: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'h') ADVANCE(3551); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4742); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3546: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'i') ADVANCE(3516); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); case 3547: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'i') ADVANCE(3506); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_hex_digit); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3547); END_STATE(); case 3548: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'i') ADVANCE(3569); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); END_STATE(); case 3549: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'i') ADVANCE(3628); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(4068); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4062); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); END_STATE(); case 3550: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'i') ADVANCE(3575); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(3866); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3858); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); END_STATE(); case 3551: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'i') ADVANCE(3566); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(978); + if (lookahead == '+' || + lookahead == '-') ADVANCE(647); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); END_STATE(); case 3552: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'i') ADVANCE(3636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(4034); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3882); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); END_STATE(); case 3553: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'i') ADVANCE(3638); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(4544); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4473); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); END_STATE(); case 3554: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'i') ADVANCE(3625); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(4214); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4083); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); END_STATE(); case 3555: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'k') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(4650); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4570); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); END_STATE(); case 3556: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'k') ADVANCE(3519); - if (lookahead == 't') ADVANCE(3509); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(3579); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4067); END_STATE(); case 3557: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(1495); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(3580); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3862); END_STATE(); case 3558: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(2253); - if (lookahead == 'r') ADVANCE(2257); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(3581); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(974); END_STATE(); case 3559: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(3624); - if (lookahead == 'r') ADVANCE(3607); - if (lookahead == 'x') ADVANCE(3594); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(3582); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4027); END_STATE(); case 3560: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(3620); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(3583); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4536); END_STATE(); case 3561: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(1488); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(3584); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4205); END_STATE(); case 3562: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(3547); - if (lookahead == 's') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(3585); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4642); END_STATE(); case 3563: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(3557); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(3684); END_STATE(); case 3564: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(3561); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(1397); END_STATE(); case 3565: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(3505); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(1941); END_STATE(); case 3566: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(3519); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(4036); END_STATE(); case 3567: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'l') ADVANCE(3626); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(4541); END_STATE(); case 3568: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'n') ADVANCE(3511); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(4210); END_STATE(); case 3569: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'n') ADVANCE(2176); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(4800); END_STATE(); case 3570: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'n') ADVANCE(2057); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(4647); END_STATE(); case 3571: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'n') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(986); END_STATE(); case 3572: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'n') ADVANCE(3622); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4062); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3572); END_STATE(); case 3573: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'n') ADVANCE(3512); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3858); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3573); END_STATE(); case 3574: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'n') ADVANCE(3655); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(647); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3574); END_STATE(); case 3575: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'n') ADVANCE(3647); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3882); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3575); END_STATE(); case 3576: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'n') ADVANCE(3514); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4473); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3576); END_STATE(); case 3577: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3478); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4083); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3577); END_STATE(); case 3578: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3650); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4570); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3578); END_STATE(); case 3579: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3593); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4067); END_STATE(); case 3580: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3649); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3862); END_STATE(); case 3581: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3634); - if (lookahead == 'u') ADVANCE(3563); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3678); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(974); END_STATE(); case 3582: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3634); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4027); END_STATE(); case 3583: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3598); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4536); END_STATE(); case 3584: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3513); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4205); END_STATE(); case 3585: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3601); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4642); END_STATE(); case 3586: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3483); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 3587: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3600); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); END_STATE(); case 3588: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3604); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym__escaped_str_content); + if (lookahead == '#') ADVANCE(3589); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3588); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + lookahead != '\\') ADVANCE(3589); END_STATE(); case 3589: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3487); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym__escaped_str_content); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(3589); END_STATE(); case 3590: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3632); - if (lookahead == 'u') ADVANCE(3563); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3678); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); case 3591: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3653); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym__str_single_quotes); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); END_STATE(); case 3592: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'o') ADVANCE(3654); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); case 3593: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'p') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym__str_back_ticks); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); END_STATE(); case 3594: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'p') ADVANCE(3588); - if (lookahead == 't') ADVANCE(3534); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 3595: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(2172); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_escape_sequence); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3596: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3646); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_escaped_interpolated_content); + if (lookahead == '#') ADVANCE(3597); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3596); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + lookahead != '(' && + lookahead != '\\') ADVANCE(3597); END_STATE(); case 3597: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3446); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_escaped_interpolated_content); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '(' && + lookahead != '\\') ADVANCE(3597); END_STATE(); case 3598: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(2167); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_unescaped_interpolated_content); + if (lookahead == '#') ADVANCE(3599); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3598); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '(') ADVANCE(3599); END_STATE(); case 3599: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(2269); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym_unescaped_interpolated_content); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '(') ADVANCE(3599); END_STATE(); case 3600: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(2265); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); case 3601: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); END_STATE(); case 3602: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3651); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 3603: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3528); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(3590); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == '.' || + lookahead == ':' || + lookahead == ';' || + lookahead == '?' || + lookahead == '[' || + lookahead == ']' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(585); + if (lookahead != 0) ADVANCE(3628); END_STATE(); case 3604: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3631); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); case 3605: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3510); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); END_STATE(); case 3606: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3452); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 3607: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3585); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); case 3608: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3571); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); case 3609: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3481); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); case 3610: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3644); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym__entry_separator); END_STATE(); case 3611: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3457); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ',') ADVANCE(3610); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3611); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); END_STATE(); case 3612: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3565); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ',') ADVANCE(3610); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3612); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3613); END_STATE(); case 3613: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ';') ADVANCE(3627); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(652); END_STATE(); case 3614: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3486); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3614); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3610); END_STATE(); case 3615: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3614); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_record_entry_token1); END_STATE(); case 3616: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3617); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_PLUS); + ADVANCE_MAP( + '\n', 3350, + '\r', 4, + '+', 1205, + '.', 1215, + '=', 1169, + '_', 1197, + '\t', 3305, + ' ', 3305, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3617: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'r') ADVANCE(3490); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(3635); + if (lookahead == '.') ADVANCE(1215); + if (lookahead == '=') ADVANCE(1169); + if (lookahead == '_') ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3618: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 's') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1418); + if (lookahead == '.') ADVANCE(1660); + if (lookahead == '=') ADVANCE(1169); + if (lookahead == '_') ADVANCE(1405); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3306); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3619: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 's') ADVANCE(2148); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1419); + if (lookahead == '.') ADVANCE(1660); + if (lookahead == '=') ADVANCE(1169); + if (lookahead == '_') ADVANCE(1405); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3620: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 's') ADVANCE(3518); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(1215); + if (lookahead == '_') ADVANCE(1197); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3621: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 's') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(1660); + if (lookahead == '_') ADVANCE(1405); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3622: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 's') ADVANCE(3629); - if (lookahead == 't') ADVANCE(3550); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(4901); + if (lookahead == '_') ADVANCE(4894); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4901); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); END_STATE(); case 3623: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 's') ADVANCE(3629); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(1220); + if (lookahead == '_') ADVANCE(1203); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); END_STATE(); case 3624: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 's') ADVANCE(3519); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(1665); + if (lookahead == '_') ADVANCE(1413); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); case 3625: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 's') ADVANCE(3643); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if (lookahead == '#') ADVANCE(5029); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3626); END_STATE(); case 3626: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 's') ADVANCE(3526); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3626); END_STATE(); case 3627: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 's') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 3628: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3460); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '\'') ADVANCE(3590); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == '.' || + lookahead == ':' || + lookahead == ';' || + lookahead == '?' || + lookahead == '[' || + lookahead == ']' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(585); + if (lookahead != 0) ADVANCE(3628); END_STATE(); case 3629: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '-') ADVANCE(3659); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3630: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3509); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '-') ADVANCE(3667); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3631: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3465); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '-') ADVANCE(3683); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3632: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3691); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '-') ADVANCE(3664); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3633: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.') ADVANCE(1215); + if (lookahead == '?') ADVANCE(1399); + if (lookahead == '_') ADVANCE(3633); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3634: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3463); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == ':') ADVANCE(4071); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3635: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + ADVANCE_MAP( + ',', 1943, + '=', 1173, + '.', 1399, + '?', 1399, + '<', 3695, + '>', 3695, + '"', 3696, + '\'', 3696, + '`', 3696, + ); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3636: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3542); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '_') ADVANCE(3636); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3637: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3480); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(3670); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3638: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3543); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(3669); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3639: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3458); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'a') ADVANCE(3674); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3640: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3459); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'c') ADVANCE(3641); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3641: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3485); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3654); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3642: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3489); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3665); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3643: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3529); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3007); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3644: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 't') ADVANCE(3627); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'f') ADVANCE(3006); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3645: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'u') ADVANCE(3563); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3678); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(2996); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3646: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'u') ADVANCE(3517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3282); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3647: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'u') ADVANCE(3519); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3280); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3648: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'u') ADVANCE(3566); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3004); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3649: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'u') ADVANCE(3637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3629); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3650: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'u') ADVANCE(3605); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(3656); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3651: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'u') ADVANCE(3525); - if (lookahead == 'y') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(3666); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3652: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'u') ADVANCE(3608); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(3671); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3653: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'u') ADVANCE(3641); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'i') ADVANCE(3673); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3654: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'u') ADVANCE(3642); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(3655); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3655: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'v') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'l') ADVANCE(3632); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3656: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'v') ADVANCE(3531); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(3278); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3657: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'w') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(3005); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3658: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'w') ADVANCE(3552); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'o') ADVANCE(3644); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3659: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'w') ADVANCE(3553); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'o') ADVANCE(3662); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3660: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'y') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(3638); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3661: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '|') ADVANCE(1933); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(3643); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3662: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '|') ADVANCE(1934); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(3672); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3663: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '|') ADVANCE(1938); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(3637); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3664: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '|') ADVANCE(1931); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(3639); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3665: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '|') ADVANCE(1937); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(3657); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3666: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '|') ADVANCE(1932); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(3649); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3667: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '|') ADVANCE(1935); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(3678); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3668: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '|') ADVANCE(1936); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(3642); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3669: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3471); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(3645); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3670: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3678); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(3668); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3671: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3680); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(3646); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3672: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3676); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(3630); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3673: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3677); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(3647); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3674: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3684); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 't') ADVANCE(3648); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3675: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3685); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'w') ADVANCE(3651); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3676: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3682); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'w') ADVANCE(3652); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3677: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3683); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'w') ADVANCE(3653); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3678: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == 'y') ADVANCE(3661); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3679: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3672); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3631); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3680: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3563); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3681: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3673); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3634); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3682: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3674); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3679); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3683: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3675); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3680); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3684: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3686); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3685: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3687); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == ',') ADVANCE(1943); + if (lookahead == '.' || + lookahead == '?') ADVANCE(1399); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); END_STATE(); case 3686: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '.') ADVANCE(2314); + if (lookahead == '_') ADVANCE(3686); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); END_STATE(); case 3687: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3689); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '`') ADVANCE(3592); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == '.' || + lookahead == ':' || + lookahead == ';' || + lookahead == '?' || + lookahead == '[' || + lookahead == ']' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(695); + if (lookahead != 0) ADVANCE(3687); END_STATE(); case 3688: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3688); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2292); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); END_STATE(); case 3689: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token4_character_set_1, 10, lookahead))) ADVANCE(3689); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3692); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); END_STATE(); case 3690: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3472); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3688); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); END_STATE(); case 3691: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2209); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3689); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); END_STATE(); case 3692: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3693); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); END_STATE(); case 3693: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(3693); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2291); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); END_STATE(); case 3694: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); END_STATE(); case 3695: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3709); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '`') ADVANCE(3696); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3695); END_STATE(); case 3696: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3493); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_path_token1); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3696); END_STATE(); case 3697: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3474); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); case 3698: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3469); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym_env_var_token2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3698); END_STATE(); case 3699: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 3700: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3472); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(3740); END_STATE(); case 3701: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3703); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(3740); + if (lookahead == '|') ADVANCE(2940); END_STATE(); case 3702: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3696); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(3742); + if (lookahead == '|') ADVANCE(2940); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3703: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3466); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(3742); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3704: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3697); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(3741); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3705: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3698); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(3743); END_STATE(); case 3706: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3473); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(3743); + if (lookahead == '|') ADVANCE(2941); END_STATE(); case 3707: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3706); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(3745); + if (lookahead == '|') ADVANCE(2941); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3708: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3708); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(3745); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3709: - ACCEPT_TOKEN(aux_sym_unquoted_token7); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(3744); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3710: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(2320); - if (lookahead == '(') ADVANCE(2271); - if (lookahead == '[') ADVANCE(2446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 12, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(3746); END_STATE(); case 3711: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3746); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'r') ADVANCE(3749); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(3746); + if (lookahead == '|') ADVANCE(2942); END_STATE(); case 3712: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3740); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'u') ADVANCE(3753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(3748); + if (lookahead == '|') ADVANCE(2942); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3713: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3732); - if (lookahead == '-') ADVANCE(3734); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == '_') ADVANCE(3734); - if (lookahead == 'r') ADVANCE(3749); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(3748); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3714: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3747); - if (lookahead == '>') ADVANCE(2461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(3747); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3715: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3741); - if (lookahead == '>') ADVANCE(2469); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(3749); END_STATE(); case 3716: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(3783); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(3749); + if (lookahead == '|') ADVANCE(2943); END_STATE(); case 3717: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3729); - if (lookahead == '_') ADVANCE(3718); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(3751); + if (lookahead == '|') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3718: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3729); - if (lookahead == '_') ADVANCE(3718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(3751); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3719: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3730); - if (lookahead == '_') ADVANCE(3720); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(3750); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3720: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3730); - if (lookahead == '_') ADVANCE(3720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(3752); END_STATE(); case 3721: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(3774); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3782); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(3752); + if (lookahead == '|') ADVANCE(2944); END_STATE(); case 3722: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3785); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(3754); + if (lookahead == '|') ADVANCE(2944); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3723: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3787); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(3754); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3724: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2517); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(3753); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3725: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2509); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(3755); END_STATE(); case 3726: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2493); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(3755); + if (lookahead == '|') ADVANCE(2945); END_STATE(); case 3727: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2501); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(3757); + if (lookahead == '|') ADVANCE(2945); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3728: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(3757); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3729: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3729); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2367); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(3756); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3730: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2318); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(3758); END_STATE(); case 3731: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(3758); + if (lookahead == '|') ADVANCE(2946); END_STATE(); case 3732: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3734); - if (lookahead == 'o') ADVANCE(3724); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(3760); + if (lookahead == '|') ADVANCE(2946); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3733: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3734); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(3760); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3734: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(3759); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3735: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(3743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(3761); END_STATE(); case 3736: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(3761); + if (lookahead == '|') ADVANCE(2947); END_STATE(); case 3737: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'c') ADVANCE(2386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(3763); + if (lookahead == '|') ADVANCE(2947); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3738: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1383); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(3763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3739: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1473); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(3762); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3740: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3725); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 3741: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3750); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3742: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1485); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3743: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3752); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 3744: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3742); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3745: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'n') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3746: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3724); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 3747: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3757); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3748: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3756); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3749: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 3750: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3751); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3751: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3727); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3752: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(3739); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 3753: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3715); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3754: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3726); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3755: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3744); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 3756: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3738); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3757: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3754); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3758: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'y') ADVANCE(2386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 3759: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3760: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3761: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1507); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 3762: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1500); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); case 3763: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3770); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 3764: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3771); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 3765: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1509); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3950); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'r') ADVANCE(3800); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3766: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3762); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3930); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'u') ADVANCE(3805); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3767: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3763); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3951); + if (lookahead == '>') ADVANCE(3701); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3768: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3761); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3931); + if (lookahead == '>') ADVANCE(3706); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3769: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3764); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(743); + if (lookahead == '>') ADVANCE(925); + if (lookahead == 'u') ADVANCE(3806); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3770: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3772); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(811); + if (lookahead == '>') ADVANCE(924); + if (lookahead == 'r') ADVANCE(3801); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3771: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3773); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(813); + if (lookahead == '>') ADVANCE(927); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3772: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1497); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(742); + if (lookahead == '>') ADVANCE(929); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3773: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(3825); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3774: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2414); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(3827); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3775: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(3831); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3776: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3716); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(3833); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3777: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3723); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '.') ADVANCE(682); + if (lookahead == '_') ADVANCE(3777); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3778: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3776); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == ':') ADVANCE(976); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3779: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2417); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == ':') ADVANCE(4039); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3780: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2411); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'T') ADVANCE(3828); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3781: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2422); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'T') ADVANCE(3829); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3782: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2414); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3784); + if (lookahead == 'b') ADVANCE(3521); + if (lookahead == 'o') ADVANCE(3537); + if (lookahead == 'x') ADVANCE(3543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3786); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3783: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3779); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3784); + if (lookahead == 'b') ADVANCE(3521); + if (lookahead == 'o') ADVANCE(3537); + if (lookahead == 'x') ADVANCE(3543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3789); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3784: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3777); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3785: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3780); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3773); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3786: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3722); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3785); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3787: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3784); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3786); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3788: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3788); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3776); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3789: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3788); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3790: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3746); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'r') ADVANCE(3749); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3789); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3791: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3740); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'u') ADVANCE(3753); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'a') ADVANCE(3794); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3792: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3732); - if (lookahead == '-') ADVANCE(3734); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == '_') ADVANCE(3734); - if (lookahead == 'r') ADVANCE(3749); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'e') ADVANCE(2222); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3793: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(1637); - if (lookahead == '-') ADVANCE(593); - if (lookahead == '_') ADVANCE(1637); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'e') ADVANCE(2267); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3794: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'l') ADVANCE(3803); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3795: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3729); - if (lookahead == '_') ADVANCE(3718); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'l') ADVANCE(2275); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3796: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3729); - if (lookahead == '_') ADVANCE(3718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'l') ADVANCE(3795); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3797: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3730); - if (lookahead == '_') ADVANCE(3720); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'n') ADVANCE(3117); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3798: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3730); - if (lookahead == '_') ADVANCE(3720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'o') ADVANCE(3804); + if (lookahead == 'u') ADVANCE(3796); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3813); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3799: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'r') ADVANCE(3807); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3800: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'r') ADVANCE(3767); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3801: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'r') ADVANCE(3771); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3802: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 's') ADVANCE(3257); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3803: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(593); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 's') ADVANCE(3793); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3804: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3734); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 't') ADVANCE(3820); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3805: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2339); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 't') ADVANCE(3768); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3806: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2339); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 't') ADVANCE(3772); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3807: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(3743); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'u') ADVANCE(3792); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3808: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3756); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'u') ADVANCE(3796); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3813); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3809: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(3744); + ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); + lookahead == 'a') ADVANCE(3813); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3810: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3812); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3811: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3762); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3816); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3812: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3815); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3813: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - ADVANCE_MAP( - '#', 4588, - '$', 1977, - '+', 3827, - ',', 2448, - '-', 3826, - '.', 2363, - '0', 3840, - 'N', 3867, - '_', 3841, - 'e', 3820, - 'f', 3846, - 'n', 3863, - 'o', 3821, - 't', 3856, - '\t', 2449, - ' ', 2449, - 'I', 3872, - 'i', 3872, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3844); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 12, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3814: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - ADVANCE_MAP( - '#', 4588, - '$', 1977, - '+', 3827, - '-', 3826, - '.', 2363, - '0', 3840, - 'N', 3867, - '_', 3841, - 'e', 3820, - 'f', 3846, - 'n', 3863, - 'o', 3821, - 't', 3856, - 'I', 3872, - 'i', 3872, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3844); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token5_character_set_1, 12, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3810); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3815: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4588); - if (lookahead == '$') ADVANCE(1977); - if (lookahead == '-') ADVANCE(2022); - if (lookahead == '.') ADVANCE(3829); - if (lookahead == ':') ADVANCE(1960); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3811); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3816: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4588); - if (lookahead == '$') ADVANCE(1977); - if (lookahead == '-') ADVANCE(2022); - if (lookahead == '.') ADVANCE(3829); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3817); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3817: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4588); - if (lookahead == '_') ADVANCE(3845); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2313); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3818: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4588); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-' || + lookahead == '?' || + lookahead == '@') ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3818); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 3819: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4588); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3819); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3820: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '+') ADVANCE(3854); - if (lookahead == '>') ADVANCE(2484); - if (lookahead == 'r') ADVANCE(3857); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3821: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '+') ADVANCE(3849); - if (lookahead == '>') ADVANCE(2492); - if (lookahead == 'u') ADVANCE(3861); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3821); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3822: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '+') ADVANCE(3855); - if (lookahead == '>') ADVANCE(2468); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3774); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3823: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '+') ADVANCE(3850); - if (lookahead == '>') ADVANCE(2476); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3780); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3824: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '-') ADVANCE(3888); - if (lookahead == '_') ADVANCE(3841); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3841); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3779); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3825: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '-') ADVANCE(3889); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3822); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3826: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(3841); - if (lookahead == '_') ADVANCE(3827); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3872); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3841); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3778); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3827: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(3841); - if (lookahead == '_') ADVANCE(3827); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3841); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3823); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3828: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(2002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3824); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3829: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(3828); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3826); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3830: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(3886); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3831); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3781); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3831: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '2') ADVANCE(3877); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3887); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3830); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3832: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(3878); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3881); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3775); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3833: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(3891); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3832); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3834: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == ':') ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3834); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3835: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '>') ADVANCE(2524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); END_STATE(); case 3836: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '>') ADVANCE(2516); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead == '\'') ADVANCE(3591); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ';' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(585); + if (lookahead != 0) ADVANCE(3836); END_STATE(); case 3837: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '>') ADVANCE(2500); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead == '`') ADVANCE(3593); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ';' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(695); + if (lookahead != 0) ADVANCE(3837); END_STATE(); case 3838: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '>') ADVANCE(2508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); END_STATE(); case 3839: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'T') ADVANCE(3890); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\n') ADVANCE(3366); + if (lookahead == '\r') ADVANCE(10); + if (lookahead == ',') ADVANCE(4040); + if (lookahead == ':') ADVANCE(3869); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3336); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3859); END_STATE(); case 3840: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3841); - if (lookahead == 'b') ADVANCE(2378); - if (lookahead == 'o') ADVANCE(2397); - if (lookahead == 'x') ADVANCE(2405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3843); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\n') ADVANCE(3354); + if (lookahead == '\r') ADVANCE(11); + if (lookahead == ',') ADVANCE(4040); + if (lookahead == ':') ADVANCE(3869); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3312); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3859); END_STATE(); case 3841: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3841); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3841); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '$') ADVANCE(3463); + if (lookahead == '(') ADVANCE(3372); + if (lookahead == '[') ADVANCE(3608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4040); END_STATE(); case 3842: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3841); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3824); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '*') ADVANCE(3997); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3298); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3843: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3841); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3842); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3950); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'r') ADVANCE(3961); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3844: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3841); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3843); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3930); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'u') ADVANCE(3978); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3845: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3845); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2313); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + ADVANCE_MAP( + '+', 3909, + '-', 3911, + '>', 3710, + 'I', 4017, + '_', 3911, + 'i', 4017, + 'r', 3962, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3846: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'a') ADVANCE(3851); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3909); + if (lookahead == '-') ADVANCE(3911); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'r') ADVANCE(3962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3847: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(1392); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3951); + if (lookahead == '>') ADVANCE(3701); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3848: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(1482); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3908); + if (lookahead == '-') ADVANCE(3911); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'r') ADVANCE(3961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3849: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(3836); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3931); + if (lookahead == '>') ADVANCE(3706); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3850: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'e') ADVANCE(3858); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3994); + if (lookahead == '.') ADVANCE(3904); + if (lookahead == '_') ADVANCE(3878); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3306); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3851: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(3860); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3953); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == 'I') ADVANCE(4017); + if (lookahead == 'i') ADVANCE(4017); + if (lookahead == 'r') ADVANCE(3962); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3852: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(1494); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3953); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == 'n') ADVANCE(3923); + if (lookahead == 'r') ADVANCE(3962); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3853: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'l') ADVANCE(3852); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3953); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == 'r') ADVANCE(3962); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3854: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'o') ADVANCE(3835); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3932); + if (lookahead == '>') ADVANCE(3715); + if (lookahead == 'r') ADVANCE(4004); + if (lookahead == 'u') ADVANCE(3983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3855: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'o') ADVANCE(3865); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3932); + if (lookahead == '>') ADVANCE(3715); + if (lookahead == 'u') ADVANCE(3983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3856: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'r') ADVANCE(3864); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3957); + if (lookahead == '>') ADVANCE(3700); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3857: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'r') ADVANCE(3822); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3933); + if (lookahead == '>') ADVANCE(3705); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3858: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'r') ADVANCE(3859); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (lookahead == '2') ADVANCE(3861); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3867); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3859: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'r') ADVANCE(3838); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (lookahead == ':') ADVANCE(3869); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3859); END_STATE(); case 3860: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 's') ADVANCE(3848); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (lookahead == ':') ADVANCE(3868); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3861: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 't') ADVANCE(3823); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3557); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3862: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 't') ADVANCE(3837); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3863: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'u') ADVANCE(3853); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3871); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3860); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3864: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'u') ADVANCE(3847); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3863); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3865: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'u') ADVANCE(3862); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3550); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3866: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3831); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3895); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3866); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3573); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3867: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3871); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3557); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3868: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3870); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3865); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3869: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3874); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(4040); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3870: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3873); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3920); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3871: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3991); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3872: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3868); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3937); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3873: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3869); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(4031); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3874: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3875); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3992); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3875: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(3905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3876: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3876); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(3914); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3877: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3832); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(3905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3878: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3881); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3904); + if (lookahead == '_') ADVANCE(3878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3879: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '-' || - lookahead == '.' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(3879); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3182); + if (lookahead == '_') ADVANCE(3905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3880: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3880); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3913); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3881: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '/') ADVANCE(3998); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3882: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3825); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '2') ADVANCE(4025); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3883: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3839); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ':') ADVANCE(4037); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3884: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3834); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ':') ADVANCE(4039); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3885: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3830); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '=') ADVANCE(3995); + if (lookahead == '~') ADVANCE(3996); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3886: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3866); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '=') ADVANCE(3999); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3340); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3887: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3832); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '=') ADVANCE(4000); + if (lookahead == '~') ADVANCE(4001); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3888: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3882); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '=') ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3342); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3889: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3883); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3736); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3890: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3884); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3891: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3885); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3721); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3892: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3833); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3726); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3893: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3735); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3894: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3894); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3730); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3895: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3720); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3896: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3725); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3897: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(3746); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'r') ADVANCE(3749); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I') ADVANCE(4017); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'i') ADVANCE(3921); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3911); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3898: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(3740); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'u') ADVANCE(3753); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I') ADVANCE(4017); + if (lookahead == 'i') ADVANCE(4017); + if (lookahead == 'r') ADVANCE(3988); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3899: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I') ADVANCE(4017); + if (lookahead == 'i') ADVANCE(4017); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3900: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3730); - if (lookahead == '_') ADVANCE(3720); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I') ADVANCE(4017); + if (lookahead == 'i') ADVANCE(3921); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3901: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3730); - if (lookahead == '_') ADVANCE(3720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I') ADVANCE(4017); + if (lookahead == 'i') ADVANCE(3946); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3902: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N') ADVANCE(4018); + if (lookahead == 'n') ADVANCE(4003); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3903: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3903); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3904: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3904); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3905: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(3743); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3906: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(3756); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3907); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3907: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(3744); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3908: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'o') ADVANCE(3889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3909: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3762); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == 'o') ADVANCE(3893); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3910: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3911); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3911: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3911); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3912: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '+') ADVANCE(3746); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'r') ADVANCE(3749); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3912); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3913: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '+') ADVANCE(3740); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'u') ADVANCE(3753); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3914: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3914); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3915: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '.') ADVANCE(3730); - if (lookahead == '_') ADVANCE(3720); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3916); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3916); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3916: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '.') ADVANCE(3730); - if (lookahead == '_') ADVANCE(3720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3916); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3917: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'a') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3918: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '_') ADVANCE(3731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'a') ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3919: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == '_') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'a') ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3920: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == 'a') ADVANCE(3743); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'a') ADVANCE(3949); + if (lookahead == 'o') ADVANCE(3968); + if (lookahead == 's') ADVANCE(3934); + if (lookahead == 'x') ADVANCE(3958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3921: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == 'r') ADVANCE(3756); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3922: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == 'u') ADVANCE(3744); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'c') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3923: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'd') ADVANCE(3974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3924: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3762); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'd') ADVANCE(4005); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3925: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token5); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'd') ADVANCE(4006); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3926: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'd') ADVANCE(4010); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3927: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '+') ADVANCE(3746); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'I') ADVANCE(3760); - if (lookahead == 'i') ADVANCE(3760); - if (lookahead == 'r') ADVANCE(3749); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(2218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3928: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '+') ADVANCE(3746); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'r') ADVANCE(3749); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(2263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3929: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '+') ADVANCE(3740); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'u') ADVANCE(3753); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(3922); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3930: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - ADVANCE_MAP( - '+', 3732, - '-', 3734, - '>', 2477, - 'I', 3760, - '_', 3734, - 'i', 3760, - 'r', 3749, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(3890); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3931: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '+') ADVANCE(1637); - if (lookahead == '-') ADVANCE(593); - if (lookahead == 'I') ADVANCE(1701); - if (lookahead == '_') ADVANCE(1637); - if (lookahead == 'i') ADVANCE(1701); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(3963); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3932: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '+') ADVANCE(1637); - if (lookahead == '-') ADVANCE(593); - if (lookahead == 'I') ADVANCE(1701); - if (lookahead == '_') ADVANCE(1637); - if (lookahead == 'i') ADVANCE(1643); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3933: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '.') ADVANCE(3729); - if (lookahead == '_') ADVANCE(3718); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(3970); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3934: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '.') ADVANCE(3729); - if (lookahead == '_') ADVANCE(3718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'h') ADVANCE(3945); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3935: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '.') ADVANCE(558); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'h') ADVANCE(4014); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3936: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'i') ADVANCE(772); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'h') ADVANCE(4015); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3937: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'i') ADVANCE(606); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'i') ADVANCE(3948); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3938: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(772); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'i') ADVANCE(3979); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3939: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(606); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'i') ADVANCE(3980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3940: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(667); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'i') ADVANCE(3985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3941: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(3760); - if (lookahead == '_') ADVANCE(3734); - if (lookahead == 'i') ADVANCE(3736); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3734); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'k') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3942: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(3760); - if (lookahead == 'i') ADVANCE(3760); - if (lookahead == 'r') ADVANCE(3756); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'l') ADVANCE(2271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3943: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(3760); - if (lookahead == 'i') ADVANCE(3760); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'l') ADVANCE(3973); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3944: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(3760); - if (lookahead == 'i') ADVANCE(3736); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'l') ADVANCE(3942); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3945: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(3760); - if (lookahead == 'i') ADVANCE(3745); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'l') ADVANCE(4011); + if (lookahead == 'r') ADVANCE(4012); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3946: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(1701); - if (lookahead == 'i') ADVANCE(1701); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'n') ADVANCE(3529); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3947: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(1701); - if (lookahead == 'i') ADVANCE(1643); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'n') ADVANCE(3924); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3948: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'I') ADVANCE(1701); - if (lookahead == 'i') ADVANCE(1666); - if (lookahead == 's') ADVANCE(2389); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'n') ADVANCE(4009); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3949: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(3728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'n') ADVANCE(3926); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3950: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3889); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3951: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(3731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3989); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3952: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3982); + if (lookahead == 'u') ADVANCE(3944); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4020); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3953: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(2371); - if (lookahead == 'o') ADVANCE(2390); - if (lookahead == 'x') ADVANCE(2398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2339); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3893); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3954: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2339); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3967); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3955: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'a') ADVANCE(3743); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3976); + if (lookahead == 'u') ADVANCE(3944); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4020); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3956: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'a') ADVANCE(3758); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3925); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3957: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'a') ADVANCE(1699); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3990); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3958: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'a') ADVANCE(757); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3969); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3959: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'e') ADVANCE(3737); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3960: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'e') ADVANCE(1645); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3988); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3961: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'e') ADVANCE(607); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3847); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3962: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'k') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3856); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3963: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'k') ADVANCE(2389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3964); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3964: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'r') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3892); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3965: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'r') ADVANCE(3756); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3986); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3966: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'r') ADVANCE(2389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3896); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3967: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 's') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(4007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3968: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'u') ADVANCE(3744); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(4008); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3969: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 's') ADVANCE(2389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(4013); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3970: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'u') ADVANCE(3744); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3966); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3971: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'u') ADVANCE(3944); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3765); + lookahead == 'a') ADVANCE(4020); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3972: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3762); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 's') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3973: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token6); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 's') ADVANCE(3928); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3974: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '+') ADVANCE(4007); - if (lookahead == '>') ADVANCE(2481); - if (lookahead == 'r') ADVANCE(4010); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 's') ADVANCE(3871); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3975: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '+') ADVANCE(4002); - if (lookahead == '>') ADVANCE(2489); - if (lookahead == 'u') ADVANCE(4014); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 's') ADVANCE(3874); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3976: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '+') ADVANCE(4008); - if (lookahead == '>') ADVANCE(2465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(4026); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3977: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '+') ADVANCE(4003); - if (lookahead == '>') ADVANCE(2473); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(3919); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3978: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '-') ADVANCE(4041); - if (lookahead == '_') ADVANCE(3995); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(3849); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3979: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '-') ADVANCE(4042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(3870); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3980: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '.') ADVANCE(3995); - if (lookahead == '_') ADVANCE(3981); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(3935); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3981: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '.') ADVANCE(3995); - if (lookahead == '_') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(3891); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3982: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '.') ADVANCE(2001); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(3872); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3983: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '.') ADVANCE(3982); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(3857); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3984: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '.') ADVANCE(4039); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3985); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4048); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token2_character_set_1, 12, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(3895); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3985: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '2') ADVANCE(4030); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4040); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(3936); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3986: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == ':') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(3975); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3987: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == ':') ADVANCE(4044); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(3944); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4020); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3988: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == ':') ADVANCE(4046); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(3927); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3989: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '>') ADVANCE(2521); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(3981); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3990: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '>') ADVANCE(2513); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3991: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '>') ADVANCE(2497); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'w') ADVANCE(3939); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3992: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '>') ADVANCE(2505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'w') ADVANCE(3940); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3993: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'T') ADVANCE(4043); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'y') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3994: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(3995); - if (lookahead == 'b') ADVANCE(2377); - if (lookahead == 'o') ADVANCE(2396); - if (lookahead == 'x') ADVANCE(2404); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3297); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3995: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(3995); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3995); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3339); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3996: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(3995); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3315); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3997: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(3995); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3296); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3998: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '_') ADVANCE(3995); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3304); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 3999: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'a') ADVANCE(4004); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3341); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4000: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(1391); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4001: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(1481); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3313); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4002: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(3990); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3343); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4003: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'e') ADVANCE(4011); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3329); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2284); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4004: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'l') ADVANCE(4013); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3327); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4005: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'l') ADVANCE(1493); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3323); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4006: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'l') ADVANCE(4005); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3302); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4007: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'o') ADVANCE(3989); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3325); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4008: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'o') ADVANCE(4018); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3321); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4009: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'r') ADVANCE(4017); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3331); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4010: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'r') ADVANCE(3976); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3317); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4011: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'r') ADVANCE(4012); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3309); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4012: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'r') ADVANCE(3992); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3311); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4013: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 's') ADVANCE(4001); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3319); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4014: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 't') ADVANCE(3977); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3335); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4015: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 't') ADVANCE(3991); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3333); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4016: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'u') ADVANCE(4006); + ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + lookahead == 'a') ADVANCE(4020); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4017: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'u') ADVANCE(4000); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4018: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'u') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2284); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4019: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3985); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4048); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4019); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4020: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4024); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4021: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4023); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4018); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4022: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4027); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4019); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4023: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4026); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4024); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4024: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4048); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2279); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4025: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4021); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3559); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4026: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4027: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4028); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4028: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4048); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3873); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4029: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4029); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3884); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4030: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3986); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4028); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4031: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4032); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4032: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (lookahead == '-' || - lookahead == '.' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4048); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4032); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3566); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4033: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4033); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3552); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4034: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4048); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3575); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4035: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3559); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4036: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4037: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4038: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3883); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4039: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4019); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4040: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); END_STATE(); case 4041: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + ADVANCE_MAP( + '+', 4107, + '-', 4111, + '>', 3710, + 'I', 4189, + '_', 4111, + 'i', 4189, + 'r', 4153, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4042: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4036); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4143); + if (lookahead == '>') ADVANCE(3700); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4043: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4128); + if (lookahead == '>') ADVANCE(3715); + if (lookahead == 'u') ADVANCE(4168); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4044: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4142); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == 'I') ADVANCE(4189); + if (lookahead == 'i') ADVANCE(4189); + if (lookahead == 'r') ADVANCE(4153); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4045: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4142); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == 'r') ADVANCE(4153); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4046: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4146); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'I') ADVANCE(4189); + if (lookahead == 'i') ADVANCE(4189); + if (lookahead == 'r') ADVANCE(4155); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4047: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4146); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == 'r') ADVANCE(4155); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4048: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token7); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4129); + if (lookahead == '>') ADVANCE(3705); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4049: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4071); - if (lookahead == '>') ADVANCE(2477); - if (lookahead == 'r') ADVANCE(4074); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + ADVANCE_MAP( + '+', 4108, + '-', 4111, + '>', 3711, + 'I', 4189, + '_', 4111, + 'i', 4189, + 'r', 4155, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4050: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4066); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'u') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4108); + if (lookahead == '-') ADVANCE(4111); + if (lookahead == '>') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4111); + if (lookahead == 'r') ADVANCE(4155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4051: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4072); - if (lookahead == '>') ADVANCE(2461); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4130); + if (lookahead == '>') ADVANCE(3716); + if (lookahead == 'u') ADVANCE(4170); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4052: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4067); - if (lookahead == '>') ADVANCE(2469); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4148); + if (lookahead == '>') ADVANCE(4180); + if (lookahead == 'I') ADVANCE(4189); + if (lookahead == 'i') ADVANCE(4189); + if (lookahead == 'r') ADVANCE(4158); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4053: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(4100); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4148); + if (lookahead == '>') ADVANCE(4180); + if (lookahead == 'r') ADVANCE(4158); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4054: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(4062); - if (lookahead == '_') ADVANCE(4055); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4091); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + ADVANCE_MAP( + '+', 4109, + '-', 4111, + '>', 4180, + 'I', 4189, + '_', 4111, + 'i', 4189, + 'r', 4158, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4055: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(4062); - if (lookahead == '_') ADVANCE(4055); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2350); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4109); + if (lookahead == '-') ADVANCE(4111); + if (lookahead == '>') ADVANCE(4180); + if (lookahead == '_') ADVANCE(4111); + if (lookahead == 'r') ADVANCE(4158); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4056: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(794); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4131); + if (lookahead == '>') ADVANCE(4181); + if (lookahead == 'r') ADVANCE(3274); + if (lookahead == 'u') ADVANCE(4171); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4057: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2517); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4131); + if (lookahead == '>') ADVANCE(4181); + if (lookahead == 'u') ADVANCE(4171); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4058: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2509); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4149); + if (lookahead == '>') ADVANCE(3701); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4059: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2493); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4132); + if (lookahead == '>') ADVANCE(3706); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4060: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2501); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4150); + if (lookahead == '>') ADVANCE(4183); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4061: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4061); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4133); + if (lookahead == '>') ADVANCE(4185); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4062: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4062); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2367); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (lookahead == '2') ADVANCE(4065); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4069); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4063: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(4069); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (lookahead == ':') ADVANCE(4073); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4063); END_STATE(); case 4064: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1383); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (lookahead == ':') ADVANCE(4072); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4065: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1473); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3556); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4066: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4058); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3549); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4067: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4075); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4068: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1485); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3572); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4069: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(4077); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3556); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4070: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(4068); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4064); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4071: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(4057); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4070); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4072: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(4082); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4066); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4073: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4081); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); END_STATE(); case 4074: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4051); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '-') ADVANCE(3025); + if (lookahead == '.') ADVANCE(4105); + if (lookahead == '_') ADVANCE(4079); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4197); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4075: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4076); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '-') ADVANCE(4209); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4076: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4060); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4077: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(4065); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4078: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(4052); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(4105); + if (lookahead == '_') ADVANCE(4079); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4197); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4079: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(4059); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(4105); + if (lookahead == '_') ADVANCE(4079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4080: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4070); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4088); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(4106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4081: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4064); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3377); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4082: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4079); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(4116); + if (lookahead == '_') ADVANCE(4082); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4083: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4088); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '2') ADVANCE(4203); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4215); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4084: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1508); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ':') ADVANCE(4211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4085: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1502); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ':') ADVANCE(4217); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4086: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3736); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4087: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4094); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4088: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1509); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3721); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4089: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3726); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4090: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4086); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3171); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4091: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3735); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4092: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4087); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3730); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4093: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4095); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3720); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4094: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4096); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3725); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4095: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1497); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(4182); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4096: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1505); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(4184); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4097: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4053); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(4186); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4098: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4056); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(4187); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4099: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4097); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4189); + if (lookahead == '_') ADVANCE(4111); + if (lookahead == 'i') ADVANCE(4189); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4111); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4100: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4102); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4189); + if (lookahead == '_') ADVANCE(4111); + if (lookahead == 'i') ADVANCE(4122); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4111); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4101: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4098); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4189); + if (lookahead == 'i') ADVANCE(4189); + if (lookahead == 'r') ADVANCE(4176); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4102: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2418); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4189); + if (lookahead == 'i') ADVANCE(4189); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4103: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4189); + if (lookahead == 'i') ADVANCE(4122); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4104: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4189); + if (lookahead == 'i') ADVANCE(4139); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4105: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4105); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4106: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(2076); - if (lookahead == 'n') ADVANCE(2049); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4107: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(1031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4111); + if (lookahead == 'o') ADVANCE(4091); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4108: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(1034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4111); + if (lookahead == 'o') ADVANCE(4086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4109: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4111); + if (lookahead == 'o') ADVANCE(4095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4110: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(1037); - if (lookahead == 'l') ADVANCE(1246); - if (lookahead == 'r') ADVANCE(1218); - if (lookahead == 'x') ADVANCE(1201); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4111); if (lookahead == '+' || - lookahead == '-') ADVANCE(1037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + lookahead == '-') ADVANCE(4111); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4111: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(1037); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4111); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4112: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(593); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4113: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(1306); - if (lookahead == 'o') ADVANCE(1308); - if (lookahead == 'x') ADVANCE(1315); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4114); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4114: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4115: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1204); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4116: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(1154); - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 'u') ADVANCE(1254); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4117: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(1272); - if (lookahead == 'o') ADVANCE(1172); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4118: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(1120); - if (lookahead == 'o') ADVANCE(2072); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4119); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4119: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(1122); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(4119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4120: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(1253); - if (lookahead == 'i') ADVANCE(1245); - if (lookahead == 'o') ADVANCE(1186); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'a') ADVANCE(4179); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4121: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(1291); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'a') ADVANCE(4137); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4122: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'h') ADVANCE(1139); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4123: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'i') ADVANCE(1070); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'c') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4124: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'l') ADVANCE(1137); - if (lookahead == 's') ADVANCE(2147); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'd') ADVANCE(3266); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4125: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'l') ADVANCE(1246); - if (lookahead == 'r') ADVANCE(1218); - if (lookahead == 'x') ADVANCE(1201); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(2218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4126: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'o') ADVANCE(1276); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(2263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4127: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(1277); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(4123); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4128: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(1103); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(4092); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4129: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(1077); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(4156); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4130: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'v') ADVANCE(1105); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(4087); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4131: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(4096); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4132: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1299); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(4161); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4133: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(4162); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4134: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - ADVANCE_MAP( - '#', 4585, - '$', 1975, - '+', 2248, - ',', 2448, - '-', 2027, - '.', 2357, - '0', 4193, - 'I', 4297, - 'N', 4289, - '_', 4194, - 'a', 4239, - 'b', 4260, - 'c', 4197, - 'd', 4208, - 'e', 4244, - 'f', 4198, - 'h', 4231, - 'i', 4192, - 'l', 4221, - 'm', 4199, - 'n', 4209, - 'o', 4286, - 'r', 4210, - 's', 4250, - 't', 4256, - 'u', 4268, - 'w', 4230, - '\t', 2449, - ' ', 2449, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4309); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4194); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'f') ADVANCE(3146); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4135: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - ADVANCE_MAP( - '#', 4585, - '$', 1975, - '+', 2248, - '-', 2027, - '.', 2357, - '0', 4193, - 'I', 4297, - 'N', 4289, - '_', 4194, - 'a', 4239, - 'b', 4260, - 'c', 4197, - 'd', 4208, - 'e', 4244, - 'f', 4198, - 'h', 4231, - 'i', 4192, - 'l', 4221, - 'm', 4199, - 'n', 4209, - 'o', 4286, - 'r', 4210, - 's', 4250, - 't', 4256, - 'u', 4268, - 'w', 4230, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4309); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4194); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'k') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4136: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(4585); - if (lookahead == '_') ADVANCE(4196); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2314); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'l') ADVANCE(2271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4137: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(4585); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2452); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2448); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'l') ADVANCE(4166); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4138: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(4585); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'l') ADVANCE(4136); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4139: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '$') ADVANCE(2322); - if (lookahead == '(') ADVANCE(2271); - if (lookahead == '{') ADVANCE(2447); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'n') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4140: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1364); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4140); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'n') ADVANCE(3108); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4141: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1355); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4141); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'n') ADVANCE(4124); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4142: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1356); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4142); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(4091); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4143: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4145); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4148); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(4175); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4144: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4146); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4148); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(4167); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'u') ADVANCE(4138); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4145: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4144); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4148); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(4167); + if (lookahead == 'u') ADVANCE(4138); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4146: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4147); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4148); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(4086); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4147: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4148); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4148); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(4154); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4148: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1371); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4148); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(4095); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4149: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1373); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4149); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(4177); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4150: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1317); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4150); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(4178); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4151: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1357); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4151); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4152: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1351); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4152); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(4176); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4153: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1330); - if (lookahead == 'e') ADVANCE(4154); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4156); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(4042); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4154: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1330); - if (lookahead == 'n') ADVANCE(4155); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4156); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4155: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1330); - if (lookahead == 'v') ADVANCE(987); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4156); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(4058); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4156: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1330); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4156); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(4157); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4157: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1372); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4157); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(4094); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4158: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1374); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4158); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(4060); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4159: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1331); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4159); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(4089); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4160: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1358); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4160); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(4098); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4161: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1319); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4161); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(4159); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4162: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1359); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4162); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(4160); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4163: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1340); - if (lookahead == 'e') ADVANCE(4164); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4166); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'u') ADVANCE(4138); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4164: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1340); - if (lookahead == 'n') ADVANCE(4165); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4166); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4165: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1340); - if (lookahead == 'v') ADVANCE(2133); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4166); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(3250); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4166: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1340); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4166); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(4126); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4167: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1352); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4167); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(4204); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4168: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1318); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4168); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(4048); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4169: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1361); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4169); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(4093); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4170: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1332); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4170); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(4059); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4171: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1354); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4171); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(4061); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4172: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1360); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4172); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(4088); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4173: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1353); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4173); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(4097); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4174: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1382); - if (lookahead == 'e') ADVANCE(4175); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4177); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(4138); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4175: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1382); - if (lookahead == 'n') ADVANCE(4176); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4177); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(4169); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4176: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1382); - if (lookahead == 'v') ADVANCE(1944); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4177); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(4125); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4177: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1382); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4177); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(4172); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4178: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1321); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4178); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(4173); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4179: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1322); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4179); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'y') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4180: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1363); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4180); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2942); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4181: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1348); - if (lookahead == 'e') ADVANCE(4182); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4184); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4182: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1348); - if (lookahead == 'n') ADVANCE(4183); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4184); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2947); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4183: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1348); - if (lookahead == 'v') ADVANCE(2123); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4184); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2940); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4184: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1348); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4184); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2946); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4185: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1349); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4185); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2941); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4186: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1362); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4186); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2944); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4187: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1350); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4187); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2945); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4188: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == ',') ADVANCE(1320); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4188); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4189: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(4194); - if (lookahead == '_') ADVANCE(4189); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4194); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4190: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(4195); - if (lookahead == '_') ADVANCE(4190); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4195); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2297); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4191: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(4139); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2286); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4192: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'N') ADVANCE(4290); - if (lookahead == 'f') ADVANCE(2075); - if (lookahead == 'n') ADVANCE(2048); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4199); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4193: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4194); - if (lookahead == 'b') ADVANCE(4305); - if (lookahead == 'o') ADVANCE(4306); - if (lookahead == 'x') ADVANCE(4307); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4194); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4200); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4194: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4194); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4194); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4195: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4195); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4195); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4191); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4196: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4196); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2314); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4192); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4197: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'a') ADVANCE(4274); - if (lookahead == 'o') ADVANCE(4246); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4190); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4198: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'a') ADVANCE(4245); - if (lookahead == 'o') ADVANCE(4257); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4193); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4199: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'a') ADVANCE(4237); - if (lookahead == 'o') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(4276); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); - END_STATE(); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4202); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + END_STATE(); case 4200: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'a') ADVANCE(4236); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4201); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4201: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'a') ADVANCE(4288); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2291); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4202: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'a') ADVANCE(4267); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2279); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4203: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'c') ADVANCE(4228); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4204: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'c') ADVANCE(4229); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4205: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'c') ADVANCE(4219); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4206: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'd') ADVANCE(4285); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4075); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4207: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'd') ADVANCE(4213); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4208: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(4226); - if (lookahead == 'o') ADVANCE(2071); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4206); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4209: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(4287); - if (lookahead == 'u') ADVANCE(4240); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4296); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4210: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(4227); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4207); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4211: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(1956); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4213); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4212: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(2081); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3568); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4213: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(2130); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3554); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4214: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(2064); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3577); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4215: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(1385); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4216: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(1475); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4217: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(2067); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4216); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4218: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(1952); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); case 4219: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(2120); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4222); + if (lookahead == '_') ADVANCE(4223); + if (lookahead == '\t' || + lookahead == ' ') SKIP(468); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4227); END_STATE(); case 4220: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(2041); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '.') ADVANCE(4222); + if (lookahead == '_') ADVANCE(4223); + if (lookahead == '\t' || + lookahead == ' ') SKIP(542); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); END_STATE(); case 4221: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(4275); - if (lookahead == 'i') ADVANCE(4269); - if (lookahead == 'o') ADVANCE(4251); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '.') ADVANCE(4224); + if (lookahead == '_') ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); END_STATE(); case 4222: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(4200); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4222); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3460); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); END_STATE(); case 4223: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(4265); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); END_STATE(); case 4224: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(4263); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); END_STATE(); case 4225: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'e') ADVANCE(4259); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4226); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); END_STATE(); case 4226: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'f') ADVANCE(1941); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); END_STATE(); case 4227: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'g') ADVANCE(4235); - if (lookahead == 't') ADVANCE(4283); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); END_STATE(); case 4228: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'h') ADVANCE(2113); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4342); + if (lookahead == '>') ADVANCE(3713); + if (lookahead == 'r') ADVANCE(4357); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4229: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'h') ADVANCE(2086); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4302); + if (lookahead == '>') ADVANCE(3718); + if (lookahead == 'u') ADVANCE(4387); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4230: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'h') ADVANCE(4234); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4345); + if (lookahead == '>') ADVANCE(3703); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4231: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'i') ADVANCE(4207); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4305); + if (lookahead == '>') ADVANCE(3708); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4232: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'i') ADVANCE(4202); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4348); + if (lookahead == '>') ADVANCE(3712); + if (lookahead == 'r') ADVANCE(4364); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4233: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'i') ADVANCE(4249); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4309); + if (lookahead == '>') ADVANCE(3717); + if (lookahead == 'u') ADVANCE(4389); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4234: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'i') ADVANCE(4242); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4351); + if (lookahead == '>') ADVANCE(4408); + if (lookahead == 'r') ADVANCE(4369); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4235: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'i') ADVANCE(4272); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4311); + if (lookahead == '>') ADVANCE(4409); + if (lookahead == 'r') ADVANCE(3277); + if (lookahead == 'u') ADVANCE(4390); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4236: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'k') ADVANCE(2038); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4311); + if (lookahead == '>') ADVANCE(4409); + if (lookahead == 'u') ADVANCE(4390); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4237: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'k') ADVANCE(4214); - if (lookahead == 't') ADVANCE(4204); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4352); + if (lookahead == '>') ADVANCE(3702); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4238: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'l') ADVANCE(1487); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4312); + if (lookahead == '>') ADVANCE(3707); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4239: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'l') ADVANCE(4232); - if (lookahead == 's') ADVANCE(2144); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4353); + if (lookahead == '>') ADVANCE(4411); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4240: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'l') ADVANCE(4238); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4313); + if (lookahead == '>') ADVANCE(4413); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4241: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'l') ADVANCE(4201); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(4449); + if (lookahead == '_') ADVANCE(4280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4242: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'l') ADVANCE(4217); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(3028); + if (lookahead == '.') ADVANCE(4280); + if (lookahead == '_') ADVANCE(4249); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4426); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4243: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'l') ADVANCE(4218); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(4307); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4244: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'l') ADVANCE(4270); - if (lookahead == 'r') ADVANCE(4262); - if (lookahead == 'x') ADVANCE(4255); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(4450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4245: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'l') ADVANCE(4273); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(3185); + if (lookahead == '_') ADVANCE(4272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4246: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'n') ADVANCE(4271); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(4274); + if (lookahead == '_') ADVANCE(4246); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4274); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4247: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'n') ADVANCE(1948); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(4447); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4250); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4248: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'n') ADVANCE(2117); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(4280); + if (lookahead == '_') ADVANCE(4249); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4426); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4249: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'n') ADVANCE(4284); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(4280); + if (lookahead == '_') ADVANCE(4249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4250: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'o') ADVANCE(4281); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '2') ADVANCE(4437); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4448); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4251: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'o') ADVANCE(4254); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':') ADVANCE(4439); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4442); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4252: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'o') ADVANCE(4258); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':') ADVANCE(4452); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4253: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'o') ADVANCE(4266); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':') ADVANCE(4454); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4254: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'p') ADVANCE(2060); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4255: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'p') ADVANCE(4253); - if (lookahead == 't') ADVANCE(4224); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3733); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4256: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(4282); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3723); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4257: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(2044); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3728); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4258: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(1982); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3737); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4259: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(2126); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3732); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4260: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(4222); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4261: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(4205); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3727); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4262: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(4252); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3172); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4263: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(4247); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4410); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4264: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(4248); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4265: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(4241); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4414); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4266: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'r') ADVANCE(4279); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4415); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4267: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 's') ADVANCE(979); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N') ADVANCE(4420); + if (lookahead == 'f') ADVANCE(4436); + if (lookahead == 'n') ADVANCE(4420); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4268: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 's') ADVANCE(4211); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'T') ADVANCE(4451); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4269: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 's') ADVANCE(4277); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4276); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4270: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 's') ADVANCE(4212); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4270); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4271: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 's') ADVANCE(4278); - if (lookahead == 't') ADVANCE(4233); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4271); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4273); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4272: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 's') ADVANCE(4280); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4273: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 's') ADVANCE(4216); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4274); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4274); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4274); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4274: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 't') ADVANCE(4203); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4274); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4274); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4275: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 't') ADVANCE(984); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4280); + if (lookahead == 'b') ADVANCE(3520); + if (lookahead == 'o') ADVANCE(3536); + if (lookahead == 'x') ADVANCE(3542); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4278); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4276: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 't') ADVANCE(990); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4280); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4277: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 't') ADVANCE(1991); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4241); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4278: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 't') ADVANCE(994); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4277); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4279: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 't') ADVANCE(975); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4278); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4280: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 't') ADVANCE(4225); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4281: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'u') ADVANCE(4261); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4326); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4282: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'u') ADVANCE(4215); - if (lookahead == 'y') ADVANCE(2109); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4384); + if (lookahead == 'o') ADVANCE(4337); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4283: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'u') ADVANCE(4264); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4335); + if (lookahead == 'o') ADVANCE(4358); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4284: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'u') ADVANCE(4220); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4325); + if (lookahead == 'o') ADVANCE(4291); + if (lookahead == 'u') ADVANCE(4383); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4285: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'u') ADVANCE(4243); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4324); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4286: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'v') ADVANCE(4223); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4407); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4287: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'w') ADVANCE(2140); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4375); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4288: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'y') ADVANCE(2136); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'c') ADVANCE(4317); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4289: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4296); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'c') ADVANCE(4299); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4290: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4295); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'd') ADVANCE(3269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4291: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4294); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'd') ADVANCE(4398); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4292: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4301); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'd') ADVANCE(4299); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4293: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4302); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(2225); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4294: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4300); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(2270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4295: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4299); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4296: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4308); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4314); + if (lookahead == 'o') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4297: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4290); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4406); + if (lookahead == 'u') ADVANCE(4332); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4427); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4298: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4291); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4316); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4299: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4292); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4243); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4300: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4293); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(2220); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4301: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4304); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(2265); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4302: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4303); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4255); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4303: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4309); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4385); + if (lookahead == 'i') ADVANCE(4379); + if (lookahead == 'o') ADVANCE(4344); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4304: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4308); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4285); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4305: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4305); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4367); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4306: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4306); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4358); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4307: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4307); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4340); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4308: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4309); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4308); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4370); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4309: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4310: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4366); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4311: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4264); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4312: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(2076); - if (lookahead == 'n') ADVANCE(2049); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4373); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4313: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(1034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4374); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4314: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'f') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4315: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1204); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'f') ADVANCE(3153); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4316: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(1154); - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 'u') ADVANCE(1254); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'g') ADVANCE(4323); + if (lookahead == 't') ADVANCE(4401); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4317: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(1272); - if (lookahead == 'o') ADVANCE(1172); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'h') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4318: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(1120); - if (lookahead == 'o') ADVANCE(2072); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'h') ADVANCE(4322); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4319: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(1122); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4292); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4320: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(1253); - if (lookahead == 'i') ADVANCE(1245); - if (lookahead == 'o') ADVANCE(1186); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4287); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4321: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(1291); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4341); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4322: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(1139); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4334); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4323: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(1070); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4381); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4324: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(1137); - if (lookahead == 's') ADVANCE(2147); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'k') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4325: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(1246); - if (lookahead == 'r') ADVANCE(1218); - if (lookahead == 'x') ADVANCE(1201); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'k') ADVANCE(4295); + if (lookahead == 't') ADVANCE(4288); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4326: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(1276); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4377); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4327: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(1277); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(2278); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4328: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(1103); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4380); + if (lookahead == 'r') ADVANCE(4365); + if (lookahead == 'x') ADVANCE(4355); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4329: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(1077); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(2273); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4330: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(1105); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4320); + if (lookahead == 's') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4331: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4327); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4332: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1299); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4329); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4333: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4286); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4334: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == '.') ADVANCE(587); - if (lookahead == '_') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4295); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4335: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(2076); - if (lookahead == 'n') ADVANCE(2049); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4382); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4336: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == '_') ADVANCE(1034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4337: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(4378); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4338: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1204); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(4290); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4339: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'a') ADVANCE(1154); - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 'u') ADVANCE(1254); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4340: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'a') ADVANCE(1272); - if (lookahead == 'o') ADVANCE(1172); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(4404); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4341: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'e') ADVANCE(1120); - if (lookahead == 'o') ADVANCE(2072); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(4397); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4342: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'e') ADVANCE(1122); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4343: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'e') ADVANCE(1253); - if (lookahead == 'i') ADVANCE(1245); - if (lookahead == 'o') ADVANCE(1186); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4399); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4344: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'e') ADVANCE(1291); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4354); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4345: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'h') ADVANCE(1139); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4396); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4346: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'i') ADVANCE(1070); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4386); + if (lookahead == 'u') ADVANCE(4331); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4347: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'l') ADVANCE(1137); - if (lookahead == 's') ADVANCE(2147); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4358); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4348: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'l') ADVANCE(1246); - if (lookahead == 'r') ADVANCE(1218); - if (lookahead == 'x') ADVANCE(1201); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4258); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4349: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'o') ADVANCE(1276); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4360); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4350: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'r') ADVANCE(1277); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4362); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4351: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'r') ADVANCE(1103); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4352: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 's') ADVANCE(1077); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4402); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4353: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'v') ADVANCE(1105); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4403); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4354: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'p') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4355: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token5); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1299); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'p') ADVANCE(4350); + if (lookahead == 't') ADVANCE(4310); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4356: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4395); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4357: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - ADVANCE_MAP( - 'I', 1298, - '_', 1037, - 'i', 1298, - 'l', 1246, - 'r', 1218, - 'x', 1201, - '+', 1037, - '-', 1037, - 'B', 2379, - 'b', 2379, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4230); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4358: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'I') ADVANCE(1298); - if (lookahead == '_') ADVANCE(1037); - if (lookahead == 'i') ADVANCE(1057); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1037); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4359: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - ADVANCE_MAP( - 'I', 1298, - 'a', 1154, - 'i', 1178, - 'o', 1068, - 's', 2386, - 'u', 1254, - 'B', 2379, - 'b', 2379, - ); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4400); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4360: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'I') ADVANCE(1298); - if (lookahead == 'i') ADVANCE(1298); - if (lookahead == 'l') ADVANCE(1246); - if (lookahead == 'r') ADVANCE(1218); - if (lookahead == 'x') ADVANCE(1201); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(3273); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4361: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'I') ADVANCE(1298); - if (lookahead == 'i') ADVANCE(1298); - if (lookahead == 'r') ADVANCE(1277); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4304); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4362: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'I') ADVANCE(1298); - if (lookahead == 'i') ADVANCE(1298); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4385); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4363: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'I') ADVANCE(1298); - if (lookahead == 'i') ADVANCE(1057); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4289); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4364: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'i') ADVANCE(772); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4237); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4365: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == '_') ADVANCE(593); - if (lookahead == 'i') ADVANCE(606); - if (lookahead == '+' || - lookahead == '-') ADVANCE(593); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2315); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4347); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4366: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(772); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4336); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4367: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(606); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4368); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4368: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'I') ADVANCE(772); - if (lookahead == 'i') ADVANCE(667); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2379); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4257); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4369: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'N') ADVANCE(1299); - if (lookahead == 'f') ADVANCE(2076); - if (lookahead == 'n') ADVANCE(2049); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4239); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4370: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == '_') ADVANCE(1031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4333); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4371: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == '_') ADVANCE(1034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4261); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4372: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == '_') ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2301); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4266); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4373: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == '_') ADVANCE(2349); - if (lookahead == 'b') ADVANCE(1306); - if (lookahead == 'o') ADVANCE(1308); - if (lookahead == 'x') ADVANCE(1315); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4371); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4374: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == '_') ADVANCE(2349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4372); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4375: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1204); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4376: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'a') ADVANCE(757); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4377: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'a') ADVANCE(1296); - if (lookahead == 'e') ADVANCE(1120); - if (lookahead == 'o') ADVANCE(2072); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4294); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4378: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'a') ADVANCE(1154); - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 'u') ADVANCE(1254); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4383); + if (lookahead == 't') ADVANCE(4321); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4379: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'a') ADVANCE(1272); - if (lookahead == 'o') ADVANCE(1172); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4383); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4380: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'e') ADVANCE(1120); - if (lookahead == 'o') ADVANCE(2072); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4295); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4381: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'e') ADVANCE(1122); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4393); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4382: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'e') ADVANCE(1253); - if (lookahead == 'i') ADVANCE(1245); - if (lookahead == 'o') ADVANCE(1186); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4301); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4383: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'e') ADVANCE(1291); - if (lookahead == 's') ADVANCE(2386); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4384: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'e') ADVANCE(1291); - if (lookahead == 'u') ADVANCE(1160); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4288); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4385: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'e') ADVANCE(1058); - if (lookahead == 'o') ADVANCE(1276); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4243); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4386: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'e') ADVANCE(607); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4438); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4387: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'h') ADVANCE(1139); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4231); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4388: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'h') ADVANCE(1139); - if (lookahead == 'k') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4256); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4389: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'i') ADVANCE(1070); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4238); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4390: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'i') ADVANCE(1070); - if (lookahead == 'r') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4240); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4391: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'k') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4260); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4392: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'l') ADVANCE(1137); - if (lookahead == 's') ADVANCE(2147); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4265); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4393: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'l') ADVANCE(1246); - if (lookahead == 'r') ADVANCE(1218); - if (lookahead == 'x') ADVANCE(1201); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4306); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4394: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'o') ADVANCE(1276); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4331); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4395: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'r') ADVANCE(1277); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4293); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4396: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'r') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4388); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4397: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'r') ADVANCE(1103); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4295); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4398: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 's') ADVANCE(2386); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4334); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4399: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 's') ADVANCE(2387); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4363); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4400: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 's') ADVANCE(1077); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4300); + if (lookahead == 'y') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4401: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'v') ADVANCE(1105); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4366); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4402: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4391); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4403: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token6); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1299); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4392); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4404: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == '$') ADVANCE(2321); - if (lookahead == '(') ADVANCE(2271); - if (lookahead == '{') ADVANCE(2447); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token5_character_set_1, 12, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'v') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4405: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1364); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4405); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'v') ADVANCE(4308); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4406: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1355); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4406); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'w') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4407: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1356); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4407); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'y') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4408: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4410); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4413); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2942); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4409: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4411); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4413); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4410: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4409); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4413); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2947); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4411: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4412); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4413); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2940); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4412: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1371); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4413); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4413); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2946); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4413: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1371); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4413); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2941); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4414: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1373); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4414); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2944); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4415: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1317); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4415); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2945); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4416: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1357); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4416); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4250); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4417: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1351); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4417); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4418: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1330); - if (lookahead == 'e') ADVANCE(4419); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4421); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4427); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4419: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1330); - if (lookahead == 'n') ADVANCE(4420); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4421); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4423); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4420: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1330); - if (lookahead == 'v') ADVANCE(986); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4421); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4424); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4421: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1330); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4421); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4431); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4422: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1372); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4422); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4432); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4423: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1374); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4423); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4424: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1331); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4424); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4430); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4425: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1358); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4425); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4426: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1319); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4426); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4419); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4427: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1359); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4427); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4428: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1340); - if (lookahead == 'e') ADVANCE(4429); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4431); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4420); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4429: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1340); - if (lookahead == 'n') ADVANCE(4430); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4431); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4421); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4430: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1340); - if (lookahead == 'v') ADVANCE(2132); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4431); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4422); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4431: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1340); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4431); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4433); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4432: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1352); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4432); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4434); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4433: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1318); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4433); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4434: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1361); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4434); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4436); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4435: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1332); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4435); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4435); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4436: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1354); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); END_STATE(); case 4437: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1360); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4437); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4251); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4438: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1353); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4438); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3293); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4439: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1382); - if (lookahead == 'e') ADVANCE(4440); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4442); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4442); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4440: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1382); - if (lookahead == 'n') ADVANCE(4441); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4442); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4440); END_STATE(); case 4441: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1382); - if (lookahead == 'v') ADVANCE(1943); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4442); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4441); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4442: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1382); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4442); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4443: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1321); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4443); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4244); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4444: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1322); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4444); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4268); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4445: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1363); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4445); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4253); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4446: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1348); - if (lookahead == 'e') ADVANCE(4447); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4449); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4247); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4447: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1348); - if (lookahead == 'n') ADVANCE(4448); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4449); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4448: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1348); - if (lookahead == 'v') ADVANCE(2122); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4449); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4251); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4449: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1348); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4449); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4443); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4450: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1349); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4450); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4451: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1362); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4451); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4445); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4452: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1350); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4452); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4446); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4453: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == ',') ADVANCE(1320); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4453); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4252); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4454: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == '.') ADVANCE(4459); - if (lookahead == '_') ADVANCE(4454); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4459); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4455: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == '.') ADVANCE(4460); - if (lookahead == '_') ADVANCE(4455); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4460); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token2_character_set_1, 12, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4455); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4456: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == '.') ADVANCE(4404); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); case 4457: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'N') ADVANCE(4554); - if (lookahead == 'f') ADVANCE(2074); - if (lookahead == 'n') ADVANCE(2047); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '$') ADVANCE(3463); + if (lookahead == '(') ADVANCE(3372); + if (lookahead == '[') ADVANCE(3608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4458: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == '_') ADVANCE(4459); - if (lookahead == 'b') ADVANCE(4569); - if (lookahead == 'o') ADVANCE(4570); - if (lookahead == 'x') ADVANCE(4571); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4459); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4509); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == 'r') ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4459: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == '_') ADVANCE(4459); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4459); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4504); + if (lookahead == '>') ADVANCE(3715); + if (lookahead == 'u') ADVANCE(4516); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4460: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == '_') ADVANCE(4460); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4460); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4498); + if (lookahead == '-') ADVANCE(4500); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == '_') ADVANCE(4500); + if (lookahead == 'r') ADVANCE(4512); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4461: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'a') ADVANCE(4538); - if (lookahead == 'o') ADVANCE(4510); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4510); + if (lookahead == '>') ADVANCE(3700); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4462: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'a') ADVANCE(4509); - if (lookahead == 'o') ADVANCE(4521); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4505); + if (lookahead == '>') ADVANCE(3705); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4463: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'a') ADVANCE(4501); - if (lookahead == 'o') ADVANCE(4470); - if (lookahead == 'u') ADVANCE(4540); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(4540); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4464: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'a') ADVANCE(4500); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4474); + if (lookahead == ':') ADVANCE(4549); + if (lookahead == '_') ADVANCE(4464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); END_STATE(); case 4465: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'a') ADVANCE(4552); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4490); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4466: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'a') ADVANCE(4531); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4467: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'c') ADVANCE(4492); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(4490); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4468: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'c') ADVANCE(4493); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4489); + if (lookahead == '_') ADVANCE(4469); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4469: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'c') ADVANCE(4483); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4489); + if (lookahead == '_') ADVANCE(4469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4470: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'd') ADVANCE(4549); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3183); + if (lookahead == '_') ADVANCE(4490); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4471: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'd') ADVANCE(4477); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4494); + if (lookahead == '_') ADVANCE(4472); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4472: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(4490); - if (lookahead == 'o') ADVANCE(2070); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4494); + if (lookahead == '_') ADVANCE(4472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4473: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(4551); - if (lookahead == 'u') ADVANCE(4504); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4560); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '2') ADVANCE(4535); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4545); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4474: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(4491); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4549); + if (lookahead == '_') ADVANCE(4474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); END_STATE(); case 4475: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(1955); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4549); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); END_STATE(); case 4476: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(2080); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4549); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4479); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); END_STATE(); case 4477: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(2129); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4549); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4475); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); END_STATE(); case 4478: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(2063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4549); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4476); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); END_STATE(); case 4479: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(1384); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4549); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4480); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); END_STATE(); case 4480: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(1474); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4549); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2291); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); END_STATE(); case 4481: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(2066); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4549); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); END_STATE(); case 4482: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(1951); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4546); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4483: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(2119); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4548); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4484: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(2040); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3735); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4485: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(4539); - if (lookahead == 'i') ADVANCE(4533); - if (lookahead == 'o') ADVANCE(4515); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3730); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4486: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(4464); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3720); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4487: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(4529); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3725); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4488: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(4527); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4488); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4489: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'e') ADVANCE(4523); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4489); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4490: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'f') ADVANCE(1940); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4490); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4491: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'g') ADVANCE(4499); - if (lookahead == 't') ADVANCE(4547); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4492); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4492: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'h') ADVANCE(2112); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4493: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'h') ADVANCE(2085); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4493); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4494: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'h') ADVANCE(4498); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4494); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4495: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'i') ADVANCE(4471); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4496: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'i') ADVANCE(4466); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4497); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4497); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4497: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'i') ADVANCE(4513); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4497); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4498: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'i') ADVANCE(4506); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4500); + if (lookahead == 'o') ADVANCE(4484); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4499: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'i') ADVANCE(4536); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4500); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4500); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4500: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'k') ADVANCE(2037); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4500); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4501: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'k') ADVANCE(4478); - if (lookahead == 't') ADVANCE(4468); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'a') ADVANCE(4507); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4502: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'l') ADVANCE(1486); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(2218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4503: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'l') ADVANCE(4496); - if (lookahead == 's') ADVANCE(2143); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(2263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4504: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'l') ADVANCE(4502); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(4485); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4505: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'l') ADVANCE(4465); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(4513); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4506: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'l') ADVANCE(4481); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(2271); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4507: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'l') ADVANCE(4482); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4508: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'l') ADVANCE(4534); - if (lookahead == 'r') ADVANCE(4526); - if (lookahead == 'x') ADVANCE(4519); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(4506); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4509: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'l') ADVANCE(4537); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'o') ADVANCE(4484); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4510: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'n') ADVANCE(4535); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'o') ADVANCE(4520); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4511: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'n') ADVANCE(1947); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(4519); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4512: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'n') ADVANCE(2116); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(4461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4513: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'n') ADVANCE(4548); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(4514); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4514: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'o') ADVANCE(4545); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(4487); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4515: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'o') ADVANCE(4518); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 's') ADVANCE(4503); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4516: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'o') ADVANCE(4522); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 't') ADVANCE(4462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4517: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'o') ADVANCE(4530); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 't') ADVANCE(4486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4518: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'p') ADVANCE(2059); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(4508); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4526); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4519: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'p') ADVANCE(4517); - if (lookahead == 't') ADVANCE(4488); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(4502); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4520: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(4546); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(4517); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4521: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(2043); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4526); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4522: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(1981); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2296); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4523: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(2125); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2285); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4524: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(4486); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4531); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4525: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(4469); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4532); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4526: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(4516); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2300); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4527: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(4511); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4523); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4528: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(4512); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4529: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(4505); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4522); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4530: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'r') ADVANCE(4543); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4525); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4531: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 's') ADVANCE(978); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4534); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4532: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 's') ADVANCE(4475); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4533); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4533: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 's') ADVANCE(4541); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2291); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4534: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 's') ADVANCE(4476); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2279); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4535: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 's') ADVANCE(4542); - if (lookahead == 't') ADVANCE(4497); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3560); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4536: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 's') ADVANCE(4544); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4537: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 's') ADVANCE(4480); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4463); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4538: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 't') ADVANCE(4467); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4483); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4539: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 't') ADVANCE(983); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4537); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4540: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 't') ADVANCE(989); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4542); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4541: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 't') ADVANCE(1990); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4538); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4542: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 't') ADVANCE(993); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3567); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4543: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 't') ADVANCE(974); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3553); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4544: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 't') ADVANCE(4489); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3576); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4545: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'u') ADVANCE(4525); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3560); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4546: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'u') ADVANCE(4479); - if (lookahead == 'y') ADVANCE(2108); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4543); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4547: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'u') ADVANCE(4528); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4482); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4548: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'u') ADVANCE(4484); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4547); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4549: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'u') ADVANCE(4507); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); END_STATE(); case 4550: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'v') ADVANCE(4487); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4610); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == 'I') ADVANCE(4627); + if (lookahead == 'i') ADVANCE(4627); + if (lookahead == 'r') ADVANCE(4614); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4551: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'w') ADVANCE(2139); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4610); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == 'r') ADVANCE(4614); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4552: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'y') ADVANCE(2135); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4603); + if (lookahead == '>') ADVANCE(3715); + if (lookahead == 'u') ADVANCE(4620); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4553: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4560); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + ADVANCE_MAP( + '+', 4591, + '-', 4593, + '>', 3710, + 'I', 4627, + '_', 4593, + 'i', 4627, + 'r', 4614, + 'B', 3524, + 'b', 3524, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4554: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4559); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4591); + if (lookahead == '-') ADVANCE(4593); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == '_') ADVANCE(4593); + if (lookahead == 'r') ADVANCE(4614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4555: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4558); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4611); + if (lookahead == '>') ADVANCE(3700); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4556: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4565); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4604); + if (lookahead == '>') ADVANCE(3705); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4557: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4566); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '-') ADVANCE(4646); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4558: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4564); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4559: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4563); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4590); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4560: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4572); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3377); + if (lookahead == '_') ADVANCE(4590); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4561: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4554); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3377); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4562: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4555); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4564); + if (lookahead == '_') ADVANCE(4585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4563: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4556); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4564); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4564: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4557); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3021); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4565: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4568); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4584); + if (lookahead == '_') ADVANCE(4566); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4635); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4566: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4567); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4584); + if (lookahead == '_') ADVANCE(4566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4567: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4573); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3376); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4568: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4572); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4589); + if (lookahead == '_') ADVANCE(4569); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4635); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4569: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4569); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4589); + if (lookahead == '_') ADVANCE(4569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4570: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4570); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '2') ADVANCE(4641); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4651); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4571: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4571); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == ':') ADVANCE(4648); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4572: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token4_character_set_1, 11, lookahead))) ADVANCE(4572); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == ':') ADVANCE(4654); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4573: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token7); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3735); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4574: - ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(4594); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(4575); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3730); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4575: - ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(4575); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3720); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4576: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(4592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4577); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3725); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4577: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4577); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4627); + if (lookahead == '_') ADVANCE(4593); + if (lookahead == 'i') ADVANCE(4627); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4593); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4578: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(4591); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != ':' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4579); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4627); + if (lookahead == '_') ADVANCE(4593); + if (lookahead == 'i') ADVANCE(4598); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4593); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4579: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != ':' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4579); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4627); + if (lookahead == 'i') ADVANCE(4627); + if (lookahead == 'r') ADVANCE(4623); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4580: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4627); + if (lookahead == 'i') ADVANCE(4627); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4581: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(971); - if (lookahead == '\r') ADVANCE(973); - if (lookahead != 0) ADVANCE(973); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4627); + if (lookahead == 'i') ADVANCE(4598); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4582: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(970); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4627); + if (lookahead == 'i') ADVANCE(4609); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4583: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1472); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4583); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4584: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4573); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4584); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4585: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4309); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4586: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2455); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4587); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4587: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4048); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4588: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(3895); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4588); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4589: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3709); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4589); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4590: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3154); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4590); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4591: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != ':' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4579); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4593); + if (lookahead == 'o') ADVANCE(4573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4592: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4577); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4593); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4593: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2639); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4594: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(4575); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4595); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4595: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4596: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(4595); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4596); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'a') ADVANCE(4607); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); case 4597: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(4597); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'a') ADVANCE(4625); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - ADVANCE_MAP( - 'a', 1, - 'b', 2, - 'c', 3, - 'd', 4, - 'e', 5, - 'f', 6, - 'g', 7, - 'i', 8, - 'k', 9, - 'm', 10, - 'n', 11, - 'o', 12, - 'p', 13, - 'r', 14, - 's', 15, - 't', 16, - 'v', 17, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(0); + case 4598: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 1: - if (lookahead == 'n') ADVANCE(18); + case 4599: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'c') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 2: - if (lookahead == 'i') ADVANCE(19); - if (lookahead == 'l') ADVANCE(20); - if (lookahead == 'o') ADVANCE(21); + case 4600: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'e') ADVANCE(2218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 3: - if (lookahead == 'l') ADVANCE(22); - if (lookahead == 'o') ADVANCE(23); + case 4601: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'e') ADVANCE(2263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 4: - if (lookahead == 'a') ADVANCE(24); - if (lookahead == 'e') ADVANCE(25); - if (lookahead == 'i') ADVANCE(26); - if (lookahead == 'u') ADVANCE(27); + case 4602: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'e') ADVANCE(4599); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 5: - if (lookahead == 'n') ADVANCE(28); - if (lookahead == 'x') ADVANCE(29); + case 4603: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'e') ADVANCE(4574); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 6: - if (lookahead == 'i') ADVANCE(30); - if (lookahead == 'l') ADVANCE(31); + case 4604: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'e') ADVANCE(4615); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 7: - if (lookahead == 'l') ADVANCE(32); + case 4605: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'k') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 8: - if (lookahead == 'n') ADVANCE(33); + case 4606: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'l') ADVANCE(2271); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 9: - if (lookahead == 'e') ADVANCE(34); + case 4607: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'l') ADVANCE(4619); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 10: - if (lookahead == 'a') ADVANCE(35); + case 4608: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'l') ADVANCE(4606); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 11: - if (lookahead == 'o') ADVANCE(36); - if (lookahead == 'u') ADVANCE(37); + case 4609: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'n') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 12: - if (lookahead == 'p') ADVANCE(38); + case 4610: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'o') ADVANCE(4573); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 13: - if (lookahead == 'a') ADVANCE(39); + case 4611: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'o') ADVANCE(4624); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 14: - if (lookahead == 'a') ADVANCE(40); - if (lookahead == 'e') ADVANCE(41); + case 4612: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 15: - if (lookahead == 'i') ADVANCE(42); - if (lookahead == 't') ADVANCE(43); + case 4613: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(4623); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 16: - if (lookahead == 'a') ADVANCE(44); + case 4614: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(4555); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 17: - if (lookahead == 'a') ADVANCE(45); + case 4615: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(4616); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 18: - if (lookahead == 'y') ADVANCE(46); + case 4616: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(4576); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 19: - if (lookahead == 'n') ADVANCE(47); + case 4617: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'u') ADVANCE(4608); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4632); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 20: - if (lookahead == 'o') ADVANCE(48); + case 4618: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 's') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 21: - if (lookahead == 'o') ADVANCE(49); + case 4619: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 's') ADVANCE(4601); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 22: - if (lookahead == 'o') ADVANCE(50); + case 4620: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 't') ADVANCE(4556); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 23: - if (lookahead == 'n') ADVANCE(51); + case 4621: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 't') ADVANCE(4575); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 24: - if (lookahead == 't') ADVANCE(52); + case 4622: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'u') ADVANCE(4608); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4632); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 25: - if (lookahead == 'c') ADVANCE(53); + case 4623: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'u') ADVANCE(4600); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 26: - if (lookahead == 'r') ADVANCE(54); + case 4624: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'u') ADVANCE(4621); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 27: - if (lookahead == 'r') ADVANCE(55); + case 4625: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'y') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 28: - if (lookahead == 'v') ADVANCE(56); + case 4626: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4632); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 29: - if (lookahead == 'p') ADVANCE(57); + case 4627: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 30: - if (lookahead == 'l') ADVANCE(58); + case 4628: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2299); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 31: - if (lookahead == 'o') ADVANCE(59); + case 4629: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2288); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 32: - if (lookahead == 'o') ADVANCE(60); + case 4630: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4637); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 33: - if (lookahead == 't') ADVANCE(61); + case 4631: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 34: - if (lookahead == 'y') ADVANCE(62); + case 4632: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2300); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 35: - if (lookahead == 't') ADVANCE(63); + case 4633: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4629); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 36: - if (lookahead == 't') ADVANCE(64); + case 4634: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4630); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 37: - ACCEPT_TOKEN(anon_sym_nu); - if (lookahead == 'm') ADVANCE(65); + case 4635: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4628); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 38: - if (lookahead == 'e') ADVANCE(66); + case 4636: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4631); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 39: - if (lookahead == 't') ADVANCE(67); + case 4637: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4640); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 40: - if (lookahead == 'n') ADVANCE(68); + case 4638: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4639); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 41: - if (lookahead == 'c') ADVANCE(69); + case 4639: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2291); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 42: - if (lookahead == 'g') ADVANCE(70); + case 4640: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2279); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 43: - if (lookahead == 'r') ADVANCE(71); + case 4641: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3562); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 44: - if (lookahead == 'b') ADVANCE(72); + case 4642: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 45: - if (lookahead == 'r') ADVANCE(73); + case 4643: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4557); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 46: - ACCEPT_TOKEN(anon_sym_any); + case 4644: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4572); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 47: - if (lookahead == 'a') ADVANCE(74); + case 4645: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4643); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 48: - if (lookahead == 'c') ADVANCE(75); + case 4646: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4652); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 49: - if (lookahead == 'l') ADVANCE(76); + case 4647: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4644); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 50: - if (lookahead == 's') ADVANCE(77); + case 4648: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 51: - if (lookahead == 'd') ADVANCE(78); + case 4649: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3555); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 52: - if (lookahead == 'e') ADVANCE(79); + case 4650: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3578); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 53: - if (lookahead == 'i') ADVANCE(80); + case 4651: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3562); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 54: - if (lookahead == 'e') ADVANCE(81); + case 4652: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3570); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 55: - if (lookahead == 'a') ADVANCE(82); + case 4653: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4571); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 56: - ACCEPT_TOKEN(anon_sym_env); + case 4654: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4653); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 57: - if (lookahead == 'r') ADVANCE(83); + case 4655: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); END_STATE(); - case 58: - if (lookahead == 'e') ADVANCE(84); + case 4656: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4659); + if (lookahead == '_') ADVANCE(4660); + if (lookahead == '\t' || + lookahead == ' ') SKIP(468); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4658); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); END_STATE(); - case 59: - if (lookahead == 'a') ADVANCE(85); + case 4657: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(3187); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4659); + if (lookahead == ']') ADVANCE(2984); + if (lookahead == '_') ADVANCE(4660); + if (lookahead == '\t' || + lookahead == ' ') SKIP(466); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4658); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); END_STATE(); - case 60: - if (lookahead == 'b') ADVANCE(86); + case 4658: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '.') ADVANCE(4661); + if (lookahead == '_') ADVANCE(4658); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_int); + case 4659: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4659); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3458); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); END_STATE(); - case 62: - if (lookahead == 'w') ADVANCE(87); + case 4660: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); END_STATE(); - case 63: - if (lookahead == 'h') ADVANCE(88); + case 4661: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); END_STATE(); - case 64: - if (lookahead == 'h') ADVANCE(89); + case 4662: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4663); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); END_STATE(); - case 65: - if (lookahead == 'b') ADVANCE(90); + case 4663: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); END_STATE(); - case 66: - if (lookahead == 'r') ADVANCE(91); + case 4664: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); END_STATE(); - case 67: - if (lookahead == 'h') ADVANCE(92); + case 4665: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4702); + if (lookahead == '>') ADVANCE(3714); + if (lookahead == 'r') ADVANCE(4705); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 68: - if (lookahead == 'g') ADVANCE(93); + case 4666: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4697); + if (lookahead == '>') ADVANCE(3719); + if (lookahead == 'u') ADVANCE(4709); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 69: - if (lookahead == 'o') ADVANCE(94); + case 4667: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4703); + if (lookahead == '>') ADVANCE(3704); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 70: - if (lookahead == 'n') ADVANCE(95); + case 4668: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4698); + if (lookahead == '>') ADVANCE(3709); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 71: - if (lookahead == 'i') ADVANCE(96); + case 4669: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '-') ADVANCE(4736); + if (lookahead == '_') ADVANCE(4688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 72: - if (lookahead == 'l') ADVANCE(97); + case 4670: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '-') ADVANCE(4737); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 73: - if (lookahead == 'i') ADVANCE(98); + case 4671: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4688); + if (lookahead == '_') ADVANCE(4672); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 74: - if (lookahead == 'r') ADVANCE(99); + case 4672: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4688); + if (lookahead == '_') ADVANCE(4672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 75: - if (lookahead == 'k') ADVANCE(100); + case 4673: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(3186); + if (lookahead == '_') ADVANCE(4693); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4692); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_bool); + case 4674: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(3023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 77: - if (lookahead == 'u') ADVANCE(101); + case 4675: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4674); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_cond); + case 4676: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4734); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4677); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 79: - if (lookahead == 't') ADVANCE(102); + case 4677: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '2') ADVANCE(4725); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4735); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 80: - if (lookahead == 'm') ADVANCE(103); + case 4678: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == ':') ADVANCE(4726); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4729); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 81: - if (lookahead == 'c') ADVANCE(104); + case 4679: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == ':') ADVANCE(4739); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 82: - if (lookahead == 't') ADVANCE(105); + case 4680: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == ':') ADVANCE(4741); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 83: - ACCEPT_TOKEN(anon_sym_expr); + case 4681: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3739); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 84: - if (lookahead == 's') ADVANCE(106); + case 4682: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3734); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 85: - if (lookahead == 't') ADVANCE(107); + case 4683: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3724); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 86: - ACCEPT_TOKEN(anon_sym_glob); + case 4684: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3729); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 87: - if (lookahead == 'o') ADVANCE(108); + case 4685: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'T') ADVANCE(4738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 88: - ACCEPT_TOKEN(anon_sym_math); + case 4686: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4688); + if (lookahead == 'b') ADVANCE(3523); + if (lookahead == 'o') ADVANCE(3539); + if (lookahead == 'x') ADVANCE(3545); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4690); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + END_STATE(); + case 4687: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4688); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 89: - if (lookahead == 'i') ADVANCE(109); + case 4688: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 90: - if (lookahead == 'e') ADVANCE(110); + case 4689: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4669); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 91: - if (lookahead == 'a') ADVANCE(111); + case 4690: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4689); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_path); + case 4691: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4690); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 93: - if (lookahead == 'e') ADVANCE(112); + case 4692: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4692); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4692); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 94: - if (lookahead == 'r') ADVANCE(113); + case 4693: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4693); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4692); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 95: - if (lookahead == 'a') ADVANCE(114); + case 4694: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'a') ADVANCE(4699); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 96: - if (lookahead == 'n') ADVANCE(115); + case 4695: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(2224); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 97: - if (lookahead == 'e') ADVANCE(116); + case 4696: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(2269); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 98: - if (lookahead == 'a') ADVANCE(117); + case 4697: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(4682); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 99: - if (lookahead == 'y') ADVANCE(118); + case 4698: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(4706); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_block); + case 4699: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'l') ADVANCE(4708); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 101: - if (lookahead == 'r') ADVANCE(119); + case 4700: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'l') ADVANCE(2277); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 102: - if (lookahead == 'i') ADVANCE(120); + case 4701: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'l') ADVANCE(4700); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 103: - if (lookahead == 'a') ADVANCE(121); + case 4702: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'o') ADVANCE(4681); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 104: - if (lookahead == 't') ADVANCE(122); + case 4703: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'o') ADVANCE(4713); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 105: - if (lookahead == 'i') ADVANCE(123); + case 4704: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'r') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 106: - if (lookahead == 'i') ADVANCE(124); + case 4705: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'r') ADVANCE(4667); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 107: - ACCEPT_TOKEN(anon_sym_float); + case 4706: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'r') ADVANCE(4707); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 108: - if (lookahead == 'r') ADVANCE(125); + case 4707: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'r') ADVANCE(4684); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 109: - if (lookahead == 'n') ADVANCE(126); + case 4708: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 's') ADVANCE(4696); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 110: - if (lookahead == 'r') ADVANCE(127); + case 4709: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 't') ADVANCE(4668); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 111: - if (lookahead == 't') ADVANCE(128); + case 4710: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 't') ADVANCE(4683); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_range); + case 4711: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'u') ADVANCE(4701); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4719); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 113: - if (lookahead == 'd') ADVANCE(129); + case 4712: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'u') ADVANCE(4695); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 114: - if (lookahead == 't') ADVANCE(130); + case 4713: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'u') ADVANCE(4710); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 115: - if (lookahead == 'g') ADVANCE(131); + case 4714: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4677); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4714); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 116: - ACCEPT_TOKEN(anon_sym_table); + case 4715: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4719); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 117: - if (lookahead == 'b') ADVANCE(132); + case 4716: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4718); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_binary); + case 4717: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 119: - if (lookahead == 'e') ADVANCE(133); + case 4718: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4721); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 120: - if (lookahead == 'm') ADVANCE(134); + case 4719: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 121: - if (lookahead == 'l') ADVANCE(135); + case 4720: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4716); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 122: - if (lookahead == 'o') ADVANCE(136); + case 4721: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4717); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 123: - if (lookahead == 'o') ADVANCE(137); + case 4722: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4723); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 124: - if (lookahead == 'z') ADVANCE(138); + case 4723: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 125: - if (lookahead == 'd') ADVANCE(139); + case 4724: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4724); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 126: - if (lookahead == 'g') ADVANCE(140); + case 4725: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4678); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 127: - ACCEPT_TOKEN(anon_sym_number); + case 4726: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4729); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 128: - if (lookahead == 'o') ADVANCE(141); + case 4727: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '-' || + lookahead == '.' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4727); END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_record); + case 4728: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4728); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 130: - if (lookahead == 'u') ADVANCE(142); + case 4729: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_string); + case 4730: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4670); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 132: - if (lookahead == 'l') ADVANCE(143); + case 4731: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4685); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_closure); + case 4732: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4680); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 134: - if (lookahead == 'e') ADVANCE(144); + case 4733: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4676); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_decimal); + case 4734: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4714); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 136: - if (lookahead == 'r') ADVANCE(145); + case 4735: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4678); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 137: - if (lookahead == 'n') ADVANCE(146); + case 4736: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4730); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 138: - if (lookahead == 'e') ADVANCE(147); + case 4737: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_keyword); + case 4738: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4732); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_nothing); + case 4739: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4733); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 141: - if (lookahead == 'r') ADVANCE(148); + case 4740: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4679); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 142: - if (lookahead == 'r') ADVANCE(149); + case 4741: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4740); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 143: - if (lookahead == 'e') ADVANCE(150); + case 4742: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4742); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 144: - ACCEPT_TOKEN(anon_sym_datetime); + case 4743: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); END_STATE(); - case 145: - if (lookahead == 'y') ADVANCE(151); + case 4744: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4770); + if (lookahead == '>') ADVANCE(3710); + if (lookahead == 'r') ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); END_STATE(); - case 146: - ACCEPT_TOKEN(anon_sym_duration); + case 4745: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4765); + if (lookahead == '>') ADVANCE(3715); + if (lookahead == 'u') ADVANCE(4777); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_filesize); + case 4746: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4771); + if (lookahead == '>') ADVANCE(3700); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); END_STATE(); - case 148: - ACCEPT_TOKEN(anon_sym_operator); + case 4747: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4766); + if (lookahead == '>') ADVANCE(3705); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); END_STATE(); - case 149: - if (lookahead == 'e') ADVANCE(152); + case 4748: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '-') ADVANCE(4799); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_variable); + case 4749: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(3184); + if (lookahead == '_') ADVANCE(4759); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_directory); + case 4750: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(4758); + if (lookahead == '_') ADVANCE(4751); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_signature); + case 4751: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(4758); + if (lookahead == '_') ADVANCE(4751); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 908}, - [2] = {.lex_state = 868}, - [3] = {.lex_state = 868}, - [4] = {.lex_state = 868}, - [5] = {.lex_state = 868}, - [6] = {.lex_state = 868}, - [7] = {.lex_state = 868}, - [8] = {.lex_state = 868}, - [9] = {.lex_state = 868}, - [10] = {.lex_state = 868}, - [11] = {.lex_state = 868}, - [12] = {.lex_state = 868}, - [13] = {.lex_state = 868}, - [14] = {.lex_state = 868}, - [15] = {.lex_state = 868}, - [16] = {.lex_state = 868}, - [17] = {.lex_state = 868}, - [18] = {.lex_state = 868}, - [19] = {.lex_state = 868}, - [20] = {.lex_state = 868}, - [21] = {.lex_state = 868}, - [22] = {.lex_state = 868}, - [23] = {.lex_state = 868}, - [24] = {.lex_state = 896}, - [25] = {.lex_state = 896}, - [26] = {.lex_state = 896}, - [27] = {.lex_state = 896}, - [28] = {.lex_state = 896}, - [29] = {.lex_state = 896}, - [30] = {.lex_state = 88}, - [31] = {.lex_state = 88}, - [32] = {.lex_state = 88}, - [33] = {.lex_state = 896}, - [34] = {.lex_state = 896}, - [35] = {.lex_state = 88}, - [36] = {.lex_state = 88}, - [37] = {.lex_state = 896}, - [38] = {.lex_state = 88}, - [39] = {.lex_state = 88}, - [40] = {.lex_state = 896}, - [41] = {.lex_state = 88}, - [42] = {.lex_state = 88}, - [43] = {.lex_state = 88}, - [44] = {.lex_state = 896}, - [45] = {.lex_state = 896}, - [46] = {.lex_state = 88}, - [47] = {.lex_state = 896}, - [48] = {.lex_state = 88}, - [49] = {.lex_state = 896}, - [50] = {.lex_state = 88}, - [51] = {.lex_state = 896}, - [52] = {.lex_state = 896}, - [53] = {.lex_state = 896}, - [54] = {.lex_state = 88}, - [55] = {.lex_state = 896}, - [56] = {.lex_state = 88}, - [57] = {.lex_state = 896}, - [58] = {.lex_state = 88}, - [59] = {.lex_state = 896}, - [60] = {.lex_state = 88}, - [61] = {.lex_state = 88}, - [62] = {.lex_state = 88}, - [63] = {.lex_state = 88}, - [64] = {.lex_state = 88}, - [65] = {.lex_state = 88}, - [66] = {.lex_state = 88}, - [67] = {.lex_state = 88}, - [68] = {.lex_state = 88}, - [69] = {.lex_state = 88}, - [70] = {.lex_state = 88}, - [71] = {.lex_state = 896}, - [72] = {.lex_state = 896}, - [73] = {.lex_state = 896}, - [74] = {.lex_state = 896}, - [75] = {.lex_state = 896}, - [76] = {.lex_state = 896}, - [77] = {.lex_state = 896}, - [78] = {.lex_state = 896}, - [79] = {.lex_state = 88}, - [80] = {.lex_state = 896}, - [81] = {.lex_state = 896}, - [82] = {.lex_state = 896}, - [83] = {.lex_state = 896}, - [84] = {.lex_state = 896}, - [85] = {.lex_state = 88}, - [86] = {.lex_state = 896}, - [87] = {.lex_state = 896}, - [88] = {.lex_state = 896}, - [89] = {.lex_state = 896}, - [90] = {.lex_state = 896}, - [91] = {.lex_state = 896}, - [92] = {.lex_state = 896}, - [93] = {.lex_state = 896}, - [94] = {.lex_state = 896}, - [95] = {.lex_state = 896}, - [96] = {.lex_state = 896}, - [97] = {.lex_state = 896}, - [98] = {.lex_state = 896}, - [99] = {.lex_state = 896}, - [100] = {.lex_state = 896}, - [101] = {.lex_state = 896}, - [102] = {.lex_state = 896}, - [103] = {.lex_state = 896}, - [104] = {.lex_state = 896}, - [105] = {.lex_state = 896}, - [106] = {.lex_state = 896}, - [107] = {.lex_state = 896}, - [108] = {.lex_state = 896}, - [109] = {.lex_state = 896}, - [110] = {.lex_state = 896}, - [111] = {.lex_state = 896}, - [112] = {.lex_state = 896}, - [113] = {.lex_state = 896}, - [114] = {.lex_state = 896}, - [115] = {.lex_state = 896}, - [116] = {.lex_state = 896}, - [117] = {.lex_state = 896}, - [118] = {.lex_state = 896}, - [119] = {.lex_state = 896}, - [120] = {.lex_state = 896}, - [121] = {.lex_state = 896}, - [122] = {.lex_state = 896}, - [123] = {.lex_state = 896}, - [124] = {.lex_state = 896}, - [125] = {.lex_state = 896}, - [126] = {.lex_state = 896}, - [127] = {.lex_state = 896}, - [128] = {.lex_state = 2}, - [129] = {.lex_state = 2}, - [130] = {.lex_state = 2}, - [131] = {.lex_state = 1}, - [132] = {.lex_state = 1}, - [133] = {.lex_state = 1}, - [134] = {.lex_state = 1}, - [135] = {.lex_state = 1}, - [136] = {.lex_state = 2}, - [137] = {.lex_state = 2}, - [138] = {.lex_state = 2}, - [139] = {.lex_state = 6}, - [140] = {.lex_state = 6}, - [141] = {.lex_state = 322}, - [142] = {.lex_state = 322}, - [143] = {.lex_state = 322}, - [144] = {.lex_state = 322}, - [145] = {.lex_state = 322}, - [146] = {.lex_state = 322}, - [147] = {.lex_state = 322}, - [148] = {.lex_state = 322}, - [149] = {.lex_state = 322}, - [150] = {.lex_state = 322}, - [151] = {.lex_state = 322}, - [152] = {.lex_state = 322}, - [153] = {.lex_state = 322}, - [154] = {.lex_state = 322}, - [155] = {.lex_state = 322}, - [156] = {.lex_state = 322}, - [157] = {.lex_state = 322}, - [158] = {.lex_state = 322}, - [159] = {.lex_state = 322}, - [160] = {.lex_state = 322}, - [161] = {.lex_state = 70}, - [162] = {.lex_state = 70}, - [163] = {.lex_state = 70}, - [164] = {.lex_state = 70}, - [165] = {.lex_state = 70}, - [166] = {.lex_state = 868}, - [167] = {.lex_state = 70}, - [168] = {.lex_state = 70}, - [169] = {.lex_state = 70}, - [170] = {.lex_state = 70}, - [171] = {.lex_state = 70}, - [172] = {.lex_state = 70}, - [173] = {.lex_state = 70}, - [174] = {.lex_state = 70}, - [175] = {.lex_state = 70}, - [176] = {.lex_state = 224}, - [177] = {.lex_state = 198}, - [178] = {.lex_state = 200}, - [179] = {.lex_state = 220}, - [180] = {.lex_state = 200}, - [181] = {.lex_state = 225}, - [182] = {.lex_state = 200}, - [183] = {.lex_state = 200}, - [184] = {.lex_state = 225}, - [185] = {.lex_state = 226}, - [186] = {.lex_state = 201}, - [187] = {.lex_state = 225}, - [188] = {.lex_state = 187}, - [189] = {.lex_state = 223}, - [190] = {.lex_state = 189}, - [191] = {.lex_state = 223}, - [192] = {.lex_state = 199}, - [193] = {.lex_state = 223}, - [194] = {.lex_state = 223}, - [195] = {.lex_state = 223}, - [196] = {.lex_state = 222}, - [197] = {.lex_state = 201}, - [198] = {.lex_state = 221}, - [199] = {.lex_state = 221}, - [200] = {.lex_state = 221}, - [201] = {.lex_state = 201}, - [202] = {.lex_state = 189}, - [203] = {.lex_state = 190}, - [204] = {.lex_state = 201}, - [205] = {.lex_state = 189}, - [206] = {.lex_state = 189}, - [207] = {.lex_state = 202}, - [208] = {.lex_state = 227}, - [209] = {.lex_state = 227}, - [210] = {.lex_state = 202}, - [211] = {.lex_state = 190}, - [212] = {.lex_state = 202}, - [213] = {.lex_state = 188}, - [214] = {.lex_state = 227}, - [215] = {.lex_state = 245}, - [216] = {.lex_state = 245}, - [217] = {.lex_state = 190}, - [218] = {.lex_state = 227}, - [219] = {.lex_state = 227}, - [220] = {.lex_state = 190}, - [221] = {.lex_state = 202}, - [222] = {.lex_state = 88}, - [223] = {.lex_state = 191}, - [224] = {.lex_state = 203}, - [225] = {.lex_state = 191}, - [226] = {.lex_state = 191}, - [227] = {.lex_state = 191}, - [228] = {.lex_state = 245}, - [229] = {.lex_state = 245}, - [230] = {.lex_state = 203}, - [231] = {.lex_state = 259}, - [232] = {.lex_state = 88}, - [233] = {.lex_state = 88}, - [234] = {.lex_state = 259}, - [235] = {.lex_state = 203}, - [236] = {.lex_state = 203}, - [237] = {.lex_state = 203}, - [238] = {.lex_state = 88}, - [239] = {.lex_state = 254}, - [240] = {.lex_state = 896}, - [241] = {.lex_state = 243}, - [242] = {.lex_state = 243}, - [243] = {.lex_state = 93}, - [244] = {.lex_state = 192}, - [245] = {.lex_state = 93}, - [246] = {.lex_state = 93}, - [247] = {.lex_state = 93}, - [248] = {.lex_state = 93}, - [249] = {.lex_state = 259}, - [250] = {.lex_state = 192}, - [251] = {.lex_state = 93}, - [252] = {.lex_state = 93}, - [253] = {.lex_state = 93}, - [254] = {.lex_state = 93}, - [255] = {.lex_state = 93}, - [256] = {.lex_state = 93}, - [257] = {.lex_state = 93}, - [258] = {.lex_state = 243}, - [259] = {.lex_state = 896}, - [260] = {.lex_state = 93}, - [261] = {.lex_state = 93}, - [262] = {.lex_state = 93}, - [263] = {.lex_state = 93}, - [264] = {.lex_state = 93}, - [265] = {.lex_state = 93}, - [266] = {.lex_state = 93}, - [267] = {.lex_state = 93}, - [268] = {.lex_state = 93}, - [269] = {.lex_state = 93}, - [270] = {.lex_state = 93}, - [271] = {.lex_state = 88}, - [272] = {.lex_state = 908}, - [273] = {.lex_state = 896}, - [274] = {.lex_state = 192}, - [275] = {.lex_state = 243}, - [276] = {.lex_state = 244}, - [277] = {.lex_state = 192}, - [278] = {.lex_state = 192}, - [279] = {.lex_state = 259}, - [280] = {.lex_state = 243}, - [281] = {.lex_state = 896}, - [282] = {.lex_state = 239}, - [283] = {.lex_state = 896}, - [284] = {.lex_state = 204}, - [285] = {.lex_state = 896}, - [286] = {.lex_state = 93}, - [287] = {.lex_state = 248}, - [288] = {.lex_state = 248}, - [289] = {.lex_state = 896}, - [290] = {.lex_state = 257}, - [291] = {.lex_state = 257}, - [292] = {.lex_state = 248}, - [293] = {.lex_state = 245}, - [294] = {.lex_state = 245}, - [295] = {.lex_state = 245}, - [296] = {.lex_state = 257}, - [297] = {.lex_state = 257}, - [298] = {.lex_state = 257}, - [299] = {.lex_state = 248}, - [300] = {.lex_state = 205}, - [301] = {.lex_state = 193}, - [302] = {.lex_state = 268}, - [303] = {.lex_state = 248}, - [304] = {.lex_state = 206}, - [305] = {.lex_state = 206}, - [306] = {.lex_state = 206}, - [307] = {.lex_state = 255}, - [308] = {.lex_state = 255}, - [309] = {.lex_state = 248}, - [310] = {.lex_state = 255}, - [311] = {.lex_state = 248}, - [312] = {.lex_state = 248}, - [313] = {.lex_state = 206}, - [314] = {.lex_state = 248}, - [315] = {.lex_state = 248}, - [316] = {.lex_state = 896}, - [317] = {.lex_state = 896}, - [318] = {.lex_state = 248}, - [319] = {.lex_state = 248}, - [320] = {.lex_state = 248}, - [321] = {.lex_state = 248}, - [322] = {.lex_state = 248}, - [323] = {.lex_state = 248}, - [324] = {.lex_state = 248}, - [325] = {.lex_state = 248}, - [326] = {.lex_state = 248}, - [327] = {.lex_state = 248}, - [328] = {.lex_state = 248}, - [329] = {.lex_state = 248}, - [330] = {.lex_state = 248}, - [331] = {.lex_state = 248}, - [332] = {.lex_state = 248}, - [333] = {.lex_state = 248}, - [334] = {.lex_state = 248}, - [335] = {.lex_state = 248}, - [336] = {.lex_state = 896}, - [337] = {.lex_state = 239}, - [338] = {.lex_state = 239}, - [339] = {.lex_state = 88}, - [340] = {.lex_state = 258}, - [341] = {.lex_state = 262}, - [342] = {.lex_state = 896}, - [343] = {.lex_state = 207}, - [344] = {.lex_state = 248}, - [345] = {.lex_state = 248}, - [346] = {.lex_state = 262}, - [347] = {.lex_state = 256}, - [348] = {.lex_state = 256}, - [349] = {.lex_state = 259}, - [350] = {.lex_state = 256}, - [351] = {.lex_state = 262}, - [352] = {.lex_state = 195}, - [353] = {.lex_state = 896}, - [354] = {.lex_state = 238}, - [355] = {.lex_state = 207}, - [356] = {.lex_state = 256}, - [357] = {.lex_state = 256}, - [358] = {.lex_state = 256}, - [359] = {.lex_state = 262}, - [360] = {.lex_state = 262}, - [361] = {.lex_state = 262}, - [362] = {.lex_state = 262}, - [363] = {.lex_state = 262}, - [364] = {.lex_state = 262}, - [365] = {.lex_state = 262}, - [366] = {.lex_state = 896}, - [367] = {.lex_state = 896}, - [368] = {.lex_state = 262}, - [369] = {.lex_state = 262}, - [370] = {.lex_state = 262}, - [371] = {.lex_state = 93}, - [372] = {.lex_state = 262}, - [373] = {.lex_state = 896}, - [374] = {.lex_state = 262}, - [375] = {.lex_state = 238}, - [376] = {.lex_state = 262}, - [377] = {.lex_state = 262}, - [378] = {.lex_state = 262}, - [379] = {.lex_state = 262}, - [380] = {.lex_state = 896}, - [381] = {.lex_state = 207}, - [382] = {.lex_state = 262}, - [383] = {.lex_state = 195}, - [384] = {.lex_state = 256}, - [385] = {.lex_state = 195}, - [386] = {.lex_state = 259}, - [387] = {.lex_state = 195}, - [388] = {.lex_state = 269}, - [389] = {.lex_state = 207}, - [390] = {.lex_state = 269}, - [391] = {.lex_state = 259}, - [392] = {.lex_state = 208}, - [393] = {.lex_state = 207}, - [394] = {.lex_state = 269}, - [395] = {.lex_state = 256}, - [396] = {.lex_state = 207}, - [397] = {.lex_state = 262}, - [398] = {.lex_state = 256}, - [399] = {.lex_state = 238}, - [400] = {.lex_state = 256}, - [401] = {.lex_state = 262}, - [402] = {.lex_state = 262}, - [403] = {.lex_state = 262}, - [404] = {.lex_state = 262}, - [405] = {.lex_state = 896}, - [406] = {.lex_state = 256}, - [407] = {.lex_state = 256}, - [408] = {.lex_state = 256}, - [409] = {.lex_state = 883}, - [410] = {.lex_state = 194}, - [411] = {.lex_state = 238}, - [412] = {.lex_state = 238}, - [413] = {.lex_state = 262}, - [414] = {.lex_state = 262}, - [415] = {.lex_state = 93}, - [416] = {.lex_state = 256}, - [417] = {.lex_state = 207}, - [418] = {.lex_state = 262}, - [419] = {.lex_state = 239}, - [420] = {.lex_state = 246}, - [421] = {.lex_state = 209}, - [422] = {.lex_state = 209}, - [423] = {.lex_state = 196}, - [424] = {.lex_state = 364}, - [425] = {.lex_state = 270}, - [426] = {.lex_state = 270}, - [427] = {.lex_state = 270}, - [428] = {.lex_state = 4134}, - [429] = {.lex_state = 246}, - [430] = {.lex_state = 246}, - [431] = {.lex_state = 209}, - [432] = {.lex_state = 209}, - [433] = {.lex_state = 270}, - [434] = {.lex_state = 196}, - [435] = {.lex_state = 196}, - [436] = {.lex_state = 364}, - [437] = {.lex_state = 196}, - [438] = {.lex_state = 364}, - [439] = {.lex_state = 270}, - [440] = {.lex_state = 270}, - [441] = {.lex_state = 270}, - [442] = {.lex_state = 196}, - [443] = {.lex_state = 883}, - [444] = {.lex_state = 196}, - [445] = {.lex_state = 209}, - [446] = {.lex_state = 270}, - [447] = {.lex_state = 196}, - [448] = {.lex_state = 270}, - [449] = {.lex_state = 896}, - [450] = {.lex_state = 270}, - [451] = {.lex_state = 249}, - [452] = {.lex_state = 883}, - [453] = {.lex_state = 364}, - [454] = {.lex_state = 364}, - [455] = {.lex_state = 239}, - [456] = {.lex_state = 239}, - [457] = {.lex_state = 270}, - [458] = {.lex_state = 262}, - [459] = {.lex_state = 246}, - [460] = {.lex_state = 262}, - [461] = {.lex_state = 246}, - [462] = {.lex_state = 197}, - [463] = {.lex_state = 270}, - [464] = {.lex_state = 270}, - [465] = {.lex_state = 247}, - [466] = {.lex_state = 270}, - [467] = {.lex_state = 209}, - [468] = {.lex_state = 241}, - [469] = {.lex_state = 253}, - [470] = {.lex_state = 251}, - [471] = {.lex_state = 253}, - [472] = {.lex_state = 253}, - [473] = {.lex_state = 253}, - [474] = {.lex_state = 260}, - [475] = {.lex_state = 253}, - [476] = {.lex_state = 253}, - [477] = {.lex_state = 4135}, - [478] = {.lex_state = 210}, - [479] = {.lex_state = 260}, - [480] = {.lex_state = 253}, - [481] = {.lex_state = 253}, - [482] = {.lex_state = 248}, - [483] = {.lex_state = 260}, - [484] = {.lex_state = 253}, - [485] = {.lex_state = 253}, - [486] = {.lex_state = 209}, - [487] = {.lex_state = 210}, - [488] = {.lex_state = 253}, - [489] = {.lex_state = 253}, - [490] = {.lex_state = 253}, - [491] = {.lex_state = 253}, - [492] = {.lex_state = 210}, - [493] = {.lex_state = 253}, - [494] = {.lex_state = 252}, - [495] = {.lex_state = 253}, - [496] = {.lex_state = 253}, - [497] = {.lex_state = 363}, - [498] = {.lex_state = 252}, - [499] = {.lex_state = 263}, - [500] = {.lex_state = 363}, - [501] = {.lex_state = 241}, - [502] = {.lex_state = 363}, - [503] = {.lex_state = 209}, - [504] = {.lex_state = 261}, - [505] = {.lex_state = 253}, - [506] = {.lex_state = 253}, - [507] = {.lex_state = 253}, - [508] = {.lex_state = 210}, - [509] = {.lex_state = 260}, - [510] = {.lex_state = 260}, - [511] = {.lex_state = 253}, - [512] = {.lex_state = 248}, - [513] = {.lex_state = 210}, - [514] = {.lex_state = 248}, - [515] = {.lex_state = 253}, - [516] = {.lex_state = 250}, - [517] = {.lex_state = 209}, - [518] = {.lex_state = 210}, - [519] = {.lex_state = 363}, - [520] = {.lex_state = 253}, - [521] = {.lex_state = 363}, - [522] = {.lex_state = 252}, - [523] = {.lex_state = 253}, - [524] = {.lex_state = 210}, - [525] = {.lex_state = 253}, - [526] = {.lex_state = 253}, - [527] = {.lex_state = 253}, - [528] = {.lex_state = 253}, - [529] = {.lex_state = 253}, - [530] = {.lex_state = 253}, - [531] = {.lex_state = 253}, - [532] = {.lex_state = 253}, - [533] = {.lex_state = 253}, - [534] = {.lex_state = 253}, - [535] = {.lex_state = 253}, - [536] = {.lex_state = 253}, - [537] = {.lex_state = 253}, - [538] = {.lex_state = 253}, - [539] = {.lex_state = 253}, - [540] = {.lex_state = 253}, - [541] = {.lex_state = 253}, - [542] = {.lex_state = 264}, - [543] = {.lex_state = 70}, - [544] = {.lex_state = 253}, - [545] = {.lex_state = 253}, - [546] = {.lex_state = 253}, - [547] = {.lex_state = 253}, - [548] = {.lex_state = 253}, - [549] = {.lex_state = 253}, - [550] = {.lex_state = 253}, - [551] = {.lex_state = 253}, - [552] = {.lex_state = 253}, - [553] = {.lex_state = 253}, - [554] = {.lex_state = 253}, - [555] = {.lex_state = 253}, - [556] = {.lex_state = 253}, - [557] = {.lex_state = 253}, - [558] = {.lex_state = 253}, - [559] = {.lex_state = 253}, - [560] = {.lex_state = 253}, - [561] = {.lex_state = 253}, - [562] = {.lex_state = 253}, - [563] = {.lex_state = 253}, - [564] = {.lex_state = 253}, - [565] = {.lex_state = 253}, - [566] = {.lex_state = 253}, - [567] = {.lex_state = 70}, - [568] = {.lex_state = 253}, - [569] = {.lex_state = 253}, - [570] = {.lex_state = 253}, - [571] = {.lex_state = 253}, - [572] = {.lex_state = 262}, - [573] = {.lex_state = 262}, - [574] = {.lex_state = 262}, - [575] = {.lex_state = 253}, - [576] = {.lex_state = 253}, - [577] = {.lex_state = 253}, - [578] = {.lex_state = 253}, - [579] = {.lex_state = 253}, - [580] = {.lex_state = 266}, - [581] = {.lex_state = 266}, - [582] = {.lex_state = 266}, - [583] = {.lex_state = 242}, - [584] = {.lex_state = 210}, - [585] = {.lex_state = 253}, - [586] = {.lex_state = 253}, - [587] = {.lex_state = 253}, - [588] = {.lex_state = 210}, - [589] = {.lex_state = 253}, - [590] = {.lex_state = 70}, - [591] = {.lex_state = 70}, - [592] = {.lex_state = 70}, - [593] = {.lex_state = 70}, - [594] = {.lex_state = 70}, - [595] = {.lex_state = 70}, - [596] = {.lex_state = 70}, - [597] = {.lex_state = 70}, - [598] = {.lex_state = 70}, - [599] = {.lex_state = 70}, - [600] = {.lex_state = 70}, - [601] = {.lex_state = 70}, - [602] = {.lex_state = 70}, - [603] = {.lex_state = 70}, - [604] = {.lex_state = 70}, - [605] = {.lex_state = 70}, - [606] = {.lex_state = 70}, - [607] = {.lex_state = 70}, - [608] = {.lex_state = 70}, - [609] = {.lex_state = 70}, - [610] = {.lex_state = 70}, - [611] = {.lex_state = 70}, - [612] = {.lex_state = 70}, - [613] = {.lex_state = 70}, - [614] = {.lex_state = 70}, - [615] = {.lex_state = 70}, - [616] = {.lex_state = 70}, - [617] = {.lex_state = 70}, - [618] = {.lex_state = 70}, - [619] = {.lex_state = 70}, - [620] = {.lex_state = 70}, - [621] = {.lex_state = 70}, - [622] = {.lex_state = 70}, - [623] = {.lex_state = 70}, - [624] = {.lex_state = 70}, - [625] = {.lex_state = 70}, - [626] = {.lex_state = 70}, - [627] = {.lex_state = 70}, - [628] = {.lex_state = 70}, - [629] = {.lex_state = 70}, - [630] = {.lex_state = 70}, - [631] = {.lex_state = 70}, - [632] = {.lex_state = 70}, - [633] = {.lex_state = 70}, - [634] = {.lex_state = 70}, - [635] = {.lex_state = 70}, - [636] = {.lex_state = 70}, - [637] = {.lex_state = 70}, - [638] = {.lex_state = 70}, - [639] = {.lex_state = 70}, - [640] = {.lex_state = 70}, - [641] = {.lex_state = 70}, - [642] = {.lex_state = 70}, - [643] = {.lex_state = 70}, - [644] = {.lex_state = 70}, - [645] = {.lex_state = 70}, - [646] = {.lex_state = 70}, - [647] = {.lex_state = 70}, - [648] = {.lex_state = 70}, - [649] = {.lex_state = 70}, - [650] = {.lex_state = 70}, - [651] = {.lex_state = 70}, - [652] = {.lex_state = 70}, - [653] = {.lex_state = 70}, - [654] = {.lex_state = 70}, - [655] = {.lex_state = 70}, - [656] = {.lex_state = 70}, - [657] = {.lex_state = 70}, - [658] = {.lex_state = 70}, - [659] = {.lex_state = 70}, - [660] = {.lex_state = 70}, - [661] = {.lex_state = 876}, - [662] = {.lex_state = 876}, - [663] = {.lex_state = 876}, - [664] = {.lex_state = 876}, - [665] = {.lex_state = 876}, - [666] = {.lex_state = 876}, - [667] = {.lex_state = 876}, - [668] = {.lex_state = 876}, - [669] = {.lex_state = 876}, - [670] = {.lex_state = 876}, - [671] = {.lex_state = 876}, - [672] = {.lex_state = 876}, - [673] = {.lex_state = 99}, - [674] = {.lex_state = 876}, - [675] = {.lex_state = 876}, - [676] = {.lex_state = 876}, - [677] = {.lex_state = 99}, - [678] = {.lex_state = 92}, - [679] = {.lex_state = 92}, - [680] = {.lex_state = 92}, - [681] = {.lex_state = 92}, - [682] = {.lex_state = 92}, - [683] = {.lex_state = 92}, - [684] = {.lex_state = 92}, - [685] = {.lex_state = 25}, - [686] = {.lex_state = 92}, - [687] = {.lex_state = 92}, - [688] = {.lex_state = 23}, - [689] = {.lex_state = 24}, - [690] = {.lex_state = 23}, - [691] = {.lex_state = 23}, - [692] = {.lex_state = 23}, - [693] = {.lex_state = 99}, - [694] = {.lex_state = 99}, - [695] = {.lex_state = 24}, - [696] = {.lex_state = 99}, - [697] = {.lex_state = 99}, - [698] = {.lex_state = 24}, - [699] = {.lex_state = 24}, - [700] = {.lex_state = 99}, - [701] = {.lex_state = 99}, - [702] = {.lex_state = 99}, - [703] = {.lex_state = 99}, - [704] = {.lex_state = 99}, - [705] = {.lex_state = 99}, - [706] = {.lex_state = 49}, - [707] = {.lex_state = 99}, - [708] = {.lex_state = 99}, - [709] = {.lex_state = 99}, - [710] = {.lex_state = 99}, - [711] = {.lex_state = 99}, - [712] = {.lex_state = 99}, - [713] = {.lex_state = 99}, - [714] = {.lex_state = 99}, - [715] = {.lex_state = 99}, - [716] = {.lex_state = 99}, - [717] = {.lex_state = 99}, - [718] = {.lex_state = 99}, - [719] = {.lex_state = 99}, - [720] = {.lex_state = 99}, - [721] = {.lex_state = 44}, - [722] = {.lex_state = 41}, - [723] = {.lex_state = 52}, - [724] = {.lex_state = 40}, - [725] = {.lex_state = 90}, - [726] = {.lex_state = 41}, - [727] = {.lex_state = 99}, - [728] = {.lex_state = 99}, - [729] = {.lex_state = 99}, - [730] = {.lex_state = 90}, - [731] = {.lex_state = 41}, - [732] = {.lex_state = 41}, - [733] = {.lex_state = 45}, - [734] = {.lex_state = 45}, - [735] = {.lex_state = 45}, - [736] = {.lex_state = 99}, - [737] = {.lex_state = 99}, - [738] = {.lex_state = 99}, - [739] = {.lex_state = 99}, - [740] = {.lex_state = 99}, - [741] = {.lex_state = 99}, - [742] = {.lex_state = 99}, - [743] = {.lex_state = 99}, - [744] = {.lex_state = 99}, - [745] = {.lex_state = 99}, - [746] = {.lex_state = 99}, - [747] = {.lex_state = 99}, - [748] = {.lex_state = 99}, - [749] = {.lex_state = 99}, - [750] = {.lex_state = 99}, - [751] = {.lex_state = 99}, - [752] = {.lex_state = 99}, - [753] = {.lex_state = 99}, - [754] = {.lex_state = 39}, - [755] = {.lex_state = 39}, - [756] = {.lex_state = 39}, - [757] = {.lex_state = 46}, - [758] = {.lex_state = 46}, - [759] = {.lex_state = 39}, - [760] = {.lex_state = 46}, - [761] = {.lex_state = 39}, - [762] = {.lex_state = 46}, - [763] = {.lex_state = 43}, - [764] = {.lex_state = 43}, - [765] = {.lex_state = 43}, - [766] = {.lex_state = 43}, - [767] = {.lex_state = 43}, - [768] = {.lex_state = 43}, - [769] = {.lex_state = 43}, - [770] = {.lex_state = 43}, - [771] = {.lex_state = 43}, - [772] = {.lex_state = 43}, - [773] = {.lex_state = 43}, - [774] = {.lex_state = 43}, - [775] = {.lex_state = 43}, - [776] = {.lex_state = 43}, - [777] = {.lex_state = 99}, - [778] = {.lex_state = 99}, - [779] = {.lex_state = 43}, - [780] = {.lex_state = 43}, - [781] = {.lex_state = 43}, - [782] = {.lex_state = 43}, - [783] = {.lex_state = 43}, - [784] = {.lex_state = 43}, - [785] = {.lex_state = 43}, - [786] = {.lex_state = 43}, - [787] = {.lex_state = 43}, - [788] = {.lex_state = 43}, - [789] = {.lex_state = 41}, - [790] = {.lex_state = 99}, - [791] = {.lex_state = 41}, - [792] = {.lex_state = 41}, - [793] = {.lex_state = 43}, - [794] = {.lex_state = 96}, - [795] = {.lex_state = 96}, - [796] = {.lex_state = 96}, - [797] = {.lex_state = 96}, - [798] = {.lex_state = 96}, - [799] = {.lex_state = 96}, - [800] = {.lex_state = 96}, - [801] = {.lex_state = 96}, - [802] = {.lex_state = 96}, - [803] = {.lex_state = 96}, - [804] = {.lex_state = 96}, - [805] = {.lex_state = 96}, - [806] = {.lex_state = 96}, - [807] = {.lex_state = 96}, - [808] = {.lex_state = 96}, - [809] = {.lex_state = 47}, - [810] = {.lex_state = 96}, - [811] = {.lex_state = 96}, - [812] = {.lex_state = 96}, - [813] = {.lex_state = 96}, - [814] = {.lex_state = 96}, - [815] = {.lex_state = 96}, - [816] = {.lex_state = 96}, - [817] = {.lex_state = 96}, - [818] = {.lex_state = 96}, - [819] = {.lex_state = 96}, - [820] = {.lex_state = 96}, - [821] = {.lex_state = 96}, - [822] = {.lex_state = 96}, - [823] = {.lex_state = 96}, - [824] = {.lex_state = 96}, - [825] = {.lex_state = 96}, - [826] = {.lex_state = 96}, - [827] = {.lex_state = 96}, - [828] = {.lex_state = 96}, - [829] = {.lex_state = 96}, - [830] = {.lex_state = 43}, - [831] = {.lex_state = 96}, - [832] = {.lex_state = 96}, - [833] = {.lex_state = 47}, - [834] = {.lex_state = 96}, - [835] = {.lex_state = 96}, - [836] = {.lex_state = 96}, - [837] = {.lex_state = 96}, - [838] = {.lex_state = 96}, - [839] = {.lex_state = 96}, - [840] = {.lex_state = 96}, - [841] = {.lex_state = 96}, - [842] = {.lex_state = 96}, - [843] = {.lex_state = 96}, - [844] = {.lex_state = 96}, - [845] = {.lex_state = 96}, - [846] = {.lex_state = 96}, - [847] = {.lex_state = 96}, - [848] = {.lex_state = 96}, - [849] = {.lex_state = 96}, - [850] = {.lex_state = 96}, - [851] = {.lex_state = 96}, - [852] = {.lex_state = 96}, - [853] = {.lex_state = 96}, - [854] = {.lex_state = 96}, - [855] = {.lex_state = 96}, - [856] = {.lex_state = 96}, - [857] = {.lex_state = 96}, - [858] = {.lex_state = 96}, - [859] = {.lex_state = 96}, - [860] = {.lex_state = 96}, - [861] = {.lex_state = 96}, - [862] = {.lex_state = 96}, - [863] = {.lex_state = 96}, - [864] = {.lex_state = 96}, - [865] = {.lex_state = 96}, - [866] = {.lex_state = 96}, - [867] = {.lex_state = 96}, - [868] = {.lex_state = 96}, - [869] = {.lex_state = 96}, - [870] = {.lex_state = 96}, - [871] = {.lex_state = 96}, - [872] = {.lex_state = 96}, - [873] = {.lex_state = 96}, - [874] = {.lex_state = 96}, - [875] = {.lex_state = 96}, - [876] = {.lex_state = 96}, - [877] = {.lex_state = 96}, - [878] = {.lex_state = 96}, - [879] = {.lex_state = 96}, - [880] = {.lex_state = 96}, - [881] = {.lex_state = 96}, - [882] = {.lex_state = 96}, - [883] = {.lex_state = 96}, - [884] = {.lex_state = 96}, - [885] = {.lex_state = 96}, - [886] = {.lex_state = 96}, - [887] = {.lex_state = 96}, - [888] = {.lex_state = 96}, - [889] = {.lex_state = 96}, - [890] = {.lex_state = 96}, - [891] = {.lex_state = 96}, - [892] = {.lex_state = 96}, - [893] = {.lex_state = 96}, - [894] = {.lex_state = 96}, - [895] = {.lex_state = 96}, - [896] = {.lex_state = 96}, - [897] = {.lex_state = 96}, - [898] = {.lex_state = 96}, - [899] = {.lex_state = 96}, - [900] = {.lex_state = 96}, - [901] = {.lex_state = 96}, - [902] = {.lex_state = 96}, - [903] = {.lex_state = 96}, - [904] = {.lex_state = 96}, - [905] = {.lex_state = 96}, - [906] = {.lex_state = 96}, - [907] = {.lex_state = 96}, - [908] = {.lex_state = 96}, - [909] = {.lex_state = 96}, - [910] = {.lex_state = 96}, - [911] = {.lex_state = 96}, - [912] = {.lex_state = 96}, - [913] = {.lex_state = 96}, - [914] = {.lex_state = 96}, - [915] = {.lex_state = 96}, - [916] = {.lex_state = 96}, - [917] = {.lex_state = 96}, - [918] = {.lex_state = 96}, - [919] = {.lex_state = 96}, - [920] = {.lex_state = 96}, - [921] = {.lex_state = 96}, - [922] = {.lex_state = 96}, - [923] = {.lex_state = 96}, - [924] = {.lex_state = 96}, - [925] = {.lex_state = 96}, - [926] = {.lex_state = 96}, - [927] = {.lex_state = 47}, - [928] = {.lex_state = 96}, - [929] = {.lex_state = 96}, - [930] = {.lex_state = 96}, - [931] = {.lex_state = 96}, - [932] = {.lex_state = 96}, - [933] = {.lex_state = 96}, - [934] = {.lex_state = 96}, - [935] = {.lex_state = 96}, - [936] = {.lex_state = 96}, - [937] = {.lex_state = 96}, - [938] = {.lex_state = 96}, - [939] = {.lex_state = 96}, - [940] = {.lex_state = 96}, - [941] = {.lex_state = 96}, - [942] = {.lex_state = 96}, - [943] = {.lex_state = 96}, - [944] = {.lex_state = 96}, - [945] = {.lex_state = 96}, - [946] = {.lex_state = 47}, - [947] = {.lex_state = 43}, - [948] = {.lex_state = 96}, - [949] = {.lex_state = 96}, - [950] = {.lex_state = 96}, - [951] = {.lex_state = 96}, - [952] = {.lex_state = 97}, - [953] = {.lex_state = 96}, - [954] = {.lex_state = 55}, - [955] = {.lex_state = 96}, - [956] = {.lex_state = 96}, - [957] = {.lex_state = 96}, - [958] = {.lex_state = 42}, - [959] = {.lex_state = 18}, - [960] = {.lex_state = 329}, - [961] = {.lex_state = 18}, - [962] = {.lex_state = 35}, - [963] = {.lex_state = 35}, - [964] = {.lex_state = 35}, - [965] = {.lex_state = 867}, - [966] = {.lex_state = 35}, - [967] = {.lex_state = 35}, - [968] = {.lex_state = 35}, - [969] = {.lex_state = 35}, - [970] = {.lex_state = 58}, - [971] = {.lex_state = 35}, - [972] = {.lex_state = 42}, - [973] = {.lex_state = 35}, - [974] = {.lex_state = 35}, - [975] = {.lex_state = 35}, - [976] = {.lex_state = 58}, - [977] = {.lex_state = 58}, - [978] = {.lex_state = 35}, - [979] = {.lex_state = 58}, - [980] = {.lex_state = 42}, - [981] = {.lex_state = 35}, - [982] = {.lex_state = 42}, - [983] = {.lex_state = 42}, - [984] = {.lex_state = 35}, - [985] = {.lex_state = 35}, - [986] = {.lex_state = 58}, - [987] = {.lex_state = 329}, - [988] = {.lex_state = 35}, - [989] = {.lex_state = 2872}, - [990] = {.lex_state = 35}, - [991] = {.lex_state = 96}, - [992] = {.lex_state = 96}, - [993] = {.lex_state = 96}, - [994] = {.lex_state = 96}, - [995] = {.lex_state = 96}, - [996] = {.lex_state = 96}, - [997] = {.lex_state = 96}, - [998] = {.lex_state = 96}, - [999] = {.lex_state = 96}, - [1000] = {.lex_state = 96}, - [1001] = {.lex_state = 96}, - [1002] = {.lex_state = 96}, - [1003] = {.lex_state = 96}, - [1004] = {.lex_state = 96}, - [1005] = {.lex_state = 96}, - [1006] = {.lex_state = 96}, - [1007] = {.lex_state = 96}, - [1008] = {.lex_state = 96}, - [1009] = {.lex_state = 96}, - [1010] = {.lex_state = 96}, - [1011] = {.lex_state = 96}, - [1012] = {.lex_state = 96}, - [1013] = {.lex_state = 96}, - [1014] = {.lex_state = 96}, - [1015] = {.lex_state = 96}, - [1016] = {.lex_state = 96}, - [1017] = {.lex_state = 96}, - [1018] = {.lex_state = 26}, - [1019] = {.lex_state = 96}, - [1020] = {.lex_state = 43}, - [1021] = {.lex_state = 96}, - [1022] = {.lex_state = 96}, - [1023] = {.lex_state = 43}, - [1024] = {.lex_state = 43}, - [1025] = {.lex_state = 96}, - [1026] = {.lex_state = 96}, - [1027] = {.lex_state = 96}, - [1028] = {.lex_state = 96}, - [1029] = {.lex_state = 96}, - [1030] = {.lex_state = 96}, - [1031] = {.lex_state = 96}, - [1032] = {.lex_state = 96}, - [1033] = {.lex_state = 96}, - [1034] = {.lex_state = 96}, - [1035] = {.lex_state = 96}, - [1036] = {.lex_state = 96}, - [1037] = {.lex_state = 96}, - [1038] = {.lex_state = 96}, - [1039] = {.lex_state = 96}, - [1040] = {.lex_state = 96}, - [1041] = {.lex_state = 96}, - [1042] = {.lex_state = 96}, - [1043] = {.lex_state = 96}, - [1044] = {.lex_state = 96}, - [1045] = {.lex_state = 96}, - [1046] = {.lex_state = 96}, - [1047] = {.lex_state = 96}, - [1048] = {.lex_state = 96}, - [1049] = {.lex_state = 96}, - [1050] = {.lex_state = 96}, - [1051] = {.lex_state = 96}, - [1052] = {.lex_state = 96}, - [1053] = {.lex_state = 96}, - [1054] = {.lex_state = 96}, - [1055] = {.lex_state = 96}, - [1056] = {.lex_state = 96}, - [1057] = {.lex_state = 96}, - [1058] = {.lex_state = 96}, - [1059] = {.lex_state = 96}, - [1060] = {.lex_state = 96}, - [1061] = {.lex_state = 96}, - [1062] = {.lex_state = 96}, - [1063] = {.lex_state = 96}, - [1064] = {.lex_state = 96}, - [1065] = {.lex_state = 96}, - [1066] = {.lex_state = 96}, - [1067] = {.lex_state = 96}, - [1068] = {.lex_state = 96}, - [1069] = {.lex_state = 96}, - [1070] = {.lex_state = 96}, - [1071] = {.lex_state = 96}, - [1072] = {.lex_state = 96}, - [1073] = {.lex_state = 96}, - [1074] = {.lex_state = 96}, - [1075] = {.lex_state = 96}, - [1076] = {.lex_state = 96}, - [1077] = {.lex_state = 96}, - [1078] = {.lex_state = 96}, - [1079] = {.lex_state = 96}, - [1080] = {.lex_state = 96}, - [1081] = {.lex_state = 96}, - [1082] = {.lex_state = 96}, - [1083] = {.lex_state = 96}, - [1084] = {.lex_state = 96}, - [1085] = {.lex_state = 96}, - [1086] = {.lex_state = 96}, - [1087] = {.lex_state = 96}, - [1088] = {.lex_state = 96}, - [1089] = {.lex_state = 96}, - [1090] = {.lex_state = 96}, - [1091] = {.lex_state = 96}, - [1092] = {.lex_state = 96}, - [1093] = {.lex_state = 35}, - [1094] = {.lex_state = 96}, - [1095] = {.lex_state = 96}, - [1096] = {.lex_state = 96}, - [1097] = {.lex_state = 37}, - [1098] = {.lex_state = 35}, - [1099] = {.lex_state = 867}, - [1100] = {.lex_state = 96}, - [1101] = {.lex_state = 35}, - [1102] = {.lex_state = 96}, - [1103] = {.lex_state = 96}, - [1104] = {.lex_state = 96}, - [1105] = {.lex_state = 96}, - [1106] = {.lex_state = 96}, - [1107] = {.lex_state = 96}, - [1108] = {.lex_state = 96}, - [1109] = {.lex_state = 96}, - [1110] = {.lex_state = 96}, - [1111] = {.lex_state = 96}, - [1112] = {.lex_state = 96}, - [1113] = {.lex_state = 96}, - [1114] = {.lex_state = 96}, - [1115] = {.lex_state = 96}, - [1116] = {.lex_state = 96}, - [1117] = {.lex_state = 96}, - [1118] = {.lex_state = 96}, - [1119] = {.lex_state = 38}, - [1120] = {.lex_state = 38}, - [1121] = {.lex_state = 38}, - [1122] = {.lex_state = 38}, - [1123] = {.lex_state = 38}, - [1124] = {.lex_state = 38}, - [1125] = {.lex_state = 38}, - [1126] = {.lex_state = 38}, - [1127] = {.lex_state = 38}, - [1128] = {.lex_state = 38}, - [1129] = {.lex_state = 38}, - [1130] = {.lex_state = 38}, - [1131] = {.lex_state = 38}, - [1132] = {.lex_state = 96}, - [1133] = {.lex_state = 96}, - [1134] = {.lex_state = 96}, - [1135] = {.lex_state = 38}, - [1136] = {.lex_state = 38}, - [1137] = {.lex_state = 38}, - [1138] = {.lex_state = 38}, - [1139] = {.lex_state = 38}, - [1140] = {.lex_state = 38}, - [1141] = {.lex_state = 38}, - [1142] = {.lex_state = 38}, - [1143] = {.lex_state = 38}, - [1144] = {.lex_state = 38}, - [1145] = {.lex_state = 38}, - [1146] = {.lex_state = 38}, - [1147] = {.lex_state = 38}, - [1148] = {.lex_state = 38}, - [1149] = {.lex_state = 38}, - [1150] = {.lex_state = 38}, - [1151] = {.lex_state = 38}, - [1152] = {.lex_state = 38}, - [1153] = {.lex_state = 38}, - [1154] = {.lex_state = 38}, - [1155] = {.lex_state = 38}, - [1156] = {.lex_state = 38}, - [1157] = {.lex_state = 38}, - [1158] = {.lex_state = 38}, - [1159] = {.lex_state = 38}, - [1160] = {.lex_state = 38}, - [1161] = {.lex_state = 38}, - [1162] = {.lex_state = 38}, - [1163] = {.lex_state = 38}, - [1164] = {.lex_state = 38}, - [1165] = {.lex_state = 38}, - [1166] = {.lex_state = 38}, - [1167] = {.lex_state = 96}, - [1168] = {.lex_state = 96}, - [1169] = {.lex_state = 96}, - [1170] = {.lex_state = 38}, - [1171] = {.lex_state = 38}, - [1172] = {.lex_state = 38}, - [1173] = {.lex_state = 38}, - [1174] = {.lex_state = 38}, - [1175] = {.lex_state = 38}, - [1176] = {.lex_state = 38}, - [1177] = {.lex_state = 38}, - [1178] = {.lex_state = 38}, - [1179] = {.lex_state = 38}, - [1180] = {.lex_state = 38}, - [1181] = {.lex_state = 38}, - [1182] = {.lex_state = 38}, - [1183] = {.lex_state = 38}, - [1184] = {.lex_state = 38}, - [1185] = {.lex_state = 38}, - [1186] = {.lex_state = 38}, - [1187] = {.lex_state = 38}, - [1188] = {.lex_state = 38}, - [1189] = {.lex_state = 38}, - [1190] = {.lex_state = 38}, - [1191] = {.lex_state = 38}, - [1192] = {.lex_state = 38}, - [1193] = {.lex_state = 38}, - [1194] = {.lex_state = 38}, - [1195] = {.lex_state = 38}, - [1196] = {.lex_state = 38}, - [1197] = {.lex_state = 38}, - [1198] = {.lex_state = 38}, - [1199] = {.lex_state = 38}, - [1200] = {.lex_state = 38}, - [1201] = {.lex_state = 38}, - [1202] = {.lex_state = 98}, - [1203] = {.lex_state = 86}, - [1204] = {.lex_state = 86}, - [1205] = {.lex_state = 86}, - [1206] = {.lex_state = 98}, - [1207] = {.lex_state = 98}, - [1208] = {.lex_state = 98}, - [1209] = {.lex_state = 86}, - [1210] = {.lex_state = 98}, - [1211] = {.lex_state = 98}, - [1212] = {.lex_state = 86}, - [1213] = {.lex_state = 98}, - [1214] = {.lex_state = 98}, - [1215] = {.lex_state = 86}, - [1216] = {.lex_state = 86}, - [1217] = {.lex_state = 86}, - [1218] = {.lex_state = 86}, - [1219] = {.lex_state = 333}, - [1220] = {.lex_state = 333}, - [1221] = {.lex_state = 333}, - [1222] = {.lex_state = 333}, - [1223] = {.lex_state = 333}, - [1224] = {.lex_state = 333}, - [1225] = {.lex_state = 828}, - [1226] = {.lex_state = 86}, - [1227] = {.lex_state = 86}, - [1228] = {.lex_state = 86}, - [1229] = {.lex_state = 98}, - [1230] = {.lex_state = 93}, - [1231] = {.lex_state = 828}, - [1232] = {.lex_state = 86}, - [1233] = {.lex_state = 854}, - [1234] = {.lex_state = 86}, - [1235] = {.lex_state = 86}, - [1236] = {.lex_state = 86}, - [1237] = {.lex_state = 98}, - [1238] = {.lex_state = 855}, - [1239] = {.lex_state = 86}, - [1240] = {.lex_state = 856}, - [1241] = {.lex_state = 93}, - [1242] = {.lex_state = 856}, - [1243] = {.lex_state = 9}, - [1244] = {.lex_state = 891}, - [1245] = {.lex_state = 828}, - [1246] = {.lex_state = 828}, - [1247] = {.lex_state = 828}, - [1248] = {.lex_state = 828}, - [1249] = {.lex_state = 854}, - [1250] = {.lex_state = 853}, - [1251] = {.lex_state = 828}, - [1252] = {.lex_state = 828}, - [1253] = {.lex_state = 857}, - [1254] = {.lex_state = 86}, - [1255] = {.lex_state = 852}, - [1256] = {.lex_state = 852}, - [1257] = {.lex_state = 852}, - [1258] = {.lex_state = 852}, - [1259] = {.lex_state = 855}, - [1260] = {.lex_state = 856}, - [1261] = {.lex_state = 828}, - [1262] = {.lex_state = 9}, - [1263] = {.lex_state = 856}, - [1264] = {.lex_state = 852}, - [1265] = {.lex_state = 828}, - [1266] = {.lex_state = 852}, - [1267] = {.lex_state = 889}, - [1268] = {.lex_state = 889}, - [1269] = {.lex_state = 889}, - [1270] = {.lex_state = 828}, - [1271] = {.lex_state = 828}, - [1272] = {.lex_state = 858}, - [1273] = {.lex_state = 856}, - [1274] = {.lex_state = 858}, - [1275] = {.lex_state = 862}, - [1276] = {.lex_state = 858}, - [1277] = {.lex_state = 856}, - [1278] = {.lex_state = 853}, - [1279] = {.lex_state = 858}, - [1280] = {.lex_state = 858}, - [1281] = {.lex_state = 853}, - [1282] = {.lex_state = 853}, - [1283] = {.lex_state = 852}, - [1284] = {.lex_state = 857}, - [1285] = {.lex_state = 853}, - [1286] = {.lex_state = 852}, - [1287] = {.lex_state = 889}, - [1288] = {.lex_state = 891}, - [1289] = {.lex_state = 9}, - [1290] = {.lex_state = 97}, - [1291] = {.lex_state = 890}, - [1292] = {.lex_state = 853}, - [1293] = {.lex_state = 890}, - [1294] = {.lex_state = 890}, - [1295] = {.lex_state = 890}, - [1296] = {.lex_state = 97}, - [1297] = {.lex_state = 853}, - [1298] = {.lex_state = 97}, - [1299] = {.lex_state = 9}, - [1300] = {.lex_state = 862}, - [1301] = {.lex_state = 858}, - [1302] = {.lex_state = 858}, - [1303] = {.lex_state = 892}, - [1304] = {.lex_state = 98}, - [1305] = {.lex_state = 97}, - [1306] = {.lex_state = 97}, - [1307] = {.lex_state = 879}, - [1308] = {.lex_state = 97}, - [1309] = {.lex_state = 97}, - [1310] = {.lex_state = 97}, - [1311] = {.lex_state = 98}, - [1312] = {.lex_state = 9}, - [1313] = {.lex_state = 9}, - [1314] = {.lex_state = 9}, - [1315] = {.lex_state = 97}, - [1316] = {.lex_state = 858}, - [1317] = {.lex_state = 858}, - [1318] = {.lex_state = 858}, - [1319] = {.lex_state = 860}, - [1320] = {.lex_state = 860}, - [1321] = {.lex_state = 860}, - [1322] = {.lex_state = 97}, - [1323] = {.lex_state = 879}, - [1324] = {.lex_state = 97}, - [1325] = {.lex_state = 97}, - [1326] = {.lex_state = 97}, - [1327] = {.lex_state = 828}, - [1328] = {.lex_state = 9}, - [1329] = {.lex_state = 97}, - [1330] = {.lex_state = 97}, - [1331] = {.lex_state = 97}, - [1332] = {.lex_state = 97}, - [1333] = {.lex_state = 97}, - [1334] = {.lex_state = 97}, - [1335] = {.lex_state = 97}, - [1336] = {.lex_state = 97}, - [1337] = {.lex_state = 97}, - [1338] = {.lex_state = 97}, - [1339] = {.lex_state = 97}, - [1340] = {.lex_state = 97}, - [1341] = {.lex_state = 97}, - [1342] = {.lex_state = 97}, - [1343] = {.lex_state = 97}, - [1344] = {.lex_state = 97}, - [1345] = {.lex_state = 97}, - [1346] = {.lex_state = 97}, - [1347] = {.lex_state = 97}, - [1348] = {.lex_state = 97}, - [1349] = {.lex_state = 97}, - [1350] = {.lex_state = 97}, - [1351] = {.lex_state = 97}, - [1352] = {.lex_state = 97}, - [1353] = {.lex_state = 97}, - [1354] = {.lex_state = 97}, - [1355] = {.lex_state = 97}, - [1356] = {.lex_state = 97}, - [1357] = {.lex_state = 97}, - [1358] = {.lex_state = 97}, - [1359] = {.lex_state = 97}, - [1360] = {.lex_state = 97}, - [1361] = {.lex_state = 97}, - [1362] = {.lex_state = 97}, - [1363] = {.lex_state = 97}, - [1364] = {.lex_state = 97}, - [1365] = {.lex_state = 97}, - [1366] = {.lex_state = 97}, - [1367] = {.lex_state = 97}, - [1368] = {.lex_state = 97}, - [1369] = {.lex_state = 97}, - [1370] = {.lex_state = 860}, - [1371] = {.lex_state = 97}, - [1372] = {.lex_state = 97}, - [1373] = {.lex_state = 97}, - [1374] = {.lex_state = 889}, - [1375] = {.lex_state = 889}, - [1376] = {.lex_state = 889}, - [1377] = {.lex_state = 889}, - [1378] = {.lex_state = 853}, - [1379] = {.lex_state = 97}, - [1380] = {.lex_state = 828}, - [1381] = {.lex_state = 809}, - [1382] = {.lex_state = 98}, - [1383] = {.lex_state = 845}, - [1384] = {.lex_state = 890}, - [1385] = {.lex_state = 828}, - [1386] = {.lex_state = 9}, - [1387] = {.lex_state = 861}, - [1388] = {.lex_state = 879}, - [1389] = {.lex_state = 828}, - [1390] = {.lex_state = 893}, - [1391] = {.lex_state = 839}, - [1392] = {.lex_state = 860}, - [1393] = {.lex_state = 879}, - [1394] = {.lex_state = 828}, - [1395] = {.lex_state = 860}, - [1396] = {.lex_state = 861}, - [1397] = {.lex_state = 861}, - [1398] = {.lex_state = 879}, - [1399] = {.lex_state = 892}, - [1400] = {.lex_state = 860}, - [1401] = {.lex_state = 861}, - [1402] = {.lex_state = 9}, - [1403] = {.lex_state = 860}, - [1404] = {.lex_state = 890}, - [1405] = {.lex_state = 828}, - [1406] = {.lex_state = 828}, - [1407] = {.lex_state = 890}, - [1408] = {.lex_state = 890}, - [1409] = {.lex_state = 9}, - [1410] = {.lex_state = 879}, - [1411] = {.lex_state = 861}, - [1412] = {.lex_state = 811}, - [1413] = {.lex_state = 811}, - [1414] = {.lex_state = 893}, - [1415] = {.lex_state = 861}, - [1416] = {.lex_state = 828}, - [1417] = {.lex_state = 840}, - [1418] = {.lex_state = 861}, - [1419] = {.lex_state = 9}, - [1420] = {.lex_state = 865}, - [1421] = {.lex_state = 811}, - [1422] = {.lex_state = 879}, - [1423] = {.lex_state = 828}, - [1424] = {.lex_state = 877}, - [1425] = {.lex_state = 877}, - [1426] = {.lex_state = 813}, - [1427] = {.lex_state = 879}, - [1428] = {.lex_state = 97}, - [1429] = {.lex_state = 809}, - [1430] = {.lex_state = 877}, - [1431] = {.lex_state = 877}, - [1432] = {.lex_state = 878}, - [1433] = {.lex_state = 861}, - [1434] = {.lex_state = 828}, - [1435] = {.lex_state = 877}, - [1436] = {.lex_state = 829}, - [1437] = {.lex_state = 829}, - [1438] = {.lex_state = 840}, - [1439] = {.lex_state = 840}, - [1440] = {.lex_state = 829}, - [1441] = {.lex_state = 811}, - [1442] = {.lex_state = 828}, - [1443] = {.lex_state = 829}, - [1444] = {.lex_state = 861}, - [1445] = {.lex_state = 9}, - [1446] = {.lex_state = 861}, - [1447] = {.lex_state = 828}, - [1448] = {.lex_state = 884}, - [1449] = {.lex_state = 828}, - [1450] = {.lex_state = 817}, - [1451] = {.lex_state = 863}, - [1452] = {.lex_state = 7}, - [1453] = {.lex_state = 879}, - [1454] = {.lex_state = 865}, - [1455] = {.lex_state = 882}, - [1456] = {.lex_state = 841}, - [1457] = {.lex_state = 882}, - [1458] = {.lex_state = 879}, - [1459] = {.lex_state = 882}, - [1460] = {.lex_state = 882}, - [1461] = {.lex_state = 882}, - [1462] = {.lex_state = 882}, - [1463] = {.lex_state = 882}, - [1464] = {.lex_state = 882}, - [1465] = {.lex_state = 882}, - [1466] = {.lex_state = 882}, - [1467] = {.lex_state = 811}, - [1468] = {.lex_state = 811}, - [1469] = {.lex_state = 882}, - [1470] = {.lex_state = 882}, - [1471] = {.lex_state = 811}, - [1472] = {.lex_state = 829}, - [1473] = {.lex_state = 882}, - [1474] = {.lex_state = 828}, - [1475] = {.lex_state = 863}, - [1476] = {.lex_state = 882}, - [1477] = {.lex_state = 879}, - [1478] = {.lex_state = 811}, - [1479] = {.lex_state = 882}, - [1480] = {.lex_state = 863}, - [1481] = {.lex_state = 882}, - [1482] = {.lex_state = 882}, - [1483] = {.lex_state = 813}, - [1484] = {.lex_state = 841}, - [1485] = {.lex_state = 885}, - [1486] = {.lex_state = 829}, - [1487] = {.lex_state = 866}, - [1488] = {.lex_state = 813}, - [1489] = {.lex_state = 813}, - [1490] = {.lex_state = 7}, - [1491] = {.lex_state = 7}, - [1492] = {.lex_state = 829}, - [1493] = {.lex_state = 877}, - [1494] = {.lex_state = 877}, - [1495] = {.lex_state = 882}, - [1496] = {.lex_state = 813}, - [1497] = {.lex_state = 863}, - [1498] = {.lex_state = 828}, - [1499] = {.lex_state = 12}, - [1500] = {.lex_state = 831}, - [1501] = {.lex_state = 877}, - [1502] = {.lex_state = 882}, - [1503] = {.lex_state = 829}, - [1504] = {.lex_state = 829}, - [1505] = {.lex_state = 878}, - [1506] = {.lex_state = 884}, - [1507] = {.lex_state = 877}, - [1508] = {.lex_state = 831}, - [1509] = {.lex_state = 831}, - [1510] = {.lex_state = 882}, - [1511] = {.lex_state = 831}, - [1512] = {.lex_state = 831}, - [1513] = {.lex_state = 831}, - [1514] = {.lex_state = 831}, - [1515] = {.lex_state = 15}, - [1516] = {.lex_state = 831}, - [1517] = {.lex_state = 831}, - [1518] = {.lex_state = 831}, - [1519] = {.lex_state = 831}, - [1520] = {.lex_state = 831}, - [1521] = {.lex_state = 831}, - [1522] = {.lex_state = 831}, - [1523] = {.lex_state = 831}, - [1524] = {.lex_state = 831}, - [1525] = {.lex_state = 831}, - [1526] = {.lex_state = 831}, - [1527] = {.lex_state = 882}, - [1528] = {.lex_state = 877}, - [1529] = {.lex_state = 831}, - [1530] = {.lex_state = 882}, - [1531] = {.lex_state = 885}, - [1532] = {.lex_state = 885}, - [1533] = {.lex_state = 882}, - [1534] = {.lex_state = 841}, - [1535] = {.lex_state = 882}, - [1536] = {.lex_state = 886}, - [1537] = {.lex_state = 882}, - [1538] = {.lex_state = 882}, - [1539] = {.lex_state = 886}, - [1540] = {.lex_state = 864}, - [1541] = {.lex_state = 863}, - [1542] = {.lex_state = 886}, - [1543] = {.lex_state = 863}, - [1544] = {.lex_state = 831}, - [1545] = {.lex_state = 829}, - [1546] = {.lex_state = 829}, - [1547] = {.lex_state = 882}, - [1548] = {.lex_state = 829}, - [1549] = {.lex_state = 13}, - [1550] = {.lex_state = 882}, - [1551] = {.lex_state = 882}, - [1552] = {.lex_state = 829}, - [1553] = {.lex_state = 882}, - [1554] = {.lex_state = 864}, - [1555] = {.lex_state = 864}, - [1556] = {.lex_state = 864}, - [1557] = {.lex_state = 882}, - [1558] = {.lex_state = 882}, - [1559] = {.lex_state = 882}, - [1560] = {.lex_state = 13}, - [1561] = {.lex_state = 886}, - [1562] = {.lex_state = 882}, - [1563] = {.lex_state = 863}, - [1564] = {.lex_state = 882}, - [1565] = {.lex_state = 831}, - [1566] = {.lex_state = 885}, - [1567] = {.lex_state = 819}, - [1568] = {.lex_state = 831}, - [1569] = {.lex_state = 879}, - [1570] = {.lex_state = 882}, - [1571] = {.lex_state = 863}, - [1572] = {.lex_state = 864}, - [1573] = {.lex_state = 839}, - [1574] = {.lex_state = 879}, - [1575] = {.lex_state = 886}, - [1576] = {.lex_state = 879}, - [1577] = {.lex_state = 829}, - [1578] = {.lex_state = 882}, - [1579] = {.lex_state = 864}, - [1580] = {.lex_state = 882}, - [1581] = {.lex_state = 882}, - [1582] = {.lex_state = 882}, - [1583] = {.lex_state = 882}, - [1584] = {.lex_state = 882}, - [1585] = {.lex_state = 831}, - [1586] = {.lex_state = 831}, - [1587] = {.lex_state = 831}, - [1588] = {.lex_state = 817}, - [1589] = {.lex_state = 882}, - [1590] = {.lex_state = 831}, - [1591] = {.lex_state = 13}, - [1592] = {.lex_state = 882}, - [1593] = {.lex_state = 885}, - [1594] = {.lex_state = 813}, - [1595] = {.lex_state = 886}, - [1596] = {.lex_state = 882}, - [1597] = {.lex_state = 845}, - [1598] = {.lex_state = 886}, - [1599] = {.lex_state = 882}, - [1600] = {.lex_state = 886}, - [1601] = {.lex_state = 866}, - [1602] = {.lex_state = 882}, - [1603] = {.lex_state = 886}, - [1604] = {.lex_state = 813}, - [1605] = {.lex_state = 7}, - [1606] = {.lex_state = 885}, - [1607] = {.lex_state = 859}, - [1608] = {.lex_state = 882}, - [1609] = {.lex_state = 886}, - [1610] = {.lex_state = 886}, - [1611] = {.lex_state = 886}, - [1612] = {.lex_state = 886}, - [1613] = {.lex_state = 813}, - [1614] = {.lex_state = 864}, - [1615] = {.lex_state = 870}, - [1616] = {.lex_state = 851}, - [1617] = {.lex_state = 887}, - [1618] = {.lex_state = 886}, - [1619] = {.lex_state = 7}, - [1620] = {.lex_state = 831}, - [1621] = {.lex_state = 14}, - [1622] = {.lex_state = 7}, - [1623] = {.lex_state = 864}, - [1624] = {.lex_state = 831}, - [1625] = {.lex_state = 851}, - [1626] = {.lex_state = 864}, - [1627] = {.lex_state = 851}, - [1628] = {.lex_state = 898}, - [1629] = {.lex_state = 831}, - [1630] = {.lex_state = 886}, - [1631] = {.lex_state = 809}, - [1632] = {.lex_state = 886}, - [1633] = {.lex_state = 886}, - [1634] = {.lex_state = 886}, - [1635] = {.lex_state = 864}, - [1636] = {.lex_state = 882}, - [1637] = {.lex_state = 886}, - [1638] = {.lex_state = 886}, - [1639] = {.lex_state = 886}, - [1640] = {.lex_state = 886}, - [1641] = {.lex_state = 851}, - [1642] = {.lex_state = 14}, - [1643] = {.lex_state = 886}, - [1644] = {.lex_state = 3157}, - [1645] = {.lex_state = 859}, - [1646] = {.lex_state = 841}, - [1647] = {.lex_state = 851}, - [1648] = {.lex_state = 909}, - [1649] = {.lex_state = 886}, - [1650] = {.lex_state = 831}, - [1651] = {.lex_state = 831}, - [1652] = {.lex_state = 819}, - [1653] = {.lex_state = 869}, - [1654] = {.lex_state = 881}, - [1655] = {.lex_state = 909}, - [1656] = {.lex_state = 14}, - [1657] = {.lex_state = 909}, - [1658] = {.lex_state = 909}, - [1659] = {.lex_state = 898}, - [1660] = {.lex_state = 880}, - [1661] = {.lex_state = 886}, - [1662] = {.lex_state = 880}, - [1663] = {.lex_state = 880}, - [1664] = {.lex_state = 880}, - [1665] = {.lex_state = 886}, - [1666] = {.lex_state = 864}, - [1667] = {.lex_state = 809}, - [1668] = {.lex_state = 840}, - [1669] = {.lex_state = 886}, - [1670] = {.lex_state = 882}, - [1671] = {.lex_state = 14}, - [1672] = {.lex_state = 864}, - [1673] = {.lex_state = 895}, - [1674] = {.lex_state = 886}, - [1675] = {.lex_state = 898}, - [1676] = {.lex_state = 840}, - [1677] = {.lex_state = 864}, - [1678] = {.lex_state = 909}, - [1679] = {.lex_state = 831}, - [1680] = {.lex_state = 840}, - [1681] = {.lex_state = 880}, - [1682] = {.lex_state = 831}, - [1683] = {.lex_state = 864}, - [1684] = {.lex_state = 880}, - [1685] = {.lex_state = 829}, - [1686] = {.lex_state = 841}, - [1687] = {.lex_state = 880}, - [1688] = {.lex_state = 905}, - [1689] = {.lex_state = 909}, - [1690] = {.lex_state = 94}, - [1691] = {.lex_state = 3157}, - [1692] = {.lex_state = 880}, - [1693] = {.lex_state = 872}, - [1694] = {.lex_state = 831}, - [1695] = {.lex_state = 829}, - [1696] = {.lex_state = 880}, - [1697] = {.lex_state = 909}, - [1698] = {.lex_state = 909}, - [1699] = {.lex_state = 829}, - [1700] = {.lex_state = 869}, - [1701] = {.lex_state = 910}, - [1702] = {.lex_state = 851}, - [1703] = {.lex_state = 909}, - [1704] = {.lex_state = 94}, - [1705] = {.lex_state = 829}, - [1706] = {.lex_state = 909}, - [1707] = {.lex_state = 851}, - [1708] = {.lex_state = 910}, - [1709] = {.lex_state = 829}, - [1710] = {.lex_state = 809}, - [1711] = {.lex_state = 829}, - [1712] = {.lex_state = 888}, - [1713] = {.lex_state = 888}, - [1714] = {.lex_state = 874}, - [1715] = {.lex_state = 829}, - [1716] = {.lex_state = 841}, - [1717] = {.lex_state = 841}, - [1718] = {.lex_state = 841}, - [1719] = {.lex_state = 887}, - [1720] = {.lex_state = 829}, - [1721] = {.lex_state = 851}, - [1722] = {.lex_state = 829}, - [1723] = {.lex_state = 831}, - [1724] = {.lex_state = 831}, - [1725] = {.lex_state = 829}, - [1726] = {.lex_state = 882}, - [1727] = {.lex_state = 829}, - [1728] = {.lex_state = 829}, - [1729] = {.lex_state = 829}, - [1730] = {.lex_state = 7}, - [1731] = {.lex_state = 829}, - [1732] = {.lex_state = 851}, - [1733] = {.lex_state = 871}, - [1734] = {.lex_state = 829}, - [1735] = {.lex_state = 880}, - [1736] = {.lex_state = 882}, - [1737] = {.lex_state = 882}, - [1738] = {.lex_state = 7}, - [1739] = {.lex_state = 898}, - [1740] = {.lex_state = 895}, - [1741] = {.lex_state = 94}, - [1742] = {.lex_state = 851}, - [1743] = {.lex_state = 870}, - [1744] = {.lex_state = 829}, - [1745] = {.lex_state = 829}, - [1746] = {.lex_state = 898}, - [1747] = {.lex_state = 829}, - [1748] = {.lex_state = 851}, - [1749] = {.lex_state = 851}, - [1750] = {.lex_state = 875}, - [1751] = {.lex_state = 829}, - [1752] = {.lex_state = 874}, - [1753] = {.lex_state = 872}, - [1754] = {.lex_state = 3157}, - [1755] = {.lex_state = 829}, - [1756] = {.lex_state = 829}, - [1757] = {.lex_state = 851}, - [1758] = {.lex_state = 851}, - [1759] = {.lex_state = 881}, - [1760] = {.lex_state = 809}, - [1761] = {.lex_state = 910}, - [1762] = {.lex_state = 898}, - [1763] = {.lex_state = 874}, - [1764] = {.lex_state = 910}, - [1765] = {.lex_state = 910}, - [1766] = {.lex_state = 851}, - [1767] = {.lex_state = 876}, - [1768] = {.lex_state = 829}, - [1769] = {.lex_state = 829}, - [1770] = {.lex_state = 829}, - [1771] = {.lex_state = 829}, - [1772] = {.lex_state = 829}, - [1773] = {.lex_state = 829}, - [1774] = {.lex_state = 829}, - [1775] = {.lex_state = 829}, - [1776] = {.lex_state = 829}, - [1777] = {.lex_state = 829}, - [1778] = {.lex_state = 829}, - [1779] = {.lex_state = 829}, - [1780] = {.lex_state = 829}, - [1781] = {.lex_state = 829}, - [1782] = {.lex_state = 829}, - [1783] = {.lex_state = 829}, - [1784] = {.lex_state = 829}, - [1785] = {.lex_state = 829}, - [1786] = {.lex_state = 829}, - [1787] = {.lex_state = 875}, - [1788] = {.lex_state = 872}, - [1789] = {.lex_state = 876}, - [1790] = {.lex_state = 871}, - [1791] = {.lex_state = 876}, - [1792] = {.lex_state = 876}, - [1793] = {.lex_state = 876}, - [1794] = {.lex_state = 876}, - [1795] = {.lex_state = 876}, - [1796] = {.lex_state = 876}, - [1797] = {.lex_state = 876}, - [1798] = {.lex_state = 876}, - [1799] = {.lex_state = 328}, - [1800] = {.lex_state = 876}, - [1801] = {.lex_state = 876}, - [1802] = {.lex_state = 876}, - [1803] = {.lex_state = 876}, - [1804] = {.lex_state = 876}, - [1805] = {.lex_state = 876}, - [1806] = {.lex_state = 876}, - [1807] = {.lex_state = 328}, - [1808] = {.lex_state = 829}, - [1809] = {.lex_state = 829}, - [1810] = {.lex_state = 876}, - [1811] = {.lex_state = 876}, - [1812] = {.lex_state = 876}, - [1813] = {.lex_state = 876}, - [1814] = {.lex_state = 876}, - [1815] = {.lex_state = 876}, - [1816] = {.lex_state = 876}, - [1817] = {.lex_state = 876}, - [1818] = {.lex_state = 876}, - [1819] = {.lex_state = 876}, - [1820] = {.lex_state = 876}, - [1821] = {.lex_state = 876}, - [1822] = {.lex_state = 876}, - [1823] = {.lex_state = 876}, - [1824] = {.lex_state = 876}, - [1825] = {.lex_state = 876}, - [1826] = {.lex_state = 876}, - [1827] = {.lex_state = 876}, - [1828] = {.lex_state = 876}, - [1829] = {.lex_state = 876}, - [1830] = {.lex_state = 876}, - [1831] = {.lex_state = 876}, - [1832] = {.lex_state = 876}, - [1833] = {.lex_state = 876}, - [1834] = {.lex_state = 876}, - [1835] = {.lex_state = 876}, - [1836] = {.lex_state = 876}, - [1837] = {.lex_state = 876}, - [1838] = {.lex_state = 876}, - [1839] = {.lex_state = 876}, - [1840] = {.lex_state = 882}, - [1841] = {.lex_state = 876}, - [1842] = {.lex_state = 876}, - [1843] = {.lex_state = 851}, - [1844] = {.lex_state = 876}, - [1845] = {.lex_state = 876}, - [1846] = {.lex_state = 876}, - [1847] = {.lex_state = 876}, - [1848] = {.lex_state = 876}, - [1849] = {.lex_state = 876}, - [1850] = {.lex_state = 876}, - [1851] = {.lex_state = 876}, - [1852] = {.lex_state = 882}, - [1853] = {.lex_state = 882}, - [1854] = {.lex_state = 876}, - [1855] = {.lex_state = 876}, - [1856] = {.lex_state = 876}, - [1857] = {.lex_state = 876}, - [1858] = {.lex_state = 876}, - [1859] = {.lex_state = 876}, - [1860] = {.lex_state = 876}, - [1861] = {.lex_state = 876}, - [1862] = {.lex_state = 874}, - [1863] = {.lex_state = 874}, - [1864] = {.lex_state = 874}, - [1865] = {.lex_state = 876}, - [1866] = {.lex_state = 876}, - [1867] = {.lex_state = 876}, - [1868] = {.lex_state = 910}, - [1869] = {.lex_state = 910}, - [1870] = {.lex_state = 910}, - [1871] = {.lex_state = 910}, - [1872] = {.lex_state = 876}, - [1873] = {.lex_state = 876}, - [1874] = {.lex_state = 888}, - [1875] = {.lex_state = 3157}, - [1876] = {.lex_state = 910}, - [1877] = {.lex_state = 876}, - [1878] = {.lex_state = 876}, - [1879] = {.lex_state = 876}, - [1880] = {.lex_state = 876}, - [1881] = {.lex_state = 829}, - [1882] = {.lex_state = 829}, - [1883] = {.lex_state = 876}, - [1884] = {.lex_state = 829}, - [1885] = {.lex_state = 7}, - [1886] = {.lex_state = 7}, - [1887] = {.lex_state = 7}, - [1888] = {.lex_state = 876}, - [1889] = {.lex_state = 905}, - [1890] = {.lex_state = 829}, - [1891] = {.lex_state = 829}, - [1892] = {.lex_state = 906}, - [1893] = {.lex_state = 851}, - [1894] = {.lex_state = 829}, - [1895] = {.lex_state = 328}, - [1896] = {.lex_state = 851}, - [1897] = {.lex_state = 328}, - [1898] = {.lex_state = 872}, - [1899] = {.lex_state = 829}, - [1900] = {.lex_state = 328}, - [1901] = {.lex_state = 328}, - [1902] = {.lex_state = 328}, - [1903] = {.lex_state = 328}, - [1904] = {.lex_state = 888}, - [1905] = {.lex_state = 876}, - [1906] = {.lex_state = 829}, - [1907] = {.lex_state = 809}, - [1908] = {.lex_state = 876}, - [1909] = {.lex_state = 809}, - [1910] = {.lex_state = 809}, - [1911] = {.lex_state = 809}, - [1912] = {.lex_state = 876}, - [1913] = {.lex_state = 809}, - [1914] = {.lex_state = 876}, - [1915] = {.lex_state = 876}, - [1916] = {.lex_state = 809}, - [1917] = {.lex_state = 809}, - [1918] = {.lex_state = 809}, - [1919] = {.lex_state = 876}, - [1920] = {.lex_state = 876}, - [1921] = {.lex_state = 876}, - [1922] = {.lex_state = 876}, - [1923] = {.lex_state = 809}, - [1924] = {.lex_state = 876}, - [1925] = {.lex_state = 876}, - [1926] = {.lex_state = 809}, - [1927] = {.lex_state = 876}, - [1928] = {.lex_state = 876}, - [1929] = {.lex_state = 809}, - [1930] = {.lex_state = 876}, - [1931] = {.lex_state = 876}, - [1932] = {.lex_state = 809}, - [1933] = {.lex_state = 876}, - [1934] = {.lex_state = 829}, - [1935] = {.lex_state = 829}, - [1936] = {.lex_state = 876}, - [1937] = {.lex_state = 876}, - [1938] = {.lex_state = 876}, - [1939] = {.lex_state = 876}, - [1940] = {.lex_state = 876}, - [1941] = {.lex_state = 876}, - [1942] = {.lex_state = 876}, - [1943] = {.lex_state = 876}, - [1944] = {.lex_state = 876}, - [1945] = {.lex_state = 876}, - [1946] = {.lex_state = 876}, - [1947] = {.lex_state = 876}, - [1948] = {.lex_state = 876}, - [1949] = {.lex_state = 821}, - [1950] = {.lex_state = 829}, - [1951] = {.lex_state = 831}, - [1952] = {.lex_state = 831}, - [1953] = {.lex_state = 831}, - [1954] = {.lex_state = 809}, - [1955] = {.lex_state = 829}, - [1956] = {.lex_state = 831}, - [1957] = {.lex_state = 831}, - [1958] = {.lex_state = 876}, - [1959] = {.lex_state = 876}, - [1960] = {.lex_state = 876}, - [1961] = {.lex_state = 876}, - [1962] = {.lex_state = 876}, - [1963] = {.lex_state = 809}, - [1964] = {.lex_state = 809}, - [1965] = {.lex_state = 829}, - [1966] = {.lex_state = 876}, - [1967] = {.lex_state = 829}, - [1968] = {.lex_state = 831}, - [1969] = {.lex_state = 831}, - [1970] = {.lex_state = 876}, - [1971] = {.lex_state = 831}, - [1972] = {.lex_state = 831}, - [1973] = {.lex_state = 876}, - [1974] = {.lex_state = 876}, - [1975] = {.lex_state = 876}, - [1976] = {.lex_state = 876}, - [1977] = {.lex_state = 876}, - [1978] = {.lex_state = 876}, - [1979] = {.lex_state = 876}, - [1980] = {.lex_state = 876}, - [1981] = {.lex_state = 876}, - [1982] = {.lex_state = 876}, - [1983] = {.lex_state = 876}, - [1984] = {.lex_state = 876}, - [1985] = {.lex_state = 876}, - [1986] = {.lex_state = 876}, - [1987] = {.lex_state = 876}, - [1988] = {.lex_state = 876}, - [1989] = {.lex_state = 876}, - [1990] = {.lex_state = 876}, - [1991] = {.lex_state = 876}, - [1992] = {.lex_state = 876}, - [1993] = {.lex_state = 876}, - [1994] = {.lex_state = 876}, - [1995] = {.lex_state = 876}, - [1996] = {.lex_state = 876}, - [1997] = {.lex_state = 876}, - [1998] = {.lex_state = 876}, - [1999] = {.lex_state = 876}, - [2000] = {.lex_state = 876}, - [2001] = {.lex_state = 876}, - [2002] = {.lex_state = 809}, - [2003] = {.lex_state = 809}, - [2004] = {.lex_state = 809}, - [2005] = {.lex_state = 809}, - [2006] = {.lex_state = 809}, - [2007] = {.lex_state = 809}, - [2008] = {.lex_state = 809}, - [2009] = {.lex_state = 809}, - [2010] = {.lex_state = 809}, - [2011] = {.lex_state = 809}, - [2012] = {.lex_state = 809}, - [2013] = {.lex_state = 809}, - [2014] = {.lex_state = 876}, - [2015] = {.lex_state = 809}, - [2016] = {.lex_state = 809}, - [2017] = {.lex_state = 876}, - [2018] = {.lex_state = 809}, - [2019] = {.lex_state = 7}, - [2020] = {.lex_state = 876}, - [2021] = {.lex_state = 876}, - [2022] = {.lex_state = 876}, - [2023] = {.lex_state = 831}, - [2024] = {.lex_state = 831}, - [2025] = {.lex_state = 809}, - [2026] = {.lex_state = 831}, - [2027] = {.lex_state = 831}, - [2028] = {.lex_state = 831}, - [2029] = {.lex_state = 831}, - [2030] = {.lex_state = 831}, - [2031] = {.lex_state = 831}, - [2032] = {.lex_state = 831}, - [2033] = {.lex_state = 831}, - [2034] = {.lex_state = 831}, - [2035] = {.lex_state = 831}, - [2036] = {.lex_state = 829}, - [2037] = {.lex_state = 829}, - [2038] = {.lex_state = 809}, - [2039] = {.lex_state = 876}, - [2040] = {.lex_state = 809}, - [2041] = {.lex_state = 829}, - [2042] = {.lex_state = 809}, - [2043] = {.lex_state = 876}, - [2044] = {.lex_state = 876}, - [2045] = {.lex_state = 7}, - [2046] = {.lex_state = 809}, - [2047] = {.lex_state = 876}, - [2048] = {.lex_state = 876}, - [2049] = {.lex_state = 876}, - [2050] = {.lex_state = 829}, - [2051] = {.lex_state = 829}, - [2052] = {.lex_state = 876}, - [2053] = {.lex_state = 829}, - [2054] = {.lex_state = 829}, - [2055] = {.lex_state = 829}, - [2056] = {.lex_state = 829}, - [2057] = {.lex_state = 829}, - [2058] = {.lex_state = 829}, - [2059] = {.lex_state = 829}, - [2060] = {.lex_state = 829}, - [2061] = {.lex_state = 829}, - [2062] = {.lex_state = 829}, - [2063] = {.lex_state = 829}, - [2064] = {.lex_state = 829}, - [2065] = {.lex_state = 829}, - [2066] = {.lex_state = 831}, - [2067] = {.lex_state = 831}, - [2068] = {.lex_state = 829}, - [2069] = {.lex_state = 809}, - [2070] = {.lex_state = 809}, - [2071] = {.lex_state = 809}, - [2072] = {.lex_state = 809}, - [2073] = {.lex_state = 809}, - [2074] = {.lex_state = 809}, - [2075] = {.lex_state = 809}, - [2076] = {.lex_state = 809}, - [2077] = {.lex_state = 809}, - [2078] = {.lex_state = 809}, - [2079] = {.lex_state = 906}, - [2080] = {.lex_state = 809}, - [2081] = {.lex_state = 809}, - [2082] = {.lex_state = 831}, - [2083] = {.lex_state = 809}, - [2084] = {.lex_state = 829}, - [2085] = {.lex_state = 809}, - [2086] = {.lex_state = 829}, - [2087] = {.lex_state = 809}, - [2088] = {.lex_state = 831}, - [2089] = {.lex_state = 829}, - [2090] = {.lex_state = 876}, - [2091] = {.lex_state = 809}, - [2092] = {.lex_state = 829}, - [2093] = {.lex_state = 876}, - [2094] = {.lex_state = 831}, - [2095] = {.lex_state = 829}, - [2096] = {.lex_state = 829}, - [2097] = {.lex_state = 876}, - [2098] = {.lex_state = 7}, - [2099] = {.lex_state = 809}, - [2100] = {.lex_state = 809}, - [2101] = {.lex_state = 876}, - [2102] = {.lex_state = 809}, - [2103] = {.lex_state = 829}, - [2104] = {.lex_state = 876}, - [2105] = {.lex_state = 809}, - [2106] = {.lex_state = 831}, - [2107] = {.lex_state = 823}, - [2108] = {.lex_state = 899}, - [2109] = {.lex_state = 899}, - [2110] = {.lex_state = 898}, - [2111] = {.lex_state = 821}, - [2112] = {.lex_state = 809}, - [2113] = {.lex_state = 809}, - [2114] = {.lex_state = 898}, - [2115] = {.lex_state = 809}, - [2116] = {.lex_state = 831}, - [2117] = {.lex_state = 823}, - [2118] = {.lex_state = 900}, - [2119] = {.lex_state = 809}, - [2120] = {.lex_state = 898}, - [2121] = {.lex_state = 831}, - [2122] = {.lex_state = 809}, - [2123] = {.lex_state = 96}, - [2124] = {.lex_state = 831}, - [2125] = {.lex_state = 823}, - [2126] = {.lex_state = 823}, - [2127] = {.lex_state = 831}, - [2128] = {.lex_state = 900}, - [2129] = {.lex_state = 898}, - [2130] = {.lex_state = 3155}, - [2131] = {.lex_state = 898}, - [2132] = {.lex_state = 354}, - [2133] = {.lex_state = 898}, - [2134] = {.lex_state = 96}, - [2135] = {.lex_state = 823}, - [2136] = {.lex_state = 898}, - [2137] = {.lex_state = 898}, - [2138] = {.lex_state = 809}, - [2139] = {.lex_state = 809}, - [2140] = {.lex_state = 809}, - [2141] = {.lex_state = 809}, - [2142] = {.lex_state = 809}, - [2143] = {.lex_state = 809}, - [2144] = {.lex_state = 809}, - [2145] = {.lex_state = 809}, - [2146] = {.lex_state = 809}, - [2147] = {.lex_state = 809}, - [2148] = {.lex_state = 809}, - [2149] = {.lex_state = 809}, - [2150] = {.lex_state = 809}, - [2151] = {.lex_state = 809}, - [2152] = {.lex_state = 809}, - [2153] = {.lex_state = 809}, - [2154] = {.lex_state = 809}, - [2155] = {.lex_state = 355}, - [2156] = {.lex_state = 809}, - [2157] = {.lex_state = 831}, - [2158] = {.lex_state = 831}, - [2159] = {.lex_state = 809}, - [2160] = {.lex_state = 849}, - [2161] = {.lex_state = 849}, - [2162] = {.lex_state = 849}, - [2163] = {.lex_state = 809}, - [2164] = {.lex_state = 809}, - [2165] = {.lex_state = 809}, - [2166] = {.lex_state = 809}, - [2167] = {.lex_state = 809}, - [2168] = {.lex_state = 809}, - [2169] = {.lex_state = 100}, - [2170] = {.lex_state = 809}, - [2171] = {.lex_state = 809}, - [2172] = {.lex_state = 809}, - [2173] = {.lex_state = 809}, - [2174] = {.lex_state = 809}, - [2175] = {.lex_state = 823}, - [2176] = {.lex_state = 823}, - [2177] = {.lex_state = 809}, - [2178] = {.lex_state = 3155}, - [2179] = {.lex_state = 809}, - [2180] = {.lex_state = 809}, - [2181] = {.lex_state = 809}, - [2182] = {.lex_state = 809}, - [2183] = {.lex_state = 809}, - [2184] = {.lex_state = 847}, - [2185] = {.lex_state = 847}, - [2186] = {.lex_state = 809}, - [2187] = {.lex_state = 809}, - [2188] = {.lex_state = 100}, - [2189] = {.lex_state = 809}, - [2190] = {.lex_state = 809}, - [2191] = {.lex_state = 809}, - [2192] = {.lex_state = 809}, - [2193] = {.lex_state = 809}, - [2194] = {.lex_state = 809}, - [2195] = {.lex_state = 809}, - [2196] = {.lex_state = 900}, - [2197] = {.lex_state = 809}, - [2198] = {.lex_state = 809}, - [2199] = {.lex_state = 809}, - [2200] = {.lex_state = 809}, - [2201] = {.lex_state = 94}, - [2202] = {.lex_state = 831}, - [2203] = {.lex_state = 809}, - [2204] = {.lex_state = 809}, - [2205] = {.lex_state = 809}, - [2206] = {.lex_state = 823}, - [2207] = {.lex_state = 809}, - [2208] = {.lex_state = 809}, - [2209] = {.lex_state = 823}, - [2210] = {.lex_state = 809}, - [2211] = {.lex_state = 809}, - [2212] = {.lex_state = 809}, - [2213] = {.lex_state = 809}, - [2214] = {.lex_state = 823}, - [2215] = {.lex_state = 809}, - [2216] = {.lex_state = 809}, - [2217] = {.lex_state = 809}, - [2218] = {.lex_state = 809}, - [2219] = {.lex_state = 809}, - [2220] = {.lex_state = 815}, - [2221] = {.lex_state = 809}, - [2222] = {.lex_state = 809}, - [2223] = {.lex_state = 809}, - [2224] = {.lex_state = 809}, - [2225] = {.lex_state = 809}, - [2226] = {.lex_state = 809}, - [2227] = {.lex_state = 100}, - [2228] = {.lex_state = 809}, - [2229] = {.lex_state = 809}, - [2230] = {.lex_state = 809}, - [2231] = {.lex_state = 96}, - [2232] = {.lex_state = 809}, - [2233] = {.lex_state = 809}, - [2234] = {.lex_state = 809}, - [2235] = {.lex_state = 809}, - [2236] = {.lex_state = 809}, - [2237] = {.lex_state = 809}, - [2238] = {.lex_state = 809}, - [2239] = {.lex_state = 809}, - [2240] = {.lex_state = 809}, - [2241] = {.lex_state = 809}, - [2242] = {.lex_state = 900}, - [2243] = {.lex_state = 809}, - [2244] = {.lex_state = 809}, - [2245] = {.lex_state = 809}, - [2246] = {.lex_state = 809}, - [2247] = {.lex_state = 809}, - [2248] = {.lex_state = 809}, - [2249] = {.lex_state = 809}, - [2250] = {.lex_state = 809}, - [2251] = {.lex_state = 809}, - [2252] = {.lex_state = 94}, - [2253] = {.lex_state = 900}, - [2254] = {.lex_state = 809}, - [2255] = {.lex_state = 809}, - [2256] = {.lex_state = 809}, - [2257] = {.lex_state = 809}, - [2258] = {.lex_state = 809}, - [2259] = {.lex_state = 355}, - [2260] = {.lex_state = 809}, - [2261] = {.lex_state = 809}, - [2262] = {.lex_state = 809}, - [2263] = {.lex_state = 809}, - [2264] = {.lex_state = 809}, - [2265] = {.lex_state = 809}, - [2266] = {.lex_state = 355}, - [2267] = {.lex_state = 809}, - [2268] = {.lex_state = 809}, - [2269] = {.lex_state = 16}, - [2270] = {.lex_state = 809}, - [2271] = {.lex_state = 809}, - [2272] = {.lex_state = 809}, - [2273] = {.lex_state = 809}, - [2274] = {.lex_state = 809}, - [2275] = {.lex_state = 809}, - [2276] = {.lex_state = 900}, - [2277] = {.lex_state = 809}, - [2278] = {.lex_state = 809}, - [2279] = {.lex_state = 96}, - [2280] = {.lex_state = 186}, - [2281] = {.lex_state = 900}, - [2282] = {.lex_state = 809}, - [2283] = {.lex_state = 96}, - [2284] = {.lex_state = 96}, - [2285] = {.lex_state = 809}, - [2286] = {.lex_state = 809}, - [2287] = {.lex_state = 809}, - [2288] = {.lex_state = 809}, - [2289] = {.lex_state = 809}, - [2290] = {.lex_state = 346}, - [2291] = {.lex_state = 809}, - [2292] = {.lex_state = 355}, - [2293] = {.lex_state = 18}, - [2294] = {.lex_state = 346}, - [2295] = {.lex_state = 18}, - [2296] = {.lex_state = 18}, - [2297] = {.lex_state = 18}, - [2298] = {.lex_state = 809}, - [2299] = {.lex_state = 809}, - [2300] = {.lex_state = 809}, - [2301] = {.lex_state = 809}, - [2302] = {.lex_state = 809}, - [2303] = {.lex_state = 900}, - [2304] = {.lex_state = 900}, - [2305] = {.lex_state = 809}, - [2306] = {.lex_state = 809}, - [2307] = {.lex_state = 809}, - [2308] = {.lex_state = 809}, - [2309] = {.lex_state = 809}, - [2310] = {.lex_state = 809}, - [2311] = {.lex_state = 809}, - [2312] = {.lex_state = 809}, - [2313] = {.lex_state = 809}, - [2314] = {.lex_state = 809}, - [2315] = {.lex_state = 809}, - [2316] = {.lex_state = 809}, - [2317] = {.lex_state = 809}, - [2318] = {.lex_state = 809}, - [2319] = {.lex_state = 809}, - [2320] = {.lex_state = 809}, - [2321] = {.lex_state = 809}, - [2322] = {.lex_state = 809}, - [2323] = {.lex_state = 94}, - [2324] = {.lex_state = 809}, - [2325] = {.lex_state = 809}, - [2326] = {.lex_state = 356}, - [2327] = {.lex_state = 809}, - [2328] = {.lex_state = 809}, - [2329] = {.lex_state = 809}, - [2330] = {.lex_state = 96}, - [2331] = {.lex_state = 809}, - [2332] = {.lex_state = 809}, - [2333] = {.lex_state = 809}, - [2334] = {.lex_state = 809}, - [2335] = {.lex_state = 809}, - [2336] = {.lex_state = 809}, - [2337] = {.lex_state = 809}, - [2338] = {.lex_state = 900}, - [2339] = {.lex_state = 809}, - [2340] = {.lex_state = 809}, - [2341] = {.lex_state = 356}, - [2342] = {.lex_state = 357}, - [2343] = {.lex_state = 809}, - [2344] = {.lex_state = 809}, - [2345] = {.lex_state = 809}, - [2346] = {.lex_state = 809}, - [2347] = {.lex_state = 809}, - [2348] = {.lex_state = 809}, - [2349] = {.lex_state = 809}, - [2350] = {.lex_state = 809}, - [2351] = {.lex_state = 809}, - [2352] = {.lex_state = 809}, - [2353] = {.lex_state = 809}, - [2354] = {.lex_state = 809}, - [2355] = {.lex_state = 809}, - [2356] = {.lex_state = 809}, - [2357] = {.lex_state = 809}, - [2358] = {.lex_state = 900}, - [2359] = {.lex_state = 809}, - [2360] = {.lex_state = 809}, - [2361] = {.lex_state = 899}, - [2362] = {.lex_state = 215}, - [2363] = {.lex_state = 899}, - [2364] = {.lex_state = 899}, - [2365] = {.lex_state = 809}, - [2366] = {.lex_state = 356}, - [2367] = {.lex_state = 809}, - [2368] = {.lex_state = 7}, - [2369] = {.lex_state = 809}, - [2370] = {.lex_state = 809}, - [2371] = {.lex_state = 809}, - [2372] = {.lex_state = 809}, - [2373] = {.lex_state = 809}, - [2374] = {.lex_state = 809}, - [2375] = {.lex_state = 809}, - [2376] = {.lex_state = 94}, - [2377] = {.lex_state = 809}, - [2378] = {.lex_state = 809}, - [2379] = {.lex_state = 94}, - [2380] = {.lex_state = 809}, - [2381] = {.lex_state = 809}, - [2382] = {.lex_state = 907}, - [2383] = {.lex_state = 809}, - [2384] = {.lex_state = 849}, - [2385] = {.lex_state = 809}, - [2386] = {.lex_state = 809}, - [2387] = {.lex_state = 809}, - [2388] = {.lex_state = 809}, - [2389] = {.lex_state = 809}, - [2390] = {.lex_state = 809}, - [2391] = {.lex_state = 809}, - [2392] = {.lex_state = 809}, - [2393] = {.lex_state = 809}, - [2394] = {.lex_state = 809}, - [2395] = {.lex_state = 809}, - [2396] = {.lex_state = 815}, - [2397] = {.lex_state = 809}, - [2398] = {.lex_state = 809}, - [2399] = {.lex_state = 94}, - [2400] = {.lex_state = 809}, - [2401] = {.lex_state = 809}, - [2402] = {.lex_state = 809}, - [2403] = {.lex_state = 809}, - [2404] = {.lex_state = 809}, - [2405] = {.lex_state = 809}, - [2406] = {.lex_state = 849}, - [2407] = {.lex_state = 809}, - [2408] = {.lex_state = 809}, - [2409] = {.lex_state = 809}, - [2410] = {.lex_state = 809}, - [2411] = {.lex_state = 809}, - [2412] = {.lex_state = 809}, - [2413] = {.lex_state = 809}, - [2414] = {.lex_state = 96}, - [2415] = {.lex_state = 185}, - [2416] = {.lex_state = 185}, - [2417] = {.lex_state = 849}, - [2418] = {.lex_state = 849}, - [2419] = {.lex_state = 809}, - [2420] = {.lex_state = 847}, - [2421] = {.lex_state = 847}, - [2422] = {.lex_state = 809}, - [2423] = {.lex_state = 809}, - [2424] = {.lex_state = 185}, - [2425] = {.lex_state = 809}, - [2426] = {.lex_state = 96}, - [2427] = {.lex_state = 96}, - [2428] = {.lex_state = 809}, - [2429] = {.lex_state = 809}, - [2430] = {.lex_state = 809}, - [2431] = {.lex_state = 809}, - [2432] = {.lex_state = 847}, - [2433] = {.lex_state = 847}, - [2434] = {.lex_state = 809}, - [2435] = {.lex_state = 96}, - [2436] = {.lex_state = 809}, - [2437] = {.lex_state = 809}, - [2438] = {.lex_state = 809}, - [2439] = {.lex_state = 94}, - [2440] = {.lex_state = 809}, - [2441] = {.lex_state = 809}, - [2442] = {.lex_state = 809}, - [2443] = {.lex_state = 809}, - [2444] = {.lex_state = 809}, - [2445] = {.lex_state = 809}, - [2446] = {.lex_state = 809}, - [2447] = {.lex_state = 809}, - [2448] = {.lex_state = 96}, - [2449] = {.lex_state = 96}, - [2450] = {.lex_state = 809}, - [2451] = {.lex_state = 7}, - [2452] = {.lex_state = 7}, - [2453] = {.lex_state = 809}, - [2454] = {.lex_state = 94}, - [2455] = {.lex_state = 96}, - [2456] = {.lex_state = 356}, - [2457] = {.lex_state = 849}, - [2458] = {.lex_state = 96}, - [2459] = {.lex_state = 96}, - [2460] = {.lex_state = 809}, - [2461] = {.lex_state = 96}, - [2462] = {.lex_state = 7}, - [2463] = {.lex_state = 809}, - [2464] = {.lex_state = 96}, - [2465] = {.lex_state = 809}, - [2466] = {.lex_state = 809}, - [2467] = {.lex_state = 809}, - [2468] = {.lex_state = 809}, - [2469] = {.lex_state = 809}, - [2470] = {.lex_state = 96}, - [2471] = {.lex_state = 94}, - [2472] = {.lex_state = 94}, - [2473] = {.lex_state = 94}, - [2474] = {.lex_state = 94}, - [2475] = {.lex_state = 809}, - [2476] = {.lex_state = 809}, - [2477] = {.lex_state = 809}, - [2478] = {.lex_state = 185}, - [2479] = {.lex_state = 809}, - [2480] = {.lex_state = 809}, - [2481] = {.lex_state = 809}, - [2482] = {.lex_state = 809}, - [2483] = {.lex_state = 809}, - [2484] = {.lex_state = 67}, - [2485] = {.lex_state = 809}, - [2486] = {.lex_state = 809}, - [2487] = {.lex_state = 809}, - [2488] = {.lex_state = 809}, - [2489] = {.lex_state = 809}, - [2490] = {.lex_state = 358}, - [2491] = {.lex_state = 809}, - [2492] = {.lex_state = 809}, - [2493] = {.lex_state = 809}, - [2494] = {.lex_state = 212}, - [2495] = {.lex_state = 809}, - [2496] = {.lex_state = 809}, - [2497] = {.lex_state = 809}, - [2498] = {.lex_state = 809}, - [2499] = {.lex_state = 809}, - [2500] = {.lex_state = 809}, - [2501] = {.lex_state = 809}, - [2502] = {.lex_state = 809}, - [2503] = {.lex_state = 809}, - [2504] = {.lex_state = 809}, - [2505] = {.lex_state = 809}, - [2506] = {.lex_state = 809}, - [2507] = {.lex_state = 67}, - [2508] = {.lex_state = 809}, - [2509] = {.lex_state = 809}, - [2510] = {.lex_state = 809}, - [2511] = {.lex_state = 809}, - [2512] = {.lex_state = 899}, - [2513] = {.lex_state = 809}, - [2514] = {.lex_state = 809}, - [2515] = {.lex_state = 907}, - [2516] = {.lex_state = 809}, - [2517] = {.lex_state = 809}, - [2518] = {.lex_state = 217}, - [2519] = {.lex_state = 899}, - [2520] = {.lex_state = 217}, - [2521] = {.lex_state = 809}, - [2522] = {.lex_state = 899}, - [2523] = {.lex_state = 809}, - [2524] = {.lex_state = 809}, - [2525] = {.lex_state = 219}, - [2526] = {.lex_state = 809}, - [2527] = {.lex_state = 214}, - [2528] = {.lex_state = 809}, - [2529] = {.lex_state = 809}, - [2530] = {.lex_state = 899}, - [2531] = {.lex_state = 809}, - [2532] = {.lex_state = 67}, - [2533] = {.lex_state = 809}, - [2534] = {.lex_state = 809}, - [2535] = {.lex_state = 809}, - [2536] = {.lex_state = 213}, - [2537] = {.lex_state = 809}, - [2538] = {.lex_state = 809}, - [2539] = {.lex_state = 809}, - [2540] = {.lex_state = 809}, - [2541] = {.lex_state = 809}, - [2542] = {.lex_state = 213}, - [2543] = {.lex_state = 213}, - [2544] = {.lex_state = 67}, - [2545] = {.lex_state = 809}, - [2546] = {.lex_state = 809}, - [2547] = {.lex_state = 809}, - [2548] = {.lex_state = 809}, - [2549] = {.lex_state = 213}, - [2550] = {.lex_state = 809}, - [2551] = {.lex_state = 809}, - [2552] = {.lex_state = 67}, - [2553] = {.lex_state = 809}, - [2554] = {.lex_state = 809}, - [2555] = {.lex_state = 809}, - [2556] = {.lex_state = 3158}, - [2557] = {.lex_state = 809}, - [2558] = {.lex_state = 899}, - [2559] = {.lex_state = 809}, - [2560] = {.lex_state = 809}, - [2561] = {.lex_state = 809}, - [2562] = {.lex_state = 809}, - [2563] = {.lex_state = 67}, - [2564] = {.lex_state = 217}, - [2565] = {.lex_state = 809}, - [2566] = {.lex_state = 809}, - [2567] = {.lex_state = 67}, - [2568] = {.lex_state = 809}, - [2569] = {.lex_state = 809}, - [2570] = {.lex_state = 809}, - [2571] = {.lex_state = 67}, - [2572] = {.lex_state = 809}, - [2573] = {.lex_state = 898}, - [2574] = {.lex_state = 229}, - [2575] = {.lex_state = 214}, - [2576] = {.lex_state = 346}, - [2577] = {.lex_state = 898}, - [2578] = {.lex_state = 229}, - [2579] = {.lex_state = 214}, - [2580] = {.lex_state = 900}, - [2581] = {.lex_state = 346}, - [2582] = {.lex_state = 898}, - [2583] = {.lex_state = 346}, - [2584] = {.lex_state = 346}, - [2585] = {.lex_state = 898}, - [2586] = {.lex_state = 898}, - [2587] = {.lex_state = 346}, - [2588] = {.lex_state = 346}, - [2589] = {.lex_state = 79}, - [2590] = {.lex_state = 229}, - [2591] = {.lex_state = 216}, - [2592] = {.lex_state = 898}, - [2593] = {.lex_state = 218}, - [2594] = {.lex_state = 94}, - [2595] = {.lex_state = 898}, - [2596] = {.lex_state = 900}, - [2597] = {.lex_state = 898}, - [2598] = {.lex_state = 94}, - [2599] = {.lex_state = 898}, - [2600] = {.lex_state = 898}, - [2601] = {.lex_state = 898}, - [2602] = {.lex_state = 3158}, - [2603] = {.lex_state = 233}, - [2604] = {.lex_state = 898}, - [2605] = {.lex_state = 305}, - [2606] = {.lex_state = 94}, - [2607] = {.lex_state = 898}, - [2608] = {.lex_state = 346}, - [2609] = {.lex_state = 94}, - [2610] = {.lex_state = 346}, - [2611] = {.lex_state = 898}, - [2612] = {.lex_state = 94}, - [2613] = {.lex_state = 229}, - [2614] = {.lex_state = 216}, - [2615] = {.lex_state = 898}, - [2616] = {.lex_state = 216}, - [2617] = {.lex_state = 214}, - [2618] = {.lex_state = 898}, - [2619] = {.lex_state = 900}, - [2620] = {.lex_state = 229}, - [2621] = {.lex_state = 94}, - [2622] = {.lex_state = 898}, - [2623] = {.lex_state = 898}, - [2624] = {.lex_state = 294}, - [2625] = {.lex_state = 94}, - [2626] = {.lex_state = 94}, - [2627] = {.lex_state = 94}, - [2628] = {.lex_state = 94}, - [2629] = {.lex_state = 94}, - [2630] = {.lex_state = 94}, - [2631] = {.lex_state = 898}, - [2632] = {.lex_state = 898}, - [2633] = {.lex_state = 94}, - [2634] = {.lex_state = 344}, - [2635] = {.lex_state = 294}, - [2636] = {.lex_state = 344}, - [2637] = {.lex_state = 303}, - [2638] = {.lex_state = 303}, - [2639] = {.lex_state = 303}, - [2640] = {.lex_state = 344}, - [2641] = {.lex_state = 303}, - [2642] = {.lex_state = 231}, - [2643] = {.lex_state = 231}, - [2644] = {.lex_state = 231}, - [2645] = {.lex_state = 898}, - [2646] = {.lex_state = 898}, - [2647] = {.lex_state = 228}, - [2648] = {.lex_state = 228}, - [2649] = {.lex_state = 94}, - [2650] = {.lex_state = 344}, - [2651] = {.lex_state = 344}, - [2652] = {.lex_state = 344}, - [2653] = {.lex_state = 344}, - [2654] = {.lex_state = 94}, - [2655] = {.lex_state = 94}, - [2656] = {.lex_state = 228}, - [2657] = {.lex_state = 79}, - [2658] = {.lex_state = 228}, - [2659] = {.lex_state = 228}, - [2660] = {.lex_state = 344}, - [2661] = {.lex_state = 344}, - [2662] = {.lex_state = 344}, - [2663] = {.lex_state = 344}, - [2664] = {.lex_state = 344}, - [2665] = {.lex_state = 344}, - [2666] = {.lex_state = 344}, - [2667] = {.lex_state = 94}, - [2668] = {.lex_state = 231}, - [2669] = {.lex_state = 344}, - [2670] = {.lex_state = 94}, - [2671] = {.lex_state = 898}, - [2672] = {.lex_state = 344}, - [2673] = {.lex_state = 344}, - [2674] = {.lex_state = 344}, - [2675] = {.lex_state = 344}, - [2676] = {.lex_state = 94}, - [2677] = {.lex_state = 94}, - [2678] = {.lex_state = 94}, - [2679] = {.lex_state = 94}, - [2680] = {.lex_state = 344}, - [2681] = {.lex_state = 94}, - [2682] = {.lex_state = 94}, - [2683] = {.lex_state = 94}, - [2684] = {.lex_state = 94}, - [2685] = {.lex_state = 94}, - [2686] = {.lex_state = 94}, - [2687] = {.lex_state = 94}, - [2688] = {.lex_state = 94}, - [2689] = {.lex_state = 898}, - [2690] = {.lex_state = 344}, - [2691] = {.lex_state = 94}, - [2692] = {.lex_state = 898}, - [2693] = {.lex_state = 344}, - [2694] = {.lex_state = 898}, - [2695] = {.lex_state = 898}, - [2696] = {.lex_state = 94}, - [2697] = {.lex_state = 94}, - [2698] = {.lex_state = 94}, - [2699] = {.lex_state = 94}, - [2700] = {.lex_state = 344}, - [2701] = {.lex_state = 94}, - [2702] = {.lex_state = 79}, - [2703] = {.lex_state = 232}, - [2704] = {.lex_state = 77}, - [2705] = {.lex_state = 294}, - [2706] = {.lex_state = 99}, - [2707] = {.lex_state = 312}, - [2708] = {.lex_state = 304}, - [2709] = {.lex_state = 77}, - [2710] = {.lex_state = 83}, - [2711] = {.lex_state = 294}, - [2712] = {.lex_state = 304}, - [2713] = {.lex_state = 77}, - [2714] = {.lex_state = 304}, - [2715] = {.lex_state = 344}, - [2716] = {.lex_state = 344}, - [2717] = {.lex_state = 78}, - [2718] = {.lex_state = 304}, - [2719] = {.lex_state = 232}, - [2720] = {.lex_state = 232}, - [2721] = {.lex_state = 232}, - [2722] = {.lex_state = 280}, - [2723] = {.lex_state = 77}, - [2724] = {.lex_state = 77}, - [2725] = {.lex_state = 232}, - [2726] = {.lex_state = 280}, - [2727] = {.lex_state = 94}, - [2728] = {.lex_state = 292}, - [2729] = {.lex_state = 310}, - [2730] = {.lex_state = 345}, - [2731] = {.lex_state = 280}, - [2732] = {.lex_state = 82}, - [2733] = {.lex_state = 310}, - [2734] = {.lex_state = 348}, - [2735] = {.lex_state = 84}, - [2736] = {.lex_state = 293}, - [2737] = {.lex_state = 79}, - [2738] = {.lex_state = 79}, - [2739] = {.lex_state = 310}, - [2740] = {.lex_state = 359}, - [2741] = {.lex_state = 84}, - [2742] = {.lex_state = 310}, - [2743] = {.lex_state = 332}, - [2744] = {.lex_state = 332}, - [2745] = {.lex_state = 343}, - [2746] = {.lex_state = 343}, - [2747] = {.lex_state = 79}, - [2748] = {.lex_state = 84}, - [2749] = {.lex_state = 343}, - [2750] = {.lex_state = 295}, - [2751] = {.lex_state = 343}, - [2752] = {.lex_state = 343}, - [2753] = {.lex_state = 280}, - [2754] = {.lex_state = 343}, - [2755] = {.lex_state = 299}, - [2756] = {.lex_state = 343}, - [2757] = {.lex_state = 99}, - [2758] = {.lex_state = 332}, - [2759] = {.lex_state = 332}, - [2760] = {.lex_state = 345}, - [2761] = {.lex_state = 343}, - [2762] = {.lex_state = 332}, - [2763] = {.lex_state = 292}, - [2764] = {.lex_state = 236}, - [2765] = {.lex_state = 345}, - [2766] = {.lex_state = 345}, - [2767] = {.lex_state = 345}, - [2768] = {.lex_state = 292}, - [2769] = {.lex_state = 292}, - [2770] = {.lex_state = 292}, - [2771] = {.lex_state = 343}, - [2772] = {.lex_state = 85}, - [2773] = {.lex_state = 85}, - [2774] = {.lex_state = 85}, - [2775] = {.lex_state = 294}, - [2776] = {.lex_state = 294}, - [2777] = {.lex_state = 294}, - [2778] = {.lex_state = 366}, - [2779] = {.lex_state = 298}, - [2780] = {.lex_state = 234}, - [2781] = {.lex_state = 234}, - [2782] = {.lex_state = 234}, - [2783] = {.lex_state = 284}, - [2784] = {.lex_state = 94}, - [2785] = {.lex_state = 94}, - [2786] = {.lex_state = 85}, - [2787] = {.lex_state = 85}, - [2788] = {.lex_state = 85}, - [2789] = {.lex_state = 94}, - [2790] = {.lex_state = 330}, - [2791] = {.lex_state = 85}, - [2792] = {.lex_state = 82}, - [2793] = {.lex_state = 82}, - [2794] = {.lex_state = 234}, - [2795] = {.lex_state = 300}, - [2796] = {.lex_state = 300}, - [2797] = {.lex_state = 300}, - [2798] = {.lex_state = 278}, - [2799] = {.lex_state = 279}, - [2800] = {.lex_state = 278}, - [2801] = {.lex_state = 344}, - [2802] = {.lex_state = 344}, - [2803] = {.lex_state = 344}, - [2804] = {.lex_state = 2880}, - [2805] = {.lex_state = 237}, - [2806] = {.lex_state = 311}, - [2807] = {.lex_state = 281}, - [2808] = {.lex_state = 94}, - [2809] = {.lex_state = 278}, - [2810] = {.lex_state = 810}, - [2811] = {.lex_state = 278}, - [2812] = {.lex_state = 85}, - [2813] = {.lex_state = 278}, - [2814] = {.lex_state = 332}, - [2815] = {.lex_state = 330}, - [2816] = {.lex_state = 311}, - [2817] = {.lex_state = 298}, - [2818] = {.lex_state = 366}, - [2819] = {.lex_state = 343}, - [2820] = {.lex_state = 94}, - [2821] = {.lex_state = 298}, - [2822] = {.lex_state = 298}, - [2823] = {.lex_state = 332}, - [2824] = {.lex_state = 298}, - [2825] = {.lex_state = 298}, - [2826] = {.lex_state = 298}, - [2827] = {.lex_state = 298}, - [2828] = {.lex_state = 298}, - [2829] = {.lex_state = 298}, - [2830] = {.lex_state = 298}, - [2831] = {.lex_state = 298}, - [2832] = {.lex_state = 85}, - [2833] = {.lex_state = 298}, - [2834] = {.lex_state = 298}, - [2835] = {.lex_state = 298}, - [2836] = {.lex_state = 298}, - [2837] = {.lex_state = 298}, - [2838] = {.lex_state = 298}, - [2839] = {.lex_state = 298}, - [2840] = {.lex_state = 346}, - [2841] = {.lex_state = 343}, - [2842] = {.lex_state = 94}, - [2843] = {.lex_state = 311}, - [2844] = {.lex_state = 366}, - [2845] = {.lex_state = 366}, - [2846] = {.lex_state = 311}, - [2847] = {.lex_state = 346}, - [2848] = {.lex_state = 353}, - [2849] = {.lex_state = 85}, - [2850] = {.lex_state = 330}, - [2851] = {.lex_state = 330}, - [2852] = {.lex_state = 85}, - [2853] = {.lex_state = 85}, - [2854] = {.lex_state = 298}, - [2855] = {.lex_state = 94}, - [2856] = {.lex_state = 311}, - [2857] = {.lex_state = 366}, - [2858] = {.lex_state = 331}, - [2859] = {.lex_state = 94}, - [2860] = {.lex_state = 280}, - [2861] = {.lex_state = 280}, - [2862] = {.lex_state = 94}, - [2863] = {.lex_state = 235}, - [2864] = {.lex_state = 331}, - [2865] = {.lex_state = 94}, - [2866] = {.lex_state = 94}, - [2867] = {.lex_state = 814}, - [2868] = {.lex_state = 81}, - [2869] = {.lex_state = 235}, - [2870] = {.lex_state = 94}, - [2871] = {.lex_state = 94}, - [2872] = {.lex_state = 94}, - [2873] = {.lex_state = 94}, - [2874] = {.lex_state = 94}, - [2875] = {.lex_state = 301}, - [2876] = {.lex_state = 301}, - [2877] = {.lex_state = 301}, - [2878] = {.lex_state = 94}, - [2879] = {.lex_state = 94}, - [2880] = {.lex_state = 94}, - [2881] = {.lex_state = 235}, - [2882] = {.lex_state = 235}, - [2883] = {.lex_state = 812}, - [2884] = {.lex_state = 281}, - [2885] = {.lex_state = 331}, - [2886] = {.lex_state = 812}, - [2887] = {.lex_state = 331}, - [2888] = {.lex_state = 235}, - [2889] = {.lex_state = 94}, - [2890] = {.lex_state = 94}, - [2891] = {.lex_state = 301}, - [2892] = {.lex_state = 94}, - [2893] = {.lex_state = 94}, - [2894] = {.lex_state = 301}, - [2895] = {.lex_state = 281}, - [2896] = {.lex_state = 235}, - [2897] = {.lex_state = 285}, - [2898] = {.lex_state = 812}, - [2899] = {.lex_state = 94}, - [2900] = {.lex_state = 285}, - [2901] = {.lex_state = 812}, - [2902] = {.lex_state = 235}, - [2903] = {.lex_state = 281}, - [2904] = {.lex_state = 94}, - [2905] = {.lex_state = 94}, - [2906] = {.lex_state = 285}, - [2907] = {.lex_state = 94}, - [2908] = {.lex_state = 94}, - [2909] = {.lex_state = 94}, - [2910] = {.lex_state = 301}, - [2911] = {.lex_state = 97}, - [2912] = {.lex_state = 94}, - [2913] = {.lex_state = 94}, - [2914] = {.lex_state = 301}, - [2915] = {.lex_state = 80}, - [2916] = {.lex_state = 94}, - [2917] = {.lex_state = 281}, - [2918] = {.lex_state = 281}, - [2919] = {.lex_state = 94}, - [2920] = {.lex_state = 80}, - [2921] = {.lex_state = 281}, - [2922] = {.lex_state = 94}, - [2923] = {.lex_state = 331}, - [2924] = {.lex_state = 94}, - [2925] = {.lex_state = 298}, - [2926] = {.lex_state = 94}, - [2927] = {.lex_state = 80}, - [2928] = {.lex_state = 72}, - [2929] = {.lex_state = 94}, - [2930] = {.lex_state = 298}, - [2931] = {.lex_state = 281}, - [2932] = {.lex_state = 281}, - [2933] = {.lex_state = 810}, - [2934] = {.lex_state = 94}, - [2935] = {.lex_state = 94}, - [2936] = {.lex_state = 80}, - [2937] = {.lex_state = 80}, - [2938] = {.lex_state = 230}, - [2939] = {.lex_state = 94}, - [2940] = {.lex_state = 281}, - [2941] = {.lex_state = 94}, - [2942] = {.lex_state = 94}, - [2943] = {.lex_state = 94}, - [2944] = {.lex_state = 281}, - [2945] = {.lex_state = 301}, - [2946] = {.lex_state = 94}, - [2947] = {.lex_state = 315}, - [2948] = {.lex_state = 280}, - [2949] = {.lex_state = 96}, - [2950] = {.lex_state = 301}, - [2951] = {.lex_state = 301}, - [2952] = {.lex_state = 281}, - [2953] = {.lex_state = 281}, - [2954] = {.lex_state = 94}, - [2955] = {.lex_state = 281}, - [2956] = {.lex_state = 94}, - [2957] = {.lex_state = 94}, - [2958] = {.lex_state = 94}, - [2959] = {.lex_state = 281}, - [2960] = {.lex_state = 281}, - [2961] = {.lex_state = 281}, - [2962] = {.lex_state = 301}, - [2963] = {.lex_state = 281}, - [2964] = {.lex_state = 281}, - [2965] = {.lex_state = 281}, - [2966] = {.lex_state = 281}, - [2967] = {.lex_state = 301}, - [2968] = {.lex_state = 331}, - [2969] = {.lex_state = 94}, - [2970] = {.lex_state = 281}, - [2971] = {.lex_state = 301}, - [2972] = {.lex_state = 94}, - [2973] = {.lex_state = 286}, - [2974] = {.lex_state = 367}, - [2975] = {.lex_state = 82}, - [2976] = {.lex_state = 82}, - [2977] = {.lex_state = 812}, - [2978] = {.lex_state = 286}, - [2979] = {.lex_state = 367}, - [2980] = {.lex_state = 296}, - [2981] = {.lex_state = 296}, - [2982] = {.lex_state = 367}, - [2983] = {.lex_state = 367}, - [2984] = {.lex_state = 286}, - [2985] = {.lex_state = 287}, - [2986] = {.lex_state = 96}, - [2987] = {.lex_state = 286}, - [2988] = {.lex_state = 281}, - [2989] = {.lex_state = 296}, - [2990] = {.lex_state = 296}, - [2991] = {.lex_state = 286}, - [2992] = {.lex_state = 296}, - [2993] = {.lex_state = 286}, - [2994] = {.lex_state = 281}, - [2995] = {.lex_state = 3813}, - [2996] = {.lex_state = 313}, - [2997] = {.lex_state = 82}, - [2998] = {.lex_state = 846}, - [2999] = {.lex_state = 842}, - [3000] = {.lex_state = 367}, - [3001] = {.lex_state = 286}, - [3002] = {.lex_state = 211}, - [3003] = {.lex_state = 73}, - [3004] = {.lex_state = 286}, - [3005] = {.lex_state = 814}, - [3006] = {.lex_state = 286}, - [3007] = {.lex_state = 814}, - [3008] = {.lex_state = 814}, - [3009] = {.lex_state = 313}, - [3010] = {.lex_state = 290}, - [3011] = {.lex_state = 814}, - [3012] = {.lex_state = 286}, - [3013] = {.lex_state = 313}, - [3014] = {.lex_state = 75}, - [3015] = {.lex_state = 75}, - [3016] = {.lex_state = 97}, - [3017] = {.lex_state = 286}, - [3018] = {.lex_state = 75}, - [3019] = {.lex_state = 286}, - [3020] = {.lex_state = 313}, - [3021] = {.lex_state = 812}, - [3022] = {.lex_state = 812}, - [3023] = {.lex_state = 818}, - [3024] = {.lex_state = 286}, - [3025] = {.lex_state = 73}, - [3026] = {.lex_state = 812}, - [3027] = {.lex_state = 316}, - [3028] = {.lex_state = 297}, - [3029] = {.lex_state = 76}, - [3030] = {.lex_state = 814}, - [3031] = {.lex_state = 211}, - [3032] = {.lex_state = 291}, - [3033] = {.lex_state = 843}, - [3034] = {.lex_state = 76}, - [3035] = {.lex_state = 289}, - [3036] = {.lex_state = 843}, - [3037] = {.lex_state = 76}, - [3038] = {.lex_state = 289}, - [3039] = {.lex_state = 843}, - [3040] = {.lex_state = 291}, - [3041] = {.lex_state = 814}, - [3042] = {.lex_state = 289}, - [3043] = {.lex_state = 291}, - [3044] = {.lex_state = 291}, - [3045] = {.lex_state = 291}, - [3046] = {.lex_state = 291}, - [3047] = {.lex_state = 291}, - [3048] = {.lex_state = 291}, - [3049] = {.lex_state = 291}, - [3050] = {.lex_state = 291}, - [3051] = {.lex_state = 291}, - [3052] = {.lex_state = 291}, - [3053] = {.lex_state = 76}, - [3054] = {.lex_state = 76}, - [3055] = {.lex_state = 820}, - [3056] = {.lex_state = 76}, - [3057] = {.lex_state = 98}, - [3058] = {.lex_state = 86}, - [3059] = {.lex_state = 291}, - [3060] = {.lex_state = 291}, - [3061] = {.lex_state = 291}, - [3062] = {.lex_state = 291}, - [3063] = {.lex_state = 271}, - [3064] = {.lex_state = 291}, - [3065] = {.lex_state = 291}, - [3066] = {.lex_state = 291}, - [3067] = {.lex_state = 291}, - [3068] = {.lex_state = 291}, - [3069] = {.lex_state = 291}, - [3070] = {.lex_state = 291}, - [3071] = {.lex_state = 291}, - [3072] = {.lex_state = 291}, - [3073] = {.lex_state = 291}, - [3074] = {.lex_state = 291}, - [3075] = {.lex_state = 76}, - [3076] = {.lex_state = 76}, - [3077] = {.lex_state = 283}, - [3078] = {.lex_state = 76}, - [3079] = {.lex_state = 282}, - [3080] = {.lex_state = 76}, - [3081] = {.lex_state = 291}, - [3082] = {.lex_state = 298}, - [3083] = {.lex_state = 291}, - [3084] = {.lex_state = 309}, - [3085] = {.lex_state = 76}, - [3086] = {.lex_state = 76}, - [3087] = {.lex_state = 211}, - [3088] = {.lex_state = 846}, - [3089] = {.lex_state = 76}, - [3090] = {.lex_state = 282}, - [3091] = {.lex_state = 76}, - [3092] = {.lex_state = 76}, - [3093] = {.lex_state = 76}, - [3094] = {.lex_state = 291}, - [3095] = {.lex_state = 76}, - [3096] = {.lex_state = 314}, - [3097] = {.lex_state = 306}, - [3098] = {.lex_state = 314}, - [3099] = {.lex_state = 76}, - [3100] = {.lex_state = 314}, - [3101] = {.lex_state = 314}, - [3102] = {.lex_state = 211}, - [3103] = {.lex_state = 76}, - [3104] = {.lex_state = 314}, - [3105] = {.lex_state = 76}, - [3106] = {.lex_state = 282}, - [3107] = {.lex_state = 282}, - [3108] = {.lex_state = 76}, - [3109] = {.lex_state = 291}, - [3110] = {.lex_state = 76}, - [3111] = {.lex_state = 76}, - [3112] = {.lex_state = 818}, - [3113] = {.lex_state = 288}, - [3114] = {.lex_state = 282}, - [3115] = {.lex_state = 842}, - [3116] = {.lex_state = 76}, - [3117] = {.lex_state = 76}, - [3118] = {.lex_state = 298}, - [3119] = {.lex_state = 298}, - [3120] = {.lex_state = 291}, - [3121] = {.lex_state = 291}, - [3122] = {.lex_state = 814}, - [3123] = {.lex_state = 291}, - [3124] = {.lex_state = 76}, - [3125] = {.lex_state = 314}, - [3126] = {.lex_state = 291}, - [3127] = {.lex_state = 76}, - [3128] = {.lex_state = 76}, - [3129] = {.lex_state = 291}, - [3130] = {.lex_state = 291}, - [3131] = {.lex_state = 314}, - [3132] = {.lex_state = 76}, - [3133] = {.lex_state = 368}, - [3134] = {.lex_state = 275}, - [3135] = {.lex_state = 843}, - [3136] = {.lex_state = 86}, - [3137] = {.lex_state = 291}, - [3138] = {.lex_state = 291}, - [3139] = {.lex_state = 275}, - [3140] = {.lex_state = 291}, - [3141] = {.lex_state = 86}, - [3142] = {.lex_state = 843}, - [3143] = {.lex_state = 291}, - [3144] = {.lex_state = 820}, - [3145] = {.lex_state = 275}, - [3146] = {.lex_state = 3814}, - [3147] = {.lex_state = 281}, - [3148] = {.lex_state = 281}, - [3149] = {.lex_state = 302}, - [3150] = {.lex_state = 291}, - [3151] = {.lex_state = 98}, - [3152] = {.lex_state = 291}, - [3153] = {.lex_state = 291}, - [3154] = {.lex_state = 843}, - [3155] = {.lex_state = 829}, - [3156] = {.lex_state = 844}, - [3157] = {.lex_state = 272}, - [3158] = {.lex_state = 281}, - [3159] = {.lex_state = 291}, - [3160] = {.lex_state = 276}, - [3161] = {.lex_state = 291}, - [3162] = {.lex_state = 86}, - [3163] = {.lex_state = 291}, - [3164] = {.lex_state = 291}, - [3165] = {.lex_state = 844}, - [3166] = {.lex_state = 368}, - [3167] = {.lex_state = 368}, - [3168] = {.lex_state = 291}, - [3169] = {.lex_state = 368}, - [3170] = {.lex_state = 844}, - [3171] = {.lex_state = 86}, - [3172] = {.lex_state = 86}, - [3173] = {.lex_state = 86}, - [3174] = {.lex_state = 844}, - [3175] = {.lex_state = 368}, - [3176] = {.lex_state = 277}, - [3177] = {.lex_state = 844}, - [3178] = {.lex_state = 277}, - [3179] = {.lex_state = 277}, - [3180] = {.lex_state = 277}, - [3181] = {.lex_state = 277}, - [3182] = {.lex_state = 277}, - [3183] = {.lex_state = 277}, - [3184] = {.lex_state = 277}, - [3185] = {.lex_state = 277}, - [3186] = {.lex_state = 277}, - [3187] = {.lex_state = 277}, - [3188] = {.lex_state = 277}, - [3189] = {.lex_state = 277}, - [3190] = {.lex_state = 277}, - [3191] = {.lex_state = 277}, - [3192] = {.lex_state = 844}, - [3193] = {.lex_state = 277}, - [3194] = {.lex_state = 277}, - [3195] = {.lex_state = 277}, - [3196] = {.lex_state = 844}, - [3197] = {.lex_state = 277}, - [3198] = {.lex_state = 277}, - [3199] = {.lex_state = 277}, - [3200] = {.lex_state = 277}, - [3201] = {.lex_state = 277}, - [3202] = {.lex_state = 277}, - [3203] = {.lex_state = 277}, - [3204] = {.lex_state = 277}, - [3205] = {.lex_state = 277}, - [3206] = {.lex_state = 277}, - [3207] = {.lex_state = 277}, - [3208] = {.lex_state = 277}, - [3209] = {.lex_state = 277}, - [3210] = {.lex_state = 277}, - [3211] = {.lex_state = 277}, - [3212] = {.lex_state = 277}, - [3213] = {.lex_state = 277}, - [3214] = {.lex_state = 277}, - [3215] = {.lex_state = 277}, - [3216] = {.lex_state = 844}, - [3217] = {.lex_state = 277}, - [3218] = {.lex_state = 277}, - [3219] = {.lex_state = 277}, - [3220] = {.lex_state = 277}, - [3221] = {.lex_state = 277}, - [3222] = {.lex_state = 277}, - [3223] = {.lex_state = 277}, - [3224] = {.lex_state = 277}, - [3225] = {.lex_state = 277}, - [3226] = {.lex_state = 277}, - [3227] = {.lex_state = 277}, - [3228] = {.lex_state = 277}, - [3229] = {.lex_state = 277}, - [3230] = {.lex_state = 277}, - [3231] = {.lex_state = 277}, - [3232] = {.lex_state = 277}, - [3233] = {.lex_state = 277}, - [3234] = {.lex_state = 277}, - [3235] = {.lex_state = 277}, - [3236] = {.lex_state = 277}, - [3237] = {.lex_state = 277}, - [3238] = {.lex_state = 831}, - [3239] = {.lex_state = 277}, - [3240] = {.lex_state = 277}, - [3241] = {.lex_state = 277}, - [3242] = {.lex_state = 145}, - [3243] = {.lex_state = 145}, - [3244] = {.lex_state = 145}, - [3245] = {.lex_state = 145}, - [3246] = {.lex_state = 98}, - [3247] = {.lex_state = 145}, - [3248] = {.lex_state = 809}, - [3249] = {.lex_state = 145}, - [3250] = {.lex_state = 145}, - [3251] = {.lex_state = 145}, - [3252] = {.lex_state = 145}, - [3253] = {.lex_state = 145}, - [3254] = {.lex_state = 145}, - [3255] = {.lex_state = 145}, - [3256] = {.lex_state = 145}, - [3257] = {.lex_state = 145}, - [3258] = {.lex_state = 145}, - [3259] = {.lex_state = 145}, - [3260] = {.lex_state = 831}, - [3261] = {.lex_state = 829}, - [3262] = {.lex_state = 918}, - [3263] = {.lex_state = 822}, - [3264] = {.lex_state = 829}, - [3265] = {.lex_state = 829}, - [3266] = {.lex_state = 3156}, - [3267] = {.lex_state = 822}, - [3268] = {.lex_state = 824}, - [3269] = {.lex_state = 824}, - [3270] = {.lex_state = 824}, - [3271] = {.lex_state = 61}, - [3272] = {.lex_state = 824}, - [3273] = {.lex_state = 61}, - [3274] = {.lex_state = 824}, - [3275] = {.lex_state = 850}, - [3276] = {.lex_state = 816}, - [3277] = {.lex_state = 824}, - [3278] = {.lex_state = 850}, - [3279] = {.lex_state = 101}, - [3280] = {.lex_state = 61}, - [3281] = {.lex_state = 101}, - [3282] = {.lex_state = 824}, - [3283] = {.lex_state = 824}, - [3284] = {.lex_state = 101}, - [3285] = {.lex_state = 824}, - [3286] = {.lex_state = 61}, - [3287] = {.lex_state = 61}, - [3288] = {.lex_state = 3156}, - [3289] = {.lex_state = 848}, - [3290] = {.lex_state = 848}, - [3291] = {.lex_state = 824}, - [3292] = {.lex_state = 145}, - [3293] = {.lex_state = 829}, - [3294] = {.lex_state = 145}, - [3295] = {.lex_state = 101}, - [3296] = {.lex_state = 101}, - [3297] = {.lex_state = 850}, - [3298] = {.lex_state = 809}, - [3299] = {.lex_state = 61}, - [3300] = {.lex_state = 145}, - [3301] = {.lex_state = 145}, - [3302] = {.lex_state = 61}, - [3303] = {.lex_state = 61}, - [3304] = {.lex_state = 850}, - [3305] = {.lex_state = 61}, - [3306] = {.lex_state = 145}, - [3307] = {.lex_state = 61}, - [3308] = {.lex_state = 145}, - [3309] = {.lex_state = 809}, - [3310] = {.lex_state = 145}, - [3311] = {.lex_state = 27}, - [3312] = {.lex_state = 145}, - [3313] = {.lex_state = 809}, - [3314] = {.lex_state = 809}, - [3315] = {.lex_state = 809}, - [3316] = {.lex_state = 145}, - [3317] = {.lex_state = 809}, - [3318] = {.lex_state = 145}, - [3319] = {.lex_state = 809}, - [3320] = {.lex_state = 809}, - [3321] = {.lex_state = 809}, - [3322] = {.lex_state = 816}, - [3323] = {.lex_state = 809}, - [3324] = {.lex_state = 809}, - [3325] = {.lex_state = 809}, - [3326] = {.lex_state = 809}, - [3327] = {.lex_state = 809}, - [3328] = {.lex_state = 809}, - [3329] = {.lex_state = 809}, - [3330] = {.lex_state = 809}, - [3331] = {.lex_state = 809}, - [3332] = {.lex_state = 809}, - [3333] = {.lex_state = 809}, - [3334] = {.lex_state = 809}, - [3335] = {.lex_state = 809}, - [3336] = {.lex_state = 809}, - [3337] = {.lex_state = 809}, - [3338] = {.lex_state = 145}, - [3339] = {.lex_state = 809}, - [3340] = {.lex_state = 809}, - [3341] = {.lex_state = 809}, - [3342] = {.lex_state = 809}, - [3343] = {.lex_state = 809}, - [3344] = {.lex_state = 809}, - [3345] = {.lex_state = 809}, - [3346] = {.lex_state = 809}, - [3347] = {.lex_state = 809}, - [3348] = {.lex_state = 809}, - [3349] = {.lex_state = 809}, - [3350] = {.lex_state = 809}, - [3351] = {.lex_state = 809}, - [3352] = {.lex_state = 809}, - [3353] = {.lex_state = 809}, - [3354] = {.lex_state = 809}, - [3355] = {.lex_state = 809}, - [3356] = {.lex_state = 809}, - [3357] = {.lex_state = 809}, - [3358] = {.lex_state = 809}, - [3359] = {.lex_state = 809}, - [3360] = {.lex_state = 809}, - [3361] = {.lex_state = 809}, - [3362] = {.lex_state = 809}, - [3363] = {.lex_state = 809}, - [3364] = {.lex_state = 809}, - [3365] = {.lex_state = 809}, - [3366] = {.lex_state = 809}, - [3367] = {.lex_state = 809}, - [3368] = {.lex_state = 809}, - [3369] = {.lex_state = 809}, - [3370] = {.lex_state = 848}, - [3371] = {.lex_state = 809}, - [3372] = {.lex_state = 809}, - [3373] = {.lex_state = 809}, - [3374] = {.lex_state = 809}, - [3375] = {.lex_state = 809}, - [3376] = {.lex_state = 809}, - [3377] = {.lex_state = 809}, - [3378] = {.lex_state = 809}, - [3379] = {.lex_state = 809}, - [3380] = {.lex_state = 809}, - [3381] = {.lex_state = 809}, - [3382] = {.lex_state = 809}, - [3383] = {.lex_state = 809}, - [3384] = {.lex_state = 809}, - [3385] = {.lex_state = 809}, - [3386] = {.lex_state = 809}, - [3387] = {.lex_state = 809}, - [3388] = {.lex_state = 809}, - [3389] = {.lex_state = 809}, - [3390] = {.lex_state = 809}, - [3391] = {.lex_state = 809}, - [3392] = {.lex_state = 809}, - [3393] = {.lex_state = 809}, - [3394] = {.lex_state = 809}, - [3395] = {.lex_state = 809}, - [3396] = {.lex_state = 809}, - [3397] = {.lex_state = 809}, - [3398] = {.lex_state = 809}, - [3399] = {.lex_state = 809}, - [3400] = {.lex_state = 809}, - [3401] = {.lex_state = 809}, - [3402] = {.lex_state = 809}, - [3403] = {.lex_state = 809}, - [3404] = {.lex_state = 809}, - [3405] = {.lex_state = 809}, - [3406] = {.lex_state = 809}, - [3407] = {.lex_state = 809}, - [3408] = {.lex_state = 809}, - [3409] = {.lex_state = 809}, - [3410] = {.lex_state = 809}, - [3411] = {.lex_state = 809}, - [3412] = {.lex_state = 809}, - [3413] = {.lex_state = 809}, - [3414] = {.lex_state = 809}, - [3415] = {.lex_state = 809}, - [3416] = {.lex_state = 809}, - [3417] = {.lex_state = 809}, - [3418] = {.lex_state = 809}, - [3419] = {.lex_state = 809}, - [3420] = {.lex_state = 809}, - [3421] = {.lex_state = 809}, - [3422] = {.lex_state = 828}, - [3423] = {.lex_state = 145}, - [3424] = {.lex_state = 850}, - [3425] = {.lex_state = 850}, - [3426] = {.lex_state = 809}, - [3427] = {.lex_state = 848}, - [3428] = {.lex_state = 809}, - [3429] = {.lex_state = 30}, - [3430] = {.lex_state = 29}, - [3431] = {.lex_state = 28}, - [3432] = {.lex_state = 809}, - [3433] = {.lex_state = 28}, - [3434] = {.lex_state = 809}, - [3435] = {.lex_state = 145}, - [3436] = {.lex_state = 28}, - [3437] = {.lex_state = 166}, - [3438] = {.lex_state = 145}, - [3439] = {.lex_state = 145}, - [3440] = {.lex_state = 28}, - [3441] = {.lex_state = 61}, - [3442] = {.lex_state = 61}, - [3443] = {.lex_state = 61}, - [3444] = {.lex_state = 809}, - [3445] = {.lex_state = 809}, - [3446] = {.lex_state = 809}, - [3447] = {.lex_state = 809}, - [3448] = {.lex_state = 809}, - [3449] = {.lex_state = 809}, - [3450] = {.lex_state = 809}, - [3451] = {.lex_state = 809}, - [3452] = {.lex_state = 809}, - [3453] = {.lex_state = 809}, - [3454] = {.lex_state = 809}, - [3455] = {.lex_state = 809}, - [3456] = {.lex_state = 809}, - [3457] = {.lex_state = 809}, - [3458] = {.lex_state = 338}, - [3459] = {.lex_state = 825}, - [3460] = {.lex_state = 330}, - [3461] = {.lex_state = 101}, - [3462] = {.lex_state = 163}, - [3463] = {.lex_state = 101}, - [3464] = {.lex_state = 101}, - [3465] = {.lex_state = 167}, - [3466] = {.lex_state = 29}, - [3467] = {.lex_state = 29}, - [3468] = {.lex_state = 31}, - [3469] = {.lex_state = 29}, - [3470] = {.lex_state = 31}, - [3471] = {.lex_state = 167}, - [3472] = {.lex_state = 31}, - [3473] = {.lex_state = 829}, - [3474] = {.lex_state = 336}, - [3475] = {.lex_state = 336}, - [3476] = {.lex_state = 167}, - [3477] = {.lex_state = 336}, - [3478] = {.lex_state = 336}, - [3479] = {.lex_state = 831}, - [3480] = {.lex_state = 167}, - [3481] = {.lex_state = 31}, - [3482] = {.lex_state = 32}, - [3483] = {.lex_state = 330}, - [3484] = {.lex_state = 50}, - [3485] = {.lex_state = 168}, - [3486] = {.lex_state = 829}, - [3487] = {.lex_state = 61}, - [3488] = {.lex_state = 829}, - [3489] = {.lex_state = 164}, - [3490] = {.lex_state = 61}, - [3491] = {.lex_state = 61}, - [3492] = {.lex_state = 337}, - [3493] = {.lex_state = 32}, - [3494] = {.lex_state = 61}, - [3495] = {.lex_state = 32}, - [3496] = {.lex_state = 61}, - [3497] = {.lex_state = 61}, - [3498] = {.lex_state = 829}, - [3499] = {.lex_state = 61}, - [3500] = {.lex_state = 61}, - [3501] = {.lex_state = 145}, - [3502] = {.lex_state = 331}, - [3503] = {.lex_state = 172}, - [3504] = {.lex_state = 337}, - [3505] = {.lex_state = 145}, - [3506] = {.lex_state = 331}, - [3507] = {.lex_state = 145}, - [3508] = {.lex_state = 168}, - [3509] = {.lex_state = 337}, - [3510] = {.lex_state = 164}, - [3511] = {.lex_state = 61}, - [3512] = {.lex_state = 61}, - [3513] = {.lex_state = 61}, - [3514] = {.lex_state = 61}, - [3515] = {.lex_state = 168}, - [3516] = {.lex_state = 339}, - [3517] = {.lex_state = 145}, - [3518] = {.lex_state = 51}, - [3519] = {.lex_state = 164}, - [3520] = {.lex_state = 32}, - [3521] = {.lex_state = 164}, - [3522] = {.lex_state = 53}, - [3523] = {.lex_state = 165}, - [3524] = {.lex_state = 145}, - [3525] = {.lex_state = 145}, - [3526] = {.lex_state = 829}, - [3527] = {.lex_state = 168}, - [3528] = {.lex_state = 61}, - [3529] = {.lex_state = 61}, - [3530] = {.lex_state = 61}, - [3531] = {.lex_state = 337}, - [3532] = {.lex_state = 340}, - [3533] = {.lex_state = 819}, - [3534] = {.lex_state = 500}, - [3535] = {.lex_state = 174}, - [3536] = {.lex_state = 61}, - [3537] = {.lex_state = 819}, - [3538] = {.lex_state = 61}, - [3539] = {.lex_state = 819}, - [3540] = {.lex_state = 819}, - [3541] = {.lex_state = 500}, - [3542] = {.lex_state = 61}, - [3543] = {.lex_state = 819}, - [3544] = {.lex_state = 819}, - [3545] = {.lex_state = 819}, - [3546] = {.lex_state = 819}, - [3547] = {.lex_state = 165}, - [3548] = {.lex_state = 165}, - [3549] = {.lex_state = 54}, - [3550] = {.lex_state = 165}, - [3551] = {.lex_state = 171}, - [3552] = {.lex_state = 500}, - [3553] = {.lex_state = 500}, - [3554] = {.lex_state = 500}, - [3555] = {.lex_state = 828}, - [3556] = {.lex_state = 817}, - [3557] = {.lex_state = 32}, - [3558] = {.lex_state = 500}, - [3559] = {.lex_state = 61}, - [3560] = {.lex_state = 61}, - [3561] = {.lex_state = 61}, - [3562] = {.lex_state = 179}, - [3563] = {.lex_state = 61}, - [3564] = {.lex_state = 179}, - [3565] = {.lex_state = 173}, - [3566] = {.lex_state = 61}, - [3567] = {.lex_state = 61}, - [3568] = {.lex_state = 828}, - [3569] = {.lex_state = 828}, - [3570] = {.lex_state = 828}, - [3571] = {.lex_state = 828}, - [3572] = {.lex_state = 828}, - [3573] = {.lex_state = 500}, - [3574] = {.lex_state = 61}, - [3575] = {.lex_state = 179}, - [3576] = {.lex_state = 61}, - [3577] = {.lex_state = 61}, - [3578] = {.lex_state = 61}, - [3579] = {.lex_state = 179}, - [3580] = {.lex_state = 61}, - [3581] = {.lex_state = 61}, - [3582] = {.lex_state = 828}, - [3583] = {.lex_state = 61}, - [3584] = {.lex_state = 61}, - [3585] = {.lex_state = 61}, - [3586] = {.lex_state = 828}, - [3587] = {.lex_state = 61}, - [3588] = {.lex_state = 61}, - [3589] = {.lex_state = 61}, - [3590] = {.lex_state = 61}, - [3591] = {.lex_state = 61}, - [3592] = {.lex_state = 61}, - [3593] = {.lex_state = 61}, - [3594] = {.lex_state = 61}, - [3595] = {.lex_state = 61}, - [3596] = {.lex_state = 61}, - [3597] = {.lex_state = 61}, - [3598] = {.lex_state = 61}, - [3599] = {.lex_state = 61}, - [3600] = {.lex_state = 61}, - [3601] = {.lex_state = 61}, - [3602] = {.lex_state = 327}, - [3603] = {.lex_state = 327}, - [3604] = {.lex_state = 61}, - [3605] = {.lex_state = 179}, - [3606] = {.lex_state = 179}, - [3607] = {.lex_state = 327}, - [3608] = {.lex_state = 327}, - [3609] = {.lex_state = 327}, - [3610] = {.lex_state = 327}, - [3611] = {.lex_state = 327}, - [3612] = {.lex_state = 327}, - [3613] = {.lex_state = 327}, - [3614] = {.lex_state = 327}, - [3615] = {.lex_state = 327}, - [3616] = {.lex_state = 327}, - [3617] = {.lex_state = 327}, - [3618] = {.lex_state = 327}, - [3619] = {.lex_state = 327}, - [3620] = {.lex_state = 327}, - [3621] = {.lex_state = 61}, - [3622] = {.lex_state = 327}, - [3623] = {.lex_state = 61}, - [3624] = {.lex_state = 61}, - [3625] = {.lex_state = 327}, - [3626] = {.lex_state = 327}, - [3627] = {.lex_state = 61}, - [3628] = {.lex_state = 327}, - [3629] = {.lex_state = 327}, - [3630] = {.lex_state = 61}, - [3631] = {.lex_state = 327}, - [3632] = {.lex_state = 61}, - [3633] = {.lex_state = 61}, - [3634] = {.lex_state = 61}, - [3635] = {.lex_state = 61}, - [3636] = {.lex_state = 61}, - [3637] = {.lex_state = 61}, - [3638] = {.lex_state = 61}, - [3639] = {.lex_state = 179}, - [3640] = {.lex_state = 828}, - [3641] = {.lex_state = 61}, - [3642] = {.lex_state = 61}, - [3643] = {.lex_state = 61}, - [3644] = {.lex_state = 809}, - [3645] = {.lex_state = 327}, - [3646] = {.lex_state = 825}, - [3647] = {.lex_state = 825}, - [3648] = {.lex_state = 61}, - [3649] = {.lex_state = 179}, - [3650] = {.lex_state = 179}, - [3651] = {.lex_state = 825}, - [3652] = {.lex_state = 825}, - [3653] = {.lex_state = 825}, - [3654] = {.lex_state = 825}, - [3655] = {.lex_state = 825}, - [3656] = {.lex_state = 825}, - [3657] = {.lex_state = 825}, - [3658] = {.lex_state = 825}, - [3659] = {.lex_state = 825}, - [3660] = {.lex_state = 828}, - [3661] = {.lex_state = 828}, - [3662] = {.lex_state = 825}, - [3663] = {.lex_state = 825}, - [3664] = {.lex_state = 61}, - [3665] = {.lex_state = 61}, - [3666] = {.lex_state = 825}, - [3667] = {.lex_state = 825}, - [3668] = {.lex_state = 809}, - [3669] = {.lex_state = 825}, - [3670] = {.lex_state = 61}, - [3671] = {.lex_state = 825}, - [3672] = {.lex_state = 828}, - [3673] = {.lex_state = 825}, - [3674] = {.lex_state = 327}, - [3675] = {.lex_state = 825}, - [3676] = {.lex_state = 61}, - [3677] = {.lex_state = 61}, - [3678] = {.lex_state = 327}, - [3679] = {.lex_state = 825}, - [3680] = {.lex_state = 825}, - [3681] = {.lex_state = 825}, - [3682] = {.lex_state = 61}, - [3683] = {.lex_state = 828}, - [3684] = {.lex_state = 845}, - [3685] = {.lex_state = 61}, - [3686] = {.lex_state = 825}, - [3687] = {.lex_state = 825}, - [3688] = {.lex_state = 56}, - [3689] = {.lex_state = 179}, - [3690] = {.lex_state = 828}, - [3691] = {.lex_state = 321}, - [3692] = {.lex_state = 59}, - [3693] = {.lex_state = 809}, - [3694] = {.lex_state = 327}, - [3695] = {.lex_state = 61}, - [3696] = {.lex_state = 176}, - [3697] = {.lex_state = 327}, - [3698] = {.lex_state = 2873}, - [3699] = {.lex_state = 828}, - [3700] = {.lex_state = 59}, - [3701] = {.lex_state = 809}, - [3702] = {.lex_state = 831}, - [3703] = {.lex_state = 57}, - [3704] = {.lex_state = 828}, - [3705] = {.lex_state = 61}, - [3706] = {.lex_state = 59}, - [3707] = {.lex_state = 341}, - [3708] = {.lex_state = 59}, - [3709] = {.lex_state = 61}, - [3710] = {.lex_state = 326}, - [3711] = {.lex_state = 327}, - [3712] = {.lex_state = 59}, - [3713] = {.lex_state = 327}, - [3714] = {.lex_state = 327}, - [3715] = {.lex_state = 61}, - [3716] = {.lex_state = 61}, - [3717] = {.lex_state = 365}, - [3718] = {.lex_state = 18}, - [3719] = {.lex_state = 809}, - [3720] = {.lex_state = 178}, - [3721] = {.lex_state = 2877}, - [3722] = {.lex_state = 178}, - [3723] = {.lex_state = 178}, - [3724] = {.lex_state = 33}, - [3725] = {.lex_state = 2876}, - [3726] = {.lex_state = 60}, - [3727] = {.lex_state = 60}, - [3728] = {.lex_state = 365}, - [3729] = {.lex_state = 327}, - [3730] = {.lex_state = 335}, - [3731] = {.lex_state = 327}, - [3732] = {.lex_state = 327}, - [3733] = {.lex_state = 178}, - [3734] = {.lex_state = 18}, - [3735] = {.lex_state = 828}, - [3736] = {.lex_state = 61}, - [3737] = {.lex_state = 61}, - [3738] = {.lex_state = 130}, - [3739] = {.lex_state = 175}, - [3740] = {.lex_state = 365}, - [3741] = {.lex_state = 60}, - [3742] = {.lex_state = 809}, - [3743] = {.lex_state = 365}, - [3744] = {.lex_state = 61}, - [3745] = {.lex_state = 61}, - [3746] = {.lex_state = 60}, - [3747] = {.lex_state = 178}, - [3748] = {.lex_state = 324}, - [3749] = {.lex_state = 130}, - [3750] = {.lex_state = 61}, - [3751] = {.lex_state = 61}, - [3752] = {.lex_state = 61}, - [3753] = {.lex_state = 61}, - [3754] = {.lex_state = 61}, - [3755] = {.lex_state = 61}, - [3756] = {.lex_state = 61}, - [3757] = {.lex_state = 365}, - [3758] = {.lex_state = 845}, - [3759] = {.lex_state = 845}, - [3760] = {.lex_state = 61}, - [3761] = {.lex_state = 61}, - [3762] = {.lex_state = 61}, - [3763] = {.lex_state = 61}, - [3764] = {.lex_state = 61}, - [3765] = {.lex_state = 2875}, - [3766] = {.lex_state = 60}, - [3767] = {.lex_state = 809}, - [3768] = {.lex_state = 809}, - [3769] = {.lex_state = 809}, - [3770] = {.lex_state = 809}, - [3771] = {.lex_state = 809}, - [3772] = {.lex_state = 809}, - [3773] = {.lex_state = 809}, - [3774] = {.lex_state = 809}, - [3775] = {.lex_state = 809}, - [3776] = {.lex_state = 809}, - [3777] = {.lex_state = 809}, - [3778] = {.lex_state = 809}, - [3779] = {.lex_state = 809}, - [3780] = {.lex_state = 809}, - [3781] = {.lex_state = 809}, - [3782] = {.lex_state = 809}, - [3783] = {.lex_state = 96}, - [3784] = {.lex_state = 96}, - [3785] = {.lex_state = 96}, - [3786] = {.lex_state = 809}, - [3787] = {.lex_state = 96}, - [3788] = {.lex_state = 809}, - [3789] = {.lex_state = 96}, - [3790] = {.lex_state = 809}, - [3791] = {.lex_state = 96}, - [3792] = {.lex_state = 809}, - [3793] = {.lex_state = 809}, - [3794] = {.lex_state = 809}, - [3795] = {.lex_state = 96}, - [3796] = {.lex_state = 809}, - [3797] = {.lex_state = 809}, - [3798] = {.lex_state = 96}, - [3799] = {.lex_state = 809}, - [3800] = {.lex_state = 96}, - [3801] = {.lex_state = 809}, - [3802] = {.lex_state = 809}, - [3803] = {.lex_state = 809}, - [3804] = {.lex_state = 96}, - [3805] = {.lex_state = 96}, - [3806] = {.lex_state = 96}, - [3807] = {.lex_state = 809}, - [3808] = {.lex_state = 809}, - [3809] = {.lex_state = 809}, - [3810] = {.lex_state = 809}, - [3811] = {.lex_state = 96}, - [3812] = {.lex_state = 96}, - [3813] = {.lex_state = 809}, - [3814] = {.lex_state = 96}, - [3815] = {.lex_state = 96}, - [3816] = {.lex_state = 96}, - [3817] = {.lex_state = 96}, - [3818] = {.lex_state = 96}, - [3819] = {.lex_state = 809}, - [3820] = {.lex_state = 809}, - [3821] = {.lex_state = 809}, - [3822] = {.lex_state = 809}, - [3823] = {.lex_state = 809}, - [3824] = {.lex_state = 809}, - [3825] = {.lex_state = 809}, - [3826] = {.lex_state = 809}, - [3827] = {.lex_state = 809}, - [3828] = {.lex_state = 809}, - [3829] = {.lex_state = 809}, - [3830] = {.lex_state = 828}, - [3831] = {.lex_state = 96}, - [3832] = {.lex_state = 96}, - [3833] = {.lex_state = 177}, - [3834] = {.lex_state = 96}, - [3835] = {.lex_state = 828}, - [3836] = {.lex_state = 96}, - [3837] = {.lex_state = 96}, - [3838] = {.lex_state = 96}, - [3839] = {.lex_state = 96}, - [3840] = {.lex_state = 809}, - [3841] = {.lex_state = 809}, - [3842] = {.lex_state = 828}, - [3843] = {.lex_state = 809}, - [3844] = {.lex_state = 809}, - [3845] = {.lex_state = 809}, - [3846] = {.lex_state = 828}, - [3847] = {.lex_state = 809}, - [3848] = {.lex_state = 809}, - [3849] = {.lex_state = 828}, - [3850] = {.lex_state = 809}, - [3851] = {.lex_state = 809}, - [3852] = {.lex_state = 809}, - [3853] = {.lex_state = 809}, - [3854] = {.lex_state = 2874}, - [3855] = {.lex_state = 809}, - [3856] = {.lex_state = 96}, - [3857] = {.lex_state = 809}, - [3858] = {.lex_state = 809}, - [3859] = {.lex_state = 96}, - [3860] = {.lex_state = 809}, - [3861] = {.lex_state = 809}, - [3862] = {.lex_state = 809}, - [3863] = {.lex_state = 809}, - [3864] = {.lex_state = 809}, - [3865] = {.lex_state = 809}, - [3866] = {.lex_state = 96}, - [3867] = {.lex_state = 96}, - [3868] = {.lex_state = 96}, - [3869] = {.lex_state = 177}, - [3870] = {.lex_state = 170}, - [3871] = {.lex_state = 177}, - [3872] = {.lex_state = 177}, - [3873] = {.lex_state = 96}, - [3874] = {.lex_state = 96}, - [3875] = {.lex_state = 96}, - [3876] = {.lex_state = 809}, - [3877] = {.lex_state = 96}, - [3878] = {.lex_state = 96}, - [3879] = {.lex_state = 96}, - [3880] = {.lex_state = 96}, - [3881] = {.lex_state = 809}, - [3882] = {.lex_state = 809}, - [3883] = {.lex_state = 809}, - [3884] = {.lex_state = 96}, - [3885] = {.lex_state = 96}, - [3886] = {.lex_state = 96}, - [3887] = {.lex_state = 809}, - [3888] = {.lex_state = 809}, - [3889] = {.lex_state = 809}, - [3890] = {.lex_state = 809}, - [3891] = {.lex_state = 809}, - [3892] = {.lex_state = 809}, - [3893] = {.lex_state = 809}, - [3894] = {.lex_state = 809}, - [3895] = {.lex_state = 809}, - [3896] = {.lex_state = 809}, - [3897] = {.lex_state = 809}, - [3898] = {.lex_state = 809}, - [3899] = {.lex_state = 96}, - [3900] = {.lex_state = 829}, - [3901] = {.lex_state = 829}, - [3902] = {.lex_state = 829}, - [3903] = {.lex_state = 829}, - [3904] = {.lex_state = 829}, - [3905] = {.lex_state = 829}, - [3906] = {.lex_state = 829}, - [3907] = {.lex_state = 829}, - [3908] = {.lex_state = 829}, - [3909] = {.lex_state = 829}, - [3910] = {.lex_state = 829}, - [3911] = {.lex_state = 829}, - [3912] = {.lex_state = 96}, - [3913] = {.lex_state = 96}, - [3914] = {.lex_state = 809}, - [3915] = {.lex_state = 809}, - [3916] = {.lex_state = 96}, - [3917] = {.lex_state = 96}, - [3918] = {.lex_state = 177}, - [3919] = {.lex_state = 96}, - [3920] = {.lex_state = 96}, - [3921] = {.lex_state = 809}, - [3922] = {.lex_state = 809}, - [3923] = {.lex_state = 96}, - [3924] = {.lex_state = 34}, - [3925] = {.lex_state = 96}, - [3926] = {.lex_state = 828}, - [3927] = {.lex_state = 809}, - [3928] = {.lex_state = 809}, - [3929] = {.lex_state = 809}, - [3930] = {.lex_state = 96}, - [3931] = {.lex_state = 96}, - [3932] = {.lex_state = 809}, - [3933] = {.lex_state = 809}, - [3934] = {.lex_state = 809}, - [3935] = {.lex_state = 809}, - [3936] = {.lex_state = 809}, - [3937] = {.lex_state = 809}, - [3938] = {.lex_state = 809}, - [3939] = {.lex_state = 809}, - [3940] = {.lex_state = 809}, - [3941] = {.lex_state = 61}, - [3942] = {.lex_state = 61}, - [3943] = {.lex_state = 61}, - [3944] = {.lex_state = 61}, - [3945] = {.lex_state = 61}, - [3946] = {.lex_state = 130}, - [3947] = {.lex_state = 876}, - [3948] = {.lex_state = 61}, - [3949] = {.lex_state = 809}, - [3950] = {.lex_state = 61}, - [3951] = {.lex_state = 809}, - [3952] = {.lex_state = 61}, - [3953] = {.lex_state = 61}, - [3954] = {.lex_state = 61}, - [3955] = {.lex_state = 809}, - [3956] = {.lex_state = 61}, - [3957] = {.lex_state = 61}, - [3958] = {.lex_state = 34}, - [3959] = {.lex_state = 130}, - [3960] = {.lex_state = 130}, - [3961] = {.lex_state = 130}, - [3962] = {.lex_state = 130}, - [3963] = {.lex_state = 130}, - [3964] = {.lex_state = 130}, - [3965] = {.lex_state = 169}, - [3966] = {.lex_state = 130}, - [3967] = {.lex_state = 61}, - [3968] = {.lex_state = 61}, - [3969] = {.lex_state = 130}, - [3970] = {.lex_state = 130}, - [3971] = {.lex_state = 130}, - [3972] = {.lex_state = 61}, - [3973] = {.lex_state = 61}, - [3974] = {.lex_state = 61}, - [3975] = {.lex_state = 130}, - [3976] = {.lex_state = 130}, - [3977] = {.lex_state = 130}, - [3978] = {.lex_state = 61}, - [3979] = {.lex_state = 61}, - [3980] = {.lex_state = 61}, - [3981] = {.lex_state = 130}, - [3982] = {.lex_state = 61}, - [3983] = {.lex_state = 61}, - [3984] = {.lex_state = 61}, - [3985] = {.lex_state = 130}, - [3986] = {.lex_state = 61}, - [3987] = {.lex_state = 130}, - [3988] = {.lex_state = 809}, - [3989] = {.lex_state = 61}, - [3990] = {.lex_state = 130}, - [3991] = {.lex_state = 61}, - [3992] = {.lex_state = 809}, - [3993] = {.lex_state = 130}, - [3994] = {.lex_state = 130}, - [3995] = {.lex_state = 61}, - [3996] = {.lex_state = 130}, - [3997] = {.lex_state = 61}, - [3998] = {.lex_state = 130}, - [3999] = {.lex_state = 809}, - [4000] = {.lex_state = 130}, - [4001] = {.lex_state = 61}, - [4002] = {.lex_state = 130}, - [4003] = {.lex_state = 61}, - [4004] = {.lex_state = 61}, - [4005] = {.lex_state = 61}, - [4006] = {.lex_state = 61}, - [4007] = {.lex_state = 61}, - [4008] = {.lex_state = 61}, - [4009] = {.lex_state = 130}, - [4010] = {.lex_state = 130}, - [4011] = {.lex_state = 845}, - [4012] = {.lex_state = 845}, - [4013] = {.lex_state = 845}, - [4014] = {.lex_state = 809}, - [4015] = {.lex_state = 809}, - [4016] = {.lex_state = 809}, - [4017] = {.lex_state = 845}, - [4018] = {.lex_state = 828}, - [4019] = {.lex_state = 809}, - [4020] = {.lex_state = 809}, - [4021] = {.lex_state = 845}, - [4022] = {.lex_state = 809}, - [4023] = {.lex_state = 845}, - [4024] = {.lex_state = 809}, - [4025] = {.lex_state = 809}, - [4026] = {.lex_state = 809}, - [4027] = {.lex_state = 809}, - [4028] = {.lex_state = 845}, - [4029] = {.lex_state = 845}, - [4030] = {.lex_state = 809}, - [4031] = {.lex_state = 845}, - [4032] = {.lex_state = 845}, - [4033] = {.lex_state = 845}, - [4034] = {.lex_state = 809}, - [4035] = {.lex_state = 876}, - [4036] = {.lex_state = 876}, - [4037] = {.lex_state = 876}, - [4038] = {.lex_state = 845}, - [4039] = {.lex_state = 876}, - [4040] = {.lex_state = 876}, - [4041] = {.lex_state = 809}, - [4042] = {.lex_state = 130}, - [4043] = {.lex_state = 130}, - [4044] = {.lex_state = 130}, - [4045] = {.lex_state = 130}, - [4046] = {.lex_state = 130}, - [4047] = {.lex_state = 130}, - [4048] = {.lex_state = 876}, - [4049] = {.lex_state = 809}, - [4050] = {.lex_state = 809}, - [4051] = {.lex_state = 809}, - [4052] = {.lex_state = 809}, - [4053] = {.lex_state = 809}, - [4054] = {.lex_state = 130}, - [4055] = {.lex_state = 876}, - [4056] = {.lex_state = 809}, - [4057] = {.lex_state = 130}, - [4058] = {.lex_state = 130}, - [4059] = {.lex_state = 130}, - [4060] = {.lex_state = 130}, - [4061] = {.lex_state = 809}, - [4062] = {.lex_state = 876}, - [4063] = {.lex_state = 828}, - [4064] = {.lex_state = 809}, - [4065] = {.lex_state = 130}, - [4066] = {.lex_state = 828}, - [4067] = {.lex_state = 912}, - [4068] = {.lex_state = 916}, - [4069] = {.lex_state = 916}, - [4070] = {.lex_state = 932}, - [4071] = {.lex_state = 913}, - [4072] = {.lex_state = 912}, - [4073] = {.lex_state = 916}, - [4074] = {.lex_state = 916}, - [4075] = {.lex_state = 932}, - [4076] = {.lex_state = 934}, - [4077] = {.lex_state = 916}, - [4078] = {.lex_state = 934}, - [4079] = {.lex_state = 934}, - [4080] = {.lex_state = 911}, - [4081] = {.lex_state = 913}, - [4082] = {.lex_state = 940}, - [4083] = {.lex_state = 916}, - [4084] = {.lex_state = 934}, - [4085] = {.lex_state = 914}, - [4086] = {.lex_state = 819}, - [4087] = {.lex_state = 934}, - [4088] = {.lex_state = 936}, - [4089] = {.lex_state = 934}, - [4090] = {.lex_state = 933}, - [4091] = {.lex_state = 940}, - [4092] = {.lex_state = 819}, - [4093] = {.lex_state = 819}, - [4094] = {.lex_state = 819}, - [4095] = {.lex_state = 819}, - [4096] = {.lex_state = 940}, - [4097] = {.lex_state = 917}, - [4098] = {.lex_state = 917}, - [4099] = {.lex_state = 934}, - [4100] = {.lex_state = 934}, - [4101] = {.lex_state = 911}, - [4102] = {.lex_state = 940}, - [4103] = {.lex_state = 917}, - [4104] = {.lex_state = 940}, - [4105] = {.lex_state = 917}, - [4106] = {.lex_state = 911}, - [4107] = {.lex_state = 917}, - [4108] = {.lex_state = 935}, - [4109] = {.lex_state = 940}, - [4110] = {.lex_state = 941}, - [4111] = {.lex_state = 911}, - [4112] = {.lex_state = 940}, - [4113] = {.lex_state = 911}, - [4114] = {.lex_state = 933}, - [4115] = {.lex_state = 914}, - [4116] = {.lex_state = 935}, - [4117] = {.lex_state = 938}, - [4118] = {.lex_state = 935}, - [4119] = {.lex_state = 935}, - [4120] = {.lex_state = 938}, - [4121] = {.lex_state = 938}, - [4122] = {.lex_state = 911}, - [4123] = {.lex_state = 917}, - [4124] = {.lex_state = 828}, - [4125] = {.lex_state = 940}, - [4126] = {.lex_state = 938}, - [4127] = {.lex_state = 911}, - [4128] = {.lex_state = 936}, - [4129] = {.lex_state = 911}, - [4130] = {.lex_state = 938}, - [4131] = {.lex_state = 942}, - [4132] = {.lex_state = 911}, - [4133] = {.lex_state = 938}, - [4134] = {.lex_state = 941}, - [4135] = {.lex_state = 942}, - [4136] = {.lex_state = 911}, - [4137] = {.lex_state = 911}, - [4138] = {.lex_state = 935}, - [4139] = {.lex_state = 828}, - [4140] = {.lex_state = 911}, - [4141] = {.lex_state = 935}, - [4142] = {.lex_state = 935}, - [4143] = {.lex_state = 938}, - [4144] = {.lex_state = 941}, - [4145] = {.lex_state = 938}, - [4146] = {.lex_state = 937}, - [4147] = {.lex_state = 941}, - [4148] = {.lex_state = 941}, - [4149] = {.lex_state = 935}, - [4150] = {.lex_state = 942}, - [4151] = {.lex_state = 942}, - [4152] = {.lex_state = 942}, - [4153] = {.lex_state = 118}, - [4154] = {.lex_state = 942}, - [4155] = {.lex_state = 933}, - [4156] = {.lex_state = 942}, - [4157] = {.lex_state = 933}, - [4158] = {.lex_state = 941}, - [4159] = {.lex_state = 941}, - [4160] = {.lex_state = 923}, - [4161] = {.lex_state = 941}, - [4162] = {.lex_state = 942}, - [4163] = {.lex_state = 939}, - [4164] = {.lex_state = 939}, - [4165] = {.lex_state = 942}, - [4166] = {.lex_state = 942}, - [4167] = {.lex_state = 103}, - [4168] = {.lex_state = 939}, - [4169] = {.lex_state = 939}, - [4170] = {.lex_state = 937}, - [4171] = {.lex_state = 941}, - [4172] = {.lex_state = 958}, - [4173] = {.lex_state = 939}, - [4174] = {.lex_state = 119}, - [4175] = {.lex_state = 943}, - [4176] = {.lex_state = 119}, - [4177] = {.lex_state = 933}, - [4178] = {.lex_state = 933}, - [4179] = {.lex_state = 925}, - [4180] = {.lex_state = 124}, - [4181] = {.lex_state = 925}, - [4182] = {.lex_state = 958}, - [4183] = {.lex_state = 107}, - [4184] = {.lex_state = 914}, - [4185] = {.lex_state = 119}, - [4186] = {.lex_state = 130}, - [4187] = {.lex_state = 943}, - [4188] = {.lex_state = 939}, - [4189] = {.lex_state = 943}, - [4190] = {.lex_state = 105}, - [4191] = {.lex_state = 939}, - [4192] = {.lex_state = 107}, - [4193] = {.lex_state = 923}, - [4194] = {.lex_state = 933}, - [4195] = {.lex_state = 925}, - [4196] = {.lex_state = 943}, - [4197] = {.lex_state = 104}, - [4198] = {.lex_state = 927}, - [4199] = {.lex_state = 107}, - [4200] = {.lex_state = 925}, - [4201] = {.lex_state = 933}, - [4202] = {.lex_state = 119}, - [4203] = {.lex_state = 941}, - [4204] = {.lex_state = 943}, - [4205] = {.lex_state = 939}, - [4206] = {.lex_state = 120}, - [4207] = {.lex_state = 125}, - [4208] = {.lex_state = 102}, - [4209] = {.lex_state = 102}, - [4210] = {.lex_state = 943}, - [4211] = {.lex_state = 930}, - [4212] = {.lex_state = 927}, - [4213] = {.lex_state = 121}, - [4214] = {.lex_state = 828}, - [4215] = {.lex_state = 828}, - [4216] = {.lex_state = 828}, - [4217] = {.lex_state = 920}, - [4218] = {.lex_state = 920}, - [4219] = {.lex_state = 920}, - [4220] = {.lex_state = 925}, - [4221] = {.lex_state = 920}, - [4222] = {.lex_state = 920}, - [4223] = {.lex_state = 927}, - [4224] = {.lex_state = 930}, - [4225] = {.lex_state = 120}, - [4226] = {.lex_state = 914}, - [4227] = {.lex_state = 120}, - [4228] = {.lex_state = 120}, - [4229] = {.lex_state = 108}, - [4230] = {.lex_state = 108}, - [4231] = {.lex_state = 102}, - [4232] = {.lex_state = 933}, - [4233] = {.lex_state = 925}, - [4234] = {.lex_state = 925}, - [4235] = {.lex_state = 108}, - [4236] = {.lex_state = 925}, - [4237] = {.lex_state = 102}, - [4238] = {.lex_state = 102}, - [4239] = {.lex_state = 130}, - [4240] = {.lex_state = 106}, - [4241] = {.lex_state = 125}, - [4242] = {.lex_state = 930}, - [4243] = {.lex_state = 125}, - [4244] = {.lex_state = 126}, - [4245] = {.lex_state = 125}, - [4246] = {.lex_state = 930}, - [4247] = {.lex_state = 943}, - [4248] = {.lex_state = 933}, - [4249] = {.lex_state = 943}, - [4250] = {.lex_state = 930}, - [4251] = {.lex_state = 930}, - [4252] = {.lex_state = 933}, - [4253] = {.lex_state = 924}, - [4254] = {.lex_state = 930}, - [4255] = {.lex_state = 943}, - [4256] = {.lex_state = 943}, - [4257] = {.lex_state = 911}, - [4258] = {.lex_state = 930}, - [4259] = {.lex_state = 122}, - [4260] = {.lex_state = 911}, - [4261] = {.lex_state = 828}, - [4262] = {.lex_state = 930}, - [4263] = {.lex_state = 966}, - [4264] = {.lex_state = 933}, - [4265] = {.lex_state = 966}, - [4266] = {.lex_state = 930}, - [4267] = {.lex_state = 122}, - [4268] = {.lex_state = 930}, - [4269] = {.lex_state = 69}, - [4270] = {.lex_state = 911}, - [4271] = {.lex_state = 911}, - [4272] = {.lex_state = 911}, - [4273] = {.lex_state = 828}, - [4274] = {.lex_state = 911}, - [4275] = {.lex_state = 911}, - [4276] = {.lex_state = 828}, - [4277] = {.lex_state = 966}, - [4278] = {.lex_state = 911}, - [4279] = {.lex_state = 928}, - [4280] = {.lex_state = 911}, - [4281] = {.lex_state = 911}, - [4282] = {.lex_state = 122}, - [4283] = {.lex_state = 911}, - [4284] = {.lex_state = 911}, - [4285] = {.lex_state = 911}, - [4286] = {.lex_state = 911}, - [4287] = {.lex_state = 911}, - [4288] = {.lex_state = 933}, - [4289] = {.lex_state = 933}, - [4290] = {.lex_state = 927}, - [4291] = {.lex_state = 911}, - [4292] = {.lex_state = 926}, - [4293] = {.lex_state = 933}, - [4294] = {.lex_state = 930}, - [4295] = {.lex_state = 126}, - [4296] = {.lex_state = 828}, - [4297] = {.lex_state = 966}, - [4298] = {.lex_state = 126}, - [4299] = {.lex_state = 911}, - [4300] = {.lex_state = 926}, - [4301] = {.lex_state = 828}, - [4302] = {.lex_state = 126}, - [4303] = {.lex_state = 911}, - [4304] = {.lex_state = 828}, - [4305] = {.lex_state = 911}, - [4306] = {.lex_state = 920}, - [4307] = {.lex_state = 920}, - [4308] = {.lex_state = 911}, - [4309] = {.lex_state = 911}, - [4310] = {.lex_state = 911}, - [4311] = {.lex_state = 930}, - [4312] = {.lex_state = 69}, - [4313] = {.lex_state = 911}, - [4314] = {.lex_state = 911}, - [4315] = {.lex_state = 127}, - [4316] = {.lex_state = 911}, - [4317] = {.lex_state = 920}, - [4318] = {.lex_state = 966}, - [4319] = {.lex_state = 920}, - [4320] = {.lex_state = 920}, - [4321] = {.lex_state = 828}, - [4322] = {.lex_state = 911}, - [4323] = {.lex_state = 828}, - [4324] = {.lex_state = 828}, - [4325] = {.lex_state = 828}, - [4326] = {.lex_state = 828}, - [4327] = {.lex_state = 926}, - [4328] = {.lex_state = 122}, - [4329] = {.lex_state = 930}, - [4330] = {.lex_state = 926}, - [4331] = {.lex_state = 911}, - [4332] = {.lex_state = 911}, - [4333] = {.lex_state = 911}, - [4334] = {.lex_state = 3160}, - [4335] = {.lex_state = 924}, - [4336] = {.lex_state = 911}, - [4337] = {.lex_state = 911}, - [4338] = {.lex_state = 928}, - [4339] = {.lex_state = 69}, - [4340] = {.lex_state = 931}, - [4341] = {.lex_state = 961}, - [4342] = {.lex_state = 911}, - [4343] = {.lex_state = 926}, - [4344] = {.lex_state = 931}, - [4345] = {.lex_state = 911}, - [4346] = {.lex_state = 966}, - [4347] = {.lex_state = 966}, - [4348] = {.lex_state = 911}, - [4349] = {.lex_state = 966}, - [4350] = {.lex_state = 933}, - [4351] = {.lex_state = 911}, - [4352] = {.lex_state = 911}, - [4353] = {.lex_state = 931}, - [4354] = {.lex_state = 831}, - [4355] = {.lex_state = 123}, - [4356] = {.lex_state = 911}, - [4357] = {.lex_state = 911}, - [4358] = {.lex_state = 911}, - [4359] = {.lex_state = 911}, - [4360] = {.lex_state = 933}, - [4361] = {.lex_state = 931}, - [4362] = {.lex_state = 911}, - [4363] = {.lex_state = 911}, - [4364] = {.lex_state = 933}, - [4365] = {.lex_state = 933}, - [4366] = {.lex_state = 911}, - [4367] = {.lex_state = 831}, - [4368] = {.lex_state = 911}, - [4369] = {.lex_state = 3160}, - [4370] = {.lex_state = 931}, - [4371] = {.lex_state = 926}, - [4372] = {.lex_state = 828}, - [4373] = {.lex_state = 69}, - [4374] = {.lex_state = 911}, - [4375] = {.lex_state = 69}, - [4376] = {.lex_state = 828}, - [4377] = {.lex_state = 926}, - [4378] = {.lex_state = 931}, - [4379] = {.lex_state = 123}, - [4380] = {.lex_state = 123}, - [4381] = {.lex_state = 123}, - [4382] = {.lex_state = 911}, - [4383] = {.lex_state = 911}, - [4384] = {.lex_state = 933}, - [4385] = {.lex_state = 926}, - [4386] = {.lex_state = 911}, - [4387] = {.lex_state = 966}, - [4388] = {.lex_state = 933}, - [4389] = {.lex_state = 933}, - [4390] = {.lex_state = 933}, - [4391] = {.lex_state = 128}, - [4392] = {.lex_state = 128}, - [4393] = {.lex_state = 911}, - [4394] = {.lex_state = 911}, - [4395] = {.lex_state = 128}, - [4396] = {.lex_state = 966}, - [4397] = {.lex_state = 69}, - [4398] = {.lex_state = 128}, - [4399] = {.lex_state = 933}, - [4400] = {.lex_state = 123}, - [4401] = {.lex_state = 933}, - [4402] = {.lex_state = 911}, - [4403] = {.lex_state = 911}, - [4404] = {.lex_state = 911}, - [4405] = {.lex_state = 828}, - [4406] = {.lex_state = 931}, - [4407] = {.lex_state = 933}, - [4408] = {.lex_state = 911}, - [4409] = {.lex_state = 933}, - [4410] = {.lex_state = 69}, - [4411] = {.lex_state = 933}, - [4412] = {.lex_state = 928}, - [4413] = {.lex_state = 911}, - [4414] = {.lex_state = 911}, - [4415] = {.lex_state = 911}, - [4416] = {.lex_state = 911}, - [4417] = {.lex_state = 911}, - [4418] = {.lex_state = 911}, - [4419] = {.lex_state = 867}, - [4420] = {.lex_state = 867}, - [4421] = {.lex_state = 867}, - [4422] = {.lex_state = 867}, - [4423] = {.lex_state = 867}, - [4424] = {.lex_state = 867}, - [4425] = {.lex_state = 867}, - [4426] = {.lex_state = 129}, - [4427] = {.lex_state = 867}, - [4428] = {.lex_state = 867}, - [4429] = {.lex_state = 817}, - [4430] = {.lex_state = 867}, - [4431] = {.lex_state = 924}, - [4432] = {.lex_state = 867}, - [4433] = {.lex_state = 867}, - [4434] = {.lex_state = 928}, - [4435] = {.lex_state = 867}, - [4436] = {.lex_state = 867}, - [4437] = {.lex_state = 931}, - [4438] = {.lex_state = 867}, - [4439] = {.lex_state = 867}, - [4440] = {.lex_state = 867}, - [4441] = {.lex_state = 933}, - [4442] = {.lex_state = 967}, - [4443] = {.lex_state = 867}, - [4444] = {.lex_state = 867}, - [4445] = {.lex_state = 867}, - [4446] = {.lex_state = 867}, - [4447] = {.lex_state = 867}, - [4448] = {.lex_state = 867}, - [4449] = {.lex_state = 933}, - [4450] = {.lex_state = 867}, - [4451] = {.lex_state = 933}, - [4452] = {.lex_state = 867}, - [4453] = {.lex_state = 867}, - [4454] = {.lex_state = 867}, - [4455] = {.lex_state = 867}, - [4456] = {.lex_state = 867}, - [4457] = {.lex_state = 867}, - [4458] = {.lex_state = 867}, - [4459] = {.lex_state = 867}, - [4460] = {.lex_state = 867}, - [4461] = {.lex_state = 931}, - [4462] = {.lex_state = 931}, - [4463] = {.lex_state = 867}, - [4464] = {.lex_state = 867}, - [4465] = {.lex_state = 867}, - [4466] = {.lex_state = 867}, - [4467] = {.lex_state = 867}, - [4468] = {.lex_state = 867}, - [4469] = {.lex_state = 867}, - [4470] = {.lex_state = 3161}, - [4471] = {.lex_state = 867}, - [4472] = {.lex_state = 960}, - [4473] = {.lex_state = 867}, - [4474] = {.lex_state = 867}, - [4475] = {.lex_state = 867}, - [4476] = {.lex_state = 867}, - [4477] = {.lex_state = 867}, - [4478] = {.lex_state = 867}, - [4479] = {.lex_state = 867}, - [4480] = {.lex_state = 867}, - [4481] = {.lex_state = 867}, - [4482] = {.lex_state = 867}, - [4483] = {.lex_state = 867}, - [4484] = {.lex_state = 867}, - [4485] = {.lex_state = 867}, - [4486] = {.lex_state = 867}, - [4487] = {.lex_state = 867}, - [4488] = {.lex_state = 928}, - [4489] = {.lex_state = 911}, - [4490] = {.lex_state = 867}, - [4491] = {.lex_state = 911}, - [4492] = {.lex_state = 867}, - [4493] = {.lex_state = 867}, - [4494] = {.lex_state = 867}, - [4495] = {.lex_state = 867}, - [4496] = {.lex_state = 817}, - [4497] = {.lex_state = 867}, - [4498] = {.lex_state = 867}, - [4499] = {.lex_state = 144}, - [4500] = {.lex_state = 967}, - [4501] = {.lex_state = 867}, - [4502] = {.lex_state = 867}, - [4503] = {.lex_state = 967}, - [4504] = {.lex_state = 933}, - [4505] = {.lex_state = 957}, - [4506] = {.lex_state = 867}, - [4507] = {.lex_state = 867}, - [4508] = {.lex_state = 867}, - [4509] = {.lex_state = 867}, - [4510] = {.lex_state = 867}, - [4511] = {.lex_state = 867}, - [4512] = {.lex_state = 867}, - [4513] = {.lex_state = 867}, - [4514] = {.lex_state = 867}, - [4515] = {.lex_state = 911}, - [4516] = {.lex_state = 867}, - [4517] = {.lex_state = 867}, - [4518] = {.lex_state = 867}, - [4519] = {.lex_state = 110}, - [4520] = {.lex_state = 867}, - [4521] = {.lex_state = 867}, - [4522] = {.lex_state = 867}, - [4523] = {.lex_state = 867}, - [4524] = {.lex_state = 931}, - [4525] = {.lex_state = 867}, - [4526] = {.lex_state = 933}, - [4527] = {.lex_state = 831}, - [4528] = {.lex_state = 911}, - [4529] = {.lex_state = 867}, - [4530] = {.lex_state = 957}, - [4531] = {.lex_state = 867}, - [4532] = {.lex_state = 867}, - [4533] = {.lex_state = 931}, - [4534] = {.lex_state = 957}, - [4535] = {.lex_state = 867}, - [4536] = {.lex_state = 957}, - [4537] = {.lex_state = 867}, - [4538] = {.lex_state = 867}, - [4539] = {.lex_state = 867}, - [4540] = {.lex_state = 867}, - [4541] = {.lex_state = 867}, - [4542] = {.lex_state = 129}, - [4543] = {.lex_state = 867}, - [4544] = {.lex_state = 933}, - [4545] = {.lex_state = 961}, - [4546] = {.lex_state = 69}, - [4547] = {.lex_state = 69}, - [4548] = {.lex_state = 129}, - [4549] = {.lex_state = 867}, - [4550] = {.lex_state = 129}, - [4551] = {.lex_state = 933}, - [4552] = {.lex_state = 867}, - [4553] = {.lex_state = 817}, - [4554] = {.lex_state = 867}, - [4555] = {.lex_state = 129}, - [4556] = {.lex_state = 931}, - [4557] = {.lex_state = 867}, - [4558] = {.lex_state = 933}, - [4559] = {.lex_state = 867}, - [4560] = {.lex_state = 933}, - [4561] = {.lex_state = 911}, - [4562] = {.lex_state = 867}, - [4563] = {.lex_state = 867}, - [4564] = {.lex_state = 957}, - [4565] = {.lex_state = 867}, - [4566] = {.lex_state = 867}, - [4567] = {.lex_state = 867}, - [4568] = {.lex_state = 947}, - [4569] = {.lex_state = 867}, - [4570] = {.lex_state = 911}, - [4571] = {.lex_state = 867}, - [4572] = {.lex_state = 867}, - [4573] = {.lex_state = 867}, - [4574] = {.lex_state = 867}, - [4575] = {.lex_state = 867}, - [4576] = {.lex_state = 867}, - [4577] = {.lex_state = 867}, - [4578] = {.lex_state = 867}, - [4579] = {.lex_state = 867}, - [4580] = {.lex_state = 867}, - [4581] = {.lex_state = 69}, - [4582] = {.lex_state = 867}, - [4583] = {.lex_state = 911}, - [4584] = {.lex_state = 867}, - [4585] = {.lex_state = 967}, - [4586] = {.lex_state = 967}, - [4587] = {.lex_state = 867}, - [4588] = {.lex_state = 920}, - [4589] = {.lex_state = 867}, - [4590] = {.lex_state = 867}, - [4591] = {.lex_state = 933}, - [4592] = {.lex_state = 69}, - [4593] = {.lex_state = 69}, - [4594] = {.lex_state = 867}, - [4595] = {.lex_state = 931}, - [4596] = {.lex_state = 867}, - [4597] = {.lex_state = 867}, - [4598] = {.lex_state = 867}, - [4599] = {.lex_state = 867}, - [4600] = {.lex_state = 867}, - [4601] = {.lex_state = 867}, - [4602] = {.lex_state = 142}, - [4603] = {.lex_state = 867}, - [4604] = {.lex_state = 911}, - [4605] = {.lex_state = 911}, - [4606] = {.lex_state = 109}, - [4607] = {.lex_state = 867}, - [4608] = {.lex_state = 109}, - [4609] = {.lex_state = 867}, - [4610] = {.lex_state = 867}, - [4611] = {.lex_state = 109}, - [4612] = {.lex_state = 69}, - [4613] = {.lex_state = 69}, - [4614] = {.lex_state = 69}, - [4615] = {.lex_state = 109}, - [4616] = {.lex_state = 109}, - [4617] = {.lex_state = 112}, - [4618] = {.lex_state = 69}, - [4619] = {.lex_state = 111}, - [4620] = {.lex_state = 911}, - [4621] = {.lex_state = 911}, - [4622] = {.lex_state = 69}, - [4623] = {.lex_state = 928}, - [4624] = {.lex_state = 109}, - [4625] = {.lex_state = 109}, - [4626] = {.lex_state = 957}, - [4627] = {.lex_state = 109}, - [4628] = {.lex_state = 883}, - [4629] = {.lex_state = 967}, - [4630] = {.lex_state = 867}, - [4631] = {.lex_state = 867}, - [4632] = {.lex_state = 911}, - [4633] = {.lex_state = 911}, - [4634] = {.lex_state = 911}, - [4635] = {.lex_state = 957}, - [4636] = {.lex_state = 370}, - [4637] = {.lex_state = 831}, - [4638] = {.lex_state = 920}, - [4639] = {.lex_state = 831}, - [4640] = {.lex_state = 967}, - [4641] = {.lex_state = 109}, - [4642] = {.lex_state = 867}, - [4643] = {.lex_state = 911}, - [4644] = {.lex_state = 867}, - [4645] = {.lex_state = 112}, - [4646] = {.lex_state = 924}, - [4647] = {.lex_state = 109}, - [4648] = {.lex_state = 112}, - [4649] = {.lex_state = 967}, - [4650] = {.lex_state = 867}, - [4651] = {.lex_state = 109}, - [4652] = {.lex_state = 867}, - [4653] = {.lex_state = 867}, - [4654] = {.lex_state = 144}, - [4655] = {.lex_state = 867}, - [4656] = {.lex_state = 867}, - [4657] = {.lex_state = 867}, - [4658] = {.lex_state = 883}, - [4659] = {.lex_state = 144}, - [4660] = {.lex_state = 69}, - [4661] = {.lex_state = 867}, - [4662] = {.lex_state = 960}, - [4663] = {.lex_state = 69}, - [4664] = {.lex_state = 69}, - [4665] = {.lex_state = 144}, - [4666] = {.lex_state = 69}, - [4667] = {.lex_state = 867}, - [4668] = {.lex_state = 69}, - [4669] = {.lex_state = 69}, - [4670] = {.lex_state = 867}, - [4671] = {.lex_state = 370}, - [4672] = {.lex_state = 831}, - [4673] = {.lex_state = 867}, - [4674] = {.lex_state = 911}, - [4675] = {.lex_state = 911}, - [4676] = {.lex_state = 883}, - [4677] = {.lex_state = 109}, - [4678] = {.lex_state = 911}, - [4679] = {.lex_state = 69}, - [4680] = {.lex_state = 867}, - [4681] = {.lex_state = 3161}, - [4682] = {.lex_state = 109}, - [4683] = {.lex_state = 69}, - [4684] = {.lex_state = 109}, - [4685] = {.lex_state = 963}, - [4686] = {.lex_state = 883}, - [4687] = {.lex_state = 109}, - [4688] = {.lex_state = 867}, - [4689] = {.lex_state = 867}, - [4690] = {.lex_state = 20}, - [4691] = {.lex_state = 957}, - [4692] = {.lex_state = 867}, - [4693] = {.lex_state = 109}, - [4694] = {.lex_state = 370}, - [4695] = {.lex_state = 867}, - [4696] = {.lex_state = 109}, - [4697] = {.lex_state = 947}, - [4698] = {.lex_state = 867}, - [4699] = {.lex_state = 114}, - [4700] = {.lex_state = 911}, - [4701] = {.lex_state = 3161}, - [4702] = {.lex_state = 831}, - [4703] = {.lex_state = 867}, - [4704] = {.lex_state = 69}, - [4705] = {.lex_state = 948}, - [4706] = {.lex_state = 867}, - [4707] = {.lex_state = 20}, - [4708] = {.lex_state = 867}, - [4709] = {.lex_state = 69}, - [4710] = {.lex_state = 109}, - [4711] = {.lex_state = 109}, - [4712] = {.lex_state = 948}, - [4713] = {.lex_state = 957}, - [4714] = {.lex_state = 957}, - [4715] = {.lex_state = 911}, - [4716] = {.lex_state = 69}, - [4717] = {.lex_state = 867}, - [4718] = {.lex_state = 876}, - [4719] = {.lex_state = 948}, - [4720] = {.lex_state = 920}, - [4721] = {.lex_state = 920}, - [4722] = {.lex_state = 109}, - [4723] = {.lex_state = 867}, - [4724] = {.lex_state = 109}, - [4725] = {.lex_state = 112}, - [4726] = {.lex_state = 948}, - [4727] = {.lex_state = 967}, - [4728] = {.lex_state = 867}, - [4729] = {.lex_state = 867}, - [4730] = {.lex_state = 967}, - [4731] = {.lex_state = 109}, - [4732] = {.lex_state = 867}, - [4733] = {.lex_state = 867}, - [4734] = {.lex_state = 883}, - [4735] = {.lex_state = 867}, - [4736] = {.lex_state = 69}, - [4737] = {.lex_state = 109}, - [4738] = {.lex_state = 867}, - [4739] = {.lex_state = 69}, - [4740] = {.lex_state = 69}, - [4741] = {.lex_state = 876}, - [4742] = {.lex_state = 370}, - [4743] = {.lex_state = 69}, - [4744] = {.lex_state = 867}, - [4745] = {.lex_state = 867}, - [4746] = {.lex_state = 883}, - [4747] = {.lex_state = 883}, - [4748] = {.lex_state = 883}, - [4749] = {.lex_state = 883}, - [4750] = {.lex_state = 883}, - [4751] = {.lex_state = 831}, - [4752] = {.lex_state = 867}, - [4753] = {.lex_state = 883}, - [4754] = {.lex_state = 372}, - [4755] = {.lex_state = 867}, - [4756] = {.lex_state = 883}, - [4757] = {.lex_state = 883}, - [4758] = {.lex_state = 883}, - [4759] = {.lex_state = 883}, - [4760] = {.lex_state = 883}, - [4761] = {.lex_state = 883}, - [4762] = {.lex_state = 867}, - [4763] = {.lex_state = 883}, - [4764] = {.lex_state = 867}, - [4765] = {.lex_state = 883}, - [4766] = {.lex_state = 109}, - [4767] = {.lex_state = 883}, - [4768] = {.lex_state = 911}, - [4769] = {.lex_state = 883}, - [4770] = {.lex_state = 69}, - [4771] = {.lex_state = 883}, - [4772] = {.lex_state = 883}, - [4773] = {.lex_state = 920}, - [4774] = {.lex_state = 883}, - [4775] = {.lex_state = 883}, - [4776] = {.lex_state = 883}, - [4777] = {.lex_state = 113}, - [4778] = {.lex_state = 920}, - [4779] = {.lex_state = 883}, - [4780] = {.lex_state = 883}, - [4781] = {.lex_state = 883}, - [4782] = {.lex_state = 883}, - [4783] = {.lex_state = 883}, - [4784] = {.lex_state = 69}, - [4785] = {.lex_state = 20}, - [4786] = {.lex_state = 883}, - [4787] = {.lex_state = 945}, - [4788] = {.lex_state = 867}, - [4789] = {.lex_state = 113}, - [4790] = {.lex_state = 116}, - [4791] = {.lex_state = 911}, - [4792] = {.lex_state = 867}, - [4793] = {.lex_state = 883}, - [4794] = {.lex_state = 883}, - [4795] = {.lex_state = 867}, - [4796] = {.lex_state = 948}, - [4797] = {.lex_state = 883}, - [4798] = {.lex_state = 883}, - [4799] = {.lex_state = 883}, - [4800] = {.lex_state = 883}, - [4801] = {.lex_state = 867}, - [4802] = {.lex_state = 116}, - [4803] = {.lex_state = 911}, - [4804] = {.lex_state = 883}, - [4805] = {.lex_state = 883}, - [4806] = {.lex_state = 69}, - [4807] = {.lex_state = 911}, - [4808] = {.lex_state = 948}, - [4809] = {.lex_state = 113}, - [4810] = {.lex_state = 867}, - [4811] = {.lex_state = 867}, - [4812] = {.lex_state = 116}, - [4813] = {.lex_state = 883}, - [4814] = {.lex_state = 948}, - [4815] = {.lex_state = 876}, - [4816] = {.lex_state = 883}, - [4817] = {.lex_state = 883}, - [4818] = {.lex_state = 116}, - [4819] = {.lex_state = 920}, - [4820] = {.lex_state = 831}, - [4821] = {.lex_state = 20}, - [4822] = {.lex_state = 883}, - [4823] = {.lex_state = 948}, - [4824] = {.lex_state = 867}, - [4825] = {.lex_state = 883}, - [4826] = {.lex_state = 109}, - [4827] = {.lex_state = 883}, - [4828] = {.lex_state = 883}, - [4829] = {.lex_state = 867}, - [4830] = {.lex_state = 69}, - [4831] = {.lex_state = 883}, - [4832] = {.lex_state = 883}, - [4833] = {.lex_state = 883}, - [4834] = {.lex_state = 949}, - [4835] = {.lex_state = 883}, - [4836] = {.lex_state = 109}, - [4837] = {.lex_state = 111}, - [4838] = {.lex_state = 867}, - [4839] = {.lex_state = 883}, - [4840] = {.lex_state = 69}, - [4841] = {.lex_state = 883}, - [4842] = {.lex_state = 883}, - [4843] = {.lex_state = 883}, - [4844] = {.lex_state = 883}, - [4845] = {.lex_state = 949}, - [4846] = {.lex_state = 69}, - [4847] = {.lex_state = 867}, - [4848] = {.lex_state = 867}, - [4849] = {.lex_state = 883}, - [4850] = {.lex_state = 69}, - [4851] = {.lex_state = 883}, - [4852] = {.lex_state = 69}, - [4853] = {.lex_state = 949}, - [4854] = {.lex_state = 963}, - [4855] = {.lex_state = 69}, - [4856] = {.lex_state = 883}, - [4857] = {.lex_state = 867}, - [4858] = {.lex_state = 69}, - [4859] = {.lex_state = 883}, - [4860] = {.lex_state = 867}, - [4861] = {.lex_state = 949}, - [4862] = {.lex_state = 883}, - [4863] = {.lex_state = 109}, - [4864] = {.lex_state = 109}, - [4865] = {.lex_state = 883}, - [4866] = {.lex_state = 883}, - [4867] = {.lex_state = 883}, - [4868] = {.lex_state = 883}, - [4869] = {.lex_state = 883}, - [4870] = {.lex_state = 69}, - [4871] = {.lex_state = 911}, - [4872] = {.lex_state = 883}, - [4873] = {.lex_state = 883}, - [4874] = {.lex_state = 911}, - [4875] = {.lex_state = 911}, - [4876] = {.lex_state = 867}, - [4877] = {.lex_state = 883}, - [4878] = {.lex_state = 69}, - [4879] = {.lex_state = 113}, - [4880] = {.lex_state = 883}, - [4881] = {.lex_state = 867}, - [4882] = {.lex_state = 20}, - [4883] = {.lex_state = 883}, - [4884] = {.lex_state = 883}, - [4885] = {.lex_state = 883}, - [4886] = {.lex_state = 883}, - [4887] = {.lex_state = 867}, - [4888] = {.lex_state = 883}, - [4889] = {.lex_state = 883}, - [4890] = {.lex_state = 876}, - [4891] = {.lex_state = 69}, - [4892] = {.lex_state = 883}, - [4893] = {.lex_state = 113}, - [4894] = {.lex_state = 883}, - [4895] = {.lex_state = 113}, - [4896] = {.lex_state = 883}, - [4897] = {.lex_state = 883}, - [4898] = {.lex_state = 883}, - [4899] = {.lex_state = 883}, - [4900] = {.lex_state = 867}, - [4901] = {.lex_state = 876}, - [4902] = {.lex_state = 876}, - [4903] = {.lex_state = 883}, - [4904] = {.lex_state = 115}, - [4905] = {.lex_state = 911}, - [4906] = {.lex_state = 883}, - [4907] = {.lex_state = 883}, - [4908] = {.lex_state = 883}, - [4909] = {.lex_state = 69}, - [4910] = {.lex_state = 920}, - [4911] = {.lex_state = 831}, - [4912] = {.lex_state = 883}, - [4913] = {.lex_state = 883}, - [4914] = {.lex_state = 883}, - [4915] = {.lex_state = 69}, - [4916] = {.lex_state = 883}, - [4917] = {.lex_state = 3161}, - [4918] = {.lex_state = 113}, - [4919] = {.lex_state = 867}, - [4920] = {.lex_state = 136}, - [4921] = {.lex_state = 945}, - [4922] = {.lex_state = 946}, - [4923] = {.lex_state = 395}, - [4924] = {.lex_state = 883}, - [4925] = {.lex_state = 883}, - [4926] = {.lex_state = 883}, - [4927] = {.lex_state = 883}, - [4928] = {.lex_state = 109}, - [4929] = {.lex_state = 109}, - [4930] = {.lex_state = 883}, - [4931] = {.lex_state = 883}, - [4932] = {.lex_state = 876}, - [4933] = {.lex_state = 876}, - [4934] = {.lex_state = 161}, - [4935] = {.lex_state = 876}, - [4936] = {.lex_state = 2}, - [4937] = {.lex_state = 2}, - [4938] = {.lex_state = 179}, - [4939] = {.lex_state = 883}, - [4940] = {.lex_state = 876}, - [4941] = {.lex_state = 161}, - [4942] = {.lex_state = 392}, - [4943] = {.lex_state = 876}, - [4944] = {.lex_state = 161}, - [4945] = {.lex_state = 161}, - [4946] = {.lex_state = 883}, - [4947] = {.lex_state = 883}, - [4948] = {.lex_state = 109}, - [4949] = {.lex_state = 109}, - [4950] = {.lex_state = 867}, - [4951] = {.lex_state = 378}, - [4952] = {.lex_state = 161}, - [4953] = {.lex_state = 69}, - [4954] = {.lex_state = 69}, - [4955] = {.lex_state = 69}, - [4956] = {.lex_state = 876}, - [4957] = {.lex_state = 876}, - [4958] = {.lex_state = 69}, - [4959] = {.lex_state = 69}, - [4960] = {.lex_state = 876}, - [4961] = {.lex_state = 374}, - [4962] = {.lex_state = 876}, - [4963] = {.lex_state = 69}, - [4964] = {.lex_state = 109}, - [4965] = {.lex_state = 109}, - [4966] = {.lex_state = 69}, - [4967] = {.lex_state = 69}, - [4968] = {.lex_state = 867}, - [4969] = {.lex_state = 876}, - [4970] = {.lex_state = 876}, - [4971] = {.lex_state = 876}, - [4972] = {.lex_state = 876}, - [4973] = {.lex_state = 317}, - [4974] = {.lex_state = 317}, - [4975] = {.lex_state = 109}, - [4976] = {.lex_state = 317}, - [4977] = {.lex_state = 69}, - [4978] = {.lex_state = 69}, - [4979] = {.lex_state = 373}, - [4980] = {.lex_state = 3815}, - [4981] = {.lex_state = 379}, - [4982] = {.lex_state = 69}, - [4983] = {.lex_state = 69}, - [4984] = {.lex_state = 949}, - [4985] = {.lex_state = 117}, - [4986] = {.lex_state = 949}, - [4987] = {.lex_state = 117}, - [4988] = {.lex_state = 949}, - [4989] = {.lex_state = 117}, - [4990] = {.lex_state = 883}, - [4991] = {.lex_state = 883}, - [4992] = {.lex_state = 883}, - [4993] = {.lex_state = 883}, - [4994] = {.lex_state = 883}, - [4995] = {.lex_state = 883}, - [4996] = {.lex_state = 69}, - [4997] = {.lex_state = 69}, - [4998] = {.lex_state = 883}, - [4999] = {.lex_state = 109}, - [5000] = {.lex_state = 883}, - [5001] = {.lex_state = 117}, - [5002] = {.lex_state = 143}, - [5003] = {.lex_state = 117}, - [5004] = {.lex_state = 117}, - [5005] = {.lex_state = 117}, - [5006] = {.lex_state = 876}, - [5007] = {.lex_state = 883}, - [5008] = {.lex_state = 883}, - [5009] = {.lex_state = 883}, - [5010] = {.lex_state = 69}, - [5011] = {.lex_state = 69}, - [5012] = {.lex_state = 876}, - [5013] = {.lex_state = 876}, - [5014] = {.lex_state = 883}, - [5015] = {.lex_state = 876}, - [5016] = {.lex_state = 883}, - [5017] = {.lex_state = 876}, - [5018] = {.lex_state = 69}, - [5019] = {.lex_state = 69}, - [5020] = {.lex_state = 69}, - [5021] = {.lex_state = 69}, - [5022] = {.lex_state = 883}, - [5023] = {.lex_state = 883}, - [5024] = {.lex_state = 883}, - [5025] = {.lex_state = 376}, - [5026] = {.lex_state = 883}, - [5027] = {.lex_state = 883}, - [5028] = {.lex_state = 883}, - [5029] = {.lex_state = 883}, - [5030] = {.lex_state = 883}, - [5031] = {.lex_state = 876}, - [5032] = {.lex_state = 883}, - [5033] = {.lex_state = 883}, - [5034] = {.lex_state = 883}, - [5035] = {.lex_state = 883}, - [5036] = {.lex_state = 883}, - [5037] = {.lex_state = 883}, - [5038] = {.lex_state = 883}, - [5039] = {.lex_state = 883}, - [5040] = {.lex_state = 883}, - [5041] = {.lex_state = 876}, - [5042] = {.lex_state = 876}, - [5043] = {.lex_state = 883}, - [5044] = {.lex_state = 883}, - [5045] = {.lex_state = 883}, - [5046] = {.lex_state = 115}, - [5047] = {.lex_state = 883}, - [5048] = {.lex_state = 883}, - [5049] = {.lex_state = 883}, - [5050] = {.lex_state = 949}, - [5051] = {.lex_state = 883}, - [5052] = {.lex_state = 883}, - [5053] = {.lex_state = 883}, - [5054] = {.lex_state = 883}, - [5055] = {.lex_state = 883}, - [5056] = {.lex_state = 374}, - [5057] = {.lex_state = 374}, - [5058] = {.lex_state = 876}, - [5059] = {.lex_state = 883}, - [5060] = {.lex_state = 883}, - [5061] = {.lex_state = 2}, - [5062] = {.lex_state = 2}, - [5063] = {.lex_state = 179}, - [5064] = {.lex_state = 883}, - [5065] = {.lex_state = 883}, - [5066] = {.lex_state = 69}, - [5067] = {.lex_state = 883}, - [5068] = {.lex_state = 883}, - [5069] = {.lex_state = 876}, - [5070] = {.lex_state = 883}, - [5071] = {.lex_state = 109}, - [5072] = {.lex_state = 883}, - [5073] = {.lex_state = 883}, - [5074] = {.lex_state = 69}, - [5075] = {.lex_state = 69}, - [5076] = {.lex_state = 883}, - [5077] = {.lex_state = 883}, - [5078] = {.lex_state = 69}, - [5079] = {.lex_state = 883}, - [5080] = {.lex_state = 69}, - [5081] = {.lex_state = 883}, - [5082] = {.lex_state = 69}, - [5083] = {.lex_state = 883}, - [5084] = {.lex_state = 883}, - [5085] = {.lex_state = 69}, - [5086] = {.lex_state = 883}, - [5087] = {.lex_state = 883}, - [5088] = {.lex_state = 883}, - [5089] = {.lex_state = 883}, - [5090] = {.lex_state = 883}, - [5091] = {.lex_state = 883}, - [5092] = {.lex_state = 883}, - [5093] = {.lex_state = 883}, - [5094] = {.lex_state = 883}, - [5095] = {.lex_state = 883}, - [5096] = {.lex_state = 883}, - [5097] = {.lex_state = 876}, - [5098] = {.lex_state = 876}, - [5099] = {.lex_state = 69}, - [5100] = {.lex_state = 449}, - [5101] = {.lex_state = 69}, - [5102] = {.lex_state = 69}, - [5103] = {.lex_state = 69}, - [5104] = {.lex_state = 69}, - [5105] = {.lex_state = 69}, - [5106] = {.lex_state = 69}, - [5107] = {.lex_state = 69}, - [5108] = {.lex_state = 69}, - [5109] = {.lex_state = 69}, - [5110] = {.lex_state = 69}, - [5111] = {.lex_state = 69}, - [5112] = {.lex_state = 69}, - [5113] = {.lex_state = 69}, - [5114] = {.lex_state = 69}, - [5115] = {.lex_state = 69}, - [5116] = {.lex_state = 69}, - [5117] = {.lex_state = 69}, - [5118] = {.lex_state = 876}, - [5119] = {.lex_state = 162}, - [5120] = {.lex_state = 876}, - [5121] = {.lex_state = 69}, - [5122] = {.lex_state = 828}, - [5123] = {.lex_state = 876}, - [5124] = {.lex_state = 876}, - [5125] = {.lex_state = 69}, - [5126] = {.lex_state = 69}, - [5127] = {.lex_state = 69}, - [5128] = {.lex_state = 69}, - [5129] = {.lex_state = 69}, - [5130] = {.lex_state = 69}, - [5131] = {.lex_state = 876}, - [5132] = {.lex_state = 69}, - [5133] = {.lex_state = 134}, - [5134] = {.lex_state = 109}, - [5135] = {.lex_state = 377}, - [5136] = {.lex_state = 876}, - [5137] = {.lex_state = 828}, - [5138] = {.lex_state = 69}, - [5139] = {.lex_state = 69}, - [5140] = {.lex_state = 876}, - [5141] = {.lex_state = 876}, - [5142] = {.lex_state = 109}, - [5143] = {.lex_state = 876}, - [5144] = {.lex_state = 876}, - [5145] = {.lex_state = 876}, - [5146] = {.lex_state = 876}, - [5147] = {.lex_state = 69}, - [5148] = {.lex_state = 69}, - [5149] = {.lex_state = 876}, - [5150] = {.lex_state = 876}, - [5151] = {.lex_state = 876}, - [5152] = {.lex_state = 828}, - [5153] = {.lex_state = 876}, - [5154] = {.lex_state = 876}, - [5155] = {.lex_state = 380}, - [5156] = {.lex_state = 69}, - [5157] = {.lex_state = 69}, - [5158] = {.lex_state = 139}, - [5159] = {.lex_state = 396}, - [5160] = {.lex_state = 828}, - [5161] = {.lex_state = 396}, - [5162] = {.lex_state = 876}, - [5163] = {.lex_state = 381}, - [5164] = {.lex_state = 876}, - [5165] = {.lex_state = 145}, - [5166] = {.lex_state = 876}, - [5167] = {.lex_state = 69}, - [5168] = {.lex_state = 393}, - [5169] = {.lex_state = 69}, - [5170] = {.lex_state = 109}, - [5171] = {.lex_state = 393}, - [5172] = {.lex_state = 876}, - [5173] = {.lex_state = 876}, - [5174] = {.lex_state = 876}, - [5175] = {.lex_state = 396}, - [5176] = {.lex_state = 69}, - [5177] = {.lex_state = 69}, - [5178] = {.lex_state = 393}, - [5179] = {.lex_state = 69}, - [5180] = {.lex_state = 876}, - [5181] = {.lex_state = 876}, - [5182] = {.lex_state = 69}, - [5183] = {.lex_state = 69}, - [5184] = {.lex_state = 69}, - [5185] = {.lex_state = 876}, - [5186] = {.lex_state = 876}, - [5187] = {.lex_state = 876}, - [5188] = {.lex_state = 876}, - [5189] = {.lex_state = 876}, - [5190] = {.lex_state = 69}, - [5191] = {.lex_state = 876}, - [5192] = {.lex_state = 876}, - [5193] = {.lex_state = 396}, - [5194] = {.lex_state = 876}, - [5195] = {.lex_state = 876}, - [5196] = {.lex_state = 876}, - [5197] = {.lex_state = 876}, - [5198] = {.lex_state = 145}, - [5199] = {.lex_state = 876}, - [5200] = {.lex_state = 378}, - [5201] = {.lex_state = 145}, - [5202] = {.lex_state = 828}, - [5203] = {.lex_state = 959}, - [5204] = {.lex_state = 378}, - [5205] = {.lex_state = 876}, - [5206] = {.lex_state = 876}, - [5207] = {.lex_state = 378}, - [5208] = {.lex_state = 435}, - [5209] = {.lex_state = 876}, - [5210] = {.lex_state = 876}, - [5211] = {.lex_state = 876}, - [5212] = {.lex_state = 876}, - [5213] = {.lex_state = 876}, - [5214] = {.lex_state = 876}, - [5215] = {.lex_state = 876}, - [5216] = {.lex_state = 393}, - [5217] = {.lex_state = 876}, - [5218] = {.lex_state = 876}, - [5219] = {.lex_state = 876}, - [5220] = {.lex_state = 876}, - [5221] = {.lex_state = 876}, - [5222] = {.lex_state = 876}, - [5223] = {.lex_state = 876}, - [5224] = {.lex_state = 876}, - [5225] = {.lex_state = 876}, - [5226] = {.lex_state = 876}, - [5227] = {.lex_state = 375}, - [5228] = {.lex_state = 375}, - [5229] = {.lex_state = 876}, - [5230] = {.lex_state = 876}, - [5231] = {.lex_state = 876}, - [5232] = {.lex_state = 876}, - [5233] = {.lex_state = 382}, - [5234] = {.lex_state = 162}, - [5235] = {.lex_state = 69}, - [5236] = {.lex_state = 69}, - [5237] = {.lex_state = 69}, - [5238] = {.lex_state = 375}, - [5239] = {.lex_state = 876}, - [5240] = {.lex_state = 69}, - [5241] = {.lex_state = 378}, - [5242] = {.lex_state = 378}, - [5243] = {.lex_state = 470}, - [5244] = {.lex_state = 69}, - [5245] = {.lex_state = 876}, - [5246] = {.lex_state = 876}, - [5247] = {.lex_state = 3816}, - [5248] = {.lex_state = 384}, - [5249] = {.lex_state = 384}, - [5250] = {.lex_state = 145}, - [5251] = {.lex_state = 876}, - [5252] = {.lex_state = 69}, - [5253] = {.lex_state = 109}, - [5254] = {.lex_state = 109}, - [5255] = {.lex_state = 109}, - [5256] = {.lex_state = 876}, - [5257] = {.lex_state = 381}, - [5258] = {.lex_state = 69}, - [5259] = {.lex_state = 69}, - [5260] = {.lex_state = 384}, - [5261] = {.lex_state = 69}, - [5262] = {.lex_state = 69}, - [5263] = {.lex_state = 101}, - [5264] = {.lex_state = 101}, - [5265] = {.lex_state = 101}, - [5266] = {.lex_state = 101}, - [5267] = {.lex_state = 101}, - [5268] = {.lex_state = 101}, - [5269] = {.lex_state = 101}, - [5270] = {.lex_state = 101}, - [5271] = {.lex_state = 381}, - [5272] = {.lex_state = 69}, - [5273] = {.lex_state = 69}, - [5274] = {.lex_state = 946}, - [5275] = {.lex_state = 69}, - [5276] = {.lex_state = 101}, - [5277] = {.lex_state = 101}, - [5278] = {.lex_state = 101}, - [5279] = {.lex_state = 101}, - [5280] = {.lex_state = 101}, - [5281] = {.lex_state = 69}, - [5282] = {.lex_state = 69}, - [5283] = {.lex_state = 383}, - [5284] = {.lex_state = 69}, - [5285] = {.lex_state = 876}, - [5286] = {.lex_state = 69}, - [5287] = {.lex_state = 69}, - [5288] = {.lex_state = 69}, - [5289] = {.lex_state = 69}, - [5290] = {.lex_state = 162}, - [5291] = {.lex_state = 828}, - [5292] = {.lex_state = 162}, - [5293] = {.lex_state = 162}, - [5294] = {.lex_state = 876}, - [5295] = {.lex_state = 69}, - [5296] = {.lex_state = 69}, - [5297] = {.lex_state = 433}, - [5298] = {.lex_state = 69}, - [5299] = {.lex_state = 69}, - [5300] = {.lex_state = 69}, - [5301] = {.lex_state = 876}, - [5302] = {.lex_state = 69}, - [5303] = {.lex_state = 825}, - [5304] = {.lex_state = 819}, - [5305] = {.lex_state = 918}, - [5306] = {.lex_state = 918}, - [5307] = {.lex_state = 389}, - [5308] = {.lex_state = 318}, - [5309] = {.lex_state = 394}, - [5310] = {.lex_state = 397}, - [5311] = {.lex_state = 397}, - [5312] = {.lex_state = 439}, - [5313] = {.lex_state = 436}, - [5314] = {.lex_state = 472}, - [5315] = {.lex_state = 69}, - [5316] = {.lex_state = 69}, - [5317] = {.lex_state = 360}, - [5318] = {.lex_state = 360}, - [5319] = {.lex_state = 959}, - [5320] = {.lex_state = 7}, - [5321] = {.lex_state = 69}, - [5322] = {.lex_state = 69}, - [5323] = {.lex_state = 69}, - [5324] = {.lex_state = 69}, - [5325] = {.lex_state = 394}, - [5326] = {.lex_state = 472}, - [5327] = {.lex_state = 471}, - [5328] = {.lex_state = 69}, - [5329] = {.lex_state = 437}, - [5330] = {.lex_state = 819}, - [5331] = {.lex_state = 819}, - [5332] = {.lex_state = 819}, - [5333] = {.lex_state = 69}, - [5334] = {.lex_state = 69}, - [5335] = {.lex_state = 69}, - [5336] = {.lex_state = 69}, - [5337] = {.lex_state = 69}, - [5338] = {.lex_state = 69}, - [5339] = {.lex_state = 69}, - [5340] = {.lex_state = 69}, - [5341] = {.lex_state = 69}, - [5342] = {.lex_state = 819}, - [5343] = {.lex_state = 69}, - [5344] = {.lex_state = 69}, - [5345] = {.lex_state = 69}, - [5346] = {.lex_state = 825}, - [5347] = {.lex_state = 825}, - [5348] = {.lex_state = 825}, - [5349] = {.lex_state = 825}, - [5350] = {.lex_state = 825}, - [5351] = {.lex_state = 825}, - [5352] = {.lex_state = 825}, - [5353] = {.lex_state = 825}, - [5354] = {.lex_state = 825}, - [5355] = {.lex_state = 825}, - [5356] = {.lex_state = 825}, - [5357] = {.lex_state = 825}, - [5358] = {.lex_state = 825}, - [5359] = {.lex_state = 825}, - [5360] = {.lex_state = 825}, - [5361] = {.lex_state = 825}, - [5362] = {.lex_state = 825}, - [5363] = {.lex_state = 825}, - [5364] = {.lex_state = 825}, - [5365] = {.lex_state = 825}, - [5366] = {.lex_state = 825}, - [5367] = {.lex_state = 825}, - [5368] = {.lex_state = 385}, - [5369] = {.lex_state = 7}, - [5370] = {.lex_state = 69}, - [5371] = {.lex_state = 135}, - [5372] = {.lex_state = 819}, - [5373] = {.lex_state = 472}, - [5374] = {.lex_state = 472}, - [5375] = {.lex_state = 450}, - [5376] = {.lex_state = 69}, - [5377] = {.lex_state = 394}, - [5378] = {.lex_state = 69}, - [5379] = {.lex_state = 385}, - [5380] = {.lex_state = 438}, - [5381] = {.lex_state = 411}, - [5382] = {.lex_state = 918}, - [5383] = {.lex_state = 394}, - [5384] = {.lex_state = 69}, - [5385] = {.lex_state = 7}, - [5386] = {.lex_state = 434}, - [5387] = {.lex_state = 918}, - [5388] = {.lex_state = 434}, - [5389] = {.lex_state = 69}, - [5390] = {.lex_state = 69}, - [5391] = {.lex_state = 385}, - [5392] = {.lex_state = 318}, - [5393] = {.lex_state = 69}, - [5394] = {.lex_state = 450}, - [5395] = {.lex_state = 69}, - [5396] = {.lex_state = 388}, - [5397] = {.lex_state = 69}, - [5398] = {.lex_state = 69}, - [5399] = {.lex_state = 69}, - [5400] = {.lex_state = 876}, - [5401] = {.lex_state = 69}, - [5402] = {.lex_state = 69}, - [5403] = {.lex_state = 69}, - [5404] = {.lex_state = 918}, - [5405] = {.lex_state = 69}, - [5406] = {.lex_state = 69}, - [5407] = {.lex_state = 69}, - [5408] = {.lex_state = 69}, - [5409] = {.lex_state = 69}, - [5410] = {.lex_state = 7}, - [5411] = {.lex_state = 69}, - [5412] = {.lex_state = 397}, - [5413] = {.lex_state = 152}, - [5414] = {.lex_state = 69}, - [5415] = {.lex_state = 69}, - [5416] = {.lex_state = 7}, - [5417] = {.lex_state = 436}, - [5418] = {.lex_state = 436}, - [5419] = {.lex_state = 69}, - [5420] = {.lex_state = 915}, - [5421] = {.lex_state = 69}, - [5422] = {.lex_state = 450}, - [5423] = {.lex_state = 434}, - [5424] = {.lex_state = 915}, - [5425] = {.lex_state = 436}, - [5426] = {.lex_state = 69}, - [5427] = {.lex_state = 819}, - [5428] = {.lex_state = 819}, - [5429] = {.lex_state = 397}, - [5430] = {.lex_state = 434}, - [5431] = {.lex_state = 450}, - [5432] = {.lex_state = 7}, - [5433] = {.lex_state = 476}, - [5434] = {.lex_state = 147}, - [5435] = {.lex_state = 360}, - [5436] = {.lex_state = 69}, - [5437] = {.lex_state = 69}, - [5438] = {.lex_state = 360}, - [5439] = {.lex_state = 825}, - [5440] = {.lex_state = 360}, - [5441] = {.lex_state = 318}, - [5442] = {.lex_state = 915}, - [5443] = {.lex_state = 69}, - [5444] = {.lex_state = 918}, - [5445] = {.lex_state = 825}, - [5446] = {.lex_state = 473}, - [5447] = {.lex_state = 819}, - [5448] = {.lex_state = 825}, - [5449] = {.lex_state = 825}, - [5450] = {.lex_state = 442}, - [5451] = {.lex_state = 360}, - [5452] = {.lex_state = 440}, - [5453] = {.lex_state = 390}, - [5454] = {.lex_state = 145}, - [5455] = {.lex_state = 825}, - [5456] = {.lex_state = 451}, - [5457] = {.lex_state = 474}, - [5458] = {.lex_state = 153}, - [5459] = {.lex_state = 825}, - [5460] = {.lex_state = 435}, - [5461] = {.lex_state = 484}, - [5462] = {.lex_state = 451}, - [5463] = {.lex_state = 438}, - [5464] = {.lex_state = 825}, - [5465] = {.lex_state = 825}, - [5466] = {.lex_state = 474}, - [5467] = {.lex_state = 825}, - [5468] = {.lex_state = 451}, - [5469] = {.lex_state = 474}, - [5470] = {.lex_state = 825}, - [5471] = {.lex_state = 437}, - [5472] = {.lex_state = 360}, - [5473] = {.lex_state = 440}, - [5474] = {.lex_state = 473}, - [5475] = {.lex_state = 825}, - [5476] = {.lex_state = 825}, - [5477] = {.lex_state = 101}, - [5478] = {.lex_state = 101}, - [5479] = {.lex_state = 101}, - [5480] = {.lex_state = 69}, - [5481] = {.lex_state = 819}, - [5482] = {.lex_state = 412}, - [5483] = {.lex_state = 412}, - [5484] = {.lex_state = 153}, - [5485] = {.lex_state = 825}, - [5486] = {.lex_state = 153}, - [5487] = {.lex_state = 437}, - [5488] = {.lex_state = 446}, - [5489] = {.lex_state = 825}, - [5490] = {.lex_state = 435}, - [5491] = {.lex_state = 918}, - [5492] = {.lex_state = 483}, - [5493] = {.lex_state = 825}, - [5494] = {.lex_state = 391}, - [5495] = {.lex_state = 918}, - [5496] = {.lex_state = 440}, - [5497] = {.lex_state = 438}, - [5498] = {.lex_state = 825}, - [5499] = {.lex_state = 825}, - [5500] = {.lex_state = 825}, - [5501] = {.lex_state = 825}, - [5502] = {.lex_state = 438}, - [5503] = {.lex_state = 412}, - [5504] = {.lex_state = 318}, - [5505] = {.lex_state = 918}, - [5506] = {.lex_state = 451}, - [5507] = {.lex_state = 473}, - [5508] = {.lex_state = 153}, - [5509] = {.lex_state = 825}, - [5510] = {.lex_state = 825}, - [5511] = {.lex_state = 825}, - [5512] = {.lex_state = 825}, - [5513] = {.lex_state = 437}, - [5514] = {.lex_state = 473}, - [5515] = {.lex_state = 360}, - [5516] = {.lex_state = 825}, - [5517] = {.lex_state = 360}, - [5518] = {.lex_state = 412}, - [5519] = {.lex_state = 918}, - [5520] = {.lex_state = 825}, - [5521] = {.lex_state = 474}, - [5522] = {.lex_state = 819}, - [5523] = {.lex_state = 443}, - [5524] = {.lex_state = 69}, - [5525] = {.lex_state = 69}, - [5526] = {.lex_state = 69}, - [5527] = {.lex_state = 69}, - [5528] = {.lex_state = 69}, - [5529] = {.lex_state = 69}, - [5530] = {.lex_state = 69}, - [5531] = {.lex_state = 69}, - [5532] = {.lex_state = 69}, - [5533] = {.lex_state = 952}, - [5534] = {.lex_state = 69}, - [5535] = {.lex_state = 435}, - [5536] = {.lex_state = 443}, - [5537] = {.lex_state = 825}, - [5538] = {.lex_state = 825}, - [5539] = {.lex_state = 825}, - [5540] = {.lex_state = 819}, - [5541] = {.lex_state = 819}, - [5542] = {.lex_state = 413}, - [5543] = {.lex_state = 819}, - [5544] = {.lex_state = 819}, - [5545] = {.lex_state = 69}, - [5546] = {.lex_state = 69}, - [5547] = {.lex_state = 69}, - [5548] = {.lex_state = 69}, - [5549] = {.lex_state = 69}, - [5550] = {.lex_state = 956}, - [5551] = {.lex_state = 819}, - [5552] = {.lex_state = 435}, - [5553] = {.lex_state = 154}, - [5554] = {.lex_state = 69}, - [5555] = {.lex_state = 819}, - [5556] = {.lex_state = 154}, - [5557] = {.lex_state = 154}, - [5558] = {.lex_state = 443}, - [5559] = {.lex_state = 819}, - [5560] = {.lex_state = 819}, - [5561] = {.lex_state = 819}, - [5562] = {.lex_state = 441}, - [5563] = {.lex_state = 825}, - [5564] = {.lex_state = 825}, - [5565] = {.lex_state = 819}, - [5566] = {.lex_state = 950}, - [5567] = {.lex_state = 150}, - [5568] = {.lex_state = 409}, - [5569] = {.lex_state = 69}, - [5570] = {.lex_state = 148}, - [5571] = {.lex_state = 441}, - [5572] = {.lex_state = 918}, - [5573] = {.lex_state = 69}, - [5574] = {.lex_state = 69}, - [5575] = {.lex_state = 69}, - [5576] = {.lex_state = 69}, - [5577] = {.lex_state = 441}, - [5578] = {.lex_state = 69}, - [5579] = {.lex_state = 486}, - [5580] = {.lex_state = 486}, - [5581] = {.lex_state = 825}, - [5582] = {.lex_state = 819}, - [5583] = {.lex_state = 819}, - [5584] = {.lex_state = 69}, - [5585] = {.lex_state = 819}, - [5586] = {.lex_state = 69}, - [5587] = {.lex_state = 918}, - [5588] = {.lex_state = 69}, - [5589] = {.lex_state = 69}, - [5590] = {.lex_state = 69}, - [5591] = {.lex_state = 69}, - [5592] = {.lex_state = 69}, - [5593] = {.lex_state = 485}, - [5594] = {.lex_state = 485}, - [5595] = {.lex_state = 819}, - [5596] = {.lex_state = 819}, - [5597] = {.lex_state = 819}, - [5598] = {.lex_state = 819}, - [5599] = {.lex_state = 819}, - [5600] = {.lex_state = 148}, - [5601] = {.lex_state = 440}, - [5602] = {.lex_state = 69}, - [5603] = {.lex_state = 819}, - [5604] = {.lex_state = 819}, - [5605] = {.lex_state = 819}, - [5606] = {.lex_state = 819}, - [5607] = {.lex_state = 819}, - [5608] = {.lex_state = 819}, - [5609] = {.lex_state = 819}, - [5610] = {.lex_state = 486}, - [5611] = {.lex_state = 819}, - [5612] = {.lex_state = 819}, - [5613] = {.lex_state = 819}, - [5614] = {.lex_state = 819}, - [5615] = {.lex_state = 819}, - [5616] = {.lex_state = 819}, - [5617] = {.lex_state = 477}, - [5618] = {.lex_state = 819}, - [5619] = {.lex_state = 819}, - [5620] = {.lex_state = 819}, - [5621] = {.lex_state = 819}, - [5622] = {.lex_state = 819}, - [5623] = {.lex_state = 819}, - [5624] = {.lex_state = 819}, - [5625] = {.lex_state = 819}, - [5626] = {.lex_state = 478}, - [5627] = {.lex_state = 413}, - [5628] = {.lex_state = 485}, - [5629] = {.lex_state = 819}, - [5630] = {.lex_state = 478}, - [5631] = {.lex_state = 475}, - [5632] = {.lex_state = 148}, - [5633] = {.lex_state = 478}, - [5634] = {.lex_state = 413}, - [5635] = {.lex_state = 819}, - [5636] = {.lex_state = 819}, - [5637] = {.lex_state = 475}, - [5638] = {.lex_state = 478}, - [5639] = {.lex_state = 413}, - [5640] = {.lex_state = 485}, - [5641] = {.lex_state = 475}, - [5642] = {.lex_state = 443}, - [5643] = {.lex_state = 69}, - [5644] = {.lex_state = 819}, - [5645] = {.lex_state = 69}, - [5646] = {.lex_state = 69}, - [5647] = {.lex_state = 69}, - [5648] = {.lex_state = 69}, - [5649] = {.lex_state = 819}, - [5650] = {.lex_state = 819}, - [5651] = {.lex_state = 69}, - [5652] = {.lex_state = 819}, - [5653] = {.lex_state = 819}, - [5654] = {.lex_state = 819}, - [5655] = {.lex_state = 486}, - [5656] = {.lex_state = 819}, - [5657] = {.lex_state = 154}, - [5658] = {.lex_state = 819}, - [5659] = {.lex_state = 819}, - [5660] = {.lex_state = 69}, - [5661] = {.lex_state = 69}, - [5662] = {.lex_state = 825}, - [5663] = {.lex_state = 825}, - [5664] = {.lex_state = 69}, - [5665] = {.lex_state = 819}, - [5666] = {.lex_state = 475}, - [5667] = {.lex_state = 825}, - [5668] = {.lex_state = 317}, - [5669] = {.lex_state = 918}, - [5670] = {.lex_state = 918}, - [5671] = {.lex_state = 317}, - [5672] = {.lex_state = 956}, - [5673] = {.lex_state = 918}, - [5674] = {.lex_state = 317}, - [5675] = {.lex_state = 479}, - [5676] = {.lex_state = 482}, - [5677] = {.lex_state = 317}, - [5678] = {.lex_state = 825}, - [5679] = {.lex_state = 441}, - [5680] = {.lex_state = 69}, - [5681] = {.lex_state = 825}, - [5682] = {.lex_state = 817}, - [5683] = {.lex_state = 825}, - [5684] = {.lex_state = 825}, - [5685] = {.lex_state = 825}, - [5686] = {.lex_state = 825}, - [5687] = {.lex_state = 825}, - [5688] = {.lex_state = 825}, - [5689] = {.lex_state = 825}, - [5690] = {.lex_state = 825}, - [5691] = {.lex_state = 825}, - [5692] = {.lex_state = 825}, - [5693] = {.lex_state = 825}, - [5694] = {.lex_state = 825}, - [5695] = {.lex_state = 825}, - [5696] = {.lex_state = 825}, - [5697] = {.lex_state = 825}, - [5698] = {.lex_state = 825}, - [5699] = {.lex_state = 825}, - [5700] = {.lex_state = 825}, - [5701] = {.lex_state = 825}, - [5702] = {.lex_state = 825}, - [5703] = {.lex_state = 435}, - [5704] = {.lex_state = 825}, - [5705] = {.lex_state = 410}, - [5706] = {.lex_state = 317}, - [5707] = {.lex_state = 918}, - [5708] = {.lex_state = 918}, - [5709] = {.lex_state = 317}, - [5710] = {.lex_state = 488}, - [5711] = {.lex_state = 968}, - [5712] = {.lex_state = 950}, - [5713] = {.lex_state = 151}, - [5714] = {.lex_state = 317}, - [5715] = {.lex_state = 69}, - [5716] = {.lex_state = 69}, - [5717] = {.lex_state = 69}, - [5718] = {.lex_state = 149}, - [5719] = {.lex_state = 69}, - [5720] = {.lex_state = 482}, - [5721] = {.lex_state = 69}, - [5722] = {.lex_state = 148}, - [5723] = {.lex_state = 317}, - [5724] = {.lex_state = 482}, - [5725] = {.lex_state = 968}, - [5726] = {.lex_state = 69}, - [5727] = {.lex_state = 480}, - [5728] = {.lex_state = 488}, - [5729] = {.lex_state = 444}, - [5730] = {.lex_state = 482}, - [5731] = {.lex_state = 69}, - [5732] = {.lex_state = 317}, - [5733] = {.lex_state = 480}, - [5734] = {.lex_state = 441}, - [5735] = {.lex_state = 317}, - [5736] = {.lex_state = 317}, - [5737] = {.lex_state = 968}, - [5738] = {.lex_state = 968}, - [5739] = {.lex_state = 317}, - [5740] = {.lex_state = 317}, - [5741] = {.lex_state = 918}, - [5742] = {.lex_state = 918}, - [5743] = {.lex_state = 145}, - [5744] = {.lex_state = 480}, - [5745] = {.lex_state = 487}, - [5746] = {.lex_state = 479}, - [5747] = {.lex_state = 149}, - [5748] = {.lex_state = 479}, - [5749] = {.lex_state = 465}, - [5750] = {.lex_state = 149}, - [5751] = {.lex_state = 317}, - [5752] = {.lex_state = 488}, - [5753] = {.lex_state = 317}, - [5754] = {.lex_state = 479}, - [5755] = {.lex_state = 317}, - [5756] = {.lex_state = 480}, - [5757] = {.lex_state = 444}, - [5758] = {.lex_state = 487}, - [5759] = {.lex_state = 479}, - [5760] = {.lex_state = 487}, - [5761] = {.lex_state = 444}, - [5762] = {.lex_state = 482}, - [5763] = {.lex_state = 69}, - [5764] = {.lex_state = 951}, - [5765] = {.lex_state = 951}, - [5766] = {.lex_state = 69}, - [5767] = {.lex_state = 825}, - [5768] = {.lex_state = 317}, - [5769] = {.lex_state = 825}, - [5770] = {.lex_state = 317}, - [5771] = {.lex_state = 828}, - [5772] = {.lex_state = 317}, - [5773] = {.lex_state = 488}, - [5774] = {.lex_state = 968}, - [5775] = {.lex_state = 317}, - [5776] = {.lex_state = 444}, - [5777] = {.lex_state = 953}, - [5778] = {.lex_state = 825}, - [5779] = {.lex_state = 444}, - [5780] = {.lex_state = 825}, - [5781] = {.lex_state = 918}, - [5782] = {.lex_state = 317}, - [5783] = {.lex_state = 825}, - [5784] = {.lex_state = 825}, - [5785] = {.lex_state = 487}, - [5786] = {.lex_state = 3159}, - [5787] = {.lex_state = 920}, - [5788] = {.lex_state = 317}, - [5789] = {.lex_state = 952}, - [5790] = {.lex_state = 918}, - [5791] = {.lex_state = 317}, - [5792] = {.lex_state = 456}, - [5793] = {.lex_state = 481}, - [5794] = {.lex_state = 422}, - [5795] = {.lex_state = 831}, - [5796] = {.lex_state = 378}, - [5797] = {.lex_state = 378}, - [5798] = {.lex_state = 968}, - [5799] = {.lex_state = 378}, - [5800] = {.lex_state = 378}, - [5801] = {.lex_state = 378}, - [5802] = {.lex_state = 69}, - [5803] = {.lex_state = 378}, - [5804] = {.lex_state = 378}, - [5805] = {.lex_state = 318}, - [5806] = {.lex_state = 968}, - [5807] = {.lex_state = 378}, - [5808] = {.lex_state = 481}, - [5809] = {.lex_state = 317}, - [5810] = {.lex_state = 378}, - [5811] = {.lex_state = 69}, - [5812] = {.lex_state = 318}, - [5813] = {.lex_state = 69}, - [5814] = {.lex_state = 466}, - [5815] = {.lex_state = 378}, - [5816] = {.lex_state = 378}, - [5817] = {.lex_state = 145}, - [5818] = {.lex_state = 488}, - [5819] = {.lex_state = 145}, - [5820] = {.lex_state = 145}, - [5821] = {.lex_state = 18}, - [5822] = {.lex_state = 145}, - [5823] = {.lex_state = 378}, - [5824] = {.lex_state = 918}, - [5825] = {.lex_state = 378}, - [5826] = {.lex_state = 825}, - [5827] = {.lex_state = 448}, - [5828] = {.lex_state = 318}, - [5829] = {.lex_state = 145}, - [5830] = {.lex_state = 920}, - [5831] = {.lex_state = 145}, - [5832] = {.lex_state = 968}, - [5833] = {.lex_state = 145}, - [5834] = {.lex_state = 69}, - [5835] = {.lex_state = 828}, - [5836] = {.lex_state = 317}, - [5837] = {.lex_state = 145}, - [5838] = {.lex_state = 953}, - [5839] = {.lex_state = 828}, - [5840] = {.lex_state = 378}, - [5841] = {.lex_state = 69}, - [5842] = {.lex_state = 968}, - [5843] = {.lex_state = 378}, - [5844] = {.lex_state = 825}, - [5845] = {.lex_state = 378}, - [5846] = {.lex_state = 825}, - [5847] = {.lex_state = 69}, - [5848] = {.lex_state = 435}, - [5849] = {.lex_state = 378}, - [5850] = {.lex_state = 435}, - [5851] = {.lex_state = 145}, - [5852] = {.lex_state = 481}, - [5853] = {.lex_state = 448}, - [5854] = {.lex_state = 951}, - [5855] = {.lex_state = 145}, - [5856] = {.lex_state = 69}, - [5857] = {.lex_state = 378}, - [5858] = {.lex_state = 378}, - [5859] = {.lex_state = 145}, - [5860] = {.lex_state = 831}, - [5861] = {.lex_state = 3159}, - [5862] = {.lex_state = 378}, - [5863] = {.lex_state = 378}, - [5864] = {.lex_state = 378}, - [5865] = {.lex_state = 378}, - [5866] = {.lex_state = 435}, - [5867] = {.lex_state = 378}, - [5868] = {.lex_state = 69}, - [5869] = {.lex_state = 145}, - [5870] = {.lex_state = 145}, - [5871] = {.lex_state = 145}, - [5872] = {.lex_state = 481}, - [5873] = {.lex_state = 18}, - [5874] = {.lex_state = 968}, - [5875] = {.lex_state = 378}, - [5876] = {.lex_state = 951}, - [5877] = {.lex_state = 488}, - [5878] = {.lex_state = 918}, - [5879] = {.lex_state = 423}, - [5880] = {.lex_state = 929}, - [5881] = {.lex_state = 378}, - [5882] = {.lex_state = 145}, - [5883] = {.lex_state = 145}, - [5884] = {.lex_state = 145}, - [5885] = {.lex_state = 145}, - [5886] = {.lex_state = 481}, - [5887] = {.lex_state = 828}, - [5888] = {.lex_state = 378}, - [5889] = {.lex_state = 868}, - [5890] = {.lex_state = 918}, - [5891] = {.lex_state = 342}, - [5892] = {.lex_state = 868}, - [5893] = {.lex_state = 431}, - [5894] = {.lex_state = 868}, - [5895] = {.lex_state = 371}, - [5896] = {.lex_state = 918}, - [5897] = {.lex_state = 868}, - [5898] = {.lex_state = 371}, - [5899] = {.lex_state = 918}, - [5900] = {.lex_state = 868}, - [5901] = {.lex_state = 918}, - [5902] = {.lex_state = 899}, - [5903] = {.lex_state = 448}, - [5904] = {.lex_state = 868}, - [5905] = {.lex_state = 342}, - [5906] = {.lex_state = 318}, - [5907] = {.lex_state = 918}, - [5908] = {.lex_state = 918}, - [5909] = {.lex_state = 371}, - [5910] = {.lex_state = 918}, - [5911] = {.lex_state = 371}, - [5912] = {.lex_state = 868}, - [5913] = {.lex_state = 918}, - [5914] = {.lex_state = 918}, - [5915] = {.lex_state = 371}, - [5916] = {.lex_state = 868}, - [5917] = {.lex_state = 342}, - [5918] = {.lex_state = 317}, - [5919] = {.lex_state = 918}, - [5920] = {.lex_state = 918}, - [5921] = {.lex_state = 918}, - [5922] = {.lex_state = 371}, - [5923] = {.lex_state = 407}, - [5924] = {.lex_state = 371}, - [5925] = {.lex_state = 149}, - [5926] = {.lex_state = 868}, - [5927] = {.lex_state = 918}, - [5928] = {.lex_state = 455}, - [5929] = {.lex_state = 868}, - [5930] = {.lex_state = 918}, - [5931] = {.lex_state = 342}, - [5932] = {.lex_state = 868}, - [5933] = {.lex_state = 918}, - [5934] = {.lex_state = 918}, - [5935] = {.lex_state = 371}, - [5936] = {.lex_state = 918}, - [5937] = {.lex_state = 371}, - [5938] = {.lex_state = 918}, - [5939] = {.lex_state = 868}, - [5940] = {.lex_state = 149}, - [5941] = {.lex_state = 467}, - [5942] = {.lex_state = 918}, - [5943] = {.lex_state = 868}, - [5944] = {.lex_state = 918}, - [5945] = {.lex_state = 342}, - [5946] = {.lex_state = 2878}, - [5947] = {.lex_state = 425}, - [5948] = {.lex_state = 435}, - [5949] = {.lex_state = 918}, - [5950] = {.lex_state = 371}, - [5951] = {.lex_state = 918}, - [5952] = {.lex_state = 371}, - [5953] = {.lex_state = 918}, - [5954] = {.lex_state = 868}, - [5955] = {.lex_state = 918}, - [5956] = {.lex_state = 868}, - [5957] = {.lex_state = 318}, - [5958] = {.lex_state = 342}, - [5959] = {.lex_state = 435}, - [5960] = {.lex_state = 467}, - [5961] = {.lex_state = 371}, - [5962] = {.lex_state = 371}, - [5963] = {.lex_state = 371}, - [5964] = {.lex_state = 918}, - [5965] = {.lex_state = 868}, - [5966] = {.lex_state = 918}, - [5967] = {.lex_state = 435}, - [5968] = {.lex_state = 371}, - [5969] = {.lex_state = 868}, - [5970] = {.lex_state = 342}, - [5971] = {.lex_state = 868}, - [5972] = {.lex_state = 378}, - [5973] = {.lex_state = 371}, - [5974] = {.lex_state = 18}, - [5975] = {.lex_state = 371}, - [5976] = {.lex_state = 435}, - [5977] = {.lex_state = 868}, - [5978] = {.lex_state = 868}, - [5979] = {.lex_state = 18}, - [5980] = {.lex_state = 431}, - [5981] = {.lex_state = 868}, - [5982] = {.lex_state = 342}, - [5983] = {.lex_state = 918}, - [5984] = {.lex_state = 918}, - [5985] = {.lex_state = 371}, - [5986] = {.lex_state = 868}, - [5987] = {.lex_state = 371}, - [5988] = {.lex_state = 868}, - [5989] = {.lex_state = 868}, - [5990] = {.lex_state = 868}, - [5991] = {.lex_state = 342}, - [5992] = {.lex_state = 868}, - [5993] = {.lex_state = 371}, - [5994] = {.lex_state = 371}, - [5995] = {.lex_state = 868}, - [5996] = {.lex_state = 868}, - [5997] = {.lex_state = 342}, - [5998] = {.lex_state = 371}, - [5999] = {.lex_state = 398}, - [6000] = {.lex_state = 371}, - [6001] = {.lex_state = 868}, - [6002] = {.lex_state = 868}, - [6003] = {.lex_state = 342}, - [6004] = {.lex_state = 918}, - [6005] = {.lex_state = 868}, - [6006] = {.lex_state = 435}, - [6007] = {.lex_state = 868}, - [6008] = {.lex_state = 868}, - [6009] = {.lex_state = 342}, - [6010] = {.lex_state = 868}, - [6011] = {.lex_state = 868}, - [6012] = {.lex_state = 929}, - [6013] = {.lex_state = 868}, - [6014] = {.lex_state = 868}, - [6015] = {.lex_state = 342}, - [6016] = {.lex_state = 920}, - [6017] = {.lex_state = 868}, - [6018] = {.lex_state = 868}, - [6019] = {.lex_state = 342}, - [6020] = {.lex_state = 829}, - [6021] = {.lex_state = 868}, - [6022] = {.lex_state = 868}, - [6023] = {.lex_state = 342}, - [6024] = {.lex_state = 342}, - [6025] = {.lex_state = 918}, - [6026] = {.lex_state = 342}, - [6027] = {.lex_state = 918}, - [6028] = {.lex_state = 342}, - [6029] = {.lex_state = 342}, - [6030] = {.lex_state = 342}, - [6031] = {.lex_state = 342}, - [6032] = {.lex_state = 342}, - [6033] = {.lex_state = 342}, - [6034] = {.lex_state = 342}, - [6035] = {.lex_state = 342}, - [6036] = {.lex_state = 342}, - [6037] = {.lex_state = 342}, - [6038] = {.lex_state = 342}, - [6039] = {.lex_state = 342}, - [6040] = {.lex_state = 342}, - [6041] = {.lex_state = 342}, - [6042] = {.lex_state = 342}, - [6043] = {.lex_state = 342}, - [6044] = {.lex_state = 467}, - [6045] = {.lex_state = 342}, - [6046] = {.lex_state = 342}, - [6047] = {.lex_state = 342}, - [6048] = {.lex_state = 342}, - [6049] = {.lex_state = 342}, - [6050] = {.lex_state = 342}, - [6051] = {.lex_state = 342}, - [6052] = {.lex_state = 918}, - [6053] = {.lex_state = 918}, - [6054] = {.lex_state = 18}, - [6055] = {.lex_state = 458}, - [6056] = {.lex_state = 467}, - [6057] = {.lex_state = 435}, - [6058] = {.lex_state = 829}, - [6059] = {.lex_state = 408}, - [6060] = {.lex_state = 868}, - [6061] = {.lex_state = 516}, - [6062] = {.lex_state = 918}, - [6063] = {.lex_state = 318}, - [6064] = {.lex_state = 318}, - [6065] = {.lex_state = 318}, - [6066] = {.lex_state = 431}, - [6067] = {.lex_state = 427}, - [6068] = {.lex_state = 371}, - [6069] = {.lex_state = 918}, - [6070] = {.lex_state = 342}, - [6071] = {.lex_state = 435}, - [6072] = {.lex_state = 371}, - [6073] = {.lex_state = 918}, - [6074] = {.lex_state = 516}, - [6075] = {.lex_state = 378}, - [6076] = {.lex_state = 425}, - [6077] = {.lex_state = 516}, - [6078] = {.lex_state = 868}, - [6079] = {.lex_state = 918}, - [6080] = {.lex_state = 918}, - [6081] = {.lex_state = 868}, - [6082] = {.lex_state = 868}, - [6083] = {.lex_state = 868}, - [6084] = {.lex_state = 918}, - [6085] = {.lex_state = 399}, - [6086] = {.lex_state = 918}, - [6087] = {.lex_state = 868}, - [6088] = {.lex_state = 918}, - [6089] = {.lex_state = 868}, - [6090] = {.lex_state = 918}, - [6091] = {.lex_state = 317}, - [6092] = {.lex_state = 868}, - [6093] = {.lex_state = 868}, - [6094] = {.lex_state = 918}, - [6095] = {.lex_state = 868}, - [6096] = {.lex_state = 516}, - [6097] = {.lex_state = 516}, - [6098] = {.lex_state = 149}, - [6099] = {.lex_state = 149}, - [6100] = {.lex_state = 3162}, - [6101] = {.lex_state = 342}, - [6102] = {.lex_state = 435}, - [6103] = {.lex_state = 868}, - [6104] = {.lex_state = 918}, - [6105] = {.lex_state = 400}, - [6106] = {.lex_state = 425}, - [6107] = {.lex_state = 342}, - [6108] = {.lex_state = 425}, - [6109] = {.lex_state = 868}, - [6110] = {.lex_state = 457}, - [6111] = {.lex_state = 69}, - [6112] = {.lex_state = 428}, - [6113] = {.lex_state = 918}, - [6114] = {.lex_state = 378}, - [6115] = {.lex_state = 918}, - [6116] = {.lex_state = 342}, - [6117] = {.lex_state = 435}, - [6118] = {.lex_state = 371}, - [6119] = {.lex_state = 918}, - [6120] = {.lex_state = 371}, - [6121] = {.lex_state = 868}, - [6122] = {.lex_state = 918}, - [6123] = {.lex_state = 489}, - [6124] = {.lex_state = 868}, - [6125] = {.lex_state = 868}, - [6126] = {.lex_state = 868}, - [6127] = {.lex_state = 431}, - [6128] = {.lex_state = 69}, - [6129] = {.lex_state = 342}, - [6130] = {.lex_state = 918}, - [6131] = {.lex_state = 378}, - [6132] = {.lex_state = 918}, - [6133] = {.lex_state = 460}, - [6134] = {.lex_state = 371}, - [6135] = {.lex_state = 424}, - [6136] = {.lex_state = 371}, - [6137] = {.lex_state = 378}, - [6138] = {.lex_state = 371}, - [6139] = {.lex_state = 868}, - [6140] = {.lex_state = 918}, - [6141] = {.lex_state = 460}, - [6142] = {.lex_state = 318}, - [6143] = {.lex_state = 467}, - [6144] = {.lex_state = 448}, - [6145] = {.lex_state = 868}, - [6146] = {.lex_state = 460}, - [6147] = {.lex_state = 918}, - [6148] = {.lex_state = 868}, - [6149] = {.lex_state = 918}, - [6150] = {.lex_state = 145}, - [6151] = {.lex_state = 145}, - [6152] = {.lex_state = 145}, - [6153] = {.lex_state = 868}, - [6154] = {.lex_state = 145}, - [6155] = {.lex_state = 145}, - [6156] = {.lex_state = 145}, - [6157] = {.lex_state = 342}, - [6158] = {.lex_state = 371}, - [6159] = {.lex_state = 829}, - [6160] = {.lex_state = 829}, - [6161] = {.lex_state = 829}, - [6162] = {.lex_state = 829}, - [6163] = {.lex_state = 868}, - [6164] = {.lex_state = 401}, - [6165] = {.lex_state = 371}, - [6166] = {.lex_state = 918}, - [6167] = {.lex_state = 371}, - [6168] = {.lex_state = 460}, - [6169] = {.lex_state = 868}, - [6170] = {.lex_state = 467}, - [6171] = {.lex_state = 342}, - [6172] = {.lex_state = 868}, - [6173] = {.lex_state = 69}, - [6174] = {.lex_state = 69}, - [6175] = {.lex_state = 69}, - [6176] = {.lex_state = 526}, - [6177] = {.lex_state = 526}, - [6178] = {.lex_state = 344}, - [6179] = {.lex_state = 69}, - [6180] = {.lex_state = 403}, - [6181] = {.lex_state = 526}, - [6182] = {.lex_state = 69}, - [6183] = {.lex_state = 461}, - [6184] = {.lex_state = 69}, - [6185] = {.lex_state = 69}, - [6186] = {.lex_state = 426}, - [6187] = {.lex_state = 69}, - [6188] = {.lex_state = 868}, - [6189] = {.lex_state = 868}, - [6190] = {.lex_state = 69}, - [6191] = {.lex_state = 69}, - [6192] = {.lex_state = 461}, - [6193] = {.lex_state = 526}, - [6194] = {.lex_state = 464}, - [6195] = {.lex_state = 462}, - [6196] = {.lex_state = 817}, - [6197] = {.lex_state = 432}, - [6198] = {.lex_state = 526}, - [6199] = {.lex_state = 526}, - [6200] = {.lex_state = 3162}, - [6201] = {.lex_state = 429}, - [6202] = {.lex_state = 490}, - [6203] = {.lex_state = 526}, - [6204] = {.lex_state = 18}, - [6205] = {.lex_state = 69}, - [6206] = {.lex_state = 426}, - [6207] = {.lex_state = 69}, - [6208] = {.lex_state = 145}, - [6209] = {.lex_state = 435}, - [6210] = {.lex_state = 435}, - [6211] = {.lex_state = 69}, - [6212] = {.lex_state = 868}, - [6213] = {.lex_state = 883}, - [6214] = {.lex_state = 817}, - [6215] = {.lex_state = 317}, - [6216] = {.lex_state = 883}, - [6217] = {.lex_state = 868}, - [6218] = {.lex_state = 526}, - [6219] = {.lex_state = 432}, - [6220] = {.lex_state = 868}, - [6221] = {.lex_state = 69}, - [6222] = {.lex_state = 526}, - [6223] = {.lex_state = 526}, - [6224] = {.lex_state = 69}, - [6225] = {.lex_state = 69}, - [6226] = {.lex_state = 145}, - [6227] = {.lex_state = 422}, - [6228] = {.lex_state = 526}, - [6229] = {.lex_state = 69}, - [6230] = {.lex_state = 408}, - [6231] = {.lex_state = 526}, - [6232] = {.lex_state = 69}, - [6233] = {.lex_state = 432}, - [6234] = {.lex_state = 867}, - [6235] = {.lex_state = 432}, - [6236] = {.lex_state = 828}, - [6237] = {.lex_state = 429}, - [6238] = {.lex_state = 899}, - [6239] = {.lex_state = 526}, - [6240] = {.lex_state = 526}, - [6241] = {.lex_state = 69}, - [6242] = {.lex_state = 426}, - [6243] = {.lex_state = 526}, - [6244] = {.lex_state = 448}, - [6245] = {.lex_state = 69}, - [6246] = {.lex_state = 69}, - [6247] = {.lex_state = 526}, - [6248] = {.lex_state = 828}, - [6249] = {.lex_state = 461}, - [6250] = {.lex_state = 344}, - [6251] = {.lex_state = 526}, - [6252] = {.lex_state = 828}, - [6253] = {.lex_state = 462}, - [6254] = {.lex_state = 526}, - [6255] = {.lex_state = 526}, - [6256] = {.lex_state = 432}, - [6257] = {.lex_state = 429}, - [6258] = {.lex_state = 149}, - [6259] = {.lex_state = 828}, - [6260] = {.lex_state = 69}, - [6261] = {.lex_state = 318}, - [6262] = {.lex_state = 868}, - [6263] = {.lex_state = 868}, - [6264] = {.lex_state = 399}, - [6265] = {.lex_state = 69}, - [6266] = {.lex_state = 526}, - [6267] = {.lex_state = 318}, - [6268] = {.lex_state = 828}, - [6269] = {.lex_state = 526}, - [6270] = {.lex_state = 526}, - [6271] = {.lex_state = 18}, - [6272] = {.lex_state = 828}, - [6273] = {.lex_state = 461}, - [6274] = {.lex_state = 457}, - [6275] = {.lex_state = 461}, - [6276] = {.lex_state = 149}, - [6277] = {.lex_state = 526}, - [6278] = {.lex_state = 526}, - [6279] = {.lex_state = 405}, - [6280] = {.lex_state = 426}, - [6281] = {.lex_state = 490}, - [6282] = {.lex_state = 868}, - [6283] = {.lex_state = 868}, - [6284] = {.lex_state = 526}, - [6285] = {.lex_state = 490}, - [6286] = {.lex_state = 462}, - [6287] = {.lex_state = 868}, - [6288] = {.lex_state = 868}, - [6289] = {.lex_state = 868}, - [6290] = {.lex_state = 868}, - [6291] = {.lex_state = 868}, - [6292] = {.lex_state = 868}, - [6293] = {.lex_state = 69}, - [6294] = {.lex_state = 868}, - [6295] = {.lex_state = 868}, - [6296] = {.lex_state = 868}, - [6297] = {.lex_state = 899}, - [6298] = {.lex_state = 69}, - [6299] = {.lex_state = 868}, - [6300] = {.lex_state = 868}, - [6301] = {.lex_state = 432}, - [6302] = {.lex_state = 426}, - [6303] = {.lex_state = 868}, - [6304] = {.lex_state = 868}, - [6305] = {.lex_state = 868}, - [6306] = {.lex_state = 464}, - [6307] = {.lex_state = 868}, - [6308] = {.lex_state = 868}, - [6309] = {.lex_state = 69}, - [6310] = {.lex_state = 868}, - [6311] = {.lex_state = 868}, - [6312] = {.lex_state = 526}, - [6313] = {.lex_state = 868}, - [6314] = {.lex_state = 868}, - [6315] = {.lex_state = 464}, - [6316] = {.lex_state = 868}, - [6317] = {.lex_state = 868}, - [6318] = {.lex_state = 868}, - [6319] = {.lex_state = 868}, - [6320] = {.lex_state = 526}, - [6321] = {.lex_state = 868}, - [6322] = {.lex_state = 868}, - [6323] = {.lex_state = 868}, - [6324] = {.lex_state = 868}, - [6325] = {.lex_state = 868}, - [6326] = {.lex_state = 868}, - [6327] = {.lex_state = 868}, - [6328] = {.lex_state = 868}, - [6329] = {.lex_state = 868}, - [6330] = {.lex_state = 868}, - [6331] = {.lex_state = 868}, - [6332] = {.lex_state = 868}, - [6333] = {.lex_state = 464}, - [6334] = {.lex_state = 426}, - [6335] = {.lex_state = 464}, - [6336] = {.lex_state = 462}, - [6337] = {.lex_state = 526}, - [6338] = {.lex_state = 868}, - [6339] = {.lex_state = 448}, - [6340] = {.lex_state = 461}, - [6341] = {.lex_state = 432}, - [6342] = {.lex_state = 868}, - [6343] = {.lex_state = 69}, - [6344] = {.lex_state = 357}, - [6345] = {.lex_state = 357}, - [6346] = {.lex_state = 868}, - [6347] = {.lex_state = 69}, - [6348] = {.lex_state = 69}, - [6349] = {.lex_state = 317}, - [6350] = {.lex_state = 526}, - [6351] = {.lex_state = 868}, - [6352] = {.lex_state = 427}, - [6353] = {.lex_state = 426}, - [6354] = {.lex_state = 526}, - [6355] = {.lex_state = 459}, - [6356] = {.lex_state = 868}, - [6357] = {.lex_state = 526}, - [6358] = {.lex_state = 435}, - [6359] = {.lex_state = 526}, - [6360] = {.lex_state = 317}, - [6361] = {.lex_state = 69}, - [6362] = {.lex_state = 448}, - [6363] = {.lex_state = 448}, - [6364] = {.lex_state = 883}, - [6365] = {.lex_state = 461}, - [6366] = {.lex_state = 452}, - [6367] = {.lex_state = 448}, - [6368] = {.lex_state = 429}, - [6369] = {.lex_state = 69}, - [6370] = {.lex_state = 526}, - [6371] = {.lex_state = 424}, - [6372] = {.lex_state = 868}, - [6373] = {.lex_state = 224}, - [6374] = {.lex_state = 224}, - [6375] = {.lex_state = 224}, - [6376] = {.lex_state = 224}, - [6377] = {.lex_state = 463}, - [6378] = {.lex_state = 463}, - [6379] = {.lex_state = 868}, - [6380] = {.lex_state = 463}, - [6381] = {.lex_state = 224}, - [6382] = {.lex_state = 868}, - [6383] = {.lex_state = 498}, - [6384] = {.lex_state = 868}, - [6385] = {.lex_state = 831}, - [6386] = {.lex_state = 868}, - [6387] = {.lex_state = 868}, - [6388] = {.lex_state = 524}, - [6389] = {.lex_state = 868}, - [6390] = {.lex_state = 868}, - [6391] = {.lex_state = 868}, - [6392] = {.lex_state = 868}, - [6393] = {.lex_state = 224}, - [6394] = {.lex_state = 224}, - [6395] = {.lex_state = 224}, - [6396] = {.lex_state = 868}, - [6397] = {.lex_state = 463}, - [6398] = {.lex_state = 491}, - [6399] = {.lex_state = 224}, - [6400] = {.lex_state = 868}, - [6401] = {.lex_state = 868}, - [6402] = {.lex_state = 868}, - [6403] = {.lex_state = 868}, - [6404] = {.lex_state = 519}, - [6405] = {.lex_state = 430}, - [6406] = {.lex_state = 868}, - [6407] = {.lex_state = 868}, - [6408] = {.lex_state = 868}, - [6409] = {.lex_state = 491}, - [6410] = {.lex_state = 868}, - [6411] = {.lex_state = 463}, - [6412] = {.lex_state = 868}, - [6413] = {.lex_state = 414}, - [6414] = {.lex_state = 224}, - [6415] = {.lex_state = 448}, - [6416] = {.lex_state = 868}, - [6417] = {.lex_state = 868}, - [6418] = {.lex_state = 224}, - [6419] = {.lex_state = 868}, - [6420] = {.lex_state = 519}, - [6421] = {.lex_state = 868}, - [6422] = {.lex_state = 378}, - [6423] = {.lex_state = 378}, - [6424] = {.lex_state = 524}, - [6425] = {.lex_state = 369}, - [6426] = {.lex_state = 868}, - [6427] = {.lex_state = 224}, - [6428] = {.lex_state = 519}, - [6429] = {.lex_state = 448}, - [6430] = {.lex_state = 868}, - [6431] = {.lex_state = 224}, - [6432] = {.lex_state = 224}, - [6433] = {.lex_state = 369}, - [6434] = {.lex_state = 868}, - [6435] = {.lex_state = 868}, - [6436] = {.lex_state = 504}, - [6437] = {.lex_state = 868}, - [6438] = {.lex_state = 369}, - [6439] = {.lex_state = 868}, - [6440] = {.lex_state = 868}, - [6441] = {.lex_state = 868}, - [6442] = {.lex_state = 369}, - [6443] = {.lex_state = 868}, - [6444] = {.lex_state = 868}, - [6445] = {.lex_state = 520}, - [6446] = {.lex_state = 868}, - [6447] = {.lex_state = 868}, - [6448] = {.lex_state = 224}, - [6449] = {.lex_state = 224}, - [6450] = {.lex_state = 224}, - [6451] = {.lex_state = 224}, - [6452] = {.lex_state = 224}, - [6453] = {.lex_state = 224}, - [6454] = {.lex_state = 224}, - [6455] = {.lex_state = 224}, - [6456] = {.lex_state = 868}, - [6457] = {.lex_state = 868}, - [6458] = {.lex_state = 868}, - [6459] = {.lex_state = 868}, - [6460] = {.lex_state = 2882}, - [6461] = {.lex_state = 868}, - [6462] = {.lex_state = 504}, - [6463] = {.lex_state = 69}, - [6464] = {.lex_state = 369}, - [6465] = {.lex_state = 417}, - [6466] = {.lex_state = 369}, - [6467] = {.lex_state = 520}, - [6468] = {.lex_state = 868}, - [6469] = {.lex_state = 514}, - [6470] = {.lex_state = 157}, - [6471] = {.lex_state = 224}, - [6472] = {.lex_state = 224}, - [6473] = {.lex_state = 224}, - [6474] = {.lex_state = 224}, - [6475] = {.lex_state = 224}, - [6476] = {.lex_state = 224}, - [6477] = {.lex_state = 224}, - [6478] = {.lex_state = 224}, - [6479] = {.lex_state = 448}, - [6480] = {.lex_state = 868}, - [6481] = {.lex_state = 504}, - [6482] = {.lex_state = 369}, - [6483] = {.lex_state = 369}, - [6484] = {.lex_state = 369}, - [6485] = {.lex_state = 868}, - [6486] = {.lex_state = 430}, - [6487] = {.lex_state = 868}, - [6488] = {.lex_state = 868}, - [6489] = {.lex_state = 224}, - [6490] = {.lex_state = 224}, - [6491] = {.lex_state = 224}, - [6492] = {.lex_state = 224}, - [6493] = {.lex_state = 224}, - [6494] = {.lex_state = 224}, - [6495] = {.lex_state = 224}, - [6496] = {.lex_state = 224}, - [6497] = {.lex_state = 868}, - [6498] = {.lex_state = 504}, - [6499] = {.lex_state = 369}, - [6500] = {.lex_state = 929}, - [6501] = {.lex_state = 369}, - [6502] = {.lex_state = 520}, - [6503] = {.lex_state = 520}, - [6504] = {.lex_state = 224}, - [6505] = {.lex_state = 224}, - [6506] = {.lex_state = 224}, - [6507] = {.lex_state = 224}, - [6508] = {.lex_state = 224}, - [6509] = {.lex_state = 224}, - [6510] = {.lex_state = 224}, - [6511] = {.lex_state = 224}, - [6512] = {.lex_state = 868}, - [6513] = {.lex_state = 504}, - [6514] = {.lex_state = 868}, - [6515] = {.lex_state = 369}, - [6516] = {.lex_state = 369}, - [6517] = {.lex_state = 868}, - [6518] = {.lex_state = 224}, - [6519] = {.lex_state = 224}, - [6520] = {.lex_state = 224}, - [6521] = {.lex_state = 224}, - [6522] = {.lex_state = 224}, - [6523] = {.lex_state = 224}, - [6524] = {.lex_state = 224}, - [6525] = {.lex_state = 224}, - [6526] = {.lex_state = 504}, - [6527] = {.lex_state = 430}, - [6528] = {.lex_state = 369}, - [6529] = {.lex_state = 369}, - [6530] = {.lex_state = 868}, - [6531] = {.lex_state = 224}, - [6532] = {.lex_state = 224}, - [6533] = {.lex_state = 224}, - [6534] = {.lex_state = 224}, - [6535] = {.lex_state = 224}, - [6536] = {.lex_state = 224}, - [6537] = {.lex_state = 224}, - [6538] = {.lex_state = 224}, - [6539] = {.lex_state = 504}, - [6540] = {.lex_state = 371}, - [6541] = {.lex_state = 369}, - [6542] = {.lex_state = 371}, - [6543] = {.lex_state = 369}, - [6544] = {.lex_state = 224}, - [6545] = {.lex_state = 224}, - [6546] = {.lex_state = 224}, - [6547] = {.lex_state = 224}, - [6548] = {.lex_state = 224}, - [6549] = {.lex_state = 224}, - [6550] = {.lex_state = 224}, - [6551] = {.lex_state = 224}, - [6552] = {.lex_state = 224}, - [6553] = {.lex_state = 504}, - [6554] = {.lex_state = 369}, - [6555] = {.lex_state = 224}, - [6556] = {.lex_state = 369}, - [6557] = {.lex_state = 868}, - [6558] = {.lex_state = 0}, - [6559] = {.lex_state = 224}, - [6560] = {.lex_state = 224}, - [6561] = {.lex_state = 224}, - [6562] = {.lex_state = 224}, - [6563] = {.lex_state = 224}, - [6564] = {.lex_state = 224}, - [6565] = {.lex_state = 224}, - [6566] = {.lex_state = 224}, - [6567] = {.lex_state = 504}, - [6568] = {.lex_state = 369}, - [6569] = {.lex_state = 868}, - [6570] = {.lex_state = 369}, - [6571] = {.lex_state = 868}, - [6572] = {.lex_state = 868}, - [6573] = {.lex_state = 868}, - [6574] = {.lex_state = 868}, - [6575] = {.lex_state = 520}, - [6576] = {.lex_state = 868}, - [6577] = {.lex_state = 224}, - [6578] = {.lex_state = 224}, - [6579] = {.lex_state = 224}, - [6580] = {.lex_state = 224}, - [6581] = {.lex_state = 224}, - [6582] = {.lex_state = 224}, - [6583] = {.lex_state = 224}, - [6584] = {.lex_state = 224}, - [6585] = {.lex_state = 3818}, - [6586] = {.lex_state = 504}, - [6587] = {.lex_state = 369}, - [6588] = {.lex_state = 504}, - [6589] = {.lex_state = 369}, - [6590] = {.lex_state = 868}, - [6591] = {.lex_state = 18}, - [6592] = {.lex_state = 224}, - [6593] = {.lex_state = 224}, - [6594] = {.lex_state = 224}, - [6595] = {.lex_state = 224}, - [6596] = {.lex_state = 224}, - [6597] = {.lex_state = 224}, - [6598] = {.lex_state = 224}, - [6599] = {.lex_state = 224}, - [6600] = {.lex_state = 868}, - [6601] = {.lex_state = 519}, - [6602] = {.lex_state = 504}, - [6603] = {.lex_state = 369}, - [6604] = {.lex_state = 369}, - [6605] = {.lex_state = 868}, - [6606] = {.lex_state = 369}, - [6607] = {.lex_state = 868}, - [6608] = {.lex_state = 224}, - [6609] = {.lex_state = 224}, - [6610] = {.lex_state = 224}, - [6611] = {.lex_state = 224}, - [6612] = {.lex_state = 224}, - [6613] = {.lex_state = 224}, - [6614] = {.lex_state = 224}, - [6615] = {.lex_state = 224}, - [6616] = {.lex_state = 868}, - [6617] = {.lex_state = 868}, - [6618] = {.lex_state = 504}, - [6619] = {.lex_state = 369}, - [6620] = {.lex_state = 369}, - [6621] = {.lex_state = 224}, - [6622] = {.lex_state = 224}, - [6623] = {.lex_state = 224}, - [6624] = {.lex_state = 224}, - [6625] = {.lex_state = 224}, - [6626] = {.lex_state = 224}, - [6627] = {.lex_state = 224}, - [6628] = {.lex_state = 224}, - [6629] = {.lex_state = 504}, - [6630] = {.lex_state = 369}, - [6631] = {.lex_state = 369}, - [6632] = {.lex_state = 224}, - [6633] = {.lex_state = 224}, - [6634] = {.lex_state = 224}, - [6635] = {.lex_state = 224}, - [6636] = {.lex_state = 224}, - [6637] = {.lex_state = 224}, - [6638] = {.lex_state = 224}, - [6639] = {.lex_state = 224}, - [6640] = {.lex_state = 504}, - [6641] = {.lex_state = 369}, - [6642] = {.lex_state = 369}, - [6643] = {.lex_state = 369}, - [6644] = {.lex_state = 519}, - [6645] = {.lex_state = 224}, - [6646] = {.lex_state = 224}, - [6647] = {.lex_state = 224}, - [6648] = {.lex_state = 224}, - [6649] = {.lex_state = 224}, - [6650] = {.lex_state = 224}, - [6651] = {.lex_state = 224}, - [6652] = {.lex_state = 224}, - [6653] = {.lex_state = 504}, - [6654] = {.lex_state = 369}, - [6655] = {.lex_state = 369}, - [6656] = {.lex_state = 868}, - [6657] = {.lex_state = 224}, - [6658] = {.lex_state = 224}, - [6659] = {.lex_state = 224}, - [6660] = {.lex_state = 224}, - [6661] = {.lex_state = 224}, - [6662] = {.lex_state = 224}, - [6663] = {.lex_state = 224}, - [6664] = {.lex_state = 224}, - [6665] = {.lex_state = 504}, - [6666] = {.lex_state = 369}, - [6667] = {.lex_state = 369}, - [6668] = {.lex_state = 69}, - [6669] = {.lex_state = 224}, - [6670] = {.lex_state = 224}, - [6671] = {.lex_state = 224}, - [6672] = {.lex_state = 224}, - [6673] = {.lex_state = 224}, - [6674] = {.lex_state = 224}, - [6675] = {.lex_state = 224}, - [6676] = {.lex_state = 224}, - [6677] = {.lex_state = 868}, - [6678] = {.lex_state = 868}, - [6679] = {.lex_state = 504}, - [6680] = {.lex_state = 369}, - [6681] = {.lex_state = 369}, - [6682] = {.lex_state = 868}, - [6683] = {.lex_state = 224}, - [6684] = {.lex_state = 224}, - [6685] = {.lex_state = 224}, - [6686] = {.lex_state = 224}, - [6687] = {.lex_state = 224}, - [6688] = {.lex_state = 224}, - [6689] = {.lex_state = 224}, - [6690] = {.lex_state = 224}, - [6691] = {.lex_state = 868}, - [6692] = {.lex_state = 504}, - [6693] = {.lex_state = 369}, - [6694] = {.lex_state = 369}, - [6695] = {.lex_state = 224}, - [6696] = {.lex_state = 224}, - [6697] = {.lex_state = 224}, - [6698] = {.lex_state = 224}, - [6699] = {.lex_state = 224}, - [6700] = {.lex_state = 224}, - [6701] = {.lex_state = 224}, - [6702] = {.lex_state = 224}, - [6703] = {.lex_state = 868}, - [6704] = {.lex_state = 504}, - [6705] = {.lex_state = 369}, - [6706] = {.lex_state = 369}, - [6707] = {.lex_state = 504}, - [6708] = {.lex_state = 369}, - [6709] = {.lex_state = 369}, - [6710] = {.lex_state = 504}, - [6711] = {.lex_state = 369}, - [6712] = {.lex_state = 369}, - [6713] = {.lex_state = 504}, - [6714] = {.lex_state = 369}, - [6715] = {.lex_state = 369}, - [6716] = {.lex_state = 514}, - [6717] = {.lex_state = 504}, - [6718] = {.lex_state = 369}, - [6719] = {.lex_state = 369}, - [6720] = {.lex_state = 504}, - [6721] = {.lex_state = 369}, - [6722] = {.lex_state = 369}, - [6723] = {.lex_state = 504}, - [6724] = {.lex_state = 369}, - [6725] = {.lex_state = 369}, - [6726] = {.lex_state = 504}, - [6727] = {.lex_state = 369}, - [6728] = {.lex_state = 369}, - [6729] = {.lex_state = 504}, - [6730] = {.lex_state = 369}, - [6731] = {.lex_state = 369}, - [6732] = {.lex_state = 504}, - [6733] = {.lex_state = 369}, - [6734] = {.lex_state = 369}, - [6735] = {.lex_state = 504}, - [6736] = {.lex_state = 369}, - [6737] = {.lex_state = 369}, - [6738] = {.lex_state = 504}, - [6739] = {.lex_state = 369}, - [6740] = {.lex_state = 369}, - [6741] = {.lex_state = 868}, - [6742] = {.lex_state = 504}, - [6743] = {.lex_state = 369}, - [6744] = {.lex_state = 369}, - [6745] = {.lex_state = 504}, - [6746] = {.lex_state = 369}, - [6747] = {.lex_state = 369}, - [6748] = {.lex_state = 504}, - [6749] = {.lex_state = 369}, - [6750] = {.lex_state = 369}, - [6751] = {.lex_state = 504}, - [6752] = {.lex_state = 369}, - [6753] = {.lex_state = 369}, - [6754] = {.lex_state = 504}, - [6755] = {.lex_state = 369}, - [6756] = {.lex_state = 369}, - [6757] = {.lex_state = 868}, - [6758] = {.lex_state = 504}, - [6759] = {.lex_state = 369}, - [6760] = {.lex_state = 369}, - [6761] = {.lex_state = 868}, - [6762] = {.lex_state = 504}, - [6763] = {.lex_state = 369}, - [6764] = {.lex_state = 369}, - [6765] = {.lex_state = 504}, - [6766] = {.lex_state = 369}, - [6767] = {.lex_state = 369}, - [6768] = {.lex_state = 504}, - [6769] = {.lex_state = 369}, - [6770] = {.lex_state = 369}, - [6771] = {.lex_state = 504}, - [6772] = {.lex_state = 369}, - [6773] = {.lex_state = 369}, - [6774] = {.lex_state = 504}, - [6775] = {.lex_state = 369}, - [6776] = {.lex_state = 369}, - [6777] = {.lex_state = 504}, - [6778] = {.lex_state = 369}, - [6779] = {.lex_state = 369}, - [6780] = {.lex_state = 868}, - [6781] = {.lex_state = 504}, - [6782] = {.lex_state = 369}, - [6783] = {.lex_state = 369}, - [6784] = {.lex_state = 868}, - [6785] = {.lex_state = 504}, - [6786] = {.lex_state = 369}, - [6787] = {.lex_state = 369}, - [6788] = {.lex_state = 504}, - [6789] = {.lex_state = 369}, - [6790] = {.lex_state = 369}, - [6791] = {.lex_state = 504}, - [6792] = {.lex_state = 369}, - [6793] = {.lex_state = 369}, - [6794] = {.lex_state = 504}, - [6795] = {.lex_state = 369}, - [6796] = {.lex_state = 369}, - [6797] = {.lex_state = 504}, - [6798] = {.lex_state = 369}, - [6799] = {.lex_state = 369}, - [6800] = {.lex_state = 369}, - [6801] = {.lex_state = 369}, - [6802] = {.lex_state = 369}, - [6803] = {.lex_state = 369}, - [6804] = {.lex_state = 369}, - [6805] = {.lex_state = 369}, - [6806] = {.lex_state = 369}, - [6807] = {.lex_state = 369}, - [6808] = {.lex_state = 369}, - [6809] = {.lex_state = 369}, - [6810] = {.lex_state = 868}, - [6811] = {.lex_state = 868}, - [6812] = {.lex_state = 868}, - [6813] = {.lex_state = 868}, - [6814] = {.lex_state = 868}, - [6815] = {.lex_state = 868}, - [6816] = {.lex_state = 868}, - [6817] = {.lex_state = 868}, - [6818] = {.lex_state = 0}, - [6819] = {.lex_state = 868}, - [6820] = {.lex_state = 378}, - [6821] = {.lex_state = 868}, - [6822] = {.lex_state = 868}, - [6823] = {.lex_state = 868}, - [6824] = {.lex_state = 459}, - [6825] = {.lex_state = 514}, - [6826] = {.lex_state = 491}, - [6827] = {.lex_state = 514}, - [6828] = {.lex_state = 868}, - [6829] = {.lex_state = 868}, - [6830] = {.lex_state = 868}, - [6831] = {.lex_state = 4137}, - [6832] = {.lex_state = 224}, - [6833] = {.lex_state = 868}, - [6834] = {.lex_state = 868}, - [6835] = {.lex_state = 868}, - [6836] = {.lex_state = 868}, - [6837] = {.lex_state = 868}, - [6838] = {.lex_state = 868}, - [6839] = {.lex_state = 155}, - [6840] = {.lex_state = 868}, - [6841] = {.lex_state = 868}, - [6842] = {.lex_state = 868}, - [6843] = {.lex_state = 524}, - [6844] = {.lex_state = 868}, - [6845] = {.lex_state = 868}, - [6846] = {.lex_state = 868}, - [6847] = {.lex_state = 868}, - [6848] = {.lex_state = 868}, - [6849] = {.lex_state = 156}, - [6850] = {.lex_state = 868}, - [6851] = {.lex_state = 18}, - [6852] = {.lex_state = 514}, - [6853] = {.lex_state = 504}, - [6854] = {.lex_state = 504}, - [6855] = {.lex_state = 868}, - [6856] = {.lex_state = 868}, - [6857] = {.lex_state = 463}, - [6858] = {.lex_state = 868}, - [6859] = {.lex_state = 491}, - [6860] = {.lex_state = 868}, - [6861] = {.lex_state = 868}, - [6862] = {.lex_state = 868}, - [6863] = {.lex_state = 318}, - [6864] = {.lex_state = 318}, - [6865] = {.lex_state = 868}, - [6866] = {.lex_state = 868}, - [6867] = {.lex_state = 224}, - [6868] = {.lex_state = 868}, - [6869] = {.lex_state = 504}, - [6870] = {.lex_state = 224}, - [6871] = {.lex_state = 868}, - [6872] = {.lex_state = 453}, - [6873] = {.lex_state = 868}, - [6874] = {.lex_state = 868}, - [6875] = {.lex_state = 868}, - [6876] = {.lex_state = 360}, - [6877] = {.lex_state = 399}, - [6878] = {.lex_state = 868}, - [6879] = {.lex_state = 524}, - [6880] = {.lex_state = 2881}, - [6881] = {.lex_state = 371}, - [6882] = {.lex_state = 524}, - [6883] = {.lex_state = 224}, - [6884] = {.lex_state = 929}, - [6885] = {.lex_state = 868}, - [6886] = {.lex_state = 868}, - [6887] = {.lex_state = 378}, - [6888] = {.lex_state = 868}, - [6889] = {.lex_state = 845}, - [6890] = {.lex_state = 845}, - [6891] = {.lex_state = 224}, - [6892] = {.lex_state = 463}, - [6893] = {.lex_state = 868}, - [6894] = {.lex_state = 868}, - [6895] = {.lex_state = 868}, - [6896] = {.lex_state = 224}, - [6897] = {.lex_state = 868}, - [6898] = {.lex_state = 447}, - [6899] = {.lex_state = 868}, - [6900] = {.lex_state = 223}, - [6901] = {.lex_state = 224}, - [6902] = {.lex_state = 2}, - [6903] = {.lex_state = 518}, - [6904] = {.lex_state = 447}, - [6905] = {.lex_state = 868}, - [6906] = {.lex_state = 868}, - [6907] = {.lex_state = 224}, - [6908] = {.lex_state = 430}, - [6909] = {.lex_state = 224}, - [6910] = {.lex_state = 224}, - [6911] = {.lex_state = 224}, - [6912] = {.lex_state = 224}, - [6913] = {.lex_state = 224}, - [6914] = {.lex_state = 868}, - [6915] = {.lex_state = 224}, - [6916] = {.lex_state = 224}, - [6917] = {.lex_state = 224}, - [6918] = {.lex_state = 868}, - [6919] = {.lex_state = 430}, - [6920] = {.lex_state = 868}, - [6921] = {.lex_state = 868}, - [6922] = {.lex_state = 920}, - [6923] = {.lex_state = 447}, - [6924] = {.lex_state = 867}, - [6925] = {.lex_state = 526}, - [6926] = {.lex_state = 868}, - [6927] = {.lex_state = 518}, - [6928] = {.lex_state = 447}, - [6929] = {.lex_state = 526}, - [6930] = {.lex_state = 224}, - [6931] = {.lex_state = 25}, - [6932] = {.lex_state = 868}, - [6933] = {.lex_state = 224}, - [6934] = {.lex_state = 224}, - [6935] = {.lex_state = 224}, - [6936] = {.lex_state = 224}, - [6937] = {.lex_state = 868}, - [6938] = {.lex_state = 224}, - [6939] = {.lex_state = 224}, - [6940] = {.lex_state = 868}, - [6941] = {.lex_state = 224}, - [6942] = {.lex_state = 223}, - [6943] = {.lex_state = 868}, - [6944] = {.lex_state = 515}, - [6945] = {.lex_state = 868}, - [6946] = {.lex_state = 867}, - [6947] = {.lex_state = 224}, - [6948] = {.lex_state = 447}, - [6949] = {.lex_state = 224}, - [6950] = {.lex_state = 25}, - [6951] = {.lex_state = 447}, - [6952] = {.lex_state = 295}, - [6953] = {.lex_state = 224}, - [6954] = {.lex_state = 447}, - [6955] = {.lex_state = 868}, - [6956] = {.lex_state = 224}, - [6957] = {.lex_state = 224}, - [6958] = {.lex_state = 224}, - [6959] = {.lex_state = 224}, - [6960] = {.lex_state = 224}, - [6961] = {.lex_state = 224}, - [6962] = {.lex_state = 447}, - [6963] = {.lex_state = 224}, - [6964] = {.lex_state = 224}, - [6965] = {.lex_state = 224}, - [6966] = {.lex_state = 224}, - [6967] = {.lex_state = 868}, - [6968] = {.lex_state = 2}, - [6969] = {.lex_state = 868}, - [6970] = {.lex_state = 896}, - [6971] = {.lex_state = 224}, - [6972] = {.lex_state = 517}, - [6973] = {.lex_state = 447}, - [6974] = {.lex_state = 868}, - [6975] = {.lex_state = 868}, - [6976] = {.lex_state = 517}, - [6977] = {.lex_state = 525}, - [6978] = {.lex_state = 447}, - [6979] = {.lex_state = 868}, - [6980] = {.lex_state = 224}, - [6981] = {.lex_state = 868}, - [6982] = {.lex_state = 868}, - [6983] = {.lex_state = 224}, - [6984] = {.lex_state = 224}, - [6985] = {.lex_state = 224}, - [6986] = {.lex_state = 224}, - [6987] = {.lex_state = 868}, - [6988] = {.lex_state = 501}, - [6989] = {.lex_state = 224}, - [6990] = {.lex_state = 224}, - [6991] = {.lex_state = 224}, - [6992] = {.lex_state = 224}, - [6993] = {.lex_state = 868}, - [6994] = {.lex_state = 224}, - [6995] = {.lex_state = 868}, - [6996] = {.lex_state = 868}, - [6997] = {.lex_state = 868}, - [6998] = {.lex_state = 430}, - [6999] = {.lex_state = 868}, - [7000] = {.lex_state = 868}, - [7001] = {.lex_state = 447}, - [7002] = {.lex_state = 224}, - [7003] = {.lex_state = 868}, - [7004] = {.lex_state = 224}, - [7005] = {.lex_state = 224}, - [7006] = {.lex_state = 447}, - [7007] = {.lex_state = 160}, - [7008] = {.lex_state = 224}, - [7009] = {.lex_state = 224}, - [7010] = {.lex_state = 868}, - [7011] = {.lex_state = 868}, - [7012] = {.lex_state = 224}, - [7013] = {.lex_state = 224}, - [7014] = {.lex_state = 224}, - [7015] = {.lex_state = 868}, - [7016] = {.lex_state = 224}, - [7017] = {.lex_state = 868}, - [7018] = {.lex_state = 224}, - [7019] = {.lex_state = 224}, - [7020] = {.lex_state = 868}, - [7021] = {.lex_state = 224}, - [7022] = {.lex_state = 868}, - [7023] = {.lex_state = 868}, - [7024] = {.lex_state = 828}, - [7025] = {.lex_state = 868}, - [7026] = {.lex_state = 447}, - [7027] = {.lex_state = 2}, - [7028] = {.lex_state = 502}, - [7029] = {.lex_state = 868}, - [7030] = {.lex_state = 491}, - [7031] = {.lex_state = 447}, - [7032] = {.lex_state = 868}, - [7033] = {.lex_state = 224}, - [7034] = {.lex_state = 868}, - [7035] = {.lex_state = 224}, - [7036] = {.lex_state = 224}, - [7037] = {.lex_state = 224}, - [7038] = {.lex_state = 868}, - [7039] = {.lex_state = 224}, - [7040] = {.lex_state = 868}, - [7041] = {.lex_state = 224}, - [7042] = {.lex_state = 224}, - [7043] = {.lex_state = 224}, - [7044] = {.lex_state = 494}, - [7045] = {.lex_state = 318}, - [7046] = {.lex_state = 896}, - [7047] = {.lex_state = 447}, - [7048] = {.lex_state = 447}, - [7049] = {.lex_state = 868}, - [7050] = {.lex_state = 868}, - [7051] = {.lex_state = 868}, - [7052] = {.lex_state = 447}, - [7053] = {.lex_state = 491}, - [7054] = {.lex_state = 224}, - [7055] = {.lex_state = 868}, - [7056] = {.lex_state = 867}, - [7057] = {.lex_state = 224}, - [7058] = {.lex_state = 224}, - [7059] = {.lex_state = 224}, - [7060] = {.lex_state = 224}, - [7061] = {.lex_state = 224}, - [7062] = {.lex_state = 224}, - [7063] = {.lex_state = 224}, - [7064] = {.lex_state = 868}, - [7065] = {.lex_state = 868}, - [7066] = {.lex_state = 447}, - [7067] = {.lex_state = 518}, - [7068] = {.lex_state = 525}, - [7069] = {.lex_state = 868}, - [7070] = {.lex_state = 447}, - [7071] = {.lex_state = 868}, - [7072] = {.lex_state = 224}, - [7073] = {.lex_state = 224}, - [7074] = {.lex_state = 224}, - [7075] = {.lex_state = 224}, - [7076] = {.lex_state = 224}, - [7077] = {.lex_state = 224}, - [7078] = {.lex_state = 224}, - [7079] = {.lex_state = 447}, - [7080] = {.lex_state = 224}, - [7081] = {.lex_state = 868}, - [7082] = {.lex_state = 867}, - [7083] = {.lex_state = 224}, - [7084] = {.lex_state = 224}, - [7085] = {.lex_state = 868}, - [7086] = {.lex_state = 868}, - [7087] = {.lex_state = 447}, - [7088] = {.lex_state = 224}, - [7089] = {.lex_state = 447}, - [7090] = {.lex_state = 224}, - [7091] = {.lex_state = 868}, - [7092] = {.lex_state = 868}, - [7093] = {.lex_state = 224}, - [7094] = {.lex_state = 224}, - [7095] = {.lex_state = 224}, - [7096] = {.lex_state = 518}, - [7097] = {.lex_state = 224}, - [7098] = {.lex_state = 224}, - [7099] = {.lex_state = 224}, - [7100] = {.lex_state = 868}, - [7101] = {.lex_state = 868}, - [7102] = {.lex_state = 224}, - [7103] = {.lex_state = 517}, - [7104] = {.lex_state = 224}, - [7105] = {.lex_state = 517}, - [7106] = {.lex_state = 447}, - [7107] = {.lex_state = 447}, - [7108] = {.lex_state = 224}, - [7109] = {.lex_state = 447}, - [7110] = {.lex_state = 224}, - [7111] = {.lex_state = 868}, - [7112] = {.lex_state = 224}, - [7113] = {.lex_state = 224}, - [7114] = {.lex_state = 224}, - [7115] = {.lex_state = 224}, - [7116] = {.lex_state = 868}, - [7117] = {.lex_state = 90}, - [7118] = {.lex_state = 224}, - [7119] = {.lex_state = 224}, - [7120] = {.lex_state = 868}, - [7121] = {.lex_state = 224}, - [7122] = {.lex_state = 224}, - [7123] = {.lex_state = 224}, - [7124] = {.lex_state = 224}, - [7125] = {.lex_state = 224}, - [7126] = {.lex_state = 868}, - [7127] = {.lex_state = 224}, - [7128] = {.lex_state = 224}, - [7129] = {.lex_state = 224}, - [7130] = {.lex_state = 224}, - [7131] = {.lex_state = 224}, - [7132] = {.lex_state = 224}, - [7133] = {.lex_state = 868}, - [7134] = {.lex_state = 224}, - [7135] = {.lex_state = 224}, - [7136] = {.lex_state = 224}, - [7137] = {.lex_state = 868}, - [7138] = {.lex_state = 868}, - [7139] = {.lex_state = 398}, - [7140] = {.lex_state = 318}, - [7141] = {.lex_state = 224}, - [7142] = {.lex_state = 493}, - [7143] = {.lex_state = 224}, - [7144] = {.lex_state = 224}, - [7145] = {.lex_state = 224}, - [7146] = {.lex_state = 224}, - [7147] = {.lex_state = 224}, - [7148] = {.lex_state = 224}, - [7149] = {.lex_state = 224}, - [7150] = {.lex_state = 295}, - [7151] = {.lex_state = 447}, - [7152] = {.lex_state = 868}, - [7153] = {.lex_state = 224}, - [7154] = {.lex_state = 868}, - [7155] = {.lex_state = 224}, - [7156] = {.lex_state = 224}, - [7157] = {.lex_state = 224}, - [7158] = {.lex_state = 491}, - [7159] = {.lex_state = 224}, - [7160] = {.lex_state = 867}, - [7161] = {.lex_state = 224}, - [7162] = {.lex_state = 224}, - [7163] = {.lex_state = 867}, - [7164] = {.lex_state = 224}, - [7165] = {.lex_state = 867}, - [7166] = {.lex_state = 867}, - [7167] = {.lex_state = 867}, - [7168] = {.lex_state = 224}, - [7169] = {.lex_state = 517}, - [7170] = {.lex_state = 867}, - [7171] = {.lex_state = 224}, - [7172] = {.lex_state = 224}, - [7173] = {.lex_state = 224}, - [7174] = {.lex_state = 224}, - [7175] = {.lex_state = 224}, - [7176] = {.lex_state = 521}, - [7177] = {.lex_state = 224}, - [7178] = {.lex_state = 868}, - [7179] = {.lex_state = 369}, - [7180] = {.lex_state = 491}, - [7181] = {.lex_state = 447}, - [7182] = {.lex_state = 868}, - [7183] = {.lex_state = 868}, - [7184] = {.lex_state = 25}, - [7185] = {.lex_state = 518}, - [7186] = {.lex_state = 447}, - [7187] = {.lex_state = 224}, - [7188] = {.lex_state = 25}, - [7189] = {.lex_state = 868}, - [7190] = {.lex_state = 160}, - [7191] = {.lex_state = 868}, - [7192] = {.lex_state = 224}, - [7193] = {.lex_state = 224}, - [7194] = {.lex_state = 224}, - [7195] = {.lex_state = 224}, - [7196] = {.lex_state = 868}, - [7197] = {.lex_state = 224}, - [7198] = {.lex_state = 224}, - [7199] = {.lex_state = 868}, - [7200] = {.lex_state = 224}, - [7201] = {.lex_state = 224}, - [7202] = {.lex_state = 868}, - [7203] = {.lex_state = 868}, - [7204] = {.lex_state = 224}, - [7205] = {.lex_state = 868}, - [7206] = {.lex_state = 867}, - [7207] = {.lex_state = 495}, - [7208] = {.lex_state = 224}, - [7209] = {.lex_state = 868}, - [7210] = {.lex_state = 430}, - [7211] = {.lex_state = 868}, - [7212] = {.lex_state = 491}, - [7213] = {.lex_state = 868}, - [7214] = {.lex_state = 868}, - [7215] = {.lex_state = 867}, - [7216] = {.lex_state = 447}, - [7217] = {.lex_state = 929}, - [7218] = {.lex_state = 868}, - [7219] = {.lex_state = 868}, - [7220] = {.lex_state = 90}, - [7221] = {.lex_state = 518}, - [7222] = {.lex_state = 447}, - [7223] = {.lex_state = 867}, - [7224] = {.lex_state = 868}, - [7225] = {.lex_state = 224}, - [7226] = {.lex_state = 867}, - [7227] = {.lex_state = 2886}, - [7228] = {.lex_state = 224}, - [7229] = {.lex_state = 224}, - [7230] = {.lex_state = 224}, - [7231] = {.lex_state = 518}, - [7232] = {.lex_state = 224}, - [7233] = {.lex_state = 224}, - [7234] = {.lex_state = 295}, - [7235] = {.lex_state = 224}, - [7236] = {.lex_state = 224}, - [7237] = {.lex_state = 868}, - [7238] = {.lex_state = 868}, - [7239] = {.lex_state = 868}, - [7240] = {.lex_state = 2}, - [7241] = {.lex_state = 868}, - [7242] = {.lex_state = 224}, - [7243] = {.lex_state = 499}, - [7244] = {.lex_state = 2}, - [7245] = {.lex_state = 447}, - [7246] = {.lex_state = 868}, - [7247] = {.lex_state = 2}, - [7248] = {.lex_state = 908}, - [7249] = {.lex_state = 868}, - [7250] = {.lex_state = 160}, - [7251] = {.lex_state = 868}, - [7252] = {.lex_state = 868}, - [7253] = {.lex_state = 868}, - [7254] = {.lex_state = 224}, - [7255] = {.lex_state = 2879}, - [7256] = {.lex_state = 295}, - [7257] = {.lex_state = 868}, - [7258] = {.lex_state = 160}, - [7259] = {.lex_state = 868}, - [7260] = {.lex_state = 160}, - [7261] = {.lex_state = 160}, - [7262] = {.lex_state = 868}, - [7263] = {.lex_state = 491}, - [7264] = {.lex_state = 868}, - [7265] = {.lex_state = 868}, - [7266] = {.lex_state = 868}, - [7267] = {.lex_state = 224}, - [7268] = {.lex_state = 920}, - [7269] = {.lex_state = 224}, - [7270] = {.lex_state = 224}, - [7271] = {.lex_state = 868}, - [7272] = {.lex_state = 868}, - [7273] = {.lex_state = 430}, - [7274] = {.lex_state = 868}, - [7275] = {.lex_state = 868}, - [7276] = {.lex_state = 868}, - [7277] = {.lex_state = 868}, - [7278] = {.lex_state = 447}, - [7279] = {.lex_state = 447}, - [7280] = {.lex_state = 159}, - [7281] = {.lex_state = 521}, - [7282] = {.lex_state = 430}, - [7283] = {.lex_state = 518}, - [7284] = {.lex_state = 419}, - [7285] = {.lex_state = 295}, - [7286] = {.lex_state = 447}, - [7287] = {.lex_state = 160}, - [7288] = {.lex_state = 295}, - [7289] = {.lex_state = 224}, - [7290] = {.lex_state = 868}, - [7291] = {.lex_state = 868}, - [7292] = {.lex_state = 868}, - [7293] = {.lex_state = 868}, - [7294] = {.lex_state = 224}, - [7295] = {.lex_state = 526}, - [7296] = {.lex_state = 868}, - [7297] = {.lex_state = 868}, - [7298] = {.lex_state = 224}, - [7299] = {.lex_state = 868}, - [7300] = {.lex_state = 868}, - [7301] = {.lex_state = 295}, - [7302] = {.lex_state = 224}, - [7303] = {.lex_state = 295}, - [7304] = {.lex_state = 515}, - [7305] = {.lex_state = 868}, - [7306] = {.lex_state = 868}, - [7307] = {.lex_state = 868}, - [7308] = {.lex_state = 868}, - [7309] = {.lex_state = 224}, - [7310] = {.lex_state = 295}, - [7311] = {.lex_state = 224}, - [7312] = {.lex_state = 295}, - [7313] = {.lex_state = 868}, - [7314] = {.lex_state = 868}, - [7315] = {.lex_state = 868}, - [7316] = {.lex_state = 868}, - [7317] = {.lex_state = 224}, - [7318] = {.lex_state = 295}, - [7319] = {.lex_state = 868}, - [7320] = {.lex_state = 295}, - [7321] = {.lex_state = 868}, - [7322] = {.lex_state = 868}, - [7323] = {.lex_state = 868}, - [7324] = {.lex_state = 868}, - [7325] = {.lex_state = 295}, - [7326] = {.lex_state = 868}, - [7327] = {.lex_state = 295}, - [7328] = {.lex_state = 868}, - [7329] = {.lex_state = 868}, - [7330] = {.lex_state = 868}, - [7331] = {.lex_state = 868}, - [7332] = {.lex_state = 295}, - [7333] = {.lex_state = 295}, - [7334] = {.lex_state = 224}, - [7335] = {.lex_state = 868}, - [7336] = {.lex_state = 868}, - [7337] = {.lex_state = 224}, - [7338] = {.lex_state = 868}, - [7339] = {.lex_state = 868}, - [7340] = {.lex_state = 295}, - [7341] = {.lex_state = 224}, - [7342] = {.lex_state = 295}, - [7343] = {.lex_state = 224}, - [7344] = {.lex_state = 868}, - [7345] = {.lex_state = 868}, - [7346] = {.lex_state = 224}, - [7347] = {.lex_state = 868}, - [7348] = {.lex_state = 868}, - [7349] = {.lex_state = 224}, - [7350] = {.lex_state = 295}, - [7351] = {.lex_state = 295}, - [7352] = {.lex_state = 224}, - [7353] = {.lex_state = 868}, - [7354] = {.lex_state = 868}, - [7355] = {.lex_state = 868}, - [7356] = {.lex_state = 868}, - [7357] = {.lex_state = 868}, - [7358] = {.lex_state = 295}, - [7359] = {.lex_state = 868}, - [7360] = {.lex_state = 295}, - [7361] = {.lex_state = 868}, - [7362] = {.lex_state = 868}, - [7363] = {.lex_state = 868}, - [7364] = {.lex_state = 868}, - [7365] = {.lex_state = 868}, - [7366] = {.lex_state = 868}, - [7367] = {.lex_state = 295}, - [7368] = {.lex_state = 868}, - [7369] = {.lex_state = 295}, - [7370] = {.lex_state = 521}, - [7371] = {.lex_state = 868}, - [7372] = {.lex_state = 868}, - [7373] = {.lex_state = 868}, - [7374] = {.lex_state = 868}, - [7375] = {.lex_state = 868}, - [7376] = {.lex_state = 295}, - [7377] = {.lex_state = 90}, - [7378] = {.lex_state = 295}, - [7379] = {.lex_state = 868}, - [7380] = {.lex_state = 868}, - [7381] = {.lex_state = 868}, - [7382] = {.lex_state = 868}, - [7383] = {.lex_state = 868}, - [7384] = {.lex_state = 868}, - [7385] = {.lex_state = 295}, - [7386] = {.lex_state = 868}, - [7387] = {.lex_state = 295}, - [7388] = {.lex_state = 868}, - [7389] = {.lex_state = 868}, - [7390] = {.lex_state = 868}, - [7391] = {.lex_state = 224}, - [7392] = {.lex_state = 868}, - [7393] = {.lex_state = 868}, - [7394] = {.lex_state = 295}, - [7395] = {.lex_state = 295}, - [7396] = {.lex_state = 224}, - [7397] = {.lex_state = 868}, - [7398] = {.lex_state = 868}, - [7399] = {.lex_state = 868}, - [7400] = {.lex_state = 868}, - [7401] = {.lex_state = 868}, - [7402] = {.lex_state = 295}, - [7403] = {.lex_state = 295}, - [7404] = {.lex_state = 224}, - [7405] = {.lex_state = 868}, - [7406] = {.lex_state = 868}, - [7407] = {.lex_state = 430}, - [7408] = {.lex_state = 868}, - [7409] = {.lex_state = 868}, - [7410] = {.lex_state = 295}, - [7411] = {.lex_state = 295}, - [7412] = {.lex_state = 224}, - [7413] = {.lex_state = 868}, - [7414] = {.lex_state = 868}, - [7415] = {.lex_state = 868}, - [7416] = {.lex_state = 868}, - [7417] = {.lex_state = 295}, - [7418] = {.lex_state = 295}, - [7419] = {.lex_state = 90}, - [7420] = {.lex_state = 868}, - [7421] = {.lex_state = 868}, - [7422] = {.lex_state = 868}, - [7423] = {.lex_state = 868}, - [7424] = {.lex_state = 295}, - [7425] = {.lex_state = 295}, - [7426] = {.lex_state = 929}, - [7427] = {.lex_state = 868}, - [7428] = {.lex_state = 868}, - [7429] = {.lex_state = 868}, - [7430] = {.lex_state = 868}, - [7431] = {.lex_state = 295}, - [7432] = {.lex_state = 295}, - [7433] = {.lex_state = 908}, - [7434] = {.lex_state = 868}, - [7435] = {.lex_state = 868}, - [7436] = {.lex_state = 868}, - [7437] = {.lex_state = 868}, - [7438] = {.lex_state = 868}, - [7439] = {.lex_state = 868}, - [7440] = {.lex_state = 868}, - [7441] = {.lex_state = 295}, - [7442] = {.lex_state = 828}, - [7443] = {.lex_state = 867}, - [7444] = {.lex_state = 868}, - [7445] = {.lex_state = 868}, - [7446] = {.lex_state = 224}, - [7447] = {.lex_state = 2883}, - [7448] = {.lex_state = 521}, - [7449] = {.lex_state = 521}, - [7450] = {.lex_state = 430}, - [7451] = {.lex_state = 868}, - [7452] = {.lex_state = 868}, - [7453] = {.lex_state = 509}, - [7454] = {.lex_state = 224}, - [7455] = {.lex_state = 868}, - [7456] = {.lex_state = 868}, - [7457] = {.lex_state = 868}, - [7458] = {.lex_state = 295}, - [7459] = {.lex_state = 491}, - [7460] = {.lex_state = 868}, - [7461] = {.lex_state = 868}, - [7462] = {.lex_state = 224}, - [7463] = {.lex_state = 0}, - [7464] = {.lex_state = 868}, - [7465] = {.lex_state = 868}, - [7466] = {.lex_state = 809}, - [7467] = {.lex_state = 0}, - [7468] = {.lex_state = 4578}, - [7469] = {.lex_state = 0}, - [7470] = {.lex_state = 430}, - [7471] = {.lex_state = 2884}, - [7472] = {.lex_state = 224}, - [7473] = {.lex_state = 430}, - [7474] = {.lex_state = 2884}, - [7475] = {.lex_state = 4574}, - [7476] = {.lex_state = 2884}, - [7477] = {.lex_state = 4574}, - [7478] = {.lex_state = 883}, - [7479] = {.lex_state = 2884}, - [7480] = {.lex_state = 3817}, - [7481] = {.lex_state = 3817}, - [7482] = {.lex_state = 4574}, - [7483] = {.lex_state = 224}, - [7484] = {.lex_state = 4576}, - [7485] = {.lex_state = 4574}, - [7486] = {.lex_state = 0}, - [7487] = {.lex_state = 951}, - [7488] = {.lex_state = 4576}, - [7489] = {.lex_state = 4574}, - [7490] = {.lex_state = 4574}, - [7491] = {.lex_state = 4578}, - [7492] = {.lex_state = 4574}, - [7493] = {.lex_state = 4574}, - [7494] = {.lex_state = 4578}, - [7495] = {.lex_state = 0}, - [7496] = {.lex_state = 2884}, - [7497] = {.lex_state = 4574}, - [7498] = {.lex_state = 0}, - [7499] = {.lex_state = 508}, - [7500] = {.lex_state = 0}, - [7501] = {.lex_state = 0}, - [7502] = {.lex_state = 4578}, - [7503] = {.lex_state = 2884}, - [7504] = {.lex_state = 523}, - [7505] = {.lex_state = 3817}, - [7506] = {.lex_state = 224}, - [7507] = {.lex_state = 2884}, - [7508] = {.lex_state = 896}, - [7509] = {.lex_state = 2884}, - [7510] = {.lex_state = 3817}, - [7511] = {.lex_state = 430}, - [7512] = {.lex_state = 4578}, - [7513] = {.lex_state = 224}, - [7514] = {.lex_state = 4574}, - [7515] = {.lex_state = 4574}, - [7516] = {.lex_state = 0}, - [7517] = {.lex_state = 518}, - [7518] = {.lex_state = 4574}, - [7519] = {.lex_state = 88}, - [7520] = {.lex_state = 4574}, - [7521] = {.lex_state = 430}, - [7522] = {.lex_state = 2884}, - [7523] = {.lex_state = 430}, - [7524] = {.lex_state = 0}, - [7525] = {.lex_state = 469}, - [7526] = {.lex_state = 0}, - [7527] = {.lex_state = 69}, - [7528] = {.lex_state = 3817}, - [7529] = {.lex_state = 518}, - [7530] = {.lex_state = 0}, - [7531] = {.lex_state = 18}, - [7532] = {.lex_state = 518}, - [7533] = {.lex_state = 224}, - [7534] = {.lex_state = 4576}, - [7535] = {.lex_state = 224}, - [7536] = {.lex_state = 224}, - [7537] = {.lex_state = 4574}, - [7538] = {.lex_state = 4136}, - [7539] = {.lex_state = 0}, - [7540] = {.lex_state = 2884}, - [7541] = {.lex_state = 4574}, - [7542] = {.lex_state = 4578}, - [7543] = {.lex_state = 4578}, - [7544] = {.lex_state = 515}, - [7545] = {.lex_state = 468}, - [7546] = {.lex_state = 0}, - [7547] = {.lex_state = 2884}, - [7548] = {.lex_state = 224}, - [7549] = {.lex_state = 0}, - [7550] = {.lex_state = 0}, - [7551] = {.lex_state = 0}, - [7552] = {.lex_state = 224}, - [7553] = {.lex_state = 4576}, - [7554] = {.lex_state = 0}, - [7555] = {.lex_state = 4576}, - [7556] = {.lex_state = 908}, - [7557] = {.lex_state = 447}, - [7558] = {.lex_state = 522}, - [7559] = {.lex_state = 4574}, - [7560] = {.lex_state = 224}, - [7561] = {.lex_state = 224}, - [7562] = {.lex_state = 18}, - [7563] = {.lex_state = 4574}, - [7564] = {.lex_state = 2884}, - [7565] = {.lex_state = 4578}, - [7566] = {.lex_state = 0}, - [7567] = {.lex_state = 430}, - [7568] = {.lex_state = 469}, - [7569] = {.lex_state = 4576}, - [7570] = {.lex_state = 4574}, - [7571] = {.lex_state = 0}, - [7572] = {.lex_state = 0}, - [7573] = {.lex_state = 0}, - [7574] = {.lex_state = 4576}, - [7575] = {.lex_state = 0}, - [7576] = {.lex_state = 4574}, - [7577] = {.lex_state = 4574}, - [7578] = {.lex_state = 4574}, - [7579] = {.lex_state = 0}, - [7580] = {.lex_state = 522}, - [7581] = {.lex_state = 0}, - [7582] = {.lex_state = 2884}, - [7583] = {.lex_state = 430}, - [7584] = {.lex_state = 0}, - [7585] = {.lex_state = 4574}, - [7586] = {.lex_state = 2884}, - [7587] = {.lex_state = 224}, - [7588] = {.lex_state = 224}, - [7589] = {.lex_state = 4574}, - [7590] = {.lex_state = 4574}, - [7591] = {.lex_state = 430}, - [7592] = {.lex_state = 4574}, - [7593] = {.lex_state = 4574}, - [7594] = {.lex_state = 0}, - [7595] = {.lex_state = 0}, - [7596] = {.lex_state = 430}, - [7597] = {.lex_state = 0}, - [7598] = {.lex_state = 0}, - [7599] = {.lex_state = 0}, - [7600] = {.lex_state = 430}, - [7601] = {.lex_state = 2884}, - [7602] = {.lex_state = 0}, - [7603] = {.lex_state = 0}, - [7604] = {.lex_state = 224}, - [7605] = {.lex_state = 4574}, - [7606] = {.lex_state = 224}, - [7607] = {.lex_state = 430}, - [7608] = {.lex_state = 0}, - [7609] = {.lex_state = 868}, - [7610] = {.lex_state = 18}, - [7611] = {.lex_state = 0}, - [7612] = {.lex_state = 224}, - [7613] = {.lex_state = 0}, - [7614] = {.lex_state = 0}, - [7615] = {.lex_state = 0}, - [7616] = {.lex_state = 430}, - [7617] = {.lex_state = 0}, - [7618] = {.lex_state = 4574}, - [7619] = {.lex_state = 4574}, - [7620] = {.lex_state = 2884}, - [7621] = {.lex_state = 224}, - [7622] = {.lex_state = 4574}, - [7623] = {.lex_state = 430}, - [7624] = {.lex_state = 468}, - [7625] = {.lex_state = 4136}, - [7626] = {.lex_state = 430}, - [7627] = {.lex_state = 224}, - [7628] = {.lex_state = 0}, - [7629] = {.lex_state = 2884}, - [7630] = {.lex_state = 430}, - [7631] = {.lex_state = 951}, - [7632] = {.lex_state = 868}, - [7633] = {.lex_state = 0}, - [7634] = {.lex_state = 430}, - [7635] = {.lex_state = 0}, - [7636] = {.lex_state = 2884}, - [7637] = {.lex_state = 430}, - [7638] = {.lex_state = 0}, - [7639] = {.lex_state = 522}, - [7640] = {.lex_state = 2454}, - [7641] = {.lex_state = 430}, - [7642] = {.lex_state = 4574}, - [7643] = {.lex_state = 0}, - [7644] = {.lex_state = 0}, - [7645] = {.lex_state = 0}, - [7646] = {.lex_state = 522}, - [7647] = {.lex_state = 430}, - [7648] = {.lex_state = 4136}, - [7649] = {.lex_state = 0}, - [7650] = {.lex_state = 2884}, - [7651] = {.lex_state = 430}, - [7652] = {.lex_state = 224}, - [7653] = {.lex_state = 2884}, - [7654] = {.lex_state = 224}, - [7655] = {.lex_state = 0}, - [7656] = {.lex_state = 0}, - [7657] = {.lex_state = 0}, - [7658] = {.lex_state = 4576}, - [7659] = {.lex_state = 525}, - [7660] = {.lex_state = 4578}, - [7661] = {.lex_state = 518}, - [7662] = {.lex_state = 0}, - [7663] = {.lex_state = 0}, - [7664] = {.lex_state = 224}, - [7665] = {.lex_state = 224}, - [7666] = {.lex_state = 503}, - [7667] = {.lex_state = 0}, - [7668] = {.lex_state = 224}, - [7669] = {.lex_state = 2884}, - [7670] = {.lex_state = 0}, - [7671] = {.lex_state = 0}, - [7672] = {.lex_state = 518}, - [7673] = {.lex_state = 518}, - [7674] = {.lex_state = 522}, - [7675] = {.lex_state = 883}, - [7676] = {.lex_state = 0}, - [7677] = {.lex_state = 0}, - [7678] = {.lex_state = 469}, - [7679] = {.lex_state = 4574}, - [7680] = {.lex_state = 4574}, - [7681] = {.lex_state = 224}, - [7682] = {.lex_state = 0}, - [7683] = {.lex_state = 2885}, - [7684] = {.lex_state = 4576}, - [7685] = {.lex_state = 2884}, - [7686] = {.lex_state = 88}, - [7687] = {.lex_state = 0}, - [7688] = {.lex_state = 0}, - [7689] = {.lex_state = 896}, - [7690] = {.lex_state = 828}, - [7691] = {.lex_state = 0}, - [7692] = {.lex_state = 4138}, - [7693] = {.lex_state = 0}, - [7694] = {.lex_state = 896}, - [7695] = {.lex_state = 828}, - [7696] = {.lex_state = 2}, - [7697] = {.lex_state = 896}, - [7698] = {.lex_state = 3162}, - [7699] = {.lex_state = 0}, - [7700] = {.lex_state = 0}, - [7701] = {.lex_state = 322}, - [7702] = {.lex_state = 0}, - [7703] = {.lex_state = 4138}, - [7704] = {.lex_state = 69}, - [7705] = {.lex_state = 828}, - [7706] = {.lex_state = 0}, - [7707] = {.lex_state = 523}, - [7708] = {.lex_state = 896}, - [7709] = {.lex_state = 0}, - [7710] = {.lex_state = 0}, - [7711] = {.lex_state = 0}, - [7712] = {.lex_state = 518}, - [7713] = {.lex_state = 3162}, - [7714] = {.lex_state = 0}, - [7715] = {.lex_state = 0}, - [7716] = {.lex_state = 4578}, - [7717] = {.lex_state = 828}, - [7718] = {.lex_state = 86}, - [7719] = {.lex_state = 322}, - [7720] = {.lex_state = 0}, - [7721] = {.lex_state = 0}, - [7722] = {.lex_state = 322}, - [7723] = {.lex_state = 0}, - [7724] = {.lex_state = 0}, - [7725] = {.lex_state = 0}, - [7726] = {.lex_state = 828}, - [7727] = {.lex_state = 868}, - [7728] = {.lex_state = 0}, - [7729] = {.lex_state = 518}, - [7730] = {.lex_state = 0}, - [7731] = {.lex_state = 0}, - [7732] = {.lex_state = 0}, - [7733] = {.lex_state = 0}, - [7734] = {.lex_state = 0}, - [7735] = {.lex_state = 0}, - [7736] = {.lex_state = 828}, - [7737] = {.lex_state = 0}, - [7738] = {.lex_state = 0}, - [7739] = {.lex_state = 4596}, - [7740] = {.lex_state = 0}, - [7741] = {.lex_state = 518}, - [7742] = {.lex_state = 868}, - [7743] = {.lex_state = 0}, - [7744] = {.lex_state = 896}, - [7745] = {.lex_state = 0}, - [7746] = {.lex_state = 828}, - [7747] = {.lex_state = 0}, - [7748] = {.lex_state = 0}, - [7749] = {.lex_state = 0}, - [7750] = {.lex_state = 3162}, - [7751] = {.lex_state = 0}, - [7752] = {.lex_state = 868}, - [7753] = {.lex_state = 0}, - [7754] = {.lex_state = 513}, - [7755] = {.lex_state = 2454}, - [7756] = {.lex_state = 896}, - [7757] = {.lex_state = 3162}, - [7758] = {.lex_state = 828}, - [7759] = {.lex_state = 4574}, - [7760] = {.lex_state = 0}, - [7761] = {.lex_state = 525}, - [7762] = {.lex_state = 828}, - [7763] = {.lex_state = 69}, - [7764] = {.lex_state = 0}, - [7765] = {.lex_state = 0}, - [7766] = {.lex_state = 0}, - [7767] = {.lex_state = 0}, - [7768] = {.lex_state = 0}, - [7769] = {.lex_state = 0}, - [7770] = {.lex_state = 0}, - [7771] = {.lex_state = 2}, - [7772] = {.lex_state = 0}, - [7773] = {.lex_state = 0}, - [7774] = {.lex_state = 0}, - [7775] = {.lex_state = 4576}, - [7776] = {.lex_state = 896}, - [7777] = {.lex_state = 0}, - [7778] = {.lex_state = 0}, - [7779] = {.lex_state = 3162}, - [7780] = {.lex_state = 0}, - [7781] = {.lex_state = 4578}, - [7782] = {.lex_state = 828}, - [7783] = {.lex_state = 828}, - [7784] = {.lex_state = 868}, - [7785] = {.lex_state = 518}, - [7786] = {.lex_state = 0}, - [7787] = {.lex_state = 0}, - [7788] = {.lex_state = 868}, - [7789] = {.lex_state = 4578}, - [7790] = {.lex_state = 0}, - [7791] = {.lex_state = 0}, - [7792] = {.lex_state = 86}, - [7793] = {.lex_state = 828}, - [7794] = {.lex_state = 0}, - [7795] = {.lex_state = 0}, - [7796] = {.lex_state = 3162}, - [7797] = {.lex_state = 0}, - [7798] = {.lex_state = 0}, - [7799] = {.lex_state = 828}, - [7800] = {.lex_state = 0}, - [7801] = {.lex_state = 0}, - [7802] = {.lex_state = 0}, - [7803] = {.lex_state = 3162}, - [7804] = {.lex_state = 0}, - [7805] = {.lex_state = 523}, - [7806] = {.lex_state = 0}, - [7807] = {.lex_state = 4574}, - [7808] = {.lex_state = 3819}, - [7809] = {.lex_state = 513}, - [7810] = {.lex_state = 518}, - [7811] = {.lex_state = 828}, - [7812] = {.lex_state = 518}, - [7813] = {.lex_state = 0}, - [7814] = {.lex_state = 0}, - [7815] = {.lex_state = 828}, - [7816] = {.lex_state = 0}, - [7817] = {.lex_state = 69}, - [7818] = {.lex_state = 0}, - [7819] = {.lex_state = 0}, - [7820] = {.lex_state = 0}, - [7821] = {.lex_state = 3162}, - [7822] = {.lex_state = 0}, - [7823] = {.lex_state = 896}, - [7824] = {.lex_state = 0}, - [7825] = {.lex_state = 883}, - [7826] = {.lex_state = 828}, - [7827] = {.lex_state = 0}, - [7828] = {.lex_state = 828}, - [7829] = {.lex_state = 0}, - [7830] = {.lex_state = 69}, - [7831] = {.lex_state = 523}, - [7832] = {.lex_state = 0}, - [7833] = {.lex_state = 4576}, - [7834] = {.lex_state = 513}, - [7835] = {.lex_state = 828}, - [7836] = {.lex_state = 0}, - [7837] = {.lex_state = 0}, - [7838] = {.lex_state = 0}, - [7839] = {.lex_state = 3162}, - [7840] = {.lex_state = 0}, - [7841] = {.lex_state = 0}, - [7842] = {.lex_state = 0}, - [7843] = {.lex_state = 896}, - [7844] = {.lex_state = 523}, - [7845] = {.lex_state = 0}, - [7846] = {.lex_state = 513}, - [7847] = {.lex_state = 0}, - [7848] = {.lex_state = 0}, - [7849] = {.lex_state = 0}, - [7850] = {.lex_state = 0}, - [7851] = {.lex_state = 0}, - [7852] = {.lex_state = 868}, - [7853] = {.lex_state = 0}, - [7854] = {.lex_state = 0}, - [7855] = {.lex_state = 0}, - [7856] = {.lex_state = 828}, - [7857] = {.lex_state = 868}, - [7858] = {.lex_state = 518}, - [7859] = {.lex_state = 0}, - [7860] = {.lex_state = 0}, - [7861] = {.lex_state = 828}, - [7862] = {.lex_state = 896}, - [7863] = {.lex_state = 3162}, - [7864] = {.lex_state = 0}, - [7865] = {.lex_state = 0}, - [7866] = {.lex_state = 0}, - [7867] = {.lex_state = 513}, - [7868] = {.lex_state = 828}, - [7869] = {.lex_state = 0}, - [7870] = {.lex_state = 0}, - [7871] = {.lex_state = 0}, - [7872] = {.lex_state = 883}, - [7873] = {.lex_state = 0}, - [7874] = {.lex_state = 828}, - [7875] = {.lex_state = 828}, - [7876] = {.lex_state = 513}, - [7877] = {.lex_state = 3819}, - [7878] = {.lex_state = 0}, - [7879] = {.lex_state = 0}, - [7880] = {.lex_state = 3162}, - [7881] = {.lex_state = 0}, - [7882] = {.lex_state = 518}, - [7883] = {.lex_state = 0}, - [7884] = {.lex_state = 0}, - [7885] = {.lex_state = 3162}, - [7886] = {.lex_state = 868}, - [7887] = {.lex_state = 518}, - [7888] = {.lex_state = 523}, - [7889] = {.lex_state = 0}, - [7890] = {.lex_state = 0}, - [7891] = {.lex_state = 0}, - [7892] = {.lex_state = 0}, - [7893] = {.lex_state = 828}, - [7894] = {.lex_state = 18}, - [7895] = {.lex_state = 4574}, - [7896] = {.lex_state = 972}, - [7897] = {.lex_state = 0}, - [7898] = {.lex_state = 0}, - [7899] = {.lex_state = 0}, - [7900] = {.lex_state = 0}, - [7901] = {.lex_state = 0}, - [7902] = {.lex_state = 0}, - [7903] = {.lex_state = 0}, - [7904] = {.lex_state = 828}, - [7905] = {.lex_state = 0}, - [7906] = {.lex_state = 0}, - [7907] = {.lex_state = 868}, - [7908] = {.lex_state = 0}, - [7909] = {.lex_state = 2}, - [7910] = {.lex_state = 322}, - [7911] = {.lex_state = 518}, - [7912] = {.lex_state = 0}, - [7913] = {.lex_state = 0}, - [7914] = {.lex_state = 0}, - [7915] = {.lex_state = 828}, - [7916] = {.lex_state = 0}, - [7917] = {.lex_state = 69}, - [7918] = {.lex_state = 0}, - [7919] = {.lex_state = 0}, - [7920] = {.lex_state = 3162}, - [7921] = {.lex_state = 828}, - [7922] = {.lex_state = 828}, - [7923] = {.lex_state = 0}, - [7924] = {.lex_state = 3162}, - [7925] = {.lex_state = 508}, - [7926] = {.lex_state = 0}, - [7927] = {.lex_state = 828}, - [7928] = {.lex_state = 0}, - [7929] = {.lex_state = 868}, - [7930] = {.lex_state = 0}, - [7931] = {.lex_state = 828}, - [7932] = {.lex_state = 0}, - [7933] = {.lex_state = 0}, - [7934] = {.lex_state = 0}, - [7935] = {.lex_state = 0}, - [7936] = {.lex_state = 0}, - [7937] = {.lex_state = 0}, - [7938] = {.lex_state = 0}, - [7939] = {.lex_state = 0}, - [7940] = {.lex_state = 0}, - [7941] = {.lex_state = 828}, - [7942] = {.lex_state = 0}, - [7943] = {.lex_state = 0}, - [7944] = {.lex_state = 0}, - [7945] = {.lex_state = 0}, - [7946] = {.lex_state = 0}, - [7947] = {.lex_state = 0}, - [7948] = {.lex_state = 0}, - [7949] = {.lex_state = 2}, - [7950] = {.lex_state = 3162}, - [7951] = {.lex_state = 0}, - [7952] = {.lex_state = 0}, - [7953] = {.lex_state = 828}, - [7954] = {.lex_state = 828}, - [7955] = {.lex_state = 3819}, - [7956] = {.lex_state = 0}, - [7957] = {.lex_state = 0}, - [7958] = {.lex_state = 0}, - [7959] = {.lex_state = 868}, - [7960] = {.lex_state = 0}, - [7961] = {.lex_state = 0}, - [7962] = {.lex_state = 828}, - [7963] = {.lex_state = 518}, - [7964] = {.lex_state = 0}, - [7965] = {.lex_state = 69}, - [7966] = {.lex_state = 896}, - [7967] = {.lex_state = 828}, - [7968] = {.lex_state = 0}, - [7969] = {.lex_state = 896}, - [7970] = {.lex_state = 2}, - [7971] = {.lex_state = 0}, - [7972] = {.lex_state = 0}, - [7973] = {.lex_state = 868}, - [7974] = {.lex_state = 828}, - [7975] = {.lex_state = 0}, - [7976] = {.lex_state = 972}, - [7977] = {.lex_state = 398}, - [7978] = {.lex_state = 518}, - [7979] = {.lex_state = 0}, - [7980] = {.lex_state = 0}, - [7981] = {.lex_state = 513}, - [7982] = {.lex_state = 0}, - [7983] = {.lex_state = 896}, - [7984] = {.lex_state = 518}, - [7985] = {.lex_state = 0}, - [7986] = {.lex_state = 0}, - [7987] = {.lex_state = 0}, - [7988] = {.lex_state = 0}, - [7989] = {.lex_state = 0}, - [7990] = {.lex_state = 0}, - [7991] = {.lex_state = 18}, - [7992] = {.lex_state = 828}, - [7993] = {.lex_state = 828}, - [7994] = {.lex_state = 69}, - [7995] = {.lex_state = 0}, - [7996] = {.lex_state = 0}, - [7997] = {.lex_state = 828}, - [7998] = {.lex_state = 868}, - [7999] = {.lex_state = 828}, - [8000] = {.lex_state = 828}, - [8001] = {.lex_state = 0}, - [8002] = {.lex_state = 523}, - [8003] = {.lex_state = 868}, - [8004] = {.lex_state = 828}, - [8005] = {.lex_state = 0}, - [8006] = {.lex_state = 0}, - [8007] = {.lex_state = 0}, - [8008] = {.lex_state = 2}, - [8009] = {.lex_state = 0}, - [8010] = {.lex_state = 0}, - [8011] = {.lex_state = 896}, - [8012] = {.lex_state = 512}, - [8013] = {.lex_state = 69}, - [8014] = {.lex_state = 0}, - [8015] = {.lex_state = 508}, - [8016] = {.lex_state = 3162}, - [8017] = {.lex_state = 0}, - [8018] = {.lex_state = 0}, - [8019] = {.lex_state = 0}, - [8020] = {.lex_state = 0}, - [8021] = {.lex_state = 0}, - [8022] = {.lex_state = 0}, - [8023] = {.lex_state = 0}, - [8024] = {.lex_state = 0}, - [8025] = {.lex_state = 0}, - [8026] = {.lex_state = 0}, - [8027] = {.lex_state = 828}, - [8028] = {.lex_state = 0}, - [8029] = {.lex_state = 523}, - [8030] = {.lex_state = 868}, - [8031] = {.lex_state = 828}, - [8032] = {.lex_state = 4576}, - [8033] = {.lex_state = 0}, - [8034] = {.lex_state = 828}, - [8035] = {.lex_state = 0}, - [8036] = {.lex_state = 0}, - [8037] = {.lex_state = 518}, - [8038] = {.lex_state = 0}, - [8039] = {.lex_state = 0}, - [8040] = {.lex_state = 828}, - [8041] = {(TSStateId)(-1)}, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [sym_comment] = STATE(0), - [ts_builtin_sym_end] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [aux_sym_cmd_identifier_token41] = ACTIONS(1), - [sym__newline] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [anon_sym_any] = ACTIONS(1), - [anon_sym_binary] = ACTIONS(1), - [anon_sym_block] = ACTIONS(1), - [anon_sym_bool] = ACTIONS(1), - [anon_sym_closure] = ACTIONS(1), - [anon_sym_cond] = ACTIONS(1), - [anon_sym_datetime] = ACTIONS(1), - [anon_sym_directory] = ACTIONS(1), - [anon_sym_duration] = ACTIONS(1), - [anon_sym_expr] = ACTIONS(1), - [anon_sym_float] = ACTIONS(1), - [anon_sym_decimal] = ACTIONS(1), - [anon_sym_filesize] = ACTIONS(1), - [anon_sym_glob] = ACTIONS(1), - [anon_sym_int] = ACTIONS(1), - [anon_sym_keyword] = ACTIONS(1), - [anon_sym_math] = ACTIONS(1), - [anon_sym_nothing] = ACTIONS(1), - [anon_sym_number] = ACTIONS(1), - [anon_sym_operator] = ACTIONS(1), - [anon_sym_path] = ACTIONS(1), - [anon_sym_range] = ACTIONS(1), - [anon_sym_signature] = ACTIONS(1), - [anon_sym_string] = ACTIONS(1), - [anon_sym_table] = ACTIONS(1), - [anon_sym_variable] = ACTIONS(1), - [anon_sym_record] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [aux_sym_ctrl_match_token1] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), - [anon_sym_DOLLAR2] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_QMARK2] = ACTIONS(1), - [anon_sym_LT2] = ACTIONS(1), - [anon_sym_LPAREN2] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_nu] = ACTIONS(1), - [anon_sym_env] = ACTIONS(1), - [anon_sym_DOT2] = ACTIONS(1), - [anon_sym_LBRACK2] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [sym__str_single_quotes] = ACTIONS(1), - [sym__str_back_ticks] = ACTIONS(1), - [aux_sym_record_entry_token1] = ACTIONS(1), - [aux_sym_path_token1] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_EQ2] = ACTIONS(1), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1), - [aux_sym__unquoted_in_record_token4] = ACTIONS(1), - [aux_sym__unquoted_in_record_token5] = ACTIONS(1), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(3), - }, - [1] = { - [sym_nu_script] = STATE(7940), - [sym_shebang] = STATE(82), - [sym__block_body_statement] = STATE(6497), - [sym__declaration] = STATE(6943), - [sym_decl_alias] = STATE(7211), - [sym_stmt_let] = STATE(7219), - [sym_stmt_mut] = STATE(7219), - [sym_stmt_const] = STATE(7219), - [sym_assignment] = STATE(7219), - [sym__mutable_assignment_pattern] = STATE(7444), - [sym__statement] = STATE(6943), - [sym_pipeline] = STATE(7219), - [sym__block_body] = STATE(8009), - [sym_cmd_identifier] = STATE(4769), - [sym_decl_def] = STATE(7211), - [sym_decl_export] = STATE(7211), - [sym_decl_extern] = STATE(7211), - [sym_decl_module] = STATE(7211), - [sym_decl_use] = STATE(7211), - [sym__ctrl_statement] = STATE(7219), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_for] = STATE(7202), - [sym_ctrl_loop] = STATE(7202), - [sym_ctrl_error] = STATE(7202), - [sym_ctrl_while] = STATE(7202), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4815), - [sym_stmt_source] = STATE(7219), - [sym_stmt_register] = STATE(7219), - [sym__stmt_hide] = STATE(7219), - [sym_hide_mod] = STATE(6995), - [sym_hide_env] = STATE(6995), - [sym__stmt_overlay] = STATE(7219), - [sym_overlay_list] = STATE(7000), - [sym_overlay_hide] = STATE(7000), - [sym_overlay_new] = STATE(7000), - [sym_overlay_use] = STATE(7000), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(1474), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), - [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(7433), - [aux_sym_pipeline_repeat1] = STATE(158), - [aux_sym__block_body_repeat1] = STATE(100), - [aux_sym__block_body_repeat2] = STATE(126), - [ts_builtin_sym_end] = ACTIONS(5), - [anon_sym_POUND_BANG] = ACTIONS(7), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(19), - [aux_sym_cmd_identifier_token3] = ACTIONS(19), - [aux_sym_cmd_identifier_token4] = ACTIONS(19), - [aux_sym_cmd_identifier_token5] = ACTIONS(19), - [aux_sym_cmd_identifier_token6] = ACTIONS(19), - [aux_sym_cmd_identifier_token7] = ACTIONS(19), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(19), - [aux_sym_cmd_identifier_token11] = ACTIONS(19), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(19), - [aux_sym_cmd_identifier_token17] = ACTIONS(19), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(19), - [aux_sym_cmd_identifier_token20] = ACTIONS(19), - [aux_sym_cmd_identifier_token21] = ACTIONS(19), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [sym__newline] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(35), - [anon_sym_export_DASHenv] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_use] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_error] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_source] = ACTIONS(79), - [anon_sym_source_DASHenv] = ACTIONS(79), - [anon_sym_register] = ACTIONS(81), - [anon_sym_hide] = ACTIONS(83), - [anon_sym_hide_DASHenv] = ACTIONS(85), - [anon_sym_overlay] = ACTIONS(87), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(121), - }, - [2] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7795), - [sym_cmd_identifier] = STATE(4707), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(97), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym__match_pattern_record_variable] = STATE(593), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2098), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(140), - [sym_val_number] = STATE(2452), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2452), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7800), - [sym_record_entry] = STATE(476), - [sym__record_key] = STATE(7771), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(2), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym__match_pattern_record_repeat1] = STATE(172), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(123), - [anon_sym_alias] = ACTIONS(125), - [anon_sym_let] = ACTIONS(127), - [anon_sym_let_DASHenv] = ACTIONS(127), - [anon_sym_mut] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(149), - [anon_sym_export_DASHenv] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), - [anon_sym_module] = ACTIONS(155), - [anon_sym_use] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(163), - [anon_sym_error] = ACTIONS(165), - [anon_sym_list] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_in] = ACTIONS(167), - [anon_sym_loop] = ACTIONS(177), - [anon_sym_make] = ACTIONS(167), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_if] = ACTIONS(183), - [anon_sym_else] = ACTIONS(167), - [anon_sym_match] = ACTIONS(185), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(193), - [anon_sym_catch] = ACTIONS(167), - [anon_sym_return] = ACTIONS(195), - [anon_sym_source] = ACTIONS(197), - [anon_sym_source_DASHenv] = ACTIONS(197), - [anon_sym_register] = ACTIONS(199), - [anon_sym_hide] = ACTIONS(201), - [anon_sym_hide_DASHenv] = ACTIONS(203), - [anon_sym_overlay] = ACTIONS(205), - [anon_sym_new] = ACTIONS(167), - [anon_sym_as] = ACTIONS(167), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(217), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [3] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7958), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(104), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7738), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [4] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7982), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(98), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7700), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(4), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [5] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7850), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(114), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(8020), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(5), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(313), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [6] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(8033), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(98), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7700), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(6), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [7] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7795), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(97), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7800), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(7), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(317), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [8] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7728), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(104), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7738), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), + case 4752: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == ':') ADVANCE(976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4753: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3735); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4754: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3730); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4755: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3720); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4756: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3725); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4757: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4757); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4758: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4758); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4759: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4759); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4760: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4761); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4761); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4761: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4761); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4762: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'a') ADVANCE(4768); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4763: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(2218); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4764: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(2263); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4765: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(4754); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4766: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(4774); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4767: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(2271); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4768: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(4776); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4769: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(4767); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4770: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'o') ADVANCE(4753); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4771: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'o') ADVANCE(4781); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4772: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4780); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4773: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4746); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4774: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4775); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4775: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4756); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4776: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 's') ADVANCE(4764); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4777: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 't') ADVANCE(4747); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4778: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 't') ADVANCE(4755); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4779: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(4769); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4787); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4780: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4781: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(4778); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4782: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4787); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4783: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2298); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4784: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2287); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4785: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4792); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4786: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4793); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4787: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2300); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4788: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4784); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4789: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4785); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4790: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4783); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4791: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4786); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4792: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4795); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4793: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4794); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4794: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2291); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4795: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2279); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4796: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4748); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4797: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4752); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4798: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4796); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4799: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4801); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4800: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4797); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4801: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3569); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4802: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); + END_STATE(); + case 4803: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(4811); + if (lookahead == '_') ADVANCE(4803); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4804: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(3377); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4805: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(4812); + if (lookahead == '_') ADVANCE(4805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4806: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4828); + if (lookahead == '_') ADVANCE(4818); + if (lookahead == 'i') ADVANCE(4828); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4818); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4807: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4828); + if (lookahead == '_') ADVANCE(4818); + if (lookahead == 'i') ADVANCE(4820); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4818); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4808: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4828); + if (lookahead == 'i') ADVANCE(4828); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4809: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4828); + if (lookahead == 'i') ADVANCE(4820); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4810: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4828); + if (lookahead == 'i') ADVANCE(4824); + if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4811: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4811); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4812: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4812); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4813: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4813); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4814: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4814); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3457); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4815: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4816); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4816: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4817: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4818); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4818: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4819: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'a') ADVANCE(4827); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4820: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4821: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'c') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4822: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'e') ADVANCE(4821); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4823: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'k') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4824: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'n') ADVANCE(3529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4825: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'r') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4826: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 's') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4827: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'y') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4828: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3524); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4829: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2295); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4830: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4833); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4831: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4829); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4832: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4830); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4833: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4834); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4834: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2291); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4835: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + END_STATE(); + case 4836: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '#') ADVANCE(5024); + if (lookahead == '$') ADVANCE(2989); + if (lookahead == '(') ADVANCE(3294); + if (lookahead == '.') ADVANCE(4838); + if (lookahead == '_') ADVANCE(4839); + if (lookahead == '\t' || + lookahead == ' ') SKIP(468); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + END_STATE(); + case 4837: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '.') ADVANCE(4840); + if (lookahead == '_') ADVANCE(4837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + END_STATE(); + case 4838: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3459); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + END_STATE(); + case 4839: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + END_STATE(); + case 4840: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + END_STATE(); + case 4841: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4842); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4842); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + END_STATE(); + case 4842: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4842); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + END_STATE(); + case 4843: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + END_STATE(); + case 4844: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '$') ADVANCE(3464); + if (lookahead == '(') ADVANCE(3372); + if (lookahead == '{') ADVANCE(3609); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4845: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2146); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4845); + END_STATE(); + case 4846: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2092); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4846); + END_STATE(); + case 4847: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2098); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4847); + END_STATE(); + case 4848: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4850); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + END_STATE(); + case 4849: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4851); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + END_STATE(); + case 4850: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4849); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + END_STATE(); + case 4851: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4852); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + END_STATE(); + case 4852: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2179); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4853); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + END_STATE(); + case 4853: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2179); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + END_STATE(); + case 4854: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1951); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4854); + END_STATE(); + case 4855: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2068); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4855); + END_STATE(); + case 4856: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == 'e') ADVANCE(4857); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + END_STATE(); + case 4857: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == 'n') ADVANCE(4858); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + END_STATE(); + case 4858: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1998); + if (lookahead == 'v') ADVANCE(1153); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + END_STATE(); + case 4859: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1998); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + END_STATE(); + case 4860: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2004); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4860); + END_STATE(); + case 4861: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2191); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4861); + END_STATE(); + case 4862: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2110); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4862); + END_STATE(); + case 4863: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1963); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4863); + END_STATE(); + case 4864: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2104); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4864); + END_STATE(); + case 4865: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == 'e') ADVANCE(4866); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); + END_STATE(); + case 4866: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == 'n') ADVANCE(4867); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); + END_STATE(); + case 4867: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2030); + if (lookahead == 'v') ADVANCE(3234); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); + END_STATE(); + case 4868: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2030); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); + END_STATE(); + case 4869: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2185); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4869); + END_STATE(); + case 4870: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2074); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4870); + END_STATE(); + case 4871: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2197); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4871); + END_STATE(); + case 4872: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1957); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4872); + END_STATE(); + case 4873: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2128); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4873); + END_STATE(); + case 4874: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2116); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4874); + END_STATE(); + case 4875: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2010); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4875); + END_STATE(); + case 4876: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2086); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4876); + END_STATE(); + case 4877: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2122); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4877); + END_STATE(); + case 4878: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2080); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4878); + END_STATE(); + case 4879: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == 'e') ADVANCE(4880); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4882); + END_STATE(); + case 4880: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == 'n') ADVANCE(4881); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4882); + END_STATE(); + case 4881: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2217); + if (lookahead == 'v') ADVANCE(2956); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4882); + END_STATE(); + case 4882: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2217); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4882); + END_STATE(); + case 4883: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1972); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4883); + END_STATE(); + case 4884: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1978); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4884); + END_STATE(); + case 4885: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2140); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4885); + END_STATE(); + case 4886: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == 'e') ADVANCE(4887); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); + END_STATE(); + case 4887: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == 'n') ADVANCE(4888); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); + END_STATE(); + case 4888: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == 'v') ADVANCE(3217); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); + END_STATE(); + case 4889: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2050); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); + END_STATE(); + case 4890: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2056); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4890); + END_STATE(); + case 4891: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2134); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4891); + END_STATE(); + case 4892: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2062); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4892); + END_STATE(); + case 4893: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(1966); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4893); + END_STATE(); + case 4894: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '.') ADVANCE(4901); + if (lookahead == '_') ADVANCE(4894); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4901); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4895: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '.') ADVANCE(4902); + if (lookahead == '_') ADVANCE(4895); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4902); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 4896: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '.') ADVANCE(4897); + if (lookahead == '_') ADVANCE(4904); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4903); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4897: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '.') ADVANCE(4844); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4898: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N') ADVANCE(4998); + if (lookahead == 'f') ADVANCE(3148); + if (lookahead == 'n') ADVANCE(3112); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4899: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '_') ADVANCE(4901); + if (lookahead == 'b') ADVANCE(5013); + if (lookahead == 'o') ADVANCE(5014); + if (lookahead == 'x') ADVANCE(5015); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4901); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4900: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '_') ADVANCE(4901); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4901); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4901); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4901: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '_') ADVANCE(4901); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4901); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4902: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '_') ADVANCE(4902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4902); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 4903: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '_') ADVANCE(4903); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4900); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4903); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4904: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '_') ADVANCE(4904); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4903); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4905: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'a') ADVANCE(4982); + if (lookahead == 'o') ADVANCE(4954); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4906: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'a') ADVANCE(4953); + if (lookahead == 'o') ADVANCE(4965); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4907: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'a') ADVANCE(4945); + if (lookahead == 'o') ADVANCE(4914); + if (lookahead == 'u') ADVANCE(4984); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4908: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'a') ADVANCE(4944); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4909: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'a') ADVANCE(4996); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4910: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'a') ADVANCE(4975); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4911: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'c') ADVANCE(4936); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4912: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'c') ADVANCE(4937); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4913: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'c') ADVANCE(4927); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4914: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'd') ADVANCE(4993); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4915: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'd') ADVANCE(4921); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4916: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(4934); + if (lookahead == 'o') ADVANCE(3141); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4917: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(4995); + if (lookahead == 'u') ADVANCE(4948); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5004); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4918: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(4935); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4919: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(2975); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4920: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(3156); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4921: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(3230); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4922: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(3128); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4923: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(2219); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4924: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(2264); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4925: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(3134); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4926: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(2968); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4927: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(3213); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4928: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(3097); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4929: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(4983); + if (lookahead == 'i') ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4959); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4930: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(4908); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4931: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(4973); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4932: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(4971); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4933: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'e') ADVANCE(4967); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4934: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'f') ADVANCE(2950); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4935: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'g') ADVANCE(4943); + if (lookahead == 't') ADVANCE(4991); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4936: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'h') ADVANCE(3198); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4937: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'h') ADVANCE(3164); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4938: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'h') ADVANCE(4942); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4939: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'i') ADVANCE(4915); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4940: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'i') ADVANCE(4910); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4941: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'i') ADVANCE(4957); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4942: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'i') ADVANCE(4950); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4943: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'i') ADVANCE(4980); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4944: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'k') ADVANCE(3091); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4945: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'k') ADVANCE(4922); + if (lookahead == 't') ADVANCE(4912); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4946: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'l') ADVANCE(2272); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4947: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'l') ADVANCE(4940); + if (lookahead == 's') ADVANCE(3252); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4948: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'l') ADVANCE(4946); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4949: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'l') ADVANCE(4909); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4950: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'l') ADVANCE(4925); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4951: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'l') ADVANCE(4926); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4952: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'l') ADVANCE(4978); + if (lookahead == 'r') ADVANCE(4970); + if (lookahead == 'x') ADVANCE(4963); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4953: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'l') ADVANCE(4981); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4954: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'n') ADVANCE(4979); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4955: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'n') ADVANCE(2961); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4956: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'n') ADVANCE(3205); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4957: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'n') ADVANCE(4992); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4958: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'o') ADVANCE(4989); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4959: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'o') ADVANCE(4962); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4960: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'o') ADVANCE(4966); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4961: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'o') ADVANCE(4974); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4962: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'p') ADVANCE(3121); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4963: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'p') ADVANCE(4961); + if (lookahead == 't') ADVANCE(4932); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4964: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(4990); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4965: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(3103); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4966: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(2998); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4967: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(3221); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4968: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(4930); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4969: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(4913); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4970: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(4960); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4971: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(4955); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4972: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(4956); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4973: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(4949); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4974: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(4987); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4975: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(1137); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4976: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(4919); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4977: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(4985); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4978: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(4920); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4979: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(4986); + if (lookahead == 't') ADVANCE(4941); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4980: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(4988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4981: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(4924); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4982: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(4911); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4983: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1149); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4984: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1157); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4985: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(3010); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4986: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1164); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4987: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1132); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4988: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(4933); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4989: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(4969); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4990: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(4923); + if (lookahead == 'y') ADVANCE(3191); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4991: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(4972); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4992: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(4928); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4993: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(4951); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4994: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'v') ADVANCE(4931); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4995: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'w') ADVANCE(3245); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4996: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'y') ADVANCE(3238); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4997: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5004); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4998: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5003); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 4999: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5002); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 5000: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5009); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5001: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5010); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 5002: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5008); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 5003: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5007); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5004: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5016); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5005: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4998); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5006: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4999); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 5007: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5000); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5008: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5001); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 5009: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5012); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5010: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5011); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 5011: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 5012: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5016); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5013: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(5013); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5014: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(5014); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5015: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5015); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5016: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + END_STATE(); + case 5017: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 5018: + ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); + if (lookahead == '#') ADVANCE(5035); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(5019); + END_STATE(); + case 5019: + ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(5019); + END_STATE(); + case 5020: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); + if (lookahead == '#') ADVANCE(5033); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5021); + END_STATE(); + case 5021: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5021); + END_STATE(); + case 5022: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); + if (lookahead == '#') ADVANCE(5032); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5023); + END_STATE(); + case 5023: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5023); + END_STATE(); + case 5024: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 5025: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '\n') ADVANCE(1126); + if (lookahead == '\r') ADVANCE(1128); + if (lookahead != 0) ADVANCE(1128); + END_STATE(); + case 5026: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '!') ADVANCE(1125); + END_STATE(); + case 5027: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + END_STATE(); + case 5028: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + END_STATE(); + case 5029: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3626); + END_STATE(); + case 5030: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + END_STATE(); + case 5031: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + END_STATE(); + case 5032: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5023); + END_STATE(); + case 5033: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5021); + END_STATE(); + case 5034: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); + END_STATE(); + case 5035: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '|') ADVANCE(5019); + END_STATE(); + case 5036: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(5038); + END_STATE(); + case 5037: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '#') ADVANCE(5036); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(5037); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(5038); + END_STATE(); + case 5038: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(5038); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ADVANCE_MAP( + 'a', 1, + 'b', 2, + 'c', 3, + 'd', 4, + 'e', 5, + 'f', 6, + 'g', 7, + 'i', 8, + 'k', 9, + 'm', 10, + 'n', 11, + 'o', 12, + 'p', 13, + 'r', 14, + 's', 15, + 't', 16, + 'v', 17, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(0); + END_STATE(); + case 1: + if (lookahead == 'n') ADVANCE(18); + END_STATE(); + case 2: + if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'l') ADVANCE(20); + if (lookahead == 'o') ADVANCE(21); + END_STATE(); + case 3: + if (lookahead == 'l') ADVANCE(22); + if (lookahead == 'o') ADVANCE(23); + END_STATE(); + case 4: + if (lookahead == 'a') ADVANCE(24); + if (lookahead == 'e') ADVANCE(25); + if (lookahead == 'i') ADVANCE(26); + if (lookahead == 'u') ADVANCE(27); + END_STATE(); + case 5: + if (lookahead == 'n') ADVANCE(28); + if (lookahead == 'x') ADVANCE(29); + END_STATE(); + case 6: + if (lookahead == 'i') ADVANCE(30); + if (lookahead == 'l') ADVANCE(31); + END_STATE(); + case 7: + if (lookahead == 'l') ADVANCE(32); + END_STATE(); + case 8: + if (lookahead == 'n') ADVANCE(33); + END_STATE(); + case 9: + if (lookahead == 'e') ADVANCE(34); + END_STATE(); + case 10: + if (lookahead == 'a') ADVANCE(35); + END_STATE(); + case 11: + if (lookahead == 'o') ADVANCE(36); + if (lookahead == 'u') ADVANCE(37); + END_STATE(); + case 12: + if (lookahead == 'p') ADVANCE(38); + END_STATE(); + case 13: + if (lookahead == 'a') ADVANCE(39); + END_STATE(); + case 14: + if (lookahead == 'a') ADVANCE(40); + if (lookahead == 'e') ADVANCE(41); + END_STATE(); + case 15: + if (lookahead == 'i') ADVANCE(42); + if (lookahead == 't') ADVANCE(43); + END_STATE(); + case 16: + if (lookahead == 'a') ADVANCE(44); + END_STATE(); + case 17: + if (lookahead == 'a') ADVANCE(45); + END_STATE(); + case 18: + if (lookahead == 'y') ADVANCE(46); + END_STATE(); + case 19: + if (lookahead == 'n') ADVANCE(47); + END_STATE(); + case 20: + if (lookahead == 'o') ADVANCE(48); + END_STATE(); + case 21: + if (lookahead == 'o') ADVANCE(49); + END_STATE(); + case 22: + if (lookahead == 'o') ADVANCE(50); + END_STATE(); + case 23: + if (lookahead == 'n') ADVANCE(51); + END_STATE(); + case 24: + if (lookahead == 't') ADVANCE(52); + END_STATE(); + case 25: + if (lookahead == 'c') ADVANCE(53); + END_STATE(); + case 26: + if (lookahead == 'r') ADVANCE(54); + END_STATE(); + case 27: + if (lookahead == 'r') ADVANCE(55); + END_STATE(); + case 28: + if (lookahead == 'v') ADVANCE(56); + END_STATE(); + case 29: + if (lookahead == 'p') ADVANCE(57); + END_STATE(); + case 30: + if (lookahead == 'l') ADVANCE(58); + END_STATE(); + case 31: + if (lookahead == 'o') ADVANCE(59); + END_STATE(); + case 32: + if (lookahead == 'o') ADVANCE(60); + END_STATE(); + case 33: + if (lookahead == 't') ADVANCE(61); + END_STATE(); + case 34: + if (lookahead == 'y') ADVANCE(62); + END_STATE(); + case 35: + if (lookahead == 't') ADVANCE(63); + END_STATE(); + case 36: + if (lookahead == 't') ADVANCE(64); + END_STATE(); + case 37: + ACCEPT_TOKEN(anon_sym_nu); + if (lookahead == 'm') ADVANCE(65); + END_STATE(); + case 38: + if (lookahead == 'e') ADVANCE(66); + END_STATE(); + case 39: + if (lookahead == 't') ADVANCE(67); + END_STATE(); + case 40: + if (lookahead == 'n') ADVANCE(68); + END_STATE(); + case 41: + if (lookahead == 'c') ADVANCE(69); + END_STATE(); + case 42: + if (lookahead == 'g') ADVANCE(70); + END_STATE(); + case 43: + if (lookahead == 'r') ADVANCE(71); + END_STATE(); + case 44: + if (lookahead == 'b') ADVANCE(72); + END_STATE(); + case 45: + if (lookahead == 'r') ADVANCE(73); + END_STATE(); + case 46: + ACCEPT_TOKEN(anon_sym_any); + END_STATE(); + case 47: + if (lookahead == 'a') ADVANCE(74); + END_STATE(); + case 48: + if (lookahead == 'c') ADVANCE(75); + END_STATE(); + case 49: + if (lookahead == 'l') ADVANCE(76); + END_STATE(); + case 50: + if (lookahead == 's') ADVANCE(77); + END_STATE(); + case 51: + if (lookahead == 'd') ADVANCE(78); + END_STATE(); + case 52: + if (lookahead == 'e') ADVANCE(79); + END_STATE(); + case 53: + if (lookahead == 'i') ADVANCE(80); + END_STATE(); + case 54: + if (lookahead == 'e') ADVANCE(81); + END_STATE(); + case 55: + if (lookahead == 'a') ADVANCE(82); + END_STATE(); + case 56: + ACCEPT_TOKEN(anon_sym_env); + END_STATE(); + case 57: + if (lookahead == 'r') ADVANCE(83); + END_STATE(); + case 58: + if (lookahead == 'e') ADVANCE(84); + END_STATE(); + case 59: + if (lookahead == 'a') ADVANCE(85); + END_STATE(); + case 60: + if (lookahead == 'b') ADVANCE(86); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_int); + END_STATE(); + case 62: + if (lookahead == 'w') ADVANCE(87); + END_STATE(); + case 63: + if (lookahead == 'h') ADVANCE(88); + END_STATE(); + case 64: + if (lookahead == 'h') ADVANCE(89); + END_STATE(); + case 65: + if (lookahead == 'b') ADVANCE(90); + END_STATE(); + case 66: + if (lookahead == 'r') ADVANCE(91); + END_STATE(); + case 67: + if (lookahead == 'h') ADVANCE(92); + END_STATE(); + case 68: + if (lookahead == 'g') ADVANCE(93); + END_STATE(); + case 69: + if (lookahead == 'o') ADVANCE(94); + END_STATE(); + case 70: + if (lookahead == 'n') ADVANCE(95); + END_STATE(); + case 71: + if (lookahead == 'i') ADVANCE(96); + END_STATE(); + case 72: + if (lookahead == 'l') ADVANCE(97); + END_STATE(); + case 73: + if (lookahead == 'i') ADVANCE(98); + END_STATE(); + case 74: + if (lookahead == 'r') ADVANCE(99); + END_STATE(); + case 75: + if (lookahead == 'k') ADVANCE(100); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_bool); + END_STATE(); + case 77: + if (lookahead == 'u') ADVANCE(101); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_cond); + END_STATE(); + case 79: + if (lookahead == 't') ADVANCE(102); + END_STATE(); + case 80: + if (lookahead == 'm') ADVANCE(103); + END_STATE(); + case 81: + if (lookahead == 'c') ADVANCE(104); + END_STATE(); + case 82: + if (lookahead == 't') ADVANCE(105); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_expr); + END_STATE(); + case 84: + if (lookahead == 's') ADVANCE(106); + END_STATE(); + case 85: + if (lookahead == 't') ADVANCE(107); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_glob); + END_STATE(); + case 87: + if (lookahead == 'o') ADVANCE(108); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_math); + END_STATE(); + case 89: + if (lookahead == 'i') ADVANCE(109); + END_STATE(); + case 90: + if (lookahead == 'e') ADVANCE(110); + END_STATE(); + case 91: + if (lookahead == 'a') ADVANCE(111); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_path); + END_STATE(); + case 93: + if (lookahead == 'e') ADVANCE(112); + END_STATE(); + case 94: + if (lookahead == 'r') ADVANCE(113); + END_STATE(); + case 95: + if (lookahead == 'a') ADVANCE(114); + END_STATE(); + case 96: + if (lookahead == 'n') ADVANCE(115); + END_STATE(); + case 97: + if (lookahead == 'e') ADVANCE(116); + END_STATE(); + case 98: + if (lookahead == 'a') ADVANCE(117); + END_STATE(); + case 99: + if (lookahead == 'y') ADVANCE(118); + END_STATE(); + case 100: + ACCEPT_TOKEN(anon_sym_block); + END_STATE(); + case 101: + if (lookahead == 'r') ADVANCE(119); + END_STATE(); + case 102: + if (lookahead == 'i') ADVANCE(120); + END_STATE(); + case 103: + if (lookahead == 'a') ADVANCE(121); + END_STATE(); + case 104: + if (lookahead == 't') ADVANCE(122); + END_STATE(); + case 105: + if (lookahead == 'i') ADVANCE(123); + END_STATE(); + case 106: + if (lookahead == 'i') ADVANCE(124); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_float); + END_STATE(); + case 108: + if (lookahead == 'r') ADVANCE(125); + END_STATE(); + case 109: + if (lookahead == 'n') ADVANCE(126); + END_STATE(); + case 110: + if (lookahead == 'r') ADVANCE(127); + END_STATE(); + case 111: + if (lookahead == 't') ADVANCE(128); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_range); + END_STATE(); + case 113: + if (lookahead == 'd') ADVANCE(129); + END_STATE(); + case 114: + if (lookahead == 't') ADVANCE(130); + END_STATE(); + case 115: + if (lookahead == 'g') ADVANCE(131); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_table); + END_STATE(); + case 117: + if (lookahead == 'b') ADVANCE(132); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_binary); + END_STATE(); + case 119: + if (lookahead == 'e') ADVANCE(133); + END_STATE(); + case 120: + if (lookahead == 'm') ADVANCE(134); + END_STATE(); + case 121: + if (lookahead == 'l') ADVANCE(135); + END_STATE(); + case 122: + if (lookahead == 'o') ADVANCE(136); + END_STATE(); + case 123: + if (lookahead == 'o') ADVANCE(137); + END_STATE(); + case 124: + if (lookahead == 'z') ADVANCE(138); + END_STATE(); + case 125: + if (lookahead == 'd') ADVANCE(139); + END_STATE(); + case 126: + if (lookahead == 'g') ADVANCE(140); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_number); + END_STATE(); + case 128: + if (lookahead == 'o') ADVANCE(141); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_record); + END_STATE(); + case 130: + if (lookahead == 'u') ADVANCE(142); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_string); + END_STATE(); + case 132: + if (lookahead == 'l') ADVANCE(143); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_closure); + END_STATE(); + case 134: + if (lookahead == 'e') ADVANCE(144); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_decimal); + END_STATE(); + case 136: + if (lookahead == 'r') ADVANCE(145); + END_STATE(); + case 137: + if (lookahead == 'n') ADVANCE(146); + END_STATE(); + case 138: + if (lookahead == 'e') ADVANCE(147); + END_STATE(); + case 139: + ACCEPT_TOKEN(anon_sym_keyword); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_nothing); + END_STATE(); + case 141: + if (lookahead == 'r') ADVANCE(148); + END_STATE(); + case 142: + if (lookahead == 'r') ADVANCE(149); + END_STATE(); + case 143: + if (lookahead == 'e') ADVANCE(150); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_datetime); + END_STATE(); + case 145: + if (lookahead == 'y') ADVANCE(151); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_duration); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_filesize); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_operator); + END_STATE(); + case 149: + if (lookahead == 'e') ADVANCE(152); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_variable); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_directory); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_signature); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 999}, + [2] = {.lex_state = 1019}, + [3] = {.lex_state = 1019}, + [4] = {.lex_state = 1019}, + [5] = {.lex_state = 1019}, + [6] = {.lex_state = 1019}, + [7] = {.lex_state = 1019}, + [8] = {.lex_state = 1019}, + [9] = {.lex_state = 1019}, + [10] = {.lex_state = 1019}, + [11] = {.lex_state = 1019}, + [12] = {.lex_state = 1019}, + [13] = {.lex_state = 1019}, + [14] = {.lex_state = 1019}, + [15] = {.lex_state = 1019}, + [16] = {.lex_state = 1019}, + [17] = {.lex_state = 1019}, + [18] = {.lex_state = 1019}, + [19] = {.lex_state = 1019}, + [20] = {.lex_state = 1019}, + [21] = {.lex_state = 1019}, + [22] = {.lex_state = 1019}, + [23] = {.lex_state = 1019}, + [24] = {.lex_state = 1019}, + [25] = {.lex_state = 1019}, + [26] = {.lex_state = 1019}, + [27] = {.lex_state = 1019}, + [28] = {.lex_state = 1017}, + [29] = {.lex_state = 1017}, + [30] = {.lex_state = 1017}, + [31] = {.lex_state = 1017}, + [32] = {.lex_state = 1017}, + [33] = {.lex_state = 36}, + [34] = {.lex_state = 1017}, + [35] = {.lex_state = 1017}, + [36] = {.lex_state = 1017}, + [37] = {.lex_state = 36}, + [38] = {.lex_state = 1017}, + [39] = {.lex_state = 1017}, + [40] = {.lex_state = 36}, + [41] = {.lex_state = 1017}, + [42] = {.lex_state = 1017}, + [43] = {.lex_state = 1017}, + [44] = {.lex_state = 1017}, + [45] = {.lex_state = 36}, + [46] = {.lex_state = 1017}, + [47] = {.lex_state = 1017}, + [48] = {.lex_state = 36}, + [49] = {.lex_state = 1017}, + [50] = {.lex_state = 36}, + [51] = {.lex_state = 1017}, + [52] = {.lex_state = 36}, + [53] = {.lex_state = 1017}, + [54] = {.lex_state = 36}, + [55] = {.lex_state = 1017}, + [56] = {.lex_state = 36}, + [57] = {.lex_state = 1017}, + [58] = {.lex_state = 36}, + [59] = {.lex_state = 1017}, + [60] = {.lex_state = 36}, + [61] = {.lex_state = 1017}, + [62] = {.lex_state = 36}, + [63] = {.lex_state = 1017}, + [64] = {.lex_state = 36}, + [65] = {.lex_state = 1017}, + [66] = {.lex_state = 36}, + [67] = {.lex_state = 1017}, + [68] = {.lex_state = 1017}, + [69] = {.lex_state = 1017}, + [70] = {.lex_state = 1017}, + [71] = {.lex_state = 1017}, + [72] = {.lex_state = 1017}, + [73] = {.lex_state = 1017}, + [74] = {.lex_state = 1017}, + [75] = {.lex_state = 1017}, + [76] = {.lex_state = 36}, + [77] = {.lex_state = 36}, + [78] = {.lex_state = 36}, + [79] = {.lex_state = 36}, + [80] = {.lex_state = 36}, + [81] = {.lex_state = 36}, + [82] = {.lex_state = 36}, + [83] = {.lex_state = 36}, + [84] = {.lex_state = 36}, + [85] = {.lex_state = 36}, + [86] = {.lex_state = 36}, + [87] = {.lex_state = 1017}, + [88] = {.lex_state = 1017}, + [89] = {.lex_state = 1017}, + [90] = {.lex_state = 1017}, + [91] = {.lex_state = 1017}, + [92] = {.lex_state = 1017}, + [93] = {.lex_state = 1017}, + [94] = {.lex_state = 1017}, + [95] = {.lex_state = 1017}, + [96] = {.lex_state = 1017}, + [97] = {.lex_state = 1017}, + [98] = {.lex_state = 1017}, + [99] = {.lex_state = 1017}, + [100] = {.lex_state = 1017}, + [101] = {.lex_state = 1017}, + [102] = {.lex_state = 1017}, + [103] = {.lex_state = 1017}, + [104] = {.lex_state = 1017}, + [105] = {.lex_state = 1017}, + [106] = {.lex_state = 1017}, + [107] = {.lex_state = 1017}, + [108] = {.lex_state = 1017}, + [109] = {.lex_state = 1017}, + [110] = {.lex_state = 1017}, + [111] = {.lex_state = 1017}, + [112] = {.lex_state = 1017}, + [113] = {.lex_state = 1017}, + [114] = {.lex_state = 1017}, + [115] = {.lex_state = 1017}, + [116] = {.lex_state = 1017}, + [117] = {.lex_state = 1017}, + [118] = {.lex_state = 1017}, + [119] = {.lex_state = 1017}, + [120] = {.lex_state = 1017}, + [121] = {.lex_state = 1017}, + [122] = {.lex_state = 1017}, + [123] = {.lex_state = 1017}, + [124] = {.lex_state = 1017}, + [125] = {.lex_state = 1017}, + [126] = {.lex_state = 1017}, + [127] = {.lex_state = 1017}, + [128] = {.lex_state = 1017}, + [129] = {.lex_state = 1017}, + [130] = {.lex_state = 1017}, + [131] = {.lex_state = 1017}, + [132] = {.lex_state = 1017}, + [133] = {.lex_state = 1017}, + [134] = {.lex_state = 1017}, + [135] = {.lex_state = 1017}, + [136] = {.lex_state = 1017}, + [137] = {.lex_state = 1017}, + [138] = {.lex_state = 1017}, + [139] = {.lex_state = 1017}, + [140] = {.lex_state = 1017}, + [141] = {.lex_state = 1017}, + [142] = {.lex_state = 161}, + [143] = {.lex_state = 161}, + [144] = {.lex_state = 161}, + [145] = {.lex_state = 160}, + [146] = {.lex_state = 160}, + [147] = {.lex_state = 160}, + [148] = {.lex_state = 160}, + [149] = {.lex_state = 160}, + [150] = {.lex_state = 161}, + [151] = {.lex_state = 161}, + [152] = {.lex_state = 161}, + [153] = {.lex_state = 162}, + [154] = {.lex_state = 162}, + [155] = {.lex_state = 264}, + [156] = {.lex_state = 264}, + [157] = {.lex_state = 264}, + [158] = {.lex_state = 264}, + [159] = {.lex_state = 264}, + [160] = {.lex_state = 264}, + [161] = {.lex_state = 264}, + [162] = {.lex_state = 264}, + [163] = {.lex_state = 264}, + [164] = {.lex_state = 264}, + [165] = {.lex_state = 264}, + [166] = {.lex_state = 264}, + [167] = {.lex_state = 264}, + [168] = {.lex_state = 264}, + [169] = {.lex_state = 264}, + [170] = {.lex_state = 264}, + [171] = {.lex_state = 264}, + [172] = {.lex_state = 264}, + [173] = {.lex_state = 264}, + [174] = {.lex_state = 264}, + [175] = {.lex_state = 83}, + [176] = {.lex_state = 1019}, + [177] = {.lex_state = 83}, + [178] = {.lex_state = 83}, + [179] = {.lex_state = 83}, + [180] = {.lex_state = 83}, + [181] = {.lex_state = 83}, + [182] = {.lex_state = 83}, + [183] = {.lex_state = 83}, + [184] = {.lex_state = 83}, + [185] = {.lex_state = 83}, + [186] = {.lex_state = 83}, + [187] = {.lex_state = 83}, + [188] = {.lex_state = 83}, + [189] = {.lex_state = 83}, + [190] = {.lex_state = 323}, + [191] = {.lex_state = 323}, + [192] = {.lex_state = 324}, + [193] = {.lex_state = 321}, + [194] = {.lex_state = 300}, + [195] = {.lex_state = 324}, + [196] = {.lex_state = 303}, + [197] = {.lex_state = 322}, + [198] = {.lex_state = 324}, + [199] = {.lex_state = 288}, + [200] = {.lex_state = 291}, + [201] = {.lex_state = 322}, + [202] = {.lex_state = 305}, + [203] = {.lex_state = 305}, + [204] = {.lex_state = 306}, + [205] = {.lex_state = 321}, + [206] = {.lex_state = 324}, + [207] = {.lex_state = 324}, + [208] = {.lex_state = 324}, + [209] = {.lex_state = 294}, + [210] = {.lex_state = 304}, + [211] = {.lex_state = 306}, + [212] = {.lex_state = 322}, + [213] = {.lex_state = 322}, + [214] = {.lex_state = 306}, + [215] = {.lex_state = 322}, + [216] = {.lex_state = 293}, + [217] = {.lex_state = 306}, + [218] = {.lex_state = 306}, + [219] = {.lex_state = 301}, + [220] = {.lex_state = 293}, + [221] = {.lex_state = 333}, + [222] = {.lex_state = 322}, + [223] = {.lex_state = 1017}, + [224] = {.lex_state = 1017}, + [225] = {.lex_state = 1017}, + [226] = {.lex_state = 1017}, + [227] = {.lex_state = 333}, + [228] = {.lex_state = 292}, + [229] = {.lex_state = 294}, + [230] = {.lex_state = 294}, + [231] = {.lex_state = 307}, + [232] = {.lex_state = 1017}, + [233] = {.lex_state = 1017}, + [234] = {.lex_state = 999}, + [235] = {.lex_state = 1017}, + [236] = {.lex_state = 346}, + [237] = {.lex_state = 333}, + [238] = {.lex_state = 346}, + [239] = {.lex_state = 289}, + [240] = {.lex_state = 1017}, + [241] = {.lex_state = 307}, + [242] = {.lex_state = 1017}, + [243] = {.lex_state = 1017}, + [244] = {.lex_state = 333}, + [245] = {.lex_state = 294}, + [246] = {.lex_state = 294}, + [247] = {.lex_state = 1017}, + [248] = {.lex_state = 40}, + [249] = {.lex_state = 1017}, + [250] = {.lex_state = 332}, + [251] = {.lex_state = 308}, + [252] = {.lex_state = 346}, + [253] = {.lex_state = 346}, + [254] = {.lex_state = 1017}, + [255] = {.lex_state = 334}, + [256] = {.lex_state = 334}, + [257] = {.lex_state = 334}, + [258] = {.lex_state = 334}, + [259] = {.lex_state = 334}, + [260] = {.lex_state = 295}, + [261] = {.lex_state = 295}, + [262] = {.lex_state = 308}, + [263] = {.lex_state = 308}, + [264] = {.lex_state = 308}, + [265] = {.lex_state = 308}, + [266] = {.lex_state = 308}, + [267] = {.lex_state = 343}, + [268] = {.lex_state = 335}, + [269] = {.lex_state = 1017}, + [270] = {.lex_state = 1017}, + [271] = {.lex_state = 40}, + [272] = {.lex_state = 40}, + [273] = {.lex_state = 40}, + [274] = {.lex_state = 40}, + [275] = {.lex_state = 40}, + [276] = {.lex_state = 40}, + [277] = {.lex_state = 40}, + [278] = {.lex_state = 40}, + [279] = {.lex_state = 40}, + [280] = {.lex_state = 40}, + [281] = {.lex_state = 40}, + [282] = {.lex_state = 40}, + [283] = {.lex_state = 40}, + [284] = {.lex_state = 40}, + [285] = {.lex_state = 40}, + [286] = {.lex_state = 40}, + [287] = {.lex_state = 40}, + [288] = {.lex_state = 40}, + [289] = {.lex_state = 40}, + [290] = {.lex_state = 40}, + [291] = {.lex_state = 40}, + [292] = {.lex_state = 40}, + [293] = {.lex_state = 40}, + [294] = {.lex_state = 1017}, + [295] = {.lex_state = 340}, + [296] = {.lex_state = 340}, + [297] = {.lex_state = 344}, + [298] = {.lex_state = 296}, + [299] = {.lex_state = 344}, + [300] = {.lex_state = 344}, + [301] = {.lex_state = 1017}, + [302] = {.lex_state = 340}, + [303] = {.lex_state = 297}, + [304] = {.lex_state = 340}, + [305] = {.lex_state = 340}, + [306] = {.lex_state = 340}, + [307] = {.lex_state = 341}, + [308] = {.lex_state = 340}, + [309] = {.lex_state = 341}, + [310] = {.lex_state = 345}, + [311] = {.lex_state = 302}, + [312] = {.lex_state = 340}, + [313] = {.lex_state = 1017}, + [314] = {.lex_state = 1017}, + [315] = {.lex_state = 1017}, + [316] = {.lex_state = 1017}, + [317] = {.lex_state = 340}, + [318] = {.lex_state = 344}, + [319] = {.lex_state = 1017}, + [320] = {.lex_state = 344}, + [321] = {.lex_state = 340}, + [322] = {.lex_state = 340}, + [323] = {.lex_state = 332}, + [324] = {.lex_state = 340}, + [325] = {.lex_state = 340}, + [326] = {.lex_state = 340}, + [327] = {.lex_state = 333}, + [328] = {.lex_state = 340}, + [329] = {.lex_state = 340}, + [330] = {.lex_state = 333}, + [331] = {.lex_state = 340}, + [332] = {.lex_state = 333}, + [333] = {.lex_state = 296}, + [334] = {.lex_state = 296}, + [335] = {.lex_state = 296}, + [336] = {.lex_state = 340}, + [337] = {.lex_state = 296}, + [338] = {.lex_state = 296}, + [339] = {.lex_state = 332}, + [340] = {.lex_state = 340}, + [341] = {.lex_state = 340}, + [342] = {.lex_state = 340}, + [343] = {.lex_state = 1017}, + [344] = {.lex_state = 340}, + [345] = {.lex_state = 340}, + [346] = {.lex_state = 340}, + [347] = {.lex_state = 340}, + [348] = {.lex_state = 356}, + [349] = {.lex_state = 340}, + [350] = {.lex_state = 340}, + [351] = {.lex_state = 340}, + [352] = {.lex_state = 342}, + [353] = {.lex_state = 353}, + [354] = {.lex_state = 342}, + [355] = {.lex_state = 353}, + [356] = {.lex_state = 353}, + [357] = {.lex_state = 353}, + [358] = {.lex_state = 353}, + [359] = {.lex_state = 353}, + [360] = {.lex_state = 353}, + [361] = {.lex_state = 353}, + [362] = {.lex_state = 353}, + [363] = {.lex_state = 265}, + [364] = {.lex_state = 342}, + [365] = {.lex_state = 353}, + [366] = {.lex_state = 285}, + [367] = {.lex_state = 353}, + [368] = {.lex_state = 353}, + [369] = {.lex_state = 40}, + [370] = {.lex_state = 353}, + [371] = {.lex_state = 331}, + [372] = {.lex_state = 353}, + [373] = {.lex_state = 342}, + [374] = {.lex_state = 353}, + [375] = {.lex_state = 353}, + [376] = {.lex_state = 353}, + [377] = {.lex_state = 354}, + [378] = {.lex_state = 342}, + [379] = {.lex_state = 354}, + [380] = {.lex_state = 342}, + [381] = {.lex_state = 1017}, + [382] = {.lex_state = 353}, + [383] = {.lex_state = 353}, + [384] = {.lex_state = 342}, + [385] = {.lex_state = 353}, + [386] = {.lex_state = 340}, + [387] = {.lex_state = 340}, + [388] = {.lex_state = 342}, + [389] = {.lex_state = 353}, + [390] = {.lex_state = 342}, + [391] = {.lex_state = 353}, + [392] = {.lex_state = 353}, + [393] = {.lex_state = 353}, + [394] = {.lex_state = 298}, + [395] = {.lex_state = 353}, + [396] = {.lex_state = 346}, + [397] = {.lex_state = 353}, + [398] = {.lex_state = 331}, + [399] = {.lex_state = 331}, + [400] = {.lex_state = 342}, + [401] = {.lex_state = 298}, + [402] = {.lex_state = 331}, + [403] = {.lex_state = 342}, + [404] = {.lex_state = 331}, + [405] = {.lex_state = 342}, + [406] = {.lex_state = 346}, + [407] = {.lex_state = 265}, + [408] = {.lex_state = 265}, + [409] = {.lex_state = 40}, + [410] = {.lex_state = 1020}, + [411] = {.lex_state = 346}, + [412] = {.lex_state = 342}, + [413] = {.lex_state = 342}, + [414] = {.lex_state = 353}, + [415] = {.lex_state = 290}, + [416] = {.lex_state = 353}, + [417] = {.lex_state = 342}, + [418] = {.lex_state = 338}, + [419] = {.lex_state = 1020}, + [420] = {.lex_state = 332}, + [421] = {.lex_state = 299}, + [422] = {.lex_state = 332}, + [423] = {.lex_state = 332}, + [424] = {.lex_state = 353}, + [425] = {.lex_state = 353}, + [426] = {.lex_state = 355}, + [427] = {.lex_state = 423}, + [428] = {.lex_state = 299}, + [429] = {.lex_state = 423}, + [430] = {.lex_state = 423}, + [431] = {.lex_state = 423}, + [432] = {.lex_state = 338}, + [433] = {.lex_state = 338}, + [434] = {.lex_state = 299}, + [435] = {.lex_state = 355}, + [436] = {.lex_state = 299}, + [437] = {.lex_state = 299}, + [438] = {.lex_state = 338}, + [439] = {.lex_state = 338}, + [440] = {.lex_state = 355}, + [441] = {.lex_state = 423}, + [442] = {.lex_state = 286}, + [443] = {.lex_state = 286}, + [444] = {.lex_state = 355}, + [445] = {.lex_state = 355}, + [446] = {.lex_state = 355}, + [447] = {.lex_state = 355}, + [448] = {.lex_state = 355}, + [449] = {.lex_state = 299}, + [450] = {.lex_state = 299}, + [451] = {.lex_state = 299}, + [452] = {.lex_state = 299}, + [453] = {.lex_state = 337}, + [454] = {.lex_state = 339}, + [455] = {.lex_state = 355}, + [456] = {.lex_state = 1020}, + [457] = {.lex_state = 299}, + [458] = {.lex_state = 299}, + [459] = {.lex_state = 299}, + [460] = {.lex_state = 299}, + [461] = {.lex_state = 299}, + [462] = {.lex_state = 299}, + [463] = {.lex_state = 355}, + [464] = {.lex_state = 355}, + [465] = {.lex_state = 355}, + [466] = {.lex_state = 355}, + [467] = {.lex_state = 355}, + [468] = {.lex_state = 355}, + [469] = {.lex_state = 422}, + [470] = {.lex_state = 422}, + [471] = {.lex_state = 287}, + [472] = {.lex_state = 340}, + [473] = {.lex_state = 422}, + [474] = {.lex_state = 350}, + [475] = {.lex_state = 386}, + [476] = {.lex_state = 386}, + [477] = {.lex_state = 386}, + [478] = {.lex_state = 351}, + [479] = {.lex_state = 351}, + [480] = {.lex_state = 351}, + [481] = {.lex_state = 340}, + [482] = {.lex_state = 336}, + [483] = {.lex_state = 340}, + [484] = {.lex_state = 336}, + [485] = {.lex_state = 352}, + [486] = {.lex_state = 386}, + [487] = {.lex_state = 330}, + [488] = {.lex_state = 386}, + [489] = {.lex_state = 386}, + [490] = {.lex_state = 287}, + [491] = {.lex_state = 386}, + [492] = {.lex_state = 386}, + [493] = {.lex_state = 422}, + [494] = {.lex_state = 299}, + [495] = {.lex_state = 422}, + [496] = {.lex_state = 386}, + [497] = {.lex_state = 287}, + [498] = {.lex_state = 386}, + [499] = {.lex_state = 386}, + [500] = {.lex_state = 330}, + [501] = {.lex_state = 299}, + [502] = {.lex_state = 386}, + [503] = {.lex_state = 351}, + [504] = {.lex_state = 386}, + [505] = {.lex_state = 386}, + [506] = {.lex_state = 287}, + [507] = {.lex_state = 386}, + [508] = {.lex_state = 287}, + [509] = {.lex_state = 287}, + [510] = {.lex_state = 287}, + [511] = {.lex_state = 287}, + [512] = {.lex_state = 386}, + [513] = {.lex_state = 287}, + [514] = {.lex_state = 351}, + [515] = {.lex_state = 287}, + [516] = {.lex_state = 386}, + [517] = {.lex_state = 386}, + [518] = {.lex_state = 287}, + [519] = {.lex_state = 386}, + [520] = {.lex_state = 287}, + [521] = {.lex_state = 287}, + [522] = {.lex_state = 386}, + [523] = {.lex_state = 386}, + [524] = {.lex_state = 287}, + [525] = {.lex_state = 386}, + [526] = {.lex_state = 287}, + [527] = {.lex_state = 386}, + [528] = {.lex_state = 386}, + [529] = {.lex_state = 386}, + [530] = {.lex_state = 348}, + [531] = {.lex_state = 348}, + [532] = {.lex_state = 353}, + [533] = {.lex_state = 386}, + [534] = {.lex_state = 386}, + [535] = {.lex_state = 386}, + [536] = {.lex_state = 386}, + [537] = {.lex_state = 386}, + [538] = {.lex_state = 386}, + [539] = {.lex_state = 386}, + [540] = {.lex_state = 386}, + [541] = {.lex_state = 386}, + [542] = {.lex_state = 83}, + [543] = {.lex_state = 386}, + [544] = {.lex_state = 386}, + [545] = {.lex_state = 386}, + [546] = {.lex_state = 386}, + [547] = {.lex_state = 386}, + [548] = {.lex_state = 386}, + [549] = {.lex_state = 386}, + [550] = {.lex_state = 386}, + [551] = {.lex_state = 386}, + [552] = {.lex_state = 386}, + [553] = {.lex_state = 386}, + [554] = {.lex_state = 386}, + [555] = {.lex_state = 386}, + [556] = {.lex_state = 386}, + [557] = {.lex_state = 386}, + [558] = {.lex_state = 386}, + [559] = {.lex_state = 386}, + [560] = {.lex_state = 83}, + [561] = {.lex_state = 386}, + [562] = {.lex_state = 287}, + [563] = {.lex_state = 386}, + [564] = {.lex_state = 386}, + [565] = {.lex_state = 386}, + [566] = {.lex_state = 386}, + [567] = {.lex_state = 386}, + [568] = {.lex_state = 386}, + [569] = {.lex_state = 386}, + [570] = {.lex_state = 386}, + [571] = {.lex_state = 386}, + [572] = {.lex_state = 386}, + [573] = {.lex_state = 386}, + [574] = {.lex_state = 386}, + [575] = {.lex_state = 386}, + [576] = {.lex_state = 386}, + [577] = {.lex_state = 386}, + [578] = {.lex_state = 386}, + [579] = {.lex_state = 386}, + [580] = {.lex_state = 386}, + [581] = {.lex_state = 386}, + [582] = {.lex_state = 386}, + [583] = {.lex_state = 386}, + [584] = {.lex_state = 386}, + [585] = {.lex_state = 386}, + [586] = {.lex_state = 353}, + [587] = {.lex_state = 353}, + [588] = {.lex_state = 386}, + [589] = {.lex_state = 83}, + [590] = {.lex_state = 386}, + [591] = {.lex_state = 386}, + [592] = {.lex_state = 287}, + [593] = {.lex_state = 386}, + [594] = {.lex_state = 386}, + [595] = {.lex_state = 83}, + [596] = {.lex_state = 83}, + [597] = {.lex_state = 83}, + [598] = {.lex_state = 83}, + [599] = {.lex_state = 83}, + [600] = {.lex_state = 83}, + [601] = {.lex_state = 83}, + [602] = {.lex_state = 83}, + [603] = {.lex_state = 83}, + [604] = {.lex_state = 83}, + [605] = {.lex_state = 83}, + [606] = {.lex_state = 83}, + [607] = {.lex_state = 83}, + [608] = {.lex_state = 83}, + [609] = {.lex_state = 83}, + [610] = {.lex_state = 83}, + [611] = {.lex_state = 83}, + [612] = {.lex_state = 83}, + [613] = {.lex_state = 83}, + [614] = {.lex_state = 83}, + [615] = {.lex_state = 83}, + [616] = {.lex_state = 83}, + [617] = {.lex_state = 83}, + [618] = {.lex_state = 83}, + [619] = {.lex_state = 83}, + [620] = {.lex_state = 83}, + [621] = {.lex_state = 83}, + [622] = {.lex_state = 83}, + [623] = {.lex_state = 83}, + [624] = {.lex_state = 83}, + [625] = {.lex_state = 83}, + [626] = {.lex_state = 83}, + [627] = {.lex_state = 83}, + [628] = {.lex_state = 83}, + [629] = {.lex_state = 83}, + [630] = {.lex_state = 83}, + [631] = {.lex_state = 83}, + [632] = {.lex_state = 83}, + [633] = {.lex_state = 83}, + [634] = {.lex_state = 83}, + [635] = {.lex_state = 83}, + [636] = {.lex_state = 83}, + [637] = {.lex_state = 83}, + [638] = {.lex_state = 83}, + [639] = {.lex_state = 83}, + [640] = {.lex_state = 83}, + [641] = {.lex_state = 83}, + [642] = {.lex_state = 83}, + [643] = {.lex_state = 83}, + [644] = {.lex_state = 83}, + [645] = {.lex_state = 83}, + [646] = {.lex_state = 83}, + [647] = {.lex_state = 83}, + [648] = {.lex_state = 83}, + [649] = {.lex_state = 83}, + [650] = {.lex_state = 83}, + [651] = {.lex_state = 83}, + [652] = {.lex_state = 83}, + [653] = {.lex_state = 83}, + [654] = {.lex_state = 83}, + [655] = {.lex_state = 83}, + [656] = {.lex_state = 83}, + [657] = {.lex_state = 83}, + [658] = {.lex_state = 83}, + [659] = {.lex_state = 83}, + [660] = {.lex_state = 83}, + [661] = {.lex_state = 83}, + [662] = {.lex_state = 83}, + [663] = {.lex_state = 83}, + [664] = {.lex_state = 83}, + [665] = {.lex_state = 83}, + [666] = {.lex_state = 83}, + [667] = {.lex_state = 83}, + [668] = {.lex_state = 1026}, + [669] = {.lex_state = 1026}, + [670] = {.lex_state = 1026}, + [671] = {.lex_state = 1026}, + [672] = {.lex_state = 1026}, + [673] = {.lex_state = 1026}, + [674] = {.lex_state = 1026}, + [675] = {.lex_state = 1026}, + [676] = {.lex_state = 1026}, + [677] = {.lex_state = 1026}, + [678] = {.lex_state = 1026}, + [679] = {.lex_state = 1026}, + [680] = {.lex_state = 45}, + [681] = {.lex_state = 1026}, + [682] = {.lex_state = 1026}, + [683] = {.lex_state = 1026}, + [684] = {.lex_state = 45}, + [685] = {.lex_state = 39}, + [686] = {.lex_state = 39}, + [687] = {.lex_state = 39}, + [688] = {.lex_state = 39}, + [689] = {.lex_state = 39}, + [690] = {.lex_state = 39}, + [691] = {.lex_state = 39}, + [692] = {.lex_state = 39}, + [693] = {.lex_state = 39}, + [694] = {.lex_state = 48}, + [695] = {.lex_state = 51}, + [696] = {.lex_state = 45}, + [697] = {.lex_state = 45}, + [698] = {.lex_state = 45}, + [699] = {.lex_state = 50}, + [700] = {.lex_state = 45}, + [701] = {.lex_state = 45}, + [702] = {.lex_state = 49}, + [703] = {.lex_state = 45}, + [704] = {.lex_state = 45}, + [705] = {.lex_state = 45}, + [706] = {.lex_state = 45}, + [707] = {.lex_state = 45}, + [708] = {.lex_state = 45}, + [709] = {.lex_state = 45}, + [710] = {.lex_state = 45}, + [711] = {.lex_state = 45}, + [712] = {.lex_state = 45}, + [713] = {.lex_state = 45}, + [714] = {.lex_state = 45}, + [715] = {.lex_state = 45}, + [716] = {.lex_state = 49}, + [717] = {.lex_state = 45}, + [718] = {.lex_state = 45}, + [719] = {.lex_state = 45}, + [720] = {.lex_state = 45}, + [721] = {.lex_state = 45}, + [722] = {.lex_state = 45}, + [723] = {.lex_state = 45}, + [724] = {.lex_state = 45}, + [725] = {.lex_state = 57}, + [726] = {.lex_state = 50}, + [727] = {.lex_state = 50}, + [728] = {.lex_state = 34}, + [729] = {.lex_state = 69}, + [730] = {.lex_state = 50}, + [731] = {.lex_state = 73}, + [732] = {.lex_state = 50}, + [733] = {.lex_state = 57}, + [734] = {.lex_state = 45}, + [735] = {.lex_state = 45}, + [736] = {.lex_state = 45}, + [737] = {.lex_state = 45}, + [738] = {.lex_state = 34}, + [739] = {.lex_state = 45}, + [740] = {.lex_state = 57}, + [741] = {.lex_state = 64}, + [742] = {.lex_state = 64}, + [743] = {.lex_state = 45}, + [744] = {.lex_state = 45}, + [745] = {.lex_state = 45}, + [746] = {.lex_state = 45}, + [747] = {.lex_state = 45}, + [748] = {.lex_state = 45}, + [749] = {.lex_state = 45}, + [750] = {.lex_state = 45}, + [751] = {.lex_state = 45}, + [752] = {.lex_state = 45}, + [753] = {.lex_state = 45}, + [754] = {.lex_state = 45}, + [755] = {.lex_state = 45}, + [756] = {.lex_state = 45}, + [757] = {.lex_state = 45}, + [758] = {.lex_state = 45}, + [759] = {.lex_state = 45}, + [760] = {.lex_state = 45}, + [761] = {.lex_state = 57}, + [762] = {.lex_state = 65}, + [763] = {.lex_state = 71}, + [764] = {.lex_state = 71}, + [765] = {.lex_state = 65}, + [766] = {.lex_state = 65}, + [767] = {.lex_state = 65}, + [768] = {.lex_state = 65}, + [769] = {.lex_state = 71}, + [770] = {.lex_state = 71}, + [771] = {.lex_state = 71}, + [772] = {.lex_state = 79}, + [773] = {.lex_state = 45}, + [774] = {.lex_state = 79}, + [775] = {.lex_state = 79}, + [776] = {.lex_state = 79}, + [777] = {.lex_state = 79}, + [778] = {.lex_state = 79}, + [779] = {.lex_state = 45}, + [780] = {.lex_state = 79}, + [781] = {.lex_state = 57}, + [782] = {.lex_state = 57}, + [783] = {.lex_state = 79}, + [784] = {.lex_state = 57}, + [785] = {.lex_state = 79}, + [786] = {.lex_state = 79}, + [787] = {.lex_state = 79}, + [788] = {.lex_state = 79}, + [789] = {.lex_state = 79}, + [790] = {.lex_state = 79}, + [791] = {.lex_state = 79}, + [792] = {.lex_state = 79}, + [793] = {.lex_state = 79}, + [794] = {.lex_state = 79}, + [795] = {.lex_state = 79}, + [796] = {.lex_state = 79}, + [797] = {.lex_state = 45}, + [798] = {.lex_state = 79}, + [799] = {.lex_state = 79}, + [800] = {.lex_state = 79}, + [801] = {.lex_state = 79}, + [802] = {.lex_state = 79}, + [803] = {.lex_state = 43}, + [804] = {.lex_state = 43}, + [805] = {.lex_state = 43}, + [806] = {.lex_state = 79}, + [807] = {.lex_state = 79}, + [808] = {.lex_state = 43}, + [809] = {.lex_state = 43}, + [810] = {.lex_state = 43}, + [811] = {.lex_state = 43}, + [812] = {.lex_state = 43}, + [813] = {.lex_state = 43}, + [814] = {.lex_state = 43}, + [815] = {.lex_state = 43}, + [816] = {.lex_state = 67}, + [817] = {.lex_state = 43}, + [818] = {.lex_state = 43}, + [819] = {.lex_state = 43}, + [820] = {.lex_state = 43}, + [821] = {.lex_state = 43}, + [822] = {.lex_state = 43}, + [823] = {.lex_state = 43}, + [824] = {.lex_state = 43}, + [825] = {.lex_state = 44}, + [826] = {.lex_state = 43}, + [827] = {.lex_state = 43}, + [828] = {.lex_state = 67}, + [829] = {.lex_state = 43}, + [830] = {.lex_state = 43}, + [831] = {.lex_state = 43}, + [832] = {.lex_state = 43}, + [833] = {.lex_state = 43}, + [834] = {.lex_state = 43}, + [835] = {.lex_state = 43}, + [836] = {.lex_state = 43}, + [837] = {.lex_state = 43}, + [838] = {.lex_state = 43}, + [839] = {.lex_state = 43}, + [840] = {.lex_state = 43}, + [841] = {.lex_state = 43}, + [842] = {.lex_state = 43}, + [843] = {.lex_state = 43}, + [844] = {.lex_state = 43}, + [845] = {.lex_state = 43}, + [846] = {.lex_state = 43}, + [847] = {.lex_state = 43}, + [848] = {.lex_state = 43}, + [849] = {.lex_state = 43}, + [850] = {.lex_state = 43}, + [851] = {.lex_state = 43}, + [852] = {.lex_state = 43}, + [853] = {.lex_state = 43}, + [854] = {.lex_state = 43}, + [855] = {.lex_state = 43}, + [856] = {.lex_state = 43}, + [857] = {.lex_state = 43}, + [858] = {.lex_state = 43}, + [859] = {.lex_state = 43}, + [860] = {.lex_state = 43}, + [861] = {.lex_state = 43}, + [862] = {.lex_state = 43}, + [863] = {.lex_state = 43}, + [864] = {.lex_state = 43}, + [865] = {.lex_state = 43}, + [866] = {.lex_state = 43}, + [867] = {.lex_state = 43}, + [868] = {.lex_state = 43}, + [869] = {.lex_state = 43}, + [870] = {.lex_state = 43}, + [871] = {.lex_state = 43}, + [872] = {.lex_state = 43}, + [873] = {.lex_state = 43}, + [874] = {.lex_state = 43}, + [875] = {.lex_state = 43}, + [876] = {.lex_state = 43}, + [877] = {.lex_state = 43}, + [878] = {.lex_state = 43}, + [879] = {.lex_state = 43}, + [880] = {.lex_state = 43}, + [881] = {.lex_state = 43}, + [882] = {.lex_state = 43}, + [883] = {.lex_state = 43}, + [884] = {.lex_state = 43}, + [885] = {.lex_state = 43}, + [886] = {.lex_state = 43}, + [887] = {.lex_state = 43}, + [888] = {.lex_state = 43}, + [889] = {.lex_state = 43}, + [890] = {.lex_state = 43}, + [891] = {.lex_state = 43}, + [892] = {.lex_state = 43}, + [893] = {.lex_state = 43}, + [894] = {.lex_state = 43}, + [895] = {.lex_state = 43}, + [896] = {.lex_state = 43}, + [897] = {.lex_state = 43}, + [898] = {.lex_state = 43}, + [899] = {.lex_state = 43}, + [900] = {.lex_state = 43}, + [901] = {.lex_state = 43}, + [902] = {.lex_state = 43}, + [903] = {.lex_state = 43}, + [904] = {.lex_state = 43}, + [905] = {.lex_state = 43}, + [906] = {.lex_state = 43}, + [907] = {.lex_state = 43}, + [908] = {.lex_state = 43}, + [909] = {.lex_state = 43}, + [910] = {.lex_state = 43}, + [911] = {.lex_state = 43}, + [912] = {.lex_state = 43}, + [913] = {.lex_state = 43}, + [914] = {.lex_state = 43}, + [915] = {.lex_state = 43}, + [916] = {.lex_state = 43}, + [917] = {.lex_state = 43}, + [918] = {.lex_state = 43}, + [919] = {.lex_state = 43}, + [920] = {.lex_state = 43}, + [921] = {.lex_state = 43}, + [922] = {.lex_state = 43}, + [923] = {.lex_state = 43}, + [924] = {.lex_state = 43}, + [925] = {.lex_state = 43}, + [926] = {.lex_state = 43}, + [927] = {.lex_state = 43}, + [928] = {.lex_state = 43}, + [929] = {.lex_state = 43}, + [930] = {.lex_state = 43}, + [931] = {.lex_state = 43}, + [932] = {.lex_state = 43}, + [933] = {.lex_state = 43}, + [934] = {.lex_state = 43}, + [935] = {.lex_state = 43}, + [936] = {.lex_state = 43}, + [937] = {.lex_state = 43}, + [938] = {.lex_state = 43}, + [939] = {.lex_state = 43}, + [940] = {.lex_state = 43}, + [941] = {.lex_state = 67}, + [942] = {.lex_state = 43}, + [943] = {.lex_state = 43}, + [944] = {.lex_state = 43}, + [945] = {.lex_state = 43}, + [946] = {.lex_state = 43}, + [947] = {.lex_state = 43}, + [948] = {.lex_state = 43}, + [949] = {.lex_state = 43}, + [950] = {.lex_state = 43}, + [951] = {.lex_state = 43}, + [952] = {.lex_state = 43}, + [953] = {.lex_state = 43}, + [954] = {.lex_state = 43}, + [955] = {.lex_state = 43}, + [956] = {.lex_state = 43}, + [957] = {.lex_state = 43}, + [958] = {.lex_state = 43}, + [959] = {.lex_state = 43}, + [960] = {.lex_state = 43}, + [961] = {.lex_state = 43}, + [962] = {.lex_state = 43}, + [963] = {.lex_state = 67}, + [964] = {.lex_state = 43}, + [965] = {.lex_state = 43}, + [966] = {.lex_state = 47}, + [967] = {.lex_state = 76}, + [968] = {.lex_state = 47}, + [969] = {.lex_state = 86}, + [970] = {.lex_state = 86}, + [971] = {.lex_state = 47}, + [972] = {.lex_state = 76}, + [973] = {.lex_state = 270}, + [974] = {.lex_state = 159}, + [975] = {.lex_state = 47}, + [976] = {.lex_state = 86}, + [977] = {.lex_state = 47}, + [978] = {.lex_state = 47}, + [979] = {.lex_state = 47}, + [980] = {.lex_state = 47}, + [981] = {.lex_state = 47}, + [982] = {.lex_state = 47}, + [983] = {.lex_state = 47}, + [984] = {.lex_state = 47}, + [985] = {.lex_state = 76}, + [986] = {.lex_state = 47}, + [987] = {.lex_state = 76}, + [988] = {.lex_state = 47}, + [989] = {.lex_state = 86}, + [990] = {.lex_state = 86}, + [991] = {.lex_state = 76}, + [992] = {.lex_state = 47}, + [993] = {.lex_state = 159}, + [994] = {.lex_state = 47}, + [995] = {.lex_state = 270}, + [996] = {.lex_state = 1018}, + [997] = {.lex_state = 47}, + [998] = {.lex_state = 43}, + [999] = {.lex_state = 43}, + [1000] = {.lex_state = 43}, + [1001] = {.lex_state = 43}, + [1002] = {.lex_state = 43}, + [1003] = {.lex_state = 43}, + [1004] = {.lex_state = 43}, + [1005] = {.lex_state = 43}, + [1006] = {.lex_state = 43}, + [1007] = {.lex_state = 43}, + [1008] = {.lex_state = 43}, + [1009] = {.lex_state = 43}, + [1010] = {.lex_state = 82}, + [1011] = {.lex_state = 43}, + [1012] = {.lex_state = 43}, + [1013] = {.lex_state = 43}, + [1014] = {.lex_state = 79}, + [1015] = {.lex_state = 79}, + [1016] = {.lex_state = 79}, + [1017] = {.lex_state = 43}, + [1018] = {.lex_state = 43}, + [1019] = {.lex_state = 43}, + [1020] = {.lex_state = 43}, + [1021] = {.lex_state = 43}, + [1022] = {.lex_state = 43}, + [1023] = {.lex_state = 43}, + [1024] = {.lex_state = 43}, + [1025] = {.lex_state = 43}, + [1026] = {.lex_state = 43}, + [1027] = {.lex_state = 43}, + [1028] = {.lex_state = 1018}, + [1029] = {.lex_state = 43}, + [1030] = {.lex_state = 43}, + [1031] = {.lex_state = 43}, + [1032] = {.lex_state = 43}, + [1033] = {.lex_state = 43}, + [1034] = {.lex_state = 43}, + [1035] = {.lex_state = 43}, + [1036] = {.lex_state = 43}, + [1037] = {.lex_state = 43}, + [1038] = {.lex_state = 43}, + [1039] = {.lex_state = 43}, + [1040] = {.lex_state = 43}, + [1041] = {.lex_state = 43}, + [1042] = {.lex_state = 43}, + [1043] = {.lex_state = 43}, + [1044] = {.lex_state = 43}, + [1045] = {.lex_state = 43}, + [1046] = {.lex_state = 43}, + [1047] = {.lex_state = 43}, + [1048] = {.lex_state = 43}, + [1049] = {.lex_state = 43}, + [1050] = {.lex_state = 43}, + [1051] = {.lex_state = 43}, + [1052] = {.lex_state = 43}, + [1053] = {.lex_state = 43}, + [1054] = {.lex_state = 43}, + [1055] = {.lex_state = 43}, + [1056] = {.lex_state = 43}, + [1057] = {.lex_state = 43}, + [1058] = {.lex_state = 43}, + [1059] = {.lex_state = 43}, + [1060] = {.lex_state = 43}, + [1061] = {.lex_state = 43}, + [1062] = {.lex_state = 47}, + [1063] = {.lex_state = 43}, + [1064] = {.lex_state = 43}, + [1065] = {.lex_state = 43}, + [1066] = {.lex_state = 43}, + [1067] = {.lex_state = 43}, + [1068] = {.lex_state = 43}, + [1069] = {.lex_state = 60}, + [1070] = {.lex_state = 43}, + [1071] = {.lex_state = 43}, + [1072] = {.lex_state = 43}, + [1073] = {.lex_state = 43}, + [1074] = {.lex_state = 43}, + [1075] = {.lex_state = 43}, + [1076] = {.lex_state = 43}, + [1077] = {.lex_state = 43}, + [1078] = {.lex_state = 43}, + [1079] = {.lex_state = 43}, + [1080] = {.lex_state = 43}, + [1081] = {.lex_state = 43}, + [1082] = {.lex_state = 43}, + [1083] = {.lex_state = 43}, + [1084] = {.lex_state = 43}, + [1085] = {.lex_state = 43}, + [1086] = {.lex_state = 43}, + [1087] = {.lex_state = 43}, + [1088] = {.lex_state = 43}, + [1089] = {.lex_state = 43}, + [1090] = {.lex_state = 43}, + [1091] = {.lex_state = 43}, + [1092] = {.lex_state = 43}, + [1093] = {.lex_state = 43}, + [1094] = {.lex_state = 43}, + [1095] = {.lex_state = 43}, + [1096] = {.lex_state = 43}, + [1097] = {.lex_state = 43}, + [1098] = {.lex_state = 43}, + [1099] = {.lex_state = 43}, + [1100] = {.lex_state = 43}, + [1101] = {.lex_state = 43}, + [1102] = {.lex_state = 43}, + [1103] = {.lex_state = 43}, + [1104] = {.lex_state = 43}, + [1105] = {.lex_state = 43}, + [1106] = {.lex_state = 43}, + [1107] = {.lex_state = 43}, + [1108] = {.lex_state = 43}, + [1109] = {.lex_state = 43}, + [1110] = {.lex_state = 43}, + [1111] = {.lex_state = 43}, + [1112] = {.lex_state = 43}, + [1113] = {.lex_state = 43}, + [1114] = {.lex_state = 43}, + [1115] = {.lex_state = 43}, + [1116] = {.lex_state = 43}, + [1117] = {.lex_state = 43}, + [1118] = {.lex_state = 43}, + [1119] = {.lex_state = 43}, + [1120] = {.lex_state = 43}, + [1121] = {.lex_state = 43}, + [1122] = {.lex_state = 43}, + [1123] = {.lex_state = 47}, + [1124] = {.lex_state = 43}, + [1125] = {.lex_state = 61}, + [1126] = {.lex_state = 61}, + [1127] = {.lex_state = 43}, + [1128] = {.lex_state = 43}, + [1129] = {.lex_state = 43}, + [1130] = {.lex_state = 61}, + [1131] = {.lex_state = 61}, + [1132] = {.lex_state = 61}, + [1133] = {.lex_state = 61}, + [1134] = {.lex_state = 43}, + [1135] = {.lex_state = 61}, + [1136] = {.lex_state = 43}, + [1137] = {.lex_state = 61}, + [1138] = {.lex_state = 61}, + [1139] = {.lex_state = 61}, + [1140] = {.lex_state = 61}, + [1141] = {.lex_state = 61}, + [1142] = {.lex_state = 61}, + [1143] = {.lex_state = 61}, + [1144] = {.lex_state = 61}, + [1145] = {.lex_state = 61}, + [1146] = {.lex_state = 61}, + [1147] = {.lex_state = 61}, + [1148] = {.lex_state = 61}, + [1149] = {.lex_state = 61}, + [1150] = {.lex_state = 61}, + [1151] = {.lex_state = 61}, + [1152] = {.lex_state = 61}, + [1153] = {.lex_state = 61}, + [1154] = {.lex_state = 61}, + [1155] = {.lex_state = 61}, + [1156] = {.lex_state = 61}, + [1157] = {.lex_state = 61}, + [1158] = {.lex_state = 61}, + [1159] = {.lex_state = 61}, + [1160] = {.lex_state = 61}, + [1161] = {.lex_state = 61}, + [1162] = {.lex_state = 61}, + [1163] = {.lex_state = 61}, + [1164] = {.lex_state = 61}, + [1165] = {.lex_state = 61}, + [1166] = {.lex_state = 61}, + [1167] = {.lex_state = 61}, + [1168] = {.lex_state = 61}, + [1169] = {.lex_state = 61}, + [1170] = {.lex_state = 61}, + [1171] = {.lex_state = 61}, + [1172] = {.lex_state = 61}, + [1173] = {.lex_state = 43}, + [1174] = {.lex_state = 61}, + [1175] = {.lex_state = 61}, + [1176] = {.lex_state = 61}, + [1177] = {.lex_state = 61}, + [1178] = {.lex_state = 61}, + [1179] = {.lex_state = 61}, + [1180] = {.lex_state = 61}, + [1181] = {.lex_state = 61}, + [1182] = {.lex_state = 61}, + [1183] = {.lex_state = 61}, + [1184] = {.lex_state = 61}, + [1185] = {.lex_state = 61}, + [1186] = {.lex_state = 61}, + [1187] = {.lex_state = 61}, + [1188] = {.lex_state = 61}, + [1189] = {.lex_state = 61}, + [1190] = {.lex_state = 61}, + [1191] = {.lex_state = 61}, + [1192] = {.lex_state = 61}, + [1193] = {.lex_state = 61}, + [1194] = {.lex_state = 61}, + [1195] = {.lex_state = 61}, + [1196] = {.lex_state = 61}, + [1197] = {.lex_state = 61}, + [1198] = {.lex_state = 61}, + [1199] = {.lex_state = 61}, + [1200] = {.lex_state = 61}, + [1201] = {.lex_state = 61}, + [1202] = {.lex_state = 61}, + [1203] = {.lex_state = 61}, + [1204] = {.lex_state = 61}, + [1205] = {.lex_state = 61}, + [1206] = {.lex_state = 61}, + [1207] = {.lex_state = 61}, + [1208] = {.lex_state = 81}, + [1209] = {.lex_state = 81}, + [1210] = {.lex_state = 46}, + [1211] = {.lex_state = 81}, + [1212] = {.lex_state = 81}, + [1213] = {.lex_state = 46}, + [1214] = {.lex_state = 81}, + [1215] = {.lex_state = 46}, + [1216] = {.lex_state = 46}, + [1217] = {.lex_state = 81}, + [1218] = {.lex_state = 46}, + [1219] = {.lex_state = 46}, + [1220] = {.lex_state = 46}, + [1221] = {.lex_state = 46}, + [1222] = {.lex_state = 81}, + [1223] = {.lex_state = 81}, + [1224] = {.lex_state = 81}, + [1225] = {.lex_state = 279}, + [1226] = {.lex_state = 279}, + [1227] = {.lex_state = 38}, + [1228] = {.lex_state = 279}, + [1229] = {.lex_state = 279}, + [1230] = {.lex_state = 279}, + [1231] = {.lex_state = 279}, + [1232] = {.lex_state = 38}, + [1233] = {.lex_state = 81}, + [1234] = {.lex_state = 265}, + [1235] = {.lex_state = 38}, + [1236] = {.lex_state = 46}, + [1237] = {.lex_state = 81}, + [1238] = {.lex_state = 81}, + [1239] = {.lex_state = 1014}, + [1240] = {.lex_state = 81}, + [1241] = {.lex_state = 1059}, + [1242] = {.lex_state = 265}, + [1243] = {.lex_state = 163}, + [1244] = {.lex_state = 46}, + [1245] = {.lex_state = 81}, + [1246] = {.lex_state = 81}, + [1247] = {.lex_state = 81}, + [1248] = {.lex_state = 81}, + [1249] = {.lex_state = 38}, + [1250] = {.lex_state = 40}, + [1251] = {.lex_state = 38}, + [1252] = {.lex_state = 81}, + [1253] = {.lex_state = 40}, + [1254] = {.lex_state = 1014}, + [1255] = {.lex_state = 1059}, + [1256] = {.lex_state = 163}, + [1257] = {.lex_state = 1001}, + [1258] = {.lex_state = 1013}, + [1259] = {.lex_state = 163}, + [1260] = {.lex_state = 1059}, + [1261] = {.lex_state = 182}, + [1262] = {.lex_state = 1016}, + [1263] = {.lex_state = 1013}, + [1264] = {.lex_state = 38}, + [1265] = {.lex_state = 1010}, + [1266] = {.lex_state = 1059}, + [1267] = {.lex_state = 163}, + [1268] = {.lex_state = 1016}, + [1269] = {.lex_state = 1059}, + [1270] = {.lex_state = 1059}, + [1271] = {.lex_state = 182}, + [1272] = {.lex_state = 1003}, + [1273] = {.lex_state = 163}, + [1274] = {.lex_state = 1059}, + [1275] = {.lex_state = 1004}, + [1276] = {.lex_state = 1013}, + [1277] = {.lex_state = 163}, + [1278] = {.lex_state = 163}, + [1279] = {.lex_state = 1003}, + [1280] = {.lex_state = 1059}, + [1281] = {.lex_state = 1042}, + [1282] = {.lex_state = 1015}, + [1283] = {.lex_state = 1015}, + [1284] = {.lex_state = 1015}, + [1285] = {.lex_state = 1015}, + [1286] = {.lex_state = 1013}, + [1287] = {.lex_state = 1010}, + [1288] = {.lex_state = 182}, + [1289] = {.lex_state = 163}, + [1290] = {.lex_state = 1001}, + [1291] = {.lex_state = 1038}, + [1292] = {.lex_state = 1059}, + [1293] = {.lex_state = 44}, + [1294] = {.lex_state = 1015}, + [1295] = {.lex_state = 44}, + [1296] = {.lex_state = 44}, + [1297] = {.lex_state = 1059}, + [1298] = {.lex_state = 44}, + [1299] = {.lex_state = 163}, + [1300] = {.lex_state = 44}, + [1301] = {.lex_state = 1002}, + [1302] = {.lex_state = 163}, + [1303] = {.lex_state = 163}, + [1304] = {.lex_state = 1015}, + [1305] = {.lex_state = 1004}, + [1306] = {.lex_state = 46}, + [1307] = {.lex_state = 1015}, + [1308] = {.lex_state = 1003}, + [1309] = {.lex_state = 44}, + [1310] = {.lex_state = 1003}, + [1311] = {.lex_state = 44}, + [1312] = {.lex_state = 1015}, + [1313] = {.lex_state = 44}, + [1314] = {.lex_state = 1039}, + [1315] = {.lex_state = 44}, + [1316] = {.lex_state = 44}, + [1317] = {.lex_state = 46}, + [1318] = {.lex_state = 1039}, + [1319] = {.lex_state = 182}, + [1320] = {.lex_state = 44}, + [1321] = {.lex_state = 182}, + [1322] = {.lex_state = 182}, + [1323] = {.lex_state = 44}, + [1324] = {.lex_state = 44}, + [1325] = {.lex_state = 1059}, + [1326] = {.lex_state = 44}, + [1327] = {.lex_state = 1004}, + [1328] = {.lex_state = 1059}, + [1329] = {.lex_state = 1004}, + [1330] = {.lex_state = 1004}, + [1331] = {.lex_state = 1004}, + [1332] = {.lex_state = 44}, + [1333] = {.lex_state = 44}, + [1334] = {.lex_state = 44}, + [1335] = {.lex_state = 44}, + [1336] = {.lex_state = 1059}, + [1337] = {.lex_state = 1059}, + [1338] = {.lex_state = 44}, + [1339] = {.lex_state = 44}, + [1340] = {.lex_state = 44}, + [1341] = {.lex_state = 44}, + [1342] = {.lex_state = 1033}, + [1343] = {.lex_state = 1011}, + [1344] = {.lex_state = 44}, + [1345] = {.lex_state = 44}, + [1346] = {.lex_state = 44}, + [1347] = {.lex_state = 44}, + [1348] = {.lex_state = 1042}, + [1349] = {.lex_state = 44}, + [1350] = {.lex_state = 44}, + [1351] = {.lex_state = 44}, + [1352] = {.lex_state = 44}, + [1353] = {.lex_state = 44}, + [1354] = {.lex_state = 44}, + [1355] = {.lex_state = 44}, + [1356] = {.lex_state = 44}, + [1357] = {.lex_state = 44}, + [1358] = {.lex_state = 44}, + [1359] = {.lex_state = 44}, + [1360] = {.lex_state = 44}, + [1361] = {.lex_state = 44}, + [1362] = {.lex_state = 44}, + [1363] = {.lex_state = 44}, + [1364] = {.lex_state = 44}, + [1365] = {.lex_state = 44}, + [1366] = {.lex_state = 44}, + [1367] = {.lex_state = 44}, + [1368] = {.lex_state = 44}, + [1369] = {.lex_state = 44}, + [1370] = {.lex_state = 44}, + [1371] = {.lex_state = 44}, + [1372] = {.lex_state = 44}, + [1373] = {.lex_state = 44}, + [1374] = {.lex_state = 44}, + [1375] = {.lex_state = 44}, + [1376] = {.lex_state = 44}, + [1377] = {.lex_state = 44}, + [1378] = {.lex_state = 44}, + [1379] = {.lex_state = 1038}, + [1380] = {.lex_state = 182}, + [1381] = {.lex_state = 182}, + [1382] = {.lex_state = 1033}, + [1383] = {.lex_state = 44}, + [1384] = {.lex_state = 44}, + [1385] = {.lex_state = 1059}, + [1386] = {.lex_state = 1002}, + [1387] = {.lex_state = 1040}, + [1388] = {.lex_state = 1040}, + [1389] = {.lex_state = 1040}, + [1390] = {.lex_state = 1040}, + [1391] = {.lex_state = 1011}, + [1392] = {.lex_state = 1059}, + [1393] = {.lex_state = 1033}, + [1394] = {.lex_state = 1059}, + [1395] = {.lex_state = 46}, + [1396] = {.lex_state = 1005}, + [1397] = {.lex_state = 1004}, + [1398] = {.lex_state = 1033}, + [1399] = {.lex_state = 182}, + [1400] = {.lex_state = 1033}, + [1401] = {.lex_state = 1059}, + [1402] = {.lex_state = 1059}, + [1403] = {.lex_state = 1059}, + [1404] = {.lex_state = 1005}, + [1405] = {.lex_state = 1039}, + [1406] = {.lex_state = 1033}, + [1407] = {.lex_state = 1040}, + [1408] = {.lex_state = 1004}, + [1409] = {.lex_state = 163}, + [1410] = {.lex_state = 1004}, + [1411] = {.lex_state = 1004}, + [1412] = {.lex_state = 1039}, + [1413] = {.lex_state = 182}, + [1414] = {.lex_state = 182}, + [1415] = {.lex_state = 1006}, + [1416] = {.lex_state = 1032}, + [1417] = {.lex_state = 1061}, + [1418] = {.lex_state = 1067}, + [1419] = {.lex_state = 1040}, + [1420] = {.lex_state = 182}, + [1421] = {.lex_state = 1040}, + [1422] = {.lex_state = 1006}, + [1423] = {.lex_state = 1059}, + [1424] = {.lex_state = 1059}, + [1425] = {.lex_state = 1006}, + [1426] = {.lex_state = 1059}, + [1427] = {.lex_state = 1006}, + [1428] = {.lex_state = 163}, + [1429] = {.lex_state = 1059}, + [1430] = {.lex_state = 44}, + [1431] = {.lex_state = 1006}, + [1432] = {.lex_state = 1031}, + [1433] = {.lex_state = 1040}, + [1434] = {.lex_state = 1031}, + [1435] = {.lex_state = 1005}, + [1436] = {.lex_state = 166}, + [1437] = {.lex_state = 1040}, + [1438] = {.lex_state = 1040}, + [1439] = {.lex_state = 1005}, + [1440] = {.lex_state = 1033}, + [1441] = {.lex_state = 1033}, + [1442] = {.lex_state = 1031}, + [1443] = {.lex_state = 1006}, + [1444] = {.lex_state = 1030}, + [1445] = {.lex_state = 1031}, + [1446] = {.lex_state = 1059}, + [1447] = {.lex_state = 167}, + [1448] = {.lex_state = 1031}, + [1449] = {.lex_state = 1036}, + [1450] = {.lex_state = 182}, + [1451] = {.lex_state = 1031}, + [1452] = {.lex_state = 1031}, + [1453] = {.lex_state = 185}, + [1454] = {.lex_state = 1007}, + [1455] = {.lex_state = 1036}, + [1456] = {.lex_state = 1071}, + [1457] = {.lex_state = 1006}, + [1458] = {.lex_state = 1036}, + [1459] = {.lex_state = 1071}, + [1460] = {.lex_state = 1036}, + [1461] = {.lex_state = 1006}, + [1462] = {.lex_state = 1102}, + [1463] = {.lex_state = 1036}, + [1464] = {.lex_state = 1036}, + [1465] = {.lex_state = 1033}, + [1466] = {.lex_state = 1036}, + [1467] = {.lex_state = 1036}, + [1468] = {.lex_state = 1104}, + [1469] = {.lex_state = 1036}, + [1470] = {.lex_state = 1033}, + [1471] = {.lex_state = 1033}, + [1472] = {.lex_state = 1012}, + [1473] = {.lex_state = 1036}, + [1474] = {.lex_state = 163}, + [1475] = {.lex_state = 1059}, + [1476] = {.lex_state = 1036}, + [1477] = {.lex_state = 1006}, + [1478] = {.lex_state = 1030}, + [1479] = {.lex_state = 1036}, + [1480] = {.lex_state = 1036}, + [1481] = {.lex_state = 1036}, + [1482] = {.lex_state = 1061}, + [1483] = {.lex_state = 1036}, + [1484] = {.lex_state = 1006}, + [1485] = {.lex_state = 1006}, + [1486] = {.lex_state = 168}, + [1487] = {.lex_state = 1036}, + [1488] = {.lex_state = 168}, + [1489] = {.lex_state = 1075}, + [1490] = {.lex_state = 1036}, + [1491] = {.lex_state = 1006}, + [1492] = {.lex_state = 183}, + [1493] = {.lex_state = 1036}, + [1494] = {.lex_state = 1028}, + [1495] = {.lex_state = 1059}, + [1496] = {.lex_state = 1036}, + [1497] = {.lex_state = 1067}, + [1498] = {.lex_state = 1036}, + [1499] = {.lex_state = 198}, + [1500] = {.lex_state = 196}, + [1501] = {.lex_state = 1028}, + [1502] = {.lex_state = 1031}, + [1503] = {.lex_state = 1036}, + [1504] = {.lex_state = 1031}, + [1505] = {.lex_state = 1036}, + [1506] = {.lex_state = 1032}, + [1507] = {.lex_state = 1031}, + [1508] = {.lex_state = 1036}, + [1509] = {.lex_state = 1036}, + [1510] = {.lex_state = 1028}, + [1511] = {.lex_state = 1008}, + [1512] = {.lex_state = 1029}, + [1513] = {.lex_state = 1036}, + [1514] = {.lex_state = 1029}, + [1515] = {.lex_state = 1036}, + [1516] = {.lex_state = 126}, + [1517] = {.lex_state = 1036}, + [1518] = {.lex_state = 1007}, + [1519] = {.lex_state = 200}, + [1520] = {.lex_state = 1029}, + [1521] = {.lex_state = 1075}, + [1522] = {.lex_state = 1036}, + [1523] = {.lex_state = 1036}, + [1524] = {.lex_state = 1028}, + [1525] = {.lex_state = 1036}, + [1526] = {.lex_state = 1106}, + [1527] = {.lex_state = 1075}, + [1528] = {.lex_state = 164}, + [1529] = {.lex_state = 1036}, + [1530] = {.lex_state = 1036}, + [1531] = {.lex_state = 1029}, + [1532] = {.lex_state = 126}, + [1533] = {.lex_state = 1075}, + [1534] = {.lex_state = 1036}, + [1535] = {.lex_state = 126}, + [1536] = {.lex_state = 126}, + [1537] = {.lex_state = 126}, + [1538] = {.lex_state = 1036}, + [1539] = {.lex_state = 1029}, + [1540] = {.lex_state = 126}, + [1541] = {.lex_state = 126}, + [1542] = {.lex_state = 1029}, + [1543] = {.lex_state = 1029}, + [1544] = {.lex_state = 1036}, + [1545] = {.lex_state = 126}, + [1546] = {.lex_state = 126}, + [1547] = {.lex_state = 1036}, + [1548] = {.lex_state = 1092}, + [1549] = {.lex_state = 1036}, + [1550] = {.lex_state = 1008}, + [1551] = {.lex_state = 1036}, + [1552] = {.lex_state = 1071}, + [1553] = {.lex_state = 182}, + [1554] = {.lex_state = 169}, + [1555] = {.lex_state = 189}, + [1556] = {.lex_state = 1106}, + [1557] = {.lex_state = 1036}, + [1558] = {.lex_state = 1104}, + [1559] = {.lex_state = 1029}, + [1560] = {.lex_state = 1092}, + [1561] = {.lex_state = 187}, + [1562] = {.lex_state = 1029}, + [1563] = {.lex_state = 126}, + [1564] = {.lex_state = 1029}, + [1565] = {.lex_state = 1102}, + [1566] = {.lex_state = 187}, + [1567] = {.lex_state = 126}, + [1568] = {.lex_state = 126}, + [1569] = {.lex_state = 1036}, + [1570] = {.lex_state = 1036}, + [1571] = {.lex_state = 126}, + [1572] = {.lex_state = 1029}, + [1573] = {.lex_state = 126}, + [1574] = {.lex_state = 1033}, + [1575] = {.lex_state = 1036}, + [1576] = {.lex_state = 1036}, + [1577] = {.lex_state = 1036}, + [1578] = {.lex_state = 200}, + [1579] = {.lex_state = 1036}, + [1580] = {.lex_state = 1029}, + [1581] = {.lex_state = 1033}, + [1582] = {.lex_state = 126}, + [1583] = {.lex_state = 1029}, + [1584] = {.lex_state = 169}, + [1585] = {.lex_state = 1012}, + [1586] = {.lex_state = 1036}, + [1587] = {.lex_state = 1036}, + [1588] = {.lex_state = 126}, + [1589] = {.lex_state = 1071}, + [1590] = {.lex_state = 1075}, + [1591] = {.lex_state = 1036}, + [1592] = {.lex_state = 1029}, + [1593] = {.lex_state = 169}, + [1594] = {.lex_state = 1075}, + [1595] = {.lex_state = 126}, + [1596] = {.lex_state = 126}, + [1597] = {.lex_state = 1033}, + [1598] = {.lex_state = 169}, + [1599] = {.lex_state = 126}, + [1600] = {.lex_state = 1029}, + [1601] = {.lex_state = 1029}, + [1602] = {.lex_state = 165}, + [1603] = {.lex_state = 1009}, + [1604] = {.lex_state = 1029}, + [1605] = {.lex_state = 1029}, + [1606] = {.lex_state = 169}, + [1607] = {.lex_state = 1037}, + [1608] = {.lex_state = 202}, + [1609] = {.lex_state = 165}, + [1610] = {.lex_state = 1009}, + [1611] = {.lex_state = 1009}, + [1612] = {.lex_state = 1009}, + [1613] = {.lex_state = 1009}, + [1614] = {.lex_state = 1059}, + [1615] = {.lex_state = 1075}, + [1616] = {.lex_state = 1021}, + [1617] = {.lex_state = 1034}, + [1618] = {.lex_state = 1049}, + [1619] = {.lex_state = 1000}, + [1620] = {.lex_state = 1034}, + [1621] = {.lex_state = 1075}, + [1622] = {.lex_state = 1034}, + [1623] = {.lex_state = 1034}, + [1624] = {.lex_state = 1034}, + [1625] = {.lex_state = 1092}, + [1626] = {.lex_state = 1000}, + [1627] = {.lex_state = 1029}, + [1628] = {.lex_state = 1000}, + [1629] = {.lex_state = 1075}, + [1630] = {.lex_state = 1029}, + [1631] = {.lex_state = 1106}, + [1632] = {.lex_state = 1000}, + [1633] = {.lex_state = 1108}, + [1634] = {.lex_state = 1029}, + [1635] = {.lex_state = 1075}, + [1636] = {.lex_state = 1092}, + [1637] = {.lex_state = 1092}, + [1638] = {.lex_state = 1009}, + [1639] = {.lex_state = 126}, + [1640] = {.lex_state = 189}, + [1641] = {.lex_state = 1009}, + [1642] = {.lex_state = 1009}, + [1643] = {.lex_state = 1009}, + [1644] = {.lex_state = 126}, + [1645] = {.lex_state = 1008}, + [1646] = {.lex_state = 1029}, + [1647] = {.lex_state = 1106}, + [1648] = {.lex_state = 1108}, + [1649] = {.lex_state = 1049}, + [1650] = {.lex_state = 1029}, + [1651] = {.lex_state = 1036}, + [1652] = {.lex_state = 1027}, + [1653] = {.lex_state = 1049}, + [1654] = {.lex_state = 1049}, + [1655] = {.lex_state = 1108}, + [1656] = {.lex_state = 1029}, + [1657] = {.lex_state = 1008}, + [1658] = {.lex_state = 1036}, + [1659] = {.lex_state = 1108}, + [1660] = {.lex_state = 1029}, + [1661] = {.lex_state = 1035}, + [1662] = {.lex_state = 202}, + [1663] = {.lex_state = 1029}, + [1664] = {.lex_state = 1029}, + [1665] = {.lex_state = 126}, + [1666] = {.lex_state = 1108}, + [1667] = {.lex_state = 189}, + [1668] = {.lex_state = 165}, + [1669] = {.lex_state = 202}, + [1670] = {.lex_state = 1000}, + [1671] = {.lex_state = 1029}, + [1672] = {.lex_state = 1029}, + [1673] = {.lex_state = 1029}, + [1674] = {.lex_state = 189}, + [1675] = {.lex_state = 202}, + [1676] = {.lex_state = 189}, + [1677] = {.lex_state = 1049}, + [1678] = {.lex_state = 126}, + [1679] = {.lex_state = 126}, + [1680] = {.lex_state = 1108}, + [1681] = {.lex_state = 1009}, + [1682] = {.lex_state = 126}, + [1683] = {.lex_state = 126}, + [1684] = {.lex_state = 1022}, + [1685] = {.lex_state = 41}, + [1686] = {.lex_state = 126}, + [1687] = {.lex_state = 1000}, + [1688] = {.lex_state = 126}, + [1689] = {.lex_state = 1009}, + [1690] = {.lex_state = 126}, + [1691] = {.lex_state = 1000}, + [1692] = {.lex_state = 1034}, + [1693] = {.lex_state = 202}, + [1694] = {.lex_state = 1000}, + [1695] = {.lex_state = 1041}, + [1696] = {.lex_state = 1009}, + [1697] = {.lex_state = 1044}, + [1698] = {.lex_state = 1022}, + [1699] = {.lex_state = 1108}, + [1700] = {.lex_state = 1050}, + [1701] = {.lex_state = 1044}, + [1702] = {.lex_state = 1000}, + [1703] = {.lex_state = 1000}, + [1704] = {.lex_state = 1009}, + [1705] = {.lex_state = 126}, + [1706] = {.lex_state = 1000}, + [1707] = {.lex_state = 1035}, + [1708] = {.lex_state = 1024}, + [1709] = {.lex_state = 126}, + [1710] = {.lex_state = 1024}, + [1711] = {.lex_state = 1050}, + [1712] = {.lex_state = 1050}, + [1713] = {.lex_state = 1050}, + [1714] = {.lex_state = 1044}, + [1715] = {.lex_state = 1036}, + [1716] = {.lex_state = 126}, + [1717] = {.lex_state = 1009}, + [1718] = {.lex_state = 1009}, + [1719] = {.lex_state = 1025}, + [1720] = {.lex_state = 1050}, + [1721] = {.lex_state = 126}, + [1722] = {.lex_state = 1009}, + [1723] = {.lex_state = 1034}, + [1724] = {.lex_state = 1034}, + [1725] = {.lex_state = 1049}, + [1726] = {.lex_state = 1036}, + [1727] = {.lex_state = 1036}, + [1728] = {.lex_state = 1049}, + [1729] = {.lex_state = 41}, + [1730] = {.lex_state = 126}, + [1731] = {.lex_state = 1108}, + [1732] = {.lex_state = 1000}, + [1733] = {.lex_state = 1049}, + [1734] = {.lex_state = 126}, + [1735] = {.lex_state = 1049}, + [1736] = {.lex_state = 1009}, + [1737] = {.lex_state = 126}, + [1738] = {.lex_state = 1108}, + [1739] = {.lex_state = 1000}, + [1740] = {.lex_state = 126}, + [1741] = {.lex_state = 1009}, + [1742] = {.lex_state = 1108}, + [1743] = {.lex_state = 126}, + [1744] = {.lex_state = 126}, + [1745] = {.lex_state = 126}, + [1746] = {.lex_state = 41}, + [1747] = {.lex_state = 126}, + [1748] = {.lex_state = 126}, + [1749] = {.lex_state = 126}, + [1750] = {.lex_state = 126}, + [1751] = {.lex_state = 1092}, + [1752] = {.lex_state = 1092}, + [1753] = {.lex_state = 1092}, + [1754] = {.lex_state = 1092}, + [1755] = {.lex_state = 1092}, + [1756] = {.lex_state = 1092}, + [1757] = {.lex_state = 1092}, + [1758] = {.lex_state = 1092}, + [1759] = {.lex_state = 1092}, + [1760] = {.lex_state = 1092}, + [1761] = {.lex_state = 1092}, + [1762] = {.lex_state = 1092}, + [1763] = {.lex_state = 1092}, + [1764] = {.lex_state = 1092}, + [1765] = {.lex_state = 1092}, + [1766] = {.lex_state = 1092}, + [1767] = {.lex_state = 1092}, + [1768] = {.lex_state = 1092}, + [1769] = {.lex_state = 1092}, + [1770] = {.lex_state = 1092}, + [1771] = {.lex_state = 1092}, + [1772] = {.lex_state = 126}, + [1773] = {.lex_state = 126}, + [1774] = {.lex_state = 1037}, + [1775] = {.lex_state = 1049}, + [1776] = {.lex_state = 1000}, + [1777] = {.lex_state = 126}, + [1778] = {.lex_state = 1034}, + [1779] = {.lex_state = 126}, + [1780] = {.lex_state = 181}, + [1781] = {.lex_state = 126}, + [1782] = {.lex_state = 126}, + [1783] = {.lex_state = 126}, + [1784] = {.lex_state = 126}, + [1785] = {.lex_state = 126}, + [1786] = {.lex_state = 126}, + [1787] = {.lex_state = 126}, + [1788] = {.lex_state = 126}, + [1789] = {.lex_state = 126}, + [1790] = {.lex_state = 126}, + [1791] = {.lex_state = 126}, + [1792] = {.lex_state = 126}, + [1793] = {.lex_state = 126}, + [1794] = {.lex_state = 126}, + [1795] = {.lex_state = 126}, + [1796] = {.lex_state = 126}, + [1797] = {.lex_state = 126}, + [1798] = {.lex_state = 126}, + [1799] = {.lex_state = 126}, + [1800] = {.lex_state = 126}, + [1801] = {.lex_state = 126}, + [1802] = {.lex_state = 126}, + [1803] = {.lex_state = 126}, + [1804] = {.lex_state = 1041}, + [1805] = {.lex_state = 126}, + [1806] = {.lex_state = 126}, + [1807] = {.lex_state = 1021}, + [1808] = {.lex_state = 126}, + [1809] = {.lex_state = 1027}, + [1810] = {.lex_state = 1034}, + [1811] = {.lex_state = 126}, + [1812] = {.lex_state = 126}, + [1813] = {.lex_state = 1092}, + [1814] = {.lex_state = 1026}, + [1815] = {.lex_state = 204}, + [1816] = {.lex_state = 1044}, + [1817] = {.lex_state = 269}, + [1818] = {.lex_state = 1041}, + [1819] = {.lex_state = 1026}, + [1820] = {.lex_state = 1044}, + [1821] = {.lex_state = 1026}, + [1822] = {.lex_state = 1092}, + [1823] = {.lex_state = 204}, + [1824] = {.lex_state = 1026}, + [1825] = {.lex_state = 1050}, + [1826] = {.lex_state = 1026}, + [1827] = {.lex_state = 1000}, + [1828] = {.lex_state = 1044}, + [1829] = {.lex_state = 204}, + [1830] = {.lex_state = 269}, + [1831] = {.lex_state = 1059}, + [1832] = {.lex_state = 1026}, + [1833] = {.lex_state = 1026}, + [1834] = {.lex_state = 1026}, + [1835] = {.lex_state = 1092}, + [1836] = {.lex_state = 1050}, + [1837] = {.lex_state = 204}, + [1838] = {.lex_state = 1050}, + [1839] = {.lex_state = 1050}, + [1840] = {.lex_state = 1026}, + [1841] = {.lex_state = 1026}, + [1842] = {.lex_state = 1026}, + [1843] = {.lex_state = 1026}, + [1844] = {.lex_state = 1026}, + [1845] = {.lex_state = 1026}, + [1846] = {.lex_state = 1026}, + [1847] = {.lex_state = 1026}, + [1848] = {.lex_state = 1050}, + [1849] = {.lex_state = 1026}, + [1850] = {.lex_state = 1026}, + [1851] = {.lex_state = 204}, + [1852] = {.lex_state = 1041}, + [1853] = {.lex_state = 1026}, + [1854] = {.lex_state = 1026}, + [1855] = {.lex_state = 1026}, + [1856] = {.lex_state = 1092}, + [1857] = {.lex_state = 1026}, + [1858] = {.lex_state = 1026}, + [1859] = {.lex_state = 1026}, + [1860] = {.lex_state = 1026}, + [1861] = {.lex_state = 1026}, + [1862] = {.lex_state = 1026}, + [1863] = {.lex_state = 1026}, + [1864] = {.lex_state = 204}, + [1865] = {.lex_state = 204}, + [1866] = {.lex_state = 204}, + [1867] = {.lex_state = 1026}, + [1868] = {.lex_state = 1036}, + [1869] = {.lex_state = 1000}, + [1870] = {.lex_state = 1026}, + [1871] = {.lex_state = 1026}, + [1872] = {.lex_state = 204}, + [1873] = {.lex_state = 1026}, + [1874] = {.lex_state = 1026}, + [1875] = {.lex_state = 204}, + [1876] = {.lex_state = 204}, + [1877] = {.lex_state = 204}, + [1878] = {.lex_state = 1022}, + [1879] = {.lex_state = 204}, + [1880] = {.lex_state = 1026}, + [1881] = {.lex_state = 204}, + [1882] = {.lex_state = 204}, + [1883] = {.lex_state = 1026}, + [1884] = {.lex_state = 1026}, + [1885] = {.lex_state = 204}, + [1886] = {.lex_state = 204}, + [1887] = {.lex_state = 1026}, + [1888] = {.lex_state = 204}, + [1889] = {.lex_state = 204}, + [1890] = {.lex_state = 204}, + [1891] = {.lex_state = 1026}, + [1892] = {.lex_state = 1026}, + [1893] = {.lex_state = 204}, + [1894] = {.lex_state = 204}, + [1895] = {.lex_state = 204}, + [1896] = {.lex_state = 1026}, + [1897] = {.lex_state = 1026}, + [1898] = {.lex_state = 204}, + [1899] = {.lex_state = 1026}, + [1900] = {.lex_state = 1036}, + [1901] = {.lex_state = 204}, + [1902] = {.lex_state = 164}, + [1903] = {.lex_state = 1036}, + [1904] = {.lex_state = 1026}, + [1905] = {.lex_state = 1026}, + [1906] = {.lex_state = 1026}, + [1907] = {.lex_state = 164}, + [1908] = {.lex_state = 1026}, + [1909] = {.lex_state = 1026}, + [1910] = {.lex_state = 1026}, + [1911] = {.lex_state = 1022}, + [1912] = {.lex_state = 1026}, + [1913] = {.lex_state = 1026}, + [1914] = {.lex_state = 1026}, + [1915] = {.lex_state = 1026}, + [1916] = {.lex_state = 1026}, + [1917] = {.lex_state = 204}, + [1918] = {.lex_state = 1024}, + [1919] = {.lex_state = 269}, + [1920] = {.lex_state = 269}, + [1921] = {.lex_state = 269}, + [1922] = {.lex_state = 269}, + [1923] = {.lex_state = 1026}, + [1924] = {.lex_state = 1026}, + [1925] = {.lex_state = 1026}, + [1926] = {.lex_state = 1026}, + [1927] = {.lex_state = 1026}, + [1928] = {.lex_state = 1026}, + [1929] = {.lex_state = 1026}, + [1930] = {.lex_state = 1026}, + [1931] = {.lex_state = 1026}, + [1932] = {.lex_state = 1026}, + [1933] = {.lex_state = 1092}, + [1934] = {.lex_state = 1092}, + [1935] = {.lex_state = 1026}, + [1936] = {.lex_state = 1026}, + [1937] = {.lex_state = 1026}, + [1938] = {.lex_state = 1026}, + [1939] = {.lex_state = 1026}, + [1940] = {.lex_state = 1026}, + [1941] = {.lex_state = 1026}, + [1942] = {.lex_state = 1026}, + [1943] = {.lex_state = 1026}, + [1944] = {.lex_state = 1026}, + [1945] = {.lex_state = 1026}, + [1946] = {.lex_state = 1026}, + [1947] = {.lex_state = 1026}, + [1948] = {.lex_state = 1026}, + [1949] = {.lex_state = 269}, + [1950] = {.lex_state = 1025}, + [1951] = {.lex_state = 204}, + [1952] = {.lex_state = 269}, + [1953] = {.lex_state = 1024}, + [1954] = {.lex_state = 1026}, + [1955] = {.lex_state = 1026}, + [1956] = {.lex_state = 1026}, + [1957] = {.lex_state = 1026}, + [1958] = {.lex_state = 182}, + [1959] = {.lex_state = 1092}, + [1960] = {.lex_state = 1026}, + [1961] = {.lex_state = 1026}, + [1962] = {.lex_state = 182}, + [1963] = {.lex_state = 182}, + [1964] = {.lex_state = 182}, + [1965] = {.lex_state = 1026}, + [1966] = {.lex_state = 1092}, + [1967] = {.lex_state = 1026}, + [1968] = {.lex_state = 1092}, + [1969] = {.lex_state = 1092}, + [1970] = {.lex_state = 1026}, + [1971] = {.lex_state = 182}, + [1972] = {.lex_state = 1092}, + [1973] = {.lex_state = 1026}, + [1974] = {.lex_state = 182}, + [1975] = {.lex_state = 1026}, + [1976] = {.lex_state = 182}, + [1977] = {.lex_state = 182}, + [1978] = {.lex_state = 182}, + [1979] = {.lex_state = 1026}, + [1980] = {.lex_state = 182}, + [1981] = {.lex_state = 1026}, + [1982] = {.lex_state = 1026}, + [1983] = {.lex_state = 1026}, + [1984] = {.lex_state = 1026}, + [1985] = {.lex_state = 182}, + [1986] = {.lex_state = 1026}, + [1987] = {.lex_state = 182}, + [1988] = {.lex_state = 1026}, + [1989] = {.lex_state = 181}, + [1990] = {.lex_state = 1026}, + [1991] = {.lex_state = 181}, + [1992] = {.lex_state = 182}, + [1993] = {.lex_state = 1026}, + [1994] = {.lex_state = 163}, + [1995] = {.lex_state = 182}, + [1996] = {.lex_state = 1026}, + [1997] = {.lex_state = 1026}, + [1998] = {.lex_state = 1092}, + [1999] = {.lex_state = 1092}, + [2000] = {.lex_state = 1092}, + [2001] = {.lex_state = 1026}, + [2002] = {.lex_state = 181}, + [2003] = {.lex_state = 1026}, + [2004] = {.lex_state = 182}, + [2005] = {.lex_state = 204}, + [2006] = {.lex_state = 182}, + [2007] = {.lex_state = 1026}, + [2008] = {.lex_state = 182}, + [2009] = {.lex_state = 182}, + [2010] = {.lex_state = 1026}, + [2011] = {.lex_state = 1026}, + [2012] = {.lex_state = 1026}, + [2013] = {.lex_state = 182}, + [2014] = {.lex_state = 1026}, + [2015] = {.lex_state = 182}, + [2016] = {.lex_state = 182}, + [2017] = {.lex_state = 1026}, + [2018] = {.lex_state = 1026}, + [2019] = {.lex_state = 182}, + [2020] = {.lex_state = 1026}, + [2021] = {.lex_state = 1026}, + [2022] = {.lex_state = 182}, + [2023] = {.lex_state = 1026}, + [2024] = {.lex_state = 1026}, + [2025] = {.lex_state = 1026}, + [2026] = {.lex_state = 1092}, + [2027] = {.lex_state = 1026}, + [2028] = {.lex_state = 1026}, + [2029] = {.lex_state = 1092}, + [2030] = {.lex_state = 1092}, + [2031] = {.lex_state = 182}, + [2032] = {.lex_state = 1026}, + [2033] = {.lex_state = 182}, + [2034] = {.lex_state = 1026}, + [2035] = {.lex_state = 182}, + [2036] = {.lex_state = 1026}, + [2037] = {.lex_state = 1026}, + [2038] = {.lex_state = 182}, + [2039] = {.lex_state = 1026}, + [2040] = {.lex_state = 1026}, + [2041] = {.lex_state = 1026}, + [2042] = {.lex_state = 1026}, + [2043] = {.lex_state = 1026}, + [2044] = {.lex_state = 1026}, + [2045] = {.lex_state = 182}, + [2046] = {.lex_state = 182}, + [2047] = {.lex_state = 1026}, + [2048] = {.lex_state = 1026}, + [2049] = {.lex_state = 163}, + [2050] = {.lex_state = 182}, + [2051] = {.lex_state = 182}, + [2052] = {.lex_state = 182}, + [2053] = {.lex_state = 1026}, + [2054] = {.lex_state = 182}, + [2055] = {.lex_state = 1026}, + [2056] = {.lex_state = 1092}, + [2057] = {.lex_state = 1026}, + [2058] = {.lex_state = 182}, + [2059] = {.lex_state = 182}, + [2060] = {.lex_state = 1026}, + [2061] = {.lex_state = 1026}, + [2062] = {.lex_state = 1026}, + [2063] = {.lex_state = 182}, + [2064] = {.lex_state = 1026}, + [2065] = {.lex_state = 1026}, + [2066] = {.lex_state = 182}, + [2067] = {.lex_state = 1026}, + [2068] = {.lex_state = 182}, + [2069] = {.lex_state = 1026}, + [2070] = {.lex_state = 1092}, + [2071] = {.lex_state = 1026}, + [2072] = {.lex_state = 182}, + [2073] = {.lex_state = 1026}, + [2074] = {.lex_state = 1026}, + [2075] = {.lex_state = 1026}, + [2076] = {.lex_state = 182}, + [2077] = {.lex_state = 1026}, + [2078] = {.lex_state = 1026}, + [2079] = {.lex_state = 1026}, + [2080] = {.lex_state = 1026}, + [2081] = {.lex_state = 182}, + [2082] = {.lex_state = 182}, + [2083] = {.lex_state = 1026}, + [2084] = {.lex_state = 1026}, + [2085] = {.lex_state = 1026}, + [2086] = {.lex_state = 1026}, + [2087] = {.lex_state = 1026}, + [2088] = {.lex_state = 1026}, + [2089] = {.lex_state = 1026}, + [2090] = {.lex_state = 1026}, + [2091] = {.lex_state = 1092}, + [2092] = {.lex_state = 182}, + [2093] = {.lex_state = 1092}, + [2094] = {.lex_state = 1026}, + [2095] = {.lex_state = 182}, + [2096] = {.lex_state = 1092}, + [2097] = {.lex_state = 1092}, + [2098] = {.lex_state = 182}, + [2099] = {.lex_state = 1092}, + [2100] = {.lex_state = 1092}, + [2101] = {.lex_state = 1026}, + [2102] = {.lex_state = 1026}, + [2103] = {.lex_state = 1092}, + [2104] = {.lex_state = 1092}, + [2105] = {.lex_state = 182}, + [2106] = {.lex_state = 1092}, + [2107] = {.lex_state = 182}, + [2108] = {.lex_state = 182}, + [2109] = {.lex_state = 182}, + [2110] = {.lex_state = 182}, + [2111] = {.lex_state = 1092}, + [2112] = {.lex_state = 1026}, + [2113] = {.lex_state = 1092}, + [2114] = {.lex_state = 1026}, + [2115] = {.lex_state = 1026}, + [2116] = {.lex_state = 1092}, + [2117] = {.lex_state = 1092}, + [2118] = {.lex_state = 1026}, + [2119] = {.lex_state = 182}, + [2120] = {.lex_state = 204}, + [2121] = {.lex_state = 1092}, + [2122] = {.lex_state = 182}, + [2123] = {.lex_state = 1092}, + [2124] = {.lex_state = 181}, + [2125] = {.lex_state = 1044}, + [2126] = {.lex_state = 181}, + [2127] = {.lex_state = 181}, + [2128] = {.lex_state = 181}, + [2129] = {.lex_state = 181}, + [2130] = {.lex_state = 1044}, + [2131] = {.lex_state = 181}, + [2132] = {.lex_state = 1044}, + [2133] = {.lex_state = 181}, + [2134] = {.lex_state = 1044}, + [2135] = {.lex_state = 181}, + [2136] = {.lex_state = 181}, + [2137] = {.lex_state = 181}, + [2138] = {.lex_state = 181}, + [2139] = {.lex_state = 182}, + [2140] = {.lex_state = 1092}, + [2141] = {.lex_state = 204}, + [2142] = {.lex_state = 1044}, + [2143] = {.lex_state = 182}, + [2144] = {.lex_state = 1092}, + [2145] = {.lex_state = 181}, + [2146] = {.lex_state = 1092}, + [2147] = {.lex_state = 181}, + [2148] = {.lex_state = 1044}, + [2149] = {.lex_state = 182}, + [2150] = {.lex_state = 181}, + [2151] = {.lex_state = 1092}, + [2152] = {.lex_state = 1118}, + [2153] = {.lex_state = 182}, + [2154] = {.lex_state = 182}, + [2155] = {.lex_state = 1044}, + [2156] = {.lex_state = 181}, + [2157] = {.lex_state = 204}, + [2158] = {.lex_state = 1044}, + [2159] = {.lex_state = 1059}, + [2160] = {.lex_state = 1046}, + [2161] = {.lex_state = 1118}, + [2162] = {.lex_state = 1118}, + [2163] = {.lex_state = 43}, + [2164] = {.lex_state = 181}, + [2165] = {.lex_state = 1118}, + [2166] = {.lex_state = 181}, + [2167] = {.lex_state = 181}, + [2168] = {.lex_state = 1092}, + [2169] = {.lex_state = 181}, + [2170] = {.lex_state = 181}, + [2171] = {.lex_state = 181}, + [2172] = {.lex_state = 181}, + [2173] = {.lex_state = 181}, + [2174] = {.lex_state = 43}, + [2175] = {.lex_state = 1059}, + [2176] = {.lex_state = 1046}, + [2177] = {.lex_state = 182}, + [2178] = {.lex_state = 1118}, + [2179] = {.lex_state = 1059}, + [2180] = {.lex_state = 1114}, + [2181] = {.lex_state = 182}, + [2182] = {.lex_state = 182}, + [2183] = {.lex_state = 182}, + [2184] = {.lex_state = 182}, + [2185] = {.lex_state = 182}, + [2186] = {.lex_state = 182}, + [2187] = {.lex_state = 182}, + [2188] = {.lex_state = 182}, + [2189] = {.lex_state = 182}, + [2190] = {.lex_state = 43}, + [2191] = {.lex_state = 43}, + [2192] = {.lex_state = 182}, + [2193] = {.lex_state = 209}, + [2194] = {.lex_state = 209}, + [2195] = {.lex_state = 209}, + [2196] = {.lex_state = 209}, + [2197] = {.lex_state = 204}, + [2198] = {.lex_state = 204}, + [2199] = {.lex_state = 204}, + [2200] = {.lex_state = 182}, + [2201] = {.lex_state = 182}, + [2202] = {.lex_state = 182}, + [2203] = {.lex_state = 1118}, + [2204] = {.lex_state = 182}, + [2205] = {.lex_state = 182}, + [2206] = {.lex_state = 182}, + [2207] = {.lex_state = 182}, + [2208] = {.lex_state = 182}, + [2209] = {.lex_state = 182}, + [2210] = {.lex_state = 182}, + [2211] = {.lex_state = 182}, + [2212] = {.lex_state = 182}, + [2213] = {.lex_state = 182}, + [2214] = {.lex_state = 182}, + [2215] = {.lex_state = 182}, + [2216] = {.lex_state = 182}, + [2217] = {.lex_state = 182}, + [2218] = {.lex_state = 182}, + [2219] = {.lex_state = 182}, + [2220] = {.lex_state = 182}, + [2221] = {.lex_state = 182}, + [2222] = {.lex_state = 182}, + [2223] = {.lex_state = 182}, + [2224] = {.lex_state = 182}, + [2225] = {.lex_state = 182}, + [2226] = {.lex_state = 182}, + [2227] = {.lex_state = 182}, + [2228] = {.lex_state = 1059}, + [2229] = {.lex_state = 182}, + [2230] = {.lex_state = 182}, + [2231] = {.lex_state = 182}, + [2232] = {.lex_state = 182}, + [2233] = {.lex_state = 182}, + [2234] = {.lex_state = 182}, + [2235] = {.lex_state = 1059}, + [2236] = {.lex_state = 182}, + [2237] = {.lex_state = 182}, + [2238] = {.lex_state = 182}, + [2239] = {.lex_state = 182}, + [2240] = {.lex_state = 182}, + [2241] = {.lex_state = 182}, + [2242] = {.lex_state = 1059}, + [2243] = {.lex_state = 182}, + [2244] = {.lex_state = 182}, + [2245] = {.lex_state = 182}, + [2246] = {.lex_state = 1059}, + [2247] = {.lex_state = 1059}, + [2248] = {.lex_state = 417}, + [2249] = {.lex_state = 43}, + [2250] = {.lex_state = 43}, + [2251] = {.lex_state = 415}, + [2252] = {.lex_state = 1059}, + [2253] = {.lex_state = 1059}, + [2254] = {.lex_state = 1059}, + [2255] = {.lex_state = 1059}, + [2256] = {.lex_state = 209}, + [2257] = {.lex_state = 1059}, + [2258] = {.lex_state = 1059}, + [2259] = {.lex_state = 182}, + [2260] = {.lex_state = 182}, + [2261] = {.lex_state = 182}, + [2262] = {.lex_state = 182}, + [2263] = {.lex_state = 182}, + [2264] = {.lex_state = 182}, + [2265] = {.lex_state = 182}, + [2266] = {.lex_state = 182}, + [2267] = {.lex_state = 182}, + [2268] = {.lex_state = 182}, + [2269] = {.lex_state = 182}, + [2270] = {.lex_state = 182}, + [2271] = {.lex_state = 182}, + [2272] = {.lex_state = 182}, + [2273] = {.lex_state = 1059}, + [2274] = {.lex_state = 1059}, + [2275] = {.lex_state = 1046}, + [2276] = {.lex_state = 1046}, + [2277] = {.lex_state = 1059}, + [2278] = {.lex_state = 1059}, + [2279] = {.lex_state = 85}, + [2280] = {.lex_state = 85}, + [2281] = {.lex_state = 1046}, + [2282] = {.lex_state = 182}, + [2283] = {.lex_state = 182}, + [2284] = {.lex_state = 182}, + [2285] = {.lex_state = 182}, + [2286] = {.lex_state = 182}, + [2287] = {.lex_state = 182}, + [2288] = {.lex_state = 182}, + [2289] = {.lex_state = 182}, + [2290] = {.lex_state = 182}, + [2291] = {.lex_state = 182}, + [2292] = {.lex_state = 182}, + [2293] = {.lex_state = 182}, + [2294] = {.lex_state = 182}, + [2295] = {.lex_state = 182}, + [2296] = {.lex_state = 41}, + [2297] = {.lex_state = 1092}, + [2298] = {.lex_state = 171}, + [2299] = {.lex_state = 1046}, + [2300] = {.lex_state = 41}, + [2301] = {.lex_state = 1122}, + [2302] = {.lex_state = 1122}, + [2303] = {.lex_state = 1113}, + [2304] = {.lex_state = 1113}, + [2305] = {.lex_state = 1059}, + [2306] = {.lex_state = 1059}, + [2307] = {.lex_state = 1059}, + [2308] = {.lex_state = 1059}, + [2309] = {.lex_state = 1092}, + [2310] = {.lex_state = 1092}, + [2311] = {.lex_state = 409}, + [2312] = {.lex_state = 1122}, + [2313] = {.lex_state = 182}, + [2314] = {.lex_state = 182}, + [2315] = {.lex_state = 182}, + [2316] = {.lex_state = 182}, + [2317] = {.lex_state = 182}, + [2318] = {.lex_state = 182}, + [2319] = {.lex_state = 182}, + [2320] = {.lex_state = 182}, + [2321] = {.lex_state = 182}, + [2322] = {.lex_state = 270}, + [2323] = {.lex_state = 182}, + [2324] = {.lex_state = 182}, + [2325] = {.lex_state = 182}, + [2326] = {.lex_state = 182}, + [2327] = {.lex_state = 270}, + [2328] = {.lex_state = 182}, + [2329] = {.lex_state = 182}, + [2330] = {.lex_state = 409}, + [2331] = {.lex_state = 270}, + [2332] = {.lex_state = 270}, + [2333] = {.lex_state = 182}, + [2334] = {.lex_state = 182}, + [2335] = {.lex_state = 182}, + [2336] = {.lex_state = 182}, + [2337] = {.lex_state = 1118}, + [2338] = {.lex_state = 1118}, + [2339] = {.lex_state = 182}, + [2340] = {.lex_state = 182}, + [2341] = {.lex_state = 182}, + [2342] = {.lex_state = 182}, + [2343] = {.lex_state = 182}, + [2344] = {.lex_state = 182}, + [2345] = {.lex_state = 182}, + [2346] = {.lex_state = 1118}, + [2347] = {.lex_state = 1118}, + [2348] = {.lex_state = 182}, + [2349] = {.lex_state = 182}, + [2350] = {.lex_state = 182}, + [2351] = {.lex_state = 182}, + [2352] = {.lex_state = 182}, + [2353] = {.lex_state = 182}, + [2354] = {.lex_state = 182}, + [2355] = {.lex_state = 161}, + [2356] = {.lex_state = 182}, + [2357] = {.lex_state = 206}, + [2358] = {.lex_state = 182}, + [2359] = {.lex_state = 182}, + [2360] = {.lex_state = 182}, + [2361] = {.lex_state = 182}, + [2362] = {.lex_state = 182}, + [2363] = {.lex_state = 182}, + [2364] = {.lex_state = 182}, + [2365] = {.lex_state = 182}, + [2366] = {.lex_state = 182}, + [2367] = {.lex_state = 182}, + [2368] = {.lex_state = 182}, + [2369] = {.lex_state = 182}, + [2370] = {.lex_state = 182}, + [2371] = {.lex_state = 182}, + [2372] = {.lex_state = 1122}, + [2373] = {.lex_state = 182}, + [2374] = {.lex_state = 182}, + [2375] = {.lex_state = 182}, + [2376] = {.lex_state = 182}, + [2377] = {.lex_state = 1045}, + [2378] = {.lex_state = 1045}, + [2379] = {.lex_state = 182}, + [2380] = {.lex_state = 212}, + [2381] = {.lex_state = 212}, + [2382] = {.lex_state = 212}, + [2383] = {.lex_state = 182}, + [2384] = {.lex_state = 182}, + [2385] = {.lex_state = 41}, + [2386] = {.lex_state = 182}, + [2387] = {.lex_state = 41}, + [2388] = {.lex_state = 205}, + [2389] = {.lex_state = 205}, + [2390] = {.lex_state = 41}, + [2391] = {.lex_state = 182}, + [2392] = {.lex_state = 182}, + [2393] = {.lex_state = 182}, + [2394] = {.lex_state = 182}, + [2395] = {.lex_state = 182}, + [2396] = {.lex_state = 182}, + [2397] = {.lex_state = 182}, + [2398] = {.lex_state = 182}, + [2399] = {.lex_state = 1059}, + [2400] = {.lex_state = 182}, + [2401] = {.lex_state = 182}, + [2402] = {.lex_state = 182}, + [2403] = {.lex_state = 182}, + [2404] = {.lex_state = 182}, + [2405] = {.lex_state = 1045}, + [2406] = {.lex_state = 1122}, + [2407] = {.lex_state = 1045}, + [2408] = {.lex_state = 182}, + [2409] = {.lex_state = 1045}, + [2410] = {.lex_state = 182}, + [2411] = {.lex_state = 182}, + [2412] = {.lex_state = 182}, + [2413] = {.lex_state = 1113}, + [2414] = {.lex_state = 1113}, + [2415] = {.lex_state = 182}, + [2416] = {.lex_state = 182}, + [2417] = {.lex_state = 1122}, + [2418] = {.lex_state = 182}, + [2419] = {.lex_state = 182}, + [2420] = {.lex_state = 182}, + [2421] = {.lex_state = 182}, + [2422] = {.lex_state = 182}, + [2423] = {.lex_state = 182}, + [2424] = {.lex_state = 41}, + [2425] = {.lex_state = 182}, + [2426] = {.lex_state = 182}, + [2427] = {.lex_state = 43}, + [2428] = {.lex_state = 182}, + [2429] = {.lex_state = 1122}, + [2430] = {.lex_state = 1122}, + [2431] = {.lex_state = 182}, + [2432] = {.lex_state = 182}, + [2433] = {.lex_state = 1113}, + [2434] = {.lex_state = 1113}, + [2435] = {.lex_state = 182}, + [2436] = {.lex_state = 182}, + [2437] = {.lex_state = 182}, + [2438] = {.lex_state = 182}, + [2439] = {.lex_state = 1059}, + [2440] = {.lex_state = 1059}, + [2441] = {.lex_state = 1059}, + [2442] = {.lex_state = 1059}, + [2443] = {.lex_state = 1059}, + [2444] = {.lex_state = 1059}, + [2445] = {.lex_state = 1059}, + [2446] = {.lex_state = 1059}, + [2447] = {.lex_state = 1059}, + [2448] = {.lex_state = 1059}, + [2449] = {.lex_state = 1059}, + [2450] = {.lex_state = 1059}, + [2451] = {.lex_state = 182}, + [2452] = {.lex_state = 41}, + [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 = 182}, + [2461] = {.lex_state = 43}, + [2462] = {.lex_state = 182}, + [2463] = {.lex_state = 43}, + [2464] = {.lex_state = 43}, + [2465] = {.lex_state = 182}, + [2466] = {.lex_state = 182}, + [2467] = {.lex_state = 1114}, + [2468] = {.lex_state = 182}, + [2469] = {.lex_state = 182}, + [2470] = {.lex_state = 53}, + [2471] = {.lex_state = 182}, + [2472] = {.lex_state = 182}, + [2473] = {.lex_state = 182}, + [2474] = {.lex_state = 182}, + [2475] = {.lex_state = 182}, + [2476] = {.lex_state = 182}, + [2477] = {.lex_state = 182}, + [2478] = {.lex_state = 182}, + [2479] = {.lex_state = 182}, + [2480] = {.lex_state = 182}, + [2481] = {.lex_state = 182}, + [2482] = {.lex_state = 182}, + [2483] = {.lex_state = 182}, + [2484] = {.lex_state = 182}, + [2485] = {.lex_state = 182}, + [2486] = {.lex_state = 182}, + [2487] = {.lex_state = 182}, + [2488] = {.lex_state = 182}, + [2489] = {.lex_state = 182}, + [2490] = {.lex_state = 182}, + [2491] = {.lex_state = 43}, + [2492] = {.lex_state = 182}, + [2493] = {.lex_state = 43}, + [2494] = {.lex_state = 182}, + [2495] = {.lex_state = 182}, + [2496] = {.lex_state = 182}, + [2497] = {.lex_state = 43}, + [2498] = {.lex_state = 43}, + [2499] = {.lex_state = 182}, + [2500] = {.lex_state = 161}, + [2501] = {.lex_state = 41}, + [2502] = {.lex_state = 43}, + [2503] = {.lex_state = 182}, + [2504] = {.lex_state = 43}, + [2505] = {.lex_state = 43}, + [2506] = {.lex_state = 43}, + [2507] = {.lex_state = 182}, + [2508] = {.lex_state = 182}, + [2509] = {.lex_state = 284}, + [2510] = {.lex_state = 182}, + [2511] = {.lex_state = 1059}, + [2512] = {.lex_state = 182}, + [2513] = {.lex_state = 414}, + [2514] = {.lex_state = 182}, + [2515] = {.lex_state = 182}, + [2516] = {.lex_state = 182}, + [2517] = {.lex_state = 182}, + [2518] = {.lex_state = 182}, + [2519] = {.lex_state = 182}, + [2520] = {.lex_state = 182}, + [2521] = {.lex_state = 1059}, + [2522] = {.lex_state = 182}, + [2523] = {.lex_state = 1046}, + [2524] = {.lex_state = 182}, + [2525] = {.lex_state = 53}, + [2526] = {.lex_state = 182}, + [2527] = {.lex_state = 182}, + [2528] = {.lex_state = 414}, + [2529] = {.lex_state = 182}, + [2530] = {.lex_state = 41}, + [2531] = {.lex_state = 41}, + [2532] = {.lex_state = 41}, + [2533] = {.lex_state = 41}, + [2534] = {.lex_state = 1046}, + [2535] = {.lex_state = 182}, + [2536] = {.lex_state = 182}, + [2537] = {.lex_state = 43}, + [2538] = {.lex_state = 182}, + [2539] = {.lex_state = 1059}, + [2540] = {.lex_state = 1059}, + [2541] = {.lex_state = 1059}, + [2542] = {.lex_state = 1059}, + [2543] = {.lex_state = 1045}, + [2544] = {.lex_state = 1059}, + [2545] = {.lex_state = 1059}, + [2546] = {.lex_state = 1045}, + [2547] = {.lex_state = 1059}, + [2548] = {.lex_state = 1059}, + [2549] = {.lex_state = 1059}, + [2550] = {.lex_state = 1059}, + [2551] = {.lex_state = 1059}, + [2552] = {.lex_state = 1059}, + [2553] = {.lex_state = 328}, + [2554] = {.lex_state = 1059}, + [2555] = {.lex_state = 1059}, + [2556] = {.lex_state = 1059}, + [2557] = {.lex_state = 1059}, + [2558] = {.lex_state = 1059}, + [2559] = {.lex_state = 52}, + [2560] = {.lex_state = 1059}, + [2561] = {.lex_state = 1059}, + [2562] = {.lex_state = 1059}, + [2563] = {.lex_state = 1059}, + [2564] = {.lex_state = 1059}, + [2565] = {.lex_state = 1059}, + [2566] = {.lex_state = 1059}, + [2567] = {.lex_state = 1059}, + [2568] = {.lex_state = 1046}, + [2569] = {.lex_state = 1059}, + [2570] = {.lex_state = 52}, + [2571] = {.lex_state = 1059}, + [2572] = {.lex_state = 1059}, + [2573] = {.lex_state = 1059}, + [2574] = {.lex_state = 1059}, + [2575] = {.lex_state = 1046}, + [2576] = {.lex_state = 1046}, + [2577] = {.lex_state = 1059}, + [2578] = {.lex_state = 1059}, + [2579] = {.lex_state = 1059}, + [2580] = {.lex_state = 1059}, + [2581] = {.lex_state = 1059}, + [2582] = {.lex_state = 318}, + [2583] = {.lex_state = 1059}, + [2584] = {.lex_state = 309}, + [2585] = {.lex_state = 1059}, + [2586] = {.lex_state = 1059}, + [2587] = {.lex_state = 1059}, + [2588] = {.lex_state = 1059}, + [2589] = {.lex_state = 1059}, + [2590] = {.lex_state = 1059}, + [2591] = {.lex_state = 1059}, + [2592] = {.lex_state = 52}, + [2593] = {.lex_state = 1059}, + [2594] = {.lex_state = 1059}, + [2595] = {.lex_state = 283}, + [2596] = {.lex_state = 1059}, + [2597] = {.lex_state = 416}, + [2598] = {.lex_state = 416}, + [2599] = {.lex_state = 1059}, + [2600] = {.lex_state = 1059}, + [2601] = {.lex_state = 283}, + [2602] = {.lex_state = 1059}, + [2603] = {.lex_state = 1059}, + [2604] = {.lex_state = 1059}, + [2605] = {.lex_state = 282}, + [2606] = {.lex_state = 1059}, + [2607] = {.lex_state = 1059}, + [2608] = {.lex_state = 1059}, + [2609] = {.lex_state = 416}, + [2610] = {.lex_state = 1059}, + [2611] = {.lex_state = 1059}, + [2612] = {.lex_state = 1059}, + [2613] = {.lex_state = 1059}, + [2614] = {.lex_state = 1059}, + [2615] = {.lex_state = 52}, + [2616] = {.lex_state = 1059}, + [2617] = {.lex_state = 1059}, + [2618] = {.lex_state = 416}, + [2619] = {.lex_state = 1059}, + [2620] = {.lex_state = 1059}, + [2621] = {.lex_state = 1059}, + [2622] = {.lex_state = 1045}, + [2623] = {.lex_state = 1045}, + [2624] = {.lex_state = 1045}, + [2625] = {.lex_state = 52}, + [2626] = {.lex_state = 1059}, + [2627] = {.lex_state = 1059}, + [2628] = {.lex_state = 1059}, + [2629] = {.lex_state = 1059}, + [2630] = {.lex_state = 416}, + [2631] = {.lex_state = 52}, + [2632] = {.lex_state = 41}, + [2633] = {.lex_state = 41}, + [2634] = {.lex_state = 409}, + [2635] = {.lex_state = 281}, + [2636] = {.lex_state = 409}, + [2637] = {.lex_state = 409}, + [2638] = {.lex_state = 281}, + [2639] = {.lex_state = 327}, + [2640] = {.lex_state = 1044}, + [2641] = {.lex_state = 327}, + [2642] = {.lex_state = 327}, + [2643] = {.lex_state = 1044}, + [2644] = {.lex_state = 1044}, + [2645] = {.lex_state = 1046}, + [2646] = {.lex_state = 409}, + [2647] = {.lex_state = 41}, + [2648] = {.lex_state = 409}, + [2649] = {.lex_state = 1044}, + [2650] = {.lex_state = 1046}, + [2651] = {.lex_state = 1044}, + [2652] = {.lex_state = 1044}, + [2653] = {.lex_state = 1044}, + [2654] = {.lex_state = 1044}, + [2655] = {.lex_state = 409}, + [2656] = {.lex_state = 41}, + [2657] = {.lex_state = 1044}, + [2658] = {.lex_state = 1046}, + [2659] = {.lex_state = 409}, + [2660] = {.lex_state = 409}, + [2661] = {.lex_state = 41}, + [2662] = {.lex_state = 1044}, + [2663] = {.lex_state = 1044}, + [2664] = {.lex_state = 312}, + [2665] = {.lex_state = 326}, + [2666] = {.lex_state = 1044}, + [2667] = {.lex_state = 311}, + [2668] = {.lex_state = 327}, + [2669] = {.lex_state = 75}, + [2670] = {.lex_state = 1044}, + [2671] = {.lex_state = 311}, + [2672] = {.lex_state = 1044}, + [2673] = {.lex_state = 1044}, + [2674] = {.lex_state = 408}, + [2675] = {.lex_state = 1044}, + [2676] = {.lex_state = 1044}, + [2677] = {.lex_state = 41}, + [2678] = {.lex_state = 381}, + [2679] = {.lex_state = 41}, + [2680] = {.lex_state = 41}, + [2681] = {.lex_state = 41}, + [2682] = {.lex_state = 408}, + [2683] = {.lex_state = 41}, + [2684] = {.lex_state = 381}, + [2685] = {.lex_state = 396}, + [2686] = {.lex_state = 41}, + [2687] = {.lex_state = 387}, + [2688] = {.lex_state = 408}, + [2689] = {.lex_state = 41}, + [2690] = {.lex_state = 310}, + [2691] = {.lex_state = 1044}, + [2692] = {.lex_state = 408}, + [2693] = {.lex_state = 408}, + [2694] = {.lex_state = 408}, + [2695] = {.lex_state = 408}, + [2696] = {.lex_state = 312}, + [2697] = {.lex_state = 312}, + [2698] = {.lex_state = 312}, + [2699] = {.lex_state = 312}, + [2700] = {.lex_state = 41}, + [2701] = {.lex_state = 319}, + [2702] = {.lex_state = 75}, + [2703] = {.lex_state = 75}, + [2704] = {.lex_state = 41}, + [2705] = {.lex_state = 41}, + [2706] = {.lex_state = 41}, + [2707] = {.lex_state = 41}, + [2708] = {.lex_state = 408}, + [2709] = {.lex_state = 1044}, + [2710] = {.lex_state = 408}, + [2711] = {.lex_state = 41}, + [2712] = {.lex_state = 1044}, + [2713] = {.lex_state = 408}, + [2714] = {.lex_state = 41}, + [2715] = {.lex_state = 41}, + [2716] = {.lex_state = 1044}, + [2717] = {.lex_state = 1044}, + [2718] = {.lex_state = 41}, + [2719] = {.lex_state = 408}, + [2720] = {.lex_state = 408}, + [2721] = {.lex_state = 995}, + [2722] = {.lex_state = 41}, + [2723] = {.lex_state = 995}, + [2724] = {.lex_state = 408}, + [2725] = {.lex_state = 408}, + [2726] = {.lex_state = 41}, + [2727] = {.lex_state = 408}, + [2728] = {.lex_state = 408}, + [2729] = {.lex_state = 408}, + [2730] = {.lex_state = 41}, + [2731] = {.lex_state = 408}, + [2732] = {.lex_state = 408}, + [2733] = {.lex_state = 41}, + [2734] = {.lex_state = 408}, + [2735] = {.lex_state = 41}, + [2736] = {.lex_state = 41}, + [2737] = {.lex_state = 41}, + [2738] = {.lex_state = 41}, + [2739] = {.lex_state = 41}, + [2740] = {.lex_state = 41}, + [2741] = {.lex_state = 1044}, + [2742] = {.lex_state = 1044}, + [2743] = {.lex_state = 41}, + [2744] = {.lex_state = 325}, + [2745] = {.lex_state = 41}, + [2746] = {.lex_state = 41}, + [2747] = {.lex_state = 1044}, + [2748] = {.lex_state = 1044}, + [2749] = {.lex_state = 325}, + [2750] = {.lex_state = 408}, + [2751] = {.lex_state = 325}, + [2752] = {.lex_state = 325}, + [2753] = {.lex_state = 41}, + [2754] = {.lex_state = 408}, + [2755] = {.lex_state = 41}, + [2756] = {.lex_state = 408}, + [2757] = {.lex_state = 389}, + [2758] = {.lex_state = 408}, + [2759] = {.lex_state = 313}, + [2760] = {.lex_state = 995}, + [2761] = {.lex_state = 995}, + [2762] = {.lex_state = 313}, + [2763] = {.lex_state = 72}, + [2764] = {.lex_state = 381}, + [2765] = {.lex_state = 381}, + [2766] = {.lex_state = 995}, + [2767] = {.lex_state = 995}, + [2768] = {.lex_state = 995}, + [2769] = {.lex_state = 70}, + [2770] = {.lex_state = 72}, + [2771] = {.lex_state = 368}, + [2772] = {.lex_state = 389}, + [2773] = {.lex_state = 408}, + [2774] = {.lex_state = 72}, + [2775] = {.lex_state = 72}, + [2776] = {.lex_state = 72}, + [2777] = {.lex_state = 45}, + [2778] = {.lex_state = 74}, + [2779] = {.lex_state = 368}, + [2780] = {.lex_state = 378}, + [2781] = {.lex_state = 368}, + [2782] = {.lex_state = 406}, + [2783] = {.lex_state = 406}, + [2784] = {.lex_state = 406}, + [2785] = {.lex_state = 406}, + [2786] = {.lex_state = 407}, + [2787] = {.lex_state = 368}, + [2788] = {.lex_state = 407}, + [2789] = {.lex_state = 397}, + [2790] = {.lex_state = 66}, + [2791] = {.lex_state = 407}, + [2792] = {.lex_state = 314}, + [2793] = {.lex_state = 406}, + [2794] = {.lex_state = 66}, + [2795] = {.lex_state = 273}, + [2796] = {.lex_state = 406}, + [2797] = {.lex_state = 390}, + [2798] = {.lex_state = 406}, + [2799] = {.lex_state = 273}, + [2800] = {.lex_state = 390}, + [2801] = {.lex_state = 407}, + [2802] = {.lex_state = 995}, + [2803] = {.lex_state = 314}, + [2804] = {.lex_state = 314}, + [2805] = {.lex_state = 388}, + [2806] = {.lex_state = 390}, + [2807] = {.lex_state = 379}, + [2808] = {.lex_state = 995}, + [2809] = {.lex_state = 379}, + [2810] = {.lex_state = 80}, + [2811] = {.lex_state = 41}, + [2812] = {.lex_state = 75}, + [2813] = {.lex_state = 407}, + [2814] = {.lex_state = 314}, + [2815] = {.lex_state = 314}, + [2816] = {.lex_state = 995}, + [2817] = {.lex_state = 390}, + [2818] = {.lex_state = 75}, + [2819] = {.lex_state = 410}, + [2820] = {.lex_state = 273}, + [2821] = {.lex_state = 273}, + [2822] = {.lex_state = 273}, + [2823] = {.lex_state = 379}, + [2824] = {.lex_state = 75}, + [2825] = {.lex_state = 379}, + [2826] = {.lex_state = 390}, + [2827] = {.lex_state = 406}, + [2828] = {.lex_state = 406}, + [2829] = {.lex_state = 314}, + [2830] = {.lex_state = 380}, + [2831] = {.lex_state = 382}, + [2832] = {.lex_state = 45}, + [2833] = {.lex_state = 379}, + [2834] = {.lex_state = 273}, + [2835] = {.lex_state = 366}, + [2836] = {.lex_state = 366}, + [2837] = {.lex_state = 315}, + [2838] = {.lex_state = 406}, + [2839] = {.lex_state = 68}, + [2840] = {.lex_state = 381}, + [2841] = {.lex_state = 408}, + [2842] = {.lex_state = 365}, + [2843] = {.lex_state = 41}, + [2844] = {.lex_state = 406}, + [2845] = {.lex_state = 381}, + [2846] = {.lex_state = 381}, + [2847] = {.lex_state = 68}, + [2848] = {.lex_state = 425}, + [2849] = {.lex_state = 385}, + [2850] = {.lex_state = 68}, + [2851] = {.lex_state = 68}, + [2852] = {.lex_state = 68}, + [2853] = {.lex_state = 425}, + [2854] = {.lex_state = 68}, + [2855] = {.lex_state = 68}, + [2856] = {.lex_state = 41}, + [2857] = {.lex_state = 41}, + [2858] = {.lex_state = 425}, + [2859] = {.lex_state = 41}, + [2860] = {.lex_state = 273}, + [2861] = {.lex_state = 271}, + [2862] = {.lex_state = 385}, + [2863] = {.lex_state = 425}, + [2864] = {.lex_state = 409}, + [2865] = {.lex_state = 408}, + [2866] = {.lex_state = 409}, + [2867] = {.lex_state = 425}, + [2868] = {.lex_state = 385}, + [2869] = {.lex_state = 385}, + [2870] = {.lex_state = 385}, + [2871] = {.lex_state = 385}, + [2872] = {.lex_state = 385}, + [2873] = {.lex_state = 391}, + [2874] = {.lex_state = 369}, + [2875] = {.lex_state = 385}, + [2876] = {.lex_state = 385}, + [2877] = {.lex_state = 320}, + [2878] = {.lex_state = 367}, + [2879] = {.lex_state = 385}, + [2880] = {.lex_state = 385}, + [2881] = {.lex_state = 385}, + [2882] = {.lex_state = 385}, + [2883] = {.lex_state = 271}, + [2884] = {.lex_state = 385}, + [2885] = {.lex_state = 68}, + [2886] = {.lex_state = 385}, + [2887] = {.lex_state = 271}, + [2888] = {.lex_state = 385}, + [2889] = {.lex_state = 385}, + [2890] = {.lex_state = 385}, + [2891] = {.lex_state = 385}, + [2892] = {.lex_state = 41}, + [2893] = {.lex_state = 408}, + [2894] = {.lex_state = 41}, + [2895] = {.lex_state = 413}, + [2896] = {.lex_state = 391}, + [2897] = {.lex_state = 68}, + [2898] = {.lex_state = 68}, + [2899] = {.lex_state = 41}, + [2900] = {.lex_state = 271}, + [2901] = {.lex_state = 68}, + [2902] = {.lex_state = 68}, + [2903] = {.lex_state = 376}, + [2904] = {.lex_state = 80}, + [2905] = {.lex_state = 68}, + [2906] = {.lex_state = 366}, + [2907] = {.lex_state = 366}, + [2908] = {.lex_state = 80}, + [2909] = {.lex_state = 366}, + [2910] = {.lex_state = 376}, + [2911] = {.lex_state = 385}, + [2912] = {.lex_state = 272}, + [2913] = {.lex_state = 41}, + [2914] = {.lex_state = 369}, + [2915] = {.lex_state = 316}, + [2916] = {.lex_state = 41}, + [2917] = {.lex_state = 41}, + [2918] = {.lex_state = 41}, + [2919] = {.lex_state = 41}, + [2920] = {.lex_state = 377}, + [2921] = {.lex_state = 41}, + [2922] = {.lex_state = 41}, + [2923] = {.lex_state = 41}, + [2924] = {.lex_state = 41}, + [2925] = {.lex_state = 272}, + [2926] = {.lex_state = 63}, + [2927] = {.lex_state = 41}, + [2928] = {.lex_state = 41}, + [2929] = {.lex_state = 41}, + [2930] = {.lex_state = 272}, + [2931] = {.lex_state = 272}, + [2932] = {.lex_state = 377}, + [2933] = {.lex_state = 1063}, + [2934] = {.lex_state = 272}, + [2935] = {.lex_state = 272}, + [2936] = {.lex_state = 41}, + [2937] = {.lex_state = 377}, + [2938] = {.lex_state = 363}, + [2939] = {.lex_state = 41}, + [2940] = {.lex_state = 78}, + [2941] = {.lex_state = 126}, + [2942] = {.lex_state = 369}, + [2943] = {.lex_state = 392}, + [2944] = {.lex_state = 41}, + [2945] = {.lex_state = 377}, + [2946] = {.lex_state = 392}, + [2947] = {.lex_state = 377}, + [2948] = {.lex_state = 377}, + [2949] = {.lex_state = 369}, + [2950] = {.lex_state = 377}, + [2951] = {.lex_state = 369}, + [2952] = {.lex_state = 369}, + [2953] = {.lex_state = 369}, + [2954] = {.lex_state = 316}, + [2955] = {.lex_state = 369}, + [2956] = {.lex_state = 1069}, + [2957] = {.lex_state = 369}, + [2958] = {.lex_state = 368}, + [2959] = {.lex_state = 369}, + [2960] = {.lex_state = 369}, + [2961] = {.lex_state = 369}, + [2962] = {.lex_state = 369}, + [2963] = {.lex_state = 369}, + [2964] = {.lex_state = 369}, + [2965] = {.lex_state = 369}, + [2966] = {.lex_state = 369}, + [2967] = {.lex_state = 369}, + [2968] = {.lex_state = 41}, + [2969] = {.lex_state = 369}, + [2970] = {.lex_state = 41}, + [2971] = {.lex_state = 363}, + [2972] = {.lex_state = 369}, + [2973] = {.lex_state = 41}, + [2974] = {.lex_state = 385}, + [2975] = {.lex_state = 43}, + [2976] = {.lex_state = 377}, + [2977] = {.lex_state = 377}, + [2978] = {.lex_state = 385}, + [2979] = {.lex_state = 41}, + [2980] = {.lex_state = 392}, + [2981] = {.lex_state = 41}, + [2982] = {.lex_state = 41}, + [2983] = {.lex_state = 77}, + [2984] = {.lex_state = 41}, + [2985] = {.lex_state = 41}, + [2986] = {.lex_state = 41}, + [2987] = {.lex_state = 77}, + [2988] = {.lex_state = 41}, + [2989] = {.lex_state = 392}, + [2990] = {.lex_state = 392}, + [2991] = {.lex_state = 392}, + [2992] = {.lex_state = 41}, + [2993] = {.lex_state = 41}, + [2994] = {.lex_state = 369}, + [2995] = {.lex_state = 41}, + [2996] = {.lex_state = 377}, + [2997] = {.lex_state = 41}, + [2998] = {.lex_state = 41}, + [2999] = {.lex_state = 44}, + [3000] = {.lex_state = 41}, + [3001] = {.lex_state = 368}, + [3002] = {.lex_state = 41}, + [3003] = {.lex_state = 41}, + [3004] = {.lex_state = 41}, + [3005] = {.lex_state = 41}, + [3006] = {.lex_state = 41}, + [3007] = {.lex_state = 377}, + [3008] = {.lex_state = 377}, + [3009] = {.lex_state = 41}, + [3010] = {.lex_state = 77}, + [3011] = {.lex_state = 77}, + [3012] = {.lex_state = 41}, + [3013] = {.lex_state = 41}, + [3014] = {.lex_state = 41}, + [3015] = {.lex_state = 41}, + [3016] = {.lex_state = 377}, + [3017] = {.lex_state = 377}, + [3018] = {.lex_state = 368}, + [3019] = {.lex_state = 77}, + [3020] = {.lex_state = 41}, + [3021] = {.lex_state = 369}, + [3022] = {.lex_state = 364}, + [3023] = {.lex_state = 1077}, + [3024] = {.lex_state = 364}, + [3025] = {.lex_state = 317}, + [3026] = {.lex_state = 1073}, + [3027] = {.lex_state = 80}, + [3028] = {.lex_state = 80}, + [3029] = {.lex_state = 383}, + [3030] = {.lex_state = 383}, + [3031] = {.lex_state = 369}, + [3032] = {.lex_state = 375}, + [3033] = {.lex_state = 364}, + [3034] = {.lex_state = 364}, + [3035] = {.lex_state = 1063}, + [3036] = {.lex_state = 317}, + [3037] = {.lex_state = 364}, + [3038] = {.lex_state = 364}, + [3039] = {.lex_state = 364}, + [3040] = {.lex_state = 364}, + [3041] = {.lex_state = 184}, + [3042] = {.lex_state = 186}, + [3043] = {.lex_state = 317}, + [3044] = {.lex_state = 369}, + [3045] = {.lex_state = 43}, + [3046] = {.lex_state = 317}, + [3047] = {.lex_state = 426}, + [3048] = {.lex_state = 44}, + [3049] = {.lex_state = 317}, + [3050] = {.lex_state = 80}, + [3051] = {.lex_state = 426}, + [3052] = {.lex_state = 384}, + [3053] = {.lex_state = 59}, + [3054] = {.lex_state = 373}, + [3055] = {.lex_state = 1073}, + [3056] = {.lex_state = 426}, + [3057] = {.lex_state = 364}, + [3058] = {.lex_state = 59}, + [3059] = {.lex_state = 398}, + [3060] = {.lex_state = 364}, + [3061] = {.lex_state = 364}, + [3062] = {.lex_state = 317}, + [3063] = {.lex_state = 317}, + [3064] = {.lex_state = 426}, + [3065] = {.lex_state = 317}, + [3066] = {.lex_state = 317}, + [3067] = {.lex_state = 383}, + [3068] = {.lex_state = 383}, + [3069] = {.lex_state = 383}, + [3070] = {.lex_state = 364}, + [3071] = {.lex_state = 1069}, + [3072] = {.lex_state = 1105}, + [3073] = {.lex_state = 364}, + [3074] = {.lex_state = 393}, + [3075] = {.lex_state = 1103}, + [3076] = {.lex_state = 280}, + [3077] = {.lex_state = 364}, + [3078] = {.lex_state = 426}, + [3079] = {.lex_state = 62}, + [3080] = {.lex_state = 374}, + [3081] = {.lex_state = 62}, + [3082] = {.lex_state = 374}, + [3083] = {.lex_state = 374}, + [3084] = {.lex_state = 374}, + [3085] = {.lex_state = 374}, + [3086] = {.lex_state = 374}, + [3087] = {.lex_state = 62}, + [3088] = {.lex_state = 62}, + [3089] = {.lex_state = 62}, + [3090] = {.lex_state = 374}, + [3091] = {.lex_state = 62}, + [3092] = {.lex_state = 62}, + [3093] = {.lex_state = 374}, + [3094] = {.lex_state = 62}, + [3095] = {.lex_state = 62}, + [3096] = {.lex_state = 188}, + [3097] = {.lex_state = 374}, + [3098] = {.lex_state = 374}, + [3099] = {.lex_state = 370}, + [3100] = {.lex_state = 372}, + [3101] = {.lex_state = 46}, + [3102] = {.lex_state = 370}, + [3103] = {.lex_state = 394}, + [3104] = {.lex_state = 188}, + [3105] = {.lex_state = 1073}, + [3106] = {.lex_state = 374}, + [3107] = {.lex_state = 62}, + [3108] = {.lex_state = 81}, + [3109] = {.lex_state = 374}, + [3110] = {.lex_state = 62}, + [3111] = {.lex_state = 374}, + [3112] = {.lex_state = 62}, + [3113] = {.lex_state = 374}, + [3114] = {.lex_state = 374}, + [3115] = {.lex_state = 62}, + [3116] = {.lex_state = 372}, + [3117] = {.lex_state = 62}, + [3118] = {.lex_state = 62}, + [3119] = {.lex_state = 62}, + [3120] = {.lex_state = 374}, + [3121] = {.lex_state = 374}, + [3122] = {.lex_state = 374}, + [3123] = {.lex_state = 1077}, + [3124] = {.lex_state = 374}, + [3125] = {.lex_state = 1077}, + [3126] = {.lex_state = 62}, + [3127] = {.lex_state = 374}, + [3128] = {.lex_state = 62}, + [3129] = {.lex_state = 370}, + [3130] = {.lex_state = 62}, + [3131] = {.lex_state = 374}, + [3132] = {.lex_state = 1073}, + [3133] = {.lex_state = 385}, + [3134] = {.lex_state = 385}, + [3135] = {.lex_state = 62}, + [3136] = {.lex_state = 62}, + [3137] = {.lex_state = 280}, + [3138] = {.lex_state = 385}, + [3139] = {.lex_state = 374}, + [3140] = {.lex_state = 62}, + [3141] = {.lex_state = 374}, + [3142] = {.lex_state = 374}, + [3143] = {.lex_state = 374}, + [3144] = {.lex_state = 374}, + [3145] = {.lex_state = 374}, + [3146] = {.lex_state = 1103}, + [3147] = {.lex_state = 394}, + [3148] = {.lex_state = 374}, + [3149] = {.lex_state = 399}, + [3150] = {.lex_state = 62}, + [3151] = {.lex_state = 62}, + [3152] = {.lex_state = 62}, + [3153] = {.lex_state = 374}, + [3154] = {.lex_state = 374}, + [3155] = {.lex_state = 1105}, + [3156] = {.lex_state = 374}, + [3157] = {.lex_state = 1107}, + [3158] = {.lex_state = 197}, + [3159] = {.lex_state = 374}, + [3160] = {.lex_state = 371}, + [3161] = {.lex_state = 374}, + [3162] = {.lex_state = 62}, + [3163] = {.lex_state = 62}, + [3164] = {.lex_state = 190}, + [3165] = {.lex_state = 374}, + [3166] = {.lex_state = 374}, + [3167] = {.lex_state = 374}, + [3168] = {.lex_state = 1077}, + [3169] = {.lex_state = 374}, + [3170] = {.lex_state = 62}, + [3171] = {.lex_state = 374}, + [3172] = {.lex_state = 62}, + [3173] = {.lex_state = 1077}, + [3174] = {.lex_state = 362}, + [3175] = {.lex_state = 62}, + [3176] = {.lex_state = 1107}, + [3177] = {.lex_state = 1077}, + [3178] = {.lex_state = 370}, + [3179] = {.lex_state = 62}, + [3180] = {.lex_state = 280}, + [3181] = {.lex_state = 62}, + [3182] = {.lex_state = 370}, + [3183] = {.lex_state = 199}, + [3184] = {.lex_state = 427}, + [3185] = {.lex_state = 46}, + [3186] = {.lex_state = 81}, + [3187] = {.lex_state = 81}, + [3188] = {.lex_state = 374}, + [3189] = {.lex_state = 81}, + [3190] = {.lex_state = 81}, + [3191] = {.lex_state = 374}, + [3192] = {.lex_state = 374}, + [3193] = {.lex_state = 395}, + [3194] = {.lex_state = 374}, + [3195] = {.lex_state = 1077}, + [3196] = {.lex_state = 427}, + [3197] = {.lex_state = 1077}, + [3198] = {.lex_state = 427}, + [3199] = {.lex_state = 1077}, + [3200] = {.lex_state = 1077}, + [3201] = {.lex_state = 427}, + [3202] = {.lex_state = 395}, + [3203] = {.lex_state = 395}, + [3204] = {.lex_state = 395}, + [3205] = {.lex_state = 395}, + [3206] = {.lex_state = 369}, + [3207] = {.lex_state = 369}, + [3208] = {.lex_state = 369}, + [3209] = {.lex_state = 1107}, + [3210] = {.lex_state = 1107}, + [3211] = {.lex_state = 201}, + [3212] = {.lex_state = 360}, + [3213] = {.lex_state = 427}, + [3214] = {.lex_state = 201}, + [3215] = {.lex_state = 359}, + [3216] = {.lex_state = 374}, + [3217] = {.lex_state = 374}, + [3218] = {.lex_state = 374}, + [3219] = {.lex_state = 1109}, + [3220] = {.lex_state = 1109}, + [3221] = {.lex_state = 1109}, + [3222] = {.lex_state = 1109}, + [3223] = {.lex_state = 374}, + [3224] = {.lex_state = 1109}, + [3225] = {.lex_state = 374}, + [3226] = {.lex_state = 374}, + [3227] = {.lex_state = 374}, + [3228] = {.lex_state = 81}, + [3229] = {.lex_state = 190}, + [3230] = {.lex_state = 190}, + [3231] = {.lex_state = 190}, + [3232] = {.lex_state = 190}, + [3233] = {.lex_state = 81}, + [3234] = {.lex_state = 395}, + [3235] = {.lex_state = 374}, + [3236] = {.lex_state = 395}, + [3237] = {.lex_state = 395}, + [3238] = {.lex_state = 374}, + [3239] = {.lex_state = 395}, + [3240] = {.lex_state = 395}, + [3241] = {.lex_state = 359}, + [3242] = {.lex_state = 361}, + [3243] = {.lex_state = 361}, + [3244] = {.lex_state = 361}, + [3245] = {.lex_state = 361}, + [3246] = {.lex_state = 126}, + [3247] = {.lex_state = 361}, + [3248] = {.lex_state = 361}, + [3249] = {.lex_state = 361}, + [3250] = {.lex_state = 361}, + [3251] = {.lex_state = 361}, + [3252] = {.lex_state = 361}, + [3253] = {.lex_state = 361}, + [3254] = {.lex_state = 361}, + [3255] = {.lex_state = 361}, + [3256] = {.lex_state = 361}, + [3257] = {.lex_state = 361}, + [3258] = {.lex_state = 361}, + [3259] = {.lex_state = 361}, + [3260] = {.lex_state = 361}, + [3261] = {.lex_state = 1109}, + [3262] = {.lex_state = 1109}, + [3263] = {.lex_state = 361}, + [3264] = {.lex_state = 361}, + [3265] = {.lex_state = 1109}, + [3266] = {.lex_state = 1109}, + [3267] = {.lex_state = 361}, + [3268] = {.lex_state = 361}, + [3269] = {.lex_state = 203}, + [3270] = {.lex_state = 361}, + [3271] = {.lex_state = 361}, + [3272] = {.lex_state = 203}, + [3273] = {.lex_state = 361}, + [3274] = {.lex_state = 361}, + [3275] = {.lex_state = 361}, + [3276] = {.lex_state = 203}, + [3277] = {.lex_state = 361}, + [3278] = {.lex_state = 361}, + [3279] = {.lex_state = 361}, + [3280] = {.lex_state = 361}, + [3281] = {.lex_state = 361}, + [3282] = {.lex_state = 361}, + [3283] = {.lex_state = 203}, + [3284] = {.lex_state = 361}, + [3285] = {.lex_state = 361}, + [3286] = {.lex_state = 361}, + [3287] = {.lex_state = 361}, + [3288] = {.lex_state = 361}, + [3289] = {.lex_state = 361}, + [3290] = {.lex_state = 361}, + [3291] = {.lex_state = 361}, + [3292] = {.lex_state = 361}, + [3293] = {.lex_state = 361}, + [3294] = {.lex_state = 361}, + [3295] = {.lex_state = 361}, + [3296] = {.lex_state = 361}, + [3297] = {.lex_state = 361}, + [3298] = {.lex_state = 361}, + [3299] = {.lex_state = 361}, + [3300] = {.lex_state = 361}, + [3301] = {.lex_state = 361}, + [3302] = {.lex_state = 361}, + [3303] = {.lex_state = 361}, + [3304] = {.lex_state = 361}, + [3305] = {.lex_state = 361}, + [3306] = {.lex_state = 361}, + [3307] = {.lex_state = 361}, + [3308] = {.lex_state = 1051}, + [3309] = {.lex_state = 361}, + [3310] = {.lex_state = 126}, + [3311] = {.lex_state = 361}, + [3312] = {.lex_state = 361}, + [3313] = {.lex_state = 1092}, + [3314] = {.lex_state = 126}, + [3315] = {.lex_state = 361}, + [3316] = {.lex_state = 1109}, + [3317] = {.lex_state = 203}, + [3318] = {.lex_state = 361}, + [3319] = {.lex_state = 1051}, + [3320] = {.lex_state = 135}, + [3321] = {.lex_state = 135}, + [3322] = {.lex_state = 135}, + [3323] = {.lex_state = 135}, + [3324] = {.lex_state = 135}, + [3325] = {.lex_state = 135}, + [3326] = {.lex_state = 135}, + [3327] = {.lex_state = 135}, + [3328] = {.lex_state = 135}, + [3329] = {.lex_state = 135}, + [3330] = {.lex_state = 135}, + [3331] = {.lex_state = 1059}, + [3332] = {.lex_state = 46}, + [3333] = {.lex_state = 1051}, + [3334] = {.lex_state = 1051}, + [3335] = {.lex_state = 1051}, + [3336] = {.lex_state = 135}, + [3337] = {.lex_state = 135}, + [3338] = {.lex_state = 135}, + [3339] = {.lex_state = 135}, + [3340] = {.lex_state = 135}, + [3341] = {.lex_state = 1092}, + [3342] = {.lex_state = 997}, + [3343] = {.lex_state = 204}, + [3344] = {.lex_state = 997}, + [3345] = {.lex_state = 118}, + [3346] = {.lex_state = 1120}, + [3347] = {.lex_state = 1120}, + [3348] = {.lex_state = 997}, + [3349] = {.lex_state = 997}, + [3350] = {.lex_state = 1120}, + [3351] = {.lex_state = 1051}, + [3352] = {.lex_state = 995}, + [3353] = {.lex_state = 1120}, + [3354] = {.lex_state = 997}, + [3355] = {.lex_state = 997}, + [3356] = {.lex_state = 997}, + [3357] = {.lex_state = 997}, + [3358] = {.lex_state = 997}, + [3359] = {.lex_state = 997}, + [3360] = {.lex_state = 1120}, + [3361] = {.lex_state = 1120}, + [3362] = {.lex_state = 1123}, + [3363] = {.lex_state = 1123}, + [3364] = {.lex_state = 210}, + [3365] = {.lex_state = 997}, + [3366] = {.lex_state = 997}, + [3367] = {.lex_state = 997}, + [3368] = {.lex_state = 1116}, + [3369] = {.lex_state = 1051}, + [3370] = {.lex_state = 1123}, + [3371] = {.lex_state = 1120}, + [3372] = {.lex_state = 210}, + [3373] = {.lex_state = 1115}, + [3374] = {.lex_state = 210}, + [3375] = {.lex_state = 210}, + [3376] = {.lex_state = 1051}, + [3377] = {.lex_state = 135}, + [3378] = {.lex_state = 997}, + [3379] = {.lex_state = 1120}, + [3380] = {.lex_state = 135}, + [3381] = {.lex_state = 1115}, + [3382] = {.lex_state = 210}, + [3383] = {.lex_state = 997}, + [3384] = {.lex_state = 1120}, + [3385] = {.lex_state = 1120}, + [3386] = {.lex_state = 182}, + [3387] = {.lex_state = 135}, + [3388] = {.lex_state = 135}, + [3389] = {.lex_state = 997}, + [3390] = {.lex_state = 1116}, + [3391] = {.lex_state = 997}, + [3392] = {.lex_state = 1059}, + [3393] = {.lex_state = 1123}, + [3394] = {.lex_state = 135}, + [3395] = {.lex_state = 135}, + [3396] = {.lex_state = 1059}, + [3397] = {.lex_state = 1059}, + [3398] = {.lex_state = 1059}, + [3399] = {.lex_state = 1059}, + [3400] = {.lex_state = 1059}, + [3401] = {.lex_state = 1059}, + [3402] = {.lex_state = 1059}, + [3403] = {.lex_state = 1059}, + [3404] = {.lex_state = 1059}, + [3405] = {.lex_state = 1059}, + [3406] = {.lex_state = 1059}, + [3407] = {.lex_state = 1059}, + [3408] = {.lex_state = 135}, + [3409] = {.lex_state = 208}, + [3410] = {.lex_state = 135}, + [3411] = {.lex_state = 182}, + [3412] = {.lex_state = 997}, + [3413] = {.lex_state = 182}, + [3414] = {.lex_state = 182}, + [3415] = {.lex_state = 182}, + [3416] = {.lex_state = 997}, + [3417] = {.lex_state = 182}, + [3418] = {.lex_state = 182}, + [3419] = {.lex_state = 182}, + [3420] = {.lex_state = 182}, + [3421] = {.lex_state = 182}, + [3422] = {.lex_state = 182}, + [3423] = {.lex_state = 213}, + [3424] = {.lex_state = 182}, + [3425] = {.lex_state = 182}, + [3426] = {.lex_state = 135}, + [3427] = {.lex_state = 182}, + [3428] = {.lex_state = 182}, + [3429] = {.lex_state = 182}, + [3430] = {.lex_state = 182}, + [3431] = {.lex_state = 182}, + [3432] = {.lex_state = 182}, + [3433] = {.lex_state = 182}, + [3434] = {.lex_state = 182}, + [3435] = {.lex_state = 182}, + [3436] = {.lex_state = 182}, + [3437] = {.lex_state = 182}, + [3438] = {.lex_state = 182}, + [3439] = {.lex_state = 182}, + [3440] = {.lex_state = 182}, + [3441] = {.lex_state = 182}, + [3442] = {.lex_state = 182}, + [3443] = {.lex_state = 182}, + [3444] = {.lex_state = 182}, + [3445] = {.lex_state = 182}, + [3446] = {.lex_state = 182}, + [3447] = {.lex_state = 182}, + [3448] = {.lex_state = 182}, + [3449] = {.lex_state = 182}, + [3450] = {.lex_state = 182}, + [3451] = {.lex_state = 182}, + [3452] = {.lex_state = 182}, + [3453] = {.lex_state = 182}, + [3454] = {.lex_state = 182}, + [3455] = {.lex_state = 182}, + [3456] = {.lex_state = 182}, + [3457] = {.lex_state = 182}, + [3458] = {.lex_state = 182}, + [3459] = {.lex_state = 182}, + [3460] = {.lex_state = 182}, + [3461] = {.lex_state = 1123}, + [3462] = {.lex_state = 182}, + [3463] = {.lex_state = 1123}, + [3464] = {.lex_state = 182}, + [3465] = {.lex_state = 182}, + [3466] = {.lex_state = 182}, + [3467] = {.lex_state = 182}, + [3468] = {.lex_state = 182}, + [3469] = {.lex_state = 182}, + [3470] = {.lex_state = 182}, + [3471] = {.lex_state = 182}, + [3472] = {.lex_state = 182}, + [3473] = {.lex_state = 182}, + [3474] = {.lex_state = 182}, + [3475] = {.lex_state = 182}, + [3476] = {.lex_state = 182}, + [3477] = {.lex_state = 182}, + [3478] = {.lex_state = 135}, + [3479] = {.lex_state = 182}, + [3480] = {.lex_state = 182}, + [3481] = {.lex_state = 182}, + [3482] = {.lex_state = 182}, + [3483] = {.lex_state = 182}, + [3484] = {.lex_state = 182}, + [3485] = {.lex_state = 182}, + [3486] = {.lex_state = 182}, + [3487] = {.lex_state = 182}, + [3488] = {.lex_state = 182}, + [3489] = {.lex_state = 182}, + [3490] = {.lex_state = 182}, + [3491] = {.lex_state = 182}, + [3492] = {.lex_state = 182}, + [3493] = {.lex_state = 182}, + [3494] = {.lex_state = 182}, + [3495] = {.lex_state = 182}, + [3496] = {.lex_state = 182}, + [3497] = {.lex_state = 182}, + [3498] = {.lex_state = 182}, + [3499] = {.lex_state = 182}, + [3500] = {.lex_state = 182}, + [3501] = {.lex_state = 182}, + [3502] = {.lex_state = 182}, + [3503] = {.lex_state = 182}, + [3504] = {.lex_state = 182}, + [3505] = {.lex_state = 182}, + [3506] = {.lex_state = 182}, + [3507] = {.lex_state = 182}, + [3508] = {.lex_state = 182}, + [3509] = {.lex_state = 182}, + [3510] = {.lex_state = 182}, + [3511] = {.lex_state = 182}, + [3512] = {.lex_state = 182}, + [3513] = {.lex_state = 1115}, + [3514] = {.lex_state = 1115}, + [3515] = {.lex_state = 997}, + [3516] = {.lex_state = 997}, + [3517] = {.lex_state = 213}, + [3518] = {.lex_state = 213}, + [3519] = {.lex_state = 135}, + [3520] = {.lex_state = 207}, + [3521] = {.lex_state = 207}, + [3522] = {.lex_state = 135}, + [3523] = {.lex_state = 135}, + [3524] = {.lex_state = 135}, + [3525] = {.lex_state = 1059}, + [3526] = {.lex_state = 1059}, + [3527] = {.lex_state = 1059}, + [3528] = {.lex_state = 1059}, + [3529] = {.lex_state = 1059}, + [3530] = {.lex_state = 1059}, + [3531] = {.lex_state = 1059}, + [3532] = {.lex_state = 1059}, + [3533] = {.lex_state = 1059}, + [3534] = {.lex_state = 1059}, + [3535] = {.lex_state = 1059}, + [3536] = {.lex_state = 1059}, + [3537] = {.lex_state = 995}, + [3538] = {.lex_state = 473}, + [3539] = {.lex_state = 1059}, + [3540] = {.lex_state = 1059}, + [3541] = {.lex_state = 127}, + [3542] = {.lex_state = 1059}, + [3543] = {.lex_state = 128}, + [3544] = {.lex_state = 182}, + [3545] = {.lex_state = 472}, + [3546] = {.lex_state = 1059}, + [3547] = {.lex_state = 135}, + [3548] = {.lex_state = 997}, + [3549] = {.lex_state = 192}, + [3550] = {.lex_state = 482}, + [3551] = {.lex_state = 274}, + [3552] = {.lex_state = 474}, + [3553] = {.lex_state = 126}, + [3554] = {.lex_state = 130}, + [3555] = {.lex_state = 126}, + [3556] = {.lex_state = 271}, + [3557] = {.lex_state = 129}, + [3558] = {.lex_state = 997}, + [3559] = {.lex_state = 129}, + [3560] = {.lex_state = 997}, + [3561] = {.lex_state = 475}, + [3562] = {.lex_state = 271}, + [3563] = {.lex_state = 997}, + [3564] = {.lex_state = 476}, + [3565] = {.lex_state = 191}, + [3566] = {.lex_state = 278}, + [3567] = {.lex_state = 474}, + [3568] = {.lex_state = 135}, + [3569] = {.lex_state = 995}, + [3570] = {.lex_state = 995}, + [3571] = {.lex_state = 275}, + [3572] = {.lex_state = 272}, + [3573] = {.lex_state = 126}, + [3574] = {.lex_state = 475}, + [3575] = {.lex_state = 126}, + [3576] = {.lex_state = 477}, + [3577] = {.lex_state = 272}, + [3578] = {.lex_state = 135}, + [3579] = {.lex_state = 995}, + [3580] = {.lex_state = 135}, + [3581] = {.lex_state = 995}, + [3582] = {.lex_state = 130}, + [3583] = {.lex_state = 194}, + [3584] = {.lex_state = 995}, + [3585] = {.lex_state = 995}, + [3586] = {.lex_state = 995}, + [3587] = {.lex_state = 995}, + [3588] = {.lex_state = 193}, + [3589] = {.lex_state = 995}, + [3590] = {.lex_state = 995}, + [3591] = {.lex_state = 995}, + [3592] = {.lex_state = 130}, + [3593] = {.lex_state = 135}, + [3594] = {.lex_state = 130}, + [3595] = {.lex_state = 475}, + [3596] = {.lex_state = 475}, + [3597] = {.lex_state = 135}, + [3598] = {.lex_state = 275}, + [3599] = {.lex_state = 130}, + [3600] = {.lex_state = 483}, + [3601] = {.lex_state = 1051}, + [3602] = {.lex_state = 135}, + [3603] = {.lex_state = 1051}, + [3604] = {.lex_state = 995}, + [3605] = {.lex_state = 193}, + [3606] = {.lex_state = 485}, + [3607] = {.lex_state = 483}, + [3608] = {.lex_state = 475}, + [3609] = {.lex_state = 995}, + [3610] = {.lex_state = 995}, + [3611] = {.lex_state = 995}, + [3612] = {.lex_state = 1051}, + [3613] = {.lex_state = 194}, + [3614] = {.lex_state = 194}, + [3615] = {.lex_state = 276}, + [3616] = {.lex_state = 484}, + [3617] = {.lex_state = 484}, + [3618] = {.lex_state = 276}, + [3619] = {.lex_state = 194}, + [3620] = {.lex_state = 1051}, + [3621] = {.lex_state = 559}, + [3622] = {.lex_state = 559}, + [3623] = {.lex_state = 194}, + [3624] = {.lex_state = 486}, + [3625] = {.lex_state = 126}, + [3626] = {.lex_state = 126}, + [3627] = {.lex_state = 484}, + [3628] = {.lex_state = 276}, + [3629] = {.lex_state = 276}, + [3630] = {.lex_state = 126}, + [3631] = {.lex_state = 486}, + [3632] = {.lex_state = 126}, + [3633] = {.lex_state = 559}, + [3634] = {.lex_state = 559}, + [3635] = {.lex_state = 1051}, + [3636] = {.lex_state = 484}, + [3637] = {.lex_state = 1051}, + [3638] = {.lex_state = 1051}, + [3639] = {.lex_state = 1051}, + [3640] = {.lex_state = 559}, + [3641] = {.lex_state = 276}, + [3642] = {.lex_state = 484}, + [3643] = {.lex_state = 487}, + [3644] = {.lex_state = 126}, + [3645] = {.lex_state = 1092}, + [3646] = {.lex_state = 997}, + [3647] = {.lex_state = 126}, + [3648] = {.lex_state = 487}, + [3649] = {.lex_state = 126}, + [3650] = {.lex_state = 487}, + [3651] = {.lex_state = 997}, + [3652] = {.lex_state = 487}, + [3653] = {.lex_state = 487}, + [3654] = {.lex_state = 1092}, + [3655] = {.lex_state = 997}, + [3656] = {.lex_state = 997}, + [3657] = {.lex_state = 559}, + [3658] = {.lex_state = 1092}, + [3659] = {.lex_state = 1092}, + [3660] = {.lex_state = 1092}, + [3661] = {.lex_state = 1092}, + [3662] = {.lex_state = 559}, + [3663] = {.lex_state = 1092}, + [3664] = {.lex_state = 1092}, + [3665] = {.lex_state = 1092}, + [3666] = {.lex_state = 1092}, + [3667] = {.lex_state = 1092}, + [3668] = {.lex_state = 1092}, + [3669] = {.lex_state = 1092}, + [3670] = {.lex_state = 1092}, + [3671] = {.lex_state = 1092}, + [3672] = {.lex_state = 1092}, + [3673] = {.lex_state = 1092}, + [3674] = {.lex_state = 1092}, + [3675] = {.lex_state = 1092}, + [3676] = {.lex_state = 1092}, + [3677] = {.lex_state = 1092}, + [3678] = {.lex_state = 1092}, + [3679] = {.lex_state = 1092}, + [3680] = {.lex_state = 1092}, + [3681] = {.lex_state = 126}, + [3682] = {.lex_state = 159}, + [3683] = {.lex_state = 159}, + [3684] = {.lex_state = 159}, + [3685] = {.lex_state = 159}, + [3686] = {.lex_state = 159}, + [3687] = {.lex_state = 159}, + [3688] = {.lex_state = 159}, + [3689] = {.lex_state = 997}, + [3690] = {.lex_state = 159}, + [3691] = {.lex_state = 159}, + [3692] = {.lex_state = 159}, + [3693] = {.lex_state = 1092}, + [3694] = {.lex_state = 1092}, + [3695] = {.lex_state = 159}, + [3696] = {.lex_state = 159}, + [3697] = {.lex_state = 487}, + [3698] = {.lex_state = 126}, + [3699] = {.lex_state = 182}, + [3700] = {.lex_state = 159}, + [3701] = {.lex_state = 159}, + [3702] = {.lex_state = 159}, + [3703] = {.lex_state = 1092}, + [3704] = {.lex_state = 159}, + [3705] = {.lex_state = 159}, + [3706] = {.lex_state = 159}, + [3707] = {.lex_state = 159}, + [3708] = {.lex_state = 159}, + [3709] = {.lex_state = 997}, + [3710] = {.lex_state = 1092}, + [3711] = {.lex_state = 159}, + [3712] = {.lex_state = 995}, + [3713] = {.lex_state = 995}, + [3714] = {.lex_state = 159}, + [3715] = {.lex_state = 159}, + [3716] = {.lex_state = 995}, + [3717] = {.lex_state = 159}, + [3718] = {.lex_state = 997}, + [3719] = {.lex_state = 997}, + [3720] = {.lex_state = 159}, + [3721] = {.lex_state = 997}, + [3722] = {.lex_state = 997}, + [3723] = {.lex_state = 995}, + [3724] = {.lex_state = 997}, + [3725] = {.lex_state = 995}, + [3726] = {.lex_state = 995}, + [3727] = {.lex_state = 995}, + [3728] = {.lex_state = 166}, + [3729] = {.lex_state = 997}, + [3730] = {.lex_state = 1059}, + [3731] = {.lex_state = 995}, + [3732] = {.lex_state = 263}, + [3733] = {.lex_state = 1092}, + [3734] = {.lex_state = 268}, + [3735] = {.lex_state = 159}, + [3736] = {.lex_state = 146}, + [3737] = {.lex_state = 146}, + [3738] = {.lex_state = 146}, + [3739] = {.lex_state = 995}, + [3740] = {.lex_state = 182}, + [3741] = {.lex_state = 159}, + [3742] = {.lex_state = 159}, + [3743] = {.lex_state = 575}, + [3744] = {.lex_state = 575}, + [3745] = {.lex_state = 575}, + [3746] = {.lex_state = 182}, + [3747] = {.lex_state = 995}, + [3748] = {.lex_state = 575}, + [3749] = {.lex_state = 159}, + [3750] = {.lex_state = 159}, + [3751] = {.lex_state = 575}, + [3752] = {.lex_state = 146}, + [3753] = {.lex_state = 995}, + [3754] = {.lex_state = 146}, + [3755] = {.lex_state = 166}, + [3756] = {.lex_state = 995}, + [3757] = {.lex_state = 115}, + [3758] = {.lex_state = 1059}, + [3759] = {.lex_state = 211}, + [3760] = {.lex_state = 424}, + [3761] = {.lex_state = 1059}, + [3762] = {.lex_state = 517}, + [3763] = {.lex_state = 995}, + [3764] = {.lex_state = 137}, + [3765] = {.lex_state = 159}, + [3766] = {.lex_state = 211}, + [3767] = {.lex_state = 424}, + [3768] = {.lex_state = 995}, + [3769] = {.lex_state = 159}, + [3770] = {.lex_state = 995}, + [3771] = {.lex_state = 115}, + [3772] = {.lex_state = 424}, + [3773] = {.lex_state = 576}, + [3774] = {.lex_state = 576}, + [3775] = {.lex_state = 995}, + [3776] = {.lex_state = 995}, + [3777] = {.lex_state = 159}, + [3778] = {.lex_state = 576}, + [3779] = {.lex_state = 159}, + [3780] = {.lex_state = 424}, + [3781] = {.lex_state = 166}, + [3782] = {.lex_state = 266}, + [3783] = {.lex_state = 576}, + [3784] = {.lex_state = 211}, + [3785] = {.lex_state = 277}, + [3786] = {.lex_state = 424}, + [3787] = {.lex_state = 211}, + [3788] = {.lex_state = 211}, + [3789] = {.lex_state = 159}, + [3790] = {.lex_state = 1059}, + [3791] = {.lex_state = 182}, + [3792] = {.lex_state = 182}, + [3793] = {.lex_state = 182}, + [3794] = {.lex_state = 182}, + [3795] = {.lex_state = 182}, + [3796] = {.lex_state = 182}, + [3797] = {.lex_state = 182}, + [3798] = {.lex_state = 182}, + [3799] = {.lex_state = 182}, + [3800] = {.lex_state = 182}, + [3801] = {.lex_state = 182}, + [3802] = {.lex_state = 182}, + [3803] = {.lex_state = 182}, + [3804] = {.lex_state = 182}, + [3805] = {.lex_state = 182}, + [3806] = {.lex_state = 182}, + [3807] = {.lex_state = 182}, + [3808] = {.lex_state = 182}, + [3809] = {.lex_state = 182}, + [3810] = {.lex_state = 182}, + [3811] = {.lex_state = 182}, + [3812] = {.lex_state = 182}, + [3813] = {.lex_state = 182}, + [3814] = {.lex_state = 182}, + [3815] = {.lex_state = 182}, + [3816] = {.lex_state = 182}, + [3817] = {.lex_state = 182}, + [3818] = {.lex_state = 182}, + [3819] = {.lex_state = 182}, + [3820] = {.lex_state = 182}, + [3821] = {.lex_state = 182}, + [3822] = {.lex_state = 182}, + [3823] = {.lex_state = 182}, + [3824] = {.lex_state = 182}, + [3825] = {.lex_state = 182}, + [3826] = {.lex_state = 182}, + [3827] = {.lex_state = 182}, + [3828] = {.lex_state = 182}, + [3829] = {.lex_state = 182}, + [3830] = {.lex_state = 182}, + [3831] = {.lex_state = 182}, + [3832] = {.lex_state = 182}, + [3833] = {.lex_state = 182}, + [3834] = {.lex_state = 182}, + [3835] = {.lex_state = 182}, + [3836] = {.lex_state = 182}, + [3837] = {.lex_state = 182}, + [3838] = {.lex_state = 182}, + [3839] = {.lex_state = 182}, + [3840] = {.lex_state = 182}, + [3841] = {.lex_state = 182}, + [3842] = {.lex_state = 182}, + [3843] = {.lex_state = 182}, + [3844] = {.lex_state = 182}, + [3845] = {.lex_state = 182}, + [3846] = {.lex_state = 182}, + [3847] = {.lex_state = 182}, + [3848] = {.lex_state = 182}, + [3849] = {.lex_state = 182}, + [3850] = {.lex_state = 182}, + [3851] = {.lex_state = 182}, + [3852] = {.lex_state = 182}, + [3853] = {.lex_state = 182}, + [3854] = {.lex_state = 182}, + [3855] = {.lex_state = 182}, + [3856] = {.lex_state = 182}, + [3857] = {.lex_state = 182}, + [3858] = {.lex_state = 182}, + [3859] = {.lex_state = 182}, + [3860] = {.lex_state = 182}, + [3861] = {.lex_state = 182}, + [3862] = {.lex_state = 182}, + [3863] = {.lex_state = 182}, + [3864] = {.lex_state = 182}, + [3865] = {.lex_state = 182}, + [3866] = {.lex_state = 182}, + [3867] = {.lex_state = 182}, + [3868] = {.lex_state = 182}, + [3869] = {.lex_state = 182}, + [3870] = {.lex_state = 182}, + [3871] = {.lex_state = 182}, + [3872] = {.lex_state = 182}, + [3873] = {.lex_state = 182}, + [3874] = {.lex_state = 182}, + [3875] = {.lex_state = 43}, + [3876] = {.lex_state = 43}, + [3877] = {.lex_state = 43}, + [3878] = {.lex_state = 43}, + [3879] = {.lex_state = 997}, + [3880] = {.lex_state = 43}, + [3881] = {.lex_state = 195}, + [3882] = {.lex_state = 43}, + [3883] = {.lex_state = 995}, + [3884] = {.lex_state = 995}, + [3885] = {.lex_state = 43}, + [3886] = {.lex_state = 43}, + [3887] = {.lex_state = 995}, + [3888] = {.lex_state = 43}, + [3889] = {.lex_state = 43}, + [3890] = {.lex_state = 1059}, + [3891] = {.lex_state = 43}, + [3892] = {.lex_state = 576}, + [3893] = {.lex_state = 995}, + [3894] = {.lex_state = 43}, + [3895] = {.lex_state = 43}, + [3896] = {.lex_state = 43}, + [3897] = {.lex_state = 43}, + [3898] = {.lex_state = 1059}, + [3899] = {.lex_state = 43}, + [3900] = {.lex_state = 43}, + [3901] = {.lex_state = 43}, + [3902] = {.lex_state = 43}, + [3903] = {.lex_state = 43}, + [3904] = {.lex_state = 43}, + [3905] = {.lex_state = 43}, + [3906] = {.lex_state = 43}, + [3907] = {.lex_state = 43}, + [3908] = {.lex_state = 43}, + [3909] = {.lex_state = 43}, + [3910] = {.lex_state = 43}, + [3911] = {.lex_state = 43}, + [3912] = {.lex_state = 577}, + [3913] = {.lex_state = 43}, + [3914] = {.lex_state = 43}, + [3915] = {.lex_state = 43}, + [3916] = {.lex_state = 577}, + [3917] = {.lex_state = 43}, + [3918] = {.lex_state = 43}, + [3919] = {.lex_state = 43}, + [3920] = {.lex_state = 43}, + [3921] = {.lex_state = 126}, + [3922] = {.lex_state = 126}, + [3923] = {.lex_state = 126}, + [3924] = {.lex_state = 126}, + [3925] = {.lex_state = 126}, + [3926] = {.lex_state = 126}, + [3927] = {.lex_state = 126}, + [3928] = {.lex_state = 126}, + [3929] = {.lex_state = 126}, + [3930] = {.lex_state = 126}, + [3931] = {.lex_state = 126}, + [3932] = {.lex_state = 126}, + [3933] = {.lex_state = 43}, + [3934] = {.lex_state = 43}, + [3935] = {.lex_state = 48}, + [3936] = {.lex_state = 48}, + [3937] = {.lex_state = 48}, + [3938] = {.lex_state = 48}, + [3939] = {.lex_state = 48}, + [3940] = {.lex_state = 48}, + [3941] = {.lex_state = 48}, + [3942] = {.lex_state = 48}, + [3943] = {.lex_state = 48}, + [3944] = {.lex_state = 48}, + [3945] = {.lex_state = 48}, + [3946] = {.lex_state = 48}, + [3947] = {.lex_state = 43}, + [3948] = {.lex_state = 1059}, + [3949] = {.lex_state = 43}, + [3950] = {.lex_state = 43}, + [3951] = {.lex_state = 43}, + [3952] = {.lex_state = 182}, + [3953] = {.lex_state = 182}, + [3954] = {.lex_state = 182}, + [3955] = {.lex_state = 182}, + [3956] = {.lex_state = 182}, + [3957] = {.lex_state = 182}, + [3958] = {.lex_state = 182}, + [3959] = {.lex_state = 182}, + [3960] = {.lex_state = 182}, + [3961] = {.lex_state = 182}, + [3962] = {.lex_state = 182}, + [3963] = {.lex_state = 43}, + [3964] = {.lex_state = 43}, + [3965] = {.lex_state = 182}, + [3966] = {.lex_state = 43}, + [3967] = {.lex_state = 43}, + [3968] = {.lex_state = 1059}, + [3969] = {.lex_state = 43}, + [3970] = {.lex_state = 43}, + [3971] = {.lex_state = 43}, + [3972] = {.lex_state = 577}, + [3973] = {.lex_state = 577}, + [3974] = {.lex_state = 1059}, + [3975] = {.lex_state = 577}, + [3976] = {.lex_state = 115}, + [3977] = {.lex_state = 115}, + [3978] = {.lex_state = 564}, + [3979] = {.lex_state = 115}, + [3980] = {.lex_state = 115}, + [3981] = {.lex_state = 182}, + [3982] = {.lex_state = 182}, + [3983] = {.lex_state = 1026}, + [3984] = {.lex_state = 115}, + [3985] = {.lex_state = 182}, + [3986] = {.lex_state = 557}, + [3987] = {.lex_state = 115}, + [3988] = {.lex_state = 115}, + [3989] = {.lex_state = 115}, + [3990] = {.lex_state = 115}, + [3991] = {.lex_state = 115}, + [3992] = {.lex_state = 115}, + [3993] = {.lex_state = 115}, + [3994] = {.lex_state = 115}, + [3995] = {.lex_state = 115}, + [3996] = {.lex_state = 182}, + [3997] = {.lex_state = 115}, + [3998] = {.lex_state = 115}, + [3999] = {.lex_state = 115}, + [4000] = {.lex_state = 115}, + [4001] = {.lex_state = 115}, + [4002] = {.lex_state = 115}, + [4003] = {.lex_state = 1026}, + [4004] = {.lex_state = 115}, + [4005] = {.lex_state = 997}, + [4006] = {.lex_state = 115}, + [4007] = {.lex_state = 182}, + [4008] = {.lex_state = 115}, + [4009] = {.lex_state = 182}, + [4010] = {.lex_state = 115}, + [4011] = {.lex_state = 115}, + [4012] = {.lex_state = 182}, + [4013] = {.lex_state = 564}, + [4014] = {.lex_state = 182}, + [4015] = {.lex_state = 182}, + [4016] = {.lex_state = 115}, + [4017] = {.lex_state = 166}, + [4018] = {.lex_state = 161}, + [4019] = {.lex_state = 161}, + [4020] = {.lex_state = 166}, + [4021] = {.lex_state = 166}, + [4022] = {.lex_state = 166}, + [4023] = {.lex_state = 166}, + [4024] = {.lex_state = 166}, + [4025] = {.lex_state = 166}, + [4026] = {.lex_state = 166}, + [4027] = {.lex_state = 166}, + [4028] = {.lex_state = 166}, + [4029] = {.lex_state = 166}, + [4030] = {.lex_state = 166}, + [4031] = {.lex_state = 161}, + [4032] = {.lex_state = 161}, + [4033] = {.lex_state = 1026}, + [4034] = {.lex_state = 161}, + [4035] = {.lex_state = 1026}, + [4036] = {.lex_state = 161}, + [4037] = {.lex_state = 161}, + [4038] = {.lex_state = 1026}, + [4039] = {.lex_state = 161}, + [4040] = {.lex_state = 1026}, + [4041] = {.lex_state = 1026}, + [4042] = {.lex_state = 161}, + [4043] = {.lex_state = 161}, + [4044] = {.lex_state = 161}, + [4045] = {.lex_state = 161}, + [4046] = {.lex_state = 115}, + [4047] = {.lex_state = 995}, + [4048] = {.lex_state = 161}, + [4049] = {.lex_state = 1026}, + [4050] = {.lex_state = 161}, + [4051] = {.lex_state = 1026}, + [4052] = {.lex_state = 1026}, + [4053] = {.lex_state = 115}, + [4054] = {.lex_state = 115}, + [4055] = {.lex_state = 161}, + [4056] = {.lex_state = 161}, + [4057] = {.lex_state = 115}, + [4058] = {.lex_state = 1026}, + [4059] = {.lex_state = 115}, + [4060] = {.lex_state = 115}, + [4061] = {.lex_state = 115}, + [4062] = {.lex_state = 1026}, + [4063] = {.lex_state = 115}, + [4064] = {.lex_state = 115}, + [4065] = {.lex_state = 161}, + [4066] = {.lex_state = 161}, + [4067] = {.lex_state = 161}, + [4068] = {.lex_state = 115}, + [4069] = {.lex_state = 161}, + [4070] = {.lex_state = 1026}, + [4071] = {.lex_state = 115}, + [4072] = {.lex_state = 115}, + [4073] = {.lex_state = 161}, + [4074] = {.lex_state = 995}, + [4075] = {.lex_state = 1053}, + [4076] = {.lex_state = 1053}, + [4077] = {.lex_state = 1054}, + [4078] = {.lex_state = 1054}, + [4079] = {.lex_state = 1054}, + [4080] = {.lex_state = 1060}, + [4081] = {.lex_state = 1051}, + [4082] = {.lex_state = 1054}, + [4083] = {.lex_state = 1052}, + [4084] = {.lex_state = 1066}, + [4085] = {.lex_state = 995}, + [4086] = {.lex_state = 995}, + [4087] = {.lex_state = 1055}, + [4088] = {.lex_state = 1066}, + [4089] = {.lex_state = 1051}, + [4090] = {.lex_state = 995}, + [4091] = {.lex_state = 995}, + [4092] = {.lex_state = 1070}, + [4093] = {.lex_state = 1052}, + [4094] = {.lex_state = 995}, + [4095] = {.lex_state = 1070}, + [4096] = {.lex_state = 995}, + [4097] = {.lex_state = 1055}, + [4098] = {.lex_state = 995}, + [4099] = {.lex_state = 1060}, + [4100] = {.lex_state = 995}, + [4101] = {.lex_state = 995}, + [4102] = {.lex_state = 1052}, + [4103] = {.lex_state = 995}, + [4104] = {.lex_state = 995}, + [4105] = {.lex_state = 1051}, + [4106] = {.lex_state = 995}, + [4107] = {.lex_state = 995}, + [4108] = {.lex_state = 1051}, + [4109] = {.lex_state = 1051}, + [4110] = {.lex_state = 1074}, + [4111] = {.lex_state = 995}, + [4112] = {.lex_state = 995}, + [4113] = {.lex_state = 995}, + [4114] = {.lex_state = 995}, + [4115] = {.lex_state = 995}, + [4116] = {.lex_state = 995}, + [4117] = {.lex_state = 995}, + [4118] = {.lex_state = 995}, + [4119] = {.lex_state = 995}, + [4120] = {.lex_state = 1064}, + [4121] = {.lex_state = 997}, + [4122] = {.lex_state = 1078}, + [4123] = {.lex_state = 1074}, + [4124] = {.lex_state = 1068}, + [4125] = {.lex_state = 1055}, + [4126] = {.lex_state = 1070}, + [4127] = {.lex_state = 1074}, + [4128] = {.lex_state = 1055}, + [4129] = {.lex_state = 1074}, + [4130] = {.lex_state = 1052}, + [4131] = {.lex_state = 1052}, + [4132] = {.lex_state = 1070}, + [4133] = {.lex_state = 1074}, + [4134] = {.lex_state = 1052}, + [4135] = {.lex_state = 1052}, + [4136] = {.lex_state = 1074}, + [4137] = {.lex_state = 1062}, + [4138] = {.lex_state = 1052}, + [4139] = {.lex_state = 995}, + [4140] = {.lex_state = 995}, + [4141] = {.lex_state = 997}, + [4142] = {.lex_state = 1052}, + [4143] = {.lex_state = 995}, + [4144] = {.lex_state = 995}, + [4145] = {.lex_state = 995}, + [4146] = {.lex_state = 995}, + [4147] = {.lex_state = 995}, + [4148] = {.lex_state = 995}, + [4149] = {.lex_state = 1074}, + [4150] = {.lex_state = 995}, + [4151] = {.lex_state = 995}, + [4152] = {.lex_state = 1052}, + [4153] = {.lex_state = 995}, + [4154] = {.lex_state = 995}, + [4155] = {.lex_state = 995}, + [4156] = {.lex_state = 995}, + [4157] = {.lex_state = 1078}, + [4158] = {.lex_state = 1064}, + [4159] = {.lex_state = 995}, + [4160] = {.lex_state = 1072}, + [4161] = {.lex_state = 1076}, + [4162] = {.lex_state = 995}, + [4163] = {.lex_state = 995}, + [4164] = {.lex_state = 1062}, + [4165] = {.lex_state = 995}, + [4166] = {.lex_state = 995}, + [4167] = {.lex_state = 995}, + [4168] = {.lex_state = 1068}, + [4169] = {.lex_state = 997}, + [4170] = {.lex_state = 1072}, + [4171] = {.lex_state = 995}, + [4172] = {.lex_state = 995}, + [4173] = {.lex_state = 1080}, + [4174] = {.lex_state = 1052}, + [4175] = {.lex_state = 1074}, + [4176] = {.lex_state = 1074}, + [4177] = {.lex_state = 1074}, + [4178] = {.lex_state = 1080}, + [4179] = {.lex_state = 1052}, + [4180] = {.lex_state = 995}, + [4181] = {.lex_state = 1082}, + [4182] = {.lex_state = 1072}, + [4183] = {.lex_state = 1076}, + [4184] = {.lex_state = 89}, + [4185] = {.lex_state = 997}, + [4186] = {.lex_state = 1082}, + [4187] = {.lex_state = 1076}, + [4188] = {.lex_state = 1080}, + [4189] = {.lex_state = 1065}, + [4190] = {.lex_state = 1080}, + [4191] = {.lex_state = 1079}, + [4192] = {.lex_state = 1076}, + [4193] = {.lex_state = 1072}, + [4194] = {.lex_state = 995}, + [4195] = {.lex_state = 1076}, + [4196] = {.lex_state = 995}, + [4197] = {.lex_state = 995}, + [4198] = {.lex_state = 1082}, + [4199] = {.lex_state = 1076}, + [4200] = {.lex_state = 1082}, + [4201] = {.lex_state = 1082}, + [4202] = {.lex_state = 997}, + [4203] = {.lex_state = 1062}, + [4204] = {.lex_state = 997}, + [4205] = {.lex_state = 1082}, + [4206] = {.lex_state = 1062}, + [4207] = {.lex_state = 995}, + [4208] = {.lex_state = 115}, + [4209] = {.lex_state = 995}, + [4210] = {.lex_state = 1076}, + [4211] = {.lex_state = 995}, + [4212] = {.lex_state = 995}, + [4213] = {.lex_state = 1076}, + [4214] = {.lex_state = 995}, + [4215] = {.lex_state = 995}, + [4216] = {.lex_state = 1081}, + [4217] = {.lex_state = 995}, + [4218] = {.lex_state = 995}, + [4219] = {.lex_state = 1082}, + [4220] = {.lex_state = 995}, + [4221] = {.lex_state = 90}, + [4222] = {.lex_state = 997}, + [4223] = {.lex_state = 997}, + [4224] = {.lex_state = 997}, + [4225] = {.lex_state = 1076}, + [4226] = {.lex_state = 1062}, + [4227] = {.lex_state = 1081}, + [4228] = {.lex_state = 1082}, + [4229] = {.lex_state = 1082}, + [4230] = {.lex_state = 1082}, + [4231] = {.lex_state = 1082}, + [4232] = {.lex_state = 1062}, + [4233] = {.lex_state = 89}, + [4234] = {.lex_state = 1062}, + [4235] = {.lex_state = 995}, + [4236] = {.lex_state = 1086}, + [4237] = {.lex_state = 1062}, + [4238] = {.lex_state = 997}, + [4239] = {.lex_state = 997}, + [4240] = {.lex_state = 87}, + [4241] = {.lex_state = 1079}, + [4242] = {.lex_state = 995}, + [4243] = {.lex_state = 1076}, + [4244] = {.lex_state = 995}, + [4245] = {.lex_state = 995}, + [4246] = {.lex_state = 995}, + [4247] = {.lex_state = 1065}, + [4248] = {.lex_state = 1084}, + [4249] = {.lex_state = 1082}, + [4250] = {.lex_state = 995}, + [4251] = {.lex_state = 995}, + [4252] = {.lex_state = 995}, + [4253] = {.lex_state = 87}, + [4254] = {.lex_state = 995}, + [4255] = {.lex_state = 91}, + [4256] = {.lex_state = 95}, + [4257] = {.lex_state = 995}, + [4258] = {.lex_state = 995}, + [4259] = {.lex_state = 995}, + [4260] = {.lex_state = 1076}, + [4261] = {.lex_state = 995}, + [4262] = {.lex_state = 995}, + [4263] = {.lex_state = 995}, + [4264] = {.lex_state = 995}, + [4265] = {.lex_state = 995}, + [4266] = {.lex_state = 995}, + [4267] = {.lex_state = 995}, + [4268] = {.lex_state = 995}, + [4269] = {.lex_state = 995}, + [4270] = {.lex_state = 995}, + [4271] = {.lex_state = 995}, + [4272] = {.lex_state = 995}, + [4273] = {.lex_state = 995}, + [4274] = {.lex_state = 1057}, + [4275] = {.lex_state = 93}, + [4276] = {.lex_state = 89}, + [4277] = {.lex_state = 1083}, + [4278] = {.lex_state = 1062}, + [4279] = {.lex_state = 1062}, + [4280] = {.lex_state = 89}, + [4281] = {.lex_state = 88}, + [4282] = {.lex_state = 101}, + [4283] = {.lex_state = 1083}, + [4284] = {.lex_state = 1086}, + [4285] = {.lex_state = 995}, + [4286] = {.lex_state = 1057}, + [4287] = {.lex_state = 1081}, + [4288] = {.lex_state = 1088}, + [4289] = {.lex_state = 997}, + [4290] = {.lex_state = 995}, + [4291] = {.lex_state = 997}, + [4292] = {.lex_state = 1083}, + [4293] = {.lex_state = 1088}, + [4294] = {.lex_state = 1083}, + [4295] = {.lex_state = 997}, + [4296] = {.lex_state = 997}, + [4297] = {.lex_state = 97}, + [4298] = {.lex_state = 1084}, + [4299] = {.lex_state = 89}, + [4300] = {.lex_state = 997}, + [4301] = {.lex_state = 1076}, + [4302] = {.lex_state = 995}, + [4303] = {.lex_state = 1081}, + [4304] = {.lex_state = 997}, + [4305] = {.lex_state = 115}, + [4306] = {.lex_state = 88}, + [4307] = {.lex_state = 1083}, + [4308] = {.lex_state = 1083}, + [4309] = {.lex_state = 96}, + [4310] = {.lex_state = 96}, + [4311] = {.lex_state = 1057}, + [4312] = {.lex_state = 1057}, + [4313] = {.lex_state = 1057}, + [4314] = {.lex_state = 89}, + [4315] = {.lex_state = 997}, + [4316] = {.lex_state = 995}, + [4317] = {.lex_state = 995}, + [4318] = {.lex_state = 995}, + [4319] = {.lex_state = 1088}, + [4320] = {.lex_state = 1062}, + [4321] = {.lex_state = 1090}, + [4322] = {.lex_state = 995}, + [4323] = {.lex_state = 1085}, + [4324] = {.lex_state = 997}, + [4325] = {.lex_state = 1090}, + [4326] = {.lex_state = 1088}, + [4327] = {.lex_state = 1062}, + [4328] = {.lex_state = 1062}, + [4329] = {.lex_state = 1085}, + [4330] = {.lex_state = 1117}, + [4331] = {.lex_state = 995}, + [4332] = {.lex_state = 1083}, + [4333] = {.lex_state = 1085}, + [4334] = {.lex_state = 1090}, + [4335] = {.lex_state = 1085}, + [4336] = {.lex_state = 1090}, + [4337] = {.lex_state = 1117}, + [4338] = {.lex_state = 995}, + [4339] = {.lex_state = 995}, + [4340] = {.lex_state = 1090}, + [4341] = {.lex_state = 1085}, + [4342] = {.lex_state = 995}, + [4343] = {.lex_state = 995}, + [4344] = {.lex_state = 995}, + [4345] = {.lex_state = 995}, + [4346] = {.lex_state = 1085}, + [4347] = {.lex_state = 102}, + [4348] = {.lex_state = 1090}, + [4349] = {.lex_state = 995}, + [4350] = {.lex_state = 1085}, + [4351] = {.lex_state = 1090}, + [4352] = {.lex_state = 995}, + [4353] = {.lex_state = 995}, + [4354] = {.lex_state = 1085}, + [4355] = {.lex_state = 1085}, + [4356] = {.lex_state = 995}, + [4357] = {.lex_state = 995}, + [4358] = {.lex_state = 995}, + [4359] = {.lex_state = 995}, + [4360] = {.lex_state = 995}, + [4361] = {.lex_state = 1057}, + [4362] = {.lex_state = 997}, + [4363] = {.lex_state = 1083}, + [4364] = {.lex_state = 1057}, + [4365] = {.lex_state = 995}, + [4366] = {.lex_state = 995}, + [4367] = {.lex_state = 995}, + [4368] = {.lex_state = 1117}, + [4369] = {.lex_state = 1085}, + [4370] = {.lex_state = 54}, + [4371] = {.lex_state = 995}, + [4372] = {.lex_state = 1085}, + [4373] = {.lex_state = 1117}, + [4374] = {.lex_state = 98}, + [4375] = {.lex_state = 1085}, + [4376] = {.lex_state = 1117}, + [4377] = {.lex_state = 1085}, + [4378] = {.lex_state = 1083}, + [4379] = {.lex_state = 995}, + [4380] = {.lex_state = 1085}, + [4381] = {.lex_state = 995}, + [4382] = {.lex_state = 1085}, + [4383] = {.lex_state = 1085}, + [4384] = {.lex_state = 997}, + [4385] = {.lex_state = 103}, + [4386] = {.lex_state = 995}, + [4387] = {.lex_state = 995}, + [4388] = {.lex_state = 1085}, + [4389] = {.lex_state = 995}, + [4390] = {.lex_state = 1085}, + [4391] = {.lex_state = 1085}, + [4392] = {.lex_state = 1057}, + [4393] = {.lex_state = 995}, + [4394] = {.lex_state = 995}, + [4395] = {.lex_state = 54}, + [4396] = {.lex_state = 1083}, + [4397] = {.lex_state = 995}, + [4398] = {.lex_state = 995}, + [4399] = {.lex_state = 995}, + [4400] = {.lex_state = 995}, + [4401] = {.lex_state = 1085}, + [4402] = {.lex_state = 995}, + [4403] = {.lex_state = 1085}, + [4404] = {.lex_state = 97}, + [4405] = {.lex_state = 997}, + [4406] = {.lex_state = 995}, + [4407] = {.lex_state = 1057}, + [4408] = {.lex_state = 97}, + [4409] = {.lex_state = 995}, + [4410] = {.lex_state = 1083}, + [4411] = {.lex_state = 97}, + [4412] = {.lex_state = 1085}, + [4413] = {.lex_state = 1057}, + [4414] = {.lex_state = 1085}, + [4415] = {.lex_state = 97}, + [4416] = {.lex_state = 1087}, + [4417] = {.lex_state = 995}, + [4418] = {.lex_state = 997}, + [4419] = {.lex_state = 997}, + [4420] = {.lex_state = 997}, + [4421] = {.lex_state = 997}, + [4422] = {.lex_state = 995}, + [4423] = {.lex_state = 995}, + [4424] = {.lex_state = 995}, + [4425] = {.lex_state = 1085}, + [4426] = {.lex_state = 1085}, + [4427] = {.lex_state = 102}, + [4428] = {.lex_state = 1090}, + [4429] = {.lex_state = 92}, + [4430] = {.lex_state = 1083}, + [4431] = {.lex_state = 997}, + [4432] = {.lex_state = 1085}, + [4433] = {.lex_state = 1085}, + [4434] = {.lex_state = 1085}, + [4435] = {.lex_state = 995}, + [4436] = {.lex_state = 1090}, + [4437] = {.lex_state = 1085}, + [4438] = {.lex_state = 1085}, + [4439] = {.lex_state = 995}, + [4440] = {.lex_state = 1085}, + [4441] = {.lex_state = 1068}, + [4442] = {.lex_state = 1090}, + [4443] = {.lex_state = 1087}, + [4444] = {.lex_state = 1090}, + [4445] = {.lex_state = 1085}, + [4446] = {.lex_state = 94}, + [4447] = {.lex_state = 1090}, + [4448] = {.lex_state = 1090}, + [4449] = {.lex_state = 1090}, + [4450] = {.lex_state = 1117}, + [4451] = {.lex_state = 1068}, + [4452] = {.lex_state = 1090}, + [4453] = {.lex_state = 1085}, + [4454] = {.lex_state = 995}, + [4455] = {.lex_state = 54}, + [4456] = {.lex_state = 995}, + [4457] = {.lex_state = 54}, + [4458] = {.lex_state = 1085}, + [4459] = {.lex_state = 1085}, + [4460] = {.lex_state = 1068}, + [4461] = {.lex_state = 1085}, + [4462] = {.lex_state = 1085}, + [4463] = {.lex_state = 1068}, + [4464] = {.lex_state = 1085}, + [4465] = {.lex_state = 1068}, + [4466] = {.lex_state = 1085}, + [4467] = {.lex_state = 103}, + [4468] = {.lex_state = 1085}, + [4469] = {.lex_state = 1085}, + [4470] = {.lex_state = 99}, + [4471] = {.lex_state = 1085}, + [4472] = {.lex_state = 99}, + [4473] = {.lex_state = 1068}, + [4474] = {.lex_state = 1068}, + [4475] = {.lex_state = 103}, + [4476] = {.lex_state = 1085}, + [4477] = {.lex_state = 104}, + [4478] = {.lex_state = 1085}, + [4479] = {.lex_state = 103}, + [4480] = {.lex_state = 1085}, + [4481] = {.lex_state = 995}, + [4482] = {.lex_state = 995}, + [4483] = {.lex_state = 995}, + [4484] = {.lex_state = 1085}, + [4485] = {.lex_state = 1117}, + [4486] = {.lex_state = 103}, + [4487] = {.lex_state = 995}, + [4488] = {.lex_state = 1085}, + [4489] = {.lex_state = 1085}, + [4490] = {.lex_state = 995}, + [4491] = {.lex_state = 1085}, + [4492] = {.lex_state = 1085}, + [4493] = {.lex_state = 1085}, + [4494] = {.lex_state = 995}, + [4495] = {.lex_state = 1085}, + [4496] = {.lex_state = 1085}, + [4497] = {.lex_state = 1085}, + [4498] = {.lex_state = 1117}, + [4499] = {.lex_state = 1117}, + [4500] = {.lex_state = 1085}, + [4501] = {.lex_state = 1090}, + [4502] = {.lex_state = 1085}, + [4503] = {.lex_state = 1085}, + [4504] = {.lex_state = 54}, + [4505] = {.lex_state = 1089}, + [4506] = {.lex_state = 1085}, + [4507] = {.lex_state = 1062}, + [4508] = {.lex_state = 1085}, + [4509] = {.lex_state = 54}, + [4510] = {.lex_state = 54}, + [4511] = {.lex_state = 1085}, + [4512] = {.lex_state = 1062}, + [4513] = {.lex_state = 1062}, + [4514] = {.lex_state = 995}, + [4515] = {.lex_state = 1117}, + [4516] = {.lex_state = 1090}, + [4517] = {.lex_state = 1068}, + [4518] = {.lex_state = 1089}, + [4519] = {.lex_state = 1090}, + [4520] = {.lex_state = 1085}, + [4521] = {.lex_state = 1068}, + [4522] = {.lex_state = 1085}, + [4523] = {.lex_state = 1068}, + [4524] = {.lex_state = 1090}, + [4525] = {.lex_state = 1018}, + [4526] = {.lex_state = 1018}, + [4527] = {.lex_state = 1018}, + [4528] = {.lex_state = 1018}, + [4529] = {.lex_state = 1085}, + [4530] = {.lex_state = 1018}, + [4531] = {.lex_state = 1018}, + [4532] = {.lex_state = 1018}, + [4533] = {.lex_state = 1018}, + [4534] = {.lex_state = 1018}, + [4535] = {.lex_state = 1018}, + [4536] = {.lex_state = 1018}, + [4537] = {.lex_state = 1018}, + [4538] = {.lex_state = 1018}, + [4539] = {.lex_state = 1018}, + [4540] = {.lex_state = 1018}, + [4541] = {.lex_state = 1018}, + [4542] = {.lex_state = 1018}, + [4543] = {.lex_state = 1018}, + [4544] = {.lex_state = 1018}, + [4545] = {.lex_state = 1018}, + [4546] = {.lex_state = 1018}, + [4547] = {.lex_state = 1018}, + [4548] = {.lex_state = 1018}, + [4549] = {.lex_state = 54}, + [4550] = {.lex_state = 1018}, + [4551] = {.lex_state = 1018}, + [4552] = {.lex_state = 1018}, + [4553] = {.lex_state = 1018}, + [4554] = {.lex_state = 54}, + [4555] = {.lex_state = 1018}, + [4556] = {.lex_state = 54}, + [4557] = {.lex_state = 1052}, + [4558] = {.lex_state = 1018}, + [4559] = {.lex_state = 100}, + [4560] = {.lex_state = 995}, + [4561] = {.lex_state = 1018}, + [4562] = {.lex_state = 1111}, + [4563] = {.lex_state = 1018}, + [4564] = {.lex_state = 1018}, + [4565] = {.lex_state = 1018}, + [4566] = {.lex_state = 105}, + [4567] = {.lex_state = 100}, + [4568] = {.lex_state = 1018}, + [4569] = {.lex_state = 1018}, + [4570] = {.lex_state = 1018}, + [4571] = {.lex_state = 100}, + [4572] = {.lex_state = 1018}, + [4573] = {.lex_state = 1018}, + [4574] = {.lex_state = 100}, + [4575] = {.lex_state = 100}, + [4576] = {.lex_state = 1018}, + [4577] = {.lex_state = 1018}, + [4578] = {.lex_state = 1068}, + [4579] = {.lex_state = 1018}, + [4580] = {.lex_state = 995}, + [4581] = {.lex_state = 995}, + [4582] = {.lex_state = 1090}, + [4583] = {.lex_state = 1068}, + [4584] = {.lex_state = 1018}, + [4585] = {.lex_state = 1018}, + [4586] = {.lex_state = 1018}, + [4587] = {.lex_state = 1018}, + [4588] = {.lex_state = 1018}, + [4589] = {.lex_state = 1018}, + [4590] = {.lex_state = 1018}, + [4591] = {.lex_state = 1018}, + [4592] = {.lex_state = 1018}, + [4593] = {.lex_state = 1068}, + [4594] = {.lex_state = 1018}, + [4595] = {.lex_state = 105}, + [4596] = {.lex_state = 1018}, + [4597] = {.lex_state = 1018}, + [4598] = {.lex_state = 1018}, + [4599] = {.lex_state = 1119}, + [4600] = {.lex_state = 1018}, + [4601] = {.lex_state = 1018}, + [4602] = {.lex_state = 1018}, + [4603] = {.lex_state = 1018}, + [4604] = {.lex_state = 1018}, + [4605] = {.lex_state = 1018}, + [4606] = {.lex_state = 1018}, + [4607] = {.lex_state = 1018}, + [4608] = {.lex_state = 1018}, + [4609] = {.lex_state = 1018}, + [4610] = {.lex_state = 1018}, + [4611] = {.lex_state = 1018}, + [4612] = {.lex_state = 1018}, + [4613] = {.lex_state = 1018}, + [4614] = {.lex_state = 1091}, + [4615] = {.lex_state = 1018}, + [4616] = {.lex_state = 1018}, + [4617] = {.lex_state = 1018}, + [4618] = {.lex_state = 1018}, + [4619] = {.lex_state = 1018}, + [4620] = {.lex_state = 1018}, + [4621] = {.lex_state = 1018}, + [4622] = {.lex_state = 1018}, + [4623] = {.lex_state = 1085}, + [4624] = {.lex_state = 1018}, + [4625] = {.lex_state = 1018}, + [4626] = {.lex_state = 1018}, + [4627] = {.lex_state = 1018}, + [4628] = {.lex_state = 1018}, + [4629] = {.lex_state = 1018}, + [4630] = {.lex_state = 1018}, + [4631] = {.lex_state = 1018}, + [4632] = {.lex_state = 1018}, + [4633] = {.lex_state = 1018}, + [4634] = {.lex_state = 1018}, + [4635] = {.lex_state = 1018}, + [4636] = {.lex_state = 1018}, + [4637] = {.lex_state = 1119}, + [4638] = {.lex_state = 1068}, + [4639] = {.lex_state = 1091}, + [4640] = {.lex_state = 1018}, + [4641] = {.lex_state = 1091}, + [4642] = {.lex_state = 1018}, + [4643] = {.lex_state = 1018}, + [4644] = {.lex_state = 1018}, + [4645] = {.lex_state = 1018}, + [4646] = {.lex_state = 1018}, + [4647] = {.lex_state = 1091}, + [4648] = {.lex_state = 1091}, + [4649] = {.lex_state = 1018}, + [4650] = {.lex_state = 1018}, + [4651] = {.lex_state = 1052}, + [4652] = {.lex_state = 1052}, + [4653] = {.lex_state = 1091}, + [4654] = {.lex_state = 1018}, + [4655] = {.lex_state = 1018}, + [4656] = {.lex_state = 1052}, + [4657] = {.lex_state = 1052}, + [4658] = {.lex_state = 1018}, + [4659] = {.lex_state = 1018}, + [4660] = {.lex_state = 1110}, + [4661] = {.lex_state = 1018}, + [4662] = {.lex_state = 1110}, + [4663] = {.lex_state = 54}, + [4664] = {.lex_state = 54}, + [4665] = {.lex_state = 1018}, + [4666] = {.lex_state = 100}, + [4667] = {.lex_state = 1119}, + [4668] = {.lex_state = 1018}, + [4669] = {.lex_state = 1119}, + [4670] = {.lex_state = 1018}, + [4671] = {.lex_state = 1091}, + [4672] = {.lex_state = 1018}, + [4673] = {.lex_state = 1018}, + [4674] = {.lex_state = 1018}, + [4675] = {.lex_state = 1068}, + [4676] = {.lex_state = 1018}, + [4677] = {.lex_state = 1068}, + [4678] = {.lex_state = 1018}, + [4679] = {.lex_state = 1119}, + [4680] = {.lex_state = 1018}, + [4681] = {.lex_state = 1085}, + [4682] = {.lex_state = 1089}, + [4683] = {.lex_state = 1018}, + [4684] = {.lex_state = 1018}, + [4685] = {.lex_state = 1091}, + [4686] = {.lex_state = 1018}, + [4687] = {.lex_state = 1018}, + [4688] = {.lex_state = 1110}, + [4689] = {.lex_state = 1110}, + [4690] = {.lex_state = 1018}, + [4691] = {.lex_state = 1068}, + [4692] = {.lex_state = 1018}, + [4693] = {.lex_state = 995}, + [4694] = {.lex_state = 1018}, + [4695] = {.lex_state = 1091}, + [4696] = {.lex_state = 1018}, + [4697] = {.lex_state = 1110}, + [4698] = {.lex_state = 1018}, + [4699] = {.lex_state = 1068}, + [4700] = {.lex_state = 1068}, + [4701] = {.lex_state = 1068}, + [4702] = {.lex_state = 1018}, + [4703] = {.lex_state = 1018}, + [4704] = {.lex_state = 1089}, + [4705] = {.lex_state = 1018}, + [4706] = {.lex_state = 1018}, + [4707] = {.lex_state = 1018}, + [4708] = {.lex_state = 1018}, + [4709] = {.lex_state = 1018}, + [4710] = {.lex_state = 1018}, + [4711] = {.lex_state = 1057}, + [4712] = {.lex_state = 1018}, + [4713] = {.lex_state = 119}, + [4714] = {.lex_state = 1026}, + [4715] = {.lex_state = 119}, + [4716] = {.lex_state = 119}, + [4717] = {.lex_state = 119}, + [4718] = {.lex_state = 1091}, + [4719] = {.lex_state = 1018}, + [4720] = {.lex_state = 54}, + [4721] = {.lex_state = 54}, + [4722] = {.lex_state = 1018}, + [4723] = {.lex_state = 119}, + [4724] = {.lex_state = 1018}, + [4725] = {.lex_state = 1018}, + [4726] = {.lex_state = 1018}, + [4727] = {.lex_state = 1018}, + [4728] = {.lex_state = 1018}, + [4729] = {.lex_state = 1018}, + [4730] = {.lex_state = 1018}, + [4731] = {.lex_state = 1018}, + [4732] = {.lex_state = 1018}, + [4733] = {.lex_state = 1018}, + [4734] = {.lex_state = 1018}, + [4735] = {.lex_state = 1018}, + [4736] = {.lex_state = 119}, + [4737] = {.lex_state = 1018}, + [4738] = {.lex_state = 119}, + [4739] = {.lex_state = 1018}, + [4740] = {.lex_state = 1018}, + [4741] = {.lex_state = 1018}, + [4742] = {.lex_state = 1018}, + [4743] = {.lex_state = 1018}, + [4744] = {.lex_state = 119}, + [4745] = {.lex_state = 429}, + [4746] = {.lex_state = 54}, + [4747] = {.lex_state = 54}, + [4748] = {.lex_state = 119}, + [4749] = {.lex_state = 995}, + [4750] = {.lex_state = 995}, + [4751] = {.lex_state = 1091}, + [4752] = {.lex_state = 1091}, + [4753] = {.lex_state = 1018}, + [4754] = {.lex_state = 1018}, + [4755] = {.lex_state = 1110}, + [4756] = {.lex_state = 1020}, + [4757] = {.lex_state = 1018}, + [4758] = {.lex_state = 1057}, + [4759] = {.lex_state = 1119}, + [4760] = {.lex_state = 1093}, + [4761] = {.lex_state = 1091}, + [4762] = {.lex_state = 1018}, + [4763] = {.lex_state = 1094}, + [4764] = {.lex_state = 1052}, + [4765] = {.lex_state = 1052}, + [4766] = {.lex_state = 429}, + [4767] = {.lex_state = 1020}, + [4768] = {.lex_state = 429}, + [4769] = {.lex_state = 54}, + [4770] = {.lex_state = 1111}, + [4771] = {.lex_state = 1018}, + [4772] = {.lex_state = 1018}, + [4773] = {.lex_state = 113}, + [4774] = {.lex_state = 1091}, + [4775] = {.lex_state = 119}, + [4776] = {.lex_state = 1018}, + [4777] = {.lex_state = 1110}, + [4778] = {.lex_state = 1091}, + [4779] = {.lex_state = 1052}, + [4780] = {.lex_state = 54}, + [4781] = {.lex_state = 119}, + [4782] = {.lex_state = 54}, + [4783] = {.lex_state = 1110}, + [4784] = {.lex_state = 1110}, + [4785] = {.lex_state = 119}, + [4786] = {.lex_state = 54}, + [4787] = {.lex_state = 54}, + [4788] = {.lex_state = 1091}, + [4789] = {.lex_state = 54}, + [4790] = {.lex_state = 1091}, + [4791] = {.lex_state = 106}, + [4792] = {.lex_state = 1085}, + [4793] = {.lex_state = 119}, + [4794] = {.lex_state = 107}, + [4795] = {.lex_state = 119}, + [4796] = {.lex_state = 429}, + [4797] = {.lex_state = 1018}, + [4798] = {.lex_state = 54}, + [4799] = {.lex_state = 54}, + [4800] = {.lex_state = 54}, + [4801] = {.lex_state = 1119}, + [4802] = {.lex_state = 1018}, + [4803] = {.lex_state = 1119}, + [4804] = {.lex_state = 1020}, + [4805] = {.lex_state = 1018}, + [4806] = {.lex_state = 1052}, + [4807] = {.lex_state = 106}, + [4808] = {.lex_state = 1018}, + [4809] = {.lex_state = 1018}, + [4810] = {.lex_state = 1119}, + [4811] = {.lex_state = 1119}, + [4812] = {.lex_state = 119}, + [4813] = {.lex_state = 106}, + [4814] = {.lex_state = 1018}, + [4815] = {.lex_state = 1085}, + [4816] = {.lex_state = 1018}, + [4817] = {.lex_state = 1091}, + [4818] = {.lex_state = 119}, + [4819] = {.lex_state = 1052}, + [4820] = {.lex_state = 106}, + [4821] = {.lex_state = 1026}, + [4822] = {.lex_state = 1020}, + [4823] = {.lex_state = 106}, + [4824] = {.lex_state = 1018}, + [4825] = {.lex_state = 1020}, + [4826] = {.lex_state = 54}, + [4827] = {.lex_state = 119}, + [4828] = {.lex_state = 54}, + [4829] = {.lex_state = 1052}, + [4830] = {.lex_state = 995}, + [4831] = {.lex_state = 54}, + [4832] = {.lex_state = 54}, + [4833] = {.lex_state = 119}, + [4834] = {.lex_state = 170}, + [4835] = {.lex_state = 119}, + [4836] = {.lex_state = 119}, + [4837] = {.lex_state = 54}, + [4838] = {.lex_state = 54}, + [4839] = {.lex_state = 1018}, + [4840] = {.lex_state = 119}, + [4841] = {.lex_state = 1052}, + [4842] = {.lex_state = 1057}, + [4843] = {.lex_state = 1057}, + [4844] = {.lex_state = 106}, + [4845] = {.lex_state = 1018}, + [4846] = {.lex_state = 1085}, + [4847] = {.lex_state = 1085}, + [4848] = {.lex_state = 1110}, + [4849] = {.lex_state = 1018}, + [4850] = {.lex_state = 1018}, + [4851] = {.lex_state = 1052}, + [4852] = {.lex_state = 1018}, + [4853] = {.lex_state = 1091}, + [4854] = {.lex_state = 1018}, + [4855] = {.lex_state = 1018}, + [4856] = {.lex_state = 119}, + [4857] = {.lex_state = 170}, + [4858] = {.lex_state = 119}, + [4859] = {.lex_state = 54}, + [4860] = {.lex_state = 1020}, + [4861] = {.lex_state = 1026}, + [4862] = {.lex_state = 1020}, + [4863] = {.lex_state = 402}, + [4864] = {.lex_state = 1020}, + [4865] = {.lex_state = 1057}, + [4866] = {.lex_state = 1020}, + [4867] = {.lex_state = 1018}, + [4868] = {.lex_state = 402}, + [4869] = {.lex_state = 1018}, + [4870] = {.lex_state = 1091}, + [4871] = {.lex_state = 402}, + [4872] = {.lex_state = 1018}, + [4873] = {.lex_state = 1020}, + [4874] = {.lex_state = 108}, + [4875] = {.lex_state = 1020}, + [4876] = {.lex_state = 1020}, + [4877] = {.lex_state = 1020}, + [4878] = {.lex_state = 1020}, + [4879] = {.lex_state = 1085}, + [4880] = {.lex_state = 1020}, + [4881] = {.lex_state = 1020}, + [4882] = {.lex_state = 1018}, + [4883] = {.lex_state = 1018}, + [4884] = {.lex_state = 1018}, + [4885] = {.lex_state = 1020}, + [4886] = {.lex_state = 1018}, + [4887] = {.lex_state = 1085}, + [4888] = {.lex_state = 1020}, + [4889] = {.lex_state = 1020}, + [4890] = {.lex_state = 1020}, + [4891] = {.lex_state = 1052}, + [4892] = {.lex_state = 108}, + [4893] = {.lex_state = 1020}, + [4894] = {.lex_state = 1020}, + [4895] = {.lex_state = 1020}, + [4896] = {.lex_state = 1026}, + [4897] = {.lex_state = 1020}, + [4898] = {.lex_state = 1020}, + [4899] = {.lex_state = 1020}, + [4900] = {.lex_state = 1095}, + [4901] = {.lex_state = 1018}, + [4902] = {.lex_state = 1020}, + [4903] = {.lex_state = 1020}, + [4904] = {.lex_state = 1018}, + [4905] = {.lex_state = 431}, + [4906] = {.lex_state = 54}, + [4907] = {.lex_state = 1020}, + [4908] = {.lex_state = 1020}, + [4909] = {.lex_state = 1020}, + [4910] = {.lex_state = 1052}, + [4911] = {.lex_state = 1018}, + [4912] = {.lex_state = 1020}, + [4913] = {.lex_state = 1020}, + [4914] = {.lex_state = 1020}, + [4915] = {.lex_state = 1020}, + [4916] = {.lex_state = 1018}, + [4917] = {.lex_state = 1057}, + [4918] = {.lex_state = 1095}, + [4919] = {.lex_state = 119}, + [4920] = {.lex_state = 119}, + [4921] = {.lex_state = 119}, + [4922] = {.lex_state = 1020}, + [4923] = {.lex_state = 119}, + [4924] = {.lex_state = 1020}, + [4925] = {.lex_state = 1020}, + [4926] = {.lex_state = 1018}, + [4927] = {.lex_state = 1020}, + [4928] = {.lex_state = 1020}, + [4929] = {.lex_state = 995}, + [4930] = {.lex_state = 119}, + [4931] = {.lex_state = 54}, + [4932] = {.lex_state = 1020}, + [4933] = {.lex_state = 1020}, + [4934] = {.lex_state = 1020}, + [4935] = {.lex_state = 1018}, + [4936] = {.lex_state = 1085}, + [4937] = {.lex_state = 1020}, + [4938] = {.lex_state = 54}, + [4939] = {.lex_state = 54}, + [4940] = {.lex_state = 1020}, + [4941] = {.lex_state = 1020}, + [4942] = {.lex_state = 1052}, + [4943] = {.lex_state = 1026}, + [4944] = {.lex_state = 114}, + [4945] = {.lex_state = 1020}, + [4946] = {.lex_state = 1020}, + [4947] = {.lex_state = 1020}, + [4948] = {.lex_state = 1020}, + [4949] = {.lex_state = 1020}, + [4950] = {.lex_state = 1020}, + [4951] = {.lex_state = 1020}, + [4952] = {.lex_state = 1026}, + [4953] = {.lex_state = 1020}, + [4954] = {.lex_state = 995}, + [4955] = {.lex_state = 54}, + [4956] = {.lex_state = 1020}, + [4957] = {.lex_state = 1020}, + [4958] = {.lex_state = 1020}, + [4959] = {.lex_state = 995}, + [4960] = {.lex_state = 1020}, + [4961] = {.lex_state = 995}, + [4962] = {.lex_state = 1020}, + [4963] = {.lex_state = 1020}, + [4964] = {.lex_state = 1020}, + [4965] = {.lex_state = 170}, + [4966] = {.lex_state = 1018}, + [4967] = {.lex_state = 1057}, + [4968] = {.lex_state = 1018}, + [4969] = {.lex_state = 54}, + [4970] = {.lex_state = 1093}, + [4971] = {.lex_state = 1020}, + [4972] = {.lex_state = 1020}, + [4973] = {.lex_state = 1020}, + [4974] = {.lex_state = 170}, + [4975] = {.lex_state = 1018}, + [4976] = {.lex_state = 1020}, + [4977] = {.lex_state = 1018}, + [4978] = {.lex_state = 1018}, + [4979] = {.lex_state = 1020}, + [4980] = {.lex_state = 1020}, + [4981] = {.lex_state = 1020}, + [4982] = {.lex_state = 1020}, + [4983] = {.lex_state = 1020}, + [4984] = {.lex_state = 54}, + [4985] = {.lex_state = 1020}, + [4986] = {.lex_state = 1018}, + [4987] = {.lex_state = 1020}, + [4988] = {.lex_state = 1020}, + [4989] = {.lex_state = 1057}, + [4990] = {.lex_state = 1020}, + [4991] = {.lex_state = 1020}, + [4992] = {.lex_state = 1020}, + [4993] = {.lex_state = 1020}, + [4994] = {.lex_state = 1020}, + [4995] = {.lex_state = 54}, + [4996] = {.lex_state = 1020}, + [4997] = {.lex_state = 110}, + [4998] = {.lex_state = 1020}, + [4999] = {.lex_state = 1020}, + [5000] = {.lex_state = 1020}, + [5001] = {.lex_state = 1020}, + [5002] = {.lex_state = 1020}, + [5003] = {.lex_state = 1018}, + [5004] = {.lex_state = 1018}, + [5005] = {.lex_state = 170}, + [5006] = {.lex_state = 1018}, + [5007] = {.lex_state = 54}, + [5008] = {.lex_state = 54}, + [5009] = {.lex_state = 1094}, + [5010] = {.lex_state = 1020}, + [5011] = {.lex_state = 1020}, + [5012] = {.lex_state = 54}, + [5013] = {.lex_state = 54}, + [5014] = {.lex_state = 1020}, + [5015] = {.lex_state = 1020}, + [5016] = {.lex_state = 1020}, + [5017] = {.lex_state = 1020}, + [5018] = {.lex_state = 1020}, + [5019] = {.lex_state = 1020}, + [5020] = {.lex_state = 436}, + [5021] = {.lex_state = 54}, + [5022] = {.lex_state = 1020}, + [5023] = {.lex_state = 1020}, + [5024] = {.lex_state = 54}, + [5025] = {.lex_state = 1020}, + [5026] = {.lex_state = 1020}, + [5027] = {.lex_state = 1020}, + [5028] = {.lex_state = 54}, + [5029] = {.lex_state = 1020}, + [5030] = {.lex_state = 54}, + [5031] = {.lex_state = 1095}, + [5032] = {.lex_state = 1020}, + [5033] = {.lex_state = 148}, + [5034] = {.lex_state = 1020}, + [5035] = {.lex_state = 1020}, + [5036] = {.lex_state = 1020}, + [5037] = {.lex_state = 438}, + [5038] = {.lex_state = 438}, + [5039] = {.lex_state = 109}, + [5040] = {.lex_state = 54}, + [5041] = {.lex_state = 1020}, + [5042] = {.lex_state = 1026}, + [5043] = {.lex_state = 109}, + [5044] = {.lex_state = 1026}, + [5045] = {.lex_state = 54}, + [5046] = {.lex_state = 109}, + [5047] = {.lex_state = 54}, + [5048] = {.lex_state = 54}, + [5049] = {.lex_state = 54}, + [5050] = {.lex_state = 109}, + [5051] = {.lex_state = 54}, + [5052] = {.lex_state = 1020}, + [5053] = {.lex_state = 1026}, + [5054] = {.lex_state = 1096}, + [5055] = {.lex_state = 148}, + [5056] = {.lex_state = 1026}, + [5057] = {.lex_state = 1020}, + [5058] = {.lex_state = 109}, + [5059] = {.lex_state = 148}, + [5060] = {.lex_state = 109}, + [5061] = {.lex_state = 1020}, + [5062] = {.lex_state = 1096}, + [5063] = {.lex_state = 1020}, + [5064] = {.lex_state = 1026}, + [5065] = {.lex_state = 1026}, + [5066] = {.lex_state = 1020}, + [5067] = {.lex_state = 1020}, + [5068] = {.lex_state = 54}, + [5069] = {.lex_state = 1018}, + [5070] = {.lex_state = 1020}, + [5071] = {.lex_state = 1020}, + [5072] = {.lex_state = 54}, + [5073] = {.lex_state = 148}, + [5074] = {.lex_state = 1026}, + [5075] = {.lex_state = 1020}, + [5076] = {.lex_state = 148}, + [5077] = {.lex_state = 109}, + [5078] = {.lex_state = 1020}, + [5079] = {.lex_state = 1020}, + [5080] = {.lex_state = 1020}, + [5081] = {.lex_state = 1096}, + [5082] = {.lex_state = 1026}, + [5083] = {.lex_state = 1026}, + [5084] = {.lex_state = 1026}, + [5085] = {.lex_state = 1020}, + [5086] = {.lex_state = 54}, + [5087] = {.lex_state = 1020}, + [5088] = {.lex_state = 432}, + [5089] = {.lex_state = 1096}, + [5090] = {.lex_state = 54}, + [5091] = {.lex_state = 1020}, + [5092] = {.lex_state = 109}, + [5093] = {.lex_state = 1020}, + [5094] = {.lex_state = 1026}, + [5095] = {.lex_state = 1026}, + [5096] = {.lex_state = 1026}, + [5097] = {.lex_state = 119}, + [5098] = {.lex_state = 119}, + [5099] = {.lex_state = 54}, + [5100] = {.lex_state = 1026}, + [5101] = {.lex_state = 1020}, + [5102] = {.lex_state = 1018}, + [5103] = {.lex_state = 1020}, + [5104] = {.lex_state = 1020}, + [5105] = {.lex_state = 1020}, + [5106] = {.lex_state = 161}, + [5107] = {.lex_state = 1020}, + [5108] = {.lex_state = 1020}, + [5109] = {.lex_state = 161}, + [5110] = {.lex_state = 1020}, + [5111] = {.lex_state = 1020}, + [5112] = {.lex_state = 1020}, + [5113] = {.lex_state = 1020}, + [5114] = {.lex_state = 1026}, + [5115] = {.lex_state = 1026}, + [5116] = {.lex_state = 1020}, + [5117] = {.lex_state = 1020}, + [5118] = {.lex_state = 1020}, + [5119] = {.lex_state = 1020}, + [5120] = {.lex_state = 1026}, + [5121] = {.lex_state = 1020}, + [5122] = {.lex_state = 1020}, + [5123] = {.lex_state = 1020}, + [5124] = {.lex_state = 1020}, + [5125] = {.lex_state = 1020}, + [5126] = {.lex_state = 1026}, + [5127] = {.lex_state = 1020}, + [5128] = {.lex_state = 1020}, + [5129] = {.lex_state = 1020}, + [5130] = {.lex_state = 1020}, + [5131] = {.lex_state = 1020}, + [5132] = {.lex_state = 1020}, + [5133] = {.lex_state = 1020}, + [5134] = {.lex_state = 1020}, + [5135] = {.lex_state = 1026}, + [5136] = {.lex_state = 1020}, + [5137] = {.lex_state = 1020}, + [5138] = {.lex_state = 54}, + [5139] = {.lex_state = 100}, + [5140] = {.lex_state = 403}, + [5141] = {.lex_state = 1020}, + [5142] = {.lex_state = 1026}, + [5143] = {.lex_state = 1020}, + [5144] = {.lex_state = 120}, + [5145] = {.lex_state = 1020}, + [5146] = {.lex_state = 100}, + [5147] = {.lex_state = 100}, + [5148] = {.lex_state = 1026}, + [5149] = {.lex_state = 1095}, + [5150] = {.lex_state = 1020}, + [5151] = {.lex_state = 111}, + [5152] = {.lex_state = 161}, + [5153] = {.lex_state = 161}, + [5154] = {.lex_state = 54}, + [5155] = {.lex_state = 403}, + [5156] = {.lex_state = 111}, + [5157] = {.lex_state = 1026}, + [5158] = {.lex_state = 1020}, + [5159] = {.lex_state = 54}, + [5160] = {.lex_state = 1020}, + [5161] = {.lex_state = 54}, + [5162] = {.lex_state = 54}, + [5163] = {.lex_state = 113}, + [5164] = {.lex_state = 54}, + [5165] = {.lex_state = 1051}, + [5166] = {.lex_state = 54}, + [5167] = {.lex_state = 54}, + [5168] = {.lex_state = 54}, + [5169] = {.lex_state = 1020}, + [5170] = {.lex_state = 100}, + [5171] = {.lex_state = 100}, + [5172] = {.lex_state = 54}, + [5173] = {.lex_state = 1096}, + [5174] = {.lex_state = 1020}, + [5175] = {.lex_state = 100}, + [5176] = {.lex_state = 436}, + [5177] = {.lex_state = 1020}, + [5178] = {.lex_state = 54}, + [5179] = {.lex_state = 1020}, + [5180] = {.lex_state = 109}, + [5181] = {.lex_state = 1020}, + [5182] = {.lex_state = 1020}, + [5183] = {.lex_state = 437}, + [5184] = {.lex_state = 54}, + [5185] = {.lex_state = 1020}, + [5186] = {.lex_state = 1020}, + [5187] = {.lex_state = 1020}, + [5188] = {.lex_state = 1020}, + [5189] = {.lex_state = 1020}, + [5190] = {.lex_state = 1026}, + [5191] = {.lex_state = 1020}, + [5192] = {.lex_state = 100}, + [5193] = {.lex_state = 1026}, + [5194] = {.lex_state = 1026}, + [5195] = {.lex_state = 1020}, + [5196] = {.lex_state = 1020}, + [5197] = {.lex_state = 439}, + [5198] = {.lex_state = 1026}, + [5199] = {.lex_state = 54}, + [5200] = {.lex_state = 1026}, + [5201] = {.lex_state = 1026}, + [5202] = {.lex_state = 54}, + [5203] = {.lex_state = 54}, + [5204] = {.lex_state = 119}, + [5205] = {.lex_state = 1026}, + [5206] = {.lex_state = 149}, + [5207] = {.lex_state = 149}, + [5208] = {.lex_state = 1096}, + [5209] = {.lex_state = 1026}, + [5210] = {.lex_state = 54}, + [5211] = {.lex_state = 54}, + [5212] = {.lex_state = 54}, + [5213] = {.lex_state = 1026}, + [5214] = {.lex_state = 54}, + [5215] = {.lex_state = 54}, + [5216] = {.lex_state = 54}, + [5217] = {.lex_state = 1026}, + [5218] = {.lex_state = 1026}, + [5219] = {.lex_state = 1026}, + [5220] = {.lex_state = 54}, + [5221] = {.lex_state = 54}, + [5222] = {.lex_state = 1026}, + [5223] = {.lex_state = 1026}, + [5224] = {.lex_state = 54}, + [5225] = {.lex_state = 1026}, + [5226] = {.lex_state = 1026}, + [5227] = {.lex_state = 54}, + [5228] = {.lex_state = 1026}, + [5229] = {.lex_state = 443}, + [5230] = {.lex_state = 4657}, + [5231] = {.lex_state = 4657}, + [5232] = {.lex_state = 1026}, + [5233] = {.lex_state = 54}, + [5234] = {.lex_state = 1026}, + [5235] = {.lex_state = 119}, + [5236] = {.lex_state = 1096}, + [5237] = {.lex_state = 1026}, + [5238] = {.lex_state = 54}, + [5239] = {.lex_state = 119}, + [5240] = {.lex_state = 1026}, + [5241] = {.lex_state = 995}, + [5242] = {.lex_state = 109}, + [5243] = {.lex_state = 4657}, + [5244] = {.lex_state = 1026}, + [5245] = {.lex_state = 54}, + [5246] = {.lex_state = 1096}, + [5247] = {.lex_state = 54}, + [5248] = {.lex_state = 54}, + [5249] = {.lex_state = 995}, + [5250] = {.lex_state = 1026}, + [5251] = {.lex_state = 444}, + [5252] = {.lex_state = 433}, + [5253] = {.lex_state = 54}, + [5254] = {.lex_state = 1026}, + [5255] = {.lex_state = 1026}, + [5256] = {.lex_state = 1026}, + [5257] = {.lex_state = 1026}, + [5258] = {.lex_state = 100}, + [5259] = {.lex_state = 54}, + [5260] = {.lex_state = 1026}, + [5261] = {.lex_state = 1026}, + [5262] = {.lex_state = 112}, + [5263] = {.lex_state = 54}, + [5264] = {.lex_state = 435}, + [5265] = {.lex_state = 1026}, + [5266] = {.lex_state = 445}, + [5267] = {.lex_state = 54}, + [5268] = {.lex_state = 54}, + [5269] = {.lex_state = 54}, + [5270] = {.lex_state = 54}, + [5271] = {.lex_state = 1026}, + [5272] = {.lex_state = 995}, + [5273] = {.lex_state = 54}, + [5274] = {.lex_state = 54}, + [5275] = {.lex_state = 54}, + [5276] = {.lex_state = 1026}, + [5277] = {.lex_state = 449}, + [5278] = {.lex_state = 1026}, + [5279] = {.lex_state = 54}, + [5280] = {.lex_state = 54}, + [5281] = {.lex_state = 112}, + [5282] = {.lex_state = 54}, + [5283] = {.lex_state = 1026}, + [5284] = {.lex_state = 54}, + [5285] = {.lex_state = 1026}, + [5286] = {.lex_state = 54}, + [5287] = {.lex_state = 54}, + [5288] = {.lex_state = 149}, + [5289] = {.lex_state = 1026}, + [5290] = {.lex_state = 54}, + [5291] = {.lex_state = 1026}, + [5292] = {.lex_state = 54}, + [5293] = {.lex_state = 54}, + [5294] = {.lex_state = 54}, + [5295] = {.lex_state = 54}, + [5296] = {.lex_state = 112}, + [5297] = {.lex_state = 436}, + [5298] = {.lex_state = 1026}, + [5299] = {.lex_state = 54}, + [5300] = {.lex_state = 54}, + [5301] = {.lex_state = 54}, + [5302] = {.lex_state = 54}, + [5303] = {.lex_state = 1026}, + [5304] = {.lex_state = 995}, + [5305] = {.lex_state = 1026}, + [5306] = {.lex_state = 1026}, + [5307] = {.lex_state = 995}, + [5308] = {.lex_state = 4657}, + [5309] = {.lex_state = 54}, + [5310] = {.lex_state = 1026}, + [5311] = {.lex_state = 54}, + [5312] = {.lex_state = 54}, + [5313] = {.lex_state = 1026}, + [5314] = {.lex_state = 181}, + [5315] = {.lex_state = 1051}, + [5316] = {.lex_state = 181}, + [5317] = {.lex_state = 181}, + [5318] = {.lex_state = 181}, + [5319] = {.lex_state = 1026}, + [5320] = {.lex_state = 54}, + [5321] = {.lex_state = 1051}, + [5322] = {.lex_state = 1026}, + [5323] = {.lex_state = 1026}, + [5324] = {.lex_state = 995}, + [5325] = {.lex_state = 1026}, + [5326] = {.lex_state = 1026}, + [5327] = {.lex_state = 54}, + [5328] = {.lex_state = 112}, + [5329] = {.lex_state = 1026}, + [5330] = {.lex_state = 112}, + [5331] = {.lex_state = 995}, + [5332] = {.lex_state = 1026}, + [5333] = {.lex_state = 54}, + [5334] = {.lex_state = 54}, + [5335] = {.lex_state = 54}, + [5336] = {.lex_state = 1026}, + [5337] = {.lex_state = 1026}, + [5338] = {.lex_state = 1026}, + [5339] = {.lex_state = 112}, + [5340] = {.lex_state = 995}, + [5341] = {.lex_state = 54}, + [5342] = {.lex_state = 54}, + [5343] = {.lex_state = 1026}, + [5344] = {.lex_state = 1026}, + [5345] = {.lex_state = 1026}, + [5346] = {.lex_state = 436}, + [5347] = {.lex_state = 1026}, + [5348] = {.lex_state = 436}, + [5349] = {.lex_state = 436}, + [5350] = {.lex_state = 995}, + [5351] = {.lex_state = 4657}, + [5352] = {.lex_state = 112}, + [5353] = {.lex_state = 1026}, + [5354] = {.lex_state = 1026}, + [5355] = {.lex_state = 100}, + [5356] = {.lex_state = 435}, + [5357] = {.lex_state = 1026}, + [5358] = {.lex_state = 54}, + [5359] = {.lex_state = 54}, + [5360] = {.lex_state = 54}, + [5361] = {.lex_state = 1026}, + [5362] = {.lex_state = 1026}, + [5363] = {.lex_state = 54}, + [5364] = {.lex_state = 112}, + [5365] = {.lex_state = 1026}, + [5366] = {.lex_state = 1026}, + [5367] = {.lex_state = 54}, + [5368] = {.lex_state = 112}, + [5369] = {.lex_state = 54}, + [5370] = {.lex_state = 1026}, + [5371] = {.lex_state = 54}, + [5372] = {.lex_state = 434}, + [5373] = {.lex_state = 1026}, + [5374] = {.lex_state = 1026}, + [5375] = {.lex_state = 1026}, + [5376] = {.lex_state = 1026}, + [5377] = {.lex_state = 434}, + [5378] = {.lex_state = 149}, + [5379] = {.lex_state = 54}, + [5380] = {.lex_state = 1096}, + [5381] = {.lex_state = 995}, + [5382] = {.lex_state = 54}, + [5383] = {.lex_state = 1026}, + [5384] = {.lex_state = 54}, + [5385] = {.lex_state = 149}, + [5386] = {.lex_state = 1026}, + [5387] = {.lex_state = 1026}, + [5388] = {.lex_state = 1026}, + [5389] = {.lex_state = 54}, + [5390] = {.lex_state = 1096}, + [5391] = {.lex_state = 1026}, + [5392] = {.lex_state = 54}, + [5393] = {.lex_state = 439}, + [5394] = {.lex_state = 1026}, + [5395] = {.lex_state = 54}, + [5396] = {.lex_state = 441}, + [5397] = {.lex_state = 446}, + [5398] = {.lex_state = 497}, + [5399] = {.lex_state = 54}, + [5400] = {.lex_state = 441}, + [5401] = {.lex_state = 525}, + [5402] = {.lex_state = 1051}, + [5403] = {.lex_state = 441}, + [5404] = {.lex_state = 54}, + [5405] = {.lex_state = 54}, + [5406] = {.lex_state = 478}, + [5407] = {.lex_state = 441}, + [5408] = {.lex_state = 54}, + [5409] = {.lex_state = 54}, + [5410] = {.lex_state = 513}, + [5411] = {.lex_state = 54}, + [5412] = {.lex_state = 403}, + [5413] = {.lex_state = 54}, + [5414] = {.lex_state = 54}, + [5415] = {.lex_state = 54}, + [5416] = {.lex_state = 54}, + [5417] = {.lex_state = 491}, + [5418] = {.lex_state = 1026}, + [5419] = {.lex_state = 441}, + [5420] = {.lex_state = 54}, + [5421] = {.lex_state = 54}, + [5422] = {.lex_state = 520}, + [5423] = {.lex_state = 54}, + [5424] = {.lex_state = 441}, + [5425] = {.lex_state = 54}, + [5426] = {.lex_state = 54}, + [5427] = {.lex_state = 995}, + [5428] = {.lex_state = 54}, + [5429] = {.lex_state = 54}, + [5430] = {.lex_state = 54}, + [5431] = {.lex_state = 54}, + [5432] = {.lex_state = 54}, + [5433] = {.lex_state = 54}, + [5434] = {.lex_state = 54}, + [5435] = {.lex_state = 54}, + [5436] = {.lex_state = 54}, + [5437] = {.lex_state = 440}, + [5438] = {.lex_state = 54}, + [5439] = {.lex_state = 54}, + [5440] = {.lex_state = 54}, + [5441] = {.lex_state = 54}, + [5442] = {.lex_state = 54}, + [5443] = {.lex_state = 54}, + [5444] = {.lex_state = 995}, + [5445] = {.lex_state = 1051}, + [5446] = {.lex_state = 450}, + [5447] = {.lex_state = 54}, + [5448] = {.lex_state = 54}, + [5449] = {.lex_state = 479}, + [5450] = {.lex_state = 441}, + [5451] = {.lex_state = 54}, + [5452] = {.lex_state = 54}, + [5453] = {.lex_state = 54}, + [5454] = {.lex_state = 418}, + [5455] = {.lex_state = 450}, + [5456] = {.lex_state = 54}, + [5457] = {.lex_state = 418}, + [5458] = {.lex_state = 1051}, + [5459] = {.lex_state = 1051}, + [5460] = {.lex_state = 1051}, + [5461] = {.lex_state = 1051}, + [5462] = {.lex_state = 1051}, + [5463] = {.lex_state = 1051}, + [5464] = {.lex_state = 54}, + [5465] = {.lex_state = 515}, + [5466] = {.lex_state = 995}, + [5467] = {.lex_state = 441}, + [5468] = {.lex_state = 403}, + [5469] = {.lex_state = 54}, + [5470] = {.lex_state = 54}, + [5471] = {.lex_state = 54}, + [5472] = {.lex_state = 1051}, + [5473] = {.lex_state = 440}, + [5474] = {.lex_state = 995}, + [5475] = {.lex_state = 112}, + [5476] = {.lex_state = 446}, + [5477] = {.lex_state = 54}, + [5478] = {.lex_state = 54}, + [5479] = {.lex_state = 54}, + [5480] = {.lex_state = 441}, + [5481] = {.lex_state = 54}, + [5482] = {.lex_state = 54}, + [5483] = {.lex_state = 54}, + [5484] = {.lex_state = 995}, + [5485] = {.lex_state = 4836}, + [5486] = {.lex_state = 4656}, + [5487] = {.lex_state = 4656}, + [5488] = {.lex_state = 460}, + [5489] = {.lex_state = 499}, + [5490] = {.lex_state = 462}, + [5491] = {.lex_state = 54}, + [5492] = {.lex_state = 181}, + [5493] = {.lex_state = 4219}, + [5494] = {.lex_state = 4219}, + [5495] = {.lex_state = 478}, + [5496] = {.lex_state = 4656}, + [5497] = {.lex_state = 418}, + [5498] = {.lex_state = 447}, + [5499] = {.lex_state = 4656}, + [5500] = {.lex_state = 447}, + [5501] = {.lex_state = 54}, + [5502] = {.lex_state = 447}, + [5503] = {.lex_state = 4656}, + [5504] = {.lex_state = 4656}, + [5505] = {.lex_state = 4219}, + [5506] = {.lex_state = 4219}, + [5507] = {.lex_state = 181}, + [5508] = {.lex_state = 447}, + [5509] = {.lex_state = 447}, + [5510] = {.lex_state = 4219}, + [5511] = {.lex_state = 4219}, + [5512] = {.lex_state = 995}, + [5513] = {.lex_state = 526}, + [5514] = {.lex_state = 526}, + [5515] = {.lex_state = 498}, + [5516] = {.lex_state = 4836}, + [5517] = {.lex_state = 4836}, + [5518] = {.lex_state = 995}, + [5519] = {.lex_state = 492}, + [5520] = {.lex_state = 492}, + [5521] = {.lex_state = 478}, + [5522] = {.lex_state = 418}, + [5523] = {.lex_state = 181}, + [5524] = {.lex_state = 418}, + [5525] = {.lex_state = 402}, + [5526] = {.lex_state = 4836}, + [5527] = {.lex_state = 500}, + [5528] = {.lex_state = 498}, + [5529] = {.lex_state = 54}, + [5530] = {.lex_state = 493}, + [5531] = {.lex_state = 448}, + [5532] = {.lex_state = 126}, + [5533] = {.lex_state = 418}, + [5534] = {.lex_state = 126}, + [5535] = {.lex_state = 4656}, + [5536] = {.lex_state = 4656}, + [5537] = {.lex_state = 4219}, + [5538] = {.lex_state = 4219}, + [5539] = {.lex_state = 448}, + [5540] = {.lex_state = 448}, + [5541] = {.lex_state = 4219}, + [5542] = {.lex_state = 4219}, + [5543] = {.lex_state = 181}, + [5544] = {.lex_state = 181}, + [5545] = {.lex_state = 181}, + [5546] = {.lex_state = 448}, + [5547] = {.lex_state = 448}, + [5548] = {.lex_state = 4836}, + [5549] = {.lex_state = 4836}, + [5550] = {.lex_state = 995}, + [5551] = {.lex_state = 995}, + [5552] = {.lex_state = 4219}, + [5553] = {.lex_state = 4219}, + [5554] = {.lex_state = 995}, + [5555] = {.lex_state = 480}, + [5556] = {.lex_state = 54}, + [5557] = {.lex_state = 4656}, + [5558] = {.lex_state = 4219}, + [5559] = {.lex_state = 4219}, + [5560] = {.lex_state = 4219}, + [5561] = {.lex_state = 4219}, + [5562] = {.lex_state = 4219}, + [5563] = {.lex_state = 4219}, + [5564] = {.lex_state = 403}, + [5565] = {.lex_state = 516}, + [5566] = {.lex_state = 418}, + [5567] = {.lex_state = 516}, + [5568] = {.lex_state = 138}, + [5569] = {.lex_state = 139}, + [5570] = {.lex_state = 403}, + [5571] = {.lex_state = 181}, + [5572] = {.lex_state = 181}, + [5573] = {.lex_state = 418}, + [5574] = {.lex_state = 418}, + [5575] = {.lex_state = 402}, + [5576] = {.lex_state = 181}, + [5577] = {.lex_state = 499}, + [5578] = {.lex_state = 181}, + [5579] = {.lex_state = 463}, + [5580] = {.lex_state = 181}, + [5581] = {.lex_state = 181}, + [5582] = {.lex_state = 181}, + [5583] = {.lex_state = 481}, + [5584] = {.lex_state = 527}, + [5585] = {.lex_state = 181}, + [5586] = {.lex_state = 528}, + [5587] = {.lex_state = 499}, + [5588] = {.lex_state = 181}, + [5589] = {.lex_state = 181}, + [5590] = {.lex_state = 54}, + [5591] = {.lex_state = 54}, + [5592] = {.lex_state = 494}, + [5593] = {.lex_state = 402}, + [5594] = {.lex_state = 54}, + [5595] = {.lex_state = 402}, + [5596] = {.lex_state = 181}, + [5597] = {.lex_state = 54}, + [5598] = {.lex_state = 118}, + [5599] = {.lex_state = 181}, + [5600] = {.lex_state = 181}, + [5601] = {.lex_state = 54}, + [5602] = {.lex_state = 54}, + [5603] = {.lex_state = 54}, + [5604] = {.lex_state = 54}, + [5605] = {.lex_state = 54}, + [5606] = {.lex_state = 54}, + [5607] = {.lex_state = 501}, + [5608] = {.lex_state = 54}, + [5609] = {.lex_state = 499}, + [5610] = {.lex_state = 54}, + [5611] = {.lex_state = 181}, + [5612] = {.lex_state = 54}, + [5613] = {.lex_state = 181}, + [5614] = {.lex_state = 54}, + [5615] = {.lex_state = 181}, + [5616] = {.lex_state = 54}, + [5617] = {.lex_state = 54}, + [5618] = {.lex_state = 54}, + [5619] = {.lex_state = 118}, + [5620] = {.lex_state = 181}, + [5621] = {.lex_state = 54}, + [5622] = {.lex_state = 527}, + [5623] = {.lex_state = 54}, + [5624] = {.lex_state = 54}, + [5625] = {.lex_state = 181}, + [5626] = {.lex_state = 54}, + [5627] = {.lex_state = 181}, + [5628] = {.lex_state = 132}, + [5629] = {.lex_state = 181}, + [5630] = {.lex_state = 181}, + [5631] = {.lex_state = 54}, + [5632] = {.lex_state = 524}, + [5633] = {.lex_state = 54}, + [5634] = {.lex_state = 534}, + [5635] = {.lex_state = 181}, + [5636] = {.lex_state = 527}, + [5637] = {.lex_state = 181}, + [5638] = {.lex_state = 181}, + [5639] = {.lex_state = 54}, + [5640] = {.lex_state = 54}, + [5641] = {.lex_state = 527}, + [5642] = {.lex_state = 181}, + [5643] = {.lex_state = 181}, + [5644] = {.lex_state = 181}, + [5645] = {.lex_state = 527}, + [5646] = {.lex_state = 181}, + [5647] = {.lex_state = 1101}, + [5648] = {.lex_state = 478}, + [5649] = {.lex_state = 181}, + [5650] = {.lex_state = 499}, + [5651] = {.lex_state = 514}, + [5652] = {.lex_state = 181}, + [5653] = {.lex_state = 181}, + [5654] = {.lex_state = 54}, + [5655] = {.lex_state = 181}, + [5656] = {.lex_state = 181}, + [5657] = {.lex_state = 181}, + [5658] = {.lex_state = 181}, + [5659] = {.lex_state = 181}, + [5660] = {.lex_state = 181}, + [5661] = {.lex_state = 514}, + [5662] = {.lex_state = 54}, + [5663] = {.lex_state = 181}, + [5664] = {.lex_state = 181}, + [5665] = {.lex_state = 463}, + [5666] = {.lex_state = 181}, + [5667] = {.lex_state = 181}, + [5668] = {.lex_state = 514}, + [5669] = {.lex_state = 181}, + [5670] = {.lex_state = 181}, + [5671] = {.lex_state = 493}, + [5672] = {.lex_state = 514}, + [5673] = {.lex_state = 181}, + [5674] = {.lex_state = 514}, + [5675] = {.lex_state = 131}, + [5676] = {.lex_state = 140}, + [5677] = {.lex_state = 521}, + [5678] = {.lex_state = 140}, + [5679] = {.lex_state = 1097}, + [5680] = {.lex_state = 493}, + [5681] = {.lex_state = 54}, + [5682] = {.lex_state = 54}, + [5683] = {.lex_state = 54}, + [5684] = {.lex_state = 54}, + [5685] = {.lex_state = 478}, + [5686] = {.lex_state = 54}, + [5687] = {.lex_state = 493}, + [5688] = {.lex_state = 54}, + [5689] = {.lex_state = 54}, + [5690] = {.lex_state = 54}, + [5691] = {.lex_state = 54}, + [5692] = {.lex_state = 54}, + [5693] = {.lex_state = 54}, + [5694] = {.lex_state = 54}, + [5695] = {.lex_state = 181}, + [5696] = {.lex_state = 181}, + [5697] = {.lex_state = 181}, + [5698] = {.lex_state = 181}, + [5699] = {.lex_state = 181}, + [5700] = {.lex_state = 181}, + [5701] = {.lex_state = 493}, + [5702] = {.lex_state = 501}, + [5703] = {.lex_state = 181}, + [5704] = {.lex_state = 181}, + [5705] = {.lex_state = 181}, + [5706] = {.lex_state = 181}, + [5707] = {.lex_state = 535}, + [5708] = {.lex_state = 995}, + [5709] = {.lex_state = 54}, + [5710] = {.lex_state = 54}, + [5711] = {.lex_state = 402}, + [5712] = {.lex_state = 402}, + [5713] = {.lex_state = 995}, + [5714] = {.lex_state = 995}, + [5715] = {.lex_state = 402}, + [5716] = {.lex_state = 1092}, + [5717] = {.lex_state = 502}, + [5718] = {.lex_state = 523}, + [5719] = {.lex_state = 133}, + [5720] = {.lex_state = 530}, + [5721] = {.lex_state = 141}, + [5722] = {.lex_state = 1092}, + [5723] = {.lex_state = 1092}, + [5724] = {.lex_state = 1092}, + [5725] = {.lex_state = 1092}, + [5726] = {.lex_state = 1092}, + [5727] = {.lex_state = 1092}, + [5728] = {.lex_state = 1092}, + [5729] = {.lex_state = 1092}, + [5730] = {.lex_state = 1092}, + [5731] = {.lex_state = 1092}, + [5732] = {.lex_state = 1092}, + [5733] = {.lex_state = 1092}, + [5734] = {.lex_state = 1092}, + [5735] = {.lex_state = 1092}, + [5736] = {.lex_state = 1092}, + [5737] = {.lex_state = 1092}, + [5738] = {.lex_state = 1092}, + [5739] = {.lex_state = 1092}, + [5740] = {.lex_state = 1092}, + [5741] = {.lex_state = 461}, + [5742] = {.lex_state = 1092}, + [5743] = {.lex_state = 1059}, + [5744] = {.lex_state = 995}, + [5745] = {.lex_state = 995}, + [5746] = {.lex_state = 995}, + [5747] = {.lex_state = 995}, + [5748] = {.lex_state = 995}, + [5749] = {.lex_state = 995}, + [5750] = {.lex_state = 995}, + [5751] = {.lex_state = 995}, + [5752] = {.lex_state = 995}, + [5753] = {.lex_state = 995}, + [5754] = {.lex_state = 995}, + [5755] = {.lex_state = 995}, + [5756] = {.lex_state = 995}, + [5757] = {.lex_state = 995}, + [5758] = {.lex_state = 995}, + [5759] = {.lex_state = 995}, + [5760] = {.lex_state = 995}, + [5761] = {.lex_state = 995}, + [5762] = {.lex_state = 995}, + [5763] = {.lex_state = 995}, + [5764] = {.lex_state = 995}, + [5765] = {.lex_state = 995}, + [5766] = {.lex_state = 495}, + [5767] = {.lex_state = 522}, + [5768] = {.lex_state = 502}, + [5769] = {.lex_state = 523}, + [5770] = {.lex_state = 995}, + [5771] = {.lex_state = 523}, + [5772] = {.lex_state = 995}, + [5773] = {.lex_state = 461}, + [5774] = {.lex_state = 402}, + [5775] = {.lex_state = 402}, + [5776] = {.lex_state = 495}, + [5777] = {.lex_state = 502}, + [5778] = {.lex_state = 530}, + [5779] = {.lex_state = 523}, + [5780] = {.lex_state = 1101}, + [5781] = {.lex_state = 402}, + [5782] = {.lex_state = 54}, + [5783] = {.lex_state = 1099}, + [5784] = {.lex_state = 461}, + [5785] = {.lex_state = 995}, + [5786] = {.lex_state = 54}, + [5787] = {.lex_state = 535}, + [5788] = {.lex_state = 402}, + [5789] = {.lex_state = 54}, + [5790] = {.lex_state = 1121}, + [5791] = {.lex_state = 1097}, + [5792] = {.lex_state = 402}, + [5793] = {.lex_state = 461}, + [5794] = {.lex_state = 995}, + [5795] = {.lex_state = 995}, + [5796] = {.lex_state = 1057}, + [5797] = {.lex_state = 461}, + [5798] = {.lex_state = 402}, + [5799] = {.lex_state = 402}, + [5800] = {.lex_state = 133}, + [5801] = {.lex_state = 523}, + [5802] = {.lex_state = 484}, + [5803] = {.lex_state = 141}, + [5804] = {.lex_state = 1121}, + [5805] = {.lex_state = 54}, + [5806] = {.lex_state = 141}, + [5807] = {.lex_state = 1121}, + [5808] = {.lex_state = 1121}, + [5809] = {.lex_state = 54}, + [5810] = {.lex_state = 141}, + [5811] = {.lex_state = 141}, + [5812] = {.lex_state = 402}, + [5813] = {.lex_state = 402}, + [5814] = {.lex_state = 54}, + [5815] = {.lex_state = 402}, + [5816] = {.lex_state = 402}, + [5817] = {.lex_state = 1098}, + [5818] = {.lex_state = 402}, + [5819] = {.lex_state = 402}, + [5820] = {.lex_state = 1098}, + [5821] = {.lex_state = 995}, + [5822] = {.lex_state = 995}, + [5823] = {.lex_state = 402}, + [5824] = {.lex_state = 402}, + [5825] = {.lex_state = 402}, + [5826] = {.lex_state = 402}, + [5827] = {.lex_state = 402}, + [5828] = {.lex_state = 402}, + [5829] = {.lex_state = 402}, + [5830] = {.lex_state = 502}, + [5831] = {.lex_state = 1121}, + [5832] = {.lex_state = 529}, + [5833] = {.lex_state = 402}, + [5834] = {.lex_state = 54}, + [5835] = {.lex_state = 402}, + [5836] = {.lex_state = 402}, + [5837] = {.lex_state = 54}, + [5838] = {.lex_state = 1121}, + [5839] = {.lex_state = 488}, + [5840] = {.lex_state = 1057}, + [5841] = {.lex_state = 488}, + [5842] = {.lex_state = 194}, + [5843] = {.lex_state = 496}, + [5844] = {.lex_state = 995}, + [5845] = {.lex_state = 478}, + [5846] = {.lex_state = 134}, + [5847] = {.lex_state = 54}, + [5848] = {.lex_state = 1098}, + [5849] = {.lex_state = 478}, + [5850] = {.lex_state = 995}, + [5851] = {.lex_state = 478}, + [5852] = {.lex_state = 488}, + [5853] = {.lex_state = 502}, + [5854] = {.lex_state = 995}, + [5855] = {.lex_state = 488}, + [5856] = {.lex_state = 488}, + [5857] = {.lex_state = 995}, + [5858] = {.lex_state = 995}, + [5859] = {.lex_state = 531}, + [5860] = {.lex_state = 995}, + [5861] = {.lex_state = 995}, + [5862] = {.lex_state = 403}, + [5863] = {.lex_state = 496}, + [5864] = {.lex_state = 1121}, + [5865] = {.lex_state = 995}, + [5866] = {.lex_state = 488}, + [5867] = {.lex_state = 995}, + [5868] = {.lex_state = 496}, + [5869] = {.lex_state = 1121}, + [5870] = {.lex_state = 1121}, + [5871] = {.lex_state = 134}, + [5872] = {.lex_state = 488}, + [5873] = {.lex_state = 531}, + [5874] = {.lex_state = 488}, + [5875] = {.lex_state = 488}, + [5876] = {.lex_state = 1092}, + [5877] = {.lex_state = 512}, + [5878] = {.lex_state = 1099}, + [5879] = {.lex_state = 512}, + [5880] = {.lex_state = 531}, + [5881] = {.lex_state = 496}, + [5882] = {.lex_state = 54}, + [5883] = {.lex_state = 995}, + [5884] = {.lex_state = 159}, + [5885] = {.lex_state = 531}, + [5886] = {.lex_state = 159}, + [5887] = {.lex_state = 536}, + [5888] = {.lex_state = 54}, + [5889] = {.lex_state = 488}, + [5890] = {.lex_state = 995}, + [5891] = {.lex_state = 488}, + [5892] = {.lex_state = 54}, + [5893] = {.lex_state = 134}, + [5894] = {.lex_state = 995}, + [5895] = {.lex_state = 995}, + [5896] = {.lex_state = 488}, + [5897] = {.lex_state = 488}, + [5898] = {.lex_state = 1092}, + [5899] = {.lex_state = 1092}, + [5900] = {.lex_state = 995}, + [5901] = {.lex_state = 488}, + [5902] = {.lex_state = 531}, + [5903] = {.lex_state = 536}, + [5904] = {.lex_state = 54}, + [5905] = {.lex_state = 995}, + [5906] = {.lex_state = 134}, + [5907] = {.lex_state = 536}, + [5908] = {.lex_state = 54}, + [5909] = {.lex_state = 1121}, + [5910] = {.lex_state = 1092}, + [5911] = {.lex_state = 1059}, + [5912] = {.lex_state = 1059}, + [5913] = {.lex_state = 1098}, + [5914] = {.lex_state = 496}, + [5915] = {.lex_state = 541}, + [5916] = {.lex_state = 54}, + [5917] = {.lex_state = 1092}, + [5918] = {.lex_state = 536}, + [5919] = {.lex_state = 995}, + [5920] = {.lex_state = 488}, + [5921] = {.lex_state = 488}, + [5922] = {.lex_state = 488}, + [5923] = {.lex_state = 488}, + [5924] = {.lex_state = 541}, + [5925] = {.lex_state = 532}, + [5926] = {.lex_state = 488}, + [5927] = {.lex_state = 403}, + [5928] = {.lex_state = 488}, + [5929] = {.lex_state = 536}, + [5930] = {.lex_state = 531}, + [5931] = {.lex_state = 496}, + [5932] = {.lex_state = 502}, + [5933] = {.lex_state = 488}, + [5934] = {.lex_state = 532}, + [5935] = {.lex_state = 403}, + [5936] = {.lex_state = 995}, + [5937] = {.lex_state = 995}, + [5938] = {.lex_state = 995}, + [5939] = {.lex_state = 488}, + [5940] = {.lex_state = 488}, + [5941] = {.lex_state = 488}, + [5942] = {.lex_state = 488}, + [5943] = {.lex_state = 488}, + [5944] = {.lex_state = 54}, + [5945] = {.lex_state = 1019}, + [5946] = {.lex_state = 421}, + [5947] = {.lex_state = 159}, + [5948] = {.lex_state = 543}, + [5949] = {.lex_state = 1019}, + [5950] = {.lex_state = 1019}, + [5951] = {.lex_state = 1019}, + [5952] = {.lex_state = 1019}, + [5953] = {.lex_state = 430}, + [5954] = {.lex_state = 4220}, + [5955] = {.lex_state = 4220}, + [5956] = {.lex_state = 430}, + [5957] = {.lex_state = 1019}, + [5958] = {.lex_state = 1019}, + [5959] = {.lex_state = 1019}, + [5960] = {.lex_state = 1019}, + [5961] = {.lex_state = 1019}, + [5962] = {.lex_state = 421}, + [5963] = {.lex_state = 159}, + [5964] = {.lex_state = 4220}, + [5965] = {.lex_state = 459}, + [5966] = {.lex_state = 488}, + [5967] = {.lex_state = 430}, + [5968] = {.lex_state = 4220}, + [5969] = {.lex_state = 4220}, + [5970] = {.lex_state = 430}, + [5971] = {.lex_state = 1019}, + [5972] = {.lex_state = 1019}, + [5973] = {.lex_state = 1019}, + [5974] = {.lex_state = 995}, + [5975] = {.lex_state = 1019}, + [5976] = {.lex_state = 421}, + [5977] = {.lex_state = 506}, + [5978] = {.lex_state = 430}, + [5979] = {.lex_state = 995}, + [5980] = {.lex_state = 4220}, + [5981] = {.lex_state = 4220}, + [5982] = {.lex_state = 430}, + [5983] = {.lex_state = 488}, + [5984] = {.lex_state = 497}, + [5985] = {.lex_state = 1019}, + [5986] = {.lex_state = 421}, + [5987] = {.lex_state = 1019}, + [5988] = {.lex_state = 1019}, + [5989] = {.lex_state = 430}, + [5990] = {.lex_state = 4220}, + [5991] = {.lex_state = 4220}, + [5992] = {.lex_state = 430}, + [5993] = {.lex_state = 421}, + [5994] = {.lex_state = 1019}, + [5995] = {.lex_state = 995}, + [5996] = {.lex_state = 1019}, + [5997] = {.lex_state = 421}, + [5998] = {.lex_state = 537}, + [5999] = {.lex_state = 1019}, + [6000] = {.lex_state = 573}, + [6001] = {.lex_state = 430}, + [6002] = {.lex_state = 4220}, + [6003] = {.lex_state = 4220}, + [6004] = {.lex_state = 430}, + [6005] = {.lex_state = 1019}, + [6006] = {.lex_state = 995}, + [6007] = {.lex_state = 126}, + [6008] = {.lex_state = 4220}, + [6009] = {.lex_state = 1019}, + [6010] = {.lex_state = 421}, + [6011] = {.lex_state = 126}, + [6012] = {.lex_state = 4220}, + [6013] = {.lex_state = 430}, + [6014] = {.lex_state = 4220}, + [6015] = {.lex_state = 4220}, + [6016] = {.lex_state = 1019}, + [6017] = {.lex_state = 430}, + [6018] = {.lex_state = 1019}, + [6019] = {.lex_state = 4220}, + [6020] = {.lex_state = 1019}, + [6021] = {.lex_state = 421}, + [6022] = {.lex_state = 553}, + [6023] = {.lex_state = 4220}, + [6024] = {.lex_state = 497}, + [6025] = {.lex_state = 54}, + [6026] = {.lex_state = 430}, + [6027] = {.lex_state = 488}, + [6028] = {.lex_state = 430}, + [6029] = {.lex_state = 194}, + [6030] = {.lex_state = 1019}, + [6031] = {.lex_state = 54}, + [6032] = {.lex_state = 430}, + [6033] = {.lex_state = 4220}, + [6034] = {.lex_state = 1019}, + [6035] = {.lex_state = 4220}, + [6036] = {.lex_state = 421}, + [6037] = {.lex_state = 4220}, + [6038] = {.lex_state = 488}, + [6039] = {.lex_state = 995}, + [6040] = {.lex_state = 430}, + [6041] = {.lex_state = 430}, + [6042] = {.lex_state = 1019}, + [6043] = {.lex_state = 1019}, + [6044] = {.lex_state = 995}, + [6045] = {.lex_state = 1019}, + [6046] = {.lex_state = 421}, + [6047] = {.lex_state = 1019}, + [6048] = {.lex_state = 573}, + [6049] = {.lex_state = 430}, + [6050] = {.lex_state = 430}, + [6051] = {.lex_state = 1019}, + [6052] = {.lex_state = 995}, + [6053] = {.lex_state = 1019}, + [6054] = {.lex_state = 421}, + [6055] = {.lex_state = 490}, + [6056] = {.lex_state = 995}, + [6057] = {.lex_state = 430}, + [6058] = {.lex_state = 1019}, + [6059] = {.lex_state = 430}, + [6060] = {.lex_state = 1019}, + [6061] = {.lex_state = 1019}, + [6062] = {.lex_state = 421}, + [6063] = {.lex_state = 403}, + [6064] = {.lex_state = 430}, + [6065] = {.lex_state = 430}, + [6066] = {.lex_state = 1019}, + [6067] = {.lex_state = 1019}, + [6068] = {.lex_state = 421}, + [6069] = {.lex_state = 403}, + [6070] = {.lex_state = 430}, + [6071] = {.lex_state = 430}, + [6072] = {.lex_state = 1019}, + [6073] = {.lex_state = 1019}, + [6074] = {.lex_state = 421}, + [6075] = {.lex_state = 1019}, + [6076] = {.lex_state = 497}, + [6077] = {.lex_state = 512}, + [6078] = {.lex_state = 1019}, + [6079] = {.lex_state = 1019}, + [6080] = {.lex_state = 421}, + [6081] = {.lex_state = 1019}, + [6082] = {.lex_state = 1019}, + [6083] = {.lex_state = 1019}, + [6084] = {.lex_state = 421}, + [6085] = {.lex_state = 430}, + [6086] = {.lex_state = 1019}, + [6087] = {.lex_state = 1019}, + [6088] = {.lex_state = 421}, + [6089] = {.lex_state = 1019}, + [6090] = {.lex_state = 1019}, + [6091] = {.lex_state = 421}, + [6092] = {.lex_state = 421}, + [6093] = {.lex_state = 995}, + [6094] = {.lex_state = 421}, + [6095] = {.lex_state = 421}, + [6096] = {.lex_state = 421}, + [6097] = {.lex_state = 421}, + [6098] = {.lex_state = 421}, + [6099] = {.lex_state = 421}, + [6100] = {.lex_state = 421}, + [6101] = {.lex_state = 421}, + [6102] = {.lex_state = 421}, + [6103] = {.lex_state = 421}, + [6104] = {.lex_state = 421}, + [6105] = {.lex_state = 421}, + [6106] = {.lex_state = 421}, + [6107] = {.lex_state = 421}, + [6108] = {.lex_state = 421}, + [6109] = {.lex_state = 421}, + [6110] = {.lex_state = 421}, + [6111] = {.lex_state = 421}, + [6112] = {.lex_state = 421}, + [6113] = {.lex_state = 421}, + [6114] = {.lex_state = 421}, + [6115] = {.lex_state = 421}, + [6116] = {.lex_state = 421}, + [6117] = {.lex_state = 421}, + [6118] = {.lex_state = 421}, + [6119] = {.lex_state = 430}, + [6120] = {.lex_state = 1019}, + [6121] = {.lex_state = 1057}, + [6122] = {.lex_state = 533}, + [6123] = {.lex_state = 403}, + [6124] = {.lex_state = 403}, + [6125] = {.lex_state = 403}, + [6126] = {.lex_state = 403}, + [6127] = {.lex_state = 1019}, + [6128] = {.lex_state = 995}, + [6129] = {.lex_state = 512}, + [6130] = {.lex_state = 430}, + [6131] = {.lex_state = 544}, + [6132] = {.lex_state = 1019}, + [6133] = {.lex_state = 452}, + [6134] = {.lex_state = 421}, + [6135] = {.lex_state = 497}, + [6136] = {.lex_state = 573}, + [6137] = {.lex_state = 573}, + [6138] = {.lex_state = 135}, + [6139] = {.lex_state = 458}, + [6140] = {.lex_state = 543}, + [6141] = {.lex_state = 538}, + [6142] = {.lex_state = 4220}, + [6143] = {.lex_state = 543}, + [6144] = {.lex_state = 4220}, + [6145] = {.lex_state = 451}, + [6146] = {.lex_state = 503}, + [6147] = {.lex_state = 488}, + [6148] = {.lex_state = 194}, + [6149] = {.lex_state = 430}, + [6150] = {.lex_state = 421}, + [6151] = {.lex_state = 4220}, + [6152] = {.lex_state = 4220}, + [6153] = {.lex_state = 430}, + [6154] = {.lex_state = 497}, + [6155] = {.lex_state = 4220}, + [6156] = {.lex_state = 4220}, + [6157] = {.lex_state = 1019}, + [6158] = {.lex_state = 430}, + [6159] = {.lex_state = 1019}, + [6160] = {.lex_state = 1019}, + [6161] = {.lex_state = 995}, + [6162] = {.lex_state = 159}, + [6163] = {.lex_state = 4220}, + [6164] = {.lex_state = 1019}, + [6165] = {.lex_state = 1019}, + [6166] = {.lex_state = 4220}, + [6167] = {.lex_state = 533}, + [6168] = {.lex_state = 573}, + [6169] = {.lex_state = 1019}, + [6170] = {.lex_state = 543}, + [6171] = {.lex_state = 1019}, + [6172] = {.lex_state = 421}, + [6173] = {.lex_state = 533}, + [6174] = {.lex_state = 488}, + [6175] = {.lex_state = 497}, + [6176] = {.lex_state = 488}, + [6177] = {.lex_state = 430}, + [6178] = {.lex_state = 533}, + [6179] = {.lex_state = 995}, + [6180] = {.lex_state = 1019}, + [6181] = {.lex_state = 497}, + [6182] = {.lex_state = 497}, + [6183] = {.lex_state = 1019}, + [6184] = {.lex_state = 430}, + [6185] = {.lex_state = 533}, + [6186] = {.lex_state = 533}, + [6187] = {.lex_state = 995}, + [6188] = {.lex_state = 995}, + [6189] = {.lex_state = 126}, + [6190] = {.lex_state = 4220}, + [6191] = {.lex_state = 4220}, + [6192] = {.lex_state = 497}, + [6193] = {.lex_state = 126}, + [6194] = {.lex_state = 126}, + [6195] = {.lex_state = 126}, + [6196] = {.lex_state = 430}, + [6197] = {.lex_state = 430}, + [6198] = {.lex_state = 1019}, + [6199] = {.lex_state = 421}, + [6200] = {.lex_state = 1019}, + [6201] = {.lex_state = 1019}, + [6202] = {.lex_state = 1019}, + [6203] = {.lex_state = 1019}, + [6204] = {.lex_state = 1059}, + [6205] = {.lex_state = 165}, + [6206] = {.lex_state = 1019}, + [6207] = {.lex_state = 134}, + [6208] = {.lex_state = 54}, + [6209] = {.lex_state = 54}, + [6210] = {.lex_state = 584}, + [6211] = {.lex_state = 584}, + [6212] = {.lex_state = 181}, + [6213] = {.lex_state = 584}, + [6214] = {.lex_state = 1019}, + [6215] = {.lex_state = 584}, + [6216] = {.lex_state = 134}, + [6217] = {.lex_state = 54}, + [6218] = {.lex_state = 584}, + [6219] = {.lex_state = 134}, + [6220] = {.lex_state = 1019}, + [6221] = {.lex_state = 1019}, + [6222] = {.lex_state = 584}, + [6223] = {.lex_state = 507}, + [6224] = {.lex_state = 584}, + [6225] = {.lex_state = 584}, + [6226] = {.lex_state = 165}, + [6227] = {.lex_state = 584}, + [6228] = {.lex_state = 584}, + [6229] = {.lex_state = 584}, + [6230] = {.lex_state = 584}, + [6231] = {.lex_state = 489}, + [6232] = {.lex_state = 512}, + [6233] = {.lex_state = 555}, + [6234] = {.lex_state = 584}, + [6235] = {.lex_state = 584}, + [6236] = {.lex_state = 584}, + [6237] = {.lex_state = 1020}, + [6238] = {.lex_state = 54}, + [6239] = {.lex_state = 1019}, + [6240] = {.lex_state = 1019}, + [6241] = {.lex_state = 584}, + [6242] = {.lex_state = 584}, + [6243] = {.lex_state = 584}, + [6244] = {.lex_state = 1019}, + [6245] = {.lex_state = 54}, + [6246] = {.lex_state = 584}, + [6247] = {.lex_state = 584}, + [6248] = {.lex_state = 159}, + [6249] = {.lex_state = 497}, + [6250] = {.lex_state = 54}, + [6251] = {.lex_state = 584}, + [6252] = {.lex_state = 584}, + [6253] = {.lex_state = 54}, + [6254] = {.lex_state = 454}, + [6255] = {.lex_state = 540}, + [6256] = {.lex_state = 584}, + [6257] = {.lex_state = 54}, + [6258] = {.lex_state = 584}, + [6259] = {.lex_state = 540}, + [6260] = {.lex_state = 54}, + [6261] = {.lex_state = 584}, + [6262] = {.lex_state = 54}, + [6263] = {.lex_state = 584}, + [6264] = {.lex_state = 488}, + [6265] = {.lex_state = 54}, + [6266] = {.lex_state = 584}, + [6267] = {.lex_state = 584}, + [6268] = {.lex_state = 54}, + [6269] = {.lex_state = 1019}, + [6270] = {.lex_state = 584}, + [6271] = {.lex_state = 584}, + [6272] = {.lex_state = 54}, + [6273] = {.lex_state = 497}, + [6274] = {.lex_state = 54}, + [6275] = {.lex_state = 54}, + [6276] = {.lex_state = 512}, + [6277] = {.lex_state = 555}, + [6278] = {.lex_state = 504}, + [6279] = {.lex_state = 545}, + [6280] = {.lex_state = 539}, + [6281] = {.lex_state = 54}, + [6282] = {.lex_state = 54}, + [6283] = {.lex_state = 1019}, + [6284] = {.lex_state = 1019}, + [6285] = {.lex_state = 1019}, + [6286] = {.lex_state = 54}, + [6287] = {.lex_state = 134}, + [6288] = {.lex_state = 1020}, + [6289] = {.lex_state = 54}, + [6290] = {.lex_state = 159}, + [6291] = {.lex_state = 54}, + [6292] = {.lex_state = 54}, + [6293] = {.lex_state = 512}, + [6294] = {.lex_state = 512}, + [6295] = {.lex_state = 403}, + [6296] = {.lex_state = 54}, + [6297] = {.lex_state = 1019}, + [6298] = {.lex_state = 1092}, + [6299] = {.lex_state = 1019}, + [6300] = {.lex_state = 456}, + [6301] = {.lex_state = 540}, + [6302] = {.lex_state = 403}, + [6303] = {.lex_state = 402}, + [6304] = {.lex_state = 402}, + [6305] = {.lex_state = 459}, + [6306] = {.lex_state = 509}, + [6307] = {.lex_state = 584}, + [6308] = {.lex_state = 54}, + [6309] = {.lex_state = 540}, + [6310] = {.lex_state = 54}, + [6311] = {.lex_state = 540}, + [6312] = {.lex_state = 181}, + [6313] = {.lex_state = 584}, + [6314] = {.lex_state = 1092}, + [6315] = {.lex_state = 1092}, + [6316] = {.lex_state = 54}, + [6317] = {.lex_state = 497}, + [6318] = {.lex_state = 1018}, + [6319] = {.lex_state = 1019}, + [6320] = {.lex_state = 1092}, + [6321] = {.lex_state = 403}, + [6322] = {.lex_state = 1019}, + [6323] = {.lex_state = 1019}, + [6324] = {.lex_state = 452}, + [6325] = {.lex_state = 403}, + [6326] = {.lex_state = 1019}, + [6327] = {.lex_state = 1019}, + [6328] = {.lex_state = 584}, + [6329] = {.lex_state = 1019}, + [6330] = {.lex_state = 1019}, + [6331] = {.lex_state = 1019}, + [6332] = {.lex_state = 1019}, + [6333] = {.lex_state = 1020}, + [6334] = {.lex_state = 1019}, + [6335] = {.lex_state = 1019}, + [6336] = {.lex_state = 1019}, + [6337] = {.lex_state = 1019}, + [6338] = {.lex_state = 54}, + [6339] = {.lex_state = 1019}, + [6340] = {.lex_state = 1019}, + [6341] = {.lex_state = 54}, + [6342] = {.lex_state = 1019}, + [6343] = {.lex_state = 1019}, + [6344] = {.lex_state = 1019}, + [6345] = {.lex_state = 1019}, + [6346] = {.lex_state = 545}, + [6347] = {.lex_state = 1019}, + [6348] = {.lex_state = 1019}, + [6349] = {.lex_state = 509}, + [6350] = {.lex_state = 1019}, + [6351] = {.lex_state = 1019}, + [6352] = {.lex_state = 504}, + [6353] = {.lex_state = 1019}, + [6354] = {.lex_state = 1019}, + [6355] = {.lex_state = 1019}, + [6356] = {.lex_state = 1019}, + [6357] = {.lex_state = 1019}, + [6358] = {.lex_state = 1019}, + [6359] = {.lex_state = 1019}, + [6360] = {.lex_state = 1019}, + [6361] = {.lex_state = 1019}, + [6362] = {.lex_state = 1019}, + [6363] = {.lex_state = 1019}, + [6364] = {.lex_state = 1019}, + [6365] = {.lex_state = 1019}, + [6366] = {.lex_state = 1019}, + [6367] = {.lex_state = 1019}, + [6368] = {.lex_state = 1019}, + [6369] = {.lex_state = 1019}, + [6370] = {.lex_state = 1019}, + [6371] = {.lex_state = 584}, + [6372] = {.lex_state = 54}, + [6373] = {.lex_state = 54}, + [6374] = {.lex_state = 584}, + [6375] = {.lex_state = 1059}, + [6376] = {.lex_state = 1059}, + [6377] = {.lex_state = 1059}, + [6378] = {.lex_state = 1059}, + [6379] = {.lex_state = 1059}, + [6380] = {.lex_state = 512}, + [6381] = {.lex_state = 1019}, + [6382] = {.lex_state = 554}, + [6383] = {.lex_state = 54}, + [6384] = {.lex_state = 1092}, + [6385] = {.lex_state = 556}, + [6386] = {.lex_state = 142}, + [6387] = {.lex_state = 518}, + [6388] = {.lex_state = 323}, + [6389] = {.lex_state = 54}, + [6390] = {.lex_state = 582}, + [6391] = {.lex_state = 135}, + [6392] = {.lex_state = 323}, + [6393] = {.lex_state = 323}, + [6394] = {.lex_state = 323}, + [6395] = {.lex_state = 323}, + [6396] = {.lex_state = 323}, + [6397] = {.lex_state = 323}, + [6398] = {.lex_state = 323}, + [6399] = {.lex_state = 323}, + [6400] = {.lex_state = 1019}, + [6401] = {.lex_state = 1019}, + [6402] = {.lex_state = 1019}, + [6403] = {.lex_state = 428}, + [6404] = {.lex_state = 562}, + [6405] = {.lex_state = 323}, + [6406] = {.lex_state = 428}, + [6407] = {.lex_state = 323}, + [6408] = {.lex_state = 323}, + [6409] = {.lex_state = 1019}, + [6410] = {.lex_state = 428}, + [6411] = {.lex_state = 1019}, + [6412] = {.lex_state = 323}, + [6413] = {.lex_state = 578}, + [6414] = {.lex_state = 1019}, + [6415] = {.lex_state = 582}, + [6416] = {.lex_state = 1019}, + [6417] = {.lex_state = 159}, + [6418] = {.lex_state = 556}, + [6419] = {.lex_state = 1019}, + [6420] = {.lex_state = 323}, + [6421] = {.lex_state = 323}, + [6422] = {.lex_state = 323}, + [6423] = {.lex_state = 323}, + [6424] = {.lex_state = 323}, + [6425] = {.lex_state = 323}, + [6426] = {.lex_state = 323}, + [6427] = {.lex_state = 323}, + [6428] = {.lex_state = 1019}, + [6429] = {.lex_state = 578}, + [6430] = {.lex_state = 578}, + [6431] = {.lex_state = 562}, + [6432] = {.lex_state = 1019}, + [6433] = {.lex_state = 428}, + [6434] = {.lex_state = 323}, + [6435] = {.lex_state = 1019}, + [6436] = {.lex_state = 1019}, + [6437] = {.lex_state = 428}, + [6438] = {.lex_state = 1019}, + [6439] = {.lex_state = 165}, + [6440] = {.lex_state = 165}, + [6441] = {.lex_state = 323}, + [6442] = {.lex_state = 428}, + [6443] = {.lex_state = 1019}, + [6444] = {.lex_state = 323}, + [6445] = {.lex_state = 323}, + [6446] = {.lex_state = 323}, + [6447] = {.lex_state = 323}, + [6448] = {.lex_state = 323}, + [6449] = {.lex_state = 323}, + [6450] = {.lex_state = 323}, + [6451] = {.lex_state = 323}, + [6452] = {.lex_state = 1019}, + [6453] = {.lex_state = 323}, + [6454] = {.lex_state = 1019}, + [6455] = {.lex_state = 562}, + [6456] = {.lex_state = 428}, + [6457] = {.lex_state = 323}, + [6458] = {.lex_state = 323}, + [6459] = {.lex_state = 428}, + [6460] = {.lex_state = 323}, + [6461] = {.lex_state = 579}, + [6462] = {.lex_state = 1019}, + [6463] = {.lex_state = 571}, + [6464] = {.lex_state = 1092}, + [6465] = {.lex_state = 323}, + [6466] = {.lex_state = 323}, + [6467] = {.lex_state = 323}, + [6468] = {.lex_state = 323}, + [6469] = {.lex_state = 323}, + [6470] = {.lex_state = 323}, + [6471] = {.lex_state = 323}, + [6472] = {.lex_state = 323}, + [6473] = {.lex_state = 323}, + [6474] = {.lex_state = 1019}, + [6475] = {.lex_state = 323}, + [6476] = {.lex_state = 562}, + [6477] = {.lex_state = 428}, + [6478] = {.lex_state = 323}, + [6479] = {.lex_state = 323}, + [6480] = {.lex_state = 556}, + [6481] = {.lex_state = 428}, + [6482] = {.lex_state = 323}, + [6483] = {.lex_state = 1019}, + [6484] = {.lex_state = 1019}, + [6485] = {.lex_state = 323}, + [6486] = {.lex_state = 323}, + [6487] = {.lex_state = 323}, + [6488] = {.lex_state = 323}, + [6489] = {.lex_state = 323}, + [6490] = {.lex_state = 323}, + [6491] = {.lex_state = 323}, + [6492] = {.lex_state = 323}, + [6493] = {.lex_state = 323}, + [6494] = {.lex_state = 571}, + [6495] = {.lex_state = 1019}, + [6496] = {.lex_state = 562}, + [6497] = {.lex_state = 428}, + [6498] = {.lex_state = 323}, + [6499] = {.lex_state = 1019}, + [6500] = {.lex_state = 428}, + [6501] = {.lex_state = 1019}, + [6502] = {.lex_state = 1019}, + [6503] = {.lex_state = 323}, + [6504] = {.lex_state = 1019}, + [6505] = {.lex_state = 323}, + [6506] = {.lex_state = 323}, + [6507] = {.lex_state = 323}, + [6508] = {.lex_state = 323}, + [6509] = {.lex_state = 323}, + [6510] = {.lex_state = 323}, + [6511] = {.lex_state = 323}, + [6512] = {.lex_state = 323}, + [6513] = {.lex_state = 323}, + [6514] = {.lex_state = 562}, + [6515] = {.lex_state = 1019}, + [6516] = {.lex_state = 428}, + [6517] = {.lex_state = 143}, + [6518] = {.lex_state = 579}, + [6519] = {.lex_state = 512}, + [6520] = {.lex_state = 428}, + [6521] = {.lex_state = 323}, + [6522] = {.lex_state = 579}, + [6523] = {.lex_state = 562}, + [6524] = {.lex_state = 428}, + [6525] = {.lex_state = 323}, + [6526] = {.lex_state = 323}, + [6527] = {.lex_state = 323}, + [6528] = {.lex_state = 323}, + [6529] = {.lex_state = 323}, + [6530] = {.lex_state = 323}, + [6531] = {.lex_state = 323}, + [6532] = {.lex_state = 323}, + [6533] = {.lex_state = 582}, + [6534] = {.lex_state = 323}, + [6535] = {.lex_state = 562}, + [6536] = {.lex_state = 323}, + [6537] = {.lex_state = 428}, + [6538] = {.lex_state = 323}, + [6539] = {.lex_state = 428}, + [6540] = {.lex_state = 1019}, + [6541] = {.lex_state = 556}, + [6542] = {.lex_state = 323}, + [6543] = {.lex_state = 323}, + [6544] = {.lex_state = 323}, + [6545] = {.lex_state = 323}, + [6546] = {.lex_state = 323}, + [6547] = {.lex_state = 323}, + [6548] = {.lex_state = 323}, + [6549] = {.lex_state = 323}, + [6550] = {.lex_state = 1019}, + [6551] = {.lex_state = 323}, + [6552] = {.lex_state = 562}, + [6553] = {.lex_state = 428}, + [6554] = {.lex_state = 1019}, + [6555] = {.lex_state = 428}, + [6556] = {.lex_state = 1019}, + [6557] = {.lex_state = 323}, + [6558] = {.lex_state = 323}, + [6559] = {.lex_state = 323}, + [6560] = {.lex_state = 323}, + [6561] = {.lex_state = 323}, + [6562] = {.lex_state = 323}, + [6563] = {.lex_state = 323}, + [6564] = {.lex_state = 323}, + [6565] = {.lex_state = 323}, + [6566] = {.lex_state = 323}, + [6567] = {.lex_state = 323}, + [6568] = {.lex_state = 562}, + [6569] = {.lex_state = 428}, + [6570] = {.lex_state = 428}, + [6571] = {.lex_state = 323}, + [6572] = {.lex_state = 556}, + [6573] = {.lex_state = 323}, + [6574] = {.lex_state = 323}, + [6575] = {.lex_state = 323}, + [6576] = {.lex_state = 323}, + [6577] = {.lex_state = 323}, + [6578] = {.lex_state = 323}, + [6579] = {.lex_state = 323}, + [6580] = {.lex_state = 323}, + [6581] = {.lex_state = 1019}, + [6582] = {.lex_state = 562}, + [6583] = {.lex_state = 428}, + [6584] = {.lex_state = 428}, + [6585] = {.lex_state = 1019}, + [6586] = {.lex_state = 1019}, + [6587] = {.lex_state = 323}, + [6588] = {.lex_state = 323}, + [6589] = {.lex_state = 323}, + [6590] = {.lex_state = 323}, + [6591] = {.lex_state = 323}, + [6592] = {.lex_state = 323}, + [6593] = {.lex_state = 323}, + [6594] = {.lex_state = 323}, + [6595] = {.lex_state = 1019}, + [6596] = {.lex_state = 562}, + [6597] = {.lex_state = 428}, + [6598] = {.lex_state = 428}, + [6599] = {.lex_state = 1019}, + [6600] = {.lex_state = 562}, + [6601] = {.lex_state = 428}, + [6602] = {.lex_state = 1019}, + [6603] = {.lex_state = 428}, + [6604] = {.lex_state = 1019}, + [6605] = {.lex_state = 562}, + [6606] = {.lex_state = 428}, + [6607] = {.lex_state = 428}, + [6608] = {.lex_state = 1019}, + [6609] = {.lex_state = 562}, + [6610] = {.lex_state = 428}, + [6611] = {.lex_state = 428}, + [6612] = {.lex_state = 1019}, + [6613] = {.lex_state = 562}, + [6614] = {.lex_state = 428}, + [6615] = {.lex_state = 428}, + [6616] = {.lex_state = 1019}, + [6617] = {.lex_state = 562}, + [6618] = {.lex_state = 428}, + [6619] = {.lex_state = 428}, + [6620] = {.lex_state = 1019}, + [6621] = {.lex_state = 562}, + [6622] = {.lex_state = 428}, + [6623] = {.lex_state = 428}, + [6624] = {.lex_state = 505}, + [6625] = {.lex_state = 562}, + [6626] = {.lex_state = 428}, + [6627] = {.lex_state = 428}, + [6628] = {.lex_state = 323}, + [6629] = {.lex_state = 562}, + [6630] = {.lex_state = 428}, + [6631] = {.lex_state = 428}, + [6632] = {.lex_state = 1019}, + [6633] = {.lex_state = 562}, + [6634] = {.lex_state = 428}, + [6635] = {.lex_state = 428}, + [6636] = {.lex_state = 546}, + [6637] = {.lex_state = 562}, + [6638] = {.lex_state = 428}, + [6639] = {.lex_state = 428}, + [6640] = {.lex_state = 1019}, + [6641] = {.lex_state = 562}, + [6642] = {.lex_state = 428}, + [6643] = {.lex_state = 428}, + [6644] = {.lex_state = 1019}, + [6645] = {.lex_state = 562}, + [6646] = {.lex_state = 428}, + [6647] = {.lex_state = 428}, + [6648] = {.lex_state = 428}, + [6649] = {.lex_state = 562}, + [6650] = {.lex_state = 428}, + [6651] = {.lex_state = 428}, + [6652] = {.lex_state = 510}, + [6653] = {.lex_state = 562}, + [6654] = {.lex_state = 428}, + [6655] = {.lex_state = 428}, + [6656] = {.lex_state = 1019}, + [6657] = {.lex_state = 562}, + [6658] = {.lex_state = 428}, + [6659] = {.lex_state = 428}, + [6660] = {.lex_state = 505}, + [6661] = {.lex_state = 562}, + [6662] = {.lex_state = 428}, + [6663] = {.lex_state = 428}, + [6664] = {.lex_state = 323}, + [6665] = {.lex_state = 562}, + [6666] = {.lex_state = 428}, + [6667] = {.lex_state = 428}, + [6668] = {.lex_state = 323}, + [6669] = {.lex_state = 562}, + [6670] = {.lex_state = 428}, + [6671] = {.lex_state = 428}, + [6672] = {.lex_state = 323}, + [6673] = {.lex_state = 562}, + [6674] = {.lex_state = 428}, + [6675] = {.lex_state = 428}, + [6676] = {.lex_state = 546}, + [6677] = {.lex_state = 562}, + [6678] = {.lex_state = 428}, + [6679] = {.lex_state = 428}, + [6680] = {.lex_state = 323}, + [6681] = {.lex_state = 562}, + [6682] = {.lex_state = 428}, + [6683] = {.lex_state = 428}, + [6684] = {.lex_state = 134}, + [6685] = {.lex_state = 562}, + [6686] = {.lex_state = 428}, + [6687] = {.lex_state = 428}, + [6688] = {.lex_state = 1019}, + [6689] = {.lex_state = 562}, + [6690] = {.lex_state = 428}, + [6691] = {.lex_state = 428}, + [6692] = {.lex_state = 1019}, + [6693] = {.lex_state = 562}, + [6694] = {.lex_state = 428}, + [6695] = {.lex_state = 428}, + [6696] = {.lex_state = 323}, + [6697] = {.lex_state = 562}, + [6698] = {.lex_state = 428}, + [6699] = {.lex_state = 428}, + [6700] = {.lex_state = 323}, + [6701] = {.lex_state = 323}, + [6702] = {.lex_state = 428}, + [6703] = {.lex_state = 428}, + [6704] = {.lex_state = 562}, + [6705] = {.lex_state = 428}, + [6706] = {.lex_state = 428}, + [6707] = {.lex_state = 562}, + [6708] = {.lex_state = 428}, + [6709] = {.lex_state = 428}, + [6710] = {.lex_state = 562}, + [6711] = {.lex_state = 428}, + [6712] = {.lex_state = 428}, + [6713] = {.lex_state = 428}, + [6714] = {.lex_state = 428}, + [6715] = {.lex_state = 428}, + [6716] = {.lex_state = 428}, + [6717] = {.lex_state = 428}, + [6718] = {.lex_state = 428}, + [6719] = {.lex_state = 428}, + [6720] = {.lex_state = 428}, + [6721] = {.lex_state = 546}, + [6722] = {.lex_state = 1019}, + [6723] = {.lex_state = 1019}, + [6724] = {.lex_state = 488}, + [6725] = {.lex_state = 510}, + [6726] = {.lex_state = 1059}, + [6727] = {.lex_state = 488}, + [6728] = {.lex_state = 1019}, + [6729] = {.lex_state = 546}, + [6730] = {.lex_state = 323}, + [6731] = {.lex_state = 430}, + [6732] = {.lex_state = 1019}, + [6733] = {.lex_state = 323}, + [6734] = {.lex_state = 1019}, + [6735] = {.lex_state = 1019}, + [6736] = {.lex_state = 1019}, + [6737] = {.lex_state = 1019}, + [6738] = {.lex_state = 323}, + [6739] = {.lex_state = 1019}, + [6740] = {.lex_state = 1019}, + [6741] = {.lex_state = 323}, + [6742] = {.lex_state = 1059}, + [6743] = {.lex_state = 323}, + [6744] = {.lex_state = 323}, + [6745] = {.lex_state = 1019}, + [6746] = {.lex_state = 1019}, + [6747] = {.lex_state = 323}, + [6748] = {.lex_state = 323}, + [6749] = {.lex_state = 323}, + [6750] = {.lex_state = 1019}, + [6751] = {.lex_state = 1019}, + [6752] = {.lex_state = 1019}, + [6753] = {.lex_state = 1019}, + [6754] = {.lex_state = 1019}, + [6755] = {.lex_state = 1019}, + [6756] = {.lex_state = 562}, + [6757] = {.lex_state = 1019}, + [6758] = {.lex_state = 1019}, + [6759] = {.lex_state = 323}, + [6760] = {.lex_state = 562}, + [6761] = {.lex_state = 562}, + [6762] = {.lex_state = 428}, + [6763] = {.lex_state = 578}, + [6764] = {.lex_state = 1019}, + [6765] = {.lex_state = 1019}, + [6766] = {.lex_state = 505}, + [6767] = {.lex_state = 1019}, + [6768] = {.lex_state = 1019}, + [6769] = {.lex_state = 508}, + [6770] = {.lex_state = 510}, + [6771] = {.lex_state = 428}, + [6772] = {.lex_state = 159}, + [6773] = {.lex_state = 562}, + [6774] = {.lex_state = 1019}, + [6775] = {.lex_state = 1019}, + [6776] = {.lex_state = 428}, + [6777] = {.lex_state = 428}, + [6778] = {.lex_state = 1019}, + [6779] = {.lex_state = 1019}, + [6780] = {.lex_state = 505}, + [6781] = {.lex_state = 578}, + [6782] = {.lex_state = 1019}, + [6783] = {.lex_state = 1019}, + [6784] = {.lex_state = 1019}, + [6785] = {.lex_state = 579}, + [6786] = {.lex_state = 512}, + [6787] = {.lex_state = 512}, + [6788] = {.lex_state = 428}, + [6789] = {.lex_state = 556}, + [6790] = {.lex_state = 428}, + [6791] = {.lex_state = 508}, + [6792] = {.lex_state = 488}, + [6793] = {.lex_state = 323}, + [6794] = {.lex_state = 1019}, + [6795] = {.lex_state = 323}, + [6796] = {.lex_state = 505}, + [6797] = {.lex_state = 1019}, + [6798] = {.lex_state = 323}, + [6799] = {.lex_state = 323}, + [6800] = {.lex_state = 323}, + [6801] = {.lex_state = 323}, + [6802] = {.lex_state = 134}, + [6803] = {.lex_state = 323}, + [6804] = {.lex_state = 1059}, + [6805] = {.lex_state = 1059}, + [6806] = {.lex_state = 582}, + [6807] = {.lex_state = 1059}, + [6808] = {.lex_state = 323}, + [6809] = {.lex_state = 323}, + [6810] = {.lex_state = 505}, + [6811] = {.lex_state = 1019}, + [6812] = {.lex_state = 1019}, + [6813] = {.lex_state = 1019}, + [6814] = {.lex_state = 1019}, + [6815] = {.lex_state = 323}, + [6816] = {.lex_state = 323}, + [6817] = {.lex_state = 323}, + [6818] = {.lex_state = 323}, + [6819] = {.lex_state = 323}, + [6820] = {.lex_state = 323}, + [6821] = {.lex_state = 323}, + [6822] = {.lex_state = 323}, + [6823] = {.lex_state = 323}, + [6824] = {.lex_state = 323}, + [6825] = {.lex_state = 562}, + [6826] = {.lex_state = 562}, + [6827] = {.lex_state = 1019}, + [6828] = {.lex_state = 1019}, + [6829] = {.lex_state = 1019}, + [6830] = {.lex_state = 1019}, + [6831] = {.lex_state = 323}, + [6832] = {.lex_state = 505}, + [6833] = {.lex_state = 1019}, + [6834] = {.lex_state = 562}, + [6835] = {.lex_state = 1019}, + [6836] = {.lex_state = 1019}, + [6837] = {.lex_state = 1019}, + [6838] = {.lex_state = 1019}, + [6839] = {.lex_state = 323}, + [6840] = {.lex_state = 323}, + [6841] = {.lex_state = 403}, + [6842] = {.lex_state = 428}, + [6843] = {.lex_state = 1019}, + [6844] = {.lex_state = 403}, + [6845] = {.lex_state = 323}, + [6846] = {.lex_state = 323}, + [6847] = {.lex_state = 323}, + [6848] = {.lex_state = 579}, + [6849] = {.lex_state = 1019}, + [6850] = {.lex_state = 428}, + [6851] = {.lex_state = 323}, + [6852] = {.lex_state = 510}, + [6853] = {.lex_state = 1019}, + [6854] = {.lex_state = 1019}, + [6855] = {.lex_state = 1019}, + [6856] = {.lex_state = 556}, + [6857] = {.lex_state = 428}, + [6858] = {.lex_state = 1019}, + [6859] = {.lex_state = 1019}, + [6860] = {.lex_state = 1019}, + [6861] = {.lex_state = 428}, + [6862] = {.lex_state = 510}, + [6863] = {.lex_state = 556}, + [6864] = {.lex_state = 571}, + [6865] = {.lex_state = 1019}, + [6866] = {.lex_state = 571}, + [6867] = {.lex_state = 323}, + [6868] = {.lex_state = 510}, + [6869] = {.lex_state = 323}, + [6870] = {.lex_state = 323}, + [6871] = {.lex_state = 323}, + [6872] = {.lex_state = 428}, + [6873] = {.lex_state = 510}, + [6874] = {.lex_state = 323}, + [6875] = {.lex_state = 323}, + [6876] = {.lex_state = 546}, + [6877] = {.lex_state = 323}, + [6878] = {.lex_state = 323}, + [6879] = {.lex_state = 556}, + [6880] = {.lex_state = 323}, + [6881] = {.lex_state = 556}, + [6882] = {.lex_state = 428}, + [6883] = {.lex_state = 562}, + [6884] = {.lex_state = 1059}, + [6885] = {.lex_state = 428}, + [6886] = {.lex_state = 1019}, + [6887] = {.lex_state = 510}, + [6888] = {.lex_state = 505}, + [6889] = {.lex_state = 505}, + [6890] = {.lex_state = 323}, + [6891] = {.lex_state = 1019}, + [6892] = {.lex_state = 428}, + [6893] = {.lex_state = 1019}, + [6894] = {.lex_state = 562}, + [6895] = {.lex_state = 1019}, + [6896] = {.lex_state = 430}, + [6897] = {.lex_state = 1019}, + [6898] = {.lex_state = 1019}, + [6899] = {.lex_state = 428}, + [6900] = {.lex_state = 323}, + [6901] = {.lex_state = 323}, + [6902] = {.lex_state = 323}, + [6903] = {.lex_state = 323}, + [6904] = {.lex_state = 323}, + [6905] = {.lex_state = 562}, + [6906] = {.lex_state = 1019}, + [6907] = {.lex_state = 1019}, + [6908] = {.lex_state = 571}, + [6909] = {.lex_state = 428}, + [6910] = {.lex_state = 1019}, + [6911] = {.lex_state = 323}, + [6912] = {.lex_state = 1019}, + [6913] = {.lex_state = 166}, + [6914] = {.lex_state = 166}, + [6915] = {.lex_state = 1019}, + [6916] = {.lex_state = 1019}, + [6917] = {.lex_state = 1019}, + [6918] = {.lex_state = 323}, + [6919] = {.lex_state = 323}, + [6920] = {.lex_state = 428}, + [6921] = {.lex_state = 1019}, + [6922] = {.lex_state = 1019}, + [6923] = {.lex_state = 323}, + [6924] = {.lex_state = 1019}, + [6925] = {.lex_state = 323}, + [6926] = {.lex_state = 562}, + [6927] = {.lex_state = 1019}, + [6928] = {.lex_state = 428}, + [6929] = {.lex_state = 562}, + [6930] = {.lex_state = 510}, + [6931] = {.lex_state = 558}, + [6932] = {.lex_state = 469}, + [6933] = {.lex_state = 1019}, + [6934] = {.lex_state = 1019}, + [6935] = {.lex_state = 1019}, + [6936] = {.lex_state = 1019}, + [6937] = {.lex_state = 430}, + [6938] = {.lex_state = 1019}, + [6939] = {.lex_state = 1019}, + [6940] = {.lex_state = 1019}, + [6941] = {.lex_state = 452}, + [6942] = {.lex_state = 558}, + [6943] = {.lex_state = 428}, + [6944] = {.lex_state = 582}, + [6945] = {.lex_state = 54}, + [6946] = {.lex_state = 562}, + [6947] = {.lex_state = 382}, + [6948] = {.lex_state = 323}, + [6949] = {.lex_state = 1019}, + [6950] = {.lex_state = 1018}, + [6951] = {.lex_state = 1019}, + [6952] = {.lex_state = 1019}, + [6953] = {.lex_state = 1019}, + [6954] = {.lex_state = 511}, + [6955] = {.lex_state = 511}, + [6956] = {.lex_state = 1019}, + [6957] = {.lex_state = 1018}, + [6958] = {.lex_state = 1018}, + [6959] = {.lex_state = 211}, + [6960] = {.lex_state = 511}, + [6961] = {.lex_state = 1019}, + [6962] = {.lex_state = 323}, + [6963] = {.lex_state = 557}, + [6964] = {.lex_state = 323}, + [6965] = {.lex_state = 323}, + [6966] = {.lex_state = 323}, + [6967] = {.lex_state = 323}, + [6968] = {.lex_state = 323}, + [6969] = {.lex_state = 323}, + [6970] = {.lex_state = 557}, + [6971] = {.lex_state = 511}, + [6972] = {.lex_state = 323}, + [6973] = {.lex_state = 147}, + [6974] = {.lex_state = 511}, + [6975] = {.lex_state = 1018}, + [6976] = {.lex_state = 323}, + [6977] = {.lex_state = 323}, + [6978] = {.lex_state = 1018}, + [6979] = {.lex_state = 999}, + [6980] = {.lex_state = 323}, + [6981] = {.lex_state = 1019}, + [6982] = {.lex_state = 511}, + [6983] = {.lex_state = 211}, + [6984] = {.lex_state = 211}, + [6985] = {.lex_state = 511}, + [6986] = {.lex_state = 323}, + [6987] = {.lex_state = 1019}, + [6988] = {.lex_state = 1019}, + [6989] = {.lex_state = 323}, + [6990] = {.lex_state = 323}, + [6991] = {.lex_state = 323}, + [6992] = {.lex_state = 511}, + [6993] = {.lex_state = 323}, + [6994] = {.lex_state = 1019}, + [6995] = {.lex_state = 511}, + [6996] = {.lex_state = 323}, + [6997] = {.lex_state = 323}, + [6998] = {.lex_state = 323}, + [6999] = {.lex_state = 323}, + [7000] = {.lex_state = 1019}, + [7001] = {.lex_state = 1019}, + [7002] = {.lex_state = 1019}, + [7003] = {.lex_state = 1019}, + [7004] = {.lex_state = 1019}, + [7005] = {.lex_state = 1019}, + [7006] = {.lex_state = 1018}, + [7007] = {.lex_state = 1019}, + [7008] = {.lex_state = 576}, + [7009] = {.lex_state = 1019}, + [7010] = {.lex_state = 511}, + [7011] = {.lex_state = 147}, + [7012] = {.lex_state = 1019}, + [7013] = {.lex_state = 1019}, + [7014] = {.lex_state = 382}, + [7015] = {.lex_state = 323}, + [7016] = {.lex_state = 511}, + [7017] = {.lex_state = 34}, + [7018] = {.lex_state = 572}, + [7019] = {.lex_state = 323}, + [7020] = {.lex_state = 323}, + [7021] = {.lex_state = 323}, + [7022] = {.lex_state = 323}, + [7023] = {.lex_state = 323}, + [7024] = {.lex_state = 557}, + [7025] = {.lex_state = 323}, + [7026] = {.lex_state = 323}, + [7027] = {.lex_state = 323}, + [7028] = {.lex_state = 470}, + [7029] = {.lex_state = 1019}, + [7030] = {.lex_state = 1019}, + [7031] = {.lex_state = 557}, + [7032] = {.lex_state = 1019}, + [7033] = {.lex_state = 403}, + [7034] = {.lex_state = 511}, + [7035] = {.lex_state = 323}, + [7036] = {.lex_state = 323}, + [7037] = {.lex_state = 511}, + [7038] = {.lex_state = 323}, + [7039] = {.lex_state = 323}, + [7040] = {.lex_state = 323}, + [7041] = {.lex_state = 323}, + [7042] = {.lex_state = 323}, + [7043] = {.lex_state = 323}, + [7044] = {.lex_state = 323}, + [7045] = {.lex_state = 323}, + [7046] = {.lex_state = 1019}, + [7047] = {.lex_state = 323}, + [7048] = {.lex_state = 323}, + [7049] = {.lex_state = 323}, + [7050] = {.lex_state = 323}, + [7051] = {.lex_state = 323}, + [7052] = {.lex_state = 323}, + [7053] = {.lex_state = 999}, + [7054] = {.lex_state = 557}, + [7055] = {.lex_state = 323}, + [7056] = {.lex_state = 382}, + [7057] = {.lex_state = 1019}, + [7058] = {.lex_state = 1019}, + [7059] = {.lex_state = 323}, + [7060] = {.lex_state = 1019}, + [7061] = {.lex_state = 557}, + [7062] = {.lex_state = 511}, + [7063] = {.lex_state = 451}, + [7064] = {.lex_state = 511}, + [7065] = {.lex_state = 1018}, + [7066] = {.lex_state = 323}, + [7067] = {.lex_state = 147}, + [7068] = {.lex_state = 323}, + [7069] = {.lex_state = 323}, + [7070] = {.lex_state = 323}, + [7071] = {.lex_state = 323}, + [7072] = {.lex_state = 1019}, + [7073] = {.lex_state = 1019}, + [7074] = {.lex_state = 323}, + [7075] = {.lex_state = 323}, + [7076] = {.lex_state = 1019}, + [7077] = {.lex_state = 1019}, + [7078] = {.lex_state = 323}, + [7079] = {.lex_state = 1019}, + [7080] = {.lex_state = 147}, + [7081] = {.lex_state = 147}, + [7082] = {.lex_state = 1019}, + [7083] = {.lex_state = 1018}, + [7084] = {.lex_state = 511}, + [7085] = {.lex_state = 195}, + [7086] = {.lex_state = 511}, + [7087] = {.lex_state = 323}, + [7088] = {.lex_state = 1019}, + [7089] = {.lex_state = 323}, + [7090] = {.lex_state = 323}, + [7091] = {.lex_state = 323}, + [7092] = {.lex_state = 1019}, + [7093] = {.lex_state = 323}, + [7094] = {.lex_state = 428}, + [7095] = {.lex_state = 323}, + [7096] = {.lex_state = 323}, + [7097] = {.lex_state = 550}, + [7098] = {.lex_state = 323}, + [7099] = {.lex_state = 1019}, + [7100] = {.lex_state = 34}, + [7101] = {.lex_state = 511}, + [7102] = {.lex_state = 323}, + [7103] = {.lex_state = 1019}, + [7104] = {.lex_state = 511}, + [7105] = {.lex_state = 323}, + [7106] = {.lex_state = 323}, + [7107] = {.lex_state = 323}, + [7108] = {.lex_state = 323}, + [7109] = {.lex_state = 323}, + [7110] = {.lex_state = 323}, + [7111] = {.lex_state = 323}, + [7112] = {.lex_state = 546}, + [7113] = {.lex_state = 1019}, + [7114] = {.lex_state = 323}, + [7115] = {.lex_state = 323}, + [7116] = {.lex_state = 323}, + [7117] = {.lex_state = 1019}, + [7118] = {.lex_state = 1019}, + [7119] = {.lex_state = 1018}, + [7120] = {.lex_state = 1018}, + [7121] = {.lex_state = 549}, + [7122] = {.lex_state = 38}, + [7123] = {.lex_state = 511}, + [7124] = {.lex_state = 1018}, + [7125] = {.lex_state = 1019}, + [7126] = {.lex_state = 1018}, + [7127] = {.lex_state = 511}, + [7128] = {.lex_state = 323}, + [7129] = {.lex_state = 1019}, + [7130] = {.lex_state = 323}, + [7131] = {.lex_state = 323}, + [7132] = {.lex_state = 323}, + [7133] = {.lex_state = 195}, + [7134] = {.lex_state = 323}, + [7135] = {.lex_state = 548}, + [7136] = {.lex_state = 323}, + [7137] = {.lex_state = 323}, + [7138] = {.lex_state = 323}, + [7139] = {.lex_state = 583}, + [7140] = {.lex_state = 1019}, + [7141] = {.lex_state = 1017}, + [7142] = {.lex_state = 511}, + [7143] = {.lex_state = 1019}, + [7144] = {.lex_state = 1019}, + [7145] = {.lex_state = 1018}, + [7146] = {.lex_state = 511}, + [7147] = {.lex_state = 323}, + [7148] = {.lex_state = 1019}, + [7149] = {.lex_state = 323}, + [7150] = {.lex_state = 323}, + [7151] = {.lex_state = 323}, + [7152] = {.lex_state = 1019}, + [7153] = {.lex_state = 323}, + [7154] = {.lex_state = 323}, + [7155] = {.lex_state = 323}, + [7156] = {.lex_state = 323}, + [7157] = {.lex_state = 1019}, + [7158] = {.lex_state = 323}, + [7159] = {.lex_state = 1019}, + [7160] = {.lex_state = 161}, + [7161] = {.lex_state = 1019}, + [7162] = {.lex_state = 511}, + [7163] = {.lex_state = 584}, + [7164] = {.lex_state = 323}, + [7165] = {.lex_state = 323}, + [7166] = {.lex_state = 323}, + [7167] = {.lex_state = 323}, + [7168] = {.lex_state = 34}, + [7169] = {.lex_state = 323}, + [7170] = {.lex_state = 1019}, + [7171] = {.lex_state = 323}, + [7172] = {.lex_state = 323}, + [7173] = {.lex_state = 323}, + [7174] = {.lex_state = 323}, + [7175] = {.lex_state = 1019}, + [7176] = {.lex_state = 323}, + [7177] = {.lex_state = 1019}, + [7178] = {.lex_state = 1019}, + [7179] = {.lex_state = 323}, + [7180] = {.lex_state = 323}, + [7181] = {.lex_state = 323}, + [7182] = {.lex_state = 1019}, + [7183] = {.lex_state = 323}, + [7184] = {.lex_state = 323}, + [7185] = {.lex_state = 323}, + [7186] = {.lex_state = 323}, + [7187] = {.lex_state = 38}, + [7188] = {.lex_state = 323}, + [7189] = {.lex_state = 323}, + [7190] = {.lex_state = 1019}, + [7191] = {.lex_state = 323}, + [7192] = {.lex_state = 1019}, + [7193] = {.lex_state = 1019}, + [7194] = {.lex_state = 511}, + [7195] = {.lex_state = 48}, + [7196] = {.lex_state = 48}, + [7197] = {.lex_state = 323}, + [7198] = {.lex_state = 1019}, + [7199] = {.lex_state = 34}, + [7200] = {.lex_state = 323}, + [7201] = {.lex_state = 323}, + [7202] = {.lex_state = 323}, + [7203] = {.lex_state = 323}, + [7204] = {.lex_state = 48}, + [7205] = {.lex_state = 1019}, + [7206] = {.lex_state = 323}, + [7207] = {.lex_state = 323}, + [7208] = {.lex_state = 323}, + [7209] = {.lex_state = 1019}, + [7210] = {.lex_state = 323}, + [7211] = {.lex_state = 1019}, + [7212] = {.lex_state = 1019}, + [7213] = {.lex_state = 48}, + [7214] = {.lex_state = 546}, + [7215] = {.lex_state = 323}, + [7216] = {.lex_state = 323}, + [7217] = {.lex_state = 323}, + [7218] = {.lex_state = 323}, + [7219] = {.lex_state = 510}, + [7220] = {.lex_state = 323}, + [7221] = {.lex_state = 323}, + [7222] = {.lex_state = 323}, + [7223] = {.lex_state = 1019}, + [7224] = {.lex_state = 323}, + [7225] = {.lex_state = 511}, + [7226] = {.lex_state = 584}, + [7227] = {.lex_state = 1020}, + [7228] = {.lex_state = 1019}, + [7229] = {.lex_state = 1019}, + [7230] = {.lex_state = 1019}, + [7231] = {.lex_state = 211}, + [7232] = {.lex_state = 511}, + [7233] = {.lex_state = 583}, + [7234] = {.lex_state = 323}, + [7235] = {.lex_state = 323}, + [7236] = {.lex_state = 323}, + [7237] = {.lex_state = 1019}, + [7238] = {.lex_state = 323}, + [7239] = {.lex_state = 323}, + [7240] = {.lex_state = 323}, + [7241] = {.lex_state = 145}, + [7242] = {.lex_state = 323}, + [7243] = {.lex_state = 323}, + [7244] = {.lex_state = 323}, + [7245] = {.lex_state = 323}, + [7246] = {.lex_state = 584}, + [7247] = {.lex_state = 557}, + [7248] = {.lex_state = 1019}, + [7249] = {.lex_state = 1019}, + [7250] = {.lex_state = 1019}, + [7251] = {.lex_state = 323}, + [7252] = {.lex_state = 1019}, + [7253] = {.lex_state = 1019}, + [7254] = {.lex_state = 1019}, + [7255] = {.lex_state = 147}, + [7256] = {.lex_state = 1019}, + [7257] = {.lex_state = 323}, + [7258] = {.lex_state = 1019}, + [7259] = {.lex_state = 1019}, + [7260] = {.lex_state = 1019}, + [7261] = {.lex_state = 1019}, + [7262] = {.lex_state = 1019}, + [7263] = {.lex_state = 546}, + [7264] = {.lex_state = 574}, + [7265] = {.lex_state = 323}, + [7266] = {.lex_state = 511}, + [7267] = {.lex_state = 1019}, + [7268] = {.lex_state = 323}, + [7269] = {.lex_state = 211}, + [7270] = {.lex_state = 511}, + [7271] = {.lex_state = 323}, + [7272] = {.lex_state = 1019}, + [7273] = {.lex_state = 323}, + [7274] = {.lex_state = 323}, + [7275] = {.lex_state = 1019}, + [7276] = {.lex_state = 1019}, + [7277] = {.lex_state = 1017}, + [7278] = {.lex_state = 1019}, + [7279] = {.lex_state = 1019}, + [7280] = {.lex_state = 323}, + [7281] = {.lex_state = 1019}, + [7282] = {.lex_state = 382}, + [7283] = {.lex_state = 1019}, + [7284] = {.lex_state = 323}, + [7285] = {.lex_state = 574}, + [7286] = {.lex_state = 165}, + [7287] = {.lex_state = 161}, + [7288] = {.lex_state = 323}, + [7289] = {.lex_state = 1019}, + [7290] = {.lex_state = 323}, + [7291] = {.lex_state = 165}, + [7292] = {.lex_state = 323}, + [7293] = {.lex_state = 323}, + [7294] = {.lex_state = 161}, + [7295] = {.lex_state = 161}, + [7296] = {.lex_state = 195}, + [7297] = {.lex_state = 1019}, + [7298] = {.lex_state = 1019}, + [7299] = {.lex_state = 323}, + [7300] = {.lex_state = 1019}, + [7301] = {.lex_state = 382}, + [7302] = {.lex_state = 1019}, + [7303] = {.lex_state = 323}, + [7304] = {.lex_state = 147}, + [7305] = {.lex_state = 333}, + [7306] = {.lex_state = 333}, + [7307] = {.lex_state = 1019}, + [7308] = {.lex_state = 211}, + [7309] = {.lex_state = 323}, + [7310] = {.lex_state = 1019}, + [7311] = {.lex_state = 1019}, + [7312] = {.lex_state = 1019}, + [7313] = {.lex_state = 1019}, + [7314] = {.lex_state = 1019}, + [7315] = {.lex_state = 572}, + [7316] = {.lex_state = 323}, + [7317] = {.lex_state = 1019}, + [7318] = {.lex_state = 546}, + [7319] = {.lex_state = 511}, + [7320] = {.lex_state = 1019}, + [7321] = {.lex_state = 1019}, + [7322] = {.lex_state = 1019}, + [7323] = {.lex_state = 1019}, + [7324] = {.lex_state = 1019}, + [7325] = {.lex_state = 1019}, + [7326] = {.lex_state = 1019}, + [7327] = {.lex_state = 1019}, + [7328] = {.lex_state = 323}, + [7329] = {.lex_state = 161}, + [7330] = {.lex_state = 1019}, + [7331] = {.lex_state = 1019}, + [7332] = {.lex_state = 211}, + [7333] = {.lex_state = 511}, + [7334] = {.lex_state = 323}, + [7335] = {.lex_state = 1019}, + [7336] = {.lex_state = 511}, + [7337] = {.lex_state = 505}, + [7338] = {.lex_state = 1019}, + [7339] = {.lex_state = 323}, + [7340] = {.lex_state = 323}, + [7341] = {.lex_state = 1019}, + [7342] = {.lex_state = 323}, + [7343] = {.lex_state = 323}, + [7344] = {.lex_state = 323}, + [7345] = {.lex_state = 323}, + [7346] = {.lex_state = 323}, + [7347] = {.lex_state = 323}, + [7348] = {.lex_state = 323}, + [7349] = {.lex_state = 323}, + [7350] = {.lex_state = 323}, + [7351] = {.lex_state = 323}, + [7352] = {.lex_state = 323}, + [7353] = {.lex_state = 323}, + [7354] = {.lex_state = 323}, + [7355] = {.lex_state = 574}, + [7356] = {.lex_state = 1019}, + [7357] = {.lex_state = 574}, + [7358] = {.lex_state = 382}, + [7359] = {.lex_state = 1019}, + [7360] = {.lex_state = 1019}, + [7361] = {.lex_state = 382}, + [7362] = {.lex_state = 323}, + [7363] = {.lex_state = 1019}, + [7364] = {.lex_state = 323}, + [7365] = {.lex_state = 1019}, + [7366] = {.lex_state = 1019}, + [7367] = {.lex_state = 1019}, + [7368] = {.lex_state = 1019}, + [7369] = {.lex_state = 1019}, + [7370] = {.lex_state = 161}, + [7371] = {.lex_state = 382}, + [7372] = {.lex_state = 323}, + [7373] = {.lex_state = 382}, + [7374] = {.lex_state = 1019}, + [7375] = {.lex_state = 382}, + [7376] = {.lex_state = 1019}, + [7377] = {.lex_state = 1019}, + [7378] = {.lex_state = 1019}, + [7379] = {.lex_state = 1019}, + [7380] = {.lex_state = 382}, + [7381] = {.lex_state = 546}, + [7382] = {.lex_state = 382}, + [7383] = {.lex_state = 1019}, + [7384] = {.lex_state = 1019}, + [7385] = {.lex_state = 1019}, + [7386] = {.lex_state = 1019}, + [7387] = {.lex_state = 1019}, + [7388] = {.lex_state = 382}, + [7389] = {.lex_state = 382}, + [7390] = {.lex_state = 1019}, + [7391] = {.lex_state = 1019}, + [7392] = {.lex_state = 1019}, + [7393] = {.lex_state = 1019}, + [7394] = {.lex_state = 1019}, + [7395] = {.lex_state = 511}, + [7396] = {.lex_state = 382}, + [7397] = {.lex_state = 1019}, + [7398] = {.lex_state = 382}, + [7399] = {.lex_state = 1019}, + [7400] = {.lex_state = 1019}, + [7401] = {.lex_state = 1019}, + [7402] = {.lex_state = 1019}, + [7403] = {.lex_state = 1019}, + [7404] = {.lex_state = 382}, + [7405] = {.lex_state = 382}, + [7406] = {.lex_state = 1019}, + [7407] = {.lex_state = 1019}, + [7408] = {.lex_state = 1019}, + [7409] = {.lex_state = 1019}, + [7410] = {.lex_state = 1019}, + [7411] = {.lex_state = 382}, + [7412] = {.lex_state = 323}, + [7413] = {.lex_state = 382}, + [7414] = {.lex_state = 211}, + [7415] = {.lex_state = 1019}, + [7416] = {.lex_state = 1019}, + [7417] = {.lex_state = 1019}, + [7418] = {.lex_state = 1019}, + [7419] = {.lex_state = 382}, + [7420] = {.lex_state = 511}, + [7421] = {.lex_state = 382}, + [7422] = {.lex_state = 1019}, + [7423] = {.lex_state = 1019}, + [7424] = {.lex_state = 1019}, + [7425] = {.lex_state = 1019}, + [7426] = {.lex_state = 382}, + [7427] = {.lex_state = 323}, + [7428] = {.lex_state = 382}, + [7429] = {.lex_state = 1019}, + [7430] = {.lex_state = 1019}, + [7431] = {.lex_state = 1019}, + [7432] = {.lex_state = 1019}, + [7433] = {.lex_state = 1019}, + [7434] = {.lex_state = 382}, + [7435] = {.lex_state = 382}, + [7436] = {.lex_state = 323}, + [7437] = {.lex_state = 1019}, + [7438] = {.lex_state = 1019}, + [7439] = {.lex_state = 323}, + [7440] = {.lex_state = 1019}, + [7441] = {.lex_state = 1019}, + [7442] = {.lex_state = 323}, + [7443] = {.lex_state = 382}, + [7444] = {.lex_state = 323}, + [7445] = {.lex_state = 382}, + [7446] = {.lex_state = 1019}, + [7447] = {.lex_state = 1019}, + [7448] = {.lex_state = 1019}, + [7449] = {.lex_state = 1019}, + [7450] = {.lex_state = 382}, + [7451] = {.lex_state = 382}, + [7452] = {.lex_state = 323}, + [7453] = {.lex_state = 1019}, + [7454] = {.lex_state = 1019}, + [7455] = {.lex_state = 1019}, + [7456] = {.lex_state = 1019}, + [7457] = {.lex_state = 1019}, + [7458] = {.lex_state = 323}, + [7459] = {.lex_state = 382}, + [7460] = {.lex_state = 323}, + [7461] = {.lex_state = 1019}, + [7462] = {.lex_state = 1019}, + [7463] = {.lex_state = 1019}, + [7464] = {.lex_state = 1019}, + [7465] = {.lex_state = 382}, + [7466] = {.lex_state = 382}, + [7467] = {.lex_state = 1019}, + [7468] = {.lex_state = 1019}, + [7469] = {.lex_state = 323}, + [7470] = {.lex_state = 1019}, + [7471] = {.lex_state = 1019}, + [7472] = {.lex_state = 382}, + [7473] = {.lex_state = 382}, + [7474] = {.lex_state = 211}, + [7475] = {.lex_state = 1019}, + [7476] = {.lex_state = 1019}, + [7477] = {.lex_state = 195}, + [7478] = {.lex_state = 1019}, + [7479] = {.lex_state = 1019}, + [7480] = {.lex_state = 382}, + [7481] = {.lex_state = 382}, + [7482] = {.lex_state = 546}, + [7483] = {.lex_state = 1019}, + [7484] = {.lex_state = 1019}, + [7485] = {.lex_state = 1018}, + [7486] = {.lex_state = 1019}, + [7487] = {.lex_state = 1019}, + [7488] = {.lex_state = 382}, + [7489] = {.lex_state = 382}, + [7490] = {.lex_state = 1019}, + [7491] = {.lex_state = 1019}, + [7492] = {.lex_state = 1019}, + [7493] = {.lex_state = 1019}, + [7494] = {.lex_state = 1019}, + [7495] = {.lex_state = 382}, + [7496] = {.lex_state = 382}, + [7497] = {.lex_state = 1019}, + [7498] = {.lex_state = 1019}, + [7499] = {.lex_state = 1019}, + [7500] = {.lex_state = 1019}, + [7501] = {.lex_state = 382}, + [7502] = {.lex_state = 382}, + [7503] = {.lex_state = 1019}, + [7504] = {.lex_state = 1019}, + [7505] = {.lex_state = 1019}, + [7506] = {.lex_state = 1019}, + [7507] = {.lex_state = 1019}, + [7508] = {.lex_state = 382}, + [7509] = {.lex_state = 382}, + [7510] = {.lex_state = 1019}, + [7511] = {.lex_state = 1019}, + [7512] = {.lex_state = 1019}, + [7513] = {.lex_state = 1019}, + [7514] = {.lex_state = 1019}, + [7515] = {.lex_state = 323}, + [7516] = {.lex_state = 1019}, + [7517] = {.lex_state = 511}, + [7518] = {.lex_state = 323}, + [7519] = {.lex_state = 1018}, + [7520] = {.lex_state = 382}, + [7521] = {.lex_state = 1019}, + [7522] = {.lex_state = 1019}, + [7523] = {.lex_state = 211}, + [7524] = {.lex_state = 511}, + [7525] = {.lex_state = 1019}, + [7526] = {.lex_state = 323}, + [7527] = {.lex_state = 546}, + [7528] = {.lex_state = 557}, + [7529] = {.lex_state = 323}, + [7530] = {.lex_state = 323}, + [7531] = {.lex_state = 323}, + [7532] = {.lex_state = 574}, + [7533] = {.lex_state = 323}, + [7534] = {.lex_state = 323}, + [7535] = {.lex_state = 557}, + [7536] = {.lex_state = 323}, + [7537] = {.lex_state = 557}, + [7538] = {.lex_state = 323}, + [7539] = {.lex_state = 323}, + [7540] = {.lex_state = 403}, + [7541] = {.lex_state = 321}, + [7542] = {.lex_state = 1019}, + [7543] = {.lex_state = 1019}, + [7544] = {.lex_state = 36}, + [7545] = {.lex_state = 580}, + [7546] = {.lex_state = 1019}, + [7547] = {.lex_state = 3625}, + [7548] = {.lex_state = 323}, + [7549] = {.lex_state = 5020}, + [7550] = {.lex_state = 1020}, + [7551] = {.lex_state = 1019}, + [7552] = {.lex_state = 1019}, + [7553] = {.lex_state = 1019}, + [7554] = {.lex_state = 1019}, + [7555] = {.lex_state = 1019}, + [7556] = {.lex_state = 1019}, + [7557] = {.lex_state = 5020}, + [7558] = {.lex_state = 1019}, + [7559] = {.lex_state = 1019}, + [7560] = {.lex_state = 580}, + [7561] = {.lex_state = 5018}, + [7562] = {.lex_state = 5018}, + [7563] = {.lex_state = 1017}, + [7564] = {.lex_state = 5018}, + [7565] = {.lex_state = 321}, + [7566] = {.lex_state = 159}, + [7567] = {.lex_state = 5018}, + [7568] = {.lex_state = 1019}, + [7569] = {.lex_state = 195}, + [7570] = {.lex_state = 999}, + [7571] = {.lex_state = 1020}, + [7572] = {.lex_state = 1019}, + [7573] = {.lex_state = 159}, + [7574] = {.lex_state = 1019}, + [7575] = {.lex_state = 195}, + [7576] = {.lex_state = 5022}, + [7577] = {.lex_state = 1019}, + [7578] = {.lex_state = 5022}, + [7579] = {.lex_state = 5020}, + [7580] = {.lex_state = 165}, + [7581] = {.lex_state = 165}, + [7582] = {.lex_state = 323}, + [7583] = {.lex_state = 5018}, + [7584] = {.lex_state = 36}, + [7585] = {.lex_state = 5018}, + [7586] = {.lex_state = 5018}, + [7587] = {.lex_state = 321}, + [7588] = {.lex_state = 323}, + [7589] = {.lex_state = 1019}, + [7590] = {.lex_state = 5018}, + [7591] = {.lex_state = 323}, + [7592] = {.lex_state = 321}, + [7593] = {.lex_state = 323}, + [7594] = {.lex_state = 5018}, + [7595] = {.lex_state = 323}, + [7596] = {.lex_state = 321}, + [7597] = {.lex_state = 5018}, + [7598] = {.lex_state = 5018}, + [7599] = {.lex_state = 5022}, + [7600] = {.lex_state = 5018}, + [7601] = {.lex_state = 1019}, + [7602] = {.lex_state = 321}, + [7603] = {.lex_state = 5022}, + [7604] = {.lex_state = 1019}, + [7605] = {.lex_state = 323}, + [7606] = {.lex_state = 1019}, + [7607] = {.lex_state = 580}, + [7608] = {.lex_state = 560}, + [7609] = {.lex_state = 5018}, + [7610] = {.lex_state = 1019}, + [7611] = {.lex_state = 5018}, + [7612] = {.lex_state = 5018}, + [7613] = {.lex_state = 5018}, + [7614] = {.lex_state = 5020}, + [7615] = {.lex_state = 5018}, + [7616] = {.lex_state = 5018}, + [7617] = {.lex_state = 195}, + [7618] = {.lex_state = 1019}, + [7619] = {.lex_state = 5018}, + [7620] = {.lex_state = 5018}, + [7621] = {.lex_state = 5018}, + [7622] = {.lex_state = 323}, + [7623] = {.lex_state = 441}, + [7624] = {.lex_state = 323}, + [7625] = {.lex_state = 5022}, + [7626] = {.lex_state = 5018}, + [7627] = {.lex_state = 1019}, + [7628] = {.lex_state = 5022}, + [7629] = {.lex_state = 323}, + [7630] = {.lex_state = 5018}, + [7631] = {.lex_state = 1020}, + [7632] = {.lex_state = 511}, + [7633] = {.lex_state = 1019}, + [7634] = {.lex_state = 5018}, + [7635] = {.lex_state = 1019}, + [7636] = {.lex_state = 195}, + [7637] = {.lex_state = 323}, + [7638] = {.lex_state = 323}, + [7639] = {.lex_state = 1019}, + [7640] = {.lex_state = 5020}, + [7641] = {.lex_state = 1019}, + [7642] = {.lex_state = 5018}, + [7643] = {.lex_state = 323}, + [7644] = {.lex_state = 321}, + [7645] = {.lex_state = 195}, + [7646] = {.lex_state = 54}, + [7647] = {.lex_state = 195}, + [7648] = {.lex_state = 1019}, + [7649] = {.lex_state = 321}, + [7650] = {.lex_state = 5020}, + [7651] = {.lex_state = 195}, + [7652] = {.lex_state = 321}, + [7653] = {.lex_state = 321}, + [7654] = {.lex_state = 321}, + [7655] = {.lex_state = 321}, + [7656] = {.lex_state = 5018}, + [7657] = {.lex_state = 195}, + [7658] = {.lex_state = 1019}, + [7659] = {.lex_state = 323}, + [7660] = {.lex_state = 321}, + [7661] = {.lex_state = 5020}, + [7662] = {.lex_state = 1019}, + [7663] = {.lex_state = 1019}, + [7664] = {.lex_state = 1019}, + [7665] = {.lex_state = 321}, + [7666] = {.lex_state = 1019}, + [7667] = {.lex_state = 583}, + [7668] = {.lex_state = 580}, + [7669] = {.lex_state = 321}, + [7670] = {.lex_state = 580}, + [7671] = {.lex_state = 1019}, + [7672] = {.lex_state = 321}, + [7673] = {.lex_state = 323}, + [7674] = {.lex_state = 211}, + [7675] = {.lex_state = 5020}, + [7676] = {.lex_state = 1019}, + [7677] = {.lex_state = 5018}, + [7678] = {.lex_state = 5018}, + [7679] = {.lex_state = 1019}, + [7680] = {.lex_state = 323}, + [7681] = {.lex_state = 441}, + [7682] = {.lex_state = 5018}, + [7683] = {.lex_state = 5018}, + [7684] = {.lex_state = 572}, + [7685] = {.lex_state = 5020}, + [7686] = {.lex_state = 441}, + [7687] = {.lex_state = 1019}, + [7688] = {.lex_state = 1019}, + [7689] = {.lex_state = 159}, + [7690] = {.lex_state = 1019}, + [7691] = {.lex_state = 323}, + [7692] = {.lex_state = 1019}, + [7693] = {.lex_state = 1019}, + [7694] = {.lex_state = 1019}, + [7695] = {.lex_state = 323}, + [7696] = {.lex_state = 581}, + [7697] = {.lex_state = 165}, + [7698] = {.lex_state = 323}, + [7699] = {.lex_state = 5018}, + [7700] = {.lex_state = 5018}, + [7701] = {.lex_state = 1019}, + [7702] = {.lex_state = 323}, + [7703] = {.lex_state = 5018}, + [7704] = {.lex_state = 5018}, + [7705] = {.lex_state = 5018}, + [7706] = {.lex_state = 321}, + [7707] = {.lex_state = 1019}, + [7708] = {.lex_state = 5018}, + [7709] = {.lex_state = 5022}, + [7710] = {.lex_state = 1019}, + [7711] = {.lex_state = 5018}, + [7712] = {.lex_state = 1020}, + [7713] = {.lex_state = 1019}, + [7714] = {.lex_state = 1019}, + [7715] = {.lex_state = 323}, + [7716] = {.lex_state = 323}, + [7717] = {.lex_state = 323}, + [7718] = {.lex_state = 1019}, + [7719] = {.lex_state = 5018}, + [7720] = {.lex_state = 5018}, + [7721] = {.lex_state = 5018}, + [7722] = {.lex_state = 5018}, + [7723] = {.lex_state = 323}, + [7724] = {.lex_state = 195}, + [7725] = {.lex_state = 5022}, + [7726] = {.lex_state = 5022}, + [7727] = {.lex_state = 1019}, + [7728] = {.lex_state = 1019}, + [7729] = {.lex_state = 195}, + [7730] = {.lex_state = 1019}, + [7731] = {.lex_state = 36}, + [7732] = {.lex_state = 995}, + [7733] = {.lex_state = 1019}, + [7734] = {.lex_state = 1019}, + [7735] = {.lex_state = 211}, + [7736] = {.lex_state = 1019}, + [7737] = {.lex_state = 1019}, + [7738] = {.lex_state = 211}, + [7739] = {.lex_state = 1019}, + [7740] = {.lex_state = 1019}, + [7741] = {.lex_state = 211}, + [7742] = {.lex_state = 1019}, + [7743] = {.lex_state = 1019}, + [7744] = {.lex_state = 1019}, + [7745] = {.lex_state = 1017}, + [7746] = {.lex_state = 1019}, + [7747] = {.lex_state = 54}, + [7748] = {.lex_state = 1019}, + [7749] = {.lex_state = 36}, + [7750] = {.lex_state = 1019}, + [7751] = {.lex_state = 1019}, + [7752] = {.lex_state = 1019}, + [7753] = {.lex_state = 195}, + [7754] = {.lex_state = 1019}, + [7755] = {.lex_state = 1019}, + [7756] = {.lex_state = 1019}, + [7757] = {.lex_state = 1019}, + [7758] = {.lex_state = 1019}, + [7759] = {.lex_state = 1019}, + [7760] = {.lex_state = 1019}, + [7761] = {.lex_state = 195}, + [7762] = {.lex_state = 1019}, + [7763] = {.lex_state = 1019}, + [7764] = {.lex_state = 161}, + [7765] = {.lex_state = 211}, + [7766] = {.lex_state = 1019}, + [7767] = {.lex_state = 1019}, + [7768] = {.lex_state = 1127}, + [7769] = {.lex_state = 1019}, + [7770] = {.lex_state = 570}, + [7771] = {.lex_state = 1019}, + [7772] = {.lex_state = 1019}, + [7773] = {.lex_state = 1019}, + [7774] = {.lex_state = 161}, + [7775] = {.lex_state = 1019}, + [7776] = {.lex_state = 195}, + [7777] = {.lex_state = 1019}, + [7778] = {.lex_state = 161}, + [7779] = {.lex_state = 1019}, + [7780] = {.lex_state = 1019}, + [7781] = {.lex_state = 1019}, + [7782] = {.lex_state = 1019}, + [7783] = {.lex_state = 1019}, + [7784] = {.lex_state = 1019}, + [7785] = {.lex_state = 1019}, + [7786] = {.lex_state = 1019}, + [7787] = {.lex_state = 568}, + [7788] = {.lex_state = 570}, + [7789] = {.lex_state = 36}, + [7790] = {.lex_state = 995}, + [7791] = {.lex_state = 567}, + [7792] = {.lex_state = 1019}, + [7793] = {.lex_state = 1019}, + [7794] = {.lex_state = 1019}, + [7795] = {.lex_state = 161}, + [7796] = {.lex_state = 1019}, + [7797] = {.lex_state = 36}, + [7798] = {.lex_state = 1019}, + [7799] = {.lex_state = 54}, + [7800] = {.lex_state = 1019}, + [7801] = {.lex_state = 1019}, + [7802] = {.lex_state = 583}, + [7803] = {.lex_state = 569}, + [7804] = {.lex_state = 159}, + [7805] = {.lex_state = 1019}, + [7806] = {.lex_state = 1019}, + [7807] = {.lex_state = 451}, + [7808] = {.lex_state = 1019}, + [7809] = {.lex_state = 1019}, + [7810] = {.lex_state = 36}, + [7811] = {.lex_state = 1019}, + [7812] = {.lex_state = 161}, + [7813] = {.lex_state = 581}, + [7814] = {.lex_state = 1019}, + [7815] = {.lex_state = 1019}, + [7816] = {.lex_state = 195}, + [7817] = {.lex_state = 1017}, + [7818] = {.lex_state = 1019}, + [7819] = {.lex_state = 161}, + [7820] = {.lex_state = 1019}, + [7821] = {.lex_state = 1019}, + [7822] = {.lex_state = 1019}, + [7823] = {.lex_state = 1019}, + [7824] = {.lex_state = 1019}, + [7825] = {.lex_state = 211}, + [7826] = {.lex_state = 161}, + [7827] = {.lex_state = 1019}, + [7828] = {.lex_state = 1019}, + [7829] = {.lex_state = 1019}, + [7830] = {.lex_state = 1019}, + [7831] = {.lex_state = 1019}, + [7832] = {.lex_state = 581}, + [7833] = {.lex_state = 1019}, + [7834] = {.lex_state = 1019}, + [7835] = {.lex_state = 54}, + [7836] = {.lex_state = 1019}, + [7837] = {.lex_state = 54}, + [7838] = {.lex_state = 1019}, + [7839] = {.lex_state = 195}, + [7840] = {.lex_state = 161}, + [7841] = {.lex_state = 1019}, + [7842] = {.lex_state = 1019}, + [7843] = {.lex_state = 211}, + [7844] = {.lex_state = 1019}, + [7845] = {.lex_state = 1019}, + [7846] = {.lex_state = 57}, + [7847] = {.lex_state = 1019}, + [7848] = {.lex_state = 161}, + [7849] = {.lex_state = 1017}, + [7850] = {.lex_state = 211}, + [7851] = {.lex_state = 1019}, + [7852] = {.lex_state = 161}, + [7853] = {.lex_state = 1019}, + [7854] = {.lex_state = 1019}, + [7855] = {.lex_state = 1019}, + [7856] = {.lex_state = 1019}, + [7857] = {.lex_state = 1019}, + [7858] = {.lex_state = 568}, + [7859] = {.lex_state = 1019}, + [7860] = {.lex_state = 1019}, + [7861] = {.lex_state = 1019}, + [7862] = {.lex_state = 57}, + [7863] = {.lex_state = 1019}, + [7864] = {.lex_state = 161}, + [7865] = {.lex_state = 195}, + [7866] = {.lex_state = 1019}, + [7867] = {.lex_state = 1019}, + [7868] = {.lex_state = 1019}, + [7869] = {.lex_state = 1019}, + [7870] = {.lex_state = 1019}, + [7871] = {.lex_state = 1019}, + [7872] = {.lex_state = 36}, + [7873] = {.lex_state = 1019}, + [7874] = {.lex_state = 321}, + [7875] = {.lex_state = 1019}, + [7876] = {.lex_state = 161}, + [7877] = {.lex_state = 1019}, + [7878] = {.lex_state = 1019}, + [7879] = {.lex_state = 1019}, + [7880] = {.lex_state = 1019}, + [7881] = {.lex_state = 161}, + [7882] = {.lex_state = 570}, + [7883] = {.lex_state = 5020}, + [7884] = {.lex_state = 1019}, + [7885] = {.lex_state = 36}, + [7886] = {.lex_state = 264}, + [7887] = {.lex_state = 5018}, + [7888] = {.lex_state = 161}, + [7889] = {.lex_state = 54}, + [7890] = {.lex_state = 195}, + [7891] = {.lex_state = 569}, + [7892] = {.lex_state = 1019}, + [7893] = {.lex_state = 1019}, + [7894] = {.lex_state = 195}, + [7895] = {.lex_state = 1019}, + [7896] = {.lex_state = 1019}, + [7897] = {.lex_state = 1019}, + [7898] = {.lex_state = 1019}, + [7899] = {.lex_state = 161}, + [7900] = {.lex_state = 1019}, + [7901] = {.lex_state = 1020}, + [7902] = {.lex_state = 1019}, + [7903] = {.lex_state = 1019}, + [7904] = {.lex_state = 1019}, + [7905] = {.lex_state = 566}, + [7906] = {.lex_state = 1019}, + [7907] = {.lex_state = 1019}, + [7908] = {.lex_state = 1019}, + [7909] = {.lex_state = 5037}, + [7910] = {.lex_state = 161}, + [7911] = {.lex_state = 195}, + [7912] = {.lex_state = 581}, + [7913] = {.lex_state = 1019}, + [7914] = {.lex_state = 1019}, + [7915] = {.lex_state = 195}, + [7916] = {.lex_state = 195}, + [7917] = {.lex_state = 1019}, + [7918] = {.lex_state = 264}, + [7919] = {.lex_state = 211}, + [7920] = {.lex_state = 5022}, + [7921] = {.lex_state = 161}, + [7922] = {.lex_state = 1019}, + [7923] = {.lex_state = 1019}, + [7924] = {.lex_state = 1019}, + [7925] = {.lex_state = 1019}, + [7926] = {.lex_state = 264}, + [7927] = {.lex_state = 211}, + [7928] = {.lex_state = 195}, + [7929] = {.lex_state = 54}, + [7930] = {.lex_state = 211}, + [7931] = {.lex_state = 1019}, + [7932] = {.lex_state = 161}, + [7933] = {.lex_state = 1020}, + [7934] = {.lex_state = 54}, + [7935] = {.lex_state = 1019}, + [7936] = {.lex_state = 1019}, + [7937] = {.lex_state = 1019}, + [7938] = {.lex_state = 1019}, + [7939] = {.lex_state = 161}, + [7940] = {.lex_state = 1019}, + [7941] = {.lex_state = 1019}, + [7942] = {.lex_state = 161}, + [7943] = {.lex_state = 1019}, + [7944] = {.lex_state = 1019}, + [7945] = {.lex_state = 54}, + [7946] = {.lex_state = 1019}, + [7947] = {.lex_state = 1019}, + [7948] = {.lex_state = 1019}, + [7949] = {.lex_state = 1019}, + [7950] = {.lex_state = 5022}, + [7951] = {.lex_state = 161}, + [7952] = {.lex_state = 1019}, + [7953] = {.lex_state = 568}, + [7954] = {.lex_state = 1019}, + [7955] = {.lex_state = 1019}, + [7956] = {.lex_state = 1019}, + [7957] = {.lex_state = 195}, + [7958] = {.lex_state = 1019}, + [7959] = {.lex_state = 1019}, + [7960] = {.lex_state = 1019}, + [7961] = {.lex_state = 1019}, + [7962] = {.lex_state = 1019}, + [7963] = {.lex_state = 1019}, + [7964] = {.lex_state = 1019}, + [7965] = {.lex_state = 568}, + [7966] = {.lex_state = 1019}, + [7967] = {.lex_state = 1019}, + [7968] = {.lex_state = 36}, + [7969] = {.lex_state = 1019}, + [7970] = {.lex_state = 5020}, + [7971] = {.lex_state = 581}, + [7972] = {.lex_state = 5018}, + [7973] = {.lex_state = 1019}, + [7974] = {.lex_state = 36}, + [7975] = {.lex_state = 1019}, + [7976] = {.lex_state = 581}, + [7977] = {.lex_state = 568}, + [7978] = {.lex_state = 1019}, + [7979] = {.lex_state = 1019}, + [7980] = {.lex_state = 1019}, + [7981] = {.lex_state = 195}, + [7982] = {.lex_state = 1019}, + [7983] = {.lex_state = 1019}, + [7984] = {.lex_state = 159}, + [7985] = {.lex_state = 1019}, + [7986] = {.lex_state = 211}, + [7987] = {.lex_state = 1019}, + [7988] = {.lex_state = 1019}, + [7989] = {.lex_state = 1019}, + [7990] = {.lex_state = 1019}, + [7991] = {.lex_state = 1019}, + [7992] = {.lex_state = 1019}, + [7993] = {.lex_state = 1019}, + [7994] = {.lex_state = 5018}, + [7995] = {.lex_state = 1019}, + [7996] = {.lex_state = 5022}, + [7997] = {.lex_state = 1019}, + [7998] = {.lex_state = 1019}, + [7999] = {.lex_state = 1019}, + [8000] = {.lex_state = 195}, + [8001] = {.lex_state = 321}, + [8002] = {.lex_state = 1019}, + [8003] = {.lex_state = 1017}, + [8004] = {.lex_state = 195}, + [8005] = {.lex_state = 211}, + [8006] = {.lex_state = 1019}, + [8007] = {.lex_state = 1019}, + [8008] = {.lex_state = 1019}, + [8009] = {.lex_state = 995}, + [8010] = {.lex_state = 1019}, + [8011] = {.lex_state = 995}, + [8012] = {.lex_state = 1019}, + [8013] = {.lex_state = 195}, + [8014] = {.lex_state = 1019}, + [8015] = {.lex_state = 568}, + [8016] = {.lex_state = 1019}, + [8017] = {.lex_state = 1019}, + [8018] = {.lex_state = 1019}, + [8019] = {.lex_state = 1019}, + [8020] = {.lex_state = 1127}, + [8021] = {.lex_state = 1019}, + [8022] = {.lex_state = 1019}, + [8023] = {.lex_state = 1019}, + [8024] = {.lex_state = 211}, + [8025] = {.lex_state = 1019}, + [8026] = {.lex_state = 161}, + [8027] = {.lex_state = 1019}, + [8028] = {.lex_state = 5020}, + [8029] = {.lex_state = 36}, + [8030] = {.lex_state = 581}, + [8031] = {.lex_state = 568}, + [8032] = {.lex_state = 195}, + [8033] = {.lex_state = 1019}, + [8034] = {.lex_state = 321}, + [8035] = {.lex_state = 1019}, + [8036] = {.lex_state = 321}, + [8037] = {.lex_state = 1019}, + [8038] = {.lex_state = 321}, + [8039] = {.lex_state = 1019}, + [8040] = {.lex_state = 321}, + [8041] = {.lex_state = 1019}, + [8042] = {.lex_state = 1019}, + [8043] = {.lex_state = 1019}, + [8044] = {.lex_state = 1019}, + [8045] = {.lex_state = 1019}, + [8046] = {.lex_state = 1019}, + [8047] = {.lex_state = 1019}, + [8048] = {.lex_state = 1019}, + [8049] = {.lex_state = 195}, + [8050] = {.lex_state = 1019}, + [8051] = {.lex_state = 195}, + [8052] = {.lex_state = 1019}, + [8053] = {.lex_state = 161}, + [8054] = {.lex_state = 264}, + [8055] = {.lex_state = 1019}, + [8056] = {.lex_state = 1019}, + [8057] = {.lex_state = 1019}, + [8058] = {.lex_state = 3625}, + [8059] = {.lex_state = 211}, + [8060] = {.lex_state = 581}, + [8061] = {(TSStateId)(-1)}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [sym_comment] = STATE(0), + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [anon_sym_POUND_BANG] = ACTIONS(1), + [anon_sym_export] = ACTIONS(1), + [anon_sym_alias] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_let] = ACTIONS(1), + [anon_sym_let_DASHenv] = ACTIONS(1), + [anon_sym_mut] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1), + [aux_sym_cmd_identifier_token1] = ACTIONS(1), + [aux_sym_cmd_identifier_token2] = ACTIONS(1), + [aux_sym_cmd_identifier_token3] = ACTIONS(1), + [aux_sym_cmd_identifier_token4] = ACTIONS(1), + [aux_sym_cmd_identifier_token5] = ACTIONS(1), + [aux_sym_cmd_identifier_token6] = ACTIONS(1), + [aux_sym_cmd_identifier_token7] = ACTIONS(1), + [aux_sym_cmd_identifier_token8] = ACTIONS(1), + [aux_sym_cmd_identifier_token9] = ACTIONS(1), + [aux_sym_cmd_identifier_token10] = ACTIONS(1), + [aux_sym_cmd_identifier_token11] = ACTIONS(1), + [aux_sym_cmd_identifier_token12] = ACTIONS(1), + [aux_sym_cmd_identifier_token13] = ACTIONS(1), + [aux_sym_cmd_identifier_token14] = ACTIONS(1), + [aux_sym_cmd_identifier_token15] = ACTIONS(1), + [aux_sym_cmd_identifier_token16] = ACTIONS(1), + [aux_sym_cmd_identifier_token17] = ACTIONS(1), + [aux_sym_cmd_identifier_token18] = ACTIONS(1), + [aux_sym_cmd_identifier_token19] = ACTIONS(1), + [aux_sym_cmd_identifier_token20] = ACTIONS(1), + [aux_sym_cmd_identifier_token21] = ACTIONS(1), + [aux_sym_cmd_identifier_token22] = ACTIONS(1), + [aux_sym_cmd_identifier_token23] = ACTIONS(1), + [aux_sym_cmd_identifier_token24] = ACTIONS(1), + [aux_sym_cmd_identifier_token25] = ACTIONS(1), + [aux_sym_cmd_identifier_token26] = ACTIONS(1), + [aux_sym_cmd_identifier_token27] = ACTIONS(1), + [aux_sym_cmd_identifier_token28] = ACTIONS(1), + [aux_sym_cmd_identifier_token29] = ACTIONS(1), + [aux_sym_cmd_identifier_token30] = ACTIONS(1), + [aux_sym_cmd_identifier_token31] = ACTIONS(1), + [aux_sym_cmd_identifier_token32] = ACTIONS(1), + [aux_sym_cmd_identifier_token33] = ACTIONS(1), + [aux_sym_cmd_identifier_token34] = ACTIONS(1), + [aux_sym_cmd_identifier_token35] = ACTIONS(1), + [aux_sym_cmd_identifier_token36] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [anon_sym_null] = ACTIONS(1), + [aux_sym_cmd_identifier_token38] = ACTIONS(1), + [aux_sym_cmd_identifier_token39] = ACTIONS(1), + [aux_sym_cmd_identifier_token40] = ACTIONS(1), + [aux_sym_cmd_identifier_token41] = ACTIONS(1), + [sym__newline] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_err_GT_PIPE] = ACTIONS(1), + [anon_sym_out_GT_PIPE] = ACTIONS(1), + [anon_sym_e_GT_PIPE] = ACTIONS(1), + [anon_sym_o_GT_PIPE] = ACTIONS(1), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1), + [anon_sym_def] = ACTIONS(1), + [anon_sym_export_DASHenv] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_module] = ACTIONS(1), + [anon_sym_use] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_any] = ACTIONS(1), + [anon_sym_binary] = ACTIONS(1), + [anon_sym_block] = ACTIONS(1), + [anon_sym_bool] = ACTIONS(1), + [anon_sym_cell_DASHpath] = ACTIONS(1), + [anon_sym_closure] = ACTIONS(1), + [anon_sym_cond] = ACTIONS(1), + [anon_sym_datetime] = ACTIONS(1), + [anon_sym_directory] = ACTIONS(1), + [anon_sym_duration] = ACTIONS(1), + [anon_sym_error] = ACTIONS(1), + [anon_sym_expr] = ACTIONS(1), + [anon_sym_float] = ACTIONS(1), + [anon_sym_decimal] = ACTIONS(1), + [anon_sym_filesize] = ACTIONS(1), + [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1), + [anon_sym_glob] = ACTIONS(1), + [anon_sym_int] = ACTIONS(1), + [anon_sym_import_DASHpattern] = ACTIONS(1), + [anon_sym_keyword] = ACTIONS(1), + [anon_sym_math] = ACTIONS(1), + [anon_sym_nothing] = ACTIONS(1), + [anon_sym_number] = ACTIONS(1), + [anon_sym_one_DASHof] = ACTIONS(1), + [anon_sym_operator] = ACTIONS(1), + [anon_sym_path] = ACTIONS(1), + [anon_sym_range] = ACTIONS(1), + [anon_sym_signature] = ACTIONS(1), + [anon_sym_string] = ACTIONS(1), + [anon_sym_table] = ACTIONS(1), + [anon_sym_variable] = ACTIONS(1), + [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1), + [anon_sym_record] = ACTIONS(1), + [anon_sym_list] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [sym_param_short_flag_identifier] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_loop] = ACTIONS(1), + [anon_sym_make] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_match] = ACTIONS(1), + [aux_sym_ctrl_match_token1] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), + [anon_sym_DOLLAR2] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), + [anon_sym_catch] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_source] = ACTIONS(1), + [anon_sym_source_DASHenv] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_hide] = ACTIONS(1), + [anon_sym_hide_DASHenv] = ACTIONS(1), + [anon_sym_overlay] = ACTIONS(1), + [anon_sym_new] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [sym_wild_card] = ACTIONS(1), + [anon_sym_QMARK2] = ACTIONS(1), + [anon_sym_where] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_xor] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), + [anon_sym_not_DASHin] = ACTIONS(1), + [anon_sym_starts_DASHwith] = ACTIONS(1), + [anon_sym_ends_DASHwith] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_LT2] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_BANG_TILDE] = ACTIONS(1), + [aux_sym_expr_unary_token1] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1), + [aux_sym_expr_binary_token1] = ACTIONS(1), + [aux_sym_expr_binary_token2] = ACTIONS(1), + [aux_sym_expr_binary_token4] = ACTIONS(1), + [aux_sym_expr_binary_token5] = ACTIONS(1), + [aux_sym_expr_binary_token6] = ACTIONS(1), + [aux_sym_expr_binary_token7] = ACTIONS(1), + [aux_sym_expr_binary_token8] = ACTIONS(1), + [aux_sym_expr_binary_token9] = ACTIONS(1), + [aux_sym_expr_binary_token10] = ACTIONS(1), + [aux_sym_expr_binary_token11] = ACTIONS(1), + [aux_sym_expr_binary_token12] = ACTIONS(1), + [aux_sym_expr_binary_token13] = ACTIONS(1), + [aux_sym_expr_binary_token14] = ACTIONS(1), + [aux_sym_expr_binary_token15] = ACTIONS(1), + [aux_sym_expr_binary_token16] = ACTIONS(1), + [aux_sym_expr_binary_token17] = ACTIONS(1), + [aux_sym_expr_binary_token18] = ACTIONS(1), + [aux_sym_expr_binary_token19] = ACTIONS(1), + [aux_sym_expr_binary_token20] = ACTIONS(1), + [aux_sym_expr_binary_token21] = ACTIONS(1), + [aux_sym_expr_binary_token22] = ACTIONS(1), + [aux_sym_expr_binary_token23] = ACTIONS(1), + [aux_sym_expr_binary_token24] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1), + [anon_sym_DOT_DOT2] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1), + [anon_sym_DOT_DOT_LT] = ACTIONS(1), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1), + [aux_sym__immediate_decimal_token1] = ACTIONS(1), + [aux_sym__immediate_decimal_token2] = ACTIONS(1), + [aux_sym__immediate_decimal_token3] = ACTIONS(1), + [aux_sym__immediate_decimal_token4] = ACTIONS(1), + [aux_sym__immediate_decimal_token5] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1), + [anon_sym_nu] = ACTIONS(1), + [anon_sym_env] = ACTIONS(1), + [aux_sym__val_number_decimal_token1] = ACTIONS(1), + [aux_sym__val_number_decimal_token2] = ACTIONS(1), + [aux_sym__val_number_decimal_token3] = ACTIONS(1), + [aux_sym__val_number_decimal_token4] = ACTIONS(1), + [aux_sym__val_number_token1] = ACTIONS(1), + [aux_sym__val_number_token2] = ACTIONS(1), + [aux_sym__val_number_token3] = ACTIONS(1), + [anon_sym_0b] = ACTIONS(1), + [sym_filesize_unit] = ACTIONS(1), + [sym_duration_unit] = ACTIONS(1), + [anon_sym_0o] = ACTIONS(1), + [anon_sym_0x] = ACTIONS(1), + [anon_sym_LBRACK2] = ACTIONS(1), + [sym_hex_digit] = ACTIONS(1), + [sym_val_date] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym__str_single_quotes] = ACTIONS(1), + [sym__str_back_ticks] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1), + [sym_inter_escape_sequence] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1), + [aux_sym_record_entry_token1] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [aux_sym_path_token1] = ACTIONS(1), + [aux_sym_env_var_token1] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_err_GT] = ACTIONS(1), + [anon_sym_out_GT] = ACTIONS(1), + [anon_sym_e_GT] = ACTIONS(1), + [anon_sym_o_GT] = ACTIONS(1), + [anon_sym_err_PLUSout_GT] = ACTIONS(1), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1), + [anon_sym_o_PLUSe_GT] = ACTIONS(1), + [anon_sym_e_PLUSo_GT] = ACTIONS(1), + [anon_sym_err_GT_GT] = ACTIONS(1), + [anon_sym_out_GT_GT] = ACTIONS(1), + [anon_sym_e_GT_GT] = ACTIONS(1), + [anon_sym_o_GT_GT] = ACTIONS(1), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1), + [anon_sym_EQ2] = ACTIONS(1), + [aux_sym_unquoted_token1] = ACTIONS(1), + [aux_sym_unquoted_token2] = ACTIONS(1), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1), + [aux_sym__unquoted_in_list_token2] = ACTIONS(1), + [aux_sym__unquoted_in_record_token1] = ACTIONS(1), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(3), + }, + [1] = { + [sym_nu_script] = STATE(7893), + [sym_shebang] = STATE(89), + [sym__block_body_statement] = STATE(6656), + [sym__declaration] = STATE(7073), + [sym_decl_alias] = STATE(7076), + [sym_stmt_let] = STATE(7237), + [sym_stmt_mut] = STATE(7237), + [sym_stmt_const] = STATE(7237), + [sym_assignment] = STATE(7237), + [sym__mutable_assignment_pattern] = STATE(7503), + [sym__statement] = STATE(7073), + [sym_pipeline] = STATE(7237), + [sym__block_body] = STATE(7794), + [sym_cmd_identifier] = STATE(4982), + [sym_decl_def] = STATE(7076), + [sym_decl_export] = STATE(7076), + [sym_decl_extern] = STATE(7076), + [sym_decl_module] = STATE(7076), + [sym_decl_use] = STATE(7076), + [sym__ctrl_statement] = STATE(7237), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_for] = STATE(7092), + [sym_ctrl_loop] = STATE(7092), + [sym_ctrl_error] = STATE(7092), + [sym_ctrl_while] = STATE(7092), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4861), + [sym_stmt_source] = STATE(7237), + [sym_stmt_register] = STATE(7237), + [sym__stmt_hide] = STATE(7237), + [sym_hide_mod] = STATE(7267), + [sym_hide_env] = STATE(7267), + [sym__stmt_overlay] = STATE(7237), + [sym_overlay_list] = STATE(7140), + [sym_overlay_hide] = STATE(7140), + [sym_overlay_new] = STATE(7140), + [sym_overlay_use] = STATE(7140), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), + [sym_comment] = STATE(1), + [aux_sym_shebang_repeat1] = STATE(6979), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym__block_body_repeat1] = STATE(124), + [aux_sym__block_body_repeat2] = STATE(139), + [aux_sym_pipe_element_repeat2] = STATE(407), + [ts_builtin_sym_end] = ACTIONS(5), + [anon_sym_POUND_BANG] = ACTIONS(7), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(19), + [aux_sym_cmd_identifier_token3] = ACTIONS(19), + [aux_sym_cmd_identifier_token4] = ACTIONS(19), + [aux_sym_cmd_identifier_token5] = ACTIONS(19), + [aux_sym_cmd_identifier_token6] = ACTIONS(19), + [aux_sym_cmd_identifier_token7] = ACTIONS(19), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(19), + [aux_sym_cmd_identifier_token11] = ACTIONS(19), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(19), + [aux_sym_cmd_identifier_token17] = ACTIONS(19), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(19), + [aux_sym_cmd_identifier_token20] = ACTIONS(19), + [aux_sym_cmd_identifier_token21] = ACTIONS(19), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [sym__newline] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(35), + [anon_sym_export_DASHenv] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_use] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_error] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_source] = ACTIONS(79), + [anon_sym_source_DASHenv] = ACTIONS(79), + [anon_sym_register] = ACTIONS(81), + [anon_sym_hide] = ACTIONS(83), + [anon_sym_hide_DASHenv] = ACTIONS(85), + [anon_sym_overlay] = ACTIONS(87), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(3), + }, + [2] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7815), + [sym_cmd_identifier] = STATE(4834), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym__match_pattern_record_variable] = STATE(620), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(2049), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(153), + [sym_val_number] = STATE(2500), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2500), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7828), + [sym_record_entry] = STATE(505), + [sym__record_key] = STATE(7778), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(2), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym__match_pattern_record_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(123), + [anon_sym_alias] = ACTIONS(125), + [anon_sym_let] = ACTIONS(127), + [anon_sym_let_DASHenv] = ACTIONS(127), + [anon_sym_mut] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), [aux_sym_cmd_identifier_token17] = ACTIONS(133), [aux_sym_cmd_identifier_token18] = ACTIONS(133), [aux_sym_cmd_identifier_token19] = ACTIONS(133), @@ -67813,156 +70333,1347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(149), + [anon_sym_export_DASHenv] = ACTIONS(151), + [anon_sym_extern] = ACTIONS(153), + [anon_sym_module] = ACTIONS(155), + [anon_sym_use] = ACTIONS(157), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(163), + [anon_sym_error] = ACTIONS(165), + [anon_sym_list] = ACTIONS(167), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(173), + [anon_sym_for] = ACTIONS(175), + [anon_sym_in] = ACTIONS(167), + [anon_sym_loop] = ACTIONS(177), + [anon_sym_make] = ACTIONS(167), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_if] = ACTIONS(183), + [anon_sym_else] = ACTIONS(167), + [anon_sym_match] = ACTIONS(185), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(193), + [anon_sym_catch] = ACTIONS(167), + [anon_sym_return] = ACTIONS(195), + [anon_sym_source] = ACTIONS(197), + [anon_sym_source_DASHenv] = ACTIONS(197), + [anon_sym_register] = ACTIONS(199), + [anon_sym_hide] = ACTIONS(201), + [anon_sym_hide_DASHenv] = ACTIONS(203), + [anon_sym_overlay] = ACTIONS(205), + [anon_sym_new] = ACTIONS(167), + [anon_sym_as] = ACTIONS(167), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [3] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7902), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7855), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(3), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [4] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7938), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7752), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(4), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [5] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7985), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7855), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(5), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [6] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7961), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7760), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(6), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [7] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7815), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7828), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(7), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), + }, + [8] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7754), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7760), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(8), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [9] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7751), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(102), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7768), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7838), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7752), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(9), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -68008,156 +71719,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(323), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [10] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7822), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7824), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7938), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7940), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(10), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -68203,156 +71917,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_RBRACE] = ACTIONS(325), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [11] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7724), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7737), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7838), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7775), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(11), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -68398,156 +72115,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [12] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7806), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7818), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7759), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7763), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(12), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -68593,156 +72313,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [13] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7884), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7794), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7992), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7995), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(13), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -68788,156 +72511,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [14] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7918), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7919), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7830), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7833), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(14), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -68983,156 +72709,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(333), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [15] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7884), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7942), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8010), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7740), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(15), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -69178,156 +72907,951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [16] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7936), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7873), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8033), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7962), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [17] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8033), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7859), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(17), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(339), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [18] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7960), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7737), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(18), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [19] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7856), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7786), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(19), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(133), + [aux_sym_cmd_identifier_token3] = ACTIONS(133), + [aux_sym_cmd_identifier_token4] = ACTIONS(133), + [aux_sym_cmd_identifier_token5] = ACTIONS(133), + [aux_sym_cmd_identifier_token6] = ACTIONS(133), + [aux_sym_cmd_identifier_token7] = ACTIONS(133), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(133), + [aux_sym_cmd_identifier_token11] = ACTIONS(133), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(133), + [aux_sym_cmd_identifier_token17] = ACTIONS(133), + [aux_sym_cmd_identifier_token18] = ACTIONS(133), + [aux_sym_cmd_identifier_token19] = ACTIONS(133), + [aux_sym_cmd_identifier_token20] = ACTIONS(133), + [aux_sym_cmd_identifier_token21] = ACTIONS(133), + [aux_sym_cmd_identifier_token22] = ACTIONS(133), + [aux_sym_cmd_identifier_token23] = ACTIONS(133), + [aux_sym_cmd_identifier_token24] = ACTIONS(133), + [aux_sym_cmd_identifier_token25] = ACTIONS(133), + [aux_sym_cmd_identifier_token26] = ACTIONS(133), + [aux_sym_cmd_identifier_token27] = ACTIONS(133), + [aux_sym_cmd_identifier_token28] = ACTIONS(133), + [aux_sym_cmd_identifier_token29] = ACTIONS(133), + [aux_sym_cmd_identifier_token30] = ACTIONS(133), + [aux_sym_cmd_identifier_token31] = ACTIONS(133), + [aux_sym_cmd_identifier_token32] = ACTIONS(133), + [aux_sym_cmd_identifier_token33] = ACTIONS(133), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(133), + [aux_sym_cmd_identifier_token36] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_null] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(139), + [aux_sym_cmd_identifier_token39] = ACTIONS(141), + [aux_sym_cmd_identifier_token40] = ACTIONS(141), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [20] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7734), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(127), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7898), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(20), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -69373,156 +73897,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [17] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7884), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7990), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(17), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [21] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7754), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(8046), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(21), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -69568,156 +74095,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(347), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [18] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7871), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7791), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(18), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [22] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8033), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7758), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(22), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -69763,156 +74293,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(349), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [19] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7989), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(110), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7780), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(19), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [23] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7785), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(108), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(8021), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(23), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -69958,156 +74491,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(351), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [20] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7918), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7851), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [24] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7897), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7823), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(24), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -70153,156 +74689,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(353), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [21] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7790), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7900), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(21), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [25] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8043), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7775), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(25), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -70348,156 +74887,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(355), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [22] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(8019), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(114), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(8020), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(22), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [26] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7815), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7870), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(26), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -70543,156 +75085,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(357), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [23] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7795), - [sym_cmd_identifier] = STATE(4690), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(97), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(2019), - [sym__spread_parenthesized] = STATE(568), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(1419), - [sym_val_number] = STATE(2451), - [sym__val_number_decimal] = STATE(1621), - [sym__val_number] = STATE(2368), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(2451), - [sym__str_double_quotes] = STATE(1452), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7939), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(23), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(247), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_let_DASHenv] = ACTIONS(251), - [anon_sym_mut] = ACTIONS(253), - [anon_sym_const] = ACTIONS(255), + [27] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8037), + [sym_cmd_identifier] = STATE(4857), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1994), + [sym__spread_parenthesized] = STATE(564), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(1428), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(1606), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(2355), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7752), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(27), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(251), + [anon_sym_let] = ACTIONS(253), + [anon_sym_let_DASHenv] = ACTIONS(253), + [anon_sym_mut] = ACTIONS(255), + [anon_sym_const] = ACTIONS(257), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(133), [aux_sym_cmd_identifier_token3] = ACTIONS(133), @@ -70738,10294 +75283,11005 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(143), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(257), - [anon_sym_export_DASHenv] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(261), - [anon_sym_module] = ACTIONS(263), - [anon_sym_use] = ACTIONS(265), + [anon_sym_def] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_use] = ACTIONS(267), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(267), - [anon_sym_error] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(271), + [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(275), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(287), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(283), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(287), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(289), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(323), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(291), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(293), - [anon_sym_source] = ACTIONS(295), - [anon_sym_source_DASHenv] = ACTIONS(295), - [anon_sym_register] = ACTIONS(297), - [anon_sym_hide] = ACTIONS(299), - [anon_sym_hide_DASHenv] = ACTIONS(301), - [anon_sym_overlay] = ACTIONS(303), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), + [anon_sym_try] = ACTIONS(293), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(295), + [anon_sym_source] = ACTIONS(297), + [anon_sym_source_DASHenv] = ACTIONS(297), + [anon_sym_register] = ACTIONS(299), + [anon_sym_hide] = ACTIONS(301), + [anon_sym_hide_DASHenv] = ACTIONS(303), + [anon_sym_overlay] = ACTIONS(305), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [anon_sym_DOT2] = ACTIONS(223), - [aux_sym__val_number_decimal_token3] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [24] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7702), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(102), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [28] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7730), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [25] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7903), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [29] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7841), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(445), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [26] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7903), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(104), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [30] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7730), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [27] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7702), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(98), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [31] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7841), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(447), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [28] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7760), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(28), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(465), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), - }, - [29] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7720), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(29), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(469), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), - }, - [30] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7688), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(30), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), - }, - [31] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7935), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(31), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [32] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7956), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7980), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(32), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(475), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [33] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7728), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(104), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7824), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(521), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [34] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7732), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7766), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(34), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(465), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [35] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7960), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7983), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(35), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [36] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7748), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7938), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(36), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(479), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [37] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7986), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7937), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(37), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(481), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(527), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [38] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7926), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7880), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(483), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [39] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(8024), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7904), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [40] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(8017), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7756), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(487), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [41] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7879), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7767), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(489), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [42] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7845), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7956), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(491), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [43] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7855), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7967), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(493), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [44] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7778), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7902), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(44), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(495), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [45] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(8033), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym_parameter_pipes] = STATE(98), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7757), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(541), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [46] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7766), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7801), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(46), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(497), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [47] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7849), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7860), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(47), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(499), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7773), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7822), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(48), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(547), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7899), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8057), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(49), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(503), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7865), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7868), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(50), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(505), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(551), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(8025), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7877), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(51), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(507), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7943), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7952), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(52), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(509), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(555), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7902), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8023), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(53), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(511), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7733), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7959), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(54), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(559), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7774), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7863), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(55), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(515), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7905), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7847), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(56), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(517), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(563), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7816), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7800), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(57), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(519), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(8038), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7969), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(58), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(567), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7892), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7914), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(59), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(523), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7842), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7975), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(60), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(525), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(571), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [61] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7709), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7836), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(61), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7801), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7987), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(62), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(575), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [63] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7869), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7814), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(63), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [64] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7908), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7993), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(64), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(579), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7947), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7925), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(65), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [66] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7979), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8027), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(66), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(537), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(583), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [67] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(8036), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7845), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(67), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(539), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [68] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7693), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7783), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(68), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [69] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7743), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8052), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(69), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [70] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7798), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7780), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(70), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [71] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7723), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7834), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(71), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(509), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [72] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7715), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7875), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(72), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(469), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [73] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7820), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7913), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(73), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(465), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [74] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7972), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7947), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(74), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(499), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [75] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7847), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7955), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(75), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(515), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [76] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7906), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7989), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(76), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(465), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(563), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [77] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7938), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7982), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(77), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(465), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(521), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [78] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7841), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7781), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(78), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(509), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(527), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [79] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7996), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7963), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(79), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [80] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7870), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8016), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(80), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(575), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [81] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7847), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7943), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(81), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(527), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [82] = { + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7908), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(82), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [83] = { + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8042), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(83), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [84] = { + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8018), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(84), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [85] = { + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7999), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(85), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [86] = { + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7964), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(86), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(603), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [87] = { + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8055), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(87), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [88] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8047), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(88), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, - [82] = { - [sym__block_body_statement] = STATE(6497), - [sym__declaration] = STATE(6943), - [sym_decl_alias] = STATE(7211), - [sym_stmt_let] = STATE(7219), - [sym_stmt_mut] = STATE(7219), - [sym_stmt_const] = STATE(7219), - [sym_assignment] = STATE(7219), - [sym__mutable_assignment_pattern] = STATE(7444), - [sym__statement] = STATE(6943), - [sym_pipeline] = STATE(7219), - [sym__block_body] = STATE(7946), - [sym_cmd_identifier] = STATE(4769), - [sym_decl_def] = STATE(7211), - [sym_decl_export] = STATE(7211), - [sym_decl_extern] = STATE(7211), - [sym_decl_module] = STATE(7211), - [sym_decl_use] = STATE(7211), - [sym__ctrl_statement] = STATE(7219), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_for] = STATE(7202), - [sym_ctrl_loop] = STATE(7202), - [sym_ctrl_error] = STATE(7202), - [sym_ctrl_while] = STATE(7202), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4815), - [sym_stmt_source] = STATE(7219), - [sym_stmt_register] = STATE(7219), - [sym__stmt_hide] = STATE(7219), - [sym_hide_mod] = STATE(6995), - [sym_hide_env] = STATE(6995), - [sym__stmt_overlay] = STATE(7219), - [sym_overlay_list] = STATE(7000), - [sym_overlay_hide] = STATE(7000), - [sym_overlay_new] = STATE(7000), - [sym_overlay_use] = STATE(7000), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(1474), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), - [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(158), - [aux_sym__block_body_repeat1] = STATE(100), - [aux_sym__block_body_repeat2] = STATE(126), - [ts_builtin_sym_end] = ACTIONS(549), + [89] = { + [sym__block_body_statement] = STATE(6656), + [sym__declaration] = STATE(7073), + [sym_decl_alias] = STATE(7076), + [sym_stmt_let] = STATE(7237), + [sym_stmt_mut] = STATE(7237), + [sym_stmt_const] = STATE(7237), + [sym_assignment] = STATE(7237), + [sym__mutable_assignment_pattern] = STATE(7503), + [sym__statement] = STATE(7073), + [sym_pipeline] = STATE(7237), + [sym__block_body] = STATE(7742), + [sym_cmd_identifier] = STATE(4982), + [sym_decl_def] = STATE(7076), + [sym_decl_export] = STATE(7076), + [sym_decl_extern] = STATE(7076), + [sym_decl_module] = STATE(7076), + [sym_decl_use] = STATE(7076), + [sym__ctrl_statement] = STATE(7237), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_for] = STATE(7092), + [sym_ctrl_loop] = STATE(7092), + [sym_ctrl_error] = STATE(7092), + [sym_ctrl_while] = STATE(7092), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4861), + [sym_stmt_source] = STATE(7237), + [sym_stmt_register] = STATE(7237), + [sym__stmt_hide] = STATE(7237), + [sym_hide_mod] = STATE(7267), + [sym_hide_env] = STATE(7267), + [sym__stmt_overlay] = STATE(7237), + [sym_overlay_list] = STATE(7140), + [sym_overlay_hide] = STATE(7140), + [sym_overlay_new] = STATE(7140), + [sym_overlay_use] = STATE(7140), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), + [sym_comment] = STATE(89), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym__block_body_repeat1] = STATE(124), + [aux_sym__block_body_repeat2] = STATE(139), + [aux_sym_pipe_element_repeat2] = STATE(407), + [ts_builtin_sym_end] = ACTIONS(605), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -81110,8 +86366,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(93), [aux_sym__val_number_decimal_token1] = ACTIONS(95), [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), @@ -81124,7166 +86380,6086 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), - }, - [83] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(8007), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(83), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [84] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7725), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(84), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), - }, - [85] = { - [sym__block_body_statement] = STATE(6342), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(233), - [aux_sym__block_body_repeat2] = STATE(123), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(551), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(551), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [86] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(8007), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [87] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7864), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(87), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), - }, - [88] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7723), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(88), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), - }, - [89] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7987), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(89), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, [90] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7769), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7973), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(90), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [91] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7747), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7829), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(91), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [92] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(8039), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7879), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(92), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [93] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7916), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8047), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(93), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(607), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [94] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7906), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8008), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(94), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [95] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7770), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7989), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(95), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [96] = { - [sym__block_body_statement_parenthesized] = STATE(5894), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym__parenthesized_body] = STATE(7972), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7946), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(96), - [aux_sym_shebang_repeat1] = STATE(122), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(99), - [aux_sym__parenthesized_body_repeat2] = STATE(117), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [97] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7948), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7748), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(97), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [98] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7829), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7853), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(98), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [99] = { - [sym__block_body_statement_parenthesized] = STATE(6109), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7736), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(99), - [aux_sym_shebang_repeat1] = STATE(120), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__block_body_repeat1] = STATE(233), - [aux_sym__parenthesized_body_repeat2] = STATE(118), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(447), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [100] = { - [sym__block_body_statement] = STATE(6836), - [sym__declaration] = STATE(6943), - [sym_decl_alias] = STATE(7211), - [sym_stmt_let] = STATE(7219), - [sym_stmt_mut] = STATE(7219), - [sym_stmt_const] = STATE(7219), - [sym_assignment] = STATE(7219), - [sym__mutable_assignment_pattern] = STATE(7444), - [sym__statement] = STATE(6943), - [sym_pipeline] = STATE(7219), - [sym_cmd_identifier] = STATE(4769), - [sym_decl_def] = STATE(7211), - [sym_decl_export] = STATE(7211), - [sym_decl_extern] = STATE(7211), - [sym_decl_module] = STATE(7211), - [sym_decl_use] = STATE(7211), - [sym__ctrl_statement] = STATE(7219), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_for] = STATE(7202), - [sym_ctrl_loop] = STATE(7202), - [sym_ctrl_error] = STATE(7202), - [sym_ctrl_while] = STATE(7202), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4815), - [sym_stmt_source] = STATE(7219), - [sym_stmt_register] = STATE(7219), - [sym__stmt_hide] = STATE(7219), - [sym_hide_mod] = STATE(6995), - [sym_hide_env] = STATE(6995), - [sym__stmt_overlay] = STATE(7219), - [sym_overlay_list] = STATE(7000), - [sym_overlay_hide] = STATE(7000), - [sym_overlay_new] = STATE(7000), - [sym_overlay_use] = STATE(7000), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(1474), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8016), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(100), - [aux_sym_pipeline_repeat1] = STATE(158), - [aux_sym__block_body_repeat1] = STATE(273), - [aux_sym__block_body_repeat2] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(551), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(19), - [aux_sym_cmd_identifier_token3] = ACTIONS(19), - [aux_sym_cmd_identifier_token4] = ACTIONS(19), - [aux_sym_cmd_identifier_token5] = ACTIONS(19), - [aux_sym_cmd_identifier_token6] = ACTIONS(19), - [aux_sym_cmd_identifier_token7] = ACTIONS(19), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(19), - [aux_sym_cmd_identifier_token11] = ACTIONS(19), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(19), - [aux_sym_cmd_identifier_token17] = ACTIONS(19), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(19), - [aux_sym_cmd_identifier_token20] = ACTIONS(19), - [aux_sym_cmd_identifier_token21] = ACTIONS(19), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(35), - [anon_sym_export_DASHenv] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_use] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_error] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_source] = ACTIONS(79), - [anon_sym_source_DASHenv] = ACTIONS(79), - [anon_sym_register] = ACTIONS(81), - [anon_sym_hide] = ACTIONS(83), - [anon_sym_hide_DASHenv] = ACTIONS(85), - [anon_sym_overlay] = ACTIONS(87), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [101] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7891), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7781), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(101), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [102] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7975), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7896), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(102), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [103] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7964), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8042), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(103), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [104] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7740), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(8018), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(104), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [105] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7932), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7772), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(105), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [106] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7854), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6157), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym__parenthesized_body] = STATE(7999), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(106), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(136), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [107] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7859), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6244), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(107), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(226), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(609), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [108] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7764), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7808), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(108), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [109] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7772), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7842), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(109), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [110] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7837), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7818), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(110), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [111] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7980), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7941), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(111), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [112] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7731), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement_parenthesized] = STATE(6016), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(112), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(134), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym__block_body_repeat1] = STATE(226), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(131), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(467), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [113] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7897), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7798), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(113), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [114] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7735), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7958), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(114), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [115] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7706), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7966), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(115), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [116] = { - [sym__block_body_statement] = STATE(6318), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym__block_body] = STATE(7933), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7805), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat1] = STATE(85), - [aux_sym__block_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [117] = { - [sym__block_body_statement_parenthesized] = STATE(6109), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7857), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(117), - [aux_sym_shebang_repeat1] = STATE(120), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__parenthesized_body_repeat2] = STATE(119), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(555), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [118] = { - [sym__block_body_statement_parenthesized] = STATE(6083), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8025), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(118), - [aux_sym_shebang_repeat1] = STATE(121), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__parenthesized_body_repeat2] = STATE(119), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(555), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [119] = { - [sym__block_body_statement_parenthesized] = STATE(6817), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8056), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(119), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym__parenthesized_body_repeat2] = STATE(119), - [anon_sym_export] = ACTIONS(557), - [anon_sym_alias] = ACTIONS(560), - [anon_sym_let] = ACTIONS(563), - [anon_sym_let_DASHenv] = ACTIONS(563), - [anon_sym_mut] = ACTIONS(566), - [anon_sym_const] = ACTIONS(569), - [aux_sym_cmd_identifier_token1] = ACTIONS(572), - [aux_sym_cmd_identifier_token2] = ACTIONS(572), - [aux_sym_cmd_identifier_token3] = ACTIONS(572), - [aux_sym_cmd_identifier_token4] = ACTIONS(572), - [aux_sym_cmd_identifier_token5] = ACTIONS(572), - [aux_sym_cmd_identifier_token6] = ACTIONS(572), - [aux_sym_cmd_identifier_token7] = ACTIONS(572), - [aux_sym_cmd_identifier_token8] = ACTIONS(572), - [aux_sym_cmd_identifier_token9] = ACTIONS(572), - [aux_sym_cmd_identifier_token10] = ACTIONS(572), - [aux_sym_cmd_identifier_token11] = ACTIONS(572), - [aux_sym_cmd_identifier_token12] = ACTIONS(572), - [aux_sym_cmd_identifier_token13] = ACTIONS(572), - [aux_sym_cmd_identifier_token14] = ACTIONS(572), - [aux_sym_cmd_identifier_token15] = ACTIONS(572), - [aux_sym_cmd_identifier_token16] = ACTIONS(572), - [aux_sym_cmd_identifier_token17] = ACTIONS(572), - [aux_sym_cmd_identifier_token18] = ACTIONS(572), - [aux_sym_cmd_identifier_token19] = ACTIONS(572), - [aux_sym_cmd_identifier_token20] = ACTIONS(572), - [aux_sym_cmd_identifier_token21] = ACTIONS(572), - [aux_sym_cmd_identifier_token22] = ACTIONS(572), - [aux_sym_cmd_identifier_token23] = ACTIONS(572), - [aux_sym_cmd_identifier_token24] = ACTIONS(575), - [aux_sym_cmd_identifier_token25] = ACTIONS(572), - [aux_sym_cmd_identifier_token26] = ACTIONS(575), - [aux_sym_cmd_identifier_token27] = ACTIONS(572), - [aux_sym_cmd_identifier_token28] = ACTIONS(572), - [aux_sym_cmd_identifier_token29] = ACTIONS(572), - [aux_sym_cmd_identifier_token30] = ACTIONS(572), - [aux_sym_cmd_identifier_token31] = ACTIONS(575), - [aux_sym_cmd_identifier_token32] = ACTIONS(575), - [aux_sym_cmd_identifier_token33] = ACTIONS(575), - [aux_sym_cmd_identifier_token34] = ACTIONS(575), - [aux_sym_cmd_identifier_token35] = ACTIONS(575), - [aux_sym_cmd_identifier_token36] = ACTIONS(572), - [anon_sym_true] = ACTIONS(578), - [anon_sym_false] = ACTIONS(578), - [anon_sym_null] = ACTIONS(581), - [aux_sym_cmd_identifier_token38] = ACTIONS(584), - [aux_sym_cmd_identifier_token39] = ACTIONS(587), - [aux_sym_cmd_identifier_token40] = ACTIONS(587), - [sym__newline] = ACTIONS(590), - [anon_sym_def] = ACTIONS(592), - [anon_sym_export_DASHenv] = ACTIONS(595), - [anon_sym_extern] = ACTIONS(598), - [anon_sym_module] = ACTIONS(601), - [anon_sym_use] = ACTIONS(604), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(613), - [anon_sym_error] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_break] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(625), - [anon_sym_for] = ACTIONS(628), - [anon_sym_loop] = ACTIONS(631), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(637), - [anon_sym_if] = ACTIONS(640), - [anon_sym_match] = ACTIONS(643), - [aux_sym_ctrl_match_token1] = ACTIONS(646), - [anon_sym_DOT_DOT] = ACTIONS(649), - [anon_sym_try] = ACTIONS(652), - [anon_sym_return] = ACTIONS(655), - [anon_sym_source] = ACTIONS(658), - [anon_sym_source_DASHenv] = ACTIONS(658), - [anon_sym_register] = ACTIONS(661), - [anon_sym_hide] = ACTIONS(664), - [anon_sym_hide_DASHenv] = ACTIONS(667), - [anon_sym_overlay] = ACTIONS(670), - [anon_sym_where] = ACTIONS(673), - [aux_sym_expr_unary_token1] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(679), - [anon_sym_DOT_DOT_LT] = ACTIONS(679), - [aux_sym__val_number_decimal_token1] = ACTIONS(682), - [aux_sym__val_number_decimal_token2] = ACTIONS(685), - [anon_sym_DOT2] = ACTIONS(688), - [aux_sym__val_number_decimal_token3] = ACTIONS(691), - [aux_sym__val_number_token1] = ACTIONS(694), - [aux_sym__val_number_token2] = ACTIONS(694), - [aux_sym__val_number_token3] = ACTIONS(694), - [anon_sym_0b] = ACTIONS(697), - [anon_sym_0o] = ACTIONS(700), - [anon_sym_0x] = ACTIONS(700), - [sym_val_date] = ACTIONS(703), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym__str_single_quotes] = ACTIONS(709), - [sym__str_back_ticks] = ACTIONS(709), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(712), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(715), - [anon_sym_CARET] = ACTIONS(718), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [120] = { - [sym__block_body_statement_parenthesized] = STATE(6812), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7866), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(120), - [aux_sym_shebang_repeat1] = STATE(353), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(555), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [121] = { - [sym__block_body_statement_parenthesized] = STATE(6447), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7873), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(121), - [aux_sym_shebang_repeat1] = STATE(353), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(555), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [122] = { - [sym__block_body_statement_parenthesized] = STATE(6557), - [sym__declaration_parenthesized] = STATE(7199), - [sym_decl_alias_parenthesized] = STATE(7203), - [sym_stmt_let_parenthesized] = STATE(7213), - [sym_stmt_mut_parenthesized] = STATE(7213), - [sym_stmt_const_parenthesized] = STATE(7213), - [sym_assignment_parenthesized] = STATE(7213), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7214), - [sym__statement_parenthesized] = STATE(7199), - [sym_pipeline_parenthesized] = STATE(7213), - [sym_cmd_identifier] = STATE(4782), - [sym_decl_def] = STATE(7203), - [sym_decl_export] = STATE(7203), - [sym_decl_extern] = STATE(7203), - [sym_decl_module] = STATE(7203), - [sym_decl_use] = STATE(7203), - [sym__ctrl_statement] = STATE(7213), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_stmt_source] = STATE(7213), - [sym_stmt_register] = STATE(7213), - [sym__stmt_hide] = STATE(7213), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(7213), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1498), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(8022), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(122), - [aux_sym_shebang_repeat1] = STATE(353), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [anon_sym_export] = ACTIONS(441), - [anon_sym_alias] = ACTIONS(443), - [anon_sym_let] = ACTIONS(445), - [anon_sym_let_DASHenv] = ACTIONS(445), - [anon_sym_mut] = ACTIONS(447), - [anon_sym_const] = ACTIONS(449), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [sym__newline] = ACTIONS(555), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [123] = { - [sym__block_body_statement] = STATE(6290), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7844), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat2] = STATE(125), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [124] = { - [sym__block_body_statement] = STATE(6868), - [sym__declaration] = STATE(6943), - [sym_decl_alias] = STATE(7211), - [sym_stmt_let] = STATE(7219), - [sym_stmt_mut] = STATE(7219), - [sym_stmt_const] = STATE(7219), - [sym_assignment] = STATE(7219), - [sym__mutable_assignment_pattern] = STATE(7444), - [sym__statement] = STATE(6943), - [sym_pipeline] = STATE(7219), - [sym_cmd_identifier] = STATE(4769), - [sym_decl_def] = STATE(7211), - [sym_decl_export] = STATE(7211), - [sym_decl_extern] = STATE(7211), - [sym_decl_module] = STATE(7211), - [sym_decl_use] = STATE(7211), - [sym__ctrl_statement] = STATE(7219), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_for] = STATE(7202), - [sym_ctrl_loop] = STATE(7202), - [sym_ctrl_error] = STATE(7202), - [sym_ctrl_while] = STATE(7202), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4815), - [sym_stmt_source] = STATE(7219), - [sym_stmt_register] = STATE(7219), - [sym__stmt_hide] = STATE(7219), - [sym_hide_mod] = STATE(6995), - [sym_hide_env] = STATE(6995), - [sym__stmt_overlay] = STATE(7219), - [sym_overlay_list] = STATE(7000), - [sym_overlay_hide] = STATE(7000), - [sym_overlay_new] = STATE(7000), - [sym_overlay_use] = STATE(7000), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(1474), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), + [sym__block_body_statement] = STATE(6462), + [sym__declaration] = STATE(7073), + [sym_decl_alias] = STATE(7076), + [sym_stmt_let] = STATE(7237), + [sym_stmt_mut] = STATE(7237), + [sym_stmt_const] = STATE(7237), + [sym_assignment] = STATE(7237), + [sym__mutable_assignment_pattern] = STATE(7503), + [sym__statement] = STATE(7073), + [sym_pipeline] = STATE(7237), + [sym_cmd_identifier] = STATE(4982), + [sym_decl_def] = STATE(7076), + [sym_decl_export] = STATE(7076), + [sym_decl_extern] = STATE(7076), + [sym_decl_module] = STATE(7076), + [sym_decl_use] = STATE(7076), + [sym__ctrl_statement] = STATE(7237), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_for] = STATE(7092), + [sym_ctrl_loop] = STATE(7092), + [sym_ctrl_error] = STATE(7092), + [sym_ctrl_while] = STATE(7092), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4861), + [sym_stmt_source] = STATE(7237), + [sym_stmt_register] = STATE(7237), + [sym__stmt_hide] = STATE(7237), + [sym_hide_mod] = STATE(7267), + [sym_hide_env] = STATE(7267), + [sym__stmt_overlay] = STATE(7237), + [sym_overlay_list] = STATE(7140), + [sym_overlay_hide] = STATE(7140), + [sym_overlay_new] = STATE(7140), + [sym_overlay_use] = STATE(7140), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), [sym_comment] = STATE(124), - [aux_sym_pipeline_repeat1] = STATE(158), - [aux_sym__block_body_repeat2] = STATE(125), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym__block_body_repeat1] = STATE(240), + [aux_sym__block_body_repeat2] = STATE(141), + [aux_sym_pipe_element_repeat2] = STATE(407), + [ts_builtin_sym_end] = ACTIONS(609), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -88332,6 +92508,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(27), [aux_sym_cmd_identifier_token39] = ACTIONS(29), [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_def] = ACTIONS(35), [anon_sym_export_DASHenv] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), @@ -88366,8 +92544,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(93), [aux_sym__val_number_decimal_token1] = ACTIONS(95), [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), @@ -88380,248 +92558,2522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, [125] = { - [sym__block_body_statement] = STATE(7319), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7746), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(125), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat2] = STATE(125), - [anon_sym_export] = ACTIONS(721), - [anon_sym_alias] = ACTIONS(724), - [anon_sym_let] = ACTIONS(727), - [anon_sym_let_DASHenv] = ACTIONS(727), - [anon_sym_mut] = ACTIONS(730), - [anon_sym_const] = ACTIONS(733), - [aux_sym_cmd_identifier_token1] = ACTIONS(736), - [aux_sym_cmd_identifier_token2] = ACTIONS(736), - [aux_sym_cmd_identifier_token3] = ACTIONS(736), - [aux_sym_cmd_identifier_token4] = ACTIONS(736), - [aux_sym_cmd_identifier_token5] = ACTIONS(736), - [aux_sym_cmd_identifier_token6] = ACTIONS(736), - [aux_sym_cmd_identifier_token7] = ACTIONS(736), - [aux_sym_cmd_identifier_token8] = ACTIONS(736), - [aux_sym_cmd_identifier_token9] = ACTIONS(736), - [aux_sym_cmd_identifier_token10] = ACTIONS(736), - [aux_sym_cmd_identifier_token11] = ACTIONS(736), - [aux_sym_cmd_identifier_token12] = ACTIONS(736), - [aux_sym_cmd_identifier_token13] = ACTIONS(736), - [aux_sym_cmd_identifier_token14] = ACTIONS(736), - [aux_sym_cmd_identifier_token15] = ACTIONS(736), - [aux_sym_cmd_identifier_token16] = ACTIONS(736), - [aux_sym_cmd_identifier_token17] = ACTIONS(736), - [aux_sym_cmd_identifier_token18] = ACTIONS(736), - [aux_sym_cmd_identifier_token19] = ACTIONS(736), - [aux_sym_cmd_identifier_token20] = ACTIONS(736), - [aux_sym_cmd_identifier_token21] = ACTIONS(736), - [aux_sym_cmd_identifier_token22] = ACTIONS(736), - [aux_sym_cmd_identifier_token23] = ACTIONS(736), - [aux_sym_cmd_identifier_token24] = ACTIONS(739), - [aux_sym_cmd_identifier_token25] = ACTIONS(736), - [aux_sym_cmd_identifier_token26] = ACTIONS(739), - [aux_sym_cmd_identifier_token27] = ACTIONS(736), - [aux_sym_cmd_identifier_token28] = ACTIONS(736), - [aux_sym_cmd_identifier_token29] = ACTIONS(736), - [aux_sym_cmd_identifier_token30] = ACTIONS(736), - [aux_sym_cmd_identifier_token31] = ACTIONS(739), - [aux_sym_cmd_identifier_token32] = ACTIONS(739), - [aux_sym_cmd_identifier_token33] = ACTIONS(739), - [aux_sym_cmd_identifier_token34] = ACTIONS(739), - [aux_sym_cmd_identifier_token35] = ACTIONS(739), - [aux_sym_cmd_identifier_token36] = ACTIONS(736), - [anon_sym_true] = ACTIONS(742), - [anon_sym_false] = ACTIONS(742), - [anon_sym_null] = ACTIONS(745), - [aux_sym_cmd_identifier_token38] = ACTIONS(748), - [aux_sym_cmd_identifier_token39] = ACTIONS(751), - [aux_sym_cmd_identifier_token40] = ACTIONS(751), - [anon_sym_def] = ACTIONS(754), - [anon_sym_export_DASHenv] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(760), - [anon_sym_module] = ACTIONS(763), - [anon_sym_use] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_error] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_break] = ACTIONS(784), - [anon_sym_continue] = ACTIONS(787), - [anon_sym_for] = ACTIONS(790), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(796), - [anon_sym_do] = ACTIONS(799), - [anon_sym_if] = ACTIONS(802), - [anon_sym_match] = ACTIONS(805), - [aux_sym_ctrl_match_token1] = ACTIONS(808), - [anon_sym_DOT_DOT] = ACTIONS(811), - [anon_sym_try] = ACTIONS(814), - [anon_sym_return] = ACTIONS(817), - [anon_sym_source] = ACTIONS(820), - [anon_sym_source_DASHenv] = ACTIONS(820), - [anon_sym_register] = ACTIONS(823), - [anon_sym_hide] = ACTIONS(826), - [anon_sym_hide_DASHenv] = ACTIONS(829), - [anon_sym_overlay] = ACTIONS(832), - [anon_sym_where] = ACTIONS(835), - [aux_sym_expr_unary_token1] = ACTIONS(838), - [anon_sym_DOT_DOT_EQ] = ACTIONS(841), - [anon_sym_DOT_DOT_LT] = ACTIONS(841), - [aux_sym__val_number_decimal_token1] = ACTIONS(844), - [aux_sym__val_number_decimal_token2] = ACTIONS(847), - [anon_sym_DOT2] = ACTIONS(850), - [aux_sym__val_number_decimal_token3] = ACTIONS(853), - [aux_sym__val_number_token1] = ACTIONS(856), - [aux_sym__val_number_token2] = ACTIONS(856), - [aux_sym__val_number_token3] = ACTIONS(856), - [anon_sym_0b] = ACTIONS(859), - [anon_sym_0o] = ACTIONS(862), - [anon_sym_0x] = ACTIONS(862), - [sym_val_date] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(868), - [sym__str_single_quotes] = ACTIONS(871), - [sym__str_back_ticks] = ACTIONS(871), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [126] = { - [sym__block_body_statement] = STATE(6836), - [sym__declaration] = STATE(6943), - [sym_decl_alias] = STATE(7211), - [sym_stmt_let] = STATE(7219), - [sym_stmt_mut] = STATE(7219), - [sym_stmt_const] = STATE(7219), - [sym_assignment] = STATE(7219), - [sym__mutable_assignment_pattern] = STATE(7444), - [sym__statement] = STATE(6943), - [sym_pipeline] = STATE(7219), - [sym_cmd_identifier] = STATE(4769), - [sym_decl_def] = STATE(7211), - [sym_decl_export] = STATE(7211), - [sym_decl_extern] = STATE(7211), - [sym_decl_module] = STATE(7211), - [sym_decl_use] = STATE(7211), - [sym__ctrl_statement] = STATE(7219), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_for] = STATE(7202), - [sym_ctrl_loop] = STATE(7202), - [sym_ctrl_error] = STATE(7202), - [sym_ctrl_while] = STATE(7202), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4815), - [sym_stmt_source] = STATE(7219), - [sym_stmt_register] = STATE(7219), - [sym__stmt_hide] = STATE(7219), - [sym_hide_mod] = STATE(6995), - [sym_hide_env] = STATE(6995), - [sym__stmt_overlay] = STATE(7219), - [sym_overlay_list] = STATE(7000), - [sym_overlay_hide] = STATE(7000), - [sym_overlay_new] = STATE(7000), - [sym_overlay_use] = STATE(7000), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(1474), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7906), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(158), - [aux_sym__block_body_repeat2] = STATE(125), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [127] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7831), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(127), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [128] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7884), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(128), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [129] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7923), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(129), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [130] = { + [sym__block_body_statement] = STATE(6381), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym__block_body] = STATE(7903), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(130), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [131] = { + [sym__block_body_statement_parenthesized] = STATE(6081), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(131), + [aux_sym_shebang_repeat1] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(133), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(611), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [132] = { + [sym__block_body_statement_parenthesized] = STATE(6016), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(132), + [aux_sym_shebang_repeat1] = STATE(134), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(133), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(611), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [133] = { + [sym__block_body_statement_parenthesized] = STATE(6833), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym__parenthesized_body_repeat2] = STATE(133), + [anon_sym_export] = ACTIONS(613), + [anon_sym_alias] = ACTIONS(616), + [anon_sym_let] = ACTIONS(619), + [anon_sym_let_DASHenv] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(622), + [anon_sym_const] = ACTIONS(625), + [aux_sym_cmd_identifier_token1] = ACTIONS(628), + [aux_sym_cmd_identifier_token2] = ACTIONS(628), + [aux_sym_cmd_identifier_token3] = ACTIONS(628), + [aux_sym_cmd_identifier_token4] = ACTIONS(628), + [aux_sym_cmd_identifier_token5] = ACTIONS(628), + [aux_sym_cmd_identifier_token6] = ACTIONS(628), + [aux_sym_cmd_identifier_token7] = ACTIONS(628), + [aux_sym_cmd_identifier_token8] = ACTIONS(628), + [aux_sym_cmd_identifier_token9] = ACTIONS(628), + [aux_sym_cmd_identifier_token10] = ACTIONS(628), + [aux_sym_cmd_identifier_token11] = ACTIONS(628), + [aux_sym_cmd_identifier_token12] = ACTIONS(628), + [aux_sym_cmd_identifier_token13] = ACTIONS(628), + [aux_sym_cmd_identifier_token14] = ACTIONS(628), + [aux_sym_cmd_identifier_token15] = ACTIONS(628), + [aux_sym_cmd_identifier_token16] = ACTIONS(628), + [aux_sym_cmd_identifier_token17] = ACTIONS(628), + [aux_sym_cmd_identifier_token18] = ACTIONS(628), + [aux_sym_cmd_identifier_token19] = ACTIONS(628), + [aux_sym_cmd_identifier_token20] = ACTIONS(628), + [aux_sym_cmd_identifier_token21] = ACTIONS(628), + [aux_sym_cmd_identifier_token22] = ACTIONS(628), + [aux_sym_cmd_identifier_token23] = ACTIONS(628), + [aux_sym_cmd_identifier_token24] = ACTIONS(631), + [aux_sym_cmd_identifier_token25] = ACTIONS(628), + [aux_sym_cmd_identifier_token26] = ACTIONS(631), + [aux_sym_cmd_identifier_token27] = ACTIONS(628), + [aux_sym_cmd_identifier_token28] = ACTIONS(628), + [aux_sym_cmd_identifier_token29] = ACTIONS(628), + [aux_sym_cmd_identifier_token30] = ACTIONS(628), + [aux_sym_cmd_identifier_token31] = ACTIONS(631), + [aux_sym_cmd_identifier_token32] = ACTIONS(631), + [aux_sym_cmd_identifier_token33] = ACTIONS(631), + [aux_sym_cmd_identifier_token34] = ACTIONS(631), + [aux_sym_cmd_identifier_token35] = ACTIONS(631), + [aux_sym_cmd_identifier_token36] = ACTIONS(628), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_null] = ACTIONS(637), + [aux_sym_cmd_identifier_token38] = ACTIONS(640), + [aux_sym_cmd_identifier_token39] = ACTIONS(643), + [aux_sym_cmd_identifier_token40] = ACTIONS(643), + [sym__newline] = ACTIONS(646), + [anon_sym_def] = ACTIONS(648), + [anon_sym_export_DASHenv] = ACTIONS(651), + [anon_sym_extern] = ACTIONS(654), + [anon_sym_module] = ACTIONS(657), + [anon_sym_use] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_error] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_break] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(681), + [anon_sym_for] = ACTIONS(684), + [anon_sym_loop] = ACTIONS(687), + [anon_sym_while] = ACTIONS(690), + [anon_sym_do] = ACTIONS(693), + [anon_sym_if] = ACTIONS(696), + [anon_sym_match] = ACTIONS(699), + [aux_sym_ctrl_match_token1] = ACTIONS(702), + [anon_sym_DOT_DOT] = ACTIONS(705), + [anon_sym_try] = ACTIONS(708), + [anon_sym_return] = ACTIONS(711), + [anon_sym_source] = ACTIONS(714), + [anon_sym_source_DASHenv] = ACTIONS(714), + [anon_sym_register] = ACTIONS(717), + [anon_sym_hide] = ACTIONS(720), + [anon_sym_hide_DASHenv] = ACTIONS(723), + [anon_sym_overlay] = ACTIONS(726), + [anon_sym_where] = ACTIONS(729), + [aux_sym_expr_unary_token1] = ACTIONS(732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(735), + [anon_sym_DOT_DOT_LT] = ACTIONS(735), + [aux_sym__val_number_decimal_token1] = ACTIONS(738), + [aux_sym__val_number_decimal_token2] = ACTIONS(741), + [aux_sym__val_number_decimal_token3] = ACTIONS(744), + [aux_sym__val_number_decimal_token4] = ACTIONS(747), + [aux_sym__val_number_token1] = ACTIONS(750), + [aux_sym__val_number_token2] = ACTIONS(750), + [aux_sym__val_number_token3] = ACTIONS(750), + [anon_sym_0b] = ACTIONS(753), + [anon_sym_0o] = ACTIONS(756), + [anon_sym_0x] = ACTIONS(756), + [sym_val_date] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(762), + [sym__str_single_quotes] = ACTIONS(765), + [sym__str_back_ticks] = ACTIONS(765), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(771), + [aux_sym_env_var_token1] = ACTIONS(774), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(247), + }, + [134] = { + [sym__block_body_statement_parenthesized] = STATE(6859), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(134), + [aux_sym_shebang_repeat1] = STATE(301), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(611), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [135] = { + [sym__block_body_statement_parenthesized] = STATE(6484), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(135), + [aux_sym_shebang_repeat1] = STATE(301), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(611), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [136] = { + [sym__block_body_statement_parenthesized] = STATE(6835), + [sym__declaration_parenthesized] = STATE(7223), + [sym_decl_alias_parenthesized] = STATE(7228), + [sym_stmt_let_parenthesized] = STATE(7262), + [sym_stmt_mut_parenthesized] = STATE(7262), + [sym_stmt_const_parenthesized] = STATE(7262), + [sym_assignment_parenthesized] = STATE(7262), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), + [sym__statement_parenthesized] = STATE(7223), + [sym_pipeline_parenthesized] = STATE(7262), + [sym_cmd_identifier] = STATE(4953), + [sym_decl_def] = STATE(7228), + [sym_decl_export] = STATE(7228), + [sym_decl_extern] = STATE(7228), + [sym_decl_module] = STATE(7228), + [sym_decl_use] = STATE(7228), + [sym__ctrl_statement] = STATE(7262), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_stmt_source] = STATE(7262), + [sym_stmt_register] = STATE(7262), + [sym__stmt_hide] = STATE(7262), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(7262), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(1450), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(136), + [aux_sym_shebang_repeat1] = STATE(301), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_let_DASHenv] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [sym__newline] = ACTIONS(611), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [137] = { + [sym__block_body_statement] = STATE(6206), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(137), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat2] = STATE(138), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [138] = { + [sym__block_body_statement] = STATE(7356), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(138), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat2] = STATE(138), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(780), + [anon_sym_alias] = ACTIONS(783), + [anon_sym_let] = ACTIONS(786), + [anon_sym_let_DASHenv] = ACTIONS(786), + [anon_sym_mut] = ACTIONS(789), + [anon_sym_const] = ACTIONS(792), + [aux_sym_cmd_identifier_token1] = ACTIONS(795), + [aux_sym_cmd_identifier_token2] = ACTIONS(795), + [aux_sym_cmd_identifier_token3] = ACTIONS(795), + [aux_sym_cmd_identifier_token4] = ACTIONS(795), + [aux_sym_cmd_identifier_token5] = ACTIONS(795), + [aux_sym_cmd_identifier_token6] = ACTIONS(795), + [aux_sym_cmd_identifier_token7] = ACTIONS(795), + [aux_sym_cmd_identifier_token8] = ACTIONS(795), + [aux_sym_cmd_identifier_token9] = ACTIONS(795), + [aux_sym_cmd_identifier_token10] = ACTIONS(795), + [aux_sym_cmd_identifier_token11] = ACTIONS(795), + [aux_sym_cmd_identifier_token12] = ACTIONS(795), + [aux_sym_cmd_identifier_token13] = ACTIONS(795), + [aux_sym_cmd_identifier_token14] = ACTIONS(795), + [aux_sym_cmd_identifier_token15] = ACTIONS(795), + [aux_sym_cmd_identifier_token16] = ACTIONS(795), + [aux_sym_cmd_identifier_token17] = ACTIONS(795), + [aux_sym_cmd_identifier_token18] = ACTIONS(795), + [aux_sym_cmd_identifier_token19] = ACTIONS(795), + [aux_sym_cmd_identifier_token20] = ACTIONS(795), + [aux_sym_cmd_identifier_token21] = ACTIONS(795), + [aux_sym_cmd_identifier_token22] = ACTIONS(795), + [aux_sym_cmd_identifier_token23] = ACTIONS(795), + [aux_sym_cmd_identifier_token24] = ACTIONS(798), + [aux_sym_cmd_identifier_token25] = ACTIONS(795), + [aux_sym_cmd_identifier_token26] = ACTIONS(798), + [aux_sym_cmd_identifier_token27] = ACTIONS(795), + [aux_sym_cmd_identifier_token28] = ACTIONS(795), + [aux_sym_cmd_identifier_token29] = ACTIONS(795), + [aux_sym_cmd_identifier_token30] = ACTIONS(795), + [aux_sym_cmd_identifier_token31] = ACTIONS(798), + [aux_sym_cmd_identifier_token32] = ACTIONS(798), + [aux_sym_cmd_identifier_token33] = ACTIONS(798), + [aux_sym_cmd_identifier_token34] = ACTIONS(798), + [aux_sym_cmd_identifier_token35] = ACTIONS(798), + [aux_sym_cmd_identifier_token36] = ACTIONS(795), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [anon_sym_null] = ACTIONS(804), + [aux_sym_cmd_identifier_token38] = ACTIONS(807), + [aux_sym_cmd_identifier_token39] = ACTIONS(810), + [aux_sym_cmd_identifier_token40] = ACTIONS(810), + [anon_sym_def] = ACTIONS(813), + [anon_sym_export_DASHenv] = ACTIONS(816), + [anon_sym_extern] = ACTIONS(819), + [anon_sym_module] = ACTIONS(822), + [anon_sym_use] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(834), + [anon_sym_error] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(840), + [anon_sym_break] = ACTIONS(843), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_for] = ACTIONS(849), + [anon_sym_loop] = ACTIONS(852), + [anon_sym_while] = ACTIONS(855), + [anon_sym_do] = ACTIONS(858), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(864), + [aux_sym_ctrl_match_token1] = ACTIONS(867), + [anon_sym_DOT_DOT] = ACTIONS(870), + [anon_sym_try] = ACTIONS(873), + [anon_sym_return] = ACTIONS(876), + [anon_sym_source] = ACTIONS(879), + [anon_sym_source_DASHenv] = ACTIONS(879), + [anon_sym_register] = ACTIONS(882), + [anon_sym_hide] = ACTIONS(885), + [anon_sym_hide_DASHenv] = ACTIONS(888), + [anon_sym_overlay] = ACTIONS(891), + [anon_sym_where] = ACTIONS(894), + [aux_sym_expr_unary_token1] = ACTIONS(897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(900), + [anon_sym_DOT_DOT_LT] = ACTIONS(900), + [aux_sym__val_number_decimal_token1] = ACTIONS(903), + [aux_sym__val_number_decimal_token2] = ACTIONS(906), + [aux_sym__val_number_decimal_token3] = ACTIONS(909), + [aux_sym__val_number_decimal_token4] = ACTIONS(912), + [aux_sym__val_number_token1] = ACTIONS(915), + [aux_sym__val_number_token2] = ACTIONS(915), + [aux_sym__val_number_token3] = ACTIONS(915), + [anon_sym_0b] = ACTIONS(918), + [anon_sym_0o] = ACTIONS(921), + [anon_sym_0x] = ACTIONS(921), + [sym_val_date] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym__str_single_quotes] = ACTIONS(930), + [sym__str_back_ticks] = ACTIONS(930), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), + [aux_sym_env_var_token1] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(247), + }, + [139] = { + [sym__block_body_statement] = STATE(6462), + [sym__declaration] = STATE(7073), + [sym_decl_alias] = STATE(7076), + [sym_stmt_let] = STATE(7237), + [sym_stmt_mut] = STATE(7237), + [sym_stmt_const] = STATE(7237), + [sym_assignment] = STATE(7237), + [sym__mutable_assignment_pattern] = STATE(7503), + [sym__statement] = STATE(7073), + [sym_pipeline] = STATE(7237), + [sym_cmd_identifier] = STATE(4982), + [sym_decl_def] = STATE(7076), + [sym_decl_export] = STATE(7076), + [sym_decl_extern] = STATE(7076), + [sym_decl_module] = STATE(7076), + [sym_decl_use] = STATE(7076), + [sym__ctrl_statement] = STATE(7237), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_for] = STATE(7092), + [sym_ctrl_loop] = STATE(7092), + [sym_ctrl_error] = STATE(7092), + [sym_ctrl_while] = STATE(7092), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4861), + [sym_stmt_source] = STATE(7237), + [sym_stmt_register] = STATE(7237), + [sym__stmt_hide] = STATE(7237), + [sym_hide_mod] = STATE(7267), + [sym_hide_env] = STATE(7267), + [sym__stmt_overlay] = STATE(7237), + [sym_overlay_list] = STATE(7140), + [sym_overlay_hide] = STATE(7140), + [sym_overlay_new] = STATE(7140), + [sym_overlay_use] = STATE(7140), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), + [sym_comment] = STATE(139), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym__block_body_repeat2] = STATE(138), + [aux_sym_pipe_element_repeat2] = STATE(407), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -88704,8 +95156,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(93), [aux_sym__val_number_decimal_token1] = ACTIONS(95), [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), @@ -88718,2368 +95170,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, - [127] = { - [sym__block_body_statement] = STATE(6342), - [sym__declaration] = STATE(6855), - [sym_decl_alias] = STATE(6856), - [sym_stmt_let] = STATE(6860), - [sym_stmt_mut] = STATE(6860), - [sym_stmt_const] = STATE(6860), - [sym_assignment] = STATE(6860), - [sym__mutable_assignment_pattern] = STATE(6861), - [sym__statement] = STATE(6855), - [sym_pipeline] = STATE(6860), - [sym_cmd_identifier] = STATE(4734), - [sym_decl_def] = STATE(6856), - [sym_decl_export] = STATE(6856), - [sym_decl_extern] = STATE(6856), - [sym_decl_module] = STATE(6856), - [sym_decl_use] = STATE(6856), - [sym__ctrl_statement] = STATE(6860), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_for] = STATE(6862), - [sym_ctrl_loop] = STATE(6862), - [sym_ctrl_error] = STATE(6862), - [sym_ctrl_while] = STATE(6862), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_stmt_source] = STATE(6860), - [sym_stmt_register] = STATE(6860), - [sym__stmt_hide] = STATE(6860), - [sym_hide_mod] = STATE(6865), - [sym_hide_env] = STATE(6865), - [sym__stmt_overlay] = STATE(6860), - [sym_overlay_list] = STATE(6866), - [sym_overlay_hide] = STATE(6866), - [sym_overlay_new] = STATE(6866), - [sym_overlay_use] = STATE(6866), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1442), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(127), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym__block_body_repeat2] = STATE(125), - [anon_sym_export] = ACTIONS(351), - [anon_sym_alias] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_let_DASHenv] = ACTIONS(355), - [anon_sym_mut] = ACTIONS(357), - [anon_sym_const] = ACTIONS(359), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(361), - [aux_sym_cmd_identifier_token3] = ACTIONS(361), - [aux_sym_cmd_identifier_token4] = ACTIONS(361), - [aux_sym_cmd_identifier_token5] = ACTIONS(361), - [aux_sym_cmd_identifier_token6] = ACTIONS(361), - [aux_sym_cmd_identifier_token7] = ACTIONS(361), - [aux_sym_cmd_identifier_token8] = ACTIONS(361), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(361), - [aux_sym_cmd_identifier_token11] = ACTIONS(361), - [aux_sym_cmd_identifier_token12] = ACTIONS(361), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(361), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(361), - [aux_sym_cmd_identifier_token17] = ACTIONS(361), - [aux_sym_cmd_identifier_token18] = ACTIONS(361), - [aux_sym_cmd_identifier_token19] = ACTIONS(361), - [aux_sym_cmd_identifier_token20] = ACTIONS(361), - [aux_sym_cmd_identifier_token21] = ACTIONS(361), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [140] = { + [sym__block_body_statement] = STATE(6244), + [sym__declaration] = STATE(6936), + [sym_decl_alias] = STATE(6938), + [sym_stmt_let] = STATE(6939), + [sym_stmt_mut] = STATE(6939), + [sym_stmt_const] = STATE(6939), + [sym_assignment] = STATE(6939), + [sym__mutable_assignment_pattern] = STATE(6940), + [sym__statement] = STATE(6936), + [sym_pipeline] = STATE(6939), + [sym_cmd_identifier] = STATE(4804), + [sym_decl_def] = STATE(6938), + [sym_decl_export] = STATE(6938), + [sym_decl_extern] = STATE(6938), + [sym_decl_module] = STATE(6938), + [sym_decl_use] = STATE(6938), + [sym__ctrl_statement] = STATE(6939), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_for] = STATE(6688), + [sym_ctrl_loop] = STATE(6688), + [sym_ctrl_error] = STATE(6688), + [sym_ctrl_while] = STATE(6688), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_stmt_source] = STATE(6939), + [sym_stmt_register] = STATE(6939), + [sym__stmt_hide] = STATE(6939), + [sym_hide_mod] = STATE(6454), + [sym_hide_env] = STATE(6454), + [sym__stmt_overlay] = STATE(6939), + [sym_overlay_list] = STATE(6483), + [sym_overlay_hide] = STATE(6483), + [sym_overlay_new] = STATE(6483), + [sym_overlay_use] = STATE(6483), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1423), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(140), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym__block_body_repeat2] = STATE(138), + [aux_sym_pipe_element_repeat2] = STATE(408), + [anon_sym_export] = ACTIONS(359), + [anon_sym_alias] = ACTIONS(361), + [anon_sym_let] = ACTIONS(363), + [anon_sym_let_DASHenv] = ACTIONS(363), + [anon_sym_mut] = ACTIONS(365), + [anon_sym_const] = ACTIONS(367), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [anon_sym_def] = ACTIONS(381), + [anon_sym_export_DASHenv] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(385), + [anon_sym_module] = ACTIONS(387), + [anon_sym_use] = ACTIONS(389), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_error] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_for] = ACTIONS(403), + [anon_sym_loop] = ACTIONS(405), + [anon_sym_while] = ACTIONS(407), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_source] = ACTIONS(421), + [anon_sym_source_DASHenv] = ACTIONS(421), + [anon_sym_register] = ACTIONS(423), + [anon_sym_hide] = ACTIONS(425), + [anon_sym_hide_DASHenv] = ACTIONS(427), + [anon_sym_overlay] = ACTIONS(429), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [128] = { - [sym_cell_path] = STATE(139), - [sym_path] = STATE(137), - [sym_comment] = STATE(128), - [aux_sym_cell_path_repeat1] = STATE(129), - [anon_sym_export] = ACTIONS(883), - [anon_sym_alias] = ACTIONS(883), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_let_DASHenv] = ACTIONS(883), - [anon_sym_mut] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [anon_sym_PLUS_EQ] = ACTIONS(885), - [anon_sym_DASH_EQ] = ACTIONS(885), - [anon_sym_STAR_EQ] = ACTIONS(885), - [anon_sym_SLASH_EQ] = ACTIONS(885), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(885), - [aux_sym_cmd_identifier_token1] = ACTIONS(883), - [aux_sym_cmd_identifier_token2] = ACTIONS(883), - [aux_sym_cmd_identifier_token3] = ACTIONS(883), - [aux_sym_cmd_identifier_token4] = ACTIONS(883), - [aux_sym_cmd_identifier_token5] = ACTIONS(883), - [aux_sym_cmd_identifier_token6] = ACTIONS(883), - [aux_sym_cmd_identifier_token7] = ACTIONS(883), - [aux_sym_cmd_identifier_token8] = ACTIONS(883), - [aux_sym_cmd_identifier_token9] = ACTIONS(883), - [aux_sym_cmd_identifier_token10] = ACTIONS(883), - [aux_sym_cmd_identifier_token11] = ACTIONS(883), - [aux_sym_cmd_identifier_token12] = ACTIONS(883), - [aux_sym_cmd_identifier_token13] = ACTIONS(883), - [aux_sym_cmd_identifier_token14] = ACTIONS(883), - [aux_sym_cmd_identifier_token15] = ACTIONS(883), - [aux_sym_cmd_identifier_token16] = ACTIONS(883), - [aux_sym_cmd_identifier_token17] = ACTIONS(883), - [aux_sym_cmd_identifier_token18] = ACTIONS(883), - [aux_sym_cmd_identifier_token19] = ACTIONS(883), - [aux_sym_cmd_identifier_token20] = ACTIONS(883), - [aux_sym_cmd_identifier_token21] = ACTIONS(883), - [aux_sym_cmd_identifier_token22] = ACTIONS(883), - [aux_sym_cmd_identifier_token23] = ACTIONS(883), - [aux_sym_cmd_identifier_token24] = ACTIONS(883), - [aux_sym_cmd_identifier_token25] = ACTIONS(883), - [aux_sym_cmd_identifier_token26] = ACTIONS(883), - [aux_sym_cmd_identifier_token27] = ACTIONS(883), - [aux_sym_cmd_identifier_token28] = ACTIONS(883), - [aux_sym_cmd_identifier_token29] = ACTIONS(883), - [aux_sym_cmd_identifier_token30] = ACTIONS(883), - [aux_sym_cmd_identifier_token31] = ACTIONS(883), - [aux_sym_cmd_identifier_token32] = ACTIONS(883), - [aux_sym_cmd_identifier_token33] = ACTIONS(883), - [aux_sym_cmd_identifier_token34] = ACTIONS(883), - [aux_sym_cmd_identifier_token35] = ACTIONS(883), - [aux_sym_cmd_identifier_token36] = ACTIONS(883), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_null] = ACTIONS(885), - [aux_sym_cmd_identifier_token38] = ACTIONS(883), - [aux_sym_cmd_identifier_token39] = ACTIONS(885), - [aux_sym_cmd_identifier_token40] = ACTIONS(885), - [sym__newline] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_def] = ACTIONS(883), - [anon_sym_export_DASHenv] = ACTIONS(883), - [anon_sym_extern] = ACTIONS(883), - [anon_sym_module] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_error] = ACTIONS(883), - [anon_sym_list] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_make] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [anon_sym_do] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_else] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_try] = ACTIONS(883), - [anon_sym_catch] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_source] = ACTIONS(883), - [anon_sym_source_DASHenv] = ACTIONS(883), - [anon_sym_register] = ACTIONS(883), - [anon_sym_hide] = ACTIONS(883), - [anon_sym_hide_DASHenv] = ACTIONS(883), - [anon_sym_overlay] = ACTIONS(883), - [anon_sym_new] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_and] = ACTIONS(885), - [anon_sym_xor] = ACTIONS(885), - [anon_sym_or] = ACTIONS(885), - [anon_sym_not_DASHin] = ACTIONS(885), - [anon_sym_starts_DASHwith] = ACTIONS(885), - [anon_sym_ends_DASHwith] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_EQ_TILDE] = ACTIONS(885), - [anon_sym_BANG_TILDE] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(885), - [anon_sym_bit_DASHshr] = ACTIONS(885), - [anon_sym_bit_DASHand] = ACTIONS(885), - [anon_sym_bit_DASHxor] = ACTIONS(885), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(885), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(887), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(885), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(885), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(885), - [aux_sym__val_number_token1] = ACTIONS(885), - [aux_sym__val_number_token2] = ACTIONS(885), - [aux_sym__val_number_token3] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(885), - [sym__str_single_quotes] = ACTIONS(885), - [sym__str_back_ticks] = ACTIONS(885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(885), - [aux_sym_record_entry_token1] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(3), - }, - [129] = { - [sym_path] = STATE(137), - [sym_comment] = STATE(129), - [aux_sym_cell_path_repeat1] = STATE(130), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_EQ] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [anon_sym_PLUS_EQ] = ACTIONS(891), - [anon_sym_DASH_EQ] = ACTIONS(891), - [anon_sym_STAR_EQ] = ACTIONS(891), - [anon_sym_SLASH_EQ] = ACTIONS(891), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(891), - [aux_sym_cmd_identifier_token1] = ACTIONS(889), - [aux_sym_cmd_identifier_token2] = ACTIONS(889), - [aux_sym_cmd_identifier_token3] = ACTIONS(889), - [aux_sym_cmd_identifier_token4] = ACTIONS(889), - [aux_sym_cmd_identifier_token5] = ACTIONS(889), - [aux_sym_cmd_identifier_token6] = ACTIONS(889), - [aux_sym_cmd_identifier_token7] = ACTIONS(889), - [aux_sym_cmd_identifier_token8] = ACTIONS(889), - [aux_sym_cmd_identifier_token9] = ACTIONS(889), - [aux_sym_cmd_identifier_token10] = ACTIONS(889), - [aux_sym_cmd_identifier_token11] = ACTIONS(889), - [aux_sym_cmd_identifier_token12] = ACTIONS(889), - [aux_sym_cmd_identifier_token13] = ACTIONS(889), - [aux_sym_cmd_identifier_token14] = ACTIONS(889), - [aux_sym_cmd_identifier_token15] = ACTIONS(889), - [aux_sym_cmd_identifier_token16] = ACTIONS(889), - [aux_sym_cmd_identifier_token17] = ACTIONS(889), - [aux_sym_cmd_identifier_token18] = ACTIONS(889), - [aux_sym_cmd_identifier_token19] = ACTIONS(889), - [aux_sym_cmd_identifier_token20] = ACTIONS(889), - [aux_sym_cmd_identifier_token21] = ACTIONS(889), - [aux_sym_cmd_identifier_token22] = ACTIONS(889), - [aux_sym_cmd_identifier_token23] = ACTIONS(889), - [aux_sym_cmd_identifier_token24] = ACTIONS(889), - [aux_sym_cmd_identifier_token25] = ACTIONS(889), - [aux_sym_cmd_identifier_token26] = ACTIONS(889), - [aux_sym_cmd_identifier_token27] = ACTIONS(889), - [aux_sym_cmd_identifier_token28] = ACTIONS(889), - [aux_sym_cmd_identifier_token29] = ACTIONS(889), - [aux_sym_cmd_identifier_token30] = ACTIONS(889), - [aux_sym_cmd_identifier_token31] = ACTIONS(889), - [aux_sym_cmd_identifier_token32] = ACTIONS(889), - [aux_sym_cmd_identifier_token33] = ACTIONS(889), - [aux_sym_cmd_identifier_token34] = ACTIONS(889), - [aux_sym_cmd_identifier_token35] = ACTIONS(889), - [aux_sym_cmd_identifier_token36] = ACTIONS(889), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_null] = ACTIONS(891), - [aux_sym_cmd_identifier_token38] = ACTIONS(889), - [aux_sym_cmd_identifier_token39] = ACTIONS(891), - [aux_sym_cmd_identifier_token40] = ACTIONS(891), - [sym__newline] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_error] = ACTIONS(889), - [anon_sym_list] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_make] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_catch] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_new] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(889), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(891), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(887), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(891), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(891), - [aux_sym_record_entry_token1] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), - }, - [130] = { - [sym_path] = STATE(137), - [sym_comment] = STATE(130), - [aux_sym_cell_path_repeat1] = STATE(130), - [anon_sym_export] = ACTIONS(893), - [anon_sym_alias] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(893), - [anon_sym_let] = ACTIONS(893), - [anon_sym_let_DASHenv] = ACTIONS(893), - [anon_sym_mut] = ACTIONS(893), - [anon_sym_const] = ACTIONS(893), - [anon_sym_PLUS_EQ] = ACTIONS(895), - [anon_sym_DASH_EQ] = ACTIONS(895), - [anon_sym_STAR_EQ] = ACTIONS(895), - [anon_sym_SLASH_EQ] = ACTIONS(895), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(895), - [aux_sym_cmd_identifier_token1] = ACTIONS(893), - [aux_sym_cmd_identifier_token2] = ACTIONS(893), - [aux_sym_cmd_identifier_token3] = ACTIONS(893), - [aux_sym_cmd_identifier_token4] = ACTIONS(893), - [aux_sym_cmd_identifier_token5] = ACTIONS(893), - [aux_sym_cmd_identifier_token6] = ACTIONS(893), - [aux_sym_cmd_identifier_token7] = ACTIONS(893), - [aux_sym_cmd_identifier_token8] = ACTIONS(893), - [aux_sym_cmd_identifier_token9] = ACTIONS(893), - [aux_sym_cmd_identifier_token10] = ACTIONS(893), - [aux_sym_cmd_identifier_token11] = ACTIONS(893), - [aux_sym_cmd_identifier_token12] = ACTIONS(893), - [aux_sym_cmd_identifier_token13] = ACTIONS(893), - [aux_sym_cmd_identifier_token14] = ACTIONS(893), - [aux_sym_cmd_identifier_token15] = ACTIONS(893), - [aux_sym_cmd_identifier_token16] = ACTIONS(893), - [aux_sym_cmd_identifier_token17] = ACTIONS(893), - [aux_sym_cmd_identifier_token18] = ACTIONS(893), - [aux_sym_cmd_identifier_token19] = ACTIONS(893), - [aux_sym_cmd_identifier_token20] = ACTIONS(893), - [aux_sym_cmd_identifier_token21] = ACTIONS(893), - [aux_sym_cmd_identifier_token22] = ACTIONS(893), - [aux_sym_cmd_identifier_token23] = ACTIONS(893), - [aux_sym_cmd_identifier_token24] = ACTIONS(893), - [aux_sym_cmd_identifier_token25] = ACTIONS(893), - [aux_sym_cmd_identifier_token26] = ACTIONS(893), - [aux_sym_cmd_identifier_token27] = ACTIONS(893), - [aux_sym_cmd_identifier_token28] = ACTIONS(893), - [aux_sym_cmd_identifier_token29] = ACTIONS(893), - [aux_sym_cmd_identifier_token30] = ACTIONS(893), - [aux_sym_cmd_identifier_token31] = ACTIONS(893), - [aux_sym_cmd_identifier_token32] = ACTIONS(893), - [aux_sym_cmd_identifier_token33] = ACTIONS(893), - [aux_sym_cmd_identifier_token34] = ACTIONS(893), - [aux_sym_cmd_identifier_token35] = ACTIONS(893), - [aux_sym_cmd_identifier_token36] = ACTIONS(893), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [anon_sym_null] = ACTIONS(895), - [aux_sym_cmd_identifier_token38] = ACTIONS(893), - [aux_sym_cmd_identifier_token39] = ACTIONS(895), - [aux_sym_cmd_identifier_token40] = ACTIONS(895), - [sym__newline] = ACTIONS(893), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_def] = ACTIONS(893), - [anon_sym_export_DASHenv] = ACTIONS(893), - [anon_sym_extern] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_use] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_COMMA] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_error] = ACTIONS(893), - [anon_sym_list] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_in] = ACTIONS(893), - [anon_sym_loop] = ACTIONS(893), - [anon_sym_make] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_else] = ACTIONS(893), - [anon_sym_match] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_try] = ACTIONS(893), - [anon_sym_catch] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_source] = ACTIONS(893), - [anon_sym_source_DASHenv] = ACTIONS(893), - [anon_sym_register] = ACTIONS(893), - [anon_sym_hide] = ACTIONS(893), - [anon_sym_hide_DASHenv] = ACTIONS(893), - [anon_sym_overlay] = ACTIONS(893), - [anon_sym_new] = ACTIONS(893), - [anon_sym_as] = ACTIONS(893), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(893), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_mod] = ACTIONS(893), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(895), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(895), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(895), - [aux_sym__val_number_token1] = ACTIONS(895), - [aux_sym__val_number_token2] = ACTIONS(895), - [aux_sym__val_number_token3] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(895), - [aux_sym_record_entry_token1] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), - }, - [131] = { - [sym_comment] = STATE(131), - [anon_sym_export] = ACTIONS(900), - [anon_sym_alias] = ACTIONS(900), - [anon_sym_EQ] = ACTIONS(900), - [anon_sym_let] = ACTIONS(900), - [anon_sym_let_DASHenv] = ACTIONS(900), - [anon_sym_mut] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [anon_sym_PLUS_EQ] = ACTIONS(902), - [anon_sym_DASH_EQ] = ACTIONS(902), - [anon_sym_STAR_EQ] = ACTIONS(902), - [anon_sym_SLASH_EQ] = ACTIONS(902), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(902), - [aux_sym_cmd_identifier_token1] = ACTIONS(900), - [aux_sym_cmd_identifier_token2] = ACTIONS(900), - [aux_sym_cmd_identifier_token3] = ACTIONS(900), - [aux_sym_cmd_identifier_token4] = ACTIONS(900), - [aux_sym_cmd_identifier_token5] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(900), - [aux_sym_cmd_identifier_token7] = ACTIONS(900), - [aux_sym_cmd_identifier_token8] = ACTIONS(900), - [aux_sym_cmd_identifier_token9] = ACTIONS(900), - [aux_sym_cmd_identifier_token10] = ACTIONS(900), - [aux_sym_cmd_identifier_token11] = ACTIONS(900), - [aux_sym_cmd_identifier_token12] = ACTIONS(900), - [aux_sym_cmd_identifier_token13] = ACTIONS(900), - [aux_sym_cmd_identifier_token14] = ACTIONS(900), - [aux_sym_cmd_identifier_token15] = ACTIONS(900), - [aux_sym_cmd_identifier_token16] = ACTIONS(900), - [aux_sym_cmd_identifier_token17] = ACTIONS(900), - [aux_sym_cmd_identifier_token18] = ACTIONS(900), - [aux_sym_cmd_identifier_token19] = ACTIONS(900), - [aux_sym_cmd_identifier_token20] = ACTIONS(900), - [aux_sym_cmd_identifier_token21] = ACTIONS(900), - [aux_sym_cmd_identifier_token22] = ACTIONS(900), - [aux_sym_cmd_identifier_token23] = ACTIONS(900), - [aux_sym_cmd_identifier_token24] = ACTIONS(900), - [aux_sym_cmd_identifier_token25] = ACTIONS(900), - [aux_sym_cmd_identifier_token26] = ACTIONS(900), - [aux_sym_cmd_identifier_token27] = ACTIONS(900), - [aux_sym_cmd_identifier_token28] = ACTIONS(900), - [aux_sym_cmd_identifier_token29] = ACTIONS(900), - [aux_sym_cmd_identifier_token30] = ACTIONS(900), - [aux_sym_cmd_identifier_token31] = ACTIONS(900), - [aux_sym_cmd_identifier_token32] = ACTIONS(900), - [aux_sym_cmd_identifier_token33] = ACTIONS(900), - [aux_sym_cmd_identifier_token34] = ACTIONS(900), - [aux_sym_cmd_identifier_token35] = ACTIONS(900), - [aux_sym_cmd_identifier_token36] = ACTIONS(900), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [anon_sym_null] = ACTIONS(902), - [aux_sym_cmd_identifier_token38] = ACTIONS(900), - [aux_sym_cmd_identifier_token39] = ACTIONS(902), - [aux_sym_cmd_identifier_token40] = ACTIONS(902), - [sym__newline] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_err_GT_PIPE] = ACTIONS(902), - [anon_sym_out_GT_PIPE] = ACTIONS(902), - [anon_sym_e_GT_PIPE] = ACTIONS(902), - [anon_sym_o_GT_PIPE] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(902), - [anon_sym_def] = ACTIONS(900), - [anon_sym_export_DASHenv] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(900), - [anon_sym_module] = ACTIONS(900), - [anon_sym_use] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(902), - [anon_sym_error] = ACTIONS(900), - [anon_sym_list] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(900), - [anon_sym_make] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_match] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_try] = ACTIONS(900), - [anon_sym_catch] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_source] = ACTIONS(900), - [anon_sym_source_DASHenv] = ACTIONS(900), - [anon_sym_register] = ACTIONS(900), - [anon_sym_hide] = ACTIONS(900), - [anon_sym_hide_DASHenv] = ACTIONS(900), - [anon_sym_overlay] = ACTIONS(900), - [anon_sym_new] = ACTIONS(900), - [anon_sym_as] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(904), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT2] = ACTIONS(900), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym_mod] = ACTIONS(900), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(902), - [anon_sym_DOT_DOT2] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(902), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(902), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(902), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(902), - [aux_sym__val_number_token1] = ACTIONS(902), - [aux_sym__val_number_token2] = ACTIONS(902), - [aux_sym__val_number_token3] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym__str_single_quotes] = ACTIONS(902), - [sym__str_back_ticks] = ACTIONS(902), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(902), - [aux_sym_record_entry_token1] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(3), - }, - [132] = { - [sym_comment] = STATE(132), - [anon_sym_export] = ACTIONS(906), - [anon_sym_alias] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_let_DASHenv] = ACTIONS(906), - [anon_sym_mut] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_PLUS_EQ] = ACTIONS(908), - [anon_sym_DASH_EQ] = ACTIONS(908), - [anon_sym_STAR_EQ] = ACTIONS(908), - [anon_sym_SLASH_EQ] = ACTIONS(908), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(908), - [aux_sym_cmd_identifier_token1] = ACTIONS(906), - [aux_sym_cmd_identifier_token2] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(906), - [aux_sym_cmd_identifier_token4] = ACTIONS(906), - [aux_sym_cmd_identifier_token5] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [aux_sym_cmd_identifier_token7] = ACTIONS(906), - [aux_sym_cmd_identifier_token8] = ACTIONS(906), - [aux_sym_cmd_identifier_token9] = ACTIONS(906), - [aux_sym_cmd_identifier_token10] = ACTIONS(906), - [aux_sym_cmd_identifier_token11] = ACTIONS(906), - [aux_sym_cmd_identifier_token12] = ACTIONS(906), - [aux_sym_cmd_identifier_token13] = ACTIONS(906), - [aux_sym_cmd_identifier_token14] = ACTIONS(906), - [aux_sym_cmd_identifier_token15] = ACTIONS(906), - [aux_sym_cmd_identifier_token16] = ACTIONS(906), - [aux_sym_cmd_identifier_token17] = ACTIONS(906), - [aux_sym_cmd_identifier_token18] = ACTIONS(906), - [aux_sym_cmd_identifier_token19] = ACTIONS(906), - [aux_sym_cmd_identifier_token20] = ACTIONS(906), - [aux_sym_cmd_identifier_token21] = ACTIONS(906), - [aux_sym_cmd_identifier_token22] = ACTIONS(906), - [aux_sym_cmd_identifier_token23] = ACTIONS(906), - [aux_sym_cmd_identifier_token24] = ACTIONS(906), - [aux_sym_cmd_identifier_token25] = ACTIONS(906), - [aux_sym_cmd_identifier_token26] = ACTIONS(906), - [aux_sym_cmd_identifier_token27] = ACTIONS(906), - [aux_sym_cmd_identifier_token28] = ACTIONS(906), - [aux_sym_cmd_identifier_token29] = ACTIONS(906), - [aux_sym_cmd_identifier_token30] = ACTIONS(906), - [aux_sym_cmd_identifier_token31] = ACTIONS(906), - [aux_sym_cmd_identifier_token32] = ACTIONS(906), - [aux_sym_cmd_identifier_token33] = ACTIONS(906), - [aux_sym_cmd_identifier_token34] = ACTIONS(906), - [aux_sym_cmd_identifier_token35] = ACTIONS(906), - [aux_sym_cmd_identifier_token36] = ACTIONS(906), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [anon_sym_null] = ACTIONS(908), - [aux_sym_cmd_identifier_token38] = ACTIONS(906), - [aux_sym_cmd_identifier_token39] = ACTIONS(908), - [aux_sym_cmd_identifier_token40] = ACTIONS(908), - [sym__newline] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_err_GT_PIPE] = ACTIONS(908), - [anon_sym_out_GT_PIPE] = ACTIONS(908), - [anon_sym_e_GT_PIPE] = ACTIONS(908), - [anon_sym_o_GT_PIPE] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), - [anon_sym_def] = ACTIONS(906), - [anon_sym_export_DASHenv] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_use] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(906), - [anon_sym_list] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_in] = ACTIONS(906), - [anon_sym_loop] = ACTIONS(906), - [anon_sym_make] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_try] = ACTIONS(906), - [anon_sym_catch] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_source] = ACTIONS(906), - [anon_sym_source_DASHenv] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_hide] = ACTIONS(906), - [anon_sym_hide_DASHenv] = ACTIONS(906), - [anon_sym_overlay] = ACTIONS(906), - [anon_sym_new] = ACTIONS(906), - [anon_sym_as] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(910), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(906), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(908), - [anon_sym_DOT_DOT2] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(908), - [anon_sym_DOT_DOT_LT2] = ACTIONS(908), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(908), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(908), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(908), - [aux_sym__val_number_token1] = ACTIONS(908), - [aux_sym__val_number_token2] = ACTIONS(908), - [aux_sym__val_number_token3] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(908), - [aux_sym_record_entry_token1] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), - }, - [133] = { - [sym_comment] = STATE(133), - [anon_sym_export] = ACTIONS(912), - [anon_sym_alias] = ACTIONS(912), - [anon_sym_EQ] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_let_DASHenv] = ACTIONS(912), - [anon_sym_mut] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [anon_sym_PLUS_EQ] = ACTIONS(914), - [anon_sym_DASH_EQ] = ACTIONS(914), - [anon_sym_STAR_EQ] = ACTIONS(914), - [anon_sym_SLASH_EQ] = ACTIONS(914), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(914), - [aux_sym_cmd_identifier_token1] = ACTIONS(912), - [aux_sym_cmd_identifier_token2] = ACTIONS(912), - [aux_sym_cmd_identifier_token3] = ACTIONS(912), - [aux_sym_cmd_identifier_token4] = ACTIONS(912), - [aux_sym_cmd_identifier_token5] = ACTIONS(912), - [aux_sym_cmd_identifier_token6] = ACTIONS(912), - [aux_sym_cmd_identifier_token7] = ACTIONS(912), - [aux_sym_cmd_identifier_token8] = ACTIONS(912), - [aux_sym_cmd_identifier_token9] = ACTIONS(912), - [aux_sym_cmd_identifier_token10] = ACTIONS(912), - [aux_sym_cmd_identifier_token11] = ACTIONS(912), - [aux_sym_cmd_identifier_token12] = ACTIONS(912), - [aux_sym_cmd_identifier_token13] = ACTIONS(912), - [aux_sym_cmd_identifier_token14] = ACTIONS(912), - [aux_sym_cmd_identifier_token15] = ACTIONS(912), - [aux_sym_cmd_identifier_token16] = ACTIONS(912), - [aux_sym_cmd_identifier_token17] = ACTIONS(912), - [aux_sym_cmd_identifier_token18] = ACTIONS(912), - [aux_sym_cmd_identifier_token19] = ACTIONS(912), - [aux_sym_cmd_identifier_token20] = ACTIONS(912), - [aux_sym_cmd_identifier_token21] = ACTIONS(912), - [aux_sym_cmd_identifier_token22] = ACTIONS(912), - [aux_sym_cmd_identifier_token23] = ACTIONS(912), - [aux_sym_cmd_identifier_token24] = ACTIONS(912), - [aux_sym_cmd_identifier_token25] = ACTIONS(912), - [aux_sym_cmd_identifier_token26] = ACTIONS(912), - [aux_sym_cmd_identifier_token27] = ACTIONS(912), - [aux_sym_cmd_identifier_token28] = ACTIONS(912), - [aux_sym_cmd_identifier_token29] = ACTIONS(912), - [aux_sym_cmd_identifier_token30] = ACTIONS(912), - [aux_sym_cmd_identifier_token31] = ACTIONS(912), - [aux_sym_cmd_identifier_token32] = ACTIONS(912), - [aux_sym_cmd_identifier_token33] = ACTIONS(912), - [aux_sym_cmd_identifier_token34] = ACTIONS(912), - [aux_sym_cmd_identifier_token35] = ACTIONS(912), - [aux_sym_cmd_identifier_token36] = ACTIONS(912), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(912), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [sym__newline] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_def] = ACTIONS(912), - [anon_sym_export_DASHenv] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym_module] = ACTIONS(912), - [anon_sym_use] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(912), - [anon_sym_list] = ACTIONS(912), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [anon_sym_loop] = ACTIONS(912), - [anon_sym_make] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_match] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_try] = ACTIONS(912), - [anon_sym_catch] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_source] = ACTIONS(912), - [anon_sym_source_DASHenv] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_hide] = ACTIONS(912), - [anon_sym_hide_DASHenv] = ACTIONS(912), - [anon_sym_overlay] = ACTIONS(912), - [anon_sym_new] = ACTIONS(912), - [anon_sym_as] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(912), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_mod] = ACTIONS(912), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(914), - [aux_sym_record_entry_token1] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [134] = { - [sym_comment] = STATE(134), - [anon_sym_export] = ACTIONS(916), - [anon_sym_alias] = ACTIONS(916), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_let] = ACTIONS(916), - [anon_sym_let_DASHenv] = ACTIONS(916), - [anon_sym_mut] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [anon_sym_PLUS_EQ] = ACTIONS(918), - [anon_sym_DASH_EQ] = ACTIONS(918), - [anon_sym_STAR_EQ] = ACTIONS(918), - [anon_sym_SLASH_EQ] = ACTIONS(918), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(918), - [aux_sym_cmd_identifier_token1] = ACTIONS(916), - [aux_sym_cmd_identifier_token2] = ACTIONS(916), - [aux_sym_cmd_identifier_token3] = ACTIONS(916), - [aux_sym_cmd_identifier_token4] = ACTIONS(916), - [aux_sym_cmd_identifier_token5] = ACTIONS(916), - [aux_sym_cmd_identifier_token6] = ACTIONS(916), - [aux_sym_cmd_identifier_token7] = ACTIONS(916), - [aux_sym_cmd_identifier_token8] = ACTIONS(916), - [aux_sym_cmd_identifier_token9] = ACTIONS(916), - [aux_sym_cmd_identifier_token10] = ACTIONS(916), - [aux_sym_cmd_identifier_token11] = ACTIONS(916), - [aux_sym_cmd_identifier_token12] = ACTIONS(916), - [aux_sym_cmd_identifier_token13] = ACTIONS(916), - [aux_sym_cmd_identifier_token14] = ACTIONS(916), - [aux_sym_cmd_identifier_token15] = ACTIONS(916), - [aux_sym_cmd_identifier_token16] = ACTIONS(916), - [aux_sym_cmd_identifier_token17] = ACTIONS(916), - [aux_sym_cmd_identifier_token18] = ACTIONS(916), - [aux_sym_cmd_identifier_token19] = ACTIONS(916), - [aux_sym_cmd_identifier_token20] = ACTIONS(916), - [aux_sym_cmd_identifier_token21] = ACTIONS(916), - [aux_sym_cmd_identifier_token22] = ACTIONS(916), - [aux_sym_cmd_identifier_token23] = ACTIONS(916), - [aux_sym_cmd_identifier_token24] = ACTIONS(916), - [aux_sym_cmd_identifier_token25] = ACTIONS(916), - [aux_sym_cmd_identifier_token26] = ACTIONS(916), - [aux_sym_cmd_identifier_token27] = ACTIONS(916), - [aux_sym_cmd_identifier_token28] = ACTIONS(916), - [aux_sym_cmd_identifier_token29] = ACTIONS(916), - [aux_sym_cmd_identifier_token30] = ACTIONS(916), - [aux_sym_cmd_identifier_token31] = ACTIONS(916), - [aux_sym_cmd_identifier_token32] = ACTIONS(916), - [aux_sym_cmd_identifier_token33] = ACTIONS(916), - [aux_sym_cmd_identifier_token34] = ACTIONS(916), - [aux_sym_cmd_identifier_token35] = ACTIONS(916), - [aux_sym_cmd_identifier_token36] = ACTIONS(916), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(916), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [sym__newline] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_err_GT_PIPE] = ACTIONS(918), - [anon_sym_out_GT_PIPE] = ACTIONS(918), - [anon_sym_e_GT_PIPE] = ACTIONS(918), - [anon_sym_o_GT_PIPE] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(918), - [anon_sym_def] = ACTIONS(916), - [anon_sym_export_DASHenv] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_use] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_error] = ACTIONS(916), - [anon_sym_list] = ACTIONS(916), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [anon_sym_loop] = ACTIONS(916), - [anon_sym_make] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_match] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_try] = ACTIONS(916), - [anon_sym_catch] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_source] = ACTIONS(916), - [anon_sym_source_DASHenv] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_hide] = ACTIONS(916), - [anon_sym_hide_DASHenv] = ACTIONS(916), - [anon_sym_overlay] = ACTIONS(916), - [anon_sym_new] = ACTIONS(916), - [anon_sym_as] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_and] = ACTIONS(918), - [anon_sym_xor] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_not_DASHin] = ACTIONS(918), - [anon_sym_starts_DASHwith] = ACTIONS(918), - [anon_sym_ends_DASHwith] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT2] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_TILDE] = ACTIONS(918), - [anon_sym_BANG_TILDE] = ACTIONS(918), - [anon_sym_STAR_STAR] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_SLASH] = ACTIONS(916), - [anon_sym_mod] = ACTIONS(916), - [anon_sym_SLASH_SLASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(918), - [anon_sym_bit_DASHshr] = ACTIONS(918), - [anon_sym_bit_DASHand] = ACTIONS(918), - [anon_sym_bit_DASHxor] = ACTIONS(918), - [anon_sym_bit_DASHor] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(918), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(918), - [aux_sym_record_entry_token1] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(3), - }, - [135] = { - [sym_comment] = STATE(135), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_PLUS_EQ] = ACTIONS(922), - [anon_sym_DASH_EQ] = ACTIONS(922), - [anon_sym_STAR_EQ] = ACTIONS(922), - [anon_sym_SLASH_EQ] = ACTIONS(922), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(922), - [aux_sym_cmd_identifier_token1] = ACTIONS(920), - [aux_sym_cmd_identifier_token2] = ACTIONS(920), - [aux_sym_cmd_identifier_token3] = ACTIONS(920), - [aux_sym_cmd_identifier_token4] = ACTIONS(920), - [aux_sym_cmd_identifier_token5] = ACTIONS(920), - [aux_sym_cmd_identifier_token6] = ACTIONS(920), - [aux_sym_cmd_identifier_token7] = ACTIONS(920), - [aux_sym_cmd_identifier_token8] = ACTIONS(920), - [aux_sym_cmd_identifier_token9] = ACTIONS(920), - [aux_sym_cmd_identifier_token10] = ACTIONS(920), - [aux_sym_cmd_identifier_token11] = ACTIONS(920), - [aux_sym_cmd_identifier_token12] = ACTIONS(920), - [aux_sym_cmd_identifier_token13] = ACTIONS(920), - [aux_sym_cmd_identifier_token14] = ACTIONS(920), - [aux_sym_cmd_identifier_token15] = ACTIONS(920), - [aux_sym_cmd_identifier_token16] = ACTIONS(920), - [aux_sym_cmd_identifier_token17] = ACTIONS(920), - [aux_sym_cmd_identifier_token18] = ACTIONS(920), - [aux_sym_cmd_identifier_token19] = ACTIONS(920), - [aux_sym_cmd_identifier_token20] = ACTIONS(920), - [aux_sym_cmd_identifier_token21] = ACTIONS(920), - [aux_sym_cmd_identifier_token22] = ACTIONS(920), - [aux_sym_cmd_identifier_token23] = ACTIONS(920), - [aux_sym_cmd_identifier_token24] = ACTIONS(920), - [aux_sym_cmd_identifier_token25] = ACTIONS(920), - [aux_sym_cmd_identifier_token26] = ACTIONS(920), - [aux_sym_cmd_identifier_token27] = ACTIONS(920), - [aux_sym_cmd_identifier_token28] = ACTIONS(920), - [aux_sym_cmd_identifier_token29] = ACTIONS(920), - [aux_sym_cmd_identifier_token30] = ACTIONS(920), - [aux_sym_cmd_identifier_token31] = ACTIONS(920), - [aux_sym_cmd_identifier_token32] = ACTIONS(920), - [aux_sym_cmd_identifier_token33] = ACTIONS(920), - [aux_sym_cmd_identifier_token34] = ACTIONS(920), - [aux_sym_cmd_identifier_token35] = ACTIONS(920), - [aux_sym_cmd_identifier_token36] = ACTIONS(920), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(920), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [sym__newline] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_err_GT_PIPE] = ACTIONS(922), - [anon_sym_out_GT_PIPE] = ACTIONS(922), - [anon_sym_e_GT_PIPE] = ACTIONS(922), - [anon_sym_o_GT_PIPE] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(922), - [anon_sym_def] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_error] = ACTIONS(920), - [anon_sym_list] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_make] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_try] = ACTIONS(920), - [anon_sym_catch] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_new] = ACTIONS(920), - [anon_sym_as] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_and] = ACTIONS(922), - [anon_sym_xor] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_not_DASHin] = ACTIONS(922), - [anon_sym_starts_DASHwith] = ACTIONS(922), - [anon_sym_ends_DASHwith] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_BANG_TILDE] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(920), - [anon_sym_SLASH_SLASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(922), - [anon_sym_bit_DASHshr] = ACTIONS(922), - [anon_sym_bit_DASHand] = ACTIONS(922), - [anon_sym_bit_DASHxor] = ACTIONS(922), - [anon_sym_bit_DASHor] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(922), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(922), - [aux_sym_record_entry_token1] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), - }, - [136] = { - [sym_comment] = STATE(136), - [anon_sym_export] = ACTIONS(924), - [anon_sym_alias] = ACTIONS(924), - [anon_sym_EQ] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_let_DASHenv] = ACTIONS(924), - [anon_sym_mut] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(926), - [aux_sym_cmd_identifier_token1] = ACTIONS(924), - [aux_sym_cmd_identifier_token2] = ACTIONS(924), - [aux_sym_cmd_identifier_token3] = ACTIONS(924), - [aux_sym_cmd_identifier_token4] = ACTIONS(924), - [aux_sym_cmd_identifier_token5] = ACTIONS(924), - [aux_sym_cmd_identifier_token6] = ACTIONS(924), - [aux_sym_cmd_identifier_token7] = ACTIONS(924), - [aux_sym_cmd_identifier_token8] = ACTIONS(924), - [aux_sym_cmd_identifier_token9] = ACTIONS(924), - [aux_sym_cmd_identifier_token10] = ACTIONS(924), - [aux_sym_cmd_identifier_token11] = ACTIONS(924), - [aux_sym_cmd_identifier_token12] = ACTIONS(924), - [aux_sym_cmd_identifier_token13] = ACTIONS(924), - [aux_sym_cmd_identifier_token14] = ACTIONS(924), - [aux_sym_cmd_identifier_token15] = ACTIONS(924), - [aux_sym_cmd_identifier_token16] = ACTIONS(924), - [aux_sym_cmd_identifier_token17] = ACTIONS(924), - [aux_sym_cmd_identifier_token18] = ACTIONS(924), - [aux_sym_cmd_identifier_token19] = ACTIONS(924), - [aux_sym_cmd_identifier_token20] = ACTIONS(924), - [aux_sym_cmd_identifier_token21] = ACTIONS(924), - [aux_sym_cmd_identifier_token22] = ACTIONS(924), - [aux_sym_cmd_identifier_token23] = ACTIONS(924), - [aux_sym_cmd_identifier_token24] = ACTIONS(924), - [aux_sym_cmd_identifier_token25] = ACTIONS(924), - [aux_sym_cmd_identifier_token26] = ACTIONS(924), - [aux_sym_cmd_identifier_token27] = ACTIONS(924), - [aux_sym_cmd_identifier_token28] = ACTIONS(924), - [aux_sym_cmd_identifier_token29] = ACTIONS(924), - [aux_sym_cmd_identifier_token30] = ACTIONS(924), - [aux_sym_cmd_identifier_token31] = ACTIONS(924), - [aux_sym_cmd_identifier_token32] = ACTIONS(924), - [aux_sym_cmd_identifier_token33] = ACTIONS(924), - [aux_sym_cmd_identifier_token34] = ACTIONS(924), - [aux_sym_cmd_identifier_token35] = ACTIONS(924), - [aux_sym_cmd_identifier_token36] = ACTIONS(924), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [anon_sym_null] = ACTIONS(926), - [aux_sym_cmd_identifier_token38] = ACTIONS(924), - [aux_sym_cmd_identifier_token39] = ACTIONS(926), - [aux_sym_cmd_identifier_token40] = ACTIONS(926), - [sym__newline] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_err_GT_PIPE] = ACTIONS(926), - [anon_sym_out_GT_PIPE] = ACTIONS(926), - [anon_sym_e_GT_PIPE] = ACTIONS(926), - [anon_sym_o_GT_PIPE] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(926), - [anon_sym_def] = ACTIONS(924), - [anon_sym_export_DASHenv] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(926), - [anon_sym_error] = ACTIONS(924), - [anon_sym_list] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_make] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_try] = ACTIONS(924), - [anon_sym_catch] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_source] = ACTIONS(924), - [anon_sym_source_DASHenv] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_hide] = ACTIONS(924), - [anon_sym_hide_DASHenv] = ACTIONS(924), - [anon_sym_overlay] = ACTIONS(924), - [anon_sym_new] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_and] = ACTIONS(926), - [anon_sym_xor] = ACTIONS(926), - [anon_sym_or] = ACTIONS(926), - [anon_sym_not_DASHin] = ACTIONS(926), - [anon_sym_starts_DASHwith] = ACTIONS(926), - [anon_sym_ends_DASHwith] = ACTIONS(926), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_EQ_TILDE] = ACTIONS(926), - [anon_sym_BANG_TILDE] = ACTIONS(926), - [anon_sym_STAR_STAR] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(926), - [anon_sym_bit_DASHshr] = ACTIONS(926), - [anon_sym_bit_DASHand] = ACTIONS(926), - [anon_sym_bit_DASHxor] = ACTIONS(926), - [anon_sym_bit_DASHor] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(926), - [anon_sym_DOT_DOT2] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(926), - [anon_sym_DOT_DOT_LT2] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(926), - [aux_sym__val_number_decimal_token1] = ACTIONS(924), - [aux_sym__val_number_decimal_token2] = ACTIONS(926), - [anon_sym_DOT2] = ACTIONS(924), - [aux_sym__val_number_decimal_token3] = ACTIONS(926), - [aux_sym__val_number_token1] = ACTIONS(926), - [aux_sym__val_number_token2] = ACTIONS(926), - [aux_sym__val_number_token3] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym__str_single_quotes] = ACTIONS(926), - [sym__str_back_ticks] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(926), - [aux_sym_record_entry_token1] = ACTIONS(926), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [anon_sym_err_GT_GT] = ACTIONS(926), - [anon_sym_out_GT_GT] = ACTIONS(926), - [anon_sym_e_GT_GT] = ACTIONS(926), - [anon_sym_o_GT_GT] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(3), - }, - [137] = { - [sym_comment] = STATE(137), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_PLUS_EQ] = ACTIONS(930), - [anon_sym_DASH_EQ] = ACTIONS(930), - [anon_sym_STAR_EQ] = ACTIONS(930), - [anon_sym_SLASH_EQ] = ACTIONS(930), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(930), - [aux_sym_cmd_identifier_token1] = ACTIONS(928), - [aux_sym_cmd_identifier_token2] = ACTIONS(928), - [aux_sym_cmd_identifier_token3] = ACTIONS(928), - [aux_sym_cmd_identifier_token4] = ACTIONS(928), - [aux_sym_cmd_identifier_token5] = ACTIONS(928), - [aux_sym_cmd_identifier_token6] = ACTIONS(928), - [aux_sym_cmd_identifier_token7] = ACTIONS(928), - [aux_sym_cmd_identifier_token8] = ACTIONS(928), - [aux_sym_cmd_identifier_token9] = ACTIONS(928), - [aux_sym_cmd_identifier_token10] = ACTIONS(928), - [aux_sym_cmd_identifier_token11] = ACTIONS(928), - [aux_sym_cmd_identifier_token12] = ACTIONS(928), - [aux_sym_cmd_identifier_token13] = ACTIONS(928), - [aux_sym_cmd_identifier_token14] = ACTIONS(928), - [aux_sym_cmd_identifier_token15] = ACTIONS(928), - [aux_sym_cmd_identifier_token16] = ACTIONS(928), - [aux_sym_cmd_identifier_token17] = ACTIONS(928), - [aux_sym_cmd_identifier_token18] = ACTIONS(928), - [aux_sym_cmd_identifier_token19] = ACTIONS(928), - [aux_sym_cmd_identifier_token20] = ACTIONS(928), - [aux_sym_cmd_identifier_token21] = ACTIONS(928), - [aux_sym_cmd_identifier_token22] = ACTIONS(928), - [aux_sym_cmd_identifier_token23] = ACTIONS(928), - [aux_sym_cmd_identifier_token24] = ACTIONS(928), - [aux_sym_cmd_identifier_token25] = ACTIONS(928), - [aux_sym_cmd_identifier_token26] = ACTIONS(928), - [aux_sym_cmd_identifier_token27] = ACTIONS(928), - [aux_sym_cmd_identifier_token28] = ACTIONS(928), - [aux_sym_cmd_identifier_token29] = ACTIONS(928), - [aux_sym_cmd_identifier_token30] = ACTIONS(928), - [aux_sym_cmd_identifier_token31] = ACTIONS(928), - [aux_sym_cmd_identifier_token32] = ACTIONS(928), - [aux_sym_cmd_identifier_token33] = ACTIONS(928), - [aux_sym_cmd_identifier_token34] = ACTIONS(928), - [aux_sym_cmd_identifier_token35] = ACTIONS(928), - [aux_sym_cmd_identifier_token36] = ACTIONS(928), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [anon_sym_null] = ACTIONS(930), - [aux_sym_cmd_identifier_token38] = ACTIONS(928), - [aux_sym_cmd_identifier_token39] = ACTIONS(930), - [aux_sym_cmd_identifier_token40] = ACTIONS(930), - [sym__newline] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_err_GT_PIPE] = ACTIONS(930), - [anon_sym_out_GT_PIPE] = ACTIONS(930), - [anon_sym_e_GT_PIPE] = ACTIONS(930), - [anon_sym_o_GT_PIPE] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_error] = ACTIONS(928), - [anon_sym_list] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_make] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_try] = ACTIONS(928), - [anon_sym_catch] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_as] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_and] = ACTIONS(930), - [anon_sym_xor] = ACTIONS(930), - [anon_sym_or] = ACTIONS(930), - [anon_sym_not_DASHin] = ACTIONS(930), - [anon_sym_starts_DASHwith] = ACTIONS(930), - [anon_sym_ends_DASHwith] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(930), - [anon_sym_BANG_EQ] = ACTIONS(930), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(930), - [anon_sym_GT_EQ] = ACTIONS(930), - [anon_sym_EQ_TILDE] = ACTIONS(930), - [anon_sym_BANG_TILDE] = ACTIONS(930), - [anon_sym_STAR_STAR] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_SLASH_SLASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(930), - [anon_sym_bit_DASHshr] = ACTIONS(930), - [anon_sym_bit_DASHand] = ACTIONS(930), - [anon_sym_bit_DASHxor] = ACTIONS(930), - [anon_sym_bit_DASHor] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(930), - [anon_sym_DOT_DOT2] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(930), - [aux_sym__val_number_decimal_token1] = ACTIONS(928), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [anon_sym_DOT2] = ACTIONS(928), - [aux_sym__val_number_decimal_token3] = ACTIONS(930), - [aux_sym__val_number_token1] = ACTIONS(930), - [aux_sym__val_number_token2] = ACTIONS(930), - [aux_sym__val_number_token3] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym__str_single_quotes] = ACTIONS(930), - [sym__str_back_ticks] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(930), - [aux_sym_record_entry_token1] = ACTIONS(930), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [anon_sym_err_GT_GT] = ACTIONS(930), - [anon_sym_out_GT_GT] = ACTIONS(930), - [anon_sym_e_GT_GT] = ACTIONS(930), - [anon_sym_o_GT_GT] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(3), - }, - [138] = { - [sym_comment] = STATE(138), - [anon_sym_export] = ACTIONS(932), - [anon_sym_alias] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_let_DASHenv] = ACTIONS(932), - [anon_sym_mut] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_PLUS_EQ] = ACTIONS(934), - [anon_sym_DASH_EQ] = ACTIONS(934), - [anon_sym_STAR_EQ] = ACTIONS(934), - [anon_sym_SLASH_EQ] = ACTIONS(934), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(934), - [aux_sym_cmd_identifier_token1] = ACTIONS(932), - [aux_sym_cmd_identifier_token2] = ACTIONS(932), - [aux_sym_cmd_identifier_token3] = ACTIONS(932), - [aux_sym_cmd_identifier_token4] = ACTIONS(932), - [aux_sym_cmd_identifier_token5] = ACTIONS(932), - [aux_sym_cmd_identifier_token6] = ACTIONS(932), - [aux_sym_cmd_identifier_token7] = ACTIONS(932), - [aux_sym_cmd_identifier_token8] = ACTIONS(932), - [aux_sym_cmd_identifier_token9] = ACTIONS(932), - [aux_sym_cmd_identifier_token10] = ACTIONS(932), - [aux_sym_cmd_identifier_token11] = ACTIONS(932), - [aux_sym_cmd_identifier_token12] = ACTIONS(932), - [aux_sym_cmd_identifier_token13] = ACTIONS(932), - [aux_sym_cmd_identifier_token14] = ACTIONS(932), - [aux_sym_cmd_identifier_token15] = ACTIONS(932), - [aux_sym_cmd_identifier_token16] = ACTIONS(932), - [aux_sym_cmd_identifier_token17] = ACTIONS(932), - [aux_sym_cmd_identifier_token18] = ACTIONS(932), - [aux_sym_cmd_identifier_token19] = ACTIONS(932), - [aux_sym_cmd_identifier_token20] = ACTIONS(932), - [aux_sym_cmd_identifier_token21] = ACTIONS(932), - [aux_sym_cmd_identifier_token22] = ACTIONS(932), - [aux_sym_cmd_identifier_token23] = ACTIONS(932), - [aux_sym_cmd_identifier_token24] = ACTIONS(932), - [aux_sym_cmd_identifier_token25] = ACTIONS(932), - [aux_sym_cmd_identifier_token26] = ACTIONS(932), - [aux_sym_cmd_identifier_token27] = ACTIONS(932), - [aux_sym_cmd_identifier_token28] = ACTIONS(932), - [aux_sym_cmd_identifier_token29] = ACTIONS(932), - [aux_sym_cmd_identifier_token30] = ACTIONS(932), - [aux_sym_cmd_identifier_token31] = ACTIONS(932), - [aux_sym_cmd_identifier_token32] = ACTIONS(932), - [aux_sym_cmd_identifier_token33] = ACTIONS(932), - [aux_sym_cmd_identifier_token34] = ACTIONS(932), - [aux_sym_cmd_identifier_token35] = ACTIONS(932), - [aux_sym_cmd_identifier_token36] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_null] = ACTIONS(934), - [aux_sym_cmd_identifier_token38] = ACTIONS(932), - [aux_sym_cmd_identifier_token39] = ACTIONS(934), - [aux_sym_cmd_identifier_token40] = ACTIONS(934), - [sym__newline] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_err_GT_PIPE] = ACTIONS(934), - [anon_sym_out_GT_PIPE] = ACTIONS(934), - [anon_sym_e_GT_PIPE] = ACTIONS(934), - [anon_sym_o_GT_PIPE] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(934), - [anon_sym_def] = ACTIONS(932), - [anon_sym_export_DASHenv] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_error] = ACTIONS(932), - [anon_sym_list] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_make] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_try] = ACTIONS(932), - [anon_sym_catch] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_source] = ACTIONS(932), - [anon_sym_source_DASHenv] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_hide] = ACTIONS(932), - [anon_sym_hide_DASHenv] = ACTIONS(932), - [anon_sym_overlay] = ACTIONS(932), - [anon_sym_new] = ACTIONS(932), - [anon_sym_as] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_and] = ACTIONS(934), - [anon_sym_xor] = ACTIONS(934), - [anon_sym_or] = ACTIONS(934), - [anon_sym_not_DASHin] = ACTIONS(934), - [anon_sym_starts_DASHwith] = ACTIONS(934), - [anon_sym_ends_DASHwith] = ACTIONS(934), - [anon_sym_EQ_EQ] = ACTIONS(934), - [anon_sym_BANG_EQ] = ACTIONS(934), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(934), - [anon_sym_EQ_TILDE] = ACTIONS(934), - [anon_sym_BANG_TILDE] = ACTIONS(934), - [anon_sym_STAR_STAR] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(932), - [anon_sym_SLASH_SLASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(934), - [anon_sym_bit_DASHshr] = ACTIONS(934), - [anon_sym_bit_DASHand] = ACTIONS(934), - [anon_sym_bit_DASHxor] = ACTIONS(934), - [anon_sym_bit_DASHor] = ACTIONS(934), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(934), - [anon_sym_DOT_DOT2] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(934), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(934), - [aux_sym__val_number_decimal_token1] = ACTIONS(932), - [aux_sym__val_number_decimal_token2] = ACTIONS(934), - [anon_sym_DOT2] = ACTIONS(932), - [aux_sym__val_number_decimal_token3] = ACTIONS(934), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym__str_single_quotes] = ACTIONS(934), - [sym__str_back_ticks] = ACTIONS(934), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(934), - [aux_sym_record_entry_token1] = ACTIONS(934), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [anon_sym_err_GT_GT] = ACTIONS(934), - [anon_sym_out_GT_GT] = ACTIONS(934), - [anon_sym_e_GT_GT] = ACTIONS(934), - [anon_sym_o_GT_GT] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(3), - }, - [139] = { - [sym_comment] = STATE(139), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_PLUS_EQ] = ACTIONS(938), - [anon_sym_DASH_EQ] = ACTIONS(938), - [anon_sym_STAR_EQ] = ACTIONS(938), - [anon_sym_SLASH_EQ] = ACTIONS(938), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(938), - [aux_sym_cmd_identifier_token1] = ACTIONS(936), - [aux_sym_cmd_identifier_token2] = ACTIONS(936), - [aux_sym_cmd_identifier_token3] = ACTIONS(936), - [aux_sym_cmd_identifier_token4] = ACTIONS(936), - [aux_sym_cmd_identifier_token5] = ACTIONS(936), - [aux_sym_cmd_identifier_token6] = ACTIONS(936), - [aux_sym_cmd_identifier_token7] = ACTIONS(936), - [aux_sym_cmd_identifier_token8] = ACTIONS(936), - [aux_sym_cmd_identifier_token9] = ACTIONS(936), - [aux_sym_cmd_identifier_token10] = ACTIONS(936), - [aux_sym_cmd_identifier_token11] = ACTIONS(936), - [aux_sym_cmd_identifier_token12] = ACTIONS(936), - [aux_sym_cmd_identifier_token13] = ACTIONS(936), - [aux_sym_cmd_identifier_token14] = ACTIONS(936), - [aux_sym_cmd_identifier_token15] = ACTIONS(936), - [aux_sym_cmd_identifier_token16] = ACTIONS(936), - [aux_sym_cmd_identifier_token17] = ACTIONS(936), - [aux_sym_cmd_identifier_token18] = ACTIONS(936), - [aux_sym_cmd_identifier_token19] = ACTIONS(936), - [aux_sym_cmd_identifier_token20] = ACTIONS(936), - [aux_sym_cmd_identifier_token21] = ACTIONS(936), - [aux_sym_cmd_identifier_token22] = ACTIONS(936), - [aux_sym_cmd_identifier_token23] = ACTIONS(936), - [aux_sym_cmd_identifier_token24] = ACTIONS(936), - [aux_sym_cmd_identifier_token25] = ACTIONS(936), - [aux_sym_cmd_identifier_token26] = ACTIONS(936), - [aux_sym_cmd_identifier_token27] = ACTIONS(936), - [aux_sym_cmd_identifier_token28] = ACTIONS(936), - [aux_sym_cmd_identifier_token29] = ACTIONS(936), - [aux_sym_cmd_identifier_token30] = ACTIONS(936), - [aux_sym_cmd_identifier_token31] = ACTIONS(936), - [aux_sym_cmd_identifier_token32] = ACTIONS(936), - [aux_sym_cmd_identifier_token33] = ACTIONS(936), - [aux_sym_cmd_identifier_token34] = ACTIONS(936), - [aux_sym_cmd_identifier_token35] = ACTIONS(936), - [aux_sym_cmd_identifier_token36] = ACTIONS(936), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [anon_sym_null] = ACTIONS(938), - [aux_sym_cmd_identifier_token38] = ACTIONS(936), - [aux_sym_cmd_identifier_token39] = ACTIONS(938), - [aux_sym_cmd_identifier_token40] = ACTIONS(938), - [sym__newline] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_err_GT_PIPE] = ACTIONS(938), - [anon_sym_out_GT_PIPE] = ACTIONS(938), - [anon_sym_e_GT_PIPE] = ACTIONS(938), - [anon_sym_o_GT_PIPE] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(938), - [anon_sym_DOT_DOT2] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(938), - [aux_sym_record_entry_token1] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [anon_sym_err_GT_GT] = ACTIONS(938), - [anon_sym_out_GT_GT] = ACTIONS(938), - [anon_sym_e_GT_GT] = ACTIONS(938), - [anon_sym_o_GT_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(3), - }, - [140] = { - [sym_comment] = STATE(140), - [anon_sym_export] = ACTIONS(940), - [anon_sym_alias] = ACTIONS(940), - [anon_sym_EQ] = ACTIONS(942), - [anon_sym_let] = ACTIONS(940), - [anon_sym_let_DASHenv] = ACTIONS(940), - [anon_sym_mut] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_PLUS_EQ] = ACTIONS(944), - [anon_sym_DASH_EQ] = ACTIONS(944), - [anon_sym_STAR_EQ] = ACTIONS(944), - [anon_sym_SLASH_EQ] = ACTIONS(944), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(944), - [aux_sym_cmd_identifier_token1] = ACTIONS(940), - [aux_sym_cmd_identifier_token2] = ACTIONS(940), - [aux_sym_cmd_identifier_token3] = ACTIONS(940), - [aux_sym_cmd_identifier_token4] = ACTIONS(940), - [aux_sym_cmd_identifier_token5] = ACTIONS(940), - [aux_sym_cmd_identifier_token6] = ACTIONS(940), - [aux_sym_cmd_identifier_token7] = ACTIONS(940), - [aux_sym_cmd_identifier_token8] = ACTIONS(940), - [aux_sym_cmd_identifier_token9] = ACTIONS(940), - [aux_sym_cmd_identifier_token10] = ACTIONS(940), - [aux_sym_cmd_identifier_token11] = ACTIONS(940), - [aux_sym_cmd_identifier_token12] = ACTIONS(940), - [aux_sym_cmd_identifier_token13] = ACTIONS(940), - [aux_sym_cmd_identifier_token14] = ACTIONS(940), - [aux_sym_cmd_identifier_token15] = ACTIONS(940), - [aux_sym_cmd_identifier_token16] = ACTIONS(940), - [aux_sym_cmd_identifier_token17] = ACTIONS(940), - [aux_sym_cmd_identifier_token18] = ACTIONS(940), - [aux_sym_cmd_identifier_token19] = ACTIONS(940), - [aux_sym_cmd_identifier_token20] = ACTIONS(940), - [aux_sym_cmd_identifier_token21] = ACTIONS(940), - [aux_sym_cmd_identifier_token22] = ACTIONS(940), - [aux_sym_cmd_identifier_token23] = ACTIONS(940), - [aux_sym_cmd_identifier_token24] = ACTIONS(940), - [aux_sym_cmd_identifier_token25] = ACTIONS(940), - [aux_sym_cmd_identifier_token26] = ACTIONS(940), - [aux_sym_cmd_identifier_token27] = ACTIONS(940), - [aux_sym_cmd_identifier_token28] = ACTIONS(940), - [aux_sym_cmd_identifier_token29] = ACTIONS(940), - [aux_sym_cmd_identifier_token30] = ACTIONS(940), - [aux_sym_cmd_identifier_token31] = ACTIONS(940), - [aux_sym_cmd_identifier_token32] = ACTIONS(940), - [aux_sym_cmd_identifier_token33] = ACTIONS(940), - [aux_sym_cmd_identifier_token34] = ACTIONS(940), - [aux_sym_cmd_identifier_token35] = ACTIONS(940), - [aux_sym_cmd_identifier_token36] = ACTIONS(940), - [anon_sym_true] = ACTIONS(946), - [anon_sym_false] = ACTIONS(946), - [anon_sym_null] = ACTIONS(946), - [aux_sym_cmd_identifier_token38] = ACTIONS(940), - [aux_sym_cmd_identifier_token39] = ACTIONS(946), - [aux_sym_cmd_identifier_token40] = ACTIONS(946), - [sym__newline] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_def] = ACTIONS(940), - [anon_sym_export_DASHenv] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym_module] = ACTIONS(940), - [anon_sym_use] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(946), - [anon_sym_error] = ACTIONS(940), - [anon_sym_list] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_in] = ACTIONS(954), - [anon_sym_loop] = ACTIONS(940), - [anon_sym_make] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_match] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_try] = ACTIONS(940), - [anon_sym_catch] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_source] = ACTIONS(940), - [anon_sym_source_DASHenv] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_hide] = ACTIONS(940), - [anon_sym_hide_DASHenv] = ACTIONS(940), - [anon_sym_overlay] = ACTIONS(940), - [anon_sym_new] = ACTIONS(940), - [anon_sym_as] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(948), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(946), - [anon_sym_DOT_DOT2] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), - [anon_sym_DOT_DOT_LT2] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(946), - [aux_sym__val_number_decimal_token1] = ACTIONS(940), - [aux_sym__val_number_decimal_token2] = ACTIONS(946), - [anon_sym_DOT2] = ACTIONS(940), - [aux_sym__val_number_decimal_token3] = ACTIONS(946), - [aux_sym__val_number_token1] = ACTIONS(946), - [aux_sym__val_number_token2] = ACTIONS(946), - [aux_sym__val_number_token3] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym__str_single_quotes] = ACTIONS(946), - [sym__str_back_ticks] = ACTIONS(946), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(946), - [aux_sym_record_entry_token1] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [141] = { - [sym_pipeline] = STATE(7361), - [sym_cmd_identifier] = STATE(4769), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4815), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(2119), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), + [sym__block_body_statement] = STATE(6843), + [sym__declaration] = STATE(7073), + [sym_decl_alias] = STATE(7076), + [sym_stmt_let] = STATE(7237), + [sym_stmt_mut] = STATE(7237), + [sym_stmt_const] = STATE(7237), + [sym_assignment] = STATE(7237), + [sym__mutable_assignment_pattern] = STATE(7503), + [sym__statement] = STATE(7073), + [sym_pipeline] = STATE(7237), + [sym_cmd_identifier] = STATE(4982), + [sym_decl_def] = STATE(7076), + [sym_decl_export] = STATE(7076), + [sym_decl_extern] = STATE(7076), + [sym_decl_module] = STATE(7076), + [sym_decl_use] = STATE(7076), + [sym__ctrl_statement] = STATE(7237), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_for] = STATE(7092), + [sym_ctrl_loop] = STATE(7092), + [sym_ctrl_error] = STATE(7092), + [sym_ctrl_while] = STATE(7092), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4861), + [sym_stmt_source] = STATE(7237), + [sym_stmt_register] = STATE(7237), + [sym__stmt_hide] = STATE(7237), + [sym_hide_mod] = STATE(7267), + [sym_hide_env] = STATE(7267), + [sym__stmt_overlay] = STATE(7237), + [sym_overlay_list] = STATE(7140), + [sym_overlay_hide] = STATE(7140), + [sym_overlay_new] = STATE(7140), + [sym_overlay_use] = STATE(7140), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), [sym_comment] = STATE(141), - [aux_sym_pipeline_repeat1] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym__block_body_repeat2] = STATE(138), + [aux_sym_pipe_element_repeat2] = STATE(407), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token2] = ACTIONS(19), + [aux_sym_cmd_identifier_token3] = ACTIONS(19), + [aux_sym_cmd_identifier_token4] = ACTIONS(19), + [aux_sym_cmd_identifier_token5] = ACTIONS(19), + [aux_sym_cmd_identifier_token6] = ACTIONS(19), + [aux_sym_cmd_identifier_token7] = ACTIONS(19), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token10] = ACTIONS(19), + [aux_sym_cmd_identifier_token11] = ACTIONS(19), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token16] = ACTIONS(19), + [aux_sym_cmd_identifier_token17] = ACTIONS(19), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(19), + [aux_sym_cmd_identifier_token20] = ACTIONS(19), + [aux_sym_cmd_identifier_token21] = ACTIONS(19), [aux_sym_cmd_identifier_token22] = ACTIONS(19), [aux_sym_cmd_identifier_token23] = ACTIONS(19), [aux_sym_cmd_identifier_token24] = ACTIONS(21), @@ -91101,12 +95466,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(27), [aux_sym_cmd_identifier_token39] = ACTIONS(29), [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_def] = ACTIONS(35), + [anon_sym_export_DASHenv] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_use] = ACTIONS(43), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_error] = ACTIONS(51), [anon_sym_DASH] = ACTIONS(53), [anon_sym_break] = ACTIONS(55), [anon_sym_continue] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), [anon_sym_if] = ACTIONS(67), [anon_sym_match] = ACTIONS(69), @@ -91114,14 +95488,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(73), [anon_sym_try] = ACTIONS(75), [anon_sym_return] = ACTIONS(77), + [anon_sym_source] = ACTIONS(79), + [anon_sym_source_DASHenv] = ACTIONS(79), + [anon_sym_register] = ACTIONS(81), + [anon_sym_hide] = ACTIONS(83), + [anon_sym_hide_DASHenv] = ACTIONS(85), + [anon_sym_overlay] = ACTIONS(87), [anon_sym_where] = ACTIONS(89), [aux_sym_expr_unary_token1] = ACTIONS(91), [anon_sym_DOT_DOT_EQ] = ACTIONS(93), [anon_sym_DOT_DOT_LT] = ACTIONS(93), [aux_sym__val_number_decimal_token1] = ACTIONS(95), [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), @@ -91134,167 +95514,2341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, [142] = { - [sym_pipeline] = STATE(6396), - [sym_cmd_identifier] = STATE(4734), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), + [sym_cell_path] = STATE(154), + [sym_path] = STATE(152), [sym_comment] = STATE(142), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(143), + [anon_sym_export] = ACTIONS(945), + [anon_sym_alias] = ACTIONS(945), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_let_DASHenv] = ACTIONS(945), + [anon_sym_mut] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(947), + [aux_sym_cmd_identifier_token1] = ACTIONS(945), + [aux_sym_cmd_identifier_token2] = ACTIONS(945), + [aux_sym_cmd_identifier_token3] = ACTIONS(945), + [aux_sym_cmd_identifier_token4] = ACTIONS(945), + [aux_sym_cmd_identifier_token5] = ACTIONS(945), + [aux_sym_cmd_identifier_token6] = ACTIONS(945), + [aux_sym_cmd_identifier_token7] = ACTIONS(945), + [aux_sym_cmd_identifier_token8] = ACTIONS(945), + [aux_sym_cmd_identifier_token9] = ACTIONS(945), + [aux_sym_cmd_identifier_token10] = ACTIONS(945), + [aux_sym_cmd_identifier_token11] = ACTIONS(945), + [aux_sym_cmd_identifier_token12] = ACTIONS(945), + [aux_sym_cmd_identifier_token13] = ACTIONS(945), + [aux_sym_cmd_identifier_token14] = ACTIONS(945), + [aux_sym_cmd_identifier_token15] = ACTIONS(945), + [aux_sym_cmd_identifier_token16] = ACTIONS(945), + [aux_sym_cmd_identifier_token17] = ACTIONS(945), + [aux_sym_cmd_identifier_token18] = ACTIONS(945), + [aux_sym_cmd_identifier_token19] = ACTIONS(945), + [aux_sym_cmd_identifier_token20] = ACTIONS(945), + [aux_sym_cmd_identifier_token21] = ACTIONS(945), + [aux_sym_cmd_identifier_token22] = ACTIONS(945), + [aux_sym_cmd_identifier_token23] = ACTIONS(945), + [aux_sym_cmd_identifier_token24] = ACTIONS(945), + [aux_sym_cmd_identifier_token25] = ACTIONS(945), + [aux_sym_cmd_identifier_token26] = ACTIONS(945), + [aux_sym_cmd_identifier_token27] = ACTIONS(945), + [aux_sym_cmd_identifier_token28] = ACTIONS(945), + [aux_sym_cmd_identifier_token29] = ACTIONS(945), + [aux_sym_cmd_identifier_token30] = ACTIONS(945), + [aux_sym_cmd_identifier_token31] = ACTIONS(945), + [aux_sym_cmd_identifier_token32] = ACTIONS(945), + [aux_sym_cmd_identifier_token33] = ACTIONS(945), + [aux_sym_cmd_identifier_token34] = ACTIONS(945), + [aux_sym_cmd_identifier_token35] = ACTIONS(945), + [aux_sym_cmd_identifier_token36] = ACTIONS(945), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_null] = ACTIONS(947), + [aux_sym_cmd_identifier_token38] = ACTIONS(945), + [aux_sym_cmd_identifier_token39] = ACTIONS(947), + [aux_sym_cmd_identifier_token40] = ACTIONS(947), + [sym__newline] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_err_GT_PIPE] = ACTIONS(947), + [anon_sym_out_GT_PIPE] = ACTIONS(947), + [anon_sym_e_GT_PIPE] = ACTIONS(947), + [anon_sym_o_GT_PIPE] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), + [anon_sym_def] = ACTIONS(945), + [anon_sym_export_DASHenv] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(945), + [anon_sym_module] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_error] = ACTIONS(945), + [anon_sym_list] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_in] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_make] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_try] = ACTIONS(945), + [anon_sym_catch] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_source] = ACTIONS(945), + [anon_sym_source_DASHenv] = ACTIONS(945), + [anon_sym_register] = ACTIONS(945), + [anon_sym_hide] = ACTIONS(945), + [anon_sym_hide_DASHenv] = ACTIONS(945), + [anon_sym_overlay] = ACTIONS(945), + [anon_sym_new] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [aux_sym_expr_binary_token1] = ACTIONS(947), + [aux_sym_expr_binary_token2] = ACTIONS(947), + [aux_sym_expr_binary_token3] = ACTIONS(947), + [aux_sym_expr_binary_token4] = ACTIONS(947), + [aux_sym_expr_binary_token5] = ACTIONS(947), + [aux_sym_expr_binary_token6] = ACTIONS(947), + [aux_sym_expr_binary_token7] = ACTIONS(947), + [aux_sym_expr_binary_token8] = ACTIONS(947), + [aux_sym_expr_binary_token9] = ACTIONS(947), + [aux_sym_expr_binary_token10] = ACTIONS(947), + [aux_sym_expr_binary_token11] = ACTIONS(947), + [aux_sym_expr_binary_token12] = ACTIONS(947), + [aux_sym_expr_binary_token13] = ACTIONS(947), + [aux_sym_expr_binary_token14] = ACTIONS(947), + [aux_sym_expr_binary_token15] = ACTIONS(947), + [aux_sym_expr_binary_token16] = ACTIONS(947), + [aux_sym_expr_binary_token17] = ACTIONS(947), + [aux_sym_expr_binary_token18] = ACTIONS(947), + [aux_sym_expr_binary_token19] = ACTIONS(947), + [aux_sym_expr_binary_token20] = ACTIONS(947), + [aux_sym_expr_binary_token21] = ACTIONS(947), + [aux_sym_expr_binary_token22] = ACTIONS(947), + [aux_sym_expr_binary_token23] = ACTIONS(947), + [aux_sym_expr_binary_token24] = ACTIONS(947), + [aux_sym_expr_binary_token25] = ACTIONS(947), + [aux_sym_expr_binary_token26] = ACTIONS(947), + [aux_sym_expr_binary_token27] = ACTIONS(947), + [aux_sym_expr_binary_token28] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(947), + [anon_sym_DOT_DOT2] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(947), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(947), + [aux_sym__val_number_decimal_token3] = ACTIONS(947), + [aux_sym__val_number_decimal_token4] = ACTIONS(947), + [aux_sym__val_number_token1] = ACTIONS(947), + [aux_sym__val_number_token2] = ACTIONS(947), + [aux_sym__val_number_token3] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym__str_single_quotes] = ACTIONS(947), + [sym__str_back_ticks] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(947), + [aux_sym_record_entry_token1] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(247), }, [143] = { - [sym_pipeline] = STATE(7364), - [sym_cmd_identifier] = STATE(4769), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4815), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(2119), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), + [sym_path] = STATE(152), [sym_comment] = STATE(143), - [aux_sym_pipeline_repeat1] = STATE(158), + [aux_sym_cell_path_repeat1] = STATE(144), + [anon_sym_export] = ACTIONS(951), + [anon_sym_alias] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_let_DASHenv] = ACTIONS(951), + [anon_sym_mut] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(953), + [aux_sym_cmd_identifier_token1] = ACTIONS(951), + [aux_sym_cmd_identifier_token2] = ACTIONS(951), + [aux_sym_cmd_identifier_token3] = ACTIONS(951), + [aux_sym_cmd_identifier_token4] = ACTIONS(951), + [aux_sym_cmd_identifier_token5] = ACTIONS(951), + [aux_sym_cmd_identifier_token6] = ACTIONS(951), + [aux_sym_cmd_identifier_token7] = ACTIONS(951), + [aux_sym_cmd_identifier_token8] = ACTIONS(951), + [aux_sym_cmd_identifier_token9] = ACTIONS(951), + [aux_sym_cmd_identifier_token10] = ACTIONS(951), + [aux_sym_cmd_identifier_token11] = ACTIONS(951), + [aux_sym_cmd_identifier_token12] = ACTIONS(951), + [aux_sym_cmd_identifier_token13] = ACTIONS(951), + [aux_sym_cmd_identifier_token14] = ACTIONS(951), + [aux_sym_cmd_identifier_token15] = ACTIONS(951), + [aux_sym_cmd_identifier_token16] = ACTIONS(951), + [aux_sym_cmd_identifier_token17] = ACTIONS(951), + [aux_sym_cmd_identifier_token18] = ACTIONS(951), + [aux_sym_cmd_identifier_token19] = ACTIONS(951), + [aux_sym_cmd_identifier_token20] = ACTIONS(951), + [aux_sym_cmd_identifier_token21] = ACTIONS(951), + [aux_sym_cmd_identifier_token22] = ACTIONS(951), + [aux_sym_cmd_identifier_token23] = ACTIONS(951), + [aux_sym_cmd_identifier_token24] = ACTIONS(951), + [aux_sym_cmd_identifier_token25] = ACTIONS(951), + [aux_sym_cmd_identifier_token26] = ACTIONS(951), + [aux_sym_cmd_identifier_token27] = ACTIONS(951), + [aux_sym_cmd_identifier_token28] = ACTIONS(951), + [aux_sym_cmd_identifier_token29] = ACTIONS(951), + [aux_sym_cmd_identifier_token30] = ACTIONS(951), + [aux_sym_cmd_identifier_token31] = ACTIONS(951), + [aux_sym_cmd_identifier_token32] = ACTIONS(951), + [aux_sym_cmd_identifier_token33] = ACTIONS(951), + [aux_sym_cmd_identifier_token34] = ACTIONS(951), + [aux_sym_cmd_identifier_token35] = ACTIONS(951), + [aux_sym_cmd_identifier_token36] = ACTIONS(951), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_null] = ACTIONS(953), + [aux_sym_cmd_identifier_token38] = ACTIONS(951), + [aux_sym_cmd_identifier_token39] = ACTIONS(953), + [aux_sym_cmd_identifier_token40] = ACTIONS(953), + [sym__newline] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_err_GT_PIPE] = ACTIONS(953), + [anon_sym_out_GT_PIPE] = ACTIONS(953), + [anon_sym_e_GT_PIPE] = ACTIONS(953), + [anon_sym_o_GT_PIPE] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), + [anon_sym_def] = ACTIONS(951), + [anon_sym_export_DASHenv] = ACTIONS(951), + [anon_sym_extern] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_use] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_error] = ACTIONS(951), + [anon_sym_list] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_in] = ACTIONS(951), + [anon_sym_loop] = ACTIONS(951), + [anon_sym_make] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [anon_sym_do] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_else] = ACTIONS(951), + [anon_sym_match] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_try] = ACTIONS(951), + [anon_sym_catch] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_source] = ACTIONS(951), + [anon_sym_source_DASHenv] = ACTIONS(951), + [anon_sym_register] = ACTIONS(951), + [anon_sym_hide] = ACTIONS(951), + [anon_sym_hide_DASHenv] = ACTIONS(951), + [anon_sym_overlay] = ACTIONS(951), + [anon_sym_new] = ACTIONS(951), + [anon_sym_as] = ACTIONS(951), + [aux_sym_expr_binary_token1] = ACTIONS(953), + [aux_sym_expr_binary_token2] = ACTIONS(953), + [aux_sym_expr_binary_token3] = ACTIONS(953), + [aux_sym_expr_binary_token4] = ACTIONS(953), + [aux_sym_expr_binary_token5] = ACTIONS(953), + [aux_sym_expr_binary_token6] = ACTIONS(953), + [aux_sym_expr_binary_token7] = ACTIONS(953), + [aux_sym_expr_binary_token8] = ACTIONS(953), + [aux_sym_expr_binary_token9] = ACTIONS(953), + [aux_sym_expr_binary_token10] = ACTIONS(953), + [aux_sym_expr_binary_token11] = ACTIONS(953), + [aux_sym_expr_binary_token12] = ACTIONS(953), + [aux_sym_expr_binary_token13] = ACTIONS(953), + [aux_sym_expr_binary_token14] = ACTIONS(953), + [aux_sym_expr_binary_token15] = ACTIONS(953), + [aux_sym_expr_binary_token16] = ACTIONS(953), + [aux_sym_expr_binary_token17] = ACTIONS(953), + [aux_sym_expr_binary_token18] = ACTIONS(953), + [aux_sym_expr_binary_token19] = ACTIONS(953), + [aux_sym_expr_binary_token20] = ACTIONS(953), + [aux_sym_expr_binary_token21] = ACTIONS(953), + [aux_sym_expr_binary_token22] = ACTIONS(953), + [aux_sym_expr_binary_token23] = ACTIONS(953), + [aux_sym_expr_binary_token24] = ACTIONS(953), + [aux_sym_expr_binary_token25] = ACTIONS(953), + [aux_sym_expr_binary_token26] = ACTIONS(953), + [aux_sym_expr_binary_token27] = ACTIONS(953), + [aux_sym_expr_binary_token28] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(953), + [anon_sym_DOT_DOT2] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(953), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(953), + [aux_sym__val_number_decimal_token3] = ACTIONS(953), + [aux_sym__val_number_decimal_token4] = ACTIONS(953), + [aux_sym__val_number_token1] = ACTIONS(953), + [aux_sym__val_number_token2] = ACTIONS(953), + [aux_sym__val_number_token3] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym__str_single_quotes] = ACTIONS(953), + [sym__str_back_ticks] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(953), + [aux_sym_record_entry_token1] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(247), + }, + [144] = { + [sym_path] = STATE(152), + [sym_comment] = STATE(144), + [aux_sym_cell_path_repeat1] = STATE(144), + [anon_sym_export] = ACTIONS(955), + [anon_sym_alias] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_let] = ACTIONS(955), + [anon_sym_let_DASHenv] = ACTIONS(955), + [anon_sym_mut] = ACTIONS(955), + [anon_sym_const] = ACTIONS(955), + [anon_sym_PLUS_EQ] = ACTIONS(957), + [anon_sym_DASH_EQ] = ACTIONS(957), + [anon_sym_STAR_EQ] = ACTIONS(957), + [anon_sym_SLASH_EQ] = ACTIONS(957), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(957), + [aux_sym_cmd_identifier_token1] = ACTIONS(955), + [aux_sym_cmd_identifier_token2] = ACTIONS(955), + [aux_sym_cmd_identifier_token3] = ACTIONS(955), + [aux_sym_cmd_identifier_token4] = ACTIONS(955), + [aux_sym_cmd_identifier_token5] = ACTIONS(955), + [aux_sym_cmd_identifier_token6] = ACTIONS(955), + [aux_sym_cmd_identifier_token7] = ACTIONS(955), + [aux_sym_cmd_identifier_token8] = ACTIONS(955), + [aux_sym_cmd_identifier_token9] = ACTIONS(955), + [aux_sym_cmd_identifier_token10] = ACTIONS(955), + [aux_sym_cmd_identifier_token11] = ACTIONS(955), + [aux_sym_cmd_identifier_token12] = ACTIONS(955), + [aux_sym_cmd_identifier_token13] = ACTIONS(955), + [aux_sym_cmd_identifier_token14] = ACTIONS(955), + [aux_sym_cmd_identifier_token15] = ACTIONS(955), + [aux_sym_cmd_identifier_token16] = ACTIONS(955), + [aux_sym_cmd_identifier_token17] = ACTIONS(955), + [aux_sym_cmd_identifier_token18] = ACTIONS(955), + [aux_sym_cmd_identifier_token19] = ACTIONS(955), + [aux_sym_cmd_identifier_token20] = ACTIONS(955), + [aux_sym_cmd_identifier_token21] = ACTIONS(955), + [aux_sym_cmd_identifier_token22] = ACTIONS(955), + [aux_sym_cmd_identifier_token23] = ACTIONS(955), + [aux_sym_cmd_identifier_token24] = ACTIONS(955), + [aux_sym_cmd_identifier_token25] = ACTIONS(955), + [aux_sym_cmd_identifier_token26] = ACTIONS(955), + [aux_sym_cmd_identifier_token27] = ACTIONS(955), + [aux_sym_cmd_identifier_token28] = ACTIONS(955), + [aux_sym_cmd_identifier_token29] = ACTIONS(955), + [aux_sym_cmd_identifier_token30] = ACTIONS(955), + [aux_sym_cmd_identifier_token31] = ACTIONS(955), + [aux_sym_cmd_identifier_token32] = ACTIONS(955), + [aux_sym_cmd_identifier_token33] = ACTIONS(955), + [aux_sym_cmd_identifier_token34] = ACTIONS(955), + [aux_sym_cmd_identifier_token35] = ACTIONS(955), + [aux_sym_cmd_identifier_token36] = ACTIONS(955), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_null] = ACTIONS(957), + [aux_sym_cmd_identifier_token38] = ACTIONS(955), + [aux_sym_cmd_identifier_token39] = ACTIONS(957), + [aux_sym_cmd_identifier_token40] = ACTIONS(957), + [sym__newline] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_err_GT_PIPE] = ACTIONS(957), + [anon_sym_out_GT_PIPE] = ACTIONS(957), + [anon_sym_e_GT_PIPE] = ACTIONS(957), + [anon_sym_o_GT_PIPE] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), + [anon_sym_def] = ACTIONS(955), + [anon_sym_export_DASHenv] = ACTIONS(955), + [anon_sym_extern] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_use] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_error] = ACTIONS(955), + [anon_sym_list] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_break] = ACTIONS(955), + [anon_sym_continue] = ACTIONS(955), + [anon_sym_for] = ACTIONS(955), + [anon_sym_in] = ACTIONS(955), + [anon_sym_loop] = ACTIONS(955), + [anon_sym_make] = ACTIONS(955), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(955), + [anon_sym_if] = ACTIONS(955), + [anon_sym_else] = ACTIONS(955), + [anon_sym_match] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_try] = ACTIONS(955), + [anon_sym_catch] = ACTIONS(955), + [anon_sym_return] = ACTIONS(955), + [anon_sym_source] = ACTIONS(955), + [anon_sym_source_DASHenv] = ACTIONS(955), + [anon_sym_register] = ACTIONS(955), + [anon_sym_hide] = ACTIONS(955), + [anon_sym_hide_DASHenv] = ACTIONS(955), + [anon_sym_overlay] = ACTIONS(955), + [anon_sym_new] = ACTIONS(955), + [anon_sym_as] = ACTIONS(955), + [aux_sym_expr_binary_token1] = ACTIONS(957), + [aux_sym_expr_binary_token2] = ACTIONS(957), + [aux_sym_expr_binary_token3] = ACTIONS(957), + [aux_sym_expr_binary_token4] = ACTIONS(957), + [aux_sym_expr_binary_token5] = ACTIONS(957), + [aux_sym_expr_binary_token6] = ACTIONS(957), + [aux_sym_expr_binary_token7] = ACTIONS(957), + [aux_sym_expr_binary_token8] = ACTIONS(957), + [aux_sym_expr_binary_token9] = ACTIONS(957), + [aux_sym_expr_binary_token10] = ACTIONS(957), + [aux_sym_expr_binary_token11] = ACTIONS(957), + [aux_sym_expr_binary_token12] = ACTIONS(957), + [aux_sym_expr_binary_token13] = ACTIONS(957), + [aux_sym_expr_binary_token14] = ACTIONS(957), + [aux_sym_expr_binary_token15] = ACTIONS(957), + [aux_sym_expr_binary_token16] = ACTIONS(957), + [aux_sym_expr_binary_token17] = ACTIONS(957), + [aux_sym_expr_binary_token18] = ACTIONS(957), + [aux_sym_expr_binary_token19] = ACTIONS(957), + [aux_sym_expr_binary_token20] = ACTIONS(957), + [aux_sym_expr_binary_token21] = ACTIONS(957), + [aux_sym_expr_binary_token22] = ACTIONS(957), + [aux_sym_expr_binary_token23] = ACTIONS(957), + [aux_sym_expr_binary_token24] = ACTIONS(957), + [aux_sym_expr_binary_token25] = ACTIONS(957), + [aux_sym_expr_binary_token26] = ACTIONS(957), + [aux_sym_expr_binary_token27] = ACTIONS(957), + [aux_sym_expr_binary_token28] = ACTIONS(957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(957), + [anon_sym_DOT_DOT2] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(957), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(957), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(957), + [aux_sym__val_number_decimal_token3] = ACTIONS(957), + [aux_sym__val_number_decimal_token4] = ACTIONS(957), + [aux_sym__val_number_token1] = ACTIONS(957), + [aux_sym__val_number_token2] = ACTIONS(957), + [aux_sym__val_number_token3] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__str_single_quotes] = ACTIONS(957), + [sym__str_back_ticks] = ACTIONS(957), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(957), + [aux_sym_record_entry_token1] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [anon_sym_POUND] = ACTIONS(247), + }, + [145] = { + [sym_comment] = STATE(145), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [sym__newline] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(962), + [anon_sym_list] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_new] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [aux_sym_expr_binary_token1] = ACTIONS(964), + [aux_sym_expr_binary_token2] = ACTIONS(964), + [aux_sym_expr_binary_token3] = ACTIONS(964), + [aux_sym_expr_binary_token4] = ACTIONS(964), + [aux_sym_expr_binary_token5] = ACTIONS(964), + [aux_sym_expr_binary_token6] = ACTIONS(964), + [aux_sym_expr_binary_token7] = ACTIONS(964), + [aux_sym_expr_binary_token8] = ACTIONS(964), + [aux_sym_expr_binary_token9] = ACTIONS(964), + [aux_sym_expr_binary_token10] = ACTIONS(964), + [aux_sym_expr_binary_token11] = ACTIONS(964), + [aux_sym_expr_binary_token12] = ACTIONS(964), + [aux_sym_expr_binary_token13] = ACTIONS(964), + [aux_sym_expr_binary_token14] = ACTIONS(964), + [aux_sym_expr_binary_token15] = ACTIONS(964), + [aux_sym_expr_binary_token16] = ACTIONS(964), + [aux_sym_expr_binary_token17] = ACTIONS(964), + [aux_sym_expr_binary_token18] = ACTIONS(964), + [aux_sym_expr_binary_token19] = ACTIONS(964), + [aux_sym_expr_binary_token20] = ACTIONS(964), + [aux_sym_expr_binary_token21] = ACTIONS(964), + [aux_sym_expr_binary_token22] = ACTIONS(964), + [aux_sym_expr_binary_token23] = ACTIONS(964), + [aux_sym_expr_binary_token24] = ACTIONS(964), + [aux_sym_expr_binary_token25] = ACTIONS(964), + [aux_sym_expr_binary_token26] = ACTIONS(964), + [aux_sym_expr_binary_token27] = ACTIONS(964), + [aux_sym_expr_binary_token28] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [aux_sym_record_entry_token1] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), + }, + [146] = { + [sym_comment] = STATE(146), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(968), + [aux_sym_expr_binary_token1] = ACTIONS(968), + [aux_sym_expr_binary_token2] = ACTIONS(968), + [aux_sym_expr_binary_token3] = ACTIONS(968), + [aux_sym_expr_binary_token4] = ACTIONS(968), + [aux_sym_expr_binary_token5] = ACTIONS(968), + [aux_sym_expr_binary_token6] = ACTIONS(968), + [aux_sym_expr_binary_token7] = ACTIONS(968), + [aux_sym_expr_binary_token8] = ACTIONS(968), + [aux_sym_expr_binary_token9] = ACTIONS(968), + [aux_sym_expr_binary_token10] = ACTIONS(968), + [aux_sym_expr_binary_token11] = ACTIONS(968), + [aux_sym_expr_binary_token12] = ACTIONS(968), + [aux_sym_expr_binary_token13] = ACTIONS(968), + [aux_sym_expr_binary_token14] = ACTIONS(968), + [aux_sym_expr_binary_token15] = ACTIONS(968), + [aux_sym_expr_binary_token16] = ACTIONS(968), + [aux_sym_expr_binary_token17] = ACTIONS(968), + [aux_sym_expr_binary_token18] = ACTIONS(968), + [aux_sym_expr_binary_token19] = ACTIONS(968), + [aux_sym_expr_binary_token20] = ACTIONS(968), + [aux_sym_expr_binary_token21] = ACTIONS(968), + [aux_sym_expr_binary_token22] = ACTIONS(968), + [aux_sym_expr_binary_token23] = ACTIONS(968), + [aux_sym_expr_binary_token24] = ACTIONS(968), + [aux_sym_expr_binary_token25] = ACTIONS(968), + [aux_sym_expr_binary_token26] = ACTIONS(968), + [aux_sym_expr_binary_token27] = ACTIONS(968), + [aux_sym_expr_binary_token28] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [aux_sym_record_entry_token1] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), + }, + [147] = { + [sym_comment] = STATE(147), + [anon_sym_export] = ACTIONS(970), + [anon_sym_alias] = ACTIONS(970), + [anon_sym_EQ] = ACTIONS(970), + [anon_sym_let] = ACTIONS(970), + [anon_sym_let_DASHenv] = ACTIONS(970), + [anon_sym_mut] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [anon_sym_PLUS_EQ] = ACTIONS(972), + [anon_sym_DASH_EQ] = ACTIONS(972), + [anon_sym_STAR_EQ] = ACTIONS(972), + [anon_sym_SLASH_EQ] = ACTIONS(972), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), + [aux_sym_cmd_identifier_token1] = ACTIONS(970), + [aux_sym_cmd_identifier_token2] = ACTIONS(970), + [aux_sym_cmd_identifier_token3] = ACTIONS(970), + [aux_sym_cmd_identifier_token4] = ACTIONS(970), + [aux_sym_cmd_identifier_token5] = ACTIONS(970), + [aux_sym_cmd_identifier_token6] = ACTIONS(970), + [aux_sym_cmd_identifier_token7] = ACTIONS(970), + [aux_sym_cmd_identifier_token8] = ACTIONS(970), + [aux_sym_cmd_identifier_token9] = ACTIONS(970), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(970), + [aux_sym_cmd_identifier_token13] = ACTIONS(970), + [aux_sym_cmd_identifier_token14] = ACTIONS(970), + [aux_sym_cmd_identifier_token15] = ACTIONS(970), + [aux_sym_cmd_identifier_token16] = ACTIONS(970), + [aux_sym_cmd_identifier_token17] = ACTIONS(970), + [aux_sym_cmd_identifier_token18] = ACTIONS(970), + [aux_sym_cmd_identifier_token19] = ACTIONS(970), + [aux_sym_cmd_identifier_token20] = ACTIONS(970), + [aux_sym_cmd_identifier_token21] = ACTIONS(970), + [aux_sym_cmd_identifier_token22] = ACTIONS(970), + [aux_sym_cmd_identifier_token23] = ACTIONS(970), + [aux_sym_cmd_identifier_token24] = ACTIONS(970), + [aux_sym_cmd_identifier_token25] = ACTIONS(970), + [aux_sym_cmd_identifier_token26] = ACTIONS(970), + [aux_sym_cmd_identifier_token27] = ACTIONS(970), + [aux_sym_cmd_identifier_token28] = ACTIONS(970), + [aux_sym_cmd_identifier_token29] = ACTIONS(970), + [aux_sym_cmd_identifier_token30] = ACTIONS(970), + [aux_sym_cmd_identifier_token31] = ACTIONS(970), + [aux_sym_cmd_identifier_token32] = ACTIONS(970), + [aux_sym_cmd_identifier_token33] = ACTIONS(970), + [aux_sym_cmd_identifier_token34] = ACTIONS(970), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_null] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(970), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_err_GT_PIPE] = ACTIONS(972), + [anon_sym_out_GT_PIPE] = ACTIONS(972), + [anon_sym_e_GT_PIPE] = ACTIONS(972), + [anon_sym_o_GT_PIPE] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), + [anon_sym_def] = ACTIONS(970), + [anon_sym_export_DASHenv] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_use] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(970), + [anon_sym_list] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_in] = ACTIONS(970), + [anon_sym_loop] = ACTIONS(970), + [anon_sym_make] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_match] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(970), + [anon_sym_catch] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_source] = ACTIONS(970), + [anon_sym_source_DASHenv] = ACTIONS(970), + [anon_sym_register] = ACTIONS(970), + [anon_sym_hide] = ACTIONS(970), + [anon_sym_hide_DASHenv] = ACTIONS(970), + [anon_sym_overlay] = ACTIONS(970), + [anon_sym_new] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(974), + [aux_sym_expr_binary_token1] = ACTIONS(972), + [aux_sym_expr_binary_token2] = ACTIONS(972), + [aux_sym_expr_binary_token3] = ACTIONS(972), + [aux_sym_expr_binary_token4] = ACTIONS(972), + [aux_sym_expr_binary_token5] = ACTIONS(972), + [aux_sym_expr_binary_token6] = ACTIONS(972), + [aux_sym_expr_binary_token7] = ACTIONS(972), + [aux_sym_expr_binary_token8] = ACTIONS(972), + [aux_sym_expr_binary_token9] = ACTIONS(972), + [aux_sym_expr_binary_token10] = ACTIONS(972), + [aux_sym_expr_binary_token11] = ACTIONS(972), + [aux_sym_expr_binary_token12] = ACTIONS(972), + [aux_sym_expr_binary_token13] = ACTIONS(972), + [aux_sym_expr_binary_token14] = ACTIONS(972), + [aux_sym_expr_binary_token15] = ACTIONS(972), + [aux_sym_expr_binary_token16] = ACTIONS(972), + [aux_sym_expr_binary_token17] = ACTIONS(972), + [aux_sym_expr_binary_token18] = ACTIONS(972), + [aux_sym_expr_binary_token19] = ACTIONS(972), + [aux_sym_expr_binary_token20] = ACTIONS(972), + [aux_sym_expr_binary_token21] = ACTIONS(972), + [aux_sym_expr_binary_token22] = ACTIONS(972), + [aux_sym_expr_binary_token23] = ACTIONS(972), + [aux_sym_expr_binary_token24] = ACTIONS(972), + [aux_sym_expr_binary_token25] = ACTIONS(972), + [aux_sym_expr_binary_token26] = ACTIONS(972), + [aux_sym_expr_binary_token27] = ACTIONS(972), + [aux_sym_expr_binary_token28] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), + [aux_sym_record_entry_token1] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(247), + }, + [148] = { + [sym_comment] = STATE(148), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_list] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_new] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [aux_sym_expr_binary_token1] = ACTIONS(978), + [aux_sym_expr_binary_token2] = ACTIONS(978), + [aux_sym_expr_binary_token3] = ACTIONS(978), + [aux_sym_expr_binary_token4] = ACTIONS(978), + [aux_sym_expr_binary_token5] = ACTIONS(978), + [aux_sym_expr_binary_token6] = ACTIONS(978), + [aux_sym_expr_binary_token7] = ACTIONS(978), + [aux_sym_expr_binary_token8] = ACTIONS(978), + [aux_sym_expr_binary_token9] = ACTIONS(978), + [aux_sym_expr_binary_token10] = ACTIONS(978), + [aux_sym_expr_binary_token11] = ACTIONS(978), + [aux_sym_expr_binary_token12] = ACTIONS(978), + [aux_sym_expr_binary_token13] = ACTIONS(978), + [aux_sym_expr_binary_token14] = ACTIONS(978), + [aux_sym_expr_binary_token15] = ACTIONS(978), + [aux_sym_expr_binary_token16] = ACTIONS(978), + [aux_sym_expr_binary_token17] = ACTIONS(978), + [aux_sym_expr_binary_token18] = ACTIONS(978), + [aux_sym_expr_binary_token19] = ACTIONS(978), + [aux_sym_expr_binary_token20] = ACTIONS(978), + [aux_sym_expr_binary_token21] = ACTIONS(978), + [aux_sym_expr_binary_token22] = ACTIONS(978), + [aux_sym_expr_binary_token23] = ACTIONS(978), + [aux_sym_expr_binary_token24] = ACTIONS(978), + [aux_sym_expr_binary_token25] = ACTIONS(978), + [aux_sym_expr_binary_token26] = ACTIONS(978), + [aux_sym_expr_binary_token27] = ACTIONS(978), + [aux_sym_expr_binary_token28] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [aux_sym_record_entry_token1] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + }, + [149] = { + [sym_comment] = STATE(149), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(980), + [anon_sym_list] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_new] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(984), + [aux_sym_expr_binary_token1] = ACTIONS(982), + [aux_sym_expr_binary_token2] = ACTIONS(982), + [aux_sym_expr_binary_token3] = ACTIONS(982), + [aux_sym_expr_binary_token4] = ACTIONS(982), + [aux_sym_expr_binary_token5] = ACTIONS(982), + [aux_sym_expr_binary_token6] = ACTIONS(982), + [aux_sym_expr_binary_token7] = ACTIONS(982), + [aux_sym_expr_binary_token8] = ACTIONS(982), + [aux_sym_expr_binary_token9] = ACTIONS(982), + [aux_sym_expr_binary_token10] = ACTIONS(982), + [aux_sym_expr_binary_token11] = ACTIONS(982), + [aux_sym_expr_binary_token12] = ACTIONS(982), + [aux_sym_expr_binary_token13] = ACTIONS(982), + [aux_sym_expr_binary_token14] = ACTIONS(982), + [aux_sym_expr_binary_token15] = ACTIONS(982), + [aux_sym_expr_binary_token16] = ACTIONS(982), + [aux_sym_expr_binary_token17] = ACTIONS(982), + [aux_sym_expr_binary_token18] = ACTIONS(982), + [aux_sym_expr_binary_token19] = ACTIONS(982), + [aux_sym_expr_binary_token20] = ACTIONS(982), + [aux_sym_expr_binary_token21] = ACTIONS(982), + [aux_sym_expr_binary_token22] = ACTIONS(982), + [aux_sym_expr_binary_token23] = ACTIONS(982), + [aux_sym_expr_binary_token24] = ACTIONS(982), + [aux_sym_expr_binary_token25] = ACTIONS(982), + [aux_sym_expr_binary_token26] = ACTIONS(982), + [aux_sym_expr_binary_token27] = ACTIONS(982), + [aux_sym_expr_binary_token28] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [aux_sym_record_entry_token1] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), + }, + [150] = { + [sym_comment] = STATE(150), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [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_PLUS_PLUS_EQ] = ACTIONS(988), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(986), + [anon_sym_list] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_new] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [aux_sym_expr_binary_token1] = ACTIONS(988), + [aux_sym_expr_binary_token2] = ACTIONS(988), + [aux_sym_expr_binary_token3] = ACTIONS(988), + [aux_sym_expr_binary_token4] = ACTIONS(988), + [aux_sym_expr_binary_token5] = ACTIONS(988), + [aux_sym_expr_binary_token6] = ACTIONS(988), + [aux_sym_expr_binary_token7] = ACTIONS(988), + [aux_sym_expr_binary_token8] = ACTIONS(988), + [aux_sym_expr_binary_token9] = ACTIONS(988), + [aux_sym_expr_binary_token10] = ACTIONS(988), + [aux_sym_expr_binary_token11] = ACTIONS(988), + [aux_sym_expr_binary_token12] = ACTIONS(988), + [aux_sym_expr_binary_token13] = ACTIONS(988), + [aux_sym_expr_binary_token14] = ACTIONS(988), + [aux_sym_expr_binary_token15] = ACTIONS(988), + [aux_sym_expr_binary_token16] = ACTIONS(988), + [aux_sym_expr_binary_token17] = ACTIONS(988), + [aux_sym_expr_binary_token18] = ACTIONS(988), + [aux_sym_expr_binary_token19] = ACTIONS(988), + [aux_sym_expr_binary_token20] = ACTIONS(988), + [aux_sym_expr_binary_token21] = ACTIONS(988), + [aux_sym_expr_binary_token22] = ACTIONS(988), + [aux_sym_expr_binary_token23] = ACTIONS(988), + [aux_sym_expr_binary_token24] = ACTIONS(988), + [aux_sym_expr_binary_token25] = ACTIONS(988), + [aux_sym_expr_binary_token26] = ACTIONS(988), + [aux_sym_expr_binary_token27] = ACTIONS(988), + [aux_sym_expr_binary_token28] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [aux_sym_record_entry_token1] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(247), + }, + [151] = { + [sym_comment] = STATE(151), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [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_PLUS_PLUS_EQ] = ACTIONS(992), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_list] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_new] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [aux_sym_expr_binary_token1] = ACTIONS(992), + [aux_sym_expr_binary_token2] = ACTIONS(992), + [aux_sym_expr_binary_token3] = ACTIONS(992), + [aux_sym_expr_binary_token4] = ACTIONS(992), + [aux_sym_expr_binary_token5] = ACTIONS(992), + [aux_sym_expr_binary_token6] = ACTIONS(992), + [aux_sym_expr_binary_token7] = ACTIONS(992), + [aux_sym_expr_binary_token8] = ACTIONS(992), + [aux_sym_expr_binary_token9] = ACTIONS(992), + [aux_sym_expr_binary_token10] = ACTIONS(992), + [aux_sym_expr_binary_token11] = ACTIONS(992), + [aux_sym_expr_binary_token12] = ACTIONS(992), + [aux_sym_expr_binary_token13] = ACTIONS(992), + [aux_sym_expr_binary_token14] = ACTIONS(992), + [aux_sym_expr_binary_token15] = ACTIONS(992), + [aux_sym_expr_binary_token16] = ACTIONS(992), + [aux_sym_expr_binary_token17] = ACTIONS(992), + [aux_sym_expr_binary_token18] = ACTIONS(992), + [aux_sym_expr_binary_token19] = ACTIONS(992), + [aux_sym_expr_binary_token20] = ACTIONS(992), + [aux_sym_expr_binary_token21] = ACTIONS(992), + [aux_sym_expr_binary_token22] = ACTIONS(992), + [aux_sym_expr_binary_token23] = ACTIONS(992), + [aux_sym_expr_binary_token24] = ACTIONS(992), + [aux_sym_expr_binary_token25] = ACTIONS(992), + [aux_sym_expr_binary_token26] = ACTIONS(992), + [aux_sym_expr_binary_token27] = ACTIONS(992), + [aux_sym_expr_binary_token28] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [aux_sym_record_entry_token1] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + }, + [152] = { + [sym_comment] = STATE(152), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [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_PLUS_PLUS_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_list] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_new] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [aux_sym_expr_binary_token1] = ACTIONS(996), + [aux_sym_expr_binary_token2] = ACTIONS(996), + [aux_sym_expr_binary_token3] = ACTIONS(996), + [aux_sym_expr_binary_token4] = ACTIONS(996), + [aux_sym_expr_binary_token5] = ACTIONS(996), + [aux_sym_expr_binary_token6] = ACTIONS(996), + [aux_sym_expr_binary_token7] = ACTIONS(996), + [aux_sym_expr_binary_token8] = ACTIONS(996), + [aux_sym_expr_binary_token9] = ACTIONS(996), + [aux_sym_expr_binary_token10] = ACTIONS(996), + [aux_sym_expr_binary_token11] = ACTIONS(996), + [aux_sym_expr_binary_token12] = ACTIONS(996), + [aux_sym_expr_binary_token13] = ACTIONS(996), + [aux_sym_expr_binary_token14] = ACTIONS(996), + [aux_sym_expr_binary_token15] = ACTIONS(996), + [aux_sym_expr_binary_token16] = ACTIONS(996), + [aux_sym_expr_binary_token17] = ACTIONS(996), + [aux_sym_expr_binary_token18] = ACTIONS(996), + [aux_sym_expr_binary_token19] = ACTIONS(996), + [aux_sym_expr_binary_token20] = ACTIONS(996), + [aux_sym_expr_binary_token21] = ACTIONS(996), + [aux_sym_expr_binary_token22] = ACTIONS(996), + [aux_sym_expr_binary_token23] = ACTIONS(996), + [aux_sym_expr_binary_token24] = ACTIONS(996), + [aux_sym_expr_binary_token25] = ACTIONS(996), + [aux_sym_expr_binary_token26] = ACTIONS(996), + [aux_sym_expr_binary_token27] = ACTIONS(996), + [aux_sym_expr_binary_token28] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [aux_sym_record_entry_token1] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + }, + [153] = { + [sym_comment] = STATE(153), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [anon_sym_PLUS_EQ] = ACTIONS(1002), + [anon_sym_DASH_EQ] = ACTIONS(1002), + [anon_sym_STAR_EQ] = ACTIONS(1002), + [anon_sym_SLASH_EQ] = ACTIONS(1002), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(998), + [aux_sym_cmd_identifier_token3] = ACTIONS(998), + [aux_sym_cmd_identifier_token4] = ACTIONS(998), + [aux_sym_cmd_identifier_token5] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(998), + [aux_sym_cmd_identifier_token7] = ACTIONS(998), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(998), + [aux_sym_cmd_identifier_token17] = ACTIONS(998), + [aux_sym_cmd_identifier_token18] = ACTIONS(998), + [aux_sym_cmd_identifier_token19] = ACTIONS(998), + [aux_sym_cmd_identifier_token20] = ACTIONS(998), + [aux_sym_cmd_identifier_token21] = ACTIONS(998), + [aux_sym_cmd_identifier_token22] = ACTIONS(998), + [aux_sym_cmd_identifier_token23] = ACTIONS(998), + [aux_sym_cmd_identifier_token24] = ACTIONS(998), + [aux_sym_cmd_identifier_token25] = ACTIONS(998), + [aux_sym_cmd_identifier_token26] = ACTIONS(998), + [aux_sym_cmd_identifier_token27] = ACTIONS(998), + [aux_sym_cmd_identifier_token28] = ACTIONS(998), + [aux_sym_cmd_identifier_token29] = ACTIONS(998), + [aux_sym_cmd_identifier_token30] = ACTIONS(998), + [aux_sym_cmd_identifier_token31] = ACTIONS(998), + [aux_sym_cmd_identifier_token32] = ACTIONS(998), + [aux_sym_cmd_identifier_token33] = ACTIONS(998), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [sym__newline] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(998), + [anon_sym_list] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_new] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [aux_sym_expr_binary_token1] = ACTIONS(1008), + [aux_sym_expr_binary_token2] = ACTIONS(1008), + [aux_sym_expr_binary_token3] = ACTIONS(1008), + [aux_sym_expr_binary_token4] = ACTIONS(1008), + [aux_sym_expr_binary_token5] = ACTIONS(1008), + [aux_sym_expr_binary_token6] = ACTIONS(1008), + [aux_sym_expr_binary_token7] = ACTIONS(1008), + [aux_sym_expr_binary_token8] = ACTIONS(1008), + [aux_sym_expr_binary_token9] = ACTIONS(1008), + [aux_sym_expr_binary_token10] = ACTIONS(1008), + [aux_sym_expr_binary_token11] = ACTIONS(1008), + [aux_sym_expr_binary_token12] = ACTIONS(1008), + [aux_sym_expr_binary_token13] = ACTIONS(1008), + [aux_sym_expr_binary_token14] = ACTIONS(1008), + [aux_sym_expr_binary_token15] = ACTIONS(1008), + [aux_sym_expr_binary_token16] = ACTIONS(1008), + [aux_sym_expr_binary_token17] = ACTIONS(1008), + [aux_sym_expr_binary_token18] = ACTIONS(1008), + [aux_sym_expr_binary_token19] = ACTIONS(1008), + [aux_sym_expr_binary_token20] = ACTIONS(1008), + [aux_sym_expr_binary_token21] = ACTIONS(1008), + [aux_sym_expr_binary_token22] = ACTIONS(1008), + [aux_sym_expr_binary_token23] = ACTIONS(1008), + [aux_sym_expr_binary_token24] = ACTIONS(1008), + [aux_sym_expr_binary_token25] = ACTIONS(1008), + [aux_sym_expr_binary_token26] = ACTIONS(1008), + [aux_sym_expr_binary_token27] = ACTIONS(1008), + [aux_sym_expr_binary_token28] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [aux_sym_record_entry_token1] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), + }, + [154] = { + [sym_comment] = STATE(154), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [aux_sym_record_entry_token1] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(247), + }, + [155] = { + [sym_pipeline_parenthesized] = STATE(7490), + [sym_cmd_identifier] = STATE(4953), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(155), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [156] = { + [sym_pipeline] = STATE(7229), + [sym_cmd_identifier] = STATE(4982), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4861), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(2175), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), + [sym_comment] = STATE(156), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym_pipe_element_repeat2] = STATE(407), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -91339,7 +97893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(53), [anon_sym_break] = ACTIONS(55), [anon_sym_continue] = ACTIONS(57), @@ -91356,8 +97910,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(93), [aux_sym__val_number_decimal_token1] = ACTIONS(95), [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), @@ -91370,167 +97924,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, - [144] = { - [sym_pipeline_parenthesized] = STATE(7196), - [sym_cmd_identifier] = STATE(4782), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(144), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [157] = { + [sym_pipeline_parenthesized] = STATE(7009), + [sym_cmd_identifier] = STATE(4953), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(157), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [158] = { + [sym_pipeline] = STATE(6734), + [sym_cmd_identifier] = STATE(4804), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(463), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, - [145] = { - [sym_pipeline] = STATE(7452), - [sym_cmd_identifier] = STATE(4769), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4815), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(2119), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), - [sym_comment] = STATE(145), - [aux_sym_pipeline_repeat1] = STATE(158), + [159] = { + [sym_pipeline] = STATE(6740), + [sym_cmd_identifier] = STATE(4804), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [160] = { + [sym_pipeline_parenthesized] = STATE(6951), + [sym_cmd_identifier] = STATE(4953), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(160), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [161] = { + [sym_pipeline] = STATE(6774), + [sym_cmd_identifier] = STATE(4804), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(161), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [162] = { + [sym_pipeline] = STATE(7248), + [sym_cmd_identifier] = STATE(4982), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4861), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(2175), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym_pipe_element_repeat2] = STATE(407), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -91575,7 +98619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(53), [anon_sym_break] = ACTIONS(55), [anon_sym_continue] = ACTIONS(57), @@ -91592,8 +98636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(93), [aux_sym__val_number_decimal_token1] = ACTIONS(95), [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), @@ -91606,49 +98650,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, - [146] = { - [sym_pipeline] = STATE(7189), - [sym_cmd_identifier] = STATE(4769), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4815), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(2119), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), - [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(158), + [163] = { + [sym_pipeline] = STATE(6988), + [sym_cmd_identifier] = STATE(4982), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4861), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(2175), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym_pipe_element_repeat2] = STATE(407), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -91693,7 +98740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(53), [anon_sym_break] = ACTIONS(55), [anon_sym_continue] = ACTIONS(57), @@ -91710,8 +98757,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(93), [aux_sym__val_number_decimal_token1] = ACTIONS(95), [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), @@ -91724,639 +98771,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), - }, - [147] = { - [sym_pipeline_parenthesized] = STATE(7011), - [sym_cmd_identifier] = STATE(4782), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(147), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), - }, - [148] = { - [sym_pipeline_parenthesized] = STATE(7015), - [sym_cmd_identifier] = STATE(4782), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(148), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, - [149] = { - [sym_pipeline] = STATE(6703), - [sym_cmd_identifier] = STATE(4734), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(149), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [164] = { + [sym_pipeline] = STATE(6778), + [sym_cmd_identifier] = STATE(4804), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(164), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [150] = { - [sym_pipeline_parenthesized] = STATE(7133), - [sym_cmd_identifier] = STATE(4782), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(150), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [151] = { - [sym_pipeline_parenthesized] = STATE(7182), - [sym_cmd_identifier] = STATE(4782), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4890), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(151), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(157), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [165] = { + [sym_pipeline_parenthesized] = STATE(7431), + [sym_cmd_identifier] = STATE(4953), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(165), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, - [152] = { - [sym_pipeline] = STATE(7277), - [sym_cmd_identifier] = STATE(4769), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4815), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(2119), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), - [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(158), + [166] = { + [sym_pipeline] = STATE(7190), + [sym_cmd_identifier] = STATE(4982), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4861), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(2175), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym_pipe_element_repeat2] = STATE(407), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -92401,7 +99103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(53), [anon_sym_break] = ACTIONS(55), [anon_sym_continue] = ACTIONS(57), @@ -92418,8 +99120,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(93), [aux_sym__val_number_decimal_token1] = ACTIONS(95), [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), @@ -92432,636 +99134,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), - }, - [153] = { - [sym_pipeline] = STATE(6488), - [sym_cmd_identifier] = STATE(4734), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [154] = { - [sym_pipeline] = STATE(6512), - [sym_cmd_identifier] = STATE(4734), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [155] = { - [sym_pipeline] = STATE(6379), - [sym_cmd_identifier] = STATE(4734), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4741), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(159), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [156] = { - [sym_cmd_identifier] = STATE(4782), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(5166), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(156), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(156), - [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(973), - [aux_sym_cmd_identifier_token3] = ACTIONS(973), - [aux_sym_cmd_identifier_token4] = ACTIONS(973), - [aux_sym_cmd_identifier_token5] = ACTIONS(973), - [aux_sym_cmd_identifier_token6] = ACTIONS(973), - [aux_sym_cmd_identifier_token7] = ACTIONS(973), - [aux_sym_cmd_identifier_token8] = ACTIONS(973), - [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(973), - [aux_sym_cmd_identifier_token11] = ACTIONS(973), - [aux_sym_cmd_identifier_token12] = ACTIONS(973), - [aux_sym_cmd_identifier_token13] = ACTIONS(970), - [aux_sym_cmd_identifier_token14] = ACTIONS(973), - [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(973), - [aux_sym_cmd_identifier_token17] = ACTIONS(973), - [aux_sym_cmd_identifier_token18] = ACTIONS(973), - [aux_sym_cmd_identifier_token19] = ACTIONS(973), - [aux_sym_cmd_identifier_token20] = ACTIONS(973), - [aux_sym_cmd_identifier_token21] = ACTIONS(973), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(973), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(973), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(973), - [aux_sym_cmd_identifier_token32] = ACTIONS(973), - [aux_sym_cmd_identifier_token33] = ACTIONS(973), - [aux_sym_cmd_identifier_token34] = ACTIONS(973), - [aux_sym_cmd_identifier_token35] = ACTIONS(973), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = ACTIONS(976), - [anon_sym_null] = ACTIONS(979), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(985), - [aux_sym_cmd_identifier_token40] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1003), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_match] = ACTIONS(1012), - [aux_sym_ctrl_match_token1] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_where] = ACTIONS(1027), - [aux_sym_expr_unary_token1] = ACTIONS(1030), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1036), - [aux_sym__val_number_decimal_token2] = ACTIONS(1039), - [anon_sym_DOT2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token3] = ACTIONS(1045), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_0b] = ACTIONS(1051), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym__str_single_quotes] = ACTIONS(1063), - [sym__str_back_ticks] = ACTIONS(1063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1066), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1069), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_POUND] = ACTIONS(3), - }, - [157] = { - [sym_cmd_identifier] = STATE(4782), - [sym__ctrl_expression_parenthesized] = STATE(5214), - [sym_ctrl_do_parenthesized] = STATE(5223), - [sym_ctrl_if_parenthesized] = STATE(5223), - [sym_ctrl_match] = STATE(5223), - [sym_ctrl_try_parenthesized] = STATE(5223), - [sym_ctrl_return] = STATE(5223), - [sym_pipe_element_parenthesized] = STATE(4902), - [sym_where_command_parenthesized] = STATE(5226), - [sym__expression_parenthesized] = STATE(4037), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3949), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym__command_parenthesized] = STATE(5231), - [sym_comment] = STATE(157), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(156), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_do] = ACTIONS(457), - [anon_sym_if] = ACTIONS(459), - [anon_sym_match] = ACTIONS(405), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(461), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(463), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, - [158] = { - [sym_cmd_identifier] = STATE(4769), - [sym__ctrl_expression] = STATE(5149), - [sym_ctrl_do] = STATE(5164), - [sym_ctrl_if] = STATE(5164), - [sym_ctrl_match] = STATE(5164), - [sym_ctrl_try] = STATE(5164), - [sym_ctrl_return] = STATE(5164), - [sym_pipe_element] = STATE(4901), - [sym_where_command] = STATE(5196), - [sym__expression] = STATE(4036), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4064), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(2119), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1716), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5196), - [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(160), + [167] = { + [sym_pipeline] = STATE(7003), + [sym_cmd_identifier] = STATE(4982), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4861), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(2175), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(174), + [aux_sym_pipe_element_repeat2] = STATE(407), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -93106,7 +99224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(45), [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(53), [anon_sym_break] = ACTIONS(55), [anon_sym_continue] = ACTIONS(57), @@ -93123,8 +99241,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(93), [aux_sym__val_number_decimal_token1] = ACTIONS(95), [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), @@ -93137,18141 +99255,15489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, - [159] = { - [sym_cmd_identifier] = STATE(4734), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(4718), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(159), - [aux_sym_pipeline_repeat1] = STATE(160), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(361), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(361), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(361), - [aux_sym_cmd_identifier_token28] = ACTIONS(361), - [aux_sym_cmd_identifier_token29] = ACTIONS(361), - [aux_sym_cmd_identifier_token30] = ACTIONS(361), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_null] = ACTIONS(367), - [aux_sym_cmd_identifier_token38] = ACTIONS(369), - [aux_sym_cmd_identifier_token39] = ACTIONS(371), - [aux_sym_cmd_identifier_token40] = ACTIONS(371), + [168] = { + [sym_pipeline_parenthesized] = STATE(6949), + [sym_cmd_identifier] = STATE(4953), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4896), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), + [sym_comment] = STATE(168), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [169] = { + [sym_pipeline] = STATE(6916), + [sym_cmd_identifier] = STATE(4804), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4821), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(171), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [160] = { - [sym_cmd_identifier] = STATE(4734), - [sym__ctrl_expression] = STATE(5015), - [sym_ctrl_do] = STATE(5097), - [sym_ctrl_if] = STATE(5097), - [sym_ctrl_match] = STATE(5097), - [sym_ctrl_try] = STATE(5097), - [sym_ctrl_return] = STATE(5097), - [sym_pipe_element] = STATE(5229), - [sym_where_command] = STATE(5017), - [sym__expression] = STATE(3947), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4041), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1646), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5017), - [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(160), - [aux_sym_cmd_identifier_token1] = ACTIONS(1075), - [aux_sym_cmd_identifier_token2] = ACTIONS(1078), - [aux_sym_cmd_identifier_token3] = ACTIONS(1078), - [aux_sym_cmd_identifier_token4] = ACTIONS(1078), - [aux_sym_cmd_identifier_token5] = ACTIONS(1078), - [aux_sym_cmd_identifier_token6] = ACTIONS(1078), - [aux_sym_cmd_identifier_token7] = ACTIONS(1078), - [aux_sym_cmd_identifier_token8] = ACTIONS(1078), - [aux_sym_cmd_identifier_token9] = ACTIONS(1075), - [aux_sym_cmd_identifier_token10] = ACTIONS(1078), - [aux_sym_cmd_identifier_token11] = ACTIONS(1078), - [aux_sym_cmd_identifier_token12] = ACTIONS(1078), - [aux_sym_cmd_identifier_token13] = ACTIONS(1075), - [aux_sym_cmd_identifier_token14] = ACTIONS(1078), - [aux_sym_cmd_identifier_token15] = ACTIONS(1075), - [aux_sym_cmd_identifier_token16] = ACTIONS(1078), - [aux_sym_cmd_identifier_token17] = ACTIONS(1078), - [aux_sym_cmd_identifier_token18] = ACTIONS(1078), - [aux_sym_cmd_identifier_token19] = ACTIONS(1078), - [aux_sym_cmd_identifier_token20] = ACTIONS(1078), - [aux_sym_cmd_identifier_token21] = ACTIONS(1078), - [aux_sym_cmd_identifier_token22] = ACTIONS(1075), - [aux_sym_cmd_identifier_token23] = ACTIONS(1075), - [aux_sym_cmd_identifier_token24] = ACTIONS(1078), - [aux_sym_cmd_identifier_token25] = ACTIONS(1075), - [aux_sym_cmd_identifier_token26] = ACTIONS(1078), - [aux_sym_cmd_identifier_token27] = ACTIONS(1075), - [aux_sym_cmd_identifier_token28] = ACTIONS(1075), - [aux_sym_cmd_identifier_token29] = ACTIONS(1075), - [aux_sym_cmd_identifier_token30] = ACTIONS(1075), - [aux_sym_cmd_identifier_token31] = ACTIONS(1078), - [aux_sym_cmd_identifier_token32] = ACTIONS(1078), - [aux_sym_cmd_identifier_token33] = ACTIONS(1078), - [aux_sym_cmd_identifier_token34] = ACTIONS(1078), - [aux_sym_cmd_identifier_token35] = ACTIONS(1078), - [aux_sym_cmd_identifier_token36] = ACTIONS(1075), - [anon_sym_true] = ACTIONS(1081), - [anon_sym_false] = ACTIONS(1081), - [anon_sym_null] = ACTIONS(1084), - [aux_sym_cmd_identifier_token38] = ACTIONS(1087), - [aux_sym_cmd_identifier_token39] = ACTIONS(1090), - [aux_sym_cmd_identifier_token40] = ACTIONS(1090), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1096), - [anon_sym_DOLLAR] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1114), - [anon_sym_match] = ACTIONS(1117), - [aux_sym_ctrl_match_token1] = ACTIONS(1120), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_try] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1129), - [anon_sym_where] = ACTIONS(1132), - [aux_sym_expr_unary_token1] = ACTIONS(1135), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1138), - [anon_sym_DOT_DOT_LT] = ACTIONS(1138), - [aux_sym__val_number_decimal_token1] = ACTIONS(1141), - [aux_sym__val_number_decimal_token2] = ACTIONS(1144), - [anon_sym_DOT2] = ACTIONS(1147), - [aux_sym__val_number_decimal_token3] = ACTIONS(1150), - [aux_sym__val_number_token1] = ACTIONS(1153), - [aux_sym__val_number_token2] = ACTIONS(1153), - [aux_sym__val_number_token3] = ACTIONS(1153), - [anon_sym_0b] = ACTIONS(1156), - [anon_sym_0o] = ACTIONS(1159), - [anon_sym_0x] = ACTIONS(1159), - [sym_val_date] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_POUND] = ACTIONS(3), - }, - [161] = { - [sym_cmd_identifier] = STATE(7909), - [sym_expr_parenthesized] = STATE(7949), - [sym__spread_parenthesized] = STATE(568), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(7949), - [sym_val_number] = STATE(7949), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7949), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7700), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_comment] = STATE(161), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(271), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [sym__newline] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_do] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(271), - [anon_sym_source] = ACTIONS(271), - [anon_sym_source_DASHenv] = ACTIONS(271), - [anon_sym_register] = ACTIONS(271), - [anon_sym_hide] = ACTIONS(271), - [anon_sym_hide_DASHenv] = ACTIONS(271), - [anon_sym_overlay] = ACTIONS(271), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_POUND] = ACTIONS(3), - }, - [162] = { - [sym_cmd_identifier] = STATE(7909), - [sym_expr_parenthesized] = STATE(7949), - [sym__spread_parenthesized] = STATE(568), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(7949), - [sym_val_number] = STATE(7949), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7949), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(8021), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_comment] = STATE(162), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(271), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [sym__newline] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_do] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(271), - [anon_sym_source] = ACTIONS(271), - [anon_sym_source_DASHenv] = ACTIONS(271), - [anon_sym_register] = ACTIONS(271), - [anon_sym_hide] = ACTIONS(271), - [anon_sym_hide_DASHenv] = ACTIONS(271), - [anon_sym_overlay] = ACTIONS(271), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_POUND] = ACTIONS(3), - }, - [163] = { - [sym_cmd_identifier] = STATE(7909), - [sym_expr_parenthesized] = STATE(7949), - [sym__spread_parenthesized] = STATE(568), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(7949), - [sym_val_number] = STATE(7949), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7949), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7945), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_comment] = STATE(163), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(271), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [sym__newline] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_do] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_RBRACE] = ACTIONS(1204), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(271), - [anon_sym_source] = ACTIONS(271), - [anon_sym_source_DASHenv] = ACTIONS(271), - [anon_sym_register] = ACTIONS(271), - [anon_sym_hide] = ACTIONS(271), - [anon_sym_hide_DASHenv] = ACTIONS(271), - [anon_sym_overlay] = ACTIONS(271), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_POUND] = ACTIONS(3), - }, - [164] = { - [sym_cmd_identifier] = STATE(7909), - [sym_expr_parenthesized] = STATE(7949), - [sym__spread_parenthesized] = STATE(568), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(7949), - [sym_val_number] = STATE(7949), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7949), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7734), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_comment] = STATE(164), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(271), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [sym__newline] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_do] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(271), - [anon_sym_source] = ACTIONS(271), - [anon_sym_source_DASHenv] = ACTIONS(271), - [anon_sym_register] = ACTIONS(271), - [anon_sym_hide] = ACTIONS(271), - [anon_sym_hide_DASHenv] = ACTIONS(271), - [anon_sym_overlay] = ACTIONS(271), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_POUND] = ACTIONS(3), - }, - [165] = { - [sym_cmd_identifier] = STATE(7909), - [sym_expr_parenthesized] = STATE(7949), - [sym__spread_parenthesized] = STATE(568), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(7949), - [sym_val_number] = STATE(7949), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7949), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(568), - [sym_record_body] = STATE(7738), - [sym_record_entry] = STATE(7208), - [sym__record_key] = STATE(7909), - [sym_comment] = STATE(165), - [aux_sym_shebang_repeat1] = STATE(167), - [aux_sym_record_body_repeat1] = STATE(173), - [anon_sym_export] = ACTIONS(271), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [sym__newline] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_do] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(271), - [anon_sym_source] = ACTIONS(271), - [anon_sym_source_DASHenv] = ACTIONS(271), - [anon_sym_register] = ACTIONS(271), - [anon_sym_hide] = ACTIONS(271), - [anon_sym_hide_DASHenv] = ACTIONS(271), - [anon_sym_overlay] = ACTIONS(271), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_POUND] = ACTIONS(3), - }, - [166] = { - [sym_comment] = STATE(166), - [anon_sym_export] = ACTIONS(1208), - [anon_sym_alias] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_let_DASHenv] = ACTIONS(1208), - [anon_sym_mut] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [aux_sym_cmd_identifier_token1] = ACTIONS(1208), - [aux_sym_cmd_identifier_token2] = ACTIONS(1208), - [aux_sym_cmd_identifier_token3] = ACTIONS(1208), - [aux_sym_cmd_identifier_token4] = ACTIONS(1208), - [aux_sym_cmd_identifier_token5] = ACTIONS(1208), - [aux_sym_cmd_identifier_token6] = ACTIONS(1208), - [aux_sym_cmd_identifier_token7] = ACTIONS(1208), - [aux_sym_cmd_identifier_token8] = ACTIONS(1208), - [aux_sym_cmd_identifier_token9] = ACTIONS(1208), - [aux_sym_cmd_identifier_token10] = ACTIONS(1208), - [aux_sym_cmd_identifier_token11] = ACTIONS(1208), - [aux_sym_cmd_identifier_token12] = ACTIONS(1208), - [aux_sym_cmd_identifier_token13] = ACTIONS(1208), - [aux_sym_cmd_identifier_token14] = ACTIONS(1208), - [aux_sym_cmd_identifier_token15] = ACTIONS(1208), - [aux_sym_cmd_identifier_token16] = ACTIONS(1208), - [aux_sym_cmd_identifier_token17] = ACTIONS(1208), - [aux_sym_cmd_identifier_token18] = ACTIONS(1208), - [aux_sym_cmd_identifier_token19] = ACTIONS(1208), - [aux_sym_cmd_identifier_token20] = ACTIONS(1208), - [aux_sym_cmd_identifier_token21] = ACTIONS(1208), - [aux_sym_cmd_identifier_token22] = ACTIONS(1208), - [aux_sym_cmd_identifier_token23] = ACTIONS(1208), - [aux_sym_cmd_identifier_token24] = ACTIONS(1208), - [aux_sym_cmd_identifier_token25] = ACTIONS(1208), - [aux_sym_cmd_identifier_token26] = ACTIONS(1208), - [aux_sym_cmd_identifier_token27] = ACTIONS(1208), - [aux_sym_cmd_identifier_token28] = ACTIONS(1208), - [aux_sym_cmd_identifier_token29] = ACTIONS(1208), - [aux_sym_cmd_identifier_token30] = ACTIONS(1208), - [aux_sym_cmd_identifier_token31] = ACTIONS(1208), - [aux_sym_cmd_identifier_token32] = ACTIONS(1208), - [aux_sym_cmd_identifier_token33] = ACTIONS(1208), - [aux_sym_cmd_identifier_token34] = ACTIONS(1208), - [aux_sym_cmd_identifier_token35] = ACTIONS(1208), - [aux_sym_cmd_identifier_token36] = ACTIONS(1208), - [anon_sym_true] = ACTIONS(1211), - [anon_sym_false] = ACTIONS(1211), - [anon_sym_null] = ACTIONS(1211), - [aux_sym_cmd_identifier_token38] = ACTIONS(1208), - [aux_sym_cmd_identifier_token39] = ACTIONS(1211), - [aux_sym_cmd_identifier_token40] = ACTIONS(1211), - [sym__newline] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_def] = ACTIONS(1208), - [anon_sym_export_DASHenv] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_module] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1208), - [anon_sym_error] = ACTIONS(1208), - [anon_sym_list] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_in] = ACTIONS(1216), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_make] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_match] = ACTIONS(1208), - [aux_sym_ctrl_match_token1] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_try] = ACTIONS(1208), - [anon_sym_catch] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_source] = ACTIONS(1208), - [anon_sym_source_DASHenv] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_hide] = ACTIONS(1208), - [anon_sym_hide_DASHenv] = ACTIONS(1208), - [anon_sym_overlay] = ACTIONS(1208), - [anon_sym_new] = ACTIONS(1216), - [anon_sym_as] = ACTIONS(1216), - [anon_sym_where] = ACTIONS(1214), - [aux_sym_expr_unary_token1] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1214), - [anon_sym_DOT_DOT_LT] = ACTIONS(1214), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1220), - [aux_sym__val_number_decimal_token1] = ACTIONS(1208), - [aux_sym__val_number_decimal_token2] = ACTIONS(1211), - [anon_sym_DOT2] = ACTIONS(1208), - [aux_sym__val_number_decimal_token3] = ACTIONS(1211), - [aux_sym__val_number_token1] = ACTIONS(1211), - [aux_sym__val_number_token2] = ACTIONS(1211), - [aux_sym__val_number_token3] = ACTIONS(1211), - [anon_sym_0b] = ACTIONS(1218), - [anon_sym_0o] = ACTIONS(1218), - [anon_sym_0x] = ACTIONS(1218), - [sym_val_date] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym__str_single_quotes] = ACTIONS(1211), - [sym__str_back_ticks] = ACTIONS(1211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1214), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1214), - [anon_sym_POUND] = ACTIONS(3), - }, - [167] = { - [sym_cmd_identifier] = STATE(7909), - [sym_expr_parenthesized] = STATE(7949), - [sym__spread_parenthesized] = STATE(568), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(7949), - [sym_val_number] = STATE(7949), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7949), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(568), - [sym_record_entry] = STATE(7198), - [sym__record_key] = STATE(7909), - [sym_comment] = STATE(167), - [aux_sym_shebang_repeat1] = STATE(567), - [aux_sym_record_body_repeat1] = STATE(175), - [anon_sym_export] = ACTIONS(271), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [sym__newline] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_do] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(271), - [anon_sym_source] = ACTIONS(271), - [anon_sym_source_DASHenv] = ACTIONS(271), - [anon_sym_register] = ACTIONS(271), - [anon_sym_hide] = ACTIONS(271), - [anon_sym_hide_DASHenv] = ACTIONS(271), - [anon_sym_overlay] = ACTIONS(271), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_POUND] = ACTIONS(3), - }, - [168] = { - [sym_cmd_identifier] = STATE(7970), - [sym__match_pattern_record_variable] = STATE(593), - [sym_expr_parenthesized] = STATE(7696), - [sym__spread_parenthesized] = STATE(633), - [sym__spread_variable] = STATE(634), - [sym_val_variable] = STATE(501), - [sym_val_number] = STATE(7696), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7696), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(633), - [sym_record_entry] = STATE(593), - [sym__record_key] = STATE(7970), - [sym_comment] = STATE(168), - [aux_sym__match_pattern_record_repeat1] = STATE(168), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_alias] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_let_DASHenv] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [aux_sym_cmd_identifier_token1] = ACTIONS(1225), - [aux_sym_cmd_identifier_token2] = ACTIONS(1225), - [aux_sym_cmd_identifier_token3] = ACTIONS(1225), - [aux_sym_cmd_identifier_token4] = ACTIONS(1225), - [aux_sym_cmd_identifier_token5] = ACTIONS(1225), - [aux_sym_cmd_identifier_token6] = ACTIONS(1225), - [aux_sym_cmd_identifier_token7] = ACTIONS(1225), - [aux_sym_cmd_identifier_token8] = ACTIONS(1225), - [aux_sym_cmd_identifier_token9] = ACTIONS(1225), - [aux_sym_cmd_identifier_token10] = ACTIONS(1225), - [aux_sym_cmd_identifier_token11] = ACTIONS(1225), - [aux_sym_cmd_identifier_token12] = ACTIONS(1225), - [aux_sym_cmd_identifier_token13] = ACTIONS(1225), - [aux_sym_cmd_identifier_token14] = ACTIONS(1225), - [aux_sym_cmd_identifier_token15] = ACTIONS(1225), - [aux_sym_cmd_identifier_token16] = ACTIONS(1225), - [aux_sym_cmd_identifier_token17] = ACTIONS(1225), - [aux_sym_cmd_identifier_token18] = ACTIONS(1225), - [aux_sym_cmd_identifier_token19] = ACTIONS(1225), - [aux_sym_cmd_identifier_token20] = ACTIONS(1225), - [aux_sym_cmd_identifier_token21] = ACTIONS(1225), - [aux_sym_cmd_identifier_token22] = ACTIONS(1225), - [aux_sym_cmd_identifier_token23] = ACTIONS(1225), - [aux_sym_cmd_identifier_token24] = ACTIONS(1225), - [aux_sym_cmd_identifier_token25] = ACTIONS(1225), - [aux_sym_cmd_identifier_token26] = ACTIONS(1225), - [aux_sym_cmd_identifier_token27] = ACTIONS(1225), - [aux_sym_cmd_identifier_token28] = ACTIONS(1225), - [aux_sym_cmd_identifier_token29] = ACTIONS(1225), - [aux_sym_cmd_identifier_token30] = ACTIONS(1225), - [aux_sym_cmd_identifier_token31] = ACTIONS(1225), - [aux_sym_cmd_identifier_token32] = ACTIONS(1225), - [aux_sym_cmd_identifier_token33] = ACTIONS(1225), - [aux_sym_cmd_identifier_token34] = ACTIONS(1225), - [aux_sym_cmd_identifier_token35] = ACTIONS(1225), - [aux_sym_cmd_identifier_token36] = ACTIONS(1225), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1228), - [aux_sym_cmd_identifier_token38] = ACTIONS(1231), - [aux_sym_cmd_identifier_token39] = ACTIONS(1234), - [aux_sym_cmd_identifier_token40] = ACTIONS(1234), - [anon_sym_def] = ACTIONS(1222), - [anon_sym_export_DASHenv] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1240), - [anon_sym_error] = ACTIONS(1222), - [anon_sym_list] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_make] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_catch] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_source] = ACTIONS(1222), - [anon_sym_source_DASHenv] = ACTIONS(1222), - [anon_sym_register] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_hide_DASHenv] = ACTIONS(1222), - [anon_sym_overlay] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1248), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1251), - [aux_sym__val_number_decimal_token1] = ACTIONS(1254), - [aux_sym__val_number_decimal_token2] = ACTIONS(1257), - [anon_sym_DOT2] = ACTIONS(1260), - [aux_sym__val_number_decimal_token3] = ACTIONS(1263), - [aux_sym__val_number_token1] = ACTIONS(1266), - [aux_sym__val_number_token2] = ACTIONS(1266), - [aux_sym__val_number_token3] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1269), - [sym__str_single_quotes] = ACTIONS(1272), - [sym__str_back_ticks] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1275), - [anon_sym_POUND] = ACTIONS(3), - }, - [169] = { - [sym_cmd_identifier] = STATE(7970), - [sym__match_pattern_record_variable] = STATE(593), - [sym_expr_parenthesized] = STATE(7696), - [sym__spread_parenthesized] = STATE(633), - [sym__spread_variable] = STATE(634), - [sym_val_variable] = STATE(501), - [sym_val_number] = STATE(7696), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7696), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(633), - [sym_record_entry] = STATE(593), - [sym__record_key] = STATE(7970), - [sym_comment] = STATE(169), - [aux_sym__match_pattern_record_repeat1] = STATE(172), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_alias] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_let_DASHenv] = ACTIONS(1278), - [anon_sym_mut] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [anon_sym_def] = ACTIONS(1278), - [anon_sym_export_DASHenv] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1278), - [anon_sym_list] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_in] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_make] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_catch] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_source] = ACTIONS(1278), - [anon_sym_source_DASHenv] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_hide] = ACTIONS(1278), - [anon_sym_hide_DASHenv] = ACTIONS(1278), - [anon_sym_overlay] = ACTIONS(1278), - [anon_sym_new] = ACTIONS(1278), - [anon_sym_as] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1284), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [170] = { - [sym_cmd_identifier] = STATE(7970), - [sym__match_pattern_record_variable] = STATE(593), - [sym_expr_parenthesized] = STATE(7696), - [sym__spread_parenthesized] = STATE(633), - [sym__spread_variable] = STATE(634), - [sym_val_variable] = STATE(501), - [sym_val_number] = STATE(7696), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7696), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(633), - [sym_record_entry] = STATE(593), - [sym__record_key] = STATE(7970), + [sym_cmd_identifier] = STATE(4953), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(5223), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(170), - [aux_sym__match_pattern_record_repeat1] = STATE(171), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_alias] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_let_DASHenv] = ACTIONS(1278), - [anon_sym_mut] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [anon_sym_def] = ACTIONS(1278), - [anon_sym_export_DASHenv] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1278), - [anon_sym_list] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_in] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_make] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_catch] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_source] = ACTIONS(1278), - [anon_sym_source_DASHenv] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_hide] = ACTIONS(1278), - [anon_sym_hide_DASHenv] = ACTIONS(1278), - [anon_sym_overlay] = ACTIONS(1278), - [anon_sym_new] = ACTIONS(1278), - [anon_sym_as] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1284), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(170), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym_cmd_identifier_token1] = ACTIONS(1025), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1025), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1025), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1025), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1025), + [aux_sym_cmd_identifier_token23] = ACTIONS(1025), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1025), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1025), + [aux_sym_cmd_identifier_token28] = ACTIONS(1025), + [aux_sym_cmd_identifier_token29] = ACTIONS(1025), + [aux_sym_cmd_identifier_token30] = ACTIONS(1025), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1025), + [anon_sym_true] = ACTIONS(1031), + [anon_sym_false] = ACTIONS(1031), + [anon_sym_null] = ACTIONS(1034), + [aux_sym_cmd_identifier_token38] = ACTIONS(1037), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1055), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(1067), + [aux_sym_ctrl_match_token1] = ACTIONS(1070), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_where] = ACTIONS(1082), + [aux_sym_expr_unary_token1] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1088), + [anon_sym_DOT_DOT_LT] = ACTIONS(1088), + [aux_sym__val_number_decimal_token1] = ACTIONS(1091), + [aux_sym__val_number_decimal_token2] = ACTIONS(1094), + [aux_sym__val_number_decimal_token3] = ACTIONS(1097), + [aux_sym__val_number_decimal_token4] = ACTIONS(1100), + [aux_sym__val_number_token1] = ACTIONS(1103), + [aux_sym__val_number_token2] = ACTIONS(1103), + [aux_sym__val_number_token3] = ACTIONS(1103), + [anon_sym_0b] = ACTIONS(1106), + [anon_sym_0o] = ACTIONS(1109), + [anon_sym_0x] = ACTIONS(1109), + [sym_val_date] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym__str_single_quotes] = ACTIONS(1118), + [sym__str_back_ticks] = ACTIONS(1118), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1124), + [aux_sym_env_var_token1] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_POUND] = ACTIONS(247), }, [171] = { - [sym_cmd_identifier] = STATE(7970), - [sym__match_pattern_record_variable] = STATE(593), - [sym_expr_parenthesized] = STATE(7696), - [sym__spread_parenthesized] = STATE(633), - [sym__spread_variable] = STATE(634), - [sym_val_variable] = STATE(501), - [sym_val_number] = STATE(7696), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7696), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(633), - [sym_record_entry] = STATE(593), - [sym__record_key] = STATE(7970), + [sym_cmd_identifier] = STATE(4804), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(4714), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(171), - [aux_sym__match_pattern_record_repeat1] = STATE(168), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_alias] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_let_DASHenv] = ACTIONS(1278), - [anon_sym_mut] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [anon_sym_def] = ACTIONS(1278), - [anon_sym_export_DASHenv] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1278), - [anon_sym_list] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_in] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_make] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_catch] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_source] = ACTIONS(1278), - [anon_sym_source_DASHenv] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_hide] = ACTIONS(1278), - [anon_sym_hide_DASHenv] = ACTIONS(1278), - [anon_sym_overlay] = ACTIONS(1278), - [anon_sym_new] = ACTIONS(1278), - [anon_sym_as] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1284), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_do] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(417), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [172] = { - [sym_cmd_identifier] = STATE(7970), - [sym__match_pattern_record_variable] = STATE(593), - [sym_expr_parenthesized] = STATE(7696), - [sym__spread_parenthesized] = STATE(633), - [sym__spread_variable] = STATE(634), - [sym_val_variable] = STATE(501), - [sym_val_number] = STATE(7696), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7696), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(633), - [sym_record_entry] = STATE(593), - [sym__record_key] = STATE(7970), + [sym_cmd_identifier] = STATE(4804), + [sym__ctrl_expression] = STATE(5084), + [sym_ctrl_do] = STATE(5095), + [sym_ctrl_if] = STATE(5095), + [sym_ctrl_match] = STATE(5095), + [sym_ctrl_try] = STATE(5095), + [sym_ctrl_return] = STATE(5095), + [sym_pipe_element] = STATE(5283), + [sym_where_command] = STATE(5064), + [sym__expression] = STATE(3983), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5064), [sym_comment] = STATE(172), - [aux_sym__match_pattern_record_repeat1] = STATE(168), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_alias] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_let_DASHenv] = ACTIONS(1278), - [anon_sym_mut] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [anon_sym_def] = ACTIONS(1278), - [anon_sym_export_DASHenv] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1278), - [anon_sym_list] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_in] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_make] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_catch] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_source] = ACTIONS(1278), - [anon_sym_source_DASHenv] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_hide] = ACTIONS(1278), - [anon_sym_hide_DASHenv] = ACTIONS(1278), - [anon_sym_overlay] = ACTIONS(1278), - [anon_sym_new] = ACTIONS(1278), - [anon_sym_as] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1284), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym_pipe_element_repeat2] = STATE(408), + [aux_sym_cmd_identifier_token1] = ACTIONS(1133), + [aux_sym_cmd_identifier_token2] = ACTIONS(1136), + [aux_sym_cmd_identifier_token3] = ACTIONS(1136), + [aux_sym_cmd_identifier_token4] = ACTIONS(1136), + [aux_sym_cmd_identifier_token5] = ACTIONS(1136), + [aux_sym_cmd_identifier_token6] = ACTIONS(1136), + [aux_sym_cmd_identifier_token7] = ACTIONS(1136), + [aux_sym_cmd_identifier_token8] = ACTIONS(1136), + [aux_sym_cmd_identifier_token9] = ACTIONS(1133), + [aux_sym_cmd_identifier_token10] = ACTIONS(1136), + [aux_sym_cmd_identifier_token11] = ACTIONS(1136), + [aux_sym_cmd_identifier_token12] = ACTIONS(1136), + [aux_sym_cmd_identifier_token13] = ACTIONS(1133), + [aux_sym_cmd_identifier_token14] = ACTIONS(1136), + [aux_sym_cmd_identifier_token15] = ACTIONS(1133), + [aux_sym_cmd_identifier_token16] = ACTIONS(1136), + [aux_sym_cmd_identifier_token17] = ACTIONS(1136), + [aux_sym_cmd_identifier_token18] = ACTIONS(1136), + [aux_sym_cmd_identifier_token19] = ACTIONS(1136), + [aux_sym_cmd_identifier_token20] = ACTIONS(1136), + [aux_sym_cmd_identifier_token21] = ACTIONS(1136), + [aux_sym_cmd_identifier_token22] = ACTIONS(1133), + [aux_sym_cmd_identifier_token23] = ACTIONS(1133), + [aux_sym_cmd_identifier_token24] = ACTIONS(1136), + [aux_sym_cmd_identifier_token25] = ACTIONS(1133), + [aux_sym_cmd_identifier_token26] = ACTIONS(1136), + [aux_sym_cmd_identifier_token27] = ACTIONS(1133), + [aux_sym_cmd_identifier_token28] = ACTIONS(1133), + [aux_sym_cmd_identifier_token29] = ACTIONS(1133), + [aux_sym_cmd_identifier_token30] = ACTIONS(1133), + [aux_sym_cmd_identifier_token31] = ACTIONS(1136), + [aux_sym_cmd_identifier_token32] = ACTIONS(1136), + [aux_sym_cmd_identifier_token33] = ACTIONS(1136), + [aux_sym_cmd_identifier_token34] = ACTIONS(1136), + [aux_sym_cmd_identifier_token35] = ACTIONS(1136), + [aux_sym_cmd_identifier_token36] = ACTIONS(1133), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [anon_sym_null] = ACTIONS(1142), + [aux_sym_cmd_identifier_token38] = ACTIONS(1145), + [aux_sym_cmd_identifier_token39] = ACTIONS(1148), + [aux_sym_cmd_identifier_token40] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1169), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_match] = ACTIONS(1175), + [aux_sym_ctrl_match_token1] = ACTIONS(1178), + [anon_sym_DOT_DOT] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_where] = ACTIONS(1190), + [aux_sym_expr_unary_token1] = ACTIONS(1193), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1196), + [anon_sym_DOT_DOT_LT] = ACTIONS(1196), + [aux_sym__val_number_decimal_token1] = ACTIONS(1199), + [aux_sym__val_number_decimal_token2] = ACTIONS(1202), + [aux_sym__val_number_decimal_token3] = ACTIONS(1205), + [aux_sym__val_number_decimal_token4] = ACTIONS(1208), + [aux_sym__val_number_token1] = ACTIONS(1211), + [aux_sym__val_number_token2] = ACTIONS(1211), + [aux_sym__val_number_token3] = ACTIONS(1211), + [anon_sym_0b] = ACTIONS(1214), + [anon_sym_0o] = ACTIONS(1217), + [anon_sym_0x] = ACTIONS(1217), + [sym_val_date] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym__str_single_quotes] = ACTIONS(1226), + [sym__str_back_ticks] = ACTIONS(1226), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1232), + [aux_sym_env_var_token1] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1238), + [anon_sym_POUND] = ACTIONS(247), }, [173] = { - [sym_cmd_identifier] = STATE(7909), - [sym_expr_parenthesized] = STATE(7949), - [sym__spread_parenthesized] = STATE(568), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(7949), - [sym_val_number] = STATE(7949), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7949), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(568), - [sym_record_entry] = STATE(7254), - [sym__record_key] = STATE(7909), + [sym_cmd_identifier] = STATE(4953), + [sym__ctrl_expression_parenthesized] = STATE(5345), + [sym_ctrl_do_parenthesized] = STATE(5366), + [sym_ctrl_if_parenthesized] = STATE(5366), + [sym_ctrl_match] = STATE(5366), + [sym_ctrl_try_parenthesized] = STATE(5366), + [sym_ctrl_return] = STATE(5366), + [sym_pipe_element_parenthesized] = STATE(4943), + [sym_where_command_parenthesized] = STATE(5213), + [sym__expression_parenthesized] = STATE(4035), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5319), [sym_comment] = STATE(173), - [aux_sym_record_body_repeat1] = STATE(174), - [anon_sym_export] = ACTIONS(271), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [anon_sym_def] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_do] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(271), - [anon_sym_source] = ACTIONS(271), - [anon_sym_source_DASHenv] = ACTIONS(271), - [anon_sym_register] = ACTIONS(271), - [anon_sym_hide] = ACTIONS(271), - [anon_sym_hide_DASHenv] = ACTIONS(271), - [anon_sym_overlay] = ACTIONS(271), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(170), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_do] = ACTIONS(483), + [anon_sym_if] = ACTIONS(485), + [anon_sym_match] = ACTIONS(413), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(489), + [anon_sym_return] = ACTIONS(419), + [anon_sym_where] = ACTIONS(491), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), }, [174] = { - [sym_cmd_identifier] = STATE(7909), - [sym_expr_parenthesized] = STATE(7949), - [sym__spread_parenthesized] = STATE(568), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(7949), - [sym_val_number] = STATE(7949), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7949), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(568), - [sym_record_entry] = STATE(7627), - [sym__record_key] = STATE(7909), + [sym_cmd_identifier] = STATE(4982), + [sym__ctrl_expression] = STATE(5228), + [sym_ctrl_do] = STATE(5219), + [sym_ctrl_if] = STATE(5219), + [sym_ctrl_match] = STATE(5219), + [sym_ctrl_try] = STATE(5219), + [sym_ctrl_return] = STATE(5219), + [sym_pipe_element] = STATE(4952), + [sym_where_command] = STATE(5254), + [sym__expression] = STATE(4038), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(2175), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5254), [sym_comment] = STATE(174), - [aux_sym_record_body_repeat1] = STATE(174), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_alias] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_let_DASHenv] = ACTIONS(1296), - [anon_sym_mut] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [aux_sym_cmd_identifier_token1] = ACTIONS(1299), - [aux_sym_cmd_identifier_token2] = ACTIONS(1299), - [aux_sym_cmd_identifier_token3] = ACTIONS(1299), - [aux_sym_cmd_identifier_token4] = ACTIONS(1299), - [aux_sym_cmd_identifier_token5] = ACTIONS(1299), - [aux_sym_cmd_identifier_token6] = ACTIONS(1299), - [aux_sym_cmd_identifier_token7] = ACTIONS(1299), - [aux_sym_cmd_identifier_token8] = ACTIONS(1299), - [aux_sym_cmd_identifier_token9] = ACTIONS(1299), - [aux_sym_cmd_identifier_token10] = ACTIONS(1299), - [aux_sym_cmd_identifier_token11] = ACTIONS(1299), - [aux_sym_cmd_identifier_token12] = ACTIONS(1299), - [aux_sym_cmd_identifier_token13] = ACTIONS(1299), - [aux_sym_cmd_identifier_token14] = ACTIONS(1299), - [aux_sym_cmd_identifier_token15] = ACTIONS(1299), - [aux_sym_cmd_identifier_token16] = ACTIONS(1299), - [aux_sym_cmd_identifier_token17] = ACTIONS(1299), - [aux_sym_cmd_identifier_token18] = ACTIONS(1299), - [aux_sym_cmd_identifier_token19] = ACTIONS(1299), - [aux_sym_cmd_identifier_token20] = ACTIONS(1299), - [aux_sym_cmd_identifier_token21] = ACTIONS(1299), - [aux_sym_cmd_identifier_token22] = ACTIONS(1299), - [aux_sym_cmd_identifier_token23] = ACTIONS(1299), - [aux_sym_cmd_identifier_token24] = ACTIONS(1299), - [aux_sym_cmd_identifier_token25] = ACTIONS(1299), - [aux_sym_cmd_identifier_token26] = ACTIONS(1299), - [aux_sym_cmd_identifier_token27] = ACTIONS(1299), - [aux_sym_cmd_identifier_token28] = ACTIONS(1299), - [aux_sym_cmd_identifier_token29] = ACTIONS(1299), - [aux_sym_cmd_identifier_token30] = ACTIONS(1299), - [aux_sym_cmd_identifier_token31] = ACTIONS(1299), - [aux_sym_cmd_identifier_token32] = ACTIONS(1299), - [aux_sym_cmd_identifier_token33] = ACTIONS(1299), - [aux_sym_cmd_identifier_token34] = ACTIONS(1299), - [aux_sym_cmd_identifier_token35] = ACTIONS(1299), - [aux_sym_cmd_identifier_token36] = ACTIONS(1299), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1302), - [aux_sym_cmd_identifier_token38] = ACTIONS(1305), - [aux_sym_cmd_identifier_token39] = ACTIONS(1308), - [aux_sym_cmd_identifier_token40] = ACTIONS(1308), - [anon_sym_def] = ACTIONS(1296), - [anon_sym_export_DASHenv] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_DOLLAR] = ACTIONS(1314), - [anon_sym_error] = ACTIONS(1296), - [anon_sym_list] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_in] = ACTIONS(1296), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_make] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_try] = ACTIONS(1296), - [anon_sym_catch] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_source] = ACTIONS(1296), - [anon_sym_source_DASHenv] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_hide] = ACTIONS(1296), - [anon_sym_hide_DASHenv] = ACTIONS(1296), - [anon_sym_overlay] = ACTIONS(1296), - [anon_sym_new] = ACTIONS(1296), - [anon_sym_as] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1323), - [aux_sym__val_number_decimal_token1] = ACTIONS(1326), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [anon_sym_DOT2] = ACTIONS(1332), - [aux_sym__val_number_decimal_token3] = ACTIONS(1335), - [aux_sym__val_number_token1] = ACTIONS(1338), - [aux_sym__val_number_token2] = ACTIONS(1338), - [aux_sym__val_number_token3] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym__str_single_quotes] = ACTIONS(1344), - [sym__str_back_ticks] = ACTIONS(1344), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1347), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym_pipe_element_repeat2] = STATE(407), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, [175] = { - [sym_cmd_identifier] = STATE(7909), - [sym_expr_parenthesized] = STATE(7949), - [sym__spread_parenthesized] = STATE(568), - [sym__spread_variable] = STATE(569), - [sym_val_variable] = STATE(7949), - [sym_val_number] = STATE(7949), - [sym__val_number_decimal] = STATE(6398), - [sym__val_number] = STATE(2368), - [sym_val_string] = STATE(7949), - [sym__str_double_quotes] = STATE(1452), - [sym__spread_record] = STATE(568), - [sym_record_entry] = STATE(7298), - [sym__record_key] = STATE(7909), + [sym_cmd_identifier] = STATE(8053), + [sym_expr_parenthesized] = STATE(7939), + [sym__spread_parenthesized] = STATE(564), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(7939), + [sym_val_number] = STATE(7939), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7939), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7978), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), [sym_comment] = STATE(175), - [aux_sym_record_body_repeat1] = STATE(174), - [anon_sym_export] = ACTIONS(271), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(1180), - [aux_sym_cmd_identifier_token2] = ACTIONS(1180), - [aux_sym_cmd_identifier_token3] = ACTIONS(1180), - [aux_sym_cmd_identifier_token4] = ACTIONS(1180), - [aux_sym_cmd_identifier_token5] = ACTIONS(1180), - [aux_sym_cmd_identifier_token6] = ACTIONS(1180), - [aux_sym_cmd_identifier_token7] = ACTIONS(1180), - [aux_sym_cmd_identifier_token8] = ACTIONS(1180), - [aux_sym_cmd_identifier_token9] = ACTIONS(1180), - [aux_sym_cmd_identifier_token10] = ACTIONS(1180), - [aux_sym_cmd_identifier_token11] = ACTIONS(1180), - [aux_sym_cmd_identifier_token12] = ACTIONS(1180), - [aux_sym_cmd_identifier_token13] = ACTIONS(1180), - [aux_sym_cmd_identifier_token14] = ACTIONS(1180), - [aux_sym_cmd_identifier_token15] = ACTIONS(1180), - [aux_sym_cmd_identifier_token16] = ACTIONS(1180), - [aux_sym_cmd_identifier_token17] = ACTIONS(1180), - [aux_sym_cmd_identifier_token18] = ACTIONS(1180), - [aux_sym_cmd_identifier_token19] = ACTIONS(1180), - [aux_sym_cmd_identifier_token20] = ACTIONS(1180), - [aux_sym_cmd_identifier_token21] = ACTIONS(1180), - [aux_sym_cmd_identifier_token22] = ACTIONS(1180), - [aux_sym_cmd_identifier_token23] = ACTIONS(1180), - [aux_sym_cmd_identifier_token24] = ACTIONS(1180), - [aux_sym_cmd_identifier_token25] = ACTIONS(1180), - [aux_sym_cmd_identifier_token26] = ACTIONS(1180), - [aux_sym_cmd_identifier_token27] = ACTIONS(1180), - [aux_sym_cmd_identifier_token28] = ACTIONS(1180), - [aux_sym_cmd_identifier_token29] = ACTIONS(1180), - [aux_sym_cmd_identifier_token30] = ACTIONS(1180), - [aux_sym_cmd_identifier_token31] = ACTIONS(1180), - [aux_sym_cmd_identifier_token32] = ACTIONS(1180), - [aux_sym_cmd_identifier_token33] = ACTIONS(1180), - [aux_sym_cmd_identifier_token34] = ACTIONS(1180), - [aux_sym_cmd_identifier_token35] = ACTIONS(1180), - [aux_sym_cmd_identifier_token36] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1182), - [aux_sym_cmd_identifier_token38] = ACTIONS(1184), - [aux_sym_cmd_identifier_token39] = ACTIONS(1186), - [aux_sym_cmd_identifier_token40] = ACTIONS(1186), - [anon_sym_def] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_break] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_make] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_do] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_return] = ACTIONS(271), - [anon_sym_source] = ACTIONS(271), - [anon_sym_source_DASHenv] = ACTIONS(271), - [anon_sym_register] = ACTIONS(271), - [anon_sym_hide] = ACTIONS(271), - [anon_sym_hide_DASHenv] = ACTIONS(271), - [anon_sym_overlay] = ACTIONS(271), - [anon_sym_new] = ACTIONS(271), - [anon_sym_as] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(1198), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(273), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_let_DASHenv] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [sym__newline] = ACTIONS(1249), + [anon_sym_def] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(273), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_source] = ACTIONS(273), + [anon_sym_source_DASHenv] = ACTIONS(273), + [anon_sym_register] = ACTIONS(273), + [anon_sym_hide] = ACTIONS(273), + [anon_sym_hide_DASHenv] = ACTIONS(273), + [anon_sym_overlay] = ACTIONS(273), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [176] = { - [sym__expr_parenthesized_immediate] = STATE(398), - [sym__immediate_decimal] = STATE(230), - [sym_val_variable] = STATE(398), [sym_comment] = STATE(176), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1350), - [aux_sym_cmd_identifier_token2] = ACTIONS(1350), - [aux_sym_cmd_identifier_token3] = ACTIONS(1350), - [aux_sym_cmd_identifier_token4] = ACTIONS(1350), - [aux_sym_cmd_identifier_token5] = ACTIONS(1350), - [aux_sym_cmd_identifier_token6] = ACTIONS(1350), - [aux_sym_cmd_identifier_token7] = ACTIONS(1350), - [aux_sym_cmd_identifier_token8] = ACTIONS(1350), - [aux_sym_cmd_identifier_token9] = ACTIONS(1350), - [aux_sym_cmd_identifier_token10] = ACTIONS(1350), - [aux_sym_cmd_identifier_token11] = ACTIONS(1350), - [aux_sym_cmd_identifier_token12] = ACTIONS(1350), - [aux_sym_cmd_identifier_token13] = ACTIONS(1350), - [aux_sym_cmd_identifier_token14] = ACTIONS(1350), - [aux_sym_cmd_identifier_token15] = ACTIONS(1350), - [aux_sym_cmd_identifier_token16] = ACTIONS(1350), - [aux_sym_cmd_identifier_token17] = ACTIONS(1350), - [aux_sym_cmd_identifier_token18] = ACTIONS(1350), - [aux_sym_cmd_identifier_token19] = ACTIONS(1350), - [aux_sym_cmd_identifier_token20] = ACTIONS(1350), - [aux_sym_cmd_identifier_token21] = ACTIONS(1350), - [aux_sym_cmd_identifier_token22] = ACTIONS(1350), - [aux_sym_cmd_identifier_token23] = ACTIONS(1350), - [aux_sym_cmd_identifier_token24] = ACTIONS(1350), - [aux_sym_cmd_identifier_token25] = ACTIONS(1350), - [aux_sym_cmd_identifier_token26] = ACTIONS(1350), - [aux_sym_cmd_identifier_token27] = ACTIONS(1350), - [aux_sym_cmd_identifier_token28] = ACTIONS(1350), - [aux_sym_cmd_identifier_token29] = ACTIONS(1350), - [aux_sym_cmd_identifier_token30] = ACTIONS(1350), - [aux_sym_cmd_identifier_token31] = ACTIONS(1350), - [aux_sym_cmd_identifier_token32] = ACTIONS(1350), - [aux_sym_cmd_identifier_token33] = ACTIONS(1350), - [aux_sym_cmd_identifier_token34] = ACTIONS(1350), - [aux_sym_cmd_identifier_token35] = ACTIONS(1350), - [aux_sym_cmd_identifier_token36] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [aux_sym_cmd_identifier_token38] = ACTIONS(1350), - [aux_sym_cmd_identifier_token39] = ACTIONS(1350), - [aux_sym_cmd_identifier_token40] = ACTIONS(1350), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1356), - [aux_sym__immediate_decimal_token1] = ACTIONS(1358), - [aux_sym__immediate_decimal_token3] = ACTIONS(1358), - [aux_sym__immediate_decimal_token4] = ACTIONS(1360), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1350), - [sym__entry_separator] = ACTIONS(1362), - [aux_sym__unquoted_in_record_token4] = ACTIONS(1364), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [aux_sym_cmd_identifier_token1] = ACTIONS(1265), + [aux_sym_cmd_identifier_token2] = ACTIONS(1265), + [aux_sym_cmd_identifier_token3] = ACTIONS(1265), + [aux_sym_cmd_identifier_token4] = ACTIONS(1265), + [aux_sym_cmd_identifier_token5] = ACTIONS(1265), + [aux_sym_cmd_identifier_token6] = ACTIONS(1265), + [aux_sym_cmd_identifier_token7] = ACTIONS(1265), + [aux_sym_cmd_identifier_token8] = ACTIONS(1265), + [aux_sym_cmd_identifier_token9] = ACTIONS(1265), + [aux_sym_cmd_identifier_token10] = ACTIONS(1265), + [aux_sym_cmd_identifier_token11] = ACTIONS(1265), + [aux_sym_cmd_identifier_token12] = ACTIONS(1265), + [aux_sym_cmd_identifier_token13] = ACTIONS(1265), + [aux_sym_cmd_identifier_token14] = ACTIONS(1265), + [aux_sym_cmd_identifier_token15] = ACTIONS(1265), + [aux_sym_cmd_identifier_token16] = ACTIONS(1265), + [aux_sym_cmd_identifier_token17] = ACTIONS(1265), + [aux_sym_cmd_identifier_token18] = ACTIONS(1265), + [aux_sym_cmd_identifier_token19] = ACTIONS(1265), + [aux_sym_cmd_identifier_token20] = ACTIONS(1265), + [aux_sym_cmd_identifier_token21] = ACTIONS(1265), + [aux_sym_cmd_identifier_token22] = ACTIONS(1265), + [aux_sym_cmd_identifier_token23] = ACTIONS(1265), + [aux_sym_cmd_identifier_token24] = ACTIONS(1265), + [aux_sym_cmd_identifier_token25] = ACTIONS(1265), + [aux_sym_cmd_identifier_token26] = ACTIONS(1265), + [aux_sym_cmd_identifier_token27] = ACTIONS(1265), + [aux_sym_cmd_identifier_token28] = ACTIONS(1265), + [aux_sym_cmd_identifier_token29] = ACTIONS(1265), + [aux_sym_cmd_identifier_token30] = ACTIONS(1265), + [aux_sym_cmd_identifier_token31] = ACTIONS(1265), + [aux_sym_cmd_identifier_token32] = ACTIONS(1265), + [aux_sym_cmd_identifier_token33] = ACTIONS(1265), + [aux_sym_cmd_identifier_token34] = ACTIONS(1265), + [aux_sym_cmd_identifier_token35] = ACTIONS(1265), + [aux_sym_cmd_identifier_token36] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1268), + [anon_sym_false] = ACTIONS(1268), + [anon_sym_null] = ACTIONS(1268), + [aux_sym_cmd_identifier_token38] = ACTIONS(1265), + [aux_sym_cmd_identifier_token39] = ACTIONS(1268), + [aux_sym_cmd_identifier_token40] = ACTIONS(1268), + [sym__newline] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_list] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_make] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_match] = ACTIONS(1265), + [aux_sym_ctrl_match_token1] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_catch] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_as] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(1271), + [aux_sym_expr_unary_token1] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_token1] = ACTIONS(1268), + [aux_sym__val_number_token2] = ACTIONS(1268), + [aux_sym__val_number_token3] = ACTIONS(1268), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym__str_single_quotes] = ACTIONS(1268), + [sym__str_back_ticks] = ACTIONS(1268), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1273), + [aux_sym_env_var_token1] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(247), }, [177] = { + [sym_cmd_identifier] = STATE(8053), + [sym_expr_parenthesized] = STATE(7939), + [sym__spread_parenthesized] = STATE(564), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(7939), + [sym_val_number] = STATE(7939), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7939), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7855), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), [sym_comment] = STATE(177), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [aux_sym_cmd_identifier_token1] = ACTIONS(1368), - [aux_sym_cmd_identifier_token2] = ACTIONS(1368), - [aux_sym_cmd_identifier_token3] = ACTIONS(1368), - [aux_sym_cmd_identifier_token4] = ACTIONS(1368), - [aux_sym_cmd_identifier_token5] = ACTIONS(1368), - [aux_sym_cmd_identifier_token6] = ACTIONS(1368), - [aux_sym_cmd_identifier_token7] = ACTIONS(1368), - [aux_sym_cmd_identifier_token8] = ACTIONS(1368), - [aux_sym_cmd_identifier_token9] = ACTIONS(1368), - [aux_sym_cmd_identifier_token10] = ACTIONS(1368), - [aux_sym_cmd_identifier_token11] = ACTIONS(1368), - [aux_sym_cmd_identifier_token12] = ACTIONS(1368), - [aux_sym_cmd_identifier_token13] = ACTIONS(1368), - [aux_sym_cmd_identifier_token14] = ACTIONS(1368), - [aux_sym_cmd_identifier_token15] = ACTIONS(1368), - [aux_sym_cmd_identifier_token16] = ACTIONS(1368), - [aux_sym_cmd_identifier_token17] = ACTIONS(1368), - [aux_sym_cmd_identifier_token18] = ACTIONS(1368), - [aux_sym_cmd_identifier_token19] = ACTIONS(1368), - [aux_sym_cmd_identifier_token20] = ACTIONS(1368), - [aux_sym_cmd_identifier_token21] = ACTIONS(1368), - [aux_sym_cmd_identifier_token22] = ACTIONS(1368), - [aux_sym_cmd_identifier_token23] = ACTIONS(1368), - [aux_sym_cmd_identifier_token24] = ACTIONS(1368), - [aux_sym_cmd_identifier_token25] = ACTIONS(1368), - [aux_sym_cmd_identifier_token26] = ACTIONS(1368), - [aux_sym_cmd_identifier_token27] = ACTIONS(1368), - [aux_sym_cmd_identifier_token28] = ACTIONS(1368), - [aux_sym_cmd_identifier_token29] = ACTIONS(1368), - [aux_sym_cmd_identifier_token30] = ACTIONS(1368), - [aux_sym_cmd_identifier_token31] = ACTIONS(1368), - [aux_sym_cmd_identifier_token32] = ACTIONS(1368), - [aux_sym_cmd_identifier_token33] = ACTIONS(1368), - [aux_sym_cmd_identifier_token34] = ACTIONS(1368), - [aux_sym_cmd_identifier_token35] = ACTIONS(1368), - [aux_sym_cmd_identifier_token36] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [aux_sym_cmd_identifier_token38] = ACTIONS(1368), - [aux_sym_cmd_identifier_token39] = ACTIONS(1368), - [aux_sym_cmd_identifier_token40] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1368), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(1372), - [aux_sym__immediate_decimal_token2] = ACTIONS(1374), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(273), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_let_DASHenv] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [sym__newline] = ACTIONS(1249), + [anon_sym_def] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(273), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_source] = ACTIONS(273), + [anon_sym_source_DASHenv] = ACTIONS(273), + [anon_sym_register] = ACTIONS(273), + [anon_sym_hide] = ACTIONS(273), + [anon_sym_hide_DASHenv] = ACTIONS(273), + [anon_sym_overlay] = ACTIONS(273), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [178] = { + [sym_cmd_identifier] = STATE(8053), + [sym_expr_parenthesized] = STATE(7939), + [sym__spread_parenthesized] = STATE(564), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(7939), + [sym_val_number] = STATE(7939), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7939), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(8012), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), [sym_comment] = STATE(178), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [aux_sym_cmd_identifier_token1] = ACTIONS(1376), - [aux_sym_cmd_identifier_token2] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1376), - [aux_sym_cmd_identifier_token4] = ACTIONS(1376), - [aux_sym_cmd_identifier_token5] = ACTIONS(1376), - [aux_sym_cmd_identifier_token6] = ACTIONS(1376), - [aux_sym_cmd_identifier_token7] = ACTIONS(1376), - [aux_sym_cmd_identifier_token8] = ACTIONS(1376), - [aux_sym_cmd_identifier_token9] = ACTIONS(1376), - [aux_sym_cmd_identifier_token10] = ACTIONS(1376), - [aux_sym_cmd_identifier_token11] = ACTIONS(1376), - [aux_sym_cmd_identifier_token12] = ACTIONS(1376), - [aux_sym_cmd_identifier_token13] = ACTIONS(1376), - [aux_sym_cmd_identifier_token14] = ACTIONS(1376), - [aux_sym_cmd_identifier_token15] = ACTIONS(1376), - [aux_sym_cmd_identifier_token16] = ACTIONS(1376), - [aux_sym_cmd_identifier_token17] = ACTIONS(1376), - [aux_sym_cmd_identifier_token18] = ACTIONS(1376), - [aux_sym_cmd_identifier_token19] = ACTIONS(1376), - [aux_sym_cmd_identifier_token20] = ACTIONS(1376), - [aux_sym_cmd_identifier_token21] = ACTIONS(1376), - [aux_sym_cmd_identifier_token22] = ACTIONS(1376), - [aux_sym_cmd_identifier_token23] = ACTIONS(1376), - [aux_sym_cmd_identifier_token24] = ACTIONS(1376), - [aux_sym_cmd_identifier_token25] = ACTIONS(1376), - [aux_sym_cmd_identifier_token26] = ACTIONS(1376), - [aux_sym_cmd_identifier_token27] = ACTIONS(1376), - [aux_sym_cmd_identifier_token28] = ACTIONS(1376), - [aux_sym_cmd_identifier_token29] = ACTIONS(1376), - [aux_sym_cmd_identifier_token30] = ACTIONS(1376), - [aux_sym_cmd_identifier_token31] = ACTIONS(1376), - [aux_sym_cmd_identifier_token32] = ACTIONS(1376), - [aux_sym_cmd_identifier_token33] = ACTIONS(1376), - [aux_sym_cmd_identifier_token34] = ACTIONS(1376), - [aux_sym_cmd_identifier_token35] = ACTIONS(1376), - [aux_sym_cmd_identifier_token36] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token38] = ACTIONS(1376), - [aux_sym_cmd_identifier_token39] = ACTIONS(1376), - [aux_sym_cmd_identifier_token40] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1376), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(273), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_let_DASHenv] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [sym__newline] = ACTIONS(1249), + [anon_sym_def] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(273), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_source] = ACTIONS(273), + [anon_sym_source_DASHenv] = ACTIONS(273), + [anon_sym_register] = ACTIONS(273), + [anon_sym_hide] = ACTIONS(273), + [anon_sym_hide_DASHenv] = ACTIONS(273), + [anon_sym_overlay] = ACTIONS(273), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [179] = { - [sym__expr_parenthesized_immediate] = STATE(448), - [sym__immediate_decimal] = STATE(277), - [sym_val_variable] = STATE(448), + [sym_cmd_identifier] = STATE(8053), + [sym_expr_parenthesized] = STATE(7939), + [sym__spread_parenthesized] = STATE(564), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(7939), + [sym_val_number] = STATE(7939), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7939), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7931), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), [sym_comment] = STATE(179), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1350), - [aux_sym_cmd_identifier_token2] = ACTIONS(1350), - [aux_sym_cmd_identifier_token3] = ACTIONS(1350), - [aux_sym_cmd_identifier_token4] = ACTIONS(1350), - [aux_sym_cmd_identifier_token5] = ACTIONS(1350), - [aux_sym_cmd_identifier_token6] = ACTIONS(1350), - [aux_sym_cmd_identifier_token7] = ACTIONS(1350), - [aux_sym_cmd_identifier_token8] = ACTIONS(1350), - [aux_sym_cmd_identifier_token9] = ACTIONS(1350), - [aux_sym_cmd_identifier_token10] = ACTIONS(1350), - [aux_sym_cmd_identifier_token11] = ACTIONS(1350), - [aux_sym_cmd_identifier_token12] = ACTIONS(1350), - [aux_sym_cmd_identifier_token13] = ACTIONS(1350), - [aux_sym_cmd_identifier_token14] = ACTIONS(1350), - [aux_sym_cmd_identifier_token15] = ACTIONS(1350), - [aux_sym_cmd_identifier_token16] = ACTIONS(1350), - [aux_sym_cmd_identifier_token17] = ACTIONS(1350), - [aux_sym_cmd_identifier_token18] = ACTIONS(1350), - [aux_sym_cmd_identifier_token19] = ACTIONS(1350), - [aux_sym_cmd_identifier_token20] = ACTIONS(1350), - [aux_sym_cmd_identifier_token21] = ACTIONS(1350), - [aux_sym_cmd_identifier_token22] = ACTIONS(1350), - [aux_sym_cmd_identifier_token23] = ACTIONS(1350), - [aux_sym_cmd_identifier_token24] = ACTIONS(1350), - [aux_sym_cmd_identifier_token25] = ACTIONS(1350), - [aux_sym_cmd_identifier_token26] = ACTIONS(1350), - [aux_sym_cmd_identifier_token27] = ACTIONS(1350), - [aux_sym_cmd_identifier_token28] = ACTIONS(1350), - [aux_sym_cmd_identifier_token29] = ACTIONS(1350), - [aux_sym_cmd_identifier_token30] = ACTIONS(1350), - [aux_sym_cmd_identifier_token31] = ACTIONS(1350), - [aux_sym_cmd_identifier_token32] = ACTIONS(1350), - [aux_sym_cmd_identifier_token33] = ACTIONS(1350), - [aux_sym_cmd_identifier_token34] = ACTIONS(1350), - [aux_sym_cmd_identifier_token35] = ACTIONS(1350), - [aux_sym_cmd_identifier_token36] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [aux_sym_cmd_identifier_token38] = ACTIONS(1350), - [aux_sym_cmd_identifier_token39] = ACTIONS(1362), - [aux_sym_cmd_identifier_token40] = ACTIONS(1362), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1382), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1386), - [aux_sym__immediate_decimal_token1] = ACTIONS(1388), - [aux_sym__immediate_decimal_token3] = ACTIONS(1390), - [aux_sym__immediate_decimal_token4] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1362), - [aux_sym__unquoted_in_record_token4] = ACTIONS(1394), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1396), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(273), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_let_DASHenv] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [sym__newline] = ACTIONS(1249), + [anon_sym_def] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(273), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_source] = ACTIONS(273), + [anon_sym_source_DASHenv] = ACTIONS(273), + [anon_sym_register] = ACTIONS(273), + [anon_sym_hide] = ACTIONS(273), + [anon_sym_hide_DASHenv] = ACTIONS(273), + [anon_sym_overlay] = ACTIONS(273), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [180] = { + [sym_cmd_identifier] = STATE(8053), + [sym_expr_parenthesized] = STATE(7939), + [sym__spread_parenthesized] = STATE(564), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(7939), + [sym_val_number] = STATE(7939), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7939), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(564), + [sym_record_body] = STATE(7762), + [sym_record_entry] = STATE(7309), + [sym__record_key] = STATE(8053), [sym_comment] = STATE(180), - [anon_sym_export] = ACTIONS(1398), - [anon_sym_alias] = ACTIONS(1398), - [anon_sym_let] = ACTIONS(1398), - [anon_sym_let_DASHenv] = ACTIONS(1398), - [anon_sym_mut] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [aux_sym_cmd_identifier_token1] = ACTIONS(1398), - [aux_sym_cmd_identifier_token2] = ACTIONS(1398), - [aux_sym_cmd_identifier_token3] = ACTIONS(1398), - [aux_sym_cmd_identifier_token4] = ACTIONS(1398), - [aux_sym_cmd_identifier_token5] = ACTIONS(1398), - [aux_sym_cmd_identifier_token6] = ACTIONS(1398), - [aux_sym_cmd_identifier_token7] = ACTIONS(1398), - [aux_sym_cmd_identifier_token8] = ACTIONS(1398), - [aux_sym_cmd_identifier_token9] = ACTIONS(1398), - [aux_sym_cmd_identifier_token10] = ACTIONS(1398), - [aux_sym_cmd_identifier_token11] = ACTIONS(1398), - [aux_sym_cmd_identifier_token12] = ACTIONS(1398), - [aux_sym_cmd_identifier_token13] = ACTIONS(1398), - [aux_sym_cmd_identifier_token14] = ACTIONS(1398), - [aux_sym_cmd_identifier_token15] = ACTIONS(1398), - [aux_sym_cmd_identifier_token16] = ACTIONS(1398), - [aux_sym_cmd_identifier_token17] = ACTIONS(1398), - [aux_sym_cmd_identifier_token18] = ACTIONS(1398), - [aux_sym_cmd_identifier_token19] = ACTIONS(1398), - [aux_sym_cmd_identifier_token20] = ACTIONS(1398), - [aux_sym_cmd_identifier_token21] = ACTIONS(1398), - [aux_sym_cmd_identifier_token22] = ACTIONS(1398), - [aux_sym_cmd_identifier_token23] = ACTIONS(1398), - [aux_sym_cmd_identifier_token24] = ACTIONS(1398), - [aux_sym_cmd_identifier_token25] = ACTIONS(1398), - [aux_sym_cmd_identifier_token26] = ACTIONS(1398), - [aux_sym_cmd_identifier_token27] = ACTIONS(1398), - [aux_sym_cmd_identifier_token28] = ACTIONS(1398), - [aux_sym_cmd_identifier_token29] = ACTIONS(1398), - [aux_sym_cmd_identifier_token30] = ACTIONS(1398), - [aux_sym_cmd_identifier_token31] = ACTIONS(1398), - [aux_sym_cmd_identifier_token32] = ACTIONS(1398), - [aux_sym_cmd_identifier_token33] = ACTIONS(1398), - [aux_sym_cmd_identifier_token34] = ACTIONS(1398), - [aux_sym_cmd_identifier_token35] = ACTIONS(1398), - [aux_sym_cmd_identifier_token36] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_null] = ACTIONS(1398), - [aux_sym_cmd_identifier_token38] = ACTIONS(1398), - [aux_sym_cmd_identifier_token39] = ACTIONS(1398), - [aux_sym_cmd_identifier_token40] = ACTIONS(1398), - [anon_sym_def] = ACTIONS(1398), - [anon_sym_export_DASHenv] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_module] = ACTIONS(1398), - [anon_sym_use] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_error] = ACTIONS(1398), - [anon_sym_list] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_in] = ACTIONS(1398), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_make] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1398), - [anon_sym_catch] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_source] = ACTIONS(1398), - [anon_sym_source_DASHenv] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_hide] = ACTIONS(1398), - [anon_sym_hide_DASHenv] = ACTIONS(1398), - [anon_sym_overlay] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1398), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(1402), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1398), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1398), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1398), - [aux_sym__val_number_token1] = ACTIONS(1398), - [aux_sym__val_number_token2] = ACTIONS(1398), - [aux_sym__val_number_token3] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [sym__str_single_quotes] = ACTIONS(1398), - [sym__str_back_ticks] = ACTIONS(1398), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1398), - [sym__entry_separator] = ACTIONS(1400), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(181), + [aux_sym_record_body_repeat1] = STATE(188), + [anon_sym_export] = ACTIONS(273), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_let_DASHenv] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [sym__newline] = ACTIONS(1249), + [anon_sym_def] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(273), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_source] = ACTIONS(273), + [anon_sym_source_DASHenv] = ACTIONS(273), + [anon_sym_register] = ACTIONS(273), + [anon_sym_hide] = ACTIONS(273), + [anon_sym_hide_DASHenv] = ACTIONS(273), + [anon_sym_overlay] = ACTIONS(273), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [181] = { - [sym__expr_parenthesized_immediate] = STATE(528), - [sym__immediate_decimal] = STATE(389), - [sym_val_variable] = STATE(528), + [sym_cmd_identifier] = STATE(8053), + [sym_expr_parenthesized] = STATE(7939), + [sym__spread_parenthesized] = STATE(564), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(7939), + [sym_val_number] = STATE(7939), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7939), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(564), + [sym_record_entry] = STATE(6976), + [sym__record_key] = STATE(8053), [sym_comment] = STATE(181), - [anon_sym_export] = ACTIONS(1404), - [anon_sym_alias] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_let_DASHenv] = ACTIONS(1404), - [anon_sym_mut] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [aux_sym_cmd_identifier_token1] = ACTIONS(1404), - [aux_sym_cmd_identifier_token2] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1404), - [aux_sym_cmd_identifier_token4] = ACTIONS(1404), - [aux_sym_cmd_identifier_token5] = ACTIONS(1404), - [aux_sym_cmd_identifier_token6] = ACTIONS(1404), - [aux_sym_cmd_identifier_token7] = ACTIONS(1404), - [aux_sym_cmd_identifier_token8] = ACTIONS(1404), - [aux_sym_cmd_identifier_token9] = ACTIONS(1404), - [aux_sym_cmd_identifier_token10] = ACTIONS(1404), - [aux_sym_cmd_identifier_token11] = ACTIONS(1404), - [aux_sym_cmd_identifier_token12] = ACTIONS(1404), - [aux_sym_cmd_identifier_token13] = ACTIONS(1404), - [aux_sym_cmd_identifier_token14] = ACTIONS(1404), - [aux_sym_cmd_identifier_token15] = ACTIONS(1404), - [aux_sym_cmd_identifier_token16] = ACTIONS(1404), - [aux_sym_cmd_identifier_token17] = ACTIONS(1404), - [aux_sym_cmd_identifier_token18] = ACTIONS(1404), - [aux_sym_cmd_identifier_token19] = ACTIONS(1404), - [aux_sym_cmd_identifier_token20] = ACTIONS(1404), - [aux_sym_cmd_identifier_token21] = ACTIONS(1404), - [aux_sym_cmd_identifier_token22] = ACTIONS(1404), - [aux_sym_cmd_identifier_token23] = ACTIONS(1404), - [aux_sym_cmd_identifier_token24] = ACTIONS(1404), - [aux_sym_cmd_identifier_token25] = ACTIONS(1404), - [aux_sym_cmd_identifier_token26] = ACTIONS(1404), - [aux_sym_cmd_identifier_token27] = ACTIONS(1404), - [aux_sym_cmd_identifier_token28] = ACTIONS(1404), - [aux_sym_cmd_identifier_token29] = ACTIONS(1404), - [aux_sym_cmd_identifier_token30] = ACTIONS(1404), - [aux_sym_cmd_identifier_token31] = ACTIONS(1404), - [aux_sym_cmd_identifier_token32] = ACTIONS(1404), - [aux_sym_cmd_identifier_token33] = ACTIONS(1404), - [aux_sym_cmd_identifier_token34] = ACTIONS(1404), - [aux_sym_cmd_identifier_token35] = ACTIONS(1404), - [aux_sym_cmd_identifier_token36] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [anon_sym_null] = ACTIONS(1404), - [aux_sym_cmd_identifier_token38] = ACTIONS(1404), - [aux_sym_cmd_identifier_token39] = ACTIONS(1404), - [aux_sym_cmd_identifier_token40] = ACTIONS(1404), - [anon_sym_def] = ACTIONS(1404), - [anon_sym_export_DASHenv] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_module] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1404), - [anon_sym_list] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_in] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_make] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_do] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_else] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_try] = ACTIONS(1404), - [anon_sym_catch] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_source] = ACTIONS(1404), - [anon_sym_source_DASHenv] = ACTIONS(1404), - [anon_sym_register] = ACTIONS(1404), - [anon_sym_hide] = ACTIONS(1404), - [anon_sym_hide_DASHenv] = ACTIONS(1404), - [anon_sym_overlay] = ACTIONS(1404), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_as] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1404), - [anon_sym_DOT] = ACTIONS(1410), - [aux_sym__immediate_decimal_token1] = ACTIONS(1412), - [aux_sym__immediate_decimal_token3] = ACTIONS(1412), - [aux_sym__immediate_decimal_token4] = ACTIONS(1414), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1404), - [aux_sym__val_number_decimal_token1] = ACTIONS(1404), - [aux_sym__val_number_decimal_token2] = ACTIONS(1404), - [anon_sym_DOT2] = ACTIONS(1404), - [aux_sym__val_number_decimal_token3] = ACTIONS(1404), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym__str_single_quotes] = ACTIONS(1404), - [sym__str_back_ticks] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1404), - [sym__entry_separator] = ACTIONS(1416), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(542), + [aux_sym_record_body_repeat1] = STATE(187), + [anon_sym_export] = ACTIONS(273), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_let_DASHenv] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [sym__newline] = ACTIONS(1249), + [anon_sym_def] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(273), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_source] = ACTIONS(273), + [anon_sym_source_DASHenv] = ACTIONS(273), + [anon_sym_register] = ACTIONS(273), + [anon_sym_hide] = ACTIONS(273), + [anon_sym_hide_DASHenv] = ACTIONS(273), + [anon_sym_overlay] = ACTIONS(273), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [182] = { + [sym_cmd_identifier] = STATE(7764), + [sym__match_pattern_record_variable] = STATE(620), + [sym_expr_parenthesized] = STATE(7848), + [sym__spread_parenthesized] = STATE(657), + [sym__spread_variable] = STATE(658), + [sym_val_variable] = STATE(500), + [sym_val_number] = STATE(7848), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7848), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(657), + [sym_record_entry] = STATE(620), + [sym__record_key] = STATE(7764), [sym_comment] = STATE(182), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [aux_sym_cmd_identifier_token1] = ACTIONS(1368), - [aux_sym_cmd_identifier_token2] = ACTIONS(1368), - [aux_sym_cmd_identifier_token3] = ACTIONS(1368), - [aux_sym_cmd_identifier_token4] = ACTIONS(1368), - [aux_sym_cmd_identifier_token5] = ACTIONS(1368), - [aux_sym_cmd_identifier_token6] = ACTIONS(1368), - [aux_sym_cmd_identifier_token7] = ACTIONS(1368), - [aux_sym_cmd_identifier_token8] = ACTIONS(1368), - [aux_sym_cmd_identifier_token9] = ACTIONS(1368), - [aux_sym_cmd_identifier_token10] = ACTIONS(1368), - [aux_sym_cmd_identifier_token11] = ACTIONS(1368), - [aux_sym_cmd_identifier_token12] = ACTIONS(1368), - [aux_sym_cmd_identifier_token13] = ACTIONS(1368), - [aux_sym_cmd_identifier_token14] = ACTIONS(1368), - [aux_sym_cmd_identifier_token15] = ACTIONS(1368), - [aux_sym_cmd_identifier_token16] = ACTIONS(1368), - [aux_sym_cmd_identifier_token17] = ACTIONS(1368), - [aux_sym_cmd_identifier_token18] = ACTIONS(1368), - [aux_sym_cmd_identifier_token19] = ACTIONS(1368), - [aux_sym_cmd_identifier_token20] = ACTIONS(1368), - [aux_sym_cmd_identifier_token21] = ACTIONS(1368), - [aux_sym_cmd_identifier_token22] = ACTIONS(1368), - [aux_sym_cmd_identifier_token23] = ACTIONS(1368), - [aux_sym_cmd_identifier_token24] = ACTIONS(1368), - [aux_sym_cmd_identifier_token25] = ACTIONS(1368), - [aux_sym_cmd_identifier_token26] = ACTIONS(1368), - [aux_sym_cmd_identifier_token27] = ACTIONS(1368), - [aux_sym_cmd_identifier_token28] = ACTIONS(1368), - [aux_sym_cmd_identifier_token29] = ACTIONS(1368), - [aux_sym_cmd_identifier_token30] = ACTIONS(1368), - [aux_sym_cmd_identifier_token31] = ACTIONS(1368), - [aux_sym_cmd_identifier_token32] = ACTIONS(1368), - [aux_sym_cmd_identifier_token33] = ACTIONS(1368), - [aux_sym_cmd_identifier_token34] = ACTIONS(1368), - [aux_sym_cmd_identifier_token35] = ACTIONS(1368), - [aux_sym_cmd_identifier_token36] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [aux_sym_cmd_identifier_token38] = ACTIONS(1368), - [aux_sym_cmd_identifier_token39] = ACTIONS(1368), - [aux_sym_cmd_identifier_token40] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1368), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(1374), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__match_pattern_record_repeat1] = STATE(183), + [anon_sym_export] = ACTIONS(1285), + [anon_sym_alias] = ACTIONS(1285), + [anon_sym_let] = ACTIONS(1285), + [anon_sym_let_DASHenv] = ACTIONS(1285), + [anon_sym_mut] = ACTIONS(1285), + [anon_sym_const] = ACTIONS(1285), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [anon_sym_def] = ACTIONS(1285), + [anon_sym_export_DASHenv] = ACTIONS(1285), + [anon_sym_extern] = ACTIONS(1285), + [anon_sym_module] = ACTIONS(1285), + [anon_sym_use] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_error] = ACTIONS(1285), + [anon_sym_list] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1285), + [anon_sym_for] = ACTIONS(1285), + [anon_sym_in] = ACTIONS(1285), + [anon_sym_loop] = ACTIONS(1285), + [anon_sym_make] = ACTIONS(1285), + [anon_sym_while] = ACTIONS(1285), + [anon_sym_do] = ACTIONS(1285), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1285), + [anon_sym_source] = ACTIONS(1285), + [anon_sym_source_DASHenv] = ACTIONS(1285), + [anon_sym_register] = ACTIONS(1285), + [anon_sym_hide] = ACTIONS(1285), + [anon_sym_hide_DASHenv] = ACTIONS(1285), + [anon_sym_overlay] = ACTIONS(1285), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_as] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [183] = { + [sym_cmd_identifier] = STATE(7764), + [sym__match_pattern_record_variable] = STATE(620), + [sym_expr_parenthesized] = STATE(7848), + [sym__spread_parenthesized] = STATE(657), + [sym__spread_variable] = STATE(658), + [sym_val_variable] = STATE(500), + [sym_val_number] = STATE(7848), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7848), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(657), + [sym_record_entry] = STATE(620), + [sym__record_key] = STATE(7764), [sym_comment] = STATE(183), - [anon_sym_export] = ACTIONS(1398), - [anon_sym_alias] = ACTIONS(1398), - [anon_sym_let] = ACTIONS(1398), - [anon_sym_let_DASHenv] = ACTIONS(1398), - [anon_sym_mut] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [aux_sym_cmd_identifier_token1] = ACTIONS(1398), - [aux_sym_cmd_identifier_token2] = ACTIONS(1398), - [aux_sym_cmd_identifier_token3] = ACTIONS(1398), - [aux_sym_cmd_identifier_token4] = ACTIONS(1398), - [aux_sym_cmd_identifier_token5] = ACTIONS(1398), - [aux_sym_cmd_identifier_token6] = ACTIONS(1398), - [aux_sym_cmd_identifier_token7] = ACTIONS(1398), - [aux_sym_cmd_identifier_token8] = ACTIONS(1398), - [aux_sym_cmd_identifier_token9] = ACTIONS(1398), - [aux_sym_cmd_identifier_token10] = ACTIONS(1398), - [aux_sym_cmd_identifier_token11] = ACTIONS(1398), - [aux_sym_cmd_identifier_token12] = ACTIONS(1398), - [aux_sym_cmd_identifier_token13] = ACTIONS(1398), - [aux_sym_cmd_identifier_token14] = ACTIONS(1398), - [aux_sym_cmd_identifier_token15] = ACTIONS(1398), - [aux_sym_cmd_identifier_token16] = ACTIONS(1398), - [aux_sym_cmd_identifier_token17] = ACTIONS(1398), - [aux_sym_cmd_identifier_token18] = ACTIONS(1398), - [aux_sym_cmd_identifier_token19] = ACTIONS(1398), - [aux_sym_cmd_identifier_token20] = ACTIONS(1398), - [aux_sym_cmd_identifier_token21] = ACTIONS(1398), - [aux_sym_cmd_identifier_token22] = ACTIONS(1398), - [aux_sym_cmd_identifier_token23] = ACTIONS(1398), - [aux_sym_cmd_identifier_token24] = ACTIONS(1398), - [aux_sym_cmd_identifier_token25] = ACTIONS(1398), - [aux_sym_cmd_identifier_token26] = ACTIONS(1398), - [aux_sym_cmd_identifier_token27] = ACTIONS(1398), - [aux_sym_cmd_identifier_token28] = ACTIONS(1398), - [aux_sym_cmd_identifier_token29] = ACTIONS(1398), - [aux_sym_cmd_identifier_token30] = ACTIONS(1398), - [aux_sym_cmd_identifier_token31] = ACTIONS(1398), - [aux_sym_cmd_identifier_token32] = ACTIONS(1398), - [aux_sym_cmd_identifier_token33] = ACTIONS(1398), - [aux_sym_cmd_identifier_token34] = ACTIONS(1398), - [aux_sym_cmd_identifier_token35] = ACTIONS(1398), - [aux_sym_cmd_identifier_token36] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_null] = ACTIONS(1398), - [aux_sym_cmd_identifier_token38] = ACTIONS(1398), - [aux_sym_cmd_identifier_token39] = ACTIONS(1398), - [aux_sym_cmd_identifier_token40] = ACTIONS(1398), - [anon_sym_def] = ACTIONS(1398), - [anon_sym_export_DASHenv] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_module] = ACTIONS(1398), - [anon_sym_use] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_error] = ACTIONS(1398), - [anon_sym_list] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_in] = ACTIONS(1398), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_make] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1398), - [anon_sym_catch] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_source] = ACTIONS(1398), - [anon_sym_source_DASHenv] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_hide] = ACTIONS(1398), - [anon_sym_hide_DASHenv] = ACTIONS(1398), - [anon_sym_overlay] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1398), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(1402), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1398), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1398), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1398), - [aux_sym__val_number_token1] = ACTIONS(1398), - [aux_sym__val_number_token2] = ACTIONS(1398), - [aux_sym__val_number_token3] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [sym__str_single_quotes] = ACTIONS(1398), - [sym__str_back_ticks] = ACTIONS(1398), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1398), - [sym__entry_separator] = ACTIONS(1400), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__match_pattern_record_repeat1] = STATE(186), + [anon_sym_export] = ACTIONS(1285), + [anon_sym_alias] = ACTIONS(1285), + [anon_sym_let] = ACTIONS(1285), + [anon_sym_let_DASHenv] = ACTIONS(1285), + [anon_sym_mut] = ACTIONS(1285), + [anon_sym_const] = ACTIONS(1285), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [anon_sym_def] = ACTIONS(1285), + [anon_sym_export_DASHenv] = ACTIONS(1285), + [anon_sym_extern] = ACTIONS(1285), + [anon_sym_module] = ACTIONS(1285), + [anon_sym_use] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_error] = ACTIONS(1285), + [anon_sym_list] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1285), + [anon_sym_for] = ACTIONS(1285), + [anon_sym_in] = ACTIONS(1285), + [anon_sym_loop] = ACTIONS(1285), + [anon_sym_make] = ACTIONS(1285), + [anon_sym_while] = ACTIONS(1285), + [anon_sym_do] = ACTIONS(1285), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1285), + [anon_sym_source] = ACTIONS(1285), + [anon_sym_source_DASHenv] = ACTIONS(1285), + [anon_sym_register] = ACTIONS(1285), + [anon_sym_hide] = ACTIONS(1285), + [anon_sym_hide_DASHenv] = ACTIONS(1285), + [anon_sym_overlay] = ACTIONS(1285), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_as] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [184] = { - [sym__expr_parenthesized_immediate] = STATE(538), - [sym__immediate_decimal] = STATE(396), - [sym_val_variable] = STATE(538), + [sym_cmd_identifier] = STATE(7764), + [sym__match_pattern_record_variable] = STATE(620), + [sym_expr_parenthesized] = STATE(7848), + [sym__spread_parenthesized] = STATE(657), + [sym__spread_variable] = STATE(658), + [sym_val_variable] = STATE(500), + [sym_val_number] = STATE(7848), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7848), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(657), + [sym_record_entry] = STATE(620), + [sym__record_key] = STATE(7764), [sym_comment] = STATE(184), - [anon_sym_export] = ACTIONS(1423), - [anon_sym_alias] = ACTIONS(1423), - [anon_sym_let] = ACTIONS(1423), - [anon_sym_let_DASHenv] = ACTIONS(1423), - [anon_sym_mut] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [aux_sym_cmd_identifier_token1] = ACTIONS(1423), - [aux_sym_cmd_identifier_token2] = ACTIONS(1423), - [aux_sym_cmd_identifier_token3] = ACTIONS(1423), - [aux_sym_cmd_identifier_token4] = ACTIONS(1423), - [aux_sym_cmd_identifier_token5] = ACTIONS(1423), - [aux_sym_cmd_identifier_token6] = ACTIONS(1423), - [aux_sym_cmd_identifier_token7] = ACTIONS(1423), - [aux_sym_cmd_identifier_token8] = ACTIONS(1423), - [aux_sym_cmd_identifier_token9] = ACTIONS(1423), - [aux_sym_cmd_identifier_token10] = ACTIONS(1423), - [aux_sym_cmd_identifier_token11] = ACTIONS(1423), - [aux_sym_cmd_identifier_token12] = ACTIONS(1423), - [aux_sym_cmd_identifier_token13] = ACTIONS(1423), - [aux_sym_cmd_identifier_token14] = ACTIONS(1423), - [aux_sym_cmd_identifier_token15] = ACTIONS(1423), - [aux_sym_cmd_identifier_token16] = ACTIONS(1423), - [aux_sym_cmd_identifier_token17] = ACTIONS(1423), - [aux_sym_cmd_identifier_token18] = ACTIONS(1423), - [aux_sym_cmd_identifier_token19] = ACTIONS(1423), - [aux_sym_cmd_identifier_token20] = ACTIONS(1423), - [aux_sym_cmd_identifier_token21] = ACTIONS(1423), - [aux_sym_cmd_identifier_token22] = ACTIONS(1423), - [aux_sym_cmd_identifier_token23] = ACTIONS(1423), - [aux_sym_cmd_identifier_token24] = ACTIONS(1423), - [aux_sym_cmd_identifier_token25] = ACTIONS(1423), - [aux_sym_cmd_identifier_token26] = ACTIONS(1423), - [aux_sym_cmd_identifier_token27] = ACTIONS(1423), - [aux_sym_cmd_identifier_token28] = ACTIONS(1423), - [aux_sym_cmd_identifier_token29] = ACTIONS(1423), - [aux_sym_cmd_identifier_token30] = ACTIONS(1423), - [aux_sym_cmd_identifier_token31] = ACTIONS(1423), - [aux_sym_cmd_identifier_token32] = ACTIONS(1423), - [aux_sym_cmd_identifier_token33] = ACTIONS(1423), - [aux_sym_cmd_identifier_token34] = ACTIONS(1423), - [aux_sym_cmd_identifier_token35] = ACTIONS(1423), - [aux_sym_cmd_identifier_token36] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_null] = ACTIONS(1423), - [aux_sym_cmd_identifier_token38] = ACTIONS(1423), - [aux_sym_cmd_identifier_token39] = ACTIONS(1423), - [aux_sym_cmd_identifier_token40] = ACTIONS(1423), - [anon_sym_def] = ACTIONS(1423), - [anon_sym_export_DASHenv] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym_module] = ACTIONS(1423), - [anon_sym_use] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1423), - [anon_sym_list] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_in] = ACTIONS(1423), - [anon_sym_loop] = ACTIONS(1423), - [anon_sym_make] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_else] = ACTIONS(1423), - [anon_sym_match] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_try] = ACTIONS(1423), - [anon_sym_catch] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_source] = ACTIONS(1423), - [anon_sym_source_DASHenv] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_hide] = ACTIONS(1423), - [anon_sym_hide_DASHenv] = ACTIONS(1423), - [anon_sym_overlay] = ACTIONS(1423), - [anon_sym_new] = ACTIONS(1423), - [anon_sym_as] = ACTIONS(1423), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1423), - [anon_sym_DOT] = ACTIONS(1410), - [aux_sym__immediate_decimal_token1] = ACTIONS(1412), - [aux_sym__immediate_decimal_token3] = ACTIONS(1412), - [aux_sym__immediate_decimal_token4] = ACTIONS(1414), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1423), - [aux_sym__val_number_decimal_token1] = ACTIONS(1423), - [aux_sym__val_number_decimal_token2] = ACTIONS(1423), - [anon_sym_DOT2] = ACTIONS(1423), - [aux_sym__val_number_decimal_token3] = ACTIONS(1423), - [aux_sym__val_number_token1] = ACTIONS(1423), - [aux_sym__val_number_token2] = ACTIONS(1423), - [aux_sym__val_number_token3] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym__str_single_quotes] = ACTIONS(1423), - [sym__str_back_ticks] = ACTIONS(1423), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1423), - [sym__entry_separator] = ACTIONS(1425), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__match_pattern_record_repeat1] = STATE(185), + [anon_sym_export] = ACTIONS(1285), + [anon_sym_alias] = ACTIONS(1285), + [anon_sym_let] = ACTIONS(1285), + [anon_sym_let_DASHenv] = ACTIONS(1285), + [anon_sym_mut] = ACTIONS(1285), + [anon_sym_const] = ACTIONS(1285), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [anon_sym_def] = ACTIONS(1285), + [anon_sym_export_DASHenv] = ACTIONS(1285), + [anon_sym_extern] = ACTIONS(1285), + [anon_sym_module] = ACTIONS(1285), + [anon_sym_use] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_error] = ACTIONS(1285), + [anon_sym_list] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1285), + [anon_sym_for] = ACTIONS(1285), + [anon_sym_in] = ACTIONS(1285), + [anon_sym_loop] = ACTIONS(1285), + [anon_sym_make] = ACTIONS(1285), + [anon_sym_while] = ACTIONS(1285), + [anon_sym_do] = ACTIONS(1285), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1285), + [anon_sym_source] = ACTIONS(1285), + [anon_sym_source_DASHenv] = ACTIONS(1285), + [anon_sym_register] = ACTIONS(1285), + [anon_sym_hide] = ACTIONS(1285), + [anon_sym_hide_DASHenv] = ACTIONS(1285), + [anon_sym_overlay] = ACTIONS(1285), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_as] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [185] = { - [sym__expr_parenthesized_immediate] = STATE(525), - [sym__immediate_decimal] = STATE(355), - [sym_val_variable] = STATE(525), + [sym_cmd_identifier] = STATE(7764), + [sym__match_pattern_record_variable] = STATE(620), + [sym_expr_parenthesized] = STATE(7848), + [sym__spread_parenthesized] = STATE(657), + [sym__spread_variable] = STATE(658), + [sym_val_variable] = STATE(500), + [sym_val_number] = STATE(7848), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7848), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(657), + [sym_record_entry] = STATE(620), + [sym__record_key] = STATE(7764), [sym_comment] = STATE(185), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1350), - [aux_sym_cmd_identifier_token2] = ACTIONS(1350), - [aux_sym_cmd_identifier_token3] = ACTIONS(1350), - [aux_sym_cmd_identifier_token4] = ACTIONS(1350), - [aux_sym_cmd_identifier_token5] = ACTIONS(1350), - [aux_sym_cmd_identifier_token6] = ACTIONS(1350), - [aux_sym_cmd_identifier_token7] = ACTIONS(1350), - [aux_sym_cmd_identifier_token8] = ACTIONS(1350), - [aux_sym_cmd_identifier_token9] = ACTIONS(1350), - [aux_sym_cmd_identifier_token10] = ACTIONS(1350), - [aux_sym_cmd_identifier_token11] = ACTIONS(1350), - [aux_sym_cmd_identifier_token12] = ACTIONS(1350), - [aux_sym_cmd_identifier_token13] = ACTIONS(1350), - [aux_sym_cmd_identifier_token14] = ACTIONS(1350), - [aux_sym_cmd_identifier_token15] = ACTIONS(1350), - [aux_sym_cmd_identifier_token16] = ACTIONS(1350), - [aux_sym_cmd_identifier_token17] = ACTIONS(1350), - [aux_sym_cmd_identifier_token18] = ACTIONS(1350), - [aux_sym_cmd_identifier_token19] = ACTIONS(1350), - [aux_sym_cmd_identifier_token20] = ACTIONS(1350), - [aux_sym_cmd_identifier_token21] = ACTIONS(1350), - [aux_sym_cmd_identifier_token22] = ACTIONS(1350), - [aux_sym_cmd_identifier_token23] = ACTIONS(1350), - [aux_sym_cmd_identifier_token24] = ACTIONS(1350), - [aux_sym_cmd_identifier_token25] = ACTIONS(1350), - [aux_sym_cmd_identifier_token26] = ACTIONS(1350), - [aux_sym_cmd_identifier_token27] = ACTIONS(1350), - [aux_sym_cmd_identifier_token28] = ACTIONS(1350), - [aux_sym_cmd_identifier_token29] = ACTIONS(1350), - [aux_sym_cmd_identifier_token30] = ACTIONS(1350), - [aux_sym_cmd_identifier_token31] = ACTIONS(1350), - [aux_sym_cmd_identifier_token32] = ACTIONS(1350), - [aux_sym_cmd_identifier_token33] = ACTIONS(1350), - [aux_sym_cmd_identifier_token34] = ACTIONS(1350), - [aux_sym_cmd_identifier_token35] = ACTIONS(1350), - [aux_sym_cmd_identifier_token36] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [aux_sym_cmd_identifier_token38] = ACTIONS(1350), - [aux_sym_cmd_identifier_token39] = ACTIONS(1350), - [aux_sym_cmd_identifier_token40] = ACTIONS(1350), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1410), - [aux_sym__immediate_decimal_token1] = ACTIONS(1412), - [aux_sym__immediate_decimal_token3] = ACTIONS(1412), - [aux_sym__immediate_decimal_token4] = ACTIONS(1414), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1350), - [sym__entry_separator] = ACTIONS(1362), - [aux_sym__unquoted_in_record_token5] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__match_pattern_record_repeat1] = STATE(186), + [anon_sym_export] = ACTIONS(1285), + [anon_sym_alias] = ACTIONS(1285), + [anon_sym_let] = ACTIONS(1285), + [anon_sym_let_DASHenv] = ACTIONS(1285), + [anon_sym_mut] = ACTIONS(1285), + [anon_sym_const] = ACTIONS(1285), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [anon_sym_def] = ACTIONS(1285), + [anon_sym_export_DASHenv] = ACTIONS(1285), + [anon_sym_extern] = ACTIONS(1285), + [anon_sym_module] = ACTIONS(1285), + [anon_sym_use] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_error] = ACTIONS(1285), + [anon_sym_list] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1285), + [anon_sym_for] = ACTIONS(1285), + [anon_sym_in] = ACTIONS(1285), + [anon_sym_loop] = ACTIONS(1285), + [anon_sym_make] = ACTIONS(1285), + [anon_sym_while] = ACTIONS(1285), + [anon_sym_do] = ACTIONS(1285), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_try] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1285), + [anon_sym_source] = ACTIONS(1285), + [anon_sym_source_DASHenv] = ACTIONS(1285), + [anon_sym_register] = ACTIONS(1285), + [anon_sym_hide] = ACTIONS(1285), + [anon_sym_hide_DASHenv] = ACTIONS(1285), + [anon_sym_overlay] = ACTIONS(1285), + [anon_sym_new] = ACTIONS(1285), + [anon_sym_as] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [186] = { - [sym__expr_parenthesized_immediate] = STATE(7542), + [sym_cmd_identifier] = STATE(7764), + [sym__match_pattern_record_variable] = STATE(620), + [sym_expr_parenthesized] = STATE(7848), + [sym__spread_parenthesized] = STATE(657), + [sym__spread_variable] = STATE(658), + [sym_val_variable] = STATE(500), + [sym_val_number] = STATE(7848), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7848), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(657), + [sym_record_entry] = STATE(620), + [sym__record_key] = STATE(7764), [sym_comment] = STATE(186), - [anon_sym_export] = ACTIONS(1429), - [anon_sym_alias] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_let_DASHenv] = ACTIONS(1429), - [anon_sym_mut] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [aux_sym_cmd_identifier_token1] = ACTIONS(1429), - [aux_sym_cmd_identifier_token2] = ACTIONS(1429), - [aux_sym_cmd_identifier_token3] = ACTIONS(1429), - [aux_sym_cmd_identifier_token4] = ACTIONS(1429), - [aux_sym_cmd_identifier_token5] = ACTIONS(1429), - [aux_sym_cmd_identifier_token6] = ACTIONS(1429), - [aux_sym_cmd_identifier_token7] = ACTIONS(1429), - [aux_sym_cmd_identifier_token8] = ACTIONS(1429), - [aux_sym_cmd_identifier_token9] = ACTIONS(1429), - [aux_sym_cmd_identifier_token10] = ACTIONS(1429), - [aux_sym_cmd_identifier_token11] = ACTIONS(1429), - [aux_sym_cmd_identifier_token12] = ACTIONS(1429), - [aux_sym_cmd_identifier_token13] = ACTIONS(1429), - [aux_sym_cmd_identifier_token14] = ACTIONS(1429), - [aux_sym_cmd_identifier_token15] = ACTIONS(1429), - [aux_sym_cmd_identifier_token16] = ACTIONS(1429), - [aux_sym_cmd_identifier_token17] = ACTIONS(1429), - [aux_sym_cmd_identifier_token18] = ACTIONS(1429), - [aux_sym_cmd_identifier_token19] = ACTIONS(1429), - [aux_sym_cmd_identifier_token20] = ACTIONS(1429), - [aux_sym_cmd_identifier_token21] = ACTIONS(1429), - [aux_sym_cmd_identifier_token22] = ACTIONS(1429), - [aux_sym_cmd_identifier_token23] = ACTIONS(1429), - [aux_sym_cmd_identifier_token24] = ACTIONS(1429), - [aux_sym_cmd_identifier_token25] = ACTIONS(1429), - [aux_sym_cmd_identifier_token26] = ACTIONS(1429), - [aux_sym_cmd_identifier_token27] = ACTIONS(1429), - [aux_sym_cmd_identifier_token28] = ACTIONS(1429), - [aux_sym_cmd_identifier_token29] = ACTIONS(1429), - [aux_sym_cmd_identifier_token30] = ACTIONS(1429), - [aux_sym_cmd_identifier_token31] = ACTIONS(1429), - [aux_sym_cmd_identifier_token32] = ACTIONS(1429), - [aux_sym_cmd_identifier_token33] = ACTIONS(1429), - [aux_sym_cmd_identifier_token34] = ACTIONS(1429), - [aux_sym_cmd_identifier_token35] = ACTIONS(1429), - [aux_sym_cmd_identifier_token36] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_null] = ACTIONS(1429), - [aux_sym_cmd_identifier_token38] = ACTIONS(1429), - [aux_sym_cmd_identifier_token39] = ACTIONS(1429), - [aux_sym_cmd_identifier_token40] = ACTIONS(1429), - [anon_sym_def] = ACTIONS(1429), - [anon_sym_export_DASHenv] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_module] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_DOLLAR] = ACTIONS(1429), - [anon_sym_error] = ACTIONS(1429), - [anon_sym_list] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_make] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1429), - [anon_sym_catch] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_source] = ACTIONS(1429), - [anon_sym_source_DASHenv] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_hide] = ACTIONS(1429), - [anon_sym_hide_DASHenv] = ACTIONS(1429), - [anon_sym_overlay] = ACTIONS(1429), - [anon_sym_new] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1429), - [anon_sym_DOT_DOT2] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1435), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1435), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1429), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1429), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1429), - [aux_sym__val_number_token1] = ACTIONS(1429), - [aux_sym__val_number_token2] = ACTIONS(1429), - [aux_sym__val_number_token3] = ACTIONS(1429), - [sym_filesize_unit] = ACTIONS(1437), - [sym_duration_unit] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1429), - [sym__str_single_quotes] = ACTIONS(1429), - [sym__str_back_ticks] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1429), - [sym__entry_separator] = ACTIONS(1441), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__match_pattern_record_repeat1] = STATE(186), + [anon_sym_export] = ACTIONS(1303), + [anon_sym_alias] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_let_DASHenv] = ACTIONS(1303), + [anon_sym_mut] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [aux_sym_cmd_identifier_token1] = ACTIONS(1306), + [aux_sym_cmd_identifier_token2] = ACTIONS(1306), + [aux_sym_cmd_identifier_token3] = ACTIONS(1306), + [aux_sym_cmd_identifier_token4] = ACTIONS(1306), + [aux_sym_cmd_identifier_token5] = ACTIONS(1306), + [aux_sym_cmd_identifier_token6] = ACTIONS(1306), + [aux_sym_cmd_identifier_token7] = ACTIONS(1306), + [aux_sym_cmd_identifier_token8] = ACTIONS(1306), + [aux_sym_cmd_identifier_token9] = ACTIONS(1306), + [aux_sym_cmd_identifier_token10] = ACTIONS(1306), + [aux_sym_cmd_identifier_token11] = ACTIONS(1306), + [aux_sym_cmd_identifier_token12] = ACTIONS(1306), + [aux_sym_cmd_identifier_token13] = ACTIONS(1306), + [aux_sym_cmd_identifier_token14] = ACTIONS(1306), + [aux_sym_cmd_identifier_token15] = ACTIONS(1306), + [aux_sym_cmd_identifier_token16] = ACTIONS(1306), + [aux_sym_cmd_identifier_token17] = ACTIONS(1306), + [aux_sym_cmd_identifier_token18] = ACTIONS(1306), + [aux_sym_cmd_identifier_token19] = ACTIONS(1306), + [aux_sym_cmd_identifier_token20] = ACTIONS(1306), + [aux_sym_cmd_identifier_token21] = ACTIONS(1306), + [aux_sym_cmd_identifier_token22] = ACTIONS(1306), + [aux_sym_cmd_identifier_token23] = ACTIONS(1306), + [aux_sym_cmd_identifier_token24] = ACTIONS(1306), + [aux_sym_cmd_identifier_token25] = ACTIONS(1306), + [aux_sym_cmd_identifier_token26] = ACTIONS(1306), + [aux_sym_cmd_identifier_token27] = ACTIONS(1306), + [aux_sym_cmd_identifier_token28] = ACTIONS(1306), + [aux_sym_cmd_identifier_token29] = ACTIONS(1306), + [aux_sym_cmd_identifier_token30] = ACTIONS(1306), + [aux_sym_cmd_identifier_token31] = ACTIONS(1306), + [aux_sym_cmd_identifier_token32] = ACTIONS(1306), + [aux_sym_cmd_identifier_token33] = ACTIONS(1306), + [aux_sym_cmd_identifier_token34] = ACTIONS(1306), + [aux_sym_cmd_identifier_token35] = ACTIONS(1306), + [aux_sym_cmd_identifier_token36] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1312), + [aux_sym_cmd_identifier_token39] = ACTIONS(1315), + [aux_sym_cmd_identifier_token40] = ACTIONS(1315), + [anon_sym_def] = ACTIONS(1303), + [anon_sym_export_DASHenv] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_error] = ACTIONS(1303), + [anon_sym_list] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_make] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_catch] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_source] = ACTIONS(1303), + [anon_sym_source_DASHenv] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_hide] = ACTIONS(1303), + [anon_sym_hide_DASHenv] = ACTIONS(1303), + [anon_sym_overlay] = ACTIONS(1303), + [anon_sym_new] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1329), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1332), + [aux_sym__val_number_decimal_token1] = ACTIONS(1335), + [aux_sym__val_number_decimal_token2] = ACTIONS(1338), + [aux_sym__val_number_decimal_token3] = ACTIONS(1341), + [aux_sym__val_number_decimal_token4] = ACTIONS(1344), + [aux_sym__val_number_token1] = ACTIONS(1347), + [aux_sym__val_number_token2] = ACTIONS(1347), + [aux_sym__val_number_token3] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym__str_single_quotes] = ACTIONS(1353), + [sym__str_back_ticks] = ACTIONS(1353), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_POUND] = ACTIONS(247), }, [187] = { - [sym__expr_parenthesized_immediate] = STATE(358), - [sym__immediate_decimal] = STATE(224), - [sym_val_variable] = STATE(358), + [sym_cmd_identifier] = STATE(8053), + [sym_expr_parenthesized] = STATE(7939), + [sym__spread_parenthesized] = STATE(564), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(7939), + [sym_val_number] = STATE(7939), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7939), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(564), + [sym_record_entry] = STATE(7059), + [sym__record_key] = STATE(8053), [sym_comment] = STATE(187), - [anon_sym_export] = ACTIONS(1404), - [anon_sym_alias] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_let_DASHenv] = ACTIONS(1404), - [anon_sym_mut] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [aux_sym_cmd_identifier_token1] = ACTIONS(1404), - [aux_sym_cmd_identifier_token2] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1404), - [aux_sym_cmd_identifier_token4] = ACTIONS(1404), - [aux_sym_cmd_identifier_token5] = ACTIONS(1404), - [aux_sym_cmd_identifier_token6] = ACTIONS(1404), - [aux_sym_cmd_identifier_token7] = ACTIONS(1404), - [aux_sym_cmd_identifier_token8] = ACTIONS(1404), - [aux_sym_cmd_identifier_token9] = ACTIONS(1404), - [aux_sym_cmd_identifier_token10] = ACTIONS(1404), - [aux_sym_cmd_identifier_token11] = ACTIONS(1404), - [aux_sym_cmd_identifier_token12] = ACTIONS(1404), - [aux_sym_cmd_identifier_token13] = ACTIONS(1404), - [aux_sym_cmd_identifier_token14] = ACTIONS(1404), - [aux_sym_cmd_identifier_token15] = ACTIONS(1404), - [aux_sym_cmd_identifier_token16] = ACTIONS(1404), - [aux_sym_cmd_identifier_token17] = ACTIONS(1404), - [aux_sym_cmd_identifier_token18] = ACTIONS(1404), - [aux_sym_cmd_identifier_token19] = ACTIONS(1404), - [aux_sym_cmd_identifier_token20] = ACTIONS(1404), - [aux_sym_cmd_identifier_token21] = ACTIONS(1404), - [aux_sym_cmd_identifier_token22] = ACTIONS(1404), - [aux_sym_cmd_identifier_token23] = ACTIONS(1404), - [aux_sym_cmd_identifier_token24] = ACTIONS(1404), - [aux_sym_cmd_identifier_token25] = ACTIONS(1404), - [aux_sym_cmd_identifier_token26] = ACTIONS(1404), - [aux_sym_cmd_identifier_token27] = ACTIONS(1404), - [aux_sym_cmd_identifier_token28] = ACTIONS(1404), - [aux_sym_cmd_identifier_token29] = ACTIONS(1404), - [aux_sym_cmd_identifier_token30] = ACTIONS(1404), - [aux_sym_cmd_identifier_token31] = ACTIONS(1404), - [aux_sym_cmd_identifier_token32] = ACTIONS(1404), - [aux_sym_cmd_identifier_token33] = ACTIONS(1404), - [aux_sym_cmd_identifier_token34] = ACTIONS(1404), - [aux_sym_cmd_identifier_token35] = ACTIONS(1404), - [aux_sym_cmd_identifier_token36] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [anon_sym_null] = ACTIONS(1404), - [aux_sym_cmd_identifier_token38] = ACTIONS(1404), - [aux_sym_cmd_identifier_token39] = ACTIONS(1404), - [aux_sym_cmd_identifier_token40] = ACTIONS(1404), - [anon_sym_def] = ACTIONS(1404), - [anon_sym_export_DASHenv] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_module] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_error] = ACTIONS(1404), - [anon_sym_list] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_in] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_make] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_do] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_else] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_try] = ACTIONS(1404), - [anon_sym_catch] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_source] = ACTIONS(1404), - [anon_sym_source_DASHenv] = ACTIONS(1404), - [anon_sym_register] = ACTIONS(1404), - [anon_sym_hide] = ACTIONS(1404), - [anon_sym_hide_DASHenv] = ACTIONS(1404), - [anon_sym_overlay] = ACTIONS(1404), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_as] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1404), - [anon_sym_DOT] = ACTIONS(1443), - [aux_sym__immediate_decimal_token1] = ACTIONS(1358), - [aux_sym__immediate_decimal_token3] = ACTIONS(1358), - [aux_sym__immediate_decimal_token4] = ACTIONS(1360), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1404), - [aux_sym__val_number_decimal_token1] = ACTIONS(1404), - [aux_sym__val_number_decimal_token2] = ACTIONS(1404), - [anon_sym_DOT2] = ACTIONS(1404), - [aux_sym__val_number_decimal_token3] = ACTIONS(1404), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym__str_single_quotes] = ACTIONS(1404), - [sym__str_back_ticks] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1404), - [sym__entry_separator] = ACTIONS(1416), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_record_body_repeat1] = STATE(189), + [anon_sym_export] = ACTIONS(273), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_let_DASHenv] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [anon_sym_def] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(273), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_source] = ACTIONS(273), + [anon_sym_source_DASHenv] = ACTIONS(273), + [anon_sym_register] = ACTIONS(273), + [anon_sym_hide] = ACTIONS(273), + [anon_sym_hide_DASHenv] = ACTIONS(273), + [anon_sym_overlay] = ACTIONS(273), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [188] = { + [sym_cmd_identifier] = STATE(8053), + [sym_expr_parenthesized] = STATE(7939), + [sym__spread_parenthesized] = STATE(564), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(7939), + [sym_val_number] = STATE(7939), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7939), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(564), + [sym_record_entry] = STATE(6980), + [sym__record_key] = STATE(8053), [sym_comment] = STATE(188), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [aux_sym_cmd_identifier_token1] = ACTIONS(1368), - [aux_sym_cmd_identifier_token2] = ACTIONS(1368), - [aux_sym_cmd_identifier_token3] = ACTIONS(1368), - [aux_sym_cmd_identifier_token4] = ACTIONS(1368), - [aux_sym_cmd_identifier_token5] = ACTIONS(1368), - [aux_sym_cmd_identifier_token6] = ACTIONS(1368), - [aux_sym_cmd_identifier_token7] = ACTIONS(1368), - [aux_sym_cmd_identifier_token8] = ACTIONS(1368), - [aux_sym_cmd_identifier_token9] = ACTIONS(1368), - [aux_sym_cmd_identifier_token10] = ACTIONS(1368), - [aux_sym_cmd_identifier_token11] = ACTIONS(1368), - [aux_sym_cmd_identifier_token12] = ACTIONS(1368), - [aux_sym_cmd_identifier_token13] = ACTIONS(1368), - [aux_sym_cmd_identifier_token14] = ACTIONS(1368), - [aux_sym_cmd_identifier_token15] = ACTIONS(1368), - [aux_sym_cmd_identifier_token16] = ACTIONS(1368), - [aux_sym_cmd_identifier_token17] = ACTIONS(1368), - [aux_sym_cmd_identifier_token18] = ACTIONS(1368), - [aux_sym_cmd_identifier_token19] = ACTIONS(1368), - [aux_sym_cmd_identifier_token20] = ACTIONS(1368), - [aux_sym_cmd_identifier_token21] = ACTIONS(1368), - [aux_sym_cmd_identifier_token22] = ACTIONS(1368), - [aux_sym_cmd_identifier_token23] = ACTIONS(1368), - [aux_sym_cmd_identifier_token24] = ACTIONS(1368), - [aux_sym_cmd_identifier_token25] = ACTIONS(1368), - [aux_sym_cmd_identifier_token26] = ACTIONS(1368), - [aux_sym_cmd_identifier_token27] = ACTIONS(1368), - [aux_sym_cmd_identifier_token28] = ACTIONS(1368), - [aux_sym_cmd_identifier_token29] = ACTIONS(1368), - [aux_sym_cmd_identifier_token30] = ACTIONS(1368), - [aux_sym_cmd_identifier_token31] = ACTIONS(1368), - [aux_sym_cmd_identifier_token32] = ACTIONS(1368), - [aux_sym_cmd_identifier_token33] = ACTIONS(1368), - [aux_sym_cmd_identifier_token34] = ACTIONS(1368), - [aux_sym_cmd_identifier_token35] = ACTIONS(1368), - [aux_sym_cmd_identifier_token36] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1368), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(1445), - [aux_sym__immediate_decimal_token2] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1370), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_record_body_repeat1] = STATE(189), + [anon_sym_export] = ACTIONS(273), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_let_DASHenv] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1241), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1241), + [aux_sym_cmd_identifier_token9] = ACTIONS(1241), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1241), + [aux_sym_cmd_identifier_token13] = ACTIONS(1241), + [aux_sym_cmd_identifier_token14] = ACTIONS(1241), + [aux_sym_cmd_identifier_token15] = ACTIONS(1241), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1241), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1241), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1241), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [anon_sym_null] = ACTIONS(1243), + [aux_sym_cmd_identifier_token38] = ACTIONS(1245), + [aux_sym_cmd_identifier_token39] = ACTIONS(1247), + [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [anon_sym_def] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_error] = ACTIONS(273), + [anon_sym_list] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_in] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_make] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_source] = ACTIONS(273), + [anon_sym_source_DASHenv] = ACTIONS(273), + [anon_sym_register] = ACTIONS(273), + [anon_sym_hide] = ACTIONS(273), + [anon_sym_hide_DASHenv] = ACTIONS(273), + [anon_sym_overlay] = ACTIONS(273), + [anon_sym_new] = ACTIONS(273), + [anon_sym_as] = ACTIONS(273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(1257), + [aux_sym__val_number_decimal_token2] = ACTIONS(1259), + [aux_sym__val_number_decimal_token3] = ACTIONS(1261), + [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(247), }, [189] = { - [sym__expr_parenthesized_immediate] = STATE(356), - [sym__immediate_decimal] = STATE(357), - [sym_val_variable] = STATE(356), + [sym_cmd_identifier] = STATE(8053), + [sym_expr_parenthesized] = STATE(7939), + [sym__spread_parenthesized] = STATE(564), + [sym__spread_variable] = STATE(552), + [sym_val_variable] = STATE(7939), + [sym_val_number] = STATE(7939), + [sym__val_number_decimal] = STATE(6721), + [sym__val_number] = STATE(1907), + [sym_val_string] = STATE(7939), + [sym__str_double_quotes] = STATE(1668), + [sym__spread_record] = STATE(564), + [sym_record_entry] = STATE(7643), + [sym__record_key] = STATE(8053), [sym_comment] = STATE(189), - [anon_sym_export] = ACTIONS(1449), - [anon_sym_alias] = ACTIONS(1449), - [anon_sym_let] = ACTIONS(1449), - [anon_sym_let_DASHenv] = ACTIONS(1449), - [anon_sym_mut] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [aux_sym_cmd_identifier_token1] = ACTIONS(1449), - [aux_sym_cmd_identifier_token2] = ACTIONS(1449), - [aux_sym_cmd_identifier_token3] = ACTIONS(1449), - [aux_sym_cmd_identifier_token4] = ACTIONS(1449), - [aux_sym_cmd_identifier_token5] = ACTIONS(1449), - [aux_sym_cmd_identifier_token6] = ACTIONS(1449), - [aux_sym_cmd_identifier_token7] = ACTIONS(1449), - [aux_sym_cmd_identifier_token8] = ACTIONS(1449), - [aux_sym_cmd_identifier_token9] = ACTIONS(1449), - [aux_sym_cmd_identifier_token10] = ACTIONS(1449), - [aux_sym_cmd_identifier_token11] = ACTIONS(1449), - [aux_sym_cmd_identifier_token12] = ACTIONS(1449), - [aux_sym_cmd_identifier_token13] = ACTIONS(1449), - [aux_sym_cmd_identifier_token14] = ACTIONS(1449), - [aux_sym_cmd_identifier_token15] = ACTIONS(1449), - [aux_sym_cmd_identifier_token16] = ACTIONS(1449), - [aux_sym_cmd_identifier_token17] = ACTIONS(1449), - [aux_sym_cmd_identifier_token18] = ACTIONS(1449), - [aux_sym_cmd_identifier_token19] = ACTIONS(1449), - [aux_sym_cmd_identifier_token20] = ACTIONS(1449), - [aux_sym_cmd_identifier_token21] = ACTIONS(1449), - [aux_sym_cmd_identifier_token22] = ACTIONS(1449), - [aux_sym_cmd_identifier_token23] = ACTIONS(1449), - [aux_sym_cmd_identifier_token24] = ACTIONS(1449), - [aux_sym_cmd_identifier_token25] = ACTIONS(1449), - [aux_sym_cmd_identifier_token26] = ACTIONS(1449), - [aux_sym_cmd_identifier_token27] = ACTIONS(1449), - [aux_sym_cmd_identifier_token28] = ACTIONS(1449), - [aux_sym_cmd_identifier_token29] = ACTIONS(1449), - [aux_sym_cmd_identifier_token30] = ACTIONS(1449), - [aux_sym_cmd_identifier_token31] = ACTIONS(1449), - [aux_sym_cmd_identifier_token32] = ACTIONS(1449), - [aux_sym_cmd_identifier_token33] = ACTIONS(1449), - [aux_sym_cmd_identifier_token34] = ACTIONS(1449), - [aux_sym_cmd_identifier_token35] = ACTIONS(1449), - [aux_sym_cmd_identifier_token36] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_null] = ACTIONS(1449), - [aux_sym_cmd_identifier_token38] = ACTIONS(1449), - [aux_sym_cmd_identifier_token39] = ACTIONS(1449), - [aux_sym_cmd_identifier_token40] = ACTIONS(1449), - [anon_sym_def] = ACTIONS(1449), - [anon_sym_export_DASHenv] = ACTIONS(1449), - [anon_sym_extern] = ACTIONS(1449), - [anon_sym_module] = ACTIONS(1449), - [anon_sym_use] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_error] = ACTIONS(1449), - [anon_sym_list] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_loop] = ACTIONS(1449), - [anon_sym_make] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_else] = ACTIONS(1449), - [anon_sym_match] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_try] = ACTIONS(1449), - [anon_sym_catch] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_source] = ACTIONS(1449), - [anon_sym_source_DASHenv] = ACTIONS(1449), - [anon_sym_register] = ACTIONS(1449), - [anon_sym_hide] = ACTIONS(1449), - [anon_sym_hide_DASHenv] = ACTIONS(1449), - [anon_sym_overlay] = ACTIONS(1449), - [anon_sym_new] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1451), - [aux_sym__immediate_decimal_token1] = ACTIONS(1453), - [aux_sym__immediate_decimal_token3] = ACTIONS(1453), - [aux_sym__immediate_decimal_token4] = ACTIONS(1455), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1449), - [aux_sym__val_number_decimal_token1] = ACTIONS(1449), - [aux_sym__val_number_decimal_token2] = ACTIONS(1449), - [anon_sym_DOT2] = ACTIONS(1449), - [aux_sym__val_number_decimal_token3] = ACTIONS(1449), - [aux_sym__val_number_token1] = ACTIONS(1449), - [aux_sym__val_number_token2] = ACTIONS(1449), - [aux_sym__val_number_token3] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1449), - [sym__str_single_quotes] = ACTIONS(1449), - [sym__str_back_ticks] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1449), - [sym__entry_separator] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_record_body_repeat1] = STATE(189), + [anon_sym_export] = ACTIONS(1359), + [anon_sym_alias] = ACTIONS(1359), + [anon_sym_let] = ACTIONS(1359), + [anon_sym_let_DASHenv] = ACTIONS(1359), + [anon_sym_mut] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [aux_sym_cmd_identifier_token1] = ACTIONS(1362), + [aux_sym_cmd_identifier_token2] = ACTIONS(1362), + [aux_sym_cmd_identifier_token3] = ACTIONS(1362), + [aux_sym_cmd_identifier_token4] = ACTIONS(1362), + [aux_sym_cmd_identifier_token5] = ACTIONS(1362), + [aux_sym_cmd_identifier_token6] = ACTIONS(1362), + [aux_sym_cmd_identifier_token7] = ACTIONS(1362), + [aux_sym_cmd_identifier_token8] = ACTIONS(1362), + [aux_sym_cmd_identifier_token9] = ACTIONS(1362), + [aux_sym_cmd_identifier_token10] = ACTIONS(1362), + [aux_sym_cmd_identifier_token11] = ACTIONS(1362), + [aux_sym_cmd_identifier_token12] = ACTIONS(1362), + [aux_sym_cmd_identifier_token13] = ACTIONS(1362), + [aux_sym_cmd_identifier_token14] = ACTIONS(1362), + [aux_sym_cmd_identifier_token15] = ACTIONS(1362), + [aux_sym_cmd_identifier_token16] = ACTIONS(1362), + [aux_sym_cmd_identifier_token17] = ACTIONS(1362), + [aux_sym_cmd_identifier_token18] = ACTIONS(1362), + [aux_sym_cmd_identifier_token19] = ACTIONS(1362), + [aux_sym_cmd_identifier_token20] = ACTIONS(1362), + [aux_sym_cmd_identifier_token21] = ACTIONS(1362), + [aux_sym_cmd_identifier_token22] = ACTIONS(1362), + [aux_sym_cmd_identifier_token23] = ACTIONS(1362), + [aux_sym_cmd_identifier_token24] = ACTIONS(1362), + [aux_sym_cmd_identifier_token25] = ACTIONS(1362), + [aux_sym_cmd_identifier_token26] = ACTIONS(1362), + [aux_sym_cmd_identifier_token27] = ACTIONS(1362), + [aux_sym_cmd_identifier_token28] = ACTIONS(1362), + [aux_sym_cmd_identifier_token29] = ACTIONS(1362), + [aux_sym_cmd_identifier_token30] = ACTIONS(1362), + [aux_sym_cmd_identifier_token31] = ACTIONS(1362), + [aux_sym_cmd_identifier_token32] = ACTIONS(1362), + [aux_sym_cmd_identifier_token33] = ACTIONS(1362), + [aux_sym_cmd_identifier_token34] = ACTIONS(1362), + [aux_sym_cmd_identifier_token35] = ACTIONS(1362), + [aux_sym_cmd_identifier_token36] = ACTIONS(1362), + [anon_sym_true] = ACTIONS(1365), + [anon_sym_false] = ACTIONS(1365), + [anon_sym_null] = ACTIONS(1365), + [aux_sym_cmd_identifier_token38] = ACTIONS(1368), + [aux_sym_cmd_identifier_token39] = ACTIONS(1371), + [aux_sym_cmd_identifier_token40] = ACTIONS(1371), + [anon_sym_def] = ACTIONS(1359), + [anon_sym_export_DASHenv] = ACTIONS(1359), + [anon_sym_extern] = ACTIONS(1359), + [anon_sym_module] = ACTIONS(1359), + [anon_sym_use] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1377), + [anon_sym_error] = ACTIONS(1359), + [anon_sym_list] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_in] = ACTIONS(1359), + [anon_sym_loop] = ACTIONS(1359), + [anon_sym_make] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_else] = ACTIONS(1359), + [anon_sym_match] = ACTIONS(1359), + [anon_sym_try] = ACTIONS(1359), + [anon_sym_catch] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_source] = ACTIONS(1359), + [anon_sym_source_DASHenv] = ACTIONS(1359), + [anon_sym_register] = ACTIONS(1359), + [anon_sym_hide] = ACTIONS(1359), + [anon_sym_hide_DASHenv] = ACTIONS(1359), + [anon_sym_overlay] = ACTIONS(1359), + [anon_sym_new] = ACTIONS(1359), + [anon_sym_as] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1383), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1386), + [aux_sym__val_number_decimal_token1] = ACTIONS(1389), + [aux_sym__val_number_decimal_token2] = ACTIONS(1392), + [aux_sym__val_number_decimal_token3] = ACTIONS(1395), + [aux_sym__val_number_decimal_token4] = ACTIONS(1398), + [aux_sym__val_number_token1] = ACTIONS(1401), + [aux_sym__val_number_token2] = ACTIONS(1401), + [aux_sym__val_number_token3] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym__str_single_quotes] = ACTIONS(1407), + [sym__str_back_ticks] = ACTIONS(1407), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_POUND] = ACTIONS(247), }, [190] = { + [sym__expr_parenthesized_immediate] = STATE(388), + [sym__immediate_decimal] = STATE(262), + [sym_val_variable] = STATE(388), [sym_comment] = STATE(190), - [anon_sym_export] = ACTIONS(1398), - [anon_sym_alias] = ACTIONS(1398), - [anon_sym_let] = ACTIONS(1398), - [anon_sym_let_DASHenv] = ACTIONS(1398), - [anon_sym_mut] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [aux_sym_cmd_identifier_token1] = ACTIONS(1398), - [aux_sym_cmd_identifier_token2] = ACTIONS(1398), - [aux_sym_cmd_identifier_token3] = ACTIONS(1398), - [aux_sym_cmd_identifier_token4] = ACTIONS(1398), - [aux_sym_cmd_identifier_token5] = ACTIONS(1398), - [aux_sym_cmd_identifier_token6] = ACTIONS(1398), - [aux_sym_cmd_identifier_token7] = ACTIONS(1398), - [aux_sym_cmd_identifier_token8] = ACTIONS(1398), - [aux_sym_cmd_identifier_token9] = ACTIONS(1398), - [aux_sym_cmd_identifier_token10] = ACTIONS(1398), - [aux_sym_cmd_identifier_token11] = ACTIONS(1398), - [aux_sym_cmd_identifier_token12] = ACTIONS(1398), - [aux_sym_cmd_identifier_token13] = ACTIONS(1398), - [aux_sym_cmd_identifier_token14] = ACTIONS(1398), - [aux_sym_cmd_identifier_token15] = ACTIONS(1398), - [aux_sym_cmd_identifier_token16] = ACTIONS(1398), - [aux_sym_cmd_identifier_token17] = ACTIONS(1398), - [aux_sym_cmd_identifier_token18] = ACTIONS(1398), - [aux_sym_cmd_identifier_token19] = ACTIONS(1398), - [aux_sym_cmd_identifier_token20] = ACTIONS(1398), - [aux_sym_cmd_identifier_token21] = ACTIONS(1398), - [aux_sym_cmd_identifier_token22] = ACTIONS(1398), - [aux_sym_cmd_identifier_token23] = ACTIONS(1398), - [aux_sym_cmd_identifier_token24] = ACTIONS(1398), - [aux_sym_cmd_identifier_token25] = ACTIONS(1398), - [aux_sym_cmd_identifier_token26] = ACTIONS(1398), - [aux_sym_cmd_identifier_token27] = ACTIONS(1398), - [aux_sym_cmd_identifier_token28] = ACTIONS(1398), - [aux_sym_cmd_identifier_token29] = ACTIONS(1398), - [aux_sym_cmd_identifier_token30] = ACTIONS(1398), - [aux_sym_cmd_identifier_token31] = ACTIONS(1398), - [aux_sym_cmd_identifier_token32] = ACTIONS(1398), - [aux_sym_cmd_identifier_token33] = ACTIONS(1398), - [aux_sym_cmd_identifier_token34] = ACTIONS(1398), - [aux_sym_cmd_identifier_token35] = ACTIONS(1398), - [aux_sym_cmd_identifier_token36] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1398), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [anon_sym_def] = ACTIONS(1398), - [anon_sym_export_DASHenv] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_module] = ACTIONS(1398), - [anon_sym_use] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_error] = ACTIONS(1398), - [anon_sym_list] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_in] = ACTIONS(1398), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_make] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_try] = ACTIONS(1398), - [anon_sym_catch] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_source] = ACTIONS(1398), - [anon_sym_source_DASHenv] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_hide] = ACTIONS(1398), - [anon_sym_hide_DASHenv] = ACTIONS(1398), - [anon_sym_overlay] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(1462), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1400), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1400), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1398), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_alias] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_let_DASHenv] = ACTIONS(1413), + [anon_sym_mut] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [aux_sym_cmd_identifier_token1] = ACTIONS(1413), + [aux_sym_cmd_identifier_token2] = ACTIONS(1413), + [aux_sym_cmd_identifier_token3] = ACTIONS(1413), + [aux_sym_cmd_identifier_token4] = ACTIONS(1413), + [aux_sym_cmd_identifier_token5] = ACTIONS(1413), + [aux_sym_cmd_identifier_token6] = ACTIONS(1413), + [aux_sym_cmd_identifier_token7] = ACTIONS(1413), + [aux_sym_cmd_identifier_token8] = ACTIONS(1413), + [aux_sym_cmd_identifier_token9] = ACTIONS(1413), + [aux_sym_cmd_identifier_token10] = ACTIONS(1413), + [aux_sym_cmd_identifier_token11] = ACTIONS(1413), + [aux_sym_cmd_identifier_token12] = ACTIONS(1413), + [aux_sym_cmd_identifier_token13] = ACTIONS(1413), + [aux_sym_cmd_identifier_token14] = ACTIONS(1413), + [aux_sym_cmd_identifier_token15] = ACTIONS(1413), + [aux_sym_cmd_identifier_token16] = ACTIONS(1413), + [aux_sym_cmd_identifier_token17] = ACTIONS(1413), + [aux_sym_cmd_identifier_token18] = ACTIONS(1413), + [aux_sym_cmd_identifier_token19] = ACTIONS(1413), + [aux_sym_cmd_identifier_token20] = ACTIONS(1413), + [aux_sym_cmd_identifier_token21] = ACTIONS(1413), + [aux_sym_cmd_identifier_token22] = ACTIONS(1413), + [aux_sym_cmd_identifier_token23] = ACTIONS(1413), + [aux_sym_cmd_identifier_token24] = ACTIONS(1413), + [aux_sym_cmd_identifier_token25] = ACTIONS(1413), + [aux_sym_cmd_identifier_token26] = ACTIONS(1413), + [aux_sym_cmd_identifier_token27] = ACTIONS(1413), + [aux_sym_cmd_identifier_token28] = ACTIONS(1413), + [aux_sym_cmd_identifier_token29] = ACTIONS(1413), + [aux_sym_cmd_identifier_token30] = ACTIONS(1413), + [aux_sym_cmd_identifier_token31] = ACTIONS(1413), + [aux_sym_cmd_identifier_token32] = ACTIONS(1413), + [aux_sym_cmd_identifier_token33] = ACTIONS(1413), + [aux_sym_cmd_identifier_token34] = ACTIONS(1413), + [aux_sym_cmd_identifier_token35] = ACTIONS(1413), + [aux_sym_cmd_identifier_token36] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [aux_sym_cmd_identifier_token38] = ACTIONS(1413), + [aux_sym_cmd_identifier_token39] = ACTIONS(1413), + [aux_sym_cmd_identifier_token40] = ACTIONS(1413), + [anon_sym_def] = ACTIONS(1413), + [anon_sym_export_DASHenv] = ACTIONS(1413), + [anon_sym_extern] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_use] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_DOLLAR] = ACTIONS(1415), + [anon_sym_error] = ACTIONS(1413), + [anon_sym_list] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_in] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1413), + [anon_sym_make] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_try] = ACTIONS(1413), + [anon_sym_catch] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_source] = ACTIONS(1413), + [anon_sym_source_DASHenv] = ACTIONS(1413), + [anon_sym_register] = ACTIONS(1413), + [anon_sym_hide] = ACTIONS(1413), + [anon_sym_hide_DASHenv] = ACTIONS(1413), + [anon_sym_overlay] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1413), + [anon_sym_LPAREN2] = ACTIONS(1417), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1419), + [aux_sym__immediate_decimal_token1] = ACTIONS(1421), + [aux_sym__immediate_decimal_token3] = ACTIONS(1421), + [aux_sym__immediate_decimal_token4] = ACTIONS(1423), + [aux_sym__immediate_decimal_token5] = ACTIONS(1425), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1413), + [aux_sym__val_number_decimal_token1] = ACTIONS(1413), + [aux_sym__val_number_decimal_token2] = ACTIONS(1413), + [aux_sym__val_number_decimal_token3] = ACTIONS(1413), + [aux_sym__val_number_decimal_token4] = ACTIONS(1413), + [aux_sym__val_number_token1] = ACTIONS(1413), + [aux_sym__val_number_token2] = ACTIONS(1413), + [aux_sym__val_number_token3] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym__str_single_quotes] = ACTIONS(1413), + [sym__str_back_ticks] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1413), + [sym__entry_separator] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1413), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(3), }, [191] = { - [sym__expr_parenthesized_immediate] = STATE(526), - [sym__immediate_decimal] = STATE(527), - [sym_val_variable] = STATE(526), + [sym__expr_parenthesized_immediate] = STATE(417), + [sym__immediate_decimal] = STATE(400), + [sym_val_variable] = STATE(417), [sym_comment] = STATE(191), - [anon_sym_export] = ACTIONS(1449), - [anon_sym_alias] = ACTIONS(1449), - [anon_sym_let] = ACTIONS(1449), - [anon_sym_let_DASHenv] = ACTIONS(1449), - [anon_sym_mut] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [aux_sym_cmd_identifier_token1] = ACTIONS(1449), - [aux_sym_cmd_identifier_token2] = ACTIONS(1449), - [aux_sym_cmd_identifier_token3] = ACTIONS(1449), - [aux_sym_cmd_identifier_token4] = ACTIONS(1449), - [aux_sym_cmd_identifier_token5] = ACTIONS(1449), - [aux_sym_cmd_identifier_token6] = ACTIONS(1449), - [aux_sym_cmd_identifier_token7] = ACTIONS(1449), - [aux_sym_cmd_identifier_token8] = ACTIONS(1449), - [aux_sym_cmd_identifier_token9] = ACTIONS(1449), - [aux_sym_cmd_identifier_token10] = ACTIONS(1449), - [aux_sym_cmd_identifier_token11] = ACTIONS(1449), - [aux_sym_cmd_identifier_token12] = ACTIONS(1449), - [aux_sym_cmd_identifier_token13] = ACTIONS(1449), - [aux_sym_cmd_identifier_token14] = ACTIONS(1449), - [aux_sym_cmd_identifier_token15] = ACTIONS(1449), - [aux_sym_cmd_identifier_token16] = ACTIONS(1449), - [aux_sym_cmd_identifier_token17] = ACTIONS(1449), - [aux_sym_cmd_identifier_token18] = ACTIONS(1449), - [aux_sym_cmd_identifier_token19] = ACTIONS(1449), - [aux_sym_cmd_identifier_token20] = ACTIONS(1449), - [aux_sym_cmd_identifier_token21] = ACTIONS(1449), - [aux_sym_cmd_identifier_token22] = ACTIONS(1449), - [aux_sym_cmd_identifier_token23] = ACTIONS(1449), - [aux_sym_cmd_identifier_token24] = ACTIONS(1449), - [aux_sym_cmd_identifier_token25] = ACTIONS(1449), - [aux_sym_cmd_identifier_token26] = ACTIONS(1449), - [aux_sym_cmd_identifier_token27] = ACTIONS(1449), - [aux_sym_cmd_identifier_token28] = ACTIONS(1449), - [aux_sym_cmd_identifier_token29] = ACTIONS(1449), - [aux_sym_cmd_identifier_token30] = ACTIONS(1449), - [aux_sym_cmd_identifier_token31] = ACTIONS(1449), - [aux_sym_cmd_identifier_token32] = ACTIONS(1449), - [aux_sym_cmd_identifier_token33] = ACTIONS(1449), - [aux_sym_cmd_identifier_token34] = ACTIONS(1449), - [aux_sym_cmd_identifier_token35] = ACTIONS(1449), - [aux_sym_cmd_identifier_token36] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_null] = ACTIONS(1449), - [aux_sym_cmd_identifier_token38] = ACTIONS(1449), - [aux_sym_cmd_identifier_token39] = ACTIONS(1449), - [aux_sym_cmd_identifier_token40] = ACTIONS(1449), - [anon_sym_def] = ACTIONS(1449), - [anon_sym_export_DASHenv] = ACTIONS(1449), - [anon_sym_extern] = ACTIONS(1449), - [anon_sym_module] = ACTIONS(1449), - [anon_sym_use] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1449), - [anon_sym_list] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_loop] = ACTIONS(1449), - [anon_sym_make] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_else] = ACTIONS(1449), - [anon_sym_match] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_try] = ACTIONS(1449), - [anon_sym_catch] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_source] = ACTIONS(1449), - [anon_sym_source_DASHenv] = ACTIONS(1449), - [anon_sym_register] = ACTIONS(1449), - [anon_sym_hide] = ACTIONS(1449), - [anon_sym_hide_DASHenv] = ACTIONS(1449), - [anon_sym_overlay] = ACTIONS(1449), - [anon_sym_new] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1464), - [aux_sym__immediate_decimal_token1] = ACTIONS(1466), - [aux_sym__immediate_decimal_token3] = ACTIONS(1466), - [aux_sym__immediate_decimal_token4] = ACTIONS(1468), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1449), - [aux_sym__val_number_decimal_token1] = ACTIONS(1449), - [aux_sym__val_number_decimal_token2] = ACTIONS(1449), - [anon_sym_DOT2] = ACTIONS(1449), - [aux_sym__val_number_decimal_token3] = ACTIONS(1449), - [aux_sym__val_number_token1] = ACTIONS(1449), - [aux_sym__val_number_token2] = ACTIONS(1449), - [aux_sym__val_number_token3] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1449), - [sym__str_single_quotes] = ACTIONS(1449), - [sym__str_back_ticks] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1449), - [sym__entry_separator] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [aux_sym_cmd_identifier_token1] = ACTIONS(1431), + [aux_sym_cmd_identifier_token2] = ACTIONS(1431), + [aux_sym_cmd_identifier_token3] = ACTIONS(1431), + [aux_sym_cmd_identifier_token4] = ACTIONS(1431), + [aux_sym_cmd_identifier_token5] = ACTIONS(1431), + [aux_sym_cmd_identifier_token6] = ACTIONS(1431), + [aux_sym_cmd_identifier_token7] = ACTIONS(1431), + [aux_sym_cmd_identifier_token8] = ACTIONS(1431), + [aux_sym_cmd_identifier_token9] = ACTIONS(1431), + [aux_sym_cmd_identifier_token10] = ACTIONS(1431), + [aux_sym_cmd_identifier_token11] = ACTIONS(1431), + [aux_sym_cmd_identifier_token12] = ACTIONS(1431), + [aux_sym_cmd_identifier_token13] = ACTIONS(1431), + [aux_sym_cmd_identifier_token14] = ACTIONS(1431), + [aux_sym_cmd_identifier_token15] = ACTIONS(1431), + [aux_sym_cmd_identifier_token16] = ACTIONS(1431), + [aux_sym_cmd_identifier_token17] = ACTIONS(1431), + [aux_sym_cmd_identifier_token18] = ACTIONS(1431), + [aux_sym_cmd_identifier_token19] = ACTIONS(1431), + [aux_sym_cmd_identifier_token20] = ACTIONS(1431), + [aux_sym_cmd_identifier_token21] = ACTIONS(1431), + [aux_sym_cmd_identifier_token22] = ACTIONS(1431), + [aux_sym_cmd_identifier_token23] = ACTIONS(1431), + [aux_sym_cmd_identifier_token24] = ACTIONS(1431), + [aux_sym_cmd_identifier_token25] = ACTIONS(1431), + [aux_sym_cmd_identifier_token26] = ACTIONS(1431), + [aux_sym_cmd_identifier_token27] = ACTIONS(1431), + [aux_sym_cmd_identifier_token28] = ACTIONS(1431), + [aux_sym_cmd_identifier_token29] = ACTIONS(1431), + [aux_sym_cmd_identifier_token30] = ACTIONS(1431), + [aux_sym_cmd_identifier_token31] = ACTIONS(1431), + [aux_sym_cmd_identifier_token32] = ACTIONS(1431), + [aux_sym_cmd_identifier_token33] = ACTIONS(1431), + [aux_sym_cmd_identifier_token34] = ACTIONS(1431), + [aux_sym_cmd_identifier_token35] = ACTIONS(1431), + [aux_sym_cmd_identifier_token36] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_cmd_identifier_token38] = ACTIONS(1431), + [aux_sym_cmd_identifier_token39] = ACTIONS(1431), + [aux_sym_cmd_identifier_token40] = ACTIONS(1431), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1415), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_list] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_make] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_catch] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_register] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1417), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1433), + [aux_sym__immediate_decimal_token1] = ACTIONS(1435), + [aux_sym__immediate_decimal_token3] = ACTIONS(1435), + [aux_sym__immediate_decimal_token4] = ACTIONS(1437), + [aux_sym__immediate_decimal_token5] = ACTIONS(1439), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1431), + [aux_sym__val_number_token2] = ACTIONS(1431), + [aux_sym__val_number_token3] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym__str_single_quotes] = ACTIONS(1431), + [sym__str_back_ticks] = ACTIONS(1431), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1431), + [sym__entry_separator] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(3), }, [192] = { + [sym__expr_parenthesized_immediate] = STATE(585), + [sym__immediate_decimal] = STATE(437), + [sym_val_variable] = STATE(585), [sym_comment] = STATE(192), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(1474), - [aux_sym__immediate_decimal_token2] = ACTIONS(1476), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1443), + [anon_sym_alias] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_let_DASHenv] = ACTIONS(1443), + [anon_sym_mut] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [aux_sym_cmd_identifier_token1] = ACTIONS(1443), + [aux_sym_cmd_identifier_token2] = ACTIONS(1443), + [aux_sym_cmd_identifier_token3] = ACTIONS(1443), + [aux_sym_cmd_identifier_token4] = ACTIONS(1443), + [aux_sym_cmd_identifier_token5] = ACTIONS(1443), + [aux_sym_cmd_identifier_token6] = ACTIONS(1443), + [aux_sym_cmd_identifier_token7] = ACTIONS(1443), + [aux_sym_cmd_identifier_token8] = ACTIONS(1443), + [aux_sym_cmd_identifier_token9] = ACTIONS(1443), + [aux_sym_cmd_identifier_token10] = ACTIONS(1443), + [aux_sym_cmd_identifier_token11] = ACTIONS(1443), + [aux_sym_cmd_identifier_token12] = ACTIONS(1443), + [aux_sym_cmd_identifier_token13] = ACTIONS(1443), + [aux_sym_cmd_identifier_token14] = ACTIONS(1443), + [aux_sym_cmd_identifier_token15] = ACTIONS(1443), + [aux_sym_cmd_identifier_token16] = ACTIONS(1443), + [aux_sym_cmd_identifier_token17] = ACTIONS(1443), + [aux_sym_cmd_identifier_token18] = ACTIONS(1443), + [aux_sym_cmd_identifier_token19] = ACTIONS(1443), + [aux_sym_cmd_identifier_token20] = ACTIONS(1443), + [aux_sym_cmd_identifier_token21] = ACTIONS(1443), + [aux_sym_cmd_identifier_token22] = ACTIONS(1443), + [aux_sym_cmd_identifier_token23] = ACTIONS(1443), + [aux_sym_cmd_identifier_token24] = ACTIONS(1443), + [aux_sym_cmd_identifier_token25] = ACTIONS(1443), + [aux_sym_cmd_identifier_token26] = ACTIONS(1443), + [aux_sym_cmd_identifier_token27] = ACTIONS(1443), + [aux_sym_cmd_identifier_token28] = ACTIONS(1443), + [aux_sym_cmd_identifier_token29] = ACTIONS(1443), + [aux_sym_cmd_identifier_token30] = ACTIONS(1443), + [aux_sym_cmd_identifier_token31] = ACTIONS(1443), + [aux_sym_cmd_identifier_token32] = ACTIONS(1443), + [aux_sym_cmd_identifier_token33] = ACTIONS(1443), + [aux_sym_cmd_identifier_token34] = ACTIONS(1443), + [aux_sym_cmd_identifier_token35] = ACTIONS(1443), + [aux_sym_cmd_identifier_token36] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_null] = ACTIONS(1443), + [aux_sym_cmd_identifier_token38] = ACTIONS(1443), + [aux_sym_cmd_identifier_token39] = ACTIONS(1443), + [aux_sym_cmd_identifier_token40] = ACTIONS(1443), + [anon_sym_def] = ACTIONS(1443), + [anon_sym_export_DASHenv] = ACTIONS(1443), + [anon_sym_extern] = ACTIONS(1443), + [anon_sym_module] = ACTIONS(1443), + [anon_sym_use] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1443), + [anon_sym_list] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_in] = ACTIONS(1443), + [anon_sym_loop] = ACTIONS(1443), + [anon_sym_make] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_do] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [anon_sym_catch] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_source] = ACTIONS(1443), + [anon_sym_source_DASHenv] = ACTIONS(1443), + [anon_sym_register] = ACTIONS(1443), + [anon_sym_hide] = ACTIONS(1443), + [anon_sym_hide_DASHenv] = ACTIONS(1443), + [anon_sym_overlay] = ACTIONS(1443), + [anon_sym_new] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1443), + [aux_sym__immediate_decimal_token1] = ACTIONS(1449), + [aux_sym__immediate_decimal_token3] = ACTIONS(1449), + [aux_sym__immediate_decimal_token4] = ACTIONS(1451), + [aux_sym__immediate_decimal_token5] = ACTIONS(1453), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1443), + [aux_sym__val_number_decimal_token1] = ACTIONS(1443), + [aux_sym__val_number_decimal_token2] = ACTIONS(1443), + [aux_sym__val_number_decimal_token3] = ACTIONS(1443), + [aux_sym__val_number_decimal_token4] = ACTIONS(1443), + [aux_sym__val_number_token1] = ACTIONS(1443), + [aux_sym__val_number_token2] = ACTIONS(1443), + [aux_sym__val_number_token3] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [sym__str_single_quotes] = ACTIONS(1443), + [sym__str_back_ticks] = ACTIONS(1443), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1443), + [sym__entry_separator] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1443), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(3), }, [193] = { - [sym__expr_parenthesized_immediate] = STATE(534), - [sym__immediate_decimal] = STATE(535), - [sym_val_variable] = STATE(534), + [sym__expr_parenthesized_immediate] = STATE(465), + [sym__immediate_decimal] = STATE(334), + [sym_val_variable] = STATE(465), [sym_comment] = STATE(193), - [anon_sym_export] = ACTIONS(1478), - [anon_sym_alias] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_let_DASHenv] = ACTIONS(1478), - [anon_sym_mut] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [aux_sym_cmd_identifier_token1] = ACTIONS(1478), - [aux_sym_cmd_identifier_token2] = ACTIONS(1478), - [aux_sym_cmd_identifier_token3] = ACTIONS(1478), - [aux_sym_cmd_identifier_token4] = ACTIONS(1478), - [aux_sym_cmd_identifier_token5] = ACTIONS(1478), - [aux_sym_cmd_identifier_token6] = ACTIONS(1478), - [aux_sym_cmd_identifier_token7] = ACTIONS(1478), - [aux_sym_cmd_identifier_token8] = ACTIONS(1478), - [aux_sym_cmd_identifier_token9] = ACTIONS(1478), - [aux_sym_cmd_identifier_token10] = ACTIONS(1478), - [aux_sym_cmd_identifier_token11] = ACTIONS(1478), - [aux_sym_cmd_identifier_token12] = ACTIONS(1478), - [aux_sym_cmd_identifier_token13] = ACTIONS(1478), - [aux_sym_cmd_identifier_token14] = ACTIONS(1478), - [aux_sym_cmd_identifier_token15] = ACTIONS(1478), - [aux_sym_cmd_identifier_token16] = ACTIONS(1478), - [aux_sym_cmd_identifier_token17] = ACTIONS(1478), - [aux_sym_cmd_identifier_token18] = ACTIONS(1478), - [aux_sym_cmd_identifier_token19] = ACTIONS(1478), - [aux_sym_cmd_identifier_token20] = ACTIONS(1478), - [aux_sym_cmd_identifier_token21] = ACTIONS(1478), - [aux_sym_cmd_identifier_token22] = ACTIONS(1478), - [aux_sym_cmd_identifier_token23] = ACTIONS(1478), - [aux_sym_cmd_identifier_token24] = ACTIONS(1478), - [aux_sym_cmd_identifier_token25] = ACTIONS(1478), - [aux_sym_cmd_identifier_token26] = ACTIONS(1478), - [aux_sym_cmd_identifier_token27] = ACTIONS(1478), - [aux_sym_cmd_identifier_token28] = ACTIONS(1478), - [aux_sym_cmd_identifier_token29] = ACTIONS(1478), - [aux_sym_cmd_identifier_token30] = ACTIONS(1478), - [aux_sym_cmd_identifier_token31] = ACTIONS(1478), - [aux_sym_cmd_identifier_token32] = ACTIONS(1478), - [aux_sym_cmd_identifier_token33] = ACTIONS(1478), - [aux_sym_cmd_identifier_token34] = ACTIONS(1478), - [aux_sym_cmd_identifier_token35] = ACTIONS(1478), - [aux_sym_cmd_identifier_token36] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [anon_sym_null] = ACTIONS(1478), - [aux_sym_cmd_identifier_token38] = ACTIONS(1478), - [aux_sym_cmd_identifier_token39] = ACTIONS(1478), - [aux_sym_cmd_identifier_token40] = ACTIONS(1478), - [anon_sym_def] = ACTIONS(1478), - [anon_sym_export_DASHenv] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_module] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1478), - [anon_sym_list] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_make] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_else] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_catch] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_source] = ACTIONS(1478), - [anon_sym_source_DASHenv] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_hide] = ACTIONS(1478), - [anon_sym_hide_DASHenv] = ACTIONS(1478), - [anon_sym_overlay] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1464), - [aux_sym__immediate_decimal_token1] = ACTIONS(1466), - [aux_sym__immediate_decimal_token3] = ACTIONS(1466), - [aux_sym__immediate_decimal_token4] = ACTIONS(1468), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1478), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1478), - [aux_sym__val_number_token2] = ACTIONS(1478), - [aux_sym__val_number_token3] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym__str_single_quotes] = ACTIONS(1478), - [sym__str_back_ticks] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1478), - [sym__entry_separator] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_alias] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_let_DASHenv] = ACTIONS(1413), + [anon_sym_mut] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [aux_sym_cmd_identifier_token1] = ACTIONS(1413), + [aux_sym_cmd_identifier_token2] = ACTIONS(1413), + [aux_sym_cmd_identifier_token3] = ACTIONS(1413), + [aux_sym_cmd_identifier_token4] = ACTIONS(1413), + [aux_sym_cmd_identifier_token5] = ACTIONS(1413), + [aux_sym_cmd_identifier_token6] = ACTIONS(1413), + [aux_sym_cmd_identifier_token7] = ACTIONS(1413), + [aux_sym_cmd_identifier_token8] = ACTIONS(1413), + [aux_sym_cmd_identifier_token9] = ACTIONS(1413), + [aux_sym_cmd_identifier_token10] = ACTIONS(1413), + [aux_sym_cmd_identifier_token11] = ACTIONS(1413), + [aux_sym_cmd_identifier_token12] = ACTIONS(1413), + [aux_sym_cmd_identifier_token13] = ACTIONS(1413), + [aux_sym_cmd_identifier_token14] = ACTIONS(1413), + [aux_sym_cmd_identifier_token15] = ACTIONS(1413), + [aux_sym_cmd_identifier_token16] = ACTIONS(1413), + [aux_sym_cmd_identifier_token17] = ACTIONS(1413), + [aux_sym_cmd_identifier_token18] = ACTIONS(1413), + [aux_sym_cmd_identifier_token19] = ACTIONS(1413), + [aux_sym_cmd_identifier_token20] = ACTIONS(1413), + [aux_sym_cmd_identifier_token21] = ACTIONS(1413), + [aux_sym_cmd_identifier_token22] = ACTIONS(1413), + [aux_sym_cmd_identifier_token23] = ACTIONS(1413), + [aux_sym_cmd_identifier_token24] = ACTIONS(1413), + [aux_sym_cmd_identifier_token25] = ACTIONS(1413), + [aux_sym_cmd_identifier_token26] = ACTIONS(1413), + [aux_sym_cmd_identifier_token27] = ACTIONS(1413), + [aux_sym_cmd_identifier_token28] = ACTIONS(1413), + [aux_sym_cmd_identifier_token29] = ACTIONS(1413), + [aux_sym_cmd_identifier_token30] = ACTIONS(1413), + [aux_sym_cmd_identifier_token31] = ACTIONS(1413), + [aux_sym_cmd_identifier_token32] = ACTIONS(1413), + [aux_sym_cmd_identifier_token33] = ACTIONS(1413), + [aux_sym_cmd_identifier_token34] = ACTIONS(1413), + [aux_sym_cmd_identifier_token35] = ACTIONS(1413), + [aux_sym_cmd_identifier_token36] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [aux_sym_cmd_identifier_token38] = ACTIONS(1413), + [aux_sym_cmd_identifier_token39] = ACTIONS(1427), + [aux_sym_cmd_identifier_token40] = ACTIONS(1427), + [anon_sym_def] = ACTIONS(1413), + [anon_sym_export_DASHenv] = ACTIONS(1413), + [anon_sym_extern] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_use] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_DOLLAR] = ACTIONS(1459), + [anon_sym_error] = ACTIONS(1413), + [anon_sym_list] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_in] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1413), + [anon_sym_make] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_try] = ACTIONS(1413), + [anon_sym_catch] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_source] = ACTIONS(1413), + [anon_sym_source_DASHenv] = ACTIONS(1413), + [anon_sym_register] = ACTIONS(1413), + [anon_sym_hide] = ACTIONS(1413), + [anon_sym_hide_DASHenv] = ACTIONS(1413), + [anon_sym_overlay] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1413), + [anon_sym_LPAREN2] = ACTIONS(1461), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1463), + [aux_sym__immediate_decimal_token1] = ACTIONS(1465), + [aux_sym__immediate_decimal_token3] = ACTIONS(1467), + [aux_sym__immediate_decimal_token4] = ACTIONS(1469), + [aux_sym__immediate_decimal_token5] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1427), + [aux_sym__val_number_decimal_token1] = ACTIONS(1413), + [aux_sym__val_number_decimal_token2] = ACTIONS(1413), + [aux_sym__val_number_decimal_token3] = ACTIONS(1413), + [aux_sym__val_number_decimal_token4] = ACTIONS(1413), + [aux_sym__val_number_token1] = ACTIONS(1427), + [aux_sym__val_number_token2] = ACTIONS(1427), + [aux_sym__val_number_token3] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym__str_single_quotes] = ACTIONS(1427), + [sym__str_back_ticks] = ACTIONS(1427), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1413), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), }, [194] = { - [sym__expr_parenthesized_immediate] = STATE(532), - [sym__immediate_decimal] = STATE(533), - [sym_val_variable] = STATE(532), [sym_comment] = STATE(194), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_alias] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_let_DASHenv] = ACTIONS(1482), - [anon_sym_mut] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [aux_sym_cmd_identifier_token1] = ACTIONS(1482), - [aux_sym_cmd_identifier_token2] = ACTIONS(1482), - [aux_sym_cmd_identifier_token3] = ACTIONS(1482), - [aux_sym_cmd_identifier_token4] = ACTIONS(1482), - [aux_sym_cmd_identifier_token5] = ACTIONS(1482), - [aux_sym_cmd_identifier_token6] = ACTIONS(1482), - [aux_sym_cmd_identifier_token7] = ACTIONS(1482), - [aux_sym_cmd_identifier_token8] = ACTIONS(1482), - [aux_sym_cmd_identifier_token9] = ACTIONS(1482), - [aux_sym_cmd_identifier_token10] = ACTIONS(1482), - [aux_sym_cmd_identifier_token11] = ACTIONS(1482), - [aux_sym_cmd_identifier_token12] = ACTIONS(1482), - [aux_sym_cmd_identifier_token13] = ACTIONS(1482), - [aux_sym_cmd_identifier_token14] = ACTIONS(1482), - [aux_sym_cmd_identifier_token15] = ACTIONS(1482), - [aux_sym_cmd_identifier_token16] = ACTIONS(1482), - [aux_sym_cmd_identifier_token17] = ACTIONS(1482), - [aux_sym_cmd_identifier_token18] = ACTIONS(1482), - [aux_sym_cmd_identifier_token19] = ACTIONS(1482), - [aux_sym_cmd_identifier_token20] = ACTIONS(1482), - [aux_sym_cmd_identifier_token21] = ACTIONS(1482), - [aux_sym_cmd_identifier_token22] = ACTIONS(1482), - [aux_sym_cmd_identifier_token23] = ACTIONS(1482), - [aux_sym_cmd_identifier_token24] = ACTIONS(1482), - [aux_sym_cmd_identifier_token25] = ACTIONS(1482), - [aux_sym_cmd_identifier_token26] = ACTIONS(1482), - [aux_sym_cmd_identifier_token27] = ACTIONS(1482), - [aux_sym_cmd_identifier_token28] = ACTIONS(1482), - [aux_sym_cmd_identifier_token29] = ACTIONS(1482), - [aux_sym_cmd_identifier_token30] = ACTIONS(1482), - [aux_sym_cmd_identifier_token31] = ACTIONS(1482), - [aux_sym_cmd_identifier_token32] = ACTIONS(1482), - [aux_sym_cmd_identifier_token33] = ACTIONS(1482), - [aux_sym_cmd_identifier_token34] = ACTIONS(1482), - [aux_sym_cmd_identifier_token35] = ACTIONS(1482), - [aux_sym_cmd_identifier_token36] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1482), - [aux_sym_cmd_identifier_token38] = ACTIONS(1482), - [aux_sym_cmd_identifier_token39] = ACTIONS(1482), - [aux_sym_cmd_identifier_token40] = ACTIONS(1482), - [anon_sym_def] = ACTIONS(1482), - [anon_sym_export_DASHenv] = ACTIONS(1482), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1482), - [anon_sym_list] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_in] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_make] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_else] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [anon_sym_catch] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_source] = ACTIONS(1482), - [anon_sym_source_DASHenv] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(1482), - [anon_sym_hide] = ACTIONS(1482), - [anon_sym_hide_DASHenv] = ACTIONS(1482), - [anon_sym_overlay] = ACTIONS(1482), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_as] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1482), - [anon_sym_DOT] = ACTIONS(1464), - [aux_sym__immediate_decimal_token1] = ACTIONS(1466), - [aux_sym__immediate_decimal_token3] = ACTIONS(1466), - [aux_sym__immediate_decimal_token4] = ACTIONS(1468), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1482), - [aux_sym__val_number_decimal_token1] = ACTIONS(1482), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [anon_sym_DOT2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(1482), - [aux_sym__val_number_token2] = ACTIONS(1482), - [aux_sym__val_number_token3] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym__str_single_quotes] = ACTIONS(1482), - [sym__str_back_ticks] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1482), - [sym__entry_separator] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token3] = ACTIONS(1473), + [aux_sym_cmd_identifier_token4] = ACTIONS(1473), + [aux_sym_cmd_identifier_token5] = ACTIONS(1473), + [aux_sym_cmd_identifier_token6] = ACTIONS(1473), + [aux_sym_cmd_identifier_token7] = ACTIONS(1473), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1473), + [aux_sym_cmd_identifier_token11] = ACTIONS(1473), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1473), + [aux_sym_cmd_identifier_token17] = ACTIONS(1473), + [aux_sym_cmd_identifier_token18] = ACTIONS(1473), + [aux_sym_cmd_identifier_token19] = ACTIONS(1473), + [aux_sym_cmd_identifier_token20] = ACTIONS(1473), + [aux_sym_cmd_identifier_token21] = ACTIONS(1473), + [aux_sym_cmd_identifier_token22] = ACTIONS(1473), + [aux_sym_cmd_identifier_token23] = ACTIONS(1473), + [aux_sym_cmd_identifier_token24] = ACTIONS(1473), + [aux_sym_cmd_identifier_token25] = ACTIONS(1473), + [aux_sym_cmd_identifier_token26] = ACTIONS(1473), + [aux_sym_cmd_identifier_token27] = ACTIONS(1473), + [aux_sym_cmd_identifier_token28] = ACTIONS(1473), + [aux_sym_cmd_identifier_token29] = ACTIONS(1473), + [aux_sym_cmd_identifier_token30] = ACTIONS(1473), + [aux_sym_cmd_identifier_token31] = ACTIONS(1473), + [aux_sym_cmd_identifier_token32] = ACTIONS(1473), + [aux_sym_cmd_identifier_token33] = ACTIONS(1473), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1473), + [aux_sym_cmd_identifier_token36] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1473), + [aux_sym_cmd_identifier_token40] = ACTIONS(1473), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_list] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_new] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1473), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1473), + [aux_sym__val_number_decimal_token4] = ACTIONS(1473), + [aux_sym__val_number_token1] = ACTIONS(1473), + [aux_sym__val_number_token2] = ACTIONS(1473), + [aux_sym__val_number_token3] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1473), + [sym_duration_unit] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym__str_single_quotes] = ACTIONS(1473), + [sym__str_back_ticks] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1473), + [sym__entry_separator] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1473), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(3), }, [195] = { - [sym__expr_parenthesized_immediate] = STATE(536), - [sym__immediate_decimal] = STATE(537), - [sym_val_variable] = STATE(536), + [sym__expr_parenthesized_immediate] = STATE(575), + [sym__immediate_decimal] = STATE(434), + [sym_val_variable] = STATE(575), [sym_comment] = STATE(195), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_alias] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_let_DASHenv] = ACTIONS(1486), - [anon_sym_mut] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [aux_sym_cmd_identifier_token1] = ACTIONS(1486), - [aux_sym_cmd_identifier_token2] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [aux_sym_cmd_identifier_token6] = ACTIONS(1486), - [aux_sym_cmd_identifier_token7] = ACTIONS(1486), - [aux_sym_cmd_identifier_token8] = ACTIONS(1486), - [aux_sym_cmd_identifier_token9] = ACTIONS(1486), - [aux_sym_cmd_identifier_token10] = ACTIONS(1486), - [aux_sym_cmd_identifier_token11] = ACTIONS(1486), - [aux_sym_cmd_identifier_token12] = ACTIONS(1486), - [aux_sym_cmd_identifier_token13] = ACTIONS(1486), - [aux_sym_cmd_identifier_token14] = ACTIONS(1486), - [aux_sym_cmd_identifier_token15] = ACTIONS(1486), - [aux_sym_cmd_identifier_token16] = ACTIONS(1486), - [aux_sym_cmd_identifier_token17] = ACTIONS(1486), - [aux_sym_cmd_identifier_token18] = ACTIONS(1486), - [aux_sym_cmd_identifier_token19] = ACTIONS(1486), - [aux_sym_cmd_identifier_token20] = ACTIONS(1486), - [aux_sym_cmd_identifier_token21] = ACTIONS(1486), - [aux_sym_cmd_identifier_token22] = ACTIONS(1486), - [aux_sym_cmd_identifier_token23] = ACTIONS(1486), - [aux_sym_cmd_identifier_token24] = ACTIONS(1486), - [aux_sym_cmd_identifier_token25] = ACTIONS(1486), - [aux_sym_cmd_identifier_token26] = ACTIONS(1486), - [aux_sym_cmd_identifier_token27] = ACTIONS(1486), - [aux_sym_cmd_identifier_token28] = ACTIONS(1486), - [aux_sym_cmd_identifier_token29] = ACTIONS(1486), - [aux_sym_cmd_identifier_token30] = ACTIONS(1486), - [aux_sym_cmd_identifier_token31] = ACTIONS(1486), - [aux_sym_cmd_identifier_token32] = ACTIONS(1486), - [aux_sym_cmd_identifier_token33] = ACTIONS(1486), - [aux_sym_cmd_identifier_token34] = ACTIONS(1486), - [aux_sym_cmd_identifier_token35] = ACTIONS(1486), - [aux_sym_cmd_identifier_token36] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1486), - [aux_sym_cmd_identifier_token38] = ACTIONS(1486), - [aux_sym_cmd_identifier_token39] = ACTIONS(1486), - [aux_sym_cmd_identifier_token40] = ACTIONS(1486), - [anon_sym_def] = ACTIONS(1486), - [anon_sym_export_DASHenv] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_error] = ACTIONS(1486), - [anon_sym_list] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_make] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_catch] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_source] = ACTIONS(1486), - [anon_sym_source_DASHenv] = ACTIONS(1486), - [anon_sym_register] = ACTIONS(1486), - [anon_sym_hide] = ACTIONS(1486), - [anon_sym_hide_DASHenv] = ACTIONS(1486), - [anon_sym_overlay] = ACTIONS(1486), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1486), - [anon_sym_DOT] = ACTIONS(1464), - [aux_sym__immediate_decimal_token1] = ACTIONS(1466), - [aux_sym__immediate_decimal_token3] = ACTIONS(1466), - [aux_sym__immediate_decimal_token4] = ACTIONS(1468), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1486), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [anon_sym_DOT2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1486), - [sym__entry_separator] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_alias] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_let_DASHenv] = ACTIONS(1413), + [anon_sym_mut] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [aux_sym_cmd_identifier_token1] = ACTIONS(1413), + [aux_sym_cmd_identifier_token2] = ACTIONS(1413), + [aux_sym_cmd_identifier_token3] = ACTIONS(1413), + [aux_sym_cmd_identifier_token4] = ACTIONS(1413), + [aux_sym_cmd_identifier_token5] = ACTIONS(1413), + [aux_sym_cmd_identifier_token6] = ACTIONS(1413), + [aux_sym_cmd_identifier_token7] = ACTIONS(1413), + [aux_sym_cmd_identifier_token8] = ACTIONS(1413), + [aux_sym_cmd_identifier_token9] = ACTIONS(1413), + [aux_sym_cmd_identifier_token10] = ACTIONS(1413), + [aux_sym_cmd_identifier_token11] = ACTIONS(1413), + [aux_sym_cmd_identifier_token12] = ACTIONS(1413), + [aux_sym_cmd_identifier_token13] = ACTIONS(1413), + [aux_sym_cmd_identifier_token14] = ACTIONS(1413), + [aux_sym_cmd_identifier_token15] = ACTIONS(1413), + [aux_sym_cmd_identifier_token16] = ACTIONS(1413), + [aux_sym_cmd_identifier_token17] = ACTIONS(1413), + [aux_sym_cmd_identifier_token18] = ACTIONS(1413), + [aux_sym_cmd_identifier_token19] = ACTIONS(1413), + [aux_sym_cmd_identifier_token20] = ACTIONS(1413), + [aux_sym_cmd_identifier_token21] = ACTIONS(1413), + [aux_sym_cmd_identifier_token22] = ACTIONS(1413), + [aux_sym_cmd_identifier_token23] = ACTIONS(1413), + [aux_sym_cmd_identifier_token24] = ACTIONS(1413), + [aux_sym_cmd_identifier_token25] = ACTIONS(1413), + [aux_sym_cmd_identifier_token26] = ACTIONS(1413), + [aux_sym_cmd_identifier_token27] = ACTIONS(1413), + [aux_sym_cmd_identifier_token28] = ACTIONS(1413), + [aux_sym_cmd_identifier_token29] = ACTIONS(1413), + [aux_sym_cmd_identifier_token30] = ACTIONS(1413), + [aux_sym_cmd_identifier_token31] = ACTIONS(1413), + [aux_sym_cmd_identifier_token32] = ACTIONS(1413), + [aux_sym_cmd_identifier_token33] = ACTIONS(1413), + [aux_sym_cmd_identifier_token34] = ACTIONS(1413), + [aux_sym_cmd_identifier_token35] = ACTIONS(1413), + [aux_sym_cmd_identifier_token36] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [aux_sym_cmd_identifier_token38] = ACTIONS(1413), + [aux_sym_cmd_identifier_token39] = ACTIONS(1413), + [aux_sym_cmd_identifier_token40] = ACTIONS(1413), + [anon_sym_def] = ACTIONS(1413), + [anon_sym_export_DASHenv] = ACTIONS(1413), + [anon_sym_extern] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_use] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1413), + [anon_sym_list] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_in] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1413), + [anon_sym_make] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_try] = ACTIONS(1413), + [anon_sym_catch] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_source] = ACTIONS(1413), + [anon_sym_source_DASHenv] = ACTIONS(1413), + [anon_sym_register] = ACTIONS(1413), + [anon_sym_hide] = ACTIONS(1413), + [anon_sym_hide_DASHenv] = ACTIONS(1413), + [anon_sym_overlay] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1413), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1413), + [aux_sym__immediate_decimal_token1] = ACTIONS(1449), + [aux_sym__immediate_decimal_token3] = ACTIONS(1449), + [aux_sym__immediate_decimal_token4] = ACTIONS(1451), + [aux_sym__immediate_decimal_token5] = ACTIONS(1453), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1413), + [aux_sym__val_number_decimal_token1] = ACTIONS(1413), + [aux_sym__val_number_decimal_token2] = ACTIONS(1413), + [aux_sym__val_number_decimal_token3] = ACTIONS(1413), + [aux_sym__val_number_decimal_token4] = ACTIONS(1413), + [aux_sym__val_number_token1] = ACTIONS(1413), + [aux_sym__val_number_token2] = ACTIONS(1413), + [aux_sym__val_number_token3] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym__str_single_quotes] = ACTIONS(1413), + [sym__str_back_ticks] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1413), + [sym__entry_separator] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1413), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(3), }, [196] = { - [sym__expr_parenthesized_immediate] = STATE(618), - [sym__immediate_decimal] = STATE(423), - [sym_val_variable] = STATE(618), [sym_comment] = STATE(196), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1350), - [aux_sym_cmd_identifier_token2] = ACTIONS(1350), - [aux_sym_cmd_identifier_token3] = ACTIONS(1350), - [aux_sym_cmd_identifier_token4] = ACTIONS(1350), - [aux_sym_cmd_identifier_token5] = ACTIONS(1350), - [aux_sym_cmd_identifier_token6] = ACTIONS(1350), - [aux_sym_cmd_identifier_token7] = ACTIONS(1350), - [aux_sym_cmd_identifier_token8] = ACTIONS(1350), - [aux_sym_cmd_identifier_token9] = ACTIONS(1350), - [aux_sym_cmd_identifier_token10] = ACTIONS(1350), - [aux_sym_cmd_identifier_token11] = ACTIONS(1350), - [aux_sym_cmd_identifier_token12] = ACTIONS(1350), - [aux_sym_cmd_identifier_token13] = ACTIONS(1350), - [aux_sym_cmd_identifier_token14] = ACTIONS(1350), - [aux_sym_cmd_identifier_token15] = ACTIONS(1350), - [aux_sym_cmd_identifier_token16] = ACTIONS(1350), - [aux_sym_cmd_identifier_token17] = ACTIONS(1350), - [aux_sym_cmd_identifier_token18] = ACTIONS(1350), - [aux_sym_cmd_identifier_token19] = ACTIONS(1350), - [aux_sym_cmd_identifier_token20] = ACTIONS(1350), - [aux_sym_cmd_identifier_token21] = ACTIONS(1350), - [aux_sym_cmd_identifier_token22] = ACTIONS(1350), - [aux_sym_cmd_identifier_token23] = ACTIONS(1350), - [aux_sym_cmd_identifier_token24] = ACTIONS(1350), - [aux_sym_cmd_identifier_token25] = ACTIONS(1350), - [aux_sym_cmd_identifier_token26] = ACTIONS(1350), - [aux_sym_cmd_identifier_token27] = ACTIONS(1350), - [aux_sym_cmd_identifier_token28] = ACTIONS(1350), - [aux_sym_cmd_identifier_token29] = ACTIONS(1350), - [aux_sym_cmd_identifier_token30] = ACTIONS(1350), - [aux_sym_cmd_identifier_token31] = ACTIONS(1350), - [aux_sym_cmd_identifier_token32] = ACTIONS(1350), - [aux_sym_cmd_identifier_token33] = ACTIONS(1350), - [aux_sym_cmd_identifier_token34] = ACTIONS(1350), - [aux_sym_cmd_identifier_token35] = ACTIONS(1350), - [aux_sym_cmd_identifier_token36] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [aux_sym_cmd_identifier_token38] = ACTIONS(1350), - [aux_sym_cmd_identifier_token39] = ACTIONS(1362), - [aux_sym_cmd_identifier_token40] = ACTIONS(1362), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1490), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1494), - [aux_sym__immediate_decimal_token1] = ACTIONS(1496), - [aux_sym__immediate_decimal_token3] = ACTIONS(1498), - [aux_sym__immediate_decimal_token4] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1362), - [aux_sym__unquoted_in_record_token5] = ACTIONS(1394), + [anon_sym_export] = ACTIONS(1481), + [anon_sym_alias] = ACTIONS(1481), + [anon_sym_let] = ACTIONS(1481), + [anon_sym_let_DASHenv] = ACTIONS(1481), + [anon_sym_mut] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [aux_sym_cmd_identifier_token1] = ACTIONS(1481), + [aux_sym_cmd_identifier_token2] = ACTIONS(1481), + [aux_sym_cmd_identifier_token3] = ACTIONS(1481), + [aux_sym_cmd_identifier_token4] = ACTIONS(1481), + [aux_sym_cmd_identifier_token5] = ACTIONS(1481), + [aux_sym_cmd_identifier_token6] = ACTIONS(1481), + [aux_sym_cmd_identifier_token7] = ACTIONS(1481), + [aux_sym_cmd_identifier_token8] = ACTIONS(1481), + [aux_sym_cmd_identifier_token9] = ACTIONS(1481), + [aux_sym_cmd_identifier_token10] = ACTIONS(1481), + [aux_sym_cmd_identifier_token11] = ACTIONS(1481), + [aux_sym_cmd_identifier_token12] = ACTIONS(1481), + [aux_sym_cmd_identifier_token13] = ACTIONS(1481), + [aux_sym_cmd_identifier_token14] = ACTIONS(1481), + [aux_sym_cmd_identifier_token15] = ACTIONS(1481), + [aux_sym_cmd_identifier_token16] = ACTIONS(1481), + [aux_sym_cmd_identifier_token17] = ACTIONS(1481), + [aux_sym_cmd_identifier_token18] = ACTIONS(1481), + [aux_sym_cmd_identifier_token19] = ACTIONS(1481), + [aux_sym_cmd_identifier_token20] = ACTIONS(1481), + [aux_sym_cmd_identifier_token21] = ACTIONS(1481), + [aux_sym_cmd_identifier_token22] = ACTIONS(1481), + [aux_sym_cmd_identifier_token23] = ACTIONS(1481), + [aux_sym_cmd_identifier_token24] = ACTIONS(1481), + [aux_sym_cmd_identifier_token25] = ACTIONS(1481), + [aux_sym_cmd_identifier_token26] = ACTIONS(1481), + [aux_sym_cmd_identifier_token27] = ACTIONS(1481), + [aux_sym_cmd_identifier_token28] = ACTIONS(1481), + [aux_sym_cmd_identifier_token29] = ACTIONS(1481), + [aux_sym_cmd_identifier_token30] = ACTIONS(1481), + [aux_sym_cmd_identifier_token31] = ACTIONS(1481), + [aux_sym_cmd_identifier_token32] = ACTIONS(1481), + [aux_sym_cmd_identifier_token33] = ACTIONS(1481), + [aux_sym_cmd_identifier_token34] = ACTIONS(1481), + [aux_sym_cmd_identifier_token35] = ACTIONS(1481), + [aux_sym_cmd_identifier_token36] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [aux_sym_cmd_identifier_token38] = ACTIONS(1481), + [aux_sym_cmd_identifier_token39] = ACTIONS(1481), + [aux_sym_cmd_identifier_token40] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_export_DASHenv] = ACTIONS(1481), + [anon_sym_extern] = ACTIONS(1481), + [anon_sym_module] = ACTIONS(1481), + [anon_sym_use] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_error] = ACTIONS(1481), + [anon_sym_list] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_in] = ACTIONS(1481), + [anon_sym_loop] = ACTIONS(1481), + [anon_sym_make] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1481), + [anon_sym_catch] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_source] = ACTIONS(1481), + [anon_sym_source_DASHenv] = ACTIONS(1481), + [anon_sym_register] = ACTIONS(1481), + [anon_sym_hide] = ACTIONS(1481), + [anon_sym_hide_DASHenv] = ACTIONS(1481), + [anon_sym_overlay] = ACTIONS(1481), + [anon_sym_new] = ACTIONS(1481), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(1485), + [aux_sym__immediate_decimal_token2] = ACTIONS(1487), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1481), + [aux_sym__val_number_decimal_token3] = ACTIONS(1481), + [aux_sym__val_number_decimal_token4] = ACTIONS(1481), + [aux_sym__val_number_token1] = ACTIONS(1481), + [aux_sym__val_number_token2] = ACTIONS(1481), + [aux_sym__val_number_token3] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1481), + [sym_duration_unit] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym__str_single_quotes] = ACTIONS(1481), + [sym__str_back_ticks] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1481), + [sym__entry_separator] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1481), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1481), [anon_sym_POUND] = ACTIONS(3), }, [197] = { + [sym__expr_parenthesized_immediate] = STATE(626), + [sym__immediate_decimal] = STATE(524), + [sym_val_variable] = STATE(626), [sym_comment] = STATE(197), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [aux_sym_cmd_identifier_token1] = ACTIONS(1376), - [aux_sym_cmd_identifier_token2] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1376), - [aux_sym_cmd_identifier_token4] = ACTIONS(1376), - [aux_sym_cmd_identifier_token5] = ACTIONS(1376), - [aux_sym_cmd_identifier_token6] = ACTIONS(1376), - [aux_sym_cmd_identifier_token7] = ACTIONS(1376), - [aux_sym_cmd_identifier_token8] = ACTIONS(1376), - [aux_sym_cmd_identifier_token9] = ACTIONS(1376), - [aux_sym_cmd_identifier_token10] = ACTIONS(1376), - [aux_sym_cmd_identifier_token11] = ACTIONS(1376), - [aux_sym_cmd_identifier_token12] = ACTIONS(1376), - [aux_sym_cmd_identifier_token13] = ACTIONS(1376), - [aux_sym_cmd_identifier_token14] = ACTIONS(1376), - [aux_sym_cmd_identifier_token15] = ACTIONS(1376), - [aux_sym_cmd_identifier_token16] = ACTIONS(1376), - [aux_sym_cmd_identifier_token17] = ACTIONS(1376), - [aux_sym_cmd_identifier_token18] = ACTIONS(1376), - [aux_sym_cmd_identifier_token19] = ACTIONS(1376), - [aux_sym_cmd_identifier_token20] = ACTIONS(1376), - [aux_sym_cmd_identifier_token21] = ACTIONS(1376), - [aux_sym_cmd_identifier_token22] = ACTIONS(1376), - [aux_sym_cmd_identifier_token23] = ACTIONS(1376), - [aux_sym_cmd_identifier_token24] = ACTIONS(1376), - [aux_sym_cmd_identifier_token25] = ACTIONS(1376), - [aux_sym_cmd_identifier_token26] = ACTIONS(1376), - [aux_sym_cmd_identifier_token27] = ACTIONS(1376), - [aux_sym_cmd_identifier_token28] = ACTIONS(1376), - [aux_sym_cmd_identifier_token29] = ACTIONS(1376), - [aux_sym_cmd_identifier_token30] = ACTIONS(1376), - [aux_sym_cmd_identifier_token31] = ACTIONS(1376), - [aux_sym_cmd_identifier_token32] = ACTIONS(1376), - [aux_sym_cmd_identifier_token33] = ACTIONS(1376), - [aux_sym_cmd_identifier_token34] = ACTIONS(1376), - [aux_sym_cmd_identifier_token35] = ACTIONS(1376), - [aux_sym_cmd_identifier_token36] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token38] = ACTIONS(1376), - [aux_sym_cmd_identifier_token39] = ACTIONS(1376), - [aux_sym_cmd_identifier_token40] = ACTIONS(1376), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1376), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1376), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1376), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1376), - [aux_sym__val_number_token1] = ACTIONS(1376), - [aux_sym__val_number_token2] = ACTIONS(1376), - [aux_sym__val_number_token3] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym__str_single_quotes] = ACTIONS(1376), - [sym__str_back_ticks] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1376), - [sym__entry_separator] = ACTIONS(1378), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1443), + [anon_sym_alias] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_let_DASHenv] = ACTIONS(1443), + [anon_sym_mut] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [aux_sym_cmd_identifier_token1] = ACTIONS(1443), + [aux_sym_cmd_identifier_token2] = ACTIONS(1443), + [aux_sym_cmd_identifier_token3] = ACTIONS(1443), + [aux_sym_cmd_identifier_token4] = ACTIONS(1443), + [aux_sym_cmd_identifier_token5] = ACTIONS(1443), + [aux_sym_cmd_identifier_token6] = ACTIONS(1443), + [aux_sym_cmd_identifier_token7] = ACTIONS(1443), + [aux_sym_cmd_identifier_token8] = ACTIONS(1443), + [aux_sym_cmd_identifier_token9] = ACTIONS(1443), + [aux_sym_cmd_identifier_token10] = ACTIONS(1443), + [aux_sym_cmd_identifier_token11] = ACTIONS(1443), + [aux_sym_cmd_identifier_token12] = ACTIONS(1443), + [aux_sym_cmd_identifier_token13] = ACTIONS(1443), + [aux_sym_cmd_identifier_token14] = ACTIONS(1443), + [aux_sym_cmd_identifier_token15] = ACTIONS(1443), + [aux_sym_cmd_identifier_token16] = ACTIONS(1443), + [aux_sym_cmd_identifier_token17] = ACTIONS(1443), + [aux_sym_cmd_identifier_token18] = ACTIONS(1443), + [aux_sym_cmd_identifier_token19] = ACTIONS(1443), + [aux_sym_cmd_identifier_token20] = ACTIONS(1443), + [aux_sym_cmd_identifier_token21] = ACTIONS(1443), + [aux_sym_cmd_identifier_token22] = ACTIONS(1443), + [aux_sym_cmd_identifier_token23] = ACTIONS(1443), + [aux_sym_cmd_identifier_token24] = ACTIONS(1443), + [aux_sym_cmd_identifier_token25] = ACTIONS(1443), + [aux_sym_cmd_identifier_token26] = ACTIONS(1443), + [aux_sym_cmd_identifier_token27] = ACTIONS(1443), + [aux_sym_cmd_identifier_token28] = ACTIONS(1443), + [aux_sym_cmd_identifier_token29] = ACTIONS(1443), + [aux_sym_cmd_identifier_token30] = ACTIONS(1443), + [aux_sym_cmd_identifier_token31] = ACTIONS(1443), + [aux_sym_cmd_identifier_token32] = ACTIONS(1443), + [aux_sym_cmd_identifier_token33] = ACTIONS(1443), + [aux_sym_cmd_identifier_token34] = ACTIONS(1443), + [aux_sym_cmd_identifier_token35] = ACTIONS(1443), + [aux_sym_cmd_identifier_token36] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1443), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [anon_sym_def] = ACTIONS(1443), + [anon_sym_export_DASHenv] = ACTIONS(1443), + [anon_sym_extern] = ACTIONS(1443), + [anon_sym_module] = ACTIONS(1443), + [anon_sym_use] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1443), + [anon_sym_list] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_in] = ACTIONS(1443), + [anon_sym_loop] = ACTIONS(1443), + [anon_sym_make] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_do] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1443), + [anon_sym_catch] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_source] = ACTIONS(1443), + [anon_sym_source_DASHenv] = ACTIONS(1443), + [anon_sym_register] = ACTIONS(1443), + [anon_sym_hide] = ACTIONS(1443), + [anon_sym_hide_DASHenv] = ACTIONS(1443), + [anon_sym_overlay] = ACTIONS(1443), + [anon_sym_new] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_LPAREN2] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(1493), + [aux_sym__immediate_decimal_token3] = ACTIONS(1495), + [aux_sym__immediate_decimal_token4] = ACTIONS(1497), + [aux_sym__immediate_decimal_token5] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1443), + [aux_sym__val_number_decimal_token2] = ACTIONS(1443), + [aux_sym__val_number_decimal_token3] = ACTIONS(1443), + [aux_sym__val_number_decimal_token4] = ACTIONS(1443), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1443), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), }, [198] = { - [sym__expr_parenthesized_immediate] = STATE(426), - [sym__immediate_decimal] = STATE(244), - [sym_val_variable] = STATE(426), + [sym__expr_parenthesized_immediate] = STATE(583), + [sym__immediate_decimal] = STATE(584), + [sym_val_variable] = STATE(583), [sym_comment] = STATE(198), - [anon_sym_export] = ACTIONS(1404), - [anon_sym_alias] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_let_DASHenv] = ACTIONS(1404), - [anon_sym_mut] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [aux_sym_cmd_identifier_token1] = ACTIONS(1404), - [aux_sym_cmd_identifier_token2] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1404), - [aux_sym_cmd_identifier_token4] = ACTIONS(1404), - [aux_sym_cmd_identifier_token5] = ACTIONS(1404), - [aux_sym_cmd_identifier_token6] = ACTIONS(1404), - [aux_sym_cmd_identifier_token7] = ACTIONS(1404), - [aux_sym_cmd_identifier_token8] = ACTIONS(1404), - [aux_sym_cmd_identifier_token9] = ACTIONS(1404), - [aux_sym_cmd_identifier_token10] = ACTIONS(1404), - [aux_sym_cmd_identifier_token11] = ACTIONS(1404), - [aux_sym_cmd_identifier_token12] = ACTIONS(1404), - [aux_sym_cmd_identifier_token13] = ACTIONS(1404), - [aux_sym_cmd_identifier_token14] = ACTIONS(1404), - [aux_sym_cmd_identifier_token15] = ACTIONS(1404), - [aux_sym_cmd_identifier_token16] = ACTIONS(1404), - [aux_sym_cmd_identifier_token17] = ACTIONS(1404), - [aux_sym_cmd_identifier_token18] = ACTIONS(1404), - [aux_sym_cmd_identifier_token19] = ACTIONS(1404), - [aux_sym_cmd_identifier_token20] = ACTIONS(1404), - [aux_sym_cmd_identifier_token21] = ACTIONS(1404), - [aux_sym_cmd_identifier_token22] = ACTIONS(1404), - [aux_sym_cmd_identifier_token23] = ACTIONS(1404), - [aux_sym_cmd_identifier_token24] = ACTIONS(1404), - [aux_sym_cmd_identifier_token25] = ACTIONS(1404), - [aux_sym_cmd_identifier_token26] = ACTIONS(1404), - [aux_sym_cmd_identifier_token27] = ACTIONS(1404), - [aux_sym_cmd_identifier_token28] = ACTIONS(1404), - [aux_sym_cmd_identifier_token29] = ACTIONS(1404), - [aux_sym_cmd_identifier_token30] = ACTIONS(1404), - [aux_sym_cmd_identifier_token31] = ACTIONS(1404), - [aux_sym_cmd_identifier_token32] = ACTIONS(1404), - [aux_sym_cmd_identifier_token33] = ACTIONS(1404), - [aux_sym_cmd_identifier_token34] = ACTIONS(1404), - [aux_sym_cmd_identifier_token35] = ACTIONS(1404), - [aux_sym_cmd_identifier_token36] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1416), - [aux_sym_cmd_identifier_token38] = ACTIONS(1404), - [aux_sym_cmd_identifier_token39] = ACTIONS(1416), - [aux_sym_cmd_identifier_token40] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1404), - [anon_sym_export_DASHenv] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_module] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(1382), - [anon_sym_error] = ACTIONS(1404), - [anon_sym_list] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_in] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_make] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_do] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_else] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_try] = ACTIONS(1404), - [anon_sym_catch] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_source] = ACTIONS(1404), - [anon_sym_source_DASHenv] = ACTIONS(1404), - [anon_sym_register] = ACTIONS(1404), - [anon_sym_hide] = ACTIONS(1404), - [anon_sym_hide_DASHenv] = ACTIONS(1404), - [anon_sym_overlay] = ACTIONS(1404), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_as] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1416), - [anon_sym_DOT] = ACTIONS(1502), - [aux_sym__immediate_decimal_token1] = ACTIONS(1388), - [aux_sym__immediate_decimal_token3] = ACTIONS(1390), - [aux_sym__immediate_decimal_token4] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1416), - [aux_sym__val_number_decimal_token1] = ACTIONS(1404), - [aux_sym__val_number_decimal_token2] = ACTIONS(1404), - [anon_sym_DOT2] = ACTIONS(1404), - [aux_sym__val_number_decimal_token3] = ACTIONS(1404), - [aux_sym__val_number_token1] = ACTIONS(1416), - [aux_sym__val_number_token2] = ACTIONS(1416), - [aux_sym__val_number_token3] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym__str_single_quotes] = ACTIONS(1416), - [sym__str_back_ticks] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1416), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1418), + [anon_sym_export] = ACTIONS(1501), + [anon_sym_alias] = ACTIONS(1501), + [anon_sym_let] = ACTIONS(1501), + [anon_sym_let_DASHenv] = ACTIONS(1501), + [anon_sym_mut] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [aux_sym_cmd_identifier_token1] = ACTIONS(1501), + [aux_sym_cmd_identifier_token2] = ACTIONS(1501), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [aux_sym_cmd_identifier_token6] = ACTIONS(1501), + [aux_sym_cmd_identifier_token7] = ACTIONS(1501), + [aux_sym_cmd_identifier_token8] = ACTIONS(1501), + [aux_sym_cmd_identifier_token9] = ACTIONS(1501), + [aux_sym_cmd_identifier_token10] = ACTIONS(1501), + [aux_sym_cmd_identifier_token11] = ACTIONS(1501), + [aux_sym_cmd_identifier_token12] = ACTIONS(1501), + [aux_sym_cmd_identifier_token13] = ACTIONS(1501), + [aux_sym_cmd_identifier_token14] = ACTIONS(1501), + [aux_sym_cmd_identifier_token15] = ACTIONS(1501), + [aux_sym_cmd_identifier_token16] = ACTIONS(1501), + [aux_sym_cmd_identifier_token17] = ACTIONS(1501), + [aux_sym_cmd_identifier_token18] = ACTIONS(1501), + [aux_sym_cmd_identifier_token19] = ACTIONS(1501), + [aux_sym_cmd_identifier_token20] = ACTIONS(1501), + [aux_sym_cmd_identifier_token21] = ACTIONS(1501), + [aux_sym_cmd_identifier_token22] = ACTIONS(1501), + [aux_sym_cmd_identifier_token23] = ACTIONS(1501), + [aux_sym_cmd_identifier_token24] = ACTIONS(1501), + [aux_sym_cmd_identifier_token25] = ACTIONS(1501), + [aux_sym_cmd_identifier_token26] = ACTIONS(1501), + [aux_sym_cmd_identifier_token27] = ACTIONS(1501), + [aux_sym_cmd_identifier_token28] = ACTIONS(1501), + [aux_sym_cmd_identifier_token29] = ACTIONS(1501), + [aux_sym_cmd_identifier_token30] = ACTIONS(1501), + [aux_sym_cmd_identifier_token31] = ACTIONS(1501), + [aux_sym_cmd_identifier_token32] = ACTIONS(1501), + [aux_sym_cmd_identifier_token33] = ACTIONS(1501), + [aux_sym_cmd_identifier_token34] = ACTIONS(1501), + [aux_sym_cmd_identifier_token35] = ACTIONS(1501), + [aux_sym_cmd_identifier_token36] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [aux_sym_cmd_identifier_token38] = ACTIONS(1501), + [aux_sym_cmd_identifier_token39] = ACTIONS(1501), + [aux_sym_cmd_identifier_token40] = ACTIONS(1501), + [anon_sym_def] = ACTIONS(1501), + [anon_sym_export_DASHenv] = ACTIONS(1501), + [anon_sym_extern] = ACTIONS(1501), + [anon_sym_module] = ACTIONS(1501), + [anon_sym_use] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1501), + [anon_sym_list] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_loop] = ACTIONS(1501), + [anon_sym_make] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_else] = ACTIONS(1501), + [anon_sym_match] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1501), + [anon_sym_catch] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_source] = ACTIONS(1501), + [anon_sym_source_DASHenv] = ACTIONS(1501), + [anon_sym_register] = ACTIONS(1501), + [anon_sym_hide] = ACTIONS(1501), + [anon_sym_hide_DASHenv] = ACTIONS(1501), + [anon_sym_overlay] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_as] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1501), + [aux_sym__immediate_decimal_token1] = ACTIONS(1503), + [aux_sym__immediate_decimal_token3] = ACTIONS(1503), + [aux_sym__immediate_decimal_token4] = ACTIONS(1505), + [aux_sym__immediate_decimal_token5] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1501), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1501), + [sym__entry_separator] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, [199] = { - [sym__expr_parenthesized_immediate] = STATE(600), - [sym__immediate_decimal] = STATE(442), - [sym_val_variable] = STATE(600), [sym_comment] = STATE(199), - [anon_sym_export] = ACTIONS(1404), - [anon_sym_alias] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_let_DASHenv] = ACTIONS(1404), - [anon_sym_mut] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [aux_sym_cmd_identifier_token1] = ACTIONS(1404), - [aux_sym_cmd_identifier_token2] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1404), - [aux_sym_cmd_identifier_token4] = ACTIONS(1404), - [aux_sym_cmd_identifier_token5] = ACTIONS(1404), - [aux_sym_cmd_identifier_token6] = ACTIONS(1404), - [aux_sym_cmd_identifier_token7] = ACTIONS(1404), - [aux_sym_cmd_identifier_token8] = ACTIONS(1404), - [aux_sym_cmd_identifier_token9] = ACTIONS(1404), - [aux_sym_cmd_identifier_token10] = ACTIONS(1404), - [aux_sym_cmd_identifier_token11] = ACTIONS(1404), - [aux_sym_cmd_identifier_token12] = ACTIONS(1404), - [aux_sym_cmd_identifier_token13] = ACTIONS(1404), - [aux_sym_cmd_identifier_token14] = ACTIONS(1404), - [aux_sym_cmd_identifier_token15] = ACTIONS(1404), - [aux_sym_cmd_identifier_token16] = ACTIONS(1404), - [aux_sym_cmd_identifier_token17] = ACTIONS(1404), - [aux_sym_cmd_identifier_token18] = ACTIONS(1404), - [aux_sym_cmd_identifier_token19] = ACTIONS(1404), - [aux_sym_cmd_identifier_token20] = ACTIONS(1404), - [aux_sym_cmd_identifier_token21] = ACTIONS(1404), - [aux_sym_cmd_identifier_token22] = ACTIONS(1404), - [aux_sym_cmd_identifier_token23] = ACTIONS(1404), - [aux_sym_cmd_identifier_token24] = ACTIONS(1404), - [aux_sym_cmd_identifier_token25] = ACTIONS(1404), - [aux_sym_cmd_identifier_token26] = ACTIONS(1404), - [aux_sym_cmd_identifier_token27] = ACTIONS(1404), - [aux_sym_cmd_identifier_token28] = ACTIONS(1404), - [aux_sym_cmd_identifier_token29] = ACTIONS(1404), - [aux_sym_cmd_identifier_token30] = ACTIONS(1404), - [aux_sym_cmd_identifier_token31] = ACTIONS(1404), - [aux_sym_cmd_identifier_token32] = ACTIONS(1404), - [aux_sym_cmd_identifier_token33] = ACTIONS(1404), - [aux_sym_cmd_identifier_token34] = ACTIONS(1404), - [aux_sym_cmd_identifier_token35] = ACTIONS(1404), - [aux_sym_cmd_identifier_token36] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1416), - [aux_sym_cmd_identifier_token38] = ACTIONS(1404), - [aux_sym_cmd_identifier_token39] = ACTIONS(1416), - [aux_sym_cmd_identifier_token40] = ACTIONS(1416), - [anon_sym_def] = ACTIONS(1404), - [anon_sym_export_DASHenv] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_module] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(1490), - [anon_sym_error] = ACTIONS(1404), - [anon_sym_list] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_in] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_make] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_do] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_else] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_try] = ACTIONS(1404), - [anon_sym_catch] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_source] = ACTIONS(1404), - [anon_sym_source_DASHenv] = ACTIONS(1404), - [anon_sym_register] = ACTIONS(1404), - [anon_sym_hide] = ACTIONS(1404), - [anon_sym_hide_DASHenv] = ACTIONS(1404), - [anon_sym_overlay] = ACTIONS(1404), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_as] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1416), - [anon_sym_DOT] = ACTIONS(1494), - [aux_sym__immediate_decimal_token1] = ACTIONS(1496), - [aux_sym__immediate_decimal_token3] = ACTIONS(1498), - [aux_sym__immediate_decimal_token4] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1416), - [aux_sym__val_number_decimal_token1] = ACTIONS(1404), - [aux_sym__val_number_decimal_token2] = ACTIONS(1404), - [anon_sym_DOT2] = ACTIONS(1404), - [aux_sym__val_number_decimal_token3] = ACTIONS(1404), - [aux_sym__val_number_token1] = ACTIONS(1416), - [aux_sym__val_number_token2] = ACTIONS(1416), - [aux_sym__val_number_token3] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym__str_single_quotes] = ACTIONS(1416), - [sym__str_back_ticks] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1416), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token3] = ACTIONS(1473), + [aux_sym_cmd_identifier_token4] = ACTIONS(1473), + [aux_sym_cmd_identifier_token5] = ACTIONS(1473), + [aux_sym_cmd_identifier_token6] = ACTIONS(1473), + [aux_sym_cmd_identifier_token7] = ACTIONS(1473), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1473), + [aux_sym_cmd_identifier_token11] = ACTIONS(1473), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1473), + [aux_sym_cmd_identifier_token17] = ACTIONS(1473), + [aux_sym_cmd_identifier_token18] = ACTIONS(1473), + [aux_sym_cmd_identifier_token19] = ACTIONS(1473), + [aux_sym_cmd_identifier_token20] = ACTIONS(1473), + [aux_sym_cmd_identifier_token21] = ACTIONS(1473), + [aux_sym_cmd_identifier_token22] = ACTIONS(1473), + [aux_sym_cmd_identifier_token23] = ACTIONS(1473), + [aux_sym_cmd_identifier_token24] = ACTIONS(1473), + [aux_sym_cmd_identifier_token25] = ACTIONS(1473), + [aux_sym_cmd_identifier_token26] = ACTIONS(1473), + [aux_sym_cmd_identifier_token27] = ACTIONS(1473), + [aux_sym_cmd_identifier_token28] = ACTIONS(1473), + [aux_sym_cmd_identifier_token29] = ACTIONS(1473), + [aux_sym_cmd_identifier_token30] = ACTIONS(1473), + [aux_sym_cmd_identifier_token31] = ACTIONS(1473), + [aux_sym_cmd_identifier_token32] = ACTIONS(1473), + [aux_sym_cmd_identifier_token33] = ACTIONS(1473), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1473), + [aux_sym_cmd_identifier_token36] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_list] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_new] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [sym_filesize_unit] = ACTIONS(1473), + [sym_duration_unit] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1473), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [200] = { - [sym__expr_parenthesized_immediate] = STATE(610), - [sym__immediate_decimal] = STATE(447), - [sym_val_variable] = STATE(610), [sym_comment] = STATE(200), - [anon_sym_export] = ACTIONS(1423), - [anon_sym_alias] = ACTIONS(1423), - [anon_sym_let] = ACTIONS(1423), - [anon_sym_let_DASHenv] = ACTIONS(1423), - [anon_sym_mut] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [aux_sym_cmd_identifier_token1] = ACTIONS(1423), - [aux_sym_cmd_identifier_token2] = ACTIONS(1423), - [aux_sym_cmd_identifier_token3] = ACTIONS(1423), - [aux_sym_cmd_identifier_token4] = ACTIONS(1423), - [aux_sym_cmd_identifier_token5] = ACTIONS(1423), - [aux_sym_cmd_identifier_token6] = ACTIONS(1423), - [aux_sym_cmd_identifier_token7] = ACTIONS(1423), - [aux_sym_cmd_identifier_token8] = ACTIONS(1423), - [aux_sym_cmd_identifier_token9] = ACTIONS(1423), - [aux_sym_cmd_identifier_token10] = ACTIONS(1423), - [aux_sym_cmd_identifier_token11] = ACTIONS(1423), - [aux_sym_cmd_identifier_token12] = ACTIONS(1423), - [aux_sym_cmd_identifier_token13] = ACTIONS(1423), - [aux_sym_cmd_identifier_token14] = ACTIONS(1423), - [aux_sym_cmd_identifier_token15] = ACTIONS(1423), - [aux_sym_cmd_identifier_token16] = ACTIONS(1423), - [aux_sym_cmd_identifier_token17] = ACTIONS(1423), - [aux_sym_cmd_identifier_token18] = ACTIONS(1423), - [aux_sym_cmd_identifier_token19] = ACTIONS(1423), - [aux_sym_cmd_identifier_token20] = ACTIONS(1423), - [aux_sym_cmd_identifier_token21] = ACTIONS(1423), - [aux_sym_cmd_identifier_token22] = ACTIONS(1423), - [aux_sym_cmd_identifier_token23] = ACTIONS(1423), - [aux_sym_cmd_identifier_token24] = ACTIONS(1423), - [aux_sym_cmd_identifier_token25] = ACTIONS(1423), - [aux_sym_cmd_identifier_token26] = ACTIONS(1423), - [aux_sym_cmd_identifier_token27] = ACTIONS(1423), - [aux_sym_cmd_identifier_token28] = ACTIONS(1423), - [aux_sym_cmd_identifier_token29] = ACTIONS(1423), - [aux_sym_cmd_identifier_token30] = ACTIONS(1423), - [aux_sym_cmd_identifier_token31] = ACTIONS(1423), - [aux_sym_cmd_identifier_token32] = ACTIONS(1423), - [aux_sym_cmd_identifier_token33] = ACTIONS(1423), - [aux_sym_cmd_identifier_token34] = ACTIONS(1423), - [aux_sym_cmd_identifier_token35] = ACTIONS(1423), - [aux_sym_cmd_identifier_token36] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_null] = ACTIONS(1425), - [aux_sym_cmd_identifier_token38] = ACTIONS(1423), - [aux_sym_cmd_identifier_token39] = ACTIONS(1425), - [aux_sym_cmd_identifier_token40] = ACTIONS(1425), - [anon_sym_def] = ACTIONS(1423), - [anon_sym_export_DASHenv] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym_module] = ACTIONS(1423), - [anon_sym_use] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_DOLLAR] = ACTIONS(1490), - [anon_sym_error] = ACTIONS(1423), - [anon_sym_list] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_in] = ACTIONS(1423), - [anon_sym_loop] = ACTIONS(1423), - [anon_sym_make] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_else] = ACTIONS(1423), - [anon_sym_match] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_try] = ACTIONS(1423), - [anon_sym_catch] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_source] = ACTIONS(1423), - [anon_sym_source_DASHenv] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_hide] = ACTIONS(1423), - [anon_sym_hide_DASHenv] = ACTIONS(1423), - [anon_sym_overlay] = ACTIONS(1423), - [anon_sym_new] = ACTIONS(1423), - [anon_sym_as] = ACTIONS(1423), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1425), - [anon_sym_DOT] = ACTIONS(1494), - [aux_sym__immediate_decimal_token1] = ACTIONS(1496), - [aux_sym__immediate_decimal_token3] = ACTIONS(1498), - [aux_sym__immediate_decimal_token4] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1425), - [aux_sym__val_number_decimal_token1] = ACTIONS(1423), - [aux_sym__val_number_decimal_token2] = ACTIONS(1423), - [anon_sym_DOT2] = ACTIONS(1423), - [aux_sym__val_number_decimal_token3] = ACTIONS(1423), - [aux_sym__val_number_token1] = ACTIONS(1425), - [aux_sym__val_number_token2] = ACTIONS(1425), - [aux_sym__val_number_token3] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym__str_single_quotes] = ACTIONS(1425), - [sym__str_back_ticks] = ACTIONS(1425), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1425), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1481), + [anon_sym_alias] = ACTIONS(1481), + [anon_sym_let] = ACTIONS(1481), + [anon_sym_let_DASHenv] = ACTIONS(1481), + [anon_sym_mut] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [aux_sym_cmd_identifier_token1] = ACTIONS(1481), + [aux_sym_cmd_identifier_token2] = ACTIONS(1481), + [aux_sym_cmd_identifier_token3] = ACTIONS(1481), + [aux_sym_cmd_identifier_token4] = ACTIONS(1481), + [aux_sym_cmd_identifier_token5] = ACTIONS(1481), + [aux_sym_cmd_identifier_token6] = ACTIONS(1481), + [aux_sym_cmd_identifier_token7] = ACTIONS(1481), + [aux_sym_cmd_identifier_token8] = ACTIONS(1481), + [aux_sym_cmd_identifier_token9] = ACTIONS(1481), + [aux_sym_cmd_identifier_token10] = ACTIONS(1481), + [aux_sym_cmd_identifier_token11] = ACTIONS(1481), + [aux_sym_cmd_identifier_token12] = ACTIONS(1481), + [aux_sym_cmd_identifier_token13] = ACTIONS(1481), + [aux_sym_cmd_identifier_token14] = ACTIONS(1481), + [aux_sym_cmd_identifier_token15] = ACTIONS(1481), + [aux_sym_cmd_identifier_token16] = ACTIONS(1481), + [aux_sym_cmd_identifier_token17] = ACTIONS(1481), + [aux_sym_cmd_identifier_token18] = ACTIONS(1481), + [aux_sym_cmd_identifier_token19] = ACTIONS(1481), + [aux_sym_cmd_identifier_token20] = ACTIONS(1481), + [aux_sym_cmd_identifier_token21] = ACTIONS(1481), + [aux_sym_cmd_identifier_token22] = ACTIONS(1481), + [aux_sym_cmd_identifier_token23] = ACTIONS(1481), + [aux_sym_cmd_identifier_token24] = ACTIONS(1481), + [aux_sym_cmd_identifier_token25] = ACTIONS(1481), + [aux_sym_cmd_identifier_token26] = ACTIONS(1481), + [aux_sym_cmd_identifier_token27] = ACTIONS(1481), + [aux_sym_cmd_identifier_token28] = ACTIONS(1481), + [aux_sym_cmd_identifier_token29] = ACTIONS(1481), + [aux_sym_cmd_identifier_token30] = ACTIONS(1481), + [aux_sym_cmd_identifier_token31] = ACTIONS(1481), + [aux_sym_cmd_identifier_token32] = ACTIONS(1481), + [aux_sym_cmd_identifier_token33] = ACTIONS(1481), + [aux_sym_cmd_identifier_token34] = ACTIONS(1481), + [aux_sym_cmd_identifier_token35] = ACTIONS(1481), + [aux_sym_cmd_identifier_token36] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1481), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_export_DASHenv] = ACTIONS(1481), + [anon_sym_extern] = ACTIONS(1481), + [anon_sym_module] = ACTIONS(1481), + [anon_sym_use] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1483), + [anon_sym_error] = ACTIONS(1481), + [anon_sym_list] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_in] = ACTIONS(1481), + [anon_sym_loop] = ACTIONS(1481), + [anon_sym_make] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_try] = ACTIONS(1481), + [anon_sym_catch] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_source] = ACTIONS(1481), + [anon_sym_source_DASHenv] = ACTIONS(1481), + [anon_sym_register] = ACTIONS(1481), + [anon_sym_hide] = ACTIONS(1481), + [anon_sym_hide_DASHenv] = ACTIONS(1481), + [anon_sym_overlay] = ACTIONS(1481), + [anon_sym_new] = ACTIONS(1481), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(1515), + [aux_sym__immediate_decimal_token2] = ACTIONS(1517), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1483), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [sym_filesize_unit] = ACTIONS(1481), + [sym_duration_unit] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1481), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [201] = { + [sym__expr_parenthesized_immediate] = STATE(604), + [sym__immediate_decimal] = STATE(520), + [sym_val_variable] = STATE(604), [sym_comment] = STATE(201), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_alias] = ACTIONS(1504), - [anon_sym_let] = ACTIONS(1504), - [anon_sym_let_DASHenv] = ACTIONS(1504), - [anon_sym_mut] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [aux_sym_cmd_identifier_token1] = ACTIONS(1504), - [aux_sym_cmd_identifier_token2] = ACTIONS(1504), - [aux_sym_cmd_identifier_token3] = ACTIONS(1504), - [aux_sym_cmd_identifier_token4] = ACTIONS(1504), - [aux_sym_cmd_identifier_token5] = ACTIONS(1504), - [aux_sym_cmd_identifier_token6] = ACTIONS(1504), - [aux_sym_cmd_identifier_token7] = ACTIONS(1504), - [aux_sym_cmd_identifier_token8] = ACTIONS(1504), - [aux_sym_cmd_identifier_token9] = ACTIONS(1504), - [aux_sym_cmd_identifier_token10] = ACTIONS(1504), - [aux_sym_cmd_identifier_token11] = ACTIONS(1504), - [aux_sym_cmd_identifier_token12] = ACTIONS(1504), - [aux_sym_cmd_identifier_token13] = ACTIONS(1504), - [aux_sym_cmd_identifier_token14] = ACTIONS(1504), - [aux_sym_cmd_identifier_token15] = ACTIONS(1504), - [aux_sym_cmd_identifier_token16] = ACTIONS(1504), - [aux_sym_cmd_identifier_token17] = ACTIONS(1504), - [aux_sym_cmd_identifier_token18] = ACTIONS(1504), - [aux_sym_cmd_identifier_token19] = ACTIONS(1504), - [aux_sym_cmd_identifier_token20] = ACTIONS(1504), - [aux_sym_cmd_identifier_token21] = ACTIONS(1504), - [aux_sym_cmd_identifier_token22] = ACTIONS(1504), - [aux_sym_cmd_identifier_token23] = ACTIONS(1504), - [aux_sym_cmd_identifier_token24] = ACTIONS(1504), - [aux_sym_cmd_identifier_token25] = ACTIONS(1504), - [aux_sym_cmd_identifier_token26] = ACTIONS(1504), - [aux_sym_cmd_identifier_token27] = ACTIONS(1504), - [aux_sym_cmd_identifier_token28] = ACTIONS(1504), - [aux_sym_cmd_identifier_token29] = ACTIONS(1504), - [aux_sym_cmd_identifier_token30] = ACTIONS(1504), - [aux_sym_cmd_identifier_token31] = ACTIONS(1504), - [aux_sym_cmd_identifier_token32] = ACTIONS(1504), - [aux_sym_cmd_identifier_token33] = ACTIONS(1504), - [aux_sym_cmd_identifier_token34] = ACTIONS(1504), - [aux_sym_cmd_identifier_token35] = ACTIONS(1504), - [aux_sym_cmd_identifier_token36] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [anon_sym_null] = ACTIONS(1504), - [aux_sym_cmd_identifier_token38] = ACTIONS(1504), - [aux_sym_cmd_identifier_token39] = ACTIONS(1504), - [aux_sym_cmd_identifier_token40] = ACTIONS(1504), - [anon_sym_def] = ACTIONS(1504), - [anon_sym_export_DASHenv] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_use] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_DOLLAR] = ACTIONS(1504), - [anon_sym_error] = ACTIONS(1504), - [anon_sym_list] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_in] = ACTIONS(1504), - [anon_sym_loop] = ACTIONS(1504), - [anon_sym_make] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_else] = ACTIONS(1504), - [anon_sym_match] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_try] = ACTIONS(1504), - [anon_sym_catch] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_source] = ACTIONS(1504), - [anon_sym_source_DASHenv] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_hide] = ACTIONS(1504), - [anon_sym_hide_DASHenv] = ACTIONS(1504), - [anon_sym_overlay] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_as] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1504), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1504), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1504), - [aux_sym__val_number_token1] = ACTIONS(1504), - [aux_sym__val_number_token2] = ACTIONS(1504), - [aux_sym__val_number_token3] = ACTIONS(1504), - [sym_filesize_unit] = ACTIONS(1504), - [sym_duration_unit] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1504), - [sym__str_single_quotes] = ACTIONS(1504), - [sym__str_back_ticks] = ACTIONS(1504), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1504), - [sym__entry_separator] = ACTIONS(1506), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_alias] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_let_DASHenv] = ACTIONS(1413), + [anon_sym_mut] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [aux_sym_cmd_identifier_token1] = ACTIONS(1413), + [aux_sym_cmd_identifier_token2] = ACTIONS(1413), + [aux_sym_cmd_identifier_token3] = ACTIONS(1413), + [aux_sym_cmd_identifier_token4] = ACTIONS(1413), + [aux_sym_cmd_identifier_token5] = ACTIONS(1413), + [aux_sym_cmd_identifier_token6] = ACTIONS(1413), + [aux_sym_cmd_identifier_token7] = ACTIONS(1413), + [aux_sym_cmd_identifier_token8] = ACTIONS(1413), + [aux_sym_cmd_identifier_token9] = ACTIONS(1413), + [aux_sym_cmd_identifier_token10] = ACTIONS(1413), + [aux_sym_cmd_identifier_token11] = ACTIONS(1413), + [aux_sym_cmd_identifier_token12] = ACTIONS(1413), + [aux_sym_cmd_identifier_token13] = ACTIONS(1413), + [aux_sym_cmd_identifier_token14] = ACTIONS(1413), + [aux_sym_cmd_identifier_token15] = ACTIONS(1413), + [aux_sym_cmd_identifier_token16] = ACTIONS(1413), + [aux_sym_cmd_identifier_token17] = ACTIONS(1413), + [aux_sym_cmd_identifier_token18] = ACTIONS(1413), + [aux_sym_cmd_identifier_token19] = ACTIONS(1413), + [aux_sym_cmd_identifier_token20] = ACTIONS(1413), + [aux_sym_cmd_identifier_token21] = ACTIONS(1413), + [aux_sym_cmd_identifier_token22] = ACTIONS(1413), + [aux_sym_cmd_identifier_token23] = ACTIONS(1413), + [aux_sym_cmd_identifier_token24] = ACTIONS(1413), + [aux_sym_cmd_identifier_token25] = ACTIONS(1413), + [aux_sym_cmd_identifier_token26] = ACTIONS(1413), + [aux_sym_cmd_identifier_token27] = ACTIONS(1413), + [aux_sym_cmd_identifier_token28] = ACTIONS(1413), + [aux_sym_cmd_identifier_token29] = ACTIONS(1413), + [aux_sym_cmd_identifier_token30] = ACTIONS(1413), + [aux_sym_cmd_identifier_token31] = ACTIONS(1413), + [aux_sym_cmd_identifier_token32] = ACTIONS(1413), + [aux_sym_cmd_identifier_token33] = ACTIONS(1413), + [aux_sym_cmd_identifier_token34] = ACTIONS(1413), + [aux_sym_cmd_identifier_token35] = ACTIONS(1413), + [aux_sym_cmd_identifier_token36] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [aux_sym_cmd_identifier_token38] = ACTIONS(1413), + [aux_sym_cmd_identifier_token39] = ACTIONS(1427), + [aux_sym_cmd_identifier_token40] = ACTIONS(1427), + [anon_sym_def] = ACTIONS(1413), + [anon_sym_export_DASHenv] = ACTIONS(1413), + [anon_sym_extern] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_use] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1413), + [anon_sym_list] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_in] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1413), + [anon_sym_make] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_try] = ACTIONS(1413), + [anon_sym_catch] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_source] = ACTIONS(1413), + [anon_sym_source_DASHenv] = ACTIONS(1413), + [anon_sym_register] = ACTIONS(1413), + [anon_sym_hide] = ACTIONS(1413), + [anon_sym_hide_DASHenv] = ACTIONS(1413), + [anon_sym_overlay] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1413), + [anon_sym_LPAREN2] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1427), + [aux_sym__immediate_decimal_token1] = ACTIONS(1493), + [aux_sym__immediate_decimal_token3] = ACTIONS(1495), + [aux_sym__immediate_decimal_token4] = ACTIONS(1497), + [aux_sym__immediate_decimal_token5] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1427), + [aux_sym__val_number_decimal_token1] = ACTIONS(1413), + [aux_sym__val_number_decimal_token2] = ACTIONS(1413), + [aux_sym__val_number_decimal_token3] = ACTIONS(1413), + [aux_sym__val_number_decimal_token4] = ACTIONS(1413), + [aux_sym__val_number_token1] = ACTIONS(1427), + [aux_sym__val_number_token2] = ACTIONS(1427), + [aux_sym__val_number_token3] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym__str_single_quotes] = ACTIONS(1427), + [sym__str_back_ticks] = ACTIONS(1427), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1413), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), }, [202] = { [sym_comment] = STATE(202), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [aux_sym_cmd_identifier_token1] = ACTIONS(1368), - [aux_sym_cmd_identifier_token2] = ACTIONS(1368), - [aux_sym_cmd_identifier_token3] = ACTIONS(1368), - [aux_sym_cmd_identifier_token4] = ACTIONS(1368), - [aux_sym_cmd_identifier_token5] = ACTIONS(1368), - [aux_sym_cmd_identifier_token6] = ACTIONS(1368), - [aux_sym_cmd_identifier_token7] = ACTIONS(1368), - [aux_sym_cmd_identifier_token8] = ACTIONS(1368), - [aux_sym_cmd_identifier_token9] = ACTIONS(1368), - [aux_sym_cmd_identifier_token10] = ACTIONS(1368), - [aux_sym_cmd_identifier_token11] = ACTIONS(1368), - [aux_sym_cmd_identifier_token12] = ACTIONS(1368), - [aux_sym_cmd_identifier_token13] = ACTIONS(1368), - [aux_sym_cmd_identifier_token14] = ACTIONS(1368), - [aux_sym_cmd_identifier_token15] = ACTIONS(1368), - [aux_sym_cmd_identifier_token16] = ACTIONS(1368), - [aux_sym_cmd_identifier_token17] = ACTIONS(1368), - [aux_sym_cmd_identifier_token18] = ACTIONS(1368), - [aux_sym_cmd_identifier_token19] = ACTIONS(1368), - [aux_sym_cmd_identifier_token20] = ACTIONS(1368), - [aux_sym_cmd_identifier_token21] = ACTIONS(1368), - [aux_sym_cmd_identifier_token22] = ACTIONS(1368), - [aux_sym_cmd_identifier_token23] = ACTIONS(1368), - [aux_sym_cmd_identifier_token24] = ACTIONS(1368), - [aux_sym_cmd_identifier_token25] = ACTIONS(1368), - [aux_sym_cmd_identifier_token26] = ACTIONS(1368), - [aux_sym_cmd_identifier_token27] = ACTIONS(1368), - [aux_sym_cmd_identifier_token28] = ACTIONS(1368), - [aux_sym_cmd_identifier_token29] = ACTIONS(1368), - [aux_sym_cmd_identifier_token30] = ACTIONS(1368), - [aux_sym_cmd_identifier_token31] = ACTIONS(1368), - [aux_sym_cmd_identifier_token32] = ACTIONS(1368), - [aux_sym_cmd_identifier_token33] = ACTIONS(1368), - [aux_sym_cmd_identifier_token34] = ACTIONS(1368), - [aux_sym_cmd_identifier_token35] = ACTIONS(1368), - [aux_sym_cmd_identifier_token36] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1368), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1370), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token3] = ACTIONS(1473), + [aux_sym_cmd_identifier_token4] = ACTIONS(1473), + [aux_sym_cmd_identifier_token5] = ACTIONS(1473), + [aux_sym_cmd_identifier_token6] = ACTIONS(1473), + [aux_sym_cmd_identifier_token7] = ACTIONS(1473), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1473), + [aux_sym_cmd_identifier_token11] = ACTIONS(1473), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1473), + [aux_sym_cmd_identifier_token17] = ACTIONS(1473), + [aux_sym_cmd_identifier_token18] = ACTIONS(1473), + [aux_sym_cmd_identifier_token19] = ACTIONS(1473), + [aux_sym_cmd_identifier_token20] = ACTIONS(1473), + [aux_sym_cmd_identifier_token21] = ACTIONS(1473), + [aux_sym_cmd_identifier_token22] = ACTIONS(1473), + [aux_sym_cmd_identifier_token23] = ACTIONS(1473), + [aux_sym_cmd_identifier_token24] = ACTIONS(1473), + [aux_sym_cmd_identifier_token25] = ACTIONS(1473), + [aux_sym_cmd_identifier_token26] = ACTIONS(1473), + [aux_sym_cmd_identifier_token27] = ACTIONS(1473), + [aux_sym_cmd_identifier_token28] = ACTIONS(1473), + [aux_sym_cmd_identifier_token29] = ACTIONS(1473), + [aux_sym_cmd_identifier_token30] = ACTIONS(1473), + [aux_sym_cmd_identifier_token31] = ACTIONS(1473), + [aux_sym_cmd_identifier_token32] = ACTIONS(1473), + [aux_sym_cmd_identifier_token33] = ACTIONS(1473), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1473), + [aux_sym_cmd_identifier_token36] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1473), + [aux_sym_cmd_identifier_token40] = ACTIONS(1473), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_list] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_new] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1473), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1473), + [aux_sym__val_number_decimal_token4] = ACTIONS(1473), + [aux_sym__val_number_token1] = ACTIONS(1473), + [aux_sym__val_number_token2] = ACTIONS(1473), + [aux_sym__val_number_token3] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1473), + [sym_duration_unit] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym__str_single_quotes] = ACTIONS(1473), + [sym__str_back_ticks] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1473), + [sym__entry_separator] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1473), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), [anon_sym_POUND] = ACTIONS(3), }, [203] = { - [sym__expr_parenthesized_immediate] = STATE(7491), [sym_comment] = STATE(203), - [anon_sym_export] = ACTIONS(1429), - [anon_sym_alias] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_let_DASHenv] = ACTIONS(1429), - [anon_sym_mut] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [aux_sym_cmd_identifier_token1] = ACTIONS(1429), - [aux_sym_cmd_identifier_token2] = ACTIONS(1429), - [aux_sym_cmd_identifier_token3] = ACTIONS(1429), - [aux_sym_cmd_identifier_token4] = ACTIONS(1429), - [aux_sym_cmd_identifier_token5] = ACTIONS(1429), - [aux_sym_cmd_identifier_token6] = ACTIONS(1429), - [aux_sym_cmd_identifier_token7] = ACTIONS(1429), - [aux_sym_cmd_identifier_token8] = ACTIONS(1429), - [aux_sym_cmd_identifier_token9] = ACTIONS(1429), - [aux_sym_cmd_identifier_token10] = ACTIONS(1429), - [aux_sym_cmd_identifier_token11] = ACTIONS(1429), - [aux_sym_cmd_identifier_token12] = ACTIONS(1429), - [aux_sym_cmd_identifier_token13] = ACTIONS(1429), - [aux_sym_cmd_identifier_token14] = ACTIONS(1429), - [aux_sym_cmd_identifier_token15] = ACTIONS(1429), - [aux_sym_cmd_identifier_token16] = ACTIONS(1429), - [aux_sym_cmd_identifier_token17] = ACTIONS(1429), - [aux_sym_cmd_identifier_token18] = ACTIONS(1429), - [aux_sym_cmd_identifier_token19] = ACTIONS(1429), - [aux_sym_cmd_identifier_token20] = ACTIONS(1429), - [aux_sym_cmd_identifier_token21] = ACTIONS(1429), - [aux_sym_cmd_identifier_token22] = ACTIONS(1429), - [aux_sym_cmd_identifier_token23] = ACTIONS(1429), - [aux_sym_cmd_identifier_token24] = ACTIONS(1429), - [aux_sym_cmd_identifier_token25] = ACTIONS(1429), - [aux_sym_cmd_identifier_token26] = ACTIONS(1429), - [aux_sym_cmd_identifier_token27] = ACTIONS(1429), - [aux_sym_cmd_identifier_token28] = ACTIONS(1429), - [aux_sym_cmd_identifier_token29] = ACTIONS(1429), - [aux_sym_cmd_identifier_token30] = ACTIONS(1429), - [aux_sym_cmd_identifier_token31] = ACTIONS(1429), - [aux_sym_cmd_identifier_token32] = ACTIONS(1429), - [aux_sym_cmd_identifier_token33] = ACTIONS(1429), - [aux_sym_cmd_identifier_token34] = ACTIONS(1429), - [aux_sym_cmd_identifier_token35] = ACTIONS(1429), - [aux_sym_cmd_identifier_token36] = ACTIONS(1429), + [anon_sym_export] = ACTIONS(1519), + [anon_sym_alias] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_let_DASHenv] = ACTIONS(1519), + [anon_sym_mut] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [aux_sym_cmd_identifier_token1] = ACTIONS(1519), + [aux_sym_cmd_identifier_token2] = ACTIONS(1519), + [aux_sym_cmd_identifier_token3] = ACTIONS(1519), + [aux_sym_cmd_identifier_token4] = ACTIONS(1519), + [aux_sym_cmd_identifier_token5] = ACTIONS(1519), + [aux_sym_cmd_identifier_token6] = ACTIONS(1519), + [aux_sym_cmd_identifier_token7] = ACTIONS(1519), + [aux_sym_cmd_identifier_token8] = ACTIONS(1519), + [aux_sym_cmd_identifier_token9] = ACTIONS(1519), + [aux_sym_cmd_identifier_token10] = ACTIONS(1519), + [aux_sym_cmd_identifier_token11] = ACTIONS(1519), + [aux_sym_cmd_identifier_token12] = ACTIONS(1519), + [aux_sym_cmd_identifier_token13] = ACTIONS(1519), + [aux_sym_cmd_identifier_token14] = ACTIONS(1519), + [aux_sym_cmd_identifier_token15] = ACTIONS(1519), + [aux_sym_cmd_identifier_token16] = ACTIONS(1519), + [aux_sym_cmd_identifier_token17] = ACTIONS(1519), + [aux_sym_cmd_identifier_token18] = ACTIONS(1519), + [aux_sym_cmd_identifier_token19] = ACTIONS(1519), + [aux_sym_cmd_identifier_token20] = ACTIONS(1519), + [aux_sym_cmd_identifier_token21] = ACTIONS(1519), + [aux_sym_cmd_identifier_token22] = ACTIONS(1519), + [aux_sym_cmd_identifier_token23] = ACTIONS(1519), + [aux_sym_cmd_identifier_token24] = ACTIONS(1519), + [aux_sym_cmd_identifier_token25] = ACTIONS(1519), + [aux_sym_cmd_identifier_token26] = ACTIONS(1519), + [aux_sym_cmd_identifier_token27] = ACTIONS(1519), + [aux_sym_cmd_identifier_token28] = ACTIONS(1519), + [aux_sym_cmd_identifier_token29] = ACTIONS(1519), + [aux_sym_cmd_identifier_token30] = ACTIONS(1519), + [aux_sym_cmd_identifier_token31] = ACTIONS(1519), + [aux_sym_cmd_identifier_token32] = ACTIONS(1519), + [aux_sym_cmd_identifier_token33] = ACTIONS(1519), + [aux_sym_cmd_identifier_token34] = ACTIONS(1519), + [aux_sym_cmd_identifier_token35] = ACTIONS(1519), + [aux_sym_cmd_identifier_token36] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [anon_sym_def] = ACTIONS(1519), + [anon_sym_export_DASHenv] = ACTIONS(1519), + [anon_sym_extern] = ACTIONS(1519), + [anon_sym_module] = ACTIONS(1519), + [anon_sym_use] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_error] = ACTIONS(1519), + [anon_sym_list] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [anon_sym_loop] = ACTIONS(1519), + [anon_sym_make] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_do] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_else] = ACTIONS(1519), + [anon_sym_match] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_try] = ACTIONS(1519), + [anon_sym_catch] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_source] = ACTIONS(1519), + [anon_sym_source_DASHenv] = ACTIONS(1519), + [anon_sym_register] = ACTIONS(1519), + [anon_sym_hide] = ACTIONS(1519), + [anon_sym_hide_DASHenv] = ACTIONS(1519), + [anon_sym_overlay] = ACTIONS(1519), + [anon_sym_new] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(1523), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1519), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1519), + [sym__entry_separator] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1519), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(3), + }, + [204] = { + [sym__expr_parenthesized_immediate] = STATE(7599), + [sym_comment] = STATE(204), + [anon_sym_export] = ACTIONS(1525), + [anon_sym_alias] = ACTIONS(1525), + [anon_sym_let] = ACTIONS(1525), + [anon_sym_let_DASHenv] = ACTIONS(1525), + [anon_sym_mut] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [aux_sym_cmd_identifier_token1] = ACTIONS(1525), + [aux_sym_cmd_identifier_token2] = ACTIONS(1525), + [aux_sym_cmd_identifier_token3] = ACTIONS(1525), + [aux_sym_cmd_identifier_token4] = ACTIONS(1525), + [aux_sym_cmd_identifier_token5] = ACTIONS(1525), + [aux_sym_cmd_identifier_token6] = ACTIONS(1525), + [aux_sym_cmd_identifier_token7] = ACTIONS(1525), + [aux_sym_cmd_identifier_token8] = ACTIONS(1525), + [aux_sym_cmd_identifier_token9] = ACTIONS(1525), + [aux_sym_cmd_identifier_token10] = ACTIONS(1525), + [aux_sym_cmd_identifier_token11] = ACTIONS(1525), + [aux_sym_cmd_identifier_token12] = ACTIONS(1525), + [aux_sym_cmd_identifier_token13] = ACTIONS(1525), + [aux_sym_cmd_identifier_token14] = ACTIONS(1525), + [aux_sym_cmd_identifier_token15] = ACTIONS(1525), + [aux_sym_cmd_identifier_token16] = ACTIONS(1525), + [aux_sym_cmd_identifier_token17] = ACTIONS(1525), + [aux_sym_cmd_identifier_token18] = ACTIONS(1525), + [aux_sym_cmd_identifier_token19] = ACTIONS(1525), + [aux_sym_cmd_identifier_token20] = ACTIONS(1525), + [aux_sym_cmd_identifier_token21] = ACTIONS(1525), + [aux_sym_cmd_identifier_token22] = ACTIONS(1525), + [aux_sym_cmd_identifier_token23] = ACTIONS(1525), + [aux_sym_cmd_identifier_token24] = ACTIONS(1525), + [aux_sym_cmd_identifier_token25] = ACTIONS(1525), + [aux_sym_cmd_identifier_token26] = ACTIONS(1525), + [aux_sym_cmd_identifier_token27] = ACTIONS(1525), + [aux_sym_cmd_identifier_token28] = ACTIONS(1525), + [aux_sym_cmd_identifier_token29] = ACTIONS(1525), + [aux_sym_cmd_identifier_token30] = ACTIONS(1525), + [aux_sym_cmd_identifier_token31] = ACTIONS(1525), + [aux_sym_cmd_identifier_token32] = ACTIONS(1525), + [aux_sym_cmd_identifier_token33] = ACTIONS(1525), + [aux_sym_cmd_identifier_token34] = ACTIONS(1525), + [aux_sym_cmd_identifier_token35] = ACTIONS(1525), + [aux_sym_cmd_identifier_token36] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [aux_sym_cmd_identifier_token38] = ACTIONS(1525), + [aux_sym_cmd_identifier_token39] = ACTIONS(1525), + [aux_sym_cmd_identifier_token40] = ACTIONS(1525), + [anon_sym_def] = ACTIONS(1525), + [anon_sym_export_DASHenv] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym_module] = ACTIONS(1525), + [anon_sym_use] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_error] = ACTIONS(1525), + [anon_sym_list] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [anon_sym_loop] = ACTIONS(1525), + [anon_sym_make] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_catch] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_source] = ACTIONS(1525), + [anon_sym_source_DASHenv] = ACTIONS(1525), + [anon_sym_register] = ACTIONS(1525), + [anon_sym_hide] = ACTIONS(1525), + [anon_sym_hide_DASHenv] = ACTIONS(1525), + [anon_sym_overlay] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1525), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1525), + [aux_sym__val_number_decimal_token3] = ACTIONS(1525), + [aux_sym__val_number_decimal_token4] = ACTIONS(1525), + [aux_sym__val_number_token1] = ACTIONS(1525), + [aux_sym__val_number_token2] = ACTIONS(1525), + [aux_sym__val_number_token3] = ACTIONS(1525), + [sym_filesize_unit] = ACTIONS(1533), + [sym_duration_unit] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1525), + [sym__str_single_quotes] = ACTIONS(1525), + [sym__str_back_ticks] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1525), + [sym__entry_separator] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1525), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(3), + }, + [205] = { + [sym__expr_parenthesized_immediate] = STATE(463), + [sym__immediate_decimal] = STATE(464), + [sym_val_variable] = STATE(463), + [sym_comment] = STATE(205), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [aux_sym_cmd_identifier_token1] = ACTIONS(1431), + [aux_sym_cmd_identifier_token2] = ACTIONS(1431), + [aux_sym_cmd_identifier_token3] = ACTIONS(1431), + [aux_sym_cmd_identifier_token4] = ACTIONS(1431), + [aux_sym_cmd_identifier_token5] = ACTIONS(1431), + [aux_sym_cmd_identifier_token6] = ACTIONS(1431), + [aux_sym_cmd_identifier_token7] = ACTIONS(1431), + [aux_sym_cmd_identifier_token8] = ACTIONS(1431), + [aux_sym_cmd_identifier_token9] = ACTIONS(1431), + [aux_sym_cmd_identifier_token10] = ACTIONS(1431), + [aux_sym_cmd_identifier_token11] = ACTIONS(1431), + [aux_sym_cmd_identifier_token12] = ACTIONS(1431), + [aux_sym_cmd_identifier_token13] = ACTIONS(1431), + [aux_sym_cmd_identifier_token14] = ACTIONS(1431), + [aux_sym_cmd_identifier_token15] = ACTIONS(1431), + [aux_sym_cmd_identifier_token16] = ACTIONS(1431), + [aux_sym_cmd_identifier_token17] = ACTIONS(1431), + [aux_sym_cmd_identifier_token18] = ACTIONS(1431), + [aux_sym_cmd_identifier_token19] = ACTIONS(1431), + [aux_sym_cmd_identifier_token20] = ACTIONS(1431), + [aux_sym_cmd_identifier_token21] = ACTIONS(1431), + [aux_sym_cmd_identifier_token22] = ACTIONS(1431), + [aux_sym_cmd_identifier_token23] = ACTIONS(1431), + [aux_sym_cmd_identifier_token24] = ACTIONS(1431), + [aux_sym_cmd_identifier_token25] = ACTIONS(1431), + [aux_sym_cmd_identifier_token26] = ACTIONS(1431), + [aux_sym_cmd_identifier_token27] = ACTIONS(1431), + [aux_sym_cmd_identifier_token28] = ACTIONS(1431), + [aux_sym_cmd_identifier_token29] = ACTIONS(1431), + [aux_sym_cmd_identifier_token30] = ACTIONS(1431), + [aux_sym_cmd_identifier_token31] = ACTIONS(1431), + [aux_sym_cmd_identifier_token32] = ACTIONS(1431), + [aux_sym_cmd_identifier_token33] = ACTIONS(1431), + [aux_sym_cmd_identifier_token34] = ACTIONS(1431), + [aux_sym_cmd_identifier_token35] = ACTIONS(1431), + [aux_sym_cmd_identifier_token36] = ACTIONS(1431), [anon_sym_true] = ACTIONS(1441), [anon_sym_false] = ACTIONS(1441), [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1429), + [aux_sym_cmd_identifier_token38] = ACTIONS(1431), [aux_sym_cmd_identifier_token39] = ACTIONS(1441), [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [anon_sym_def] = ACTIONS(1429), - [anon_sym_export_DASHenv] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_module] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_error] = ACTIONS(1429), - [anon_sym_list] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_make] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1459), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_list] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_make] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_try] = ACTIONS(1429), - [anon_sym_catch] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_source] = ACTIONS(1429), - [anon_sym_source_DASHenv] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_hide] = ACTIONS(1429), - [anon_sym_hide_DASHenv] = ACTIONS(1429), - [anon_sym_overlay] = ACTIONS(1429), - [anon_sym_new] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_catch] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_register] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1461), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1441), - [anon_sym_DOT_DOT2] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1541), + [aux_sym__immediate_decimal_token1] = ACTIONS(1543), + [aux_sym__immediate_decimal_token3] = ACTIONS(1545), + [aux_sym__immediate_decimal_token4] = ACTIONS(1547), + [aux_sym__immediate_decimal_token5] = ACTIONS(1549), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1441), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), [aux_sym__val_number_token1] = ACTIONS(1441), [aux_sym__val_number_token2] = ACTIONS(1441), [aux_sym__val_number_token3] = ACTIONS(1441), - [sym_filesize_unit] = ACTIONS(1512), - [sym_duration_unit] = ACTIONS(1514), [anon_sym_DQUOTE] = ACTIONS(1441), [sym__str_single_quotes] = ACTIONS(1441), [sym__str_back_ticks] = ACTIONS(1441), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1441), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(3), - }, - [204] = { - [sym_comment] = STATE(204), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [aux_sym_cmd_identifier_token1] = ACTIONS(1368), - [aux_sym_cmd_identifier_token2] = ACTIONS(1368), - [aux_sym_cmd_identifier_token3] = ACTIONS(1368), - [aux_sym_cmd_identifier_token4] = ACTIONS(1368), - [aux_sym_cmd_identifier_token5] = ACTIONS(1368), - [aux_sym_cmd_identifier_token6] = ACTIONS(1368), - [aux_sym_cmd_identifier_token7] = ACTIONS(1368), - [aux_sym_cmd_identifier_token8] = ACTIONS(1368), - [aux_sym_cmd_identifier_token9] = ACTIONS(1368), - [aux_sym_cmd_identifier_token10] = ACTIONS(1368), - [aux_sym_cmd_identifier_token11] = ACTIONS(1368), - [aux_sym_cmd_identifier_token12] = ACTIONS(1368), - [aux_sym_cmd_identifier_token13] = ACTIONS(1368), - [aux_sym_cmd_identifier_token14] = ACTIONS(1368), - [aux_sym_cmd_identifier_token15] = ACTIONS(1368), - [aux_sym_cmd_identifier_token16] = ACTIONS(1368), - [aux_sym_cmd_identifier_token17] = ACTIONS(1368), - [aux_sym_cmd_identifier_token18] = ACTIONS(1368), - [aux_sym_cmd_identifier_token19] = ACTIONS(1368), - [aux_sym_cmd_identifier_token20] = ACTIONS(1368), - [aux_sym_cmd_identifier_token21] = ACTIONS(1368), - [aux_sym_cmd_identifier_token22] = ACTIONS(1368), - [aux_sym_cmd_identifier_token23] = ACTIONS(1368), - [aux_sym_cmd_identifier_token24] = ACTIONS(1368), - [aux_sym_cmd_identifier_token25] = ACTIONS(1368), - [aux_sym_cmd_identifier_token26] = ACTIONS(1368), - [aux_sym_cmd_identifier_token27] = ACTIONS(1368), - [aux_sym_cmd_identifier_token28] = ACTIONS(1368), - [aux_sym_cmd_identifier_token29] = ACTIONS(1368), - [aux_sym_cmd_identifier_token30] = ACTIONS(1368), - [aux_sym_cmd_identifier_token31] = ACTIONS(1368), - [aux_sym_cmd_identifier_token32] = ACTIONS(1368), - [aux_sym_cmd_identifier_token33] = ACTIONS(1368), - [aux_sym_cmd_identifier_token34] = ACTIONS(1368), - [aux_sym_cmd_identifier_token35] = ACTIONS(1368), - [aux_sym_cmd_identifier_token36] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1368), - [aux_sym_cmd_identifier_token38] = ACTIONS(1368), - [aux_sym_cmd_identifier_token39] = ACTIONS(1368), - [aux_sym_cmd_identifier_token40] = ACTIONS(1368), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1368), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1368), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1368), - [aux_sym__val_number_token1] = ACTIONS(1368), - [aux_sym__val_number_token2] = ACTIONS(1368), - [aux_sym__val_number_token3] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym__str_single_quotes] = ACTIONS(1368), - [sym__str_back_ticks] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1368), - [sym__entry_separator] = ACTIONS(1370), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(121), - }, - [205] = { - [sym_comment] = STATE(205), - [anon_sym_export] = ACTIONS(1398), - [anon_sym_alias] = ACTIONS(1398), - [anon_sym_let] = ACTIONS(1398), - [anon_sym_let_DASHenv] = ACTIONS(1398), - [anon_sym_mut] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [aux_sym_cmd_identifier_token1] = ACTIONS(1398), - [aux_sym_cmd_identifier_token2] = ACTIONS(1398), - [aux_sym_cmd_identifier_token3] = ACTIONS(1398), - [aux_sym_cmd_identifier_token4] = ACTIONS(1398), - [aux_sym_cmd_identifier_token5] = ACTIONS(1398), - [aux_sym_cmd_identifier_token6] = ACTIONS(1398), - [aux_sym_cmd_identifier_token7] = ACTIONS(1398), - [aux_sym_cmd_identifier_token8] = ACTIONS(1398), - [aux_sym_cmd_identifier_token9] = ACTIONS(1398), - [aux_sym_cmd_identifier_token10] = ACTIONS(1398), - [aux_sym_cmd_identifier_token11] = ACTIONS(1398), - [aux_sym_cmd_identifier_token12] = ACTIONS(1398), - [aux_sym_cmd_identifier_token13] = ACTIONS(1398), - [aux_sym_cmd_identifier_token14] = ACTIONS(1398), - [aux_sym_cmd_identifier_token15] = ACTIONS(1398), - [aux_sym_cmd_identifier_token16] = ACTIONS(1398), - [aux_sym_cmd_identifier_token17] = ACTIONS(1398), - [aux_sym_cmd_identifier_token18] = ACTIONS(1398), - [aux_sym_cmd_identifier_token19] = ACTIONS(1398), - [aux_sym_cmd_identifier_token20] = ACTIONS(1398), - [aux_sym_cmd_identifier_token21] = ACTIONS(1398), - [aux_sym_cmd_identifier_token22] = ACTIONS(1398), - [aux_sym_cmd_identifier_token23] = ACTIONS(1398), - [aux_sym_cmd_identifier_token24] = ACTIONS(1398), - [aux_sym_cmd_identifier_token25] = ACTIONS(1398), - [aux_sym_cmd_identifier_token26] = ACTIONS(1398), - [aux_sym_cmd_identifier_token27] = ACTIONS(1398), - [aux_sym_cmd_identifier_token28] = ACTIONS(1398), - [aux_sym_cmd_identifier_token29] = ACTIONS(1398), - [aux_sym_cmd_identifier_token30] = ACTIONS(1398), - [aux_sym_cmd_identifier_token31] = ACTIONS(1398), - [aux_sym_cmd_identifier_token32] = ACTIONS(1398), - [aux_sym_cmd_identifier_token33] = ACTIONS(1398), - [aux_sym_cmd_identifier_token34] = ACTIONS(1398), - [aux_sym_cmd_identifier_token35] = ACTIONS(1398), - [aux_sym_cmd_identifier_token36] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1398), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [anon_sym_def] = ACTIONS(1398), - [anon_sym_export_DASHenv] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_module] = ACTIONS(1398), - [anon_sym_use] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_error] = ACTIONS(1398), - [anon_sym_list] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_in] = ACTIONS(1398), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_make] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_try] = ACTIONS(1398), - [anon_sym_catch] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_source] = ACTIONS(1398), - [anon_sym_source_DASHenv] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_hide] = ACTIONS(1398), - [anon_sym_hide_DASHenv] = ACTIONS(1398), - [anon_sym_overlay] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(1462), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1400), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1400), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(247), }, [206] = { + [sym__expr_parenthesized_immediate] = STATE(573), + [sym__immediate_decimal] = STATE(574), + [sym_val_variable] = STATE(573), [sym_comment] = STATE(206), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [aux_sym_cmd_identifier_token1] = ACTIONS(1376), - [aux_sym_cmd_identifier_token2] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1376), - [aux_sym_cmd_identifier_token4] = ACTIONS(1376), - [aux_sym_cmd_identifier_token5] = ACTIONS(1376), - [aux_sym_cmd_identifier_token6] = ACTIONS(1376), - [aux_sym_cmd_identifier_token7] = ACTIONS(1376), - [aux_sym_cmd_identifier_token8] = ACTIONS(1376), - [aux_sym_cmd_identifier_token9] = ACTIONS(1376), - [aux_sym_cmd_identifier_token10] = ACTIONS(1376), - [aux_sym_cmd_identifier_token11] = ACTIONS(1376), - [aux_sym_cmd_identifier_token12] = ACTIONS(1376), - [aux_sym_cmd_identifier_token13] = ACTIONS(1376), - [aux_sym_cmd_identifier_token14] = ACTIONS(1376), - [aux_sym_cmd_identifier_token15] = ACTIONS(1376), - [aux_sym_cmd_identifier_token16] = ACTIONS(1376), - [aux_sym_cmd_identifier_token17] = ACTIONS(1376), - [aux_sym_cmd_identifier_token18] = ACTIONS(1376), - [aux_sym_cmd_identifier_token19] = ACTIONS(1376), - [aux_sym_cmd_identifier_token20] = ACTIONS(1376), - [aux_sym_cmd_identifier_token21] = ACTIONS(1376), - [aux_sym_cmd_identifier_token22] = ACTIONS(1376), - [aux_sym_cmd_identifier_token23] = ACTIONS(1376), - [aux_sym_cmd_identifier_token24] = ACTIONS(1376), - [aux_sym_cmd_identifier_token25] = ACTIONS(1376), - [aux_sym_cmd_identifier_token26] = ACTIONS(1376), - [aux_sym_cmd_identifier_token27] = ACTIONS(1376), - [aux_sym_cmd_identifier_token28] = ACTIONS(1376), - [aux_sym_cmd_identifier_token29] = ACTIONS(1376), - [aux_sym_cmd_identifier_token30] = ACTIONS(1376), - [aux_sym_cmd_identifier_token31] = ACTIONS(1376), - [aux_sym_cmd_identifier_token32] = ACTIONS(1376), - [aux_sym_cmd_identifier_token33] = ACTIONS(1376), - [aux_sym_cmd_identifier_token34] = ACTIONS(1376), - [aux_sym_cmd_identifier_token35] = ACTIONS(1376), - [aux_sym_cmd_identifier_token36] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1376), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(1516), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1378), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [aux_sym_cmd_identifier_token1] = ACTIONS(1431), + [aux_sym_cmd_identifier_token2] = ACTIONS(1431), + [aux_sym_cmd_identifier_token3] = ACTIONS(1431), + [aux_sym_cmd_identifier_token4] = ACTIONS(1431), + [aux_sym_cmd_identifier_token5] = ACTIONS(1431), + [aux_sym_cmd_identifier_token6] = ACTIONS(1431), + [aux_sym_cmd_identifier_token7] = ACTIONS(1431), + [aux_sym_cmd_identifier_token8] = ACTIONS(1431), + [aux_sym_cmd_identifier_token9] = ACTIONS(1431), + [aux_sym_cmd_identifier_token10] = ACTIONS(1431), + [aux_sym_cmd_identifier_token11] = ACTIONS(1431), + [aux_sym_cmd_identifier_token12] = ACTIONS(1431), + [aux_sym_cmd_identifier_token13] = ACTIONS(1431), + [aux_sym_cmd_identifier_token14] = ACTIONS(1431), + [aux_sym_cmd_identifier_token15] = ACTIONS(1431), + [aux_sym_cmd_identifier_token16] = ACTIONS(1431), + [aux_sym_cmd_identifier_token17] = ACTIONS(1431), + [aux_sym_cmd_identifier_token18] = ACTIONS(1431), + [aux_sym_cmd_identifier_token19] = ACTIONS(1431), + [aux_sym_cmd_identifier_token20] = ACTIONS(1431), + [aux_sym_cmd_identifier_token21] = ACTIONS(1431), + [aux_sym_cmd_identifier_token22] = ACTIONS(1431), + [aux_sym_cmd_identifier_token23] = ACTIONS(1431), + [aux_sym_cmd_identifier_token24] = ACTIONS(1431), + [aux_sym_cmd_identifier_token25] = ACTIONS(1431), + [aux_sym_cmd_identifier_token26] = ACTIONS(1431), + [aux_sym_cmd_identifier_token27] = ACTIONS(1431), + [aux_sym_cmd_identifier_token28] = ACTIONS(1431), + [aux_sym_cmd_identifier_token29] = ACTIONS(1431), + [aux_sym_cmd_identifier_token30] = ACTIONS(1431), + [aux_sym_cmd_identifier_token31] = ACTIONS(1431), + [aux_sym_cmd_identifier_token32] = ACTIONS(1431), + [aux_sym_cmd_identifier_token33] = ACTIONS(1431), + [aux_sym_cmd_identifier_token34] = ACTIONS(1431), + [aux_sym_cmd_identifier_token35] = ACTIONS(1431), + [aux_sym_cmd_identifier_token36] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_cmd_identifier_token38] = ACTIONS(1431), + [aux_sym_cmd_identifier_token39] = ACTIONS(1431), + [aux_sym_cmd_identifier_token40] = ACTIONS(1431), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_list] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_make] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_catch] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_register] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1431), + [aux_sym__immediate_decimal_token1] = ACTIONS(1503), + [aux_sym__immediate_decimal_token3] = ACTIONS(1503), + [aux_sym__immediate_decimal_token4] = ACTIONS(1505), + [aux_sym__immediate_decimal_token5] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1431), + [aux_sym__val_number_token2] = ACTIONS(1431), + [aux_sym__val_number_token3] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym__str_single_quotes] = ACTIONS(1431), + [sym__str_back_ticks] = ACTIONS(1431), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1431), + [sym__entry_separator] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1431), [anon_sym_POUND] = ACTIONS(3), }, [207] = { + [sym__expr_parenthesized_immediate] = STATE(579), + [sym__immediate_decimal] = STATE(580), + [sym_val_variable] = STATE(579), [sym_comment] = STATE(207), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [aux_sym_cmd_identifier_token1] = ACTIONS(1551), + [aux_sym_cmd_identifier_token2] = ACTIONS(1551), + [aux_sym_cmd_identifier_token3] = ACTIONS(1551), + [aux_sym_cmd_identifier_token4] = ACTIONS(1551), + [aux_sym_cmd_identifier_token5] = ACTIONS(1551), + [aux_sym_cmd_identifier_token6] = ACTIONS(1551), + [aux_sym_cmd_identifier_token7] = ACTIONS(1551), + [aux_sym_cmd_identifier_token8] = ACTIONS(1551), + [aux_sym_cmd_identifier_token9] = ACTIONS(1551), + [aux_sym_cmd_identifier_token10] = ACTIONS(1551), + [aux_sym_cmd_identifier_token11] = ACTIONS(1551), + [aux_sym_cmd_identifier_token12] = ACTIONS(1551), + [aux_sym_cmd_identifier_token13] = ACTIONS(1551), + [aux_sym_cmd_identifier_token14] = ACTIONS(1551), + [aux_sym_cmd_identifier_token15] = ACTIONS(1551), + [aux_sym_cmd_identifier_token16] = ACTIONS(1551), + [aux_sym_cmd_identifier_token17] = ACTIONS(1551), + [aux_sym_cmd_identifier_token18] = ACTIONS(1551), + [aux_sym_cmd_identifier_token19] = ACTIONS(1551), + [aux_sym_cmd_identifier_token20] = ACTIONS(1551), + [aux_sym_cmd_identifier_token21] = ACTIONS(1551), + [aux_sym_cmd_identifier_token22] = ACTIONS(1551), + [aux_sym_cmd_identifier_token23] = ACTIONS(1551), + [aux_sym_cmd_identifier_token24] = ACTIONS(1551), + [aux_sym_cmd_identifier_token25] = ACTIONS(1551), + [aux_sym_cmd_identifier_token26] = ACTIONS(1551), + [aux_sym_cmd_identifier_token27] = ACTIONS(1551), + [aux_sym_cmd_identifier_token28] = ACTIONS(1551), + [aux_sym_cmd_identifier_token29] = ACTIONS(1551), + [aux_sym_cmd_identifier_token30] = ACTIONS(1551), + [aux_sym_cmd_identifier_token31] = ACTIONS(1551), + [aux_sym_cmd_identifier_token32] = ACTIONS(1551), + [aux_sym_cmd_identifier_token33] = ACTIONS(1551), + [aux_sym_cmd_identifier_token34] = ACTIONS(1551), + [aux_sym_cmd_identifier_token35] = ACTIONS(1551), + [aux_sym_cmd_identifier_token36] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [aux_sym_cmd_identifier_token38] = ACTIONS(1551), + [aux_sym_cmd_identifier_token39] = ACTIONS(1551), + [aux_sym_cmd_identifier_token40] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1551), + [aux_sym__immediate_decimal_token1] = ACTIONS(1503), + [aux_sym__immediate_decimal_token3] = ACTIONS(1503), + [aux_sym__immediate_decimal_token4] = ACTIONS(1505), + [aux_sym__immediate_decimal_token5] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_decimal_token2] = ACTIONS(1551), + [aux_sym__val_number_decimal_token3] = ACTIONS(1551), + [aux_sym__val_number_decimal_token4] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1551), + [sym__entry_separator] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(3), }, [208] = { - [sym__expr_parenthesized_immediate] = STATE(606), - [sym__immediate_decimal] = STATE(607), - [sym_val_variable] = STATE(606), + [sym__expr_parenthesized_immediate] = STATE(581), + [sym__immediate_decimal] = STATE(582), + [sym_val_variable] = STATE(581), [sym_comment] = STATE(208), - [anon_sym_export] = ACTIONS(1478), - [anon_sym_alias] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_let_DASHenv] = ACTIONS(1478), - [anon_sym_mut] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [aux_sym_cmd_identifier_token1] = ACTIONS(1478), - [aux_sym_cmd_identifier_token2] = ACTIONS(1478), - [aux_sym_cmd_identifier_token3] = ACTIONS(1478), - [aux_sym_cmd_identifier_token4] = ACTIONS(1478), - [aux_sym_cmd_identifier_token5] = ACTIONS(1478), - [aux_sym_cmd_identifier_token6] = ACTIONS(1478), - [aux_sym_cmd_identifier_token7] = ACTIONS(1478), - [aux_sym_cmd_identifier_token8] = ACTIONS(1478), - [aux_sym_cmd_identifier_token9] = ACTIONS(1478), - [aux_sym_cmd_identifier_token10] = ACTIONS(1478), - [aux_sym_cmd_identifier_token11] = ACTIONS(1478), - [aux_sym_cmd_identifier_token12] = ACTIONS(1478), - [aux_sym_cmd_identifier_token13] = ACTIONS(1478), - [aux_sym_cmd_identifier_token14] = ACTIONS(1478), - [aux_sym_cmd_identifier_token15] = ACTIONS(1478), - [aux_sym_cmd_identifier_token16] = ACTIONS(1478), - [aux_sym_cmd_identifier_token17] = ACTIONS(1478), - [aux_sym_cmd_identifier_token18] = ACTIONS(1478), - [aux_sym_cmd_identifier_token19] = ACTIONS(1478), - [aux_sym_cmd_identifier_token20] = ACTIONS(1478), - [aux_sym_cmd_identifier_token21] = ACTIONS(1478), - [aux_sym_cmd_identifier_token22] = ACTIONS(1478), - [aux_sym_cmd_identifier_token23] = ACTIONS(1478), - [aux_sym_cmd_identifier_token24] = ACTIONS(1478), - [aux_sym_cmd_identifier_token25] = ACTIONS(1478), - [aux_sym_cmd_identifier_token26] = ACTIONS(1478), - [aux_sym_cmd_identifier_token27] = ACTIONS(1478), - [aux_sym_cmd_identifier_token28] = ACTIONS(1478), - [aux_sym_cmd_identifier_token29] = ACTIONS(1478), - [aux_sym_cmd_identifier_token30] = ACTIONS(1478), - [aux_sym_cmd_identifier_token31] = ACTIONS(1478), - [aux_sym_cmd_identifier_token32] = ACTIONS(1478), - [aux_sym_cmd_identifier_token33] = ACTIONS(1478), - [aux_sym_cmd_identifier_token34] = ACTIONS(1478), - [aux_sym_cmd_identifier_token35] = ACTIONS(1478), - [aux_sym_cmd_identifier_token36] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1480), - [aux_sym_cmd_identifier_token38] = ACTIONS(1478), - [aux_sym_cmd_identifier_token39] = ACTIONS(1480), - [aux_sym_cmd_identifier_token40] = ACTIONS(1480), - [anon_sym_def] = ACTIONS(1478), - [anon_sym_export_DASHenv] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_module] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1490), - [anon_sym_error] = ACTIONS(1478), - [anon_sym_list] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_make] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_else] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_catch] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_source] = ACTIONS(1478), - [anon_sym_source_DASHenv] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_hide] = ACTIONS(1478), - [anon_sym_hide_DASHenv] = ACTIONS(1478), - [anon_sym_overlay] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1480), - [anon_sym_DOT] = ACTIONS(1527), - [aux_sym__immediate_decimal_token1] = ACTIONS(1529), - [aux_sym__immediate_decimal_token3] = ACTIONS(1531), - [aux_sym__immediate_decimal_token4] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1480), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1480), - [aux_sym__val_number_token2] = ACTIONS(1480), - [aux_sym__val_number_token3] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [sym__str_single_quotes] = ACTIONS(1480), - [sym__str_back_ticks] = ACTIONS(1480), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1480), + [anon_sym_export] = ACTIONS(1555), + [anon_sym_alias] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_let_DASHenv] = ACTIONS(1555), + [anon_sym_mut] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [aux_sym_cmd_identifier_token1] = ACTIONS(1555), + [aux_sym_cmd_identifier_token2] = ACTIONS(1555), + [aux_sym_cmd_identifier_token3] = ACTIONS(1555), + [aux_sym_cmd_identifier_token4] = ACTIONS(1555), + [aux_sym_cmd_identifier_token5] = ACTIONS(1555), + [aux_sym_cmd_identifier_token6] = ACTIONS(1555), + [aux_sym_cmd_identifier_token7] = ACTIONS(1555), + [aux_sym_cmd_identifier_token8] = ACTIONS(1555), + [aux_sym_cmd_identifier_token9] = ACTIONS(1555), + [aux_sym_cmd_identifier_token10] = ACTIONS(1555), + [aux_sym_cmd_identifier_token11] = ACTIONS(1555), + [aux_sym_cmd_identifier_token12] = ACTIONS(1555), + [aux_sym_cmd_identifier_token13] = ACTIONS(1555), + [aux_sym_cmd_identifier_token14] = ACTIONS(1555), + [aux_sym_cmd_identifier_token15] = ACTIONS(1555), + [aux_sym_cmd_identifier_token16] = ACTIONS(1555), + [aux_sym_cmd_identifier_token17] = ACTIONS(1555), + [aux_sym_cmd_identifier_token18] = ACTIONS(1555), + [aux_sym_cmd_identifier_token19] = ACTIONS(1555), + [aux_sym_cmd_identifier_token20] = ACTIONS(1555), + [aux_sym_cmd_identifier_token21] = ACTIONS(1555), + [aux_sym_cmd_identifier_token22] = ACTIONS(1555), + [aux_sym_cmd_identifier_token23] = ACTIONS(1555), + [aux_sym_cmd_identifier_token24] = ACTIONS(1555), + [aux_sym_cmd_identifier_token25] = ACTIONS(1555), + [aux_sym_cmd_identifier_token26] = ACTIONS(1555), + [aux_sym_cmd_identifier_token27] = ACTIONS(1555), + [aux_sym_cmd_identifier_token28] = ACTIONS(1555), + [aux_sym_cmd_identifier_token29] = ACTIONS(1555), + [aux_sym_cmd_identifier_token30] = ACTIONS(1555), + [aux_sym_cmd_identifier_token31] = ACTIONS(1555), + [aux_sym_cmd_identifier_token32] = ACTIONS(1555), + [aux_sym_cmd_identifier_token33] = ACTIONS(1555), + [aux_sym_cmd_identifier_token34] = ACTIONS(1555), + [aux_sym_cmd_identifier_token35] = ACTIONS(1555), + [aux_sym_cmd_identifier_token36] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1555), + [anon_sym_false] = ACTIONS(1555), + [anon_sym_null] = ACTIONS(1555), + [aux_sym_cmd_identifier_token38] = ACTIONS(1555), + [aux_sym_cmd_identifier_token39] = ACTIONS(1555), + [aux_sym_cmd_identifier_token40] = ACTIONS(1555), + [anon_sym_def] = ACTIONS(1555), + [anon_sym_export_DASHenv] = ACTIONS(1555), + [anon_sym_extern] = ACTIONS(1555), + [anon_sym_module] = ACTIONS(1555), + [anon_sym_use] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1555), + [anon_sym_list] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_in] = ACTIONS(1555), + [anon_sym_loop] = ACTIONS(1555), + [anon_sym_make] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_else] = ACTIONS(1555), + [anon_sym_match] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_try] = ACTIONS(1555), + [anon_sym_catch] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_source] = ACTIONS(1555), + [anon_sym_source_DASHenv] = ACTIONS(1555), + [anon_sym_register] = ACTIONS(1555), + [anon_sym_hide] = ACTIONS(1555), + [anon_sym_hide_DASHenv] = ACTIONS(1555), + [anon_sym_overlay] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_as] = ACTIONS(1555), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1555), + [aux_sym__immediate_decimal_token1] = ACTIONS(1503), + [aux_sym__immediate_decimal_token3] = ACTIONS(1503), + [aux_sym__immediate_decimal_token4] = ACTIONS(1505), + [aux_sym__immediate_decimal_token5] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1555), + [aux_sym__val_number_decimal_token2] = ACTIONS(1555), + [aux_sym__val_number_decimal_token3] = ACTIONS(1555), + [aux_sym__val_number_decimal_token4] = ACTIONS(1555), + [aux_sym__val_number_token1] = ACTIONS(1555), + [aux_sym__val_number_token2] = ACTIONS(1555), + [aux_sym__val_number_token3] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [sym__str_single_quotes] = ACTIONS(1555), + [sym__str_back_ticks] = ACTIONS(1555), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1555), + [sym__entry_separator] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1555), [anon_sym_POUND] = ACTIONS(3), }, [209] = { - [sym__expr_parenthesized_immediate] = STATE(608), - [sym__immediate_decimal] = STATE(609), - [sym_val_variable] = STATE(608), + [sym__expr_parenthesized_immediate] = STATE(7625), [sym_comment] = STATE(209), - [anon_sym_export] = ACTIONS(1486), - [anon_sym_alias] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_let_DASHenv] = ACTIONS(1486), - [anon_sym_mut] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [aux_sym_cmd_identifier_token1] = ACTIONS(1486), - [aux_sym_cmd_identifier_token2] = ACTIONS(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [aux_sym_cmd_identifier_token6] = ACTIONS(1486), - [aux_sym_cmd_identifier_token7] = ACTIONS(1486), - [aux_sym_cmd_identifier_token8] = ACTIONS(1486), - [aux_sym_cmd_identifier_token9] = ACTIONS(1486), - [aux_sym_cmd_identifier_token10] = ACTIONS(1486), - [aux_sym_cmd_identifier_token11] = ACTIONS(1486), - [aux_sym_cmd_identifier_token12] = ACTIONS(1486), - [aux_sym_cmd_identifier_token13] = ACTIONS(1486), - [aux_sym_cmd_identifier_token14] = ACTIONS(1486), - [aux_sym_cmd_identifier_token15] = ACTIONS(1486), - [aux_sym_cmd_identifier_token16] = ACTIONS(1486), - [aux_sym_cmd_identifier_token17] = ACTIONS(1486), - [aux_sym_cmd_identifier_token18] = ACTIONS(1486), - [aux_sym_cmd_identifier_token19] = ACTIONS(1486), - [aux_sym_cmd_identifier_token20] = ACTIONS(1486), - [aux_sym_cmd_identifier_token21] = ACTIONS(1486), - [aux_sym_cmd_identifier_token22] = ACTIONS(1486), - [aux_sym_cmd_identifier_token23] = ACTIONS(1486), - [aux_sym_cmd_identifier_token24] = ACTIONS(1486), - [aux_sym_cmd_identifier_token25] = ACTIONS(1486), - [aux_sym_cmd_identifier_token26] = ACTIONS(1486), - [aux_sym_cmd_identifier_token27] = ACTIONS(1486), - [aux_sym_cmd_identifier_token28] = ACTIONS(1486), - [aux_sym_cmd_identifier_token29] = ACTIONS(1486), - [aux_sym_cmd_identifier_token30] = ACTIONS(1486), - [aux_sym_cmd_identifier_token31] = ACTIONS(1486), - [aux_sym_cmd_identifier_token32] = ACTIONS(1486), - [aux_sym_cmd_identifier_token33] = ACTIONS(1486), - [aux_sym_cmd_identifier_token34] = ACTIONS(1486), - [aux_sym_cmd_identifier_token35] = ACTIONS(1486), - [aux_sym_cmd_identifier_token36] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [anon_sym_null] = ACTIONS(1488), - [aux_sym_cmd_identifier_token38] = ACTIONS(1486), - [aux_sym_cmd_identifier_token39] = ACTIONS(1488), - [aux_sym_cmd_identifier_token40] = ACTIONS(1488), - [anon_sym_def] = ACTIONS(1486), - [anon_sym_export_DASHenv] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_module] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1490), - [anon_sym_error] = ACTIONS(1486), - [anon_sym_list] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_make] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_catch] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_source] = ACTIONS(1486), - [anon_sym_source_DASHenv] = ACTIONS(1486), - [anon_sym_register] = ACTIONS(1486), - [anon_sym_hide] = ACTIONS(1486), - [anon_sym_hide_DASHenv] = ACTIONS(1486), - [anon_sym_overlay] = ACTIONS(1486), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1488), - [anon_sym_DOT] = ACTIONS(1527), - [aux_sym__immediate_decimal_token1] = ACTIONS(1529), - [aux_sym__immediate_decimal_token3] = ACTIONS(1531), - [aux_sym__immediate_decimal_token4] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1488), - [aux_sym__val_number_decimal_token1] = ACTIONS(1486), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [anon_sym_DOT2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1488), - [aux_sym__val_number_token2] = ACTIONS(1488), - [aux_sym__val_number_token3] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym__str_single_quotes] = ACTIONS(1488), - [sym__str_back_ticks] = ACTIONS(1488), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1525), + [anon_sym_alias] = ACTIONS(1525), + [anon_sym_let] = ACTIONS(1525), + [anon_sym_let_DASHenv] = ACTIONS(1525), + [anon_sym_mut] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [aux_sym_cmd_identifier_token1] = ACTIONS(1525), + [aux_sym_cmd_identifier_token2] = ACTIONS(1525), + [aux_sym_cmd_identifier_token3] = ACTIONS(1525), + [aux_sym_cmd_identifier_token4] = ACTIONS(1525), + [aux_sym_cmd_identifier_token5] = ACTIONS(1525), + [aux_sym_cmd_identifier_token6] = ACTIONS(1525), + [aux_sym_cmd_identifier_token7] = ACTIONS(1525), + [aux_sym_cmd_identifier_token8] = ACTIONS(1525), + [aux_sym_cmd_identifier_token9] = ACTIONS(1525), + [aux_sym_cmd_identifier_token10] = ACTIONS(1525), + [aux_sym_cmd_identifier_token11] = ACTIONS(1525), + [aux_sym_cmd_identifier_token12] = ACTIONS(1525), + [aux_sym_cmd_identifier_token13] = ACTIONS(1525), + [aux_sym_cmd_identifier_token14] = ACTIONS(1525), + [aux_sym_cmd_identifier_token15] = ACTIONS(1525), + [aux_sym_cmd_identifier_token16] = ACTIONS(1525), + [aux_sym_cmd_identifier_token17] = ACTIONS(1525), + [aux_sym_cmd_identifier_token18] = ACTIONS(1525), + [aux_sym_cmd_identifier_token19] = ACTIONS(1525), + [aux_sym_cmd_identifier_token20] = ACTIONS(1525), + [aux_sym_cmd_identifier_token21] = ACTIONS(1525), + [aux_sym_cmd_identifier_token22] = ACTIONS(1525), + [aux_sym_cmd_identifier_token23] = ACTIONS(1525), + [aux_sym_cmd_identifier_token24] = ACTIONS(1525), + [aux_sym_cmd_identifier_token25] = ACTIONS(1525), + [aux_sym_cmd_identifier_token26] = ACTIONS(1525), + [aux_sym_cmd_identifier_token27] = ACTIONS(1525), + [aux_sym_cmd_identifier_token28] = ACTIONS(1525), + [aux_sym_cmd_identifier_token29] = ACTIONS(1525), + [aux_sym_cmd_identifier_token30] = ACTIONS(1525), + [aux_sym_cmd_identifier_token31] = ACTIONS(1525), + [aux_sym_cmd_identifier_token32] = ACTIONS(1525), + [aux_sym_cmd_identifier_token33] = ACTIONS(1525), + [aux_sym_cmd_identifier_token34] = ACTIONS(1525), + [aux_sym_cmd_identifier_token35] = ACTIONS(1525), + [aux_sym_cmd_identifier_token36] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [aux_sym_cmd_identifier_token38] = ACTIONS(1525), + [aux_sym_cmd_identifier_token39] = ACTIONS(1537), + [aux_sym_cmd_identifier_token40] = ACTIONS(1537), + [anon_sym_def] = ACTIONS(1525), + [anon_sym_export_DASHenv] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym_module] = ACTIONS(1525), + [anon_sym_use] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_error] = ACTIONS(1525), + [anon_sym_list] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [anon_sym_loop] = ACTIONS(1525), + [anon_sym_make] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_catch] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_source] = ACTIONS(1525), + [anon_sym_source_DASHenv] = ACTIONS(1525), + [anon_sym_register] = ACTIONS(1525), + [anon_sym_hide] = ACTIONS(1525), + [anon_sym_hide_DASHenv] = ACTIONS(1525), + [anon_sym_overlay] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(1559), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1561), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1561), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1537), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), + [aux_sym__val_number_token1] = ACTIONS(1537), + [aux_sym__val_number_token2] = ACTIONS(1537), + [aux_sym__val_number_token3] = ACTIONS(1537), + [sym_filesize_unit] = ACTIONS(1563), + [sym_duration_unit] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1537), + [sym__str_single_quotes] = ACTIONS(1537), + [sym__str_back_ticks] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1525), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(247), }, [210] = { [sym_comment] = STATE(210), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1535), - [aux_sym_cmd_identifier_token40] = ACTIONS(1535), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(1539), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1535), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1535), - [aux_sym__val_number_token1] = ACTIONS(1535), - [aux_sym__val_number_token2] = ACTIONS(1535), - [aux_sym__val_number_token3] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym__str_single_quotes] = ACTIONS(1535), - [sym__str_back_ticks] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1535), - [sym__entry_separator] = ACTIONS(1537), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1569), + [aux_sym_cmd_identifier_token40] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(1573), + [aux_sym__immediate_decimal_token2] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1569), + [aux_sym__val_number_token2] = ACTIONS(1569), + [aux_sym__val_number_token3] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), }, [211] = { [sym_comment] = STATE(211), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_alias] = ACTIONS(1504), - [anon_sym_let] = ACTIONS(1504), - [anon_sym_let_DASHenv] = ACTIONS(1504), - [anon_sym_mut] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [aux_sym_cmd_identifier_token1] = ACTIONS(1504), - [aux_sym_cmd_identifier_token2] = ACTIONS(1504), - [aux_sym_cmd_identifier_token3] = ACTIONS(1504), - [aux_sym_cmd_identifier_token4] = ACTIONS(1504), - [aux_sym_cmd_identifier_token5] = ACTIONS(1504), - [aux_sym_cmd_identifier_token6] = ACTIONS(1504), - [aux_sym_cmd_identifier_token7] = ACTIONS(1504), - [aux_sym_cmd_identifier_token8] = ACTIONS(1504), - [aux_sym_cmd_identifier_token9] = ACTIONS(1504), - [aux_sym_cmd_identifier_token10] = ACTIONS(1504), - [aux_sym_cmd_identifier_token11] = ACTIONS(1504), - [aux_sym_cmd_identifier_token12] = ACTIONS(1504), - [aux_sym_cmd_identifier_token13] = ACTIONS(1504), - [aux_sym_cmd_identifier_token14] = ACTIONS(1504), - [aux_sym_cmd_identifier_token15] = ACTIONS(1504), - [aux_sym_cmd_identifier_token16] = ACTIONS(1504), - [aux_sym_cmd_identifier_token17] = ACTIONS(1504), - [aux_sym_cmd_identifier_token18] = ACTIONS(1504), - [aux_sym_cmd_identifier_token19] = ACTIONS(1504), - [aux_sym_cmd_identifier_token20] = ACTIONS(1504), - [aux_sym_cmd_identifier_token21] = ACTIONS(1504), - [aux_sym_cmd_identifier_token22] = ACTIONS(1504), - [aux_sym_cmd_identifier_token23] = ACTIONS(1504), - [aux_sym_cmd_identifier_token24] = ACTIONS(1504), - [aux_sym_cmd_identifier_token25] = ACTIONS(1504), - [aux_sym_cmd_identifier_token26] = ACTIONS(1504), - [aux_sym_cmd_identifier_token27] = ACTIONS(1504), - [aux_sym_cmd_identifier_token28] = ACTIONS(1504), - [aux_sym_cmd_identifier_token29] = ACTIONS(1504), - [aux_sym_cmd_identifier_token30] = ACTIONS(1504), - [aux_sym_cmd_identifier_token31] = ACTIONS(1504), - [aux_sym_cmd_identifier_token32] = ACTIONS(1504), - [aux_sym_cmd_identifier_token33] = ACTIONS(1504), - [aux_sym_cmd_identifier_token34] = ACTIONS(1504), - [aux_sym_cmd_identifier_token35] = ACTIONS(1504), - [aux_sym_cmd_identifier_token36] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1504), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [anon_sym_def] = ACTIONS(1504), - [anon_sym_export_DASHenv] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_use] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_error] = ACTIONS(1504), - [anon_sym_list] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_in] = ACTIONS(1504), - [anon_sym_loop] = ACTIONS(1504), - [anon_sym_make] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_else] = ACTIONS(1504), - [anon_sym_match] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_try] = ACTIONS(1504), - [anon_sym_catch] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_source] = ACTIONS(1504), - [anon_sym_source_DASHenv] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_hide] = ACTIONS(1504), - [anon_sym_hide_DASHenv] = ACTIONS(1504), - [anon_sym_overlay] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_as] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1506), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [sym_filesize_unit] = ACTIONS(1504), - [sym_duration_unit] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1506), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1504), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token3] = ACTIONS(1473), + [aux_sym_cmd_identifier_token4] = ACTIONS(1473), + [aux_sym_cmd_identifier_token5] = ACTIONS(1473), + [aux_sym_cmd_identifier_token6] = ACTIONS(1473), + [aux_sym_cmd_identifier_token7] = ACTIONS(1473), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1473), + [aux_sym_cmd_identifier_token11] = ACTIONS(1473), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1473), + [aux_sym_cmd_identifier_token17] = ACTIONS(1473), + [aux_sym_cmd_identifier_token18] = ACTIONS(1473), + [aux_sym_cmd_identifier_token19] = ACTIONS(1473), + [aux_sym_cmd_identifier_token20] = ACTIONS(1473), + [aux_sym_cmd_identifier_token21] = ACTIONS(1473), + [aux_sym_cmd_identifier_token22] = ACTIONS(1473), + [aux_sym_cmd_identifier_token23] = ACTIONS(1473), + [aux_sym_cmd_identifier_token24] = ACTIONS(1473), + [aux_sym_cmd_identifier_token25] = ACTIONS(1473), + [aux_sym_cmd_identifier_token26] = ACTIONS(1473), + [aux_sym_cmd_identifier_token27] = ACTIONS(1473), + [aux_sym_cmd_identifier_token28] = ACTIONS(1473), + [aux_sym_cmd_identifier_token29] = ACTIONS(1473), + [aux_sym_cmd_identifier_token30] = ACTIONS(1473), + [aux_sym_cmd_identifier_token31] = ACTIONS(1473), + [aux_sym_cmd_identifier_token32] = ACTIONS(1473), + [aux_sym_cmd_identifier_token33] = ACTIONS(1473), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1473), + [aux_sym_cmd_identifier_token36] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1473), + [aux_sym_cmd_identifier_token40] = ACTIONS(1473), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_list] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_new] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1473), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1473), + [aux_sym__val_number_decimal_token4] = ACTIONS(1473), + [aux_sym__val_number_token1] = ACTIONS(1473), + [aux_sym__val_number_token2] = ACTIONS(1473), + [aux_sym__val_number_token3] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1473), + [sym_duration_unit] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym__str_single_quotes] = ACTIONS(1473), + [sym__str_back_ticks] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1473), + [sym__entry_separator] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1473), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), [anon_sym_POUND] = ACTIONS(3), }, [212] = { + [sym__expr_parenthesized_immediate] = STATE(615), + [sym__immediate_decimal] = STATE(616), + [sym_val_variable] = STATE(615), [sym_comment] = STATE(212), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(1476), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_let_DASHenv] = ACTIONS(1551), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [aux_sym_cmd_identifier_token1] = ACTIONS(1551), + [aux_sym_cmd_identifier_token2] = ACTIONS(1551), + [aux_sym_cmd_identifier_token3] = ACTIONS(1551), + [aux_sym_cmd_identifier_token4] = ACTIONS(1551), + [aux_sym_cmd_identifier_token5] = ACTIONS(1551), + [aux_sym_cmd_identifier_token6] = ACTIONS(1551), + [aux_sym_cmd_identifier_token7] = ACTIONS(1551), + [aux_sym_cmd_identifier_token8] = ACTIONS(1551), + [aux_sym_cmd_identifier_token9] = ACTIONS(1551), + [aux_sym_cmd_identifier_token10] = ACTIONS(1551), + [aux_sym_cmd_identifier_token11] = ACTIONS(1551), + [aux_sym_cmd_identifier_token12] = ACTIONS(1551), + [aux_sym_cmd_identifier_token13] = ACTIONS(1551), + [aux_sym_cmd_identifier_token14] = ACTIONS(1551), + [aux_sym_cmd_identifier_token15] = ACTIONS(1551), + [aux_sym_cmd_identifier_token16] = ACTIONS(1551), + [aux_sym_cmd_identifier_token17] = ACTIONS(1551), + [aux_sym_cmd_identifier_token18] = ACTIONS(1551), + [aux_sym_cmd_identifier_token19] = ACTIONS(1551), + [aux_sym_cmd_identifier_token20] = ACTIONS(1551), + [aux_sym_cmd_identifier_token21] = ACTIONS(1551), + [aux_sym_cmd_identifier_token22] = ACTIONS(1551), + [aux_sym_cmd_identifier_token23] = ACTIONS(1551), + [aux_sym_cmd_identifier_token24] = ACTIONS(1551), + [aux_sym_cmd_identifier_token25] = ACTIONS(1551), + [aux_sym_cmd_identifier_token26] = ACTIONS(1551), + [aux_sym_cmd_identifier_token27] = ACTIONS(1551), + [aux_sym_cmd_identifier_token28] = ACTIONS(1551), + [aux_sym_cmd_identifier_token29] = ACTIONS(1551), + [aux_sym_cmd_identifier_token30] = ACTIONS(1551), + [aux_sym_cmd_identifier_token31] = ACTIONS(1551), + [aux_sym_cmd_identifier_token32] = ACTIONS(1551), + [aux_sym_cmd_identifier_token33] = ACTIONS(1551), + [aux_sym_cmd_identifier_token34] = ACTIONS(1551), + [aux_sym_cmd_identifier_token35] = ACTIONS(1551), + [aux_sym_cmd_identifier_token36] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [aux_sym_cmd_identifier_token38] = ACTIONS(1551), + [aux_sym_cmd_identifier_token39] = ACTIONS(1553), + [aux_sym_cmd_identifier_token40] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1551), + [anon_sym_export_DASHenv] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_module] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1551), + [anon_sym_list] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_make] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_do] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_source] = ACTIONS(1551), + [anon_sym_source_DASHenv] = ACTIONS(1551), + [anon_sym_register] = ACTIONS(1551), + [anon_sym_hide] = ACTIONS(1551), + [anon_sym_hide_DASHenv] = ACTIONS(1551), + [anon_sym_overlay] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1553), + [aux_sym__immediate_decimal_token1] = ACTIONS(1577), + [aux_sym__immediate_decimal_token3] = ACTIONS(1579), + [aux_sym__immediate_decimal_token4] = ACTIONS(1581), + [aux_sym__immediate_decimal_token5] = ACTIONS(1583), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1553), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_decimal_token2] = ACTIONS(1551), + [aux_sym__val_number_decimal_token3] = ACTIONS(1551), + [aux_sym__val_number_decimal_token4] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1553), + [aux_sym__val_number_token2] = ACTIONS(1553), + [aux_sym__val_number_token3] = ACTIONS(1553), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(247), }, [213] = { + [sym__expr_parenthesized_immediate] = STATE(618), + [sym__immediate_decimal] = STATE(619), + [sym_val_variable] = STATE(618), [sym_comment] = STATE(213), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(1541), - [aux_sym__immediate_decimal_token2] = ACTIONS(1543), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1555), + [anon_sym_alias] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_let_DASHenv] = ACTIONS(1555), + [anon_sym_mut] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [aux_sym_cmd_identifier_token1] = ACTIONS(1555), + [aux_sym_cmd_identifier_token2] = ACTIONS(1555), + [aux_sym_cmd_identifier_token3] = ACTIONS(1555), + [aux_sym_cmd_identifier_token4] = ACTIONS(1555), + [aux_sym_cmd_identifier_token5] = ACTIONS(1555), + [aux_sym_cmd_identifier_token6] = ACTIONS(1555), + [aux_sym_cmd_identifier_token7] = ACTIONS(1555), + [aux_sym_cmd_identifier_token8] = ACTIONS(1555), + [aux_sym_cmd_identifier_token9] = ACTIONS(1555), + [aux_sym_cmd_identifier_token10] = ACTIONS(1555), + [aux_sym_cmd_identifier_token11] = ACTIONS(1555), + [aux_sym_cmd_identifier_token12] = ACTIONS(1555), + [aux_sym_cmd_identifier_token13] = ACTIONS(1555), + [aux_sym_cmd_identifier_token14] = ACTIONS(1555), + [aux_sym_cmd_identifier_token15] = ACTIONS(1555), + [aux_sym_cmd_identifier_token16] = ACTIONS(1555), + [aux_sym_cmd_identifier_token17] = ACTIONS(1555), + [aux_sym_cmd_identifier_token18] = ACTIONS(1555), + [aux_sym_cmd_identifier_token19] = ACTIONS(1555), + [aux_sym_cmd_identifier_token20] = ACTIONS(1555), + [aux_sym_cmd_identifier_token21] = ACTIONS(1555), + [aux_sym_cmd_identifier_token22] = ACTIONS(1555), + [aux_sym_cmd_identifier_token23] = ACTIONS(1555), + [aux_sym_cmd_identifier_token24] = ACTIONS(1555), + [aux_sym_cmd_identifier_token25] = ACTIONS(1555), + [aux_sym_cmd_identifier_token26] = ACTIONS(1555), + [aux_sym_cmd_identifier_token27] = ACTIONS(1555), + [aux_sym_cmd_identifier_token28] = ACTIONS(1555), + [aux_sym_cmd_identifier_token29] = ACTIONS(1555), + [aux_sym_cmd_identifier_token30] = ACTIONS(1555), + [aux_sym_cmd_identifier_token31] = ACTIONS(1555), + [aux_sym_cmd_identifier_token32] = ACTIONS(1555), + [aux_sym_cmd_identifier_token33] = ACTIONS(1555), + [aux_sym_cmd_identifier_token34] = ACTIONS(1555), + [aux_sym_cmd_identifier_token35] = ACTIONS(1555), + [aux_sym_cmd_identifier_token36] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [aux_sym_cmd_identifier_token38] = ACTIONS(1555), + [aux_sym_cmd_identifier_token39] = ACTIONS(1557), + [aux_sym_cmd_identifier_token40] = ACTIONS(1557), + [anon_sym_def] = ACTIONS(1555), + [anon_sym_export_DASHenv] = ACTIONS(1555), + [anon_sym_extern] = ACTIONS(1555), + [anon_sym_module] = ACTIONS(1555), + [anon_sym_use] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1555), + [anon_sym_list] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_in] = ACTIONS(1555), + [anon_sym_loop] = ACTIONS(1555), + [anon_sym_make] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_else] = ACTIONS(1555), + [anon_sym_match] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1555), + [anon_sym_catch] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_source] = ACTIONS(1555), + [anon_sym_source_DASHenv] = ACTIONS(1555), + [anon_sym_register] = ACTIONS(1555), + [anon_sym_hide] = ACTIONS(1555), + [anon_sym_hide_DASHenv] = ACTIONS(1555), + [anon_sym_overlay] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_as] = ACTIONS(1555), + [anon_sym_LPAREN2] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(1577), + [aux_sym__immediate_decimal_token3] = ACTIONS(1579), + [aux_sym__immediate_decimal_token4] = ACTIONS(1581), + [aux_sym__immediate_decimal_token5] = ACTIONS(1583), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1555), + [aux_sym__val_number_decimal_token2] = ACTIONS(1555), + [aux_sym__val_number_decimal_token3] = ACTIONS(1555), + [aux_sym__val_number_decimal_token4] = ACTIONS(1555), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_POUND] = ACTIONS(247), }, [214] = { - [sym__expr_parenthesized_immediate] = STATE(604), - [sym__immediate_decimal] = STATE(605), - [sym_val_variable] = STATE(604), [sym_comment] = STATE(214), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_alias] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_let_DASHenv] = ACTIONS(1482), - [anon_sym_mut] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [aux_sym_cmd_identifier_token1] = ACTIONS(1482), - [aux_sym_cmd_identifier_token2] = ACTIONS(1482), - [aux_sym_cmd_identifier_token3] = ACTIONS(1482), - [aux_sym_cmd_identifier_token4] = ACTIONS(1482), - [aux_sym_cmd_identifier_token5] = ACTIONS(1482), - [aux_sym_cmd_identifier_token6] = ACTIONS(1482), - [aux_sym_cmd_identifier_token7] = ACTIONS(1482), - [aux_sym_cmd_identifier_token8] = ACTIONS(1482), - [aux_sym_cmd_identifier_token9] = ACTIONS(1482), - [aux_sym_cmd_identifier_token10] = ACTIONS(1482), - [aux_sym_cmd_identifier_token11] = ACTIONS(1482), - [aux_sym_cmd_identifier_token12] = ACTIONS(1482), - [aux_sym_cmd_identifier_token13] = ACTIONS(1482), - [aux_sym_cmd_identifier_token14] = ACTIONS(1482), - [aux_sym_cmd_identifier_token15] = ACTIONS(1482), - [aux_sym_cmd_identifier_token16] = ACTIONS(1482), - [aux_sym_cmd_identifier_token17] = ACTIONS(1482), - [aux_sym_cmd_identifier_token18] = ACTIONS(1482), - [aux_sym_cmd_identifier_token19] = ACTIONS(1482), - [aux_sym_cmd_identifier_token20] = ACTIONS(1482), - [aux_sym_cmd_identifier_token21] = ACTIONS(1482), - [aux_sym_cmd_identifier_token22] = ACTIONS(1482), - [aux_sym_cmd_identifier_token23] = ACTIONS(1482), - [aux_sym_cmd_identifier_token24] = ACTIONS(1482), - [aux_sym_cmd_identifier_token25] = ACTIONS(1482), - [aux_sym_cmd_identifier_token26] = ACTIONS(1482), - [aux_sym_cmd_identifier_token27] = ACTIONS(1482), - [aux_sym_cmd_identifier_token28] = ACTIONS(1482), - [aux_sym_cmd_identifier_token29] = ACTIONS(1482), - [aux_sym_cmd_identifier_token30] = ACTIONS(1482), - [aux_sym_cmd_identifier_token31] = ACTIONS(1482), - [aux_sym_cmd_identifier_token32] = ACTIONS(1482), - [aux_sym_cmd_identifier_token33] = ACTIONS(1482), - [aux_sym_cmd_identifier_token34] = ACTIONS(1482), - [aux_sym_cmd_identifier_token35] = ACTIONS(1482), - [aux_sym_cmd_identifier_token36] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token38] = ACTIONS(1482), - [aux_sym_cmd_identifier_token39] = ACTIONS(1484), - [aux_sym_cmd_identifier_token40] = ACTIONS(1484), - [anon_sym_def] = ACTIONS(1482), - [anon_sym_export_DASHenv] = ACTIONS(1482), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1490), - [anon_sym_error] = ACTIONS(1482), - [anon_sym_list] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_in] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_make] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_else] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(1482), - [anon_sym_catch] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_source] = ACTIONS(1482), - [anon_sym_source_DASHenv] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(1482), - [anon_sym_hide] = ACTIONS(1482), - [anon_sym_hide_DASHenv] = ACTIONS(1482), - [anon_sym_overlay] = ACTIONS(1482), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_as] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1484), - [anon_sym_DOT] = ACTIONS(1527), - [aux_sym__immediate_decimal_token1] = ACTIONS(1529), - [aux_sym__immediate_decimal_token3] = ACTIONS(1531), - [aux_sym__immediate_decimal_token4] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1484), - [aux_sym__val_number_decimal_token1] = ACTIONS(1482), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [anon_sym_DOT2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(1484), - [aux_sym__val_number_token2] = ACTIONS(1484), - [aux_sym__val_number_token3] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym__str_single_quotes] = ACTIONS(1484), - [sym__str_back_ticks] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1484), + [anon_sym_export] = ACTIONS(1481), + [anon_sym_alias] = ACTIONS(1481), + [anon_sym_let] = ACTIONS(1481), + [anon_sym_let_DASHenv] = ACTIONS(1481), + [anon_sym_mut] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [aux_sym_cmd_identifier_token1] = ACTIONS(1481), + [aux_sym_cmd_identifier_token2] = ACTIONS(1481), + [aux_sym_cmd_identifier_token3] = ACTIONS(1481), + [aux_sym_cmd_identifier_token4] = ACTIONS(1481), + [aux_sym_cmd_identifier_token5] = ACTIONS(1481), + [aux_sym_cmd_identifier_token6] = ACTIONS(1481), + [aux_sym_cmd_identifier_token7] = ACTIONS(1481), + [aux_sym_cmd_identifier_token8] = ACTIONS(1481), + [aux_sym_cmd_identifier_token9] = ACTIONS(1481), + [aux_sym_cmd_identifier_token10] = ACTIONS(1481), + [aux_sym_cmd_identifier_token11] = ACTIONS(1481), + [aux_sym_cmd_identifier_token12] = ACTIONS(1481), + [aux_sym_cmd_identifier_token13] = ACTIONS(1481), + [aux_sym_cmd_identifier_token14] = ACTIONS(1481), + [aux_sym_cmd_identifier_token15] = ACTIONS(1481), + [aux_sym_cmd_identifier_token16] = ACTIONS(1481), + [aux_sym_cmd_identifier_token17] = ACTIONS(1481), + [aux_sym_cmd_identifier_token18] = ACTIONS(1481), + [aux_sym_cmd_identifier_token19] = ACTIONS(1481), + [aux_sym_cmd_identifier_token20] = ACTIONS(1481), + [aux_sym_cmd_identifier_token21] = ACTIONS(1481), + [aux_sym_cmd_identifier_token22] = ACTIONS(1481), + [aux_sym_cmd_identifier_token23] = ACTIONS(1481), + [aux_sym_cmd_identifier_token24] = ACTIONS(1481), + [aux_sym_cmd_identifier_token25] = ACTIONS(1481), + [aux_sym_cmd_identifier_token26] = ACTIONS(1481), + [aux_sym_cmd_identifier_token27] = ACTIONS(1481), + [aux_sym_cmd_identifier_token28] = ACTIONS(1481), + [aux_sym_cmd_identifier_token29] = ACTIONS(1481), + [aux_sym_cmd_identifier_token30] = ACTIONS(1481), + [aux_sym_cmd_identifier_token31] = ACTIONS(1481), + [aux_sym_cmd_identifier_token32] = ACTIONS(1481), + [aux_sym_cmd_identifier_token33] = ACTIONS(1481), + [aux_sym_cmd_identifier_token34] = ACTIONS(1481), + [aux_sym_cmd_identifier_token35] = ACTIONS(1481), + [aux_sym_cmd_identifier_token36] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [aux_sym_cmd_identifier_token38] = ACTIONS(1481), + [aux_sym_cmd_identifier_token39] = ACTIONS(1481), + [aux_sym_cmd_identifier_token40] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_export_DASHenv] = ACTIONS(1481), + [anon_sym_extern] = ACTIONS(1481), + [anon_sym_module] = ACTIONS(1481), + [anon_sym_use] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_error] = ACTIONS(1481), + [anon_sym_list] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_in] = ACTIONS(1481), + [anon_sym_loop] = ACTIONS(1481), + [anon_sym_make] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1481), + [anon_sym_catch] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_source] = ACTIONS(1481), + [anon_sym_source_DASHenv] = ACTIONS(1481), + [anon_sym_register] = ACTIONS(1481), + [anon_sym_hide] = ACTIONS(1481), + [anon_sym_hide_DASHenv] = ACTIONS(1481), + [anon_sym_overlay] = ACTIONS(1481), + [anon_sym_new] = ACTIONS(1481), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1481), + [aux_sym__val_number_decimal_token3] = ACTIONS(1481), + [aux_sym__val_number_decimal_token4] = ACTIONS(1481), + [aux_sym__val_number_token1] = ACTIONS(1481), + [aux_sym__val_number_token2] = ACTIONS(1481), + [aux_sym__val_number_token3] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1481), + [sym_duration_unit] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym__str_single_quotes] = ACTIONS(1481), + [sym__str_back_ticks] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1481), + [sym__entry_separator] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1481), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1481), [anon_sym_POUND] = ACTIONS(3), }, [215] = { - [sym_cell_path] = STATE(384), - [sym_path] = STATE(293), + [sym__expr_parenthesized_immediate] = STATE(621), + [sym__immediate_decimal] = STATE(623), + [sym_val_variable] = STATE(621), [sym_comment] = STATE(215), - [aux_sym_cell_path_repeat1] = STATE(228), - [anon_sym_export] = ACTIONS(1545), - [anon_sym_alias] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_let_DASHenv] = ACTIONS(1545), - [anon_sym_mut] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [aux_sym_cmd_identifier_token1] = ACTIONS(1545), - [aux_sym_cmd_identifier_token2] = ACTIONS(1545), - [aux_sym_cmd_identifier_token3] = ACTIONS(1545), - [aux_sym_cmd_identifier_token4] = ACTIONS(1545), - [aux_sym_cmd_identifier_token5] = ACTIONS(1545), - [aux_sym_cmd_identifier_token6] = ACTIONS(1545), - [aux_sym_cmd_identifier_token7] = ACTIONS(1545), - [aux_sym_cmd_identifier_token8] = ACTIONS(1545), - [aux_sym_cmd_identifier_token9] = ACTIONS(1545), - [aux_sym_cmd_identifier_token10] = ACTIONS(1545), - [aux_sym_cmd_identifier_token11] = ACTIONS(1545), - [aux_sym_cmd_identifier_token12] = ACTIONS(1545), - [aux_sym_cmd_identifier_token13] = ACTIONS(1545), - [aux_sym_cmd_identifier_token14] = ACTIONS(1545), - [aux_sym_cmd_identifier_token15] = ACTIONS(1545), - [aux_sym_cmd_identifier_token16] = ACTIONS(1545), - [aux_sym_cmd_identifier_token17] = ACTIONS(1545), - [aux_sym_cmd_identifier_token18] = ACTIONS(1545), - [aux_sym_cmd_identifier_token19] = ACTIONS(1545), - [aux_sym_cmd_identifier_token20] = ACTIONS(1545), - [aux_sym_cmd_identifier_token21] = ACTIONS(1545), - [aux_sym_cmd_identifier_token22] = ACTIONS(1545), - [aux_sym_cmd_identifier_token23] = ACTIONS(1545), - [aux_sym_cmd_identifier_token24] = ACTIONS(1545), - [aux_sym_cmd_identifier_token25] = ACTIONS(1545), - [aux_sym_cmd_identifier_token26] = ACTIONS(1545), - [aux_sym_cmd_identifier_token27] = ACTIONS(1545), - [aux_sym_cmd_identifier_token28] = ACTIONS(1545), - [aux_sym_cmd_identifier_token29] = ACTIONS(1545), - [aux_sym_cmd_identifier_token30] = ACTIONS(1545), - [aux_sym_cmd_identifier_token31] = ACTIONS(1545), - [aux_sym_cmd_identifier_token32] = ACTIONS(1545), - [aux_sym_cmd_identifier_token33] = ACTIONS(1545), - [aux_sym_cmd_identifier_token34] = ACTIONS(1545), - [aux_sym_cmd_identifier_token35] = ACTIONS(1545), - [aux_sym_cmd_identifier_token36] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [anon_sym_null] = ACTIONS(1545), - [aux_sym_cmd_identifier_token38] = ACTIONS(1545), - [aux_sym_cmd_identifier_token39] = ACTIONS(1545), - [aux_sym_cmd_identifier_token40] = ACTIONS(1545), - [anon_sym_def] = ACTIONS(1545), - [anon_sym_export_DASHenv] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_module] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_error] = ACTIONS(1545), - [anon_sym_list] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_make] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_else] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_catch] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_source] = ACTIONS(1545), - [anon_sym_source_DASHenv] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_hide] = ACTIONS(1545), - [anon_sym_hide_DASHenv] = ACTIONS(1545), - [anon_sym_overlay] = ACTIONS(1545), - [anon_sym_new] = ACTIONS(1545), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1545), - [aux_sym__val_number_decimal_token1] = ACTIONS(1545), - [aux_sym__val_number_decimal_token2] = ACTIONS(1545), - [anon_sym_DOT2] = ACTIONS(1545), - [aux_sym__val_number_decimal_token3] = ACTIONS(1545), - [aux_sym__val_number_token1] = ACTIONS(1545), - [aux_sym__val_number_token2] = ACTIONS(1545), - [aux_sym__val_number_token3] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym__str_single_quotes] = ACTIONS(1545), - [sym__str_back_ticks] = ACTIONS(1545), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1545), - [sym__entry_separator] = ACTIONS(1549), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1501), + [anon_sym_alias] = ACTIONS(1501), + [anon_sym_let] = ACTIONS(1501), + [anon_sym_let_DASHenv] = ACTIONS(1501), + [anon_sym_mut] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [aux_sym_cmd_identifier_token1] = ACTIONS(1501), + [aux_sym_cmd_identifier_token2] = ACTIONS(1501), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [aux_sym_cmd_identifier_token6] = ACTIONS(1501), + [aux_sym_cmd_identifier_token7] = ACTIONS(1501), + [aux_sym_cmd_identifier_token8] = ACTIONS(1501), + [aux_sym_cmd_identifier_token9] = ACTIONS(1501), + [aux_sym_cmd_identifier_token10] = ACTIONS(1501), + [aux_sym_cmd_identifier_token11] = ACTIONS(1501), + [aux_sym_cmd_identifier_token12] = ACTIONS(1501), + [aux_sym_cmd_identifier_token13] = ACTIONS(1501), + [aux_sym_cmd_identifier_token14] = ACTIONS(1501), + [aux_sym_cmd_identifier_token15] = ACTIONS(1501), + [aux_sym_cmd_identifier_token16] = ACTIONS(1501), + [aux_sym_cmd_identifier_token17] = ACTIONS(1501), + [aux_sym_cmd_identifier_token18] = ACTIONS(1501), + [aux_sym_cmd_identifier_token19] = ACTIONS(1501), + [aux_sym_cmd_identifier_token20] = ACTIONS(1501), + [aux_sym_cmd_identifier_token21] = ACTIONS(1501), + [aux_sym_cmd_identifier_token22] = ACTIONS(1501), + [aux_sym_cmd_identifier_token23] = ACTIONS(1501), + [aux_sym_cmd_identifier_token24] = ACTIONS(1501), + [aux_sym_cmd_identifier_token25] = ACTIONS(1501), + [aux_sym_cmd_identifier_token26] = ACTIONS(1501), + [aux_sym_cmd_identifier_token27] = ACTIONS(1501), + [aux_sym_cmd_identifier_token28] = ACTIONS(1501), + [aux_sym_cmd_identifier_token29] = ACTIONS(1501), + [aux_sym_cmd_identifier_token30] = ACTIONS(1501), + [aux_sym_cmd_identifier_token31] = ACTIONS(1501), + [aux_sym_cmd_identifier_token32] = ACTIONS(1501), + [aux_sym_cmd_identifier_token33] = ACTIONS(1501), + [aux_sym_cmd_identifier_token34] = ACTIONS(1501), + [aux_sym_cmd_identifier_token35] = ACTIONS(1501), + [aux_sym_cmd_identifier_token36] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [aux_sym_cmd_identifier_token38] = ACTIONS(1501), + [aux_sym_cmd_identifier_token39] = ACTIONS(1509), + [aux_sym_cmd_identifier_token40] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1501), + [anon_sym_export_DASHenv] = ACTIONS(1501), + [anon_sym_extern] = ACTIONS(1501), + [anon_sym_module] = ACTIONS(1501), + [anon_sym_use] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1501), + [anon_sym_list] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_loop] = ACTIONS(1501), + [anon_sym_make] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_else] = ACTIONS(1501), + [anon_sym_match] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1501), + [anon_sym_catch] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_source] = ACTIONS(1501), + [anon_sym_source_DASHenv] = ACTIONS(1501), + [anon_sym_register] = ACTIONS(1501), + [anon_sym_hide] = ACTIONS(1501), + [anon_sym_hide_DASHenv] = ACTIONS(1501), + [anon_sym_overlay] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_as] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1509), + [aux_sym__immediate_decimal_token1] = ACTIONS(1577), + [aux_sym__immediate_decimal_token3] = ACTIONS(1579), + [aux_sym__immediate_decimal_token4] = ACTIONS(1581), + [aux_sym__immediate_decimal_token5] = ACTIONS(1583), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1509), + [aux_sym__val_number_decimal_token1] = ACTIONS(1501), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(247), }, [216] = { - [sym_cell_path] = STATE(416), - [sym_path] = STATE(293), [sym_comment] = STATE(216), - [aux_sym_cell_path_repeat1] = STATE(228), - [anon_sym_export] = ACTIONS(883), - [anon_sym_alias] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_let_DASHenv] = ACTIONS(883), - [anon_sym_mut] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [aux_sym_cmd_identifier_token1] = ACTIONS(883), - [aux_sym_cmd_identifier_token2] = ACTIONS(883), - [aux_sym_cmd_identifier_token3] = ACTIONS(883), - [aux_sym_cmd_identifier_token4] = ACTIONS(883), - [aux_sym_cmd_identifier_token5] = ACTIONS(883), - [aux_sym_cmd_identifier_token6] = ACTIONS(883), - [aux_sym_cmd_identifier_token7] = ACTIONS(883), - [aux_sym_cmd_identifier_token8] = ACTIONS(883), - [aux_sym_cmd_identifier_token9] = ACTIONS(883), - [aux_sym_cmd_identifier_token10] = ACTIONS(883), - [aux_sym_cmd_identifier_token11] = ACTIONS(883), - [aux_sym_cmd_identifier_token12] = ACTIONS(883), - [aux_sym_cmd_identifier_token13] = ACTIONS(883), - [aux_sym_cmd_identifier_token14] = ACTIONS(883), - [aux_sym_cmd_identifier_token15] = ACTIONS(883), - [aux_sym_cmd_identifier_token16] = ACTIONS(883), - [aux_sym_cmd_identifier_token17] = ACTIONS(883), - [aux_sym_cmd_identifier_token18] = ACTIONS(883), - [aux_sym_cmd_identifier_token19] = ACTIONS(883), - [aux_sym_cmd_identifier_token20] = ACTIONS(883), - [aux_sym_cmd_identifier_token21] = ACTIONS(883), - [aux_sym_cmd_identifier_token22] = ACTIONS(883), - [aux_sym_cmd_identifier_token23] = ACTIONS(883), - [aux_sym_cmd_identifier_token24] = ACTIONS(883), - [aux_sym_cmd_identifier_token25] = ACTIONS(883), - [aux_sym_cmd_identifier_token26] = ACTIONS(883), - [aux_sym_cmd_identifier_token27] = ACTIONS(883), - [aux_sym_cmd_identifier_token28] = ACTIONS(883), - [aux_sym_cmd_identifier_token29] = ACTIONS(883), - [aux_sym_cmd_identifier_token30] = ACTIONS(883), - [aux_sym_cmd_identifier_token31] = ACTIONS(883), - [aux_sym_cmd_identifier_token32] = ACTIONS(883), - [aux_sym_cmd_identifier_token33] = ACTIONS(883), - [aux_sym_cmd_identifier_token34] = ACTIONS(883), - [aux_sym_cmd_identifier_token35] = ACTIONS(883), - [aux_sym_cmd_identifier_token36] = ACTIONS(883), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [anon_sym_null] = ACTIONS(883), - [aux_sym_cmd_identifier_token38] = ACTIONS(883), - [aux_sym_cmd_identifier_token39] = ACTIONS(883), - [aux_sym_cmd_identifier_token40] = ACTIONS(883), - [anon_sym_def] = ACTIONS(883), - [anon_sym_export_DASHenv] = ACTIONS(883), - [anon_sym_extern] = ACTIONS(883), - [anon_sym_module] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_error] = ACTIONS(883), - [anon_sym_list] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_make] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [anon_sym_do] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_else] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_try] = ACTIONS(883), - [anon_sym_catch] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_source] = ACTIONS(883), - [anon_sym_source_DASHenv] = ACTIONS(883), - [anon_sym_register] = ACTIONS(883), - [anon_sym_hide] = ACTIONS(883), - [anon_sym_hide_DASHenv] = ACTIONS(883), - [anon_sym_overlay] = ACTIONS(883), - [anon_sym_new] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(883), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(883), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(883), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(883), - [aux_sym__val_number_token1] = ACTIONS(883), - [aux_sym__val_number_token2] = ACTIONS(883), - [aux_sym__val_number_token3] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(883), - [sym__str_single_quotes] = ACTIONS(883), - [sym__str_back_ticks] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(883), - [sym__entry_separator] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token3] = ACTIONS(1473), + [aux_sym_cmd_identifier_token4] = ACTIONS(1473), + [aux_sym_cmd_identifier_token5] = ACTIONS(1473), + [aux_sym_cmd_identifier_token6] = ACTIONS(1473), + [aux_sym_cmd_identifier_token7] = ACTIONS(1473), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1473), + [aux_sym_cmd_identifier_token11] = ACTIONS(1473), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1473), + [aux_sym_cmd_identifier_token17] = ACTIONS(1473), + [aux_sym_cmd_identifier_token18] = ACTIONS(1473), + [aux_sym_cmd_identifier_token19] = ACTIONS(1473), + [aux_sym_cmd_identifier_token20] = ACTIONS(1473), + [aux_sym_cmd_identifier_token21] = ACTIONS(1473), + [aux_sym_cmd_identifier_token22] = ACTIONS(1473), + [aux_sym_cmd_identifier_token23] = ACTIONS(1473), + [aux_sym_cmd_identifier_token24] = ACTIONS(1473), + [aux_sym_cmd_identifier_token25] = ACTIONS(1473), + [aux_sym_cmd_identifier_token26] = ACTIONS(1473), + [aux_sym_cmd_identifier_token27] = ACTIONS(1473), + [aux_sym_cmd_identifier_token28] = ACTIONS(1473), + [aux_sym_cmd_identifier_token29] = ACTIONS(1473), + [aux_sym_cmd_identifier_token30] = ACTIONS(1473), + [aux_sym_cmd_identifier_token31] = ACTIONS(1473), + [aux_sym_cmd_identifier_token32] = ACTIONS(1473), + [aux_sym_cmd_identifier_token33] = ACTIONS(1473), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1473), + [aux_sym_cmd_identifier_token36] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_list] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_new] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [sym_filesize_unit] = ACTIONS(1473), + [sym_duration_unit] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1473), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [217] = { [sym_comment] = STATE(217), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_alias] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_let_DASHenv] = ACTIONS(1368), - [anon_sym_mut] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [aux_sym_cmd_identifier_token1] = ACTIONS(1368), - [aux_sym_cmd_identifier_token2] = ACTIONS(1368), - [aux_sym_cmd_identifier_token3] = ACTIONS(1368), - [aux_sym_cmd_identifier_token4] = ACTIONS(1368), - [aux_sym_cmd_identifier_token5] = ACTIONS(1368), - [aux_sym_cmd_identifier_token6] = ACTIONS(1368), - [aux_sym_cmd_identifier_token7] = ACTIONS(1368), - [aux_sym_cmd_identifier_token8] = ACTIONS(1368), - [aux_sym_cmd_identifier_token9] = ACTIONS(1368), - [aux_sym_cmd_identifier_token10] = ACTIONS(1368), - [aux_sym_cmd_identifier_token11] = ACTIONS(1368), - [aux_sym_cmd_identifier_token12] = ACTIONS(1368), - [aux_sym_cmd_identifier_token13] = ACTIONS(1368), - [aux_sym_cmd_identifier_token14] = ACTIONS(1368), - [aux_sym_cmd_identifier_token15] = ACTIONS(1368), - [aux_sym_cmd_identifier_token16] = ACTIONS(1368), - [aux_sym_cmd_identifier_token17] = ACTIONS(1368), - [aux_sym_cmd_identifier_token18] = ACTIONS(1368), - [aux_sym_cmd_identifier_token19] = ACTIONS(1368), - [aux_sym_cmd_identifier_token20] = ACTIONS(1368), - [aux_sym_cmd_identifier_token21] = ACTIONS(1368), - [aux_sym_cmd_identifier_token22] = ACTIONS(1368), - [aux_sym_cmd_identifier_token23] = ACTIONS(1368), - [aux_sym_cmd_identifier_token24] = ACTIONS(1368), - [aux_sym_cmd_identifier_token25] = ACTIONS(1368), - [aux_sym_cmd_identifier_token26] = ACTIONS(1368), - [aux_sym_cmd_identifier_token27] = ACTIONS(1368), - [aux_sym_cmd_identifier_token28] = ACTIONS(1368), - [aux_sym_cmd_identifier_token29] = ACTIONS(1368), - [aux_sym_cmd_identifier_token30] = ACTIONS(1368), - [aux_sym_cmd_identifier_token31] = ACTIONS(1368), - [aux_sym_cmd_identifier_token32] = ACTIONS(1368), - [aux_sym_cmd_identifier_token33] = ACTIONS(1368), - [aux_sym_cmd_identifier_token34] = ACTIONS(1368), - [aux_sym_cmd_identifier_token35] = ACTIONS(1368), - [aux_sym_cmd_identifier_token36] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1368), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [anon_sym_def] = ACTIONS(1368), - [anon_sym_export_DASHenv] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_error] = ACTIONS(1368), - [anon_sym_list] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_make] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_source] = ACTIONS(1368), - [anon_sym_source_DASHenv] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_hide] = ACTIONS(1368), - [anon_sym_hide_DASHenv] = ACTIONS(1368), - [anon_sym_overlay] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1370), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1368), + [anon_sym_export] = ACTIONS(1519), + [anon_sym_alias] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_let_DASHenv] = ACTIONS(1519), + [anon_sym_mut] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [aux_sym_cmd_identifier_token1] = ACTIONS(1519), + [aux_sym_cmd_identifier_token2] = ACTIONS(1519), + [aux_sym_cmd_identifier_token3] = ACTIONS(1519), + [aux_sym_cmd_identifier_token4] = ACTIONS(1519), + [aux_sym_cmd_identifier_token5] = ACTIONS(1519), + [aux_sym_cmd_identifier_token6] = ACTIONS(1519), + [aux_sym_cmd_identifier_token7] = ACTIONS(1519), + [aux_sym_cmd_identifier_token8] = ACTIONS(1519), + [aux_sym_cmd_identifier_token9] = ACTIONS(1519), + [aux_sym_cmd_identifier_token10] = ACTIONS(1519), + [aux_sym_cmd_identifier_token11] = ACTIONS(1519), + [aux_sym_cmd_identifier_token12] = ACTIONS(1519), + [aux_sym_cmd_identifier_token13] = ACTIONS(1519), + [aux_sym_cmd_identifier_token14] = ACTIONS(1519), + [aux_sym_cmd_identifier_token15] = ACTIONS(1519), + [aux_sym_cmd_identifier_token16] = ACTIONS(1519), + [aux_sym_cmd_identifier_token17] = ACTIONS(1519), + [aux_sym_cmd_identifier_token18] = ACTIONS(1519), + [aux_sym_cmd_identifier_token19] = ACTIONS(1519), + [aux_sym_cmd_identifier_token20] = ACTIONS(1519), + [aux_sym_cmd_identifier_token21] = ACTIONS(1519), + [aux_sym_cmd_identifier_token22] = ACTIONS(1519), + [aux_sym_cmd_identifier_token23] = ACTIONS(1519), + [aux_sym_cmd_identifier_token24] = ACTIONS(1519), + [aux_sym_cmd_identifier_token25] = ACTIONS(1519), + [aux_sym_cmd_identifier_token26] = ACTIONS(1519), + [aux_sym_cmd_identifier_token27] = ACTIONS(1519), + [aux_sym_cmd_identifier_token28] = ACTIONS(1519), + [aux_sym_cmd_identifier_token29] = ACTIONS(1519), + [aux_sym_cmd_identifier_token30] = ACTIONS(1519), + [aux_sym_cmd_identifier_token31] = ACTIONS(1519), + [aux_sym_cmd_identifier_token32] = ACTIONS(1519), + [aux_sym_cmd_identifier_token33] = ACTIONS(1519), + [aux_sym_cmd_identifier_token34] = ACTIONS(1519), + [aux_sym_cmd_identifier_token35] = ACTIONS(1519), + [aux_sym_cmd_identifier_token36] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [anon_sym_def] = ACTIONS(1519), + [anon_sym_export_DASHenv] = ACTIONS(1519), + [anon_sym_extern] = ACTIONS(1519), + [anon_sym_module] = ACTIONS(1519), + [anon_sym_use] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_error] = ACTIONS(1519), + [anon_sym_list] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [anon_sym_loop] = ACTIONS(1519), + [anon_sym_make] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_do] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_else] = ACTIONS(1519), + [anon_sym_match] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_try] = ACTIONS(1519), + [anon_sym_catch] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_source] = ACTIONS(1519), + [anon_sym_source_DASHenv] = ACTIONS(1519), + [anon_sym_register] = ACTIONS(1519), + [anon_sym_hide] = ACTIONS(1519), + [anon_sym_hide_DASHenv] = ACTIONS(1519), + [anon_sym_overlay] = ACTIONS(1519), + [anon_sym_new] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1519), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1519), + [sym__entry_separator] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1519), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(3), }, [218] = { - [sym__expr_parenthesized_immediate] = STATE(439), - [sym__immediate_decimal] = STATE(425), - [sym_val_variable] = STATE(439), [sym_comment] = STATE(218), - [anon_sym_export] = ACTIONS(1449), - [anon_sym_alias] = ACTIONS(1449), - [anon_sym_let] = ACTIONS(1449), - [anon_sym_let_DASHenv] = ACTIONS(1449), - [anon_sym_mut] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [aux_sym_cmd_identifier_token1] = ACTIONS(1449), - [aux_sym_cmd_identifier_token2] = ACTIONS(1449), - [aux_sym_cmd_identifier_token3] = ACTIONS(1449), - [aux_sym_cmd_identifier_token4] = ACTIONS(1449), - [aux_sym_cmd_identifier_token5] = ACTIONS(1449), - [aux_sym_cmd_identifier_token6] = ACTIONS(1449), - [aux_sym_cmd_identifier_token7] = ACTIONS(1449), - [aux_sym_cmd_identifier_token8] = ACTIONS(1449), - [aux_sym_cmd_identifier_token9] = ACTIONS(1449), - [aux_sym_cmd_identifier_token10] = ACTIONS(1449), - [aux_sym_cmd_identifier_token11] = ACTIONS(1449), - [aux_sym_cmd_identifier_token12] = ACTIONS(1449), - [aux_sym_cmd_identifier_token13] = ACTIONS(1449), - [aux_sym_cmd_identifier_token14] = ACTIONS(1449), - [aux_sym_cmd_identifier_token15] = ACTIONS(1449), - [aux_sym_cmd_identifier_token16] = ACTIONS(1449), - [aux_sym_cmd_identifier_token17] = ACTIONS(1449), - [aux_sym_cmd_identifier_token18] = ACTIONS(1449), - [aux_sym_cmd_identifier_token19] = ACTIONS(1449), - [aux_sym_cmd_identifier_token20] = ACTIONS(1449), - [aux_sym_cmd_identifier_token21] = ACTIONS(1449), - [aux_sym_cmd_identifier_token22] = ACTIONS(1449), - [aux_sym_cmd_identifier_token23] = ACTIONS(1449), - [aux_sym_cmd_identifier_token24] = ACTIONS(1449), - [aux_sym_cmd_identifier_token25] = ACTIONS(1449), - [aux_sym_cmd_identifier_token26] = ACTIONS(1449), - [aux_sym_cmd_identifier_token27] = ACTIONS(1449), - [aux_sym_cmd_identifier_token28] = ACTIONS(1449), - [aux_sym_cmd_identifier_token29] = ACTIONS(1449), - [aux_sym_cmd_identifier_token30] = ACTIONS(1449), - [aux_sym_cmd_identifier_token31] = ACTIONS(1449), - [aux_sym_cmd_identifier_token32] = ACTIONS(1449), - [aux_sym_cmd_identifier_token33] = ACTIONS(1449), - [aux_sym_cmd_identifier_token34] = ACTIONS(1449), - [aux_sym_cmd_identifier_token35] = ACTIONS(1449), - [aux_sym_cmd_identifier_token36] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1449), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [anon_sym_def] = ACTIONS(1449), - [anon_sym_export_DASHenv] = ACTIONS(1449), - [anon_sym_extern] = ACTIONS(1449), - [anon_sym_module] = ACTIONS(1449), - [anon_sym_use] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_DOLLAR] = ACTIONS(1382), - [anon_sym_error] = ACTIONS(1449), - [anon_sym_list] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_loop] = ACTIONS(1449), - [anon_sym_make] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_else] = ACTIONS(1449), - [anon_sym_match] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_try] = ACTIONS(1449), - [anon_sym_catch] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_source] = ACTIONS(1449), - [anon_sym_source_DASHenv] = ACTIONS(1449), - [anon_sym_register] = ACTIONS(1449), - [anon_sym_hide] = ACTIONS(1449), - [anon_sym_hide_DASHenv] = ACTIONS(1449), - [anon_sym_overlay] = ACTIONS(1449), - [anon_sym_new] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1551), - [aux_sym__immediate_decimal_token1] = ACTIONS(1553), - [aux_sym__immediate_decimal_token3] = ACTIONS(1555), - [aux_sym__immediate_decimal_token4] = ACTIONS(1557), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1457), - [aux_sym__val_number_decimal_token1] = ACTIONS(1449), - [aux_sym__val_number_decimal_token2] = ACTIONS(1449), - [anon_sym_DOT2] = ACTIONS(1449), - [aux_sym__val_number_decimal_token3] = ACTIONS(1449), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [sym__str_single_quotes] = ACTIONS(1457), - [sym__str_back_ticks] = ACTIONS(1457), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1585), + [anon_sym_alias] = ACTIONS(1585), + [anon_sym_let] = ACTIONS(1585), + [anon_sym_let_DASHenv] = ACTIONS(1585), + [anon_sym_mut] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [aux_sym_cmd_identifier_token1] = ACTIONS(1585), + [aux_sym_cmd_identifier_token2] = ACTIONS(1585), + [aux_sym_cmd_identifier_token3] = ACTIONS(1585), + [aux_sym_cmd_identifier_token4] = ACTIONS(1585), + [aux_sym_cmd_identifier_token5] = ACTIONS(1585), + [aux_sym_cmd_identifier_token6] = ACTIONS(1585), + [aux_sym_cmd_identifier_token7] = ACTIONS(1585), + [aux_sym_cmd_identifier_token8] = ACTIONS(1585), + [aux_sym_cmd_identifier_token9] = ACTIONS(1585), + [aux_sym_cmd_identifier_token10] = ACTIONS(1585), + [aux_sym_cmd_identifier_token11] = ACTIONS(1585), + [aux_sym_cmd_identifier_token12] = ACTIONS(1585), + [aux_sym_cmd_identifier_token13] = ACTIONS(1585), + [aux_sym_cmd_identifier_token14] = ACTIONS(1585), + [aux_sym_cmd_identifier_token15] = ACTIONS(1585), + [aux_sym_cmd_identifier_token16] = ACTIONS(1585), + [aux_sym_cmd_identifier_token17] = ACTIONS(1585), + [aux_sym_cmd_identifier_token18] = ACTIONS(1585), + [aux_sym_cmd_identifier_token19] = ACTIONS(1585), + [aux_sym_cmd_identifier_token20] = ACTIONS(1585), + [aux_sym_cmd_identifier_token21] = ACTIONS(1585), + [aux_sym_cmd_identifier_token22] = ACTIONS(1585), + [aux_sym_cmd_identifier_token23] = ACTIONS(1585), + [aux_sym_cmd_identifier_token24] = ACTIONS(1585), + [aux_sym_cmd_identifier_token25] = ACTIONS(1585), + [aux_sym_cmd_identifier_token26] = ACTIONS(1585), + [aux_sym_cmd_identifier_token27] = ACTIONS(1585), + [aux_sym_cmd_identifier_token28] = ACTIONS(1585), + [aux_sym_cmd_identifier_token29] = ACTIONS(1585), + [aux_sym_cmd_identifier_token30] = ACTIONS(1585), + [aux_sym_cmd_identifier_token31] = ACTIONS(1585), + [aux_sym_cmd_identifier_token32] = ACTIONS(1585), + [aux_sym_cmd_identifier_token33] = ACTIONS(1585), + [aux_sym_cmd_identifier_token34] = ACTIONS(1585), + [aux_sym_cmd_identifier_token35] = ACTIONS(1585), + [aux_sym_cmd_identifier_token36] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [aux_sym_cmd_identifier_token38] = ACTIONS(1585), + [aux_sym_cmd_identifier_token39] = ACTIONS(1585), + [aux_sym_cmd_identifier_token40] = ACTIONS(1585), + [anon_sym_def] = ACTIONS(1585), + [anon_sym_export_DASHenv] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym_module] = ACTIONS(1585), + [anon_sym_use] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_error] = ACTIONS(1585), + [anon_sym_list] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_in] = ACTIONS(1585), + [anon_sym_loop] = ACTIONS(1585), + [anon_sym_make] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_catch] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_source] = ACTIONS(1585), + [anon_sym_source_DASHenv] = ACTIONS(1585), + [anon_sym_register] = ACTIONS(1585), + [anon_sym_hide] = ACTIONS(1585), + [anon_sym_hide_DASHenv] = ACTIONS(1585), + [anon_sym_overlay] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1585), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1585), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1585), + [aux_sym__val_number_decimal_token3] = ACTIONS(1585), + [aux_sym__val_number_decimal_token4] = ACTIONS(1585), + [aux_sym__val_number_token1] = ACTIONS(1585), + [aux_sym__val_number_token2] = ACTIONS(1585), + [aux_sym__val_number_token3] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1585), + [sym__str_single_quotes] = ACTIONS(1585), + [sym__str_back_ticks] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1585), + [sym__entry_separator] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), }, [219] = { - [sym__expr_parenthesized_immediate] = STATE(592), - [sym__immediate_decimal] = STATE(596), - [sym_val_variable] = STATE(592), [sym_comment] = STATE(219), - [anon_sym_export] = ACTIONS(1449), - [anon_sym_alias] = ACTIONS(1449), - [anon_sym_let] = ACTIONS(1449), - [anon_sym_let_DASHenv] = ACTIONS(1449), - [anon_sym_mut] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [aux_sym_cmd_identifier_token1] = ACTIONS(1449), - [aux_sym_cmd_identifier_token2] = ACTIONS(1449), - [aux_sym_cmd_identifier_token3] = ACTIONS(1449), - [aux_sym_cmd_identifier_token4] = ACTIONS(1449), - [aux_sym_cmd_identifier_token5] = ACTIONS(1449), - [aux_sym_cmd_identifier_token6] = ACTIONS(1449), - [aux_sym_cmd_identifier_token7] = ACTIONS(1449), - [aux_sym_cmd_identifier_token8] = ACTIONS(1449), - [aux_sym_cmd_identifier_token9] = ACTIONS(1449), - [aux_sym_cmd_identifier_token10] = ACTIONS(1449), - [aux_sym_cmd_identifier_token11] = ACTIONS(1449), - [aux_sym_cmd_identifier_token12] = ACTIONS(1449), - [aux_sym_cmd_identifier_token13] = ACTIONS(1449), - [aux_sym_cmd_identifier_token14] = ACTIONS(1449), - [aux_sym_cmd_identifier_token15] = ACTIONS(1449), - [aux_sym_cmd_identifier_token16] = ACTIONS(1449), - [aux_sym_cmd_identifier_token17] = ACTIONS(1449), - [aux_sym_cmd_identifier_token18] = ACTIONS(1449), - [aux_sym_cmd_identifier_token19] = ACTIONS(1449), - [aux_sym_cmd_identifier_token20] = ACTIONS(1449), - [aux_sym_cmd_identifier_token21] = ACTIONS(1449), - [aux_sym_cmd_identifier_token22] = ACTIONS(1449), - [aux_sym_cmd_identifier_token23] = ACTIONS(1449), - [aux_sym_cmd_identifier_token24] = ACTIONS(1449), - [aux_sym_cmd_identifier_token25] = ACTIONS(1449), - [aux_sym_cmd_identifier_token26] = ACTIONS(1449), - [aux_sym_cmd_identifier_token27] = ACTIONS(1449), - [aux_sym_cmd_identifier_token28] = ACTIONS(1449), - [aux_sym_cmd_identifier_token29] = ACTIONS(1449), - [aux_sym_cmd_identifier_token30] = ACTIONS(1449), - [aux_sym_cmd_identifier_token31] = ACTIONS(1449), - [aux_sym_cmd_identifier_token32] = ACTIONS(1449), - [aux_sym_cmd_identifier_token33] = ACTIONS(1449), - [aux_sym_cmd_identifier_token34] = ACTIONS(1449), - [aux_sym_cmd_identifier_token35] = ACTIONS(1449), - [aux_sym_cmd_identifier_token36] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1449), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [anon_sym_def] = ACTIONS(1449), - [anon_sym_export_DASHenv] = ACTIONS(1449), - [anon_sym_extern] = ACTIONS(1449), - [anon_sym_module] = ACTIONS(1449), - [anon_sym_use] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_DOLLAR] = ACTIONS(1490), - [anon_sym_error] = ACTIONS(1449), - [anon_sym_list] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_loop] = ACTIONS(1449), - [anon_sym_make] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_else] = ACTIONS(1449), - [anon_sym_match] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_try] = ACTIONS(1449), - [anon_sym_catch] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_source] = ACTIONS(1449), - [anon_sym_source_DASHenv] = ACTIONS(1449), - [anon_sym_register] = ACTIONS(1449), - [anon_sym_hide] = ACTIONS(1449), - [anon_sym_hide_DASHenv] = ACTIONS(1449), - [anon_sym_overlay] = ACTIONS(1449), - [anon_sym_new] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1527), - [aux_sym__immediate_decimal_token1] = ACTIONS(1529), - [aux_sym__immediate_decimal_token3] = ACTIONS(1531), - [aux_sym__immediate_decimal_token4] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1457), - [aux_sym__val_number_decimal_token1] = ACTIONS(1449), - [aux_sym__val_number_decimal_token2] = ACTIONS(1449), - [anon_sym_DOT2] = ACTIONS(1449), - [aux_sym__val_number_decimal_token3] = ACTIONS(1449), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [sym__str_single_quotes] = ACTIONS(1457), - [sym__str_back_ticks] = ACTIONS(1457), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(1593), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(1595), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), }, [220] = { [sym_comment] = STATE(220), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [aux_sym_cmd_identifier_token1] = ACTIONS(1376), - [aux_sym_cmd_identifier_token2] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1376), - [aux_sym_cmd_identifier_token4] = ACTIONS(1376), - [aux_sym_cmd_identifier_token5] = ACTIONS(1376), - [aux_sym_cmd_identifier_token6] = ACTIONS(1376), - [aux_sym_cmd_identifier_token7] = ACTIONS(1376), - [aux_sym_cmd_identifier_token8] = ACTIONS(1376), - [aux_sym_cmd_identifier_token9] = ACTIONS(1376), - [aux_sym_cmd_identifier_token10] = ACTIONS(1376), - [aux_sym_cmd_identifier_token11] = ACTIONS(1376), - [aux_sym_cmd_identifier_token12] = ACTIONS(1376), - [aux_sym_cmd_identifier_token13] = ACTIONS(1376), - [aux_sym_cmd_identifier_token14] = ACTIONS(1376), - [aux_sym_cmd_identifier_token15] = ACTIONS(1376), - [aux_sym_cmd_identifier_token16] = ACTIONS(1376), - [aux_sym_cmd_identifier_token17] = ACTIONS(1376), - [aux_sym_cmd_identifier_token18] = ACTIONS(1376), - [aux_sym_cmd_identifier_token19] = ACTIONS(1376), - [aux_sym_cmd_identifier_token20] = ACTIONS(1376), - [aux_sym_cmd_identifier_token21] = ACTIONS(1376), - [aux_sym_cmd_identifier_token22] = ACTIONS(1376), - [aux_sym_cmd_identifier_token23] = ACTIONS(1376), - [aux_sym_cmd_identifier_token24] = ACTIONS(1376), - [aux_sym_cmd_identifier_token25] = ACTIONS(1376), - [aux_sym_cmd_identifier_token26] = ACTIONS(1376), - [aux_sym_cmd_identifier_token27] = ACTIONS(1376), - [aux_sym_cmd_identifier_token28] = ACTIONS(1376), - [aux_sym_cmd_identifier_token29] = ACTIONS(1376), - [aux_sym_cmd_identifier_token30] = ACTIONS(1376), - [aux_sym_cmd_identifier_token31] = ACTIONS(1376), - [aux_sym_cmd_identifier_token32] = ACTIONS(1376), - [aux_sym_cmd_identifier_token33] = ACTIONS(1376), - [aux_sym_cmd_identifier_token34] = ACTIONS(1376), - [aux_sym_cmd_identifier_token35] = ACTIONS(1376), - [aux_sym_cmd_identifier_token36] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1376), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1378), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1519), + [anon_sym_alias] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_let_DASHenv] = ACTIONS(1519), + [anon_sym_mut] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [aux_sym_cmd_identifier_token1] = ACTIONS(1519), + [aux_sym_cmd_identifier_token2] = ACTIONS(1519), + [aux_sym_cmd_identifier_token3] = ACTIONS(1519), + [aux_sym_cmd_identifier_token4] = ACTIONS(1519), + [aux_sym_cmd_identifier_token5] = ACTIONS(1519), + [aux_sym_cmd_identifier_token6] = ACTIONS(1519), + [aux_sym_cmd_identifier_token7] = ACTIONS(1519), + [aux_sym_cmd_identifier_token8] = ACTIONS(1519), + [aux_sym_cmd_identifier_token9] = ACTIONS(1519), + [aux_sym_cmd_identifier_token10] = ACTIONS(1519), + [aux_sym_cmd_identifier_token11] = ACTIONS(1519), + [aux_sym_cmd_identifier_token12] = ACTIONS(1519), + [aux_sym_cmd_identifier_token13] = ACTIONS(1519), + [aux_sym_cmd_identifier_token14] = ACTIONS(1519), + [aux_sym_cmd_identifier_token15] = ACTIONS(1519), + [aux_sym_cmd_identifier_token16] = ACTIONS(1519), + [aux_sym_cmd_identifier_token17] = ACTIONS(1519), + [aux_sym_cmd_identifier_token18] = ACTIONS(1519), + [aux_sym_cmd_identifier_token19] = ACTIONS(1519), + [aux_sym_cmd_identifier_token20] = ACTIONS(1519), + [aux_sym_cmd_identifier_token21] = ACTIONS(1519), + [aux_sym_cmd_identifier_token22] = ACTIONS(1519), + [aux_sym_cmd_identifier_token23] = ACTIONS(1519), + [aux_sym_cmd_identifier_token24] = ACTIONS(1519), + [aux_sym_cmd_identifier_token25] = ACTIONS(1519), + [aux_sym_cmd_identifier_token26] = ACTIONS(1519), + [aux_sym_cmd_identifier_token27] = ACTIONS(1519), + [aux_sym_cmd_identifier_token28] = ACTIONS(1519), + [aux_sym_cmd_identifier_token29] = ACTIONS(1519), + [aux_sym_cmd_identifier_token30] = ACTIONS(1519), + [aux_sym_cmd_identifier_token31] = ACTIONS(1519), + [aux_sym_cmd_identifier_token32] = ACTIONS(1519), + [aux_sym_cmd_identifier_token33] = ACTIONS(1519), + [aux_sym_cmd_identifier_token34] = ACTIONS(1519), + [aux_sym_cmd_identifier_token35] = ACTIONS(1519), + [aux_sym_cmd_identifier_token36] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [anon_sym_def] = ACTIONS(1519), + [anon_sym_export_DASHenv] = ACTIONS(1519), + [anon_sym_extern] = ACTIONS(1519), + [anon_sym_module] = ACTIONS(1519), + [anon_sym_use] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1521), + [anon_sym_error] = ACTIONS(1519), + [anon_sym_list] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [anon_sym_loop] = ACTIONS(1519), + [anon_sym_make] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_do] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_else] = ACTIONS(1519), + [anon_sym_match] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1519), + [anon_sym_catch] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_source] = ACTIONS(1519), + [anon_sym_source_DASHenv] = ACTIONS(1519), + [anon_sym_register] = ACTIONS(1519), + [anon_sym_hide] = ACTIONS(1519), + [anon_sym_hide_DASHenv] = ACTIONS(1519), + [anon_sym_overlay] = ACTIONS(1519), + [anon_sym_new] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1519), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [221] = { + [sym_cell_path] = STATE(405), + [sym_path] = STATE(327), [sym_comment] = STATE(221), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(244), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [aux_sym_cmd_identifier_token1] = ACTIONS(1599), + [aux_sym_cmd_identifier_token2] = ACTIONS(1599), + [aux_sym_cmd_identifier_token3] = ACTIONS(1599), + [aux_sym_cmd_identifier_token4] = ACTIONS(1599), + [aux_sym_cmd_identifier_token5] = ACTIONS(1599), + [aux_sym_cmd_identifier_token6] = ACTIONS(1599), + [aux_sym_cmd_identifier_token7] = ACTIONS(1599), + [aux_sym_cmd_identifier_token8] = ACTIONS(1599), + [aux_sym_cmd_identifier_token9] = ACTIONS(1599), + [aux_sym_cmd_identifier_token10] = ACTIONS(1599), + [aux_sym_cmd_identifier_token11] = ACTIONS(1599), + [aux_sym_cmd_identifier_token12] = ACTIONS(1599), + [aux_sym_cmd_identifier_token13] = ACTIONS(1599), + [aux_sym_cmd_identifier_token14] = ACTIONS(1599), + [aux_sym_cmd_identifier_token15] = ACTIONS(1599), + [aux_sym_cmd_identifier_token16] = ACTIONS(1599), + [aux_sym_cmd_identifier_token17] = ACTIONS(1599), + [aux_sym_cmd_identifier_token18] = ACTIONS(1599), + [aux_sym_cmd_identifier_token19] = ACTIONS(1599), + [aux_sym_cmd_identifier_token20] = ACTIONS(1599), + [aux_sym_cmd_identifier_token21] = ACTIONS(1599), + [aux_sym_cmd_identifier_token22] = ACTIONS(1599), + [aux_sym_cmd_identifier_token23] = ACTIONS(1599), + [aux_sym_cmd_identifier_token24] = ACTIONS(1599), + [aux_sym_cmd_identifier_token25] = ACTIONS(1599), + [aux_sym_cmd_identifier_token26] = ACTIONS(1599), + [aux_sym_cmd_identifier_token27] = ACTIONS(1599), + [aux_sym_cmd_identifier_token28] = ACTIONS(1599), + [aux_sym_cmd_identifier_token29] = ACTIONS(1599), + [aux_sym_cmd_identifier_token30] = ACTIONS(1599), + [aux_sym_cmd_identifier_token31] = ACTIONS(1599), + [aux_sym_cmd_identifier_token32] = ACTIONS(1599), + [aux_sym_cmd_identifier_token33] = ACTIONS(1599), + [aux_sym_cmd_identifier_token34] = ACTIONS(1599), + [aux_sym_cmd_identifier_token35] = ACTIONS(1599), + [aux_sym_cmd_identifier_token36] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [anon_sym_null] = ACTIONS(1599), + [aux_sym_cmd_identifier_token38] = ACTIONS(1599), + [aux_sym_cmd_identifier_token39] = ACTIONS(1599), + [aux_sym_cmd_identifier_token40] = ACTIONS(1599), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_list] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_make] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_catch] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_new] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1601), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1599), + [sym__entry_separator] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), }, [222] = { + [sym__expr_parenthesized_immediate] = STATE(602), + [sym__immediate_decimal] = STATE(603), + [sym_val_variable] = STATE(602), [sym_comment] = STATE(222), - [aux_sym__block_body_repeat1] = STATE(233), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [aux_sym_cmd_identifier_token1] = ACTIONS(1559), - [aux_sym_cmd_identifier_token2] = ACTIONS(1559), - [aux_sym_cmd_identifier_token3] = ACTIONS(1559), - [aux_sym_cmd_identifier_token4] = ACTIONS(1559), - [aux_sym_cmd_identifier_token5] = ACTIONS(1559), - [aux_sym_cmd_identifier_token6] = ACTIONS(1559), - [aux_sym_cmd_identifier_token7] = ACTIONS(1559), - [aux_sym_cmd_identifier_token8] = ACTIONS(1559), - [aux_sym_cmd_identifier_token9] = ACTIONS(1559), - [aux_sym_cmd_identifier_token10] = ACTIONS(1559), - [aux_sym_cmd_identifier_token11] = ACTIONS(1559), - [aux_sym_cmd_identifier_token12] = ACTIONS(1559), - [aux_sym_cmd_identifier_token13] = ACTIONS(1559), - [aux_sym_cmd_identifier_token14] = ACTIONS(1559), - [aux_sym_cmd_identifier_token15] = ACTIONS(1559), - [aux_sym_cmd_identifier_token16] = ACTIONS(1559), - [aux_sym_cmd_identifier_token17] = ACTIONS(1559), - [aux_sym_cmd_identifier_token18] = ACTIONS(1559), - [aux_sym_cmd_identifier_token19] = ACTIONS(1559), - [aux_sym_cmd_identifier_token20] = ACTIONS(1559), - [aux_sym_cmd_identifier_token21] = ACTIONS(1559), - [aux_sym_cmd_identifier_token22] = ACTIONS(1559), - [aux_sym_cmd_identifier_token23] = ACTIONS(1559), - [aux_sym_cmd_identifier_token24] = ACTIONS(1561), - [aux_sym_cmd_identifier_token25] = ACTIONS(1559), - [aux_sym_cmd_identifier_token26] = ACTIONS(1561), - [aux_sym_cmd_identifier_token27] = ACTIONS(1559), - [aux_sym_cmd_identifier_token28] = ACTIONS(1559), - [aux_sym_cmd_identifier_token29] = ACTIONS(1559), - [aux_sym_cmd_identifier_token30] = ACTIONS(1559), - [aux_sym_cmd_identifier_token31] = ACTIONS(1561), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1561), - [aux_sym_cmd_identifier_token35] = ACTIONS(1561), - [aux_sym_cmd_identifier_token36] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [aux_sym_cmd_identifier_token38] = ACTIONS(1559), - [aux_sym_cmd_identifier_token39] = ACTIONS(1561), - [aux_sym_cmd_identifier_token40] = ACTIONS(1561), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [aux_sym_ctrl_match_token1] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1561), - [aux_sym_expr_unary_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_DOT_DOT_LT] = ACTIONS(1561), - [aux_sym__val_number_decimal_token1] = ACTIONS(1559), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [anon_sym_DOT2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1561), - [aux_sym__val_number_token2] = ACTIONS(1561), - [aux_sym__val_number_token3] = ACTIONS(1561), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym__str_single_quotes] = ACTIONS(1561), - [sym__str_back_ticks] = ACTIONS(1561), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [aux_sym_cmd_identifier_token1] = ACTIONS(1431), + [aux_sym_cmd_identifier_token2] = ACTIONS(1431), + [aux_sym_cmd_identifier_token3] = ACTIONS(1431), + [aux_sym_cmd_identifier_token4] = ACTIONS(1431), + [aux_sym_cmd_identifier_token5] = ACTIONS(1431), + [aux_sym_cmd_identifier_token6] = ACTIONS(1431), + [aux_sym_cmd_identifier_token7] = ACTIONS(1431), + [aux_sym_cmd_identifier_token8] = ACTIONS(1431), + [aux_sym_cmd_identifier_token9] = ACTIONS(1431), + [aux_sym_cmd_identifier_token10] = ACTIONS(1431), + [aux_sym_cmd_identifier_token11] = ACTIONS(1431), + [aux_sym_cmd_identifier_token12] = ACTIONS(1431), + [aux_sym_cmd_identifier_token13] = ACTIONS(1431), + [aux_sym_cmd_identifier_token14] = ACTIONS(1431), + [aux_sym_cmd_identifier_token15] = ACTIONS(1431), + [aux_sym_cmd_identifier_token16] = ACTIONS(1431), + [aux_sym_cmd_identifier_token17] = ACTIONS(1431), + [aux_sym_cmd_identifier_token18] = ACTIONS(1431), + [aux_sym_cmd_identifier_token19] = ACTIONS(1431), + [aux_sym_cmd_identifier_token20] = ACTIONS(1431), + [aux_sym_cmd_identifier_token21] = ACTIONS(1431), + [aux_sym_cmd_identifier_token22] = ACTIONS(1431), + [aux_sym_cmd_identifier_token23] = ACTIONS(1431), + [aux_sym_cmd_identifier_token24] = ACTIONS(1431), + [aux_sym_cmd_identifier_token25] = ACTIONS(1431), + [aux_sym_cmd_identifier_token26] = ACTIONS(1431), + [aux_sym_cmd_identifier_token27] = ACTIONS(1431), + [aux_sym_cmd_identifier_token28] = ACTIONS(1431), + [aux_sym_cmd_identifier_token29] = ACTIONS(1431), + [aux_sym_cmd_identifier_token30] = ACTIONS(1431), + [aux_sym_cmd_identifier_token31] = ACTIONS(1431), + [aux_sym_cmd_identifier_token32] = ACTIONS(1431), + [aux_sym_cmd_identifier_token33] = ACTIONS(1431), + [aux_sym_cmd_identifier_token34] = ACTIONS(1431), + [aux_sym_cmd_identifier_token35] = ACTIONS(1431), + [aux_sym_cmd_identifier_token36] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [aux_sym_cmd_identifier_token38] = ACTIONS(1431), + [aux_sym_cmd_identifier_token39] = ACTIONS(1441), + [aux_sym_cmd_identifier_token40] = ACTIONS(1441), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_list] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_make] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_catch] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_register] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1441), + [aux_sym__immediate_decimal_token1] = ACTIONS(1577), + [aux_sym__immediate_decimal_token3] = ACTIONS(1579), + [aux_sym__immediate_decimal_token4] = ACTIONS(1581), + [aux_sym__immediate_decimal_token5] = ACTIONS(1583), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(247), }, [223] = { [sym_comment] = STATE(223), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1568), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__block_body_repeat1] = STATE(226), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1605), + [aux_sym_cmd_identifier_token3] = ACTIONS(1605), + [aux_sym_cmd_identifier_token4] = ACTIONS(1605), + [aux_sym_cmd_identifier_token5] = ACTIONS(1605), + [aux_sym_cmd_identifier_token6] = ACTIONS(1605), + [aux_sym_cmd_identifier_token7] = ACTIONS(1605), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1605), + [aux_sym_cmd_identifier_token11] = ACTIONS(1605), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1605), + [aux_sym_cmd_identifier_token17] = ACTIONS(1605), + [aux_sym_cmd_identifier_token18] = ACTIONS(1605), + [aux_sym_cmd_identifier_token19] = ACTIONS(1605), + [aux_sym_cmd_identifier_token20] = ACTIONS(1605), + [aux_sym_cmd_identifier_token21] = ACTIONS(1605), + [aux_sym_cmd_identifier_token22] = ACTIONS(1605), + [aux_sym_cmd_identifier_token23] = ACTIONS(1605), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1605), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1605), + [aux_sym_cmd_identifier_token28] = ACTIONS(1605), + [aux_sym_cmd_identifier_token29] = ACTIONS(1605), + [aux_sym_cmd_identifier_token30] = ACTIONS(1605), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [aux_sym_ctrl_match_token1] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1607), + [aux_sym_expr_unary_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [aux_sym_env_var_token1] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), }, [224] = { [sym_comment] = STATE(224), - [anon_sym_export] = ACTIONS(1570), - [anon_sym_alias] = ACTIONS(1570), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_let_DASHenv] = ACTIONS(1570), - [anon_sym_mut] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [aux_sym_cmd_identifier_token1] = ACTIONS(1570), - [aux_sym_cmd_identifier_token2] = ACTIONS(1570), - [aux_sym_cmd_identifier_token3] = ACTIONS(1570), - [aux_sym_cmd_identifier_token4] = ACTIONS(1570), - [aux_sym_cmd_identifier_token5] = ACTIONS(1570), - [aux_sym_cmd_identifier_token6] = ACTIONS(1570), - [aux_sym_cmd_identifier_token7] = ACTIONS(1570), - [aux_sym_cmd_identifier_token8] = ACTIONS(1570), - [aux_sym_cmd_identifier_token9] = ACTIONS(1570), - [aux_sym_cmd_identifier_token10] = ACTIONS(1570), - [aux_sym_cmd_identifier_token11] = ACTIONS(1570), - [aux_sym_cmd_identifier_token12] = ACTIONS(1570), - [aux_sym_cmd_identifier_token13] = ACTIONS(1570), - [aux_sym_cmd_identifier_token14] = ACTIONS(1570), - [aux_sym_cmd_identifier_token15] = ACTIONS(1570), - [aux_sym_cmd_identifier_token16] = ACTIONS(1570), - [aux_sym_cmd_identifier_token17] = ACTIONS(1570), - [aux_sym_cmd_identifier_token18] = ACTIONS(1570), - [aux_sym_cmd_identifier_token19] = ACTIONS(1570), - [aux_sym_cmd_identifier_token20] = ACTIONS(1570), - [aux_sym_cmd_identifier_token21] = ACTIONS(1570), - [aux_sym_cmd_identifier_token22] = ACTIONS(1570), - [aux_sym_cmd_identifier_token23] = ACTIONS(1570), - [aux_sym_cmd_identifier_token24] = ACTIONS(1570), - [aux_sym_cmd_identifier_token25] = ACTIONS(1570), - [aux_sym_cmd_identifier_token26] = ACTIONS(1570), - [aux_sym_cmd_identifier_token27] = ACTIONS(1570), - [aux_sym_cmd_identifier_token28] = ACTIONS(1570), - [aux_sym_cmd_identifier_token29] = ACTIONS(1570), - [aux_sym_cmd_identifier_token30] = ACTIONS(1570), - [aux_sym_cmd_identifier_token31] = ACTIONS(1570), - [aux_sym_cmd_identifier_token32] = ACTIONS(1570), - [aux_sym_cmd_identifier_token33] = ACTIONS(1570), - [aux_sym_cmd_identifier_token34] = ACTIONS(1570), - [aux_sym_cmd_identifier_token35] = ACTIONS(1570), - [aux_sym_cmd_identifier_token36] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [anon_sym_null] = ACTIONS(1570), - [aux_sym_cmd_identifier_token38] = ACTIONS(1570), - [aux_sym_cmd_identifier_token39] = ACTIONS(1570), - [aux_sym_cmd_identifier_token40] = ACTIONS(1570), - [anon_sym_def] = ACTIONS(1570), - [anon_sym_export_DASHenv] = ACTIONS(1570), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_module] = ACTIONS(1570), - [anon_sym_use] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_error] = ACTIONS(1570), - [anon_sym_list] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_in] = ACTIONS(1570), - [anon_sym_loop] = ACTIONS(1570), - [anon_sym_make] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_do] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_else] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_try] = ACTIONS(1570), - [anon_sym_catch] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_source] = ACTIONS(1570), - [anon_sym_source_DASHenv] = ACTIONS(1570), - [anon_sym_register] = ACTIONS(1570), - [anon_sym_hide] = ACTIONS(1570), - [anon_sym_hide_DASHenv] = ACTIONS(1570), - [anon_sym_overlay] = ACTIONS(1570), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_as] = ACTIONS(1570), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1570), - [anon_sym_DOT_DOT2] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1578), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1578), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1570), - [aux_sym__val_number_decimal_token1] = ACTIONS(1570), - [aux_sym__val_number_decimal_token2] = ACTIONS(1570), - [anon_sym_DOT2] = ACTIONS(1570), - [aux_sym__val_number_decimal_token3] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(1570), - [aux_sym__val_number_token2] = ACTIONS(1570), - [aux_sym__val_number_token3] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [sym__str_single_quotes] = ACTIONS(1570), - [sym__str_back_ticks] = ACTIONS(1570), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1570), - [sym__entry_separator] = ACTIONS(1580), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__block_body_repeat1] = STATE(226), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1605), + [aux_sym_cmd_identifier_token3] = ACTIONS(1605), + [aux_sym_cmd_identifier_token4] = ACTIONS(1605), + [aux_sym_cmd_identifier_token5] = ACTIONS(1605), + [aux_sym_cmd_identifier_token6] = ACTIONS(1605), + [aux_sym_cmd_identifier_token7] = ACTIONS(1605), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1605), + [aux_sym_cmd_identifier_token11] = ACTIONS(1605), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1605), + [aux_sym_cmd_identifier_token17] = ACTIONS(1605), + [aux_sym_cmd_identifier_token18] = ACTIONS(1605), + [aux_sym_cmd_identifier_token19] = ACTIONS(1605), + [aux_sym_cmd_identifier_token20] = ACTIONS(1605), + [aux_sym_cmd_identifier_token21] = ACTIONS(1605), + [aux_sym_cmd_identifier_token22] = ACTIONS(1605), + [aux_sym_cmd_identifier_token23] = ACTIONS(1605), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1605), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1605), + [aux_sym_cmd_identifier_token28] = ACTIONS(1605), + [aux_sym_cmd_identifier_token29] = ACTIONS(1605), + [aux_sym_cmd_identifier_token30] = ACTIONS(1605), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [aux_sym_ctrl_match_token1] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1607), + [aux_sym_expr_unary_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [aux_sym_env_var_token1] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), }, [225] = { [sym_comment] = STATE(225), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1568), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__block_body_repeat1] = STATE(226), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1605), + [aux_sym_cmd_identifier_token3] = ACTIONS(1605), + [aux_sym_cmd_identifier_token4] = ACTIONS(1605), + [aux_sym_cmd_identifier_token5] = ACTIONS(1605), + [aux_sym_cmd_identifier_token6] = ACTIONS(1605), + [aux_sym_cmd_identifier_token7] = ACTIONS(1605), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1605), + [aux_sym_cmd_identifier_token11] = ACTIONS(1605), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1605), + [aux_sym_cmd_identifier_token17] = ACTIONS(1605), + [aux_sym_cmd_identifier_token18] = ACTIONS(1605), + [aux_sym_cmd_identifier_token19] = ACTIONS(1605), + [aux_sym_cmd_identifier_token20] = ACTIONS(1605), + [aux_sym_cmd_identifier_token21] = ACTIONS(1605), + [aux_sym_cmd_identifier_token22] = ACTIONS(1605), + [aux_sym_cmd_identifier_token23] = ACTIONS(1605), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1605), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1605), + [aux_sym_cmd_identifier_token28] = ACTIONS(1605), + [aux_sym_cmd_identifier_token29] = ACTIONS(1605), + [aux_sym_cmd_identifier_token30] = ACTIONS(1605), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1613), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [aux_sym_ctrl_match_token1] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1613), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1607), + [aux_sym_expr_unary_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [aux_sym_env_var_token1] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), }, [226] = { [sym_comment] = STATE(226), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(1543), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__block_body_repeat1] = STATE(226), + [anon_sym_export] = ACTIONS(1615), + [anon_sym_alias] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_let_DASHenv] = ACTIONS(1615), + [anon_sym_mut] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1615), + [aux_sym_cmd_identifier_token1] = ACTIONS(1615), + [aux_sym_cmd_identifier_token2] = ACTIONS(1615), + [aux_sym_cmd_identifier_token3] = ACTIONS(1615), + [aux_sym_cmd_identifier_token4] = ACTIONS(1615), + [aux_sym_cmd_identifier_token5] = ACTIONS(1615), + [aux_sym_cmd_identifier_token6] = ACTIONS(1615), + [aux_sym_cmd_identifier_token7] = ACTIONS(1615), + [aux_sym_cmd_identifier_token8] = ACTIONS(1615), + [aux_sym_cmd_identifier_token9] = ACTIONS(1615), + [aux_sym_cmd_identifier_token10] = ACTIONS(1615), + [aux_sym_cmd_identifier_token11] = ACTIONS(1615), + [aux_sym_cmd_identifier_token12] = ACTIONS(1615), + [aux_sym_cmd_identifier_token13] = ACTIONS(1615), + [aux_sym_cmd_identifier_token14] = ACTIONS(1615), + [aux_sym_cmd_identifier_token15] = ACTIONS(1615), + [aux_sym_cmd_identifier_token16] = ACTIONS(1615), + [aux_sym_cmd_identifier_token17] = ACTIONS(1615), + [aux_sym_cmd_identifier_token18] = ACTIONS(1615), + [aux_sym_cmd_identifier_token19] = ACTIONS(1615), + [aux_sym_cmd_identifier_token20] = ACTIONS(1615), + [aux_sym_cmd_identifier_token21] = ACTIONS(1615), + [aux_sym_cmd_identifier_token22] = ACTIONS(1615), + [aux_sym_cmd_identifier_token23] = ACTIONS(1615), + [aux_sym_cmd_identifier_token24] = ACTIONS(1617), + [aux_sym_cmd_identifier_token25] = ACTIONS(1615), + [aux_sym_cmd_identifier_token26] = ACTIONS(1617), + [aux_sym_cmd_identifier_token27] = ACTIONS(1615), + [aux_sym_cmd_identifier_token28] = ACTIONS(1615), + [aux_sym_cmd_identifier_token29] = ACTIONS(1615), + [aux_sym_cmd_identifier_token30] = ACTIONS(1615), + [aux_sym_cmd_identifier_token31] = ACTIONS(1617), + [aux_sym_cmd_identifier_token32] = ACTIONS(1617), + [aux_sym_cmd_identifier_token33] = ACTIONS(1617), + [aux_sym_cmd_identifier_token34] = ACTIONS(1617), + [aux_sym_cmd_identifier_token35] = ACTIONS(1617), + [aux_sym_cmd_identifier_token36] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [aux_sym_cmd_identifier_token38] = ACTIONS(1615), + [aux_sym_cmd_identifier_token39] = ACTIONS(1617), + [aux_sym_cmd_identifier_token40] = ACTIONS(1617), + [sym__newline] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_def] = ACTIONS(1615), + [anon_sym_export_DASHenv] = ACTIONS(1615), + [anon_sym_extern] = ACTIONS(1615), + [anon_sym_module] = ACTIONS(1615), + [anon_sym_use] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_RPAREN] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1615), + [anon_sym_error] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_break] = ACTIONS(1615), + [anon_sym_continue] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1615), + [anon_sym_loop] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1615), + [anon_sym_do] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1615), + [anon_sym_match] = ACTIONS(1615), + [aux_sym_ctrl_match_token1] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_DOT_DOT] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(1615), + [anon_sym_return] = ACTIONS(1615), + [anon_sym_source] = ACTIONS(1615), + [anon_sym_source_DASHenv] = ACTIONS(1615), + [anon_sym_register] = ACTIONS(1615), + [anon_sym_hide] = ACTIONS(1615), + [anon_sym_hide_DASHenv] = ACTIONS(1615), + [anon_sym_overlay] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1617), + [aux_sym_expr_unary_token1] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1617), + [anon_sym_DOT_DOT_LT] = ACTIONS(1617), + [aux_sym__val_number_decimal_token1] = ACTIONS(1615), + [aux_sym__val_number_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), + [aux_sym__val_number_token1] = ACTIONS(1617), + [aux_sym__val_number_token2] = ACTIONS(1617), + [aux_sym__val_number_token3] = ACTIONS(1617), + [anon_sym_0b] = ACTIONS(1615), + [anon_sym_0o] = ACTIONS(1615), + [anon_sym_0x] = ACTIONS(1615), + [sym_val_date] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym__str_single_quotes] = ACTIONS(1617), + [sym__str_back_ticks] = ACTIONS(1617), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1617), + [aux_sym_env_var_token1] = ACTIONS(1615), + [anon_sym_CARET] = ACTIONS(1617), + [anon_sym_POUND] = ACTIONS(247), }, [227] = { + [sym_cell_path] = STATE(364), + [sym_path] = STATE(327), [sym_comment] = STATE(227), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(1582), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1535), + [aux_sym_cell_path_repeat1] = STATE(244), + [anon_sym_export] = ACTIONS(945), + [anon_sym_alias] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_let_DASHenv] = ACTIONS(945), + [anon_sym_mut] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [aux_sym_cmd_identifier_token1] = ACTIONS(945), + [aux_sym_cmd_identifier_token2] = ACTIONS(945), + [aux_sym_cmd_identifier_token3] = ACTIONS(945), + [aux_sym_cmd_identifier_token4] = ACTIONS(945), + [aux_sym_cmd_identifier_token5] = ACTIONS(945), + [aux_sym_cmd_identifier_token6] = ACTIONS(945), + [aux_sym_cmd_identifier_token7] = ACTIONS(945), + [aux_sym_cmd_identifier_token8] = ACTIONS(945), + [aux_sym_cmd_identifier_token9] = ACTIONS(945), + [aux_sym_cmd_identifier_token10] = ACTIONS(945), + [aux_sym_cmd_identifier_token11] = ACTIONS(945), + [aux_sym_cmd_identifier_token12] = ACTIONS(945), + [aux_sym_cmd_identifier_token13] = ACTIONS(945), + [aux_sym_cmd_identifier_token14] = ACTIONS(945), + [aux_sym_cmd_identifier_token15] = ACTIONS(945), + [aux_sym_cmd_identifier_token16] = ACTIONS(945), + [aux_sym_cmd_identifier_token17] = ACTIONS(945), + [aux_sym_cmd_identifier_token18] = ACTIONS(945), + [aux_sym_cmd_identifier_token19] = ACTIONS(945), + [aux_sym_cmd_identifier_token20] = ACTIONS(945), + [aux_sym_cmd_identifier_token21] = ACTIONS(945), + [aux_sym_cmd_identifier_token22] = ACTIONS(945), + [aux_sym_cmd_identifier_token23] = ACTIONS(945), + [aux_sym_cmd_identifier_token24] = ACTIONS(945), + [aux_sym_cmd_identifier_token25] = ACTIONS(945), + [aux_sym_cmd_identifier_token26] = ACTIONS(945), + [aux_sym_cmd_identifier_token27] = ACTIONS(945), + [aux_sym_cmd_identifier_token28] = ACTIONS(945), + [aux_sym_cmd_identifier_token29] = ACTIONS(945), + [aux_sym_cmd_identifier_token30] = ACTIONS(945), + [aux_sym_cmd_identifier_token31] = ACTIONS(945), + [aux_sym_cmd_identifier_token32] = ACTIONS(945), + [aux_sym_cmd_identifier_token33] = ACTIONS(945), + [aux_sym_cmd_identifier_token34] = ACTIONS(945), + [aux_sym_cmd_identifier_token35] = ACTIONS(945), + [aux_sym_cmd_identifier_token36] = ACTIONS(945), + [anon_sym_true] = ACTIONS(945), + [anon_sym_false] = ACTIONS(945), + [anon_sym_null] = ACTIONS(945), + [aux_sym_cmd_identifier_token38] = ACTIONS(945), + [aux_sym_cmd_identifier_token39] = ACTIONS(945), + [aux_sym_cmd_identifier_token40] = ACTIONS(945), + [anon_sym_def] = ACTIONS(945), + [anon_sym_export_DASHenv] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(945), + [anon_sym_module] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_error] = ACTIONS(945), + [anon_sym_list] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_in] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_make] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_try] = ACTIONS(945), + [anon_sym_catch] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_source] = ACTIONS(945), + [anon_sym_source_DASHenv] = ACTIONS(945), + [anon_sym_register] = ACTIONS(945), + [anon_sym_hide] = ACTIONS(945), + [anon_sym_hide_DASHenv] = ACTIONS(945), + [anon_sym_overlay] = ACTIONS(945), + [anon_sym_new] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(945), + [anon_sym_DOT_DOT2] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(1601), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(945), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(945), + [aux_sym__val_number_decimal_token3] = ACTIONS(945), + [aux_sym__val_number_decimal_token4] = ACTIONS(945), + [aux_sym__val_number_token1] = ACTIONS(945), + [aux_sym__val_number_token2] = ACTIONS(945), + [aux_sym__val_number_token3] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [sym__str_single_quotes] = ACTIONS(945), + [sym__str_back_ticks] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(945), + [sym__entry_separator] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(945), [anon_sym_POUND] = ACTIONS(3), }, [228] = { - [sym_path] = STATE(293), [sym_comment] = STATE(228), - [aux_sym_cell_path_repeat1] = STATE(229), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [aux_sym_cmd_identifier_token1] = ACTIONS(889), - [aux_sym_cmd_identifier_token2] = ACTIONS(889), - [aux_sym_cmd_identifier_token3] = ACTIONS(889), - [aux_sym_cmd_identifier_token4] = ACTIONS(889), - [aux_sym_cmd_identifier_token5] = ACTIONS(889), - [aux_sym_cmd_identifier_token6] = ACTIONS(889), - [aux_sym_cmd_identifier_token7] = ACTIONS(889), - [aux_sym_cmd_identifier_token8] = ACTIONS(889), - [aux_sym_cmd_identifier_token9] = ACTIONS(889), - [aux_sym_cmd_identifier_token10] = ACTIONS(889), - [aux_sym_cmd_identifier_token11] = ACTIONS(889), - [aux_sym_cmd_identifier_token12] = ACTIONS(889), - [aux_sym_cmd_identifier_token13] = ACTIONS(889), - [aux_sym_cmd_identifier_token14] = ACTIONS(889), - [aux_sym_cmd_identifier_token15] = ACTIONS(889), - [aux_sym_cmd_identifier_token16] = ACTIONS(889), - [aux_sym_cmd_identifier_token17] = ACTIONS(889), - [aux_sym_cmd_identifier_token18] = ACTIONS(889), - [aux_sym_cmd_identifier_token19] = ACTIONS(889), - [aux_sym_cmd_identifier_token20] = ACTIONS(889), - [aux_sym_cmd_identifier_token21] = ACTIONS(889), - [aux_sym_cmd_identifier_token22] = ACTIONS(889), - [aux_sym_cmd_identifier_token23] = ACTIONS(889), - [aux_sym_cmd_identifier_token24] = ACTIONS(889), - [aux_sym_cmd_identifier_token25] = ACTIONS(889), - [aux_sym_cmd_identifier_token26] = ACTIONS(889), - [aux_sym_cmd_identifier_token27] = ACTIONS(889), - [aux_sym_cmd_identifier_token28] = ACTIONS(889), - [aux_sym_cmd_identifier_token29] = ACTIONS(889), - [aux_sym_cmd_identifier_token30] = ACTIONS(889), - [aux_sym_cmd_identifier_token31] = ACTIONS(889), - [aux_sym_cmd_identifier_token32] = ACTIONS(889), - [aux_sym_cmd_identifier_token33] = ACTIONS(889), - [aux_sym_cmd_identifier_token34] = ACTIONS(889), - [aux_sym_cmd_identifier_token35] = ACTIONS(889), - [aux_sym_cmd_identifier_token36] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [aux_sym_cmd_identifier_token38] = ACTIONS(889), - [aux_sym_cmd_identifier_token39] = ACTIONS(889), - [aux_sym_cmd_identifier_token40] = ACTIONS(889), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_list] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_make] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_try] = ACTIONS(889), - [anon_sym_catch] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_new] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(889), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(889), - [sym__entry_separator] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(1622), + [aux_sym__immediate_decimal_token2] = ACTIONS(1624), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [229] = { - [sym_path] = STATE(293), [sym_comment] = STATE(229), - [aux_sym_cell_path_repeat1] = STATE(229), - [anon_sym_export] = ACTIONS(893), - [anon_sym_alias] = ACTIONS(893), - [anon_sym_let] = ACTIONS(893), - [anon_sym_let_DASHenv] = ACTIONS(893), - [anon_sym_mut] = ACTIONS(893), - [anon_sym_const] = ACTIONS(893), - [aux_sym_cmd_identifier_token1] = ACTIONS(893), - [aux_sym_cmd_identifier_token2] = ACTIONS(893), - [aux_sym_cmd_identifier_token3] = ACTIONS(893), - [aux_sym_cmd_identifier_token4] = ACTIONS(893), - [aux_sym_cmd_identifier_token5] = ACTIONS(893), - [aux_sym_cmd_identifier_token6] = ACTIONS(893), - [aux_sym_cmd_identifier_token7] = ACTIONS(893), - [aux_sym_cmd_identifier_token8] = ACTIONS(893), - [aux_sym_cmd_identifier_token9] = ACTIONS(893), - [aux_sym_cmd_identifier_token10] = ACTIONS(893), - [aux_sym_cmd_identifier_token11] = ACTIONS(893), - [aux_sym_cmd_identifier_token12] = ACTIONS(893), - [aux_sym_cmd_identifier_token13] = ACTIONS(893), - [aux_sym_cmd_identifier_token14] = ACTIONS(893), - [aux_sym_cmd_identifier_token15] = ACTIONS(893), - [aux_sym_cmd_identifier_token16] = ACTIONS(893), - [aux_sym_cmd_identifier_token17] = ACTIONS(893), - [aux_sym_cmd_identifier_token18] = ACTIONS(893), - [aux_sym_cmd_identifier_token19] = ACTIONS(893), - [aux_sym_cmd_identifier_token20] = ACTIONS(893), - [aux_sym_cmd_identifier_token21] = ACTIONS(893), - [aux_sym_cmd_identifier_token22] = ACTIONS(893), - [aux_sym_cmd_identifier_token23] = ACTIONS(893), - [aux_sym_cmd_identifier_token24] = ACTIONS(893), - [aux_sym_cmd_identifier_token25] = ACTIONS(893), - [aux_sym_cmd_identifier_token26] = ACTIONS(893), - [aux_sym_cmd_identifier_token27] = ACTIONS(893), - [aux_sym_cmd_identifier_token28] = ACTIONS(893), - [aux_sym_cmd_identifier_token29] = ACTIONS(893), - [aux_sym_cmd_identifier_token30] = ACTIONS(893), - [aux_sym_cmd_identifier_token31] = ACTIONS(893), - [aux_sym_cmd_identifier_token32] = ACTIONS(893), - [aux_sym_cmd_identifier_token33] = ACTIONS(893), - [aux_sym_cmd_identifier_token34] = ACTIONS(893), - [aux_sym_cmd_identifier_token35] = ACTIONS(893), - [aux_sym_cmd_identifier_token36] = ACTIONS(893), - [anon_sym_true] = ACTIONS(893), - [anon_sym_false] = ACTIONS(893), - [anon_sym_null] = ACTIONS(893), - [aux_sym_cmd_identifier_token38] = ACTIONS(893), - [aux_sym_cmd_identifier_token39] = ACTIONS(893), - [aux_sym_cmd_identifier_token40] = ACTIONS(893), - [anon_sym_def] = ACTIONS(893), - [anon_sym_export_DASHenv] = ACTIONS(893), - [anon_sym_extern] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_use] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_error] = ACTIONS(893), - [anon_sym_list] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_in] = ACTIONS(893), - [anon_sym_loop] = ACTIONS(893), - [anon_sym_make] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_else] = ACTIONS(893), - [anon_sym_match] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_try] = ACTIONS(893), - [anon_sym_catch] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_source] = ACTIONS(893), - [anon_sym_source_DASHenv] = ACTIONS(893), - [anon_sym_register] = ACTIONS(893), - [anon_sym_hide] = ACTIONS(893), - [anon_sym_hide_DASHenv] = ACTIONS(893), - [anon_sym_overlay] = ACTIONS(893), - [anon_sym_new] = ACTIONS(893), - [anon_sym_as] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(893), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(893), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(893), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(893), - [aux_sym__val_number_token1] = ACTIONS(893), - [aux_sym__val_number_token2] = ACTIONS(893), - [aux_sym__val_number_token3] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(893), - [sym__str_single_quotes] = ACTIONS(893), - [sym__str_back_ticks] = ACTIONS(893), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(893), - [sym__entry_separator] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1519), + [anon_sym_alias] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_let_DASHenv] = ACTIONS(1519), + [anon_sym_mut] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [aux_sym_cmd_identifier_token1] = ACTIONS(1519), + [aux_sym_cmd_identifier_token2] = ACTIONS(1519), + [aux_sym_cmd_identifier_token3] = ACTIONS(1519), + [aux_sym_cmd_identifier_token4] = ACTIONS(1519), + [aux_sym_cmd_identifier_token5] = ACTIONS(1519), + [aux_sym_cmd_identifier_token6] = ACTIONS(1519), + [aux_sym_cmd_identifier_token7] = ACTIONS(1519), + [aux_sym_cmd_identifier_token8] = ACTIONS(1519), + [aux_sym_cmd_identifier_token9] = ACTIONS(1519), + [aux_sym_cmd_identifier_token10] = ACTIONS(1519), + [aux_sym_cmd_identifier_token11] = ACTIONS(1519), + [aux_sym_cmd_identifier_token12] = ACTIONS(1519), + [aux_sym_cmd_identifier_token13] = ACTIONS(1519), + [aux_sym_cmd_identifier_token14] = ACTIONS(1519), + [aux_sym_cmd_identifier_token15] = ACTIONS(1519), + [aux_sym_cmd_identifier_token16] = ACTIONS(1519), + [aux_sym_cmd_identifier_token17] = ACTIONS(1519), + [aux_sym_cmd_identifier_token18] = ACTIONS(1519), + [aux_sym_cmd_identifier_token19] = ACTIONS(1519), + [aux_sym_cmd_identifier_token20] = ACTIONS(1519), + [aux_sym_cmd_identifier_token21] = ACTIONS(1519), + [aux_sym_cmd_identifier_token22] = ACTIONS(1519), + [aux_sym_cmd_identifier_token23] = ACTIONS(1519), + [aux_sym_cmd_identifier_token24] = ACTIONS(1519), + [aux_sym_cmd_identifier_token25] = ACTIONS(1519), + [aux_sym_cmd_identifier_token26] = ACTIONS(1519), + [aux_sym_cmd_identifier_token27] = ACTIONS(1519), + [aux_sym_cmd_identifier_token28] = ACTIONS(1519), + [aux_sym_cmd_identifier_token29] = ACTIONS(1519), + [aux_sym_cmd_identifier_token30] = ACTIONS(1519), + [aux_sym_cmd_identifier_token31] = ACTIONS(1519), + [aux_sym_cmd_identifier_token32] = ACTIONS(1519), + [aux_sym_cmd_identifier_token33] = ACTIONS(1519), + [aux_sym_cmd_identifier_token34] = ACTIONS(1519), + [aux_sym_cmd_identifier_token35] = ACTIONS(1519), + [aux_sym_cmd_identifier_token36] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [anon_sym_def] = ACTIONS(1519), + [anon_sym_export_DASHenv] = ACTIONS(1519), + [anon_sym_extern] = ACTIONS(1519), + [anon_sym_module] = ACTIONS(1519), + [anon_sym_use] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1521), + [anon_sym_error] = ACTIONS(1519), + [anon_sym_list] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [anon_sym_loop] = ACTIONS(1519), + [anon_sym_make] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_do] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_else] = ACTIONS(1519), + [anon_sym_match] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1519), + [anon_sym_catch] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_source] = ACTIONS(1519), + [anon_sym_source_DASHenv] = ACTIONS(1519), + [anon_sym_register] = ACTIONS(1519), + [anon_sym_hide] = ACTIONS(1519), + [anon_sym_hide_DASHenv] = ACTIONS(1519), + [anon_sym_overlay] = ACTIONS(1519), + [anon_sym_new] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1519), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [230] = { [sym_comment] = STATE(230), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_alias] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_let_DASHenv] = ACTIONS(1587), - [anon_sym_mut] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [aux_sym_cmd_identifier_token1] = ACTIONS(1587), - [aux_sym_cmd_identifier_token2] = ACTIONS(1587), - [aux_sym_cmd_identifier_token3] = ACTIONS(1587), - [aux_sym_cmd_identifier_token4] = ACTIONS(1587), - [aux_sym_cmd_identifier_token5] = ACTIONS(1587), - [aux_sym_cmd_identifier_token6] = ACTIONS(1587), - [aux_sym_cmd_identifier_token7] = ACTIONS(1587), - [aux_sym_cmd_identifier_token8] = ACTIONS(1587), - [aux_sym_cmd_identifier_token9] = ACTIONS(1587), - [aux_sym_cmd_identifier_token10] = ACTIONS(1587), - [aux_sym_cmd_identifier_token11] = ACTIONS(1587), - [aux_sym_cmd_identifier_token12] = ACTIONS(1587), - [aux_sym_cmd_identifier_token13] = ACTIONS(1587), - [aux_sym_cmd_identifier_token14] = ACTIONS(1587), - [aux_sym_cmd_identifier_token15] = ACTIONS(1587), - [aux_sym_cmd_identifier_token16] = ACTIONS(1587), - [aux_sym_cmd_identifier_token17] = ACTIONS(1587), - [aux_sym_cmd_identifier_token18] = ACTIONS(1587), - [aux_sym_cmd_identifier_token19] = ACTIONS(1587), - [aux_sym_cmd_identifier_token20] = ACTIONS(1587), - [aux_sym_cmd_identifier_token21] = ACTIONS(1587), - [aux_sym_cmd_identifier_token22] = ACTIONS(1587), - [aux_sym_cmd_identifier_token23] = ACTIONS(1587), - [aux_sym_cmd_identifier_token24] = ACTIONS(1587), - [aux_sym_cmd_identifier_token25] = ACTIONS(1587), - [aux_sym_cmd_identifier_token26] = ACTIONS(1587), - [aux_sym_cmd_identifier_token27] = ACTIONS(1587), - [aux_sym_cmd_identifier_token28] = ACTIONS(1587), - [aux_sym_cmd_identifier_token29] = ACTIONS(1587), - [aux_sym_cmd_identifier_token30] = ACTIONS(1587), - [aux_sym_cmd_identifier_token31] = ACTIONS(1587), - [aux_sym_cmd_identifier_token32] = ACTIONS(1587), - [aux_sym_cmd_identifier_token33] = ACTIONS(1587), - [aux_sym_cmd_identifier_token34] = ACTIONS(1587), - [aux_sym_cmd_identifier_token35] = ACTIONS(1587), - [aux_sym_cmd_identifier_token36] = ACTIONS(1587), + [anon_sym_export] = ACTIONS(1585), + [anon_sym_alias] = ACTIONS(1585), + [anon_sym_let] = ACTIONS(1585), + [anon_sym_let_DASHenv] = ACTIONS(1585), + [anon_sym_mut] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [aux_sym_cmd_identifier_token1] = ACTIONS(1585), + [aux_sym_cmd_identifier_token2] = ACTIONS(1585), + [aux_sym_cmd_identifier_token3] = ACTIONS(1585), + [aux_sym_cmd_identifier_token4] = ACTIONS(1585), + [aux_sym_cmd_identifier_token5] = ACTIONS(1585), + [aux_sym_cmd_identifier_token6] = ACTIONS(1585), + [aux_sym_cmd_identifier_token7] = ACTIONS(1585), + [aux_sym_cmd_identifier_token8] = ACTIONS(1585), + [aux_sym_cmd_identifier_token9] = ACTIONS(1585), + [aux_sym_cmd_identifier_token10] = ACTIONS(1585), + [aux_sym_cmd_identifier_token11] = ACTIONS(1585), + [aux_sym_cmd_identifier_token12] = ACTIONS(1585), + [aux_sym_cmd_identifier_token13] = ACTIONS(1585), + [aux_sym_cmd_identifier_token14] = ACTIONS(1585), + [aux_sym_cmd_identifier_token15] = ACTIONS(1585), + [aux_sym_cmd_identifier_token16] = ACTIONS(1585), + [aux_sym_cmd_identifier_token17] = ACTIONS(1585), + [aux_sym_cmd_identifier_token18] = ACTIONS(1585), + [aux_sym_cmd_identifier_token19] = ACTIONS(1585), + [aux_sym_cmd_identifier_token20] = ACTIONS(1585), + [aux_sym_cmd_identifier_token21] = ACTIONS(1585), + [aux_sym_cmd_identifier_token22] = ACTIONS(1585), + [aux_sym_cmd_identifier_token23] = ACTIONS(1585), + [aux_sym_cmd_identifier_token24] = ACTIONS(1585), + [aux_sym_cmd_identifier_token25] = ACTIONS(1585), + [aux_sym_cmd_identifier_token26] = ACTIONS(1585), + [aux_sym_cmd_identifier_token27] = ACTIONS(1585), + [aux_sym_cmd_identifier_token28] = ACTIONS(1585), + [aux_sym_cmd_identifier_token29] = ACTIONS(1585), + [aux_sym_cmd_identifier_token30] = ACTIONS(1585), + [aux_sym_cmd_identifier_token31] = ACTIONS(1585), + [aux_sym_cmd_identifier_token32] = ACTIONS(1585), + [aux_sym_cmd_identifier_token33] = ACTIONS(1585), + [aux_sym_cmd_identifier_token34] = ACTIONS(1585), + [aux_sym_cmd_identifier_token35] = ACTIONS(1585), + [aux_sym_cmd_identifier_token36] = ACTIONS(1585), [anon_sym_true] = ACTIONS(1587), [anon_sym_false] = ACTIONS(1587), [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1585), [aux_sym_cmd_identifier_token39] = ACTIONS(1587), [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [anon_sym_def] = ACTIONS(1587), - [anon_sym_export_DASHenv] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_def] = ACTIONS(1585), + [anon_sym_export_DASHenv] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym_module] = ACTIONS(1585), + [anon_sym_use] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_error] = ACTIONS(1587), - [anon_sym_list] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_make] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), + [anon_sym_error] = ACTIONS(1585), + [anon_sym_list] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_in] = ACTIONS(1585), + [anon_sym_loop] = ACTIONS(1585), + [anon_sym_make] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_source] = ACTIONS(1587), - [anon_sym_source_DASHenv] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_hide] = ACTIONS(1587), - [anon_sym_hide_DASHenv] = ACTIONS(1587), - [anon_sym_overlay] = ACTIONS(1587), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_as] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_catch] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_source] = ACTIONS(1585), + [anon_sym_source_DASHenv] = ACTIONS(1585), + [anon_sym_register] = ACTIONS(1585), + [anon_sym_hide] = ACTIONS(1585), + [anon_sym_hide_DASHenv] = ACTIONS(1585), + [anon_sym_overlay] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1585), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1591), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1593), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1593), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [anon_sym_DOT2] = ACTIONS(1587), [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), [aux_sym__val_number_token1] = ACTIONS(1587), [aux_sym__val_number_token2] = ACTIONS(1587), [aux_sym__val_number_token3] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1585), [anon_sym_DQUOTE] = ACTIONS(1587), [sym__str_single_quotes] = ACTIONS(1587), [sym__str_back_ticks] = ACTIONS(1587), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), - [sym__entry_separator] = ACTIONS(1595), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1585), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), }, [231] = { - [sym_cell_path] = STATE(433), - [sym_path] = STATE(349), [sym_comment] = STATE(231), - [aux_sym_cell_path_repeat1] = STATE(249), - [anon_sym_export] = ACTIONS(883), - [anon_sym_alias] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_let_DASHenv] = ACTIONS(883), - [anon_sym_mut] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [aux_sym_cmd_identifier_token1] = ACTIONS(883), - [aux_sym_cmd_identifier_token2] = ACTIONS(883), - [aux_sym_cmd_identifier_token3] = ACTIONS(883), - [aux_sym_cmd_identifier_token4] = ACTIONS(883), - [aux_sym_cmd_identifier_token5] = ACTIONS(883), - [aux_sym_cmd_identifier_token6] = ACTIONS(883), - [aux_sym_cmd_identifier_token7] = ACTIONS(883), - [aux_sym_cmd_identifier_token8] = ACTIONS(883), - [aux_sym_cmd_identifier_token9] = ACTIONS(883), - [aux_sym_cmd_identifier_token10] = ACTIONS(883), - [aux_sym_cmd_identifier_token11] = ACTIONS(883), - [aux_sym_cmd_identifier_token12] = ACTIONS(883), - [aux_sym_cmd_identifier_token13] = ACTIONS(883), - [aux_sym_cmd_identifier_token14] = ACTIONS(883), - [aux_sym_cmd_identifier_token15] = ACTIONS(883), - [aux_sym_cmd_identifier_token16] = ACTIONS(883), - [aux_sym_cmd_identifier_token17] = ACTIONS(883), - [aux_sym_cmd_identifier_token18] = ACTIONS(883), - [aux_sym_cmd_identifier_token19] = ACTIONS(883), - [aux_sym_cmd_identifier_token20] = ACTIONS(883), - [aux_sym_cmd_identifier_token21] = ACTIONS(883), - [aux_sym_cmd_identifier_token22] = ACTIONS(883), - [aux_sym_cmd_identifier_token23] = ACTIONS(883), - [aux_sym_cmd_identifier_token24] = ACTIONS(883), - [aux_sym_cmd_identifier_token25] = ACTIONS(883), - [aux_sym_cmd_identifier_token26] = ACTIONS(883), - [aux_sym_cmd_identifier_token27] = ACTIONS(883), - [aux_sym_cmd_identifier_token28] = ACTIONS(883), - [aux_sym_cmd_identifier_token29] = ACTIONS(883), - [aux_sym_cmd_identifier_token30] = ACTIONS(883), - [aux_sym_cmd_identifier_token31] = ACTIONS(883), - [aux_sym_cmd_identifier_token32] = ACTIONS(883), - [aux_sym_cmd_identifier_token33] = ACTIONS(883), - [aux_sym_cmd_identifier_token34] = ACTIONS(883), - [aux_sym_cmd_identifier_token35] = ACTIONS(883), - [aux_sym_cmd_identifier_token36] = ACTIONS(883), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_null] = ACTIONS(885), - [aux_sym_cmd_identifier_token38] = ACTIONS(883), - [aux_sym_cmd_identifier_token39] = ACTIONS(885), - [aux_sym_cmd_identifier_token40] = ACTIONS(885), - [anon_sym_def] = ACTIONS(883), - [anon_sym_export_DASHenv] = ACTIONS(883), - [anon_sym_extern] = ACTIONS(883), - [anon_sym_module] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_error] = ACTIONS(883), - [anon_sym_list] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_make] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [anon_sym_do] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_else] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_try] = ACTIONS(883), - [anon_sym_catch] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_source] = ACTIONS(883), - [anon_sym_source_DASHenv] = ACTIONS(883), - [anon_sym_register] = ACTIONS(883), - [anon_sym_hide] = ACTIONS(883), - [anon_sym_hide_DASHenv] = ACTIONS(883), - [anon_sym_overlay] = ACTIONS(883), - [anon_sym_new] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(885), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(1597), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(885), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(885), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(885), - [aux_sym__val_number_token1] = ACTIONS(885), - [aux_sym__val_number_token2] = ACTIONS(885), - [aux_sym__val_number_token3] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(885), - [sym__str_single_quotes] = ACTIONS(885), - [sym__str_back_ticks] = ACTIONS(885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(885), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(1595), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), }, [232] = { [sym_comment] = STATE(232), - [aux_sym__block_body_repeat1] = STATE(233), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [aux_sym_cmd_identifier_token1] = ACTIONS(1559), - [aux_sym_cmd_identifier_token2] = ACTIONS(1559), - [aux_sym_cmd_identifier_token3] = ACTIONS(1559), - [aux_sym_cmd_identifier_token4] = ACTIONS(1559), - [aux_sym_cmd_identifier_token5] = ACTIONS(1559), - [aux_sym_cmd_identifier_token6] = ACTIONS(1559), - [aux_sym_cmd_identifier_token7] = ACTIONS(1559), - [aux_sym_cmd_identifier_token8] = ACTIONS(1559), - [aux_sym_cmd_identifier_token9] = ACTIONS(1559), - [aux_sym_cmd_identifier_token10] = ACTIONS(1559), - [aux_sym_cmd_identifier_token11] = ACTIONS(1559), - [aux_sym_cmd_identifier_token12] = ACTIONS(1559), - [aux_sym_cmd_identifier_token13] = ACTIONS(1559), - [aux_sym_cmd_identifier_token14] = ACTIONS(1559), - [aux_sym_cmd_identifier_token15] = ACTIONS(1559), - [aux_sym_cmd_identifier_token16] = ACTIONS(1559), - [aux_sym_cmd_identifier_token17] = ACTIONS(1559), - [aux_sym_cmd_identifier_token18] = ACTIONS(1559), - [aux_sym_cmd_identifier_token19] = ACTIONS(1559), - [aux_sym_cmd_identifier_token20] = ACTIONS(1559), - [aux_sym_cmd_identifier_token21] = ACTIONS(1559), - [aux_sym_cmd_identifier_token22] = ACTIONS(1559), - [aux_sym_cmd_identifier_token23] = ACTIONS(1559), - [aux_sym_cmd_identifier_token24] = ACTIONS(1561), - [aux_sym_cmd_identifier_token25] = ACTIONS(1559), - [aux_sym_cmd_identifier_token26] = ACTIONS(1561), - [aux_sym_cmd_identifier_token27] = ACTIONS(1559), - [aux_sym_cmd_identifier_token28] = ACTIONS(1559), - [aux_sym_cmd_identifier_token29] = ACTIONS(1559), - [aux_sym_cmd_identifier_token30] = ACTIONS(1559), - [aux_sym_cmd_identifier_token31] = ACTIONS(1561), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1561), - [aux_sym_cmd_identifier_token35] = ACTIONS(1561), - [aux_sym_cmd_identifier_token36] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [aux_sym_cmd_identifier_token38] = ACTIONS(1559), - [aux_sym_cmd_identifier_token39] = ACTIONS(1561), - [aux_sym_cmd_identifier_token40] = ACTIONS(1561), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [aux_sym_ctrl_match_token1] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1561), - [aux_sym_expr_unary_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_DOT_DOT_LT] = ACTIONS(1561), - [aux_sym__val_number_decimal_token1] = ACTIONS(1559), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [anon_sym_DOT2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1561), - [aux_sym__val_number_token2] = ACTIONS(1561), - [aux_sym__val_number_token3] = ACTIONS(1561), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym__str_single_quotes] = ACTIONS(1561), - [sym__str_back_ticks] = ACTIONS(1561), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(7297), + [aux_sym__parenthesized_body_repeat1] = STATE(232), + [anon_sym_export] = ACTIONS(1626), + [anon_sym_alias] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1626), + [anon_sym_let_DASHenv] = ACTIONS(1626), + [anon_sym_mut] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1626), + [aux_sym_cmd_identifier_token1] = ACTIONS(1626), + [aux_sym_cmd_identifier_token2] = ACTIONS(1626), + [aux_sym_cmd_identifier_token3] = ACTIONS(1626), + [aux_sym_cmd_identifier_token4] = ACTIONS(1626), + [aux_sym_cmd_identifier_token5] = ACTIONS(1626), + [aux_sym_cmd_identifier_token6] = ACTIONS(1626), + [aux_sym_cmd_identifier_token7] = ACTIONS(1626), + [aux_sym_cmd_identifier_token8] = ACTIONS(1626), + [aux_sym_cmd_identifier_token9] = ACTIONS(1626), + [aux_sym_cmd_identifier_token10] = ACTIONS(1626), + [aux_sym_cmd_identifier_token11] = ACTIONS(1626), + [aux_sym_cmd_identifier_token12] = ACTIONS(1626), + [aux_sym_cmd_identifier_token13] = ACTIONS(1626), + [aux_sym_cmd_identifier_token14] = ACTIONS(1626), + [aux_sym_cmd_identifier_token15] = ACTIONS(1626), + [aux_sym_cmd_identifier_token16] = ACTIONS(1626), + [aux_sym_cmd_identifier_token17] = ACTIONS(1626), + [aux_sym_cmd_identifier_token18] = ACTIONS(1626), + [aux_sym_cmd_identifier_token19] = ACTIONS(1626), + [aux_sym_cmd_identifier_token20] = ACTIONS(1626), + [aux_sym_cmd_identifier_token21] = ACTIONS(1626), + [aux_sym_cmd_identifier_token22] = ACTIONS(1626), + [aux_sym_cmd_identifier_token23] = ACTIONS(1626), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1626), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1626), + [aux_sym_cmd_identifier_token28] = ACTIONS(1626), + [aux_sym_cmd_identifier_token29] = ACTIONS(1626), + [aux_sym_cmd_identifier_token30] = ACTIONS(1626), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1628), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1626), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [anon_sym_null] = ACTIONS(1628), + [aux_sym_cmd_identifier_token38] = ACTIONS(1626), + [aux_sym_cmd_identifier_token39] = ACTIONS(1628), + [aux_sym_cmd_identifier_token40] = ACTIONS(1628), + [sym__newline] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1626), + [anon_sym_export_DASHenv] = ACTIONS(1626), + [anon_sym_extern] = ACTIONS(1626), + [anon_sym_module] = ACTIONS(1626), + [anon_sym_use] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1626), + [anon_sym_error] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_loop] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_do] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [aux_sym_ctrl_match_token1] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1626), + [anon_sym_try] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_source] = ACTIONS(1626), + [anon_sym_source_DASHenv] = ACTIONS(1626), + [anon_sym_register] = ACTIONS(1626), + [anon_sym_hide] = ACTIONS(1626), + [anon_sym_hide_DASHenv] = ACTIONS(1626), + [anon_sym_overlay] = ACTIONS(1626), + [anon_sym_where] = ACTIONS(1628), + [aux_sym_expr_unary_token1] = ACTIONS(1628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), + [anon_sym_DOT_DOT_LT] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1626), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [anon_sym_0b] = ACTIONS(1626), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [aux_sym_env_var_token1] = ACTIONS(1626), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(247), }, [233] = { [sym_comment] = STATE(233), - [aux_sym__block_body_repeat1] = STATE(233), - [anon_sym_export] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1601), - [anon_sym_let] = ACTIONS(1601), - [anon_sym_let_DASHenv] = ACTIONS(1601), - [anon_sym_mut] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [aux_sym_cmd_identifier_token1] = ACTIONS(1601), - [aux_sym_cmd_identifier_token2] = ACTIONS(1601), - [aux_sym_cmd_identifier_token3] = ACTIONS(1601), - [aux_sym_cmd_identifier_token4] = ACTIONS(1601), - [aux_sym_cmd_identifier_token5] = ACTIONS(1601), - [aux_sym_cmd_identifier_token6] = ACTIONS(1601), - [aux_sym_cmd_identifier_token7] = ACTIONS(1601), - [aux_sym_cmd_identifier_token8] = ACTIONS(1601), - [aux_sym_cmd_identifier_token9] = ACTIONS(1601), - [aux_sym_cmd_identifier_token10] = ACTIONS(1601), - [aux_sym_cmd_identifier_token11] = ACTIONS(1601), - [aux_sym_cmd_identifier_token12] = ACTIONS(1601), - [aux_sym_cmd_identifier_token13] = ACTIONS(1601), - [aux_sym_cmd_identifier_token14] = ACTIONS(1601), - [aux_sym_cmd_identifier_token15] = ACTIONS(1601), - [aux_sym_cmd_identifier_token16] = ACTIONS(1601), - [aux_sym_cmd_identifier_token17] = ACTIONS(1601), - [aux_sym_cmd_identifier_token18] = ACTIONS(1601), - [aux_sym_cmd_identifier_token19] = ACTIONS(1601), - [aux_sym_cmd_identifier_token20] = ACTIONS(1601), - [aux_sym_cmd_identifier_token21] = ACTIONS(1601), - [aux_sym_cmd_identifier_token22] = ACTIONS(1601), - [aux_sym_cmd_identifier_token23] = ACTIONS(1601), - [aux_sym_cmd_identifier_token24] = ACTIONS(1603), - [aux_sym_cmd_identifier_token25] = ACTIONS(1601), - [aux_sym_cmd_identifier_token26] = ACTIONS(1603), - [aux_sym_cmd_identifier_token27] = ACTIONS(1601), - [aux_sym_cmd_identifier_token28] = ACTIONS(1601), - [aux_sym_cmd_identifier_token29] = ACTIONS(1601), - [aux_sym_cmd_identifier_token30] = ACTIONS(1601), - [aux_sym_cmd_identifier_token31] = ACTIONS(1603), - [aux_sym_cmd_identifier_token32] = ACTIONS(1603), - [aux_sym_cmd_identifier_token33] = ACTIONS(1603), - [aux_sym_cmd_identifier_token34] = ACTIONS(1603), - [aux_sym_cmd_identifier_token35] = ACTIONS(1603), - [aux_sym_cmd_identifier_token36] = ACTIONS(1601), + [aux_sym__block_body_repeat1] = STATE(240), + [ts_builtin_sym_end] = ACTIONS(1613), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1605), + [aux_sym_cmd_identifier_token3] = ACTIONS(1605), + [aux_sym_cmd_identifier_token4] = ACTIONS(1605), + [aux_sym_cmd_identifier_token5] = ACTIONS(1605), + [aux_sym_cmd_identifier_token6] = ACTIONS(1605), + [aux_sym_cmd_identifier_token7] = ACTIONS(1605), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1605), + [aux_sym_cmd_identifier_token11] = ACTIONS(1605), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1605), + [aux_sym_cmd_identifier_token17] = ACTIONS(1605), + [aux_sym_cmd_identifier_token18] = ACTIONS(1605), + [aux_sym_cmd_identifier_token19] = ACTIONS(1605), + [aux_sym_cmd_identifier_token20] = ACTIONS(1605), + [aux_sym_cmd_identifier_token21] = ACTIONS(1605), + [aux_sym_cmd_identifier_token22] = ACTIONS(1605), + [aux_sym_cmd_identifier_token23] = ACTIONS(1605), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1605), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1605), + [aux_sym_cmd_identifier_token28] = ACTIONS(1605), + [aux_sym_cmd_identifier_token29] = ACTIONS(1605), + [aux_sym_cmd_identifier_token30] = ACTIONS(1605), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [aux_sym_ctrl_match_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1607), + [aux_sym_expr_unary_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [aux_sym_env_var_token1] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + }, + [234] = { + [sym_comment] = STATE(234), + [ts_builtin_sym_end] = ACTIONS(1271), + [anon_sym_POUND_BANG] = ACTIONS(1277), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [aux_sym_cmd_identifier_token1] = ACTIONS(1275), + [aux_sym_cmd_identifier_token2] = ACTIONS(1275), + [aux_sym_cmd_identifier_token3] = ACTIONS(1275), + [aux_sym_cmd_identifier_token4] = ACTIONS(1275), + [aux_sym_cmd_identifier_token5] = ACTIONS(1275), + [aux_sym_cmd_identifier_token6] = ACTIONS(1275), + [aux_sym_cmd_identifier_token7] = ACTIONS(1275), + [aux_sym_cmd_identifier_token8] = ACTIONS(1275), + [aux_sym_cmd_identifier_token9] = ACTIONS(1275), + [aux_sym_cmd_identifier_token10] = ACTIONS(1275), + [aux_sym_cmd_identifier_token11] = ACTIONS(1275), + [aux_sym_cmd_identifier_token12] = ACTIONS(1275), + [aux_sym_cmd_identifier_token13] = ACTIONS(1275), + [aux_sym_cmd_identifier_token14] = ACTIONS(1275), + [aux_sym_cmd_identifier_token15] = ACTIONS(1275), + [aux_sym_cmd_identifier_token16] = ACTIONS(1275), + [aux_sym_cmd_identifier_token17] = ACTIONS(1275), + [aux_sym_cmd_identifier_token18] = ACTIONS(1275), + [aux_sym_cmd_identifier_token19] = ACTIONS(1275), + [aux_sym_cmd_identifier_token20] = ACTIONS(1275), + [aux_sym_cmd_identifier_token21] = ACTIONS(1275), + [aux_sym_cmd_identifier_token22] = ACTIONS(1275), + [aux_sym_cmd_identifier_token23] = ACTIONS(1275), + [aux_sym_cmd_identifier_token24] = ACTIONS(1271), + [aux_sym_cmd_identifier_token25] = ACTIONS(1275), + [aux_sym_cmd_identifier_token26] = ACTIONS(1271), + [aux_sym_cmd_identifier_token27] = ACTIONS(1275), + [aux_sym_cmd_identifier_token28] = ACTIONS(1275), + [aux_sym_cmd_identifier_token29] = ACTIONS(1275), + [aux_sym_cmd_identifier_token30] = ACTIONS(1275), + [aux_sym_cmd_identifier_token31] = ACTIONS(1271), + [aux_sym_cmd_identifier_token32] = ACTIONS(1271), + [aux_sym_cmd_identifier_token33] = ACTIONS(1271), + [aux_sym_cmd_identifier_token34] = ACTIONS(1271), + [aux_sym_cmd_identifier_token35] = ACTIONS(1271), + [aux_sym_cmd_identifier_token36] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [aux_sym_cmd_identifier_token38] = ACTIONS(1275), + [aux_sym_cmd_identifier_token39] = ACTIONS(1271), + [aux_sym_cmd_identifier_token40] = ACTIONS(1271), + [sym__newline] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [aux_sym_ctrl_match_token1] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_where] = ACTIONS(1271), + [aux_sym_expr_unary_token1] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_decimal_token4] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [aux_sym_env_var_token1] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(3), + }, + [235] = { + [sym_comment] = STATE(235), + [aux_sym__block_body_repeat1] = STATE(240), + [ts_builtin_sym_end] = ACTIONS(1611), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1605), + [aux_sym_cmd_identifier_token3] = ACTIONS(1605), + [aux_sym_cmd_identifier_token4] = ACTIONS(1605), + [aux_sym_cmd_identifier_token5] = ACTIONS(1605), + [aux_sym_cmd_identifier_token6] = ACTIONS(1605), + [aux_sym_cmd_identifier_token7] = ACTIONS(1605), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1605), + [aux_sym_cmd_identifier_token11] = ACTIONS(1605), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1605), + [aux_sym_cmd_identifier_token17] = ACTIONS(1605), + [aux_sym_cmd_identifier_token18] = ACTIONS(1605), + [aux_sym_cmd_identifier_token19] = ACTIONS(1605), + [aux_sym_cmd_identifier_token20] = ACTIONS(1605), + [aux_sym_cmd_identifier_token21] = ACTIONS(1605), + [aux_sym_cmd_identifier_token22] = ACTIONS(1605), + [aux_sym_cmd_identifier_token23] = ACTIONS(1605), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1605), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1605), + [aux_sym_cmd_identifier_token28] = ACTIONS(1605), + [aux_sym_cmd_identifier_token29] = ACTIONS(1605), + [aux_sym_cmd_identifier_token30] = ACTIONS(1605), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [aux_sym_ctrl_match_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1607), + [aux_sym_expr_unary_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [aux_sym_env_var_token1] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + }, + [236] = { + [sym_cell_path] = STATE(455), + [sym_path] = STATE(396), + [sym_comment] = STATE(236), + [aux_sym_cell_path_repeat1] = STATE(252), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [aux_sym_cmd_identifier_token1] = ACTIONS(1599), + [aux_sym_cmd_identifier_token2] = ACTIONS(1599), + [aux_sym_cmd_identifier_token3] = ACTIONS(1599), + [aux_sym_cmd_identifier_token4] = ACTIONS(1599), + [aux_sym_cmd_identifier_token5] = ACTIONS(1599), + [aux_sym_cmd_identifier_token6] = ACTIONS(1599), + [aux_sym_cmd_identifier_token7] = ACTIONS(1599), + [aux_sym_cmd_identifier_token8] = ACTIONS(1599), + [aux_sym_cmd_identifier_token9] = ACTIONS(1599), + [aux_sym_cmd_identifier_token10] = ACTIONS(1599), + [aux_sym_cmd_identifier_token11] = ACTIONS(1599), + [aux_sym_cmd_identifier_token12] = ACTIONS(1599), + [aux_sym_cmd_identifier_token13] = ACTIONS(1599), + [aux_sym_cmd_identifier_token14] = ACTIONS(1599), + [aux_sym_cmd_identifier_token15] = ACTIONS(1599), + [aux_sym_cmd_identifier_token16] = ACTIONS(1599), + [aux_sym_cmd_identifier_token17] = ACTIONS(1599), + [aux_sym_cmd_identifier_token18] = ACTIONS(1599), + [aux_sym_cmd_identifier_token19] = ACTIONS(1599), + [aux_sym_cmd_identifier_token20] = ACTIONS(1599), + [aux_sym_cmd_identifier_token21] = ACTIONS(1599), + [aux_sym_cmd_identifier_token22] = ACTIONS(1599), + [aux_sym_cmd_identifier_token23] = ACTIONS(1599), + [aux_sym_cmd_identifier_token24] = ACTIONS(1599), + [aux_sym_cmd_identifier_token25] = ACTIONS(1599), + [aux_sym_cmd_identifier_token26] = ACTIONS(1599), + [aux_sym_cmd_identifier_token27] = ACTIONS(1599), + [aux_sym_cmd_identifier_token28] = ACTIONS(1599), + [aux_sym_cmd_identifier_token29] = ACTIONS(1599), + [aux_sym_cmd_identifier_token30] = ACTIONS(1599), + [aux_sym_cmd_identifier_token31] = ACTIONS(1599), + [aux_sym_cmd_identifier_token32] = ACTIONS(1599), + [aux_sym_cmd_identifier_token33] = ACTIONS(1599), + [aux_sym_cmd_identifier_token34] = ACTIONS(1599), + [aux_sym_cmd_identifier_token35] = ACTIONS(1599), + [aux_sym_cmd_identifier_token36] = ACTIONS(1599), [anon_sym_true] = ACTIONS(1603), [anon_sym_false] = ACTIONS(1603), [anon_sym_null] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1601), + [aux_sym_cmd_identifier_token38] = ACTIONS(1599), [aux_sym_cmd_identifier_token39] = ACTIONS(1603), [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [sym__newline] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_def] = ACTIONS(1601), - [anon_sym_export_DASHenv] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym_module] = ACTIONS(1601), - [anon_sym_use] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_error] = ACTIONS(1601), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_loop] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_match] = ACTIONS(1601), - [aux_sym_ctrl_match_token1] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(1603), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_list] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_make] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1601), - [anon_sym_try] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_source] = ACTIONS(1601), - [anon_sym_source_DASHenv] = ACTIONS(1601), - [anon_sym_register] = ACTIONS(1601), - [anon_sym_hide] = ACTIONS(1601), - [anon_sym_hide_DASHenv] = ACTIONS(1601), - [anon_sym_overlay] = ACTIONS(1601), - [anon_sym_where] = ACTIONS(1603), - [aux_sym_expr_unary_token1] = ACTIONS(1603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1601), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_catch] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_new] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1603), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), [aux_sym__val_number_decimal_token2] = ACTIONS(1603), - [anon_sym_DOT2] = ACTIONS(1601), [aux_sym__val_number_decimal_token3] = ACTIONS(1603), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(1603), [aux_sym__val_number_token2] = ACTIONS(1603), [aux_sym__val_number_token3] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1601), - [anon_sym_0o] = ACTIONS(1601), - [anon_sym_0x] = ACTIONS(1601), - [sym_val_date] = ACTIONS(1603), [anon_sym_DQUOTE] = ACTIONS(1603), [sym__str_single_quotes] = ACTIONS(1603), [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_CARET] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(3), - }, - [234] = { - [sym_cell_path] = STATE(464), - [sym_path] = STATE(349), - [sym_comment] = STATE(234), - [aux_sym_cell_path_repeat1] = STATE(249), - [anon_sym_export] = ACTIONS(1545), - [anon_sym_alias] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_let_DASHenv] = ACTIONS(1545), - [anon_sym_mut] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [aux_sym_cmd_identifier_token1] = ACTIONS(1545), - [aux_sym_cmd_identifier_token2] = ACTIONS(1545), - [aux_sym_cmd_identifier_token3] = ACTIONS(1545), - [aux_sym_cmd_identifier_token4] = ACTIONS(1545), - [aux_sym_cmd_identifier_token5] = ACTIONS(1545), - [aux_sym_cmd_identifier_token6] = ACTIONS(1545), - [aux_sym_cmd_identifier_token7] = ACTIONS(1545), - [aux_sym_cmd_identifier_token8] = ACTIONS(1545), - [aux_sym_cmd_identifier_token9] = ACTIONS(1545), - [aux_sym_cmd_identifier_token10] = ACTIONS(1545), - [aux_sym_cmd_identifier_token11] = ACTIONS(1545), - [aux_sym_cmd_identifier_token12] = ACTIONS(1545), - [aux_sym_cmd_identifier_token13] = ACTIONS(1545), - [aux_sym_cmd_identifier_token14] = ACTIONS(1545), - [aux_sym_cmd_identifier_token15] = ACTIONS(1545), - [aux_sym_cmd_identifier_token16] = ACTIONS(1545), - [aux_sym_cmd_identifier_token17] = ACTIONS(1545), - [aux_sym_cmd_identifier_token18] = ACTIONS(1545), - [aux_sym_cmd_identifier_token19] = ACTIONS(1545), - [aux_sym_cmd_identifier_token20] = ACTIONS(1545), - [aux_sym_cmd_identifier_token21] = ACTIONS(1545), - [aux_sym_cmd_identifier_token22] = ACTIONS(1545), - [aux_sym_cmd_identifier_token23] = ACTIONS(1545), - [aux_sym_cmd_identifier_token24] = ACTIONS(1545), - [aux_sym_cmd_identifier_token25] = ACTIONS(1545), - [aux_sym_cmd_identifier_token26] = ACTIONS(1545), - [aux_sym_cmd_identifier_token27] = ACTIONS(1545), - [aux_sym_cmd_identifier_token28] = ACTIONS(1545), - [aux_sym_cmd_identifier_token29] = ACTIONS(1545), - [aux_sym_cmd_identifier_token30] = ACTIONS(1545), - [aux_sym_cmd_identifier_token31] = ACTIONS(1545), - [aux_sym_cmd_identifier_token32] = ACTIONS(1545), - [aux_sym_cmd_identifier_token33] = ACTIONS(1545), - [aux_sym_cmd_identifier_token34] = ACTIONS(1545), - [aux_sym_cmd_identifier_token35] = ACTIONS(1545), - [aux_sym_cmd_identifier_token36] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_null] = ACTIONS(1549), - [aux_sym_cmd_identifier_token38] = ACTIONS(1545), - [aux_sym_cmd_identifier_token39] = ACTIONS(1549), - [aux_sym_cmd_identifier_token40] = ACTIONS(1549), - [anon_sym_def] = ACTIONS(1545), - [anon_sym_export_DASHenv] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_module] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_DOLLAR] = ACTIONS(1549), - [anon_sym_error] = ACTIONS(1545), - [anon_sym_list] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_make] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_else] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_catch] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_source] = ACTIONS(1545), - [anon_sym_source_DASHenv] = ACTIONS(1545), - [anon_sym_register] = ACTIONS(1545), - [anon_sym_hide] = ACTIONS(1545), - [anon_sym_hide_DASHenv] = ACTIONS(1545), - [anon_sym_overlay] = ACTIONS(1545), - [anon_sym_new] = ACTIONS(1545), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1549), - [anon_sym_DOT_DOT2] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(1597), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1549), - [aux_sym__val_number_decimal_token1] = ACTIONS(1545), - [aux_sym__val_number_decimal_token2] = ACTIONS(1549), - [anon_sym_DOT2] = ACTIONS(1545), - [aux_sym__val_number_decimal_token3] = ACTIONS(1549), - [aux_sym__val_number_token1] = ACTIONS(1549), - [aux_sym__val_number_token2] = ACTIONS(1549), - [aux_sym__val_number_token3] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [sym__str_single_quotes] = ACTIONS(1549), - [sym__str_back_ticks] = ACTIONS(1549), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1549), - [anon_sym_POUND] = ACTIONS(3), - }, - [235] = { - [sym_comment] = STATE(235), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(121), - }, - [236] = { - [sym_comment] = STATE(236), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1535), - [aux_sym_cmd_identifier_token40] = ACTIONS(1535), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1535), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1535), - [aux_sym__val_number_token1] = ACTIONS(1535), - [aux_sym__val_number_token2] = ACTIONS(1535), - [aux_sym__val_number_token3] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym__str_single_quotes] = ACTIONS(1535), - [sym__str_back_ticks] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1535), - [sym__entry_separator] = ACTIONS(1537), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(247), }, [237] = { + [sym_path] = STATE(327), [sym_comment] = STATE(237), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [aux_sym_cmd_identifier_token1] = ACTIONS(1608), - [aux_sym_cmd_identifier_token2] = ACTIONS(1608), - [aux_sym_cmd_identifier_token3] = ACTIONS(1608), - [aux_sym_cmd_identifier_token4] = ACTIONS(1608), - [aux_sym_cmd_identifier_token5] = ACTIONS(1608), - [aux_sym_cmd_identifier_token6] = ACTIONS(1608), - [aux_sym_cmd_identifier_token7] = ACTIONS(1608), - [aux_sym_cmd_identifier_token8] = ACTIONS(1608), - [aux_sym_cmd_identifier_token9] = ACTIONS(1608), - [aux_sym_cmd_identifier_token10] = ACTIONS(1608), - [aux_sym_cmd_identifier_token11] = ACTIONS(1608), - [aux_sym_cmd_identifier_token12] = ACTIONS(1608), - [aux_sym_cmd_identifier_token13] = ACTIONS(1608), - [aux_sym_cmd_identifier_token14] = ACTIONS(1608), - [aux_sym_cmd_identifier_token15] = ACTIONS(1608), - [aux_sym_cmd_identifier_token16] = ACTIONS(1608), - [aux_sym_cmd_identifier_token17] = ACTIONS(1608), - [aux_sym_cmd_identifier_token18] = ACTIONS(1608), - [aux_sym_cmd_identifier_token19] = ACTIONS(1608), - [aux_sym_cmd_identifier_token20] = ACTIONS(1608), - [aux_sym_cmd_identifier_token21] = ACTIONS(1608), - [aux_sym_cmd_identifier_token22] = ACTIONS(1608), - [aux_sym_cmd_identifier_token23] = ACTIONS(1608), - [aux_sym_cmd_identifier_token24] = ACTIONS(1608), - [aux_sym_cmd_identifier_token25] = ACTIONS(1608), - [aux_sym_cmd_identifier_token26] = ACTIONS(1608), - [aux_sym_cmd_identifier_token27] = ACTIONS(1608), - [aux_sym_cmd_identifier_token28] = ACTIONS(1608), - [aux_sym_cmd_identifier_token29] = ACTIONS(1608), - [aux_sym_cmd_identifier_token30] = ACTIONS(1608), - [aux_sym_cmd_identifier_token31] = ACTIONS(1608), - [aux_sym_cmd_identifier_token32] = ACTIONS(1608), - [aux_sym_cmd_identifier_token33] = ACTIONS(1608), - [aux_sym_cmd_identifier_token34] = ACTIONS(1608), - [aux_sym_cmd_identifier_token35] = ACTIONS(1608), - [aux_sym_cmd_identifier_token36] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [aux_sym_cmd_identifier_token38] = ACTIONS(1608), - [aux_sym_cmd_identifier_token39] = ACTIONS(1608), - [aux_sym_cmd_identifier_token40] = ACTIONS(1608), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1608), - [anon_sym_DOT_DOT2] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1608), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1608), - [aux_sym__val_number_token2] = ACTIONS(1608), - [aux_sym__val_number_token3] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym__str_single_quotes] = ACTIONS(1608), - [sym__str_back_ticks] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1608), - [sym__entry_separator] = ACTIONS(1610), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(237), + [anon_sym_export] = ACTIONS(955), + [anon_sym_alias] = ACTIONS(955), + [anon_sym_let] = ACTIONS(955), + [anon_sym_let_DASHenv] = ACTIONS(955), + [anon_sym_mut] = ACTIONS(955), + [anon_sym_const] = ACTIONS(955), + [aux_sym_cmd_identifier_token1] = ACTIONS(955), + [aux_sym_cmd_identifier_token2] = ACTIONS(955), + [aux_sym_cmd_identifier_token3] = ACTIONS(955), + [aux_sym_cmd_identifier_token4] = ACTIONS(955), + [aux_sym_cmd_identifier_token5] = ACTIONS(955), + [aux_sym_cmd_identifier_token6] = ACTIONS(955), + [aux_sym_cmd_identifier_token7] = ACTIONS(955), + [aux_sym_cmd_identifier_token8] = ACTIONS(955), + [aux_sym_cmd_identifier_token9] = ACTIONS(955), + [aux_sym_cmd_identifier_token10] = ACTIONS(955), + [aux_sym_cmd_identifier_token11] = ACTIONS(955), + [aux_sym_cmd_identifier_token12] = ACTIONS(955), + [aux_sym_cmd_identifier_token13] = ACTIONS(955), + [aux_sym_cmd_identifier_token14] = ACTIONS(955), + [aux_sym_cmd_identifier_token15] = ACTIONS(955), + [aux_sym_cmd_identifier_token16] = ACTIONS(955), + [aux_sym_cmd_identifier_token17] = ACTIONS(955), + [aux_sym_cmd_identifier_token18] = ACTIONS(955), + [aux_sym_cmd_identifier_token19] = ACTIONS(955), + [aux_sym_cmd_identifier_token20] = ACTIONS(955), + [aux_sym_cmd_identifier_token21] = ACTIONS(955), + [aux_sym_cmd_identifier_token22] = ACTIONS(955), + [aux_sym_cmd_identifier_token23] = ACTIONS(955), + [aux_sym_cmd_identifier_token24] = ACTIONS(955), + [aux_sym_cmd_identifier_token25] = ACTIONS(955), + [aux_sym_cmd_identifier_token26] = ACTIONS(955), + [aux_sym_cmd_identifier_token27] = ACTIONS(955), + [aux_sym_cmd_identifier_token28] = ACTIONS(955), + [aux_sym_cmd_identifier_token29] = ACTIONS(955), + [aux_sym_cmd_identifier_token30] = ACTIONS(955), + [aux_sym_cmd_identifier_token31] = ACTIONS(955), + [aux_sym_cmd_identifier_token32] = ACTIONS(955), + [aux_sym_cmd_identifier_token33] = ACTIONS(955), + [aux_sym_cmd_identifier_token34] = ACTIONS(955), + [aux_sym_cmd_identifier_token35] = ACTIONS(955), + [aux_sym_cmd_identifier_token36] = ACTIONS(955), + [anon_sym_true] = ACTIONS(955), + [anon_sym_false] = ACTIONS(955), + [anon_sym_null] = ACTIONS(955), + [aux_sym_cmd_identifier_token38] = ACTIONS(955), + [aux_sym_cmd_identifier_token39] = ACTIONS(955), + [aux_sym_cmd_identifier_token40] = ACTIONS(955), + [anon_sym_def] = ACTIONS(955), + [anon_sym_export_DASHenv] = ACTIONS(955), + [anon_sym_extern] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_use] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_error] = ACTIONS(955), + [anon_sym_list] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_break] = ACTIONS(955), + [anon_sym_continue] = ACTIONS(955), + [anon_sym_for] = ACTIONS(955), + [anon_sym_in] = ACTIONS(955), + [anon_sym_loop] = ACTIONS(955), + [anon_sym_make] = ACTIONS(955), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(955), + [anon_sym_if] = ACTIONS(955), + [anon_sym_else] = ACTIONS(955), + [anon_sym_match] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_try] = ACTIONS(955), + [anon_sym_catch] = ACTIONS(955), + [anon_sym_return] = ACTIONS(955), + [anon_sym_source] = ACTIONS(955), + [anon_sym_source_DASHenv] = ACTIONS(955), + [anon_sym_register] = ACTIONS(955), + [anon_sym_hide] = ACTIONS(955), + [anon_sym_hide_DASHenv] = ACTIONS(955), + [anon_sym_overlay] = ACTIONS(955), + [anon_sym_new] = ACTIONS(955), + [anon_sym_as] = ACTIONS(955), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(955), + [anon_sym_DOT_DOT2] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(957), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(955), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(955), + [aux_sym__val_number_decimal_token3] = ACTIONS(955), + [aux_sym__val_number_decimal_token4] = ACTIONS(955), + [aux_sym__val_number_token1] = ACTIONS(955), + [aux_sym__val_number_token2] = ACTIONS(955), + [aux_sym__val_number_token3] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym__str_single_quotes] = ACTIONS(955), + [sym__str_back_ticks] = ACTIONS(955), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(955), + [sym__entry_separator] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(3), }, [238] = { + [sym_cell_path] = STATE(426), + [sym_path] = STATE(396), [sym_comment] = STATE(238), - [aux_sym__block_body_repeat1] = STATE(233), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [aux_sym_cmd_identifier_token1] = ACTIONS(1559), - [aux_sym_cmd_identifier_token2] = ACTIONS(1559), - [aux_sym_cmd_identifier_token3] = ACTIONS(1559), - [aux_sym_cmd_identifier_token4] = ACTIONS(1559), - [aux_sym_cmd_identifier_token5] = ACTIONS(1559), - [aux_sym_cmd_identifier_token6] = ACTIONS(1559), - [aux_sym_cmd_identifier_token7] = ACTIONS(1559), - [aux_sym_cmd_identifier_token8] = ACTIONS(1559), - [aux_sym_cmd_identifier_token9] = ACTIONS(1559), - [aux_sym_cmd_identifier_token10] = ACTIONS(1559), - [aux_sym_cmd_identifier_token11] = ACTIONS(1559), - [aux_sym_cmd_identifier_token12] = ACTIONS(1559), - [aux_sym_cmd_identifier_token13] = ACTIONS(1559), - [aux_sym_cmd_identifier_token14] = ACTIONS(1559), - [aux_sym_cmd_identifier_token15] = ACTIONS(1559), - [aux_sym_cmd_identifier_token16] = ACTIONS(1559), - [aux_sym_cmd_identifier_token17] = ACTIONS(1559), - [aux_sym_cmd_identifier_token18] = ACTIONS(1559), - [aux_sym_cmd_identifier_token19] = ACTIONS(1559), - [aux_sym_cmd_identifier_token20] = ACTIONS(1559), - [aux_sym_cmd_identifier_token21] = ACTIONS(1559), - [aux_sym_cmd_identifier_token22] = ACTIONS(1559), - [aux_sym_cmd_identifier_token23] = ACTIONS(1559), - [aux_sym_cmd_identifier_token24] = ACTIONS(1561), - [aux_sym_cmd_identifier_token25] = ACTIONS(1559), - [aux_sym_cmd_identifier_token26] = ACTIONS(1561), - [aux_sym_cmd_identifier_token27] = ACTIONS(1559), - [aux_sym_cmd_identifier_token28] = ACTIONS(1559), - [aux_sym_cmd_identifier_token29] = ACTIONS(1559), - [aux_sym_cmd_identifier_token30] = ACTIONS(1559), - [aux_sym_cmd_identifier_token31] = ACTIONS(1561), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1561), - [aux_sym_cmd_identifier_token35] = ACTIONS(1561), - [aux_sym_cmd_identifier_token36] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [aux_sym_cmd_identifier_token38] = ACTIONS(1559), - [aux_sym_cmd_identifier_token39] = ACTIONS(1561), - [aux_sym_cmd_identifier_token40] = ACTIONS(1561), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [aux_sym_ctrl_match_token1] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1561), - [aux_sym_expr_unary_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_DOT_DOT_LT] = ACTIONS(1561), - [aux_sym__val_number_decimal_token1] = ACTIONS(1559), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [anon_sym_DOT2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1561), - [aux_sym__val_number_token2] = ACTIONS(1561), - [aux_sym__val_number_token3] = ACTIONS(1561), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym__str_single_quotes] = ACTIONS(1561), - [sym__str_back_ticks] = ACTIONS(1561), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(252), + [anon_sym_export] = ACTIONS(945), + [anon_sym_alias] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_let_DASHenv] = ACTIONS(945), + [anon_sym_mut] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [aux_sym_cmd_identifier_token1] = ACTIONS(945), + [aux_sym_cmd_identifier_token2] = ACTIONS(945), + [aux_sym_cmd_identifier_token3] = ACTIONS(945), + [aux_sym_cmd_identifier_token4] = ACTIONS(945), + [aux_sym_cmd_identifier_token5] = ACTIONS(945), + [aux_sym_cmd_identifier_token6] = ACTIONS(945), + [aux_sym_cmd_identifier_token7] = ACTIONS(945), + [aux_sym_cmd_identifier_token8] = ACTIONS(945), + [aux_sym_cmd_identifier_token9] = ACTIONS(945), + [aux_sym_cmd_identifier_token10] = ACTIONS(945), + [aux_sym_cmd_identifier_token11] = ACTIONS(945), + [aux_sym_cmd_identifier_token12] = ACTIONS(945), + [aux_sym_cmd_identifier_token13] = ACTIONS(945), + [aux_sym_cmd_identifier_token14] = ACTIONS(945), + [aux_sym_cmd_identifier_token15] = ACTIONS(945), + [aux_sym_cmd_identifier_token16] = ACTIONS(945), + [aux_sym_cmd_identifier_token17] = ACTIONS(945), + [aux_sym_cmd_identifier_token18] = ACTIONS(945), + [aux_sym_cmd_identifier_token19] = ACTIONS(945), + [aux_sym_cmd_identifier_token20] = ACTIONS(945), + [aux_sym_cmd_identifier_token21] = ACTIONS(945), + [aux_sym_cmd_identifier_token22] = ACTIONS(945), + [aux_sym_cmd_identifier_token23] = ACTIONS(945), + [aux_sym_cmd_identifier_token24] = ACTIONS(945), + [aux_sym_cmd_identifier_token25] = ACTIONS(945), + [aux_sym_cmd_identifier_token26] = ACTIONS(945), + [aux_sym_cmd_identifier_token27] = ACTIONS(945), + [aux_sym_cmd_identifier_token28] = ACTIONS(945), + [aux_sym_cmd_identifier_token29] = ACTIONS(945), + [aux_sym_cmd_identifier_token30] = ACTIONS(945), + [aux_sym_cmd_identifier_token31] = ACTIONS(945), + [aux_sym_cmd_identifier_token32] = ACTIONS(945), + [aux_sym_cmd_identifier_token33] = ACTIONS(945), + [aux_sym_cmd_identifier_token34] = ACTIONS(945), + [aux_sym_cmd_identifier_token35] = ACTIONS(945), + [aux_sym_cmd_identifier_token36] = ACTIONS(945), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_null] = ACTIONS(947), + [aux_sym_cmd_identifier_token38] = ACTIONS(945), + [aux_sym_cmd_identifier_token39] = ACTIONS(947), + [aux_sym_cmd_identifier_token40] = ACTIONS(947), + [anon_sym_def] = ACTIONS(945), + [anon_sym_export_DASHenv] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(945), + [anon_sym_module] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_error] = ACTIONS(945), + [anon_sym_list] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_in] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_make] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_try] = ACTIONS(945), + [anon_sym_catch] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_source] = ACTIONS(945), + [anon_sym_source_DASHenv] = ACTIONS(945), + [anon_sym_register] = ACTIONS(945), + [anon_sym_hide] = ACTIONS(945), + [anon_sym_hide_DASHenv] = ACTIONS(945), + [anon_sym_overlay] = ACTIONS(945), + [anon_sym_new] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(947), + [anon_sym_DOT_DOT2] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(947), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(947), + [aux_sym__val_number_decimal_token3] = ACTIONS(947), + [aux_sym__val_number_decimal_token4] = ACTIONS(947), + [aux_sym__val_number_token1] = ACTIONS(947), + [aux_sym__val_number_token2] = ACTIONS(947), + [aux_sym__val_number_token3] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym__str_single_quotes] = ACTIONS(947), + [sym__str_back_ticks] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(247), }, [239] = { [sym_comment] = STATE(239), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(1614), - [aux_sym__immediate_decimal_token2] = ACTIONS(1616), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(1641), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [240] = { [sym_comment] = STATE(240), - [aux_sym__block_body_repeat1] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(1612), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [aux_sym_cmd_identifier_token1] = ACTIONS(1559), - [aux_sym_cmd_identifier_token2] = ACTIONS(1559), - [aux_sym_cmd_identifier_token3] = ACTIONS(1559), - [aux_sym_cmd_identifier_token4] = ACTIONS(1559), - [aux_sym_cmd_identifier_token5] = ACTIONS(1559), - [aux_sym_cmd_identifier_token6] = ACTIONS(1559), - [aux_sym_cmd_identifier_token7] = ACTIONS(1559), - [aux_sym_cmd_identifier_token8] = ACTIONS(1559), - [aux_sym_cmd_identifier_token9] = ACTIONS(1559), - [aux_sym_cmd_identifier_token10] = ACTIONS(1559), - [aux_sym_cmd_identifier_token11] = ACTIONS(1559), - [aux_sym_cmd_identifier_token12] = ACTIONS(1559), - [aux_sym_cmd_identifier_token13] = ACTIONS(1559), - [aux_sym_cmd_identifier_token14] = ACTIONS(1559), - [aux_sym_cmd_identifier_token15] = ACTIONS(1559), - [aux_sym_cmd_identifier_token16] = ACTIONS(1559), - [aux_sym_cmd_identifier_token17] = ACTIONS(1559), - [aux_sym_cmd_identifier_token18] = ACTIONS(1559), - [aux_sym_cmd_identifier_token19] = ACTIONS(1559), - [aux_sym_cmd_identifier_token20] = ACTIONS(1559), - [aux_sym_cmd_identifier_token21] = ACTIONS(1559), - [aux_sym_cmd_identifier_token22] = ACTIONS(1559), - [aux_sym_cmd_identifier_token23] = ACTIONS(1559), - [aux_sym_cmd_identifier_token24] = ACTIONS(1561), - [aux_sym_cmd_identifier_token25] = ACTIONS(1559), - [aux_sym_cmd_identifier_token26] = ACTIONS(1561), - [aux_sym_cmd_identifier_token27] = ACTIONS(1559), - [aux_sym_cmd_identifier_token28] = ACTIONS(1559), - [aux_sym_cmd_identifier_token29] = ACTIONS(1559), - [aux_sym_cmd_identifier_token30] = ACTIONS(1559), - [aux_sym_cmd_identifier_token31] = ACTIONS(1561), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1561), - [aux_sym_cmd_identifier_token35] = ACTIONS(1561), - [aux_sym_cmd_identifier_token36] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [aux_sym_cmd_identifier_token38] = ACTIONS(1559), - [aux_sym_cmd_identifier_token39] = ACTIONS(1561), - [aux_sym_cmd_identifier_token40] = ACTIONS(1561), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [aux_sym_ctrl_match_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1561), - [aux_sym_expr_unary_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_DOT_DOT_LT] = ACTIONS(1561), - [aux_sym__val_number_decimal_token1] = ACTIONS(1559), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [anon_sym_DOT2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1561), - [aux_sym__val_number_token2] = ACTIONS(1561), - [aux_sym__val_number_token3] = ACTIONS(1561), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym__str_single_quotes] = ACTIONS(1561), - [sym__str_back_ticks] = ACTIONS(1561), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__block_body_repeat1] = STATE(240), + [ts_builtin_sym_end] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(1615), + [anon_sym_alias] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_let_DASHenv] = ACTIONS(1615), + [anon_sym_mut] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1615), + [aux_sym_cmd_identifier_token1] = ACTIONS(1615), + [aux_sym_cmd_identifier_token2] = ACTIONS(1615), + [aux_sym_cmd_identifier_token3] = ACTIONS(1615), + [aux_sym_cmd_identifier_token4] = ACTIONS(1615), + [aux_sym_cmd_identifier_token5] = ACTIONS(1615), + [aux_sym_cmd_identifier_token6] = ACTIONS(1615), + [aux_sym_cmd_identifier_token7] = ACTIONS(1615), + [aux_sym_cmd_identifier_token8] = ACTIONS(1615), + [aux_sym_cmd_identifier_token9] = ACTIONS(1615), + [aux_sym_cmd_identifier_token10] = ACTIONS(1615), + [aux_sym_cmd_identifier_token11] = ACTIONS(1615), + [aux_sym_cmd_identifier_token12] = ACTIONS(1615), + [aux_sym_cmd_identifier_token13] = ACTIONS(1615), + [aux_sym_cmd_identifier_token14] = ACTIONS(1615), + [aux_sym_cmd_identifier_token15] = ACTIONS(1615), + [aux_sym_cmd_identifier_token16] = ACTIONS(1615), + [aux_sym_cmd_identifier_token17] = ACTIONS(1615), + [aux_sym_cmd_identifier_token18] = ACTIONS(1615), + [aux_sym_cmd_identifier_token19] = ACTIONS(1615), + [aux_sym_cmd_identifier_token20] = ACTIONS(1615), + [aux_sym_cmd_identifier_token21] = ACTIONS(1615), + [aux_sym_cmd_identifier_token22] = ACTIONS(1615), + [aux_sym_cmd_identifier_token23] = ACTIONS(1615), + [aux_sym_cmd_identifier_token24] = ACTIONS(1617), + [aux_sym_cmd_identifier_token25] = ACTIONS(1615), + [aux_sym_cmd_identifier_token26] = ACTIONS(1617), + [aux_sym_cmd_identifier_token27] = ACTIONS(1615), + [aux_sym_cmd_identifier_token28] = ACTIONS(1615), + [aux_sym_cmd_identifier_token29] = ACTIONS(1615), + [aux_sym_cmd_identifier_token30] = ACTIONS(1615), + [aux_sym_cmd_identifier_token31] = ACTIONS(1617), + [aux_sym_cmd_identifier_token32] = ACTIONS(1617), + [aux_sym_cmd_identifier_token33] = ACTIONS(1617), + [aux_sym_cmd_identifier_token34] = ACTIONS(1617), + [aux_sym_cmd_identifier_token35] = ACTIONS(1617), + [aux_sym_cmd_identifier_token36] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [aux_sym_cmd_identifier_token38] = ACTIONS(1615), + [aux_sym_cmd_identifier_token39] = ACTIONS(1617), + [aux_sym_cmd_identifier_token40] = ACTIONS(1617), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1615), + [anon_sym_export_DASHenv] = ACTIONS(1615), + [anon_sym_extern] = ACTIONS(1615), + [anon_sym_module] = ACTIONS(1615), + [anon_sym_use] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1615), + [anon_sym_error] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_break] = ACTIONS(1615), + [anon_sym_continue] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1615), + [anon_sym_loop] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1615), + [anon_sym_do] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1615), + [anon_sym_match] = ACTIONS(1615), + [aux_sym_ctrl_match_token1] = ACTIONS(1617), + [anon_sym_DOT_DOT] = ACTIONS(1615), + [anon_sym_try] = ACTIONS(1615), + [anon_sym_return] = ACTIONS(1615), + [anon_sym_source] = ACTIONS(1615), + [anon_sym_source_DASHenv] = ACTIONS(1615), + [anon_sym_register] = ACTIONS(1615), + [anon_sym_hide] = ACTIONS(1615), + [anon_sym_hide_DASHenv] = ACTIONS(1615), + [anon_sym_overlay] = ACTIONS(1615), + [anon_sym_where] = ACTIONS(1617), + [aux_sym_expr_unary_token1] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1617), + [anon_sym_DOT_DOT_LT] = ACTIONS(1617), + [aux_sym__val_number_decimal_token1] = ACTIONS(1615), + [aux_sym__val_number_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), + [aux_sym__val_number_token1] = ACTIONS(1617), + [aux_sym__val_number_token2] = ACTIONS(1617), + [aux_sym__val_number_token3] = ACTIONS(1617), + [anon_sym_0b] = ACTIONS(1615), + [anon_sym_0o] = ACTIONS(1615), + [anon_sym_0x] = ACTIONS(1615), + [sym_val_date] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym__str_single_quotes] = ACTIONS(1617), + [sym__str_back_ticks] = ACTIONS(1617), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1617), + [aux_sym_env_var_token1] = ACTIONS(1615), + [anon_sym_CARET] = ACTIONS(1617), + [anon_sym_POUND] = ACTIONS(247), }, [241] = { [sym_comment] = STATE(241), - [anon_sym_export] = ACTIONS(900), - [anon_sym_alias] = ACTIONS(900), - [anon_sym_let] = ACTIONS(900), - [anon_sym_let_DASHenv] = ACTIONS(900), - [anon_sym_mut] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [aux_sym_cmd_identifier_token1] = ACTIONS(900), - [aux_sym_cmd_identifier_token2] = ACTIONS(900), - [aux_sym_cmd_identifier_token3] = ACTIONS(900), - [aux_sym_cmd_identifier_token4] = ACTIONS(900), - [aux_sym_cmd_identifier_token5] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(900), - [aux_sym_cmd_identifier_token7] = ACTIONS(900), - [aux_sym_cmd_identifier_token8] = ACTIONS(900), - [aux_sym_cmd_identifier_token9] = ACTIONS(900), - [aux_sym_cmd_identifier_token10] = ACTIONS(900), - [aux_sym_cmd_identifier_token11] = ACTIONS(900), - [aux_sym_cmd_identifier_token12] = ACTIONS(900), - [aux_sym_cmd_identifier_token13] = ACTIONS(900), - [aux_sym_cmd_identifier_token14] = ACTIONS(900), - [aux_sym_cmd_identifier_token15] = ACTIONS(900), - [aux_sym_cmd_identifier_token16] = ACTIONS(900), - [aux_sym_cmd_identifier_token17] = ACTIONS(900), - [aux_sym_cmd_identifier_token18] = ACTIONS(900), - [aux_sym_cmd_identifier_token19] = ACTIONS(900), - [aux_sym_cmd_identifier_token20] = ACTIONS(900), - [aux_sym_cmd_identifier_token21] = ACTIONS(900), - [aux_sym_cmd_identifier_token22] = ACTIONS(900), - [aux_sym_cmd_identifier_token23] = ACTIONS(900), - [aux_sym_cmd_identifier_token24] = ACTIONS(900), - [aux_sym_cmd_identifier_token25] = ACTIONS(900), - [aux_sym_cmd_identifier_token26] = ACTIONS(900), - [aux_sym_cmd_identifier_token27] = ACTIONS(900), - [aux_sym_cmd_identifier_token28] = ACTIONS(900), - [aux_sym_cmd_identifier_token29] = ACTIONS(900), - [aux_sym_cmd_identifier_token30] = ACTIONS(900), - [aux_sym_cmd_identifier_token31] = ACTIONS(900), - [aux_sym_cmd_identifier_token32] = ACTIONS(900), - [aux_sym_cmd_identifier_token33] = ACTIONS(900), - [aux_sym_cmd_identifier_token34] = ACTIONS(900), - [aux_sym_cmd_identifier_token35] = ACTIONS(900), - [aux_sym_cmd_identifier_token36] = ACTIONS(900), - [anon_sym_true] = ACTIONS(900), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [aux_sym_cmd_identifier_token38] = ACTIONS(900), - [aux_sym_cmd_identifier_token39] = ACTIONS(900), - [aux_sym_cmd_identifier_token40] = ACTIONS(900), - [anon_sym_def] = ACTIONS(900), - [anon_sym_export_DASHenv] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(900), - [anon_sym_module] = ACTIONS(900), - [anon_sym_use] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(900), - [anon_sym_DOLLAR] = ACTIONS(900), - [anon_sym_error] = ACTIONS(900), - [anon_sym_list] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(900), - [anon_sym_make] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_match] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [anon_sym_try] = ACTIONS(900), - [anon_sym_catch] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_source] = ACTIONS(900), - [anon_sym_source_DASHenv] = ACTIONS(900), - [anon_sym_register] = ACTIONS(900), - [anon_sym_hide] = ACTIONS(900), - [anon_sym_hide_DASHenv] = ACTIONS(900), - [anon_sym_overlay] = ACTIONS(900), - [anon_sym_new] = ACTIONS(900), - [anon_sym_as] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(1618), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(900), - [anon_sym_DOT_DOT2] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(902), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(900), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(900), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(900), - [aux_sym__val_number_token1] = ACTIONS(900), - [aux_sym__val_number_token2] = ACTIONS(900), - [aux_sym__val_number_token3] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym__str_single_quotes] = ACTIONS(900), - [sym__str_back_ticks] = ACTIONS(900), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(900), - [sym__entry_separator] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1648), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1648), + [aux_sym_cmd_identifier_token40] = ACTIONS(1648), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(1652), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1648), + [aux_sym__val_number_decimal_token3] = ACTIONS(1648), + [aux_sym__val_number_decimal_token4] = ACTIONS(1648), + [aux_sym__val_number_token1] = ACTIONS(1648), + [aux_sym__val_number_token2] = ACTIONS(1648), + [aux_sym__val_number_token3] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [sym__str_single_quotes] = ACTIONS(1648), + [sym__str_back_ticks] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), + [sym__entry_separator] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(3), }, [242] = { [sym_comment] = STATE(242), - [anon_sym_export] = ACTIONS(906), - [anon_sym_alias] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_let_DASHenv] = ACTIONS(906), - [anon_sym_mut] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [aux_sym_cmd_identifier_token1] = ACTIONS(906), - [aux_sym_cmd_identifier_token2] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(906), - [aux_sym_cmd_identifier_token4] = ACTIONS(906), - [aux_sym_cmd_identifier_token5] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [aux_sym_cmd_identifier_token7] = ACTIONS(906), - [aux_sym_cmd_identifier_token8] = ACTIONS(906), - [aux_sym_cmd_identifier_token9] = ACTIONS(906), - [aux_sym_cmd_identifier_token10] = ACTIONS(906), - [aux_sym_cmd_identifier_token11] = ACTIONS(906), - [aux_sym_cmd_identifier_token12] = ACTIONS(906), - [aux_sym_cmd_identifier_token13] = ACTIONS(906), - [aux_sym_cmd_identifier_token14] = ACTIONS(906), - [aux_sym_cmd_identifier_token15] = ACTIONS(906), - [aux_sym_cmd_identifier_token16] = ACTIONS(906), - [aux_sym_cmd_identifier_token17] = ACTIONS(906), - [aux_sym_cmd_identifier_token18] = ACTIONS(906), - [aux_sym_cmd_identifier_token19] = ACTIONS(906), - [aux_sym_cmd_identifier_token20] = ACTIONS(906), - [aux_sym_cmd_identifier_token21] = ACTIONS(906), - [aux_sym_cmd_identifier_token22] = ACTIONS(906), - [aux_sym_cmd_identifier_token23] = ACTIONS(906), - [aux_sym_cmd_identifier_token24] = ACTIONS(906), - [aux_sym_cmd_identifier_token25] = ACTIONS(906), - [aux_sym_cmd_identifier_token26] = ACTIONS(906), - [aux_sym_cmd_identifier_token27] = ACTIONS(906), - [aux_sym_cmd_identifier_token28] = ACTIONS(906), - [aux_sym_cmd_identifier_token29] = ACTIONS(906), - [aux_sym_cmd_identifier_token30] = ACTIONS(906), - [aux_sym_cmd_identifier_token31] = ACTIONS(906), - [aux_sym_cmd_identifier_token32] = ACTIONS(906), - [aux_sym_cmd_identifier_token33] = ACTIONS(906), - [aux_sym_cmd_identifier_token34] = ACTIONS(906), - [aux_sym_cmd_identifier_token35] = ACTIONS(906), - [aux_sym_cmd_identifier_token36] = ACTIONS(906), - [anon_sym_true] = ACTIONS(906), - [anon_sym_false] = ACTIONS(906), - [anon_sym_null] = ACTIONS(906), - [aux_sym_cmd_identifier_token38] = ACTIONS(906), - [aux_sym_cmd_identifier_token39] = ACTIONS(906), - [aux_sym_cmd_identifier_token40] = ACTIONS(906), - [anon_sym_def] = ACTIONS(906), - [anon_sym_export_DASHenv] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_use] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_error] = ACTIONS(906), - [anon_sym_list] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_in] = ACTIONS(906), - [anon_sym_loop] = ACTIONS(906), - [anon_sym_make] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_try] = ACTIONS(906), - [anon_sym_catch] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_source] = ACTIONS(906), - [anon_sym_source_DASHenv] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_hide] = ACTIONS(906), - [anon_sym_hide_DASHenv] = ACTIONS(906), - [anon_sym_overlay] = ACTIONS(906), - [anon_sym_new] = ACTIONS(906), - [anon_sym_as] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(906), - [anon_sym_DOT_DOT2] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(908), - [anon_sym_DOT_DOT_LT2] = ACTIONS(908), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(906), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(906), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(906), - [aux_sym__val_number_token1] = ACTIONS(906), - [aux_sym__val_number_token2] = ACTIONS(906), - [aux_sym__val_number_token3] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [sym__str_single_quotes] = ACTIONS(906), - [sym__str_back_ticks] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(906), - [sym__entry_separator] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [aux_sym_cmd_identifier_token1] = ACTIONS(1275), + [aux_sym_cmd_identifier_token2] = ACTIONS(1275), + [aux_sym_cmd_identifier_token3] = ACTIONS(1275), + [aux_sym_cmd_identifier_token4] = ACTIONS(1275), + [aux_sym_cmd_identifier_token5] = ACTIONS(1275), + [aux_sym_cmd_identifier_token6] = ACTIONS(1275), + [aux_sym_cmd_identifier_token7] = ACTIONS(1275), + [aux_sym_cmd_identifier_token8] = ACTIONS(1275), + [aux_sym_cmd_identifier_token9] = ACTIONS(1275), + [aux_sym_cmd_identifier_token10] = ACTIONS(1275), + [aux_sym_cmd_identifier_token11] = ACTIONS(1275), + [aux_sym_cmd_identifier_token12] = ACTIONS(1275), + [aux_sym_cmd_identifier_token13] = ACTIONS(1275), + [aux_sym_cmd_identifier_token14] = ACTIONS(1275), + [aux_sym_cmd_identifier_token15] = ACTIONS(1275), + [aux_sym_cmd_identifier_token16] = ACTIONS(1275), + [aux_sym_cmd_identifier_token17] = ACTIONS(1275), + [aux_sym_cmd_identifier_token18] = ACTIONS(1275), + [aux_sym_cmd_identifier_token19] = ACTIONS(1275), + [aux_sym_cmd_identifier_token20] = ACTIONS(1275), + [aux_sym_cmd_identifier_token21] = ACTIONS(1275), + [aux_sym_cmd_identifier_token22] = ACTIONS(1275), + [aux_sym_cmd_identifier_token23] = ACTIONS(1275), + [aux_sym_cmd_identifier_token24] = ACTIONS(1271), + [aux_sym_cmd_identifier_token25] = ACTIONS(1275), + [aux_sym_cmd_identifier_token26] = ACTIONS(1271), + [aux_sym_cmd_identifier_token27] = ACTIONS(1275), + [aux_sym_cmd_identifier_token28] = ACTIONS(1275), + [aux_sym_cmd_identifier_token29] = ACTIONS(1275), + [aux_sym_cmd_identifier_token30] = ACTIONS(1275), + [aux_sym_cmd_identifier_token31] = ACTIONS(1271), + [aux_sym_cmd_identifier_token32] = ACTIONS(1271), + [aux_sym_cmd_identifier_token33] = ACTIONS(1271), + [aux_sym_cmd_identifier_token34] = ACTIONS(1271), + [aux_sym_cmd_identifier_token35] = ACTIONS(1271), + [aux_sym_cmd_identifier_token36] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [aux_sym_cmd_identifier_token38] = ACTIONS(1275), + [aux_sym_cmd_identifier_token39] = ACTIONS(1271), + [aux_sym_cmd_identifier_token40] = ACTIONS(1271), + [sym__newline] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [aux_sym_ctrl_match_token1] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_where] = ACTIONS(1271), + [aux_sym_expr_unary_token1] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_decimal_token4] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [aux_sym_env_var_token1] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(247), }, [243] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5123), - [sym_block] = STATE(5124), - [sym__expression_parenthesized] = STATE(5124), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5124), [sym_comment] = STATE(243), - [aux_sym_shebang_repeat1] = STATE(245), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__block_body_repeat1] = STATE(240), + [ts_builtin_sym_end] = ACTIONS(1609), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1605), + [aux_sym_cmd_identifier_token3] = ACTIONS(1605), + [aux_sym_cmd_identifier_token4] = ACTIONS(1605), + [aux_sym_cmd_identifier_token5] = ACTIONS(1605), + [aux_sym_cmd_identifier_token6] = ACTIONS(1605), + [aux_sym_cmd_identifier_token7] = ACTIONS(1605), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1605), + [aux_sym_cmd_identifier_token11] = ACTIONS(1605), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1605), + [aux_sym_cmd_identifier_token17] = ACTIONS(1605), + [aux_sym_cmd_identifier_token18] = ACTIONS(1605), + [aux_sym_cmd_identifier_token19] = ACTIONS(1605), + [aux_sym_cmd_identifier_token20] = ACTIONS(1605), + [aux_sym_cmd_identifier_token21] = ACTIONS(1605), + [aux_sym_cmd_identifier_token22] = ACTIONS(1605), + [aux_sym_cmd_identifier_token23] = ACTIONS(1605), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1605), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1605), + [aux_sym_cmd_identifier_token28] = ACTIONS(1605), + [aux_sym_cmd_identifier_token29] = ACTIONS(1605), + [aux_sym_cmd_identifier_token30] = ACTIONS(1605), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [aux_sym_ctrl_match_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1607), + [aux_sym_expr_unary_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [aux_sym_env_var_token1] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), }, [244] = { + [sym_path] = STATE(327), [sym_comment] = STATE(244), - [anon_sym_export] = ACTIONS(1570), - [anon_sym_alias] = ACTIONS(1570), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_let_DASHenv] = ACTIONS(1570), - [anon_sym_mut] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [aux_sym_cmd_identifier_token1] = ACTIONS(1570), - [aux_sym_cmd_identifier_token2] = ACTIONS(1570), - [aux_sym_cmd_identifier_token3] = ACTIONS(1570), - [aux_sym_cmd_identifier_token4] = ACTIONS(1570), - [aux_sym_cmd_identifier_token5] = ACTIONS(1570), - [aux_sym_cmd_identifier_token6] = ACTIONS(1570), - [aux_sym_cmd_identifier_token7] = ACTIONS(1570), - [aux_sym_cmd_identifier_token8] = ACTIONS(1570), - [aux_sym_cmd_identifier_token9] = ACTIONS(1570), - [aux_sym_cmd_identifier_token10] = ACTIONS(1570), - [aux_sym_cmd_identifier_token11] = ACTIONS(1570), - [aux_sym_cmd_identifier_token12] = ACTIONS(1570), - [aux_sym_cmd_identifier_token13] = ACTIONS(1570), - [aux_sym_cmd_identifier_token14] = ACTIONS(1570), - [aux_sym_cmd_identifier_token15] = ACTIONS(1570), - [aux_sym_cmd_identifier_token16] = ACTIONS(1570), - [aux_sym_cmd_identifier_token17] = ACTIONS(1570), - [aux_sym_cmd_identifier_token18] = ACTIONS(1570), - [aux_sym_cmd_identifier_token19] = ACTIONS(1570), - [aux_sym_cmd_identifier_token20] = ACTIONS(1570), - [aux_sym_cmd_identifier_token21] = ACTIONS(1570), - [aux_sym_cmd_identifier_token22] = ACTIONS(1570), - [aux_sym_cmd_identifier_token23] = ACTIONS(1570), - [aux_sym_cmd_identifier_token24] = ACTIONS(1570), - [aux_sym_cmd_identifier_token25] = ACTIONS(1570), - [aux_sym_cmd_identifier_token26] = ACTIONS(1570), - [aux_sym_cmd_identifier_token27] = ACTIONS(1570), - [aux_sym_cmd_identifier_token28] = ACTIONS(1570), - [aux_sym_cmd_identifier_token29] = ACTIONS(1570), - [aux_sym_cmd_identifier_token30] = ACTIONS(1570), - [aux_sym_cmd_identifier_token31] = ACTIONS(1570), - [aux_sym_cmd_identifier_token32] = ACTIONS(1570), - [aux_sym_cmd_identifier_token33] = ACTIONS(1570), - [aux_sym_cmd_identifier_token34] = ACTIONS(1570), - [aux_sym_cmd_identifier_token35] = ACTIONS(1570), - [aux_sym_cmd_identifier_token36] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [aux_sym_cmd_identifier_token38] = ACTIONS(1570), - [aux_sym_cmd_identifier_token39] = ACTIONS(1580), - [aux_sym_cmd_identifier_token40] = ACTIONS(1580), - [anon_sym_def] = ACTIONS(1570), - [anon_sym_export_DASHenv] = ACTIONS(1570), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_module] = ACTIONS(1570), - [anon_sym_use] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(1580), - [anon_sym_error] = ACTIONS(1570), - [anon_sym_list] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_in] = ACTIONS(1570), - [anon_sym_loop] = ACTIONS(1570), - [anon_sym_make] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_do] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_else] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_try] = ACTIONS(1570), - [anon_sym_catch] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_source] = ACTIONS(1570), - [anon_sym_source_DASHenv] = ACTIONS(1570), - [anon_sym_register] = ACTIONS(1570), - [anon_sym_hide] = ACTIONS(1570), - [anon_sym_hide_DASHenv] = ACTIONS(1570), - [anon_sym_overlay] = ACTIONS(1570), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_as] = ACTIONS(1570), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1580), - [anon_sym_DOT_DOT2] = ACTIONS(1642), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1644), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1644), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1580), - [aux_sym__val_number_decimal_token1] = ACTIONS(1570), - [aux_sym__val_number_decimal_token2] = ACTIONS(1580), - [anon_sym_DOT2] = ACTIONS(1570), - [aux_sym__val_number_decimal_token3] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1580), - [aux_sym__val_number_token2] = ACTIONS(1580), - [aux_sym__val_number_token3] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1580), - [sym__str_single_quotes] = ACTIONS(1580), - [sym__str_back_ticks] = ACTIONS(1580), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1580), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1576), + [aux_sym_cell_path_repeat1] = STATE(237), + [anon_sym_export] = ACTIONS(951), + [anon_sym_alias] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_let_DASHenv] = ACTIONS(951), + [anon_sym_mut] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [aux_sym_cmd_identifier_token1] = ACTIONS(951), + [aux_sym_cmd_identifier_token2] = ACTIONS(951), + [aux_sym_cmd_identifier_token3] = ACTIONS(951), + [aux_sym_cmd_identifier_token4] = ACTIONS(951), + [aux_sym_cmd_identifier_token5] = ACTIONS(951), + [aux_sym_cmd_identifier_token6] = ACTIONS(951), + [aux_sym_cmd_identifier_token7] = ACTIONS(951), + [aux_sym_cmd_identifier_token8] = ACTIONS(951), + [aux_sym_cmd_identifier_token9] = ACTIONS(951), + [aux_sym_cmd_identifier_token10] = ACTIONS(951), + [aux_sym_cmd_identifier_token11] = ACTIONS(951), + [aux_sym_cmd_identifier_token12] = ACTIONS(951), + [aux_sym_cmd_identifier_token13] = ACTIONS(951), + [aux_sym_cmd_identifier_token14] = ACTIONS(951), + [aux_sym_cmd_identifier_token15] = ACTIONS(951), + [aux_sym_cmd_identifier_token16] = ACTIONS(951), + [aux_sym_cmd_identifier_token17] = ACTIONS(951), + [aux_sym_cmd_identifier_token18] = ACTIONS(951), + [aux_sym_cmd_identifier_token19] = ACTIONS(951), + [aux_sym_cmd_identifier_token20] = ACTIONS(951), + [aux_sym_cmd_identifier_token21] = ACTIONS(951), + [aux_sym_cmd_identifier_token22] = ACTIONS(951), + [aux_sym_cmd_identifier_token23] = ACTIONS(951), + [aux_sym_cmd_identifier_token24] = ACTIONS(951), + [aux_sym_cmd_identifier_token25] = ACTIONS(951), + [aux_sym_cmd_identifier_token26] = ACTIONS(951), + [aux_sym_cmd_identifier_token27] = ACTIONS(951), + [aux_sym_cmd_identifier_token28] = ACTIONS(951), + [aux_sym_cmd_identifier_token29] = ACTIONS(951), + [aux_sym_cmd_identifier_token30] = ACTIONS(951), + [aux_sym_cmd_identifier_token31] = ACTIONS(951), + [aux_sym_cmd_identifier_token32] = ACTIONS(951), + [aux_sym_cmd_identifier_token33] = ACTIONS(951), + [aux_sym_cmd_identifier_token34] = ACTIONS(951), + [aux_sym_cmd_identifier_token35] = ACTIONS(951), + [aux_sym_cmd_identifier_token36] = ACTIONS(951), + [anon_sym_true] = ACTIONS(951), + [anon_sym_false] = ACTIONS(951), + [anon_sym_null] = ACTIONS(951), + [aux_sym_cmd_identifier_token38] = ACTIONS(951), + [aux_sym_cmd_identifier_token39] = ACTIONS(951), + [aux_sym_cmd_identifier_token40] = ACTIONS(951), + [anon_sym_def] = ACTIONS(951), + [anon_sym_export_DASHenv] = ACTIONS(951), + [anon_sym_extern] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_use] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_error] = ACTIONS(951), + [anon_sym_list] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_in] = ACTIONS(951), + [anon_sym_loop] = ACTIONS(951), + [anon_sym_make] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [anon_sym_do] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_else] = ACTIONS(951), + [anon_sym_match] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_try] = ACTIONS(951), + [anon_sym_catch] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_source] = ACTIONS(951), + [anon_sym_source_DASHenv] = ACTIONS(951), + [anon_sym_register] = ACTIONS(951), + [anon_sym_hide] = ACTIONS(951), + [anon_sym_hide_DASHenv] = ACTIONS(951), + [anon_sym_overlay] = ACTIONS(951), + [anon_sym_new] = ACTIONS(951), + [anon_sym_as] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(951), + [anon_sym_DOT_DOT2] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(1601), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(951), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(951), + [aux_sym__val_number_decimal_token3] = ACTIONS(951), + [aux_sym__val_number_decimal_token4] = ACTIONS(951), + [aux_sym__val_number_token1] = ACTIONS(951), + [aux_sym__val_number_token2] = ACTIONS(951), + [aux_sym__val_number_token3] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym__str_single_quotes] = ACTIONS(951), + [sym__str_back_ticks] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(951), + [sym__entry_separator] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(3), }, [245] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5140), - [sym_block] = STATE(5141), - [sym__expression_parenthesized] = STATE(5141), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5141), [sym_comment] = STATE(245), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1481), + [anon_sym_alias] = ACTIONS(1481), + [anon_sym_let] = ACTIONS(1481), + [anon_sym_let_DASHenv] = ACTIONS(1481), + [anon_sym_mut] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [aux_sym_cmd_identifier_token1] = ACTIONS(1481), + [aux_sym_cmd_identifier_token2] = ACTIONS(1481), + [aux_sym_cmd_identifier_token3] = ACTIONS(1481), + [aux_sym_cmd_identifier_token4] = ACTIONS(1481), + [aux_sym_cmd_identifier_token5] = ACTIONS(1481), + [aux_sym_cmd_identifier_token6] = ACTIONS(1481), + [aux_sym_cmd_identifier_token7] = ACTIONS(1481), + [aux_sym_cmd_identifier_token8] = ACTIONS(1481), + [aux_sym_cmd_identifier_token9] = ACTIONS(1481), + [aux_sym_cmd_identifier_token10] = ACTIONS(1481), + [aux_sym_cmd_identifier_token11] = ACTIONS(1481), + [aux_sym_cmd_identifier_token12] = ACTIONS(1481), + [aux_sym_cmd_identifier_token13] = ACTIONS(1481), + [aux_sym_cmd_identifier_token14] = ACTIONS(1481), + [aux_sym_cmd_identifier_token15] = ACTIONS(1481), + [aux_sym_cmd_identifier_token16] = ACTIONS(1481), + [aux_sym_cmd_identifier_token17] = ACTIONS(1481), + [aux_sym_cmd_identifier_token18] = ACTIONS(1481), + [aux_sym_cmd_identifier_token19] = ACTIONS(1481), + [aux_sym_cmd_identifier_token20] = ACTIONS(1481), + [aux_sym_cmd_identifier_token21] = ACTIONS(1481), + [aux_sym_cmd_identifier_token22] = ACTIONS(1481), + [aux_sym_cmd_identifier_token23] = ACTIONS(1481), + [aux_sym_cmd_identifier_token24] = ACTIONS(1481), + [aux_sym_cmd_identifier_token25] = ACTIONS(1481), + [aux_sym_cmd_identifier_token26] = ACTIONS(1481), + [aux_sym_cmd_identifier_token27] = ACTIONS(1481), + [aux_sym_cmd_identifier_token28] = ACTIONS(1481), + [aux_sym_cmd_identifier_token29] = ACTIONS(1481), + [aux_sym_cmd_identifier_token30] = ACTIONS(1481), + [aux_sym_cmd_identifier_token31] = ACTIONS(1481), + [aux_sym_cmd_identifier_token32] = ACTIONS(1481), + [aux_sym_cmd_identifier_token33] = ACTIONS(1481), + [aux_sym_cmd_identifier_token34] = ACTIONS(1481), + [aux_sym_cmd_identifier_token35] = ACTIONS(1481), + [aux_sym_cmd_identifier_token36] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1481), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_export_DASHenv] = ACTIONS(1481), + [anon_sym_extern] = ACTIONS(1481), + [anon_sym_module] = ACTIONS(1481), + [anon_sym_use] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1483), + [anon_sym_error] = ACTIONS(1481), + [anon_sym_list] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_in] = ACTIONS(1481), + [anon_sym_loop] = ACTIONS(1481), + [anon_sym_make] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_else] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_try] = ACTIONS(1481), + [anon_sym_catch] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_source] = ACTIONS(1481), + [anon_sym_source_DASHenv] = ACTIONS(1481), + [anon_sym_register] = ACTIONS(1481), + [anon_sym_hide] = ACTIONS(1481), + [anon_sym_hide_DASHenv] = ACTIONS(1481), + [anon_sym_overlay] = ACTIONS(1481), + [anon_sym_new] = ACTIONS(1481), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1483), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [sym_filesize_unit] = ACTIONS(1481), + [sym_duration_unit] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1481), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [246] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5140), - [sym_block] = STATE(5141), - [sym__expression_parenthesized] = STATE(5141), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5141), [sym_comment] = STATE(246), - [aux_sym_shebang_repeat1] = STATE(251), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token3] = ACTIONS(1473), + [aux_sym_cmd_identifier_token4] = ACTIONS(1473), + [aux_sym_cmd_identifier_token5] = ACTIONS(1473), + [aux_sym_cmd_identifier_token6] = ACTIONS(1473), + [aux_sym_cmd_identifier_token7] = ACTIONS(1473), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1473), + [aux_sym_cmd_identifier_token11] = ACTIONS(1473), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1473), + [aux_sym_cmd_identifier_token17] = ACTIONS(1473), + [aux_sym_cmd_identifier_token18] = ACTIONS(1473), + [aux_sym_cmd_identifier_token19] = ACTIONS(1473), + [aux_sym_cmd_identifier_token20] = ACTIONS(1473), + [aux_sym_cmd_identifier_token21] = ACTIONS(1473), + [aux_sym_cmd_identifier_token22] = ACTIONS(1473), + [aux_sym_cmd_identifier_token23] = ACTIONS(1473), + [aux_sym_cmd_identifier_token24] = ACTIONS(1473), + [aux_sym_cmd_identifier_token25] = ACTIONS(1473), + [aux_sym_cmd_identifier_token26] = ACTIONS(1473), + [aux_sym_cmd_identifier_token27] = ACTIONS(1473), + [aux_sym_cmd_identifier_token28] = ACTIONS(1473), + [aux_sym_cmd_identifier_token29] = ACTIONS(1473), + [aux_sym_cmd_identifier_token30] = ACTIONS(1473), + [aux_sym_cmd_identifier_token31] = ACTIONS(1473), + [aux_sym_cmd_identifier_token32] = ACTIONS(1473), + [aux_sym_cmd_identifier_token33] = ACTIONS(1473), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1473), + [aux_sym_cmd_identifier_token36] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_list] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_new] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [sym_filesize_unit] = ACTIONS(1473), + [sym_duration_unit] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1473), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [247] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5143), - [sym_block] = STATE(5144), - [sym__expression_parenthesized] = STATE(5144), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5144), [sym_comment] = STATE(247), - [aux_sym_shebang_repeat1] = STATE(253), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(7297), + [aux_sym__parenthesized_body_repeat1] = STATE(232), + [anon_sym_export] = ACTIONS(1654), + [anon_sym_alias] = ACTIONS(1654), + [anon_sym_let] = ACTIONS(1654), + [anon_sym_let_DASHenv] = ACTIONS(1654), + [anon_sym_mut] = ACTIONS(1654), + [anon_sym_const] = ACTIONS(1654), + [aux_sym_cmd_identifier_token1] = ACTIONS(1654), + [aux_sym_cmd_identifier_token2] = ACTIONS(1654), + [aux_sym_cmd_identifier_token3] = ACTIONS(1654), + [aux_sym_cmd_identifier_token4] = ACTIONS(1654), + [aux_sym_cmd_identifier_token5] = ACTIONS(1654), + [aux_sym_cmd_identifier_token6] = ACTIONS(1654), + [aux_sym_cmd_identifier_token7] = ACTIONS(1654), + [aux_sym_cmd_identifier_token8] = ACTIONS(1654), + [aux_sym_cmd_identifier_token9] = ACTIONS(1654), + [aux_sym_cmd_identifier_token10] = ACTIONS(1654), + [aux_sym_cmd_identifier_token11] = ACTIONS(1654), + [aux_sym_cmd_identifier_token12] = ACTIONS(1654), + [aux_sym_cmd_identifier_token13] = ACTIONS(1654), + [aux_sym_cmd_identifier_token14] = ACTIONS(1654), + [aux_sym_cmd_identifier_token15] = ACTIONS(1654), + [aux_sym_cmd_identifier_token16] = ACTIONS(1654), + [aux_sym_cmd_identifier_token17] = ACTIONS(1654), + [aux_sym_cmd_identifier_token18] = ACTIONS(1654), + [aux_sym_cmd_identifier_token19] = ACTIONS(1654), + [aux_sym_cmd_identifier_token20] = ACTIONS(1654), + [aux_sym_cmd_identifier_token21] = ACTIONS(1654), + [aux_sym_cmd_identifier_token22] = ACTIONS(1654), + [aux_sym_cmd_identifier_token23] = ACTIONS(1654), + [aux_sym_cmd_identifier_token24] = ACTIONS(646), + [aux_sym_cmd_identifier_token25] = ACTIONS(1654), + [aux_sym_cmd_identifier_token26] = ACTIONS(646), + [aux_sym_cmd_identifier_token27] = ACTIONS(1654), + [aux_sym_cmd_identifier_token28] = ACTIONS(1654), + [aux_sym_cmd_identifier_token29] = ACTIONS(1654), + [aux_sym_cmd_identifier_token30] = ACTIONS(1654), + [aux_sym_cmd_identifier_token31] = ACTIONS(646), + [aux_sym_cmd_identifier_token32] = ACTIONS(646), + [aux_sym_cmd_identifier_token33] = ACTIONS(646), + [aux_sym_cmd_identifier_token34] = ACTIONS(646), + [aux_sym_cmd_identifier_token35] = ACTIONS(646), + [aux_sym_cmd_identifier_token36] = ACTIONS(1654), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [anon_sym_null] = ACTIONS(646), + [aux_sym_cmd_identifier_token38] = ACTIONS(1654), + [aux_sym_cmd_identifier_token39] = ACTIONS(646), + [aux_sym_cmd_identifier_token40] = ACTIONS(646), + [sym__newline] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1654), + [anon_sym_export_DASHenv] = ACTIONS(1654), + [anon_sym_extern] = ACTIONS(1654), + [anon_sym_module] = ACTIONS(1654), + [anon_sym_use] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_DOLLAR] = ACTIONS(1654), + [anon_sym_error] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(1654), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_loop] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1654), + [anon_sym_do] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_match] = ACTIONS(1654), + [aux_sym_ctrl_match_token1] = ACTIONS(646), + [anon_sym_DOT_DOT] = ACTIONS(1654), + [anon_sym_try] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_source] = ACTIONS(1654), + [anon_sym_source_DASHenv] = ACTIONS(1654), + [anon_sym_register] = ACTIONS(1654), + [anon_sym_hide] = ACTIONS(1654), + [anon_sym_hide_DASHenv] = ACTIONS(1654), + [anon_sym_overlay] = ACTIONS(1654), + [anon_sym_where] = ACTIONS(646), + [aux_sym_expr_unary_token1] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(646), + [anon_sym_DOT_DOT_LT] = ACTIONS(646), + [aux_sym__val_number_decimal_token1] = ACTIONS(1654), + [aux_sym__val_number_decimal_token2] = ACTIONS(646), + [aux_sym__val_number_decimal_token3] = ACTIONS(646), + [aux_sym__val_number_decimal_token4] = ACTIONS(646), + [aux_sym__val_number_token1] = ACTIONS(646), + [aux_sym__val_number_token2] = ACTIONS(646), + [aux_sym__val_number_token3] = ACTIONS(646), + [anon_sym_0b] = ACTIONS(1654), + [anon_sym_0o] = ACTIONS(1654), + [anon_sym_0x] = ACTIONS(1654), + [sym_val_date] = ACTIONS(646), + [anon_sym_DQUOTE] = ACTIONS(646), + [sym__str_single_quotes] = ACTIONS(646), + [sym__str_back_ticks] = ACTIONS(646), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(646), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(646), + [aux_sym_env_var_token1] = ACTIONS(1654), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(247), }, [248] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5145), - [sym_block] = STATE(5146), - [sym__expression_parenthesized] = STATE(5146), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5146), + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5276), + [sym_block] = STATE(5278), + [sym__expression_parenthesized] = STATE(5278), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5278), [sym_comment] = STATE(248), - [aux_sym_shebang_repeat1] = STATE(255), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [249] = { - [sym_path] = STATE(349), [sym_comment] = STATE(249), - [aux_sym_cell_path_repeat1] = STATE(279), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [aux_sym_cmd_identifier_token1] = ACTIONS(889), - [aux_sym_cmd_identifier_token2] = ACTIONS(889), - [aux_sym_cmd_identifier_token3] = ACTIONS(889), - [aux_sym_cmd_identifier_token4] = ACTIONS(889), - [aux_sym_cmd_identifier_token5] = ACTIONS(889), - [aux_sym_cmd_identifier_token6] = ACTIONS(889), - [aux_sym_cmd_identifier_token7] = ACTIONS(889), - [aux_sym_cmd_identifier_token8] = ACTIONS(889), - [aux_sym_cmd_identifier_token9] = ACTIONS(889), - [aux_sym_cmd_identifier_token10] = ACTIONS(889), - [aux_sym_cmd_identifier_token11] = ACTIONS(889), - [aux_sym_cmd_identifier_token12] = ACTIONS(889), - [aux_sym_cmd_identifier_token13] = ACTIONS(889), - [aux_sym_cmd_identifier_token14] = ACTIONS(889), - [aux_sym_cmd_identifier_token15] = ACTIONS(889), - [aux_sym_cmd_identifier_token16] = ACTIONS(889), - [aux_sym_cmd_identifier_token17] = ACTIONS(889), - [aux_sym_cmd_identifier_token18] = ACTIONS(889), - [aux_sym_cmd_identifier_token19] = ACTIONS(889), - [aux_sym_cmd_identifier_token20] = ACTIONS(889), - [aux_sym_cmd_identifier_token21] = ACTIONS(889), - [aux_sym_cmd_identifier_token22] = ACTIONS(889), - [aux_sym_cmd_identifier_token23] = ACTIONS(889), - [aux_sym_cmd_identifier_token24] = ACTIONS(889), - [aux_sym_cmd_identifier_token25] = ACTIONS(889), - [aux_sym_cmd_identifier_token26] = ACTIONS(889), - [aux_sym_cmd_identifier_token27] = ACTIONS(889), - [aux_sym_cmd_identifier_token28] = ACTIONS(889), - [aux_sym_cmd_identifier_token29] = ACTIONS(889), - [aux_sym_cmd_identifier_token30] = ACTIONS(889), - [aux_sym_cmd_identifier_token31] = ACTIONS(889), - [aux_sym_cmd_identifier_token32] = ACTIONS(889), - [aux_sym_cmd_identifier_token33] = ACTIONS(889), - [aux_sym_cmd_identifier_token34] = ACTIONS(889), - [aux_sym_cmd_identifier_token35] = ACTIONS(889), - [aux_sym_cmd_identifier_token36] = ACTIONS(889), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_null] = ACTIONS(891), - [aux_sym_cmd_identifier_token38] = ACTIONS(889), - [aux_sym_cmd_identifier_token39] = ACTIONS(891), - [aux_sym_cmd_identifier_token40] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_error] = ACTIONS(889), - [anon_sym_list] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_make] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_catch] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_new] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(891), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(1597), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(891), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1681), + [anon_sym_alias] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1681), + [anon_sym_let_DASHenv] = ACTIONS(1681), + [anon_sym_mut] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [aux_sym_cmd_identifier_token1] = ACTIONS(1681), + [aux_sym_cmd_identifier_token2] = ACTIONS(1681), + [aux_sym_cmd_identifier_token3] = ACTIONS(1681), + [aux_sym_cmd_identifier_token4] = ACTIONS(1681), + [aux_sym_cmd_identifier_token5] = ACTIONS(1681), + [aux_sym_cmd_identifier_token6] = ACTIONS(1681), + [aux_sym_cmd_identifier_token7] = ACTIONS(1681), + [aux_sym_cmd_identifier_token8] = ACTIONS(1681), + [aux_sym_cmd_identifier_token9] = ACTIONS(1681), + [aux_sym_cmd_identifier_token10] = ACTIONS(1681), + [aux_sym_cmd_identifier_token11] = ACTIONS(1681), + [aux_sym_cmd_identifier_token12] = ACTIONS(1681), + [aux_sym_cmd_identifier_token13] = ACTIONS(1681), + [aux_sym_cmd_identifier_token14] = ACTIONS(1681), + [aux_sym_cmd_identifier_token15] = ACTIONS(1681), + [aux_sym_cmd_identifier_token16] = ACTIONS(1681), + [aux_sym_cmd_identifier_token17] = ACTIONS(1681), + [aux_sym_cmd_identifier_token18] = ACTIONS(1681), + [aux_sym_cmd_identifier_token19] = ACTIONS(1681), + [aux_sym_cmd_identifier_token20] = ACTIONS(1681), + [aux_sym_cmd_identifier_token21] = ACTIONS(1681), + [aux_sym_cmd_identifier_token22] = ACTIONS(1681), + [aux_sym_cmd_identifier_token23] = ACTIONS(1681), + [aux_sym_cmd_identifier_token24] = ACTIONS(1683), + [aux_sym_cmd_identifier_token25] = ACTIONS(1681), + [aux_sym_cmd_identifier_token26] = ACTIONS(1683), + [aux_sym_cmd_identifier_token27] = ACTIONS(1681), + [aux_sym_cmd_identifier_token28] = ACTIONS(1681), + [aux_sym_cmd_identifier_token29] = ACTIONS(1681), + [aux_sym_cmd_identifier_token30] = ACTIONS(1681), + [aux_sym_cmd_identifier_token31] = ACTIONS(1683), + [aux_sym_cmd_identifier_token32] = ACTIONS(1683), + [aux_sym_cmd_identifier_token33] = ACTIONS(1683), + [aux_sym_cmd_identifier_token34] = ACTIONS(1683), + [aux_sym_cmd_identifier_token35] = ACTIONS(1683), + [aux_sym_cmd_identifier_token36] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [aux_sym_cmd_identifier_token38] = ACTIONS(1681), + [aux_sym_cmd_identifier_token39] = ACTIONS(1683), + [aux_sym_cmd_identifier_token40] = ACTIONS(1683), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_def] = ACTIONS(1681), + [anon_sym_export_DASHenv] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1681), + [anon_sym_module] = ACTIONS(1681), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_error] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_loop] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_match] = ACTIONS(1681), + [aux_sym_ctrl_match_token1] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_try] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_source] = ACTIONS(1681), + [anon_sym_source_DASHenv] = ACTIONS(1681), + [anon_sym_register] = ACTIONS(1681), + [anon_sym_hide] = ACTIONS(1681), + [anon_sym_hide_DASHenv] = ACTIONS(1681), + [anon_sym_overlay] = ACTIONS(1681), + [anon_sym_where] = ACTIONS(1683), + [aux_sym_expr_unary_token1] = ACTIONS(1683), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1681), + [anon_sym_0o] = ACTIONS(1681), + [anon_sym_0x] = ACTIONS(1681), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [aux_sym_env_var_token1] = ACTIONS(1681), + [anon_sym_CARET] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(247), }, [250] = { + [sym_cell_path] = STATE(487), + [sym_path] = STATE(420), [sym_comment] = STATE(250), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(339), + [anon_sym_export] = ACTIONS(945), + [anon_sym_alias] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_let_DASHenv] = ACTIONS(945), + [anon_sym_mut] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [aux_sym_cmd_identifier_token1] = ACTIONS(945), + [aux_sym_cmd_identifier_token2] = ACTIONS(945), + [aux_sym_cmd_identifier_token3] = ACTIONS(945), + [aux_sym_cmd_identifier_token4] = ACTIONS(945), + [aux_sym_cmd_identifier_token5] = ACTIONS(945), + [aux_sym_cmd_identifier_token6] = ACTIONS(945), + [aux_sym_cmd_identifier_token7] = ACTIONS(945), + [aux_sym_cmd_identifier_token8] = ACTIONS(945), + [aux_sym_cmd_identifier_token9] = ACTIONS(945), + [aux_sym_cmd_identifier_token10] = ACTIONS(945), + [aux_sym_cmd_identifier_token11] = ACTIONS(945), + [aux_sym_cmd_identifier_token12] = ACTIONS(945), + [aux_sym_cmd_identifier_token13] = ACTIONS(945), + [aux_sym_cmd_identifier_token14] = ACTIONS(945), + [aux_sym_cmd_identifier_token15] = ACTIONS(945), + [aux_sym_cmd_identifier_token16] = ACTIONS(945), + [aux_sym_cmd_identifier_token17] = ACTIONS(945), + [aux_sym_cmd_identifier_token18] = ACTIONS(945), + [aux_sym_cmd_identifier_token19] = ACTIONS(945), + [aux_sym_cmd_identifier_token20] = ACTIONS(945), + [aux_sym_cmd_identifier_token21] = ACTIONS(945), + [aux_sym_cmd_identifier_token22] = ACTIONS(945), + [aux_sym_cmd_identifier_token23] = ACTIONS(945), + [aux_sym_cmd_identifier_token24] = ACTIONS(945), + [aux_sym_cmd_identifier_token25] = ACTIONS(945), + [aux_sym_cmd_identifier_token26] = ACTIONS(945), + [aux_sym_cmd_identifier_token27] = ACTIONS(945), + [aux_sym_cmd_identifier_token28] = ACTIONS(945), + [aux_sym_cmd_identifier_token29] = ACTIONS(945), + [aux_sym_cmd_identifier_token30] = ACTIONS(945), + [aux_sym_cmd_identifier_token31] = ACTIONS(945), + [aux_sym_cmd_identifier_token32] = ACTIONS(945), + [aux_sym_cmd_identifier_token33] = ACTIONS(945), + [aux_sym_cmd_identifier_token34] = ACTIONS(945), + [aux_sym_cmd_identifier_token35] = ACTIONS(945), + [aux_sym_cmd_identifier_token36] = ACTIONS(945), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_null] = ACTIONS(947), + [aux_sym_cmd_identifier_token38] = ACTIONS(945), + [aux_sym_cmd_identifier_token39] = ACTIONS(947), + [aux_sym_cmd_identifier_token40] = ACTIONS(947), + [anon_sym_def] = ACTIONS(945), + [anon_sym_export_DASHenv] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(945), + [anon_sym_module] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_error] = ACTIONS(945), + [anon_sym_list] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_in] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_make] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_try] = ACTIONS(945), + [anon_sym_catch] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_source] = ACTIONS(945), + [anon_sym_source_DASHenv] = ACTIONS(945), + [anon_sym_register] = ACTIONS(945), + [anon_sym_hide] = ACTIONS(945), + [anon_sym_hide_DASHenv] = ACTIONS(945), + [anon_sym_overlay] = ACTIONS(945), + [anon_sym_new] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(947), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(947), + [aux_sym__val_number_decimal_token3] = ACTIONS(947), + [aux_sym__val_number_decimal_token4] = ACTIONS(947), + [aux_sym__val_number_token1] = ACTIONS(947), + [aux_sym__val_number_token2] = ACTIONS(947), + [aux_sym__val_number_token3] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym__str_single_quotes] = ACTIONS(947), + [sym__str_back_ticks] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(947), + [aux_sym_record_entry_token1] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(247), }, [251] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5180), - [sym_block] = STATE(5181), - [sym__expression_parenthesized] = STATE(5181), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5181), [sym_comment] = STATE(251), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1690), + [anon_sym_alias] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_let_DASHenv] = ACTIONS(1690), + [anon_sym_mut] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [aux_sym_cmd_identifier_token1] = ACTIONS(1690), + [aux_sym_cmd_identifier_token2] = ACTIONS(1690), + [aux_sym_cmd_identifier_token3] = ACTIONS(1690), + [aux_sym_cmd_identifier_token4] = ACTIONS(1690), + [aux_sym_cmd_identifier_token5] = ACTIONS(1690), + [aux_sym_cmd_identifier_token6] = ACTIONS(1690), + [aux_sym_cmd_identifier_token7] = ACTIONS(1690), + [aux_sym_cmd_identifier_token8] = ACTIONS(1690), + [aux_sym_cmd_identifier_token9] = ACTIONS(1690), + [aux_sym_cmd_identifier_token10] = ACTIONS(1690), + [aux_sym_cmd_identifier_token11] = ACTIONS(1690), + [aux_sym_cmd_identifier_token12] = ACTIONS(1690), + [aux_sym_cmd_identifier_token13] = ACTIONS(1690), + [aux_sym_cmd_identifier_token14] = ACTIONS(1690), + [aux_sym_cmd_identifier_token15] = ACTIONS(1690), + [aux_sym_cmd_identifier_token16] = ACTIONS(1690), + [aux_sym_cmd_identifier_token17] = ACTIONS(1690), + [aux_sym_cmd_identifier_token18] = ACTIONS(1690), + [aux_sym_cmd_identifier_token19] = ACTIONS(1690), + [aux_sym_cmd_identifier_token20] = ACTIONS(1690), + [aux_sym_cmd_identifier_token21] = ACTIONS(1690), + [aux_sym_cmd_identifier_token22] = ACTIONS(1690), + [aux_sym_cmd_identifier_token23] = ACTIONS(1690), + [aux_sym_cmd_identifier_token24] = ACTIONS(1690), + [aux_sym_cmd_identifier_token25] = ACTIONS(1690), + [aux_sym_cmd_identifier_token26] = ACTIONS(1690), + [aux_sym_cmd_identifier_token27] = ACTIONS(1690), + [aux_sym_cmd_identifier_token28] = ACTIONS(1690), + [aux_sym_cmd_identifier_token29] = ACTIONS(1690), + [aux_sym_cmd_identifier_token30] = ACTIONS(1690), + [aux_sym_cmd_identifier_token31] = ACTIONS(1690), + [aux_sym_cmd_identifier_token32] = ACTIONS(1690), + [aux_sym_cmd_identifier_token33] = ACTIONS(1690), + [aux_sym_cmd_identifier_token34] = ACTIONS(1690), + [aux_sym_cmd_identifier_token35] = ACTIONS(1690), + [aux_sym_cmd_identifier_token36] = ACTIONS(1690), + [anon_sym_true] = ACTIONS(1690), + [anon_sym_false] = ACTIONS(1690), + [anon_sym_null] = ACTIONS(1690), + [aux_sym_cmd_identifier_token38] = ACTIONS(1690), + [aux_sym_cmd_identifier_token39] = ACTIONS(1690), + [aux_sym_cmd_identifier_token40] = ACTIONS(1690), + [anon_sym_def] = ACTIONS(1690), + [anon_sym_export_DASHenv] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_module] = ACTIONS(1690), + [anon_sym_use] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_DOLLAR] = ACTIONS(1690), + [anon_sym_error] = ACTIONS(1690), + [anon_sym_list] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_in] = ACTIONS(1690), + [anon_sym_loop] = ACTIONS(1690), + [anon_sym_make] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_do] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_try] = ACTIONS(1690), + [anon_sym_catch] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_source] = ACTIONS(1690), + [anon_sym_source_DASHenv] = ACTIONS(1690), + [anon_sym_register] = ACTIONS(1690), + [anon_sym_hide] = ACTIONS(1690), + [anon_sym_hide_DASHenv] = ACTIONS(1690), + [anon_sym_overlay] = ACTIONS(1690), + [anon_sym_new] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1690), + [anon_sym_LPAREN2] = ACTIONS(1692), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1690), + [anon_sym_DOT_DOT2] = ACTIONS(1694), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1696), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1696), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1690), + [aux_sym__val_number_decimal_token1] = ACTIONS(1690), + [aux_sym__val_number_decimal_token2] = ACTIONS(1690), + [aux_sym__val_number_decimal_token3] = ACTIONS(1690), + [aux_sym__val_number_decimal_token4] = ACTIONS(1690), + [aux_sym__val_number_token1] = ACTIONS(1690), + [aux_sym__val_number_token2] = ACTIONS(1690), + [aux_sym__val_number_token3] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [sym__str_single_quotes] = ACTIONS(1690), + [sym__str_back_ticks] = ACTIONS(1690), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1690), + [sym__entry_separator] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1690), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(3), }, [252] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5180), - [sym_block] = STATE(5181), - [sym__expression_parenthesized] = STATE(5181), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5181), + [sym_path] = STATE(396), [sym_comment] = STATE(252), - [aux_sym_shebang_repeat1] = STATE(286), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(253), + [anon_sym_export] = ACTIONS(951), + [anon_sym_alias] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_let_DASHenv] = ACTIONS(951), + [anon_sym_mut] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [aux_sym_cmd_identifier_token1] = ACTIONS(951), + [aux_sym_cmd_identifier_token2] = ACTIONS(951), + [aux_sym_cmd_identifier_token3] = ACTIONS(951), + [aux_sym_cmd_identifier_token4] = ACTIONS(951), + [aux_sym_cmd_identifier_token5] = ACTIONS(951), + [aux_sym_cmd_identifier_token6] = ACTIONS(951), + [aux_sym_cmd_identifier_token7] = ACTIONS(951), + [aux_sym_cmd_identifier_token8] = ACTIONS(951), + [aux_sym_cmd_identifier_token9] = ACTIONS(951), + [aux_sym_cmd_identifier_token10] = ACTIONS(951), + [aux_sym_cmd_identifier_token11] = ACTIONS(951), + [aux_sym_cmd_identifier_token12] = ACTIONS(951), + [aux_sym_cmd_identifier_token13] = ACTIONS(951), + [aux_sym_cmd_identifier_token14] = ACTIONS(951), + [aux_sym_cmd_identifier_token15] = ACTIONS(951), + [aux_sym_cmd_identifier_token16] = ACTIONS(951), + [aux_sym_cmd_identifier_token17] = ACTIONS(951), + [aux_sym_cmd_identifier_token18] = ACTIONS(951), + [aux_sym_cmd_identifier_token19] = ACTIONS(951), + [aux_sym_cmd_identifier_token20] = ACTIONS(951), + [aux_sym_cmd_identifier_token21] = ACTIONS(951), + [aux_sym_cmd_identifier_token22] = ACTIONS(951), + [aux_sym_cmd_identifier_token23] = ACTIONS(951), + [aux_sym_cmd_identifier_token24] = ACTIONS(951), + [aux_sym_cmd_identifier_token25] = ACTIONS(951), + [aux_sym_cmd_identifier_token26] = ACTIONS(951), + [aux_sym_cmd_identifier_token27] = ACTIONS(951), + [aux_sym_cmd_identifier_token28] = ACTIONS(951), + [aux_sym_cmd_identifier_token29] = ACTIONS(951), + [aux_sym_cmd_identifier_token30] = ACTIONS(951), + [aux_sym_cmd_identifier_token31] = ACTIONS(951), + [aux_sym_cmd_identifier_token32] = ACTIONS(951), + [aux_sym_cmd_identifier_token33] = ACTIONS(951), + [aux_sym_cmd_identifier_token34] = ACTIONS(951), + [aux_sym_cmd_identifier_token35] = ACTIONS(951), + [aux_sym_cmd_identifier_token36] = ACTIONS(951), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_null] = ACTIONS(953), + [aux_sym_cmd_identifier_token38] = ACTIONS(951), + [aux_sym_cmd_identifier_token39] = ACTIONS(953), + [aux_sym_cmd_identifier_token40] = ACTIONS(953), + [anon_sym_def] = ACTIONS(951), + [anon_sym_export_DASHenv] = ACTIONS(951), + [anon_sym_extern] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_use] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_error] = ACTIONS(951), + [anon_sym_list] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_in] = ACTIONS(951), + [anon_sym_loop] = ACTIONS(951), + [anon_sym_make] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [anon_sym_do] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_else] = ACTIONS(951), + [anon_sym_match] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_try] = ACTIONS(951), + [anon_sym_catch] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_source] = ACTIONS(951), + [anon_sym_source_DASHenv] = ACTIONS(951), + [anon_sym_register] = ACTIONS(951), + [anon_sym_hide] = ACTIONS(951), + [anon_sym_hide_DASHenv] = ACTIONS(951), + [anon_sym_overlay] = ACTIONS(951), + [anon_sym_new] = ACTIONS(951), + [anon_sym_as] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(953), + [anon_sym_DOT_DOT2] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(953), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(953), + [aux_sym__val_number_decimal_token3] = ACTIONS(953), + [aux_sym__val_number_decimal_token4] = ACTIONS(953), + [aux_sym__val_number_token1] = ACTIONS(953), + [aux_sym__val_number_token2] = ACTIONS(953), + [aux_sym__val_number_token3] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym__str_single_quotes] = ACTIONS(953), + [sym__str_back_ticks] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(247), }, [253] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5185), - [sym_block] = STATE(5186), - [sym__expression_parenthesized] = STATE(5186), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5186), + [sym_path] = STATE(396), [sym_comment] = STATE(253), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(253), + [anon_sym_export] = ACTIONS(955), + [anon_sym_alias] = ACTIONS(955), + [anon_sym_let] = ACTIONS(955), + [anon_sym_let_DASHenv] = ACTIONS(955), + [anon_sym_mut] = ACTIONS(955), + [anon_sym_const] = ACTIONS(955), + [aux_sym_cmd_identifier_token1] = ACTIONS(955), + [aux_sym_cmd_identifier_token2] = ACTIONS(955), + [aux_sym_cmd_identifier_token3] = ACTIONS(955), + [aux_sym_cmd_identifier_token4] = ACTIONS(955), + [aux_sym_cmd_identifier_token5] = ACTIONS(955), + [aux_sym_cmd_identifier_token6] = ACTIONS(955), + [aux_sym_cmd_identifier_token7] = ACTIONS(955), + [aux_sym_cmd_identifier_token8] = ACTIONS(955), + [aux_sym_cmd_identifier_token9] = ACTIONS(955), + [aux_sym_cmd_identifier_token10] = ACTIONS(955), + [aux_sym_cmd_identifier_token11] = ACTIONS(955), + [aux_sym_cmd_identifier_token12] = ACTIONS(955), + [aux_sym_cmd_identifier_token13] = ACTIONS(955), + [aux_sym_cmd_identifier_token14] = ACTIONS(955), + [aux_sym_cmd_identifier_token15] = ACTIONS(955), + [aux_sym_cmd_identifier_token16] = ACTIONS(955), + [aux_sym_cmd_identifier_token17] = ACTIONS(955), + [aux_sym_cmd_identifier_token18] = ACTIONS(955), + [aux_sym_cmd_identifier_token19] = ACTIONS(955), + [aux_sym_cmd_identifier_token20] = ACTIONS(955), + [aux_sym_cmd_identifier_token21] = ACTIONS(955), + [aux_sym_cmd_identifier_token22] = ACTIONS(955), + [aux_sym_cmd_identifier_token23] = ACTIONS(955), + [aux_sym_cmd_identifier_token24] = ACTIONS(955), + [aux_sym_cmd_identifier_token25] = ACTIONS(955), + [aux_sym_cmd_identifier_token26] = ACTIONS(955), + [aux_sym_cmd_identifier_token27] = ACTIONS(955), + [aux_sym_cmd_identifier_token28] = ACTIONS(955), + [aux_sym_cmd_identifier_token29] = ACTIONS(955), + [aux_sym_cmd_identifier_token30] = ACTIONS(955), + [aux_sym_cmd_identifier_token31] = ACTIONS(955), + [aux_sym_cmd_identifier_token32] = ACTIONS(955), + [aux_sym_cmd_identifier_token33] = ACTIONS(955), + [aux_sym_cmd_identifier_token34] = ACTIONS(955), + [aux_sym_cmd_identifier_token35] = ACTIONS(955), + [aux_sym_cmd_identifier_token36] = ACTIONS(955), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_null] = ACTIONS(957), + [aux_sym_cmd_identifier_token38] = ACTIONS(955), + [aux_sym_cmd_identifier_token39] = ACTIONS(957), + [aux_sym_cmd_identifier_token40] = ACTIONS(957), + [anon_sym_def] = ACTIONS(955), + [anon_sym_export_DASHenv] = ACTIONS(955), + [anon_sym_extern] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_use] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_error] = ACTIONS(955), + [anon_sym_list] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_break] = ACTIONS(955), + [anon_sym_continue] = ACTIONS(955), + [anon_sym_for] = ACTIONS(955), + [anon_sym_in] = ACTIONS(955), + [anon_sym_loop] = ACTIONS(955), + [anon_sym_make] = ACTIONS(955), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(955), + [anon_sym_if] = ACTIONS(955), + [anon_sym_else] = ACTIONS(955), + [anon_sym_match] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_try] = ACTIONS(955), + [anon_sym_catch] = ACTIONS(955), + [anon_sym_return] = ACTIONS(955), + [anon_sym_source] = ACTIONS(955), + [anon_sym_source_DASHenv] = ACTIONS(955), + [anon_sym_register] = ACTIONS(955), + [anon_sym_hide] = ACTIONS(955), + [anon_sym_hide_DASHenv] = ACTIONS(955), + [anon_sym_overlay] = ACTIONS(955), + [anon_sym_new] = ACTIONS(955), + [anon_sym_as] = ACTIONS(955), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(957), + [anon_sym_DOT_DOT2] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(1700), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(957), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(957), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(957), + [aux_sym__val_number_decimal_token3] = ACTIONS(957), + [aux_sym__val_number_decimal_token4] = ACTIONS(957), + [aux_sym__val_number_token1] = ACTIONS(957), + [aux_sym__val_number_token2] = ACTIONS(957), + [aux_sym__val_number_token3] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__str_single_quotes] = ACTIONS(957), + [sym__str_back_ticks] = ACTIONS(957), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(247), }, [254] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5185), - [sym_block] = STATE(5186), - [sym__expression_parenthesized] = STATE(5186), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5186), [sym_comment] = STATE(254), - [aux_sym_shebang_repeat1] = STATE(260), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1271), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_alias] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_let_DASHenv] = ACTIONS(1275), + [anon_sym_mut] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [aux_sym_cmd_identifier_token1] = ACTIONS(1275), + [aux_sym_cmd_identifier_token2] = ACTIONS(1275), + [aux_sym_cmd_identifier_token3] = ACTIONS(1275), + [aux_sym_cmd_identifier_token4] = ACTIONS(1275), + [aux_sym_cmd_identifier_token5] = ACTIONS(1275), + [aux_sym_cmd_identifier_token6] = ACTIONS(1275), + [aux_sym_cmd_identifier_token7] = ACTIONS(1275), + [aux_sym_cmd_identifier_token8] = ACTIONS(1275), + [aux_sym_cmd_identifier_token9] = ACTIONS(1275), + [aux_sym_cmd_identifier_token10] = ACTIONS(1275), + [aux_sym_cmd_identifier_token11] = ACTIONS(1275), + [aux_sym_cmd_identifier_token12] = ACTIONS(1275), + [aux_sym_cmd_identifier_token13] = ACTIONS(1275), + [aux_sym_cmd_identifier_token14] = ACTIONS(1275), + [aux_sym_cmd_identifier_token15] = ACTIONS(1275), + [aux_sym_cmd_identifier_token16] = ACTIONS(1275), + [aux_sym_cmd_identifier_token17] = ACTIONS(1275), + [aux_sym_cmd_identifier_token18] = ACTIONS(1275), + [aux_sym_cmd_identifier_token19] = ACTIONS(1275), + [aux_sym_cmd_identifier_token20] = ACTIONS(1275), + [aux_sym_cmd_identifier_token21] = ACTIONS(1275), + [aux_sym_cmd_identifier_token22] = ACTIONS(1275), + [aux_sym_cmd_identifier_token23] = ACTIONS(1275), + [aux_sym_cmd_identifier_token24] = ACTIONS(1271), + [aux_sym_cmd_identifier_token25] = ACTIONS(1275), + [aux_sym_cmd_identifier_token26] = ACTIONS(1271), + [aux_sym_cmd_identifier_token27] = ACTIONS(1275), + [aux_sym_cmd_identifier_token28] = ACTIONS(1275), + [aux_sym_cmd_identifier_token29] = ACTIONS(1275), + [aux_sym_cmd_identifier_token30] = ACTIONS(1275), + [aux_sym_cmd_identifier_token31] = ACTIONS(1271), + [aux_sym_cmd_identifier_token32] = ACTIONS(1271), + [aux_sym_cmd_identifier_token33] = ACTIONS(1271), + [aux_sym_cmd_identifier_token34] = ACTIONS(1271), + [aux_sym_cmd_identifier_token35] = ACTIONS(1271), + [aux_sym_cmd_identifier_token36] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_null] = ACTIONS(1271), + [aux_sym_cmd_identifier_token38] = ACTIONS(1275), + [aux_sym_cmd_identifier_token39] = ACTIONS(1271), + [aux_sym_cmd_identifier_token40] = ACTIONS(1271), + [sym__newline] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_def] = ACTIONS(1275), + [anon_sym_export_DASHenv] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [aux_sym_ctrl_match_token1] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_source] = ACTIONS(1275), + [anon_sym_source_DASHenv] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), + [anon_sym_hide_DASHenv] = ACTIONS(1275), + [anon_sym_overlay] = ACTIONS(1275), + [anon_sym_where] = ACTIONS(1271), + [aux_sym_expr_unary_token1] = ACTIONS(1271), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), + [anon_sym_DOT_DOT_LT] = ACTIONS(1271), + [aux_sym__val_number_decimal_token1] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1271), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_decimal_token4] = ACTIONS(1271), + [aux_sym__val_number_token1] = ACTIONS(1271), + [aux_sym__val_number_token2] = ACTIONS(1271), + [aux_sym__val_number_token3] = ACTIONS(1271), + [anon_sym_0b] = ACTIONS(1275), + [anon_sym_0o] = ACTIONS(1275), + [anon_sym_0x] = ACTIONS(1275), + [sym_val_date] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__str_single_quotes] = ACTIONS(1271), + [sym__str_back_ticks] = ACTIONS(1271), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), + [aux_sym_env_var_token1] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(247), }, [255] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5187), - [sym_block] = STATE(5188), - [sym__expression_parenthesized] = STATE(5188), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5188), [sym_comment] = STATE(255), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [sym__entry_separator] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(3), }, [256] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5187), - [sym_block] = STATE(5188), - [sym__expression_parenthesized] = STATE(5188), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5188), [sym_comment] = STATE(256), - [aux_sym_shebang_repeat1] = STATE(262), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [anon_sym_null] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), + [anon_sym_list] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_new] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(976), + [aux_sym__val_number_decimal_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token4] = ACTIONS(976), + [aux_sym__val_number_token1] = ACTIONS(976), + [aux_sym__val_number_token2] = ACTIONS(976), + [aux_sym__val_number_token3] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [sym__entry_separator] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), }, [257] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5189), - [sym_block] = STATE(5191), - [sym__expression_parenthesized] = STATE(5191), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5191), [sym_comment] = STATE(257), - [aux_sym_shebang_repeat1] = STATE(264), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [anon_sym_true] = ACTIONS(962), + [anon_sym_false] = ACTIONS(962), + [anon_sym_null] = ACTIONS(962), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(962), + [aux_sym_cmd_identifier_token40] = ACTIONS(962), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_error] = ACTIONS(962), + [anon_sym_list] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_new] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(962), + [aux_sym__val_number_decimal_token3] = ACTIONS(962), + [aux_sym__val_number_decimal_token4] = ACTIONS(962), + [aux_sym__val_number_token1] = ACTIONS(962), + [aux_sym__val_number_token2] = ACTIONS(962), + [aux_sym__val_number_token3] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), + [sym__entry_separator] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), [anon_sym_POUND] = ACTIONS(3), }, [258] = { [sym_comment] = STATE(258), - [anon_sym_export] = ACTIONS(916), - [anon_sym_alias] = ACTIONS(916), - [anon_sym_let] = ACTIONS(916), - [anon_sym_let_DASHenv] = ACTIONS(916), - [anon_sym_mut] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [aux_sym_cmd_identifier_token1] = ACTIONS(916), - [aux_sym_cmd_identifier_token2] = ACTIONS(916), - [aux_sym_cmd_identifier_token3] = ACTIONS(916), - [aux_sym_cmd_identifier_token4] = ACTIONS(916), - [aux_sym_cmd_identifier_token5] = ACTIONS(916), - [aux_sym_cmd_identifier_token6] = ACTIONS(916), - [aux_sym_cmd_identifier_token7] = ACTIONS(916), - [aux_sym_cmd_identifier_token8] = ACTIONS(916), - [aux_sym_cmd_identifier_token9] = ACTIONS(916), - [aux_sym_cmd_identifier_token10] = ACTIONS(916), - [aux_sym_cmd_identifier_token11] = ACTIONS(916), - [aux_sym_cmd_identifier_token12] = ACTIONS(916), - [aux_sym_cmd_identifier_token13] = ACTIONS(916), - [aux_sym_cmd_identifier_token14] = ACTIONS(916), - [aux_sym_cmd_identifier_token15] = ACTIONS(916), - [aux_sym_cmd_identifier_token16] = ACTIONS(916), - [aux_sym_cmd_identifier_token17] = ACTIONS(916), - [aux_sym_cmd_identifier_token18] = ACTIONS(916), - [aux_sym_cmd_identifier_token19] = ACTIONS(916), - [aux_sym_cmd_identifier_token20] = ACTIONS(916), - [aux_sym_cmd_identifier_token21] = ACTIONS(916), - [aux_sym_cmd_identifier_token22] = ACTIONS(916), - [aux_sym_cmd_identifier_token23] = ACTIONS(916), - [aux_sym_cmd_identifier_token24] = ACTIONS(916), - [aux_sym_cmd_identifier_token25] = ACTIONS(916), - [aux_sym_cmd_identifier_token26] = ACTIONS(916), - [aux_sym_cmd_identifier_token27] = ACTIONS(916), - [aux_sym_cmd_identifier_token28] = ACTIONS(916), - [aux_sym_cmd_identifier_token29] = ACTIONS(916), - [aux_sym_cmd_identifier_token30] = ACTIONS(916), - [aux_sym_cmd_identifier_token31] = ACTIONS(916), - [aux_sym_cmd_identifier_token32] = ACTIONS(916), - [aux_sym_cmd_identifier_token33] = ACTIONS(916), - [aux_sym_cmd_identifier_token34] = ACTIONS(916), - [aux_sym_cmd_identifier_token35] = ACTIONS(916), - [aux_sym_cmd_identifier_token36] = ACTIONS(916), - [anon_sym_true] = ACTIONS(916), - [anon_sym_false] = ACTIONS(916), - [anon_sym_null] = ACTIONS(916), - [aux_sym_cmd_identifier_token38] = ACTIONS(916), - [aux_sym_cmd_identifier_token39] = ACTIONS(916), - [aux_sym_cmd_identifier_token40] = ACTIONS(916), - [anon_sym_def] = ACTIONS(916), - [anon_sym_export_DASHenv] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_use] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_DOLLAR] = ACTIONS(916), - [anon_sym_error] = ACTIONS(916), - [anon_sym_list] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [anon_sym_loop] = ACTIONS(916), - [anon_sym_make] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_match] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_try] = ACTIONS(916), - [anon_sym_catch] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_source] = ACTIONS(916), - [anon_sym_source_DASHenv] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_hide] = ACTIONS(916), - [anon_sym_hide_DASHenv] = ACTIONS(916), - [anon_sym_overlay] = ACTIONS(916), - [anon_sym_new] = ACTIONS(916), - [anon_sym_as] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(916), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(916), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(916), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(916), - [aux_sym__val_number_token1] = ACTIONS(916), - [aux_sym__val_number_token2] = ACTIONS(916), - [aux_sym__val_number_token3] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym__str_single_quotes] = ACTIONS(916), - [sym__str_back_ticks] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(916), - [sym__entry_separator] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(970), + [anon_sym_alias] = ACTIONS(970), + [anon_sym_let] = ACTIONS(970), + [anon_sym_let_DASHenv] = ACTIONS(970), + [anon_sym_mut] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [aux_sym_cmd_identifier_token1] = ACTIONS(970), + [aux_sym_cmd_identifier_token2] = ACTIONS(970), + [aux_sym_cmd_identifier_token3] = ACTIONS(970), + [aux_sym_cmd_identifier_token4] = ACTIONS(970), + [aux_sym_cmd_identifier_token5] = ACTIONS(970), + [aux_sym_cmd_identifier_token6] = ACTIONS(970), + [aux_sym_cmd_identifier_token7] = ACTIONS(970), + [aux_sym_cmd_identifier_token8] = ACTIONS(970), + [aux_sym_cmd_identifier_token9] = ACTIONS(970), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(970), + [aux_sym_cmd_identifier_token13] = ACTIONS(970), + [aux_sym_cmd_identifier_token14] = ACTIONS(970), + [aux_sym_cmd_identifier_token15] = ACTIONS(970), + [aux_sym_cmd_identifier_token16] = ACTIONS(970), + [aux_sym_cmd_identifier_token17] = ACTIONS(970), + [aux_sym_cmd_identifier_token18] = ACTIONS(970), + [aux_sym_cmd_identifier_token19] = ACTIONS(970), + [aux_sym_cmd_identifier_token20] = ACTIONS(970), + [aux_sym_cmd_identifier_token21] = ACTIONS(970), + [aux_sym_cmd_identifier_token22] = ACTIONS(970), + [aux_sym_cmd_identifier_token23] = ACTIONS(970), + [aux_sym_cmd_identifier_token24] = ACTIONS(970), + [aux_sym_cmd_identifier_token25] = ACTIONS(970), + [aux_sym_cmd_identifier_token26] = ACTIONS(970), + [aux_sym_cmd_identifier_token27] = ACTIONS(970), + [aux_sym_cmd_identifier_token28] = ACTIONS(970), + [aux_sym_cmd_identifier_token29] = ACTIONS(970), + [aux_sym_cmd_identifier_token30] = ACTIONS(970), + [aux_sym_cmd_identifier_token31] = ACTIONS(970), + [aux_sym_cmd_identifier_token32] = ACTIONS(970), + [aux_sym_cmd_identifier_token33] = ACTIONS(970), + [aux_sym_cmd_identifier_token34] = ACTIONS(970), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [anon_sym_null] = ACTIONS(970), + [aux_sym_cmd_identifier_token38] = ACTIONS(970), + [aux_sym_cmd_identifier_token39] = ACTIONS(970), + [aux_sym_cmd_identifier_token40] = ACTIONS(970), + [anon_sym_def] = ACTIONS(970), + [anon_sym_export_DASHenv] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_use] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_error] = ACTIONS(970), + [anon_sym_list] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_in] = ACTIONS(970), + [anon_sym_loop] = ACTIONS(970), + [anon_sym_make] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_match] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_try] = ACTIONS(970), + [anon_sym_catch] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_source] = ACTIONS(970), + [anon_sym_source_DASHenv] = ACTIONS(970), + [anon_sym_register] = ACTIONS(970), + [anon_sym_hide] = ACTIONS(970), + [anon_sym_hide_DASHenv] = ACTIONS(970), + [anon_sym_overlay] = ACTIONS(970), + [anon_sym_new] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(970), + [aux_sym__val_number_decimal_token3] = ACTIONS(970), + [aux_sym__val_number_decimal_token4] = ACTIONS(970), + [aux_sym__val_number_token1] = ACTIONS(970), + [aux_sym__val_number_token2] = ACTIONS(970), + [aux_sym__val_number_token3] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), + [sym__entry_separator] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(3), }, [259] = { [sym_comment] = STATE(259), - [aux_sym__block_body_repeat1] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(1563), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [aux_sym_cmd_identifier_token1] = ACTIONS(1559), - [aux_sym_cmd_identifier_token2] = ACTIONS(1559), - [aux_sym_cmd_identifier_token3] = ACTIONS(1559), - [aux_sym_cmd_identifier_token4] = ACTIONS(1559), - [aux_sym_cmd_identifier_token5] = ACTIONS(1559), - [aux_sym_cmd_identifier_token6] = ACTIONS(1559), - [aux_sym_cmd_identifier_token7] = ACTIONS(1559), - [aux_sym_cmd_identifier_token8] = ACTIONS(1559), - [aux_sym_cmd_identifier_token9] = ACTIONS(1559), - [aux_sym_cmd_identifier_token10] = ACTIONS(1559), - [aux_sym_cmd_identifier_token11] = ACTIONS(1559), - [aux_sym_cmd_identifier_token12] = ACTIONS(1559), - [aux_sym_cmd_identifier_token13] = ACTIONS(1559), - [aux_sym_cmd_identifier_token14] = ACTIONS(1559), - [aux_sym_cmd_identifier_token15] = ACTIONS(1559), - [aux_sym_cmd_identifier_token16] = ACTIONS(1559), - [aux_sym_cmd_identifier_token17] = ACTIONS(1559), - [aux_sym_cmd_identifier_token18] = ACTIONS(1559), - [aux_sym_cmd_identifier_token19] = ACTIONS(1559), - [aux_sym_cmd_identifier_token20] = ACTIONS(1559), - [aux_sym_cmd_identifier_token21] = ACTIONS(1559), - [aux_sym_cmd_identifier_token22] = ACTIONS(1559), - [aux_sym_cmd_identifier_token23] = ACTIONS(1559), - [aux_sym_cmd_identifier_token24] = ACTIONS(1561), - [aux_sym_cmd_identifier_token25] = ACTIONS(1559), - [aux_sym_cmd_identifier_token26] = ACTIONS(1561), - [aux_sym_cmd_identifier_token27] = ACTIONS(1559), - [aux_sym_cmd_identifier_token28] = ACTIONS(1559), - [aux_sym_cmd_identifier_token29] = ACTIONS(1559), - [aux_sym_cmd_identifier_token30] = ACTIONS(1559), - [aux_sym_cmd_identifier_token31] = ACTIONS(1561), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1561), - [aux_sym_cmd_identifier_token35] = ACTIONS(1561), - [aux_sym_cmd_identifier_token36] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [aux_sym_cmd_identifier_token38] = ACTIONS(1559), - [aux_sym_cmd_identifier_token39] = ACTIONS(1561), - [aux_sym_cmd_identifier_token40] = ACTIONS(1561), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [aux_sym_ctrl_match_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1561), - [aux_sym_expr_unary_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_DOT_DOT_LT] = ACTIONS(1561), - [aux_sym__val_number_decimal_token1] = ACTIONS(1559), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [anon_sym_DOT2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1561), - [aux_sym__val_number_token2] = ACTIONS(1561), - [aux_sym__val_number_token3] = ACTIONS(1561), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym__str_single_quotes] = ACTIONS(1561), - [sym__str_back_ticks] = ACTIONS(1561), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(980), + [anon_sym_list] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_new] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [sym__entry_separator] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(3), }, [260] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5206), - [sym_block] = STATE(5209), - [sym__expression_parenthesized] = STATE(5209), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5209), [sym_comment] = STATE(260), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [261] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5206), - [sym_block] = STATE(5209), - [sym__expression_parenthesized] = STATE(5209), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5209), [sym_comment] = STATE(261), - [aux_sym_shebang_repeat1] = STATE(266), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [262] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5210), - [sym_block] = STATE(5211), - [sym__expression_parenthesized] = STATE(5211), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5211), [sym_comment] = STATE(262), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1709), + [aux_sym_cmd_identifier_token3] = ACTIONS(1709), + [aux_sym_cmd_identifier_token4] = ACTIONS(1709), + [aux_sym_cmd_identifier_token5] = ACTIONS(1709), + [aux_sym_cmd_identifier_token6] = ACTIONS(1709), + [aux_sym_cmd_identifier_token7] = ACTIONS(1709), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1709), + [aux_sym_cmd_identifier_token11] = ACTIONS(1709), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1709), + [aux_sym_cmd_identifier_token17] = ACTIONS(1709), + [aux_sym_cmd_identifier_token18] = ACTIONS(1709), + [aux_sym_cmd_identifier_token19] = ACTIONS(1709), + [aux_sym_cmd_identifier_token20] = ACTIONS(1709), + [aux_sym_cmd_identifier_token21] = ACTIONS(1709), + [aux_sym_cmd_identifier_token22] = ACTIONS(1709), + [aux_sym_cmd_identifier_token23] = ACTIONS(1709), + [aux_sym_cmd_identifier_token24] = ACTIONS(1709), + [aux_sym_cmd_identifier_token25] = ACTIONS(1709), + [aux_sym_cmd_identifier_token26] = ACTIONS(1709), + [aux_sym_cmd_identifier_token27] = ACTIONS(1709), + [aux_sym_cmd_identifier_token28] = ACTIONS(1709), + [aux_sym_cmd_identifier_token29] = ACTIONS(1709), + [aux_sym_cmd_identifier_token30] = ACTIONS(1709), + [aux_sym_cmd_identifier_token31] = ACTIONS(1709), + [aux_sym_cmd_identifier_token32] = ACTIONS(1709), + [aux_sym_cmd_identifier_token33] = ACTIONS(1709), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1709), + [aux_sym_cmd_identifier_token36] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_null] = ACTIONS(1709), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1709), + [aux_sym_cmd_identifier_token40] = ACTIONS(1709), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_list] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_new] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1713), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1709), + [aux_sym__val_number_token2] = ACTIONS(1709), + [aux_sym__val_number_token3] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym__str_single_quotes] = ACTIONS(1709), + [sym__str_back_ticks] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1709), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), [anon_sym_POUND] = ACTIONS(3), }, [263] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5210), - [sym_block] = STATE(5211), - [sym__expression_parenthesized] = STATE(5211), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5211), [sym_comment] = STATE(263), - [aux_sym_shebang_repeat1] = STATE(267), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), }, [264] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5212), - [sym_block] = STATE(5213), - [sym__expression_parenthesized] = STATE(5213), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5213), [sym_comment] = STATE(264), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1569), + [aux_sym_cmd_identifier_token40] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1569), + [aux_sym__val_number_token2] = ACTIONS(1569), + [aux_sym__val_number_token3] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), [anon_sym_POUND] = ACTIONS(3), }, [265] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5212), - [sym_block] = STATE(5213), - [sym__expression_parenthesized] = STATE(5213), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5213), [sym_comment] = STATE(265), - [aux_sym_shebang_repeat1] = STATE(268), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1648), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1648), + [aux_sym_cmd_identifier_token40] = ACTIONS(1648), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1648), + [aux_sym__val_number_decimal_token3] = ACTIONS(1648), + [aux_sym__val_number_decimal_token4] = ACTIONS(1648), + [aux_sym__val_number_token1] = ACTIONS(1648), + [aux_sym__val_number_token2] = ACTIONS(1648), + [aux_sym__val_number_token3] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [sym__str_single_quotes] = ACTIONS(1648), + [sym__str_back_ticks] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), + [sym__entry_separator] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), [anon_sym_POUND] = ACTIONS(3), }, [266] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5217), - [sym_block] = STATE(5218), - [sym__expression_parenthesized] = STATE(5218), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5218), [sym_comment] = STATE(266), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, [267] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5219), - [sym_block] = STATE(5220), - [sym__expression_parenthesized] = STATE(5220), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5220), [sym_comment] = STATE(267), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1569), + [aux_sym_cmd_identifier_token40] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(1725), + [aux_sym__immediate_decimal_token2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1569), + [aux_sym__val_number_token2] = ACTIONS(1569), + [aux_sym__val_number_token3] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), [anon_sym_POUND] = ACTIONS(3), }, [268] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5221), - [sym_block] = STATE(5222), - [sym__expression_parenthesized] = STATE(5222), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5222), [sym_comment] = STATE(268), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), }, [269] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5221), - [sym_block] = STATE(5222), - [sym__expression_parenthesized] = STATE(5222), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5222), [sym_comment] = STATE(269), - [aux_sym_shebang_repeat1] = STATE(270), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1733), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1733), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [aux_sym_ctrl_match_token1] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_where] = ACTIONS(1733), + [aux_sym_expr_unary_token1] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [aux_sym_env_var_token1] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(247), }, [270] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5224), - [sym_block] = STATE(5225), - [sym__expression_parenthesized] = STATE(5225), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5225), [sym_comment] = STATE(270), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__block_body_repeat1] = STATE(226), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1605), + [aux_sym_cmd_identifier_token3] = ACTIONS(1605), + [aux_sym_cmd_identifier_token4] = ACTIONS(1605), + [aux_sym_cmd_identifier_token5] = ACTIONS(1605), + [aux_sym_cmd_identifier_token6] = ACTIONS(1605), + [aux_sym_cmd_identifier_token7] = ACTIONS(1605), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1605), + [aux_sym_cmd_identifier_token11] = ACTIONS(1605), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1605), + [aux_sym_cmd_identifier_token17] = ACTIONS(1605), + [aux_sym_cmd_identifier_token18] = ACTIONS(1605), + [aux_sym_cmd_identifier_token19] = ACTIONS(1605), + [aux_sym_cmd_identifier_token20] = ACTIONS(1605), + [aux_sym_cmd_identifier_token21] = ACTIONS(1605), + [aux_sym_cmd_identifier_token22] = ACTIONS(1605), + [aux_sym_cmd_identifier_token23] = ACTIONS(1605), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1605), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1605), + [aux_sym_cmd_identifier_token28] = ACTIONS(1605), + [aux_sym_cmd_identifier_token29] = ACTIONS(1605), + [aux_sym_cmd_identifier_token30] = ACTIONS(1605), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [aux_sym_ctrl_match_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1607), + [aux_sym_expr_unary_token1] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [aux_sym_env_var_token1] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), }, [271] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5205), + [sym_block] = STATE(5234), + [sym__expression_parenthesized] = STATE(5234), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5234), [sym_comment] = STATE(271), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_alias] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_let_DASHenv] = ACTIONS(1218), - [anon_sym_mut] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [aux_sym_cmd_identifier_token1] = ACTIONS(1218), - [aux_sym_cmd_identifier_token2] = ACTIONS(1218), - [aux_sym_cmd_identifier_token3] = ACTIONS(1218), - [aux_sym_cmd_identifier_token4] = ACTIONS(1218), - [aux_sym_cmd_identifier_token5] = ACTIONS(1218), - [aux_sym_cmd_identifier_token6] = ACTIONS(1218), - [aux_sym_cmd_identifier_token7] = ACTIONS(1218), - [aux_sym_cmd_identifier_token8] = ACTIONS(1218), - [aux_sym_cmd_identifier_token9] = ACTIONS(1218), - [aux_sym_cmd_identifier_token10] = ACTIONS(1218), - [aux_sym_cmd_identifier_token11] = ACTIONS(1218), - [aux_sym_cmd_identifier_token12] = ACTIONS(1218), - [aux_sym_cmd_identifier_token13] = ACTIONS(1218), - [aux_sym_cmd_identifier_token14] = ACTIONS(1218), - [aux_sym_cmd_identifier_token15] = ACTIONS(1218), - [aux_sym_cmd_identifier_token16] = ACTIONS(1218), - [aux_sym_cmd_identifier_token17] = ACTIONS(1218), - [aux_sym_cmd_identifier_token18] = ACTIONS(1218), - [aux_sym_cmd_identifier_token19] = ACTIONS(1218), - [aux_sym_cmd_identifier_token20] = ACTIONS(1218), - [aux_sym_cmd_identifier_token21] = ACTIONS(1218), - [aux_sym_cmd_identifier_token22] = ACTIONS(1218), - [aux_sym_cmd_identifier_token23] = ACTIONS(1218), - [aux_sym_cmd_identifier_token24] = ACTIONS(1214), - [aux_sym_cmd_identifier_token25] = ACTIONS(1218), - [aux_sym_cmd_identifier_token26] = ACTIONS(1214), - [aux_sym_cmd_identifier_token27] = ACTIONS(1218), - [aux_sym_cmd_identifier_token28] = ACTIONS(1218), - [aux_sym_cmd_identifier_token29] = ACTIONS(1218), - [aux_sym_cmd_identifier_token30] = ACTIONS(1218), - [aux_sym_cmd_identifier_token31] = ACTIONS(1214), - [aux_sym_cmd_identifier_token32] = ACTIONS(1214), - [aux_sym_cmd_identifier_token33] = ACTIONS(1214), - [aux_sym_cmd_identifier_token34] = ACTIONS(1214), - [aux_sym_cmd_identifier_token35] = ACTIONS(1214), - [aux_sym_cmd_identifier_token36] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1214), - [anon_sym_false] = ACTIONS(1214), - [anon_sym_null] = ACTIONS(1214), - [aux_sym_cmd_identifier_token38] = ACTIONS(1218), - [aux_sym_cmd_identifier_token39] = ACTIONS(1214), - [aux_sym_cmd_identifier_token40] = ACTIONS(1214), - [sym__newline] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_def] = ACTIONS(1218), - [anon_sym_export_DASHenv] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1218), - [anon_sym_error] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_match] = ACTIONS(1218), - [aux_sym_ctrl_match_token1] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_try] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_source] = ACTIONS(1218), - [anon_sym_source_DASHenv] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_hide] = ACTIONS(1218), - [anon_sym_hide_DASHenv] = ACTIONS(1218), - [anon_sym_overlay] = ACTIONS(1218), - [anon_sym_where] = ACTIONS(1214), - [aux_sym_expr_unary_token1] = ACTIONS(1214), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1214), - [anon_sym_DOT_DOT_LT] = ACTIONS(1214), - [aux_sym__val_number_decimal_token1] = ACTIONS(1218), - [aux_sym__val_number_decimal_token2] = ACTIONS(1214), - [anon_sym_DOT2] = ACTIONS(1218), - [aux_sym__val_number_decimal_token3] = ACTIONS(1214), - [aux_sym__val_number_token1] = ACTIONS(1214), - [aux_sym__val_number_token2] = ACTIONS(1214), - [aux_sym__val_number_token3] = ACTIONS(1214), - [anon_sym_0b] = ACTIONS(1218), - [anon_sym_0o] = ACTIONS(1218), - [anon_sym_0x] = ACTIONS(1218), - [sym_val_date] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym__str_single_quotes] = ACTIONS(1214), - [sym__str_back_ticks] = ACTIONS(1214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1214), - [anon_sym_CARET] = ACTIONS(1214), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(272), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [272] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5361), + [sym_block] = STATE(5362), + [sym__expression_parenthesized] = STATE(5362), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5362), [sym_comment] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(1214), - [anon_sym_POUND_BANG] = ACTIONS(1220), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_alias] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_let_DASHenv] = ACTIONS(1218), - [anon_sym_mut] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [aux_sym_cmd_identifier_token1] = ACTIONS(1218), - [aux_sym_cmd_identifier_token2] = ACTIONS(1218), - [aux_sym_cmd_identifier_token3] = ACTIONS(1218), - [aux_sym_cmd_identifier_token4] = ACTIONS(1218), - [aux_sym_cmd_identifier_token5] = ACTIONS(1218), - [aux_sym_cmd_identifier_token6] = ACTIONS(1218), - [aux_sym_cmd_identifier_token7] = ACTIONS(1218), - [aux_sym_cmd_identifier_token8] = ACTIONS(1218), - [aux_sym_cmd_identifier_token9] = ACTIONS(1218), - [aux_sym_cmd_identifier_token10] = ACTIONS(1218), - [aux_sym_cmd_identifier_token11] = ACTIONS(1218), - [aux_sym_cmd_identifier_token12] = ACTIONS(1218), - [aux_sym_cmd_identifier_token13] = ACTIONS(1218), - [aux_sym_cmd_identifier_token14] = ACTIONS(1218), - [aux_sym_cmd_identifier_token15] = ACTIONS(1218), - [aux_sym_cmd_identifier_token16] = ACTIONS(1218), - [aux_sym_cmd_identifier_token17] = ACTIONS(1218), - [aux_sym_cmd_identifier_token18] = ACTIONS(1218), - [aux_sym_cmd_identifier_token19] = ACTIONS(1218), - [aux_sym_cmd_identifier_token20] = ACTIONS(1218), - [aux_sym_cmd_identifier_token21] = ACTIONS(1218), - [aux_sym_cmd_identifier_token22] = ACTIONS(1218), - [aux_sym_cmd_identifier_token23] = ACTIONS(1218), - [aux_sym_cmd_identifier_token24] = ACTIONS(1214), - [aux_sym_cmd_identifier_token25] = ACTIONS(1218), - [aux_sym_cmd_identifier_token26] = ACTIONS(1214), - [aux_sym_cmd_identifier_token27] = ACTIONS(1218), - [aux_sym_cmd_identifier_token28] = ACTIONS(1218), - [aux_sym_cmd_identifier_token29] = ACTIONS(1218), - [aux_sym_cmd_identifier_token30] = ACTIONS(1218), - [aux_sym_cmd_identifier_token31] = ACTIONS(1214), - [aux_sym_cmd_identifier_token32] = ACTIONS(1214), - [aux_sym_cmd_identifier_token33] = ACTIONS(1214), - [aux_sym_cmd_identifier_token34] = ACTIONS(1214), - [aux_sym_cmd_identifier_token35] = ACTIONS(1214), - [aux_sym_cmd_identifier_token36] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1214), - [anon_sym_false] = ACTIONS(1214), - [anon_sym_null] = ACTIONS(1214), - [aux_sym_cmd_identifier_token38] = ACTIONS(1218), - [aux_sym_cmd_identifier_token39] = ACTIONS(1214), - [aux_sym_cmd_identifier_token40] = ACTIONS(1214), - [sym__newline] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_def] = ACTIONS(1218), - [anon_sym_export_DASHenv] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1218), - [anon_sym_error] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_match] = ACTIONS(1218), - [aux_sym_ctrl_match_token1] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_try] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_source] = ACTIONS(1218), - [anon_sym_source_DASHenv] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_hide] = ACTIONS(1218), - [anon_sym_hide_DASHenv] = ACTIONS(1218), - [anon_sym_overlay] = ACTIONS(1218), - [anon_sym_where] = ACTIONS(1214), - [aux_sym_expr_unary_token1] = ACTIONS(1214), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1214), - [anon_sym_DOT_DOT_LT] = ACTIONS(1214), - [aux_sym__val_number_decimal_token1] = ACTIONS(1218), - [aux_sym__val_number_decimal_token2] = ACTIONS(1214), - [anon_sym_DOT2] = ACTIONS(1218), - [aux_sym__val_number_decimal_token3] = ACTIONS(1214), - [aux_sym__val_number_token1] = ACTIONS(1214), - [aux_sym__val_number_token2] = ACTIONS(1214), - [aux_sym__val_number_token3] = ACTIONS(1214), - [anon_sym_0b] = ACTIONS(1218), - [anon_sym_0o] = ACTIONS(1218), - [anon_sym_0x] = ACTIONS(1218), - [sym_val_date] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym__str_single_quotes] = ACTIONS(1214), - [sym__str_back_ticks] = ACTIONS(1214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1214), - [anon_sym_CARET] = ACTIONS(1214), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [273] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5361), + [sym_block] = STATE(5362), + [sym__expression_parenthesized] = STATE(5362), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5362), [sym_comment] = STATE(273), - [aux_sym__block_body_repeat1] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(1603), - [anon_sym_export] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1601), - [anon_sym_let] = ACTIONS(1601), - [anon_sym_let_DASHenv] = ACTIONS(1601), - [anon_sym_mut] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [aux_sym_cmd_identifier_token1] = ACTIONS(1601), - [aux_sym_cmd_identifier_token2] = ACTIONS(1601), - [aux_sym_cmd_identifier_token3] = ACTIONS(1601), - [aux_sym_cmd_identifier_token4] = ACTIONS(1601), - [aux_sym_cmd_identifier_token5] = ACTIONS(1601), - [aux_sym_cmd_identifier_token6] = ACTIONS(1601), - [aux_sym_cmd_identifier_token7] = ACTIONS(1601), - [aux_sym_cmd_identifier_token8] = ACTIONS(1601), - [aux_sym_cmd_identifier_token9] = ACTIONS(1601), - [aux_sym_cmd_identifier_token10] = ACTIONS(1601), - [aux_sym_cmd_identifier_token11] = ACTIONS(1601), - [aux_sym_cmd_identifier_token12] = ACTIONS(1601), - [aux_sym_cmd_identifier_token13] = ACTIONS(1601), - [aux_sym_cmd_identifier_token14] = ACTIONS(1601), - [aux_sym_cmd_identifier_token15] = ACTIONS(1601), - [aux_sym_cmd_identifier_token16] = ACTIONS(1601), - [aux_sym_cmd_identifier_token17] = ACTIONS(1601), - [aux_sym_cmd_identifier_token18] = ACTIONS(1601), - [aux_sym_cmd_identifier_token19] = ACTIONS(1601), - [aux_sym_cmd_identifier_token20] = ACTIONS(1601), - [aux_sym_cmd_identifier_token21] = ACTIONS(1601), - [aux_sym_cmd_identifier_token22] = ACTIONS(1601), - [aux_sym_cmd_identifier_token23] = ACTIONS(1601), - [aux_sym_cmd_identifier_token24] = ACTIONS(1603), - [aux_sym_cmd_identifier_token25] = ACTIONS(1601), - [aux_sym_cmd_identifier_token26] = ACTIONS(1603), - [aux_sym_cmd_identifier_token27] = ACTIONS(1601), - [aux_sym_cmd_identifier_token28] = ACTIONS(1601), - [aux_sym_cmd_identifier_token29] = ACTIONS(1601), - [aux_sym_cmd_identifier_token30] = ACTIONS(1601), - [aux_sym_cmd_identifier_token31] = ACTIONS(1603), - [aux_sym_cmd_identifier_token32] = ACTIONS(1603), - [aux_sym_cmd_identifier_token33] = ACTIONS(1603), - [aux_sym_cmd_identifier_token34] = ACTIONS(1603), - [aux_sym_cmd_identifier_token35] = ACTIONS(1603), - [aux_sym_cmd_identifier_token36] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1601), - [aux_sym_cmd_identifier_token39] = ACTIONS(1603), - [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [sym__newline] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_def] = ACTIONS(1601), - [anon_sym_export_DASHenv] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym_module] = ACTIONS(1601), - [anon_sym_use] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_error] = ACTIONS(1601), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_loop] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_match] = ACTIONS(1601), - [aux_sym_ctrl_match_token1] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1601), - [anon_sym_try] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_source] = ACTIONS(1601), - [anon_sym_source_DASHenv] = ACTIONS(1601), - [anon_sym_register] = ACTIONS(1601), - [anon_sym_hide] = ACTIONS(1601), - [anon_sym_hide_DASHenv] = ACTIONS(1601), - [anon_sym_overlay] = ACTIONS(1601), - [anon_sym_where] = ACTIONS(1603), - [aux_sym_expr_unary_token1] = ACTIONS(1603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1601), - [aux_sym__val_number_decimal_token2] = ACTIONS(1603), - [anon_sym_DOT2] = ACTIONS(1601), - [aux_sym__val_number_decimal_token3] = ACTIONS(1603), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1601), - [anon_sym_0o] = ACTIONS(1601), - [anon_sym_0x] = ACTIONS(1601), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_CARET] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(276), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [274] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5222), + [sym_block] = STATE(5332), + [sym__expression_parenthesized] = STATE(5332), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5332), [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(278), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [275] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5201), + [sym_block] = STATE(5257), + [sym__expression_parenthesized] = STATE(5257), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5257), [sym_comment] = STATE(275), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [aux_sym_cmd_identifier_token1] = ACTIONS(920), - [aux_sym_cmd_identifier_token2] = ACTIONS(920), - [aux_sym_cmd_identifier_token3] = ACTIONS(920), - [aux_sym_cmd_identifier_token4] = ACTIONS(920), - [aux_sym_cmd_identifier_token5] = ACTIONS(920), - [aux_sym_cmd_identifier_token6] = ACTIONS(920), - [aux_sym_cmd_identifier_token7] = ACTIONS(920), - [aux_sym_cmd_identifier_token8] = ACTIONS(920), - [aux_sym_cmd_identifier_token9] = ACTIONS(920), - [aux_sym_cmd_identifier_token10] = ACTIONS(920), - [aux_sym_cmd_identifier_token11] = ACTIONS(920), - [aux_sym_cmd_identifier_token12] = ACTIONS(920), - [aux_sym_cmd_identifier_token13] = ACTIONS(920), - [aux_sym_cmd_identifier_token14] = ACTIONS(920), - [aux_sym_cmd_identifier_token15] = ACTIONS(920), - [aux_sym_cmd_identifier_token16] = ACTIONS(920), - [aux_sym_cmd_identifier_token17] = ACTIONS(920), - [aux_sym_cmd_identifier_token18] = ACTIONS(920), - [aux_sym_cmd_identifier_token19] = ACTIONS(920), - [aux_sym_cmd_identifier_token20] = ACTIONS(920), - [aux_sym_cmd_identifier_token21] = ACTIONS(920), - [aux_sym_cmd_identifier_token22] = ACTIONS(920), - [aux_sym_cmd_identifier_token23] = ACTIONS(920), - [aux_sym_cmd_identifier_token24] = ACTIONS(920), - [aux_sym_cmd_identifier_token25] = ACTIONS(920), - [aux_sym_cmd_identifier_token26] = ACTIONS(920), - [aux_sym_cmd_identifier_token27] = ACTIONS(920), - [aux_sym_cmd_identifier_token28] = ACTIONS(920), - [aux_sym_cmd_identifier_token29] = ACTIONS(920), - [aux_sym_cmd_identifier_token30] = ACTIONS(920), - [aux_sym_cmd_identifier_token31] = ACTIONS(920), - [aux_sym_cmd_identifier_token32] = ACTIONS(920), - [aux_sym_cmd_identifier_token33] = ACTIONS(920), - [aux_sym_cmd_identifier_token34] = ACTIONS(920), - [aux_sym_cmd_identifier_token35] = ACTIONS(920), - [aux_sym_cmd_identifier_token36] = ACTIONS(920), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [anon_sym_null] = ACTIONS(920), - [aux_sym_cmd_identifier_token38] = ACTIONS(920), - [aux_sym_cmd_identifier_token39] = ACTIONS(920), - [aux_sym_cmd_identifier_token40] = ACTIONS(920), - [anon_sym_def] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_error] = ACTIONS(920), - [anon_sym_list] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_make] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_catch] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_new] = ACTIONS(920), - [anon_sym_as] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(920), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(920), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(920), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(920), - [aux_sym__val_number_token1] = ACTIONS(920), - [aux_sym__val_number_token2] = ACTIONS(920), - [aux_sym__val_number_token3] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym__str_single_quotes] = ACTIONS(920), - [sym__str_back_ticks] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(920), - [sym__entry_separator] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(280), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [276] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5261), + [sym_block] = STATE(5260), + [sym__expression_parenthesized] = STATE(5260), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5260), [sym_comment] = STATE(276), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1651), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [277] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5261), + [sym_block] = STATE(5260), + [sym__expression_parenthesized] = STATE(5260), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5260), [sym_comment] = STATE(277), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_alias] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_let_DASHenv] = ACTIONS(1587), - [anon_sym_mut] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [aux_sym_cmd_identifier_token1] = ACTIONS(1587), - [aux_sym_cmd_identifier_token2] = ACTIONS(1587), - [aux_sym_cmd_identifier_token3] = ACTIONS(1587), - [aux_sym_cmd_identifier_token4] = ACTIONS(1587), - [aux_sym_cmd_identifier_token5] = ACTIONS(1587), - [aux_sym_cmd_identifier_token6] = ACTIONS(1587), - [aux_sym_cmd_identifier_token7] = ACTIONS(1587), - [aux_sym_cmd_identifier_token8] = ACTIONS(1587), - [aux_sym_cmd_identifier_token9] = ACTIONS(1587), - [aux_sym_cmd_identifier_token10] = ACTIONS(1587), - [aux_sym_cmd_identifier_token11] = ACTIONS(1587), - [aux_sym_cmd_identifier_token12] = ACTIONS(1587), - [aux_sym_cmd_identifier_token13] = ACTIONS(1587), - [aux_sym_cmd_identifier_token14] = ACTIONS(1587), - [aux_sym_cmd_identifier_token15] = ACTIONS(1587), - [aux_sym_cmd_identifier_token16] = ACTIONS(1587), - [aux_sym_cmd_identifier_token17] = ACTIONS(1587), - [aux_sym_cmd_identifier_token18] = ACTIONS(1587), - [aux_sym_cmd_identifier_token19] = ACTIONS(1587), - [aux_sym_cmd_identifier_token20] = ACTIONS(1587), - [aux_sym_cmd_identifier_token21] = ACTIONS(1587), - [aux_sym_cmd_identifier_token22] = ACTIONS(1587), - [aux_sym_cmd_identifier_token23] = ACTIONS(1587), - [aux_sym_cmd_identifier_token24] = ACTIONS(1587), - [aux_sym_cmd_identifier_token25] = ACTIONS(1587), - [aux_sym_cmd_identifier_token26] = ACTIONS(1587), - [aux_sym_cmd_identifier_token27] = ACTIONS(1587), - [aux_sym_cmd_identifier_token28] = ACTIONS(1587), - [aux_sym_cmd_identifier_token29] = ACTIONS(1587), - [aux_sym_cmd_identifier_token30] = ACTIONS(1587), - [aux_sym_cmd_identifier_token31] = ACTIONS(1587), - [aux_sym_cmd_identifier_token32] = ACTIONS(1587), - [aux_sym_cmd_identifier_token33] = ACTIONS(1587), - [aux_sym_cmd_identifier_token34] = ACTIONS(1587), - [aux_sym_cmd_identifier_token35] = ACTIONS(1587), - [aux_sym_cmd_identifier_token36] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1595), - [aux_sym_cmd_identifier_token40] = ACTIONS(1595), - [anon_sym_def] = ACTIONS(1587), - [anon_sym_export_DASHenv] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_error] = ACTIONS(1587), - [anon_sym_list] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_make] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_source] = ACTIONS(1587), - [anon_sym_source_DASHenv] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_hide] = ACTIONS(1587), - [anon_sym_hide_DASHenv] = ACTIONS(1587), - [anon_sym_overlay] = ACTIONS(1587), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_as] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1595), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1595), - [anon_sym_DOT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1595), - [aux_sym__val_number_token1] = ACTIONS(1595), - [aux_sym__val_number_token2] = ACTIONS(1595), - [aux_sym__val_number_token3] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym__str_single_quotes] = ACTIONS(1595), - [sym__str_back_ticks] = ACTIONS(1595), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1595), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(248), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [278] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5344), + [sym_block] = STATE(5200), + [sym__expression_parenthesized] = STATE(5200), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5200), [sym_comment] = STATE(278), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [aux_sym_cmd_identifier_token1] = ACTIONS(1608), - [aux_sym_cmd_identifier_token2] = ACTIONS(1608), - [aux_sym_cmd_identifier_token3] = ACTIONS(1608), - [aux_sym_cmd_identifier_token4] = ACTIONS(1608), - [aux_sym_cmd_identifier_token5] = ACTIONS(1608), - [aux_sym_cmd_identifier_token6] = ACTIONS(1608), - [aux_sym_cmd_identifier_token7] = ACTIONS(1608), - [aux_sym_cmd_identifier_token8] = ACTIONS(1608), - [aux_sym_cmd_identifier_token9] = ACTIONS(1608), - [aux_sym_cmd_identifier_token10] = ACTIONS(1608), - [aux_sym_cmd_identifier_token11] = ACTIONS(1608), - [aux_sym_cmd_identifier_token12] = ACTIONS(1608), - [aux_sym_cmd_identifier_token13] = ACTIONS(1608), - [aux_sym_cmd_identifier_token14] = ACTIONS(1608), - [aux_sym_cmd_identifier_token15] = ACTIONS(1608), - [aux_sym_cmd_identifier_token16] = ACTIONS(1608), - [aux_sym_cmd_identifier_token17] = ACTIONS(1608), - [aux_sym_cmd_identifier_token18] = ACTIONS(1608), - [aux_sym_cmd_identifier_token19] = ACTIONS(1608), - [aux_sym_cmd_identifier_token20] = ACTIONS(1608), - [aux_sym_cmd_identifier_token21] = ACTIONS(1608), - [aux_sym_cmd_identifier_token22] = ACTIONS(1608), - [aux_sym_cmd_identifier_token23] = ACTIONS(1608), - [aux_sym_cmd_identifier_token24] = ACTIONS(1608), - [aux_sym_cmd_identifier_token25] = ACTIONS(1608), - [aux_sym_cmd_identifier_token26] = ACTIONS(1608), - [aux_sym_cmd_identifier_token27] = ACTIONS(1608), - [aux_sym_cmd_identifier_token28] = ACTIONS(1608), - [aux_sym_cmd_identifier_token29] = ACTIONS(1608), - [aux_sym_cmd_identifier_token30] = ACTIONS(1608), - [aux_sym_cmd_identifier_token31] = ACTIONS(1608), - [aux_sym_cmd_identifier_token32] = ACTIONS(1608), - [aux_sym_cmd_identifier_token33] = ACTIONS(1608), - [aux_sym_cmd_identifier_token34] = ACTIONS(1608), - [aux_sym_cmd_identifier_token35] = ACTIONS(1608), - [aux_sym_cmd_identifier_token36] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1608), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1610), - [anon_sym_DOT_DOT2] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1610), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1610), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1610), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [279] = { - [sym_path] = STATE(349), + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5344), + [sym_block] = STATE(5200), + [sym__expression_parenthesized] = STATE(5200), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5200), [sym_comment] = STATE(279), - [aux_sym_cell_path_repeat1] = STATE(279), - [anon_sym_export] = ACTIONS(893), - [anon_sym_alias] = ACTIONS(893), - [anon_sym_let] = ACTIONS(893), - [anon_sym_let_DASHenv] = ACTIONS(893), - [anon_sym_mut] = ACTIONS(893), - [anon_sym_const] = ACTIONS(893), - [aux_sym_cmd_identifier_token1] = ACTIONS(893), - [aux_sym_cmd_identifier_token2] = ACTIONS(893), - [aux_sym_cmd_identifier_token3] = ACTIONS(893), - [aux_sym_cmd_identifier_token4] = ACTIONS(893), - [aux_sym_cmd_identifier_token5] = ACTIONS(893), - [aux_sym_cmd_identifier_token6] = ACTIONS(893), - [aux_sym_cmd_identifier_token7] = ACTIONS(893), - [aux_sym_cmd_identifier_token8] = ACTIONS(893), - [aux_sym_cmd_identifier_token9] = ACTIONS(893), - [aux_sym_cmd_identifier_token10] = ACTIONS(893), - [aux_sym_cmd_identifier_token11] = ACTIONS(893), - [aux_sym_cmd_identifier_token12] = ACTIONS(893), - [aux_sym_cmd_identifier_token13] = ACTIONS(893), - [aux_sym_cmd_identifier_token14] = ACTIONS(893), - [aux_sym_cmd_identifier_token15] = ACTIONS(893), - [aux_sym_cmd_identifier_token16] = ACTIONS(893), - [aux_sym_cmd_identifier_token17] = ACTIONS(893), - [aux_sym_cmd_identifier_token18] = ACTIONS(893), - [aux_sym_cmd_identifier_token19] = ACTIONS(893), - [aux_sym_cmd_identifier_token20] = ACTIONS(893), - [aux_sym_cmd_identifier_token21] = ACTIONS(893), - [aux_sym_cmd_identifier_token22] = ACTIONS(893), - [aux_sym_cmd_identifier_token23] = ACTIONS(893), - [aux_sym_cmd_identifier_token24] = ACTIONS(893), - [aux_sym_cmd_identifier_token25] = ACTIONS(893), - [aux_sym_cmd_identifier_token26] = ACTIONS(893), - [aux_sym_cmd_identifier_token27] = ACTIONS(893), - [aux_sym_cmd_identifier_token28] = ACTIONS(893), - [aux_sym_cmd_identifier_token29] = ACTIONS(893), - [aux_sym_cmd_identifier_token30] = ACTIONS(893), - [aux_sym_cmd_identifier_token31] = ACTIONS(893), - [aux_sym_cmd_identifier_token32] = ACTIONS(893), - [aux_sym_cmd_identifier_token33] = ACTIONS(893), - [aux_sym_cmd_identifier_token34] = ACTIONS(893), - [aux_sym_cmd_identifier_token35] = ACTIONS(893), - [aux_sym_cmd_identifier_token36] = ACTIONS(893), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [anon_sym_null] = ACTIONS(895), - [aux_sym_cmd_identifier_token38] = ACTIONS(893), - [aux_sym_cmd_identifier_token39] = ACTIONS(895), - [aux_sym_cmd_identifier_token40] = ACTIONS(895), - [anon_sym_def] = ACTIONS(893), - [anon_sym_export_DASHenv] = ACTIONS(893), - [anon_sym_extern] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_use] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_error] = ACTIONS(893), - [anon_sym_list] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_in] = ACTIONS(893), - [anon_sym_loop] = ACTIONS(893), - [anon_sym_make] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_else] = ACTIONS(893), - [anon_sym_match] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_try] = ACTIONS(893), - [anon_sym_catch] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_source] = ACTIONS(893), - [anon_sym_source_DASHenv] = ACTIONS(893), - [anon_sym_register] = ACTIONS(893), - [anon_sym_hide] = ACTIONS(893), - [anon_sym_hide_DASHenv] = ACTIONS(893), - [anon_sym_overlay] = ACTIONS(893), - [anon_sym_new] = ACTIONS(893), - [anon_sym_as] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(895), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(1657), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(895), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(895), - [aux_sym__val_number_token1] = ACTIONS(895), - [aux_sym__val_number_token2] = ACTIONS(895), - [aux_sym__val_number_token3] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(283), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [280] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5217), + [sym_block] = STATE(5218), + [sym__expression_parenthesized] = STATE(5218), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5218), [sym_comment] = STATE(280), - [anon_sym_export] = ACTIONS(912), - [anon_sym_alias] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_let_DASHenv] = ACTIONS(912), - [anon_sym_mut] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [aux_sym_cmd_identifier_token1] = ACTIONS(912), - [aux_sym_cmd_identifier_token2] = ACTIONS(912), - [aux_sym_cmd_identifier_token3] = ACTIONS(912), - [aux_sym_cmd_identifier_token4] = ACTIONS(912), - [aux_sym_cmd_identifier_token5] = ACTIONS(912), - [aux_sym_cmd_identifier_token6] = ACTIONS(912), - [aux_sym_cmd_identifier_token7] = ACTIONS(912), - [aux_sym_cmd_identifier_token8] = ACTIONS(912), - [aux_sym_cmd_identifier_token9] = ACTIONS(912), - [aux_sym_cmd_identifier_token10] = ACTIONS(912), - [aux_sym_cmd_identifier_token11] = ACTIONS(912), - [aux_sym_cmd_identifier_token12] = ACTIONS(912), - [aux_sym_cmd_identifier_token13] = ACTIONS(912), - [aux_sym_cmd_identifier_token14] = ACTIONS(912), - [aux_sym_cmd_identifier_token15] = ACTIONS(912), - [aux_sym_cmd_identifier_token16] = ACTIONS(912), - [aux_sym_cmd_identifier_token17] = ACTIONS(912), - [aux_sym_cmd_identifier_token18] = ACTIONS(912), - [aux_sym_cmd_identifier_token19] = ACTIONS(912), - [aux_sym_cmd_identifier_token20] = ACTIONS(912), - [aux_sym_cmd_identifier_token21] = ACTIONS(912), - [aux_sym_cmd_identifier_token22] = ACTIONS(912), - [aux_sym_cmd_identifier_token23] = ACTIONS(912), - [aux_sym_cmd_identifier_token24] = ACTIONS(912), - [aux_sym_cmd_identifier_token25] = ACTIONS(912), - [aux_sym_cmd_identifier_token26] = ACTIONS(912), - [aux_sym_cmd_identifier_token27] = ACTIONS(912), - [aux_sym_cmd_identifier_token28] = ACTIONS(912), - [aux_sym_cmd_identifier_token29] = ACTIONS(912), - [aux_sym_cmd_identifier_token30] = ACTIONS(912), - [aux_sym_cmd_identifier_token31] = ACTIONS(912), - [aux_sym_cmd_identifier_token32] = ACTIONS(912), - [aux_sym_cmd_identifier_token33] = ACTIONS(912), - [aux_sym_cmd_identifier_token34] = ACTIONS(912), - [aux_sym_cmd_identifier_token35] = ACTIONS(912), - [aux_sym_cmd_identifier_token36] = ACTIONS(912), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_null] = ACTIONS(912), - [aux_sym_cmd_identifier_token38] = ACTIONS(912), - [aux_sym_cmd_identifier_token39] = ACTIONS(912), - [aux_sym_cmd_identifier_token40] = ACTIONS(912), - [anon_sym_def] = ACTIONS(912), - [anon_sym_export_DASHenv] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym_module] = ACTIONS(912), - [anon_sym_use] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(912), - [anon_sym_error] = ACTIONS(912), - [anon_sym_list] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [anon_sym_loop] = ACTIONS(912), - [anon_sym_make] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_match] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_try] = ACTIONS(912), - [anon_sym_catch] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_source] = ACTIONS(912), - [anon_sym_source_DASHenv] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_hide] = ACTIONS(912), - [anon_sym_hide_DASHenv] = ACTIONS(912), - [anon_sym_overlay] = ACTIONS(912), - [anon_sym_new] = ACTIONS(912), - [anon_sym_as] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(912), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(912), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(912), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(912), - [aux_sym__val_number_token1] = ACTIONS(912), - [aux_sym__val_number_token2] = ACTIONS(912), - [aux_sym__val_number_token3] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym__str_single_quotes] = ACTIONS(912), - [sym__str_back_ticks] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(912), - [sym__entry_separator] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [281] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5217), + [sym_block] = STATE(5218), + [sym__expression_parenthesized] = STATE(5218), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5218), [sym_comment] = STATE(281), - [aux_sym_shebang_repeat1] = STATE(6987), - [aux_sym__parenthesized_body_repeat1] = STATE(283), - [anon_sym_export] = ACTIONS(1660), - [anon_sym_alias] = ACTIONS(1660), - [anon_sym_let] = ACTIONS(1660), - [anon_sym_let_DASHenv] = ACTIONS(1660), - [anon_sym_mut] = ACTIONS(1660), - [anon_sym_const] = ACTIONS(1660), - [aux_sym_cmd_identifier_token1] = ACTIONS(1660), - [aux_sym_cmd_identifier_token2] = ACTIONS(1660), - [aux_sym_cmd_identifier_token3] = ACTIONS(1660), - [aux_sym_cmd_identifier_token4] = ACTIONS(1660), - [aux_sym_cmd_identifier_token5] = ACTIONS(1660), - [aux_sym_cmd_identifier_token6] = ACTIONS(1660), - [aux_sym_cmd_identifier_token7] = ACTIONS(1660), - [aux_sym_cmd_identifier_token8] = ACTIONS(1660), - [aux_sym_cmd_identifier_token9] = ACTIONS(1660), - [aux_sym_cmd_identifier_token10] = ACTIONS(1660), - [aux_sym_cmd_identifier_token11] = ACTIONS(1660), - [aux_sym_cmd_identifier_token12] = ACTIONS(1660), - [aux_sym_cmd_identifier_token13] = ACTIONS(1660), - [aux_sym_cmd_identifier_token14] = ACTIONS(1660), - [aux_sym_cmd_identifier_token15] = ACTIONS(1660), - [aux_sym_cmd_identifier_token16] = ACTIONS(1660), - [aux_sym_cmd_identifier_token17] = ACTIONS(1660), - [aux_sym_cmd_identifier_token18] = ACTIONS(1660), - [aux_sym_cmd_identifier_token19] = ACTIONS(1660), - [aux_sym_cmd_identifier_token20] = ACTIONS(1660), - [aux_sym_cmd_identifier_token21] = ACTIONS(1660), - [aux_sym_cmd_identifier_token22] = ACTIONS(1660), - [aux_sym_cmd_identifier_token23] = ACTIONS(1660), - [aux_sym_cmd_identifier_token24] = ACTIONS(590), - [aux_sym_cmd_identifier_token25] = ACTIONS(1660), - [aux_sym_cmd_identifier_token26] = ACTIONS(590), - [aux_sym_cmd_identifier_token27] = ACTIONS(1660), - [aux_sym_cmd_identifier_token28] = ACTIONS(1660), - [aux_sym_cmd_identifier_token29] = ACTIONS(1660), - [aux_sym_cmd_identifier_token30] = ACTIONS(1660), - [aux_sym_cmd_identifier_token31] = ACTIONS(590), - [aux_sym_cmd_identifier_token32] = ACTIONS(590), - [aux_sym_cmd_identifier_token33] = ACTIONS(590), - [aux_sym_cmd_identifier_token34] = ACTIONS(590), - [aux_sym_cmd_identifier_token35] = ACTIONS(590), - [aux_sym_cmd_identifier_token36] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [anon_sym_null] = ACTIONS(590), - [aux_sym_cmd_identifier_token38] = ACTIONS(1660), - [aux_sym_cmd_identifier_token39] = ACTIONS(590), - [aux_sym_cmd_identifier_token40] = ACTIONS(590), - [sym__newline] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_def] = ACTIONS(1660), - [anon_sym_export_DASHenv] = ACTIONS(1660), - [anon_sym_extern] = ACTIONS(1660), - [anon_sym_module] = ACTIONS(1660), - [anon_sym_use] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_error] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_for] = ACTIONS(1660), - [anon_sym_loop] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1660), - [anon_sym_do] = ACTIONS(1660), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_match] = ACTIONS(1660), - [aux_sym_ctrl_match_token1] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(1660), - [anon_sym_try] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_source] = ACTIONS(1660), - [anon_sym_source_DASHenv] = ACTIONS(1660), - [anon_sym_register] = ACTIONS(1660), - [anon_sym_hide] = ACTIONS(1660), - [anon_sym_hide_DASHenv] = ACTIONS(1660), - [anon_sym_overlay] = ACTIONS(1660), - [anon_sym_where] = ACTIONS(590), - [aux_sym_expr_unary_token1] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DOT_DOT_LT] = ACTIONS(590), - [aux_sym__val_number_decimal_token1] = ACTIONS(1660), - [aux_sym__val_number_decimal_token2] = ACTIONS(590), - [anon_sym_DOT2] = ACTIONS(1660), - [aux_sym__val_number_decimal_token3] = ACTIONS(590), - [aux_sym__val_number_token1] = ACTIONS(590), - [aux_sym__val_number_token2] = ACTIONS(590), - [aux_sym__val_number_token3] = ACTIONS(590), - [anon_sym_0b] = ACTIONS(1660), - [anon_sym_0o] = ACTIONS(1660), - [anon_sym_0x] = ACTIONS(1660), - [sym_val_date] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(590), - [sym__str_single_quotes] = ACTIONS(590), - [sym__str_back_ticks] = ACTIONS(590), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(590), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(285), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [282] = { - [sym_cell_path] = STATE(468), - [sym_path] = STATE(419), + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5322), + [sym_block] = STATE(5325), + [sym__expression_parenthesized] = STATE(5325), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5325), [sym_comment] = STATE(282), - [aux_sym_cell_path_repeat1] = STATE(337), - [anon_sym_export] = ACTIONS(883), - [anon_sym_alias] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_let_DASHenv] = ACTIONS(883), - [anon_sym_mut] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [aux_sym_cmd_identifier_token1] = ACTIONS(883), - [aux_sym_cmd_identifier_token2] = ACTIONS(883), - [aux_sym_cmd_identifier_token3] = ACTIONS(883), - [aux_sym_cmd_identifier_token4] = ACTIONS(883), - [aux_sym_cmd_identifier_token5] = ACTIONS(883), - [aux_sym_cmd_identifier_token6] = ACTIONS(883), - [aux_sym_cmd_identifier_token7] = ACTIONS(883), - [aux_sym_cmd_identifier_token8] = ACTIONS(883), - [aux_sym_cmd_identifier_token9] = ACTIONS(883), - [aux_sym_cmd_identifier_token10] = ACTIONS(883), - [aux_sym_cmd_identifier_token11] = ACTIONS(883), - [aux_sym_cmd_identifier_token12] = ACTIONS(883), - [aux_sym_cmd_identifier_token13] = ACTIONS(883), - [aux_sym_cmd_identifier_token14] = ACTIONS(883), - [aux_sym_cmd_identifier_token15] = ACTIONS(883), - [aux_sym_cmd_identifier_token16] = ACTIONS(883), - [aux_sym_cmd_identifier_token17] = ACTIONS(883), - [aux_sym_cmd_identifier_token18] = ACTIONS(883), - [aux_sym_cmd_identifier_token19] = ACTIONS(883), - [aux_sym_cmd_identifier_token20] = ACTIONS(883), - [aux_sym_cmd_identifier_token21] = ACTIONS(883), - [aux_sym_cmd_identifier_token22] = ACTIONS(883), - [aux_sym_cmd_identifier_token23] = ACTIONS(883), - [aux_sym_cmd_identifier_token24] = ACTIONS(883), - [aux_sym_cmd_identifier_token25] = ACTIONS(883), - [aux_sym_cmd_identifier_token26] = ACTIONS(883), - [aux_sym_cmd_identifier_token27] = ACTIONS(883), - [aux_sym_cmd_identifier_token28] = ACTIONS(883), - [aux_sym_cmd_identifier_token29] = ACTIONS(883), - [aux_sym_cmd_identifier_token30] = ACTIONS(883), - [aux_sym_cmd_identifier_token31] = ACTIONS(883), - [aux_sym_cmd_identifier_token32] = ACTIONS(883), - [aux_sym_cmd_identifier_token33] = ACTIONS(883), - [aux_sym_cmd_identifier_token34] = ACTIONS(883), - [aux_sym_cmd_identifier_token35] = ACTIONS(883), - [aux_sym_cmd_identifier_token36] = ACTIONS(883), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_null] = ACTIONS(885), - [aux_sym_cmd_identifier_token38] = ACTIONS(883), - [aux_sym_cmd_identifier_token39] = ACTIONS(885), - [aux_sym_cmd_identifier_token40] = ACTIONS(885), - [anon_sym_def] = ACTIONS(883), - [anon_sym_export_DASHenv] = ACTIONS(883), - [anon_sym_extern] = ACTIONS(883), - [anon_sym_module] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_error] = ACTIONS(883), - [anon_sym_list] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_make] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [anon_sym_do] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_else] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_try] = ACTIONS(883), - [anon_sym_catch] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_source] = ACTIONS(883), - [anon_sym_source_DASHenv] = ACTIONS(883), - [anon_sym_register] = ACTIONS(883), - [anon_sym_hide] = ACTIONS(883), - [anon_sym_hide_DASHenv] = ACTIONS(883), - [anon_sym_overlay] = ACTIONS(883), - [anon_sym_new] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(885), - [anon_sym_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(885), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(885), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(885), - [aux_sym__val_number_token1] = ACTIONS(885), - [aux_sym__val_number_token2] = ACTIONS(885), - [aux_sym__val_number_token3] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(885), - [sym__str_single_quotes] = ACTIONS(885), - [sym__str_back_ticks] = ACTIONS(885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(885), - [aux_sym_record_entry_token1] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(287), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [283] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5298), + [sym_block] = STATE(5306), + [sym__expression_parenthesized] = STATE(5306), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5306), [sym_comment] = STATE(283), - [aux_sym_shebang_repeat1] = STATE(6987), - [aux_sym__parenthesized_body_repeat1] = STATE(283), - [anon_sym_export] = ACTIONS(1669), - [anon_sym_alias] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_let_DASHenv] = ACTIONS(1669), - [anon_sym_mut] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [aux_sym_cmd_identifier_token1] = ACTIONS(1669), - [aux_sym_cmd_identifier_token2] = ACTIONS(1669), - [aux_sym_cmd_identifier_token3] = ACTIONS(1669), - [aux_sym_cmd_identifier_token4] = ACTIONS(1669), - [aux_sym_cmd_identifier_token5] = ACTIONS(1669), - [aux_sym_cmd_identifier_token6] = ACTIONS(1669), - [aux_sym_cmd_identifier_token7] = ACTIONS(1669), - [aux_sym_cmd_identifier_token8] = ACTIONS(1669), - [aux_sym_cmd_identifier_token9] = ACTIONS(1669), - [aux_sym_cmd_identifier_token10] = ACTIONS(1669), - [aux_sym_cmd_identifier_token11] = ACTIONS(1669), - [aux_sym_cmd_identifier_token12] = ACTIONS(1669), - [aux_sym_cmd_identifier_token13] = ACTIONS(1669), - [aux_sym_cmd_identifier_token14] = ACTIONS(1669), - [aux_sym_cmd_identifier_token15] = ACTIONS(1669), - [aux_sym_cmd_identifier_token16] = ACTIONS(1669), - [aux_sym_cmd_identifier_token17] = ACTIONS(1669), - [aux_sym_cmd_identifier_token18] = ACTIONS(1669), - [aux_sym_cmd_identifier_token19] = ACTIONS(1669), - [aux_sym_cmd_identifier_token20] = ACTIONS(1669), - [aux_sym_cmd_identifier_token21] = ACTIONS(1669), - [aux_sym_cmd_identifier_token22] = ACTIONS(1669), - [aux_sym_cmd_identifier_token23] = ACTIONS(1669), - [aux_sym_cmd_identifier_token24] = ACTIONS(1671), - [aux_sym_cmd_identifier_token25] = ACTIONS(1669), - [aux_sym_cmd_identifier_token26] = ACTIONS(1671), - [aux_sym_cmd_identifier_token27] = ACTIONS(1669), - [aux_sym_cmd_identifier_token28] = ACTIONS(1669), - [aux_sym_cmd_identifier_token29] = ACTIONS(1669), - [aux_sym_cmd_identifier_token30] = ACTIONS(1669), - [aux_sym_cmd_identifier_token31] = ACTIONS(1671), - [aux_sym_cmd_identifier_token32] = ACTIONS(1671), - [aux_sym_cmd_identifier_token33] = ACTIONS(1671), - [aux_sym_cmd_identifier_token34] = ACTIONS(1671), - [aux_sym_cmd_identifier_token35] = ACTIONS(1671), - [aux_sym_cmd_identifier_token36] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [anon_sym_null] = ACTIONS(1671), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1671), - [aux_sym_cmd_identifier_token40] = ACTIONS(1671), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_def] = ACTIONS(1669), - [anon_sym_export_DASHenv] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_module] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_source] = ACTIONS(1669), - [anon_sym_source_DASHenv] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_hide] = ACTIONS(1669), - [anon_sym_hide_DASHenv] = ACTIONS(1669), - [anon_sym_overlay] = ACTIONS(1669), - [anon_sym_where] = ACTIONS(1671), - [aux_sym_expr_unary_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [anon_sym_DOT2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [284] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5298), + [sym_block] = STATE(5306), + [sym__expression_parenthesized] = STATE(5306), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5306), [sym_comment] = STATE(284), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [aux_sym__immediate_decimal_token1] = ACTIONS(1679), - [aux_sym__immediate_decimal_token2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [285] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5313), + [sym_block] = STATE(5326), + [sym__expression_parenthesized] = STATE(5326), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5326), [sym_comment] = STATE(285), - [aux_sym__block_body_repeat1] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(1599), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [aux_sym_cmd_identifier_token1] = ACTIONS(1559), - [aux_sym_cmd_identifier_token2] = ACTIONS(1559), - [aux_sym_cmd_identifier_token3] = ACTIONS(1559), - [aux_sym_cmd_identifier_token4] = ACTIONS(1559), - [aux_sym_cmd_identifier_token5] = ACTIONS(1559), - [aux_sym_cmd_identifier_token6] = ACTIONS(1559), - [aux_sym_cmd_identifier_token7] = ACTIONS(1559), - [aux_sym_cmd_identifier_token8] = ACTIONS(1559), - [aux_sym_cmd_identifier_token9] = ACTIONS(1559), - [aux_sym_cmd_identifier_token10] = ACTIONS(1559), - [aux_sym_cmd_identifier_token11] = ACTIONS(1559), - [aux_sym_cmd_identifier_token12] = ACTIONS(1559), - [aux_sym_cmd_identifier_token13] = ACTIONS(1559), - [aux_sym_cmd_identifier_token14] = ACTIONS(1559), - [aux_sym_cmd_identifier_token15] = ACTIONS(1559), - [aux_sym_cmd_identifier_token16] = ACTIONS(1559), - [aux_sym_cmd_identifier_token17] = ACTIONS(1559), - [aux_sym_cmd_identifier_token18] = ACTIONS(1559), - [aux_sym_cmd_identifier_token19] = ACTIONS(1559), - [aux_sym_cmd_identifier_token20] = ACTIONS(1559), - [aux_sym_cmd_identifier_token21] = ACTIONS(1559), - [aux_sym_cmd_identifier_token22] = ACTIONS(1559), - [aux_sym_cmd_identifier_token23] = ACTIONS(1559), - [aux_sym_cmd_identifier_token24] = ACTIONS(1561), - [aux_sym_cmd_identifier_token25] = ACTIONS(1559), - [aux_sym_cmd_identifier_token26] = ACTIONS(1561), - [aux_sym_cmd_identifier_token27] = ACTIONS(1559), - [aux_sym_cmd_identifier_token28] = ACTIONS(1559), - [aux_sym_cmd_identifier_token29] = ACTIONS(1559), - [aux_sym_cmd_identifier_token30] = ACTIONS(1559), - [aux_sym_cmd_identifier_token31] = ACTIONS(1561), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1561), - [aux_sym_cmd_identifier_token35] = ACTIONS(1561), - [aux_sym_cmd_identifier_token36] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [aux_sym_cmd_identifier_token38] = ACTIONS(1559), - [aux_sym_cmd_identifier_token39] = ACTIONS(1561), - [aux_sym_cmd_identifier_token40] = ACTIONS(1561), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [aux_sym_ctrl_match_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1561), - [aux_sym_expr_unary_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_DOT_DOT_LT] = ACTIONS(1561), - [aux_sym__val_number_decimal_token1] = ACTIONS(1559), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [anon_sym_DOT2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1561), - [aux_sym__val_number_token2] = ACTIONS(1561), - [aux_sym__val_number_token3] = ACTIONS(1561), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym__str_single_quotes] = ACTIONS(1561), - [sym__str_back_ticks] = ACTIONS(1561), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [286] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if_parenthesized] = STATE(5098), - [sym_block] = STATE(5205), - [sym__expression_parenthesized] = STATE(5205), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3988), - [sym_expr_parenthesized] = STATE(2113), - [sym_val_range] = STATE(4035), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(5205), + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5313), + [sym_block] = STATE(5326), + [sym__expression_parenthesized] = STATE(5326), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5326), [sym_comment] = STATE(286), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(459), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), + [aux_sym_shebang_repeat1] = STATE(290), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [287] = { - [sym_cell_path] = STATE(496), - [sym_path] = STATE(482), + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5329), + [sym_block] = STATE(5209), + [sym__expression_parenthesized] = STATE(5209), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5209), [sym_comment] = STATE(287), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1683), - [anon_sym_alias] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1683), - [anon_sym_let_DASHenv] = ACTIONS(1683), - [anon_sym_mut] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [aux_sym_cmd_identifier_token1] = ACTIONS(1683), - [aux_sym_cmd_identifier_token2] = ACTIONS(1683), - [aux_sym_cmd_identifier_token3] = ACTIONS(1683), - [aux_sym_cmd_identifier_token4] = ACTIONS(1683), - [aux_sym_cmd_identifier_token5] = ACTIONS(1683), - [aux_sym_cmd_identifier_token6] = ACTIONS(1683), - [aux_sym_cmd_identifier_token7] = ACTIONS(1683), - [aux_sym_cmd_identifier_token8] = ACTIONS(1683), - [aux_sym_cmd_identifier_token9] = ACTIONS(1683), - [aux_sym_cmd_identifier_token10] = ACTIONS(1683), - [aux_sym_cmd_identifier_token11] = ACTIONS(1683), - [aux_sym_cmd_identifier_token12] = ACTIONS(1683), - [aux_sym_cmd_identifier_token13] = ACTIONS(1683), - [aux_sym_cmd_identifier_token14] = ACTIONS(1683), - [aux_sym_cmd_identifier_token15] = ACTIONS(1683), - [aux_sym_cmd_identifier_token16] = ACTIONS(1683), - [aux_sym_cmd_identifier_token17] = ACTIONS(1683), - [aux_sym_cmd_identifier_token18] = ACTIONS(1683), - [aux_sym_cmd_identifier_token19] = ACTIONS(1683), - [aux_sym_cmd_identifier_token20] = ACTIONS(1683), - [aux_sym_cmd_identifier_token21] = ACTIONS(1683), - [aux_sym_cmd_identifier_token22] = ACTIONS(1683), - [aux_sym_cmd_identifier_token23] = ACTIONS(1683), - [aux_sym_cmd_identifier_token24] = ACTIONS(1683), - [aux_sym_cmd_identifier_token25] = ACTIONS(1683), - [aux_sym_cmd_identifier_token26] = ACTIONS(1683), - [aux_sym_cmd_identifier_token27] = ACTIONS(1683), - [aux_sym_cmd_identifier_token28] = ACTIONS(1683), - [aux_sym_cmd_identifier_token29] = ACTIONS(1683), - [aux_sym_cmd_identifier_token30] = ACTIONS(1683), - [aux_sym_cmd_identifier_token31] = ACTIONS(1683), - [aux_sym_cmd_identifier_token32] = ACTIONS(1683), - [aux_sym_cmd_identifier_token33] = ACTIONS(1683), - [aux_sym_cmd_identifier_token34] = ACTIONS(1683), - [aux_sym_cmd_identifier_token35] = ACTIONS(1683), - [aux_sym_cmd_identifier_token36] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_null] = ACTIONS(1683), - [aux_sym_cmd_identifier_token38] = ACTIONS(1683), - [aux_sym_cmd_identifier_token39] = ACTIONS(1683), - [aux_sym_cmd_identifier_token40] = ACTIONS(1683), - [anon_sym_def] = ACTIONS(1683), - [anon_sym_export_DASHenv] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym_module] = ACTIONS(1683), - [anon_sym_use] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1683), - [anon_sym_error] = ACTIONS(1683), - [anon_sym_list] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_loop] = ACTIONS(1683), - [anon_sym_make] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_else] = ACTIONS(1683), - [anon_sym_match] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1683), - [anon_sym_catch] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_source] = ACTIONS(1683), - [anon_sym_source_DASHenv] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1683), - [anon_sym_hide] = ACTIONS(1683), - [anon_sym_hide_DASHenv] = ACTIONS(1683), - [anon_sym_overlay] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_as] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1683), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1683), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [anon_sym_DOT2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1683), - [sym__entry_separator] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [288] = { - [sym_cell_path] = STATE(475), - [sym_path] = STATE(482), + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5329), + [sym_block] = STATE(5209), + [sym__expression_parenthesized] = STATE(5209), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5209), [sym_comment] = STATE(288), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_alias] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_let_DASHenv] = ACTIONS(1689), - [anon_sym_mut] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [aux_sym_cmd_identifier_token1] = ACTIONS(1689), - [aux_sym_cmd_identifier_token2] = ACTIONS(1689), - [aux_sym_cmd_identifier_token3] = ACTIONS(1689), - [aux_sym_cmd_identifier_token4] = ACTIONS(1689), - [aux_sym_cmd_identifier_token5] = ACTIONS(1689), - [aux_sym_cmd_identifier_token6] = ACTIONS(1689), - [aux_sym_cmd_identifier_token7] = ACTIONS(1689), - [aux_sym_cmd_identifier_token8] = ACTIONS(1689), - [aux_sym_cmd_identifier_token9] = ACTIONS(1689), - [aux_sym_cmd_identifier_token10] = ACTIONS(1689), - [aux_sym_cmd_identifier_token11] = ACTIONS(1689), - [aux_sym_cmd_identifier_token12] = ACTIONS(1689), - [aux_sym_cmd_identifier_token13] = ACTIONS(1689), - [aux_sym_cmd_identifier_token14] = ACTIONS(1689), - [aux_sym_cmd_identifier_token15] = ACTIONS(1689), - [aux_sym_cmd_identifier_token16] = ACTIONS(1689), - [aux_sym_cmd_identifier_token17] = ACTIONS(1689), - [aux_sym_cmd_identifier_token18] = ACTIONS(1689), - [aux_sym_cmd_identifier_token19] = ACTIONS(1689), - [aux_sym_cmd_identifier_token20] = ACTIONS(1689), - [aux_sym_cmd_identifier_token21] = ACTIONS(1689), - [aux_sym_cmd_identifier_token22] = ACTIONS(1689), - [aux_sym_cmd_identifier_token23] = ACTIONS(1689), - [aux_sym_cmd_identifier_token24] = ACTIONS(1689), - [aux_sym_cmd_identifier_token25] = ACTIONS(1689), - [aux_sym_cmd_identifier_token26] = ACTIONS(1689), - [aux_sym_cmd_identifier_token27] = ACTIONS(1689), - [aux_sym_cmd_identifier_token28] = ACTIONS(1689), - [aux_sym_cmd_identifier_token29] = ACTIONS(1689), - [aux_sym_cmd_identifier_token30] = ACTIONS(1689), - [aux_sym_cmd_identifier_token31] = ACTIONS(1689), - [aux_sym_cmd_identifier_token32] = ACTIONS(1689), - [aux_sym_cmd_identifier_token33] = ACTIONS(1689), - [aux_sym_cmd_identifier_token34] = ACTIONS(1689), - [aux_sym_cmd_identifier_token35] = ACTIONS(1689), - [aux_sym_cmd_identifier_token36] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(1689), - [anon_sym_false] = ACTIONS(1689), - [anon_sym_null] = ACTIONS(1689), - [aux_sym_cmd_identifier_token38] = ACTIONS(1689), - [aux_sym_cmd_identifier_token39] = ACTIONS(1689), - [aux_sym_cmd_identifier_token40] = ACTIONS(1689), - [anon_sym_def] = ACTIONS(1689), - [anon_sym_export_DASHenv] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_use] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_DOLLAR] = ACTIONS(1689), - [anon_sym_error] = ACTIONS(1689), - [anon_sym_list] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1689), - [anon_sym_loop] = ACTIONS(1689), - [anon_sym_make] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_match] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_catch] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_source] = ACTIONS(1689), - [anon_sym_source_DASHenv] = ACTIONS(1689), - [anon_sym_register] = ACTIONS(1689), - [anon_sym_hide] = ACTIONS(1689), - [anon_sym_hide_DASHenv] = ACTIONS(1689), - [anon_sym_overlay] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1689), - [anon_sym_as] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1689), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1689), - [aux_sym__val_number_decimal_token1] = ACTIONS(1689), - [aux_sym__val_number_decimal_token2] = ACTIONS(1689), - [anon_sym_DOT2] = ACTIONS(1689), - [aux_sym__val_number_decimal_token3] = ACTIONS(1689), - [aux_sym__val_number_token1] = ACTIONS(1689), - [aux_sym__val_number_token2] = ACTIONS(1689), - [aux_sym__val_number_token3] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [sym__str_single_quotes] = ACTIONS(1689), - [sym__str_back_ticks] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1689), - [sym__entry_separator] = ACTIONS(1691), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(291), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [289] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5337), + [sym_block] = STATE(5343), + [sym__expression_parenthesized] = STATE(5343), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5343), [sym_comment] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_alias] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_let_DASHenv] = ACTIONS(1218), - [anon_sym_mut] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [aux_sym_cmd_identifier_token1] = ACTIONS(1218), - [aux_sym_cmd_identifier_token2] = ACTIONS(1218), - [aux_sym_cmd_identifier_token3] = ACTIONS(1218), - [aux_sym_cmd_identifier_token4] = ACTIONS(1218), - [aux_sym_cmd_identifier_token5] = ACTIONS(1218), - [aux_sym_cmd_identifier_token6] = ACTIONS(1218), - [aux_sym_cmd_identifier_token7] = ACTIONS(1218), - [aux_sym_cmd_identifier_token8] = ACTIONS(1218), - [aux_sym_cmd_identifier_token9] = ACTIONS(1218), - [aux_sym_cmd_identifier_token10] = ACTIONS(1218), - [aux_sym_cmd_identifier_token11] = ACTIONS(1218), - [aux_sym_cmd_identifier_token12] = ACTIONS(1218), - [aux_sym_cmd_identifier_token13] = ACTIONS(1218), - [aux_sym_cmd_identifier_token14] = ACTIONS(1218), - [aux_sym_cmd_identifier_token15] = ACTIONS(1218), - [aux_sym_cmd_identifier_token16] = ACTIONS(1218), - [aux_sym_cmd_identifier_token17] = ACTIONS(1218), - [aux_sym_cmd_identifier_token18] = ACTIONS(1218), - [aux_sym_cmd_identifier_token19] = ACTIONS(1218), - [aux_sym_cmd_identifier_token20] = ACTIONS(1218), - [aux_sym_cmd_identifier_token21] = ACTIONS(1218), - [aux_sym_cmd_identifier_token22] = ACTIONS(1218), - [aux_sym_cmd_identifier_token23] = ACTIONS(1218), - [aux_sym_cmd_identifier_token24] = ACTIONS(1214), - [aux_sym_cmd_identifier_token25] = ACTIONS(1218), - [aux_sym_cmd_identifier_token26] = ACTIONS(1214), - [aux_sym_cmd_identifier_token27] = ACTIONS(1218), - [aux_sym_cmd_identifier_token28] = ACTIONS(1218), - [aux_sym_cmd_identifier_token29] = ACTIONS(1218), - [aux_sym_cmd_identifier_token30] = ACTIONS(1218), - [aux_sym_cmd_identifier_token31] = ACTIONS(1214), - [aux_sym_cmd_identifier_token32] = ACTIONS(1214), - [aux_sym_cmd_identifier_token33] = ACTIONS(1214), - [aux_sym_cmd_identifier_token34] = ACTIONS(1214), - [aux_sym_cmd_identifier_token35] = ACTIONS(1214), - [aux_sym_cmd_identifier_token36] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1214), - [anon_sym_false] = ACTIONS(1214), - [anon_sym_null] = ACTIONS(1214), - [aux_sym_cmd_identifier_token38] = ACTIONS(1218), - [aux_sym_cmd_identifier_token39] = ACTIONS(1214), - [aux_sym_cmd_identifier_token40] = ACTIONS(1214), - [sym__newline] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_def] = ACTIONS(1218), - [anon_sym_export_DASHenv] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1218), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1218), - [anon_sym_error] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_match] = ACTIONS(1218), - [aux_sym_ctrl_match_token1] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_try] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_source] = ACTIONS(1218), - [anon_sym_source_DASHenv] = ACTIONS(1218), - [anon_sym_register] = ACTIONS(1218), - [anon_sym_hide] = ACTIONS(1218), - [anon_sym_hide_DASHenv] = ACTIONS(1218), - [anon_sym_overlay] = ACTIONS(1218), - [anon_sym_where] = ACTIONS(1214), - [aux_sym_expr_unary_token1] = ACTIONS(1214), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1214), - [anon_sym_DOT_DOT_LT] = ACTIONS(1214), - [aux_sym__val_number_decimal_token1] = ACTIONS(1218), - [aux_sym__val_number_decimal_token2] = ACTIONS(1214), - [anon_sym_DOT2] = ACTIONS(1218), - [aux_sym__val_number_decimal_token3] = ACTIONS(1214), - [aux_sym__val_number_token1] = ACTIONS(1214), - [aux_sym__val_number_token2] = ACTIONS(1214), - [aux_sym__val_number_token3] = ACTIONS(1214), - [anon_sym_0b] = ACTIONS(1218), - [anon_sym_0o] = ACTIONS(1218), - [anon_sym_0x] = ACTIONS(1218), - [sym_val_date] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym__str_single_quotes] = ACTIONS(1214), - [sym__str_back_ticks] = ACTIONS(1214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1214), - [anon_sym_CARET] = ACTIONS(1214), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [290] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5347), + [sym_block] = STATE(5383), + [sym__expression_parenthesized] = STATE(5383), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5383), [sym_comment] = STATE(290), - [anon_sym_export] = ACTIONS(900), - [anon_sym_alias] = ACTIONS(900), - [anon_sym_let] = ACTIONS(900), - [anon_sym_let_DASHenv] = ACTIONS(900), - [anon_sym_mut] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [aux_sym_cmd_identifier_token1] = ACTIONS(900), - [aux_sym_cmd_identifier_token2] = ACTIONS(900), - [aux_sym_cmd_identifier_token3] = ACTIONS(900), - [aux_sym_cmd_identifier_token4] = ACTIONS(900), - [aux_sym_cmd_identifier_token5] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(900), - [aux_sym_cmd_identifier_token7] = ACTIONS(900), - [aux_sym_cmd_identifier_token8] = ACTIONS(900), - [aux_sym_cmd_identifier_token9] = ACTIONS(900), - [aux_sym_cmd_identifier_token10] = ACTIONS(900), - [aux_sym_cmd_identifier_token11] = ACTIONS(900), - [aux_sym_cmd_identifier_token12] = ACTIONS(900), - [aux_sym_cmd_identifier_token13] = ACTIONS(900), - [aux_sym_cmd_identifier_token14] = ACTIONS(900), - [aux_sym_cmd_identifier_token15] = ACTIONS(900), - [aux_sym_cmd_identifier_token16] = ACTIONS(900), - [aux_sym_cmd_identifier_token17] = ACTIONS(900), - [aux_sym_cmd_identifier_token18] = ACTIONS(900), - [aux_sym_cmd_identifier_token19] = ACTIONS(900), - [aux_sym_cmd_identifier_token20] = ACTIONS(900), - [aux_sym_cmd_identifier_token21] = ACTIONS(900), - [aux_sym_cmd_identifier_token22] = ACTIONS(900), - [aux_sym_cmd_identifier_token23] = ACTIONS(900), - [aux_sym_cmd_identifier_token24] = ACTIONS(900), - [aux_sym_cmd_identifier_token25] = ACTIONS(900), - [aux_sym_cmd_identifier_token26] = ACTIONS(900), - [aux_sym_cmd_identifier_token27] = ACTIONS(900), - [aux_sym_cmd_identifier_token28] = ACTIONS(900), - [aux_sym_cmd_identifier_token29] = ACTIONS(900), - [aux_sym_cmd_identifier_token30] = ACTIONS(900), - [aux_sym_cmd_identifier_token31] = ACTIONS(900), - [aux_sym_cmd_identifier_token32] = ACTIONS(900), - [aux_sym_cmd_identifier_token33] = ACTIONS(900), - [aux_sym_cmd_identifier_token34] = ACTIONS(900), - [aux_sym_cmd_identifier_token35] = ACTIONS(900), - [aux_sym_cmd_identifier_token36] = ACTIONS(900), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [anon_sym_null] = ACTIONS(902), - [aux_sym_cmd_identifier_token38] = ACTIONS(900), - [aux_sym_cmd_identifier_token39] = ACTIONS(902), - [aux_sym_cmd_identifier_token40] = ACTIONS(902), - [anon_sym_def] = ACTIONS(900), - [anon_sym_export_DASHenv] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(900), - [anon_sym_module] = ACTIONS(900), - [anon_sym_use] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(902), - [anon_sym_error] = ACTIONS(900), - [anon_sym_list] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(900), - [anon_sym_make] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_match] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_try] = ACTIONS(900), - [anon_sym_catch] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_source] = ACTIONS(900), - [anon_sym_source_DASHenv] = ACTIONS(900), - [anon_sym_register] = ACTIONS(900), - [anon_sym_hide] = ACTIONS(900), - [anon_sym_hide_DASHenv] = ACTIONS(900), - [anon_sym_overlay] = ACTIONS(900), - [anon_sym_new] = ACTIONS(900), - [anon_sym_as] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(902), - [anon_sym_DOT_DOT2] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(902), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(902), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(902), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(902), - [aux_sym__val_number_token1] = ACTIONS(902), - [aux_sym__val_number_token2] = ACTIONS(902), - [aux_sym__val_number_token3] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym__str_single_quotes] = ACTIONS(902), - [sym__str_back_ticks] = ACTIONS(902), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [291] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5374), + [sym_block] = STATE(5303), + [sym__expression_parenthesized] = STATE(5303), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5303), [sym_comment] = STATE(291), - [anon_sym_export] = ACTIONS(906), - [anon_sym_alias] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_let_DASHenv] = ACTIONS(906), - [anon_sym_mut] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [aux_sym_cmd_identifier_token1] = ACTIONS(906), - [aux_sym_cmd_identifier_token2] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(906), - [aux_sym_cmd_identifier_token4] = ACTIONS(906), - [aux_sym_cmd_identifier_token5] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [aux_sym_cmd_identifier_token7] = ACTIONS(906), - [aux_sym_cmd_identifier_token8] = ACTIONS(906), - [aux_sym_cmd_identifier_token9] = ACTIONS(906), - [aux_sym_cmd_identifier_token10] = ACTIONS(906), - [aux_sym_cmd_identifier_token11] = ACTIONS(906), - [aux_sym_cmd_identifier_token12] = ACTIONS(906), - [aux_sym_cmd_identifier_token13] = ACTIONS(906), - [aux_sym_cmd_identifier_token14] = ACTIONS(906), - [aux_sym_cmd_identifier_token15] = ACTIONS(906), - [aux_sym_cmd_identifier_token16] = ACTIONS(906), - [aux_sym_cmd_identifier_token17] = ACTIONS(906), - [aux_sym_cmd_identifier_token18] = ACTIONS(906), - [aux_sym_cmd_identifier_token19] = ACTIONS(906), - [aux_sym_cmd_identifier_token20] = ACTIONS(906), - [aux_sym_cmd_identifier_token21] = ACTIONS(906), - [aux_sym_cmd_identifier_token22] = ACTIONS(906), - [aux_sym_cmd_identifier_token23] = ACTIONS(906), - [aux_sym_cmd_identifier_token24] = ACTIONS(906), - [aux_sym_cmd_identifier_token25] = ACTIONS(906), - [aux_sym_cmd_identifier_token26] = ACTIONS(906), - [aux_sym_cmd_identifier_token27] = ACTIONS(906), - [aux_sym_cmd_identifier_token28] = ACTIONS(906), - [aux_sym_cmd_identifier_token29] = ACTIONS(906), - [aux_sym_cmd_identifier_token30] = ACTIONS(906), - [aux_sym_cmd_identifier_token31] = ACTIONS(906), - [aux_sym_cmd_identifier_token32] = ACTIONS(906), - [aux_sym_cmd_identifier_token33] = ACTIONS(906), - [aux_sym_cmd_identifier_token34] = ACTIONS(906), - [aux_sym_cmd_identifier_token35] = ACTIONS(906), - [aux_sym_cmd_identifier_token36] = ACTIONS(906), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [anon_sym_null] = ACTIONS(908), - [aux_sym_cmd_identifier_token38] = ACTIONS(906), - [aux_sym_cmd_identifier_token39] = ACTIONS(908), - [aux_sym_cmd_identifier_token40] = ACTIONS(908), - [anon_sym_def] = ACTIONS(906), - [anon_sym_export_DASHenv] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_use] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(906), - [anon_sym_list] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_in] = ACTIONS(906), - [anon_sym_loop] = ACTIONS(906), - [anon_sym_make] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_try] = ACTIONS(906), - [anon_sym_catch] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_source] = ACTIONS(906), - [anon_sym_source_DASHenv] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_hide] = ACTIONS(906), - [anon_sym_hide_DASHenv] = ACTIONS(906), - [anon_sym_overlay] = ACTIONS(906), - [anon_sym_new] = ACTIONS(906), - [anon_sym_as] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(908), - [anon_sym_DOT_DOT2] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(908), - [anon_sym_DOT_DOT_LT2] = ACTIONS(908), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(908), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(908), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(908), - [aux_sym__val_number_token1] = ACTIONS(908), - [aux_sym__val_number_token2] = ACTIONS(908), - [aux_sym__val_number_token3] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [292] = { - [sym_cell_path] = STATE(575), - [sym_path] = STATE(482), + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5374), + [sym_block] = STATE(5303), + [sym__expression_parenthesized] = STATE(5303), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5303), [sym_comment] = STATE(292), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(883), - [anon_sym_alias] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_let_DASHenv] = ACTIONS(883), - [anon_sym_mut] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [aux_sym_cmd_identifier_token1] = ACTIONS(883), - [aux_sym_cmd_identifier_token2] = ACTIONS(883), - [aux_sym_cmd_identifier_token3] = ACTIONS(883), - [aux_sym_cmd_identifier_token4] = ACTIONS(883), - [aux_sym_cmd_identifier_token5] = ACTIONS(883), - [aux_sym_cmd_identifier_token6] = ACTIONS(883), - [aux_sym_cmd_identifier_token7] = ACTIONS(883), - [aux_sym_cmd_identifier_token8] = ACTIONS(883), - [aux_sym_cmd_identifier_token9] = ACTIONS(883), - [aux_sym_cmd_identifier_token10] = ACTIONS(883), - [aux_sym_cmd_identifier_token11] = ACTIONS(883), - [aux_sym_cmd_identifier_token12] = ACTIONS(883), - [aux_sym_cmd_identifier_token13] = ACTIONS(883), - [aux_sym_cmd_identifier_token14] = ACTIONS(883), - [aux_sym_cmd_identifier_token15] = ACTIONS(883), - [aux_sym_cmd_identifier_token16] = ACTIONS(883), - [aux_sym_cmd_identifier_token17] = ACTIONS(883), - [aux_sym_cmd_identifier_token18] = ACTIONS(883), - [aux_sym_cmd_identifier_token19] = ACTIONS(883), - [aux_sym_cmd_identifier_token20] = ACTIONS(883), - [aux_sym_cmd_identifier_token21] = ACTIONS(883), - [aux_sym_cmd_identifier_token22] = ACTIONS(883), - [aux_sym_cmd_identifier_token23] = ACTIONS(883), - [aux_sym_cmd_identifier_token24] = ACTIONS(883), - [aux_sym_cmd_identifier_token25] = ACTIONS(883), - [aux_sym_cmd_identifier_token26] = ACTIONS(883), - [aux_sym_cmd_identifier_token27] = ACTIONS(883), - [aux_sym_cmd_identifier_token28] = ACTIONS(883), - [aux_sym_cmd_identifier_token29] = ACTIONS(883), - [aux_sym_cmd_identifier_token30] = ACTIONS(883), - [aux_sym_cmd_identifier_token31] = ACTIONS(883), - [aux_sym_cmd_identifier_token32] = ACTIONS(883), - [aux_sym_cmd_identifier_token33] = ACTIONS(883), - [aux_sym_cmd_identifier_token34] = ACTIONS(883), - [aux_sym_cmd_identifier_token35] = ACTIONS(883), - [aux_sym_cmd_identifier_token36] = ACTIONS(883), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [anon_sym_null] = ACTIONS(883), - [aux_sym_cmd_identifier_token38] = ACTIONS(883), - [aux_sym_cmd_identifier_token39] = ACTIONS(883), - [aux_sym_cmd_identifier_token40] = ACTIONS(883), - [anon_sym_def] = ACTIONS(883), - [anon_sym_export_DASHenv] = ACTIONS(883), - [anon_sym_extern] = ACTIONS(883), - [anon_sym_module] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_error] = ACTIONS(883), - [anon_sym_list] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_make] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [anon_sym_do] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_else] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_try] = ACTIONS(883), - [anon_sym_catch] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_source] = ACTIONS(883), - [anon_sym_source_DASHenv] = ACTIONS(883), - [anon_sym_register] = ACTIONS(883), - [anon_sym_hide] = ACTIONS(883), - [anon_sym_hide_DASHenv] = ACTIONS(883), - [anon_sym_overlay] = ACTIONS(883), - [anon_sym_new] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(883), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(883), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(883), - [aux_sym__val_number_token1] = ACTIONS(883), - [aux_sym__val_number_token2] = ACTIONS(883), - [aux_sym__val_number_token3] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(883), - [sym__str_single_quotes] = ACTIONS(883), - [sym__str_back_ticks] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(883), - [sym__entry_separator] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(293), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [293] = { + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if_parenthesized] = STATE(5394), + [sym_block] = STATE(5256), + [sym__expression_parenthesized] = STATE(5256), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(4014), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3317), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_command] = STATE(5256), [sym_comment] = STATE(293), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [aux_sym_cmd_identifier_token1] = ACTIONS(928), - [aux_sym_cmd_identifier_token2] = ACTIONS(928), - [aux_sym_cmd_identifier_token3] = ACTIONS(928), - [aux_sym_cmd_identifier_token4] = ACTIONS(928), - [aux_sym_cmd_identifier_token5] = ACTIONS(928), - [aux_sym_cmd_identifier_token6] = ACTIONS(928), - [aux_sym_cmd_identifier_token7] = ACTIONS(928), - [aux_sym_cmd_identifier_token8] = ACTIONS(928), - [aux_sym_cmd_identifier_token9] = ACTIONS(928), - [aux_sym_cmd_identifier_token10] = ACTIONS(928), - [aux_sym_cmd_identifier_token11] = ACTIONS(928), - [aux_sym_cmd_identifier_token12] = ACTIONS(928), - [aux_sym_cmd_identifier_token13] = ACTIONS(928), - [aux_sym_cmd_identifier_token14] = ACTIONS(928), - [aux_sym_cmd_identifier_token15] = ACTIONS(928), - [aux_sym_cmd_identifier_token16] = ACTIONS(928), - [aux_sym_cmd_identifier_token17] = ACTIONS(928), - [aux_sym_cmd_identifier_token18] = ACTIONS(928), - [aux_sym_cmd_identifier_token19] = ACTIONS(928), - [aux_sym_cmd_identifier_token20] = ACTIONS(928), - [aux_sym_cmd_identifier_token21] = ACTIONS(928), - [aux_sym_cmd_identifier_token22] = ACTIONS(928), - [aux_sym_cmd_identifier_token23] = ACTIONS(928), - [aux_sym_cmd_identifier_token24] = ACTIONS(928), - [aux_sym_cmd_identifier_token25] = ACTIONS(928), - [aux_sym_cmd_identifier_token26] = ACTIONS(928), - [aux_sym_cmd_identifier_token27] = ACTIONS(928), - [aux_sym_cmd_identifier_token28] = ACTIONS(928), - [aux_sym_cmd_identifier_token29] = ACTIONS(928), - [aux_sym_cmd_identifier_token30] = ACTIONS(928), - [aux_sym_cmd_identifier_token31] = ACTIONS(928), - [aux_sym_cmd_identifier_token32] = ACTIONS(928), - [aux_sym_cmd_identifier_token33] = ACTIONS(928), - [aux_sym_cmd_identifier_token34] = ACTIONS(928), - [aux_sym_cmd_identifier_token35] = ACTIONS(928), - [aux_sym_cmd_identifier_token36] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [anon_sym_null] = ACTIONS(928), - [aux_sym_cmd_identifier_token38] = ACTIONS(928), - [aux_sym_cmd_identifier_token39] = ACTIONS(928), - [aux_sym_cmd_identifier_token40] = ACTIONS(928), - [anon_sym_def] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_list] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_make] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_catch] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_as] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(928), - [anon_sym_DOT_DOT2] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(928), - [aux_sym__val_number_decimal_token1] = ACTIONS(928), - [aux_sym__val_number_decimal_token2] = ACTIONS(928), - [anon_sym_DOT2] = ACTIONS(928), - [aux_sym__val_number_decimal_token3] = ACTIONS(928), - [aux_sym__val_number_token1] = ACTIONS(928), - [aux_sym__val_number_token2] = ACTIONS(928), - [aux_sym__val_number_token3] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(928), - [sym__entry_separator] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1665), + [aux_sym_cmd_identifier_token39] = ACTIONS(1667), + [aux_sym_cmd_identifier_token40] = ACTIONS(1667), + [sym__newline] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_if] = ACTIONS(485), + [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1679), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [294] = { [sym_comment] = STATE(294), - [anon_sym_export] = ACTIONS(924), - [anon_sym_alias] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_let_DASHenv] = ACTIONS(924), - [anon_sym_mut] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [aux_sym_cmd_identifier_token1] = ACTIONS(924), - [aux_sym_cmd_identifier_token2] = ACTIONS(924), - [aux_sym_cmd_identifier_token3] = ACTIONS(924), - [aux_sym_cmd_identifier_token4] = ACTIONS(924), - [aux_sym_cmd_identifier_token5] = ACTIONS(924), - [aux_sym_cmd_identifier_token6] = ACTIONS(924), - [aux_sym_cmd_identifier_token7] = ACTIONS(924), - [aux_sym_cmd_identifier_token8] = ACTIONS(924), - [aux_sym_cmd_identifier_token9] = ACTIONS(924), - [aux_sym_cmd_identifier_token10] = ACTIONS(924), - [aux_sym_cmd_identifier_token11] = ACTIONS(924), - [aux_sym_cmd_identifier_token12] = ACTIONS(924), - [aux_sym_cmd_identifier_token13] = ACTIONS(924), - [aux_sym_cmd_identifier_token14] = ACTIONS(924), - [aux_sym_cmd_identifier_token15] = ACTIONS(924), - [aux_sym_cmd_identifier_token16] = ACTIONS(924), - [aux_sym_cmd_identifier_token17] = ACTIONS(924), - [aux_sym_cmd_identifier_token18] = ACTIONS(924), - [aux_sym_cmd_identifier_token19] = ACTIONS(924), - [aux_sym_cmd_identifier_token20] = ACTIONS(924), - [aux_sym_cmd_identifier_token21] = ACTIONS(924), - [aux_sym_cmd_identifier_token22] = ACTIONS(924), - [aux_sym_cmd_identifier_token23] = ACTIONS(924), - [aux_sym_cmd_identifier_token24] = ACTIONS(924), - [aux_sym_cmd_identifier_token25] = ACTIONS(924), - [aux_sym_cmd_identifier_token26] = ACTIONS(924), - [aux_sym_cmd_identifier_token27] = ACTIONS(924), - [aux_sym_cmd_identifier_token28] = ACTIONS(924), - [aux_sym_cmd_identifier_token29] = ACTIONS(924), - [aux_sym_cmd_identifier_token30] = ACTIONS(924), - [aux_sym_cmd_identifier_token31] = ACTIONS(924), - [aux_sym_cmd_identifier_token32] = ACTIONS(924), - [aux_sym_cmd_identifier_token33] = ACTIONS(924), - [aux_sym_cmd_identifier_token34] = ACTIONS(924), - [aux_sym_cmd_identifier_token35] = ACTIONS(924), - [aux_sym_cmd_identifier_token36] = ACTIONS(924), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [anon_sym_null] = ACTIONS(924), - [aux_sym_cmd_identifier_token38] = ACTIONS(924), - [aux_sym_cmd_identifier_token39] = ACTIONS(924), - [aux_sym_cmd_identifier_token40] = ACTIONS(924), - [anon_sym_def] = ACTIONS(924), - [anon_sym_export_DASHenv] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_error] = ACTIONS(924), - [anon_sym_list] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_make] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_try] = ACTIONS(924), - [anon_sym_catch] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_source] = ACTIONS(924), - [anon_sym_source_DASHenv] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_hide] = ACTIONS(924), - [anon_sym_hide_DASHenv] = ACTIONS(924), - [anon_sym_overlay] = ACTIONS(924), - [anon_sym_new] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(924), - [anon_sym_DOT_DOT2] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(926), - [anon_sym_DOT_DOT_LT2] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(924), - [aux_sym__val_number_decimal_token1] = ACTIONS(924), - [aux_sym__val_number_decimal_token2] = ACTIONS(924), - [anon_sym_DOT2] = ACTIONS(924), - [aux_sym__val_number_decimal_token3] = ACTIONS(924), - [aux_sym__val_number_token1] = ACTIONS(924), - [aux_sym__val_number_token2] = ACTIONS(924), - [aux_sym__val_number_token3] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym__str_single_quotes] = ACTIONS(924), - [sym__str_back_ticks] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(924), - [sym__entry_separator] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(121), + [ts_builtin_sym_end] = ACTIONS(1737), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1737), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [aux_sym_ctrl_match_token1] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_where] = ACTIONS(1737), + [aux_sym_expr_unary_token1] = ACTIONS(1737), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [aux_sym_env_var_token1] = ACTIONS(1739), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(247), }, [295] = { + [sym_cell_path] = STATE(550), + [sym_path] = STATE(472), [sym_comment] = STATE(295), - [anon_sym_export] = ACTIONS(932), - [anon_sym_alias] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_let_DASHenv] = ACTIONS(932), - [anon_sym_mut] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [aux_sym_cmd_identifier_token1] = ACTIONS(932), - [aux_sym_cmd_identifier_token2] = ACTIONS(932), - [aux_sym_cmd_identifier_token3] = ACTIONS(932), - [aux_sym_cmd_identifier_token4] = ACTIONS(932), - [aux_sym_cmd_identifier_token5] = ACTIONS(932), - [aux_sym_cmd_identifier_token6] = ACTIONS(932), - [aux_sym_cmd_identifier_token7] = ACTIONS(932), - [aux_sym_cmd_identifier_token8] = ACTIONS(932), - [aux_sym_cmd_identifier_token9] = ACTIONS(932), - [aux_sym_cmd_identifier_token10] = ACTIONS(932), - [aux_sym_cmd_identifier_token11] = ACTIONS(932), - [aux_sym_cmd_identifier_token12] = ACTIONS(932), - [aux_sym_cmd_identifier_token13] = ACTIONS(932), - [aux_sym_cmd_identifier_token14] = ACTIONS(932), - [aux_sym_cmd_identifier_token15] = ACTIONS(932), - [aux_sym_cmd_identifier_token16] = ACTIONS(932), - [aux_sym_cmd_identifier_token17] = ACTIONS(932), - [aux_sym_cmd_identifier_token18] = ACTIONS(932), - [aux_sym_cmd_identifier_token19] = ACTIONS(932), - [aux_sym_cmd_identifier_token20] = ACTIONS(932), - [aux_sym_cmd_identifier_token21] = ACTIONS(932), - [aux_sym_cmd_identifier_token22] = ACTIONS(932), - [aux_sym_cmd_identifier_token23] = ACTIONS(932), - [aux_sym_cmd_identifier_token24] = ACTIONS(932), - [aux_sym_cmd_identifier_token25] = ACTIONS(932), - [aux_sym_cmd_identifier_token26] = ACTIONS(932), - [aux_sym_cmd_identifier_token27] = ACTIONS(932), - [aux_sym_cmd_identifier_token28] = ACTIONS(932), - [aux_sym_cmd_identifier_token29] = ACTIONS(932), - [aux_sym_cmd_identifier_token30] = ACTIONS(932), - [aux_sym_cmd_identifier_token31] = ACTIONS(932), - [aux_sym_cmd_identifier_token32] = ACTIONS(932), - [aux_sym_cmd_identifier_token33] = ACTIONS(932), - [aux_sym_cmd_identifier_token34] = ACTIONS(932), - [aux_sym_cmd_identifier_token35] = ACTIONS(932), - [aux_sym_cmd_identifier_token36] = ACTIONS(932), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [anon_sym_null] = ACTIONS(932), - [aux_sym_cmd_identifier_token38] = ACTIONS(932), - [aux_sym_cmd_identifier_token39] = ACTIONS(932), - [aux_sym_cmd_identifier_token40] = ACTIONS(932), - [anon_sym_def] = ACTIONS(932), - [anon_sym_export_DASHenv] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_error] = ACTIONS(932), - [anon_sym_list] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_make] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_try] = ACTIONS(932), - [anon_sym_catch] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_source] = ACTIONS(932), - [anon_sym_source_DASHenv] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_hide] = ACTIONS(932), - [anon_sym_hide_DASHenv] = ACTIONS(932), - [anon_sym_overlay] = ACTIONS(932), - [anon_sym_new] = ACTIONS(932), - [anon_sym_as] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(932), - [anon_sym_DOT_DOT2] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(934), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(932), - [aux_sym__val_number_decimal_token1] = ACTIONS(932), - [aux_sym__val_number_decimal_token2] = ACTIONS(932), - [anon_sym_DOT2] = ACTIONS(932), - [aux_sym__val_number_decimal_token3] = ACTIONS(932), - [aux_sym__val_number_token1] = ACTIONS(932), - [aux_sym__val_number_token2] = ACTIONS(932), - [aux_sym__val_number_token3] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym__str_single_quotes] = ACTIONS(932), - [sym__str_back_ticks] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(932), - [sym__entry_separator] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1741), + [anon_sym_alias] = ACTIONS(1741), + [anon_sym_let] = ACTIONS(1741), + [anon_sym_let_DASHenv] = ACTIONS(1741), + [anon_sym_mut] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1741), + [aux_sym_cmd_identifier_token1] = ACTIONS(1741), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1741), + [aux_sym_cmd_identifier_token9] = ACTIONS(1741), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1741), + [aux_sym_cmd_identifier_token13] = ACTIONS(1741), + [aux_sym_cmd_identifier_token14] = ACTIONS(1741), + [aux_sym_cmd_identifier_token15] = ACTIONS(1741), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1741), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1741), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1741), + [anon_sym_export_DASHenv] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1741), + [anon_sym_module] = ACTIONS(1741), + [anon_sym_use] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1741), + [anon_sym_list] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1741), + [anon_sym_continue] = ACTIONS(1741), + [anon_sym_for] = ACTIONS(1741), + [anon_sym_in] = ACTIONS(1741), + [anon_sym_loop] = ACTIONS(1741), + [anon_sym_make] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_do] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1741), + [anon_sym_else] = ACTIONS(1741), + [anon_sym_match] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1741), + [anon_sym_catch] = ACTIONS(1741), + [anon_sym_return] = ACTIONS(1741), + [anon_sym_source] = ACTIONS(1741), + [anon_sym_source_DASHenv] = ACTIONS(1741), + [anon_sym_register] = ACTIONS(1741), + [anon_sym_hide] = ACTIONS(1741), + [anon_sym_hide_DASHenv] = ACTIONS(1741), + [anon_sym_overlay] = ACTIONS(1741), + [anon_sym_new] = ACTIONS(1741), + [anon_sym_as] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1741), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [sym__entry_separator] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(3), }, [296] = { + [sym_cell_path] = STATE(544), + [sym_path] = STATE(472), [sym_comment] = STATE(296), - [anon_sym_export] = ACTIONS(916), - [anon_sym_alias] = ACTIONS(916), - [anon_sym_let] = ACTIONS(916), - [anon_sym_let_DASHenv] = ACTIONS(916), - [anon_sym_mut] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [aux_sym_cmd_identifier_token1] = ACTIONS(916), - [aux_sym_cmd_identifier_token2] = ACTIONS(916), - [aux_sym_cmd_identifier_token3] = ACTIONS(916), - [aux_sym_cmd_identifier_token4] = ACTIONS(916), - [aux_sym_cmd_identifier_token5] = ACTIONS(916), - [aux_sym_cmd_identifier_token6] = ACTIONS(916), - [aux_sym_cmd_identifier_token7] = ACTIONS(916), - [aux_sym_cmd_identifier_token8] = ACTIONS(916), - [aux_sym_cmd_identifier_token9] = ACTIONS(916), - [aux_sym_cmd_identifier_token10] = ACTIONS(916), - [aux_sym_cmd_identifier_token11] = ACTIONS(916), - [aux_sym_cmd_identifier_token12] = ACTIONS(916), - [aux_sym_cmd_identifier_token13] = ACTIONS(916), - [aux_sym_cmd_identifier_token14] = ACTIONS(916), - [aux_sym_cmd_identifier_token15] = ACTIONS(916), - [aux_sym_cmd_identifier_token16] = ACTIONS(916), - [aux_sym_cmd_identifier_token17] = ACTIONS(916), - [aux_sym_cmd_identifier_token18] = ACTIONS(916), - [aux_sym_cmd_identifier_token19] = ACTIONS(916), - [aux_sym_cmd_identifier_token20] = ACTIONS(916), - [aux_sym_cmd_identifier_token21] = ACTIONS(916), - [aux_sym_cmd_identifier_token22] = ACTIONS(916), - [aux_sym_cmd_identifier_token23] = ACTIONS(916), - [aux_sym_cmd_identifier_token24] = ACTIONS(916), - [aux_sym_cmd_identifier_token25] = ACTIONS(916), - [aux_sym_cmd_identifier_token26] = ACTIONS(916), - [aux_sym_cmd_identifier_token27] = ACTIONS(916), - [aux_sym_cmd_identifier_token28] = ACTIONS(916), - [aux_sym_cmd_identifier_token29] = ACTIONS(916), - [aux_sym_cmd_identifier_token30] = ACTIONS(916), - [aux_sym_cmd_identifier_token31] = ACTIONS(916), - [aux_sym_cmd_identifier_token32] = ACTIONS(916), - [aux_sym_cmd_identifier_token33] = ACTIONS(916), - [aux_sym_cmd_identifier_token34] = ACTIONS(916), - [aux_sym_cmd_identifier_token35] = ACTIONS(916), - [aux_sym_cmd_identifier_token36] = ACTIONS(916), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(916), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [anon_sym_def] = ACTIONS(916), - [anon_sym_export_DASHenv] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_use] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_error] = ACTIONS(916), - [anon_sym_list] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [anon_sym_loop] = ACTIONS(916), - [anon_sym_make] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_match] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_try] = ACTIONS(916), - [anon_sym_catch] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_source] = ACTIONS(916), - [anon_sym_source_DASHenv] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_hide] = ACTIONS(916), - [anon_sym_hide_DASHenv] = ACTIONS(916), - [anon_sym_overlay] = ACTIONS(916), - [anon_sym_new] = ACTIONS(916), - [anon_sym_as] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(918), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(918), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1747), + [anon_sym_alias] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_let_DASHenv] = ACTIONS(1747), + [anon_sym_mut] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [aux_sym_cmd_identifier_token1] = ACTIONS(1747), + [aux_sym_cmd_identifier_token2] = ACTIONS(1747), + [aux_sym_cmd_identifier_token3] = ACTIONS(1747), + [aux_sym_cmd_identifier_token4] = ACTIONS(1747), + [aux_sym_cmd_identifier_token5] = ACTIONS(1747), + [aux_sym_cmd_identifier_token6] = ACTIONS(1747), + [aux_sym_cmd_identifier_token7] = ACTIONS(1747), + [aux_sym_cmd_identifier_token8] = ACTIONS(1747), + [aux_sym_cmd_identifier_token9] = ACTIONS(1747), + [aux_sym_cmd_identifier_token10] = ACTIONS(1747), + [aux_sym_cmd_identifier_token11] = ACTIONS(1747), + [aux_sym_cmd_identifier_token12] = ACTIONS(1747), + [aux_sym_cmd_identifier_token13] = ACTIONS(1747), + [aux_sym_cmd_identifier_token14] = ACTIONS(1747), + [aux_sym_cmd_identifier_token15] = ACTIONS(1747), + [aux_sym_cmd_identifier_token16] = ACTIONS(1747), + [aux_sym_cmd_identifier_token17] = ACTIONS(1747), + [aux_sym_cmd_identifier_token18] = ACTIONS(1747), + [aux_sym_cmd_identifier_token19] = ACTIONS(1747), + [aux_sym_cmd_identifier_token20] = ACTIONS(1747), + [aux_sym_cmd_identifier_token21] = ACTIONS(1747), + [aux_sym_cmd_identifier_token22] = ACTIONS(1747), + [aux_sym_cmd_identifier_token23] = ACTIONS(1747), + [aux_sym_cmd_identifier_token24] = ACTIONS(1747), + [aux_sym_cmd_identifier_token25] = ACTIONS(1747), + [aux_sym_cmd_identifier_token26] = ACTIONS(1747), + [aux_sym_cmd_identifier_token27] = ACTIONS(1747), + [aux_sym_cmd_identifier_token28] = ACTIONS(1747), + [aux_sym_cmd_identifier_token29] = ACTIONS(1747), + [aux_sym_cmd_identifier_token30] = ACTIONS(1747), + [aux_sym_cmd_identifier_token31] = ACTIONS(1747), + [aux_sym_cmd_identifier_token32] = ACTIONS(1747), + [aux_sym_cmd_identifier_token33] = ACTIONS(1747), + [aux_sym_cmd_identifier_token34] = ACTIONS(1747), + [aux_sym_cmd_identifier_token35] = ACTIONS(1747), + [aux_sym_cmd_identifier_token36] = ACTIONS(1747), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [anon_sym_null] = ACTIONS(1747), + [aux_sym_cmd_identifier_token38] = ACTIONS(1747), + [aux_sym_cmd_identifier_token39] = ACTIONS(1747), + [aux_sym_cmd_identifier_token40] = ACTIONS(1747), + [anon_sym_def] = ACTIONS(1747), + [anon_sym_export_DASHenv] = ACTIONS(1747), + [anon_sym_extern] = ACTIONS(1747), + [anon_sym_module] = ACTIONS(1747), + [anon_sym_use] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_error] = ACTIONS(1747), + [anon_sym_list] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_in] = ACTIONS(1747), + [anon_sym_loop] = ACTIONS(1747), + [anon_sym_make] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_do] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1747), + [anon_sym_match] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_try] = ACTIONS(1747), + [anon_sym_catch] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_source] = ACTIONS(1747), + [anon_sym_source_DASHenv] = ACTIONS(1747), + [anon_sym_register] = ACTIONS(1747), + [anon_sym_hide] = ACTIONS(1747), + [anon_sym_hide_DASHenv] = ACTIONS(1747), + [anon_sym_overlay] = ACTIONS(1747), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_as] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1747), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1747), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1747), + [aux_sym__val_number_token1] = ACTIONS(1747), + [aux_sym__val_number_token2] = ACTIONS(1747), + [aux_sym__val_number_token3] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym__str_single_quotes] = ACTIONS(1747), + [sym__str_back_ticks] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1747), + [sym__entry_separator] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1747), [anon_sym_POUND] = ACTIONS(3), }, [297] = { [sym_comment] = STATE(297), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [aux_sym_cmd_identifier_token1] = ACTIONS(920), - [aux_sym_cmd_identifier_token2] = ACTIONS(920), - [aux_sym_cmd_identifier_token3] = ACTIONS(920), - [aux_sym_cmd_identifier_token4] = ACTIONS(920), - [aux_sym_cmd_identifier_token5] = ACTIONS(920), - [aux_sym_cmd_identifier_token6] = ACTIONS(920), - [aux_sym_cmd_identifier_token7] = ACTIONS(920), - [aux_sym_cmd_identifier_token8] = ACTIONS(920), - [aux_sym_cmd_identifier_token9] = ACTIONS(920), - [aux_sym_cmd_identifier_token10] = ACTIONS(920), - [aux_sym_cmd_identifier_token11] = ACTIONS(920), - [aux_sym_cmd_identifier_token12] = ACTIONS(920), - [aux_sym_cmd_identifier_token13] = ACTIONS(920), - [aux_sym_cmd_identifier_token14] = ACTIONS(920), - [aux_sym_cmd_identifier_token15] = ACTIONS(920), - [aux_sym_cmd_identifier_token16] = ACTIONS(920), - [aux_sym_cmd_identifier_token17] = ACTIONS(920), - [aux_sym_cmd_identifier_token18] = ACTIONS(920), - [aux_sym_cmd_identifier_token19] = ACTIONS(920), - [aux_sym_cmd_identifier_token20] = ACTIONS(920), - [aux_sym_cmd_identifier_token21] = ACTIONS(920), - [aux_sym_cmd_identifier_token22] = ACTIONS(920), - [aux_sym_cmd_identifier_token23] = ACTIONS(920), - [aux_sym_cmd_identifier_token24] = ACTIONS(920), - [aux_sym_cmd_identifier_token25] = ACTIONS(920), - [aux_sym_cmd_identifier_token26] = ACTIONS(920), - [aux_sym_cmd_identifier_token27] = ACTIONS(920), - [aux_sym_cmd_identifier_token28] = ACTIONS(920), - [aux_sym_cmd_identifier_token29] = ACTIONS(920), - [aux_sym_cmd_identifier_token30] = ACTIONS(920), - [aux_sym_cmd_identifier_token31] = ACTIONS(920), - [aux_sym_cmd_identifier_token32] = ACTIONS(920), - [aux_sym_cmd_identifier_token33] = ACTIONS(920), - [aux_sym_cmd_identifier_token34] = ACTIONS(920), - [aux_sym_cmd_identifier_token35] = ACTIONS(920), - [aux_sym_cmd_identifier_token36] = ACTIONS(920), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(920), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [anon_sym_def] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_error] = ACTIONS(920), - [anon_sym_list] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_make] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_try] = ACTIONS(920), - [anon_sym_catch] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_new] = ACTIONS(920), - [anon_sym_as] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(922), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [298] = { [sym_comment] = STATE(298), - [anon_sym_export] = ACTIONS(912), - [anon_sym_alias] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_let_DASHenv] = ACTIONS(912), - [anon_sym_mut] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [aux_sym_cmd_identifier_token1] = ACTIONS(912), - [aux_sym_cmd_identifier_token2] = ACTIONS(912), - [aux_sym_cmd_identifier_token3] = ACTIONS(912), - [aux_sym_cmd_identifier_token4] = ACTIONS(912), - [aux_sym_cmd_identifier_token5] = ACTIONS(912), - [aux_sym_cmd_identifier_token6] = ACTIONS(912), - [aux_sym_cmd_identifier_token7] = ACTIONS(912), - [aux_sym_cmd_identifier_token8] = ACTIONS(912), - [aux_sym_cmd_identifier_token9] = ACTIONS(912), - [aux_sym_cmd_identifier_token10] = ACTIONS(912), - [aux_sym_cmd_identifier_token11] = ACTIONS(912), - [aux_sym_cmd_identifier_token12] = ACTIONS(912), - [aux_sym_cmd_identifier_token13] = ACTIONS(912), - [aux_sym_cmd_identifier_token14] = ACTIONS(912), - [aux_sym_cmd_identifier_token15] = ACTIONS(912), - [aux_sym_cmd_identifier_token16] = ACTIONS(912), - [aux_sym_cmd_identifier_token17] = ACTIONS(912), - [aux_sym_cmd_identifier_token18] = ACTIONS(912), - [aux_sym_cmd_identifier_token19] = ACTIONS(912), - [aux_sym_cmd_identifier_token20] = ACTIONS(912), - [aux_sym_cmd_identifier_token21] = ACTIONS(912), - [aux_sym_cmd_identifier_token22] = ACTIONS(912), - [aux_sym_cmd_identifier_token23] = ACTIONS(912), - [aux_sym_cmd_identifier_token24] = ACTIONS(912), - [aux_sym_cmd_identifier_token25] = ACTIONS(912), - [aux_sym_cmd_identifier_token26] = ACTIONS(912), - [aux_sym_cmd_identifier_token27] = ACTIONS(912), - [aux_sym_cmd_identifier_token28] = ACTIONS(912), - [aux_sym_cmd_identifier_token29] = ACTIONS(912), - [aux_sym_cmd_identifier_token30] = ACTIONS(912), - [aux_sym_cmd_identifier_token31] = ACTIONS(912), - [aux_sym_cmd_identifier_token32] = ACTIONS(912), - [aux_sym_cmd_identifier_token33] = ACTIONS(912), - [aux_sym_cmd_identifier_token34] = ACTIONS(912), - [aux_sym_cmd_identifier_token35] = ACTIONS(912), - [aux_sym_cmd_identifier_token36] = ACTIONS(912), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(912), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [anon_sym_def] = ACTIONS(912), - [anon_sym_export_DASHenv] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym_module] = ACTIONS(912), - [anon_sym_use] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(912), - [anon_sym_list] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [anon_sym_loop] = ACTIONS(912), - [anon_sym_make] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_match] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_try] = ACTIONS(912), - [anon_sym_catch] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_source] = ACTIONS(912), - [anon_sym_source_DASHenv] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_hide] = ACTIONS(912), - [anon_sym_hide_DASHenv] = ACTIONS(912), - [anon_sym_overlay] = ACTIONS(912), - [anon_sym_new] = ACTIONS(912), - [anon_sym_as] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1690), + [anon_sym_alias] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_let_DASHenv] = ACTIONS(1690), + [anon_sym_mut] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [aux_sym_cmd_identifier_token1] = ACTIONS(1690), + [aux_sym_cmd_identifier_token2] = ACTIONS(1690), + [aux_sym_cmd_identifier_token3] = ACTIONS(1690), + [aux_sym_cmd_identifier_token4] = ACTIONS(1690), + [aux_sym_cmd_identifier_token5] = ACTIONS(1690), + [aux_sym_cmd_identifier_token6] = ACTIONS(1690), + [aux_sym_cmd_identifier_token7] = ACTIONS(1690), + [aux_sym_cmd_identifier_token8] = ACTIONS(1690), + [aux_sym_cmd_identifier_token9] = ACTIONS(1690), + [aux_sym_cmd_identifier_token10] = ACTIONS(1690), + [aux_sym_cmd_identifier_token11] = ACTIONS(1690), + [aux_sym_cmd_identifier_token12] = ACTIONS(1690), + [aux_sym_cmd_identifier_token13] = ACTIONS(1690), + [aux_sym_cmd_identifier_token14] = ACTIONS(1690), + [aux_sym_cmd_identifier_token15] = ACTIONS(1690), + [aux_sym_cmd_identifier_token16] = ACTIONS(1690), + [aux_sym_cmd_identifier_token17] = ACTIONS(1690), + [aux_sym_cmd_identifier_token18] = ACTIONS(1690), + [aux_sym_cmd_identifier_token19] = ACTIONS(1690), + [aux_sym_cmd_identifier_token20] = ACTIONS(1690), + [aux_sym_cmd_identifier_token21] = ACTIONS(1690), + [aux_sym_cmd_identifier_token22] = ACTIONS(1690), + [aux_sym_cmd_identifier_token23] = ACTIONS(1690), + [aux_sym_cmd_identifier_token24] = ACTIONS(1690), + [aux_sym_cmd_identifier_token25] = ACTIONS(1690), + [aux_sym_cmd_identifier_token26] = ACTIONS(1690), + [aux_sym_cmd_identifier_token27] = ACTIONS(1690), + [aux_sym_cmd_identifier_token28] = ACTIONS(1690), + [aux_sym_cmd_identifier_token29] = ACTIONS(1690), + [aux_sym_cmd_identifier_token30] = ACTIONS(1690), + [aux_sym_cmd_identifier_token31] = ACTIONS(1690), + [aux_sym_cmd_identifier_token32] = ACTIONS(1690), + [aux_sym_cmd_identifier_token33] = ACTIONS(1690), + [aux_sym_cmd_identifier_token34] = ACTIONS(1690), + [aux_sym_cmd_identifier_token35] = ACTIONS(1690), + [aux_sym_cmd_identifier_token36] = ACTIONS(1690), + [anon_sym_true] = ACTIONS(1698), + [anon_sym_false] = ACTIONS(1698), + [anon_sym_null] = ACTIONS(1698), + [aux_sym_cmd_identifier_token38] = ACTIONS(1690), + [aux_sym_cmd_identifier_token39] = ACTIONS(1698), + [aux_sym_cmd_identifier_token40] = ACTIONS(1698), + [anon_sym_def] = ACTIONS(1690), + [anon_sym_export_DASHenv] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_module] = ACTIONS(1690), + [anon_sym_use] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_error] = ACTIONS(1690), + [anon_sym_list] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_in] = ACTIONS(1690), + [anon_sym_loop] = ACTIONS(1690), + [anon_sym_make] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_do] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_try] = ACTIONS(1690), + [anon_sym_catch] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_source] = ACTIONS(1690), + [anon_sym_source_DASHenv] = ACTIONS(1690), + [anon_sym_register] = ACTIONS(1690), + [anon_sym_hide] = ACTIONS(1690), + [anon_sym_hide_DASHenv] = ACTIONS(1690), + [anon_sym_overlay] = ACTIONS(1690), + [anon_sym_new] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1690), + [anon_sym_LPAREN2] = ACTIONS(1692), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1698), + [anon_sym_DOT_DOT2] = ACTIONS(1751), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1753), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1753), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1698), + [aux_sym__val_number_decimal_token1] = ACTIONS(1690), + [aux_sym__val_number_decimal_token2] = ACTIONS(1698), + [aux_sym__val_number_decimal_token3] = ACTIONS(1698), + [aux_sym__val_number_decimal_token4] = ACTIONS(1698), + [aux_sym__val_number_token1] = ACTIONS(1698), + [aux_sym__val_number_token2] = ACTIONS(1698), + [aux_sym__val_number_token3] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym__str_single_quotes] = ACTIONS(1698), + [sym__str_back_ticks] = ACTIONS(1698), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1690), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), }, [299] = { - [sym_cell_path] = STATE(540), - [sym_path] = STATE(482), [sym_comment] = STATE(299), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1697), - [anon_sym_alias] = ACTIONS(1697), - [anon_sym_let] = ACTIONS(1697), - [anon_sym_let_DASHenv] = ACTIONS(1697), - [anon_sym_mut] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [aux_sym_cmd_identifier_token1] = ACTIONS(1697), - [aux_sym_cmd_identifier_token2] = ACTIONS(1697), - [aux_sym_cmd_identifier_token3] = ACTIONS(1697), - [aux_sym_cmd_identifier_token4] = ACTIONS(1697), - [aux_sym_cmd_identifier_token5] = ACTIONS(1697), - [aux_sym_cmd_identifier_token6] = ACTIONS(1697), - [aux_sym_cmd_identifier_token7] = ACTIONS(1697), - [aux_sym_cmd_identifier_token8] = ACTIONS(1697), - [aux_sym_cmd_identifier_token9] = ACTIONS(1697), - [aux_sym_cmd_identifier_token10] = ACTIONS(1697), - [aux_sym_cmd_identifier_token11] = ACTIONS(1697), - [aux_sym_cmd_identifier_token12] = ACTIONS(1697), - [aux_sym_cmd_identifier_token13] = ACTIONS(1697), - [aux_sym_cmd_identifier_token14] = ACTIONS(1697), - [aux_sym_cmd_identifier_token15] = ACTIONS(1697), - [aux_sym_cmd_identifier_token16] = ACTIONS(1697), - [aux_sym_cmd_identifier_token17] = ACTIONS(1697), - [aux_sym_cmd_identifier_token18] = ACTIONS(1697), - [aux_sym_cmd_identifier_token19] = ACTIONS(1697), - [aux_sym_cmd_identifier_token20] = ACTIONS(1697), - [aux_sym_cmd_identifier_token21] = ACTIONS(1697), - [aux_sym_cmd_identifier_token22] = ACTIONS(1697), - [aux_sym_cmd_identifier_token23] = ACTIONS(1697), - [aux_sym_cmd_identifier_token24] = ACTIONS(1697), - [aux_sym_cmd_identifier_token25] = ACTIONS(1697), - [aux_sym_cmd_identifier_token26] = ACTIONS(1697), - [aux_sym_cmd_identifier_token27] = ACTIONS(1697), - [aux_sym_cmd_identifier_token28] = ACTIONS(1697), - [aux_sym_cmd_identifier_token29] = ACTIONS(1697), - [aux_sym_cmd_identifier_token30] = ACTIONS(1697), - [aux_sym_cmd_identifier_token31] = ACTIONS(1697), - [aux_sym_cmd_identifier_token32] = ACTIONS(1697), - [aux_sym_cmd_identifier_token33] = ACTIONS(1697), - [aux_sym_cmd_identifier_token34] = ACTIONS(1697), - [aux_sym_cmd_identifier_token35] = ACTIONS(1697), - [aux_sym_cmd_identifier_token36] = ACTIONS(1697), - [anon_sym_true] = ACTIONS(1697), - [anon_sym_false] = ACTIONS(1697), - [anon_sym_null] = ACTIONS(1697), - [aux_sym_cmd_identifier_token38] = ACTIONS(1697), - [aux_sym_cmd_identifier_token39] = ACTIONS(1697), - [aux_sym_cmd_identifier_token40] = ACTIONS(1697), - [anon_sym_def] = ACTIONS(1697), - [anon_sym_export_DASHenv] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_module] = ACTIONS(1697), - [anon_sym_use] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_DOLLAR] = ACTIONS(1697), - [anon_sym_error] = ACTIONS(1697), - [anon_sym_list] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_in] = ACTIONS(1697), - [anon_sym_loop] = ACTIONS(1697), - [anon_sym_make] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_do] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_else] = ACTIONS(1697), - [anon_sym_match] = ACTIONS(1697), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_try] = ACTIONS(1697), - [anon_sym_catch] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_source] = ACTIONS(1697), - [anon_sym_source_DASHenv] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_hide] = ACTIONS(1697), - [anon_sym_hide_DASHenv] = ACTIONS(1697), - [anon_sym_overlay] = ACTIONS(1697), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_as] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1697), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1697), - [aux_sym__val_number_decimal_token1] = ACTIONS(1697), - [aux_sym__val_number_decimal_token2] = ACTIONS(1697), - [anon_sym_DOT2] = ACTIONS(1697), - [aux_sym__val_number_decimal_token3] = ACTIONS(1697), - [aux_sym__val_number_token1] = ACTIONS(1697), - [aux_sym__val_number_token2] = ACTIONS(1697), - [aux_sym__val_number_token3] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [sym__str_single_quotes] = ACTIONS(1697), - [sym__str_back_ticks] = ACTIONS(1697), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1697), - [sym__entry_separator] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_list] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_new] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [300] = { [sym_comment] = STATE(300), - [anon_sym_export] = ACTIONS(1701), - [anon_sym_alias] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_let_DASHenv] = ACTIONS(1701), - [anon_sym_mut] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [aux_sym_cmd_identifier_token1] = ACTIONS(1701), - [aux_sym_cmd_identifier_token2] = ACTIONS(1701), - [aux_sym_cmd_identifier_token3] = ACTIONS(1701), - [aux_sym_cmd_identifier_token4] = ACTIONS(1701), - [aux_sym_cmd_identifier_token5] = ACTIONS(1701), - [aux_sym_cmd_identifier_token6] = ACTIONS(1701), - [aux_sym_cmd_identifier_token7] = ACTIONS(1701), - [aux_sym_cmd_identifier_token8] = ACTIONS(1701), - [aux_sym_cmd_identifier_token9] = ACTIONS(1701), - [aux_sym_cmd_identifier_token10] = ACTIONS(1701), - [aux_sym_cmd_identifier_token11] = ACTIONS(1701), - [aux_sym_cmd_identifier_token12] = ACTIONS(1701), - [aux_sym_cmd_identifier_token13] = ACTIONS(1701), - [aux_sym_cmd_identifier_token14] = ACTIONS(1701), - [aux_sym_cmd_identifier_token15] = ACTIONS(1701), - [aux_sym_cmd_identifier_token16] = ACTIONS(1701), - [aux_sym_cmd_identifier_token17] = ACTIONS(1701), - [aux_sym_cmd_identifier_token18] = ACTIONS(1701), - [aux_sym_cmd_identifier_token19] = ACTIONS(1701), - [aux_sym_cmd_identifier_token20] = ACTIONS(1701), - [aux_sym_cmd_identifier_token21] = ACTIONS(1701), - [aux_sym_cmd_identifier_token22] = ACTIONS(1701), - [aux_sym_cmd_identifier_token23] = ACTIONS(1701), - [aux_sym_cmd_identifier_token24] = ACTIONS(1701), - [aux_sym_cmd_identifier_token25] = ACTIONS(1701), - [aux_sym_cmd_identifier_token26] = ACTIONS(1701), - [aux_sym_cmd_identifier_token27] = ACTIONS(1701), - [aux_sym_cmd_identifier_token28] = ACTIONS(1701), - [aux_sym_cmd_identifier_token29] = ACTIONS(1701), - [aux_sym_cmd_identifier_token30] = ACTIONS(1701), - [aux_sym_cmd_identifier_token31] = ACTIONS(1701), - [aux_sym_cmd_identifier_token32] = ACTIONS(1701), - [aux_sym_cmd_identifier_token33] = ACTIONS(1701), - [aux_sym_cmd_identifier_token34] = ACTIONS(1701), - [aux_sym_cmd_identifier_token35] = ACTIONS(1701), - [aux_sym_cmd_identifier_token36] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [anon_sym_null] = ACTIONS(1701), - [aux_sym_cmd_identifier_token38] = ACTIONS(1701), - [aux_sym_cmd_identifier_token39] = ACTIONS(1701), - [aux_sym_cmd_identifier_token40] = ACTIONS(1701), - [anon_sym_def] = ACTIONS(1701), - [anon_sym_export_DASHenv] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym_module] = ACTIONS(1701), - [anon_sym_use] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_DOLLAR] = ACTIONS(1701), - [anon_sym_error] = ACTIONS(1701), - [anon_sym_list] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_loop] = ACTIONS(1701), - [anon_sym_make] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_catch] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_source] = ACTIONS(1701), - [anon_sym_source_DASHenv] = ACTIONS(1701), - [anon_sym_register] = ACTIONS(1701), - [anon_sym_hide] = ACTIONS(1701), - [anon_sym_hide_DASHenv] = ACTIONS(1701), - [anon_sym_overlay] = ACTIONS(1701), - [anon_sym_new] = ACTIONS(1701), - [anon_sym_as] = ACTIONS(1701), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1576), - [aux_sym__immediate_decimal_token1] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), - [aux_sym__val_number_decimal_token1] = ACTIONS(1701), - [aux_sym__val_number_decimal_token2] = ACTIONS(1701), - [anon_sym_DOT2] = ACTIONS(1701), - [aux_sym__val_number_decimal_token3] = ACTIONS(1701), - [aux_sym__val_number_token1] = ACTIONS(1701), - [aux_sym__val_number_token2] = ACTIONS(1701), - [aux_sym__val_number_token3] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym__str_single_quotes] = ACTIONS(1701), - [sym__str_back_ticks] = ACTIONS(1701), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), - [sym__entry_separator] = ACTIONS(1705), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(962), + [anon_sym_list] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_new] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), }, [301] = { [sym_comment] = STATE(301), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1470), - [aux_sym__immediate_decimal_token1] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(301), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_alias] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_let_DASHenv] = ACTIONS(1755), + [anon_sym_mut] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1755), + [aux_sym_cmd_identifier_token3] = ACTIONS(1755), + [aux_sym_cmd_identifier_token4] = ACTIONS(1755), + [aux_sym_cmd_identifier_token5] = ACTIONS(1755), + [aux_sym_cmd_identifier_token6] = ACTIONS(1755), + [aux_sym_cmd_identifier_token7] = ACTIONS(1755), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1755), + [aux_sym_cmd_identifier_token11] = ACTIONS(1755), + [aux_sym_cmd_identifier_token12] = ACTIONS(1755), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1755), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1755), + [aux_sym_cmd_identifier_token17] = ACTIONS(1755), + [aux_sym_cmd_identifier_token18] = ACTIONS(1755), + [aux_sym_cmd_identifier_token19] = ACTIONS(1755), + [aux_sym_cmd_identifier_token20] = ACTIONS(1755), + [aux_sym_cmd_identifier_token21] = ACTIONS(1755), + [aux_sym_cmd_identifier_token22] = ACTIONS(1755), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1755), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1755), + [aux_sym_cmd_identifier_token28] = ACTIONS(1755), + [aux_sym_cmd_identifier_token29] = ACTIONS(1755), + [aux_sym_cmd_identifier_token30] = ACTIONS(1755), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1757), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [sym__newline] = ACTIONS(1759), + [anon_sym_def] = ACTIONS(1755), + [anon_sym_export_DASHenv] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_error] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [aux_sym_ctrl_match_token1] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_source] = ACTIONS(1755), + [anon_sym_source_DASHenv] = ACTIONS(1755), + [anon_sym_register] = ACTIONS(1755), + [anon_sym_hide] = ACTIONS(1755), + [anon_sym_hide_DASHenv] = ACTIONS(1755), + [anon_sym_overlay] = ACTIONS(1755), + [anon_sym_where] = ACTIONS(1757), + [aux_sym_expr_unary_token1] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [aux_sym_env_var_token1] = ACTIONS(1755), + [anon_sym_CARET] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(247), }, [302] = { + [sym_cell_path] = STATE(523), + [sym_path] = STATE(472), [sym_comment] = STATE(302), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(1711), - [aux_sym__immediate_decimal_token2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1762), + [anon_sym_alias] = ACTIONS(1762), + [anon_sym_let] = ACTIONS(1762), + [anon_sym_let_DASHenv] = ACTIONS(1762), + [anon_sym_mut] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [aux_sym_cmd_identifier_token1] = ACTIONS(1762), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1762), + [aux_sym_cmd_identifier_token9] = ACTIONS(1762), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1762), + [aux_sym_cmd_identifier_token13] = ACTIONS(1762), + [aux_sym_cmd_identifier_token14] = ACTIONS(1762), + [aux_sym_cmd_identifier_token15] = ACTIONS(1762), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1762), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1762), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1762), + [anon_sym_export_DASHenv] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_module] = ACTIONS(1762), + [anon_sym_use] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_error] = ACTIONS(1762), + [anon_sym_list] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_loop] = ACTIONS(1762), + [anon_sym_make] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_do] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_match] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_catch] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_source] = ACTIONS(1762), + [anon_sym_source_DASHenv] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_hide] = ACTIONS(1762), + [anon_sym_hide_DASHenv] = ACTIONS(1762), + [anon_sym_overlay] = ACTIONS(1762), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1762), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [sym__entry_separator] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [303] = { - [sym_cell_path] = STATE(565), - [sym_path] = STATE(482), [sym_comment] = STATE(303), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [anon_sym_DOT2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1569), + [aux_sym_cmd_identifier_token40] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), + [aux_sym__immediate_decimal_token1] = ACTIONS(1766), + [aux_sym__immediate_decimal_token2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1569), + [aux_sym__val_number_token2] = ACTIONS(1569), + [aux_sym__val_number_token3] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), }, [304] = { + [sym_cell_path] = STATE(507), + [sym_path] = STATE(472), [sym_comment] = STATE(304), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1518), - [aux_sym__immediate_decimal_token2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1770), + [anon_sym_alias] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1770), + [anon_sym_let_DASHenv] = ACTIONS(1770), + [anon_sym_mut] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [aux_sym_cmd_identifier_token1] = ACTIONS(1770), + [aux_sym_cmd_identifier_token2] = ACTIONS(1770), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [aux_sym_cmd_identifier_token6] = ACTIONS(1770), + [aux_sym_cmd_identifier_token7] = ACTIONS(1770), + [aux_sym_cmd_identifier_token8] = ACTIONS(1770), + [aux_sym_cmd_identifier_token9] = ACTIONS(1770), + [aux_sym_cmd_identifier_token10] = ACTIONS(1770), + [aux_sym_cmd_identifier_token11] = ACTIONS(1770), + [aux_sym_cmd_identifier_token12] = ACTIONS(1770), + [aux_sym_cmd_identifier_token13] = ACTIONS(1770), + [aux_sym_cmd_identifier_token14] = ACTIONS(1770), + [aux_sym_cmd_identifier_token15] = ACTIONS(1770), + [aux_sym_cmd_identifier_token16] = ACTIONS(1770), + [aux_sym_cmd_identifier_token17] = ACTIONS(1770), + [aux_sym_cmd_identifier_token18] = ACTIONS(1770), + [aux_sym_cmd_identifier_token19] = ACTIONS(1770), + [aux_sym_cmd_identifier_token20] = ACTIONS(1770), + [aux_sym_cmd_identifier_token21] = ACTIONS(1770), + [aux_sym_cmd_identifier_token22] = ACTIONS(1770), + [aux_sym_cmd_identifier_token23] = ACTIONS(1770), + [aux_sym_cmd_identifier_token24] = ACTIONS(1770), + [aux_sym_cmd_identifier_token25] = ACTIONS(1770), + [aux_sym_cmd_identifier_token26] = ACTIONS(1770), + [aux_sym_cmd_identifier_token27] = ACTIONS(1770), + [aux_sym_cmd_identifier_token28] = ACTIONS(1770), + [aux_sym_cmd_identifier_token29] = ACTIONS(1770), + [aux_sym_cmd_identifier_token30] = ACTIONS(1770), + [aux_sym_cmd_identifier_token31] = ACTIONS(1770), + [aux_sym_cmd_identifier_token32] = ACTIONS(1770), + [aux_sym_cmd_identifier_token33] = ACTIONS(1770), + [aux_sym_cmd_identifier_token34] = ACTIONS(1770), + [aux_sym_cmd_identifier_token35] = ACTIONS(1770), + [aux_sym_cmd_identifier_token36] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [aux_sym_cmd_identifier_token38] = ACTIONS(1770), + [aux_sym_cmd_identifier_token39] = ACTIONS(1770), + [aux_sym_cmd_identifier_token40] = ACTIONS(1770), + [anon_sym_def] = ACTIONS(1770), + [anon_sym_export_DASHenv] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_module] = ACTIONS(1770), + [anon_sym_use] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_error] = ACTIONS(1770), + [anon_sym_list] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_loop] = ACTIONS(1770), + [anon_sym_make] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_match] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_try] = ACTIONS(1770), + [anon_sym_catch] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_source] = ACTIONS(1770), + [anon_sym_source_DASHenv] = ACTIONS(1770), + [anon_sym_register] = ACTIONS(1770), + [anon_sym_hide] = ACTIONS(1770), + [anon_sym_hide_DASHenv] = ACTIONS(1770), + [anon_sym_overlay] = ACTIONS(1770), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1770), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1770), + [sym__entry_separator] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(3), }, [305] = { + [sym_cell_path] = STATE(476), + [sym_path] = STATE(472), [sym_comment] = STATE(305), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [aux_sym__immediate_decimal_token2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1774), + [anon_sym_alias] = ACTIONS(1774), + [anon_sym_let] = ACTIONS(1774), + [anon_sym_let_DASHenv] = ACTIONS(1774), + [anon_sym_mut] = ACTIONS(1774), + [anon_sym_const] = ACTIONS(1774), + [aux_sym_cmd_identifier_token1] = ACTIONS(1774), + [aux_sym_cmd_identifier_token2] = ACTIONS(1774), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [aux_sym_cmd_identifier_token6] = ACTIONS(1774), + [aux_sym_cmd_identifier_token7] = ACTIONS(1774), + [aux_sym_cmd_identifier_token8] = ACTIONS(1774), + [aux_sym_cmd_identifier_token9] = ACTIONS(1774), + [aux_sym_cmd_identifier_token10] = ACTIONS(1774), + [aux_sym_cmd_identifier_token11] = ACTIONS(1774), + [aux_sym_cmd_identifier_token12] = ACTIONS(1774), + [aux_sym_cmd_identifier_token13] = ACTIONS(1774), + [aux_sym_cmd_identifier_token14] = ACTIONS(1774), + [aux_sym_cmd_identifier_token15] = ACTIONS(1774), + [aux_sym_cmd_identifier_token16] = ACTIONS(1774), + [aux_sym_cmd_identifier_token17] = ACTIONS(1774), + [aux_sym_cmd_identifier_token18] = ACTIONS(1774), + [aux_sym_cmd_identifier_token19] = ACTIONS(1774), + [aux_sym_cmd_identifier_token20] = ACTIONS(1774), + [aux_sym_cmd_identifier_token21] = ACTIONS(1774), + [aux_sym_cmd_identifier_token22] = ACTIONS(1774), + [aux_sym_cmd_identifier_token23] = ACTIONS(1774), + [aux_sym_cmd_identifier_token24] = ACTIONS(1774), + [aux_sym_cmd_identifier_token25] = ACTIONS(1774), + [aux_sym_cmd_identifier_token26] = ACTIONS(1774), + [aux_sym_cmd_identifier_token27] = ACTIONS(1774), + [aux_sym_cmd_identifier_token28] = ACTIONS(1774), + [aux_sym_cmd_identifier_token29] = ACTIONS(1774), + [aux_sym_cmd_identifier_token30] = ACTIONS(1774), + [aux_sym_cmd_identifier_token31] = ACTIONS(1774), + [aux_sym_cmd_identifier_token32] = ACTIONS(1774), + [aux_sym_cmd_identifier_token33] = ACTIONS(1774), + [aux_sym_cmd_identifier_token34] = ACTIONS(1774), + [aux_sym_cmd_identifier_token35] = ACTIONS(1774), + [aux_sym_cmd_identifier_token36] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [aux_sym_cmd_identifier_token38] = ACTIONS(1774), + [aux_sym_cmd_identifier_token39] = ACTIONS(1774), + [aux_sym_cmd_identifier_token40] = ACTIONS(1774), + [anon_sym_def] = ACTIONS(1774), + [anon_sym_export_DASHenv] = ACTIONS(1774), + [anon_sym_extern] = ACTIONS(1774), + [anon_sym_module] = ACTIONS(1774), + [anon_sym_use] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_error] = ACTIONS(1774), + [anon_sym_list] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_for] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_loop] = ACTIONS(1774), + [anon_sym_make] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_do] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_match] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_catch] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_source] = ACTIONS(1774), + [anon_sym_source_DASHenv] = ACTIONS(1774), + [anon_sym_register] = ACTIONS(1774), + [anon_sym_hide] = ACTIONS(1774), + [anon_sym_hide_DASHenv] = ACTIONS(1774), + [anon_sym_overlay] = ACTIONS(1774), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1774), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), + [sym__entry_separator] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(3), }, [306] = { + [sym_cell_path] = STATE(488), + [sym_path] = STATE(472), [sym_comment] = STATE(306), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1535), - [aux_sym_cmd_identifier_token40] = ACTIONS(1535), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [aux_sym__immediate_decimal_token2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1535), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1535), - [aux_sym__val_number_token1] = ACTIONS(1535), - [aux_sym__val_number_token2] = ACTIONS(1535), - [aux_sym__val_number_token3] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym__str_single_quotes] = ACTIONS(1535), - [sym__str_back_ticks] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1535), - [sym__entry_separator] = ACTIONS(1537), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_alias] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_let_DASHenv] = ACTIONS(1778), + [anon_sym_mut] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [aux_sym_cmd_identifier_token1] = ACTIONS(1778), + [aux_sym_cmd_identifier_token2] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1778), + [aux_sym_cmd_identifier_token4] = ACTIONS(1778), + [aux_sym_cmd_identifier_token5] = ACTIONS(1778), + [aux_sym_cmd_identifier_token6] = ACTIONS(1778), + [aux_sym_cmd_identifier_token7] = ACTIONS(1778), + [aux_sym_cmd_identifier_token8] = ACTIONS(1778), + [aux_sym_cmd_identifier_token9] = ACTIONS(1778), + [aux_sym_cmd_identifier_token10] = ACTIONS(1778), + [aux_sym_cmd_identifier_token11] = ACTIONS(1778), + [aux_sym_cmd_identifier_token12] = ACTIONS(1778), + [aux_sym_cmd_identifier_token13] = ACTIONS(1778), + [aux_sym_cmd_identifier_token14] = ACTIONS(1778), + [aux_sym_cmd_identifier_token15] = ACTIONS(1778), + [aux_sym_cmd_identifier_token16] = ACTIONS(1778), + [aux_sym_cmd_identifier_token17] = ACTIONS(1778), + [aux_sym_cmd_identifier_token18] = ACTIONS(1778), + [aux_sym_cmd_identifier_token19] = ACTIONS(1778), + [aux_sym_cmd_identifier_token20] = ACTIONS(1778), + [aux_sym_cmd_identifier_token21] = ACTIONS(1778), + [aux_sym_cmd_identifier_token22] = ACTIONS(1778), + [aux_sym_cmd_identifier_token23] = ACTIONS(1778), + [aux_sym_cmd_identifier_token24] = ACTIONS(1778), + [aux_sym_cmd_identifier_token25] = ACTIONS(1778), + [aux_sym_cmd_identifier_token26] = ACTIONS(1778), + [aux_sym_cmd_identifier_token27] = ACTIONS(1778), + [aux_sym_cmd_identifier_token28] = ACTIONS(1778), + [aux_sym_cmd_identifier_token29] = ACTIONS(1778), + [aux_sym_cmd_identifier_token30] = ACTIONS(1778), + [aux_sym_cmd_identifier_token31] = ACTIONS(1778), + [aux_sym_cmd_identifier_token32] = ACTIONS(1778), + [aux_sym_cmd_identifier_token33] = ACTIONS(1778), + [aux_sym_cmd_identifier_token34] = ACTIONS(1778), + [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token36] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token38] = ACTIONS(1778), + [aux_sym_cmd_identifier_token39] = ACTIONS(1778), + [aux_sym_cmd_identifier_token40] = ACTIONS(1778), + [anon_sym_def] = ACTIONS(1778), + [anon_sym_export_DASHenv] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_error] = ACTIONS(1778), + [anon_sym_list] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_make] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_do] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_else] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1778), + [anon_sym_catch] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_source] = ACTIONS(1778), + [anon_sym_source_DASHenv] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1778), + [anon_sym_hide] = ACTIONS(1778), + [anon_sym_hide_DASHenv] = ACTIONS(1778), + [anon_sym_overlay] = ACTIONS(1778), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_as] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1778), + [aux_sym__val_number_decimal_token3] = ACTIONS(1778), + [aux_sym__val_number_decimal_token4] = ACTIONS(1778), + [aux_sym__val_number_token1] = ACTIONS(1778), + [aux_sym__val_number_token2] = ACTIONS(1778), + [aux_sym__val_number_token3] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [sym__str_single_quotes] = ACTIONS(1778), + [sym__str_back_ticks] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), + [sym__entry_separator] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(3), }, [307] = { [sym_comment] = STATE(307), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1651), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(121), - }, - [308] = { - [sym_comment] = STATE(308), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(1616), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(121), - }, - [309] = { - [sym_cell_path] = STATE(505), - [sym_path] = STATE(482), - [sym_comment] = STATE(309), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1723), - [anon_sym_alias] = ACTIONS(1723), - [anon_sym_let] = ACTIONS(1723), - [anon_sym_let_DASHenv] = ACTIONS(1723), - [anon_sym_mut] = ACTIONS(1723), - [anon_sym_const] = ACTIONS(1723), - [aux_sym_cmd_identifier_token1] = ACTIONS(1723), - [aux_sym_cmd_identifier_token2] = ACTIONS(1723), - [aux_sym_cmd_identifier_token3] = ACTIONS(1723), - [aux_sym_cmd_identifier_token4] = ACTIONS(1723), - [aux_sym_cmd_identifier_token5] = ACTIONS(1723), - [aux_sym_cmd_identifier_token6] = ACTIONS(1723), - [aux_sym_cmd_identifier_token7] = ACTIONS(1723), - [aux_sym_cmd_identifier_token8] = ACTIONS(1723), - [aux_sym_cmd_identifier_token9] = ACTIONS(1723), - [aux_sym_cmd_identifier_token10] = ACTIONS(1723), - [aux_sym_cmd_identifier_token11] = ACTIONS(1723), - [aux_sym_cmd_identifier_token12] = ACTIONS(1723), - [aux_sym_cmd_identifier_token13] = ACTIONS(1723), - [aux_sym_cmd_identifier_token14] = ACTIONS(1723), - [aux_sym_cmd_identifier_token15] = ACTIONS(1723), - [aux_sym_cmd_identifier_token16] = ACTIONS(1723), - [aux_sym_cmd_identifier_token17] = ACTIONS(1723), - [aux_sym_cmd_identifier_token18] = ACTIONS(1723), - [aux_sym_cmd_identifier_token19] = ACTIONS(1723), - [aux_sym_cmd_identifier_token20] = ACTIONS(1723), - [aux_sym_cmd_identifier_token21] = ACTIONS(1723), - [aux_sym_cmd_identifier_token22] = ACTIONS(1723), - [aux_sym_cmd_identifier_token23] = ACTIONS(1723), - [aux_sym_cmd_identifier_token24] = ACTIONS(1723), - [aux_sym_cmd_identifier_token25] = ACTIONS(1723), - [aux_sym_cmd_identifier_token26] = ACTIONS(1723), - [aux_sym_cmd_identifier_token27] = ACTIONS(1723), - [aux_sym_cmd_identifier_token28] = ACTIONS(1723), - [aux_sym_cmd_identifier_token29] = ACTIONS(1723), - [aux_sym_cmd_identifier_token30] = ACTIONS(1723), - [aux_sym_cmd_identifier_token31] = ACTIONS(1723), - [aux_sym_cmd_identifier_token32] = ACTIONS(1723), - [aux_sym_cmd_identifier_token33] = ACTIONS(1723), - [aux_sym_cmd_identifier_token34] = ACTIONS(1723), - [aux_sym_cmd_identifier_token35] = ACTIONS(1723), - [aux_sym_cmd_identifier_token36] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1723), - [anon_sym_export_DASHenv] = ACTIONS(1723), - [anon_sym_extern] = ACTIONS(1723), - [anon_sym_module] = ACTIONS(1723), - [anon_sym_use] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1723), - [anon_sym_list] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_in] = ACTIONS(1723), - [anon_sym_loop] = ACTIONS(1723), - [anon_sym_make] = ACTIONS(1723), - [anon_sym_while] = ACTIONS(1723), - [anon_sym_do] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_else] = ACTIONS(1723), - [anon_sym_match] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1723), - [anon_sym_catch] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1723), - [anon_sym_source] = ACTIONS(1723), - [anon_sym_source_DASHenv] = ACTIONS(1723), - [anon_sym_register] = ACTIONS(1723), - [anon_sym_hide] = ACTIONS(1723), - [anon_sym_hide_DASHenv] = ACTIONS(1723), - [anon_sym_overlay] = ACTIONS(1723), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_as] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1723), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [sym__entry_separator] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(121), - }, - [310] = { - [sym_comment] = STATE(310), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1535), - [aux_sym_cmd_identifier_token40] = ACTIONS(1535), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1535), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1535), - [aux_sym__val_number_token1] = ACTIONS(1535), - [aux_sym__val_number_token2] = ACTIONS(1535), - [aux_sym__val_number_token3] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym__str_single_quotes] = ACTIONS(1535), - [sym__str_back_ticks] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1535), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(121), - }, - [311] = { - [sym_cell_path] = STATE(473), - [sym_path] = STATE(482), - [sym_comment] = STATE(311), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_alias] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_let_DASHenv] = ACTIONS(1729), - [anon_sym_mut] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [aux_sym_cmd_identifier_token1] = ACTIONS(1729), - [aux_sym_cmd_identifier_token2] = ACTIONS(1729), - [aux_sym_cmd_identifier_token3] = ACTIONS(1729), - [aux_sym_cmd_identifier_token4] = ACTIONS(1729), - [aux_sym_cmd_identifier_token5] = ACTIONS(1729), - [aux_sym_cmd_identifier_token6] = ACTIONS(1729), - [aux_sym_cmd_identifier_token7] = ACTIONS(1729), - [aux_sym_cmd_identifier_token8] = ACTIONS(1729), - [aux_sym_cmd_identifier_token9] = ACTIONS(1729), - [aux_sym_cmd_identifier_token10] = ACTIONS(1729), - [aux_sym_cmd_identifier_token11] = ACTIONS(1729), - [aux_sym_cmd_identifier_token12] = ACTIONS(1729), - [aux_sym_cmd_identifier_token13] = ACTIONS(1729), - [aux_sym_cmd_identifier_token14] = ACTIONS(1729), - [aux_sym_cmd_identifier_token15] = ACTIONS(1729), - [aux_sym_cmd_identifier_token16] = ACTIONS(1729), - [aux_sym_cmd_identifier_token17] = ACTIONS(1729), - [aux_sym_cmd_identifier_token18] = ACTIONS(1729), - [aux_sym_cmd_identifier_token19] = ACTIONS(1729), - [aux_sym_cmd_identifier_token20] = ACTIONS(1729), - [aux_sym_cmd_identifier_token21] = ACTIONS(1729), - [aux_sym_cmd_identifier_token22] = ACTIONS(1729), - [aux_sym_cmd_identifier_token23] = ACTIONS(1729), - [aux_sym_cmd_identifier_token24] = ACTIONS(1729), - [aux_sym_cmd_identifier_token25] = ACTIONS(1729), - [aux_sym_cmd_identifier_token26] = ACTIONS(1729), - [aux_sym_cmd_identifier_token27] = ACTIONS(1729), - [aux_sym_cmd_identifier_token28] = ACTIONS(1729), - [aux_sym_cmd_identifier_token29] = ACTIONS(1729), - [aux_sym_cmd_identifier_token30] = ACTIONS(1729), - [aux_sym_cmd_identifier_token31] = ACTIONS(1729), - [aux_sym_cmd_identifier_token32] = ACTIONS(1729), - [aux_sym_cmd_identifier_token33] = ACTIONS(1729), - [aux_sym_cmd_identifier_token34] = ACTIONS(1729), - [aux_sym_cmd_identifier_token35] = ACTIONS(1729), - [aux_sym_cmd_identifier_token36] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [anon_sym_null] = ACTIONS(1729), - [aux_sym_cmd_identifier_token38] = ACTIONS(1729), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [anon_sym_def] = ACTIONS(1729), - [anon_sym_export_DASHenv] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_DOLLAR] = ACTIONS(1729), - [anon_sym_error] = ACTIONS(1729), - [anon_sym_list] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_make] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_catch] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_source] = ACTIONS(1729), - [anon_sym_source_DASHenv] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_hide_DASHenv] = ACTIONS(1729), - [anon_sym_overlay] = ACTIONS(1729), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1729), - [aux_sym__val_number_decimal_token1] = ACTIONS(1729), - [aux_sym__val_number_decimal_token2] = ACTIONS(1729), - [anon_sym_DOT2] = ACTIONS(1729), - [aux_sym__val_number_decimal_token3] = ACTIONS(1729), - [aux_sym__val_number_token1] = ACTIONS(1729), - [aux_sym__val_number_token2] = ACTIONS(1729), - [aux_sym__val_number_token3] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym__str_single_quotes] = ACTIONS(1729), - [sym__str_back_ticks] = ACTIONS(1729), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1729), - [sym__entry_separator] = ACTIONS(1731), - [anon_sym_POUND] = ACTIONS(121), - }, - [312] = { - [sym_cell_path] = STATE(481), - [sym_path] = STATE(482), - [sym_comment] = STATE(312), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1733), - [aux_sym_cmd_identifier_token3] = ACTIONS(1733), - [aux_sym_cmd_identifier_token4] = ACTIONS(1733), - [aux_sym_cmd_identifier_token5] = ACTIONS(1733), - [aux_sym_cmd_identifier_token6] = ACTIONS(1733), - [aux_sym_cmd_identifier_token7] = ACTIONS(1733), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1733), - [aux_sym_cmd_identifier_token11] = ACTIONS(1733), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1733), - [aux_sym_cmd_identifier_token17] = ACTIONS(1733), - [aux_sym_cmd_identifier_token18] = ACTIONS(1733), - [aux_sym_cmd_identifier_token19] = ACTIONS(1733), - [aux_sym_cmd_identifier_token20] = ACTIONS(1733), - [aux_sym_cmd_identifier_token21] = ACTIONS(1733), - [aux_sym_cmd_identifier_token22] = ACTIONS(1733), - [aux_sym_cmd_identifier_token23] = ACTIONS(1733), - [aux_sym_cmd_identifier_token24] = ACTIONS(1733), - [aux_sym_cmd_identifier_token25] = ACTIONS(1733), - [aux_sym_cmd_identifier_token26] = ACTIONS(1733), - [aux_sym_cmd_identifier_token27] = ACTIONS(1733), - [aux_sym_cmd_identifier_token28] = ACTIONS(1733), - [aux_sym_cmd_identifier_token29] = ACTIONS(1733), - [aux_sym_cmd_identifier_token30] = ACTIONS(1733), - [aux_sym_cmd_identifier_token31] = ACTIONS(1733), - [aux_sym_cmd_identifier_token32] = ACTIONS(1733), - [aux_sym_cmd_identifier_token33] = ACTIONS(1733), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1733), - [aux_sym_cmd_identifier_token36] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1733), - [aux_sym_cmd_identifier_token40] = ACTIONS(1733), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_list] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [anon_sym_DOT2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1733), - [aux_sym__val_number_token1] = ACTIONS(1733), - [aux_sym__val_number_token2] = ACTIONS(1733), - [aux_sym__val_number_token3] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym__str_single_quotes] = ACTIONS(1733), - [sym__str_back_ticks] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), - [sym__entry_separator] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(121), - }, - [313] = { - [sym_comment] = STATE(313), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1737), - [aux_sym__immediate_decimal_token2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(121), - }, - [314] = { - [sym_cell_path] = STATE(469), - [sym_path] = STATE(482), - [sym_comment] = STATE(314), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1740), - [anon_sym_alias] = ACTIONS(1740), - [anon_sym_let] = ACTIONS(1740), - [anon_sym_let_DASHenv] = ACTIONS(1740), - [anon_sym_mut] = ACTIONS(1740), - [anon_sym_const] = ACTIONS(1740), - [aux_sym_cmd_identifier_token1] = ACTIONS(1740), - [aux_sym_cmd_identifier_token2] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1740), - [aux_sym_cmd_identifier_token4] = ACTIONS(1740), - [aux_sym_cmd_identifier_token5] = ACTIONS(1740), - [aux_sym_cmd_identifier_token6] = ACTIONS(1740), - [aux_sym_cmd_identifier_token7] = ACTIONS(1740), - [aux_sym_cmd_identifier_token8] = ACTIONS(1740), - [aux_sym_cmd_identifier_token9] = ACTIONS(1740), - [aux_sym_cmd_identifier_token10] = ACTIONS(1740), - [aux_sym_cmd_identifier_token11] = ACTIONS(1740), - [aux_sym_cmd_identifier_token12] = ACTIONS(1740), - [aux_sym_cmd_identifier_token13] = ACTIONS(1740), - [aux_sym_cmd_identifier_token14] = ACTIONS(1740), - [aux_sym_cmd_identifier_token15] = ACTIONS(1740), - [aux_sym_cmd_identifier_token16] = ACTIONS(1740), - [aux_sym_cmd_identifier_token17] = ACTIONS(1740), - [aux_sym_cmd_identifier_token18] = ACTIONS(1740), - [aux_sym_cmd_identifier_token19] = ACTIONS(1740), - [aux_sym_cmd_identifier_token20] = ACTIONS(1740), - [aux_sym_cmd_identifier_token21] = ACTIONS(1740), - [aux_sym_cmd_identifier_token22] = ACTIONS(1740), - [aux_sym_cmd_identifier_token23] = ACTIONS(1740), - [aux_sym_cmd_identifier_token24] = ACTIONS(1740), - [aux_sym_cmd_identifier_token25] = ACTIONS(1740), - [aux_sym_cmd_identifier_token26] = ACTIONS(1740), - [aux_sym_cmd_identifier_token27] = ACTIONS(1740), - [aux_sym_cmd_identifier_token28] = ACTIONS(1740), - [aux_sym_cmd_identifier_token29] = ACTIONS(1740), - [aux_sym_cmd_identifier_token30] = ACTIONS(1740), - [aux_sym_cmd_identifier_token31] = ACTIONS(1740), - [aux_sym_cmd_identifier_token32] = ACTIONS(1740), - [aux_sym_cmd_identifier_token33] = ACTIONS(1740), - [aux_sym_cmd_identifier_token34] = ACTIONS(1740), - [aux_sym_cmd_identifier_token35] = ACTIONS(1740), - [aux_sym_cmd_identifier_token36] = ACTIONS(1740), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token38] = ACTIONS(1740), - [aux_sym_cmd_identifier_token39] = ACTIONS(1740), - [aux_sym_cmd_identifier_token40] = ACTIONS(1740), - [anon_sym_def] = ACTIONS(1740), - [anon_sym_export_DASHenv] = ACTIONS(1740), - [anon_sym_extern] = ACTIONS(1740), - [anon_sym_module] = ACTIONS(1740), - [anon_sym_use] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_DOLLAR] = ACTIONS(1740), - [anon_sym_error] = ACTIONS(1740), - [anon_sym_list] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_break] = ACTIONS(1740), - [anon_sym_continue] = ACTIONS(1740), - [anon_sym_for] = ACTIONS(1740), - [anon_sym_in] = ACTIONS(1740), - [anon_sym_loop] = ACTIONS(1740), - [anon_sym_make] = ACTIONS(1740), - [anon_sym_while] = ACTIONS(1740), - [anon_sym_do] = ACTIONS(1740), - [anon_sym_if] = ACTIONS(1740), - [anon_sym_else] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_try] = ACTIONS(1740), - [anon_sym_catch] = ACTIONS(1740), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_source] = ACTIONS(1740), - [anon_sym_source_DASHenv] = ACTIONS(1740), - [anon_sym_register] = ACTIONS(1740), - [anon_sym_hide] = ACTIONS(1740), - [anon_sym_hide_DASHenv] = ACTIONS(1740), - [anon_sym_overlay] = ACTIONS(1740), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_as] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1740), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1740), - [aux_sym__val_number_decimal_token2] = ACTIONS(1740), - [anon_sym_DOT2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1740), - [aux_sym__val_number_token1] = ACTIONS(1740), - [aux_sym__val_number_token2] = ACTIONS(1740), - [aux_sym__val_number_token3] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__str_single_quotes] = ACTIONS(1740), - [sym__str_back_ticks] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1740), - [sym__entry_separator] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(121), - }, - [315] = { - [sym_cell_path] = STATE(495), - [sym_path] = STATE(482), - [sym_comment] = STATE(315), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1744), - [anon_sym_alias] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(1744), - [anon_sym_let_DASHenv] = ACTIONS(1744), - [anon_sym_mut] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [aux_sym_cmd_identifier_token1] = ACTIONS(1744), - [aux_sym_cmd_identifier_token2] = ACTIONS(1744), - [aux_sym_cmd_identifier_token3] = ACTIONS(1744), - [aux_sym_cmd_identifier_token4] = ACTIONS(1744), - [aux_sym_cmd_identifier_token5] = ACTIONS(1744), - [aux_sym_cmd_identifier_token6] = ACTIONS(1744), - [aux_sym_cmd_identifier_token7] = ACTIONS(1744), - [aux_sym_cmd_identifier_token8] = ACTIONS(1744), - [aux_sym_cmd_identifier_token9] = ACTIONS(1744), - [aux_sym_cmd_identifier_token10] = ACTIONS(1744), - [aux_sym_cmd_identifier_token11] = ACTIONS(1744), - [aux_sym_cmd_identifier_token12] = ACTIONS(1744), - [aux_sym_cmd_identifier_token13] = ACTIONS(1744), - [aux_sym_cmd_identifier_token14] = ACTIONS(1744), - [aux_sym_cmd_identifier_token15] = ACTIONS(1744), - [aux_sym_cmd_identifier_token16] = ACTIONS(1744), - [aux_sym_cmd_identifier_token17] = ACTIONS(1744), - [aux_sym_cmd_identifier_token18] = ACTIONS(1744), - [aux_sym_cmd_identifier_token19] = ACTIONS(1744), - [aux_sym_cmd_identifier_token20] = ACTIONS(1744), - [aux_sym_cmd_identifier_token21] = ACTIONS(1744), - [aux_sym_cmd_identifier_token22] = ACTIONS(1744), - [aux_sym_cmd_identifier_token23] = ACTIONS(1744), - [aux_sym_cmd_identifier_token24] = ACTIONS(1744), - [aux_sym_cmd_identifier_token25] = ACTIONS(1744), - [aux_sym_cmd_identifier_token26] = ACTIONS(1744), - [aux_sym_cmd_identifier_token27] = ACTIONS(1744), - [aux_sym_cmd_identifier_token28] = ACTIONS(1744), - [aux_sym_cmd_identifier_token29] = ACTIONS(1744), - [aux_sym_cmd_identifier_token30] = ACTIONS(1744), - [aux_sym_cmd_identifier_token31] = ACTIONS(1744), - [aux_sym_cmd_identifier_token32] = ACTIONS(1744), - [aux_sym_cmd_identifier_token33] = ACTIONS(1744), - [aux_sym_cmd_identifier_token34] = ACTIONS(1744), - [aux_sym_cmd_identifier_token35] = ACTIONS(1744), - [aux_sym_cmd_identifier_token36] = ACTIONS(1744), - [anon_sym_true] = ACTIONS(1744), - [anon_sym_false] = ACTIONS(1744), - [anon_sym_null] = ACTIONS(1744), - [aux_sym_cmd_identifier_token38] = ACTIONS(1744), - [aux_sym_cmd_identifier_token39] = ACTIONS(1744), - [aux_sym_cmd_identifier_token40] = ACTIONS(1744), - [anon_sym_def] = ACTIONS(1744), - [anon_sym_export_DASHenv] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_module] = ACTIONS(1744), - [anon_sym_use] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1744), - [anon_sym_error] = ACTIONS(1744), - [anon_sym_list] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1744), - [anon_sym_make] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_do] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_else] = ACTIONS(1744), - [anon_sym_match] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_try] = ACTIONS(1744), - [anon_sym_catch] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_source] = ACTIONS(1744), - [anon_sym_source_DASHenv] = ACTIONS(1744), - [anon_sym_register] = ACTIONS(1744), - [anon_sym_hide] = ACTIONS(1744), - [anon_sym_hide_DASHenv] = ACTIONS(1744), - [anon_sym_overlay] = ACTIONS(1744), - [anon_sym_new] = ACTIONS(1744), - [anon_sym_as] = ACTIONS(1744), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1744), - [aux_sym__val_number_decimal_token1] = ACTIONS(1744), - [aux_sym__val_number_decimal_token2] = ACTIONS(1744), - [anon_sym_DOT2] = ACTIONS(1744), - [aux_sym__val_number_decimal_token3] = ACTIONS(1744), - [aux_sym__val_number_token1] = ACTIONS(1744), - [aux_sym__val_number_token2] = ACTIONS(1744), - [aux_sym__val_number_token3] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym__str_single_quotes] = ACTIONS(1744), - [sym__str_back_ticks] = ACTIONS(1744), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1744), - [sym__entry_separator] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(121), - }, - [316] = { - [sym_comment] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1748), - [anon_sym_export] = ACTIONS(1750), - [anon_sym_alias] = ACTIONS(1750), - [anon_sym_let] = ACTIONS(1750), - [anon_sym_let_DASHenv] = ACTIONS(1750), - [anon_sym_mut] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [aux_sym_cmd_identifier_token1] = ACTIONS(1750), - [aux_sym_cmd_identifier_token2] = ACTIONS(1750), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [aux_sym_cmd_identifier_token6] = ACTIONS(1750), - [aux_sym_cmd_identifier_token7] = ACTIONS(1750), - [aux_sym_cmd_identifier_token8] = ACTIONS(1750), - [aux_sym_cmd_identifier_token9] = ACTIONS(1750), - [aux_sym_cmd_identifier_token10] = ACTIONS(1750), - [aux_sym_cmd_identifier_token11] = ACTIONS(1750), - [aux_sym_cmd_identifier_token12] = ACTIONS(1750), - [aux_sym_cmd_identifier_token13] = ACTIONS(1750), - [aux_sym_cmd_identifier_token14] = ACTIONS(1750), - [aux_sym_cmd_identifier_token15] = ACTIONS(1750), - [aux_sym_cmd_identifier_token16] = ACTIONS(1750), - [aux_sym_cmd_identifier_token17] = ACTIONS(1750), - [aux_sym_cmd_identifier_token18] = ACTIONS(1750), - [aux_sym_cmd_identifier_token19] = ACTIONS(1750), - [aux_sym_cmd_identifier_token20] = ACTIONS(1750), - [aux_sym_cmd_identifier_token21] = ACTIONS(1750), - [aux_sym_cmd_identifier_token22] = ACTIONS(1750), - [aux_sym_cmd_identifier_token23] = ACTIONS(1750), - [aux_sym_cmd_identifier_token24] = ACTIONS(1748), - [aux_sym_cmd_identifier_token25] = ACTIONS(1750), - [aux_sym_cmd_identifier_token26] = ACTIONS(1748), - [aux_sym_cmd_identifier_token27] = ACTIONS(1750), - [aux_sym_cmd_identifier_token28] = ACTIONS(1750), - [aux_sym_cmd_identifier_token29] = ACTIONS(1750), - [aux_sym_cmd_identifier_token30] = ACTIONS(1750), - [aux_sym_cmd_identifier_token31] = ACTIONS(1748), - [aux_sym_cmd_identifier_token32] = ACTIONS(1748), - [aux_sym_cmd_identifier_token33] = ACTIONS(1748), - [aux_sym_cmd_identifier_token34] = ACTIONS(1748), - [aux_sym_cmd_identifier_token35] = ACTIONS(1748), - [aux_sym_cmd_identifier_token36] = ACTIONS(1750), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1748), - [aux_sym_cmd_identifier_token40] = ACTIONS(1748), - [sym__newline] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_def] = ACTIONS(1750), - [anon_sym_export_DASHenv] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym_module] = ACTIONS(1750), - [anon_sym_use] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1748), - [anon_sym_DOLLAR] = ACTIONS(1750), - [anon_sym_error] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_loop] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(1750), - [aux_sym_ctrl_match_token1] = ACTIONS(1748), - [anon_sym_DOT_DOT] = ACTIONS(1750), - [anon_sym_try] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_source] = ACTIONS(1750), - [anon_sym_source_DASHenv] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_hide] = ACTIONS(1750), - [anon_sym_hide_DASHenv] = ACTIONS(1750), - [anon_sym_overlay] = ACTIONS(1750), - [anon_sym_where] = ACTIONS(1748), - [aux_sym_expr_unary_token1] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1748), - [anon_sym_DOT_DOT_LT] = ACTIONS(1748), - [aux_sym__val_number_decimal_token1] = ACTIONS(1750), - [aux_sym__val_number_decimal_token2] = ACTIONS(1748), - [anon_sym_DOT2] = ACTIONS(1750), - [aux_sym__val_number_decimal_token3] = ACTIONS(1748), - [aux_sym__val_number_token1] = ACTIONS(1748), - [aux_sym__val_number_token2] = ACTIONS(1748), - [aux_sym__val_number_token3] = ACTIONS(1748), - [anon_sym_0b] = ACTIONS(1750), - [anon_sym_0o] = ACTIONS(1750), - [anon_sym_0x] = ACTIONS(1750), - [sym_val_date] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym__str_single_quotes] = ACTIONS(1748), - [sym__str_back_ticks] = ACTIONS(1748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(3), - }, - [317] = { - [sym_comment] = STATE(317), - [aux_sym__block_body_repeat1] = STATE(233), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [aux_sym_cmd_identifier_token1] = ACTIONS(1559), - [aux_sym_cmd_identifier_token2] = ACTIONS(1559), - [aux_sym_cmd_identifier_token3] = ACTIONS(1559), - [aux_sym_cmd_identifier_token4] = ACTIONS(1559), - [aux_sym_cmd_identifier_token5] = ACTIONS(1559), - [aux_sym_cmd_identifier_token6] = ACTIONS(1559), - [aux_sym_cmd_identifier_token7] = ACTIONS(1559), - [aux_sym_cmd_identifier_token8] = ACTIONS(1559), - [aux_sym_cmd_identifier_token9] = ACTIONS(1559), - [aux_sym_cmd_identifier_token10] = ACTIONS(1559), - [aux_sym_cmd_identifier_token11] = ACTIONS(1559), - [aux_sym_cmd_identifier_token12] = ACTIONS(1559), - [aux_sym_cmd_identifier_token13] = ACTIONS(1559), - [aux_sym_cmd_identifier_token14] = ACTIONS(1559), - [aux_sym_cmd_identifier_token15] = ACTIONS(1559), - [aux_sym_cmd_identifier_token16] = ACTIONS(1559), - [aux_sym_cmd_identifier_token17] = ACTIONS(1559), - [aux_sym_cmd_identifier_token18] = ACTIONS(1559), - [aux_sym_cmd_identifier_token19] = ACTIONS(1559), - [aux_sym_cmd_identifier_token20] = ACTIONS(1559), - [aux_sym_cmd_identifier_token21] = ACTIONS(1559), - [aux_sym_cmd_identifier_token22] = ACTIONS(1559), - [aux_sym_cmd_identifier_token23] = ACTIONS(1559), - [aux_sym_cmd_identifier_token24] = ACTIONS(1561), - [aux_sym_cmd_identifier_token25] = ACTIONS(1559), - [aux_sym_cmd_identifier_token26] = ACTIONS(1561), - [aux_sym_cmd_identifier_token27] = ACTIONS(1559), - [aux_sym_cmd_identifier_token28] = ACTIONS(1559), - [aux_sym_cmd_identifier_token29] = ACTIONS(1559), - [aux_sym_cmd_identifier_token30] = ACTIONS(1559), - [aux_sym_cmd_identifier_token31] = ACTIONS(1561), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1561), - [aux_sym_cmd_identifier_token35] = ACTIONS(1561), - [aux_sym_cmd_identifier_token36] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [aux_sym_cmd_identifier_token38] = ACTIONS(1559), - [aux_sym_cmd_identifier_token39] = ACTIONS(1561), - [aux_sym_cmd_identifier_token40] = ACTIONS(1561), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [aux_sym_ctrl_match_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), - [anon_sym_where] = ACTIONS(1561), - [aux_sym_expr_unary_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_DOT_DOT_LT] = ACTIONS(1561), - [aux_sym__val_number_decimal_token1] = ACTIONS(1559), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [anon_sym_DOT2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1561), - [aux_sym__val_number_token2] = ACTIONS(1561), - [aux_sym__val_number_token3] = ACTIONS(1561), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), - [sym_val_date] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym__str_single_quotes] = ACTIONS(1561), - [sym__str_back_ticks] = ACTIONS(1561), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), }, - [318] = { - [sym_cell_path] = STATE(546), - [sym_path] = STATE(482), - [sym_comment] = STATE(318), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_alias] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_let_DASHenv] = ACTIONS(1752), - [anon_sym_mut] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [aux_sym_cmd_identifier_token1] = ACTIONS(1752), - [aux_sym_cmd_identifier_token2] = ACTIONS(1752), - [aux_sym_cmd_identifier_token3] = ACTIONS(1752), - [aux_sym_cmd_identifier_token4] = ACTIONS(1752), - [aux_sym_cmd_identifier_token5] = ACTIONS(1752), - [aux_sym_cmd_identifier_token6] = ACTIONS(1752), - [aux_sym_cmd_identifier_token7] = ACTIONS(1752), - [aux_sym_cmd_identifier_token8] = ACTIONS(1752), - [aux_sym_cmd_identifier_token9] = ACTIONS(1752), - [aux_sym_cmd_identifier_token10] = ACTIONS(1752), - [aux_sym_cmd_identifier_token11] = ACTIONS(1752), - [aux_sym_cmd_identifier_token12] = ACTIONS(1752), - [aux_sym_cmd_identifier_token13] = ACTIONS(1752), - [aux_sym_cmd_identifier_token14] = ACTIONS(1752), - [aux_sym_cmd_identifier_token15] = ACTIONS(1752), - [aux_sym_cmd_identifier_token16] = ACTIONS(1752), - [aux_sym_cmd_identifier_token17] = ACTIONS(1752), - [aux_sym_cmd_identifier_token18] = ACTIONS(1752), - [aux_sym_cmd_identifier_token19] = ACTIONS(1752), - [aux_sym_cmd_identifier_token20] = ACTIONS(1752), - [aux_sym_cmd_identifier_token21] = ACTIONS(1752), - [aux_sym_cmd_identifier_token22] = ACTIONS(1752), - [aux_sym_cmd_identifier_token23] = ACTIONS(1752), - [aux_sym_cmd_identifier_token24] = ACTIONS(1752), - [aux_sym_cmd_identifier_token25] = ACTIONS(1752), - [aux_sym_cmd_identifier_token26] = ACTIONS(1752), - [aux_sym_cmd_identifier_token27] = ACTIONS(1752), - [aux_sym_cmd_identifier_token28] = ACTIONS(1752), - [aux_sym_cmd_identifier_token29] = ACTIONS(1752), - [aux_sym_cmd_identifier_token30] = ACTIONS(1752), - [aux_sym_cmd_identifier_token31] = ACTIONS(1752), - [aux_sym_cmd_identifier_token32] = ACTIONS(1752), - [aux_sym_cmd_identifier_token33] = ACTIONS(1752), - [aux_sym_cmd_identifier_token34] = ACTIONS(1752), - [aux_sym_cmd_identifier_token35] = ACTIONS(1752), - [aux_sym_cmd_identifier_token36] = ACTIONS(1752), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [anon_sym_null] = ACTIONS(1752), - [aux_sym_cmd_identifier_token38] = ACTIONS(1752), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [anon_sym_def] = ACTIONS(1752), - [anon_sym_export_DASHenv] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1752), - [anon_sym_module] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1752), - [anon_sym_DOLLAR] = ACTIONS(1752), - [anon_sym_error] = ACTIONS(1752), - [anon_sym_list] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_loop] = ACTIONS(1752), - [anon_sym_make] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_do] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_catch] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_source] = ACTIONS(1752), - [anon_sym_source_DASHenv] = ACTIONS(1752), - [anon_sym_register] = ACTIONS(1752), - [anon_sym_hide] = ACTIONS(1752), - [anon_sym_hide_DASHenv] = ACTIONS(1752), - [anon_sym_overlay] = ACTIONS(1752), - [anon_sym_new] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1752), - [aux_sym__val_number_decimal_token1] = ACTIONS(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1752), - [anon_sym_DOT2] = ACTIONS(1752), - [aux_sym__val_number_decimal_token3] = ACTIONS(1752), - [aux_sym__val_number_token1] = ACTIONS(1752), - [aux_sym__val_number_token2] = ACTIONS(1752), - [aux_sym__val_number_token3] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym__str_single_quotes] = ACTIONS(1752), - [sym__str_back_ticks] = ACTIONS(1752), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1752), - [sym__entry_separator] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(121), - }, - [319] = { - [sym_cell_path] = STATE(547), - [sym_path] = STATE(482), - [sym_comment] = STATE(319), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1756), - [anon_sym_alias] = ACTIONS(1756), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_let_DASHenv] = ACTIONS(1756), - [anon_sym_mut] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [aux_sym_cmd_identifier_token1] = ACTIONS(1756), - [aux_sym_cmd_identifier_token2] = ACTIONS(1756), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [aux_sym_cmd_identifier_token6] = ACTIONS(1756), - [aux_sym_cmd_identifier_token7] = ACTIONS(1756), - [aux_sym_cmd_identifier_token8] = ACTIONS(1756), - [aux_sym_cmd_identifier_token9] = ACTIONS(1756), - [aux_sym_cmd_identifier_token10] = ACTIONS(1756), - [aux_sym_cmd_identifier_token11] = ACTIONS(1756), - [aux_sym_cmd_identifier_token12] = ACTIONS(1756), - [aux_sym_cmd_identifier_token13] = ACTIONS(1756), - [aux_sym_cmd_identifier_token14] = ACTIONS(1756), - [aux_sym_cmd_identifier_token15] = ACTIONS(1756), - [aux_sym_cmd_identifier_token16] = ACTIONS(1756), - [aux_sym_cmd_identifier_token17] = ACTIONS(1756), - [aux_sym_cmd_identifier_token18] = ACTIONS(1756), - [aux_sym_cmd_identifier_token19] = ACTIONS(1756), - [aux_sym_cmd_identifier_token20] = ACTIONS(1756), - [aux_sym_cmd_identifier_token21] = ACTIONS(1756), - [aux_sym_cmd_identifier_token22] = ACTIONS(1756), - [aux_sym_cmd_identifier_token23] = ACTIONS(1756), - [aux_sym_cmd_identifier_token24] = ACTIONS(1756), - [aux_sym_cmd_identifier_token25] = ACTIONS(1756), - [aux_sym_cmd_identifier_token26] = ACTIONS(1756), - [aux_sym_cmd_identifier_token27] = ACTIONS(1756), - [aux_sym_cmd_identifier_token28] = ACTIONS(1756), - [aux_sym_cmd_identifier_token29] = ACTIONS(1756), - [aux_sym_cmd_identifier_token30] = ACTIONS(1756), - [aux_sym_cmd_identifier_token31] = ACTIONS(1756), - [aux_sym_cmd_identifier_token32] = ACTIONS(1756), - [aux_sym_cmd_identifier_token33] = ACTIONS(1756), - [aux_sym_cmd_identifier_token34] = ACTIONS(1756), - [aux_sym_cmd_identifier_token35] = ACTIONS(1756), - [aux_sym_cmd_identifier_token36] = ACTIONS(1756), - [anon_sym_true] = ACTIONS(1756), - [anon_sym_false] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1756), - [aux_sym_cmd_identifier_token38] = ACTIONS(1756), - [aux_sym_cmd_identifier_token39] = ACTIONS(1756), - [aux_sym_cmd_identifier_token40] = ACTIONS(1756), - [anon_sym_def] = ACTIONS(1756), - [anon_sym_export_DASHenv] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_module] = ACTIONS(1756), - [anon_sym_use] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_error] = ACTIONS(1756), - [anon_sym_list] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_in] = ACTIONS(1756), - [anon_sym_loop] = ACTIONS(1756), - [anon_sym_make] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_do] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_else] = ACTIONS(1756), - [anon_sym_match] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_try] = ACTIONS(1756), - [anon_sym_catch] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_source] = ACTIONS(1756), - [anon_sym_source_DASHenv] = ACTIONS(1756), - [anon_sym_register] = ACTIONS(1756), - [anon_sym_hide] = ACTIONS(1756), - [anon_sym_hide_DASHenv] = ACTIONS(1756), - [anon_sym_overlay] = ACTIONS(1756), - [anon_sym_new] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1756), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1756), - [aux_sym__val_number_decimal_token1] = ACTIONS(1756), - [aux_sym__val_number_decimal_token2] = ACTIONS(1756), - [anon_sym_DOT2] = ACTIONS(1756), - [aux_sym__val_number_decimal_token3] = ACTIONS(1756), - [aux_sym__val_number_token1] = ACTIONS(1756), - [aux_sym__val_number_token2] = ACTIONS(1756), - [aux_sym__val_number_token3] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [sym__str_single_quotes] = ACTIONS(1756), - [sym__str_back_ticks] = ACTIONS(1756), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1756), - [sym__entry_separator] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(121), - }, - [320] = { - [sym_cell_path] = STATE(548), - [sym_path] = STATE(482), - [sym_comment] = STATE(320), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1760), - [anon_sym_alias] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_let_DASHenv] = ACTIONS(1760), - [anon_sym_mut] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [aux_sym_cmd_identifier_token1] = ACTIONS(1760), - [aux_sym_cmd_identifier_token2] = ACTIONS(1760), - [aux_sym_cmd_identifier_token3] = ACTIONS(1760), - [aux_sym_cmd_identifier_token4] = ACTIONS(1760), - [aux_sym_cmd_identifier_token5] = ACTIONS(1760), - [aux_sym_cmd_identifier_token6] = ACTIONS(1760), - [aux_sym_cmd_identifier_token7] = ACTIONS(1760), - [aux_sym_cmd_identifier_token8] = ACTIONS(1760), - [aux_sym_cmd_identifier_token9] = ACTIONS(1760), - [aux_sym_cmd_identifier_token10] = ACTIONS(1760), - [aux_sym_cmd_identifier_token11] = ACTIONS(1760), - [aux_sym_cmd_identifier_token12] = ACTIONS(1760), - [aux_sym_cmd_identifier_token13] = ACTIONS(1760), - [aux_sym_cmd_identifier_token14] = ACTIONS(1760), - [aux_sym_cmd_identifier_token15] = ACTIONS(1760), - [aux_sym_cmd_identifier_token16] = ACTIONS(1760), - [aux_sym_cmd_identifier_token17] = ACTIONS(1760), - [aux_sym_cmd_identifier_token18] = ACTIONS(1760), - [aux_sym_cmd_identifier_token19] = ACTIONS(1760), - [aux_sym_cmd_identifier_token20] = ACTIONS(1760), - [aux_sym_cmd_identifier_token21] = ACTIONS(1760), - [aux_sym_cmd_identifier_token22] = ACTIONS(1760), - [aux_sym_cmd_identifier_token23] = ACTIONS(1760), - [aux_sym_cmd_identifier_token24] = ACTIONS(1760), - [aux_sym_cmd_identifier_token25] = ACTIONS(1760), - [aux_sym_cmd_identifier_token26] = ACTIONS(1760), - [aux_sym_cmd_identifier_token27] = ACTIONS(1760), - [aux_sym_cmd_identifier_token28] = ACTIONS(1760), - [aux_sym_cmd_identifier_token29] = ACTIONS(1760), - [aux_sym_cmd_identifier_token30] = ACTIONS(1760), - [aux_sym_cmd_identifier_token31] = ACTIONS(1760), - [aux_sym_cmd_identifier_token32] = ACTIONS(1760), - [aux_sym_cmd_identifier_token33] = ACTIONS(1760), - [aux_sym_cmd_identifier_token34] = ACTIONS(1760), - [aux_sym_cmd_identifier_token35] = ACTIONS(1760), - [aux_sym_cmd_identifier_token36] = ACTIONS(1760), - [anon_sym_true] = ACTIONS(1760), - [anon_sym_false] = ACTIONS(1760), - [anon_sym_null] = ACTIONS(1760), - [aux_sym_cmd_identifier_token38] = ACTIONS(1760), - [aux_sym_cmd_identifier_token39] = ACTIONS(1760), - [aux_sym_cmd_identifier_token40] = ACTIONS(1760), - [anon_sym_def] = ACTIONS(1760), - [anon_sym_export_DASHenv] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_module] = ACTIONS(1760), - [anon_sym_use] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_DOLLAR] = ACTIONS(1760), - [anon_sym_error] = ACTIONS(1760), - [anon_sym_list] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_in] = ACTIONS(1760), - [anon_sym_loop] = ACTIONS(1760), - [anon_sym_make] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_do] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_else] = ACTIONS(1760), - [anon_sym_match] = ACTIONS(1760), - [anon_sym_RBRACE] = ACTIONS(1760), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_catch] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_source] = ACTIONS(1760), - [anon_sym_source_DASHenv] = ACTIONS(1760), - [anon_sym_register] = ACTIONS(1760), - [anon_sym_hide] = ACTIONS(1760), - [anon_sym_hide_DASHenv] = ACTIONS(1760), - [anon_sym_overlay] = ACTIONS(1760), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_as] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [anon_sym_DOT2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1760), - [aux_sym__val_number_token1] = ACTIONS(1760), - [aux_sym__val_number_token2] = ACTIONS(1760), - [aux_sym__val_number_token3] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1760), - [sym__str_single_quotes] = ACTIONS(1760), - [sym__str_back_ticks] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), - [sym__entry_separator] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(121), - }, - [321] = { - [sym_cell_path] = STATE(549), - [sym_path] = STATE(482), - [sym_comment] = STATE(321), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1764), - [anon_sym_alias] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_let_DASHenv] = ACTIONS(1764), - [anon_sym_mut] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [aux_sym_cmd_identifier_token1] = ACTIONS(1764), - [aux_sym_cmd_identifier_token2] = ACTIONS(1764), - [aux_sym_cmd_identifier_token3] = ACTIONS(1764), - [aux_sym_cmd_identifier_token4] = ACTIONS(1764), - [aux_sym_cmd_identifier_token5] = ACTIONS(1764), - [aux_sym_cmd_identifier_token6] = ACTIONS(1764), - [aux_sym_cmd_identifier_token7] = ACTIONS(1764), - [aux_sym_cmd_identifier_token8] = ACTIONS(1764), - [aux_sym_cmd_identifier_token9] = ACTIONS(1764), - [aux_sym_cmd_identifier_token10] = ACTIONS(1764), - [aux_sym_cmd_identifier_token11] = ACTIONS(1764), - [aux_sym_cmd_identifier_token12] = ACTIONS(1764), - [aux_sym_cmd_identifier_token13] = ACTIONS(1764), - [aux_sym_cmd_identifier_token14] = ACTIONS(1764), - [aux_sym_cmd_identifier_token15] = ACTIONS(1764), - [aux_sym_cmd_identifier_token16] = ACTIONS(1764), - [aux_sym_cmd_identifier_token17] = ACTIONS(1764), - [aux_sym_cmd_identifier_token18] = ACTIONS(1764), - [aux_sym_cmd_identifier_token19] = ACTIONS(1764), - [aux_sym_cmd_identifier_token20] = ACTIONS(1764), - [aux_sym_cmd_identifier_token21] = ACTIONS(1764), - [aux_sym_cmd_identifier_token22] = ACTIONS(1764), - [aux_sym_cmd_identifier_token23] = ACTIONS(1764), - [aux_sym_cmd_identifier_token24] = ACTIONS(1764), - [aux_sym_cmd_identifier_token25] = ACTIONS(1764), - [aux_sym_cmd_identifier_token26] = ACTIONS(1764), - [aux_sym_cmd_identifier_token27] = ACTIONS(1764), - [aux_sym_cmd_identifier_token28] = ACTIONS(1764), - [aux_sym_cmd_identifier_token29] = ACTIONS(1764), - [aux_sym_cmd_identifier_token30] = ACTIONS(1764), - [aux_sym_cmd_identifier_token31] = ACTIONS(1764), - [aux_sym_cmd_identifier_token32] = ACTIONS(1764), - [aux_sym_cmd_identifier_token33] = ACTIONS(1764), - [aux_sym_cmd_identifier_token34] = ACTIONS(1764), - [aux_sym_cmd_identifier_token35] = ACTIONS(1764), - [aux_sym_cmd_identifier_token36] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_null] = ACTIONS(1764), - [aux_sym_cmd_identifier_token38] = ACTIONS(1764), - [aux_sym_cmd_identifier_token39] = ACTIONS(1764), - [aux_sym_cmd_identifier_token40] = ACTIONS(1764), - [anon_sym_def] = ACTIONS(1764), - [anon_sym_export_DASHenv] = ACTIONS(1764), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_module] = ACTIONS(1764), - [anon_sym_use] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1764), - [anon_sym_error] = ACTIONS(1764), - [anon_sym_list] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_loop] = ACTIONS(1764), - [anon_sym_make] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_do] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_match] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_catch] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_source] = ACTIONS(1764), - [anon_sym_source_DASHenv] = ACTIONS(1764), - [anon_sym_register] = ACTIONS(1764), - [anon_sym_hide] = ACTIONS(1764), - [anon_sym_hide_DASHenv] = ACTIONS(1764), - [anon_sym_overlay] = ACTIONS(1764), - [anon_sym_new] = ACTIONS(1764), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1764), - [aux_sym__val_number_decimal_token1] = ACTIONS(1764), - [aux_sym__val_number_decimal_token2] = ACTIONS(1764), - [anon_sym_DOT2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(1764), - [aux_sym__val_number_token2] = ACTIONS(1764), - [aux_sym__val_number_token3] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [sym__str_single_quotes] = ACTIONS(1764), - [sym__str_back_ticks] = ACTIONS(1764), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1764), - [sym__entry_separator] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(121), - }, - [322] = { - [sym_cell_path] = STATE(550), - [sym_path] = STATE(482), - [sym_comment] = STATE(322), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1768), - [anon_sym_alias] = ACTIONS(1768), - [anon_sym_let] = ACTIONS(1768), - [anon_sym_let_DASHenv] = ACTIONS(1768), - [anon_sym_mut] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1768), - [aux_sym_cmd_identifier_token1] = ACTIONS(1768), - [aux_sym_cmd_identifier_token2] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1768), - [aux_sym_cmd_identifier_token4] = ACTIONS(1768), - [aux_sym_cmd_identifier_token5] = ACTIONS(1768), - [aux_sym_cmd_identifier_token6] = ACTIONS(1768), - [aux_sym_cmd_identifier_token7] = ACTIONS(1768), - [aux_sym_cmd_identifier_token8] = ACTIONS(1768), - [aux_sym_cmd_identifier_token9] = ACTIONS(1768), - [aux_sym_cmd_identifier_token10] = ACTIONS(1768), - [aux_sym_cmd_identifier_token11] = ACTIONS(1768), - [aux_sym_cmd_identifier_token12] = ACTIONS(1768), - [aux_sym_cmd_identifier_token13] = ACTIONS(1768), - [aux_sym_cmd_identifier_token14] = ACTIONS(1768), - [aux_sym_cmd_identifier_token15] = ACTIONS(1768), - [aux_sym_cmd_identifier_token16] = ACTIONS(1768), - [aux_sym_cmd_identifier_token17] = ACTIONS(1768), - [aux_sym_cmd_identifier_token18] = ACTIONS(1768), - [aux_sym_cmd_identifier_token19] = ACTIONS(1768), - [aux_sym_cmd_identifier_token20] = ACTIONS(1768), - [aux_sym_cmd_identifier_token21] = ACTIONS(1768), - [aux_sym_cmd_identifier_token22] = ACTIONS(1768), - [aux_sym_cmd_identifier_token23] = ACTIONS(1768), - [aux_sym_cmd_identifier_token24] = ACTIONS(1768), - [aux_sym_cmd_identifier_token25] = ACTIONS(1768), - [aux_sym_cmd_identifier_token26] = ACTIONS(1768), - [aux_sym_cmd_identifier_token27] = ACTIONS(1768), - [aux_sym_cmd_identifier_token28] = ACTIONS(1768), - [aux_sym_cmd_identifier_token29] = ACTIONS(1768), - [aux_sym_cmd_identifier_token30] = ACTIONS(1768), - [aux_sym_cmd_identifier_token31] = ACTIONS(1768), - [aux_sym_cmd_identifier_token32] = ACTIONS(1768), - [aux_sym_cmd_identifier_token33] = ACTIONS(1768), - [aux_sym_cmd_identifier_token34] = ACTIONS(1768), - [aux_sym_cmd_identifier_token35] = ACTIONS(1768), - [aux_sym_cmd_identifier_token36] = ACTIONS(1768), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token38] = ACTIONS(1768), - [aux_sym_cmd_identifier_token39] = ACTIONS(1768), - [aux_sym_cmd_identifier_token40] = ACTIONS(1768), - [anon_sym_def] = ACTIONS(1768), - [anon_sym_export_DASHenv] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_module] = ACTIONS(1768), - [anon_sym_use] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_error] = ACTIONS(1768), - [anon_sym_list] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1768), - [anon_sym_in] = ACTIONS(1768), - [anon_sym_loop] = ACTIONS(1768), - [anon_sym_make] = ACTIONS(1768), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(1768), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_else] = ACTIONS(1768), - [anon_sym_match] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_try] = ACTIONS(1768), - [anon_sym_catch] = ACTIONS(1768), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_source] = ACTIONS(1768), - [anon_sym_source_DASHenv] = ACTIONS(1768), - [anon_sym_register] = ACTIONS(1768), - [anon_sym_hide] = ACTIONS(1768), - [anon_sym_hide_DASHenv] = ACTIONS(1768), - [anon_sym_overlay] = ACTIONS(1768), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_as] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), - [aux_sym__val_number_decimal_token1] = ACTIONS(1768), - [aux_sym__val_number_decimal_token2] = ACTIONS(1768), - [anon_sym_DOT2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1768), - [aux_sym__val_number_token1] = ACTIONS(1768), - [aux_sym__val_number_token2] = ACTIONS(1768), - [aux_sym__val_number_token3] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [sym__str_single_quotes] = ACTIONS(1768), - [sym__str_back_ticks] = ACTIONS(1768), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), - [sym__entry_separator] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(121), - }, - [323] = { - [sym_cell_path] = STATE(551), - [sym_path] = STATE(482), - [sym_comment] = STATE(323), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1772), - [anon_sym_alias] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_let_DASHenv] = ACTIONS(1772), - [anon_sym_mut] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [aux_sym_cmd_identifier_token1] = ACTIONS(1772), - [aux_sym_cmd_identifier_token2] = ACTIONS(1772), - [aux_sym_cmd_identifier_token3] = ACTIONS(1772), - [aux_sym_cmd_identifier_token4] = ACTIONS(1772), - [aux_sym_cmd_identifier_token5] = ACTIONS(1772), - [aux_sym_cmd_identifier_token6] = ACTIONS(1772), - [aux_sym_cmd_identifier_token7] = ACTIONS(1772), - [aux_sym_cmd_identifier_token8] = ACTIONS(1772), - [aux_sym_cmd_identifier_token9] = ACTIONS(1772), - [aux_sym_cmd_identifier_token10] = ACTIONS(1772), - [aux_sym_cmd_identifier_token11] = ACTIONS(1772), - [aux_sym_cmd_identifier_token12] = ACTIONS(1772), - [aux_sym_cmd_identifier_token13] = ACTIONS(1772), - [aux_sym_cmd_identifier_token14] = ACTIONS(1772), - [aux_sym_cmd_identifier_token15] = ACTIONS(1772), - [aux_sym_cmd_identifier_token16] = ACTIONS(1772), - [aux_sym_cmd_identifier_token17] = ACTIONS(1772), - [aux_sym_cmd_identifier_token18] = ACTIONS(1772), - [aux_sym_cmd_identifier_token19] = ACTIONS(1772), - [aux_sym_cmd_identifier_token20] = ACTIONS(1772), - [aux_sym_cmd_identifier_token21] = ACTIONS(1772), - [aux_sym_cmd_identifier_token22] = ACTIONS(1772), - [aux_sym_cmd_identifier_token23] = ACTIONS(1772), - [aux_sym_cmd_identifier_token24] = ACTIONS(1772), - [aux_sym_cmd_identifier_token25] = ACTIONS(1772), - [aux_sym_cmd_identifier_token26] = ACTIONS(1772), - [aux_sym_cmd_identifier_token27] = ACTIONS(1772), - [aux_sym_cmd_identifier_token28] = ACTIONS(1772), - [aux_sym_cmd_identifier_token29] = ACTIONS(1772), - [aux_sym_cmd_identifier_token30] = ACTIONS(1772), - [aux_sym_cmd_identifier_token31] = ACTIONS(1772), - [aux_sym_cmd_identifier_token32] = ACTIONS(1772), - [aux_sym_cmd_identifier_token33] = ACTIONS(1772), - [aux_sym_cmd_identifier_token34] = ACTIONS(1772), - [aux_sym_cmd_identifier_token35] = ACTIONS(1772), - [aux_sym_cmd_identifier_token36] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1772), - [aux_sym_cmd_identifier_token38] = ACTIONS(1772), - [aux_sym_cmd_identifier_token39] = ACTIONS(1772), - [aux_sym_cmd_identifier_token40] = ACTIONS(1772), - [anon_sym_def] = ACTIONS(1772), - [anon_sym_export_DASHenv] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_module] = ACTIONS(1772), - [anon_sym_use] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1772), - [anon_sym_error] = ACTIONS(1772), - [anon_sym_list] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1772), - [anon_sym_loop] = ACTIONS(1772), - [anon_sym_make] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_do] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1772), - [anon_sym_match] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_try] = ACTIONS(1772), - [anon_sym_catch] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_source] = ACTIONS(1772), - [anon_sym_source_DASHenv] = ACTIONS(1772), - [anon_sym_register] = ACTIONS(1772), - [anon_sym_hide] = ACTIONS(1772), - [anon_sym_hide_DASHenv] = ACTIONS(1772), - [anon_sym_overlay] = ACTIONS(1772), - [anon_sym_new] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), - [aux_sym__val_number_decimal_token1] = ACTIONS(1772), - [aux_sym__val_number_decimal_token2] = ACTIONS(1772), - [anon_sym_DOT2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1772), - [aux_sym__val_number_token1] = ACTIONS(1772), - [aux_sym__val_number_token2] = ACTIONS(1772), - [aux_sym__val_number_token3] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym__str_single_quotes] = ACTIONS(1772), - [sym__str_back_ticks] = ACTIONS(1772), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), - [sym__entry_separator] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(121), - }, - [324] = { - [sym_cell_path] = STATE(552), - [sym_path] = STATE(482), - [sym_comment] = STATE(324), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1776), - [anon_sym_alias] = ACTIONS(1776), - [anon_sym_let] = ACTIONS(1776), - [anon_sym_let_DASHenv] = ACTIONS(1776), - [anon_sym_mut] = ACTIONS(1776), - [anon_sym_const] = ACTIONS(1776), - [aux_sym_cmd_identifier_token1] = ACTIONS(1776), - [aux_sym_cmd_identifier_token2] = ACTIONS(1776), - [aux_sym_cmd_identifier_token3] = ACTIONS(1776), - [aux_sym_cmd_identifier_token4] = ACTIONS(1776), - [aux_sym_cmd_identifier_token5] = ACTIONS(1776), - [aux_sym_cmd_identifier_token6] = ACTIONS(1776), - [aux_sym_cmd_identifier_token7] = ACTIONS(1776), - [aux_sym_cmd_identifier_token8] = ACTIONS(1776), - [aux_sym_cmd_identifier_token9] = ACTIONS(1776), - [aux_sym_cmd_identifier_token10] = ACTIONS(1776), - [aux_sym_cmd_identifier_token11] = ACTIONS(1776), - [aux_sym_cmd_identifier_token12] = ACTIONS(1776), - [aux_sym_cmd_identifier_token13] = ACTIONS(1776), - [aux_sym_cmd_identifier_token14] = ACTIONS(1776), - [aux_sym_cmd_identifier_token15] = ACTIONS(1776), - [aux_sym_cmd_identifier_token16] = ACTIONS(1776), - [aux_sym_cmd_identifier_token17] = ACTIONS(1776), - [aux_sym_cmd_identifier_token18] = ACTIONS(1776), - [aux_sym_cmd_identifier_token19] = ACTIONS(1776), - [aux_sym_cmd_identifier_token20] = ACTIONS(1776), - [aux_sym_cmd_identifier_token21] = ACTIONS(1776), - [aux_sym_cmd_identifier_token22] = ACTIONS(1776), - [aux_sym_cmd_identifier_token23] = ACTIONS(1776), - [aux_sym_cmd_identifier_token24] = ACTIONS(1776), - [aux_sym_cmd_identifier_token25] = ACTIONS(1776), - [aux_sym_cmd_identifier_token26] = ACTIONS(1776), - [aux_sym_cmd_identifier_token27] = ACTIONS(1776), - [aux_sym_cmd_identifier_token28] = ACTIONS(1776), - [aux_sym_cmd_identifier_token29] = ACTIONS(1776), - [aux_sym_cmd_identifier_token30] = ACTIONS(1776), - [aux_sym_cmd_identifier_token31] = ACTIONS(1776), - [aux_sym_cmd_identifier_token32] = ACTIONS(1776), - [aux_sym_cmd_identifier_token33] = ACTIONS(1776), - [aux_sym_cmd_identifier_token34] = ACTIONS(1776), - [aux_sym_cmd_identifier_token35] = ACTIONS(1776), - [aux_sym_cmd_identifier_token36] = ACTIONS(1776), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [anon_sym_null] = ACTIONS(1776), - [aux_sym_cmd_identifier_token38] = ACTIONS(1776), - [aux_sym_cmd_identifier_token39] = ACTIONS(1776), - [aux_sym_cmd_identifier_token40] = ACTIONS(1776), - [anon_sym_def] = ACTIONS(1776), - [anon_sym_export_DASHenv] = ACTIONS(1776), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_module] = ACTIONS(1776), - [anon_sym_use] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_error] = ACTIONS(1776), - [anon_sym_list] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_in] = ACTIONS(1776), - [anon_sym_loop] = ACTIONS(1776), - [anon_sym_make] = ACTIONS(1776), - [anon_sym_while] = ACTIONS(1776), - [anon_sym_do] = ACTIONS(1776), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_else] = ACTIONS(1776), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_try] = ACTIONS(1776), - [anon_sym_catch] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_source] = ACTIONS(1776), - [anon_sym_source_DASHenv] = ACTIONS(1776), - [anon_sym_register] = ACTIONS(1776), - [anon_sym_hide] = ACTIONS(1776), - [anon_sym_hide_DASHenv] = ACTIONS(1776), - [anon_sym_overlay] = ACTIONS(1776), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_as] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1776), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1776), - [aux_sym__val_number_decimal_token1] = ACTIONS(1776), - [aux_sym__val_number_decimal_token2] = ACTIONS(1776), - [anon_sym_DOT2] = ACTIONS(1776), - [aux_sym__val_number_decimal_token3] = ACTIONS(1776), - [aux_sym__val_number_token1] = ACTIONS(1776), - [aux_sym__val_number_token2] = ACTIONS(1776), - [aux_sym__val_number_token3] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym__str_single_quotes] = ACTIONS(1776), - [sym__str_back_ticks] = ACTIONS(1776), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1776), - [sym__entry_separator] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(121), - }, - [325] = { - [sym_cell_path] = STATE(553), - [sym_path] = STATE(482), - [sym_comment] = STATE(325), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1780), - [anon_sym_alias] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_let_DASHenv] = ACTIONS(1780), - [anon_sym_mut] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [aux_sym_cmd_identifier_token1] = ACTIONS(1780), - [aux_sym_cmd_identifier_token2] = ACTIONS(1780), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [aux_sym_cmd_identifier_token6] = ACTIONS(1780), - [aux_sym_cmd_identifier_token7] = ACTIONS(1780), - [aux_sym_cmd_identifier_token8] = ACTIONS(1780), - [aux_sym_cmd_identifier_token9] = ACTIONS(1780), - [aux_sym_cmd_identifier_token10] = ACTIONS(1780), - [aux_sym_cmd_identifier_token11] = ACTIONS(1780), - [aux_sym_cmd_identifier_token12] = ACTIONS(1780), - [aux_sym_cmd_identifier_token13] = ACTIONS(1780), - [aux_sym_cmd_identifier_token14] = ACTIONS(1780), - [aux_sym_cmd_identifier_token15] = ACTIONS(1780), - [aux_sym_cmd_identifier_token16] = ACTIONS(1780), - [aux_sym_cmd_identifier_token17] = ACTIONS(1780), - [aux_sym_cmd_identifier_token18] = ACTIONS(1780), - [aux_sym_cmd_identifier_token19] = ACTIONS(1780), - [aux_sym_cmd_identifier_token20] = ACTIONS(1780), - [aux_sym_cmd_identifier_token21] = ACTIONS(1780), - [aux_sym_cmd_identifier_token22] = ACTIONS(1780), - [aux_sym_cmd_identifier_token23] = ACTIONS(1780), - [aux_sym_cmd_identifier_token24] = ACTIONS(1780), - [aux_sym_cmd_identifier_token25] = ACTIONS(1780), - [aux_sym_cmd_identifier_token26] = ACTIONS(1780), - [aux_sym_cmd_identifier_token27] = ACTIONS(1780), - [aux_sym_cmd_identifier_token28] = ACTIONS(1780), - [aux_sym_cmd_identifier_token29] = ACTIONS(1780), - [aux_sym_cmd_identifier_token30] = ACTIONS(1780), - [aux_sym_cmd_identifier_token31] = ACTIONS(1780), - [aux_sym_cmd_identifier_token32] = ACTIONS(1780), - [aux_sym_cmd_identifier_token33] = ACTIONS(1780), - [aux_sym_cmd_identifier_token34] = ACTIONS(1780), - [aux_sym_cmd_identifier_token35] = ACTIONS(1780), - [aux_sym_cmd_identifier_token36] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [aux_sym_cmd_identifier_token38] = ACTIONS(1780), - [aux_sym_cmd_identifier_token39] = ACTIONS(1780), - [aux_sym_cmd_identifier_token40] = ACTIONS(1780), - [anon_sym_def] = ACTIONS(1780), - [anon_sym_export_DASHenv] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_module] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_error] = ACTIONS(1780), - [anon_sym_list] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_make] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_source] = ACTIONS(1780), - [anon_sym_source_DASHenv] = ACTIONS(1780), - [anon_sym_register] = ACTIONS(1780), - [anon_sym_hide] = ACTIONS(1780), - [anon_sym_hide_DASHenv] = ACTIONS(1780), - [anon_sym_overlay] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1780), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1780), - [anon_sym_DOT2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1780), - [aux_sym__val_number_token1] = ACTIONS(1780), - [aux_sym__val_number_token2] = ACTIONS(1780), - [aux_sym__val_number_token3] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym__str_single_quotes] = ACTIONS(1780), - [sym__str_back_ticks] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1780), - [sym__entry_separator] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(121), + [308] = { + [sym_cell_path] = STATE(569), + [sym_path] = STATE(472), + [sym_comment] = STATE(308), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_alias] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_let_DASHenv] = ACTIONS(1782), + [anon_sym_mut] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [aux_sym_cmd_identifier_token1] = ACTIONS(1782), + [aux_sym_cmd_identifier_token2] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1782), + [aux_sym_cmd_identifier_token4] = ACTIONS(1782), + [aux_sym_cmd_identifier_token5] = ACTIONS(1782), + [aux_sym_cmd_identifier_token6] = ACTIONS(1782), + [aux_sym_cmd_identifier_token7] = ACTIONS(1782), + [aux_sym_cmd_identifier_token8] = ACTIONS(1782), + [aux_sym_cmd_identifier_token9] = ACTIONS(1782), + [aux_sym_cmd_identifier_token10] = ACTIONS(1782), + [aux_sym_cmd_identifier_token11] = ACTIONS(1782), + [aux_sym_cmd_identifier_token12] = ACTIONS(1782), + [aux_sym_cmd_identifier_token13] = ACTIONS(1782), + [aux_sym_cmd_identifier_token14] = ACTIONS(1782), + [aux_sym_cmd_identifier_token15] = ACTIONS(1782), + [aux_sym_cmd_identifier_token16] = ACTIONS(1782), + [aux_sym_cmd_identifier_token17] = ACTIONS(1782), + [aux_sym_cmd_identifier_token18] = ACTIONS(1782), + [aux_sym_cmd_identifier_token19] = ACTIONS(1782), + [aux_sym_cmd_identifier_token20] = ACTIONS(1782), + [aux_sym_cmd_identifier_token21] = ACTIONS(1782), + [aux_sym_cmd_identifier_token22] = ACTIONS(1782), + [aux_sym_cmd_identifier_token23] = ACTIONS(1782), + [aux_sym_cmd_identifier_token24] = ACTIONS(1782), + [aux_sym_cmd_identifier_token25] = ACTIONS(1782), + [aux_sym_cmd_identifier_token26] = ACTIONS(1782), + [aux_sym_cmd_identifier_token27] = ACTIONS(1782), + [aux_sym_cmd_identifier_token28] = ACTIONS(1782), + [aux_sym_cmd_identifier_token29] = ACTIONS(1782), + [aux_sym_cmd_identifier_token30] = ACTIONS(1782), + [aux_sym_cmd_identifier_token31] = ACTIONS(1782), + [aux_sym_cmd_identifier_token32] = ACTIONS(1782), + [aux_sym_cmd_identifier_token33] = ACTIONS(1782), + [aux_sym_cmd_identifier_token34] = ACTIONS(1782), + [aux_sym_cmd_identifier_token35] = ACTIONS(1782), + [aux_sym_cmd_identifier_token36] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token38] = ACTIONS(1782), + [aux_sym_cmd_identifier_token39] = ACTIONS(1782), + [aux_sym_cmd_identifier_token40] = ACTIONS(1782), + [anon_sym_def] = ACTIONS(1782), + [anon_sym_export_DASHenv] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_error] = ACTIONS(1782), + [anon_sym_list] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_make] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_catch] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_source] = ACTIONS(1782), + [anon_sym_source_DASHenv] = ACTIONS(1782), + [anon_sym_register] = ACTIONS(1782), + [anon_sym_hide] = ACTIONS(1782), + [anon_sym_hide_DASHenv] = ACTIONS(1782), + [anon_sym_overlay] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1782), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1782), + [aux_sym__val_number_decimal_token4] = ACTIONS(1782), + [aux_sym__val_number_token1] = ACTIONS(1782), + [aux_sym__val_number_token2] = ACTIONS(1782), + [aux_sym__val_number_token3] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym__str_single_quotes] = ACTIONS(1782), + [sym__str_back_ticks] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1782), + [sym__entry_separator] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(3), }, - [326] = { - [sym_cell_path] = STATE(554), - [sym_path] = STATE(482), - [sym_comment] = STATE(326), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1784), - [anon_sym_alias] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_let_DASHenv] = ACTIONS(1784), - [anon_sym_mut] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [aux_sym_cmd_identifier_token1] = ACTIONS(1784), - [aux_sym_cmd_identifier_token2] = ACTIONS(1784), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [aux_sym_cmd_identifier_token6] = ACTIONS(1784), - [aux_sym_cmd_identifier_token7] = ACTIONS(1784), - [aux_sym_cmd_identifier_token8] = ACTIONS(1784), - [aux_sym_cmd_identifier_token9] = ACTIONS(1784), - [aux_sym_cmd_identifier_token10] = ACTIONS(1784), - [aux_sym_cmd_identifier_token11] = ACTIONS(1784), - [aux_sym_cmd_identifier_token12] = ACTIONS(1784), - [aux_sym_cmd_identifier_token13] = ACTIONS(1784), - [aux_sym_cmd_identifier_token14] = ACTIONS(1784), - [aux_sym_cmd_identifier_token15] = ACTIONS(1784), - [aux_sym_cmd_identifier_token16] = ACTIONS(1784), - [aux_sym_cmd_identifier_token17] = ACTIONS(1784), - [aux_sym_cmd_identifier_token18] = ACTIONS(1784), - [aux_sym_cmd_identifier_token19] = ACTIONS(1784), - [aux_sym_cmd_identifier_token20] = ACTIONS(1784), - [aux_sym_cmd_identifier_token21] = ACTIONS(1784), - [aux_sym_cmd_identifier_token22] = ACTIONS(1784), - [aux_sym_cmd_identifier_token23] = ACTIONS(1784), - [aux_sym_cmd_identifier_token24] = ACTIONS(1784), - [aux_sym_cmd_identifier_token25] = ACTIONS(1784), - [aux_sym_cmd_identifier_token26] = ACTIONS(1784), - [aux_sym_cmd_identifier_token27] = ACTIONS(1784), - [aux_sym_cmd_identifier_token28] = ACTIONS(1784), - [aux_sym_cmd_identifier_token29] = ACTIONS(1784), - [aux_sym_cmd_identifier_token30] = ACTIONS(1784), - [aux_sym_cmd_identifier_token31] = ACTIONS(1784), - [aux_sym_cmd_identifier_token32] = ACTIONS(1784), - [aux_sym_cmd_identifier_token33] = ACTIONS(1784), - [aux_sym_cmd_identifier_token34] = ACTIONS(1784), - [aux_sym_cmd_identifier_token35] = ACTIONS(1784), - [aux_sym_cmd_identifier_token36] = ACTIONS(1784), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_null] = ACTIONS(1784), - [aux_sym_cmd_identifier_token38] = ACTIONS(1784), - [aux_sym_cmd_identifier_token39] = ACTIONS(1784), - [aux_sym_cmd_identifier_token40] = ACTIONS(1784), - [anon_sym_def] = ACTIONS(1784), - [anon_sym_export_DASHenv] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_module] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1784), - [anon_sym_error] = ACTIONS(1784), - [anon_sym_list] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_loop] = ACTIONS(1784), - [anon_sym_make] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_catch] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_source] = ACTIONS(1784), - [anon_sym_source_DASHenv] = ACTIONS(1784), - [anon_sym_register] = ACTIONS(1784), - [anon_sym_hide] = ACTIONS(1784), - [anon_sym_hide_DASHenv] = ACTIONS(1784), - [anon_sym_overlay] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1784), - [aux_sym__val_number_decimal_token1] = ACTIONS(1784), - [aux_sym__val_number_decimal_token2] = ACTIONS(1784), - [anon_sym_DOT2] = ACTIONS(1784), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(1784), - [aux_sym__val_number_token2] = ACTIONS(1784), - [aux_sym__val_number_token3] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1784), - [sym__str_single_quotes] = ACTIONS(1784), - [sym__str_back_ticks] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1784), - [sym__entry_separator] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(121), + [309] = { + [sym_comment] = STATE(309), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1648), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1648), + [aux_sym_cmd_identifier_token40] = ACTIONS(1648), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1648), + [aux_sym__val_number_decimal_token3] = ACTIONS(1648), + [aux_sym__val_number_decimal_token4] = ACTIONS(1648), + [aux_sym__val_number_token1] = ACTIONS(1648), + [aux_sym__val_number_token2] = ACTIONS(1648), + [aux_sym__val_number_token3] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [sym__str_single_quotes] = ACTIONS(1648), + [sym__str_back_ticks] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), + [sym__entry_separator] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(3), }, - [327] = { - [sym_cell_path] = STATE(555), - [sym_path] = STATE(482), - [sym_comment] = STATE(327), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_alias] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_let_DASHenv] = ACTIONS(1788), - [anon_sym_mut] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [aux_sym_cmd_identifier_token1] = ACTIONS(1788), - [aux_sym_cmd_identifier_token2] = ACTIONS(1788), - [aux_sym_cmd_identifier_token3] = ACTIONS(1788), - [aux_sym_cmd_identifier_token4] = ACTIONS(1788), - [aux_sym_cmd_identifier_token5] = ACTIONS(1788), - [aux_sym_cmd_identifier_token6] = ACTIONS(1788), - [aux_sym_cmd_identifier_token7] = ACTIONS(1788), - [aux_sym_cmd_identifier_token8] = ACTIONS(1788), - [aux_sym_cmd_identifier_token9] = ACTIONS(1788), - [aux_sym_cmd_identifier_token10] = ACTIONS(1788), - [aux_sym_cmd_identifier_token11] = ACTIONS(1788), - [aux_sym_cmd_identifier_token12] = ACTIONS(1788), - [aux_sym_cmd_identifier_token13] = ACTIONS(1788), - [aux_sym_cmd_identifier_token14] = ACTIONS(1788), - [aux_sym_cmd_identifier_token15] = ACTIONS(1788), - [aux_sym_cmd_identifier_token16] = ACTIONS(1788), - [aux_sym_cmd_identifier_token17] = ACTIONS(1788), - [aux_sym_cmd_identifier_token18] = ACTIONS(1788), - [aux_sym_cmd_identifier_token19] = ACTIONS(1788), - [aux_sym_cmd_identifier_token20] = ACTIONS(1788), - [aux_sym_cmd_identifier_token21] = ACTIONS(1788), - [aux_sym_cmd_identifier_token22] = ACTIONS(1788), - [aux_sym_cmd_identifier_token23] = ACTIONS(1788), - [aux_sym_cmd_identifier_token24] = ACTIONS(1788), - [aux_sym_cmd_identifier_token25] = ACTIONS(1788), - [aux_sym_cmd_identifier_token26] = ACTIONS(1788), - [aux_sym_cmd_identifier_token27] = ACTIONS(1788), - [aux_sym_cmd_identifier_token28] = ACTIONS(1788), - [aux_sym_cmd_identifier_token29] = ACTIONS(1788), - [aux_sym_cmd_identifier_token30] = ACTIONS(1788), - [aux_sym_cmd_identifier_token31] = ACTIONS(1788), - [aux_sym_cmd_identifier_token32] = ACTIONS(1788), - [aux_sym_cmd_identifier_token33] = ACTIONS(1788), - [aux_sym_cmd_identifier_token34] = ACTIONS(1788), - [aux_sym_cmd_identifier_token35] = ACTIONS(1788), - [aux_sym_cmd_identifier_token36] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [anon_sym_null] = ACTIONS(1788), - [aux_sym_cmd_identifier_token38] = ACTIONS(1788), - [aux_sym_cmd_identifier_token39] = ACTIONS(1788), - [aux_sym_cmd_identifier_token40] = ACTIONS(1788), - [anon_sym_def] = ACTIONS(1788), - [anon_sym_export_DASHenv] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1788), - [anon_sym_error] = ACTIONS(1788), - [anon_sym_list] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_make] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_do] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_else] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_try] = ACTIONS(1788), - [anon_sym_catch] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_source] = ACTIONS(1788), - [anon_sym_source_DASHenv] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_hide] = ACTIONS(1788), - [anon_sym_hide_DASHenv] = ACTIONS(1788), - [anon_sym_overlay] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_as] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1788), - [anon_sym_DOT2] = ACTIONS(1788), - [aux_sym__val_number_decimal_token3] = ACTIONS(1788), - [aux_sym__val_number_token1] = ACTIONS(1788), - [aux_sym__val_number_token2] = ACTIONS(1788), - [aux_sym__val_number_token3] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym__str_single_quotes] = ACTIONS(1788), - [sym__str_back_ticks] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), - [sym__entry_separator] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(121), + [310] = { + [sym_comment] = STATE(310), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, - [328] = { - [sym_cell_path] = STATE(556), - [sym_path] = STATE(482), - [sym_comment] = STATE(328), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1792), - [anon_sym_alias] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_let_DASHenv] = ACTIONS(1792), - [anon_sym_mut] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [aux_sym_cmd_identifier_token1] = ACTIONS(1792), - [aux_sym_cmd_identifier_token2] = ACTIONS(1792), - [aux_sym_cmd_identifier_token3] = ACTIONS(1792), - [aux_sym_cmd_identifier_token4] = ACTIONS(1792), - [aux_sym_cmd_identifier_token5] = ACTIONS(1792), - [aux_sym_cmd_identifier_token6] = ACTIONS(1792), - [aux_sym_cmd_identifier_token7] = ACTIONS(1792), - [aux_sym_cmd_identifier_token8] = ACTIONS(1792), - [aux_sym_cmd_identifier_token9] = ACTIONS(1792), - [aux_sym_cmd_identifier_token10] = ACTIONS(1792), - [aux_sym_cmd_identifier_token11] = ACTIONS(1792), - [aux_sym_cmd_identifier_token12] = ACTIONS(1792), - [aux_sym_cmd_identifier_token13] = ACTIONS(1792), - [aux_sym_cmd_identifier_token14] = ACTIONS(1792), - [aux_sym_cmd_identifier_token15] = ACTIONS(1792), - [aux_sym_cmd_identifier_token16] = ACTIONS(1792), - [aux_sym_cmd_identifier_token17] = ACTIONS(1792), - [aux_sym_cmd_identifier_token18] = ACTIONS(1792), - [aux_sym_cmd_identifier_token19] = ACTIONS(1792), - [aux_sym_cmd_identifier_token20] = ACTIONS(1792), - [aux_sym_cmd_identifier_token21] = ACTIONS(1792), - [aux_sym_cmd_identifier_token22] = ACTIONS(1792), - [aux_sym_cmd_identifier_token23] = ACTIONS(1792), - [aux_sym_cmd_identifier_token24] = ACTIONS(1792), - [aux_sym_cmd_identifier_token25] = ACTIONS(1792), - [aux_sym_cmd_identifier_token26] = ACTIONS(1792), - [aux_sym_cmd_identifier_token27] = ACTIONS(1792), - [aux_sym_cmd_identifier_token28] = ACTIONS(1792), - [aux_sym_cmd_identifier_token29] = ACTIONS(1792), - [aux_sym_cmd_identifier_token30] = ACTIONS(1792), - [aux_sym_cmd_identifier_token31] = ACTIONS(1792), - [aux_sym_cmd_identifier_token32] = ACTIONS(1792), - [aux_sym_cmd_identifier_token33] = ACTIONS(1792), - [aux_sym_cmd_identifier_token34] = ACTIONS(1792), - [aux_sym_cmd_identifier_token35] = ACTIONS(1792), - [aux_sym_cmd_identifier_token36] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1792), - [aux_sym_cmd_identifier_token38] = ACTIONS(1792), - [aux_sym_cmd_identifier_token39] = ACTIONS(1792), - [aux_sym_cmd_identifier_token40] = ACTIONS(1792), - [anon_sym_def] = ACTIONS(1792), - [anon_sym_export_DASHenv] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_module] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_error] = ACTIONS(1792), - [anon_sym_list] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_make] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_do] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1792), - [anon_sym_catch] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_source] = ACTIONS(1792), - [anon_sym_source_DASHenv] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1792), - [anon_sym_hide] = ACTIONS(1792), - [anon_sym_hide_DASHenv] = ACTIONS(1792), - [anon_sym_overlay] = ACTIONS(1792), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1792), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [anon_sym_DOT2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1792), - [sym__entry_separator] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(121), + [311] = { + [sym_comment] = STATE(311), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(1792), + [aux_sym__immediate_decimal_token2] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3), }, - [329] = { - [sym_cell_path] = STATE(557), - [sym_path] = STATE(482), - [sym_comment] = STATE(329), - [aux_sym_cell_path_repeat1] = STATE(344), + [312] = { + [sym_cell_path] = STATE(547), + [sym_path] = STATE(472), + [sym_comment] = STATE(312), + [aux_sym_cell_path_repeat1] = STATE(386), [anon_sym_export] = ACTIONS(1796), [anon_sym_alias] = ACTIONS(1796), [anon_sym_let] = ACTIONS(1796), @@ -111353,14 +114819,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1796), [anon_sym_new] = ACTIONS(1796), [anon_sym_as] = ACTIONS(1796), - [anon_sym_PLUS] = ACTIONS(1796), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1685), + [anon_sym_DOT] = ACTIONS(1743), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), [aux_sym__val_number_decimal_token1] = ACTIONS(1796), [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [anon_sym_DOT2] = ACTIONS(1796), [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), [aux_sym__val_number_token1] = ACTIONS(1796), [aux_sym__val_number_token2] = ACTIONS(1796), [aux_sym__val_number_token3] = ACTIONS(1796), @@ -111369,13 +114834,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1796), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), [sym__entry_separator] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_POUND] = ACTIONS(3), }, - [330] = { - [sym_cell_path] = STATE(558), - [sym_path] = STATE(482), - [sym_comment] = STATE(330), - [aux_sym_cell_path_repeat1] = STATE(344), + [313] = { + [sym_comment] = STATE(313), [anon_sym_export] = ACTIONS(1800), [anon_sym_alias] = ACTIONS(1800), [anon_sym_let] = ACTIONS(1800), @@ -111405,49 +114868,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1800), [aux_sym_cmd_identifier_token22] = ACTIONS(1800), [aux_sym_cmd_identifier_token23] = ACTIONS(1800), - [aux_sym_cmd_identifier_token24] = ACTIONS(1800), + [aux_sym_cmd_identifier_token24] = ACTIONS(1802), [aux_sym_cmd_identifier_token25] = ACTIONS(1800), - [aux_sym_cmd_identifier_token26] = ACTIONS(1800), + [aux_sym_cmd_identifier_token26] = ACTIONS(1802), [aux_sym_cmd_identifier_token27] = ACTIONS(1800), [aux_sym_cmd_identifier_token28] = ACTIONS(1800), [aux_sym_cmd_identifier_token29] = ACTIONS(1800), [aux_sym_cmd_identifier_token30] = ACTIONS(1800), - [aux_sym_cmd_identifier_token31] = ACTIONS(1800), - [aux_sym_cmd_identifier_token32] = ACTIONS(1800), - [aux_sym_cmd_identifier_token33] = ACTIONS(1800), - [aux_sym_cmd_identifier_token34] = ACTIONS(1800), - [aux_sym_cmd_identifier_token35] = ACTIONS(1800), + [aux_sym_cmd_identifier_token31] = ACTIONS(1802), + [aux_sym_cmd_identifier_token32] = ACTIONS(1802), + [aux_sym_cmd_identifier_token33] = ACTIONS(1802), + [aux_sym_cmd_identifier_token34] = ACTIONS(1802), + [aux_sym_cmd_identifier_token35] = ACTIONS(1802), [aux_sym_cmd_identifier_token36] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [anon_sym_null] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), [aux_sym_cmd_identifier_token38] = ACTIONS(1800), - [aux_sym_cmd_identifier_token39] = ACTIONS(1800), - [aux_sym_cmd_identifier_token40] = ACTIONS(1800), + [aux_sym_cmd_identifier_token39] = ACTIONS(1802), + [aux_sym_cmd_identifier_token40] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), [anon_sym_def] = ACTIONS(1800), [anon_sym_export_DASHenv] = ACTIONS(1800), [anon_sym_extern] = ACTIONS(1800), [anon_sym_module] = ACTIONS(1800), [anon_sym_use] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), [anon_sym_DOLLAR] = ACTIONS(1800), [anon_sym_error] = ACTIONS(1800), - [anon_sym_list] = ACTIONS(1800), [anon_sym_DASH] = ACTIONS(1800), [anon_sym_break] = ACTIONS(1800), [anon_sym_continue] = ACTIONS(1800), [anon_sym_for] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), [anon_sym_loop] = ACTIONS(1800), - [anon_sym_make] = ACTIONS(1800), [anon_sym_while] = ACTIONS(1800), [anon_sym_do] = ACTIONS(1800), [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), [anon_sym_match] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), + [aux_sym_ctrl_match_token1] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1800), [anon_sym_try] = ACTIONS(1800), - [anon_sym_catch] = ACTIONS(1800), [anon_sym_return] = ACTIONS(1800), [anon_sym_source] = ACTIONS(1800), [anon_sym_source_DASHenv] = ACTIONS(1800), @@ -111455,31 +114917,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1800), [anon_sym_hide_DASHenv] = ACTIONS(1800), [anon_sym_overlay] = ACTIONS(1800), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1800), + [anon_sym_where] = ACTIONS(1802), + [aux_sym_expr_unary_token1] = ACTIONS(1802), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT] = ACTIONS(1802), [aux_sym__val_number_decimal_token1] = ACTIONS(1800), - [aux_sym__val_number_decimal_token2] = ACTIONS(1800), - [anon_sym_DOT2] = ACTIONS(1800), - [aux_sym__val_number_decimal_token3] = ACTIONS(1800), - [aux_sym__val_number_token1] = ACTIONS(1800), - [aux_sym__val_number_token2] = ACTIONS(1800), - [aux_sym__val_number_token3] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym__str_single_quotes] = ACTIONS(1800), - [sym__str_back_ticks] = ACTIONS(1800), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1800), - [sym__entry_separator] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [anon_sym_0b] = ACTIONS(1800), + [anon_sym_0o] = ACTIONS(1800), + [anon_sym_0x] = ACTIONS(1800), + [sym_val_date] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), + [aux_sym_env_var_token1] = ACTIONS(1800), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(247), }, - [331] = { - [sym_cell_path] = STATE(559), - [sym_path] = STATE(482), - [sym_comment] = STATE(331), - [aux_sym_cell_path_repeat1] = STATE(344), + [314] = { + [sym_comment] = STATE(314), + [anon_sym_export] = ACTIONS(1626), + [anon_sym_alias] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1626), + [anon_sym_let_DASHenv] = ACTIONS(1626), + [anon_sym_mut] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1626), + [aux_sym_cmd_identifier_token1] = ACTIONS(1626), + [aux_sym_cmd_identifier_token2] = ACTIONS(1626), + [aux_sym_cmd_identifier_token3] = ACTIONS(1626), + [aux_sym_cmd_identifier_token4] = ACTIONS(1626), + [aux_sym_cmd_identifier_token5] = ACTIONS(1626), + [aux_sym_cmd_identifier_token6] = ACTIONS(1626), + [aux_sym_cmd_identifier_token7] = ACTIONS(1626), + [aux_sym_cmd_identifier_token8] = ACTIONS(1626), + [aux_sym_cmd_identifier_token9] = ACTIONS(1626), + [aux_sym_cmd_identifier_token10] = ACTIONS(1626), + [aux_sym_cmd_identifier_token11] = ACTIONS(1626), + [aux_sym_cmd_identifier_token12] = ACTIONS(1626), + [aux_sym_cmd_identifier_token13] = ACTIONS(1626), + [aux_sym_cmd_identifier_token14] = ACTIONS(1626), + [aux_sym_cmd_identifier_token15] = ACTIONS(1626), + [aux_sym_cmd_identifier_token16] = ACTIONS(1626), + [aux_sym_cmd_identifier_token17] = ACTIONS(1626), + [aux_sym_cmd_identifier_token18] = ACTIONS(1626), + [aux_sym_cmd_identifier_token19] = ACTIONS(1626), + [aux_sym_cmd_identifier_token20] = ACTIONS(1626), + [aux_sym_cmd_identifier_token21] = ACTIONS(1626), + [aux_sym_cmd_identifier_token22] = ACTIONS(1626), + [aux_sym_cmd_identifier_token23] = ACTIONS(1626), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1626), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1626), + [aux_sym_cmd_identifier_token28] = ACTIONS(1626), + [aux_sym_cmd_identifier_token29] = ACTIONS(1626), + [aux_sym_cmd_identifier_token30] = ACTIONS(1626), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1628), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1626), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [anon_sym_null] = ACTIONS(1628), + [aux_sym_cmd_identifier_token38] = ACTIONS(1626), + [aux_sym_cmd_identifier_token39] = ACTIONS(1628), + [aux_sym_cmd_identifier_token40] = ACTIONS(1628), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_def] = ACTIONS(1626), + [anon_sym_export_DASHenv] = ACTIONS(1626), + [anon_sym_extern] = ACTIONS(1626), + [anon_sym_module] = ACTIONS(1626), + [anon_sym_use] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1626), + [anon_sym_error] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_loop] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_do] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [aux_sym_ctrl_match_token1] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1626), + [anon_sym_try] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_source] = ACTIONS(1626), + [anon_sym_source_DASHenv] = ACTIONS(1626), + [anon_sym_register] = ACTIONS(1626), + [anon_sym_hide] = ACTIONS(1626), + [anon_sym_hide_DASHenv] = ACTIONS(1626), + [anon_sym_overlay] = ACTIONS(1626), + [anon_sym_where] = ACTIONS(1628), + [aux_sym_expr_unary_token1] = ACTIONS(1628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), + [anon_sym_DOT_DOT_LT] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1626), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [anon_sym_0b] = ACTIONS(1626), + [anon_sym_0o] = ACTIONS(1626), + [anon_sym_0x] = ACTIONS(1626), + [sym_val_date] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [aux_sym_env_var_token1] = ACTIONS(1626), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(247), + }, + [315] = { + [sym_comment] = STATE(315), + [anon_sym_export] = ACTIONS(1681), + [anon_sym_alias] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1681), + [anon_sym_let_DASHenv] = ACTIONS(1681), + [anon_sym_mut] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [aux_sym_cmd_identifier_token1] = ACTIONS(1681), + [aux_sym_cmd_identifier_token2] = ACTIONS(1681), + [aux_sym_cmd_identifier_token3] = ACTIONS(1681), + [aux_sym_cmd_identifier_token4] = ACTIONS(1681), + [aux_sym_cmd_identifier_token5] = ACTIONS(1681), + [aux_sym_cmd_identifier_token6] = ACTIONS(1681), + [aux_sym_cmd_identifier_token7] = ACTIONS(1681), + [aux_sym_cmd_identifier_token8] = ACTIONS(1681), + [aux_sym_cmd_identifier_token9] = ACTIONS(1681), + [aux_sym_cmd_identifier_token10] = ACTIONS(1681), + [aux_sym_cmd_identifier_token11] = ACTIONS(1681), + [aux_sym_cmd_identifier_token12] = ACTIONS(1681), + [aux_sym_cmd_identifier_token13] = ACTIONS(1681), + [aux_sym_cmd_identifier_token14] = ACTIONS(1681), + [aux_sym_cmd_identifier_token15] = ACTIONS(1681), + [aux_sym_cmd_identifier_token16] = ACTIONS(1681), + [aux_sym_cmd_identifier_token17] = ACTIONS(1681), + [aux_sym_cmd_identifier_token18] = ACTIONS(1681), + [aux_sym_cmd_identifier_token19] = ACTIONS(1681), + [aux_sym_cmd_identifier_token20] = ACTIONS(1681), + [aux_sym_cmd_identifier_token21] = ACTIONS(1681), + [aux_sym_cmd_identifier_token22] = ACTIONS(1681), + [aux_sym_cmd_identifier_token23] = ACTIONS(1681), + [aux_sym_cmd_identifier_token24] = ACTIONS(1683), + [aux_sym_cmd_identifier_token25] = ACTIONS(1681), + [aux_sym_cmd_identifier_token26] = ACTIONS(1683), + [aux_sym_cmd_identifier_token27] = ACTIONS(1681), + [aux_sym_cmd_identifier_token28] = ACTIONS(1681), + [aux_sym_cmd_identifier_token29] = ACTIONS(1681), + [aux_sym_cmd_identifier_token30] = ACTIONS(1681), + [aux_sym_cmd_identifier_token31] = ACTIONS(1683), + [aux_sym_cmd_identifier_token32] = ACTIONS(1683), + [aux_sym_cmd_identifier_token33] = ACTIONS(1683), + [aux_sym_cmd_identifier_token34] = ACTIONS(1683), + [aux_sym_cmd_identifier_token35] = ACTIONS(1683), + [aux_sym_cmd_identifier_token36] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [aux_sym_cmd_identifier_token38] = ACTIONS(1681), + [aux_sym_cmd_identifier_token39] = ACTIONS(1683), + [aux_sym_cmd_identifier_token40] = ACTIONS(1683), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_def] = ACTIONS(1681), + [anon_sym_export_DASHenv] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1681), + [anon_sym_module] = ACTIONS(1681), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_error] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_loop] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_match] = ACTIONS(1681), + [aux_sym_ctrl_match_token1] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_try] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_source] = ACTIONS(1681), + [anon_sym_source_DASHenv] = ACTIONS(1681), + [anon_sym_register] = ACTIONS(1681), + [anon_sym_hide] = ACTIONS(1681), + [anon_sym_hide_DASHenv] = ACTIONS(1681), + [anon_sym_overlay] = ACTIONS(1681), + [anon_sym_where] = ACTIONS(1683), + [aux_sym_expr_unary_token1] = ACTIONS(1683), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1681), + [anon_sym_0o] = ACTIONS(1681), + [anon_sym_0x] = ACTIONS(1681), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [aux_sym_env_var_token1] = ACTIONS(1681), + [anon_sym_CARET] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(247), + }, + [316] = { + [sym_comment] = STATE(316), [anon_sym_export] = ACTIONS(1804), [anon_sym_alias] = ACTIONS(1804), [anon_sym_let] = ACTIONS(1804), @@ -111509,49 +115180,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1804), [aux_sym_cmd_identifier_token22] = ACTIONS(1804), [aux_sym_cmd_identifier_token23] = ACTIONS(1804), - [aux_sym_cmd_identifier_token24] = ACTIONS(1804), + [aux_sym_cmd_identifier_token24] = ACTIONS(1806), [aux_sym_cmd_identifier_token25] = ACTIONS(1804), - [aux_sym_cmd_identifier_token26] = ACTIONS(1804), + [aux_sym_cmd_identifier_token26] = ACTIONS(1806), [aux_sym_cmd_identifier_token27] = ACTIONS(1804), [aux_sym_cmd_identifier_token28] = ACTIONS(1804), [aux_sym_cmd_identifier_token29] = ACTIONS(1804), [aux_sym_cmd_identifier_token30] = ACTIONS(1804), - [aux_sym_cmd_identifier_token31] = ACTIONS(1804), - [aux_sym_cmd_identifier_token32] = ACTIONS(1804), - [aux_sym_cmd_identifier_token33] = ACTIONS(1804), - [aux_sym_cmd_identifier_token34] = ACTIONS(1804), - [aux_sym_cmd_identifier_token35] = ACTIONS(1804), + [aux_sym_cmd_identifier_token31] = ACTIONS(1806), + [aux_sym_cmd_identifier_token32] = ACTIONS(1806), + [aux_sym_cmd_identifier_token33] = ACTIONS(1806), + [aux_sym_cmd_identifier_token34] = ACTIONS(1806), + [aux_sym_cmd_identifier_token35] = ACTIONS(1806), [aux_sym_cmd_identifier_token36] = ACTIONS(1804), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_null] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1806), + [anon_sym_false] = ACTIONS(1806), + [anon_sym_null] = ACTIONS(1806), [aux_sym_cmd_identifier_token38] = ACTIONS(1804), - [aux_sym_cmd_identifier_token39] = ACTIONS(1804), - [aux_sym_cmd_identifier_token40] = ACTIONS(1804), + [aux_sym_cmd_identifier_token39] = ACTIONS(1806), + [aux_sym_cmd_identifier_token40] = ACTIONS(1806), + [sym__newline] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), [anon_sym_def] = ACTIONS(1804), [anon_sym_export_DASHenv] = ACTIONS(1804), [anon_sym_extern] = ACTIONS(1804), [anon_sym_module] = ACTIONS(1804), [anon_sym_use] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), [anon_sym_DOLLAR] = ACTIONS(1804), [anon_sym_error] = ACTIONS(1804), - [anon_sym_list] = ACTIONS(1804), [anon_sym_DASH] = ACTIONS(1804), [anon_sym_break] = ACTIONS(1804), [anon_sym_continue] = ACTIONS(1804), [anon_sym_for] = ACTIONS(1804), - [anon_sym_in] = ACTIONS(1804), [anon_sym_loop] = ACTIONS(1804), - [anon_sym_make] = ACTIONS(1804), [anon_sym_while] = ACTIONS(1804), [anon_sym_do] = ACTIONS(1804), [anon_sym_if] = ACTIONS(1804), - [anon_sym_else] = ACTIONS(1804), [anon_sym_match] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), + [aux_sym_ctrl_match_token1] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1804), [anon_sym_try] = ACTIONS(1804), - [anon_sym_catch] = ACTIONS(1804), [anon_sym_return] = ACTIONS(1804), [anon_sym_source] = ACTIONS(1804), [anon_sym_source_DASHenv] = ACTIONS(1804), @@ -111559,31 +115229,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1804), [anon_sym_hide_DASHenv] = ACTIONS(1804), [anon_sym_overlay] = ACTIONS(1804), - [anon_sym_new] = ACTIONS(1804), - [anon_sym_as] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1804), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1804), + [anon_sym_where] = ACTIONS(1806), + [aux_sym_expr_unary_token1] = ACTIONS(1806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1806), + [anon_sym_DOT_DOT_LT] = ACTIONS(1806), [aux_sym__val_number_decimal_token1] = ACTIONS(1804), - [aux_sym__val_number_decimal_token2] = ACTIONS(1804), - [anon_sym_DOT2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1804), - [aux_sym__val_number_token1] = ACTIONS(1804), - [aux_sym__val_number_token2] = ACTIONS(1804), - [aux_sym__val_number_token3] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym__str_single_quotes] = ACTIONS(1804), - [sym__str_back_ticks] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1804), - [sym__entry_separator] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__val_number_decimal_token2] = ACTIONS(1806), + [aux_sym__val_number_decimal_token3] = ACTIONS(1806), + [aux_sym__val_number_decimal_token4] = ACTIONS(1806), + [aux_sym__val_number_token1] = ACTIONS(1806), + [aux_sym__val_number_token2] = ACTIONS(1806), + [aux_sym__val_number_token3] = ACTIONS(1806), + [anon_sym_0b] = ACTIONS(1804), + [anon_sym_0o] = ACTIONS(1804), + [anon_sym_0x] = ACTIONS(1804), + [sym_val_date] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [sym__str_single_quotes] = ACTIONS(1806), + [sym__str_back_ticks] = ACTIONS(1806), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1806), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1806), + [aux_sym_env_var_token1] = ACTIONS(1804), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(247), }, - [332] = { - [sym_cell_path] = STATE(523), - [sym_path] = STATE(482), - [sym_comment] = STATE(332), - [aux_sym_cell_path_repeat1] = STATE(344), + [317] = { + [sym_cell_path] = STATE(548), + [sym_path] = STATE(472), + [sym_comment] = STATE(317), + [aux_sym_cell_path_repeat1] = STATE(386), [anon_sym_export] = ACTIONS(1808), [anon_sym_alias] = ACTIONS(1808), [anon_sym_let] = ACTIONS(1808), @@ -111665,14 +115339,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1808), [anon_sym_new] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1808), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1685), + [anon_sym_DOT] = ACTIONS(1743), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1808), [aux_sym__val_number_decimal_token1] = ACTIONS(1808), [aux_sym__val_number_decimal_token2] = ACTIONS(1808), - [anon_sym_DOT2] = ACTIONS(1808), [aux_sym__val_number_decimal_token3] = ACTIONS(1808), + [aux_sym__val_number_decimal_token4] = ACTIONS(1808), [aux_sym__val_number_token1] = ACTIONS(1808), [aux_sym__val_number_token2] = ACTIONS(1808), [aux_sym__val_number_token3] = ACTIONS(1808), @@ -111681,221 +115354,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1808), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1808), [sym__entry_separator] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_POUND] = ACTIONS(3), }, - [333] = { - [sym_cell_path] = STATE(560), - [sym_path] = STATE(482), - [sym_comment] = STATE(333), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1812), - [anon_sym_alias] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_let_DASHenv] = ACTIONS(1812), - [anon_sym_mut] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [aux_sym_cmd_identifier_token1] = ACTIONS(1812), - [aux_sym_cmd_identifier_token2] = ACTIONS(1812), - [aux_sym_cmd_identifier_token3] = ACTIONS(1812), - [aux_sym_cmd_identifier_token4] = ACTIONS(1812), - [aux_sym_cmd_identifier_token5] = ACTIONS(1812), - [aux_sym_cmd_identifier_token6] = ACTIONS(1812), - [aux_sym_cmd_identifier_token7] = ACTIONS(1812), - [aux_sym_cmd_identifier_token8] = ACTIONS(1812), - [aux_sym_cmd_identifier_token9] = ACTIONS(1812), - [aux_sym_cmd_identifier_token10] = ACTIONS(1812), - [aux_sym_cmd_identifier_token11] = ACTIONS(1812), - [aux_sym_cmd_identifier_token12] = ACTIONS(1812), - [aux_sym_cmd_identifier_token13] = ACTIONS(1812), - [aux_sym_cmd_identifier_token14] = ACTIONS(1812), - [aux_sym_cmd_identifier_token15] = ACTIONS(1812), - [aux_sym_cmd_identifier_token16] = ACTIONS(1812), - [aux_sym_cmd_identifier_token17] = ACTIONS(1812), - [aux_sym_cmd_identifier_token18] = ACTIONS(1812), - [aux_sym_cmd_identifier_token19] = ACTIONS(1812), - [aux_sym_cmd_identifier_token20] = ACTIONS(1812), - [aux_sym_cmd_identifier_token21] = ACTIONS(1812), - [aux_sym_cmd_identifier_token22] = ACTIONS(1812), - [aux_sym_cmd_identifier_token23] = ACTIONS(1812), - [aux_sym_cmd_identifier_token24] = ACTIONS(1812), - [aux_sym_cmd_identifier_token25] = ACTIONS(1812), - [aux_sym_cmd_identifier_token26] = ACTIONS(1812), - [aux_sym_cmd_identifier_token27] = ACTIONS(1812), - [aux_sym_cmd_identifier_token28] = ACTIONS(1812), - [aux_sym_cmd_identifier_token29] = ACTIONS(1812), - [aux_sym_cmd_identifier_token30] = ACTIONS(1812), - [aux_sym_cmd_identifier_token31] = ACTIONS(1812), - [aux_sym_cmd_identifier_token32] = ACTIONS(1812), - [aux_sym_cmd_identifier_token33] = ACTIONS(1812), - [aux_sym_cmd_identifier_token34] = ACTIONS(1812), - [aux_sym_cmd_identifier_token35] = ACTIONS(1812), - [aux_sym_cmd_identifier_token36] = ACTIONS(1812), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [anon_sym_null] = ACTIONS(1812), - [aux_sym_cmd_identifier_token38] = ACTIONS(1812), - [aux_sym_cmd_identifier_token39] = ACTIONS(1812), - [aux_sym_cmd_identifier_token40] = ACTIONS(1812), - [anon_sym_def] = ACTIONS(1812), - [anon_sym_export_DASHenv] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_module] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_error] = ACTIONS(1812), - [anon_sym_list] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_in] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_make] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_do] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_else] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_try] = ACTIONS(1812), - [anon_sym_catch] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_source] = ACTIONS(1812), - [anon_sym_source_DASHenv] = ACTIONS(1812), - [anon_sym_register] = ACTIONS(1812), - [anon_sym_hide] = ACTIONS(1812), - [anon_sym_hide_DASHenv] = ACTIONS(1812), - [anon_sym_overlay] = ACTIONS(1812), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_as] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1812), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1812), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = ACTIONS(1812), - [anon_sym_DOT2] = ACTIONS(1812), - [aux_sym__val_number_decimal_token3] = ACTIONS(1812), - [aux_sym__val_number_token1] = ACTIONS(1812), - [aux_sym__val_number_token2] = ACTIONS(1812), - [aux_sym__val_number_token3] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [sym__str_single_quotes] = ACTIONS(1812), - [sym__str_back_ticks] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1812), - [sym__entry_separator] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(121), + [318] = { + [sym_comment] = STATE(318), + [anon_sym_export] = ACTIONS(970), + [anon_sym_alias] = ACTIONS(970), + [anon_sym_let] = ACTIONS(970), + [anon_sym_let_DASHenv] = ACTIONS(970), + [anon_sym_mut] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [aux_sym_cmd_identifier_token1] = ACTIONS(970), + [aux_sym_cmd_identifier_token2] = ACTIONS(970), + [aux_sym_cmd_identifier_token3] = ACTIONS(970), + [aux_sym_cmd_identifier_token4] = ACTIONS(970), + [aux_sym_cmd_identifier_token5] = ACTIONS(970), + [aux_sym_cmd_identifier_token6] = ACTIONS(970), + [aux_sym_cmd_identifier_token7] = ACTIONS(970), + [aux_sym_cmd_identifier_token8] = ACTIONS(970), + [aux_sym_cmd_identifier_token9] = ACTIONS(970), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(970), + [aux_sym_cmd_identifier_token13] = ACTIONS(970), + [aux_sym_cmd_identifier_token14] = ACTIONS(970), + [aux_sym_cmd_identifier_token15] = ACTIONS(970), + [aux_sym_cmd_identifier_token16] = ACTIONS(970), + [aux_sym_cmd_identifier_token17] = ACTIONS(970), + [aux_sym_cmd_identifier_token18] = ACTIONS(970), + [aux_sym_cmd_identifier_token19] = ACTIONS(970), + [aux_sym_cmd_identifier_token20] = ACTIONS(970), + [aux_sym_cmd_identifier_token21] = ACTIONS(970), + [aux_sym_cmd_identifier_token22] = ACTIONS(970), + [aux_sym_cmd_identifier_token23] = ACTIONS(970), + [aux_sym_cmd_identifier_token24] = ACTIONS(970), + [aux_sym_cmd_identifier_token25] = ACTIONS(970), + [aux_sym_cmd_identifier_token26] = ACTIONS(970), + [aux_sym_cmd_identifier_token27] = ACTIONS(970), + [aux_sym_cmd_identifier_token28] = ACTIONS(970), + [aux_sym_cmd_identifier_token29] = ACTIONS(970), + [aux_sym_cmd_identifier_token30] = ACTIONS(970), + [aux_sym_cmd_identifier_token31] = ACTIONS(970), + [aux_sym_cmd_identifier_token32] = ACTIONS(970), + [aux_sym_cmd_identifier_token33] = ACTIONS(970), + [aux_sym_cmd_identifier_token34] = ACTIONS(970), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_null] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(970), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [anon_sym_def] = ACTIONS(970), + [anon_sym_export_DASHenv] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_use] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(970), + [anon_sym_list] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_in] = ACTIONS(970), + [anon_sym_loop] = ACTIONS(970), + [anon_sym_make] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_match] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(970), + [anon_sym_catch] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_source] = ACTIONS(970), + [anon_sym_source_DASHenv] = ACTIONS(970), + [anon_sym_register] = ACTIONS(970), + [anon_sym_hide] = ACTIONS(970), + [anon_sym_hide_DASHenv] = ACTIONS(970), + [anon_sym_overlay] = ACTIONS(970), + [anon_sym_new] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(1812), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), }, - [334] = { - [sym_cell_path] = STATE(561), - [sym_path] = STATE(482), - [sym_comment] = STATE(334), - [aux_sym_cell_path_repeat1] = STATE(344), - [anon_sym_export] = ACTIONS(1816), - [anon_sym_alias] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_let_DASHenv] = ACTIONS(1816), - [anon_sym_mut] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [aux_sym_cmd_identifier_token1] = ACTIONS(1816), - [aux_sym_cmd_identifier_token2] = ACTIONS(1816), - [aux_sym_cmd_identifier_token3] = ACTIONS(1816), - [aux_sym_cmd_identifier_token4] = ACTIONS(1816), - [aux_sym_cmd_identifier_token5] = ACTIONS(1816), - [aux_sym_cmd_identifier_token6] = ACTIONS(1816), - [aux_sym_cmd_identifier_token7] = ACTIONS(1816), - [aux_sym_cmd_identifier_token8] = ACTIONS(1816), - [aux_sym_cmd_identifier_token9] = ACTIONS(1816), - [aux_sym_cmd_identifier_token10] = ACTIONS(1816), - [aux_sym_cmd_identifier_token11] = ACTIONS(1816), - [aux_sym_cmd_identifier_token12] = ACTIONS(1816), - [aux_sym_cmd_identifier_token13] = ACTIONS(1816), - [aux_sym_cmd_identifier_token14] = ACTIONS(1816), - [aux_sym_cmd_identifier_token15] = ACTIONS(1816), - [aux_sym_cmd_identifier_token16] = ACTIONS(1816), - [aux_sym_cmd_identifier_token17] = ACTIONS(1816), - [aux_sym_cmd_identifier_token18] = ACTIONS(1816), - [aux_sym_cmd_identifier_token19] = ACTIONS(1816), - [aux_sym_cmd_identifier_token20] = ACTIONS(1816), - [aux_sym_cmd_identifier_token21] = ACTIONS(1816), - [aux_sym_cmd_identifier_token22] = ACTIONS(1816), - [aux_sym_cmd_identifier_token23] = ACTIONS(1816), + [319] = { + [sym_comment] = STATE(319), + [anon_sym_export] = ACTIONS(1814), + [anon_sym_alias] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1814), + [anon_sym_let_DASHenv] = ACTIONS(1814), + [anon_sym_mut] = ACTIONS(1814), + [anon_sym_const] = ACTIONS(1814), + [aux_sym_cmd_identifier_token1] = ACTIONS(1814), + [aux_sym_cmd_identifier_token2] = ACTIONS(1814), + [aux_sym_cmd_identifier_token3] = ACTIONS(1814), + [aux_sym_cmd_identifier_token4] = ACTIONS(1814), + [aux_sym_cmd_identifier_token5] = ACTIONS(1814), + [aux_sym_cmd_identifier_token6] = ACTIONS(1814), + [aux_sym_cmd_identifier_token7] = ACTIONS(1814), + [aux_sym_cmd_identifier_token8] = ACTIONS(1814), + [aux_sym_cmd_identifier_token9] = ACTIONS(1814), + [aux_sym_cmd_identifier_token10] = ACTIONS(1814), + [aux_sym_cmd_identifier_token11] = ACTIONS(1814), + [aux_sym_cmd_identifier_token12] = ACTIONS(1814), + [aux_sym_cmd_identifier_token13] = ACTIONS(1814), + [aux_sym_cmd_identifier_token14] = ACTIONS(1814), + [aux_sym_cmd_identifier_token15] = ACTIONS(1814), + [aux_sym_cmd_identifier_token16] = ACTIONS(1814), + [aux_sym_cmd_identifier_token17] = ACTIONS(1814), + [aux_sym_cmd_identifier_token18] = ACTIONS(1814), + [aux_sym_cmd_identifier_token19] = ACTIONS(1814), + [aux_sym_cmd_identifier_token20] = ACTIONS(1814), + [aux_sym_cmd_identifier_token21] = ACTIONS(1814), + [aux_sym_cmd_identifier_token22] = ACTIONS(1814), + [aux_sym_cmd_identifier_token23] = ACTIONS(1814), [aux_sym_cmd_identifier_token24] = ACTIONS(1816), - [aux_sym_cmd_identifier_token25] = ACTIONS(1816), + [aux_sym_cmd_identifier_token25] = ACTIONS(1814), [aux_sym_cmd_identifier_token26] = ACTIONS(1816), - [aux_sym_cmd_identifier_token27] = ACTIONS(1816), - [aux_sym_cmd_identifier_token28] = ACTIONS(1816), - [aux_sym_cmd_identifier_token29] = ACTIONS(1816), - [aux_sym_cmd_identifier_token30] = ACTIONS(1816), + [aux_sym_cmd_identifier_token27] = ACTIONS(1814), + [aux_sym_cmd_identifier_token28] = ACTIONS(1814), + [aux_sym_cmd_identifier_token29] = ACTIONS(1814), + [aux_sym_cmd_identifier_token30] = ACTIONS(1814), [aux_sym_cmd_identifier_token31] = ACTIONS(1816), [aux_sym_cmd_identifier_token32] = ACTIONS(1816), [aux_sym_cmd_identifier_token33] = ACTIONS(1816), [aux_sym_cmd_identifier_token34] = ACTIONS(1816), [aux_sym_cmd_identifier_token35] = ACTIONS(1816), - [aux_sym_cmd_identifier_token36] = ACTIONS(1816), + [aux_sym_cmd_identifier_token36] = ACTIONS(1814), [anon_sym_true] = ACTIONS(1816), [anon_sym_false] = ACTIONS(1816), [anon_sym_null] = ACTIONS(1816), - [aux_sym_cmd_identifier_token38] = ACTIONS(1816), + [aux_sym_cmd_identifier_token38] = ACTIONS(1814), [aux_sym_cmd_identifier_token39] = ACTIONS(1816), [aux_sym_cmd_identifier_token40] = ACTIONS(1816), - [anon_sym_def] = ACTIONS(1816), - [anon_sym_export_DASHenv] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_module] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_def] = ACTIONS(1814), + [anon_sym_export_DASHenv] = ACTIONS(1814), + [anon_sym_extern] = ACTIONS(1814), + [anon_sym_module] = ACTIONS(1814), + [anon_sym_use] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1816), [anon_sym_LPAREN] = ACTIONS(1816), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_error] = ACTIONS(1816), - [anon_sym_list] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_make] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_do] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_catch] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_source] = ACTIONS(1816), - [anon_sym_source_DASHenv] = ACTIONS(1816), - [anon_sym_register] = ACTIONS(1816), - [anon_sym_hide] = ACTIONS(1816), - [anon_sym_hide_DASHenv] = ACTIONS(1816), - [anon_sym_overlay] = ACTIONS(1816), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1816), - [aux_sym__val_number_decimal_token1] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(1814), + [anon_sym_error] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_loop] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_do] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_match] = ACTIONS(1814), + [aux_sym_ctrl_match_token1] = ACTIONS(1816), + [anon_sym_DOT_DOT] = ACTIONS(1814), + [anon_sym_try] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_source] = ACTIONS(1814), + [anon_sym_source_DASHenv] = ACTIONS(1814), + [anon_sym_register] = ACTIONS(1814), + [anon_sym_hide] = ACTIONS(1814), + [anon_sym_hide_DASHenv] = ACTIONS(1814), + [anon_sym_overlay] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1816), + [aux_sym_expr_unary_token1] = ACTIONS(1816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT] = ACTIONS(1816), + [aux_sym__val_number_decimal_token1] = ACTIONS(1814), [aux_sym__val_number_decimal_token2] = ACTIONS(1816), - [anon_sym_DOT2] = ACTIONS(1816), [aux_sym__val_number_decimal_token3] = ACTIONS(1816), + [aux_sym__val_number_decimal_token4] = ACTIONS(1816), [aux_sym__val_number_token1] = ACTIONS(1816), [aux_sym__val_number_token2] = ACTIONS(1816), [aux_sym__val_number_token3] = ACTIONS(1816), + [anon_sym_0b] = ACTIONS(1814), + [anon_sym_0o] = ACTIONS(1814), + [anon_sym_0x] = ACTIONS(1814), + [sym_val_date] = ACTIONS(1816), [anon_sym_DQUOTE] = ACTIONS(1816), [sym__str_single_quotes] = ACTIONS(1816), [sym__str_back_ticks] = ACTIONS(1816), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1816), - [sym__entry_separator] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1816), + [aux_sym_env_var_token1] = ACTIONS(1814), + [anon_sym_CARET] = ACTIONS(1816), + [anon_sym_POUND] = ACTIONS(247), }, - [335] = { - [sym_cell_path] = STATE(562), - [sym_path] = STATE(482), - [sym_comment] = STATE(335), - [aux_sym_cell_path_repeat1] = STATE(344), + [320] = { + [sym_comment] = STATE(320), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(980), + [anon_sym_list] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_new] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + }, + [321] = { + [sym_cell_path] = STATE(549), + [sym_path] = STATE(472), + [sym_comment] = STATE(321), + [aux_sym_cell_path_repeat1] = STATE(386), [anon_sym_export] = ACTIONS(1820), [anon_sym_alias] = ACTIONS(1820), [anon_sym_let] = ACTIONS(1820), @@ -111977,14 +115755,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1820), [anon_sym_new] = ACTIONS(1820), [anon_sym_as] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(1685), + [anon_sym_DOT] = ACTIONS(1743), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), [aux_sym__val_number_decimal_token1] = ACTIONS(1820), [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [anon_sym_DOT2] = ACTIONS(1820), [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), [aux_sym__val_number_token1] = ACTIONS(1820), [aux_sym__val_number_token2] = ACTIONS(1820), [aux_sym__val_number_token3] = ACTIONS(1820), @@ -111993,322 +115770,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1820), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), [sym__entry_separator] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(3), }, - [336] = { - [sym_comment] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(1824), - [anon_sym_export] = ACTIONS(1826), - [anon_sym_alias] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_let_DASHenv] = ACTIONS(1826), - [anon_sym_mut] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [aux_sym_cmd_identifier_token1] = ACTIONS(1826), - [aux_sym_cmd_identifier_token2] = ACTIONS(1826), - [aux_sym_cmd_identifier_token3] = ACTIONS(1826), - [aux_sym_cmd_identifier_token4] = ACTIONS(1826), - [aux_sym_cmd_identifier_token5] = ACTIONS(1826), - [aux_sym_cmd_identifier_token6] = ACTIONS(1826), - [aux_sym_cmd_identifier_token7] = ACTIONS(1826), - [aux_sym_cmd_identifier_token8] = ACTIONS(1826), - [aux_sym_cmd_identifier_token9] = ACTIONS(1826), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1826), - [aux_sym_cmd_identifier_token13] = ACTIONS(1826), - [aux_sym_cmd_identifier_token14] = ACTIONS(1826), - [aux_sym_cmd_identifier_token15] = ACTIONS(1826), - [aux_sym_cmd_identifier_token16] = ACTIONS(1826), - [aux_sym_cmd_identifier_token17] = ACTIONS(1826), - [aux_sym_cmd_identifier_token18] = ACTIONS(1826), - [aux_sym_cmd_identifier_token19] = ACTIONS(1826), - [aux_sym_cmd_identifier_token20] = ACTIONS(1826), - [aux_sym_cmd_identifier_token21] = ACTIONS(1826), - [aux_sym_cmd_identifier_token22] = ACTIONS(1826), - [aux_sym_cmd_identifier_token23] = ACTIONS(1826), + [322] = { + [sym_cell_path] = STATE(545), + [sym_path] = STATE(472), + [sym_comment] = STATE(322), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1824), + [anon_sym_alias] = ACTIONS(1824), + [anon_sym_let] = ACTIONS(1824), + [anon_sym_let_DASHenv] = ACTIONS(1824), + [anon_sym_mut] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [aux_sym_cmd_identifier_token1] = ACTIONS(1824), + [aux_sym_cmd_identifier_token2] = ACTIONS(1824), + [aux_sym_cmd_identifier_token3] = ACTIONS(1824), + [aux_sym_cmd_identifier_token4] = ACTIONS(1824), + [aux_sym_cmd_identifier_token5] = ACTIONS(1824), + [aux_sym_cmd_identifier_token6] = ACTIONS(1824), + [aux_sym_cmd_identifier_token7] = ACTIONS(1824), + [aux_sym_cmd_identifier_token8] = ACTIONS(1824), + [aux_sym_cmd_identifier_token9] = ACTIONS(1824), + [aux_sym_cmd_identifier_token10] = ACTIONS(1824), + [aux_sym_cmd_identifier_token11] = ACTIONS(1824), + [aux_sym_cmd_identifier_token12] = ACTIONS(1824), + [aux_sym_cmd_identifier_token13] = ACTIONS(1824), + [aux_sym_cmd_identifier_token14] = ACTIONS(1824), + [aux_sym_cmd_identifier_token15] = ACTIONS(1824), + [aux_sym_cmd_identifier_token16] = ACTIONS(1824), + [aux_sym_cmd_identifier_token17] = ACTIONS(1824), + [aux_sym_cmd_identifier_token18] = ACTIONS(1824), + [aux_sym_cmd_identifier_token19] = ACTIONS(1824), + [aux_sym_cmd_identifier_token20] = ACTIONS(1824), + [aux_sym_cmd_identifier_token21] = ACTIONS(1824), + [aux_sym_cmd_identifier_token22] = ACTIONS(1824), + [aux_sym_cmd_identifier_token23] = ACTIONS(1824), [aux_sym_cmd_identifier_token24] = ACTIONS(1824), - [aux_sym_cmd_identifier_token25] = ACTIONS(1826), + [aux_sym_cmd_identifier_token25] = ACTIONS(1824), [aux_sym_cmd_identifier_token26] = ACTIONS(1824), - [aux_sym_cmd_identifier_token27] = ACTIONS(1826), - [aux_sym_cmd_identifier_token28] = ACTIONS(1826), - [aux_sym_cmd_identifier_token29] = ACTIONS(1826), - [aux_sym_cmd_identifier_token30] = ACTIONS(1826), + [aux_sym_cmd_identifier_token27] = ACTIONS(1824), + [aux_sym_cmd_identifier_token28] = ACTIONS(1824), + [aux_sym_cmd_identifier_token29] = ACTIONS(1824), + [aux_sym_cmd_identifier_token30] = ACTIONS(1824), [aux_sym_cmd_identifier_token31] = ACTIONS(1824), [aux_sym_cmd_identifier_token32] = ACTIONS(1824), [aux_sym_cmd_identifier_token33] = ACTIONS(1824), [aux_sym_cmd_identifier_token34] = ACTIONS(1824), [aux_sym_cmd_identifier_token35] = ACTIONS(1824), - [aux_sym_cmd_identifier_token36] = ACTIONS(1826), + [aux_sym_cmd_identifier_token36] = ACTIONS(1824), [anon_sym_true] = ACTIONS(1824), [anon_sym_false] = ACTIONS(1824), [anon_sym_null] = ACTIONS(1824), - [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1824), [aux_sym_cmd_identifier_token39] = ACTIONS(1824), [aux_sym_cmd_identifier_token40] = ACTIONS(1824), - [sym__newline] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_def] = ACTIONS(1826), - [anon_sym_export_DASHenv] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_module] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_def] = ACTIONS(1824), + [anon_sym_export_DASHenv] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1824), + [anon_sym_module] = ACTIONS(1824), + [anon_sym_use] = ACTIONS(1824), [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [aux_sym_ctrl_match_token1] = ACTIONS(1824), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_source] = ACTIONS(1826), - [anon_sym_source_DASHenv] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_hide] = ACTIONS(1826), - [anon_sym_hide_DASHenv] = ACTIONS(1826), - [anon_sym_overlay] = ACTIONS(1826), - [anon_sym_where] = ACTIONS(1824), - [aux_sym_expr_unary_token1] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1824), - [anon_sym_DOT_DOT_LT] = ACTIONS(1824), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1824), + [anon_sym_error] = ACTIONS(1824), + [anon_sym_list] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1824), + [anon_sym_loop] = ACTIONS(1824), + [anon_sym_make] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_do] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1824), + [anon_sym_match] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_try] = ACTIONS(1824), + [anon_sym_catch] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_source] = ACTIONS(1824), + [anon_sym_source_DASHenv] = ACTIONS(1824), + [anon_sym_register] = ACTIONS(1824), + [anon_sym_hide] = ACTIONS(1824), + [anon_sym_hide_DASHenv] = ACTIONS(1824), + [anon_sym_overlay] = ACTIONS(1824), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_as] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1824), + [aux_sym__val_number_decimal_token1] = ACTIONS(1824), [aux_sym__val_number_decimal_token2] = ACTIONS(1824), - [anon_sym_DOT2] = ACTIONS(1826), [aux_sym__val_number_decimal_token3] = ACTIONS(1824), + [aux_sym__val_number_decimal_token4] = ACTIONS(1824), [aux_sym__val_number_token1] = ACTIONS(1824), [aux_sym__val_number_token2] = ACTIONS(1824), [aux_sym__val_number_token3] = ACTIONS(1824), - [anon_sym_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1824), [anon_sym_DQUOTE] = ACTIONS(1824), [sym__str_single_quotes] = ACTIONS(1824), [sym__str_back_ticks] = ACTIONS(1824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(3), - }, - [337] = { - [sym_path] = STATE(419), - [sym_comment] = STATE(337), - [aux_sym_cell_path_repeat1] = STATE(338), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [aux_sym_cmd_identifier_token1] = ACTIONS(889), - [aux_sym_cmd_identifier_token2] = ACTIONS(889), - [aux_sym_cmd_identifier_token3] = ACTIONS(889), - [aux_sym_cmd_identifier_token4] = ACTIONS(889), - [aux_sym_cmd_identifier_token5] = ACTIONS(889), - [aux_sym_cmd_identifier_token6] = ACTIONS(889), - [aux_sym_cmd_identifier_token7] = ACTIONS(889), - [aux_sym_cmd_identifier_token8] = ACTIONS(889), - [aux_sym_cmd_identifier_token9] = ACTIONS(889), - [aux_sym_cmd_identifier_token10] = ACTIONS(889), - [aux_sym_cmd_identifier_token11] = ACTIONS(889), - [aux_sym_cmd_identifier_token12] = ACTIONS(889), - [aux_sym_cmd_identifier_token13] = ACTIONS(889), - [aux_sym_cmd_identifier_token14] = ACTIONS(889), - [aux_sym_cmd_identifier_token15] = ACTIONS(889), - [aux_sym_cmd_identifier_token16] = ACTIONS(889), - [aux_sym_cmd_identifier_token17] = ACTIONS(889), - [aux_sym_cmd_identifier_token18] = ACTIONS(889), - [aux_sym_cmd_identifier_token19] = ACTIONS(889), - [aux_sym_cmd_identifier_token20] = ACTIONS(889), - [aux_sym_cmd_identifier_token21] = ACTIONS(889), - [aux_sym_cmd_identifier_token22] = ACTIONS(889), - [aux_sym_cmd_identifier_token23] = ACTIONS(889), - [aux_sym_cmd_identifier_token24] = ACTIONS(889), - [aux_sym_cmd_identifier_token25] = ACTIONS(889), - [aux_sym_cmd_identifier_token26] = ACTIONS(889), - [aux_sym_cmd_identifier_token27] = ACTIONS(889), - [aux_sym_cmd_identifier_token28] = ACTIONS(889), - [aux_sym_cmd_identifier_token29] = ACTIONS(889), - [aux_sym_cmd_identifier_token30] = ACTIONS(889), - [aux_sym_cmd_identifier_token31] = ACTIONS(889), - [aux_sym_cmd_identifier_token32] = ACTIONS(889), - [aux_sym_cmd_identifier_token33] = ACTIONS(889), - [aux_sym_cmd_identifier_token34] = ACTIONS(889), - [aux_sym_cmd_identifier_token35] = ACTIONS(889), - [aux_sym_cmd_identifier_token36] = ACTIONS(889), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_null] = ACTIONS(891), - [aux_sym_cmd_identifier_token38] = ACTIONS(889), - [aux_sym_cmd_identifier_token39] = ACTIONS(891), - [aux_sym_cmd_identifier_token40] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_error] = ACTIONS(889), - [anon_sym_list] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_make] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_catch] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_new] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(891), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(891), - [aux_sym_record_entry_token1] = ACTIONS(891), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1824), + [sym__entry_separator] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1824), [anon_sym_POUND] = ACTIONS(3), }, - [338] = { - [sym_path] = STATE(419), - [sym_comment] = STATE(338), - [aux_sym_cell_path_repeat1] = STATE(338), - [anon_sym_export] = ACTIONS(893), - [anon_sym_alias] = ACTIONS(893), - [anon_sym_let] = ACTIONS(893), - [anon_sym_let_DASHenv] = ACTIONS(893), - [anon_sym_mut] = ACTIONS(893), - [anon_sym_const] = ACTIONS(893), - [aux_sym_cmd_identifier_token1] = ACTIONS(893), - [aux_sym_cmd_identifier_token2] = ACTIONS(893), - [aux_sym_cmd_identifier_token3] = ACTIONS(893), - [aux_sym_cmd_identifier_token4] = ACTIONS(893), - [aux_sym_cmd_identifier_token5] = ACTIONS(893), - [aux_sym_cmd_identifier_token6] = ACTIONS(893), - [aux_sym_cmd_identifier_token7] = ACTIONS(893), - [aux_sym_cmd_identifier_token8] = ACTIONS(893), - [aux_sym_cmd_identifier_token9] = ACTIONS(893), - [aux_sym_cmd_identifier_token10] = ACTIONS(893), - [aux_sym_cmd_identifier_token11] = ACTIONS(893), - [aux_sym_cmd_identifier_token12] = ACTIONS(893), - [aux_sym_cmd_identifier_token13] = ACTIONS(893), - [aux_sym_cmd_identifier_token14] = ACTIONS(893), - [aux_sym_cmd_identifier_token15] = ACTIONS(893), - [aux_sym_cmd_identifier_token16] = ACTIONS(893), - [aux_sym_cmd_identifier_token17] = ACTIONS(893), - [aux_sym_cmd_identifier_token18] = ACTIONS(893), - [aux_sym_cmd_identifier_token19] = ACTIONS(893), - [aux_sym_cmd_identifier_token20] = ACTIONS(893), - [aux_sym_cmd_identifier_token21] = ACTIONS(893), - [aux_sym_cmd_identifier_token22] = ACTIONS(893), - [aux_sym_cmd_identifier_token23] = ACTIONS(893), - [aux_sym_cmd_identifier_token24] = ACTIONS(893), - [aux_sym_cmd_identifier_token25] = ACTIONS(893), - [aux_sym_cmd_identifier_token26] = ACTIONS(893), - [aux_sym_cmd_identifier_token27] = ACTIONS(893), - [aux_sym_cmd_identifier_token28] = ACTIONS(893), - [aux_sym_cmd_identifier_token29] = ACTIONS(893), - [aux_sym_cmd_identifier_token30] = ACTIONS(893), - [aux_sym_cmd_identifier_token31] = ACTIONS(893), - [aux_sym_cmd_identifier_token32] = ACTIONS(893), - [aux_sym_cmd_identifier_token33] = ACTIONS(893), - [aux_sym_cmd_identifier_token34] = ACTIONS(893), - [aux_sym_cmd_identifier_token35] = ACTIONS(893), - [aux_sym_cmd_identifier_token36] = ACTIONS(893), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [anon_sym_null] = ACTIONS(895), - [aux_sym_cmd_identifier_token38] = ACTIONS(893), - [aux_sym_cmd_identifier_token39] = ACTIONS(895), - [aux_sym_cmd_identifier_token40] = ACTIONS(895), - [anon_sym_def] = ACTIONS(893), - [anon_sym_export_DASHenv] = ACTIONS(893), - [anon_sym_extern] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_use] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_COMMA] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_error] = ACTIONS(893), - [anon_sym_list] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_in] = ACTIONS(893), - [anon_sym_loop] = ACTIONS(893), - [anon_sym_make] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_else] = ACTIONS(893), - [anon_sym_match] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_try] = ACTIONS(893), - [anon_sym_catch] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_source] = ACTIONS(893), - [anon_sym_source_DASHenv] = ACTIONS(893), - [anon_sym_register] = ACTIONS(893), - [anon_sym_hide] = ACTIONS(893), - [anon_sym_hide_DASHenv] = ACTIONS(893), - [anon_sym_overlay] = ACTIONS(893), - [anon_sym_new] = ACTIONS(893), - [anon_sym_as] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(895), + [323] = { + [sym_path] = STATE(420), + [sym_comment] = STATE(323), + [aux_sym_cell_path_repeat1] = STATE(323), + [anon_sym_export] = ACTIONS(955), + [anon_sym_alias] = ACTIONS(955), + [anon_sym_let] = ACTIONS(955), + [anon_sym_let_DASHenv] = ACTIONS(955), + [anon_sym_mut] = ACTIONS(955), + [anon_sym_const] = ACTIONS(955), + [aux_sym_cmd_identifier_token1] = ACTIONS(955), + [aux_sym_cmd_identifier_token2] = ACTIONS(955), + [aux_sym_cmd_identifier_token3] = ACTIONS(955), + [aux_sym_cmd_identifier_token4] = ACTIONS(955), + [aux_sym_cmd_identifier_token5] = ACTIONS(955), + [aux_sym_cmd_identifier_token6] = ACTIONS(955), + [aux_sym_cmd_identifier_token7] = ACTIONS(955), + [aux_sym_cmd_identifier_token8] = ACTIONS(955), + [aux_sym_cmd_identifier_token9] = ACTIONS(955), + [aux_sym_cmd_identifier_token10] = ACTIONS(955), + [aux_sym_cmd_identifier_token11] = ACTIONS(955), + [aux_sym_cmd_identifier_token12] = ACTIONS(955), + [aux_sym_cmd_identifier_token13] = ACTIONS(955), + [aux_sym_cmd_identifier_token14] = ACTIONS(955), + [aux_sym_cmd_identifier_token15] = ACTIONS(955), + [aux_sym_cmd_identifier_token16] = ACTIONS(955), + [aux_sym_cmd_identifier_token17] = ACTIONS(955), + [aux_sym_cmd_identifier_token18] = ACTIONS(955), + [aux_sym_cmd_identifier_token19] = ACTIONS(955), + [aux_sym_cmd_identifier_token20] = ACTIONS(955), + [aux_sym_cmd_identifier_token21] = ACTIONS(955), + [aux_sym_cmd_identifier_token22] = ACTIONS(955), + [aux_sym_cmd_identifier_token23] = ACTIONS(955), + [aux_sym_cmd_identifier_token24] = ACTIONS(955), + [aux_sym_cmd_identifier_token25] = ACTIONS(955), + [aux_sym_cmd_identifier_token26] = ACTIONS(955), + [aux_sym_cmd_identifier_token27] = ACTIONS(955), + [aux_sym_cmd_identifier_token28] = ACTIONS(955), + [aux_sym_cmd_identifier_token29] = ACTIONS(955), + [aux_sym_cmd_identifier_token30] = ACTIONS(955), + [aux_sym_cmd_identifier_token31] = ACTIONS(955), + [aux_sym_cmd_identifier_token32] = ACTIONS(955), + [aux_sym_cmd_identifier_token33] = ACTIONS(955), + [aux_sym_cmd_identifier_token34] = ACTIONS(955), + [aux_sym_cmd_identifier_token35] = ACTIONS(955), + [aux_sym_cmd_identifier_token36] = ACTIONS(955), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_null] = ACTIONS(957), + [aux_sym_cmd_identifier_token38] = ACTIONS(955), + [aux_sym_cmd_identifier_token39] = ACTIONS(957), + [aux_sym_cmd_identifier_token40] = ACTIONS(957), + [anon_sym_def] = ACTIONS(955), + [anon_sym_export_DASHenv] = ACTIONS(955), + [anon_sym_extern] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_use] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_error] = ACTIONS(955), + [anon_sym_list] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_break] = ACTIONS(955), + [anon_sym_continue] = ACTIONS(955), + [anon_sym_for] = ACTIONS(955), + [anon_sym_in] = ACTIONS(955), + [anon_sym_loop] = ACTIONS(955), + [anon_sym_make] = ACTIONS(955), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(955), + [anon_sym_if] = ACTIONS(955), + [anon_sym_else] = ACTIONS(955), + [anon_sym_match] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_try] = ACTIONS(955), + [anon_sym_catch] = ACTIONS(955), + [anon_sym_return] = ACTIONS(955), + [anon_sym_source] = ACTIONS(955), + [anon_sym_source_DASHenv] = ACTIONS(955), + [anon_sym_register] = ACTIONS(955), + [anon_sym_hide] = ACTIONS(955), + [anon_sym_hide_DASHenv] = ACTIONS(955), + [anon_sym_overlay] = ACTIONS(955), + [anon_sym_new] = ACTIONS(955), + [anon_sym_as] = ACTIONS(955), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(957), [anon_sym_DOT] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(895), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(895), - [aux_sym__val_number_token1] = ACTIONS(895), - [aux_sym__val_number_token2] = ACTIONS(895), - [aux_sym__val_number_token3] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(895), - [aux_sym_record_entry_token1] = ACTIONS(895), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(957), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(957), + [aux_sym__val_number_decimal_token3] = ACTIONS(957), + [aux_sym__val_number_decimal_token4] = ACTIONS(957), + [aux_sym__val_number_token1] = ACTIONS(957), + [aux_sym__val_number_token2] = ACTIONS(957), + [aux_sym__val_number_token3] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__str_single_quotes] = ACTIONS(957), + [sym__str_back_ticks] = ACTIONS(957), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(957), + [aux_sym_record_entry_token1] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(247), + }, + [324] = { + [sym_cell_path] = STATE(563), + [sym_path] = STATE(472), + [sym_comment] = STATE(324), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(945), + [anon_sym_alias] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_let_DASHenv] = ACTIONS(945), + [anon_sym_mut] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [aux_sym_cmd_identifier_token1] = ACTIONS(945), + [aux_sym_cmd_identifier_token2] = ACTIONS(945), + [aux_sym_cmd_identifier_token3] = ACTIONS(945), + [aux_sym_cmd_identifier_token4] = ACTIONS(945), + [aux_sym_cmd_identifier_token5] = ACTIONS(945), + [aux_sym_cmd_identifier_token6] = ACTIONS(945), + [aux_sym_cmd_identifier_token7] = ACTIONS(945), + [aux_sym_cmd_identifier_token8] = ACTIONS(945), + [aux_sym_cmd_identifier_token9] = ACTIONS(945), + [aux_sym_cmd_identifier_token10] = ACTIONS(945), + [aux_sym_cmd_identifier_token11] = ACTIONS(945), + [aux_sym_cmd_identifier_token12] = ACTIONS(945), + [aux_sym_cmd_identifier_token13] = ACTIONS(945), + [aux_sym_cmd_identifier_token14] = ACTIONS(945), + [aux_sym_cmd_identifier_token15] = ACTIONS(945), + [aux_sym_cmd_identifier_token16] = ACTIONS(945), + [aux_sym_cmd_identifier_token17] = ACTIONS(945), + [aux_sym_cmd_identifier_token18] = ACTIONS(945), + [aux_sym_cmd_identifier_token19] = ACTIONS(945), + [aux_sym_cmd_identifier_token20] = ACTIONS(945), + [aux_sym_cmd_identifier_token21] = ACTIONS(945), + [aux_sym_cmd_identifier_token22] = ACTIONS(945), + [aux_sym_cmd_identifier_token23] = ACTIONS(945), + [aux_sym_cmd_identifier_token24] = ACTIONS(945), + [aux_sym_cmd_identifier_token25] = ACTIONS(945), + [aux_sym_cmd_identifier_token26] = ACTIONS(945), + [aux_sym_cmd_identifier_token27] = ACTIONS(945), + [aux_sym_cmd_identifier_token28] = ACTIONS(945), + [aux_sym_cmd_identifier_token29] = ACTIONS(945), + [aux_sym_cmd_identifier_token30] = ACTIONS(945), + [aux_sym_cmd_identifier_token31] = ACTIONS(945), + [aux_sym_cmd_identifier_token32] = ACTIONS(945), + [aux_sym_cmd_identifier_token33] = ACTIONS(945), + [aux_sym_cmd_identifier_token34] = ACTIONS(945), + [aux_sym_cmd_identifier_token35] = ACTIONS(945), + [aux_sym_cmd_identifier_token36] = ACTIONS(945), + [anon_sym_true] = ACTIONS(945), + [anon_sym_false] = ACTIONS(945), + [anon_sym_null] = ACTIONS(945), + [aux_sym_cmd_identifier_token38] = ACTIONS(945), + [aux_sym_cmd_identifier_token39] = ACTIONS(945), + [aux_sym_cmd_identifier_token40] = ACTIONS(945), + [anon_sym_def] = ACTIONS(945), + [anon_sym_export_DASHenv] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(945), + [anon_sym_module] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_error] = ACTIONS(945), + [anon_sym_list] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_in] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_make] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_try] = ACTIONS(945), + [anon_sym_catch] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_source] = ACTIONS(945), + [anon_sym_source_DASHenv] = ACTIONS(945), + [anon_sym_register] = ACTIONS(945), + [anon_sym_hide] = ACTIONS(945), + [anon_sym_hide_DASHenv] = ACTIONS(945), + [anon_sym_overlay] = ACTIONS(945), + [anon_sym_new] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(945), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(945), + [aux_sym__val_number_decimal_token3] = ACTIONS(945), + [aux_sym__val_number_decimal_token4] = ACTIONS(945), + [aux_sym__val_number_token1] = ACTIONS(945), + [aux_sym__val_number_token2] = ACTIONS(945), + [aux_sym__val_number_token3] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [sym__str_single_quotes] = ACTIONS(945), + [sym__str_back_ticks] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(945), + [sym__entry_separator] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(945), [anon_sym_POUND] = ACTIONS(3), }, - [339] = { - [sym_comment] = STATE(339), + [325] = { + [sym_cell_path] = STATE(557), + [sym_path] = STATE(472), + [sym_comment] = STATE(325), + [aux_sym_cell_path_repeat1] = STATE(386), [anon_sym_export] = ACTIONS(1831), [anon_sym_alias] = ACTIONS(1831), [anon_sym_let] = ACTIONS(1831), @@ -112338,49 +116119,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1831), [aux_sym_cmd_identifier_token22] = ACTIONS(1831), [aux_sym_cmd_identifier_token23] = ACTIONS(1831), - [aux_sym_cmd_identifier_token24] = ACTIONS(1833), + [aux_sym_cmd_identifier_token24] = ACTIONS(1831), [aux_sym_cmd_identifier_token25] = ACTIONS(1831), - [aux_sym_cmd_identifier_token26] = ACTIONS(1833), + [aux_sym_cmd_identifier_token26] = ACTIONS(1831), [aux_sym_cmd_identifier_token27] = ACTIONS(1831), [aux_sym_cmd_identifier_token28] = ACTIONS(1831), [aux_sym_cmd_identifier_token29] = ACTIONS(1831), [aux_sym_cmd_identifier_token30] = ACTIONS(1831), - [aux_sym_cmd_identifier_token31] = ACTIONS(1833), - [aux_sym_cmd_identifier_token32] = ACTIONS(1833), - [aux_sym_cmd_identifier_token33] = ACTIONS(1833), - [aux_sym_cmd_identifier_token34] = ACTIONS(1833), - [aux_sym_cmd_identifier_token35] = ACTIONS(1833), + [aux_sym_cmd_identifier_token31] = ACTIONS(1831), + [aux_sym_cmd_identifier_token32] = ACTIONS(1831), + [aux_sym_cmd_identifier_token33] = ACTIONS(1831), + [aux_sym_cmd_identifier_token34] = ACTIONS(1831), + [aux_sym_cmd_identifier_token35] = ACTIONS(1831), [aux_sym_cmd_identifier_token36] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_null] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [anon_sym_null] = ACTIONS(1831), [aux_sym_cmd_identifier_token38] = ACTIONS(1831), - [aux_sym_cmd_identifier_token39] = ACTIONS(1833), - [aux_sym_cmd_identifier_token40] = ACTIONS(1833), - [sym__newline] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1835), + [aux_sym_cmd_identifier_token39] = ACTIONS(1831), + [aux_sym_cmd_identifier_token40] = ACTIONS(1831), [anon_sym_def] = ACTIONS(1831), [anon_sym_export_DASHenv] = ACTIONS(1831), [anon_sym_extern] = ACTIONS(1831), [anon_sym_module] = ACTIONS(1831), [anon_sym_use] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1831), [anon_sym_DOLLAR] = ACTIONS(1831), [anon_sym_error] = ACTIONS(1831), + [anon_sym_list] = ACTIONS(1831), [anon_sym_DASH] = ACTIONS(1831), [anon_sym_break] = ACTIONS(1831), [anon_sym_continue] = ACTIONS(1831), [anon_sym_for] = ACTIONS(1831), + [anon_sym_in] = ACTIONS(1831), [anon_sym_loop] = ACTIONS(1831), + [anon_sym_make] = ACTIONS(1831), [anon_sym_while] = ACTIONS(1831), [anon_sym_do] = ACTIONS(1831), [anon_sym_if] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1831), [anon_sym_match] = ACTIONS(1831), - [aux_sym_ctrl_match_token1] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), [anon_sym_try] = ACTIONS(1831), + [anon_sym_catch] = ACTIONS(1831), [anon_sym_return] = ACTIONS(1831), [anon_sym_source] = ACTIONS(1831), [anon_sym_source_DASHenv] = ACTIONS(1831), @@ -112388,1680 +116169,1591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1831), [anon_sym_hide_DASHenv] = ACTIONS(1831), [anon_sym_overlay] = ACTIONS(1831), - [anon_sym_where] = ACTIONS(1833), - [aux_sym_expr_unary_token1] = ACTIONS(1833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), - [anon_sym_DOT_DOT_LT] = ACTIONS(1833), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_as] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1831), [aux_sym__val_number_decimal_token1] = ACTIONS(1831), - [aux_sym__val_number_decimal_token2] = ACTIONS(1833), - [anon_sym_DOT2] = ACTIONS(1831), - [aux_sym__val_number_decimal_token3] = ACTIONS(1833), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), - [anon_sym_0b] = ACTIONS(1831), - [anon_sym_0o] = ACTIONS(1831), - [anon_sym_0x] = ACTIONS(1831), - [sym_val_date] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym__str_single_quotes] = ACTIONS(1833), - [sym__str_back_ticks] = ACTIONS(1833), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1833), + [aux_sym__val_number_decimal_token2] = ACTIONS(1831), + [aux_sym__val_number_decimal_token3] = ACTIONS(1831), + [aux_sym__val_number_decimal_token4] = ACTIONS(1831), + [aux_sym__val_number_token1] = ACTIONS(1831), + [aux_sym__val_number_token2] = ACTIONS(1831), + [aux_sym__val_number_token3] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1831), + [sym__entry_separator] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1831), [anon_sym_POUND] = ACTIONS(3), }, - [340] = { - [sym_comment] = STATE(340), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1838), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [326] = { + [sym_cell_path] = STATE(558), + [sym_path] = STATE(472), + [sym_comment] = STATE(326), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_alias] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_let_DASHenv] = ACTIONS(1835), + [anon_sym_mut] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [aux_sym_cmd_identifier_token1] = ACTIONS(1835), + [aux_sym_cmd_identifier_token2] = ACTIONS(1835), + [aux_sym_cmd_identifier_token3] = ACTIONS(1835), + [aux_sym_cmd_identifier_token4] = ACTIONS(1835), + [aux_sym_cmd_identifier_token5] = ACTIONS(1835), + [aux_sym_cmd_identifier_token6] = ACTIONS(1835), + [aux_sym_cmd_identifier_token7] = ACTIONS(1835), + [aux_sym_cmd_identifier_token8] = ACTIONS(1835), + [aux_sym_cmd_identifier_token9] = ACTIONS(1835), + [aux_sym_cmd_identifier_token10] = ACTIONS(1835), + [aux_sym_cmd_identifier_token11] = ACTIONS(1835), + [aux_sym_cmd_identifier_token12] = ACTIONS(1835), + [aux_sym_cmd_identifier_token13] = ACTIONS(1835), + [aux_sym_cmd_identifier_token14] = ACTIONS(1835), + [aux_sym_cmd_identifier_token15] = ACTIONS(1835), + [aux_sym_cmd_identifier_token16] = ACTIONS(1835), + [aux_sym_cmd_identifier_token17] = ACTIONS(1835), + [aux_sym_cmd_identifier_token18] = ACTIONS(1835), + [aux_sym_cmd_identifier_token19] = ACTIONS(1835), + [aux_sym_cmd_identifier_token20] = ACTIONS(1835), + [aux_sym_cmd_identifier_token21] = ACTIONS(1835), + [aux_sym_cmd_identifier_token22] = ACTIONS(1835), + [aux_sym_cmd_identifier_token23] = ACTIONS(1835), + [aux_sym_cmd_identifier_token24] = ACTIONS(1835), + [aux_sym_cmd_identifier_token25] = ACTIONS(1835), + [aux_sym_cmd_identifier_token26] = ACTIONS(1835), + [aux_sym_cmd_identifier_token27] = ACTIONS(1835), + [aux_sym_cmd_identifier_token28] = ACTIONS(1835), + [aux_sym_cmd_identifier_token29] = ACTIONS(1835), + [aux_sym_cmd_identifier_token30] = ACTIONS(1835), + [aux_sym_cmd_identifier_token31] = ACTIONS(1835), + [aux_sym_cmd_identifier_token32] = ACTIONS(1835), + [aux_sym_cmd_identifier_token33] = ACTIONS(1835), + [aux_sym_cmd_identifier_token34] = ACTIONS(1835), + [aux_sym_cmd_identifier_token35] = ACTIONS(1835), + [aux_sym_cmd_identifier_token36] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [anon_sym_null] = ACTIONS(1835), + [aux_sym_cmd_identifier_token38] = ACTIONS(1835), + [aux_sym_cmd_identifier_token39] = ACTIONS(1835), + [aux_sym_cmd_identifier_token40] = ACTIONS(1835), + [anon_sym_def] = ACTIONS(1835), + [anon_sym_export_DASHenv] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_error] = ACTIONS(1835), + [anon_sym_list] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_in] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_make] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_catch] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_source] = ACTIONS(1835), + [anon_sym_source_DASHenv] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1835), + [anon_sym_hide] = ACTIONS(1835), + [anon_sym_hide_DASHenv] = ACTIONS(1835), + [anon_sym_overlay] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_as] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1835), + [aux_sym__val_number_decimal_token3] = ACTIONS(1835), + [aux_sym__val_number_decimal_token4] = ACTIONS(1835), + [aux_sym__val_number_token1] = ACTIONS(1835), + [aux_sym__val_number_token2] = ACTIONS(1835), + [aux_sym__val_number_token3] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), + [sym__entry_separator] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1835), [anon_sym_POUND] = ACTIONS(3), }, - [341] = { - [sym_cell_path] = STATE(627), - [sym_path] = STATE(572), - [sym_comment] = STATE(341), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_alias] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_let_DASHenv] = ACTIONS(1752), - [anon_sym_mut] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [aux_sym_cmd_identifier_token1] = ACTIONS(1752), - [aux_sym_cmd_identifier_token2] = ACTIONS(1752), - [aux_sym_cmd_identifier_token3] = ACTIONS(1752), - [aux_sym_cmd_identifier_token4] = ACTIONS(1752), - [aux_sym_cmd_identifier_token5] = ACTIONS(1752), - [aux_sym_cmd_identifier_token6] = ACTIONS(1752), - [aux_sym_cmd_identifier_token7] = ACTIONS(1752), - [aux_sym_cmd_identifier_token8] = ACTIONS(1752), - [aux_sym_cmd_identifier_token9] = ACTIONS(1752), - [aux_sym_cmd_identifier_token10] = ACTIONS(1752), - [aux_sym_cmd_identifier_token11] = ACTIONS(1752), - [aux_sym_cmd_identifier_token12] = ACTIONS(1752), - [aux_sym_cmd_identifier_token13] = ACTIONS(1752), - [aux_sym_cmd_identifier_token14] = ACTIONS(1752), - [aux_sym_cmd_identifier_token15] = ACTIONS(1752), - [aux_sym_cmd_identifier_token16] = ACTIONS(1752), - [aux_sym_cmd_identifier_token17] = ACTIONS(1752), - [aux_sym_cmd_identifier_token18] = ACTIONS(1752), - [aux_sym_cmd_identifier_token19] = ACTIONS(1752), - [aux_sym_cmd_identifier_token20] = ACTIONS(1752), - [aux_sym_cmd_identifier_token21] = ACTIONS(1752), - [aux_sym_cmd_identifier_token22] = ACTIONS(1752), - [aux_sym_cmd_identifier_token23] = ACTIONS(1752), - [aux_sym_cmd_identifier_token24] = ACTIONS(1752), - [aux_sym_cmd_identifier_token25] = ACTIONS(1752), - [aux_sym_cmd_identifier_token26] = ACTIONS(1752), - [aux_sym_cmd_identifier_token27] = ACTIONS(1752), - [aux_sym_cmd_identifier_token28] = ACTIONS(1752), - [aux_sym_cmd_identifier_token29] = ACTIONS(1752), - [aux_sym_cmd_identifier_token30] = ACTIONS(1752), - [aux_sym_cmd_identifier_token31] = ACTIONS(1752), - [aux_sym_cmd_identifier_token32] = ACTIONS(1752), - [aux_sym_cmd_identifier_token33] = ACTIONS(1752), - [aux_sym_cmd_identifier_token34] = ACTIONS(1752), - [aux_sym_cmd_identifier_token35] = ACTIONS(1752), - [aux_sym_cmd_identifier_token36] = ACTIONS(1752), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token38] = ACTIONS(1752), - [aux_sym_cmd_identifier_token39] = ACTIONS(1754), - [aux_sym_cmd_identifier_token40] = ACTIONS(1754), - [anon_sym_def] = ACTIONS(1752), - [anon_sym_export_DASHenv] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1752), - [anon_sym_module] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1754), - [anon_sym_error] = ACTIONS(1752), - [anon_sym_list] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_loop] = ACTIONS(1752), - [anon_sym_make] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_do] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_catch] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_source] = ACTIONS(1752), - [anon_sym_source_DASHenv] = ACTIONS(1752), - [anon_sym_register] = ACTIONS(1752), - [anon_sym_hide] = ACTIONS(1752), - [anon_sym_hide_DASHenv] = ACTIONS(1752), - [anon_sym_overlay] = ACTIONS(1752), - [anon_sym_new] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1754), - [aux_sym__val_number_decimal_token1] = ACTIONS(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [anon_sym_DOT2] = ACTIONS(1752), - [aux_sym__val_number_decimal_token3] = ACTIONS(1754), - [aux_sym__val_number_token1] = ACTIONS(1754), - [aux_sym__val_number_token2] = ACTIONS(1754), - [aux_sym__val_number_token3] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [sym__str_single_quotes] = ACTIONS(1754), - [sym__str_back_ticks] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1754), + [327] = { + [sym_comment] = STATE(327), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = ACTIONS(994), + [anon_sym_null] = ACTIONS(994), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(994), + [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_list] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_new] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(994), + [aux_sym__val_number_decimal_token3] = ACTIONS(994), + [aux_sym__val_number_decimal_token4] = ACTIONS(994), + [aux_sym__val_number_token1] = ACTIONS(994), + [aux_sym__val_number_token2] = ACTIONS(994), + [aux_sym__val_number_token3] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), + [sym__entry_separator] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(3), }, - [342] = { - [sym_comment] = STATE(342), - [anon_sym_export] = ACTIONS(1844), - [anon_sym_alias] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_let_DASHenv] = ACTIONS(1844), - [anon_sym_mut] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [aux_sym_cmd_identifier_token1] = ACTIONS(1844), - [aux_sym_cmd_identifier_token2] = ACTIONS(1844), - [aux_sym_cmd_identifier_token3] = ACTIONS(1844), - [aux_sym_cmd_identifier_token4] = ACTIONS(1844), - [aux_sym_cmd_identifier_token5] = ACTIONS(1844), - [aux_sym_cmd_identifier_token6] = ACTIONS(1844), - [aux_sym_cmd_identifier_token7] = ACTIONS(1844), - [aux_sym_cmd_identifier_token8] = ACTIONS(1844), - [aux_sym_cmd_identifier_token9] = ACTIONS(1844), - [aux_sym_cmd_identifier_token10] = ACTIONS(1844), - [aux_sym_cmd_identifier_token11] = ACTIONS(1844), - [aux_sym_cmd_identifier_token12] = ACTIONS(1844), - [aux_sym_cmd_identifier_token13] = ACTIONS(1844), - [aux_sym_cmd_identifier_token14] = ACTIONS(1844), - [aux_sym_cmd_identifier_token15] = ACTIONS(1844), - [aux_sym_cmd_identifier_token16] = ACTIONS(1844), - [aux_sym_cmd_identifier_token17] = ACTIONS(1844), - [aux_sym_cmd_identifier_token18] = ACTIONS(1844), - [aux_sym_cmd_identifier_token19] = ACTIONS(1844), - [aux_sym_cmd_identifier_token20] = ACTIONS(1844), - [aux_sym_cmd_identifier_token21] = ACTIONS(1844), - [aux_sym_cmd_identifier_token22] = ACTIONS(1844), - [aux_sym_cmd_identifier_token23] = ACTIONS(1844), - [aux_sym_cmd_identifier_token24] = ACTIONS(1846), - [aux_sym_cmd_identifier_token25] = ACTIONS(1844), - [aux_sym_cmd_identifier_token26] = ACTIONS(1846), - [aux_sym_cmd_identifier_token27] = ACTIONS(1844), - [aux_sym_cmd_identifier_token28] = ACTIONS(1844), - [aux_sym_cmd_identifier_token29] = ACTIONS(1844), - [aux_sym_cmd_identifier_token30] = ACTIONS(1844), - [aux_sym_cmd_identifier_token31] = ACTIONS(1846), - [aux_sym_cmd_identifier_token32] = ACTIONS(1846), - [aux_sym_cmd_identifier_token33] = ACTIONS(1846), - [aux_sym_cmd_identifier_token34] = ACTIONS(1846), - [aux_sym_cmd_identifier_token35] = ACTIONS(1846), - [aux_sym_cmd_identifier_token36] = ACTIONS(1844), - [anon_sym_true] = ACTIONS(1846), - [anon_sym_false] = ACTIONS(1846), - [anon_sym_null] = ACTIONS(1846), - [aux_sym_cmd_identifier_token38] = ACTIONS(1844), - [aux_sym_cmd_identifier_token39] = ACTIONS(1846), - [aux_sym_cmd_identifier_token40] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_def] = ACTIONS(1844), - [anon_sym_export_DASHenv] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_error] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_do] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [aux_sym_ctrl_match_token1] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_source] = ACTIONS(1844), - [anon_sym_source_DASHenv] = ACTIONS(1844), - [anon_sym_register] = ACTIONS(1844), - [anon_sym_hide] = ACTIONS(1844), - [anon_sym_hide_DASHenv] = ACTIONS(1844), - [anon_sym_overlay] = ACTIONS(1844), - [anon_sym_where] = ACTIONS(1846), - [aux_sym_expr_unary_token1] = ACTIONS(1846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1846), - [anon_sym_DOT_DOT_LT] = ACTIONS(1846), - [aux_sym__val_number_decimal_token1] = ACTIONS(1844), - [aux_sym__val_number_decimal_token2] = ACTIONS(1846), - [anon_sym_DOT2] = ACTIONS(1844), - [aux_sym__val_number_decimal_token3] = ACTIONS(1846), - [aux_sym__val_number_token1] = ACTIONS(1846), - [aux_sym__val_number_token2] = ACTIONS(1846), - [aux_sym__val_number_token3] = ACTIONS(1846), - [anon_sym_0b] = ACTIONS(1844), - [anon_sym_0o] = ACTIONS(1844), - [anon_sym_0x] = ACTIONS(1844), - [sym_val_date] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [sym__str_single_quotes] = ACTIONS(1846), - [sym__str_back_ticks] = ACTIONS(1846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1846), - [anon_sym_CARET] = ACTIONS(1846), + [328] = { + [sym_cell_path] = STATE(529), + [sym_path] = STATE(472), + [sym_comment] = STATE(328), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_alias] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_let_DASHenv] = ACTIONS(1839), + [anon_sym_mut] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [aux_sym_cmd_identifier_token1] = ACTIONS(1839), + [aux_sym_cmd_identifier_token2] = ACTIONS(1839), + [aux_sym_cmd_identifier_token3] = ACTIONS(1839), + [aux_sym_cmd_identifier_token4] = ACTIONS(1839), + [aux_sym_cmd_identifier_token5] = ACTIONS(1839), + [aux_sym_cmd_identifier_token6] = ACTIONS(1839), + [aux_sym_cmd_identifier_token7] = ACTIONS(1839), + [aux_sym_cmd_identifier_token8] = ACTIONS(1839), + [aux_sym_cmd_identifier_token9] = ACTIONS(1839), + [aux_sym_cmd_identifier_token10] = ACTIONS(1839), + [aux_sym_cmd_identifier_token11] = ACTIONS(1839), + [aux_sym_cmd_identifier_token12] = ACTIONS(1839), + [aux_sym_cmd_identifier_token13] = ACTIONS(1839), + [aux_sym_cmd_identifier_token14] = ACTIONS(1839), + [aux_sym_cmd_identifier_token15] = ACTIONS(1839), + [aux_sym_cmd_identifier_token16] = ACTIONS(1839), + [aux_sym_cmd_identifier_token17] = ACTIONS(1839), + [aux_sym_cmd_identifier_token18] = ACTIONS(1839), + [aux_sym_cmd_identifier_token19] = ACTIONS(1839), + [aux_sym_cmd_identifier_token20] = ACTIONS(1839), + [aux_sym_cmd_identifier_token21] = ACTIONS(1839), + [aux_sym_cmd_identifier_token22] = ACTIONS(1839), + [aux_sym_cmd_identifier_token23] = ACTIONS(1839), + [aux_sym_cmd_identifier_token24] = ACTIONS(1839), + [aux_sym_cmd_identifier_token25] = ACTIONS(1839), + [aux_sym_cmd_identifier_token26] = ACTIONS(1839), + [aux_sym_cmd_identifier_token27] = ACTIONS(1839), + [aux_sym_cmd_identifier_token28] = ACTIONS(1839), + [aux_sym_cmd_identifier_token29] = ACTIONS(1839), + [aux_sym_cmd_identifier_token30] = ACTIONS(1839), + [aux_sym_cmd_identifier_token31] = ACTIONS(1839), + [aux_sym_cmd_identifier_token32] = ACTIONS(1839), + [aux_sym_cmd_identifier_token33] = ACTIONS(1839), + [aux_sym_cmd_identifier_token34] = ACTIONS(1839), + [aux_sym_cmd_identifier_token35] = ACTIONS(1839), + [aux_sym_cmd_identifier_token36] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1839), + [anon_sym_false] = ACTIONS(1839), + [anon_sym_null] = ACTIONS(1839), + [aux_sym_cmd_identifier_token38] = ACTIONS(1839), + [aux_sym_cmd_identifier_token39] = ACTIONS(1839), + [aux_sym_cmd_identifier_token40] = ACTIONS(1839), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_export_DASHenv] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_list] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_in] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_make] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_else] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_catch] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_source] = ACTIONS(1839), + [anon_sym_source_DASHenv] = ACTIONS(1839), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_new] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1839), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1839), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1839), + [aux_sym__val_number_decimal_token3] = ACTIONS(1839), + [aux_sym__val_number_decimal_token4] = ACTIONS(1839), + [aux_sym__val_number_token1] = ACTIONS(1839), + [aux_sym__val_number_token2] = ACTIONS(1839), + [aux_sym__val_number_token3] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [sym__str_single_quotes] = ACTIONS(1839), + [sym__str_back_ticks] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1839), + [sym__entry_separator] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1839), [anon_sym_POUND] = ACTIONS(3), }, - [343] = { - [sym_comment] = STATE(343), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [aux_sym_cmd_identifier_token1] = ACTIONS(1608), - [aux_sym_cmd_identifier_token2] = ACTIONS(1608), - [aux_sym_cmd_identifier_token3] = ACTIONS(1608), - [aux_sym_cmd_identifier_token4] = ACTIONS(1608), - [aux_sym_cmd_identifier_token5] = ACTIONS(1608), - [aux_sym_cmd_identifier_token6] = ACTIONS(1608), - [aux_sym_cmd_identifier_token7] = ACTIONS(1608), - [aux_sym_cmd_identifier_token8] = ACTIONS(1608), - [aux_sym_cmd_identifier_token9] = ACTIONS(1608), - [aux_sym_cmd_identifier_token10] = ACTIONS(1608), - [aux_sym_cmd_identifier_token11] = ACTIONS(1608), - [aux_sym_cmd_identifier_token12] = ACTIONS(1608), - [aux_sym_cmd_identifier_token13] = ACTIONS(1608), - [aux_sym_cmd_identifier_token14] = ACTIONS(1608), - [aux_sym_cmd_identifier_token15] = ACTIONS(1608), - [aux_sym_cmd_identifier_token16] = ACTIONS(1608), - [aux_sym_cmd_identifier_token17] = ACTIONS(1608), - [aux_sym_cmd_identifier_token18] = ACTIONS(1608), - [aux_sym_cmd_identifier_token19] = ACTIONS(1608), - [aux_sym_cmd_identifier_token20] = ACTIONS(1608), - [aux_sym_cmd_identifier_token21] = ACTIONS(1608), - [aux_sym_cmd_identifier_token22] = ACTIONS(1608), - [aux_sym_cmd_identifier_token23] = ACTIONS(1608), - [aux_sym_cmd_identifier_token24] = ACTIONS(1608), - [aux_sym_cmd_identifier_token25] = ACTIONS(1608), - [aux_sym_cmd_identifier_token26] = ACTIONS(1608), - [aux_sym_cmd_identifier_token27] = ACTIONS(1608), - [aux_sym_cmd_identifier_token28] = ACTIONS(1608), - [aux_sym_cmd_identifier_token29] = ACTIONS(1608), - [aux_sym_cmd_identifier_token30] = ACTIONS(1608), - [aux_sym_cmd_identifier_token31] = ACTIONS(1608), - [aux_sym_cmd_identifier_token32] = ACTIONS(1608), - [aux_sym_cmd_identifier_token33] = ACTIONS(1608), - [aux_sym_cmd_identifier_token34] = ACTIONS(1608), - [aux_sym_cmd_identifier_token35] = ACTIONS(1608), - [aux_sym_cmd_identifier_token36] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [aux_sym_cmd_identifier_token38] = ACTIONS(1608), - [aux_sym_cmd_identifier_token39] = ACTIONS(1608), - [aux_sym_cmd_identifier_token40] = ACTIONS(1608), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1608), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1608), - [aux_sym__val_number_token2] = ACTIONS(1608), - [aux_sym__val_number_token3] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym__str_single_quotes] = ACTIONS(1608), - [sym__str_back_ticks] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1608), - [sym__entry_separator] = ACTIONS(1610), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(121), - }, - [344] = { - [sym_path] = STATE(482), - [sym_comment] = STATE(344), - [aux_sym_cell_path_repeat1] = STATE(345), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [aux_sym_cmd_identifier_token1] = ACTIONS(889), - [aux_sym_cmd_identifier_token2] = ACTIONS(889), - [aux_sym_cmd_identifier_token3] = ACTIONS(889), - [aux_sym_cmd_identifier_token4] = ACTIONS(889), - [aux_sym_cmd_identifier_token5] = ACTIONS(889), - [aux_sym_cmd_identifier_token6] = ACTIONS(889), - [aux_sym_cmd_identifier_token7] = ACTIONS(889), - [aux_sym_cmd_identifier_token8] = ACTIONS(889), - [aux_sym_cmd_identifier_token9] = ACTIONS(889), - [aux_sym_cmd_identifier_token10] = ACTIONS(889), - [aux_sym_cmd_identifier_token11] = ACTIONS(889), - [aux_sym_cmd_identifier_token12] = ACTIONS(889), - [aux_sym_cmd_identifier_token13] = ACTIONS(889), - [aux_sym_cmd_identifier_token14] = ACTIONS(889), - [aux_sym_cmd_identifier_token15] = ACTIONS(889), - [aux_sym_cmd_identifier_token16] = ACTIONS(889), - [aux_sym_cmd_identifier_token17] = ACTIONS(889), - [aux_sym_cmd_identifier_token18] = ACTIONS(889), - [aux_sym_cmd_identifier_token19] = ACTIONS(889), - [aux_sym_cmd_identifier_token20] = ACTIONS(889), - [aux_sym_cmd_identifier_token21] = ACTIONS(889), - [aux_sym_cmd_identifier_token22] = ACTIONS(889), - [aux_sym_cmd_identifier_token23] = ACTIONS(889), - [aux_sym_cmd_identifier_token24] = ACTIONS(889), - [aux_sym_cmd_identifier_token25] = ACTIONS(889), - [aux_sym_cmd_identifier_token26] = ACTIONS(889), - [aux_sym_cmd_identifier_token27] = ACTIONS(889), - [aux_sym_cmd_identifier_token28] = ACTIONS(889), - [aux_sym_cmd_identifier_token29] = ACTIONS(889), - [aux_sym_cmd_identifier_token30] = ACTIONS(889), - [aux_sym_cmd_identifier_token31] = ACTIONS(889), - [aux_sym_cmd_identifier_token32] = ACTIONS(889), - [aux_sym_cmd_identifier_token33] = ACTIONS(889), - [aux_sym_cmd_identifier_token34] = ACTIONS(889), - [aux_sym_cmd_identifier_token35] = ACTIONS(889), - [aux_sym_cmd_identifier_token36] = ACTIONS(889), - [anon_sym_true] = ACTIONS(889), - [anon_sym_false] = ACTIONS(889), - [anon_sym_null] = ACTIONS(889), - [aux_sym_cmd_identifier_token38] = ACTIONS(889), - [aux_sym_cmd_identifier_token39] = ACTIONS(889), - [aux_sym_cmd_identifier_token40] = ACTIONS(889), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_error] = ACTIONS(889), - [anon_sym_list] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_make] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_try] = ACTIONS(889), - [anon_sym_catch] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_new] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(889), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(889), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(889), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__str_single_quotes] = ACTIONS(889), - [sym__str_back_ticks] = ACTIONS(889), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(889), - [sym__entry_separator] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(121), + [329] = { + [sym_cell_path] = STATE(567), + [sym_path] = STATE(472), + [sym_comment] = STATE(329), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_alias] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_let_DASHenv] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [aux_sym_cmd_identifier_token1] = ACTIONS(1843), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1843), + [aux_sym_cmd_identifier_token9] = ACTIONS(1843), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1843), + [aux_sym_cmd_identifier_token13] = ACTIONS(1843), + [aux_sym_cmd_identifier_token14] = ACTIONS(1843), + [aux_sym_cmd_identifier_token15] = ACTIONS(1843), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1843), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [aux_sym_cmd_identifier_token38] = ACTIONS(1843), + [aux_sym_cmd_identifier_token39] = ACTIONS(1843), + [aux_sym_cmd_identifier_token40] = ACTIONS(1843), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_export_DASHenv] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_error] = ACTIONS(1843), + [anon_sym_list] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_make] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_source] = ACTIONS(1843), + [anon_sym_source_DASHenv] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1843), + [anon_sym_hide] = ACTIONS(1843), + [anon_sym_hide_DASHenv] = ACTIONS(1843), + [anon_sym_overlay] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), + [sym__entry_separator] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(3), }, - [345] = { - [sym_path] = STATE(482), - [sym_comment] = STATE(345), - [aux_sym_cell_path_repeat1] = STATE(345), - [anon_sym_export] = ACTIONS(893), - [anon_sym_alias] = ACTIONS(893), - [anon_sym_let] = ACTIONS(893), - [anon_sym_let_DASHenv] = ACTIONS(893), - [anon_sym_mut] = ACTIONS(893), - [anon_sym_const] = ACTIONS(893), - [aux_sym_cmd_identifier_token1] = ACTIONS(893), - [aux_sym_cmd_identifier_token2] = ACTIONS(893), - [aux_sym_cmd_identifier_token3] = ACTIONS(893), - [aux_sym_cmd_identifier_token4] = ACTIONS(893), - [aux_sym_cmd_identifier_token5] = ACTIONS(893), - [aux_sym_cmd_identifier_token6] = ACTIONS(893), - [aux_sym_cmd_identifier_token7] = ACTIONS(893), - [aux_sym_cmd_identifier_token8] = ACTIONS(893), - [aux_sym_cmd_identifier_token9] = ACTIONS(893), - [aux_sym_cmd_identifier_token10] = ACTIONS(893), - [aux_sym_cmd_identifier_token11] = ACTIONS(893), - [aux_sym_cmd_identifier_token12] = ACTIONS(893), - [aux_sym_cmd_identifier_token13] = ACTIONS(893), - [aux_sym_cmd_identifier_token14] = ACTIONS(893), - [aux_sym_cmd_identifier_token15] = ACTIONS(893), - [aux_sym_cmd_identifier_token16] = ACTIONS(893), - [aux_sym_cmd_identifier_token17] = ACTIONS(893), - [aux_sym_cmd_identifier_token18] = ACTIONS(893), - [aux_sym_cmd_identifier_token19] = ACTIONS(893), - [aux_sym_cmd_identifier_token20] = ACTIONS(893), - [aux_sym_cmd_identifier_token21] = ACTIONS(893), - [aux_sym_cmd_identifier_token22] = ACTIONS(893), - [aux_sym_cmd_identifier_token23] = ACTIONS(893), - [aux_sym_cmd_identifier_token24] = ACTIONS(893), - [aux_sym_cmd_identifier_token25] = ACTIONS(893), - [aux_sym_cmd_identifier_token26] = ACTIONS(893), - [aux_sym_cmd_identifier_token27] = ACTIONS(893), - [aux_sym_cmd_identifier_token28] = ACTIONS(893), - [aux_sym_cmd_identifier_token29] = ACTIONS(893), - [aux_sym_cmd_identifier_token30] = ACTIONS(893), - [aux_sym_cmd_identifier_token31] = ACTIONS(893), - [aux_sym_cmd_identifier_token32] = ACTIONS(893), - [aux_sym_cmd_identifier_token33] = ACTIONS(893), - [aux_sym_cmd_identifier_token34] = ACTIONS(893), - [aux_sym_cmd_identifier_token35] = ACTIONS(893), - [aux_sym_cmd_identifier_token36] = ACTIONS(893), - [anon_sym_true] = ACTIONS(893), - [anon_sym_false] = ACTIONS(893), - [anon_sym_null] = ACTIONS(893), - [aux_sym_cmd_identifier_token38] = ACTIONS(893), - [aux_sym_cmd_identifier_token39] = ACTIONS(893), - [aux_sym_cmd_identifier_token40] = ACTIONS(893), - [anon_sym_def] = ACTIONS(893), - [anon_sym_export_DASHenv] = ACTIONS(893), - [anon_sym_extern] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_use] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_error] = ACTIONS(893), - [anon_sym_list] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_in] = ACTIONS(893), - [anon_sym_loop] = ACTIONS(893), - [anon_sym_make] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_else] = ACTIONS(893), - [anon_sym_match] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_try] = ACTIONS(893), - [anon_sym_catch] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_source] = ACTIONS(893), - [anon_sym_source_DASHenv] = ACTIONS(893), - [anon_sym_register] = ACTIONS(893), - [anon_sym_hide] = ACTIONS(893), - [anon_sym_hide_DASHenv] = ACTIONS(893), - [anon_sym_overlay] = ACTIONS(893), - [anon_sym_new] = ACTIONS(893), - [anon_sym_as] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(893), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(893), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(893), - [aux_sym__val_number_token1] = ACTIONS(893), - [aux_sym__val_number_token2] = ACTIONS(893), - [aux_sym__val_number_token3] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(893), - [sym__str_single_quotes] = ACTIONS(893), - [sym__str_back_ticks] = ACTIONS(893), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(893), - [sym__entry_separator] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(121), + [330] = { + [sym_comment] = STATE(330), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(986), + [anon_sym_list] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_new] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [sym__entry_separator] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(3), }, - [346] = { - [sym_cell_path] = STATE(635), - [sym_path] = STATE(572), - [sym_comment] = STATE(346), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(883), - [anon_sym_alias] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_let_DASHenv] = ACTIONS(883), - [anon_sym_mut] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [aux_sym_cmd_identifier_token1] = ACTIONS(883), - [aux_sym_cmd_identifier_token2] = ACTIONS(883), - [aux_sym_cmd_identifier_token3] = ACTIONS(883), - [aux_sym_cmd_identifier_token4] = ACTIONS(883), - [aux_sym_cmd_identifier_token5] = ACTIONS(883), - [aux_sym_cmd_identifier_token6] = ACTIONS(883), - [aux_sym_cmd_identifier_token7] = ACTIONS(883), - [aux_sym_cmd_identifier_token8] = ACTIONS(883), - [aux_sym_cmd_identifier_token9] = ACTIONS(883), - [aux_sym_cmd_identifier_token10] = ACTIONS(883), - [aux_sym_cmd_identifier_token11] = ACTIONS(883), - [aux_sym_cmd_identifier_token12] = ACTIONS(883), - [aux_sym_cmd_identifier_token13] = ACTIONS(883), - [aux_sym_cmd_identifier_token14] = ACTIONS(883), - [aux_sym_cmd_identifier_token15] = ACTIONS(883), - [aux_sym_cmd_identifier_token16] = ACTIONS(883), - [aux_sym_cmd_identifier_token17] = ACTIONS(883), - [aux_sym_cmd_identifier_token18] = ACTIONS(883), - [aux_sym_cmd_identifier_token19] = ACTIONS(883), - [aux_sym_cmd_identifier_token20] = ACTIONS(883), - [aux_sym_cmd_identifier_token21] = ACTIONS(883), - [aux_sym_cmd_identifier_token22] = ACTIONS(883), - [aux_sym_cmd_identifier_token23] = ACTIONS(883), - [aux_sym_cmd_identifier_token24] = ACTIONS(883), - [aux_sym_cmd_identifier_token25] = ACTIONS(883), - [aux_sym_cmd_identifier_token26] = ACTIONS(883), - [aux_sym_cmd_identifier_token27] = ACTIONS(883), - [aux_sym_cmd_identifier_token28] = ACTIONS(883), - [aux_sym_cmd_identifier_token29] = ACTIONS(883), - [aux_sym_cmd_identifier_token30] = ACTIONS(883), - [aux_sym_cmd_identifier_token31] = ACTIONS(883), - [aux_sym_cmd_identifier_token32] = ACTIONS(883), - [aux_sym_cmd_identifier_token33] = ACTIONS(883), - [aux_sym_cmd_identifier_token34] = ACTIONS(883), - [aux_sym_cmd_identifier_token35] = ACTIONS(883), - [aux_sym_cmd_identifier_token36] = ACTIONS(883), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_null] = ACTIONS(885), - [aux_sym_cmd_identifier_token38] = ACTIONS(883), - [aux_sym_cmd_identifier_token39] = ACTIONS(885), - [aux_sym_cmd_identifier_token40] = ACTIONS(885), - [anon_sym_def] = ACTIONS(883), - [anon_sym_export_DASHenv] = ACTIONS(883), - [anon_sym_extern] = ACTIONS(883), - [anon_sym_module] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_error] = ACTIONS(883), - [anon_sym_list] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_make] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [anon_sym_do] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_else] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_try] = ACTIONS(883), - [anon_sym_catch] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_source] = ACTIONS(883), - [anon_sym_source_DASHenv] = ACTIONS(883), - [anon_sym_register] = ACTIONS(883), - [anon_sym_hide] = ACTIONS(883), - [anon_sym_hide_DASHenv] = ACTIONS(883), - [anon_sym_overlay] = ACTIONS(883), - [anon_sym_new] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(885), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(885), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(885), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(885), - [aux_sym__val_number_token1] = ACTIONS(885), - [aux_sym__val_number_token2] = ACTIONS(885), - [aux_sym__val_number_token3] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(885), - [sym__str_single_quotes] = ACTIONS(885), - [sym__str_back_ticks] = ACTIONS(885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(885), + [331] = { + [sym_cell_path] = STATE(536), + [sym_path] = STATE(472), + [sym_comment] = STATE(331), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1847), + [aux_sym_cmd_identifier_token3] = ACTIONS(1847), + [aux_sym_cmd_identifier_token4] = ACTIONS(1847), + [aux_sym_cmd_identifier_token5] = ACTIONS(1847), + [aux_sym_cmd_identifier_token6] = ACTIONS(1847), + [aux_sym_cmd_identifier_token7] = ACTIONS(1847), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1847), + [aux_sym_cmd_identifier_token11] = ACTIONS(1847), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1847), + [aux_sym_cmd_identifier_token17] = ACTIONS(1847), + [aux_sym_cmd_identifier_token18] = ACTIONS(1847), + [aux_sym_cmd_identifier_token19] = ACTIONS(1847), + [aux_sym_cmd_identifier_token20] = ACTIONS(1847), + [aux_sym_cmd_identifier_token21] = ACTIONS(1847), + [aux_sym_cmd_identifier_token22] = ACTIONS(1847), + [aux_sym_cmd_identifier_token23] = ACTIONS(1847), + [aux_sym_cmd_identifier_token24] = ACTIONS(1847), + [aux_sym_cmd_identifier_token25] = ACTIONS(1847), + [aux_sym_cmd_identifier_token26] = ACTIONS(1847), + [aux_sym_cmd_identifier_token27] = ACTIONS(1847), + [aux_sym_cmd_identifier_token28] = ACTIONS(1847), + [aux_sym_cmd_identifier_token29] = ACTIONS(1847), + [aux_sym_cmd_identifier_token30] = ACTIONS(1847), + [aux_sym_cmd_identifier_token31] = ACTIONS(1847), + [aux_sym_cmd_identifier_token32] = ACTIONS(1847), + [aux_sym_cmd_identifier_token33] = ACTIONS(1847), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1847), + [aux_sym_cmd_identifier_token36] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [anon_sym_null] = ACTIONS(1847), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1847), + [aux_sym_cmd_identifier_token40] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_list] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1847), + [aux_sym__val_number_decimal_token3] = ACTIONS(1847), + [aux_sym__val_number_decimal_token4] = ACTIONS(1847), + [aux_sym__val_number_token1] = ACTIONS(1847), + [aux_sym__val_number_token2] = ACTIONS(1847), + [aux_sym__val_number_token3] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym__str_single_quotes] = ACTIONS(1847), + [sym__str_back_ticks] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), + [sym__entry_separator] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1847), [anon_sym_POUND] = ACTIONS(3), }, - [347] = { - [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(121), + [332] = { + [sym_comment] = STATE(332), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [anon_sym_true] = ACTIONS(990), + [anon_sym_false] = ACTIONS(990), + [anon_sym_null] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_list] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_new] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [sym__entry_separator] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(3), }, - [348] = { - [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1535), - [aux_sym_cmd_identifier_token40] = ACTIONS(1535), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1535), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1535), - [aux_sym__val_number_token1] = ACTIONS(1535), - [aux_sym__val_number_token2] = ACTIONS(1535), - [aux_sym__val_number_token3] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym__str_single_quotes] = ACTIONS(1535), - [sym__str_back_ticks] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1535), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(121), + [333] = { + [sym_comment] = STATE(333), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, - [349] = { - [sym_comment] = STATE(349), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [aux_sym_cmd_identifier_token1] = ACTIONS(928), - [aux_sym_cmd_identifier_token2] = ACTIONS(928), - [aux_sym_cmd_identifier_token3] = ACTIONS(928), - [aux_sym_cmd_identifier_token4] = ACTIONS(928), - [aux_sym_cmd_identifier_token5] = ACTIONS(928), - [aux_sym_cmd_identifier_token6] = ACTIONS(928), - [aux_sym_cmd_identifier_token7] = ACTIONS(928), - [aux_sym_cmd_identifier_token8] = ACTIONS(928), - [aux_sym_cmd_identifier_token9] = ACTIONS(928), - [aux_sym_cmd_identifier_token10] = ACTIONS(928), - [aux_sym_cmd_identifier_token11] = ACTIONS(928), - [aux_sym_cmd_identifier_token12] = ACTIONS(928), - [aux_sym_cmd_identifier_token13] = ACTIONS(928), - [aux_sym_cmd_identifier_token14] = ACTIONS(928), - [aux_sym_cmd_identifier_token15] = ACTIONS(928), - [aux_sym_cmd_identifier_token16] = ACTIONS(928), - [aux_sym_cmd_identifier_token17] = ACTIONS(928), - [aux_sym_cmd_identifier_token18] = ACTIONS(928), - [aux_sym_cmd_identifier_token19] = ACTIONS(928), - [aux_sym_cmd_identifier_token20] = ACTIONS(928), - [aux_sym_cmd_identifier_token21] = ACTIONS(928), - [aux_sym_cmd_identifier_token22] = ACTIONS(928), - [aux_sym_cmd_identifier_token23] = ACTIONS(928), - [aux_sym_cmd_identifier_token24] = ACTIONS(928), - [aux_sym_cmd_identifier_token25] = ACTIONS(928), - [aux_sym_cmd_identifier_token26] = ACTIONS(928), - [aux_sym_cmd_identifier_token27] = ACTIONS(928), - [aux_sym_cmd_identifier_token28] = ACTIONS(928), - [aux_sym_cmd_identifier_token29] = ACTIONS(928), - [aux_sym_cmd_identifier_token30] = ACTIONS(928), - [aux_sym_cmd_identifier_token31] = ACTIONS(928), - [aux_sym_cmd_identifier_token32] = ACTIONS(928), - [aux_sym_cmd_identifier_token33] = ACTIONS(928), - [aux_sym_cmd_identifier_token34] = ACTIONS(928), - [aux_sym_cmd_identifier_token35] = ACTIONS(928), - [aux_sym_cmd_identifier_token36] = ACTIONS(928), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [anon_sym_null] = ACTIONS(930), - [aux_sym_cmd_identifier_token38] = ACTIONS(928), - [aux_sym_cmd_identifier_token39] = ACTIONS(930), - [aux_sym_cmd_identifier_token40] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_error] = ACTIONS(928), - [anon_sym_list] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_make] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_try] = ACTIONS(928), - [anon_sym_catch] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_as] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(930), - [anon_sym_DOT_DOT2] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(930), - [aux_sym__val_number_decimal_token1] = ACTIONS(928), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [anon_sym_DOT2] = ACTIONS(928), - [aux_sym__val_number_decimal_token3] = ACTIONS(930), - [aux_sym__val_number_token1] = ACTIONS(930), - [aux_sym__val_number_token2] = ACTIONS(930), - [aux_sym__val_number_token3] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym__str_single_quotes] = ACTIONS(930), - [sym__str_back_ticks] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(3), + [334] = { + [sym_comment] = STATE(334), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1709), + [aux_sym_cmd_identifier_token3] = ACTIONS(1709), + [aux_sym_cmd_identifier_token4] = ACTIONS(1709), + [aux_sym_cmd_identifier_token5] = ACTIONS(1709), + [aux_sym_cmd_identifier_token6] = ACTIONS(1709), + [aux_sym_cmd_identifier_token7] = ACTIONS(1709), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1709), + [aux_sym_cmd_identifier_token11] = ACTIONS(1709), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1709), + [aux_sym_cmd_identifier_token17] = ACTIONS(1709), + [aux_sym_cmd_identifier_token18] = ACTIONS(1709), + [aux_sym_cmd_identifier_token19] = ACTIONS(1709), + [aux_sym_cmd_identifier_token20] = ACTIONS(1709), + [aux_sym_cmd_identifier_token21] = ACTIONS(1709), + [aux_sym_cmd_identifier_token22] = ACTIONS(1709), + [aux_sym_cmd_identifier_token23] = ACTIONS(1709), + [aux_sym_cmd_identifier_token24] = ACTIONS(1709), + [aux_sym_cmd_identifier_token25] = ACTIONS(1709), + [aux_sym_cmd_identifier_token26] = ACTIONS(1709), + [aux_sym_cmd_identifier_token27] = ACTIONS(1709), + [aux_sym_cmd_identifier_token28] = ACTIONS(1709), + [aux_sym_cmd_identifier_token29] = ACTIONS(1709), + [aux_sym_cmd_identifier_token30] = ACTIONS(1709), + [aux_sym_cmd_identifier_token31] = ACTIONS(1709), + [aux_sym_cmd_identifier_token32] = ACTIONS(1709), + [aux_sym_cmd_identifier_token33] = ACTIONS(1709), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1709), + [aux_sym_cmd_identifier_token36] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_list] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_new] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1851), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1853), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1709), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(247), }, - [350] = { - [sym_comment] = STATE(350), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [aux_sym_cmd_identifier_token1] = ACTIONS(1608), - [aux_sym_cmd_identifier_token2] = ACTIONS(1608), - [aux_sym_cmd_identifier_token3] = ACTIONS(1608), - [aux_sym_cmd_identifier_token4] = ACTIONS(1608), - [aux_sym_cmd_identifier_token5] = ACTIONS(1608), - [aux_sym_cmd_identifier_token6] = ACTIONS(1608), - [aux_sym_cmd_identifier_token7] = ACTIONS(1608), - [aux_sym_cmd_identifier_token8] = ACTIONS(1608), - [aux_sym_cmd_identifier_token9] = ACTIONS(1608), - [aux_sym_cmd_identifier_token10] = ACTIONS(1608), - [aux_sym_cmd_identifier_token11] = ACTIONS(1608), - [aux_sym_cmd_identifier_token12] = ACTIONS(1608), - [aux_sym_cmd_identifier_token13] = ACTIONS(1608), - [aux_sym_cmd_identifier_token14] = ACTIONS(1608), - [aux_sym_cmd_identifier_token15] = ACTIONS(1608), - [aux_sym_cmd_identifier_token16] = ACTIONS(1608), - [aux_sym_cmd_identifier_token17] = ACTIONS(1608), - [aux_sym_cmd_identifier_token18] = ACTIONS(1608), - [aux_sym_cmd_identifier_token19] = ACTIONS(1608), - [aux_sym_cmd_identifier_token20] = ACTIONS(1608), - [aux_sym_cmd_identifier_token21] = ACTIONS(1608), - [aux_sym_cmd_identifier_token22] = ACTIONS(1608), - [aux_sym_cmd_identifier_token23] = ACTIONS(1608), - [aux_sym_cmd_identifier_token24] = ACTIONS(1608), - [aux_sym_cmd_identifier_token25] = ACTIONS(1608), - [aux_sym_cmd_identifier_token26] = ACTIONS(1608), - [aux_sym_cmd_identifier_token27] = ACTIONS(1608), - [aux_sym_cmd_identifier_token28] = ACTIONS(1608), - [aux_sym_cmd_identifier_token29] = ACTIONS(1608), - [aux_sym_cmd_identifier_token30] = ACTIONS(1608), - [aux_sym_cmd_identifier_token31] = ACTIONS(1608), - [aux_sym_cmd_identifier_token32] = ACTIONS(1608), - [aux_sym_cmd_identifier_token33] = ACTIONS(1608), - [aux_sym_cmd_identifier_token34] = ACTIONS(1608), - [aux_sym_cmd_identifier_token35] = ACTIONS(1608), - [aux_sym_cmd_identifier_token36] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [aux_sym_cmd_identifier_token38] = ACTIONS(1608), - [aux_sym_cmd_identifier_token39] = ACTIONS(1608), - [aux_sym_cmd_identifier_token40] = ACTIONS(1608), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1608), - [anon_sym_DOT_DOT2] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1608), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1608), - [aux_sym__val_number_token2] = ACTIONS(1608), - [aux_sym__val_number_token3] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym__str_single_quotes] = ACTIONS(1608), - [sym__str_back_ticks] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1608), - [sym__entry_separator] = ACTIONS(1610), - [anon_sym_POUND] = ACTIONS(121), + [335] = { + [sym_comment] = STATE(335), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, - [351] = { - [sym_cell_path] = STATE(623), - [sym_path] = STATE(572), - [sym_comment] = STATE(351), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1744), - [anon_sym_alias] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(1744), - [anon_sym_let_DASHenv] = ACTIONS(1744), - [anon_sym_mut] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [aux_sym_cmd_identifier_token1] = ACTIONS(1744), - [aux_sym_cmd_identifier_token2] = ACTIONS(1744), - [aux_sym_cmd_identifier_token3] = ACTIONS(1744), - [aux_sym_cmd_identifier_token4] = ACTIONS(1744), - [aux_sym_cmd_identifier_token5] = ACTIONS(1744), - [aux_sym_cmd_identifier_token6] = ACTIONS(1744), - [aux_sym_cmd_identifier_token7] = ACTIONS(1744), - [aux_sym_cmd_identifier_token8] = ACTIONS(1744), - [aux_sym_cmd_identifier_token9] = ACTIONS(1744), - [aux_sym_cmd_identifier_token10] = ACTIONS(1744), - [aux_sym_cmd_identifier_token11] = ACTIONS(1744), - [aux_sym_cmd_identifier_token12] = ACTIONS(1744), - [aux_sym_cmd_identifier_token13] = ACTIONS(1744), - [aux_sym_cmd_identifier_token14] = ACTIONS(1744), - [aux_sym_cmd_identifier_token15] = ACTIONS(1744), - [aux_sym_cmd_identifier_token16] = ACTIONS(1744), - [aux_sym_cmd_identifier_token17] = ACTIONS(1744), - [aux_sym_cmd_identifier_token18] = ACTIONS(1744), - [aux_sym_cmd_identifier_token19] = ACTIONS(1744), - [aux_sym_cmd_identifier_token20] = ACTIONS(1744), - [aux_sym_cmd_identifier_token21] = ACTIONS(1744), - [aux_sym_cmd_identifier_token22] = ACTIONS(1744), - [aux_sym_cmd_identifier_token23] = ACTIONS(1744), - [aux_sym_cmd_identifier_token24] = ACTIONS(1744), - [aux_sym_cmd_identifier_token25] = ACTIONS(1744), - [aux_sym_cmd_identifier_token26] = ACTIONS(1744), - [aux_sym_cmd_identifier_token27] = ACTIONS(1744), - [aux_sym_cmd_identifier_token28] = ACTIONS(1744), - [aux_sym_cmd_identifier_token29] = ACTIONS(1744), - [aux_sym_cmd_identifier_token30] = ACTIONS(1744), - [aux_sym_cmd_identifier_token31] = ACTIONS(1744), - [aux_sym_cmd_identifier_token32] = ACTIONS(1744), - [aux_sym_cmd_identifier_token33] = ACTIONS(1744), - [aux_sym_cmd_identifier_token34] = ACTIONS(1744), - [aux_sym_cmd_identifier_token35] = ACTIONS(1744), - [aux_sym_cmd_identifier_token36] = ACTIONS(1744), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1746), - [aux_sym_cmd_identifier_token38] = ACTIONS(1744), - [aux_sym_cmd_identifier_token39] = ACTIONS(1746), - [aux_sym_cmd_identifier_token40] = ACTIONS(1746), - [anon_sym_def] = ACTIONS(1744), - [anon_sym_export_DASHenv] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_module] = ACTIONS(1744), - [anon_sym_use] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [anon_sym_error] = ACTIONS(1744), - [anon_sym_list] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1744), - [anon_sym_make] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_do] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_else] = ACTIONS(1744), - [anon_sym_match] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_try] = ACTIONS(1744), - [anon_sym_catch] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_source] = ACTIONS(1744), - [anon_sym_source_DASHenv] = ACTIONS(1744), - [anon_sym_register] = ACTIONS(1744), - [anon_sym_hide] = ACTIONS(1744), - [anon_sym_hide_DASHenv] = ACTIONS(1744), - [anon_sym_overlay] = ACTIONS(1744), - [anon_sym_new] = ACTIONS(1744), - [anon_sym_as] = ACTIONS(1744), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1746), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1746), - [aux_sym__val_number_decimal_token1] = ACTIONS(1744), - [aux_sym__val_number_decimal_token2] = ACTIONS(1746), - [anon_sym_DOT2] = ACTIONS(1744), - [aux_sym__val_number_decimal_token3] = ACTIONS(1746), - [aux_sym__val_number_token1] = ACTIONS(1746), - [aux_sym__val_number_token2] = ACTIONS(1746), - [aux_sym__val_number_token3] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [sym__str_single_quotes] = ACTIONS(1746), - [sym__str_back_ticks] = ACTIONS(1746), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1746), + [336] = { + [sym_cell_path] = STATE(546), + [sym_path] = STATE(472), + [sym_comment] = STATE(336), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1855), + [anon_sym_alias] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_let_DASHenv] = ACTIONS(1855), + [anon_sym_mut] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [aux_sym_cmd_identifier_token1] = ACTIONS(1855), + [aux_sym_cmd_identifier_token2] = ACTIONS(1855), + [aux_sym_cmd_identifier_token3] = ACTIONS(1855), + [aux_sym_cmd_identifier_token4] = ACTIONS(1855), + [aux_sym_cmd_identifier_token5] = ACTIONS(1855), + [aux_sym_cmd_identifier_token6] = ACTIONS(1855), + [aux_sym_cmd_identifier_token7] = ACTIONS(1855), + [aux_sym_cmd_identifier_token8] = ACTIONS(1855), + [aux_sym_cmd_identifier_token9] = ACTIONS(1855), + [aux_sym_cmd_identifier_token10] = ACTIONS(1855), + [aux_sym_cmd_identifier_token11] = ACTIONS(1855), + [aux_sym_cmd_identifier_token12] = ACTIONS(1855), + [aux_sym_cmd_identifier_token13] = ACTIONS(1855), + [aux_sym_cmd_identifier_token14] = ACTIONS(1855), + [aux_sym_cmd_identifier_token15] = ACTIONS(1855), + [aux_sym_cmd_identifier_token16] = ACTIONS(1855), + [aux_sym_cmd_identifier_token17] = ACTIONS(1855), + [aux_sym_cmd_identifier_token18] = ACTIONS(1855), + [aux_sym_cmd_identifier_token19] = ACTIONS(1855), + [aux_sym_cmd_identifier_token20] = ACTIONS(1855), + [aux_sym_cmd_identifier_token21] = ACTIONS(1855), + [aux_sym_cmd_identifier_token22] = ACTIONS(1855), + [aux_sym_cmd_identifier_token23] = ACTIONS(1855), + [aux_sym_cmd_identifier_token24] = ACTIONS(1855), + [aux_sym_cmd_identifier_token25] = ACTIONS(1855), + [aux_sym_cmd_identifier_token26] = ACTIONS(1855), + [aux_sym_cmd_identifier_token27] = ACTIONS(1855), + [aux_sym_cmd_identifier_token28] = ACTIONS(1855), + [aux_sym_cmd_identifier_token29] = ACTIONS(1855), + [aux_sym_cmd_identifier_token30] = ACTIONS(1855), + [aux_sym_cmd_identifier_token31] = ACTIONS(1855), + [aux_sym_cmd_identifier_token32] = ACTIONS(1855), + [aux_sym_cmd_identifier_token33] = ACTIONS(1855), + [aux_sym_cmd_identifier_token34] = ACTIONS(1855), + [aux_sym_cmd_identifier_token35] = ACTIONS(1855), + [aux_sym_cmd_identifier_token36] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [anon_sym_null] = ACTIONS(1855), + [aux_sym_cmd_identifier_token38] = ACTIONS(1855), + [aux_sym_cmd_identifier_token39] = ACTIONS(1855), + [aux_sym_cmd_identifier_token40] = ACTIONS(1855), + [anon_sym_def] = ACTIONS(1855), + [anon_sym_export_DASHenv] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1855), + [anon_sym_use] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_error] = ACTIONS(1855), + [anon_sym_list] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_loop] = ACTIONS(1855), + [anon_sym_make] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_catch] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_source] = ACTIONS(1855), + [anon_sym_source_DASHenv] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1855), + [anon_sym_hide] = ACTIONS(1855), + [anon_sym_hide_DASHenv] = ACTIONS(1855), + [anon_sym_overlay] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1855), + [aux_sym__val_number_decimal_token3] = ACTIONS(1855), + [aux_sym__val_number_decimal_token4] = ACTIONS(1855), + [aux_sym__val_number_token1] = ACTIONS(1855), + [aux_sym__val_number_token2] = ACTIONS(1855), + [aux_sym__val_number_token3] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [sym__str_single_quotes] = ACTIONS(1855), + [sym__str_back_ticks] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), + [sym__entry_separator] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1855), [anon_sym_POUND] = ACTIONS(3), }, - [352] = { - [sym_comment] = STATE(352), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1851), - [aux_sym__immediate_decimal_token2] = ACTIONS(1854), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [337] = { + [sym_comment] = STATE(337), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, - [353] = { - [sym_comment] = STATE(353), - [aux_sym_shebang_repeat1] = STATE(353), - [anon_sym_export] = ACTIONS(1856), - [anon_sym_alias] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_let_DASHenv] = ACTIONS(1856), - [anon_sym_mut] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [aux_sym_cmd_identifier_token1] = ACTIONS(1856), - [aux_sym_cmd_identifier_token2] = ACTIONS(1856), - [aux_sym_cmd_identifier_token3] = ACTIONS(1856), - [aux_sym_cmd_identifier_token4] = ACTIONS(1856), - [aux_sym_cmd_identifier_token5] = ACTIONS(1856), - [aux_sym_cmd_identifier_token6] = ACTIONS(1856), - [aux_sym_cmd_identifier_token7] = ACTIONS(1856), - [aux_sym_cmd_identifier_token8] = ACTIONS(1856), - [aux_sym_cmd_identifier_token9] = ACTIONS(1856), - [aux_sym_cmd_identifier_token10] = ACTIONS(1856), - [aux_sym_cmd_identifier_token11] = ACTIONS(1856), - [aux_sym_cmd_identifier_token12] = ACTIONS(1856), - [aux_sym_cmd_identifier_token13] = ACTIONS(1856), - [aux_sym_cmd_identifier_token14] = ACTIONS(1856), - [aux_sym_cmd_identifier_token15] = ACTIONS(1856), - [aux_sym_cmd_identifier_token16] = ACTIONS(1856), - [aux_sym_cmd_identifier_token17] = ACTIONS(1856), - [aux_sym_cmd_identifier_token18] = ACTIONS(1856), - [aux_sym_cmd_identifier_token19] = ACTIONS(1856), - [aux_sym_cmd_identifier_token20] = ACTIONS(1856), - [aux_sym_cmd_identifier_token21] = ACTIONS(1856), - [aux_sym_cmd_identifier_token22] = ACTIONS(1856), - [aux_sym_cmd_identifier_token23] = ACTIONS(1856), - [aux_sym_cmd_identifier_token24] = ACTIONS(1858), - [aux_sym_cmd_identifier_token25] = ACTIONS(1856), - [aux_sym_cmd_identifier_token26] = ACTIONS(1858), - [aux_sym_cmd_identifier_token27] = ACTIONS(1856), - [aux_sym_cmd_identifier_token28] = ACTIONS(1856), - [aux_sym_cmd_identifier_token29] = ACTIONS(1856), - [aux_sym_cmd_identifier_token30] = ACTIONS(1856), - [aux_sym_cmd_identifier_token31] = ACTIONS(1858), - [aux_sym_cmd_identifier_token32] = ACTIONS(1858), - [aux_sym_cmd_identifier_token33] = ACTIONS(1858), - [aux_sym_cmd_identifier_token34] = ACTIONS(1858), - [aux_sym_cmd_identifier_token35] = ACTIONS(1858), - [aux_sym_cmd_identifier_token36] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1858), - [aux_sym_cmd_identifier_token38] = ACTIONS(1856), - [aux_sym_cmd_identifier_token39] = ACTIONS(1858), - [aux_sym_cmd_identifier_token40] = ACTIONS(1858), - [sym__newline] = ACTIONS(1860), - [anon_sym_def] = ACTIONS(1856), - [anon_sym_export_DASHenv] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_module] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_DOLLAR] = ACTIONS(1856), - [anon_sym_error] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_do] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [aux_sym_ctrl_match_token1] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_source] = ACTIONS(1856), - [anon_sym_source_DASHenv] = ACTIONS(1856), - [anon_sym_register] = ACTIONS(1856), - [anon_sym_hide] = ACTIONS(1856), - [anon_sym_hide_DASHenv] = ACTIONS(1856), - [anon_sym_overlay] = ACTIONS(1856), - [anon_sym_where] = ACTIONS(1858), - [aux_sym_expr_unary_token1] = ACTIONS(1858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1858), - [anon_sym_DOT_DOT_LT] = ACTIONS(1858), - [aux_sym__val_number_decimal_token1] = ACTIONS(1856), - [aux_sym__val_number_decimal_token2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), - [aux_sym__val_number_decimal_token3] = ACTIONS(1858), - [aux_sym__val_number_token1] = ACTIONS(1858), - [aux_sym__val_number_token2] = ACTIONS(1858), - [aux_sym__val_number_token3] = ACTIONS(1858), - [anon_sym_0b] = ACTIONS(1856), - [anon_sym_0o] = ACTIONS(1856), - [anon_sym_0x] = ACTIONS(1856), - [sym_val_date] = ACTIONS(1858), - [anon_sym_DQUOTE] = ACTIONS(1858), - [sym__str_single_quotes] = ACTIONS(1858), - [sym__str_back_ticks] = ACTIONS(1858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1858), - [anon_sym_CARET] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(3), + [338] = { + [sym_comment] = STATE(338), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, - [354] = { - [sym_comment] = STATE(354), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [aux_sym_cmd_identifier_token1] = ACTIONS(920), - [aux_sym_cmd_identifier_token2] = ACTIONS(920), - [aux_sym_cmd_identifier_token3] = ACTIONS(920), - [aux_sym_cmd_identifier_token4] = ACTIONS(920), - [aux_sym_cmd_identifier_token5] = ACTIONS(920), - [aux_sym_cmd_identifier_token6] = ACTIONS(920), - [aux_sym_cmd_identifier_token7] = ACTIONS(920), - [aux_sym_cmd_identifier_token8] = ACTIONS(920), - [aux_sym_cmd_identifier_token9] = ACTIONS(920), - [aux_sym_cmd_identifier_token10] = ACTIONS(920), - [aux_sym_cmd_identifier_token11] = ACTIONS(920), - [aux_sym_cmd_identifier_token12] = ACTIONS(920), - [aux_sym_cmd_identifier_token13] = ACTIONS(920), - [aux_sym_cmd_identifier_token14] = ACTIONS(920), - [aux_sym_cmd_identifier_token15] = ACTIONS(920), - [aux_sym_cmd_identifier_token16] = ACTIONS(920), - [aux_sym_cmd_identifier_token17] = ACTIONS(920), - [aux_sym_cmd_identifier_token18] = ACTIONS(920), - [aux_sym_cmd_identifier_token19] = ACTIONS(920), - [aux_sym_cmd_identifier_token20] = ACTIONS(920), - [aux_sym_cmd_identifier_token21] = ACTIONS(920), - [aux_sym_cmd_identifier_token22] = ACTIONS(920), - [aux_sym_cmd_identifier_token23] = ACTIONS(920), - [aux_sym_cmd_identifier_token24] = ACTIONS(920), - [aux_sym_cmd_identifier_token25] = ACTIONS(920), - [aux_sym_cmd_identifier_token26] = ACTIONS(920), - [aux_sym_cmd_identifier_token27] = ACTIONS(920), - [aux_sym_cmd_identifier_token28] = ACTIONS(920), - [aux_sym_cmd_identifier_token29] = ACTIONS(920), - [aux_sym_cmd_identifier_token30] = ACTIONS(920), - [aux_sym_cmd_identifier_token31] = ACTIONS(920), - [aux_sym_cmd_identifier_token32] = ACTIONS(920), - [aux_sym_cmd_identifier_token33] = ACTIONS(920), - [aux_sym_cmd_identifier_token34] = ACTIONS(920), - [aux_sym_cmd_identifier_token35] = ACTIONS(920), - [aux_sym_cmd_identifier_token36] = ACTIONS(920), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(920), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [anon_sym_def] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_error] = ACTIONS(920), - [anon_sym_list] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_make] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_try] = ACTIONS(920), - [anon_sym_catch] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_new] = ACTIONS(920), - [anon_sym_as] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(922), - [aux_sym_record_entry_token1] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), + [339] = { + [sym_path] = STATE(420), + [sym_comment] = STATE(339), + [aux_sym_cell_path_repeat1] = STATE(323), + [anon_sym_export] = ACTIONS(951), + [anon_sym_alias] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_let_DASHenv] = ACTIONS(951), + [anon_sym_mut] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [aux_sym_cmd_identifier_token1] = ACTIONS(951), + [aux_sym_cmd_identifier_token2] = ACTIONS(951), + [aux_sym_cmd_identifier_token3] = ACTIONS(951), + [aux_sym_cmd_identifier_token4] = ACTIONS(951), + [aux_sym_cmd_identifier_token5] = ACTIONS(951), + [aux_sym_cmd_identifier_token6] = ACTIONS(951), + [aux_sym_cmd_identifier_token7] = ACTIONS(951), + [aux_sym_cmd_identifier_token8] = ACTIONS(951), + [aux_sym_cmd_identifier_token9] = ACTIONS(951), + [aux_sym_cmd_identifier_token10] = ACTIONS(951), + [aux_sym_cmd_identifier_token11] = ACTIONS(951), + [aux_sym_cmd_identifier_token12] = ACTIONS(951), + [aux_sym_cmd_identifier_token13] = ACTIONS(951), + [aux_sym_cmd_identifier_token14] = ACTIONS(951), + [aux_sym_cmd_identifier_token15] = ACTIONS(951), + [aux_sym_cmd_identifier_token16] = ACTIONS(951), + [aux_sym_cmd_identifier_token17] = ACTIONS(951), + [aux_sym_cmd_identifier_token18] = ACTIONS(951), + [aux_sym_cmd_identifier_token19] = ACTIONS(951), + [aux_sym_cmd_identifier_token20] = ACTIONS(951), + [aux_sym_cmd_identifier_token21] = ACTIONS(951), + [aux_sym_cmd_identifier_token22] = ACTIONS(951), + [aux_sym_cmd_identifier_token23] = ACTIONS(951), + [aux_sym_cmd_identifier_token24] = ACTIONS(951), + [aux_sym_cmd_identifier_token25] = ACTIONS(951), + [aux_sym_cmd_identifier_token26] = ACTIONS(951), + [aux_sym_cmd_identifier_token27] = ACTIONS(951), + [aux_sym_cmd_identifier_token28] = ACTIONS(951), + [aux_sym_cmd_identifier_token29] = ACTIONS(951), + [aux_sym_cmd_identifier_token30] = ACTIONS(951), + [aux_sym_cmd_identifier_token31] = ACTIONS(951), + [aux_sym_cmd_identifier_token32] = ACTIONS(951), + [aux_sym_cmd_identifier_token33] = ACTIONS(951), + [aux_sym_cmd_identifier_token34] = ACTIONS(951), + [aux_sym_cmd_identifier_token35] = ACTIONS(951), + [aux_sym_cmd_identifier_token36] = ACTIONS(951), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_null] = ACTIONS(953), + [aux_sym_cmd_identifier_token38] = ACTIONS(951), + [aux_sym_cmd_identifier_token39] = ACTIONS(953), + [aux_sym_cmd_identifier_token40] = ACTIONS(953), + [anon_sym_def] = ACTIONS(951), + [anon_sym_export_DASHenv] = ACTIONS(951), + [anon_sym_extern] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_use] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_error] = ACTIONS(951), + [anon_sym_list] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_in] = ACTIONS(951), + [anon_sym_loop] = ACTIONS(951), + [anon_sym_make] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [anon_sym_do] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_else] = ACTIONS(951), + [anon_sym_match] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_try] = ACTIONS(951), + [anon_sym_catch] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_source] = ACTIONS(951), + [anon_sym_source_DASHenv] = ACTIONS(951), + [anon_sym_register] = ACTIONS(951), + [anon_sym_hide] = ACTIONS(951), + [anon_sym_hide_DASHenv] = ACTIONS(951), + [anon_sym_overlay] = ACTIONS(951), + [anon_sym_new] = ACTIONS(951), + [anon_sym_as] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(953), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(953), + [aux_sym__val_number_decimal_token3] = ACTIONS(953), + [aux_sym__val_number_decimal_token4] = ACTIONS(953), + [aux_sym__val_number_token1] = ACTIONS(953), + [aux_sym__val_number_token2] = ACTIONS(953), + [aux_sym__val_number_token3] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym__str_single_quotes] = ACTIONS(953), + [sym__str_back_ticks] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(953), + [aux_sym_record_entry_token1] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(247), }, - [355] = { - [sym_comment] = STATE(355), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_alias] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_let_DASHenv] = ACTIONS(1587), - [anon_sym_mut] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [aux_sym_cmd_identifier_token1] = ACTIONS(1587), - [aux_sym_cmd_identifier_token2] = ACTIONS(1587), - [aux_sym_cmd_identifier_token3] = ACTIONS(1587), - [aux_sym_cmd_identifier_token4] = ACTIONS(1587), - [aux_sym_cmd_identifier_token5] = ACTIONS(1587), - [aux_sym_cmd_identifier_token6] = ACTIONS(1587), - [aux_sym_cmd_identifier_token7] = ACTIONS(1587), - [aux_sym_cmd_identifier_token8] = ACTIONS(1587), - [aux_sym_cmd_identifier_token9] = ACTIONS(1587), - [aux_sym_cmd_identifier_token10] = ACTIONS(1587), - [aux_sym_cmd_identifier_token11] = ACTIONS(1587), - [aux_sym_cmd_identifier_token12] = ACTIONS(1587), - [aux_sym_cmd_identifier_token13] = ACTIONS(1587), - [aux_sym_cmd_identifier_token14] = ACTIONS(1587), - [aux_sym_cmd_identifier_token15] = ACTIONS(1587), - [aux_sym_cmd_identifier_token16] = ACTIONS(1587), - [aux_sym_cmd_identifier_token17] = ACTIONS(1587), - [aux_sym_cmd_identifier_token18] = ACTIONS(1587), - [aux_sym_cmd_identifier_token19] = ACTIONS(1587), - [aux_sym_cmd_identifier_token20] = ACTIONS(1587), - [aux_sym_cmd_identifier_token21] = ACTIONS(1587), - [aux_sym_cmd_identifier_token22] = ACTIONS(1587), - [aux_sym_cmd_identifier_token23] = ACTIONS(1587), - [aux_sym_cmd_identifier_token24] = ACTIONS(1587), - [aux_sym_cmd_identifier_token25] = ACTIONS(1587), - [aux_sym_cmd_identifier_token26] = ACTIONS(1587), - [aux_sym_cmd_identifier_token27] = ACTIONS(1587), - [aux_sym_cmd_identifier_token28] = ACTIONS(1587), - [aux_sym_cmd_identifier_token29] = ACTIONS(1587), - [aux_sym_cmd_identifier_token30] = ACTIONS(1587), - [aux_sym_cmd_identifier_token31] = ACTIONS(1587), - [aux_sym_cmd_identifier_token32] = ACTIONS(1587), - [aux_sym_cmd_identifier_token33] = ACTIONS(1587), - [aux_sym_cmd_identifier_token34] = ACTIONS(1587), - [aux_sym_cmd_identifier_token35] = ACTIONS(1587), - [aux_sym_cmd_identifier_token36] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [anon_sym_def] = ACTIONS(1587), - [anon_sym_export_DASHenv] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_error] = ACTIONS(1587), - [anon_sym_list] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_make] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_source] = ACTIONS(1587), - [anon_sym_source_DASHenv] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_hide] = ACTIONS(1587), - [anon_sym_hide_DASHenv] = ACTIONS(1587), - [anon_sym_overlay] = ACTIONS(1587), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_as] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [anon_sym_DOT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), - [sym__entry_separator] = ACTIONS(1595), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(121), + [340] = { + [sym_cell_path] = STATE(489), + [sym_path] = STATE(472), + [sym_comment] = STATE(340), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1859), + [aux_sym_cmd_identifier_token3] = ACTIONS(1859), + [aux_sym_cmd_identifier_token4] = ACTIONS(1859), + [aux_sym_cmd_identifier_token5] = ACTIONS(1859), + [aux_sym_cmd_identifier_token6] = ACTIONS(1859), + [aux_sym_cmd_identifier_token7] = ACTIONS(1859), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1859), + [aux_sym_cmd_identifier_token11] = ACTIONS(1859), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1859), + [aux_sym_cmd_identifier_token17] = ACTIONS(1859), + [aux_sym_cmd_identifier_token18] = ACTIONS(1859), + [aux_sym_cmd_identifier_token19] = ACTIONS(1859), + [aux_sym_cmd_identifier_token20] = ACTIONS(1859), + [aux_sym_cmd_identifier_token21] = ACTIONS(1859), + [aux_sym_cmd_identifier_token22] = ACTIONS(1859), + [aux_sym_cmd_identifier_token23] = ACTIONS(1859), + [aux_sym_cmd_identifier_token24] = ACTIONS(1859), + [aux_sym_cmd_identifier_token25] = ACTIONS(1859), + [aux_sym_cmd_identifier_token26] = ACTIONS(1859), + [aux_sym_cmd_identifier_token27] = ACTIONS(1859), + [aux_sym_cmd_identifier_token28] = ACTIONS(1859), + [aux_sym_cmd_identifier_token29] = ACTIONS(1859), + [aux_sym_cmd_identifier_token30] = ACTIONS(1859), + [aux_sym_cmd_identifier_token31] = ACTIONS(1859), + [aux_sym_cmd_identifier_token32] = ACTIONS(1859), + [aux_sym_cmd_identifier_token33] = ACTIONS(1859), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1859), + [aux_sym_cmd_identifier_token36] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [anon_sym_null] = ACTIONS(1859), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1859), + [aux_sym_cmd_identifier_token40] = ACTIONS(1859), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_list] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1859), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1859), + [aux_sym__val_number_decimal_token3] = ACTIONS(1859), + [aux_sym__val_number_decimal_token4] = ACTIONS(1859), + [aux_sym__val_number_token1] = ACTIONS(1859), + [aux_sym__val_number_token2] = ACTIONS(1859), + [aux_sym__val_number_token3] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [sym__str_single_quotes] = ACTIONS(1859), + [sym__str_back_ticks] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1859), + [sym__entry_separator] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(3), }, - [356] = { - [sym_comment] = STATE(356), + [341] = { + [sym_cell_path] = STATE(491), + [sym_path] = STATE(472), + [sym_comment] = STATE(341), + [aux_sym_cell_path_repeat1] = STATE(386), [anon_sym_export] = ACTIONS(1863), [anon_sym_alias] = ACTIONS(1863), [anon_sym_let] = ACTIONS(1863), @@ -114143,16 +117835,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1863), [anon_sym_new] = ACTIONS(1863), [anon_sym_as] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), - [anon_sym_DOT_DOT2] = ACTIONS(1865), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1867), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1743), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), [aux_sym__val_number_decimal_token1] = ACTIONS(1863), [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [anon_sym_DOT2] = ACTIONS(1863), [aux_sym__val_number_decimal_token3] = ACTIONS(1863), + [aux_sym__val_number_decimal_token4] = ACTIONS(1863), [aux_sym__val_number_token1] = ACTIONS(1863), [aux_sym__val_number_token2] = ACTIONS(1863), [aux_sym__val_number_token3] = ACTIONS(1863), @@ -114160,11 +117849,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1863), [sym__str_back_ticks] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), + [sym__entry_separator] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(3), + }, + [342] = { + [sym_cell_path] = STATE(499), + [sym_path] = STATE(472), + [sym_comment] = STATE(342), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token2] = ACTIONS(1867), + [aux_sym_cmd_identifier_token3] = ACTIONS(1867), + [aux_sym_cmd_identifier_token4] = ACTIONS(1867), + [aux_sym_cmd_identifier_token5] = ACTIONS(1867), + [aux_sym_cmd_identifier_token6] = ACTIONS(1867), + [aux_sym_cmd_identifier_token7] = ACTIONS(1867), + [aux_sym_cmd_identifier_token8] = ACTIONS(1867), + [aux_sym_cmd_identifier_token9] = ACTIONS(1867), + [aux_sym_cmd_identifier_token10] = ACTIONS(1867), + [aux_sym_cmd_identifier_token11] = ACTIONS(1867), + [aux_sym_cmd_identifier_token12] = ACTIONS(1867), + [aux_sym_cmd_identifier_token13] = ACTIONS(1867), + [aux_sym_cmd_identifier_token14] = ACTIONS(1867), + [aux_sym_cmd_identifier_token15] = ACTIONS(1867), + [aux_sym_cmd_identifier_token16] = ACTIONS(1867), + [aux_sym_cmd_identifier_token17] = ACTIONS(1867), + [aux_sym_cmd_identifier_token18] = ACTIONS(1867), + [aux_sym_cmd_identifier_token19] = ACTIONS(1867), + [aux_sym_cmd_identifier_token20] = ACTIONS(1867), + [aux_sym_cmd_identifier_token21] = ACTIONS(1867), + [aux_sym_cmd_identifier_token22] = ACTIONS(1867), + [aux_sym_cmd_identifier_token23] = ACTIONS(1867), + [aux_sym_cmd_identifier_token24] = ACTIONS(1867), + [aux_sym_cmd_identifier_token25] = ACTIONS(1867), + [aux_sym_cmd_identifier_token26] = ACTIONS(1867), + [aux_sym_cmd_identifier_token27] = ACTIONS(1867), + [aux_sym_cmd_identifier_token28] = ACTIONS(1867), + [aux_sym_cmd_identifier_token29] = ACTIONS(1867), + [aux_sym_cmd_identifier_token30] = ACTIONS(1867), + [aux_sym_cmd_identifier_token31] = ACTIONS(1867), + [aux_sym_cmd_identifier_token32] = ACTIONS(1867), + [aux_sym_cmd_identifier_token33] = ACTIONS(1867), + [aux_sym_cmd_identifier_token34] = ACTIONS(1867), + [aux_sym_cmd_identifier_token35] = ACTIONS(1867), + [aux_sym_cmd_identifier_token36] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_null] = ACTIONS(1867), + [aux_sym_cmd_identifier_token38] = ACTIONS(1867), + [aux_sym_cmd_identifier_token39] = ACTIONS(1867), + [aux_sym_cmd_identifier_token40] = ACTIONS(1867), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_list] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_make] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_as] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1867), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1867), + [aux_sym__val_number_decimal_token3] = ACTIONS(1867), + [aux_sym__val_number_decimal_token4] = ACTIONS(1867), + [aux_sym__val_number_token1] = ACTIONS(1867), + [aux_sym__val_number_token2] = ACTIONS(1867), + [aux_sym__val_number_token3] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [sym__str_single_quotes] = ACTIONS(1867), + [sym__str_back_ticks] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), [sym__entry_separator] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(3), }, - [357] = { - [sym_comment] = STATE(357), + [343] = { + [sym_comment] = STATE(343), + [anon_sym_export] = ACTIONS(1265), + [anon_sym_alias] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_let_DASHenv] = ACTIONS(1265), + [anon_sym_mut] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [aux_sym_cmd_identifier_token1] = ACTIONS(1265), + [aux_sym_cmd_identifier_token2] = ACTIONS(1265), + [aux_sym_cmd_identifier_token3] = ACTIONS(1265), + [aux_sym_cmd_identifier_token4] = ACTIONS(1265), + [aux_sym_cmd_identifier_token5] = ACTIONS(1265), + [aux_sym_cmd_identifier_token6] = ACTIONS(1265), + [aux_sym_cmd_identifier_token7] = ACTIONS(1265), + [aux_sym_cmd_identifier_token8] = ACTIONS(1265), + [aux_sym_cmd_identifier_token9] = ACTIONS(1265), + [aux_sym_cmd_identifier_token10] = ACTIONS(1265), + [aux_sym_cmd_identifier_token11] = ACTIONS(1265), + [aux_sym_cmd_identifier_token12] = ACTIONS(1265), + [aux_sym_cmd_identifier_token13] = ACTIONS(1265), + [aux_sym_cmd_identifier_token14] = ACTIONS(1265), + [aux_sym_cmd_identifier_token15] = ACTIONS(1265), + [aux_sym_cmd_identifier_token16] = ACTIONS(1265), + [aux_sym_cmd_identifier_token17] = ACTIONS(1265), + [aux_sym_cmd_identifier_token18] = ACTIONS(1265), + [aux_sym_cmd_identifier_token19] = ACTIONS(1265), + [aux_sym_cmd_identifier_token20] = ACTIONS(1265), + [aux_sym_cmd_identifier_token21] = ACTIONS(1265), + [aux_sym_cmd_identifier_token22] = ACTIONS(1265), + [aux_sym_cmd_identifier_token23] = ACTIONS(1265), + [aux_sym_cmd_identifier_token24] = ACTIONS(1268), + [aux_sym_cmd_identifier_token25] = ACTIONS(1265), + [aux_sym_cmd_identifier_token26] = ACTIONS(1268), + [aux_sym_cmd_identifier_token27] = ACTIONS(1265), + [aux_sym_cmd_identifier_token28] = ACTIONS(1265), + [aux_sym_cmd_identifier_token29] = ACTIONS(1265), + [aux_sym_cmd_identifier_token30] = ACTIONS(1265), + [aux_sym_cmd_identifier_token31] = ACTIONS(1268), + [aux_sym_cmd_identifier_token32] = ACTIONS(1268), + [aux_sym_cmd_identifier_token33] = ACTIONS(1268), + [aux_sym_cmd_identifier_token34] = ACTIONS(1268), + [aux_sym_cmd_identifier_token35] = ACTIONS(1268), + [aux_sym_cmd_identifier_token36] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1268), + [anon_sym_false] = ACTIONS(1268), + [anon_sym_null] = ACTIONS(1268), + [aux_sym_cmd_identifier_token38] = ACTIONS(1265), + [aux_sym_cmd_identifier_token39] = ACTIONS(1268), + [aux_sym_cmd_identifier_token40] = ACTIONS(1268), + [sym__newline] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_def] = ACTIONS(1265), + [anon_sym_export_DASHenv] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_module] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_error] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [aux_sym_ctrl_match_token1] = ACTIONS(1268), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_try] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_source] = ACTIONS(1265), + [anon_sym_source_DASHenv] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_hide] = ACTIONS(1265), + [anon_sym_hide_DASHenv] = ACTIONS(1265), + [anon_sym_overlay] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1268), + [aux_sym_expr_unary_token1] = ACTIONS(1268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1268), + [anon_sym_DOT_DOT_LT] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_token1] = ACTIONS(1268), + [aux_sym__val_number_token2] = ACTIONS(1268), + [aux_sym__val_number_token3] = ACTIONS(1268), + [anon_sym_0b] = ACTIONS(1265), + [anon_sym_0o] = ACTIONS(1265), + [anon_sym_0x] = ACTIONS(1265), + [sym_val_date] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym__str_single_quotes] = ACTIONS(1268), + [sym__str_back_ticks] = ACTIONS(1268), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1268), + [aux_sym_env_var_token1] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1268), + [anon_sym_POUND] = ACTIONS(247), + }, + [344] = { + [sym_cell_path] = STATE(537), + [sym_path] = STATE(472), + [sym_comment] = STATE(344), + [aux_sym_cell_path_repeat1] = STATE(386), [anon_sym_export] = ACTIONS(1871), [anon_sym_alias] = ACTIONS(1871), [anon_sym_let] = ACTIONS(1871), @@ -114246,16 +118147,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1871), [anon_sym_new] = ACTIONS(1871), [anon_sym_as] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), - [anon_sym_DOT_DOT2] = ACTIONS(1873), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1875), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(1743), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), [aux_sym__val_number_decimal_token1] = ACTIONS(1871), [aux_sym__val_number_decimal_token2] = ACTIONS(1871), - [anon_sym_DOT2] = ACTIONS(1871), [aux_sym__val_number_decimal_token3] = ACTIONS(1871), + [aux_sym__val_number_decimal_token4] = ACTIONS(1871), [aux_sym__val_number_token1] = ACTIONS(1871), [aux_sym__val_number_token2] = ACTIONS(1871), [aux_sym__val_number_token3] = ACTIONS(1871), @@ -114263,11 +118161,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1871), [sym__str_back_ticks] = ACTIONS(1871), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), + [sym__entry_separator] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(3), + }, + [345] = { + [sym_cell_path] = STATE(538), + [sym_path] = STATE(472), + [sym_comment] = STATE(345), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [aux_sym_cmd_identifier_token1] = ACTIONS(1875), + [aux_sym_cmd_identifier_token2] = ACTIONS(1875), + [aux_sym_cmd_identifier_token3] = ACTIONS(1875), + [aux_sym_cmd_identifier_token4] = ACTIONS(1875), + [aux_sym_cmd_identifier_token5] = ACTIONS(1875), + [aux_sym_cmd_identifier_token6] = ACTIONS(1875), + [aux_sym_cmd_identifier_token7] = ACTIONS(1875), + [aux_sym_cmd_identifier_token8] = ACTIONS(1875), + [aux_sym_cmd_identifier_token9] = ACTIONS(1875), + [aux_sym_cmd_identifier_token10] = ACTIONS(1875), + [aux_sym_cmd_identifier_token11] = ACTIONS(1875), + [aux_sym_cmd_identifier_token12] = ACTIONS(1875), + [aux_sym_cmd_identifier_token13] = ACTIONS(1875), + [aux_sym_cmd_identifier_token14] = ACTIONS(1875), + [aux_sym_cmd_identifier_token15] = ACTIONS(1875), + [aux_sym_cmd_identifier_token16] = ACTIONS(1875), + [aux_sym_cmd_identifier_token17] = ACTIONS(1875), + [aux_sym_cmd_identifier_token18] = ACTIONS(1875), + [aux_sym_cmd_identifier_token19] = ACTIONS(1875), + [aux_sym_cmd_identifier_token20] = ACTIONS(1875), + [aux_sym_cmd_identifier_token21] = ACTIONS(1875), + [aux_sym_cmd_identifier_token22] = ACTIONS(1875), + [aux_sym_cmd_identifier_token23] = ACTIONS(1875), + [aux_sym_cmd_identifier_token24] = ACTIONS(1875), + [aux_sym_cmd_identifier_token25] = ACTIONS(1875), + [aux_sym_cmd_identifier_token26] = ACTIONS(1875), + [aux_sym_cmd_identifier_token27] = ACTIONS(1875), + [aux_sym_cmd_identifier_token28] = ACTIONS(1875), + [aux_sym_cmd_identifier_token29] = ACTIONS(1875), + [aux_sym_cmd_identifier_token30] = ACTIONS(1875), + [aux_sym_cmd_identifier_token31] = ACTIONS(1875), + [aux_sym_cmd_identifier_token32] = ACTIONS(1875), + [aux_sym_cmd_identifier_token33] = ACTIONS(1875), + [aux_sym_cmd_identifier_token34] = ACTIONS(1875), + [aux_sym_cmd_identifier_token35] = ACTIONS(1875), + [aux_sym_cmd_identifier_token36] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1875), + [anon_sym_false] = ACTIONS(1875), + [anon_sym_null] = ACTIONS(1875), + [aux_sym_cmd_identifier_token38] = ACTIONS(1875), + [aux_sym_cmd_identifier_token39] = ACTIONS(1875), + [aux_sym_cmd_identifier_token40] = ACTIONS(1875), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_list] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_make] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1875), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1875), + [aux_sym__val_number_decimal_token3] = ACTIONS(1875), + [aux_sym__val_number_decimal_token4] = ACTIONS(1875), + [aux_sym__val_number_token1] = ACTIONS(1875), + [aux_sym__val_number_token2] = ACTIONS(1875), + [aux_sym__val_number_token3] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym__str_single_quotes] = ACTIONS(1875), + [sym__str_back_ticks] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), [sym__entry_separator] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(3), }, - [358] = { - [sym_comment] = STATE(358), + [346] = { + [sym_cell_path] = STATE(539), + [sym_path] = STATE(472), + [sym_comment] = STATE(346), + [aux_sym_cell_path_repeat1] = STATE(386), [anon_sym_export] = ACTIONS(1879), [anon_sym_alias] = ACTIONS(1879), [anon_sym_let] = ACTIONS(1879), @@ -114349,16 +118355,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1879), [anon_sym_new] = ACTIONS(1879), [anon_sym_as] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), - [anon_sym_DOT_DOT2] = ACTIONS(1881), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1883), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(1743), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), [aux_sym__val_number_decimal_token1] = ACTIONS(1879), [aux_sym__val_number_decimal_token2] = ACTIONS(1879), - [anon_sym_DOT2] = ACTIONS(1879), [aux_sym__val_number_decimal_token3] = ACTIONS(1879), + [aux_sym__val_number_decimal_token4] = ACTIONS(1879), [aux_sym__val_number_token1] = ACTIONS(1879), [aux_sym__val_number_token2] = ACTIONS(1879), [aux_sym__val_number_token3] = ACTIONS(1879), @@ -114366,1559 +118369,2183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1879), [sym__str_back_ticks] = ACTIONS(1879), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), - [sym__entry_separator] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(121), - }, - [359] = { - [sym_cell_path] = STATE(658), - [sym_path] = STATE(572), - [sym_comment] = STATE(359), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [anon_sym_DOT2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [sym__entry_separator] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1879), [anon_sym_POUND] = ACTIONS(3), }, - [360] = { - [sym_cell_path] = STATE(628), - [sym_path] = STATE(572), - [sym_comment] = STATE(360), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1756), - [anon_sym_alias] = ACTIONS(1756), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_let_DASHenv] = ACTIONS(1756), - [anon_sym_mut] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [aux_sym_cmd_identifier_token1] = ACTIONS(1756), - [aux_sym_cmd_identifier_token2] = ACTIONS(1756), - [aux_sym_cmd_identifier_token3] = ACTIONS(1756), - [aux_sym_cmd_identifier_token4] = ACTIONS(1756), - [aux_sym_cmd_identifier_token5] = ACTIONS(1756), - [aux_sym_cmd_identifier_token6] = ACTIONS(1756), - [aux_sym_cmd_identifier_token7] = ACTIONS(1756), - [aux_sym_cmd_identifier_token8] = ACTIONS(1756), - [aux_sym_cmd_identifier_token9] = ACTIONS(1756), - [aux_sym_cmd_identifier_token10] = ACTIONS(1756), - [aux_sym_cmd_identifier_token11] = ACTIONS(1756), - [aux_sym_cmd_identifier_token12] = ACTIONS(1756), - [aux_sym_cmd_identifier_token13] = ACTIONS(1756), - [aux_sym_cmd_identifier_token14] = ACTIONS(1756), - [aux_sym_cmd_identifier_token15] = ACTIONS(1756), - [aux_sym_cmd_identifier_token16] = ACTIONS(1756), - [aux_sym_cmd_identifier_token17] = ACTIONS(1756), - [aux_sym_cmd_identifier_token18] = ACTIONS(1756), - [aux_sym_cmd_identifier_token19] = ACTIONS(1756), - [aux_sym_cmd_identifier_token20] = ACTIONS(1756), - [aux_sym_cmd_identifier_token21] = ACTIONS(1756), - [aux_sym_cmd_identifier_token22] = ACTIONS(1756), - [aux_sym_cmd_identifier_token23] = ACTIONS(1756), - [aux_sym_cmd_identifier_token24] = ACTIONS(1756), - [aux_sym_cmd_identifier_token25] = ACTIONS(1756), - [aux_sym_cmd_identifier_token26] = ACTIONS(1756), - [aux_sym_cmd_identifier_token27] = ACTIONS(1756), - [aux_sym_cmd_identifier_token28] = ACTIONS(1756), - [aux_sym_cmd_identifier_token29] = ACTIONS(1756), - [aux_sym_cmd_identifier_token30] = ACTIONS(1756), - [aux_sym_cmd_identifier_token31] = ACTIONS(1756), - [aux_sym_cmd_identifier_token32] = ACTIONS(1756), - [aux_sym_cmd_identifier_token33] = ACTIONS(1756), - [aux_sym_cmd_identifier_token34] = ACTIONS(1756), - [aux_sym_cmd_identifier_token35] = ACTIONS(1756), - [aux_sym_cmd_identifier_token36] = ACTIONS(1756), - [anon_sym_true] = ACTIONS(1758), - [anon_sym_false] = ACTIONS(1758), - [anon_sym_null] = ACTIONS(1758), - [aux_sym_cmd_identifier_token38] = ACTIONS(1756), - [aux_sym_cmd_identifier_token39] = ACTIONS(1758), - [aux_sym_cmd_identifier_token40] = ACTIONS(1758), - [anon_sym_def] = ACTIONS(1756), - [anon_sym_export_DASHenv] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_module] = ACTIONS(1756), - [anon_sym_use] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_DOLLAR] = ACTIONS(1758), - [anon_sym_error] = ACTIONS(1756), - [anon_sym_list] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_in] = ACTIONS(1756), - [anon_sym_loop] = ACTIONS(1756), - [anon_sym_make] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_do] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_else] = ACTIONS(1756), - [anon_sym_match] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_try] = ACTIONS(1756), - [anon_sym_catch] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_source] = ACTIONS(1756), - [anon_sym_source_DASHenv] = ACTIONS(1756), - [anon_sym_register] = ACTIONS(1756), - [anon_sym_hide] = ACTIONS(1756), - [anon_sym_hide_DASHenv] = ACTIONS(1756), - [anon_sym_overlay] = ACTIONS(1756), - [anon_sym_new] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1758), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1758), - [aux_sym__val_number_decimal_token1] = ACTIONS(1756), - [aux_sym__val_number_decimal_token2] = ACTIONS(1758), - [anon_sym_DOT2] = ACTIONS(1756), - [aux_sym__val_number_decimal_token3] = ACTIONS(1758), - [aux_sym__val_number_token1] = ACTIONS(1758), - [aux_sym__val_number_token2] = ACTIONS(1758), - [aux_sym__val_number_token3] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [sym__str_single_quotes] = ACTIONS(1758), - [sym__str_back_ticks] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1758), + [347] = { + [sym_cell_path] = STATE(540), + [sym_path] = STATE(472), + [sym_comment] = STATE(347), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_let_DASHenv] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [aux_sym_cmd_identifier_token1] = ACTIONS(1883), + [aux_sym_cmd_identifier_token2] = ACTIONS(1883), + [aux_sym_cmd_identifier_token3] = ACTIONS(1883), + [aux_sym_cmd_identifier_token4] = ACTIONS(1883), + [aux_sym_cmd_identifier_token5] = ACTIONS(1883), + [aux_sym_cmd_identifier_token6] = ACTIONS(1883), + [aux_sym_cmd_identifier_token7] = ACTIONS(1883), + [aux_sym_cmd_identifier_token8] = ACTIONS(1883), + [aux_sym_cmd_identifier_token9] = ACTIONS(1883), + [aux_sym_cmd_identifier_token10] = ACTIONS(1883), + [aux_sym_cmd_identifier_token11] = ACTIONS(1883), + [aux_sym_cmd_identifier_token12] = ACTIONS(1883), + [aux_sym_cmd_identifier_token13] = ACTIONS(1883), + [aux_sym_cmd_identifier_token14] = ACTIONS(1883), + [aux_sym_cmd_identifier_token15] = ACTIONS(1883), + [aux_sym_cmd_identifier_token16] = ACTIONS(1883), + [aux_sym_cmd_identifier_token17] = ACTIONS(1883), + [aux_sym_cmd_identifier_token18] = ACTIONS(1883), + [aux_sym_cmd_identifier_token19] = ACTIONS(1883), + [aux_sym_cmd_identifier_token20] = ACTIONS(1883), + [aux_sym_cmd_identifier_token21] = ACTIONS(1883), + [aux_sym_cmd_identifier_token22] = ACTIONS(1883), + [aux_sym_cmd_identifier_token23] = ACTIONS(1883), + [aux_sym_cmd_identifier_token24] = ACTIONS(1883), + [aux_sym_cmd_identifier_token25] = ACTIONS(1883), + [aux_sym_cmd_identifier_token26] = ACTIONS(1883), + [aux_sym_cmd_identifier_token27] = ACTIONS(1883), + [aux_sym_cmd_identifier_token28] = ACTIONS(1883), + [aux_sym_cmd_identifier_token29] = ACTIONS(1883), + [aux_sym_cmd_identifier_token30] = ACTIONS(1883), + [aux_sym_cmd_identifier_token31] = ACTIONS(1883), + [aux_sym_cmd_identifier_token32] = ACTIONS(1883), + [aux_sym_cmd_identifier_token33] = ACTIONS(1883), + [aux_sym_cmd_identifier_token34] = ACTIONS(1883), + [aux_sym_cmd_identifier_token35] = ACTIONS(1883), + [aux_sym_cmd_identifier_token36] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1883), + [anon_sym_false] = ACTIONS(1883), + [anon_sym_null] = ACTIONS(1883), + [aux_sym_cmd_identifier_token38] = ACTIONS(1883), + [aux_sym_cmd_identifier_token39] = ACTIONS(1883), + [aux_sym_cmd_identifier_token40] = ACTIONS(1883), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_export_DASHenv] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_error] = ACTIONS(1883), + [anon_sym_list] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_in] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_make] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_catch] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_source] = ACTIONS(1883), + [anon_sym_source_DASHenv] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_hide] = ACTIONS(1883), + [anon_sym_hide_DASHenv] = ACTIONS(1883), + [anon_sym_overlay] = ACTIONS(1883), + [anon_sym_new] = ACTIONS(1883), + [anon_sym_as] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1883), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1883), + [aux_sym__val_number_decimal_token3] = ACTIONS(1883), + [aux_sym__val_number_decimal_token4] = ACTIONS(1883), + [aux_sym__val_number_token1] = ACTIONS(1883), + [aux_sym__val_number_token2] = ACTIONS(1883), + [aux_sym__val_number_token3] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1883), + [sym__str_back_ticks] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), + [sym__entry_separator] = ACTIONS(1885), + [anon_sym_PLUS] = ACTIONS(1883), [anon_sym_POUND] = ACTIONS(3), }, - [361] = { - [sym_cell_path] = STATE(629), - [sym_path] = STATE(572), - [sym_comment] = STATE(361), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1760), - [anon_sym_alias] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_let_DASHenv] = ACTIONS(1760), - [anon_sym_mut] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [aux_sym_cmd_identifier_token1] = ACTIONS(1760), - [aux_sym_cmd_identifier_token2] = ACTIONS(1760), - [aux_sym_cmd_identifier_token3] = ACTIONS(1760), - [aux_sym_cmd_identifier_token4] = ACTIONS(1760), - [aux_sym_cmd_identifier_token5] = ACTIONS(1760), - [aux_sym_cmd_identifier_token6] = ACTIONS(1760), - [aux_sym_cmd_identifier_token7] = ACTIONS(1760), - [aux_sym_cmd_identifier_token8] = ACTIONS(1760), - [aux_sym_cmd_identifier_token9] = ACTIONS(1760), - [aux_sym_cmd_identifier_token10] = ACTIONS(1760), - [aux_sym_cmd_identifier_token11] = ACTIONS(1760), - [aux_sym_cmd_identifier_token12] = ACTIONS(1760), - [aux_sym_cmd_identifier_token13] = ACTIONS(1760), - [aux_sym_cmd_identifier_token14] = ACTIONS(1760), - [aux_sym_cmd_identifier_token15] = ACTIONS(1760), - [aux_sym_cmd_identifier_token16] = ACTIONS(1760), - [aux_sym_cmd_identifier_token17] = ACTIONS(1760), - [aux_sym_cmd_identifier_token18] = ACTIONS(1760), - [aux_sym_cmd_identifier_token19] = ACTIONS(1760), - [aux_sym_cmd_identifier_token20] = ACTIONS(1760), - [aux_sym_cmd_identifier_token21] = ACTIONS(1760), - [aux_sym_cmd_identifier_token22] = ACTIONS(1760), - [aux_sym_cmd_identifier_token23] = ACTIONS(1760), - [aux_sym_cmd_identifier_token24] = ACTIONS(1760), - [aux_sym_cmd_identifier_token25] = ACTIONS(1760), - [aux_sym_cmd_identifier_token26] = ACTIONS(1760), - [aux_sym_cmd_identifier_token27] = ACTIONS(1760), - [aux_sym_cmd_identifier_token28] = ACTIONS(1760), - [aux_sym_cmd_identifier_token29] = ACTIONS(1760), - [aux_sym_cmd_identifier_token30] = ACTIONS(1760), - [aux_sym_cmd_identifier_token31] = ACTIONS(1760), - [aux_sym_cmd_identifier_token32] = ACTIONS(1760), - [aux_sym_cmd_identifier_token33] = ACTIONS(1760), - [aux_sym_cmd_identifier_token34] = ACTIONS(1760), - [aux_sym_cmd_identifier_token35] = ACTIONS(1760), - [aux_sym_cmd_identifier_token36] = ACTIONS(1760), - [anon_sym_true] = ACTIONS(1762), - [anon_sym_false] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1762), - [aux_sym_cmd_identifier_token38] = ACTIONS(1760), - [aux_sym_cmd_identifier_token39] = ACTIONS(1762), - [aux_sym_cmd_identifier_token40] = ACTIONS(1762), - [anon_sym_def] = ACTIONS(1760), - [anon_sym_export_DASHenv] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_module] = ACTIONS(1760), - [anon_sym_use] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_error] = ACTIONS(1760), - [anon_sym_list] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_in] = ACTIONS(1760), - [anon_sym_loop] = ACTIONS(1760), - [anon_sym_make] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_do] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_else] = ACTIONS(1760), - [anon_sym_match] = ACTIONS(1760), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_catch] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_source] = ACTIONS(1760), - [anon_sym_source_DASHenv] = ACTIONS(1760), - [anon_sym_register] = ACTIONS(1760), - [anon_sym_hide] = ACTIONS(1760), - [anon_sym_hide_DASHenv] = ACTIONS(1760), - [anon_sym_overlay] = ACTIONS(1760), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_as] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [anon_sym_DOT2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_token1] = ACTIONS(1762), - [aux_sym__val_number_token2] = ACTIONS(1762), - [aux_sym__val_number_token3] = ACTIONS(1762), - [anon_sym_DQUOTE] = ACTIONS(1762), - [sym__str_single_quotes] = ACTIONS(1762), - [sym__str_back_ticks] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(3), + [348] = { + [sym_comment] = STATE(348), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(1887), + [aux_sym__immediate_decimal_token2] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, - [362] = { - [sym_cell_path] = STATE(630), - [sym_path] = STATE(572), - [sym_comment] = STATE(362), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1764), - [anon_sym_alias] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_let_DASHenv] = ACTIONS(1764), - [anon_sym_mut] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [aux_sym_cmd_identifier_token1] = ACTIONS(1764), - [aux_sym_cmd_identifier_token2] = ACTIONS(1764), - [aux_sym_cmd_identifier_token3] = ACTIONS(1764), - [aux_sym_cmd_identifier_token4] = ACTIONS(1764), - [aux_sym_cmd_identifier_token5] = ACTIONS(1764), - [aux_sym_cmd_identifier_token6] = ACTIONS(1764), - [aux_sym_cmd_identifier_token7] = ACTIONS(1764), - [aux_sym_cmd_identifier_token8] = ACTIONS(1764), - [aux_sym_cmd_identifier_token9] = ACTIONS(1764), - [aux_sym_cmd_identifier_token10] = ACTIONS(1764), - [aux_sym_cmd_identifier_token11] = ACTIONS(1764), - [aux_sym_cmd_identifier_token12] = ACTIONS(1764), - [aux_sym_cmd_identifier_token13] = ACTIONS(1764), - [aux_sym_cmd_identifier_token14] = ACTIONS(1764), - [aux_sym_cmd_identifier_token15] = ACTIONS(1764), - [aux_sym_cmd_identifier_token16] = ACTIONS(1764), - [aux_sym_cmd_identifier_token17] = ACTIONS(1764), - [aux_sym_cmd_identifier_token18] = ACTIONS(1764), - [aux_sym_cmd_identifier_token19] = ACTIONS(1764), - [aux_sym_cmd_identifier_token20] = ACTIONS(1764), - [aux_sym_cmd_identifier_token21] = ACTIONS(1764), - [aux_sym_cmd_identifier_token22] = ACTIONS(1764), - [aux_sym_cmd_identifier_token23] = ACTIONS(1764), - [aux_sym_cmd_identifier_token24] = ACTIONS(1764), - [aux_sym_cmd_identifier_token25] = ACTIONS(1764), - [aux_sym_cmd_identifier_token26] = ACTIONS(1764), - [aux_sym_cmd_identifier_token27] = ACTIONS(1764), - [aux_sym_cmd_identifier_token28] = ACTIONS(1764), - [aux_sym_cmd_identifier_token29] = ACTIONS(1764), - [aux_sym_cmd_identifier_token30] = ACTIONS(1764), - [aux_sym_cmd_identifier_token31] = ACTIONS(1764), - [aux_sym_cmd_identifier_token32] = ACTIONS(1764), - [aux_sym_cmd_identifier_token33] = ACTIONS(1764), - [aux_sym_cmd_identifier_token34] = ACTIONS(1764), - [aux_sym_cmd_identifier_token35] = ACTIONS(1764), - [aux_sym_cmd_identifier_token36] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1766), - [aux_sym_cmd_identifier_token38] = ACTIONS(1764), - [aux_sym_cmd_identifier_token39] = ACTIONS(1766), - [aux_sym_cmd_identifier_token40] = ACTIONS(1766), - [anon_sym_def] = ACTIONS(1764), - [anon_sym_export_DASHenv] = ACTIONS(1764), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_module] = ACTIONS(1764), - [anon_sym_use] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [anon_sym_error] = ACTIONS(1764), - [anon_sym_list] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_loop] = ACTIONS(1764), - [anon_sym_make] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_do] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_match] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_catch] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_source] = ACTIONS(1764), - [anon_sym_source_DASHenv] = ACTIONS(1764), - [anon_sym_register] = ACTIONS(1764), - [anon_sym_hide] = ACTIONS(1764), - [anon_sym_hide_DASHenv] = ACTIONS(1764), - [anon_sym_overlay] = ACTIONS(1764), - [anon_sym_new] = ACTIONS(1764), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1766), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1766), - [aux_sym__val_number_decimal_token1] = ACTIONS(1764), - [aux_sym__val_number_decimal_token2] = ACTIONS(1766), - [anon_sym_DOT2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1766), - [aux_sym__val_number_token1] = ACTIONS(1766), - [aux_sym__val_number_token2] = ACTIONS(1766), - [aux_sym__val_number_token3] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym__str_single_quotes] = ACTIONS(1766), - [sym__str_back_ticks] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1766), + [349] = { + [sym_cell_path] = STATE(541), + [sym_path] = STATE(472), + [sym_comment] = STATE(349), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1891), + [anon_sym_alias] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_let_DASHenv] = ACTIONS(1891), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [aux_sym_cmd_identifier_token1] = ACTIONS(1891), + [aux_sym_cmd_identifier_token2] = ACTIONS(1891), + [aux_sym_cmd_identifier_token3] = ACTIONS(1891), + [aux_sym_cmd_identifier_token4] = ACTIONS(1891), + [aux_sym_cmd_identifier_token5] = ACTIONS(1891), + [aux_sym_cmd_identifier_token6] = ACTIONS(1891), + [aux_sym_cmd_identifier_token7] = ACTIONS(1891), + [aux_sym_cmd_identifier_token8] = ACTIONS(1891), + [aux_sym_cmd_identifier_token9] = ACTIONS(1891), + [aux_sym_cmd_identifier_token10] = ACTIONS(1891), + [aux_sym_cmd_identifier_token11] = ACTIONS(1891), + [aux_sym_cmd_identifier_token12] = ACTIONS(1891), + [aux_sym_cmd_identifier_token13] = ACTIONS(1891), + [aux_sym_cmd_identifier_token14] = ACTIONS(1891), + [aux_sym_cmd_identifier_token15] = ACTIONS(1891), + [aux_sym_cmd_identifier_token16] = ACTIONS(1891), + [aux_sym_cmd_identifier_token17] = ACTIONS(1891), + [aux_sym_cmd_identifier_token18] = ACTIONS(1891), + [aux_sym_cmd_identifier_token19] = ACTIONS(1891), + [aux_sym_cmd_identifier_token20] = ACTIONS(1891), + [aux_sym_cmd_identifier_token21] = ACTIONS(1891), + [aux_sym_cmd_identifier_token22] = ACTIONS(1891), + [aux_sym_cmd_identifier_token23] = ACTIONS(1891), + [aux_sym_cmd_identifier_token24] = ACTIONS(1891), + [aux_sym_cmd_identifier_token25] = ACTIONS(1891), + [aux_sym_cmd_identifier_token26] = ACTIONS(1891), + [aux_sym_cmd_identifier_token27] = ACTIONS(1891), + [aux_sym_cmd_identifier_token28] = ACTIONS(1891), + [aux_sym_cmd_identifier_token29] = ACTIONS(1891), + [aux_sym_cmd_identifier_token30] = ACTIONS(1891), + [aux_sym_cmd_identifier_token31] = ACTIONS(1891), + [aux_sym_cmd_identifier_token32] = ACTIONS(1891), + [aux_sym_cmd_identifier_token33] = ACTIONS(1891), + [aux_sym_cmd_identifier_token34] = ACTIONS(1891), + [aux_sym_cmd_identifier_token35] = ACTIONS(1891), + [aux_sym_cmd_identifier_token36] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1891), + [anon_sym_false] = ACTIONS(1891), + [anon_sym_null] = ACTIONS(1891), + [aux_sym_cmd_identifier_token38] = ACTIONS(1891), + [aux_sym_cmd_identifier_token39] = ACTIONS(1891), + [aux_sym_cmd_identifier_token40] = ACTIONS(1891), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_export_DASHenv] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_error] = ACTIONS(1891), + [anon_sym_list] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_in] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_make] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_catch] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_source] = ACTIONS(1891), + [anon_sym_source_DASHenv] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1891), + [anon_sym_hide] = ACTIONS(1891), + [anon_sym_hide_DASHenv] = ACTIONS(1891), + [anon_sym_overlay] = ACTIONS(1891), + [anon_sym_new] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1891), + [aux_sym__val_number_decimal_token3] = ACTIONS(1891), + [aux_sym__val_number_decimal_token4] = ACTIONS(1891), + [aux_sym__val_number_token1] = ACTIONS(1891), + [aux_sym__val_number_token2] = ACTIONS(1891), + [aux_sym__val_number_token3] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [sym__str_single_quotes] = ACTIONS(1891), + [sym__str_back_ticks] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), + [sym__entry_separator] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), [anon_sym_POUND] = ACTIONS(3), }, - [363] = { - [sym_cell_path] = STATE(631), - [sym_path] = STATE(572), - [sym_comment] = STATE(363), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1768), - [anon_sym_alias] = ACTIONS(1768), - [anon_sym_let] = ACTIONS(1768), - [anon_sym_let_DASHenv] = ACTIONS(1768), - [anon_sym_mut] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1768), - [aux_sym_cmd_identifier_token1] = ACTIONS(1768), - [aux_sym_cmd_identifier_token2] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1768), - [aux_sym_cmd_identifier_token4] = ACTIONS(1768), - [aux_sym_cmd_identifier_token5] = ACTIONS(1768), - [aux_sym_cmd_identifier_token6] = ACTIONS(1768), - [aux_sym_cmd_identifier_token7] = ACTIONS(1768), - [aux_sym_cmd_identifier_token8] = ACTIONS(1768), - [aux_sym_cmd_identifier_token9] = ACTIONS(1768), - [aux_sym_cmd_identifier_token10] = ACTIONS(1768), - [aux_sym_cmd_identifier_token11] = ACTIONS(1768), - [aux_sym_cmd_identifier_token12] = ACTIONS(1768), - [aux_sym_cmd_identifier_token13] = ACTIONS(1768), - [aux_sym_cmd_identifier_token14] = ACTIONS(1768), - [aux_sym_cmd_identifier_token15] = ACTIONS(1768), - [aux_sym_cmd_identifier_token16] = ACTIONS(1768), - [aux_sym_cmd_identifier_token17] = ACTIONS(1768), - [aux_sym_cmd_identifier_token18] = ACTIONS(1768), - [aux_sym_cmd_identifier_token19] = ACTIONS(1768), - [aux_sym_cmd_identifier_token20] = ACTIONS(1768), - [aux_sym_cmd_identifier_token21] = ACTIONS(1768), - [aux_sym_cmd_identifier_token22] = ACTIONS(1768), - [aux_sym_cmd_identifier_token23] = ACTIONS(1768), - [aux_sym_cmd_identifier_token24] = ACTIONS(1768), - [aux_sym_cmd_identifier_token25] = ACTIONS(1768), - [aux_sym_cmd_identifier_token26] = ACTIONS(1768), - [aux_sym_cmd_identifier_token27] = ACTIONS(1768), - [aux_sym_cmd_identifier_token28] = ACTIONS(1768), - [aux_sym_cmd_identifier_token29] = ACTIONS(1768), - [aux_sym_cmd_identifier_token30] = ACTIONS(1768), - [aux_sym_cmd_identifier_token31] = ACTIONS(1768), - [aux_sym_cmd_identifier_token32] = ACTIONS(1768), - [aux_sym_cmd_identifier_token33] = ACTIONS(1768), - [aux_sym_cmd_identifier_token34] = ACTIONS(1768), - [aux_sym_cmd_identifier_token35] = ACTIONS(1768), - [aux_sym_cmd_identifier_token36] = ACTIONS(1768), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), - [aux_sym_cmd_identifier_token38] = ACTIONS(1768), - [aux_sym_cmd_identifier_token39] = ACTIONS(1770), - [aux_sym_cmd_identifier_token40] = ACTIONS(1770), - [anon_sym_def] = ACTIONS(1768), - [anon_sym_export_DASHenv] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_module] = ACTIONS(1768), - [anon_sym_use] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1770), - [anon_sym_error] = ACTIONS(1768), - [anon_sym_list] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1768), - [anon_sym_in] = ACTIONS(1768), - [anon_sym_loop] = ACTIONS(1768), - [anon_sym_make] = ACTIONS(1768), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(1768), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_else] = ACTIONS(1768), - [anon_sym_match] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1768), - [anon_sym_catch] = ACTIONS(1768), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_source] = ACTIONS(1768), - [anon_sym_source_DASHenv] = ACTIONS(1768), - [anon_sym_register] = ACTIONS(1768), - [anon_sym_hide] = ACTIONS(1768), - [anon_sym_hide_DASHenv] = ACTIONS(1768), - [anon_sym_overlay] = ACTIONS(1768), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_as] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1770), - [aux_sym__val_number_decimal_token1] = ACTIONS(1768), - [aux_sym__val_number_decimal_token2] = ACTIONS(1770), - [anon_sym_DOT2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_token1] = ACTIONS(1770), - [aux_sym__val_number_token2] = ACTIONS(1770), - [aux_sym__val_number_token3] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [sym__str_single_quotes] = ACTIONS(1770), - [sym__str_back_ticks] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1770), + [350] = { + [sym_cell_path] = STATE(543), + [sym_path] = STATE(472), + [sym_comment] = STATE(350), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1895), + [anon_sym_alias] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_let_DASHenv] = ACTIONS(1895), + [anon_sym_mut] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [aux_sym_cmd_identifier_token1] = ACTIONS(1895), + [aux_sym_cmd_identifier_token2] = ACTIONS(1895), + [aux_sym_cmd_identifier_token3] = ACTIONS(1895), + [aux_sym_cmd_identifier_token4] = ACTIONS(1895), + [aux_sym_cmd_identifier_token5] = ACTIONS(1895), + [aux_sym_cmd_identifier_token6] = ACTIONS(1895), + [aux_sym_cmd_identifier_token7] = ACTIONS(1895), + [aux_sym_cmd_identifier_token8] = ACTIONS(1895), + [aux_sym_cmd_identifier_token9] = ACTIONS(1895), + [aux_sym_cmd_identifier_token10] = ACTIONS(1895), + [aux_sym_cmd_identifier_token11] = ACTIONS(1895), + [aux_sym_cmd_identifier_token12] = ACTIONS(1895), + [aux_sym_cmd_identifier_token13] = ACTIONS(1895), + [aux_sym_cmd_identifier_token14] = ACTIONS(1895), + [aux_sym_cmd_identifier_token15] = ACTIONS(1895), + [aux_sym_cmd_identifier_token16] = ACTIONS(1895), + [aux_sym_cmd_identifier_token17] = ACTIONS(1895), + [aux_sym_cmd_identifier_token18] = ACTIONS(1895), + [aux_sym_cmd_identifier_token19] = ACTIONS(1895), + [aux_sym_cmd_identifier_token20] = ACTIONS(1895), + [aux_sym_cmd_identifier_token21] = ACTIONS(1895), + [aux_sym_cmd_identifier_token22] = ACTIONS(1895), + [aux_sym_cmd_identifier_token23] = ACTIONS(1895), + [aux_sym_cmd_identifier_token24] = ACTIONS(1895), + [aux_sym_cmd_identifier_token25] = ACTIONS(1895), + [aux_sym_cmd_identifier_token26] = ACTIONS(1895), + [aux_sym_cmd_identifier_token27] = ACTIONS(1895), + [aux_sym_cmd_identifier_token28] = ACTIONS(1895), + [aux_sym_cmd_identifier_token29] = ACTIONS(1895), + [aux_sym_cmd_identifier_token30] = ACTIONS(1895), + [aux_sym_cmd_identifier_token31] = ACTIONS(1895), + [aux_sym_cmd_identifier_token32] = ACTIONS(1895), + [aux_sym_cmd_identifier_token33] = ACTIONS(1895), + [aux_sym_cmd_identifier_token34] = ACTIONS(1895), + [aux_sym_cmd_identifier_token35] = ACTIONS(1895), + [aux_sym_cmd_identifier_token36] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1895), + [aux_sym_cmd_identifier_token38] = ACTIONS(1895), + [aux_sym_cmd_identifier_token39] = ACTIONS(1895), + [aux_sym_cmd_identifier_token40] = ACTIONS(1895), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_export_DASHenv] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_module] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_error] = ACTIONS(1895), + [anon_sym_list] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_in] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_make] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_catch] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_source] = ACTIONS(1895), + [anon_sym_source_DASHenv] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_hide] = ACTIONS(1895), + [anon_sym_hide_DASHenv] = ACTIONS(1895), + [anon_sym_overlay] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1895), + [anon_sym_as] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1895), + [aux_sym__val_number_decimal_token3] = ACTIONS(1895), + [aux_sym__val_number_decimal_token4] = ACTIONS(1895), + [aux_sym__val_number_token1] = ACTIONS(1895), + [aux_sym__val_number_token2] = ACTIONS(1895), + [aux_sym__val_number_token3] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), + [sym__entry_separator] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1895), [anon_sym_POUND] = ACTIONS(3), }, - [364] = { - [sym_cell_path] = STATE(632), - [sym_path] = STATE(572), - [sym_comment] = STATE(364), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1772), - [anon_sym_alias] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_let_DASHenv] = ACTIONS(1772), - [anon_sym_mut] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [aux_sym_cmd_identifier_token1] = ACTIONS(1772), - [aux_sym_cmd_identifier_token2] = ACTIONS(1772), - [aux_sym_cmd_identifier_token3] = ACTIONS(1772), - [aux_sym_cmd_identifier_token4] = ACTIONS(1772), - [aux_sym_cmd_identifier_token5] = ACTIONS(1772), - [aux_sym_cmd_identifier_token6] = ACTIONS(1772), - [aux_sym_cmd_identifier_token7] = ACTIONS(1772), - [aux_sym_cmd_identifier_token8] = ACTIONS(1772), - [aux_sym_cmd_identifier_token9] = ACTIONS(1772), - [aux_sym_cmd_identifier_token10] = ACTIONS(1772), - [aux_sym_cmd_identifier_token11] = ACTIONS(1772), - [aux_sym_cmd_identifier_token12] = ACTIONS(1772), - [aux_sym_cmd_identifier_token13] = ACTIONS(1772), - [aux_sym_cmd_identifier_token14] = ACTIONS(1772), - [aux_sym_cmd_identifier_token15] = ACTIONS(1772), - [aux_sym_cmd_identifier_token16] = ACTIONS(1772), - [aux_sym_cmd_identifier_token17] = ACTIONS(1772), - [aux_sym_cmd_identifier_token18] = ACTIONS(1772), - [aux_sym_cmd_identifier_token19] = ACTIONS(1772), - [aux_sym_cmd_identifier_token20] = ACTIONS(1772), - [aux_sym_cmd_identifier_token21] = ACTIONS(1772), - [aux_sym_cmd_identifier_token22] = ACTIONS(1772), - [aux_sym_cmd_identifier_token23] = ACTIONS(1772), - [aux_sym_cmd_identifier_token24] = ACTIONS(1772), - [aux_sym_cmd_identifier_token25] = ACTIONS(1772), - [aux_sym_cmd_identifier_token26] = ACTIONS(1772), - [aux_sym_cmd_identifier_token27] = ACTIONS(1772), - [aux_sym_cmd_identifier_token28] = ACTIONS(1772), - [aux_sym_cmd_identifier_token29] = ACTIONS(1772), - [aux_sym_cmd_identifier_token30] = ACTIONS(1772), - [aux_sym_cmd_identifier_token31] = ACTIONS(1772), - [aux_sym_cmd_identifier_token32] = ACTIONS(1772), - [aux_sym_cmd_identifier_token33] = ACTIONS(1772), - [aux_sym_cmd_identifier_token34] = ACTIONS(1772), - [aux_sym_cmd_identifier_token35] = ACTIONS(1772), - [aux_sym_cmd_identifier_token36] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1774), - [anon_sym_false] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [aux_sym_cmd_identifier_token38] = ACTIONS(1772), - [aux_sym_cmd_identifier_token39] = ACTIONS(1774), - [aux_sym_cmd_identifier_token40] = ACTIONS(1774), - [anon_sym_def] = ACTIONS(1772), - [anon_sym_export_DASHenv] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_module] = ACTIONS(1772), - [anon_sym_use] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [anon_sym_error] = ACTIONS(1772), - [anon_sym_list] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1772), - [anon_sym_loop] = ACTIONS(1772), - [anon_sym_make] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_do] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1772), - [anon_sym_match] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_try] = ACTIONS(1772), - [anon_sym_catch] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_source] = ACTIONS(1772), - [anon_sym_source_DASHenv] = ACTIONS(1772), - [anon_sym_register] = ACTIONS(1772), - [anon_sym_hide] = ACTIONS(1772), - [anon_sym_hide_DASHenv] = ACTIONS(1772), - [anon_sym_overlay] = ACTIONS(1772), - [anon_sym_new] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), - [aux_sym__val_number_decimal_token1] = ACTIONS(1772), - [aux_sym__val_number_decimal_token2] = ACTIONS(1774), - [anon_sym_DOT2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1774), - [aux_sym__val_number_token1] = ACTIONS(1774), - [aux_sym__val_number_token2] = ACTIONS(1774), - [aux_sym__val_number_token3] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [sym__str_single_quotes] = ACTIONS(1774), - [sym__str_back_ticks] = ACTIONS(1774), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), + [351] = { + [sym_cell_path] = STATE(556), + [sym_path] = STATE(472), + [sym_comment] = STATE(351), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1899), + [anon_sym_alias] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_let_DASHenv] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [aux_sym_cmd_identifier_token1] = ACTIONS(1899), + [aux_sym_cmd_identifier_token2] = ACTIONS(1899), + [aux_sym_cmd_identifier_token3] = ACTIONS(1899), + [aux_sym_cmd_identifier_token4] = ACTIONS(1899), + [aux_sym_cmd_identifier_token5] = ACTIONS(1899), + [aux_sym_cmd_identifier_token6] = ACTIONS(1899), + [aux_sym_cmd_identifier_token7] = ACTIONS(1899), + [aux_sym_cmd_identifier_token8] = ACTIONS(1899), + [aux_sym_cmd_identifier_token9] = ACTIONS(1899), + [aux_sym_cmd_identifier_token10] = ACTIONS(1899), + [aux_sym_cmd_identifier_token11] = ACTIONS(1899), + [aux_sym_cmd_identifier_token12] = ACTIONS(1899), + [aux_sym_cmd_identifier_token13] = ACTIONS(1899), + [aux_sym_cmd_identifier_token14] = ACTIONS(1899), + [aux_sym_cmd_identifier_token15] = ACTIONS(1899), + [aux_sym_cmd_identifier_token16] = ACTIONS(1899), + [aux_sym_cmd_identifier_token17] = ACTIONS(1899), + [aux_sym_cmd_identifier_token18] = ACTIONS(1899), + [aux_sym_cmd_identifier_token19] = ACTIONS(1899), + [aux_sym_cmd_identifier_token20] = ACTIONS(1899), + [aux_sym_cmd_identifier_token21] = ACTIONS(1899), + [aux_sym_cmd_identifier_token22] = ACTIONS(1899), + [aux_sym_cmd_identifier_token23] = ACTIONS(1899), + [aux_sym_cmd_identifier_token24] = ACTIONS(1899), + [aux_sym_cmd_identifier_token25] = ACTIONS(1899), + [aux_sym_cmd_identifier_token26] = ACTIONS(1899), + [aux_sym_cmd_identifier_token27] = ACTIONS(1899), + [aux_sym_cmd_identifier_token28] = ACTIONS(1899), + [aux_sym_cmd_identifier_token29] = ACTIONS(1899), + [aux_sym_cmd_identifier_token30] = ACTIONS(1899), + [aux_sym_cmd_identifier_token31] = ACTIONS(1899), + [aux_sym_cmd_identifier_token32] = ACTIONS(1899), + [aux_sym_cmd_identifier_token33] = ACTIONS(1899), + [aux_sym_cmd_identifier_token34] = ACTIONS(1899), + [aux_sym_cmd_identifier_token35] = ACTIONS(1899), + [aux_sym_cmd_identifier_token36] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_null] = ACTIONS(1899), + [aux_sym_cmd_identifier_token38] = ACTIONS(1899), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_export_DASHenv] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_module] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_error] = ACTIONS(1899), + [anon_sym_list] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_make] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_source] = ACTIONS(1899), + [anon_sym_source_DASHenv] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_hide] = ACTIONS(1899), + [anon_sym_hide_DASHenv] = ACTIONS(1899), + [anon_sym_overlay] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1899), + [aux_sym__val_number_decimal_token3] = ACTIONS(1899), + [aux_sym__val_number_decimal_token4] = ACTIONS(1899), + [aux_sym__val_number_token1] = ACTIONS(1899), + [aux_sym__val_number_token2] = ACTIONS(1899), + [aux_sym__val_number_token3] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), + [sym__entry_separator] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1899), [anon_sym_POUND] = ACTIONS(3), }, - [365] = { - [sym_cell_path] = STATE(636), - [sym_path] = STATE(572), - [sym_comment] = STATE(365), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1776), - [anon_sym_alias] = ACTIONS(1776), - [anon_sym_let] = ACTIONS(1776), - [anon_sym_let_DASHenv] = ACTIONS(1776), - [anon_sym_mut] = ACTIONS(1776), - [anon_sym_const] = ACTIONS(1776), - [aux_sym_cmd_identifier_token1] = ACTIONS(1776), - [aux_sym_cmd_identifier_token2] = ACTIONS(1776), - [aux_sym_cmd_identifier_token3] = ACTIONS(1776), - [aux_sym_cmd_identifier_token4] = ACTIONS(1776), - [aux_sym_cmd_identifier_token5] = ACTIONS(1776), - [aux_sym_cmd_identifier_token6] = ACTIONS(1776), - [aux_sym_cmd_identifier_token7] = ACTIONS(1776), - [aux_sym_cmd_identifier_token8] = ACTIONS(1776), - [aux_sym_cmd_identifier_token9] = ACTIONS(1776), - [aux_sym_cmd_identifier_token10] = ACTIONS(1776), - [aux_sym_cmd_identifier_token11] = ACTIONS(1776), - [aux_sym_cmd_identifier_token12] = ACTIONS(1776), - [aux_sym_cmd_identifier_token13] = ACTIONS(1776), - [aux_sym_cmd_identifier_token14] = ACTIONS(1776), - [aux_sym_cmd_identifier_token15] = ACTIONS(1776), - [aux_sym_cmd_identifier_token16] = ACTIONS(1776), - [aux_sym_cmd_identifier_token17] = ACTIONS(1776), - [aux_sym_cmd_identifier_token18] = ACTIONS(1776), - [aux_sym_cmd_identifier_token19] = ACTIONS(1776), - [aux_sym_cmd_identifier_token20] = ACTIONS(1776), - [aux_sym_cmd_identifier_token21] = ACTIONS(1776), - [aux_sym_cmd_identifier_token22] = ACTIONS(1776), - [aux_sym_cmd_identifier_token23] = ACTIONS(1776), - [aux_sym_cmd_identifier_token24] = ACTIONS(1776), - [aux_sym_cmd_identifier_token25] = ACTIONS(1776), - [aux_sym_cmd_identifier_token26] = ACTIONS(1776), - [aux_sym_cmd_identifier_token27] = ACTIONS(1776), - [aux_sym_cmd_identifier_token28] = ACTIONS(1776), - [aux_sym_cmd_identifier_token29] = ACTIONS(1776), - [aux_sym_cmd_identifier_token30] = ACTIONS(1776), - [aux_sym_cmd_identifier_token31] = ACTIONS(1776), - [aux_sym_cmd_identifier_token32] = ACTIONS(1776), - [aux_sym_cmd_identifier_token33] = ACTIONS(1776), - [aux_sym_cmd_identifier_token34] = ACTIONS(1776), - [aux_sym_cmd_identifier_token35] = ACTIONS(1776), - [aux_sym_cmd_identifier_token36] = ACTIONS(1776), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token38] = ACTIONS(1776), - [aux_sym_cmd_identifier_token39] = ACTIONS(1778), - [aux_sym_cmd_identifier_token40] = ACTIONS(1778), - [anon_sym_def] = ACTIONS(1776), - [anon_sym_export_DASHenv] = ACTIONS(1776), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_module] = ACTIONS(1776), - [anon_sym_use] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_error] = ACTIONS(1776), - [anon_sym_list] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_in] = ACTIONS(1776), - [anon_sym_loop] = ACTIONS(1776), - [anon_sym_make] = ACTIONS(1776), - [anon_sym_while] = ACTIONS(1776), - [anon_sym_do] = ACTIONS(1776), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_else] = ACTIONS(1776), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1776), - [anon_sym_catch] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_source] = ACTIONS(1776), - [anon_sym_source_DASHenv] = ACTIONS(1776), - [anon_sym_register] = ACTIONS(1776), - [anon_sym_hide] = ACTIONS(1776), - [anon_sym_hide_DASHenv] = ACTIONS(1776), - [anon_sym_overlay] = ACTIONS(1776), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_as] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), - [aux_sym__val_number_decimal_token1] = ACTIONS(1776), - [aux_sym__val_number_decimal_token2] = ACTIONS(1778), - [anon_sym_DOT2] = ACTIONS(1776), - [aux_sym__val_number_decimal_token3] = ACTIONS(1778), - [aux_sym__val_number_token1] = ACTIONS(1778), - [aux_sym__val_number_token2] = ACTIONS(1778), - [aux_sym__val_number_token3] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1778), - [sym__str_single_quotes] = ACTIONS(1778), - [sym__str_back_ticks] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), + [352] = { + [sym_comment] = STATE(352), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1569), + [aux_sym_cmd_identifier_token40] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1569), + [aux_sym__val_number_token2] = ACTIONS(1569), + [aux_sym__val_number_token3] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), [anon_sym_POUND] = ACTIONS(3), }, - [366] = { - [sym_comment] = STATE(366), - [anon_sym_export] = ACTIONS(1669), - [anon_sym_alias] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_let_DASHenv] = ACTIONS(1669), - [anon_sym_mut] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [aux_sym_cmd_identifier_token1] = ACTIONS(1669), - [aux_sym_cmd_identifier_token2] = ACTIONS(1669), - [aux_sym_cmd_identifier_token3] = ACTIONS(1669), - [aux_sym_cmd_identifier_token4] = ACTIONS(1669), - [aux_sym_cmd_identifier_token5] = ACTIONS(1669), - [aux_sym_cmd_identifier_token6] = ACTIONS(1669), - [aux_sym_cmd_identifier_token7] = ACTIONS(1669), - [aux_sym_cmd_identifier_token8] = ACTIONS(1669), - [aux_sym_cmd_identifier_token9] = ACTIONS(1669), - [aux_sym_cmd_identifier_token10] = ACTIONS(1669), - [aux_sym_cmd_identifier_token11] = ACTIONS(1669), - [aux_sym_cmd_identifier_token12] = ACTIONS(1669), - [aux_sym_cmd_identifier_token13] = ACTIONS(1669), - [aux_sym_cmd_identifier_token14] = ACTIONS(1669), - [aux_sym_cmd_identifier_token15] = ACTIONS(1669), - [aux_sym_cmd_identifier_token16] = ACTIONS(1669), - [aux_sym_cmd_identifier_token17] = ACTIONS(1669), - [aux_sym_cmd_identifier_token18] = ACTIONS(1669), - [aux_sym_cmd_identifier_token19] = ACTIONS(1669), - [aux_sym_cmd_identifier_token20] = ACTIONS(1669), - [aux_sym_cmd_identifier_token21] = ACTIONS(1669), - [aux_sym_cmd_identifier_token22] = ACTIONS(1669), - [aux_sym_cmd_identifier_token23] = ACTIONS(1669), - [aux_sym_cmd_identifier_token24] = ACTIONS(1671), - [aux_sym_cmd_identifier_token25] = ACTIONS(1669), - [aux_sym_cmd_identifier_token26] = ACTIONS(1671), - [aux_sym_cmd_identifier_token27] = ACTIONS(1669), - [aux_sym_cmd_identifier_token28] = ACTIONS(1669), - [aux_sym_cmd_identifier_token29] = ACTIONS(1669), - [aux_sym_cmd_identifier_token30] = ACTIONS(1669), - [aux_sym_cmd_identifier_token31] = ACTIONS(1671), - [aux_sym_cmd_identifier_token32] = ACTIONS(1671), - [aux_sym_cmd_identifier_token33] = ACTIONS(1671), - [aux_sym_cmd_identifier_token34] = ACTIONS(1671), - [aux_sym_cmd_identifier_token35] = ACTIONS(1671), - [aux_sym_cmd_identifier_token36] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [anon_sym_null] = ACTIONS(1671), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1671), - [aux_sym_cmd_identifier_token40] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_def] = ACTIONS(1669), - [anon_sym_export_DASHenv] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_module] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_source] = ACTIONS(1669), - [anon_sym_source_DASHenv] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_hide] = ACTIONS(1669), - [anon_sym_hide_DASHenv] = ACTIONS(1669), - [anon_sym_overlay] = ACTIONS(1669), - [anon_sym_where] = ACTIONS(1671), - [aux_sym_expr_unary_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [anon_sym_DOT2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [353] = { + [sym_cell_path] = STATE(624), + [sym_path] = STATE(532), + [sym_comment] = STATE(353), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1871), + [aux_sym_cmd_identifier_token3] = ACTIONS(1871), + [aux_sym_cmd_identifier_token4] = ACTIONS(1871), + [aux_sym_cmd_identifier_token5] = ACTIONS(1871), + [aux_sym_cmd_identifier_token6] = ACTIONS(1871), + [aux_sym_cmd_identifier_token7] = ACTIONS(1871), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1871), + [aux_sym_cmd_identifier_token11] = ACTIONS(1871), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1871), + [aux_sym_cmd_identifier_token17] = ACTIONS(1871), + [aux_sym_cmd_identifier_token18] = ACTIONS(1871), + [aux_sym_cmd_identifier_token19] = ACTIONS(1871), + [aux_sym_cmd_identifier_token20] = ACTIONS(1871), + [aux_sym_cmd_identifier_token21] = ACTIONS(1871), + [aux_sym_cmd_identifier_token22] = ACTIONS(1871), + [aux_sym_cmd_identifier_token23] = ACTIONS(1871), + [aux_sym_cmd_identifier_token24] = ACTIONS(1871), + [aux_sym_cmd_identifier_token25] = ACTIONS(1871), + [aux_sym_cmd_identifier_token26] = ACTIONS(1871), + [aux_sym_cmd_identifier_token27] = ACTIONS(1871), + [aux_sym_cmd_identifier_token28] = ACTIONS(1871), + [aux_sym_cmd_identifier_token29] = ACTIONS(1871), + [aux_sym_cmd_identifier_token30] = ACTIONS(1871), + [aux_sym_cmd_identifier_token31] = ACTIONS(1871), + [aux_sym_cmd_identifier_token32] = ACTIONS(1871), + [aux_sym_cmd_identifier_token33] = ACTIONS(1871), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1871), + [aux_sym_cmd_identifier_token36] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_list] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(247), }, - [367] = { - [sym_comment] = STATE(367), - [anon_sym_export] = ACTIONS(1831), - [anon_sym_alias] = ACTIONS(1831), - [anon_sym_let] = ACTIONS(1831), - [anon_sym_let_DASHenv] = ACTIONS(1831), - [anon_sym_mut] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [aux_sym_cmd_identifier_token1] = ACTIONS(1831), - [aux_sym_cmd_identifier_token2] = ACTIONS(1831), - [aux_sym_cmd_identifier_token3] = ACTIONS(1831), - [aux_sym_cmd_identifier_token4] = ACTIONS(1831), - [aux_sym_cmd_identifier_token5] = ACTIONS(1831), - [aux_sym_cmd_identifier_token6] = ACTIONS(1831), - [aux_sym_cmd_identifier_token7] = ACTIONS(1831), - [aux_sym_cmd_identifier_token8] = ACTIONS(1831), - [aux_sym_cmd_identifier_token9] = ACTIONS(1831), - [aux_sym_cmd_identifier_token10] = ACTIONS(1831), - [aux_sym_cmd_identifier_token11] = ACTIONS(1831), - [aux_sym_cmd_identifier_token12] = ACTIONS(1831), - [aux_sym_cmd_identifier_token13] = ACTIONS(1831), - [aux_sym_cmd_identifier_token14] = ACTIONS(1831), - [aux_sym_cmd_identifier_token15] = ACTIONS(1831), - [aux_sym_cmd_identifier_token16] = ACTIONS(1831), - [aux_sym_cmd_identifier_token17] = ACTIONS(1831), - [aux_sym_cmd_identifier_token18] = ACTIONS(1831), - [aux_sym_cmd_identifier_token19] = ACTIONS(1831), - [aux_sym_cmd_identifier_token20] = ACTIONS(1831), - [aux_sym_cmd_identifier_token21] = ACTIONS(1831), - [aux_sym_cmd_identifier_token22] = ACTIONS(1831), - [aux_sym_cmd_identifier_token23] = ACTIONS(1831), - [aux_sym_cmd_identifier_token24] = ACTIONS(1833), - [aux_sym_cmd_identifier_token25] = ACTIONS(1831), - [aux_sym_cmd_identifier_token26] = ACTIONS(1833), - [aux_sym_cmd_identifier_token27] = ACTIONS(1831), - [aux_sym_cmd_identifier_token28] = ACTIONS(1831), - [aux_sym_cmd_identifier_token29] = ACTIONS(1831), - [aux_sym_cmd_identifier_token30] = ACTIONS(1831), - [aux_sym_cmd_identifier_token31] = ACTIONS(1833), - [aux_sym_cmd_identifier_token32] = ACTIONS(1833), - [aux_sym_cmd_identifier_token33] = ACTIONS(1833), - [aux_sym_cmd_identifier_token34] = ACTIONS(1833), - [aux_sym_cmd_identifier_token35] = ACTIONS(1833), - [aux_sym_cmd_identifier_token36] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_null] = ACTIONS(1833), - [aux_sym_cmd_identifier_token38] = ACTIONS(1831), - [aux_sym_cmd_identifier_token39] = ACTIONS(1833), - [aux_sym_cmd_identifier_token40] = ACTIONS(1833), - [sym__newline] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_def] = ACTIONS(1831), - [anon_sym_export_DASHenv] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym_module] = ACTIONS(1831), - [anon_sym_use] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_DOLLAR] = ACTIONS(1831), - [anon_sym_error] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_loop] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_match] = ACTIONS(1831), - [aux_sym_ctrl_match_token1] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_source] = ACTIONS(1831), - [anon_sym_source_DASHenv] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_hide] = ACTIONS(1831), - [anon_sym_hide_DASHenv] = ACTIONS(1831), - [anon_sym_overlay] = ACTIONS(1831), - [anon_sym_where] = ACTIONS(1833), - [aux_sym_expr_unary_token1] = ACTIONS(1833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), - [anon_sym_DOT_DOT_LT] = ACTIONS(1833), - [aux_sym__val_number_decimal_token1] = ACTIONS(1831), - [aux_sym__val_number_decimal_token2] = ACTIONS(1833), - [anon_sym_DOT2] = ACTIONS(1831), - [aux_sym__val_number_decimal_token3] = ACTIONS(1833), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), - [anon_sym_0b] = ACTIONS(1831), - [anon_sym_0o] = ACTIONS(1831), - [anon_sym_0x] = ACTIONS(1831), - [sym_val_date] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym__str_single_quotes] = ACTIONS(1833), - [sym__str_back_ticks] = ACTIONS(1833), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1833), + [354] = { + [sym_comment] = STATE(354), + [anon_sym_export] = ACTIONS(1905), + [anon_sym_alias] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_let_DASHenv] = ACTIONS(1905), + [anon_sym_mut] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [aux_sym_cmd_identifier_token1] = ACTIONS(1905), + [aux_sym_cmd_identifier_token2] = ACTIONS(1905), + [aux_sym_cmd_identifier_token3] = ACTIONS(1905), + [aux_sym_cmd_identifier_token4] = ACTIONS(1905), + [aux_sym_cmd_identifier_token5] = ACTIONS(1905), + [aux_sym_cmd_identifier_token6] = ACTIONS(1905), + [aux_sym_cmd_identifier_token7] = ACTIONS(1905), + [aux_sym_cmd_identifier_token8] = ACTIONS(1905), + [aux_sym_cmd_identifier_token9] = ACTIONS(1905), + [aux_sym_cmd_identifier_token10] = ACTIONS(1905), + [aux_sym_cmd_identifier_token11] = ACTIONS(1905), + [aux_sym_cmd_identifier_token12] = ACTIONS(1905), + [aux_sym_cmd_identifier_token13] = ACTIONS(1905), + [aux_sym_cmd_identifier_token14] = ACTIONS(1905), + [aux_sym_cmd_identifier_token15] = ACTIONS(1905), + [aux_sym_cmd_identifier_token16] = ACTIONS(1905), + [aux_sym_cmd_identifier_token17] = ACTIONS(1905), + [aux_sym_cmd_identifier_token18] = ACTIONS(1905), + [aux_sym_cmd_identifier_token19] = ACTIONS(1905), + [aux_sym_cmd_identifier_token20] = ACTIONS(1905), + [aux_sym_cmd_identifier_token21] = ACTIONS(1905), + [aux_sym_cmd_identifier_token22] = ACTIONS(1905), + [aux_sym_cmd_identifier_token23] = ACTIONS(1905), + [aux_sym_cmd_identifier_token24] = ACTIONS(1905), + [aux_sym_cmd_identifier_token25] = ACTIONS(1905), + [aux_sym_cmd_identifier_token26] = ACTIONS(1905), + [aux_sym_cmd_identifier_token27] = ACTIONS(1905), + [aux_sym_cmd_identifier_token28] = ACTIONS(1905), + [aux_sym_cmd_identifier_token29] = ACTIONS(1905), + [aux_sym_cmd_identifier_token30] = ACTIONS(1905), + [aux_sym_cmd_identifier_token31] = ACTIONS(1905), + [aux_sym_cmd_identifier_token32] = ACTIONS(1905), + [aux_sym_cmd_identifier_token33] = ACTIONS(1905), + [aux_sym_cmd_identifier_token34] = ACTIONS(1905), + [aux_sym_cmd_identifier_token35] = ACTIONS(1905), + [aux_sym_cmd_identifier_token36] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [anon_sym_null] = ACTIONS(1905), + [aux_sym_cmd_identifier_token38] = ACTIONS(1905), + [aux_sym_cmd_identifier_token39] = ACTIONS(1905), + [aux_sym_cmd_identifier_token40] = ACTIONS(1905), + [anon_sym_def] = ACTIONS(1905), + [anon_sym_export_DASHenv] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_module] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_DOLLAR] = ACTIONS(1905), + [anon_sym_error] = ACTIONS(1905), + [anon_sym_list] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_in] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_make] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_do] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_else] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1905), + [anon_sym_catch] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_source] = ACTIONS(1905), + [anon_sym_source_DASHenv] = ACTIONS(1905), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_hide] = ACTIONS(1905), + [anon_sym_hide_DASHenv] = ACTIONS(1905), + [anon_sym_overlay] = ACTIONS(1905), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_as] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), + [anon_sym_DOT_DOT2] = ACTIONS(1907), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1909), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), + [aux_sym__val_number_decimal_token1] = ACTIONS(1905), + [aux_sym__val_number_decimal_token2] = ACTIONS(1905), + [aux_sym__val_number_decimal_token3] = ACTIONS(1905), + [aux_sym__val_number_decimal_token4] = ACTIONS(1905), + [aux_sym__val_number_token1] = ACTIONS(1905), + [aux_sym__val_number_token2] = ACTIONS(1905), + [aux_sym__val_number_token3] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1905), + [sym__str_single_quotes] = ACTIONS(1905), + [sym__str_back_ticks] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), + [sym__entry_separator] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1905), [anon_sym_POUND] = ACTIONS(3), }, - [368] = { - [sym_cell_path] = STATE(640), - [sym_path] = STATE(572), - [sym_comment] = STATE(368), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1780), - [anon_sym_alias] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_let_DASHenv] = ACTIONS(1780), - [anon_sym_mut] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [aux_sym_cmd_identifier_token1] = ACTIONS(1780), - [aux_sym_cmd_identifier_token2] = ACTIONS(1780), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [aux_sym_cmd_identifier_token6] = ACTIONS(1780), - [aux_sym_cmd_identifier_token7] = ACTIONS(1780), - [aux_sym_cmd_identifier_token8] = ACTIONS(1780), - [aux_sym_cmd_identifier_token9] = ACTIONS(1780), - [aux_sym_cmd_identifier_token10] = ACTIONS(1780), - [aux_sym_cmd_identifier_token11] = ACTIONS(1780), - [aux_sym_cmd_identifier_token12] = ACTIONS(1780), - [aux_sym_cmd_identifier_token13] = ACTIONS(1780), - [aux_sym_cmd_identifier_token14] = ACTIONS(1780), - [aux_sym_cmd_identifier_token15] = ACTIONS(1780), - [aux_sym_cmd_identifier_token16] = ACTIONS(1780), - [aux_sym_cmd_identifier_token17] = ACTIONS(1780), - [aux_sym_cmd_identifier_token18] = ACTIONS(1780), - [aux_sym_cmd_identifier_token19] = ACTIONS(1780), - [aux_sym_cmd_identifier_token20] = ACTIONS(1780), - [aux_sym_cmd_identifier_token21] = ACTIONS(1780), - [aux_sym_cmd_identifier_token22] = ACTIONS(1780), - [aux_sym_cmd_identifier_token23] = ACTIONS(1780), - [aux_sym_cmd_identifier_token24] = ACTIONS(1780), - [aux_sym_cmd_identifier_token25] = ACTIONS(1780), - [aux_sym_cmd_identifier_token26] = ACTIONS(1780), - [aux_sym_cmd_identifier_token27] = ACTIONS(1780), - [aux_sym_cmd_identifier_token28] = ACTIONS(1780), - [aux_sym_cmd_identifier_token29] = ACTIONS(1780), - [aux_sym_cmd_identifier_token30] = ACTIONS(1780), - [aux_sym_cmd_identifier_token31] = ACTIONS(1780), - [aux_sym_cmd_identifier_token32] = ACTIONS(1780), - [aux_sym_cmd_identifier_token33] = ACTIONS(1780), - [aux_sym_cmd_identifier_token34] = ACTIONS(1780), - [aux_sym_cmd_identifier_token35] = ACTIONS(1780), - [aux_sym_cmd_identifier_token36] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token38] = ACTIONS(1780), - [aux_sym_cmd_identifier_token39] = ACTIONS(1782), - [aux_sym_cmd_identifier_token40] = ACTIONS(1782), - [anon_sym_def] = ACTIONS(1780), - [anon_sym_export_DASHenv] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_module] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(1782), - [anon_sym_error] = ACTIONS(1780), - [anon_sym_list] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_make] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_source] = ACTIONS(1780), - [anon_sym_source_DASHenv] = ACTIONS(1780), - [anon_sym_register] = ACTIONS(1780), - [anon_sym_hide] = ACTIONS(1780), - [anon_sym_hide_DASHenv] = ACTIONS(1780), - [anon_sym_overlay] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1782), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1782), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [anon_sym_DOT2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1782), - [aux_sym__val_number_token1] = ACTIONS(1782), - [aux_sym__val_number_token2] = ACTIONS(1782), - [aux_sym__val_number_token3] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym__str_single_quotes] = ACTIONS(1782), - [sym__str_back_ticks] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(3), + [355] = { + [sym_cell_path] = STATE(614), + [sym_path] = STATE(532), + [sym_comment] = STATE(355), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_alias] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_let_DASHenv] = ACTIONS(1863), + [anon_sym_mut] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [aux_sym_cmd_identifier_token1] = ACTIONS(1863), + [aux_sym_cmd_identifier_token2] = ACTIONS(1863), + [aux_sym_cmd_identifier_token3] = ACTIONS(1863), + [aux_sym_cmd_identifier_token4] = ACTIONS(1863), + [aux_sym_cmd_identifier_token5] = ACTIONS(1863), + [aux_sym_cmd_identifier_token6] = ACTIONS(1863), + [aux_sym_cmd_identifier_token7] = ACTIONS(1863), + [aux_sym_cmd_identifier_token8] = ACTIONS(1863), + [aux_sym_cmd_identifier_token9] = ACTIONS(1863), + [aux_sym_cmd_identifier_token10] = ACTIONS(1863), + [aux_sym_cmd_identifier_token11] = ACTIONS(1863), + [aux_sym_cmd_identifier_token12] = ACTIONS(1863), + [aux_sym_cmd_identifier_token13] = ACTIONS(1863), + [aux_sym_cmd_identifier_token14] = ACTIONS(1863), + [aux_sym_cmd_identifier_token15] = ACTIONS(1863), + [aux_sym_cmd_identifier_token16] = ACTIONS(1863), + [aux_sym_cmd_identifier_token17] = ACTIONS(1863), + [aux_sym_cmd_identifier_token18] = ACTIONS(1863), + [aux_sym_cmd_identifier_token19] = ACTIONS(1863), + [aux_sym_cmd_identifier_token20] = ACTIONS(1863), + [aux_sym_cmd_identifier_token21] = ACTIONS(1863), + [aux_sym_cmd_identifier_token22] = ACTIONS(1863), + [aux_sym_cmd_identifier_token23] = ACTIONS(1863), + [aux_sym_cmd_identifier_token24] = ACTIONS(1863), + [aux_sym_cmd_identifier_token25] = ACTIONS(1863), + [aux_sym_cmd_identifier_token26] = ACTIONS(1863), + [aux_sym_cmd_identifier_token27] = ACTIONS(1863), + [aux_sym_cmd_identifier_token28] = ACTIONS(1863), + [aux_sym_cmd_identifier_token29] = ACTIONS(1863), + [aux_sym_cmd_identifier_token30] = ACTIONS(1863), + [aux_sym_cmd_identifier_token31] = ACTIONS(1863), + [aux_sym_cmd_identifier_token32] = ACTIONS(1863), + [aux_sym_cmd_identifier_token33] = ACTIONS(1863), + [aux_sym_cmd_identifier_token34] = ACTIONS(1863), + [aux_sym_cmd_identifier_token35] = ACTIONS(1863), + [aux_sym_cmd_identifier_token36] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1865), + [aux_sym_cmd_identifier_token38] = ACTIONS(1863), + [aux_sym_cmd_identifier_token39] = ACTIONS(1865), + [aux_sym_cmd_identifier_token40] = ACTIONS(1865), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_export_DASHenv] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1865), + [anon_sym_error] = ACTIONS(1863), + [anon_sym_list] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_make] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_source] = ACTIONS(1863), + [anon_sym_source_DASHenv] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_hide] = ACTIONS(1863), + [anon_sym_hide_DASHenv] = ACTIONS(1863), + [anon_sym_overlay] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(247), }, - [369] = { - [sym_cell_path] = STATE(641), - [sym_path] = STATE(572), - [sym_comment] = STATE(369), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1784), - [anon_sym_alias] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_let_DASHenv] = ACTIONS(1784), - [anon_sym_mut] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [aux_sym_cmd_identifier_token1] = ACTIONS(1784), - [aux_sym_cmd_identifier_token2] = ACTIONS(1784), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [aux_sym_cmd_identifier_token6] = ACTIONS(1784), - [aux_sym_cmd_identifier_token7] = ACTIONS(1784), - [aux_sym_cmd_identifier_token8] = ACTIONS(1784), - [aux_sym_cmd_identifier_token9] = ACTIONS(1784), - [aux_sym_cmd_identifier_token10] = ACTIONS(1784), - [aux_sym_cmd_identifier_token11] = ACTIONS(1784), - [aux_sym_cmd_identifier_token12] = ACTIONS(1784), - [aux_sym_cmd_identifier_token13] = ACTIONS(1784), - [aux_sym_cmd_identifier_token14] = ACTIONS(1784), - [aux_sym_cmd_identifier_token15] = ACTIONS(1784), - [aux_sym_cmd_identifier_token16] = ACTIONS(1784), - [aux_sym_cmd_identifier_token17] = ACTIONS(1784), - [aux_sym_cmd_identifier_token18] = ACTIONS(1784), - [aux_sym_cmd_identifier_token19] = ACTIONS(1784), - [aux_sym_cmd_identifier_token20] = ACTIONS(1784), - [aux_sym_cmd_identifier_token21] = ACTIONS(1784), - [aux_sym_cmd_identifier_token22] = ACTIONS(1784), - [aux_sym_cmd_identifier_token23] = ACTIONS(1784), - [aux_sym_cmd_identifier_token24] = ACTIONS(1784), - [aux_sym_cmd_identifier_token25] = ACTIONS(1784), - [aux_sym_cmd_identifier_token26] = ACTIONS(1784), - [aux_sym_cmd_identifier_token27] = ACTIONS(1784), - [aux_sym_cmd_identifier_token28] = ACTIONS(1784), - [aux_sym_cmd_identifier_token29] = ACTIONS(1784), - [aux_sym_cmd_identifier_token30] = ACTIONS(1784), - [aux_sym_cmd_identifier_token31] = ACTIONS(1784), - [aux_sym_cmd_identifier_token32] = ACTIONS(1784), - [aux_sym_cmd_identifier_token33] = ACTIONS(1784), - [aux_sym_cmd_identifier_token34] = ACTIONS(1784), - [aux_sym_cmd_identifier_token35] = ACTIONS(1784), - [aux_sym_cmd_identifier_token36] = ACTIONS(1784), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1784), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [anon_sym_def] = ACTIONS(1784), - [anon_sym_export_DASHenv] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_module] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_error] = ACTIONS(1784), - [anon_sym_list] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [anon_sym_loop] = ACTIONS(1784), - [anon_sym_make] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_catch] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_source] = ACTIONS(1784), - [anon_sym_source_DASHenv] = ACTIONS(1784), - [anon_sym_register] = ACTIONS(1784), - [anon_sym_hide] = ACTIONS(1784), - [anon_sym_hide_DASHenv] = ACTIONS(1784), - [anon_sym_overlay] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_as] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1784), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [anon_sym_DOT2] = ACTIONS(1784), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(3), + [356] = { + [sym_cell_path] = STATE(617), + [sym_path] = STATE(532), + [sym_comment] = STATE(356), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token2] = ACTIONS(1867), + [aux_sym_cmd_identifier_token3] = ACTIONS(1867), + [aux_sym_cmd_identifier_token4] = ACTIONS(1867), + [aux_sym_cmd_identifier_token5] = ACTIONS(1867), + [aux_sym_cmd_identifier_token6] = ACTIONS(1867), + [aux_sym_cmd_identifier_token7] = ACTIONS(1867), + [aux_sym_cmd_identifier_token8] = ACTIONS(1867), + [aux_sym_cmd_identifier_token9] = ACTIONS(1867), + [aux_sym_cmd_identifier_token10] = ACTIONS(1867), + [aux_sym_cmd_identifier_token11] = ACTIONS(1867), + [aux_sym_cmd_identifier_token12] = ACTIONS(1867), + [aux_sym_cmd_identifier_token13] = ACTIONS(1867), + [aux_sym_cmd_identifier_token14] = ACTIONS(1867), + [aux_sym_cmd_identifier_token15] = ACTIONS(1867), + [aux_sym_cmd_identifier_token16] = ACTIONS(1867), + [aux_sym_cmd_identifier_token17] = ACTIONS(1867), + [aux_sym_cmd_identifier_token18] = ACTIONS(1867), + [aux_sym_cmd_identifier_token19] = ACTIONS(1867), + [aux_sym_cmd_identifier_token20] = ACTIONS(1867), + [aux_sym_cmd_identifier_token21] = ACTIONS(1867), + [aux_sym_cmd_identifier_token22] = ACTIONS(1867), + [aux_sym_cmd_identifier_token23] = ACTIONS(1867), + [aux_sym_cmd_identifier_token24] = ACTIONS(1867), + [aux_sym_cmd_identifier_token25] = ACTIONS(1867), + [aux_sym_cmd_identifier_token26] = ACTIONS(1867), + [aux_sym_cmd_identifier_token27] = ACTIONS(1867), + [aux_sym_cmd_identifier_token28] = ACTIONS(1867), + [aux_sym_cmd_identifier_token29] = ACTIONS(1867), + [aux_sym_cmd_identifier_token30] = ACTIONS(1867), + [aux_sym_cmd_identifier_token31] = ACTIONS(1867), + [aux_sym_cmd_identifier_token32] = ACTIONS(1867), + [aux_sym_cmd_identifier_token33] = ACTIONS(1867), + [aux_sym_cmd_identifier_token34] = ACTIONS(1867), + [aux_sym_cmd_identifier_token35] = ACTIONS(1867), + [aux_sym_cmd_identifier_token36] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [anon_sym_null] = ACTIONS(1869), + [aux_sym_cmd_identifier_token38] = ACTIONS(1867), + [aux_sym_cmd_identifier_token39] = ACTIONS(1869), + [aux_sym_cmd_identifier_token40] = ACTIONS(1869), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_list] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_make] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_as] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1869), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1869), + [aux_sym__val_number_token1] = ACTIONS(1869), + [aux_sym__val_number_token2] = ACTIONS(1869), + [aux_sym__val_number_token3] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [sym__str_single_quotes] = ACTIONS(1869), + [sym__str_back_ticks] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(247), }, - [370] = { - [sym_cell_path] = STATE(642), - [sym_path] = STATE(572), - [sym_comment] = STATE(370), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_alias] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_let_DASHenv] = ACTIONS(1788), - [anon_sym_mut] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [aux_sym_cmd_identifier_token1] = ACTIONS(1788), - [aux_sym_cmd_identifier_token2] = ACTIONS(1788), - [aux_sym_cmd_identifier_token3] = ACTIONS(1788), - [aux_sym_cmd_identifier_token4] = ACTIONS(1788), - [aux_sym_cmd_identifier_token5] = ACTIONS(1788), - [aux_sym_cmd_identifier_token6] = ACTIONS(1788), - [aux_sym_cmd_identifier_token7] = ACTIONS(1788), - [aux_sym_cmd_identifier_token8] = ACTIONS(1788), - [aux_sym_cmd_identifier_token9] = ACTIONS(1788), - [aux_sym_cmd_identifier_token10] = ACTIONS(1788), - [aux_sym_cmd_identifier_token11] = ACTIONS(1788), - [aux_sym_cmd_identifier_token12] = ACTIONS(1788), - [aux_sym_cmd_identifier_token13] = ACTIONS(1788), - [aux_sym_cmd_identifier_token14] = ACTIONS(1788), - [aux_sym_cmd_identifier_token15] = ACTIONS(1788), - [aux_sym_cmd_identifier_token16] = ACTIONS(1788), - [aux_sym_cmd_identifier_token17] = ACTIONS(1788), - [aux_sym_cmd_identifier_token18] = ACTIONS(1788), - [aux_sym_cmd_identifier_token19] = ACTIONS(1788), - [aux_sym_cmd_identifier_token20] = ACTIONS(1788), - [aux_sym_cmd_identifier_token21] = ACTIONS(1788), - [aux_sym_cmd_identifier_token22] = ACTIONS(1788), - [aux_sym_cmd_identifier_token23] = ACTIONS(1788), - [aux_sym_cmd_identifier_token24] = ACTIONS(1788), - [aux_sym_cmd_identifier_token25] = ACTIONS(1788), - [aux_sym_cmd_identifier_token26] = ACTIONS(1788), - [aux_sym_cmd_identifier_token27] = ACTIONS(1788), - [aux_sym_cmd_identifier_token28] = ACTIONS(1788), - [aux_sym_cmd_identifier_token29] = ACTIONS(1788), - [aux_sym_cmd_identifier_token30] = ACTIONS(1788), - [aux_sym_cmd_identifier_token31] = ACTIONS(1788), - [aux_sym_cmd_identifier_token32] = ACTIONS(1788), - [aux_sym_cmd_identifier_token33] = ACTIONS(1788), - [aux_sym_cmd_identifier_token34] = ACTIONS(1788), - [aux_sym_cmd_identifier_token35] = ACTIONS(1788), - [aux_sym_cmd_identifier_token36] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [aux_sym_cmd_identifier_token38] = ACTIONS(1788), - [aux_sym_cmd_identifier_token39] = ACTIONS(1790), - [aux_sym_cmd_identifier_token40] = ACTIONS(1790), - [anon_sym_def] = ACTIONS(1788), - [anon_sym_export_DASHenv] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_error] = ACTIONS(1788), - [anon_sym_list] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_make] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_do] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_else] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1788), - [anon_sym_catch] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_source] = ACTIONS(1788), - [anon_sym_source_DASHenv] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_hide] = ACTIONS(1788), - [anon_sym_hide_DASHenv] = ACTIONS(1788), - [anon_sym_overlay] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_as] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1790), - [anon_sym_DOT2] = ACTIONS(1788), - [aux_sym__val_number_decimal_token3] = ACTIONS(1790), - [aux_sym__val_number_token1] = ACTIONS(1790), - [aux_sym__val_number_token2] = ACTIONS(1790), - [aux_sym__val_number_token3] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [sym__str_single_quotes] = ACTIONS(1790), - [sym__str_back_ticks] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), + [357] = { + [sym_cell_path] = STATE(630), + [sym_path] = STATE(532), + [sym_comment] = STATE(357), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [aux_sym_cmd_identifier_token1] = ACTIONS(1875), + [aux_sym_cmd_identifier_token2] = ACTIONS(1875), + [aux_sym_cmd_identifier_token3] = ACTIONS(1875), + [aux_sym_cmd_identifier_token4] = ACTIONS(1875), + [aux_sym_cmd_identifier_token5] = ACTIONS(1875), + [aux_sym_cmd_identifier_token6] = ACTIONS(1875), + [aux_sym_cmd_identifier_token7] = ACTIONS(1875), + [aux_sym_cmd_identifier_token8] = ACTIONS(1875), + [aux_sym_cmd_identifier_token9] = ACTIONS(1875), + [aux_sym_cmd_identifier_token10] = ACTIONS(1875), + [aux_sym_cmd_identifier_token11] = ACTIONS(1875), + [aux_sym_cmd_identifier_token12] = ACTIONS(1875), + [aux_sym_cmd_identifier_token13] = ACTIONS(1875), + [aux_sym_cmd_identifier_token14] = ACTIONS(1875), + [aux_sym_cmd_identifier_token15] = ACTIONS(1875), + [aux_sym_cmd_identifier_token16] = ACTIONS(1875), + [aux_sym_cmd_identifier_token17] = ACTIONS(1875), + [aux_sym_cmd_identifier_token18] = ACTIONS(1875), + [aux_sym_cmd_identifier_token19] = ACTIONS(1875), + [aux_sym_cmd_identifier_token20] = ACTIONS(1875), + [aux_sym_cmd_identifier_token21] = ACTIONS(1875), + [aux_sym_cmd_identifier_token22] = ACTIONS(1875), + [aux_sym_cmd_identifier_token23] = ACTIONS(1875), + [aux_sym_cmd_identifier_token24] = ACTIONS(1875), + [aux_sym_cmd_identifier_token25] = ACTIONS(1875), + [aux_sym_cmd_identifier_token26] = ACTIONS(1875), + [aux_sym_cmd_identifier_token27] = ACTIONS(1875), + [aux_sym_cmd_identifier_token28] = ACTIONS(1875), + [aux_sym_cmd_identifier_token29] = ACTIONS(1875), + [aux_sym_cmd_identifier_token30] = ACTIONS(1875), + [aux_sym_cmd_identifier_token31] = ACTIONS(1875), + [aux_sym_cmd_identifier_token32] = ACTIONS(1875), + [aux_sym_cmd_identifier_token33] = ACTIONS(1875), + [aux_sym_cmd_identifier_token34] = ACTIONS(1875), + [aux_sym_cmd_identifier_token35] = ACTIONS(1875), + [aux_sym_cmd_identifier_token36] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1875), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_list] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_make] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(247), + }, + [358] = { + [sym_cell_path] = STATE(631), + [sym_path] = STATE(532), + [sym_comment] = STATE(358), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(1879), + [aux_sym_cmd_identifier_token3] = ACTIONS(1879), + [aux_sym_cmd_identifier_token4] = ACTIONS(1879), + [aux_sym_cmd_identifier_token5] = ACTIONS(1879), + [aux_sym_cmd_identifier_token6] = ACTIONS(1879), + [aux_sym_cmd_identifier_token7] = ACTIONS(1879), + [aux_sym_cmd_identifier_token8] = ACTIONS(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1879), + [aux_sym_cmd_identifier_token11] = ACTIONS(1879), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(1879), + [aux_sym_cmd_identifier_token17] = ACTIONS(1879), + [aux_sym_cmd_identifier_token18] = ACTIONS(1879), + [aux_sym_cmd_identifier_token19] = ACTIONS(1879), + [aux_sym_cmd_identifier_token20] = ACTIONS(1879), + [aux_sym_cmd_identifier_token21] = ACTIONS(1879), + [aux_sym_cmd_identifier_token22] = ACTIONS(1879), + [aux_sym_cmd_identifier_token23] = ACTIONS(1879), + [aux_sym_cmd_identifier_token24] = ACTIONS(1879), + [aux_sym_cmd_identifier_token25] = ACTIONS(1879), + [aux_sym_cmd_identifier_token26] = ACTIONS(1879), + [aux_sym_cmd_identifier_token27] = ACTIONS(1879), + [aux_sym_cmd_identifier_token28] = ACTIONS(1879), + [aux_sym_cmd_identifier_token29] = ACTIONS(1879), + [aux_sym_cmd_identifier_token30] = ACTIONS(1879), + [aux_sym_cmd_identifier_token31] = ACTIONS(1879), + [aux_sym_cmd_identifier_token32] = ACTIONS(1879), + [aux_sym_cmd_identifier_token33] = ACTIONS(1879), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1879), + [aux_sym_cmd_identifier_token36] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_list] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), + }, + [359] = { + [sym_cell_path] = STATE(637), + [sym_path] = STATE(532), + [sym_comment] = STATE(359), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_let_DASHenv] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [aux_sym_cmd_identifier_token1] = ACTIONS(1883), + [aux_sym_cmd_identifier_token2] = ACTIONS(1883), + [aux_sym_cmd_identifier_token3] = ACTIONS(1883), + [aux_sym_cmd_identifier_token4] = ACTIONS(1883), + [aux_sym_cmd_identifier_token5] = ACTIONS(1883), + [aux_sym_cmd_identifier_token6] = ACTIONS(1883), + [aux_sym_cmd_identifier_token7] = ACTIONS(1883), + [aux_sym_cmd_identifier_token8] = ACTIONS(1883), + [aux_sym_cmd_identifier_token9] = ACTIONS(1883), + [aux_sym_cmd_identifier_token10] = ACTIONS(1883), + [aux_sym_cmd_identifier_token11] = ACTIONS(1883), + [aux_sym_cmd_identifier_token12] = ACTIONS(1883), + [aux_sym_cmd_identifier_token13] = ACTIONS(1883), + [aux_sym_cmd_identifier_token14] = ACTIONS(1883), + [aux_sym_cmd_identifier_token15] = ACTIONS(1883), + [aux_sym_cmd_identifier_token16] = ACTIONS(1883), + [aux_sym_cmd_identifier_token17] = ACTIONS(1883), + [aux_sym_cmd_identifier_token18] = ACTIONS(1883), + [aux_sym_cmd_identifier_token19] = ACTIONS(1883), + [aux_sym_cmd_identifier_token20] = ACTIONS(1883), + [aux_sym_cmd_identifier_token21] = ACTIONS(1883), + [aux_sym_cmd_identifier_token22] = ACTIONS(1883), + [aux_sym_cmd_identifier_token23] = ACTIONS(1883), + [aux_sym_cmd_identifier_token24] = ACTIONS(1883), + [aux_sym_cmd_identifier_token25] = ACTIONS(1883), + [aux_sym_cmd_identifier_token26] = ACTIONS(1883), + [aux_sym_cmd_identifier_token27] = ACTIONS(1883), + [aux_sym_cmd_identifier_token28] = ACTIONS(1883), + [aux_sym_cmd_identifier_token29] = ACTIONS(1883), + [aux_sym_cmd_identifier_token30] = ACTIONS(1883), + [aux_sym_cmd_identifier_token31] = ACTIONS(1883), + [aux_sym_cmd_identifier_token32] = ACTIONS(1883), + [aux_sym_cmd_identifier_token33] = ACTIONS(1883), + [aux_sym_cmd_identifier_token34] = ACTIONS(1883), + [aux_sym_cmd_identifier_token35] = ACTIONS(1883), + [aux_sym_cmd_identifier_token36] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [anon_sym_null] = ACTIONS(1885), + [aux_sym_cmd_identifier_token38] = ACTIONS(1883), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_export_DASHenv] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_error] = ACTIONS(1883), + [anon_sym_list] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_in] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_make] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_catch] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_source] = ACTIONS(1883), + [anon_sym_source_DASHenv] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_hide] = ACTIONS(1883), + [anon_sym_hide_DASHenv] = ACTIONS(1883), + [anon_sym_overlay] = ACTIONS(1883), + [anon_sym_new] = ACTIONS(1883), + [anon_sym_as] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(247), }, - [371] = { - [sym_cmd_identifier] = STATE(4769), - [sym_ctrl_if] = STATE(5245), - [sym_block] = STATE(5246), - [sym__expression] = STATE(5246), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4061), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(2119), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3177), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_command] = STATE(5246), - [sym_comment] = STATE(371), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_null] = ACTIONS(1889), + [360] = { + [sym_cell_path] = STATE(638), + [sym_path] = STATE(532), + [sym_comment] = STATE(360), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1891), + [anon_sym_alias] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_let_DASHenv] = ACTIONS(1891), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [aux_sym_cmd_identifier_token1] = ACTIONS(1891), + [aux_sym_cmd_identifier_token2] = ACTIONS(1891), + [aux_sym_cmd_identifier_token3] = ACTIONS(1891), + [aux_sym_cmd_identifier_token4] = ACTIONS(1891), + [aux_sym_cmd_identifier_token5] = ACTIONS(1891), + [aux_sym_cmd_identifier_token6] = ACTIONS(1891), + [aux_sym_cmd_identifier_token7] = ACTIONS(1891), + [aux_sym_cmd_identifier_token8] = ACTIONS(1891), + [aux_sym_cmd_identifier_token9] = ACTIONS(1891), + [aux_sym_cmd_identifier_token10] = ACTIONS(1891), + [aux_sym_cmd_identifier_token11] = ACTIONS(1891), + [aux_sym_cmd_identifier_token12] = ACTIONS(1891), + [aux_sym_cmd_identifier_token13] = ACTIONS(1891), + [aux_sym_cmd_identifier_token14] = ACTIONS(1891), + [aux_sym_cmd_identifier_token15] = ACTIONS(1891), + [aux_sym_cmd_identifier_token16] = ACTIONS(1891), + [aux_sym_cmd_identifier_token17] = ACTIONS(1891), + [aux_sym_cmd_identifier_token18] = ACTIONS(1891), + [aux_sym_cmd_identifier_token19] = ACTIONS(1891), + [aux_sym_cmd_identifier_token20] = ACTIONS(1891), + [aux_sym_cmd_identifier_token21] = ACTIONS(1891), + [aux_sym_cmd_identifier_token22] = ACTIONS(1891), + [aux_sym_cmd_identifier_token23] = ACTIONS(1891), + [aux_sym_cmd_identifier_token24] = ACTIONS(1891), + [aux_sym_cmd_identifier_token25] = ACTIONS(1891), + [aux_sym_cmd_identifier_token26] = ACTIONS(1891), + [aux_sym_cmd_identifier_token27] = ACTIONS(1891), + [aux_sym_cmd_identifier_token28] = ACTIONS(1891), + [aux_sym_cmd_identifier_token29] = ACTIONS(1891), + [aux_sym_cmd_identifier_token30] = ACTIONS(1891), + [aux_sym_cmd_identifier_token31] = ACTIONS(1891), + [aux_sym_cmd_identifier_token32] = ACTIONS(1891), + [aux_sym_cmd_identifier_token33] = ACTIONS(1891), + [aux_sym_cmd_identifier_token34] = ACTIONS(1891), + [aux_sym_cmd_identifier_token35] = ACTIONS(1891), + [aux_sym_cmd_identifier_token36] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), [aux_sym_cmd_identifier_token38] = ACTIONS(1891), [aux_sym_cmd_identifier_token39] = ACTIONS(1893), [aux_sym_cmd_identifier_token40] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_if] = ACTIONS(67), - [aux_sym_ctrl_match_token1] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(73), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(1897), - [aux_sym__val_number_decimal_token2] = ACTIONS(1899), - [anon_sym_DOT2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1903), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_export_DASHenv] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_error] = ACTIONS(1891), + [anon_sym_list] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_in] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_make] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_catch] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_source] = ACTIONS(1891), + [anon_sym_source_DASHenv] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1891), + [anon_sym_hide] = ACTIONS(1891), + [anon_sym_hide_DASHenv] = ACTIONS(1891), + [anon_sym_overlay] = ACTIONS(1891), + [anon_sym_new] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(247), }, - [372] = { + [361] = { + [sym_cell_path] = STATE(639), + [sym_path] = STATE(532), + [sym_comment] = STATE(361), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1895), + [anon_sym_alias] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_let_DASHenv] = ACTIONS(1895), + [anon_sym_mut] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [aux_sym_cmd_identifier_token1] = ACTIONS(1895), + [aux_sym_cmd_identifier_token2] = ACTIONS(1895), + [aux_sym_cmd_identifier_token3] = ACTIONS(1895), + [aux_sym_cmd_identifier_token4] = ACTIONS(1895), + [aux_sym_cmd_identifier_token5] = ACTIONS(1895), + [aux_sym_cmd_identifier_token6] = ACTIONS(1895), + [aux_sym_cmd_identifier_token7] = ACTIONS(1895), + [aux_sym_cmd_identifier_token8] = ACTIONS(1895), + [aux_sym_cmd_identifier_token9] = ACTIONS(1895), + [aux_sym_cmd_identifier_token10] = ACTIONS(1895), + [aux_sym_cmd_identifier_token11] = ACTIONS(1895), + [aux_sym_cmd_identifier_token12] = ACTIONS(1895), + [aux_sym_cmd_identifier_token13] = ACTIONS(1895), + [aux_sym_cmd_identifier_token14] = ACTIONS(1895), + [aux_sym_cmd_identifier_token15] = ACTIONS(1895), + [aux_sym_cmd_identifier_token16] = ACTIONS(1895), + [aux_sym_cmd_identifier_token17] = ACTIONS(1895), + [aux_sym_cmd_identifier_token18] = ACTIONS(1895), + [aux_sym_cmd_identifier_token19] = ACTIONS(1895), + [aux_sym_cmd_identifier_token20] = ACTIONS(1895), + [aux_sym_cmd_identifier_token21] = ACTIONS(1895), + [aux_sym_cmd_identifier_token22] = ACTIONS(1895), + [aux_sym_cmd_identifier_token23] = ACTIONS(1895), + [aux_sym_cmd_identifier_token24] = ACTIONS(1895), + [aux_sym_cmd_identifier_token25] = ACTIONS(1895), + [aux_sym_cmd_identifier_token26] = ACTIONS(1895), + [aux_sym_cmd_identifier_token27] = ACTIONS(1895), + [aux_sym_cmd_identifier_token28] = ACTIONS(1895), + [aux_sym_cmd_identifier_token29] = ACTIONS(1895), + [aux_sym_cmd_identifier_token30] = ACTIONS(1895), + [aux_sym_cmd_identifier_token31] = ACTIONS(1895), + [aux_sym_cmd_identifier_token32] = ACTIONS(1895), + [aux_sym_cmd_identifier_token33] = ACTIONS(1895), + [aux_sym_cmd_identifier_token34] = ACTIONS(1895), + [aux_sym_cmd_identifier_token35] = ACTIONS(1895), + [aux_sym_cmd_identifier_token36] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1897), + [aux_sym_cmd_identifier_token38] = ACTIONS(1895), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_export_DASHenv] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_module] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1895), + [anon_sym_list] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_in] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_make] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_catch] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_source] = ACTIONS(1895), + [anon_sym_source_DASHenv] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_hide] = ACTIONS(1895), + [anon_sym_hide_DASHenv] = ACTIONS(1895), + [anon_sym_overlay] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1895), + [anon_sym_as] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(247), + }, + [362] = { [sym_cell_path] = STATE(643), - [sym_path] = STATE(572), - [sym_comment] = STATE(372), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1792), - [anon_sym_alias] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_let_DASHenv] = ACTIONS(1792), - [anon_sym_mut] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [aux_sym_cmd_identifier_token1] = ACTIONS(1792), - [aux_sym_cmd_identifier_token2] = ACTIONS(1792), - [aux_sym_cmd_identifier_token3] = ACTIONS(1792), - [aux_sym_cmd_identifier_token4] = ACTIONS(1792), - [aux_sym_cmd_identifier_token5] = ACTIONS(1792), - [aux_sym_cmd_identifier_token6] = ACTIONS(1792), - [aux_sym_cmd_identifier_token7] = ACTIONS(1792), - [aux_sym_cmd_identifier_token8] = ACTIONS(1792), - [aux_sym_cmd_identifier_token9] = ACTIONS(1792), - [aux_sym_cmd_identifier_token10] = ACTIONS(1792), - [aux_sym_cmd_identifier_token11] = ACTIONS(1792), - [aux_sym_cmd_identifier_token12] = ACTIONS(1792), - [aux_sym_cmd_identifier_token13] = ACTIONS(1792), - [aux_sym_cmd_identifier_token14] = ACTIONS(1792), - [aux_sym_cmd_identifier_token15] = ACTIONS(1792), - [aux_sym_cmd_identifier_token16] = ACTIONS(1792), - [aux_sym_cmd_identifier_token17] = ACTIONS(1792), - [aux_sym_cmd_identifier_token18] = ACTIONS(1792), - [aux_sym_cmd_identifier_token19] = ACTIONS(1792), - [aux_sym_cmd_identifier_token20] = ACTIONS(1792), - [aux_sym_cmd_identifier_token21] = ACTIONS(1792), - [aux_sym_cmd_identifier_token22] = ACTIONS(1792), - [aux_sym_cmd_identifier_token23] = ACTIONS(1792), - [aux_sym_cmd_identifier_token24] = ACTIONS(1792), - [aux_sym_cmd_identifier_token25] = ACTIONS(1792), - [aux_sym_cmd_identifier_token26] = ACTIONS(1792), - [aux_sym_cmd_identifier_token27] = ACTIONS(1792), - [aux_sym_cmd_identifier_token28] = ACTIONS(1792), - [aux_sym_cmd_identifier_token29] = ACTIONS(1792), - [aux_sym_cmd_identifier_token30] = ACTIONS(1792), - [aux_sym_cmd_identifier_token31] = ACTIONS(1792), - [aux_sym_cmd_identifier_token32] = ACTIONS(1792), - [aux_sym_cmd_identifier_token33] = ACTIONS(1792), - [aux_sym_cmd_identifier_token34] = ACTIONS(1792), - [aux_sym_cmd_identifier_token35] = ACTIONS(1792), - [aux_sym_cmd_identifier_token36] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1792), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [anon_sym_def] = ACTIONS(1792), - [anon_sym_export_DASHenv] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_module] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(1792), - [anon_sym_list] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_make] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_do] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_try] = ACTIONS(1792), - [anon_sym_catch] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_source] = ACTIONS(1792), - [anon_sym_source_DASHenv] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1792), - [anon_sym_hide] = ACTIONS(1792), - [anon_sym_hide_DASHenv] = ACTIONS(1792), - [anon_sym_overlay] = ACTIONS(1792), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1792), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [anon_sym_DOT2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(3), + [sym_path] = STATE(532), + [sym_comment] = STATE(362), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1747), + [anon_sym_alias] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_let_DASHenv] = ACTIONS(1747), + [anon_sym_mut] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [aux_sym_cmd_identifier_token1] = ACTIONS(1747), + [aux_sym_cmd_identifier_token2] = ACTIONS(1747), + [aux_sym_cmd_identifier_token3] = ACTIONS(1747), + [aux_sym_cmd_identifier_token4] = ACTIONS(1747), + [aux_sym_cmd_identifier_token5] = ACTIONS(1747), + [aux_sym_cmd_identifier_token6] = ACTIONS(1747), + [aux_sym_cmd_identifier_token7] = ACTIONS(1747), + [aux_sym_cmd_identifier_token8] = ACTIONS(1747), + [aux_sym_cmd_identifier_token9] = ACTIONS(1747), + [aux_sym_cmd_identifier_token10] = ACTIONS(1747), + [aux_sym_cmd_identifier_token11] = ACTIONS(1747), + [aux_sym_cmd_identifier_token12] = ACTIONS(1747), + [aux_sym_cmd_identifier_token13] = ACTIONS(1747), + [aux_sym_cmd_identifier_token14] = ACTIONS(1747), + [aux_sym_cmd_identifier_token15] = ACTIONS(1747), + [aux_sym_cmd_identifier_token16] = ACTIONS(1747), + [aux_sym_cmd_identifier_token17] = ACTIONS(1747), + [aux_sym_cmd_identifier_token18] = ACTIONS(1747), + [aux_sym_cmd_identifier_token19] = ACTIONS(1747), + [aux_sym_cmd_identifier_token20] = ACTIONS(1747), + [aux_sym_cmd_identifier_token21] = ACTIONS(1747), + [aux_sym_cmd_identifier_token22] = ACTIONS(1747), + [aux_sym_cmd_identifier_token23] = ACTIONS(1747), + [aux_sym_cmd_identifier_token24] = ACTIONS(1747), + [aux_sym_cmd_identifier_token25] = ACTIONS(1747), + [aux_sym_cmd_identifier_token26] = ACTIONS(1747), + [aux_sym_cmd_identifier_token27] = ACTIONS(1747), + [aux_sym_cmd_identifier_token28] = ACTIONS(1747), + [aux_sym_cmd_identifier_token29] = ACTIONS(1747), + [aux_sym_cmd_identifier_token30] = ACTIONS(1747), + [aux_sym_cmd_identifier_token31] = ACTIONS(1747), + [aux_sym_cmd_identifier_token32] = ACTIONS(1747), + [aux_sym_cmd_identifier_token33] = ACTIONS(1747), + [aux_sym_cmd_identifier_token34] = ACTIONS(1747), + [aux_sym_cmd_identifier_token35] = ACTIONS(1747), + [aux_sym_cmd_identifier_token36] = ACTIONS(1747), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [anon_sym_null] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1747), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1747), + [anon_sym_export_DASHenv] = ACTIONS(1747), + [anon_sym_extern] = ACTIONS(1747), + [anon_sym_module] = ACTIONS(1747), + [anon_sym_use] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1747), + [anon_sym_list] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_in] = ACTIONS(1747), + [anon_sym_loop] = ACTIONS(1747), + [anon_sym_make] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_do] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1747), + [anon_sym_match] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1747), + [anon_sym_catch] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_source] = ACTIONS(1747), + [anon_sym_source_DASHenv] = ACTIONS(1747), + [anon_sym_register] = ACTIONS(1747), + [anon_sym_hide] = ACTIONS(1747), + [anon_sym_hide_DASHenv] = ACTIONS(1747), + [anon_sym_overlay] = ACTIONS(1747), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_as] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(247), }, - [373] = { - [sym_comment] = STATE(373), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_alias] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_let_DASHenv] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1907), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1907), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1907), - [aux_sym_cmd_identifier_token32] = ACTIONS(1907), - [aux_sym_cmd_identifier_token33] = ACTIONS(1907), - [aux_sym_cmd_identifier_token34] = ACTIONS(1907), - [aux_sym_cmd_identifier_token35] = ACTIONS(1907), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1907), - [anon_sym_false] = ACTIONS(1907), - [anon_sym_null] = ACTIONS(1907), - [aux_sym_cmd_identifier_token38] = ACTIONS(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1907), - [aux_sym_cmd_identifier_token40] = ACTIONS(1907), - [sym__newline] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_def] = ACTIONS(1905), - [anon_sym_export_DASHenv] = ACTIONS(1905), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [aux_sym_ctrl_match_token1] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_source] = ACTIONS(1905), - [anon_sym_source_DASHenv] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_hide] = ACTIONS(1905), - [anon_sym_hide_DASHenv] = ACTIONS(1905), - [anon_sym_overlay] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1907), - [aux_sym_expr_unary_token1] = ACTIONS(1907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1907), - [anon_sym_DOT_DOT_LT] = ACTIONS(1907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1907), - [anon_sym_DOT2] = ACTIONS(1905), - [aux_sym__val_number_decimal_token3] = ACTIONS(1907), - [aux_sym__val_number_token1] = ACTIONS(1907), - [aux_sym__val_number_token2] = ACTIONS(1907), - [aux_sym__val_number_token3] = ACTIONS(1907), - [anon_sym_0b] = ACTIONS(1905), - [anon_sym_0o] = ACTIONS(1905), - [anon_sym_0x] = ACTIONS(1905), - [sym_val_date] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1907), - [sym__str_single_quotes] = ACTIONS(1907), - [sym__str_back_ticks] = ACTIONS(1907), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1907), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), - [anon_sym_CARET] = ACTIONS(1907), + [363] = { + [sym_cmd_identifier] = STATE(4953), + [sym__expression_parenthesized] = STATE(4040), + [sym_expr_unary] = STATE(2425), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2425), + [sym__expr_binary_expression_parenthesized] = STATE(3985), + [sym_expr_parenthesized] = STATE(2154), + [sym_val_range] = STATE(4041), + [sym__value] = STATE(2425), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2431), + [sym_val_variable] = STATE(2143), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1693), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_env_var] = STATE(7227), + [sym__command_parenthesized] = STATE(5310), + [sym_comment] = STATE(363), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1242), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_null] = ACTIONS(461), + [aux_sym_cmd_identifier_token38] = ACTIONS(463), + [aux_sym_cmd_identifier_token39] = ACTIONS(465), + [aux_sym_cmd_identifier_token40] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(495), + [aux_sym__val_number_decimal_token2] = ACTIONS(497), + [aux_sym__val_number_decimal_token3] = ACTIONS(499), + [aux_sym__val_number_decimal_token4] = ACTIONS(501), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(247), + }, + [364] = { + [sym_comment] = STATE(364), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_null] = ACTIONS(1021), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1021), + [aux_sym_cmd_identifier_token40] = ACTIONS(1021), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1021), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1021), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1021), + [aux_sym__val_number_decimal_token3] = ACTIONS(1021), + [aux_sym__val_number_decimal_token4] = ACTIONS(1021), + [aux_sym__val_number_token1] = ACTIONS(1021), + [aux_sym__val_number_token2] = ACTIONS(1021), + [aux_sym__val_number_token3] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [sym__str_single_quotes] = ACTIONS(1021), + [sym__str_back_ticks] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1021), + [sym__entry_separator] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), [anon_sym_POUND] = ACTIONS(3), }, - [374] = { + [365] = { [sym_cell_path] = STATE(644), - [sym_path] = STATE(572), - [sym_comment] = STATE(374), - [aux_sym_cell_path_repeat1] = STATE(458), + [sym_path] = STATE(532), + [sym_comment] = STATE(365), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1824), + [anon_sym_alias] = ACTIONS(1824), + [anon_sym_let] = ACTIONS(1824), + [anon_sym_let_DASHenv] = ACTIONS(1824), + [anon_sym_mut] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [aux_sym_cmd_identifier_token1] = ACTIONS(1824), + [aux_sym_cmd_identifier_token2] = ACTIONS(1824), + [aux_sym_cmd_identifier_token3] = ACTIONS(1824), + [aux_sym_cmd_identifier_token4] = ACTIONS(1824), + [aux_sym_cmd_identifier_token5] = ACTIONS(1824), + [aux_sym_cmd_identifier_token6] = ACTIONS(1824), + [aux_sym_cmd_identifier_token7] = ACTIONS(1824), + [aux_sym_cmd_identifier_token8] = ACTIONS(1824), + [aux_sym_cmd_identifier_token9] = ACTIONS(1824), + [aux_sym_cmd_identifier_token10] = ACTIONS(1824), + [aux_sym_cmd_identifier_token11] = ACTIONS(1824), + [aux_sym_cmd_identifier_token12] = ACTIONS(1824), + [aux_sym_cmd_identifier_token13] = ACTIONS(1824), + [aux_sym_cmd_identifier_token14] = ACTIONS(1824), + [aux_sym_cmd_identifier_token15] = ACTIONS(1824), + [aux_sym_cmd_identifier_token16] = ACTIONS(1824), + [aux_sym_cmd_identifier_token17] = ACTIONS(1824), + [aux_sym_cmd_identifier_token18] = ACTIONS(1824), + [aux_sym_cmd_identifier_token19] = ACTIONS(1824), + [aux_sym_cmd_identifier_token20] = ACTIONS(1824), + [aux_sym_cmd_identifier_token21] = ACTIONS(1824), + [aux_sym_cmd_identifier_token22] = ACTIONS(1824), + [aux_sym_cmd_identifier_token23] = ACTIONS(1824), + [aux_sym_cmd_identifier_token24] = ACTIONS(1824), + [aux_sym_cmd_identifier_token25] = ACTIONS(1824), + [aux_sym_cmd_identifier_token26] = ACTIONS(1824), + [aux_sym_cmd_identifier_token27] = ACTIONS(1824), + [aux_sym_cmd_identifier_token28] = ACTIONS(1824), + [aux_sym_cmd_identifier_token29] = ACTIONS(1824), + [aux_sym_cmd_identifier_token30] = ACTIONS(1824), + [aux_sym_cmd_identifier_token31] = ACTIONS(1824), + [aux_sym_cmd_identifier_token32] = ACTIONS(1824), + [aux_sym_cmd_identifier_token33] = ACTIONS(1824), + [aux_sym_cmd_identifier_token34] = ACTIONS(1824), + [aux_sym_cmd_identifier_token35] = ACTIONS(1824), + [aux_sym_cmd_identifier_token36] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1824), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [anon_sym_def] = ACTIONS(1824), + [anon_sym_export_DASHenv] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1824), + [anon_sym_module] = ACTIONS(1824), + [anon_sym_use] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_error] = ACTIONS(1824), + [anon_sym_list] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1824), + [anon_sym_loop] = ACTIONS(1824), + [anon_sym_make] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_do] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1824), + [anon_sym_match] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_try] = ACTIONS(1824), + [anon_sym_catch] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_source] = ACTIONS(1824), + [anon_sym_source_DASHenv] = ACTIONS(1824), + [anon_sym_register] = ACTIONS(1824), + [anon_sym_hide] = ACTIONS(1824), + [anon_sym_hide_DASHenv] = ACTIONS(1824), + [anon_sym_overlay] = ACTIONS(1824), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_as] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1824), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_POUND] = ACTIONS(247), + }, + [366] = { + [sym_comment] = STATE(366), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(1913), + [aux_sym__immediate_decimal_token2] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), + }, + [367] = { + [sym_cell_path] = STATE(645), + [sym_path] = STATE(532), + [sym_comment] = STATE(367), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1855), + [anon_sym_alias] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_let_DASHenv] = ACTIONS(1855), + [anon_sym_mut] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [aux_sym_cmd_identifier_token1] = ACTIONS(1855), + [aux_sym_cmd_identifier_token2] = ACTIONS(1855), + [aux_sym_cmd_identifier_token3] = ACTIONS(1855), + [aux_sym_cmd_identifier_token4] = ACTIONS(1855), + [aux_sym_cmd_identifier_token5] = ACTIONS(1855), + [aux_sym_cmd_identifier_token6] = ACTIONS(1855), + [aux_sym_cmd_identifier_token7] = ACTIONS(1855), + [aux_sym_cmd_identifier_token8] = ACTIONS(1855), + [aux_sym_cmd_identifier_token9] = ACTIONS(1855), + [aux_sym_cmd_identifier_token10] = ACTIONS(1855), + [aux_sym_cmd_identifier_token11] = ACTIONS(1855), + [aux_sym_cmd_identifier_token12] = ACTIONS(1855), + [aux_sym_cmd_identifier_token13] = ACTIONS(1855), + [aux_sym_cmd_identifier_token14] = ACTIONS(1855), + [aux_sym_cmd_identifier_token15] = ACTIONS(1855), + [aux_sym_cmd_identifier_token16] = ACTIONS(1855), + [aux_sym_cmd_identifier_token17] = ACTIONS(1855), + [aux_sym_cmd_identifier_token18] = ACTIONS(1855), + [aux_sym_cmd_identifier_token19] = ACTIONS(1855), + [aux_sym_cmd_identifier_token20] = ACTIONS(1855), + [aux_sym_cmd_identifier_token21] = ACTIONS(1855), + [aux_sym_cmd_identifier_token22] = ACTIONS(1855), + [aux_sym_cmd_identifier_token23] = ACTIONS(1855), + [aux_sym_cmd_identifier_token24] = ACTIONS(1855), + [aux_sym_cmd_identifier_token25] = ACTIONS(1855), + [aux_sym_cmd_identifier_token26] = ACTIONS(1855), + [aux_sym_cmd_identifier_token27] = ACTIONS(1855), + [aux_sym_cmd_identifier_token28] = ACTIONS(1855), + [aux_sym_cmd_identifier_token29] = ACTIONS(1855), + [aux_sym_cmd_identifier_token30] = ACTIONS(1855), + [aux_sym_cmd_identifier_token31] = ACTIONS(1855), + [aux_sym_cmd_identifier_token32] = ACTIONS(1855), + [aux_sym_cmd_identifier_token33] = ACTIONS(1855), + [aux_sym_cmd_identifier_token34] = ACTIONS(1855), + [aux_sym_cmd_identifier_token35] = ACTIONS(1855), + [aux_sym_cmd_identifier_token36] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1857), + [aux_sym_cmd_identifier_token38] = ACTIONS(1855), + [aux_sym_cmd_identifier_token39] = ACTIONS(1857), + [aux_sym_cmd_identifier_token40] = ACTIONS(1857), + [anon_sym_def] = ACTIONS(1855), + [anon_sym_export_DASHenv] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1855), + [anon_sym_use] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1857), + [anon_sym_error] = ACTIONS(1855), + [anon_sym_list] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_loop] = ACTIONS(1855), + [anon_sym_make] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_catch] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_source] = ACTIONS(1855), + [anon_sym_source_DASHenv] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1855), + [anon_sym_hide] = ACTIONS(1855), + [anon_sym_hide_DASHenv] = ACTIONS(1855), + [anon_sym_overlay] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1857), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(247), + }, + [368] = { + [sym_cell_path] = STATE(649), + [sym_path] = STATE(532), + [sym_comment] = STATE(368), + [aux_sym_cell_path_repeat1] = STATE(424), [anon_sym_export] = ACTIONS(1796), [anon_sym_alias] = ACTIONS(1796), [anon_sym_let] = ACTIONS(1796), @@ -116000,14 +120627,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1796), [anon_sym_new] = ACTIONS(1796), [anon_sym_as] = ACTIONS(1796), - [anon_sym_PLUS] = ACTIONS(1796), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1842), + [anon_sym_DOT] = ACTIONS(1903), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1798), [aux_sym__val_number_decimal_token1] = ACTIONS(1796), [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [anon_sym_DOT2] = ACTIONS(1796), [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(1798), [aux_sym__val_number_token2] = ACTIONS(1798), [aux_sym__val_number_token3] = ACTIONS(1798), @@ -116015,322 +120641,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1798), [sym__str_back_ticks] = ACTIONS(1798), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(3), - }, - [375] = { - [sym_comment] = STATE(375), - [anon_sym_export] = ACTIONS(912), - [anon_sym_alias] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_let_DASHenv] = ACTIONS(912), - [anon_sym_mut] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [aux_sym_cmd_identifier_token1] = ACTIONS(912), - [aux_sym_cmd_identifier_token2] = ACTIONS(912), - [aux_sym_cmd_identifier_token3] = ACTIONS(912), - [aux_sym_cmd_identifier_token4] = ACTIONS(912), - [aux_sym_cmd_identifier_token5] = ACTIONS(912), - [aux_sym_cmd_identifier_token6] = ACTIONS(912), - [aux_sym_cmd_identifier_token7] = ACTIONS(912), - [aux_sym_cmd_identifier_token8] = ACTIONS(912), - [aux_sym_cmd_identifier_token9] = ACTIONS(912), - [aux_sym_cmd_identifier_token10] = ACTIONS(912), - [aux_sym_cmd_identifier_token11] = ACTIONS(912), - [aux_sym_cmd_identifier_token12] = ACTIONS(912), - [aux_sym_cmd_identifier_token13] = ACTIONS(912), - [aux_sym_cmd_identifier_token14] = ACTIONS(912), - [aux_sym_cmd_identifier_token15] = ACTIONS(912), - [aux_sym_cmd_identifier_token16] = ACTIONS(912), - [aux_sym_cmd_identifier_token17] = ACTIONS(912), - [aux_sym_cmd_identifier_token18] = ACTIONS(912), - [aux_sym_cmd_identifier_token19] = ACTIONS(912), - [aux_sym_cmd_identifier_token20] = ACTIONS(912), - [aux_sym_cmd_identifier_token21] = ACTIONS(912), - [aux_sym_cmd_identifier_token22] = ACTIONS(912), - [aux_sym_cmd_identifier_token23] = ACTIONS(912), - [aux_sym_cmd_identifier_token24] = ACTIONS(912), - [aux_sym_cmd_identifier_token25] = ACTIONS(912), - [aux_sym_cmd_identifier_token26] = ACTIONS(912), - [aux_sym_cmd_identifier_token27] = ACTIONS(912), - [aux_sym_cmd_identifier_token28] = ACTIONS(912), - [aux_sym_cmd_identifier_token29] = ACTIONS(912), - [aux_sym_cmd_identifier_token30] = ACTIONS(912), - [aux_sym_cmd_identifier_token31] = ACTIONS(912), - [aux_sym_cmd_identifier_token32] = ACTIONS(912), - [aux_sym_cmd_identifier_token33] = ACTIONS(912), - [aux_sym_cmd_identifier_token34] = ACTIONS(912), - [aux_sym_cmd_identifier_token35] = ACTIONS(912), - [aux_sym_cmd_identifier_token36] = ACTIONS(912), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(912), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [anon_sym_def] = ACTIONS(912), - [anon_sym_export_DASHenv] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym_module] = ACTIONS(912), - [anon_sym_use] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(912), - [anon_sym_list] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [anon_sym_loop] = ACTIONS(912), - [anon_sym_make] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_match] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_try] = ACTIONS(912), - [anon_sym_catch] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_source] = ACTIONS(912), - [anon_sym_source_DASHenv] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_hide] = ACTIONS(912), - [anon_sym_hide_DASHenv] = ACTIONS(912), - [anon_sym_overlay] = ACTIONS(912), - [anon_sym_new] = ACTIONS(912), - [anon_sym_as] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(914), - [aux_sym_record_entry_token1] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [376] = { - [sym_cell_path] = STATE(647), - [sym_path] = STATE(572), - [sym_comment] = STATE(376), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1800), - [anon_sym_alias] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_let_DASHenv] = ACTIONS(1800), - [anon_sym_mut] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [aux_sym_cmd_identifier_token1] = ACTIONS(1800), - [aux_sym_cmd_identifier_token2] = ACTIONS(1800), - [aux_sym_cmd_identifier_token3] = ACTIONS(1800), - [aux_sym_cmd_identifier_token4] = ACTIONS(1800), - [aux_sym_cmd_identifier_token5] = ACTIONS(1800), - [aux_sym_cmd_identifier_token6] = ACTIONS(1800), - [aux_sym_cmd_identifier_token7] = ACTIONS(1800), - [aux_sym_cmd_identifier_token8] = ACTIONS(1800), - [aux_sym_cmd_identifier_token9] = ACTIONS(1800), - [aux_sym_cmd_identifier_token10] = ACTIONS(1800), - [aux_sym_cmd_identifier_token11] = ACTIONS(1800), - [aux_sym_cmd_identifier_token12] = ACTIONS(1800), - [aux_sym_cmd_identifier_token13] = ACTIONS(1800), - [aux_sym_cmd_identifier_token14] = ACTIONS(1800), - [aux_sym_cmd_identifier_token15] = ACTIONS(1800), - [aux_sym_cmd_identifier_token16] = ACTIONS(1800), - [aux_sym_cmd_identifier_token17] = ACTIONS(1800), - [aux_sym_cmd_identifier_token18] = ACTIONS(1800), - [aux_sym_cmd_identifier_token19] = ACTIONS(1800), - [aux_sym_cmd_identifier_token20] = ACTIONS(1800), - [aux_sym_cmd_identifier_token21] = ACTIONS(1800), - [aux_sym_cmd_identifier_token22] = ACTIONS(1800), - [aux_sym_cmd_identifier_token23] = ACTIONS(1800), - [aux_sym_cmd_identifier_token24] = ACTIONS(1800), - [aux_sym_cmd_identifier_token25] = ACTIONS(1800), - [aux_sym_cmd_identifier_token26] = ACTIONS(1800), - [aux_sym_cmd_identifier_token27] = ACTIONS(1800), - [aux_sym_cmd_identifier_token28] = ACTIONS(1800), - [aux_sym_cmd_identifier_token29] = ACTIONS(1800), - [aux_sym_cmd_identifier_token30] = ACTIONS(1800), - [aux_sym_cmd_identifier_token31] = ACTIONS(1800), - [aux_sym_cmd_identifier_token32] = ACTIONS(1800), - [aux_sym_cmd_identifier_token33] = ACTIONS(1800), - [aux_sym_cmd_identifier_token34] = ACTIONS(1800), - [aux_sym_cmd_identifier_token35] = ACTIONS(1800), - [aux_sym_cmd_identifier_token36] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1802), - [aux_sym_cmd_identifier_token38] = ACTIONS(1800), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [anon_sym_def] = ACTIONS(1800), - [anon_sym_export_DASHenv] = ACTIONS(1800), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_module] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_error] = ACTIONS(1800), - [anon_sym_list] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_make] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_do] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_catch] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_source] = ACTIONS(1800), - [anon_sym_source_DASHenv] = ACTIONS(1800), - [anon_sym_register] = ACTIONS(1800), - [anon_sym_hide] = ACTIONS(1800), - [anon_sym_hide_DASHenv] = ACTIONS(1800), - [anon_sym_overlay] = ACTIONS(1800), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1802), - [aux_sym__val_number_decimal_token1] = ACTIONS(1800), - [aux_sym__val_number_decimal_token2] = ACTIONS(1802), - [anon_sym_DOT2] = ACTIONS(1800), - [aux_sym__val_number_decimal_token3] = ACTIONS(1802), - [aux_sym__val_number_token1] = ACTIONS(1802), - [aux_sym__val_number_token2] = ACTIONS(1802), - [aux_sym__val_number_token3] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1802), - [sym__str_single_quotes] = ACTIONS(1802), - [sym__str_back_ticks] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_POUND] = ACTIONS(247), }, - [377] = { - [sym_cell_path] = STATE(649), - [sym_path] = STATE(572), - [sym_comment] = STATE(377), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1804), - [anon_sym_alias] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_let_DASHenv] = ACTIONS(1804), - [anon_sym_mut] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [aux_sym_cmd_identifier_token1] = ACTIONS(1804), - [aux_sym_cmd_identifier_token2] = ACTIONS(1804), - [aux_sym_cmd_identifier_token3] = ACTIONS(1804), - [aux_sym_cmd_identifier_token4] = ACTIONS(1804), - [aux_sym_cmd_identifier_token5] = ACTIONS(1804), - [aux_sym_cmd_identifier_token6] = ACTIONS(1804), - [aux_sym_cmd_identifier_token7] = ACTIONS(1804), - [aux_sym_cmd_identifier_token8] = ACTIONS(1804), - [aux_sym_cmd_identifier_token9] = ACTIONS(1804), - [aux_sym_cmd_identifier_token10] = ACTIONS(1804), - [aux_sym_cmd_identifier_token11] = ACTIONS(1804), - [aux_sym_cmd_identifier_token12] = ACTIONS(1804), - [aux_sym_cmd_identifier_token13] = ACTIONS(1804), - [aux_sym_cmd_identifier_token14] = ACTIONS(1804), - [aux_sym_cmd_identifier_token15] = ACTIONS(1804), - [aux_sym_cmd_identifier_token16] = ACTIONS(1804), - [aux_sym_cmd_identifier_token17] = ACTIONS(1804), - [aux_sym_cmd_identifier_token18] = ACTIONS(1804), - [aux_sym_cmd_identifier_token19] = ACTIONS(1804), - [aux_sym_cmd_identifier_token20] = ACTIONS(1804), - [aux_sym_cmd_identifier_token21] = ACTIONS(1804), - [aux_sym_cmd_identifier_token22] = ACTIONS(1804), - [aux_sym_cmd_identifier_token23] = ACTIONS(1804), - [aux_sym_cmd_identifier_token24] = ACTIONS(1804), - [aux_sym_cmd_identifier_token25] = ACTIONS(1804), - [aux_sym_cmd_identifier_token26] = ACTIONS(1804), - [aux_sym_cmd_identifier_token27] = ACTIONS(1804), - [aux_sym_cmd_identifier_token28] = ACTIONS(1804), - [aux_sym_cmd_identifier_token29] = ACTIONS(1804), - [aux_sym_cmd_identifier_token30] = ACTIONS(1804), - [aux_sym_cmd_identifier_token31] = ACTIONS(1804), - [aux_sym_cmd_identifier_token32] = ACTIONS(1804), - [aux_sym_cmd_identifier_token33] = ACTIONS(1804), - [aux_sym_cmd_identifier_token34] = ACTIONS(1804), - [aux_sym_cmd_identifier_token35] = ACTIONS(1804), - [aux_sym_cmd_identifier_token36] = ACTIONS(1804), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [anon_sym_null] = ACTIONS(1806), - [aux_sym_cmd_identifier_token38] = ACTIONS(1804), - [aux_sym_cmd_identifier_token39] = ACTIONS(1806), - [aux_sym_cmd_identifier_token40] = ACTIONS(1806), - [anon_sym_def] = ACTIONS(1804), - [anon_sym_export_DASHenv] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_module] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_DOLLAR] = ACTIONS(1806), - [anon_sym_error] = ACTIONS(1804), - [anon_sym_list] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_in] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_make] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_else] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_try] = ACTIONS(1804), - [anon_sym_catch] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_source] = ACTIONS(1804), - [anon_sym_source_DASHenv] = ACTIONS(1804), - [anon_sym_register] = ACTIONS(1804), - [anon_sym_hide] = ACTIONS(1804), - [anon_sym_hide_DASHenv] = ACTIONS(1804), - [anon_sym_overlay] = ACTIONS(1804), - [anon_sym_new] = ACTIONS(1804), - [anon_sym_as] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1806), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1806), - [aux_sym__val_number_decimal_token1] = ACTIONS(1804), - [aux_sym__val_number_decimal_token2] = ACTIONS(1806), - [anon_sym_DOT2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1806), - [aux_sym__val_number_token1] = ACTIONS(1806), - [aux_sym__val_number_token2] = ACTIONS(1806), - [aux_sym__val_number_token3] = ACTIONS(1806), - [anon_sym_DQUOTE] = ACTIONS(1806), - [sym__str_single_quotes] = ACTIONS(1806), - [sym__str_back_ticks] = ACTIONS(1806), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(3), + [369] = { + [sym_cmd_identifier] = STATE(4982), + [sym_ctrl_if] = STATE(5365), + [sym_block] = STATE(5387), + [sym__expression] = STATE(5387), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4065), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(2175), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3316), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_command] = STATE(5387), + [sym_comment] = STATE(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [anon_sym_null] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1921), + [aux_sym_cmd_identifier_token39] = ACTIONS(1923), + [aux_sym_cmd_identifier_token40] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_if] = ACTIONS(67), + [aux_sym_ctrl_match_token1] = ACTIONS(1925), + [anon_sym_DOT_DOT] = ACTIONS(73), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1929), + [aux_sym__val_number_decimal_token3] = ACTIONS(1931), + [aux_sym__val_number_decimal_token4] = ACTIONS(1933), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, - [378] = { + [370] = { [sym_cell_path] = STATE(650), - [sym_path] = STATE(572), - [sym_comment] = STATE(378), - [aux_sym_cell_path_repeat1] = STATE(458), + [sym_path] = STATE(532), + [sym_comment] = STATE(370), + [aux_sym_cell_path_repeat1] = STATE(424), [anon_sym_export] = ACTIONS(1808), [anon_sym_alias] = ACTIONS(1808), [anon_sym_let] = ACTIONS(1808), @@ -116412,14 +120833,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1808), [anon_sym_new] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1808), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1842), + [anon_sym_DOT] = ACTIONS(1903), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1810), [aux_sym__val_number_decimal_token1] = ACTIONS(1808), [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [anon_sym_DOT2] = ACTIONS(1808), [aux_sym__val_number_decimal_token3] = ACTIONS(1810), + [aux_sym__val_number_decimal_token4] = ACTIONS(1810), [aux_sym__val_number_token1] = ACTIONS(1810), [aux_sym__val_number_token2] = ACTIONS(1810), [aux_sym__val_number_token3] = ACTIONS(1810), @@ -116427,322 +120847,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1810), [sym__str_back_ticks] = ACTIONS(1810), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(3), - }, - [379] = { - [sym_cell_path] = STATE(651), - [sym_path] = STATE(572), - [sym_comment] = STATE(379), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1812), - [anon_sym_alias] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_let_DASHenv] = ACTIONS(1812), - [anon_sym_mut] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [aux_sym_cmd_identifier_token1] = ACTIONS(1812), - [aux_sym_cmd_identifier_token2] = ACTIONS(1812), - [aux_sym_cmd_identifier_token3] = ACTIONS(1812), - [aux_sym_cmd_identifier_token4] = ACTIONS(1812), - [aux_sym_cmd_identifier_token5] = ACTIONS(1812), - [aux_sym_cmd_identifier_token6] = ACTIONS(1812), - [aux_sym_cmd_identifier_token7] = ACTIONS(1812), - [aux_sym_cmd_identifier_token8] = ACTIONS(1812), - [aux_sym_cmd_identifier_token9] = ACTIONS(1812), - [aux_sym_cmd_identifier_token10] = ACTIONS(1812), - [aux_sym_cmd_identifier_token11] = ACTIONS(1812), - [aux_sym_cmd_identifier_token12] = ACTIONS(1812), - [aux_sym_cmd_identifier_token13] = ACTIONS(1812), - [aux_sym_cmd_identifier_token14] = ACTIONS(1812), - [aux_sym_cmd_identifier_token15] = ACTIONS(1812), - [aux_sym_cmd_identifier_token16] = ACTIONS(1812), - [aux_sym_cmd_identifier_token17] = ACTIONS(1812), - [aux_sym_cmd_identifier_token18] = ACTIONS(1812), - [aux_sym_cmd_identifier_token19] = ACTIONS(1812), - [aux_sym_cmd_identifier_token20] = ACTIONS(1812), - [aux_sym_cmd_identifier_token21] = ACTIONS(1812), - [aux_sym_cmd_identifier_token22] = ACTIONS(1812), - [aux_sym_cmd_identifier_token23] = ACTIONS(1812), - [aux_sym_cmd_identifier_token24] = ACTIONS(1812), - [aux_sym_cmd_identifier_token25] = ACTIONS(1812), - [aux_sym_cmd_identifier_token26] = ACTIONS(1812), - [aux_sym_cmd_identifier_token27] = ACTIONS(1812), - [aux_sym_cmd_identifier_token28] = ACTIONS(1812), - [aux_sym_cmd_identifier_token29] = ACTIONS(1812), - [aux_sym_cmd_identifier_token30] = ACTIONS(1812), - [aux_sym_cmd_identifier_token31] = ACTIONS(1812), - [aux_sym_cmd_identifier_token32] = ACTIONS(1812), - [aux_sym_cmd_identifier_token33] = ACTIONS(1812), - [aux_sym_cmd_identifier_token34] = ACTIONS(1812), - [aux_sym_cmd_identifier_token35] = ACTIONS(1812), - [aux_sym_cmd_identifier_token36] = ACTIONS(1812), - [anon_sym_true] = ACTIONS(1814), - [anon_sym_false] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1814), - [aux_sym_cmd_identifier_token38] = ACTIONS(1812), - [aux_sym_cmd_identifier_token39] = ACTIONS(1814), - [aux_sym_cmd_identifier_token40] = ACTIONS(1814), - [anon_sym_def] = ACTIONS(1812), - [anon_sym_export_DASHenv] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_module] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_DOLLAR] = ACTIONS(1814), - [anon_sym_error] = ACTIONS(1812), - [anon_sym_list] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_in] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_make] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_do] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_else] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_try] = ACTIONS(1812), - [anon_sym_catch] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_source] = ACTIONS(1812), - [anon_sym_source_DASHenv] = ACTIONS(1812), - [anon_sym_register] = ACTIONS(1812), - [anon_sym_hide] = ACTIONS(1812), - [anon_sym_hide_DASHenv] = ACTIONS(1812), - [anon_sym_overlay] = ACTIONS(1812), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_as] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1814), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1814), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = ACTIONS(1814), - [anon_sym_DOT2] = ACTIONS(1812), - [aux_sym__val_number_decimal_token3] = ACTIONS(1814), - [aux_sym__val_number_token1] = ACTIONS(1814), - [aux_sym__val_number_token2] = ACTIONS(1814), - [aux_sym__val_number_token3] = ACTIONS(1814), - [anon_sym_DQUOTE] = ACTIONS(1814), - [sym__str_single_quotes] = ACTIONS(1814), - [sym__str_back_ticks] = ACTIONS(1814), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(3), - }, - [380] = { - [sym_comment] = STATE(380), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_alias] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_let_DASHenv] = ACTIONS(1909), - [anon_sym_mut] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [aux_sym_cmd_identifier_token1] = ACTIONS(1909), - [aux_sym_cmd_identifier_token2] = ACTIONS(1909), - [aux_sym_cmd_identifier_token3] = ACTIONS(1909), - [aux_sym_cmd_identifier_token4] = ACTIONS(1909), - [aux_sym_cmd_identifier_token5] = ACTIONS(1909), - [aux_sym_cmd_identifier_token6] = ACTIONS(1909), - [aux_sym_cmd_identifier_token7] = ACTIONS(1909), - [aux_sym_cmd_identifier_token8] = ACTIONS(1909), - [aux_sym_cmd_identifier_token9] = ACTIONS(1909), - [aux_sym_cmd_identifier_token10] = ACTIONS(1909), - [aux_sym_cmd_identifier_token11] = ACTIONS(1909), - [aux_sym_cmd_identifier_token12] = ACTIONS(1909), - [aux_sym_cmd_identifier_token13] = ACTIONS(1909), - [aux_sym_cmd_identifier_token14] = ACTIONS(1909), - [aux_sym_cmd_identifier_token15] = ACTIONS(1909), - [aux_sym_cmd_identifier_token16] = ACTIONS(1909), - [aux_sym_cmd_identifier_token17] = ACTIONS(1909), - [aux_sym_cmd_identifier_token18] = ACTIONS(1909), - [aux_sym_cmd_identifier_token19] = ACTIONS(1909), - [aux_sym_cmd_identifier_token20] = ACTIONS(1909), - [aux_sym_cmd_identifier_token21] = ACTIONS(1909), - [aux_sym_cmd_identifier_token22] = ACTIONS(1909), - [aux_sym_cmd_identifier_token23] = ACTIONS(1909), - [aux_sym_cmd_identifier_token24] = ACTIONS(1911), - [aux_sym_cmd_identifier_token25] = ACTIONS(1909), - [aux_sym_cmd_identifier_token26] = ACTIONS(1911), - [aux_sym_cmd_identifier_token27] = ACTIONS(1909), - [aux_sym_cmd_identifier_token28] = ACTIONS(1909), - [aux_sym_cmd_identifier_token29] = ACTIONS(1909), - [aux_sym_cmd_identifier_token30] = ACTIONS(1909), - [aux_sym_cmd_identifier_token31] = ACTIONS(1911), - [aux_sym_cmd_identifier_token32] = ACTIONS(1911), - [aux_sym_cmd_identifier_token33] = ACTIONS(1911), - [aux_sym_cmd_identifier_token34] = ACTIONS(1911), - [aux_sym_cmd_identifier_token35] = ACTIONS(1911), - [aux_sym_cmd_identifier_token36] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1909), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_def] = ACTIONS(1909), - [anon_sym_export_DASHenv] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_error] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [aux_sym_ctrl_match_token1] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_source] = ACTIONS(1909), - [anon_sym_source_DASHenv] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_hide] = ACTIONS(1909), - [anon_sym_hide_DASHenv] = ACTIONS(1909), - [anon_sym_overlay] = ACTIONS(1909), - [anon_sym_where] = ACTIONS(1911), - [aux_sym_expr_unary_token1] = ACTIONS(1911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), - [anon_sym_DOT_DOT_LT] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [anon_sym_DOT2] = ACTIONS(1909), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [anon_sym_0b] = ACTIONS(1909), - [anon_sym_0o] = ACTIONS(1909), - [anon_sym_0x] = ACTIONS(1909), - [sym_val_date] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_POUND] = ACTIONS(247), }, - [381] = { - [sym_comment] = STATE(381), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1535), - [aux_sym_cmd_identifier_token40] = ACTIONS(1535), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1535), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1535), - [aux_sym__val_number_token1] = ACTIONS(1535), - [aux_sym__val_number_token2] = ACTIONS(1535), - [aux_sym__val_number_token3] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym__str_single_quotes] = ACTIONS(1535), - [sym__str_back_ticks] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1535), - [sym__entry_separator] = ACTIONS(1537), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(121), + [371] = { + [sym_comment] = STATE(371), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(962), + [anon_sym_list] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_new] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [aux_sym_record_entry_token1] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), }, - [382] = { - [sym_cell_path] = STATE(653), - [sym_path] = STATE(572), - [sym_comment] = STATE(382), - [aux_sym_cell_path_repeat1] = STATE(458), + [372] = { + [sym_cell_path] = STATE(651), + [sym_path] = STATE(532), + [sym_comment] = STATE(372), + [aux_sym_cell_path_repeat1] = STATE(424), [anon_sym_export] = ACTIONS(1820), [anon_sym_alias] = ACTIONS(1820), [anon_sym_let] = ACTIONS(1820), @@ -116824,14 +121039,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1820), [anon_sym_new] = ACTIONS(1820), [anon_sym_as] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1822), - [anon_sym_DOT] = ACTIONS(1842), + [anon_sym_DOT] = ACTIONS(1903), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1822), [aux_sym__val_number_decimal_token1] = ACTIONS(1820), [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [anon_sym_DOT2] = ACTIONS(1820), [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), [aux_sym__val_number_token1] = ACTIONS(1822), [aux_sym__val_number_token2] = ACTIONS(1822), [aux_sym__val_number_token3] = ACTIONS(1822), @@ -116839,14771 +121053,16708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1822), [sym__str_back_ticks] = ACTIONS(1822), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(247), + }, + [373] = { + [sym_comment] = STATE(373), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_alias] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_let_DASHenv] = ACTIONS(1935), + [anon_sym_mut] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [aux_sym_cmd_identifier_token1] = ACTIONS(1935), + [aux_sym_cmd_identifier_token2] = ACTIONS(1935), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [aux_sym_cmd_identifier_token6] = ACTIONS(1935), + [aux_sym_cmd_identifier_token7] = ACTIONS(1935), + [aux_sym_cmd_identifier_token8] = ACTIONS(1935), + [aux_sym_cmd_identifier_token9] = ACTIONS(1935), + [aux_sym_cmd_identifier_token10] = ACTIONS(1935), + [aux_sym_cmd_identifier_token11] = ACTIONS(1935), + [aux_sym_cmd_identifier_token12] = ACTIONS(1935), + [aux_sym_cmd_identifier_token13] = ACTIONS(1935), + [aux_sym_cmd_identifier_token14] = ACTIONS(1935), + [aux_sym_cmd_identifier_token15] = ACTIONS(1935), + [aux_sym_cmd_identifier_token16] = ACTIONS(1935), + [aux_sym_cmd_identifier_token17] = ACTIONS(1935), + [aux_sym_cmd_identifier_token18] = ACTIONS(1935), + [aux_sym_cmd_identifier_token19] = ACTIONS(1935), + [aux_sym_cmd_identifier_token20] = ACTIONS(1935), + [aux_sym_cmd_identifier_token21] = ACTIONS(1935), + [aux_sym_cmd_identifier_token22] = ACTIONS(1935), + [aux_sym_cmd_identifier_token23] = ACTIONS(1935), + [aux_sym_cmd_identifier_token24] = ACTIONS(1935), + [aux_sym_cmd_identifier_token25] = ACTIONS(1935), + [aux_sym_cmd_identifier_token26] = ACTIONS(1935), + [aux_sym_cmd_identifier_token27] = ACTIONS(1935), + [aux_sym_cmd_identifier_token28] = ACTIONS(1935), + [aux_sym_cmd_identifier_token29] = ACTIONS(1935), + [aux_sym_cmd_identifier_token30] = ACTIONS(1935), + [aux_sym_cmd_identifier_token31] = ACTIONS(1935), + [aux_sym_cmd_identifier_token32] = ACTIONS(1935), + [aux_sym_cmd_identifier_token33] = ACTIONS(1935), + [aux_sym_cmd_identifier_token34] = ACTIONS(1935), + [aux_sym_cmd_identifier_token35] = ACTIONS(1935), + [aux_sym_cmd_identifier_token36] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1935), + [anon_sym_false] = ACTIONS(1935), + [anon_sym_null] = ACTIONS(1935), + [aux_sym_cmd_identifier_token38] = ACTIONS(1935), + [aux_sym_cmd_identifier_token39] = ACTIONS(1935), + [aux_sym_cmd_identifier_token40] = ACTIONS(1935), + [anon_sym_def] = ACTIONS(1935), + [anon_sym_export_DASHenv] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_use] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_error] = ACTIONS(1935), + [anon_sym_list] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_in] = ACTIONS(1935), + [anon_sym_loop] = ACTIONS(1935), + [anon_sym_make] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_source] = ACTIONS(1935), + [anon_sym_source_DASHenv] = ACTIONS(1935), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_hide] = ACTIONS(1935), + [anon_sym_hide_DASHenv] = ACTIONS(1935), + [anon_sym_overlay] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), + [anon_sym_DOT_DOT2] = ACTIONS(1937), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1939), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1935), + [aux_sym__val_number_decimal_token3] = ACTIONS(1935), + [aux_sym__val_number_decimal_token4] = ACTIONS(1935), + [aux_sym__val_number_token1] = ACTIONS(1935), + [aux_sym__val_number_token2] = ACTIONS(1935), + [aux_sym__val_number_token3] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1935), + [sym__str_single_quotes] = ACTIONS(1935), + [sym__str_back_ticks] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), + [sym__entry_separator] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(3), + }, + [374] = { + [sym_cell_path] = STATE(596), + [sym_path] = STATE(532), + [sym_comment] = STATE(374), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_alias] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_let_DASHenv] = ACTIONS(1782), + [anon_sym_mut] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [aux_sym_cmd_identifier_token1] = ACTIONS(1782), + [aux_sym_cmd_identifier_token2] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1782), + [aux_sym_cmd_identifier_token4] = ACTIONS(1782), + [aux_sym_cmd_identifier_token5] = ACTIONS(1782), + [aux_sym_cmd_identifier_token6] = ACTIONS(1782), + [aux_sym_cmd_identifier_token7] = ACTIONS(1782), + [aux_sym_cmd_identifier_token8] = ACTIONS(1782), + [aux_sym_cmd_identifier_token9] = ACTIONS(1782), + [aux_sym_cmd_identifier_token10] = ACTIONS(1782), + [aux_sym_cmd_identifier_token11] = ACTIONS(1782), + [aux_sym_cmd_identifier_token12] = ACTIONS(1782), + [aux_sym_cmd_identifier_token13] = ACTIONS(1782), + [aux_sym_cmd_identifier_token14] = ACTIONS(1782), + [aux_sym_cmd_identifier_token15] = ACTIONS(1782), + [aux_sym_cmd_identifier_token16] = ACTIONS(1782), + [aux_sym_cmd_identifier_token17] = ACTIONS(1782), + [aux_sym_cmd_identifier_token18] = ACTIONS(1782), + [aux_sym_cmd_identifier_token19] = ACTIONS(1782), + [aux_sym_cmd_identifier_token20] = ACTIONS(1782), + [aux_sym_cmd_identifier_token21] = ACTIONS(1782), + [aux_sym_cmd_identifier_token22] = ACTIONS(1782), + [aux_sym_cmd_identifier_token23] = ACTIONS(1782), + [aux_sym_cmd_identifier_token24] = ACTIONS(1782), + [aux_sym_cmd_identifier_token25] = ACTIONS(1782), + [aux_sym_cmd_identifier_token26] = ACTIONS(1782), + [aux_sym_cmd_identifier_token27] = ACTIONS(1782), + [aux_sym_cmd_identifier_token28] = ACTIONS(1782), + [aux_sym_cmd_identifier_token29] = ACTIONS(1782), + [aux_sym_cmd_identifier_token30] = ACTIONS(1782), + [aux_sym_cmd_identifier_token31] = ACTIONS(1782), + [aux_sym_cmd_identifier_token32] = ACTIONS(1782), + [aux_sym_cmd_identifier_token33] = ACTIONS(1782), + [aux_sym_cmd_identifier_token34] = ACTIONS(1782), + [aux_sym_cmd_identifier_token35] = ACTIONS(1782), + [aux_sym_cmd_identifier_token36] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [anon_sym_null] = ACTIONS(1784), + [aux_sym_cmd_identifier_token38] = ACTIONS(1782), + [aux_sym_cmd_identifier_token39] = ACTIONS(1784), + [aux_sym_cmd_identifier_token40] = ACTIONS(1784), + [anon_sym_def] = ACTIONS(1782), + [anon_sym_export_DASHenv] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_error] = ACTIONS(1782), + [anon_sym_list] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_make] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_catch] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_source] = ACTIONS(1782), + [anon_sym_source_DASHenv] = ACTIONS(1782), + [anon_sym_register] = ACTIONS(1782), + [anon_sym_hide] = ACTIONS(1782), + [anon_sym_hide_DASHenv] = ACTIONS(1782), + [anon_sym_overlay] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1784), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(1784), + [aux_sym__val_number_token2] = ACTIONS(1784), + [aux_sym__val_number_token3] = ACTIONS(1784), + [anon_sym_DQUOTE] = ACTIONS(1784), + [sym__str_single_quotes] = ACTIONS(1784), + [sym__str_back_ticks] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(247), + }, + [375] = { + [sym_cell_path] = STATE(653), + [sym_path] = STATE(532), + [sym_comment] = STATE(375), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1741), + [anon_sym_alias] = ACTIONS(1741), + [anon_sym_let] = ACTIONS(1741), + [anon_sym_let_DASHenv] = ACTIONS(1741), + [anon_sym_mut] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1741), + [aux_sym_cmd_identifier_token1] = ACTIONS(1741), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1741), + [aux_sym_cmd_identifier_token9] = ACTIONS(1741), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1741), + [aux_sym_cmd_identifier_token13] = ACTIONS(1741), + [aux_sym_cmd_identifier_token14] = ACTIONS(1741), + [aux_sym_cmd_identifier_token15] = ACTIONS(1741), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1741), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1745), + [anon_sym_false] = ACTIONS(1745), + [anon_sym_null] = ACTIONS(1745), + [aux_sym_cmd_identifier_token38] = ACTIONS(1741), + [aux_sym_cmd_identifier_token39] = ACTIONS(1745), + [aux_sym_cmd_identifier_token40] = ACTIONS(1745), + [anon_sym_def] = ACTIONS(1741), + [anon_sym_export_DASHenv] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1741), + [anon_sym_module] = ACTIONS(1741), + [anon_sym_use] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_DOLLAR] = ACTIONS(1745), + [anon_sym_error] = ACTIONS(1741), + [anon_sym_list] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1741), + [anon_sym_continue] = ACTIONS(1741), + [anon_sym_for] = ACTIONS(1741), + [anon_sym_in] = ACTIONS(1741), + [anon_sym_loop] = ACTIONS(1741), + [anon_sym_make] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_do] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1741), + [anon_sym_else] = ACTIONS(1741), + [anon_sym_match] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_try] = ACTIONS(1741), + [anon_sym_catch] = ACTIONS(1741), + [anon_sym_return] = ACTIONS(1741), + [anon_sym_source] = ACTIONS(1741), + [anon_sym_source_DASHenv] = ACTIONS(1741), + [anon_sym_register] = ACTIONS(1741), + [anon_sym_hide] = ACTIONS(1741), + [anon_sym_hide_DASHenv] = ACTIONS(1741), + [anon_sym_overlay] = ACTIONS(1741), + [anon_sym_new] = ACTIONS(1741), + [anon_sym_as] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1745), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1745), + [aux_sym__val_number_decimal_token1] = ACTIONS(1741), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1745), + [aux_sym__val_number_decimal_token4] = ACTIONS(1745), + [aux_sym__val_number_token1] = ACTIONS(1745), + [aux_sym__val_number_token2] = ACTIONS(1745), + [aux_sym__val_number_token3] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym__str_single_quotes] = ACTIONS(1745), + [sym__str_back_ticks] = ACTIONS(1745), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), + }, + [376] = { + [sym_cell_path] = STATE(656), + [sym_path] = STATE(532), + [sym_comment] = STATE(376), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1899), + [anon_sym_alias] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_let_DASHenv] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [aux_sym_cmd_identifier_token1] = ACTIONS(1899), + [aux_sym_cmd_identifier_token2] = ACTIONS(1899), + [aux_sym_cmd_identifier_token3] = ACTIONS(1899), + [aux_sym_cmd_identifier_token4] = ACTIONS(1899), + [aux_sym_cmd_identifier_token5] = ACTIONS(1899), + [aux_sym_cmd_identifier_token6] = ACTIONS(1899), + [aux_sym_cmd_identifier_token7] = ACTIONS(1899), + [aux_sym_cmd_identifier_token8] = ACTIONS(1899), + [aux_sym_cmd_identifier_token9] = ACTIONS(1899), + [aux_sym_cmd_identifier_token10] = ACTIONS(1899), + [aux_sym_cmd_identifier_token11] = ACTIONS(1899), + [aux_sym_cmd_identifier_token12] = ACTIONS(1899), + [aux_sym_cmd_identifier_token13] = ACTIONS(1899), + [aux_sym_cmd_identifier_token14] = ACTIONS(1899), + [aux_sym_cmd_identifier_token15] = ACTIONS(1899), + [aux_sym_cmd_identifier_token16] = ACTIONS(1899), + [aux_sym_cmd_identifier_token17] = ACTIONS(1899), + [aux_sym_cmd_identifier_token18] = ACTIONS(1899), + [aux_sym_cmd_identifier_token19] = ACTIONS(1899), + [aux_sym_cmd_identifier_token20] = ACTIONS(1899), + [aux_sym_cmd_identifier_token21] = ACTIONS(1899), + [aux_sym_cmd_identifier_token22] = ACTIONS(1899), + [aux_sym_cmd_identifier_token23] = ACTIONS(1899), + [aux_sym_cmd_identifier_token24] = ACTIONS(1899), + [aux_sym_cmd_identifier_token25] = ACTIONS(1899), + [aux_sym_cmd_identifier_token26] = ACTIONS(1899), + [aux_sym_cmd_identifier_token27] = ACTIONS(1899), + [aux_sym_cmd_identifier_token28] = ACTIONS(1899), + [aux_sym_cmd_identifier_token29] = ACTIONS(1899), + [aux_sym_cmd_identifier_token30] = ACTIONS(1899), + [aux_sym_cmd_identifier_token31] = ACTIONS(1899), + [aux_sym_cmd_identifier_token32] = ACTIONS(1899), + [aux_sym_cmd_identifier_token33] = ACTIONS(1899), + [aux_sym_cmd_identifier_token34] = ACTIONS(1899), + [aux_sym_cmd_identifier_token35] = ACTIONS(1899), + [aux_sym_cmd_identifier_token36] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1899), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_export_DASHenv] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_module] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_error] = ACTIONS(1899), + [anon_sym_list] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_make] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_source] = ACTIONS(1899), + [anon_sym_source_DASHenv] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_hide] = ACTIONS(1899), + [anon_sym_hide_DASHenv] = ACTIONS(1899), + [anon_sym_overlay] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(247), + }, + [377] = { + [sym_comment] = STATE(377), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), + }, + [378] = { + [sym_comment] = STATE(378), + [anon_sym_export] = ACTIONS(1943), + [anon_sym_alias] = ACTIONS(1943), + [anon_sym_let] = ACTIONS(1943), + [anon_sym_let_DASHenv] = ACTIONS(1943), + [anon_sym_mut] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [aux_sym_cmd_identifier_token1] = ACTIONS(1943), + [aux_sym_cmd_identifier_token2] = ACTIONS(1943), + [aux_sym_cmd_identifier_token3] = ACTIONS(1943), + [aux_sym_cmd_identifier_token4] = ACTIONS(1943), + [aux_sym_cmd_identifier_token5] = ACTIONS(1943), + [aux_sym_cmd_identifier_token6] = ACTIONS(1943), + [aux_sym_cmd_identifier_token7] = ACTIONS(1943), + [aux_sym_cmd_identifier_token8] = ACTIONS(1943), + [aux_sym_cmd_identifier_token9] = ACTIONS(1943), + [aux_sym_cmd_identifier_token10] = ACTIONS(1943), + [aux_sym_cmd_identifier_token11] = ACTIONS(1943), + [aux_sym_cmd_identifier_token12] = ACTIONS(1943), + [aux_sym_cmd_identifier_token13] = ACTIONS(1943), + [aux_sym_cmd_identifier_token14] = ACTIONS(1943), + [aux_sym_cmd_identifier_token15] = ACTIONS(1943), + [aux_sym_cmd_identifier_token16] = ACTIONS(1943), + [aux_sym_cmd_identifier_token17] = ACTIONS(1943), + [aux_sym_cmd_identifier_token18] = ACTIONS(1943), + [aux_sym_cmd_identifier_token19] = ACTIONS(1943), + [aux_sym_cmd_identifier_token20] = ACTIONS(1943), + [aux_sym_cmd_identifier_token21] = ACTIONS(1943), + [aux_sym_cmd_identifier_token22] = ACTIONS(1943), + [aux_sym_cmd_identifier_token23] = ACTIONS(1943), + [aux_sym_cmd_identifier_token24] = ACTIONS(1943), + [aux_sym_cmd_identifier_token25] = ACTIONS(1943), + [aux_sym_cmd_identifier_token26] = ACTIONS(1943), + [aux_sym_cmd_identifier_token27] = ACTIONS(1943), + [aux_sym_cmd_identifier_token28] = ACTIONS(1943), + [aux_sym_cmd_identifier_token29] = ACTIONS(1943), + [aux_sym_cmd_identifier_token30] = ACTIONS(1943), + [aux_sym_cmd_identifier_token31] = ACTIONS(1943), + [aux_sym_cmd_identifier_token32] = ACTIONS(1943), + [aux_sym_cmd_identifier_token33] = ACTIONS(1943), + [aux_sym_cmd_identifier_token34] = ACTIONS(1943), + [aux_sym_cmd_identifier_token35] = ACTIONS(1943), + [aux_sym_cmd_identifier_token36] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1943), + [anon_sym_false] = ACTIONS(1943), + [anon_sym_null] = ACTIONS(1943), + [aux_sym_cmd_identifier_token38] = ACTIONS(1943), + [aux_sym_cmd_identifier_token39] = ACTIONS(1943), + [aux_sym_cmd_identifier_token40] = ACTIONS(1943), + [anon_sym_def] = ACTIONS(1943), + [anon_sym_export_DASHenv] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym_module] = ACTIONS(1943), + [anon_sym_use] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_DOLLAR] = ACTIONS(1943), + [anon_sym_error] = ACTIONS(1943), + [anon_sym_list] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(1943), + [anon_sym_loop] = ACTIONS(1943), + [anon_sym_make] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_else] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_source] = ACTIONS(1943), + [anon_sym_source_DASHenv] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_hide] = ACTIONS(1943), + [anon_sym_hide_DASHenv] = ACTIONS(1943), + [anon_sym_overlay] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_as] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), + [anon_sym_DOT_DOT2] = ACTIONS(1943), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1945), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1943), + [aux_sym__val_number_decimal_token3] = ACTIONS(1943), + [aux_sym__val_number_decimal_token4] = ACTIONS(1943), + [aux_sym__val_number_token1] = ACTIONS(1943), + [aux_sym__val_number_token2] = ACTIONS(1943), + [aux_sym__val_number_token3] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym__str_single_quotes] = ACTIONS(1943), + [sym__str_back_ticks] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), + [sym__entry_separator] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(3), + }, + [379] = { + [sym_comment] = STATE(379), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), + }, + [380] = { + [sym_comment] = STATE(380), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1949), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1949), + [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_list] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), + [anon_sym_DOT_DOT2] = ACTIONS(1907), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1909), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1949), + [aux_sym__val_number_decimal_token3] = ACTIONS(1949), + [aux_sym__val_number_decimal_token4] = ACTIONS(1949), + [aux_sym__val_number_token1] = ACTIONS(1949), + [aux_sym__val_number_token2] = ACTIONS(1949), + [aux_sym__val_number_token3] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym__str_single_quotes] = ACTIONS(1949), + [sym__str_back_ticks] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), + [sym__entry_separator] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1949), [anon_sym_POUND] = ACTIONS(3), }, + [381] = { + [sym_comment] = STATE(381), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_alias] = ACTIONS(1273), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_let_DASHenv] = ACTIONS(1273), + [anon_sym_mut] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1273), + [aux_sym_cmd_identifier_token2] = ACTIONS(1273), + [aux_sym_cmd_identifier_token3] = ACTIONS(1273), + [aux_sym_cmd_identifier_token4] = ACTIONS(1273), + [aux_sym_cmd_identifier_token5] = ACTIONS(1273), + [aux_sym_cmd_identifier_token6] = ACTIONS(1273), + [aux_sym_cmd_identifier_token7] = ACTIONS(1273), + [aux_sym_cmd_identifier_token8] = ACTIONS(1273), + [aux_sym_cmd_identifier_token9] = ACTIONS(1273), + [aux_sym_cmd_identifier_token10] = ACTIONS(1273), + [aux_sym_cmd_identifier_token11] = ACTIONS(1273), + [aux_sym_cmd_identifier_token12] = ACTIONS(1273), + [aux_sym_cmd_identifier_token13] = ACTIONS(1273), + [aux_sym_cmd_identifier_token14] = ACTIONS(1273), + [aux_sym_cmd_identifier_token15] = ACTIONS(1273), + [aux_sym_cmd_identifier_token16] = ACTIONS(1273), + [aux_sym_cmd_identifier_token17] = ACTIONS(1273), + [aux_sym_cmd_identifier_token18] = ACTIONS(1273), + [aux_sym_cmd_identifier_token19] = ACTIONS(1273), + [aux_sym_cmd_identifier_token20] = ACTIONS(1273), + [aux_sym_cmd_identifier_token21] = ACTIONS(1273), + [aux_sym_cmd_identifier_token22] = ACTIONS(1273), + [aux_sym_cmd_identifier_token23] = ACTIONS(1273), + [aux_sym_cmd_identifier_token24] = ACTIONS(1277), + [aux_sym_cmd_identifier_token25] = ACTIONS(1273), + [aux_sym_cmd_identifier_token26] = ACTIONS(1277), + [aux_sym_cmd_identifier_token27] = ACTIONS(1273), + [aux_sym_cmd_identifier_token28] = ACTIONS(1273), + [aux_sym_cmd_identifier_token29] = ACTIONS(1273), + [aux_sym_cmd_identifier_token30] = ACTIONS(1273), + [aux_sym_cmd_identifier_token31] = ACTIONS(1277), + [aux_sym_cmd_identifier_token32] = ACTIONS(1277), + [aux_sym_cmd_identifier_token33] = ACTIONS(1277), + [aux_sym_cmd_identifier_token34] = ACTIONS(1277), + [aux_sym_cmd_identifier_token35] = ACTIONS(1277), + [aux_sym_cmd_identifier_token36] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_null] = ACTIONS(1277), + [aux_sym_cmd_identifier_token38] = ACTIONS(1273), + [aux_sym_cmd_identifier_token39] = ACTIONS(1277), + [aux_sym_cmd_identifier_token40] = ACTIONS(1277), + [sym__newline] = ACTIONS(1277), + [anon_sym_def] = ACTIONS(1273), + [anon_sym_export_DASHenv] = ACTIONS(1273), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_use] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(1273), + [anon_sym_error] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_loop] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_match] = ACTIONS(1273), + [aux_sym_ctrl_match_token1] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_try] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_source] = ACTIONS(1273), + [anon_sym_source_DASHenv] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_hide] = ACTIONS(1273), + [anon_sym_hide_DASHenv] = ACTIONS(1273), + [anon_sym_overlay] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(1277), + [aux_sym_expr_unary_token1] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_DOT_DOT_LT] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1273), + [aux_sym__val_number_decimal_token2] = ACTIONS(1277), + [aux_sym__val_number_decimal_token3] = ACTIONS(1277), + [aux_sym__val_number_decimal_token4] = ACTIONS(1277), + [aux_sym__val_number_token1] = ACTIONS(1277), + [aux_sym__val_number_token2] = ACTIONS(1277), + [aux_sym__val_number_token3] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1273), + [anon_sym_0o] = ACTIONS(1273), + [anon_sym_0x] = ACTIONS(1273), + [sym_val_date] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym__str_single_quotes] = ACTIONS(1277), + [sym__str_back_ticks] = ACTIONS(1277), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1277), + [aux_sym_env_var_token1] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(247), + }, + [382] = { + [sym_cell_path] = STATE(661), + [sym_path] = STATE(532), + [sym_comment] = STATE(382), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1831), + [anon_sym_alias] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_let_DASHenv] = ACTIONS(1831), + [anon_sym_mut] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [aux_sym_cmd_identifier_token1] = ACTIONS(1831), + [aux_sym_cmd_identifier_token2] = ACTIONS(1831), + [aux_sym_cmd_identifier_token3] = ACTIONS(1831), + [aux_sym_cmd_identifier_token4] = ACTIONS(1831), + [aux_sym_cmd_identifier_token5] = ACTIONS(1831), + [aux_sym_cmd_identifier_token6] = ACTIONS(1831), + [aux_sym_cmd_identifier_token7] = ACTIONS(1831), + [aux_sym_cmd_identifier_token8] = ACTIONS(1831), + [aux_sym_cmd_identifier_token9] = ACTIONS(1831), + [aux_sym_cmd_identifier_token10] = ACTIONS(1831), + [aux_sym_cmd_identifier_token11] = ACTIONS(1831), + [aux_sym_cmd_identifier_token12] = ACTIONS(1831), + [aux_sym_cmd_identifier_token13] = ACTIONS(1831), + [aux_sym_cmd_identifier_token14] = ACTIONS(1831), + [aux_sym_cmd_identifier_token15] = ACTIONS(1831), + [aux_sym_cmd_identifier_token16] = ACTIONS(1831), + [aux_sym_cmd_identifier_token17] = ACTIONS(1831), + [aux_sym_cmd_identifier_token18] = ACTIONS(1831), + [aux_sym_cmd_identifier_token19] = ACTIONS(1831), + [aux_sym_cmd_identifier_token20] = ACTIONS(1831), + [aux_sym_cmd_identifier_token21] = ACTIONS(1831), + [aux_sym_cmd_identifier_token22] = ACTIONS(1831), + [aux_sym_cmd_identifier_token23] = ACTIONS(1831), + [aux_sym_cmd_identifier_token24] = ACTIONS(1831), + [aux_sym_cmd_identifier_token25] = ACTIONS(1831), + [aux_sym_cmd_identifier_token26] = ACTIONS(1831), + [aux_sym_cmd_identifier_token27] = ACTIONS(1831), + [aux_sym_cmd_identifier_token28] = ACTIONS(1831), + [aux_sym_cmd_identifier_token29] = ACTIONS(1831), + [aux_sym_cmd_identifier_token30] = ACTIONS(1831), + [aux_sym_cmd_identifier_token31] = ACTIONS(1831), + [aux_sym_cmd_identifier_token32] = ACTIONS(1831), + [aux_sym_cmd_identifier_token33] = ACTIONS(1831), + [aux_sym_cmd_identifier_token34] = ACTIONS(1831), + [aux_sym_cmd_identifier_token35] = ACTIONS(1831), + [aux_sym_cmd_identifier_token36] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1831), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [anon_sym_def] = ACTIONS(1831), + [anon_sym_export_DASHenv] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_module] = ACTIONS(1831), + [anon_sym_use] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_error] = ACTIONS(1831), + [anon_sym_list] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_in] = ACTIONS(1831), + [anon_sym_loop] = ACTIONS(1831), + [anon_sym_make] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_catch] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_source] = ACTIONS(1831), + [anon_sym_source_DASHenv] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1831), + [anon_sym_hide] = ACTIONS(1831), + [anon_sym_hide_DASHenv] = ACTIONS(1831), + [anon_sym_overlay] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_as] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1833), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1831), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1833), + [sym__str_single_quotes] = ACTIONS(1833), + [sym__str_back_ticks] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(247), + }, [383] = { + [sym_cell_path] = STATE(664), + [sym_path] = STATE(532), [sym_comment] = STATE(383), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1518), - [aux_sym__immediate_decimal_token2] = ACTIONS(1854), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_alias] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_let_DASHenv] = ACTIONS(1835), + [anon_sym_mut] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [aux_sym_cmd_identifier_token1] = ACTIONS(1835), + [aux_sym_cmd_identifier_token2] = ACTIONS(1835), + [aux_sym_cmd_identifier_token3] = ACTIONS(1835), + [aux_sym_cmd_identifier_token4] = ACTIONS(1835), + [aux_sym_cmd_identifier_token5] = ACTIONS(1835), + [aux_sym_cmd_identifier_token6] = ACTIONS(1835), + [aux_sym_cmd_identifier_token7] = ACTIONS(1835), + [aux_sym_cmd_identifier_token8] = ACTIONS(1835), + [aux_sym_cmd_identifier_token9] = ACTIONS(1835), + [aux_sym_cmd_identifier_token10] = ACTIONS(1835), + [aux_sym_cmd_identifier_token11] = ACTIONS(1835), + [aux_sym_cmd_identifier_token12] = ACTIONS(1835), + [aux_sym_cmd_identifier_token13] = ACTIONS(1835), + [aux_sym_cmd_identifier_token14] = ACTIONS(1835), + [aux_sym_cmd_identifier_token15] = ACTIONS(1835), + [aux_sym_cmd_identifier_token16] = ACTIONS(1835), + [aux_sym_cmd_identifier_token17] = ACTIONS(1835), + [aux_sym_cmd_identifier_token18] = ACTIONS(1835), + [aux_sym_cmd_identifier_token19] = ACTIONS(1835), + [aux_sym_cmd_identifier_token20] = ACTIONS(1835), + [aux_sym_cmd_identifier_token21] = ACTIONS(1835), + [aux_sym_cmd_identifier_token22] = ACTIONS(1835), + [aux_sym_cmd_identifier_token23] = ACTIONS(1835), + [aux_sym_cmd_identifier_token24] = ACTIONS(1835), + [aux_sym_cmd_identifier_token25] = ACTIONS(1835), + [aux_sym_cmd_identifier_token26] = ACTIONS(1835), + [aux_sym_cmd_identifier_token27] = ACTIONS(1835), + [aux_sym_cmd_identifier_token28] = ACTIONS(1835), + [aux_sym_cmd_identifier_token29] = ACTIONS(1835), + [aux_sym_cmd_identifier_token30] = ACTIONS(1835), + [aux_sym_cmd_identifier_token31] = ACTIONS(1835), + [aux_sym_cmd_identifier_token32] = ACTIONS(1835), + [aux_sym_cmd_identifier_token33] = ACTIONS(1835), + [aux_sym_cmd_identifier_token34] = ACTIONS(1835), + [aux_sym_cmd_identifier_token35] = ACTIONS(1835), + [aux_sym_cmd_identifier_token36] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_null] = ACTIONS(1837), + [aux_sym_cmd_identifier_token38] = ACTIONS(1835), + [aux_sym_cmd_identifier_token39] = ACTIONS(1837), + [aux_sym_cmd_identifier_token40] = ACTIONS(1837), + [anon_sym_def] = ACTIONS(1835), + [anon_sym_export_DASHenv] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1837), + [anon_sym_error] = ACTIONS(1835), + [anon_sym_list] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_in] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_make] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_catch] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_source] = ACTIONS(1835), + [anon_sym_source_DASHenv] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1835), + [anon_sym_hide] = ACTIONS(1835), + [anon_sym_hide_DASHenv] = ACTIONS(1835), + [anon_sym_overlay] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_as] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(247), }, [384] = { [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_alias] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_let_DASHenv] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [aux_sym_cmd_identifier_token1] = ACTIONS(1913), - [aux_sym_cmd_identifier_token2] = ACTIONS(1913), - [aux_sym_cmd_identifier_token3] = ACTIONS(1913), - [aux_sym_cmd_identifier_token4] = ACTIONS(1913), - [aux_sym_cmd_identifier_token5] = ACTIONS(1913), - [aux_sym_cmd_identifier_token6] = ACTIONS(1913), - [aux_sym_cmd_identifier_token7] = ACTIONS(1913), - [aux_sym_cmd_identifier_token8] = ACTIONS(1913), - [aux_sym_cmd_identifier_token9] = ACTIONS(1913), - [aux_sym_cmd_identifier_token10] = ACTIONS(1913), - [aux_sym_cmd_identifier_token11] = ACTIONS(1913), - [aux_sym_cmd_identifier_token12] = ACTIONS(1913), - [aux_sym_cmd_identifier_token13] = ACTIONS(1913), - [aux_sym_cmd_identifier_token14] = ACTIONS(1913), - [aux_sym_cmd_identifier_token15] = ACTIONS(1913), - [aux_sym_cmd_identifier_token16] = ACTIONS(1913), - [aux_sym_cmd_identifier_token17] = ACTIONS(1913), - [aux_sym_cmd_identifier_token18] = ACTIONS(1913), - [aux_sym_cmd_identifier_token19] = ACTIONS(1913), - [aux_sym_cmd_identifier_token20] = ACTIONS(1913), - [aux_sym_cmd_identifier_token21] = ACTIONS(1913), - [aux_sym_cmd_identifier_token22] = ACTIONS(1913), - [aux_sym_cmd_identifier_token23] = ACTIONS(1913), - [aux_sym_cmd_identifier_token24] = ACTIONS(1913), - [aux_sym_cmd_identifier_token25] = ACTIONS(1913), - [aux_sym_cmd_identifier_token26] = ACTIONS(1913), - [aux_sym_cmd_identifier_token27] = ACTIONS(1913), - [aux_sym_cmd_identifier_token28] = ACTIONS(1913), - [aux_sym_cmd_identifier_token29] = ACTIONS(1913), - [aux_sym_cmd_identifier_token30] = ACTIONS(1913), - [aux_sym_cmd_identifier_token31] = ACTIONS(1913), - [aux_sym_cmd_identifier_token32] = ACTIONS(1913), - [aux_sym_cmd_identifier_token33] = ACTIONS(1913), - [aux_sym_cmd_identifier_token34] = ACTIONS(1913), - [aux_sym_cmd_identifier_token35] = ACTIONS(1913), - [aux_sym_cmd_identifier_token36] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1913), - [anon_sym_false] = ACTIONS(1913), - [anon_sym_null] = ACTIONS(1913), - [aux_sym_cmd_identifier_token38] = ACTIONS(1913), - [aux_sym_cmd_identifier_token39] = ACTIONS(1913), - [aux_sym_cmd_identifier_token40] = ACTIONS(1913), - [anon_sym_def] = ACTIONS(1913), - [anon_sym_export_DASHenv] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_list] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_make] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_catch] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_source] = ACTIONS(1913), - [anon_sym_source_DASHenv] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_hide] = ACTIONS(1913), - [anon_sym_hide_DASHenv] = ACTIONS(1913), - [anon_sym_overlay] = ACTIONS(1913), - [anon_sym_new] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1913), - [anon_sym_DOT_DOT2] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1913), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1913), - [anon_sym_DOT2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1913), - [aux_sym__val_number_token1] = ACTIONS(1913), - [aux_sym__val_number_token2] = ACTIONS(1913), - [aux_sym__val_number_token3] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym__str_single_quotes] = ACTIONS(1913), - [sym__str_back_ticks] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1913), - [sym__entry_separator] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1953), + [anon_sym_alias] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_let_DASHenv] = ACTIONS(1953), + [anon_sym_mut] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [aux_sym_cmd_identifier_token1] = ACTIONS(1953), + [aux_sym_cmd_identifier_token2] = ACTIONS(1953), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [aux_sym_cmd_identifier_token6] = ACTIONS(1953), + [aux_sym_cmd_identifier_token7] = ACTIONS(1953), + [aux_sym_cmd_identifier_token8] = ACTIONS(1953), + [aux_sym_cmd_identifier_token9] = ACTIONS(1953), + [aux_sym_cmd_identifier_token10] = ACTIONS(1953), + [aux_sym_cmd_identifier_token11] = ACTIONS(1953), + [aux_sym_cmd_identifier_token12] = ACTIONS(1953), + [aux_sym_cmd_identifier_token13] = ACTIONS(1953), + [aux_sym_cmd_identifier_token14] = ACTIONS(1953), + [aux_sym_cmd_identifier_token15] = ACTIONS(1953), + [aux_sym_cmd_identifier_token16] = ACTIONS(1953), + [aux_sym_cmd_identifier_token17] = ACTIONS(1953), + [aux_sym_cmd_identifier_token18] = ACTIONS(1953), + [aux_sym_cmd_identifier_token19] = ACTIONS(1953), + [aux_sym_cmd_identifier_token20] = ACTIONS(1953), + [aux_sym_cmd_identifier_token21] = ACTIONS(1953), + [aux_sym_cmd_identifier_token22] = ACTIONS(1953), + [aux_sym_cmd_identifier_token23] = ACTIONS(1953), + [aux_sym_cmd_identifier_token24] = ACTIONS(1953), + [aux_sym_cmd_identifier_token25] = ACTIONS(1953), + [aux_sym_cmd_identifier_token26] = ACTIONS(1953), + [aux_sym_cmd_identifier_token27] = ACTIONS(1953), + [aux_sym_cmd_identifier_token28] = ACTIONS(1953), + [aux_sym_cmd_identifier_token29] = ACTIONS(1953), + [aux_sym_cmd_identifier_token30] = ACTIONS(1953), + [aux_sym_cmd_identifier_token31] = ACTIONS(1953), + [aux_sym_cmd_identifier_token32] = ACTIONS(1953), + [aux_sym_cmd_identifier_token33] = ACTIONS(1953), + [aux_sym_cmd_identifier_token34] = ACTIONS(1953), + [aux_sym_cmd_identifier_token35] = ACTIONS(1953), + [aux_sym_cmd_identifier_token36] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1953), + [aux_sym_cmd_identifier_token38] = ACTIONS(1953), + [aux_sym_cmd_identifier_token39] = ACTIONS(1953), + [aux_sym_cmd_identifier_token40] = ACTIONS(1953), + [anon_sym_def] = ACTIONS(1953), + [anon_sym_export_DASHenv] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_module] = ACTIONS(1953), + [anon_sym_use] = ACTIONS(1953), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_DOLLAR] = ACTIONS(1953), + [anon_sym_error] = ACTIONS(1953), + [anon_sym_list] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_in] = ACTIONS(1953), + [anon_sym_loop] = ACTIONS(1953), + [anon_sym_make] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_source] = ACTIONS(1953), + [anon_sym_source_DASHenv] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_hide] = ACTIONS(1953), + [anon_sym_hide_DASHenv] = ACTIONS(1953), + [anon_sym_overlay] = ACTIONS(1953), + [anon_sym_new] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1953), + [anon_sym_DOT_DOT2] = ACTIONS(1953), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1955), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1953), + [aux_sym__val_number_decimal_token2] = ACTIONS(1953), + [aux_sym__val_number_decimal_token3] = ACTIONS(1953), + [aux_sym__val_number_decimal_token4] = ACTIONS(1953), + [aux_sym__val_number_token1] = ACTIONS(1953), + [aux_sym__val_number_token2] = ACTIONS(1953), + [aux_sym__val_number_token3] = ACTIONS(1953), + [anon_sym_DQUOTE] = ACTIONS(1953), + [sym__str_single_quotes] = ACTIONS(1953), + [sym__str_back_ticks] = ACTIONS(1953), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1953), + [sym__entry_separator] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(3), }, [385] = { + [sym_cell_path] = STATE(598), + [sym_path] = STATE(532), [sym_comment] = STATE(385), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1470), - [aux_sym__immediate_decimal_token2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1859), + [aux_sym_cmd_identifier_token3] = ACTIONS(1859), + [aux_sym_cmd_identifier_token4] = ACTIONS(1859), + [aux_sym_cmd_identifier_token5] = ACTIONS(1859), + [aux_sym_cmd_identifier_token6] = ACTIONS(1859), + [aux_sym_cmd_identifier_token7] = ACTIONS(1859), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1859), + [aux_sym_cmd_identifier_token11] = ACTIONS(1859), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1859), + [aux_sym_cmd_identifier_token17] = ACTIONS(1859), + [aux_sym_cmd_identifier_token18] = ACTIONS(1859), + [aux_sym_cmd_identifier_token19] = ACTIONS(1859), + [aux_sym_cmd_identifier_token20] = ACTIONS(1859), + [aux_sym_cmd_identifier_token21] = ACTIONS(1859), + [aux_sym_cmd_identifier_token22] = ACTIONS(1859), + [aux_sym_cmd_identifier_token23] = ACTIONS(1859), + [aux_sym_cmd_identifier_token24] = ACTIONS(1859), + [aux_sym_cmd_identifier_token25] = ACTIONS(1859), + [aux_sym_cmd_identifier_token26] = ACTIONS(1859), + [aux_sym_cmd_identifier_token27] = ACTIONS(1859), + [aux_sym_cmd_identifier_token28] = ACTIONS(1859), + [aux_sym_cmd_identifier_token29] = ACTIONS(1859), + [aux_sym_cmd_identifier_token30] = ACTIONS(1859), + [aux_sym_cmd_identifier_token31] = ACTIONS(1859), + [aux_sym_cmd_identifier_token32] = ACTIONS(1859), + [aux_sym_cmd_identifier_token33] = ACTIONS(1859), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1859), + [aux_sym_cmd_identifier_token36] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_list] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(247), }, [386] = { + [sym_path] = STATE(472), [sym_comment] = STATE(386), - [anon_sym_export] = ACTIONS(924), - [anon_sym_alias] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_let_DASHenv] = ACTIONS(924), - [anon_sym_mut] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [aux_sym_cmd_identifier_token1] = ACTIONS(924), - [aux_sym_cmd_identifier_token2] = ACTIONS(924), - [aux_sym_cmd_identifier_token3] = ACTIONS(924), - [aux_sym_cmd_identifier_token4] = ACTIONS(924), - [aux_sym_cmd_identifier_token5] = ACTIONS(924), - [aux_sym_cmd_identifier_token6] = ACTIONS(924), - [aux_sym_cmd_identifier_token7] = ACTIONS(924), - [aux_sym_cmd_identifier_token8] = ACTIONS(924), - [aux_sym_cmd_identifier_token9] = ACTIONS(924), - [aux_sym_cmd_identifier_token10] = ACTIONS(924), - [aux_sym_cmd_identifier_token11] = ACTIONS(924), - [aux_sym_cmd_identifier_token12] = ACTIONS(924), - [aux_sym_cmd_identifier_token13] = ACTIONS(924), - [aux_sym_cmd_identifier_token14] = ACTIONS(924), - [aux_sym_cmd_identifier_token15] = ACTIONS(924), - [aux_sym_cmd_identifier_token16] = ACTIONS(924), - [aux_sym_cmd_identifier_token17] = ACTIONS(924), - [aux_sym_cmd_identifier_token18] = ACTIONS(924), - [aux_sym_cmd_identifier_token19] = ACTIONS(924), - [aux_sym_cmd_identifier_token20] = ACTIONS(924), - [aux_sym_cmd_identifier_token21] = ACTIONS(924), - [aux_sym_cmd_identifier_token22] = ACTIONS(924), - [aux_sym_cmd_identifier_token23] = ACTIONS(924), - [aux_sym_cmd_identifier_token24] = ACTIONS(924), - [aux_sym_cmd_identifier_token25] = ACTIONS(924), - [aux_sym_cmd_identifier_token26] = ACTIONS(924), - [aux_sym_cmd_identifier_token27] = ACTIONS(924), - [aux_sym_cmd_identifier_token28] = ACTIONS(924), - [aux_sym_cmd_identifier_token29] = ACTIONS(924), - [aux_sym_cmd_identifier_token30] = ACTIONS(924), - [aux_sym_cmd_identifier_token31] = ACTIONS(924), - [aux_sym_cmd_identifier_token32] = ACTIONS(924), - [aux_sym_cmd_identifier_token33] = ACTIONS(924), - [aux_sym_cmd_identifier_token34] = ACTIONS(924), - [aux_sym_cmd_identifier_token35] = ACTIONS(924), - [aux_sym_cmd_identifier_token36] = ACTIONS(924), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [anon_sym_null] = ACTIONS(926), - [aux_sym_cmd_identifier_token38] = ACTIONS(924), - [aux_sym_cmd_identifier_token39] = ACTIONS(926), - [aux_sym_cmd_identifier_token40] = ACTIONS(926), - [anon_sym_def] = ACTIONS(924), - [anon_sym_export_DASHenv] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(926), - [anon_sym_error] = ACTIONS(924), - [anon_sym_list] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_make] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_try] = ACTIONS(924), - [anon_sym_catch] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_source] = ACTIONS(924), - [anon_sym_source_DASHenv] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_hide] = ACTIONS(924), - [anon_sym_hide_DASHenv] = ACTIONS(924), - [anon_sym_overlay] = ACTIONS(924), - [anon_sym_new] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(926), - [anon_sym_DOT_DOT2] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(926), - [anon_sym_DOT_DOT_LT2] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(926), - [aux_sym__val_number_decimal_token1] = ACTIONS(924), - [aux_sym__val_number_decimal_token2] = ACTIONS(926), - [anon_sym_DOT2] = ACTIONS(924), - [aux_sym__val_number_decimal_token3] = ACTIONS(926), - [aux_sym__val_number_token1] = ACTIONS(926), - [aux_sym__val_number_token2] = ACTIONS(926), - [aux_sym__val_number_token3] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym__str_single_quotes] = ACTIONS(926), - [sym__str_back_ticks] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(926), + [aux_sym_cell_path_repeat1] = STATE(387), + [anon_sym_export] = ACTIONS(951), + [anon_sym_alias] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_let_DASHenv] = ACTIONS(951), + [anon_sym_mut] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [aux_sym_cmd_identifier_token1] = ACTIONS(951), + [aux_sym_cmd_identifier_token2] = ACTIONS(951), + [aux_sym_cmd_identifier_token3] = ACTIONS(951), + [aux_sym_cmd_identifier_token4] = ACTIONS(951), + [aux_sym_cmd_identifier_token5] = ACTIONS(951), + [aux_sym_cmd_identifier_token6] = ACTIONS(951), + [aux_sym_cmd_identifier_token7] = ACTIONS(951), + [aux_sym_cmd_identifier_token8] = ACTIONS(951), + [aux_sym_cmd_identifier_token9] = ACTIONS(951), + [aux_sym_cmd_identifier_token10] = ACTIONS(951), + [aux_sym_cmd_identifier_token11] = ACTIONS(951), + [aux_sym_cmd_identifier_token12] = ACTIONS(951), + [aux_sym_cmd_identifier_token13] = ACTIONS(951), + [aux_sym_cmd_identifier_token14] = ACTIONS(951), + [aux_sym_cmd_identifier_token15] = ACTIONS(951), + [aux_sym_cmd_identifier_token16] = ACTIONS(951), + [aux_sym_cmd_identifier_token17] = ACTIONS(951), + [aux_sym_cmd_identifier_token18] = ACTIONS(951), + [aux_sym_cmd_identifier_token19] = ACTIONS(951), + [aux_sym_cmd_identifier_token20] = ACTIONS(951), + [aux_sym_cmd_identifier_token21] = ACTIONS(951), + [aux_sym_cmd_identifier_token22] = ACTIONS(951), + [aux_sym_cmd_identifier_token23] = ACTIONS(951), + [aux_sym_cmd_identifier_token24] = ACTIONS(951), + [aux_sym_cmd_identifier_token25] = ACTIONS(951), + [aux_sym_cmd_identifier_token26] = ACTIONS(951), + [aux_sym_cmd_identifier_token27] = ACTIONS(951), + [aux_sym_cmd_identifier_token28] = ACTIONS(951), + [aux_sym_cmd_identifier_token29] = ACTIONS(951), + [aux_sym_cmd_identifier_token30] = ACTIONS(951), + [aux_sym_cmd_identifier_token31] = ACTIONS(951), + [aux_sym_cmd_identifier_token32] = ACTIONS(951), + [aux_sym_cmd_identifier_token33] = ACTIONS(951), + [aux_sym_cmd_identifier_token34] = ACTIONS(951), + [aux_sym_cmd_identifier_token35] = ACTIONS(951), + [aux_sym_cmd_identifier_token36] = ACTIONS(951), + [anon_sym_true] = ACTIONS(951), + [anon_sym_false] = ACTIONS(951), + [anon_sym_null] = ACTIONS(951), + [aux_sym_cmd_identifier_token38] = ACTIONS(951), + [aux_sym_cmd_identifier_token39] = ACTIONS(951), + [aux_sym_cmd_identifier_token40] = ACTIONS(951), + [anon_sym_def] = ACTIONS(951), + [anon_sym_export_DASHenv] = ACTIONS(951), + [anon_sym_extern] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_use] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_error] = ACTIONS(951), + [anon_sym_list] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_in] = ACTIONS(951), + [anon_sym_loop] = ACTIONS(951), + [anon_sym_make] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [anon_sym_do] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_else] = ACTIONS(951), + [anon_sym_match] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_try] = ACTIONS(951), + [anon_sym_catch] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_source] = ACTIONS(951), + [anon_sym_source_DASHenv] = ACTIONS(951), + [anon_sym_register] = ACTIONS(951), + [anon_sym_hide] = ACTIONS(951), + [anon_sym_hide_DASHenv] = ACTIONS(951), + [anon_sym_overlay] = ACTIONS(951), + [anon_sym_new] = ACTIONS(951), + [anon_sym_as] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(951), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(951), + [aux_sym__val_number_decimal_token3] = ACTIONS(951), + [aux_sym__val_number_decimal_token4] = ACTIONS(951), + [aux_sym__val_number_token1] = ACTIONS(951), + [aux_sym__val_number_token2] = ACTIONS(951), + [aux_sym__val_number_token3] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym__str_single_quotes] = ACTIONS(951), + [sym__str_back_ticks] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(951), + [sym__entry_separator] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(3), }, [387] = { + [sym_path] = STATE(472), [sym_comment] = STATE(387), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1535), - [aux_sym__immediate_decimal_token2] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1535), + [aux_sym_cell_path_repeat1] = STATE(387), + [anon_sym_export] = ACTIONS(955), + [anon_sym_alias] = ACTIONS(955), + [anon_sym_let] = ACTIONS(955), + [anon_sym_let_DASHenv] = ACTIONS(955), + [anon_sym_mut] = ACTIONS(955), + [anon_sym_const] = ACTIONS(955), + [aux_sym_cmd_identifier_token1] = ACTIONS(955), + [aux_sym_cmd_identifier_token2] = ACTIONS(955), + [aux_sym_cmd_identifier_token3] = ACTIONS(955), + [aux_sym_cmd_identifier_token4] = ACTIONS(955), + [aux_sym_cmd_identifier_token5] = ACTIONS(955), + [aux_sym_cmd_identifier_token6] = ACTIONS(955), + [aux_sym_cmd_identifier_token7] = ACTIONS(955), + [aux_sym_cmd_identifier_token8] = ACTIONS(955), + [aux_sym_cmd_identifier_token9] = ACTIONS(955), + [aux_sym_cmd_identifier_token10] = ACTIONS(955), + [aux_sym_cmd_identifier_token11] = ACTIONS(955), + [aux_sym_cmd_identifier_token12] = ACTIONS(955), + [aux_sym_cmd_identifier_token13] = ACTIONS(955), + [aux_sym_cmd_identifier_token14] = ACTIONS(955), + [aux_sym_cmd_identifier_token15] = ACTIONS(955), + [aux_sym_cmd_identifier_token16] = ACTIONS(955), + [aux_sym_cmd_identifier_token17] = ACTIONS(955), + [aux_sym_cmd_identifier_token18] = ACTIONS(955), + [aux_sym_cmd_identifier_token19] = ACTIONS(955), + [aux_sym_cmd_identifier_token20] = ACTIONS(955), + [aux_sym_cmd_identifier_token21] = ACTIONS(955), + [aux_sym_cmd_identifier_token22] = ACTIONS(955), + [aux_sym_cmd_identifier_token23] = ACTIONS(955), + [aux_sym_cmd_identifier_token24] = ACTIONS(955), + [aux_sym_cmd_identifier_token25] = ACTIONS(955), + [aux_sym_cmd_identifier_token26] = ACTIONS(955), + [aux_sym_cmd_identifier_token27] = ACTIONS(955), + [aux_sym_cmd_identifier_token28] = ACTIONS(955), + [aux_sym_cmd_identifier_token29] = ACTIONS(955), + [aux_sym_cmd_identifier_token30] = ACTIONS(955), + [aux_sym_cmd_identifier_token31] = ACTIONS(955), + [aux_sym_cmd_identifier_token32] = ACTIONS(955), + [aux_sym_cmd_identifier_token33] = ACTIONS(955), + [aux_sym_cmd_identifier_token34] = ACTIONS(955), + [aux_sym_cmd_identifier_token35] = ACTIONS(955), + [aux_sym_cmd_identifier_token36] = ACTIONS(955), + [anon_sym_true] = ACTIONS(955), + [anon_sym_false] = ACTIONS(955), + [anon_sym_null] = ACTIONS(955), + [aux_sym_cmd_identifier_token38] = ACTIONS(955), + [aux_sym_cmd_identifier_token39] = ACTIONS(955), + [aux_sym_cmd_identifier_token40] = ACTIONS(955), + [anon_sym_def] = ACTIONS(955), + [anon_sym_export_DASHenv] = ACTIONS(955), + [anon_sym_extern] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_use] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_error] = ACTIONS(955), + [anon_sym_list] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_break] = ACTIONS(955), + [anon_sym_continue] = ACTIONS(955), + [anon_sym_for] = ACTIONS(955), + [anon_sym_in] = ACTIONS(955), + [anon_sym_loop] = ACTIONS(955), + [anon_sym_make] = ACTIONS(955), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(955), + [anon_sym_if] = ACTIONS(955), + [anon_sym_else] = ACTIONS(955), + [anon_sym_match] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_try] = ACTIONS(955), + [anon_sym_catch] = ACTIONS(955), + [anon_sym_return] = ACTIONS(955), + [anon_sym_source] = ACTIONS(955), + [anon_sym_source_DASHenv] = ACTIONS(955), + [anon_sym_register] = ACTIONS(955), + [anon_sym_hide] = ACTIONS(955), + [anon_sym_hide_DASHenv] = ACTIONS(955), + [anon_sym_overlay] = ACTIONS(955), + [anon_sym_new] = ACTIONS(955), + [anon_sym_as] = ACTIONS(955), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(955), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(955), + [aux_sym__val_number_decimal_token3] = ACTIONS(955), + [aux_sym__val_number_decimal_token4] = ACTIONS(955), + [aux_sym__val_number_token1] = ACTIONS(955), + [aux_sym__val_number_token2] = ACTIONS(955), + [aux_sym__val_number_token3] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym__str_single_quotes] = ACTIONS(955), + [sym__str_back_ticks] = ACTIONS(955), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(955), + [sym__entry_separator] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(955), [anon_sym_POUND] = ACTIONS(3), }, [388] = { [sym_comment] = STATE(388), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [anon_sym_export] = ACTIONS(1960), + [anon_sym_alias] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_let_DASHenv] = ACTIONS(1960), + [anon_sym_mut] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [aux_sym_cmd_identifier_token1] = ACTIONS(1960), + [aux_sym_cmd_identifier_token2] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1960), + [aux_sym_cmd_identifier_token4] = ACTIONS(1960), + [aux_sym_cmd_identifier_token5] = ACTIONS(1960), + [aux_sym_cmd_identifier_token6] = ACTIONS(1960), + [aux_sym_cmd_identifier_token7] = ACTIONS(1960), + [aux_sym_cmd_identifier_token8] = ACTIONS(1960), + [aux_sym_cmd_identifier_token9] = ACTIONS(1960), + [aux_sym_cmd_identifier_token10] = ACTIONS(1960), + [aux_sym_cmd_identifier_token11] = ACTIONS(1960), + [aux_sym_cmd_identifier_token12] = ACTIONS(1960), + [aux_sym_cmd_identifier_token13] = ACTIONS(1960), + [aux_sym_cmd_identifier_token14] = ACTIONS(1960), + [aux_sym_cmd_identifier_token15] = ACTIONS(1960), + [aux_sym_cmd_identifier_token16] = ACTIONS(1960), + [aux_sym_cmd_identifier_token17] = ACTIONS(1960), + [aux_sym_cmd_identifier_token18] = ACTIONS(1960), + [aux_sym_cmd_identifier_token19] = ACTIONS(1960), + [aux_sym_cmd_identifier_token20] = ACTIONS(1960), + [aux_sym_cmd_identifier_token21] = ACTIONS(1960), + [aux_sym_cmd_identifier_token22] = ACTIONS(1960), + [aux_sym_cmd_identifier_token23] = ACTIONS(1960), + [aux_sym_cmd_identifier_token24] = ACTIONS(1960), + [aux_sym_cmd_identifier_token25] = ACTIONS(1960), + [aux_sym_cmd_identifier_token26] = ACTIONS(1960), + [aux_sym_cmd_identifier_token27] = ACTIONS(1960), + [aux_sym_cmd_identifier_token28] = ACTIONS(1960), + [aux_sym_cmd_identifier_token29] = ACTIONS(1960), + [aux_sym_cmd_identifier_token30] = ACTIONS(1960), + [aux_sym_cmd_identifier_token31] = ACTIONS(1960), + [aux_sym_cmd_identifier_token32] = ACTIONS(1960), + [aux_sym_cmd_identifier_token33] = ACTIONS(1960), + [aux_sym_cmd_identifier_token34] = ACTIONS(1960), + [aux_sym_cmd_identifier_token35] = ACTIONS(1960), + [aux_sym_cmd_identifier_token36] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token38] = ACTIONS(1960), + [aux_sym_cmd_identifier_token39] = ACTIONS(1960), + [aux_sym_cmd_identifier_token40] = ACTIONS(1960), + [anon_sym_def] = ACTIONS(1960), + [anon_sym_export_DASHenv] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_module] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_error] = ACTIONS(1960), + [anon_sym_list] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_in] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_make] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_else] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_try] = ACTIONS(1960), + [anon_sym_catch] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_source] = ACTIONS(1960), + [anon_sym_source_DASHenv] = ACTIONS(1960), + [anon_sym_register] = ACTIONS(1960), + [anon_sym_hide] = ACTIONS(1960), + [anon_sym_hide_DASHenv] = ACTIONS(1960), + [anon_sym_overlay] = ACTIONS(1960), + [anon_sym_new] = ACTIONS(1960), + [anon_sym_as] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1960), + [anon_sym_DOT_DOT2] = ACTIONS(1962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1960), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1960), + [aux_sym__val_number_decimal_token3] = ACTIONS(1960), + [aux_sym__val_number_decimal_token4] = ACTIONS(1960), + [aux_sym__val_number_token1] = ACTIONS(1960), + [aux_sym__val_number_token2] = ACTIONS(1960), + [aux_sym__val_number_token3] = ACTIONS(1960), + [anon_sym_DQUOTE] = ACTIONS(1960), + [sym__str_single_quotes] = ACTIONS(1960), + [sym__str_back_ticks] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1960), + [sym__entry_separator] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1960), [anon_sym_POUND] = ACTIONS(3), }, [389] = { + [sym_cell_path] = STATE(636), + [sym_path] = STATE(532), [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(1570), - [anon_sym_alias] = ACTIONS(1570), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_let_DASHenv] = ACTIONS(1570), - [anon_sym_mut] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [aux_sym_cmd_identifier_token1] = ACTIONS(1570), - [aux_sym_cmd_identifier_token2] = ACTIONS(1570), - [aux_sym_cmd_identifier_token3] = ACTIONS(1570), - [aux_sym_cmd_identifier_token4] = ACTIONS(1570), - [aux_sym_cmd_identifier_token5] = ACTIONS(1570), - [aux_sym_cmd_identifier_token6] = ACTIONS(1570), - [aux_sym_cmd_identifier_token7] = ACTIONS(1570), - [aux_sym_cmd_identifier_token8] = ACTIONS(1570), - [aux_sym_cmd_identifier_token9] = ACTIONS(1570), - [aux_sym_cmd_identifier_token10] = ACTIONS(1570), - [aux_sym_cmd_identifier_token11] = ACTIONS(1570), - [aux_sym_cmd_identifier_token12] = ACTIONS(1570), - [aux_sym_cmd_identifier_token13] = ACTIONS(1570), - [aux_sym_cmd_identifier_token14] = ACTIONS(1570), - [aux_sym_cmd_identifier_token15] = ACTIONS(1570), - [aux_sym_cmd_identifier_token16] = ACTIONS(1570), - [aux_sym_cmd_identifier_token17] = ACTIONS(1570), - [aux_sym_cmd_identifier_token18] = ACTIONS(1570), - [aux_sym_cmd_identifier_token19] = ACTIONS(1570), - [aux_sym_cmd_identifier_token20] = ACTIONS(1570), - [aux_sym_cmd_identifier_token21] = ACTIONS(1570), - [aux_sym_cmd_identifier_token22] = ACTIONS(1570), - [aux_sym_cmd_identifier_token23] = ACTIONS(1570), - [aux_sym_cmd_identifier_token24] = ACTIONS(1570), - [aux_sym_cmd_identifier_token25] = ACTIONS(1570), - [aux_sym_cmd_identifier_token26] = ACTIONS(1570), - [aux_sym_cmd_identifier_token27] = ACTIONS(1570), - [aux_sym_cmd_identifier_token28] = ACTIONS(1570), - [aux_sym_cmd_identifier_token29] = ACTIONS(1570), - [aux_sym_cmd_identifier_token30] = ACTIONS(1570), - [aux_sym_cmd_identifier_token31] = ACTIONS(1570), - [aux_sym_cmd_identifier_token32] = ACTIONS(1570), - [aux_sym_cmd_identifier_token33] = ACTIONS(1570), - [aux_sym_cmd_identifier_token34] = ACTIONS(1570), - [aux_sym_cmd_identifier_token35] = ACTIONS(1570), - [aux_sym_cmd_identifier_token36] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [anon_sym_null] = ACTIONS(1570), - [aux_sym_cmd_identifier_token38] = ACTIONS(1570), - [aux_sym_cmd_identifier_token39] = ACTIONS(1570), - [aux_sym_cmd_identifier_token40] = ACTIONS(1570), - [anon_sym_def] = ACTIONS(1570), - [anon_sym_export_DASHenv] = ACTIONS(1570), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_module] = ACTIONS(1570), - [anon_sym_use] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_error] = ACTIONS(1570), - [anon_sym_list] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_in] = ACTIONS(1570), - [anon_sym_loop] = ACTIONS(1570), - [anon_sym_make] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_do] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_else] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_try] = ACTIONS(1570), - [anon_sym_catch] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_source] = ACTIONS(1570), - [anon_sym_source_DASHenv] = ACTIONS(1570), - [anon_sym_register] = ACTIONS(1570), - [anon_sym_hide] = ACTIONS(1570), - [anon_sym_hide_DASHenv] = ACTIONS(1570), - [anon_sym_overlay] = ACTIONS(1570), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_as] = ACTIONS(1570), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1570), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1570), - [aux_sym__val_number_decimal_token1] = ACTIONS(1570), - [aux_sym__val_number_decimal_token2] = ACTIONS(1570), - [anon_sym_DOT2] = ACTIONS(1570), - [aux_sym__val_number_decimal_token3] = ACTIONS(1570), - [aux_sym__val_number_token1] = ACTIONS(1570), - [aux_sym__val_number_token2] = ACTIONS(1570), - [aux_sym__val_number_token3] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [sym__str_single_quotes] = ACTIONS(1570), - [sym__str_back_ticks] = ACTIONS(1570), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1570), - [sym__entry_separator] = ACTIONS(1580), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(945), + [anon_sym_alias] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_let_DASHenv] = ACTIONS(945), + [anon_sym_mut] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [aux_sym_cmd_identifier_token1] = ACTIONS(945), + [aux_sym_cmd_identifier_token2] = ACTIONS(945), + [aux_sym_cmd_identifier_token3] = ACTIONS(945), + [aux_sym_cmd_identifier_token4] = ACTIONS(945), + [aux_sym_cmd_identifier_token5] = ACTIONS(945), + [aux_sym_cmd_identifier_token6] = ACTIONS(945), + [aux_sym_cmd_identifier_token7] = ACTIONS(945), + [aux_sym_cmd_identifier_token8] = ACTIONS(945), + [aux_sym_cmd_identifier_token9] = ACTIONS(945), + [aux_sym_cmd_identifier_token10] = ACTIONS(945), + [aux_sym_cmd_identifier_token11] = ACTIONS(945), + [aux_sym_cmd_identifier_token12] = ACTIONS(945), + [aux_sym_cmd_identifier_token13] = ACTIONS(945), + [aux_sym_cmd_identifier_token14] = ACTIONS(945), + [aux_sym_cmd_identifier_token15] = ACTIONS(945), + [aux_sym_cmd_identifier_token16] = ACTIONS(945), + [aux_sym_cmd_identifier_token17] = ACTIONS(945), + [aux_sym_cmd_identifier_token18] = ACTIONS(945), + [aux_sym_cmd_identifier_token19] = ACTIONS(945), + [aux_sym_cmd_identifier_token20] = ACTIONS(945), + [aux_sym_cmd_identifier_token21] = ACTIONS(945), + [aux_sym_cmd_identifier_token22] = ACTIONS(945), + [aux_sym_cmd_identifier_token23] = ACTIONS(945), + [aux_sym_cmd_identifier_token24] = ACTIONS(945), + [aux_sym_cmd_identifier_token25] = ACTIONS(945), + [aux_sym_cmd_identifier_token26] = ACTIONS(945), + [aux_sym_cmd_identifier_token27] = ACTIONS(945), + [aux_sym_cmd_identifier_token28] = ACTIONS(945), + [aux_sym_cmd_identifier_token29] = ACTIONS(945), + [aux_sym_cmd_identifier_token30] = ACTIONS(945), + [aux_sym_cmd_identifier_token31] = ACTIONS(945), + [aux_sym_cmd_identifier_token32] = ACTIONS(945), + [aux_sym_cmd_identifier_token33] = ACTIONS(945), + [aux_sym_cmd_identifier_token34] = ACTIONS(945), + [aux_sym_cmd_identifier_token35] = ACTIONS(945), + [aux_sym_cmd_identifier_token36] = ACTIONS(945), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_null] = ACTIONS(947), + [aux_sym_cmd_identifier_token38] = ACTIONS(945), + [aux_sym_cmd_identifier_token39] = ACTIONS(947), + [aux_sym_cmd_identifier_token40] = ACTIONS(947), + [anon_sym_def] = ACTIONS(945), + [anon_sym_export_DASHenv] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(945), + [anon_sym_module] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_error] = ACTIONS(945), + [anon_sym_list] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_in] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_make] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_try] = ACTIONS(945), + [anon_sym_catch] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_source] = ACTIONS(945), + [anon_sym_source_DASHenv] = ACTIONS(945), + [anon_sym_register] = ACTIONS(945), + [anon_sym_hide] = ACTIONS(945), + [anon_sym_hide_DASHenv] = ACTIONS(945), + [anon_sym_overlay] = ACTIONS(945), + [anon_sym_new] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(947), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(947), + [aux_sym__val_number_decimal_token3] = ACTIONS(947), + [aux_sym__val_number_decimal_token4] = ACTIONS(947), + [aux_sym__val_number_token1] = ACTIONS(947), + [aux_sym__val_number_token2] = ACTIONS(947), + [aux_sym__val_number_token3] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym__str_single_quotes] = ACTIONS(947), + [sym__str_back_ticks] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(247), }, [390] = { [sym_comment] = STATE(390), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1006), + [aux_sym_cmd_identifier_token3] = ACTIONS(1006), + [aux_sym_cmd_identifier_token4] = ACTIONS(1006), + [aux_sym_cmd_identifier_token5] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1006), + [aux_sym_cmd_identifier_token7] = ACTIONS(1006), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1006), + [aux_sym_cmd_identifier_token17] = ACTIONS(1006), + [aux_sym_cmd_identifier_token18] = ACTIONS(1006), + [aux_sym_cmd_identifier_token19] = ACTIONS(1006), + [aux_sym_cmd_identifier_token20] = ACTIONS(1006), + [aux_sym_cmd_identifier_token21] = ACTIONS(1006), + [aux_sym_cmd_identifier_token22] = ACTIONS(1006), + [aux_sym_cmd_identifier_token23] = ACTIONS(1006), + [aux_sym_cmd_identifier_token24] = ACTIONS(1006), + [aux_sym_cmd_identifier_token25] = ACTIONS(1006), + [aux_sym_cmd_identifier_token26] = ACTIONS(1006), + [aux_sym_cmd_identifier_token27] = ACTIONS(1006), + [aux_sym_cmd_identifier_token28] = ACTIONS(1006), + [aux_sym_cmd_identifier_token29] = ACTIONS(1006), + [aux_sym_cmd_identifier_token30] = ACTIONS(1006), + [aux_sym_cmd_identifier_token31] = ACTIONS(1006), + [aux_sym_cmd_identifier_token32] = ACTIONS(1006), + [aux_sym_cmd_identifier_token33] = ACTIONS(1006), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1006), + [aux_sym_cmd_identifier_token36] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1907), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1909), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_decimal_token4] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), + [sym__entry_separator] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(3), }, [391] = { + [sym_cell_path] = STATE(665), + [sym_path] = STATE(532), [sym_comment] = STATE(391), - [anon_sym_export] = ACTIONS(932), - [anon_sym_alias] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_let_DASHenv] = ACTIONS(932), - [anon_sym_mut] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [aux_sym_cmd_identifier_token1] = ACTIONS(932), - [aux_sym_cmd_identifier_token2] = ACTIONS(932), - [aux_sym_cmd_identifier_token3] = ACTIONS(932), - [aux_sym_cmd_identifier_token4] = ACTIONS(932), - [aux_sym_cmd_identifier_token5] = ACTIONS(932), - [aux_sym_cmd_identifier_token6] = ACTIONS(932), - [aux_sym_cmd_identifier_token7] = ACTIONS(932), - [aux_sym_cmd_identifier_token8] = ACTIONS(932), - [aux_sym_cmd_identifier_token9] = ACTIONS(932), - [aux_sym_cmd_identifier_token10] = ACTIONS(932), - [aux_sym_cmd_identifier_token11] = ACTIONS(932), - [aux_sym_cmd_identifier_token12] = ACTIONS(932), - [aux_sym_cmd_identifier_token13] = ACTIONS(932), - [aux_sym_cmd_identifier_token14] = ACTIONS(932), - [aux_sym_cmd_identifier_token15] = ACTIONS(932), - [aux_sym_cmd_identifier_token16] = ACTIONS(932), - [aux_sym_cmd_identifier_token17] = ACTIONS(932), - [aux_sym_cmd_identifier_token18] = ACTIONS(932), - [aux_sym_cmd_identifier_token19] = ACTIONS(932), - [aux_sym_cmd_identifier_token20] = ACTIONS(932), - [aux_sym_cmd_identifier_token21] = ACTIONS(932), - [aux_sym_cmd_identifier_token22] = ACTIONS(932), - [aux_sym_cmd_identifier_token23] = ACTIONS(932), - [aux_sym_cmd_identifier_token24] = ACTIONS(932), - [aux_sym_cmd_identifier_token25] = ACTIONS(932), - [aux_sym_cmd_identifier_token26] = ACTIONS(932), - [aux_sym_cmd_identifier_token27] = ACTIONS(932), - [aux_sym_cmd_identifier_token28] = ACTIONS(932), - [aux_sym_cmd_identifier_token29] = ACTIONS(932), - [aux_sym_cmd_identifier_token30] = ACTIONS(932), - [aux_sym_cmd_identifier_token31] = ACTIONS(932), - [aux_sym_cmd_identifier_token32] = ACTIONS(932), - [aux_sym_cmd_identifier_token33] = ACTIONS(932), - [aux_sym_cmd_identifier_token34] = ACTIONS(932), - [aux_sym_cmd_identifier_token35] = ACTIONS(932), - [aux_sym_cmd_identifier_token36] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_null] = ACTIONS(934), - [aux_sym_cmd_identifier_token38] = ACTIONS(932), - [aux_sym_cmd_identifier_token39] = ACTIONS(934), - [aux_sym_cmd_identifier_token40] = ACTIONS(934), - [anon_sym_def] = ACTIONS(932), - [anon_sym_export_DASHenv] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_error] = ACTIONS(932), - [anon_sym_list] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_make] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_try] = ACTIONS(932), - [anon_sym_catch] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_source] = ACTIONS(932), - [anon_sym_source_DASHenv] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_hide] = ACTIONS(932), - [anon_sym_hide_DASHenv] = ACTIONS(932), - [anon_sym_overlay] = ACTIONS(932), - [anon_sym_new] = ACTIONS(932), - [anon_sym_as] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(934), - [anon_sym_DOT_DOT2] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(934), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(934), - [aux_sym__val_number_decimal_token1] = ACTIONS(932), - [aux_sym__val_number_decimal_token2] = ACTIONS(934), - [anon_sym_DOT2] = ACTIONS(932), - [aux_sym__val_number_decimal_token3] = ACTIONS(934), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym__str_single_quotes] = ACTIONS(934), - [sym__str_back_ticks] = ACTIONS(934), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_alias] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_let_DASHenv] = ACTIONS(1839), + [anon_sym_mut] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [aux_sym_cmd_identifier_token1] = ACTIONS(1839), + [aux_sym_cmd_identifier_token2] = ACTIONS(1839), + [aux_sym_cmd_identifier_token3] = ACTIONS(1839), + [aux_sym_cmd_identifier_token4] = ACTIONS(1839), + [aux_sym_cmd_identifier_token5] = ACTIONS(1839), + [aux_sym_cmd_identifier_token6] = ACTIONS(1839), + [aux_sym_cmd_identifier_token7] = ACTIONS(1839), + [aux_sym_cmd_identifier_token8] = ACTIONS(1839), + [aux_sym_cmd_identifier_token9] = ACTIONS(1839), + [aux_sym_cmd_identifier_token10] = ACTIONS(1839), + [aux_sym_cmd_identifier_token11] = ACTIONS(1839), + [aux_sym_cmd_identifier_token12] = ACTIONS(1839), + [aux_sym_cmd_identifier_token13] = ACTIONS(1839), + [aux_sym_cmd_identifier_token14] = ACTIONS(1839), + [aux_sym_cmd_identifier_token15] = ACTIONS(1839), + [aux_sym_cmd_identifier_token16] = ACTIONS(1839), + [aux_sym_cmd_identifier_token17] = ACTIONS(1839), + [aux_sym_cmd_identifier_token18] = ACTIONS(1839), + [aux_sym_cmd_identifier_token19] = ACTIONS(1839), + [aux_sym_cmd_identifier_token20] = ACTIONS(1839), + [aux_sym_cmd_identifier_token21] = ACTIONS(1839), + [aux_sym_cmd_identifier_token22] = ACTIONS(1839), + [aux_sym_cmd_identifier_token23] = ACTIONS(1839), + [aux_sym_cmd_identifier_token24] = ACTIONS(1839), + [aux_sym_cmd_identifier_token25] = ACTIONS(1839), + [aux_sym_cmd_identifier_token26] = ACTIONS(1839), + [aux_sym_cmd_identifier_token27] = ACTIONS(1839), + [aux_sym_cmd_identifier_token28] = ACTIONS(1839), + [aux_sym_cmd_identifier_token29] = ACTIONS(1839), + [aux_sym_cmd_identifier_token30] = ACTIONS(1839), + [aux_sym_cmd_identifier_token31] = ACTIONS(1839), + [aux_sym_cmd_identifier_token32] = ACTIONS(1839), + [aux_sym_cmd_identifier_token33] = ACTIONS(1839), + [aux_sym_cmd_identifier_token34] = ACTIONS(1839), + [aux_sym_cmd_identifier_token35] = ACTIONS(1839), + [aux_sym_cmd_identifier_token36] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1839), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_export_DASHenv] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_list] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_in] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_make] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_else] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_catch] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_source] = ACTIONS(1839), + [anon_sym_source_DASHenv] = ACTIONS(1839), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_new] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(247), }, [392] = { + [sym_cell_path] = STATE(663), + [sym_path] = STATE(532), [sym_comment] = STATE(392), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1350), - [aux_sym_cmd_identifier_token2] = ACTIONS(1350), - [aux_sym_cmd_identifier_token3] = ACTIONS(1350), - [aux_sym_cmd_identifier_token4] = ACTIONS(1350), - [aux_sym_cmd_identifier_token5] = ACTIONS(1350), - [aux_sym_cmd_identifier_token6] = ACTIONS(1350), - [aux_sym_cmd_identifier_token7] = ACTIONS(1350), - [aux_sym_cmd_identifier_token8] = ACTIONS(1350), - [aux_sym_cmd_identifier_token9] = ACTIONS(1350), - [aux_sym_cmd_identifier_token10] = ACTIONS(1350), - [aux_sym_cmd_identifier_token11] = ACTIONS(1350), - [aux_sym_cmd_identifier_token12] = ACTIONS(1350), - [aux_sym_cmd_identifier_token13] = ACTIONS(1350), - [aux_sym_cmd_identifier_token14] = ACTIONS(1350), - [aux_sym_cmd_identifier_token15] = ACTIONS(1350), - [aux_sym_cmd_identifier_token16] = ACTIONS(1350), - [aux_sym_cmd_identifier_token17] = ACTIONS(1350), - [aux_sym_cmd_identifier_token18] = ACTIONS(1350), - [aux_sym_cmd_identifier_token19] = ACTIONS(1350), - [aux_sym_cmd_identifier_token20] = ACTIONS(1350), - [aux_sym_cmd_identifier_token21] = ACTIONS(1350), - [aux_sym_cmd_identifier_token22] = ACTIONS(1350), - [aux_sym_cmd_identifier_token23] = ACTIONS(1350), - [aux_sym_cmd_identifier_token24] = ACTIONS(1350), - [aux_sym_cmd_identifier_token25] = ACTIONS(1350), - [aux_sym_cmd_identifier_token26] = ACTIONS(1350), - [aux_sym_cmd_identifier_token27] = ACTIONS(1350), - [aux_sym_cmd_identifier_token28] = ACTIONS(1350), - [aux_sym_cmd_identifier_token29] = ACTIONS(1350), - [aux_sym_cmd_identifier_token30] = ACTIONS(1350), - [aux_sym_cmd_identifier_token31] = ACTIONS(1350), - [aux_sym_cmd_identifier_token32] = ACTIONS(1350), - [aux_sym_cmd_identifier_token33] = ACTIONS(1350), - [aux_sym_cmd_identifier_token34] = ACTIONS(1350), - [aux_sym_cmd_identifier_token35] = ACTIONS(1350), - [aux_sym_cmd_identifier_token36] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [aux_sym_cmd_identifier_token38] = ACTIONS(1350), - [aux_sym_cmd_identifier_token39] = ACTIONS(1350), - [aux_sym_cmd_identifier_token40] = ACTIONS(1350), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1350), - [aux_sym__immediate_decimal_token1] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1350), - [sym__entry_separator] = ACTIONS(1362), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1762), + [anon_sym_alias] = ACTIONS(1762), + [anon_sym_let] = ACTIONS(1762), + [anon_sym_let_DASHenv] = ACTIONS(1762), + [anon_sym_mut] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [aux_sym_cmd_identifier_token1] = ACTIONS(1762), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1762), + [aux_sym_cmd_identifier_token9] = ACTIONS(1762), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1762), + [aux_sym_cmd_identifier_token13] = ACTIONS(1762), + [aux_sym_cmd_identifier_token14] = ACTIONS(1762), + [aux_sym_cmd_identifier_token15] = ACTIONS(1762), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1762), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1764), + [anon_sym_false] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1764), + [aux_sym_cmd_identifier_token38] = ACTIONS(1762), + [aux_sym_cmd_identifier_token39] = ACTIONS(1764), + [aux_sym_cmd_identifier_token40] = ACTIONS(1764), + [anon_sym_def] = ACTIONS(1762), + [anon_sym_export_DASHenv] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_module] = ACTIONS(1762), + [anon_sym_use] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1764), + [anon_sym_error] = ACTIONS(1762), + [anon_sym_list] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_loop] = ACTIONS(1762), + [anon_sym_make] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_do] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_match] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_catch] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_source] = ACTIONS(1762), + [anon_sym_source_DASHenv] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1762), + [anon_sym_hide] = ACTIONS(1762), + [anon_sym_hide_DASHenv] = ACTIONS(1762), + [anon_sym_overlay] = ACTIONS(1762), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1762), + [aux_sym__val_number_decimal_token2] = ACTIONS(1764), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(1764), + [aux_sym__val_number_token2] = ACTIONS(1764), + [aux_sym__val_number_token3] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [sym__str_single_quotes] = ACTIONS(1764), + [sym__str_back_ticks] = ACTIONS(1764), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(247), }, [393] = { + [sym_cell_path] = STATE(642), + [sym_path] = STATE(532), [sym_comment] = STATE(393), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_alias] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_let_DASHenv] = ACTIONS(1923), - [anon_sym_mut] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [aux_sym_cmd_identifier_token1] = ACTIONS(1923), - [aux_sym_cmd_identifier_token2] = ACTIONS(1923), - [aux_sym_cmd_identifier_token3] = ACTIONS(1923), - [aux_sym_cmd_identifier_token4] = ACTIONS(1923), - [aux_sym_cmd_identifier_token5] = ACTIONS(1923), - [aux_sym_cmd_identifier_token6] = ACTIONS(1923), - [aux_sym_cmd_identifier_token7] = ACTIONS(1923), - [aux_sym_cmd_identifier_token8] = ACTIONS(1923), - [aux_sym_cmd_identifier_token9] = ACTIONS(1923), - [aux_sym_cmd_identifier_token10] = ACTIONS(1923), - [aux_sym_cmd_identifier_token11] = ACTIONS(1923), - [aux_sym_cmd_identifier_token12] = ACTIONS(1923), - [aux_sym_cmd_identifier_token13] = ACTIONS(1923), - [aux_sym_cmd_identifier_token14] = ACTIONS(1923), - [aux_sym_cmd_identifier_token15] = ACTIONS(1923), - [aux_sym_cmd_identifier_token16] = ACTIONS(1923), - [aux_sym_cmd_identifier_token17] = ACTIONS(1923), - [aux_sym_cmd_identifier_token18] = ACTIONS(1923), - [aux_sym_cmd_identifier_token19] = ACTIONS(1923), - [aux_sym_cmd_identifier_token20] = ACTIONS(1923), - [aux_sym_cmd_identifier_token21] = ACTIONS(1923), - [aux_sym_cmd_identifier_token22] = ACTIONS(1923), - [aux_sym_cmd_identifier_token23] = ACTIONS(1923), - [aux_sym_cmd_identifier_token24] = ACTIONS(1923), - [aux_sym_cmd_identifier_token25] = ACTIONS(1923), - [aux_sym_cmd_identifier_token26] = ACTIONS(1923), - [aux_sym_cmd_identifier_token27] = ACTIONS(1923), - [aux_sym_cmd_identifier_token28] = ACTIONS(1923), - [aux_sym_cmd_identifier_token29] = ACTIONS(1923), - [aux_sym_cmd_identifier_token30] = ACTIONS(1923), - [aux_sym_cmd_identifier_token31] = ACTIONS(1923), - [aux_sym_cmd_identifier_token32] = ACTIONS(1923), - [aux_sym_cmd_identifier_token33] = ACTIONS(1923), - [aux_sym_cmd_identifier_token34] = ACTIONS(1923), - [aux_sym_cmd_identifier_token35] = ACTIONS(1923), - [aux_sym_cmd_identifier_token36] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1923), - [aux_sym_cmd_identifier_token38] = ACTIONS(1923), - [aux_sym_cmd_identifier_token39] = ACTIONS(1923), - [aux_sym_cmd_identifier_token40] = ACTIONS(1923), - [anon_sym_def] = ACTIONS(1923), - [anon_sym_export_DASHenv] = ACTIONS(1923), - [anon_sym_extern] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_use] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_error] = ACTIONS(1923), - [anon_sym_list] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_in] = ACTIONS(1923), - [anon_sym_loop] = ACTIONS(1923), - [anon_sym_make] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_match] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_catch] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_source] = ACTIONS(1923), - [anon_sym_source_DASHenv] = ACTIONS(1923), - [anon_sym_register] = ACTIONS(1923), - [anon_sym_hide] = ACTIONS(1923), - [anon_sym_hide_DASHenv] = ACTIONS(1923), - [anon_sym_overlay] = ACTIONS(1923), - [anon_sym_new] = ACTIONS(1923), - [anon_sym_as] = ACTIONS(1923), - [anon_sym_LPAREN2] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1923), - [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1923), - [aux_sym__val_number_decimal_token1] = ACTIONS(1923), - [aux_sym__val_number_decimal_token2] = ACTIONS(1923), - [anon_sym_DOT2] = ACTIONS(1923), - [aux_sym__val_number_decimal_token3] = ACTIONS(1923), - [aux_sym__val_number_token1] = ACTIONS(1923), - [aux_sym__val_number_token2] = ACTIONS(1923), - [aux_sym__val_number_token3] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [sym__str_single_quotes] = ACTIONS(1923), - [sym__str_back_ticks] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1923), - [sym__entry_separator] = ACTIONS(1927), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1770), + [anon_sym_alias] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1770), + [anon_sym_let_DASHenv] = ACTIONS(1770), + [anon_sym_mut] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [aux_sym_cmd_identifier_token1] = ACTIONS(1770), + [aux_sym_cmd_identifier_token2] = ACTIONS(1770), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [aux_sym_cmd_identifier_token6] = ACTIONS(1770), + [aux_sym_cmd_identifier_token7] = ACTIONS(1770), + [aux_sym_cmd_identifier_token8] = ACTIONS(1770), + [aux_sym_cmd_identifier_token9] = ACTIONS(1770), + [aux_sym_cmd_identifier_token10] = ACTIONS(1770), + [aux_sym_cmd_identifier_token11] = ACTIONS(1770), + [aux_sym_cmd_identifier_token12] = ACTIONS(1770), + [aux_sym_cmd_identifier_token13] = ACTIONS(1770), + [aux_sym_cmd_identifier_token14] = ACTIONS(1770), + [aux_sym_cmd_identifier_token15] = ACTIONS(1770), + [aux_sym_cmd_identifier_token16] = ACTIONS(1770), + [aux_sym_cmd_identifier_token17] = ACTIONS(1770), + [aux_sym_cmd_identifier_token18] = ACTIONS(1770), + [aux_sym_cmd_identifier_token19] = ACTIONS(1770), + [aux_sym_cmd_identifier_token20] = ACTIONS(1770), + [aux_sym_cmd_identifier_token21] = ACTIONS(1770), + [aux_sym_cmd_identifier_token22] = ACTIONS(1770), + [aux_sym_cmd_identifier_token23] = ACTIONS(1770), + [aux_sym_cmd_identifier_token24] = ACTIONS(1770), + [aux_sym_cmd_identifier_token25] = ACTIONS(1770), + [aux_sym_cmd_identifier_token26] = ACTIONS(1770), + [aux_sym_cmd_identifier_token27] = ACTIONS(1770), + [aux_sym_cmd_identifier_token28] = ACTIONS(1770), + [aux_sym_cmd_identifier_token29] = ACTIONS(1770), + [aux_sym_cmd_identifier_token30] = ACTIONS(1770), + [aux_sym_cmd_identifier_token31] = ACTIONS(1770), + [aux_sym_cmd_identifier_token32] = ACTIONS(1770), + [aux_sym_cmd_identifier_token33] = ACTIONS(1770), + [aux_sym_cmd_identifier_token34] = ACTIONS(1770), + [aux_sym_cmd_identifier_token35] = ACTIONS(1770), + [aux_sym_cmd_identifier_token36] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1770), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [anon_sym_def] = ACTIONS(1770), + [anon_sym_export_DASHenv] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_module] = ACTIONS(1770), + [anon_sym_use] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_error] = ACTIONS(1770), + [anon_sym_list] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_loop] = ACTIONS(1770), + [anon_sym_make] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_match] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1770), + [anon_sym_catch] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_source] = ACTIONS(1770), + [anon_sym_source_DASHenv] = ACTIONS(1770), + [anon_sym_register] = ACTIONS(1770), + [anon_sym_hide] = ACTIONS(1770), + [anon_sym_hide_DASHenv] = ACTIONS(1770), + [anon_sym_overlay] = ACTIONS(1770), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1770), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(247), }, [394] = { [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [aux_sym__immediate_decimal_token2] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), }, [395] = { + [sym_cell_path] = STATE(607), + [sym_path] = STATE(532), [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1931), - [aux_sym_cmd_identifier_token40] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_list] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), - [anon_sym_DOT_DOT2] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [anon_sym_DOT2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), - [sym__entry_separator] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1774), + [anon_sym_alias] = ACTIONS(1774), + [anon_sym_let] = ACTIONS(1774), + [anon_sym_let_DASHenv] = ACTIONS(1774), + [anon_sym_mut] = ACTIONS(1774), + [anon_sym_const] = ACTIONS(1774), + [aux_sym_cmd_identifier_token1] = ACTIONS(1774), + [aux_sym_cmd_identifier_token2] = ACTIONS(1774), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [aux_sym_cmd_identifier_token6] = ACTIONS(1774), + [aux_sym_cmd_identifier_token7] = ACTIONS(1774), + [aux_sym_cmd_identifier_token8] = ACTIONS(1774), + [aux_sym_cmd_identifier_token9] = ACTIONS(1774), + [aux_sym_cmd_identifier_token10] = ACTIONS(1774), + [aux_sym_cmd_identifier_token11] = ACTIONS(1774), + [aux_sym_cmd_identifier_token12] = ACTIONS(1774), + [aux_sym_cmd_identifier_token13] = ACTIONS(1774), + [aux_sym_cmd_identifier_token14] = ACTIONS(1774), + [aux_sym_cmd_identifier_token15] = ACTIONS(1774), + [aux_sym_cmd_identifier_token16] = ACTIONS(1774), + [aux_sym_cmd_identifier_token17] = ACTIONS(1774), + [aux_sym_cmd_identifier_token18] = ACTIONS(1774), + [aux_sym_cmd_identifier_token19] = ACTIONS(1774), + [aux_sym_cmd_identifier_token20] = ACTIONS(1774), + [aux_sym_cmd_identifier_token21] = ACTIONS(1774), + [aux_sym_cmd_identifier_token22] = ACTIONS(1774), + [aux_sym_cmd_identifier_token23] = ACTIONS(1774), + [aux_sym_cmd_identifier_token24] = ACTIONS(1774), + [aux_sym_cmd_identifier_token25] = ACTIONS(1774), + [aux_sym_cmd_identifier_token26] = ACTIONS(1774), + [aux_sym_cmd_identifier_token27] = ACTIONS(1774), + [aux_sym_cmd_identifier_token28] = ACTIONS(1774), + [aux_sym_cmd_identifier_token29] = ACTIONS(1774), + [aux_sym_cmd_identifier_token30] = ACTIONS(1774), + [aux_sym_cmd_identifier_token31] = ACTIONS(1774), + [aux_sym_cmd_identifier_token32] = ACTIONS(1774), + [aux_sym_cmd_identifier_token33] = ACTIONS(1774), + [aux_sym_cmd_identifier_token34] = ACTIONS(1774), + [aux_sym_cmd_identifier_token35] = ACTIONS(1774), + [aux_sym_cmd_identifier_token36] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1776), + [anon_sym_false] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1776), + [aux_sym_cmd_identifier_token38] = ACTIONS(1774), + [aux_sym_cmd_identifier_token39] = ACTIONS(1776), + [aux_sym_cmd_identifier_token40] = ACTIONS(1776), + [anon_sym_def] = ACTIONS(1774), + [anon_sym_export_DASHenv] = ACTIONS(1774), + [anon_sym_extern] = ACTIONS(1774), + [anon_sym_module] = ACTIONS(1774), + [anon_sym_use] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_error] = ACTIONS(1774), + [anon_sym_list] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_for] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_loop] = ACTIONS(1774), + [anon_sym_make] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_do] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_match] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_catch] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_source] = ACTIONS(1774), + [anon_sym_source_DASHenv] = ACTIONS(1774), + [anon_sym_register] = ACTIONS(1774), + [anon_sym_hide] = ACTIONS(1774), + [anon_sym_hide_DASHenv] = ACTIONS(1774), + [anon_sym_overlay] = ACTIONS(1774), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1776), + [aux_sym__val_number_decimal_token1] = ACTIONS(1774), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1776), + [aux_sym__val_number_token2] = ACTIONS(1776), + [aux_sym__val_number_token3] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1776), + [sym__str_single_quotes] = ACTIONS(1776), + [sym__str_back_ticks] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(247), }, [396] = { [sym_comment] = STATE(396), - [anon_sym_export] = ACTIONS(1939), - [anon_sym_alias] = ACTIONS(1939), - [anon_sym_let] = ACTIONS(1939), - [anon_sym_let_DASHenv] = ACTIONS(1939), - [anon_sym_mut] = ACTIONS(1939), - [anon_sym_const] = ACTIONS(1939), - [aux_sym_cmd_identifier_token1] = ACTIONS(1939), - [aux_sym_cmd_identifier_token2] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1939), - [aux_sym_cmd_identifier_token4] = ACTIONS(1939), - [aux_sym_cmd_identifier_token5] = ACTIONS(1939), - [aux_sym_cmd_identifier_token6] = ACTIONS(1939), - [aux_sym_cmd_identifier_token7] = ACTIONS(1939), - [aux_sym_cmd_identifier_token8] = ACTIONS(1939), - [aux_sym_cmd_identifier_token9] = ACTIONS(1939), - [aux_sym_cmd_identifier_token10] = ACTIONS(1939), - [aux_sym_cmd_identifier_token11] = ACTIONS(1939), - [aux_sym_cmd_identifier_token12] = ACTIONS(1939), - [aux_sym_cmd_identifier_token13] = ACTIONS(1939), - [aux_sym_cmd_identifier_token14] = ACTIONS(1939), - [aux_sym_cmd_identifier_token15] = ACTIONS(1939), - [aux_sym_cmd_identifier_token16] = ACTIONS(1939), - [aux_sym_cmd_identifier_token17] = ACTIONS(1939), - [aux_sym_cmd_identifier_token18] = ACTIONS(1939), - [aux_sym_cmd_identifier_token19] = ACTIONS(1939), - [aux_sym_cmd_identifier_token20] = ACTIONS(1939), - [aux_sym_cmd_identifier_token21] = ACTIONS(1939), - [aux_sym_cmd_identifier_token22] = ACTIONS(1939), - [aux_sym_cmd_identifier_token23] = ACTIONS(1939), - [aux_sym_cmd_identifier_token24] = ACTIONS(1939), - [aux_sym_cmd_identifier_token25] = ACTIONS(1939), - [aux_sym_cmd_identifier_token26] = ACTIONS(1939), - [aux_sym_cmd_identifier_token27] = ACTIONS(1939), - [aux_sym_cmd_identifier_token28] = ACTIONS(1939), - [aux_sym_cmd_identifier_token29] = ACTIONS(1939), - [aux_sym_cmd_identifier_token30] = ACTIONS(1939), - [aux_sym_cmd_identifier_token31] = ACTIONS(1939), - [aux_sym_cmd_identifier_token32] = ACTIONS(1939), - [aux_sym_cmd_identifier_token33] = ACTIONS(1939), - [aux_sym_cmd_identifier_token34] = ACTIONS(1939), - [aux_sym_cmd_identifier_token35] = ACTIONS(1939), - [aux_sym_cmd_identifier_token36] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token38] = ACTIONS(1939), - [aux_sym_cmd_identifier_token39] = ACTIONS(1939), - [aux_sym_cmd_identifier_token40] = ACTIONS(1939), - [anon_sym_def] = ACTIONS(1939), - [anon_sym_export_DASHenv] = ACTIONS(1939), - [anon_sym_extern] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1939), - [anon_sym_use] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1939), - [anon_sym_error] = ACTIONS(1939), - [anon_sym_list] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_break] = ACTIONS(1939), - [anon_sym_continue] = ACTIONS(1939), - [anon_sym_for] = ACTIONS(1939), - [anon_sym_in] = ACTIONS(1939), - [anon_sym_loop] = ACTIONS(1939), - [anon_sym_make] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1939), - [anon_sym_do] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_else] = ACTIONS(1939), - [anon_sym_match] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1939), - [anon_sym_catch] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(1939), - [anon_sym_source] = ACTIONS(1939), - [anon_sym_source_DASHenv] = ACTIONS(1939), - [anon_sym_register] = ACTIONS(1939), - [anon_sym_hide] = ACTIONS(1939), - [anon_sym_hide_DASHenv] = ACTIONS(1939), - [anon_sym_overlay] = ACTIONS(1939), - [anon_sym_new] = ACTIONS(1939), - [anon_sym_as] = ACTIONS(1939), - [anon_sym_LPAREN2] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), - [anon_sym_DOT] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1939), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), - [sym__entry_separator] = ACTIONS(1945), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_list] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_new] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), }, [397] = { - [sym_cell_path] = STATE(615), - [sym_path] = STATE(572), + [sym_cell_path] = STATE(612), + [sym_path] = STATE(532), [sym_comment] = STATE(397), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1723), - [anon_sym_alias] = ACTIONS(1723), - [anon_sym_let] = ACTIONS(1723), - [anon_sym_let_DASHenv] = ACTIONS(1723), - [anon_sym_mut] = ACTIONS(1723), - [anon_sym_const] = ACTIONS(1723), - [aux_sym_cmd_identifier_token1] = ACTIONS(1723), - [aux_sym_cmd_identifier_token2] = ACTIONS(1723), - [aux_sym_cmd_identifier_token3] = ACTIONS(1723), - [aux_sym_cmd_identifier_token4] = ACTIONS(1723), - [aux_sym_cmd_identifier_token5] = ACTIONS(1723), - [aux_sym_cmd_identifier_token6] = ACTIONS(1723), - [aux_sym_cmd_identifier_token7] = ACTIONS(1723), - [aux_sym_cmd_identifier_token8] = ACTIONS(1723), - [aux_sym_cmd_identifier_token9] = ACTIONS(1723), - [aux_sym_cmd_identifier_token10] = ACTIONS(1723), - [aux_sym_cmd_identifier_token11] = ACTIONS(1723), - [aux_sym_cmd_identifier_token12] = ACTIONS(1723), - [aux_sym_cmd_identifier_token13] = ACTIONS(1723), - [aux_sym_cmd_identifier_token14] = ACTIONS(1723), - [aux_sym_cmd_identifier_token15] = ACTIONS(1723), - [aux_sym_cmd_identifier_token16] = ACTIONS(1723), - [aux_sym_cmd_identifier_token17] = ACTIONS(1723), - [aux_sym_cmd_identifier_token18] = ACTIONS(1723), - [aux_sym_cmd_identifier_token19] = ACTIONS(1723), - [aux_sym_cmd_identifier_token20] = ACTIONS(1723), - [aux_sym_cmd_identifier_token21] = ACTIONS(1723), - [aux_sym_cmd_identifier_token22] = ACTIONS(1723), - [aux_sym_cmd_identifier_token23] = ACTIONS(1723), - [aux_sym_cmd_identifier_token24] = ACTIONS(1723), - [aux_sym_cmd_identifier_token25] = ACTIONS(1723), - [aux_sym_cmd_identifier_token26] = ACTIONS(1723), - [aux_sym_cmd_identifier_token27] = ACTIONS(1723), - [aux_sym_cmd_identifier_token28] = ACTIONS(1723), - [aux_sym_cmd_identifier_token29] = ACTIONS(1723), - [aux_sym_cmd_identifier_token30] = ACTIONS(1723), - [aux_sym_cmd_identifier_token31] = ACTIONS(1723), - [aux_sym_cmd_identifier_token32] = ACTIONS(1723), - [aux_sym_cmd_identifier_token33] = ACTIONS(1723), - [aux_sym_cmd_identifier_token34] = ACTIONS(1723), - [aux_sym_cmd_identifier_token35] = ACTIONS(1723), - [aux_sym_cmd_identifier_token36] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1723), - [anon_sym_export_DASHenv] = ACTIONS(1723), - [anon_sym_extern] = ACTIONS(1723), - [anon_sym_module] = ACTIONS(1723), - [anon_sym_use] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1723), - [anon_sym_list] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_in] = ACTIONS(1723), - [anon_sym_loop] = ACTIONS(1723), - [anon_sym_make] = ACTIONS(1723), - [anon_sym_while] = ACTIONS(1723), - [anon_sym_do] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_else] = ACTIONS(1723), - [anon_sym_match] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1723), - [anon_sym_catch] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1723), - [anon_sym_source] = ACTIONS(1723), - [anon_sym_source_DASHenv] = ACTIONS(1723), - [anon_sym_register] = ACTIONS(1723), - [anon_sym_hide] = ACTIONS(1723), - [anon_sym_hide_DASHenv] = ACTIONS(1723), - [anon_sym_overlay] = ACTIONS(1723), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_as] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1723), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [anon_sym_DOT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_alias] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_let_DASHenv] = ACTIONS(1778), + [anon_sym_mut] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [aux_sym_cmd_identifier_token1] = ACTIONS(1778), + [aux_sym_cmd_identifier_token2] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1778), + [aux_sym_cmd_identifier_token4] = ACTIONS(1778), + [aux_sym_cmd_identifier_token5] = ACTIONS(1778), + [aux_sym_cmd_identifier_token6] = ACTIONS(1778), + [aux_sym_cmd_identifier_token7] = ACTIONS(1778), + [aux_sym_cmd_identifier_token8] = ACTIONS(1778), + [aux_sym_cmd_identifier_token9] = ACTIONS(1778), + [aux_sym_cmd_identifier_token10] = ACTIONS(1778), + [aux_sym_cmd_identifier_token11] = ACTIONS(1778), + [aux_sym_cmd_identifier_token12] = ACTIONS(1778), + [aux_sym_cmd_identifier_token13] = ACTIONS(1778), + [aux_sym_cmd_identifier_token14] = ACTIONS(1778), + [aux_sym_cmd_identifier_token15] = ACTIONS(1778), + [aux_sym_cmd_identifier_token16] = ACTIONS(1778), + [aux_sym_cmd_identifier_token17] = ACTIONS(1778), + [aux_sym_cmd_identifier_token18] = ACTIONS(1778), + [aux_sym_cmd_identifier_token19] = ACTIONS(1778), + [aux_sym_cmd_identifier_token20] = ACTIONS(1778), + [aux_sym_cmd_identifier_token21] = ACTIONS(1778), + [aux_sym_cmd_identifier_token22] = ACTIONS(1778), + [aux_sym_cmd_identifier_token23] = ACTIONS(1778), + [aux_sym_cmd_identifier_token24] = ACTIONS(1778), + [aux_sym_cmd_identifier_token25] = ACTIONS(1778), + [aux_sym_cmd_identifier_token26] = ACTIONS(1778), + [aux_sym_cmd_identifier_token27] = ACTIONS(1778), + [aux_sym_cmd_identifier_token28] = ACTIONS(1778), + [aux_sym_cmd_identifier_token29] = ACTIONS(1778), + [aux_sym_cmd_identifier_token30] = ACTIONS(1778), + [aux_sym_cmd_identifier_token31] = ACTIONS(1778), + [aux_sym_cmd_identifier_token32] = ACTIONS(1778), + [aux_sym_cmd_identifier_token33] = ACTIONS(1778), + [aux_sym_cmd_identifier_token34] = ACTIONS(1778), + [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token36] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), + [aux_sym_cmd_identifier_token38] = ACTIONS(1778), + [aux_sym_cmd_identifier_token39] = ACTIONS(1780), + [aux_sym_cmd_identifier_token40] = ACTIONS(1780), + [anon_sym_def] = ACTIONS(1778), + [anon_sym_export_DASHenv] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_error] = ACTIONS(1778), + [anon_sym_list] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_make] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_do] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_else] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1778), + [anon_sym_catch] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_source] = ACTIONS(1778), + [anon_sym_source_DASHenv] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1778), + [anon_sym_hide] = ACTIONS(1778), + [anon_sym_hide_DASHenv] = ACTIONS(1778), + [anon_sym_overlay] = ACTIONS(1778), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_as] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1780), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1780), + [aux_sym__val_number_decimal_token3] = ACTIONS(1780), + [aux_sym__val_number_decimal_token4] = ACTIONS(1780), + [aux_sym__val_number_token1] = ACTIONS(1780), + [aux_sym__val_number_token2] = ACTIONS(1780), + [aux_sym__val_number_token3] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [sym__str_single_quotes] = ACTIONS(1780), + [sym__str_back_ticks] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(247), }, [398] = { [sym_comment] = STATE(398), - [anon_sym_export] = ACTIONS(1947), - [anon_sym_alias] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_let_DASHenv] = ACTIONS(1947), - [anon_sym_mut] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [aux_sym_cmd_identifier_token1] = ACTIONS(1947), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1947), - [aux_sym_cmd_identifier_token9] = ACTIONS(1947), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1947), - [aux_sym_cmd_identifier_token13] = ACTIONS(1947), - [aux_sym_cmd_identifier_token14] = ACTIONS(1947), - [aux_sym_cmd_identifier_token15] = ACTIONS(1947), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1947), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1947), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1947), - [anon_sym_export_DASHenv] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_module] = ACTIONS(1947), - [anon_sym_use] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_error] = ACTIONS(1947), - [anon_sym_list] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_in] = ACTIONS(1947), - [anon_sym_loop] = ACTIONS(1947), - [anon_sym_make] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_source] = ACTIONS(1947), - [anon_sym_source_DASHenv] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_hide] = ACTIONS(1947), - [anon_sym_hide_DASHenv] = ACTIONS(1947), - [anon_sym_overlay] = ACTIONS(1947), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_as] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT_DOT2] = ACTIONS(1949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [sym__entry_separator] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(970), + [anon_sym_alias] = ACTIONS(970), + [anon_sym_let] = ACTIONS(970), + [anon_sym_let_DASHenv] = ACTIONS(970), + [anon_sym_mut] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [aux_sym_cmd_identifier_token1] = ACTIONS(970), + [aux_sym_cmd_identifier_token2] = ACTIONS(970), + [aux_sym_cmd_identifier_token3] = ACTIONS(970), + [aux_sym_cmd_identifier_token4] = ACTIONS(970), + [aux_sym_cmd_identifier_token5] = ACTIONS(970), + [aux_sym_cmd_identifier_token6] = ACTIONS(970), + [aux_sym_cmd_identifier_token7] = ACTIONS(970), + [aux_sym_cmd_identifier_token8] = ACTIONS(970), + [aux_sym_cmd_identifier_token9] = ACTIONS(970), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(970), + [aux_sym_cmd_identifier_token13] = ACTIONS(970), + [aux_sym_cmd_identifier_token14] = ACTIONS(970), + [aux_sym_cmd_identifier_token15] = ACTIONS(970), + [aux_sym_cmd_identifier_token16] = ACTIONS(970), + [aux_sym_cmd_identifier_token17] = ACTIONS(970), + [aux_sym_cmd_identifier_token18] = ACTIONS(970), + [aux_sym_cmd_identifier_token19] = ACTIONS(970), + [aux_sym_cmd_identifier_token20] = ACTIONS(970), + [aux_sym_cmd_identifier_token21] = ACTIONS(970), + [aux_sym_cmd_identifier_token22] = ACTIONS(970), + [aux_sym_cmd_identifier_token23] = ACTIONS(970), + [aux_sym_cmd_identifier_token24] = ACTIONS(970), + [aux_sym_cmd_identifier_token25] = ACTIONS(970), + [aux_sym_cmd_identifier_token26] = ACTIONS(970), + [aux_sym_cmd_identifier_token27] = ACTIONS(970), + [aux_sym_cmd_identifier_token28] = ACTIONS(970), + [aux_sym_cmd_identifier_token29] = ACTIONS(970), + [aux_sym_cmd_identifier_token30] = ACTIONS(970), + [aux_sym_cmd_identifier_token31] = ACTIONS(970), + [aux_sym_cmd_identifier_token32] = ACTIONS(970), + [aux_sym_cmd_identifier_token33] = ACTIONS(970), + [aux_sym_cmd_identifier_token34] = ACTIONS(970), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_null] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(970), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [anon_sym_def] = ACTIONS(970), + [anon_sym_export_DASHenv] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_use] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(970), + [anon_sym_list] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_in] = ACTIONS(970), + [anon_sym_loop] = ACTIONS(970), + [anon_sym_make] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_match] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(970), + [anon_sym_catch] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_source] = ACTIONS(970), + [anon_sym_source_DASHenv] = ACTIONS(970), + [anon_sym_register] = ACTIONS(970), + [anon_sym_hide] = ACTIONS(970), + [anon_sym_hide_DASHenv] = ACTIONS(970), + [anon_sym_overlay] = ACTIONS(970), + [anon_sym_new] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), + [aux_sym_record_entry_token1] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), }, [399] = { [sym_comment] = STATE(399), - [anon_sym_export] = ACTIONS(916), - [anon_sym_alias] = ACTIONS(916), - [anon_sym_let] = ACTIONS(916), - [anon_sym_let_DASHenv] = ACTIONS(916), - [anon_sym_mut] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [aux_sym_cmd_identifier_token1] = ACTIONS(916), - [aux_sym_cmd_identifier_token2] = ACTIONS(916), - [aux_sym_cmd_identifier_token3] = ACTIONS(916), - [aux_sym_cmd_identifier_token4] = ACTIONS(916), - [aux_sym_cmd_identifier_token5] = ACTIONS(916), - [aux_sym_cmd_identifier_token6] = ACTIONS(916), - [aux_sym_cmd_identifier_token7] = ACTIONS(916), - [aux_sym_cmd_identifier_token8] = ACTIONS(916), - [aux_sym_cmd_identifier_token9] = ACTIONS(916), - [aux_sym_cmd_identifier_token10] = ACTIONS(916), - [aux_sym_cmd_identifier_token11] = ACTIONS(916), - [aux_sym_cmd_identifier_token12] = ACTIONS(916), - [aux_sym_cmd_identifier_token13] = ACTIONS(916), - [aux_sym_cmd_identifier_token14] = ACTIONS(916), - [aux_sym_cmd_identifier_token15] = ACTIONS(916), - [aux_sym_cmd_identifier_token16] = ACTIONS(916), - [aux_sym_cmd_identifier_token17] = ACTIONS(916), - [aux_sym_cmd_identifier_token18] = ACTIONS(916), - [aux_sym_cmd_identifier_token19] = ACTIONS(916), - [aux_sym_cmd_identifier_token20] = ACTIONS(916), - [aux_sym_cmd_identifier_token21] = ACTIONS(916), - [aux_sym_cmd_identifier_token22] = ACTIONS(916), - [aux_sym_cmd_identifier_token23] = ACTIONS(916), - [aux_sym_cmd_identifier_token24] = ACTIONS(916), - [aux_sym_cmd_identifier_token25] = ACTIONS(916), - [aux_sym_cmd_identifier_token26] = ACTIONS(916), - [aux_sym_cmd_identifier_token27] = ACTIONS(916), - [aux_sym_cmd_identifier_token28] = ACTIONS(916), - [aux_sym_cmd_identifier_token29] = ACTIONS(916), - [aux_sym_cmd_identifier_token30] = ACTIONS(916), - [aux_sym_cmd_identifier_token31] = ACTIONS(916), - [aux_sym_cmd_identifier_token32] = ACTIONS(916), - [aux_sym_cmd_identifier_token33] = ACTIONS(916), - [aux_sym_cmd_identifier_token34] = ACTIONS(916), - [aux_sym_cmd_identifier_token35] = ACTIONS(916), - [aux_sym_cmd_identifier_token36] = ACTIONS(916), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(916), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [anon_sym_def] = ACTIONS(916), - [anon_sym_export_DASHenv] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_use] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_error] = ACTIONS(916), - [anon_sym_list] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [anon_sym_loop] = ACTIONS(916), - [anon_sym_make] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_match] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_try] = ACTIONS(916), - [anon_sym_catch] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_source] = ACTIONS(916), - [anon_sym_source_DASHenv] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_hide] = ACTIONS(916), - [anon_sym_hide_DASHenv] = ACTIONS(916), - [anon_sym_overlay] = ACTIONS(916), - [anon_sym_new] = ACTIONS(916), - [anon_sym_as] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(918), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(918), - [aux_sym_record_entry_token1] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(980), + [anon_sym_list] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_new] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [aux_sym_record_entry_token1] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [400] = { [sym_comment] = STATE(400), - [anon_sym_export] = ACTIONS(1955), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_let_DASHenv] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1955), - [aux_sym_cmd_identifier_token2] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [aux_sym_cmd_identifier_token6] = ACTIONS(1955), - [aux_sym_cmd_identifier_token7] = ACTIONS(1955), - [aux_sym_cmd_identifier_token8] = ACTIONS(1955), - [aux_sym_cmd_identifier_token9] = ACTIONS(1955), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [aux_sym_cmd_identifier_token12] = ACTIONS(1955), - [aux_sym_cmd_identifier_token13] = ACTIONS(1955), - [aux_sym_cmd_identifier_token14] = ACTIONS(1955), - [aux_sym_cmd_identifier_token15] = ACTIONS(1955), - [aux_sym_cmd_identifier_token16] = ACTIONS(1955), - [aux_sym_cmd_identifier_token17] = ACTIONS(1955), - [aux_sym_cmd_identifier_token18] = ACTIONS(1955), - [aux_sym_cmd_identifier_token19] = ACTIONS(1955), - [aux_sym_cmd_identifier_token20] = ACTIONS(1955), - [aux_sym_cmd_identifier_token21] = ACTIONS(1955), - [aux_sym_cmd_identifier_token22] = ACTIONS(1955), - [aux_sym_cmd_identifier_token23] = ACTIONS(1955), - [aux_sym_cmd_identifier_token24] = ACTIONS(1955), - [aux_sym_cmd_identifier_token25] = ACTIONS(1955), - [aux_sym_cmd_identifier_token26] = ACTIONS(1955), - [aux_sym_cmd_identifier_token27] = ACTIONS(1955), - [aux_sym_cmd_identifier_token28] = ACTIONS(1955), - [aux_sym_cmd_identifier_token29] = ACTIONS(1955), - [aux_sym_cmd_identifier_token30] = ACTIONS(1955), - [aux_sym_cmd_identifier_token31] = ACTIONS(1955), - [aux_sym_cmd_identifier_token32] = ACTIONS(1955), - [aux_sym_cmd_identifier_token33] = ACTIONS(1955), - [aux_sym_cmd_identifier_token34] = ACTIONS(1955), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_list] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_make] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(1955), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), - [anon_sym_DOT_DOT2] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [sym__entry_separator] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1972), + [anon_sym_alias] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_let_DASHenv] = ACTIONS(1972), + [anon_sym_mut] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [aux_sym_cmd_identifier_token1] = ACTIONS(1972), + [aux_sym_cmd_identifier_token2] = ACTIONS(1972), + [aux_sym_cmd_identifier_token3] = ACTIONS(1972), + [aux_sym_cmd_identifier_token4] = ACTIONS(1972), + [aux_sym_cmd_identifier_token5] = ACTIONS(1972), + [aux_sym_cmd_identifier_token6] = ACTIONS(1972), + [aux_sym_cmd_identifier_token7] = ACTIONS(1972), + [aux_sym_cmd_identifier_token8] = ACTIONS(1972), + [aux_sym_cmd_identifier_token9] = ACTIONS(1972), + [aux_sym_cmd_identifier_token10] = ACTIONS(1972), + [aux_sym_cmd_identifier_token11] = ACTIONS(1972), + [aux_sym_cmd_identifier_token12] = ACTIONS(1972), + [aux_sym_cmd_identifier_token13] = ACTIONS(1972), + [aux_sym_cmd_identifier_token14] = ACTIONS(1972), + [aux_sym_cmd_identifier_token15] = ACTIONS(1972), + [aux_sym_cmd_identifier_token16] = ACTIONS(1972), + [aux_sym_cmd_identifier_token17] = ACTIONS(1972), + [aux_sym_cmd_identifier_token18] = ACTIONS(1972), + [aux_sym_cmd_identifier_token19] = ACTIONS(1972), + [aux_sym_cmd_identifier_token20] = ACTIONS(1972), + [aux_sym_cmd_identifier_token21] = ACTIONS(1972), + [aux_sym_cmd_identifier_token22] = ACTIONS(1972), + [aux_sym_cmd_identifier_token23] = ACTIONS(1972), + [aux_sym_cmd_identifier_token24] = ACTIONS(1972), + [aux_sym_cmd_identifier_token25] = ACTIONS(1972), + [aux_sym_cmd_identifier_token26] = ACTIONS(1972), + [aux_sym_cmd_identifier_token27] = ACTIONS(1972), + [aux_sym_cmd_identifier_token28] = ACTIONS(1972), + [aux_sym_cmd_identifier_token29] = ACTIONS(1972), + [aux_sym_cmd_identifier_token30] = ACTIONS(1972), + [aux_sym_cmd_identifier_token31] = ACTIONS(1972), + [aux_sym_cmd_identifier_token32] = ACTIONS(1972), + [aux_sym_cmd_identifier_token33] = ACTIONS(1972), + [aux_sym_cmd_identifier_token34] = ACTIONS(1972), + [aux_sym_cmd_identifier_token35] = ACTIONS(1972), + [aux_sym_cmd_identifier_token36] = ACTIONS(1972), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [anon_sym_null] = ACTIONS(1972), + [aux_sym_cmd_identifier_token38] = ACTIONS(1972), + [aux_sym_cmd_identifier_token39] = ACTIONS(1972), + [aux_sym_cmd_identifier_token40] = ACTIONS(1972), + [anon_sym_def] = ACTIONS(1972), + [anon_sym_export_DASHenv] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_error] = ACTIONS(1972), + [anon_sym_list] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_make] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_source] = ACTIONS(1972), + [anon_sym_source_DASHenv] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_hide] = ACTIONS(1972), + [anon_sym_hide_DASHenv] = ACTIONS(1972), + [anon_sym_overlay] = ACTIONS(1972), + [anon_sym_new] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1972), + [anon_sym_DOT_DOT2] = ACTIONS(1974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1972), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1972), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(1972), + [aux_sym__val_number_token2] = ACTIONS(1972), + [aux_sym__val_number_token3] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym__str_single_quotes] = ACTIONS(1972), + [sym__str_back_ticks] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1972), + [sym__entry_separator] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(3), }, [401] = { - [sym_cell_path] = STATE(617), - [sym_path] = STATE(572), [sym_comment] = STATE(401), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1733), - [aux_sym_cmd_identifier_token3] = ACTIONS(1733), - [aux_sym_cmd_identifier_token4] = ACTIONS(1733), - [aux_sym_cmd_identifier_token5] = ACTIONS(1733), - [aux_sym_cmd_identifier_token6] = ACTIONS(1733), - [aux_sym_cmd_identifier_token7] = ACTIONS(1733), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1733), - [aux_sym_cmd_identifier_token11] = ACTIONS(1733), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1733), - [aux_sym_cmd_identifier_token17] = ACTIONS(1733), - [aux_sym_cmd_identifier_token18] = ACTIONS(1733), - [aux_sym_cmd_identifier_token19] = ACTIONS(1733), - [aux_sym_cmd_identifier_token20] = ACTIONS(1733), - [aux_sym_cmd_identifier_token21] = ACTIONS(1733), - [aux_sym_cmd_identifier_token22] = ACTIONS(1733), - [aux_sym_cmd_identifier_token23] = ACTIONS(1733), - [aux_sym_cmd_identifier_token24] = ACTIONS(1733), - [aux_sym_cmd_identifier_token25] = ACTIONS(1733), - [aux_sym_cmd_identifier_token26] = ACTIONS(1733), - [aux_sym_cmd_identifier_token27] = ACTIONS(1733), - [aux_sym_cmd_identifier_token28] = ACTIONS(1733), - [aux_sym_cmd_identifier_token29] = ACTIONS(1733), - [aux_sym_cmd_identifier_token30] = ACTIONS(1733), - [aux_sym_cmd_identifier_token31] = ACTIONS(1733), - [aux_sym_cmd_identifier_token32] = ACTIONS(1733), - [aux_sym_cmd_identifier_token33] = ACTIONS(1733), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1733), - [aux_sym_cmd_identifier_token36] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [anon_sym_null] = ACTIONS(1735), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1735), - [aux_sym_cmd_identifier_token40] = ACTIONS(1735), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_list] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [anon_sym_DOT2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1648), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1648), + [aux_sym_cmd_identifier_token40] = ACTIONS(1648), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), + [aux_sym__immediate_decimal_token2] = ACTIONS(1980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1648), + [aux_sym__val_number_decimal_token3] = ACTIONS(1648), + [aux_sym__val_number_decimal_token4] = ACTIONS(1648), + [aux_sym__val_number_token1] = ACTIONS(1648), + [aux_sym__val_number_token2] = ACTIONS(1648), + [aux_sym__val_number_token3] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [sym__str_single_quotes] = ACTIONS(1648), + [sym__str_back_ticks] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), + [sym__entry_separator] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), [anon_sym_POUND] = ACTIONS(3), }, [402] = { - [sym_cell_path] = STATE(599), - [sym_path] = STATE(572), [sym_comment] = STATE(402), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_alias] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_let_DASHenv] = ACTIONS(1729), - [anon_sym_mut] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [aux_sym_cmd_identifier_token1] = ACTIONS(1729), - [aux_sym_cmd_identifier_token2] = ACTIONS(1729), - [aux_sym_cmd_identifier_token3] = ACTIONS(1729), - [aux_sym_cmd_identifier_token4] = ACTIONS(1729), - [aux_sym_cmd_identifier_token5] = ACTIONS(1729), - [aux_sym_cmd_identifier_token6] = ACTIONS(1729), - [aux_sym_cmd_identifier_token7] = ACTIONS(1729), - [aux_sym_cmd_identifier_token8] = ACTIONS(1729), - [aux_sym_cmd_identifier_token9] = ACTIONS(1729), - [aux_sym_cmd_identifier_token10] = ACTIONS(1729), - [aux_sym_cmd_identifier_token11] = ACTIONS(1729), - [aux_sym_cmd_identifier_token12] = ACTIONS(1729), - [aux_sym_cmd_identifier_token13] = ACTIONS(1729), - [aux_sym_cmd_identifier_token14] = ACTIONS(1729), - [aux_sym_cmd_identifier_token15] = ACTIONS(1729), - [aux_sym_cmd_identifier_token16] = ACTIONS(1729), - [aux_sym_cmd_identifier_token17] = ACTIONS(1729), - [aux_sym_cmd_identifier_token18] = ACTIONS(1729), - [aux_sym_cmd_identifier_token19] = ACTIONS(1729), - [aux_sym_cmd_identifier_token20] = ACTIONS(1729), - [aux_sym_cmd_identifier_token21] = ACTIONS(1729), - [aux_sym_cmd_identifier_token22] = ACTIONS(1729), - [aux_sym_cmd_identifier_token23] = ACTIONS(1729), - [aux_sym_cmd_identifier_token24] = ACTIONS(1729), - [aux_sym_cmd_identifier_token25] = ACTIONS(1729), - [aux_sym_cmd_identifier_token26] = ACTIONS(1729), - [aux_sym_cmd_identifier_token27] = ACTIONS(1729), - [aux_sym_cmd_identifier_token28] = ACTIONS(1729), - [aux_sym_cmd_identifier_token29] = ACTIONS(1729), - [aux_sym_cmd_identifier_token30] = ACTIONS(1729), - [aux_sym_cmd_identifier_token31] = ACTIONS(1729), - [aux_sym_cmd_identifier_token32] = ACTIONS(1729), - [aux_sym_cmd_identifier_token33] = ACTIONS(1729), - [aux_sym_cmd_identifier_token34] = ACTIONS(1729), - [aux_sym_cmd_identifier_token35] = ACTIONS(1729), - [aux_sym_cmd_identifier_token36] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [anon_sym_null] = ACTIONS(1731), - [aux_sym_cmd_identifier_token38] = ACTIONS(1729), - [aux_sym_cmd_identifier_token39] = ACTIONS(1731), - [aux_sym_cmd_identifier_token40] = ACTIONS(1731), - [anon_sym_def] = ACTIONS(1729), - [anon_sym_export_DASHenv] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1731), - [anon_sym_error] = ACTIONS(1729), - [anon_sym_list] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_make] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_catch] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_source] = ACTIONS(1729), - [anon_sym_source_DASHenv] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_hide_DASHenv] = ACTIONS(1729), - [anon_sym_overlay] = ACTIONS(1729), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1731), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1731), - [aux_sym__val_number_decimal_token1] = ACTIONS(1729), - [aux_sym__val_number_decimal_token2] = ACTIONS(1731), - [anon_sym_DOT2] = ACTIONS(1729), - [aux_sym__val_number_decimal_token3] = ACTIONS(1731), - [aux_sym__val_number_token1] = ACTIONS(1731), - [aux_sym__val_number_token2] = ACTIONS(1731), - [aux_sym__val_number_token3] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [sym__str_single_quotes] = ACTIONS(1731), - [sym__str_back_ticks] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1731), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [aux_sym_record_entry_token1] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [403] = { - [sym_cell_path] = STATE(625), - [sym_path] = STATE(572), [sym_comment] = STATE(403), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_alias] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_let_DASHenv] = ACTIONS(1689), - [anon_sym_mut] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [aux_sym_cmd_identifier_token1] = ACTIONS(1689), - [aux_sym_cmd_identifier_token2] = ACTIONS(1689), - [aux_sym_cmd_identifier_token3] = ACTIONS(1689), - [aux_sym_cmd_identifier_token4] = ACTIONS(1689), - [aux_sym_cmd_identifier_token5] = ACTIONS(1689), - [aux_sym_cmd_identifier_token6] = ACTIONS(1689), - [aux_sym_cmd_identifier_token7] = ACTIONS(1689), - [aux_sym_cmd_identifier_token8] = ACTIONS(1689), - [aux_sym_cmd_identifier_token9] = ACTIONS(1689), - [aux_sym_cmd_identifier_token10] = ACTIONS(1689), - [aux_sym_cmd_identifier_token11] = ACTIONS(1689), - [aux_sym_cmd_identifier_token12] = ACTIONS(1689), - [aux_sym_cmd_identifier_token13] = ACTIONS(1689), - [aux_sym_cmd_identifier_token14] = ACTIONS(1689), - [aux_sym_cmd_identifier_token15] = ACTIONS(1689), - [aux_sym_cmd_identifier_token16] = ACTIONS(1689), - [aux_sym_cmd_identifier_token17] = ACTIONS(1689), - [aux_sym_cmd_identifier_token18] = ACTIONS(1689), - [aux_sym_cmd_identifier_token19] = ACTIONS(1689), - [aux_sym_cmd_identifier_token20] = ACTIONS(1689), - [aux_sym_cmd_identifier_token21] = ACTIONS(1689), - [aux_sym_cmd_identifier_token22] = ACTIONS(1689), - [aux_sym_cmd_identifier_token23] = ACTIONS(1689), - [aux_sym_cmd_identifier_token24] = ACTIONS(1689), - [aux_sym_cmd_identifier_token25] = ACTIONS(1689), - [aux_sym_cmd_identifier_token26] = ACTIONS(1689), - [aux_sym_cmd_identifier_token27] = ACTIONS(1689), - [aux_sym_cmd_identifier_token28] = ACTIONS(1689), - [aux_sym_cmd_identifier_token29] = ACTIONS(1689), - [aux_sym_cmd_identifier_token30] = ACTIONS(1689), - [aux_sym_cmd_identifier_token31] = ACTIONS(1689), - [aux_sym_cmd_identifier_token32] = ACTIONS(1689), - [aux_sym_cmd_identifier_token33] = ACTIONS(1689), - [aux_sym_cmd_identifier_token34] = ACTIONS(1689), - [aux_sym_cmd_identifier_token35] = ACTIONS(1689), - [aux_sym_cmd_identifier_token36] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(1691), - [anon_sym_false] = ACTIONS(1691), - [anon_sym_null] = ACTIONS(1691), - [aux_sym_cmd_identifier_token38] = ACTIONS(1689), - [aux_sym_cmd_identifier_token39] = ACTIONS(1691), - [aux_sym_cmd_identifier_token40] = ACTIONS(1691), - [anon_sym_def] = ACTIONS(1689), - [anon_sym_export_DASHenv] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_use] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_error] = ACTIONS(1689), - [anon_sym_list] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1689), - [anon_sym_loop] = ACTIONS(1689), - [anon_sym_make] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_match] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_catch] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_source] = ACTIONS(1689), - [anon_sym_source_DASHenv] = ACTIONS(1689), - [anon_sym_register] = ACTIONS(1689), - [anon_sym_hide] = ACTIONS(1689), - [anon_sym_hide_DASHenv] = ACTIONS(1689), - [anon_sym_overlay] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1689), - [anon_sym_as] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1691), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1691), - [aux_sym__val_number_decimal_token1] = ACTIONS(1689), - [aux_sym__val_number_decimal_token2] = ACTIONS(1691), - [anon_sym_DOT2] = ACTIONS(1689), - [aux_sym__val_number_decimal_token3] = ACTIONS(1691), - [aux_sym__val_number_token1] = ACTIONS(1691), - [aux_sym__val_number_token2] = ACTIONS(1691), - [aux_sym__val_number_token3] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [sym__str_single_quotes] = ACTIONS(1691), - [sym__str_back_ticks] = ACTIONS(1691), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), }, [404] = { - [sym_cell_path] = STATE(611), - [sym_path] = STATE(572), [sym_comment] = STATE(404), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1683), - [anon_sym_alias] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1683), - [anon_sym_let_DASHenv] = ACTIONS(1683), - [anon_sym_mut] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [aux_sym_cmd_identifier_token1] = ACTIONS(1683), - [aux_sym_cmd_identifier_token2] = ACTIONS(1683), - [aux_sym_cmd_identifier_token3] = ACTIONS(1683), - [aux_sym_cmd_identifier_token4] = ACTIONS(1683), - [aux_sym_cmd_identifier_token5] = ACTIONS(1683), - [aux_sym_cmd_identifier_token6] = ACTIONS(1683), - [aux_sym_cmd_identifier_token7] = ACTIONS(1683), - [aux_sym_cmd_identifier_token8] = ACTIONS(1683), - [aux_sym_cmd_identifier_token9] = ACTIONS(1683), - [aux_sym_cmd_identifier_token10] = ACTIONS(1683), - [aux_sym_cmd_identifier_token11] = ACTIONS(1683), - [aux_sym_cmd_identifier_token12] = ACTIONS(1683), - [aux_sym_cmd_identifier_token13] = ACTIONS(1683), - [aux_sym_cmd_identifier_token14] = ACTIONS(1683), - [aux_sym_cmd_identifier_token15] = ACTIONS(1683), - [aux_sym_cmd_identifier_token16] = ACTIONS(1683), - [aux_sym_cmd_identifier_token17] = ACTIONS(1683), - [aux_sym_cmd_identifier_token18] = ACTIONS(1683), - [aux_sym_cmd_identifier_token19] = ACTIONS(1683), - [aux_sym_cmd_identifier_token20] = ACTIONS(1683), - [aux_sym_cmd_identifier_token21] = ACTIONS(1683), - [aux_sym_cmd_identifier_token22] = ACTIONS(1683), - [aux_sym_cmd_identifier_token23] = ACTIONS(1683), - [aux_sym_cmd_identifier_token24] = ACTIONS(1683), - [aux_sym_cmd_identifier_token25] = ACTIONS(1683), - [aux_sym_cmd_identifier_token26] = ACTIONS(1683), - [aux_sym_cmd_identifier_token27] = ACTIONS(1683), - [aux_sym_cmd_identifier_token28] = ACTIONS(1683), - [aux_sym_cmd_identifier_token29] = ACTIONS(1683), - [aux_sym_cmd_identifier_token30] = ACTIONS(1683), - [aux_sym_cmd_identifier_token31] = ACTIONS(1683), - [aux_sym_cmd_identifier_token32] = ACTIONS(1683), - [aux_sym_cmd_identifier_token33] = ACTIONS(1683), - [aux_sym_cmd_identifier_token34] = ACTIONS(1683), - [aux_sym_cmd_identifier_token35] = ACTIONS(1683), - [aux_sym_cmd_identifier_token36] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1687), - [anon_sym_false] = ACTIONS(1687), - [anon_sym_null] = ACTIONS(1687), - [aux_sym_cmd_identifier_token38] = ACTIONS(1683), - [aux_sym_cmd_identifier_token39] = ACTIONS(1687), - [aux_sym_cmd_identifier_token40] = ACTIONS(1687), - [anon_sym_def] = ACTIONS(1683), - [anon_sym_export_DASHenv] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym_module] = ACTIONS(1683), - [anon_sym_use] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_error] = ACTIONS(1683), - [anon_sym_list] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_loop] = ACTIONS(1683), - [anon_sym_make] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_else] = ACTIONS(1683), - [anon_sym_match] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1683), - [anon_sym_catch] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_source] = ACTIONS(1683), - [anon_sym_source_DASHenv] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1683), - [anon_sym_hide] = ACTIONS(1683), - [anon_sym_hide_DASHenv] = ACTIONS(1683), - [anon_sym_overlay] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_as] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1687), - [aux_sym__val_number_decimal_token1] = ACTIONS(1683), - [aux_sym__val_number_decimal_token2] = ACTIONS(1687), - [anon_sym_DOT2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1687), - [aux_sym__val_number_token1] = ACTIONS(1687), - [aux_sym__val_number_token2] = ACTIONS(1687), - [aux_sym__val_number_token3] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [sym__str_single_quotes] = ACTIONS(1687), - [sym__str_back_ticks] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_list] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_new] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [aux_sym_record_entry_token1] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [405] = { [sym_comment] = STATE(405), - [anon_sym_export] = ACTIONS(1208), - [anon_sym_alias] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_let_DASHenv] = ACTIONS(1208), - [anon_sym_mut] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [aux_sym_cmd_identifier_token1] = ACTIONS(1208), - [aux_sym_cmd_identifier_token2] = ACTIONS(1208), - [aux_sym_cmd_identifier_token3] = ACTIONS(1208), - [aux_sym_cmd_identifier_token4] = ACTIONS(1208), - [aux_sym_cmd_identifier_token5] = ACTIONS(1208), - [aux_sym_cmd_identifier_token6] = ACTIONS(1208), - [aux_sym_cmd_identifier_token7] = ACTIONS(1208), - [aux_sym_cmd_identifier_token8] = ACTIONS(1208), - [aux_sym_cmd_identifier_token9] = ACTIONS(1208), - [aux_sym_cmd_identifier_token10] = ACTIONS(1208), - [aux_sym_cmd_identifier_token11] = ACTIONS(1208), - [aux_sym_cmd_identifier_token12] = ACTIONS(1208), - [aux_sym_cmd_identifier_token13] = ACTIONS(1208), - [aux_sym_cmd_identifier_token14] = ACTIONS(1208), - [aux_sym_cmd_identifier_token15] = ACTIONS(1208), - [aux_sym_cmd_identifier_token16] = ACTIONS(1208), - [aux_sym_cmd_identifier_token17] = ACTIONS(1208), - [aux_sym_cmd_identifier_token18] = ACTIONS(1208), - [aux_sym_cmd_identifier_token19] = ACTIONS(1208), - [aux_sym_cmd_identifier_token20] = ACTIONS(1208), - [aux_sym_cmd_identifier_token21] = ACTIONS(1208), - [aux_sym_cmd_identifier_token22] = ACTIONS(1208), - [aux_sym_cmd_identifier_token23] = ACTIONS(1208), - [aux_sym_cmd_identifier_token24] = ACTIONS(1211), - [aux_sym_cmd_identifier_token25] = ACTIONS(1208), - [aux_sym_cmd_identifier_token26] = ACTIONS(1211), - [aux_sym_cmd_identifier_token27] = ACTIONS(1208), - [aux_sym_cmd_identifier_token28] = ACTIONS(1208), - [aux_sym_cmd_identifier_token29] = ACTIONS(1208), - [aux_sym_cmd_identifier_token30] = ACTIONS(1208), - [aux_sym_cmd_identifier_token31] = ACTIONS(1211), - [aux_sym_cmd_identifier_token32] = ACTIONS(1211), - [aux_sym_cmd_identifier_token33] = ACTIONS(1211), - [aux_sym_cmd_identifier_token34] = ACTIONS(1211), - [aux_sym_cmd_identifier_token35] = ACTIONS(1211), - [aux_sym_cmd_identifier_token36] = ACTIONS(1208), - [anon_sym_true] = ACTIONS(1211), - [anon_sym_false] = ACTIONS(1211), - [anon_sym_null] = ACTIONS(1211), - [aux_sym_cmd_identifier_token38] = ACTIONS(1208), - [aux_sym_cmd_identifier_token39] = ACTIONS(1211), - [aux_sym_cmd_identifier_token40] = ACTIONS(1211), - [sym__newline] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_def] = ACTIONS(1208), - [anon_sym_export_DASHenv] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_module] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1208), - [anon_sym_error] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [aux_sym_ctrl_match_token1] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_source] = ACTIONS(1208), - [anon_sym_source_DASHenv] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_hide] = ACTIONS(1208), - [anon_sym_hide_DASHenv] = ACTIONS(1208), - [anon_sym_overlay] = ACTIONS(1208), - [anon_sym_where] = ACTIONS(1211), - [aux_sym_expr_unary_token1] = ACTIONS(1211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), - [anon_sym_DOT_DOT_LT] = ACTIONS(1211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1208), - [aux_sym__val_number_decimal_token2] = ACTIONS(1211), - [anon_sym_DOT2] = ACTIONS(1208), - [aux_sym__val_number_decimal_token3] = ACTIONS(1211), - [aux_sym__val_number_token1] = ACTIONS(1211), - [aux_sym__val_number_token2] = ACTIONS(1211), - [aux_sym__val_number_token3] = ACTIONS(1211), - [anon_sym_0b] = ACTIONS(1208), - [anon_sym_0o] = ACTIONS(1208), - [anon_sym_0x] = ACTIONS(1208), - [sym_val_date] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym__str_single_quotes] = ACTIONS(1211), - [sym__str_back_ticks] = ACTIONS(1211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), - [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_export] = ACTIONS(1982), + [anon_sym_alias] = ACTIONS(1982), + [anon_sym_let] = ACTIONS(1982), + [anon_sym_let_DASHenv] = ACTIONS(1982), + [anon_sym_mut] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(1982), + [aux_sym_cmd_identifier_token1] = ACTIONS(1982), + [aux_sym_cmd_identifier_token2] = ACTIONS(1982), + [aux_sym_cmd_identifier_token3] = ACTIONS(1982), + [aux_sym_cmd_identifier_token4] = ACTIONS(1982), + [aux_sym_cmd_identifier_token5] = ACTIONS(1982), + [aux_sym_cmd_identifier_token6] = ACTIONS(1982), + [aux_sym_cmd_identifier_token7] = ACTIONS(1982), + [aux_sym_cmd_identifier_token8] = ACTIONS(1982), + [aux_sym_cmd_identifier_token9] = ACTIONS(1982), + [aux_sym_cmd_identifier_token10] = ACTIONS(1982), + [aux_sym_cmd_identifier_token11] = ACTIONS(1982), + [aux_sym_cmd_identifier_token12] = ACTIONS(1982), + [aux_sym_cmd_identifier_token13] = ACTIONS(1982), + [aux_sym_cmd_identifier_token14] = ACTIONS(1982), + [aux_sym_cmd_identifier_token15] = ACTIONS(1982), + [aux_sym_cmd_identifier_token16] = ACTIONS(1982), + [aux_sym_cmd_identifier_token17] = ACTIONS(1982), + [aux_sym_cmd_identifier_token18] = ACTIONS(1982), + [aux_sym_cmd_identifier_token19] = ACTIONS(1982), + [aux_sym_cmd_identifier_token20] = ACTIONS(1982), + [aux_sym_cmd_identifier_token21] = ACTIONS(1982), + [aux_sym_cmd_identifier_token22] = ACTIONS(1982), + [aux_sym_cmd_identifier_token23] = ACTIONS(1982), + [aux_sym_cmd_identifier_token24] = ACTIONS(1982), + [aux_sym_cmd_identifier_token25] = ACTIONS(1982), + [aux_sym_cmd_identifier_token26] = ACTIONS(1982), + [aux_sym_cmd_identifier_token27] = ACTIONS(1982), + [aux_sym_cmd_identifier_token28] = ACTIONS(1982), + [aux_sym_cmd_identifier_token29] = ACTIONS(1982), + [aux_sym_cmd_identifier_token30] = ACTIONS(1982), + [aux_sym_cmd_identifier_token31] = ACTIONS(1982), + [aux_sym_cmd_identifier_token32] = ACTIONS(1982), + [aux_sym_cmd_identifier_token33] = ACTIONS(1982), + [aux_sym_cmd_identifier_token34] = ACTIONS(1982), + [aux_sym_cmd_identifier_token35] = ACTIONS(1982), + [aux_sym_cmd_identifier_token36] = ACTIONS(1982), + [anon_sym_true] = ACTIONS(1982), + [anon_sym_false] = ACTIONS(1982), + [anon_sym_null] = ACTIONS(1982), + [aux_sym_cmd_identifier_token38] = ACTIONS(1982), + [aux_sym_cmd_identifier_token39] = ACTIONS(1982), + [aux_sym_cmd_identifier_token40] = ACTIONS(1982), + [anon_sym_def] = ACTIONS(1982), + [anon_sym_export_DASHenv] = ACTIONS(1982), + [anon_sym_extern] = ACTIONS(1982), + [anon_sym_module] = ACTIONS(1982), + [anon_sym_use] = ACTIONS(1982), + [anon_sym_LPAREN] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1982), + [anon_sym_error] = ACTIONS(1982), + [anon_sym_list] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_break] = ACTIONS(1982), + [anon_sym_continue] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1982), + [anon_sym_in] = ACTIONS(1982), + [anon_sym_loop] = ACTIONS(1982), + [anon_sym_make] = ACTIONS(1982), + [anon_sym_while] = ACTIONS(1982), + [anon_sym_do] = ACTIONS(1982), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_else] = ACTIONS(1982), + [anon_sym_match] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_try] = ACTIONS(1982), + [anon_sym_catch] = ACTIONS(1982), + [anon_sym_return] = ACTIONS(1982), + [anon_sym_source] = ACTIONS(1982), + [anon_sym_source_DASHenv] = ACTIONS(1982), + [anon_sym_register] = ACTIONS(1982), + [anon_sym_hide] = ACTIONS(1982), + [anon_sym_hide_DASHenv] = ACTIONS(1982), + [anon_sym_overlay] = ACTIONS(1982), + [anon_sym_new] = ACTIONS(1982), + [anon_sym_as] = ACTIONS(1982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1982), + [anon_sym_DOT_DOT2] = ACTIONS(1982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1982), + [aux_sym__val_number_decimal_token1] = ACTIONS(1982), + [aux_sym__val_number_decimal_token2] = ACTIONS(1982), + [aux_sym__val_number_decimal_token3] = ACTIONS(1982), + [aux_sym__val_number_decimal_token4] = ACTIONS(1982), + [aux_sym__val_number_token1] = ACTIONS(1982), + [aux_sym__val_number_token2] = ACTIONS(1982), + [aux_sym__val_number_token3] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [sym__str_single_quotes] = ACTIONS(1982), + [sym__str_back_ticks] = ACTIONS(1982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1982), + [sym__entry_separator] = ACTIONS(1984), + [anon_sym_PLUS] = ACTIONS(1982), [anon_sym_POUND] = ACTIONS(3), }, [406] = { [sym_comment] = STATE(406), - [anon_sym_export] = ACTIONS(1959), - [anon_sym_alias] = ACTIONS(1959), - [anon_sym_let] = ACTIONS(1959), - [anon_sym_let_DASHenv] = ACTIONS(1959), - [anon_sym_mut] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [aux_sym_cmd_identifier_token1] = ACTIONS(1959), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1959), - [aux_sym_cmd_identifier_token9] = ACTIONS(1959), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1959), - [aux_sym_cmd_identifier_token13] = ACTIONS(1959), - [aux_sym_cmd_identifier_token14] = ACTIONS(1959), - [aux_sym_cmd_identifier_token15] = ACTIONS(1959), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1959), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1959), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_export_DASHenv] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_module] = ACTIONS(1959), - [anon_sym_use] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1959), - [anon_sym_list] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_in] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_make] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_source] = ACTIONS(1959), - [anon_sym_source_DASHenv] = ACTIONS(1959), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_hide_DASHenv] = ACTIONS(1959), - [anon_sym_overlay] = ACTIONS(1959), - [anon_sym_new] = ACTIONS(1959), - [anon_sym_as] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT_DOT2] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1961), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [sym__entry_separator] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(986), + [anon_sym_list] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_new] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), }, [407] = { + [sym_cmd_identifier] = STATE(4982), + [sym__expression] = STATE(4033), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4069), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(2175), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1742), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5289), [sym_comment] = STATE(407), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_alias] = ACTIONS(1963), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_let_DASHenv] = ACTIONS(1963), - [anon_sym_mut] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [aux_sym_cmd_identifier_token1] = ACTIONS(1963), - [aux_sym_cmd_identifier_token2] = ACTIONS(1963), - [aux_sym_cmd_identifier_token3] = ACTIONS(1963), - [aux_sym_cmd_identifier_token4] = ACTIONS(1963), - [aux_sym_cmd_identifier_token5] = ACTIONS(1963), - [aux_sym_cmd_identifier_token6] = ACTIONS(1963), - [aux_sym_cmd_identifier_token7] = ACTIONS(1963), - [aux_sym_cmd_identifier_token8] = ACTIONS(1963), - [aux_sym_cmd_identifier_token9] = ACTIONS(1963), - [aux_sym_cmd_identifier_token10] = ACTIONS(1963), - [aux_sym_cmd_identifier_token11] = ACTIONS(1963), - [aux_sym_cmd_identifier_token12] = ACTIONS(1963), - [aux_sym_cmd_identifier_token13] = ACTIONS(1963), - [aux_sym_cmd_identifier_token14] = ACTIONS(1963), - [aux_sym_cmd_identifier_token15] = ACTIONS(1963), - [aux_sym_cmd_identifier_token16] = ACTIONS(1963), - [aux_sym_cmd_identifier_token17] = ACTIONS(1963), - [aux_sym_cmd_identifier_token18] = ACTIONS(1963), - [aux_sym_cmd_identifier_token19] = ACTIONS(1963), - [aux_sym_cmd_identifier_token20] = ACTIONS(1963), - [aux_sym_cmd_identifier_token21] = ACTIONS(1963), - [aux_sym_cmd_identifier_token22] = ACTIONS(1963), - [aux_sym_cmd_identifier_token23] = ACTIONS(1963), - [aux_sym_cmd_identifier_token24] = ACTIONS(1963), - [aux_sym_cmd_identifier_token25] = ACTIONS(1963), - [aux_sym_cmd_identifier_token26] = ACTIONS(1963), - [aux_sym_cmd_identifier_token27] = ACTIONS(1963), - [aux_sym_cmd_identifier_token28] = ACTIONS(1963), - [aux_sym_cmd_identifier_token29] = ACTIONS(1963), - [aux_sym_cmd_identifier_token30] = ACTIONS(1963), - [aux_sym_cmd_identifier_token31] = ACTIONS(1963), - [aux_sym_cmd_identifier_token32] = ACTIONS(1963), - [aux_sym_cmd_identifier_token33] = ACTIONS(1963), - [aux_sym_cmd_identifier_token34] = ACTIONS(1963), - [aux_sym_cmd_identifier_token35] = ACTIONS(1963), - [aux_sym_cmd_identifier_token36] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1963), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_export_DASHenv] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_module] = ACTIONS(1963), - [anon_sym_use] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1963), - [anon_sym_list] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_in] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_make] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_source] = ACTIONS(1963), - [anon_sym_source_DASHenv] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_hide_DASHenv] = ACTIONS(1963), - [anon_sym_overlay] = ACTIONS(1963), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_as] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), - [anon_sym_DOT_DOT2] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), - [sym__entry_separator] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_pipe_element_repeat2] = STATE(1234), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), }, [408] = { + [sym_cmd_identifier] = STATE(4804), + [sym__expression] = STATE(4003), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4066), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1666), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_env_var] = STATE(7550), + [sym_command] = STATE(5120), [sym_comment] = STATE(408), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(948), - [aux_sym_cmd_identifier_token3] = ACTIONS(948), - [aux_sym_cmd_identifier_token4] = ACTIONS(948), - [aux_sym_cmd_identifier_token5] = ACTIONS(948), - [aux_sym_cmd_identifier_token6] = ACTIONS(948), - [aux_sym_cmd_identifier_token7] = ACTIONS(948), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(948), - [aux_sym_cmd_identifier_token11] = ACTIONS(948), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(948), - [aux_sym_cmd_identifier_token17] = ACTIONS(948), - [aux_sym_cmd_identifier_token18] = ACTIONS(948), - [aux_sym_cmd_identifier_token19] = ACTIONS(948), - [aux_sym_cmd_identifier_token20] = ACTIONS(948), - [aux_sym_cmd_identifier_token21] = ACTIONS(948), - [aux_sym_cmd_identifier_token22] = ACTIONS(948), - [aux_sym_cmd_identifier_token23] = ACTIONS(948), - [aux_sym_cmd_identifier_token24] = ACTIONS(948), - [aux_sym_cmd_identifier_token25] = ACTIONS(948), - [aux_sym_cmd_identifier_token26] = ACTIONS(948), - [aux_sym_cmd_identifier_token27] = ACTIONS(948), - [aux_sym_cmd_identifier_token28] = ACTIONS(948), - [aux_sym_cmd_identifier_token29] = ACTIONS(948), - [aux_sym_cmd_identifier_token30] = ACTIONS(948), - [aux_sym_cmd_identifier_token31] = ACTIONS(948), - [aux_sym_cmd_identifier_token32] = ACTIONS(948), - [aux_sym_cmd_identifier_token33] = ACTIONS(948), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(948), - [aux_sym_cmd_identifier_token36] = ACTIONS(948), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_null] = ACTIONS(948), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(948), - [aux_sym_cmd_identifier_token40] = ACTIONS(948), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_list] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_new] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), - [anon_sym_DOT_DOT2] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(948), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(948), - [aux_sym__val_number_token1] = ACTIONS(948), - [aux_sym__val_number_token2] = ACTIONS(948), - [aux_sym__val_number_token3] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym__str_single_quotes] = ACTIONS(948), - [sym__str_back_ticks] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), - [sym__entry_separator] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_pipe_element_repeat2] = STATE(1234), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [aux_sym_cmd_identifier_token38] = ACTIONS(377), + [aux_sym_cmd_identifier_token39] = ACTIONS(379), + [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [409] = { - [sym_expr_parenthesized] = STATE(4365), - [sym__spread_parenthesized] = STATE(4813), - [sym_val_range] = STATE(4877), - [sym__val_range] = STATE(7607), - [sym__val_range_with_end] = STATE(7463), - [sym__value] = STATE(4877), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4503), - [sym__spread_variable] = STATE(4753), - [sym_val_variable] = STATE(4350), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(4110), - [sym__val_number] = STATE(4817), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__str_double_quotes] = STATE(4505), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4757), - [sym__inter_double_quotes] = STATE(4767), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4813), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__cmd_arg] = STATE(4793), - [sym_redirection] = STATE(4794), - [sym__flag] = STATE(4797), - [sym_short_flag] = STATE(4833), - [sym_long_flag] = STATE(4833), - [sym_unquoted] = STATE(4515), - [sym__unquoted_with_expr] = STATE(4841), - [sym__unquoted_anonymous_prefix] = STATE(7185), + [sym_cmd_identifier] = STATE(4804), + [sym_ctrl_if] = STATE(5190), + [sym_block] = STATE(5194), + [sym__expression] = STATE(5194), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4073), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3224), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_command] = STATE(5194), [sym_comment] = STATE(409), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1969), - [aux_sym_cmd_identifier_token38] = ACTIONS(1971), - [aux_sym_cmd_identifier_token39] = ACTIONS(1971), - [aux_sym_cmd_identifier_token40] = ACTIONS(1971), - [sym__newline] = ACTIONS(1973), - [sym__space] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1985), - [aux_sym_ctrl_match_token1] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_DOT_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), - [anon_sym_DOT_DOT_LT] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [anon_sym_DOT2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(2001), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2011), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2019), - [anon_sym_err_GT] = ACTIONS(2021), - [anon_sym_out_GT] = ACTIONS(2021), - [anon_sym_e_GT] = ACTIONS(2021), - [anon_sym_o_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT] = ACTIONS(2021), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), - [aux_sym_unquoted_token1] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cmd_identifier_token1] = ACTIONS(369), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(369), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(369), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(369), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(371), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(371), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(371), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(371), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(371), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [anon_sym_null] = ACTIONS(1988), + [aux_sym_cmd_identifier_token38] = ACTIONS(1990), + [aux_sym_cmd_identifier_token39] = ACTIONS(1992), + [aux_sym_cmd_identifier_token40] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_if] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(1994), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1996), + [aux_sym__val_number_decimal_token2] = ACTIONS(1998), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2002), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [410] = { + [sym_expr_parenthesized] = STATE(4523), + [sym__spread_parenthesized] = STATE(4877), + [sym_val_range] = STATE(4895), + [sym__val_range] = STATE(7816), + [sym__val_range_with_end] = STATE(7649), + [sym__value] = STATE(4895), + [sym_val_nothing] = STATE(4994), + [sym_val_bool] = STATE(4669), + [sym__spread_variable] = STATE(4899), + [sym_val_variable] = STATE(4441), + [sym_val_number] = STATE(4994), + [sym__val_number_decimal] = STATE(4161), + [sym__val_number] = STATE(4878), + [sym_val_duration] = STATE(4994), + [sym_val_filesize] = STATE(4994), + [sym_val_binary] = STATE(4994), + [sym_val_string] = STATE(4994), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4994), + [sym__inter_single_quotes] = STATE(4902), + [sym__inter_double_quotes] = STATE(4928), + [sym_val_list] = STATE(4994), + [sym__spread_list] = STATE(4877), + [sym_val_record] = STATE(4994), + [sym_val_table] = STATE(4994), + [sym_val_closure] = STATE(4994), + [sym__cmd_arg] = STATE(4909), + [sym_redirection] = STATE(4914), + [sym__flag] = STATE(4915), + [sym_short_flag] = STATE(4979), + [sym_long_flag] = STATE(4979), + [sym_unquoted] = STATE(4557), + [sym__unquoted_with_expr] = STATE(4922), + [sym__unquoted_anonymous_prefix] = STATE(7231), [sym_comment] = STATE(410), - [anon_sym_export] = ACTIONS(1701), - [anon_sym_alias] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_let_DASHenv] = ACTIONS(1701), - [anon_sym_mut] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [aux_sym_cmd_identifier_token1] = ACTIONS(1701), - [aux_sym_cmd_identifier_token2] = ACTIONS(1701), - [aux_sym_cmd_identifier_token3] = ACTIONS(1701), - [aux_sym_cmd_identifier_token4] = ACTIONS(1701), - [aux_sym_cmd_identifier_token5] = ACTIONS(1701), - [aux_sym_cmd_identifier_token6] = ACTIONS(1701), - [aux_sym_cmd_identifier_token7] = ACTIONS(1701), - [aux_sym_cmd_identifier_token8] = ACTIONS(1701), - [aux_sym_cmd_identifier_token9] = ACTIONS(1701), - [aux_sym_cmd_identifier_token10] = ACTIONS(1701), - [aux_sym_cmd_identifier_token11] = ACTIONS(1701), - [aux_sym_cmd_identifier_token12] = ACTIONS(1701), - [aux_sym_cmd_identifier_token13] = ACTIONS(1701), - [aux_sym_cmd_identifier_token14] = ACTIONS(1701), - [aux_sym_cmd_identifier_token15] = ACTIONS(1701), - [aux_sym_cmd_identifier_token16] = ACTIONS(1701), - [aux_sym_cmd_identifier_token17] = ACTIONS(1701), - [aux_sym_cmd_identifier_token18] = ACTIONS(1701), - [aux_sym_cmd_identifier_token19] = ACTIONS(1701), - [aux_sym_cmd_identifier_token20] = ACTIONS(1701), - [aux_sym_cmd_identifier_token21] = ACTIONS(1701), - [aux_sym_cmd_identifier_token22] = ACTIONS(1701), - [aux_sym_cmd_identifier_token23] = ACTIONS(1701), - [aux_sym_cmd_identifier_token24] = ACTIONS(1701), - [aux_sym_cmd_identifier_token25] = ACTIONS(1701), - [aux_sym_cmd_identifier_token26] = ACTIONS(1701), - [aux_sym_cmd_identifier_token27] = ACTIONS(1701), - [aux_sym_cmd_identifier_token28] = ACTIONS(1701), - [aux_sym_cmd_identifier_token29] = ACTIONS(1701), - [aux_sym_cmd_identifier_token30] = ACTIONS(1701), - [aux_sym_cmd_identifier_token31] = ACTIONS(1701), - [aux_sym_cmd_identifier_token32] = ACTIONS(1701), - [aux_sym_cmd_identifier_token33] = ACTIONS(1701), - [aux_sym_cmd_identifier_token34] = ACTIONS(1701), - [aux_sym_cmd_identifier_token35] = ACTIONS(1701), - [aux_sym_cmd_identifier_token36] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1701), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1701), - [anon_sym_export_DASHenv] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym_module] = ACTIONS(1701), - [anon_sym_use] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1701), - [anon_sym_list] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_loop] = ACTIONS(1701), - [anon_sym_make] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_catch] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_source] = ACTIONS(1701), - [anon_sym_source_DASHenv] = ACTIONS(1701), - [anon_sym_register] = ACTIONS(1701), - [anon_sym_hide] = ACTIONS(1701), - [anon_sym_hide_DASHenv] = ACTIONS(1701), - [anon_sym_overlay] = ACTIONS(1701), - [anon_sym_new] = ACTIONS(1701), - [anon_sym_as] = ACTIONS(1701), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT] = ACTIONS(1576), - [aux_sym__immediate_decimal_token1] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1701), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [anon_sym_DOT2] = ACTIONS(1701), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1576), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [anon_sym_null] = ACTIONS(2006), + [aux_sym_cmd_identifier_token38] = ACTIONS(2008), + [aux_sym_cmd_identifier_token39] = ACTIONS(2008), + [aux_sym_cmd_identifier_token40] = ACTIONS(2008), + [sym__newline] = ACTIONS(2010), + [sym__space] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_err_GT_PIPE] = ACTIONS(2010), + [anon_sym_out_GT_PIPE] = ACTIONS(2010), + [anon_sym_e_GT_PIPE] = ACTIONS(2010), + [anon_sym_o_GT_PIPE] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_RPAREN] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DASH] = ACTIONS(2022), + [aux_sym_ctrl_match_token1] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2030), + [anon_sym_DOT_DOT_LT] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2034), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2038), + [aux_sym__val_number_token1] = ACTIONS(2040), + [aux_sym__val_number_token2] = ACTIONS(2040), + [aux_sym__val_number_token3] = ACTIONS(2040), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2048), + [sym__str_single_quotes] = ACTIONS(2050), + [sym__str_back_ticks] = ACTIONS(2050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2056), + [anon_sym_err_GT] = ACTIONS(2058), + [anon_sym_out_GT] = ACTIONS(2058), + [anon_sym_e_GT] = ACTIONS(2058), + [anon_sym_o_GT] = ACTIONS(2058), + [anon_sym_err_PLUSout_GT] = ACTIONS(2058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2058), + [anon_sym_o_PLUSe_GT] = ACTIONS(2058), + [anon_sym_e_PLUSo_GT] = ACTIONS(2058), + [anon_sym_err_GT_GT] = ACTIONS(2058), + [anon_sym_out_GT_GT] = ACTIONS(2058), + [anon_sym_e_GT_GT] = ACTIONS(2058), + [anon_sym_o_GT_GT] = ACTIONS(2058), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2058), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2058), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2058), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2058), + [aux_sym_unquoted_token1] = ACTIONS(2060), [anon_sym_POUND] = ACTIONS(3), }, [411] = { [sym_comment] = STATE(411), - [anon_sym_export] = ACTIONS(900), - [anon_sym_alias] = ACTIONS(900), - [anon_sym_let] = ACTIONS(900), - [anon_sym_let_DASHenv] = ACTIONS(900), - [anon_sym_mut] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [aux_sym_cmd_identifier_token1] = ACTIONS(900), - [aux_sym_cmd_identifier_token2] = ACTIONS(900), - [aux_sym_cmd_identifier_token3] = ACTIONS(900), - [aux_sym_cmd_identifier_token4] = ACTIONS(900), - [aux_sym_cmd_identifier_token5] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(900), - [aux_sym_cmd_identifier_token7] = ACTIONS(900), - [aux_sym_cmd_identifier_token8] = ACTIONS(900), - [aux_sym_cmd_identifier_token9] = ACTIONS(900), - [aux_sym_cmd_identifier_token10] = ACTIONS(900), - [aux_sym_cmd_identifier_token11] = ACTIONS(900), - [aux_sym_cmd_identifier_token12] = ACTIONS(900), - [aux_sym_cmd_identifier_token13] = ACTIONS(900), - [aux_sym_cmd_identifier_token14] = ACTIONS(900), - [aux_sym_cmd_identifier_token15] = ACTIONS(900), - [aux_sym_cmd_identifier_token16] = ACTIONS(900), - [aux_sym_cmd_identifier_token17] = ACTIONS(900), - [aux_sym_cmd_identifier_token18] = ACTIONS(900), - [aux_sym_cmd_identifier_token19] = ACTIONS(900), - [aux_sym_cmd_identifier_token20] = ACTIONS(900), - [aux_sym_cmd_identifier_token21] = ACTIONS(900), - [aux_sym_cmd_identifier_token22] = ACTIONS(900), - [aux_sym_cmd_identifier_token23] = ACTIONS(900), - [aux_sym_cmd_identifier_token24] = ACTIONS(900), - [aux_sym_cmd_identifier_token25] = ACTIONS(900), - [aux_sym_cmd_identifier_token26] = ACTIONS(900), - [aux_sym_cmd_identifier_token27] = ACTIONS(900), - [aux_sym_cmd_identifier_token28] = ACTIONS(900), - [aux_sym_cmd_identifier_token29] = ACTIONS(900), - [aux_sym_cmd_identifier_token30] = ACTIONS(900), - [aux_sym_cmd_identifier_token31] = ACTIONS(900), - [aux_sym_cmd_identifier_token32] = ACTIONS(900), - [aux_sym_cmd_identifier_token33] = ACTIONS(900), - [aux_sym_cmd_identifier_token34] = ACTIONS(900), - [aux_sym_cmd_identifier_token35] = ACTIONS(900), - [aux_sym_cmd_identifier_token36] = ACTIONS(900), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [anon_sym_null] = ACTIONS(902), - [aux_sym_cmd_identifier_token38] = ACTIONS(900), - [aux_sym_cmd_identifier_token39] = ACTIONS(902), - [aux_sym_cmd_identifier_token40] = ACTIONS(902), - [anon_sym_def] = ACTIONS(900), - [anon_sym_export_DASHenv] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(900), - [anon_sym_module] = ACTIONS(900), - [anon_sym_use] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(902), - [anon_sym_error] = ACTIONS(900), - [anon_sym_list] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(900), - [anon_sym_make] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_match] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_try] = ACTIONS(900), - [anon_sym_catch] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_source] = ACTIONS(900), - [anon_sym_source_DASHenv] = ACTIONS(900), - [anon_sym_register] = ACTIONS(900), - [anon_sym_hide] = ACTIONS(900), - [anon_sym_hide_DASHenv] = ACTIONS(900), - [anon_sym_overlay] = ACTIONS(900), - [anon_sym_new] = ACTIONS(900), - [anon_sym_as] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(902), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(902), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(902), - [aux_sym__val_number_token1] = ACTIONS(902), - [aux_sym__val_number_token2] = ACTIONS(902), - [aux_sym__val_number_token3] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym__str_single_quotes] = ACTIONS(902), - [sym__str_back_ticks] = ACTIONS(902), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(902), - [aux_sym_record_entry_token1] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_list] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_new] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), }, [412] = { [sym_comment] = STATE(412), - [anon_sym_export] = ACTIONS(906), - [anon_sym_alias] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_let_DASHenv] = ACTIONS(906), - [anon_sym_mut] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [aux_sym_cmd_identifier_token1] = ACTIONS(906), - [aux_sym_cmd_identifier_token2] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(906), - [aux_sym_cmd_identifier_token4] = ACTIONS(906), - [aux_sym_cmd_identifier_token5] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [aux_sym_cmd_identifier_token7] = ACTIONS(906), - [aux_sym_cmd_identifier_token8] = ACTIONS(906), - [aux_sym_cmd_identifier_token9] = ACTIONS(906), - [aux_sym_cmd_identifier_token10] = ACTIONS(906), - [aux_sym_cmd_identifier_token11] = ACTIONS(906), - [aux_sym_cmd_identifier_token12] = ACTIONS(906), - [aux_sym_cmd_identifier_token13] = ACTIONS(906), - [aux_sym_cmd_identifier_token14] = ACTIONS(906), - [aux_sym_cmd_identifier_token15] = ACTIONS(906), - [aux_sym_cmd_identifier_token16] = ACTIONS(906), - [aux_sym_cmd_identifier_token17] = ACTIONS(906), - [aux_sym_cmd_identifier_token18] = ACTIONS(906), - [aux_sym_cmd_identifier_token19] = ACTIONS(906), - [aux_sym_cmd_identifier_token20] = ACTIONS(906), - [aux_sym_cmd_identifier_token21] = ACTIONS(906), - [aux_sym_cmd_identifier_token22] = ACTIONS(906), - [aux_sym_cmd_identifier_token23] = ACTIONS(906), - [aux_sym_cmd_identifier_token24] = ACTIONS(906), - [aux_sym_cmd_identifier_token25] = ACTIONS(906), - [aux_sym_cmd_identifier_token26] = ACTIONS(906), - [aux_sym_cmd_identifier_token27] = ACTIONS(906), - [aux_sym_cmd_identifier_token28] = ACTIONS(906), - [aux_sym_cmd_identifier_token29] = ACTIONS(906), - [aux_sym_cmd_identifier_token30] = ACTIONS(906), - [aux_sym_cmd_identifier_token31] = ACTIONS(906), - [aux_sym_cmd_identifier_token32] = ACTIONS(906), - [aux_sym_cmd_identifier_token33] = ACTIONS(906), - [aux_sym_cmd_identifier_token34] = ACTIONS(906), - [aux_sym_cmd_identifier_token35] = ACTIONS(906), - [aux_sym_cmd_identifier_token36] = ACTIONS(906), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [anon_sym_null] = ACTIONS(908), - [aux_sym_cmd_identifier_token38] = ACTIONS(906), - [aux_sym_cmd_identifier_token39] = ACTIONS(908), - [aux_sym_cmd_identifier_token40] = ACTIONS(908), - [anon_sym_def] = ACTIONS(906), - [anon_sym_export_DASHenv] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_use] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(906), - [anon_sym_list] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_in] = ACTIONS(906), - [anon_sym_loop] = ACTIONS(906), - [anon_sym_make] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_try] = ACTIONS(906), - [anon_sym_catch] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_source] = ACTIONS(906), - [anon_sym_source_DASHenv] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_hide] = ACTIONS(906), - [anon_sym_hide_DASHenv] = ACTIONS(906), - [anon_sym_overlay] = ACTIONS(906), - [anon_sym_new] = ACTIONS(906), - [anon_sym_as] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(908), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(908), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(908), - [aux_sym__val_number_token1] = ACTIONS(908), - [aux_sym__val_number_token2] = ACTIONS(908), - [aux_sym__val_number_token3] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(908), - [aux_sym_record_entry_token1] = ACTIONS(908), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1648), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1648), + [aux_sym_cmd_identifier_token40] = ACTIONS(1648), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1648), + [aux_sym__val_number_decimal_token3] = ACTIONS(1648), + [aux_sym__val_number_decimal_token4] = ACTIONS(1648), + [aux_sym__val_number_token1] = ACTIONS(1648), + [aux_sym__val_number_token2] = ACTIONS(1648), + [aux_sym__val_number_token3] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [sym__str_single_quotes] = ACTIONS(1648), + [sym__str_back_ticks] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), + [sym__entry_separator] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), [anon_sym_POUND] = ACTIONS(3), }, [413] = { - [sym_cell_path] = STATE(620), - [sym_path] = STATE(572), [sym_comment] = STATE(413), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1740), - [anon_sym_alias] = ACTIONS(1740), - [anon_sym_let] = ACTIONS(1740), - [anon_sym_let_DASHenv] = ACTIONS(1740), - [anon_sym_mut] = ACTIONS(1740), - [anon_sym_const] = ACTIONS(1740), - [aux_sym_cmd_identifier_token1] = ACTIONS(1740), - [aux_sym_cmd_identifier_token2] = ACTIONS(1740), - [aux_sym_cmd_identifier_token3] = ACTIONS(1740), - [aux_sym_cmd_identifier_token4] = ACTIONS(1740), - [aux_sym_cmd_identifier_token5] = ACTIONS(1740), - [aux_sym_cmd_identifier_token6] = ACTIONS(1740), - [aux_sym_cmd_identifier_token7] = ACTIONS(1740), - [aux_sym_cmd_identifier_token8] = ACTIONS(1740), - [aux_sym_cmd_identifier_token9] = ACTIONS(1740), - [aux_sym_cmd_identifier_token10] = ACTIONS(1740), - [aux_sym_cmd_identifier_token11] = ACTIONS(1740), - [aux_sym_cmd_identifier_token12] = ACTIONS(1740), - [aux_sym_cmd_identifier_token13] = ACTIONS(1740), - [aux_sym_cmd_identifier_token14] = ACTIONS(1740), - [aux_sym_cmd_identifier_token15] = ACTIONS(1740), - [aux_sym_cmd_identifier_token16] = ACTIONS(1740), - [aux_sym_cmd_identifier_token17] = ACTIONS(1740), - [aux_sym_cmd_identifier_token18] = ACTIONS(1740), - [aux_sym_cmd_identifier_token19] = ACTIONS(1740), - [aux_sym_cmd_identifier_token20] = ACTIONS(1740), - [aux_sym_cmd_identifier_token21] = ACTIONS(1740), - [aux_sym_cmd_identifier_token22] = ACTIONS(1740), - [aux_sym_cmd_identifier_token23] = ACTIONS(1740), - [aux_sym_cmd_identifier_token24] = ACTIONS(1740), - [aux_sym_cmd_identifier_token25] = ACTIONS(1740), - [aux_sym_cmd_identifier_token26] = ACTIONS(1740), - [aux_sym_cmd_identifier_token27] = ACTIONS(1740), - [aux_sym_cmd_identifier_token28] = ACTIONS(1740), - [aux_sym_cmd_identifier_token29] = ACTIONS(1740), - [aux_sym_cmd_identifier_token30] = ACTIONS(1740), - [aux_sym_cmd_identifier_token31] = ACTIONS(1740), - [aux_sym_cmd_identifier_token32] = ACTIONS(1740), - [aux_sym_cmd_identifier_token33] = ACTIONS(1740), - [aux_sym_cmd_identifier_token34] = ACTIONS(1740), - [aux_sym_cmd_identifier_token35] = ACTIONS(1740), - [aux_sym_cmd_identifier_token36] = ACTIONS(1740), - [anon_sym_true] = ACTIONS(1742), - [anon_sym_false] = ACTIONS(1742), - [anon_sym_null] = ACTIONS(1742), - [aux_sym_cmd_identifier_token38] = ACTIONS(1740), - [aux_sym_cmd_identifier_token39] = ACTIONS(1742), - [aux_sym_cmd_identifier_token40] = ACTIONS(1742), - [anon_sym_def] = ACTIONS(1740), - [anon_sym_export_DASHenv] = ACTIONS(1740), - [anon_sym_extern] = ACTIONS(1740), - [anon_sym_module] = ACTIONS(1740), - [anon_sym_use] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_error] = ACTIONS(1740), - [anon_sym_list] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_break] = ACTIONS(1740), - [anon_sym_continue] = ACTIONS(1740), - [anon_sym_for] = ACTIONS(1740), - [anon_sym_in] = ACTIONS(1740), - [anon_sym_loop] = ACTIONS(1740), - [anon_sym_make] = ACTIONS(1740), - [anon_sym_while] = ACTIONS(1740), - [anon_sym_do] = ACTIONS(1740), - [anon_sym_if] = ACTIONS(1740), - [anon_sym_else] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_try] = ACTIONS(1740), - [anon_sym_catch] = ACTIONS(1740), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_source] = ACTIONS(1740), - [anon_sym_source_DASHenv] = ACTIONS(1740), - [anon_sym_register] = ACTIONS(1740), - [anon_sym_hide] = ACTIONS(1740), - [anon_sym_hide_DASHenv] = ACTIONS(1740), - [anon_sym_overlay] = ACTIONS(1740), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_as] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1742), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1742), - [aux_sym__val_number_decimal_token1] = ACTIONS(1740), - [aux_sym__val_number_decimal_token2] = ACTIONS(1742), - [anon_sym_DOT2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1742), - [aux_sym__val_number_token1] = ACTIONS(1742), - [aux_sym__val_number_token2] = ACTIONS(1742), - [aux_sym__val_number_token3] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1742), - [sym__str_single_quotes] = ACTIONS(1742), - [sym__str_back_ticks] = ACTIONS(1742), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, [414] = { - [sym_cell_path] = STATE(655), - [sym_path] = STATE(572), + [sym_cell_path] = STATE(622), + [sym_path] = STATE(532), [sym_comment] = STATE(414), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1697), - [anon_sym_alias] = ACTIONS(1697), - [anon_sym_let] = ACTIONS(1697), - [anon_sym_let_DASHenv] = ACTIONS(1697), - [anon_sym_mut] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [aux_sym_cmd_identifier_token1] = ACTIONS(1697), - [aux_sym_cmd_identifier_token2] = ACTIONS(1697), - [aux_sym_cmd_identifier_token3] = ACTIONS(1697), - [aux_sym_cmd_identifier_token4] = ACTIONS(1697), - [aux_sym_cmd_identifier_token5] = ACTIONS(1697), - [aux_sym_cmd_identifier_token6] = ACTIONS(1697), - [aux_sym_cmd_identifier_token7] = ACTIONS(1697), - [aux_sym_cmd_identifier_token8] = ACTIONS(1697), - [aux_sym_cmd_identifier_token9] = ACTIONS(1697), - [aux_sym_cmd_identifier_token10] = ACTIONS(1697), - [aux_sym_cmd_identifier_token11] = ACTIONS(1697), - [aux_sym_cmd_identifier_token12] = ACTIONS(1697), - [aux_sym_cmd_identifier_token13] = ACTIONS(1697), - [aux_sym_cmd_identifier_token14] = ACTIONS(1697), - [aux_sym_cmd_identifier_token15] = ACTIONS(1697), - [aux_sym_cmd_identifier_token16] = ACTIONS(1697), - [aux_sym_cmd_identifier_token17] = ACTIONS(1697), - [aux_sym_cmd_identifier_token18] = ACTIONS(1697), - [aux_sym_cmd_identifier_token19] = ACTIONS(1697), - [aux_sym_cmd_identifier_token20] = ACTIONS(1697), - [aux_sym_cmd_identifier_token21] = ACTIONS(1697), - [aux_sym_cmd_identifier_token22] = ACTIONS(1697), - [aux_sym_cmd_identifier_token23] = ACTIONS(1697), - [aux_sym_cmd_identifier_token24] = ACTIONS(1697), - [aux_sym_cmd_identifier_token25] = ACTIONS(1697), - [aux_sym_cmd_identifier_token26] = ACTIONS(1697), - [aux_sym_cmd_identifier_token27] = ACTIONS(1697), - [aux_sym_cmd_identifier_token28] = ACTIONS(1697), - [aux_sym_cmd_identifier_token29] = ACTIONS(1697), - [aux_sym_cmd_identifier_token30] = ACTIONS(1697), - [aux_sym_cmd_identifier_token31] = ACTIONS(1697), - [aux_sym_cmd_identifier_token32] = ACTIONS(1697), - [aux_sym_cmd_identifier_token33] = ACTIONS(1697), - [aux_sym_cmd_identifier_token34] = ACTIONS(1697), - [aux_sym_cmd_identifier_token35] = ACTIONS(1697), - [aux_sym_cmd_identifier_token36] = ACTIONS(1697), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [anon_sym_null] = ACTIONS(1699), - [aux_sym_cmd_identifier_token38] = ACTIONS(1697), - [aux_sym_cmd_identifier_token39] = ACTIONS(1699), - [aux_sym_cmd_identifier_token40] = ACTIONS(1699), - [anon_sym_def] = ACTIONS(1697), - [anon_sym_export_DASHenv] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_module] = ACTIONS(1697), - [anon_sym_use] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1699), - [anon_sym_error] = ACTIONS(1697), - [anon_sym_list] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_in] = ACTIONS(1697), - [anon_sym_loop] = ACTIONS(1697), - [anon_sym_make] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_do] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_else] = ACTIONS(1697), - [anon_sym_match] = ACTIONS(1697), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1697), - [anon_sym_catch] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_source] = ACTIONS(1697), - [anon_sym_source_DASHenv] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_hide] = ACTIONS(1697), - [anon_sym_hide_DASHenv] = ACTIONS(1697), - [anon_sym_overlay] = ACTIONS(1697), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_as] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1697), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [anon_sym_DOT2] = ACTIONS(1697), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(3), - }, - [415] = { - [sym_cmd_identifier] = STATE(4734), - [sym_ctrl_if] = STATE(4956), - [sym_block] = STATE(4957), - [sym__expression] = STATE(4957), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4050), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3170), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_command] = STATE(4957), - [sym_comment] = STATE(415), - [aux_sym_cmd_identifier_token1] = ACTIONS(361), - [aux_sym_cmd_identifier_token2] = ACTIONS(363), - [aux_sym_cmd_identifier_token3] = ACTIONS(363), - [aux_sym_cmd_identifier_token4] = ACTIONS(363), - [aux_sym_cmd_identifier_token5] = ACTIONS(363), - [aux_sym_cmd_identifier_token6] = ACTIONS(363), - [aux_sym_cmd_identifier_token7] = ACTIONS(363), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(361), - [aux_sym_cmd_identifier_token10] = ACTIONS(363), - [aux_sym_cmd_identifier_token11] = ACTIONS(363), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(361), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(361), - [aux_sym_cmd_identifier_token16] = ACTIONS(363), - [aux_sym_cmd_identifier_token17] = ACTIONS(363), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(363), - [aux_sym_cmd_identifier_token20] = ACTIONS(363), - [aux_sym_cmd_identifier_token21] = ACTIONS(363), - [aux_sym_cmd_identifier_token22] = ACTIONS(363), - [aux_sym_cmd_identifier_token23] = ACTIONS(361), - [aux_sym_cmd_identifier_token24] = ACTIONS(363), - [aux_sym_cmd_identifier_token25] = ACTIONS(363), - [aux_sym_cmd_identifier_token26] = ACTIONS(363), - [aux_sym_cmd_identifier_token27] = ACTIONS(363), - [aux_sym_cmd_identifier_token28] = ACTIONS(363), - [aux_sym_cmd_identifier_token29] = ACTIONS(363), - [aux_sym_cmd_identifier_token30] = ACTIONS(363), - [aux_sym_cmd_identifier_token31] = ACTIONS(363), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(363), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(363), - [aux_sym_cmd_identifier_token36] = ACTIONS(361), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1624), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_if] = ACTIONS(403), - [aux_sym_ctrl_match_token1] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [anon_sym_DOT2] = ACTIONS(1638), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(3), - }, - [416] = { - [sym_comment] = STATE(416), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [aux_sym_cmd_identifier_token1] = ACTIONS(936), - [aux_sym_cmd_identifier_token2] = ACTIONS(936), - [aux_sym_cmd_identifier_token3] = ACTIONS(936), - [aux_sym_cmd_identifier_token4] = ACTIONS(936), - [aux_sym_cmd_identifier_token5] = ACTIONS(936), - [aux_sym_cmd_identifier_token6] = ACTIONS(936), - [aux_sym_cmd_identifier_token7] = ACTIONS(936), - [aux_sym_cmd_identifier_token8] = ACTIONS(936), - [aux_sym_cmd_identifier_token9] = ACTIONS(936), - [aux_sym_cmd_identifier_token10] = ACTIONS(936), - [aux_sym_cmd_identifier_token11] = ACTIONS(936), - [aux_sym_cmd_identifier_token12] = ACTIONS(936), - [aux_sym_cmd_identifier_token13] = ACTIONS(936), - [aux_sym_cmd_identifier_token14] = ACTIONS(936), - [aux_sym_cmd_identifier_token15] = ACTIONS(936), - [aux_sym_cmd_identifier_token16] = ACTIONS(936), - [aux_sym_cmd_identifier_token17] = ACTIONS(936), - [aux_sym_cmd_identifier_token18] = ACTIONS(936), - [aux_sym_cmd_identifier_token19] = ACTIONS(936), - [aux_sym_cmd_identifier_token20] = ACTIONS(936), - [aux_sym_cmd_identifier_token21] = ACTIONS(936), - [aux_sym_cmd_identifier_token22] = ACTIONS(936), - [aux_sym_cmd_identifier_token23] = ACTIONS(936), - [aux_sym_cmd_identifier_token24] = ACTIONS(936), - [aux_sym_cmd_identifier_token25] = ACTIONS(936), - [aux_sym_cmd_identifier_token26] = ACTIONS(936), - [aux_sym_cmd_identifier_token27] = ACTIONS(936), - [aux_sym_cmd_identifier_token28] = ACTIONS(936), - [aux_sym_cmd_identifier_token29] = ACTIONS(936), - [aux_sym_cmd_identifier_token30] = ACTIONS(936), - [aux_sym_cmd_identifier_token31] = ACTIONS(936), - [aux_sym_cmd_identifier_token32] = ACTIONS(936), - [aux_sym_cmd_identifier_token33] = ACTIONS(936), - [aux_sym_cmd_identifier_token34] = ACTIONS(936), - [aux_sym_cmd_identifier_token35] = ACTIONS(936), - [aux_sym_cmd_identifier_token36] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [aux_sym_cmd_identifier_token38] = ACTIONS(936), - [aux_sym_cmd_identifier_token39] = ACTIONS(936), - [aux_sym_cmd_identifier_token40] = ACTIONS(936), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(936), - [anon_sym_DOT_DOT2] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(936), - [sym__entry_separator] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(121), - }, - [417] = { - [sym_comment] = STATE(417), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(121), - }, - [418] = { - [sym_cell_path] = STATE(652), - [sym_path] = STATE(572), - [sym_comment] = STATE(418), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1816), - [anon_sym_alias] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_let_DASHenv] = ACTIONS(1816), - [anon_sym_mut] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [aux_sym_cmd_identifier_token1] = ACTIONS(1816), - [aux_sym_cmd_identifier_token2] = ACTIONS(1816), - [aux_sym_cmd_identifier_token3] = ACTIONS(1816), - [aux_sym_cmd_identifier_token4] = ACTIONS(1816), - [aux_sym_cmd_identifier_token5] = ACTIONS(1816), - [aux_sym_cmd_identifier_token6] = ACTIONS(1816), - [aux_sym_cmd_identifier_token7] = ACTIONS(1816), - [aux_sym_cmd_identifier_token8] = ACTIONS(1816), - [aux_sym_cmd_identifier_token9] = ACTIONS(1816), - [aux_sym_cmd_identifier_token10] = ACTIONS(1816), - [aux_sym_cmd_identifier_token11] = ACTIONS(1816), - [aux_sym_cmd_identifier_token12] = ACTIONS(1816), - [aux_sym_cmd_identifier_token13] = ACTIONS(1816), - [aux_sym_cmd_identifier_token14] = ACTIONS(1816), - [aux_sym_cmd_identifier_token15] = ACTIONS(1816), - [aux_sym_cmd_identifier_token16] = ACTIONS(1816), - [aux_sym_cmd_identifier_token17] = ACTIONS(1816), - [aux_sym_cmd_identifier_token18] = ACTIONS(1816), - [aux_sym_cmd_identifier_token19] = ACTIONS(1816), - [aux_sym_cmd_identifier_token20] = ACTIONS(1816), - [aux_sym_cmd_identifier_token21] = ACTIONS(1816), - [aux_sym_cmd_identifier_token22] = ACTIONS(1816), - [aux_sym_cmd_identifier_token23] = ACTIONS(1816), - [aux_sym_cmd_identifier_token24] = ACTIONS(1816), - [aux_sym_cmd_identifier_token25] = ACTIONS(1816), - [aux_sym_cmd_identifier_token26] = ACTIONS(1816), - [aux_sym_cmd_identifier_token27] = ACTIONS(1816), - [aux_sym_cmd_identifier_token28] = ACTIONS(1816), - [aux_sym_cmd_identifier_token29] = ACTIONS(1816), - [aux_sym_cmd_identifier_token30] = ACTIONS(1816), - [aux_sym_cmd_identifier_token31] = ACTIONS(1816), - [aux_sym_cmd_identifier_token32] = ACTIONS(1816), - [aux_sym_cmd_identifier_token33] = ACTIONS(1816), - [aux_sym_cmd_identifier_token34] = ACTIONS(1816), - [aux_sym_cmd_identifier_token35] = ACTIONS(1816), - [aux_sym_cmd_identifier_token36] = ACTIONS(1816), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1818), - [aux_sym_cmd_identifier_token38] = ACTIONS(1816), - [aux_sym_cmd_identifier_token39] = ACTIONS(1818), - [aux_sym_cmd_identifier_token40] = ACTIONS(1818), - [anon_sym_def] = ACTIONS(1816), - [anon_sym_export_DASHenv] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_module] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_error] = ACTIONS(1816), - [anon_sym_list] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_make] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_do] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_catch] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_source] = ACTIONS(1816), - [anon_sym_source_DASHenv] = ACTIONS(1816), - [anon_sym_register] = ACTIONS(1816), - [anon_sym_hide] = ACTIONS(1816), - [anon_sym_hide_DASHenv] = ACTIONS(1816), - [anon_sym_overlay] = ACTIONS(1816), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1818), - [aux_sym__val_number_decimal_token1] = ACTIONS(1816), - [aux_sym__val_number_decimal_token2] = ACTIONS(1818), - [anon_sym_DOT2] = ACTIONS(1816), - [aux_sym__val_number_decimal_token3] = ACTIONS(1818), - [aux_sym__val_number_token1] = ACTIONS(1818), - [aux_sym__val_number_token2] = ACTIONS(1818), - [aux_sym__val_number_token3] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [sym__str_single_quotes] = ACTIONS(1818), - [sym__str_back_ticks] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(3), - }, - [419] = { - [sym_comment] = STATE(419), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [aux_sym_cmd_identifier_token1] = ACTIONS(928), - [aux_sym_cmd_identifier_token2] = ACTIONS(928), - [aux_sym_cmd_identifier_token3] = ACTIONS(928), - [aux_sym_cmd_identifier_token4] = ACTIONS(928), - [aux_sym_cmd_identifier_token5] = ACTIONS(928), - [aux_sym_cmd_identifier_token6] = ACTIONS(928), - [aux_sym_cmd_identifier_token7] = ACTIONS(928), - [aux_sym_cmd_identifier_token8] = ACTIONS(928), - [aux_sym_cmd_identifier_token9] = ACTIONS(928), - [aux_sym_cmd_identifier_token10] = ACTIONS(928), - [aux_sym_cmd_identifier_token11] = ACTIONS(928), - [aux_sym_cmd_identifier_token12] = ACTIONS(928), - [aux_sym_cmd_identifier_token13] = ACTIONS(928), - [aux_sym_cmd_identifier_token14] = ACTIONS(928), - [aux_sym_cmd_identifier_token15] = ACTIONS(928), - [aux_sym_cmd_identifier_token16] = ACTIONS(928), - [aux_sym_cmd_identifier_token17] = ACTIONS(928), - [aux_sym_cmd_identifier_token18] = ACTIONS(928), - [aux_sym_cmd_identifier_token19] = ACTIONS(928), - [aux_sym_cmd_identifier_token20] = ACTIONS(928), - [aux_sym_cmd_identifier_token21] = ACTIONS(928), - [aux_sym_cmd_identifier_token22] = ACTIONS(928), - [aux_sym_cmd_identifier_token23] = ACTIONS(928), - [aux_sym_cmd_identifier_token24] = ACTIONS(928), - [aux_sym_cmd_identifier_token25] = ACTIONS(928), - [aux_sym_cmd_identifier_token26] = ACTIONS(928), - [aux_sym_cmd_identifier_token27] = ACTIONS(928), - [aux_sym_cmd_identifier_token28] = ACTIONS(928), - [aux_sym_cmd_identifier_token29] = ACTIONS(928), - [aux_sym_cmd_identifier_token30] = ACTIONS(928), - [aux_sym_cmd_identifier_token31] = ACTIONS(928), - [aux_sym_cmd_identifier_token32] = ACTIONS(928), - [aux_sym_cmd_identifier_token33] = ACTIONS(928), - [aux_sym_cmd_identifier_token34] = ACTIONS(928), - [aux_sym_cmd_identifier_token35] = ACTIONS(928), - [aux_sym_cmd_identifier_token36] = ACTIONS(928), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [anon_sym_null] = ACTIONS(930), - [aux_sym_cmd_identifier_token38] = ACTIONS(928), - [aux_sym_cmd_identifier_token39] = ACTIONS(930), - [aux_sym_cmd_identifier_token40] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_error] = ACTIONS(928), - [anon_sym_list] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_make] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_try] = ACTIONS(928), - [anon_sym_catch] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_as] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(930), - [aux_sym__val_number_decimal_token1] = ACTIONS(928), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [anon_sym_DOT2] = ACTIONS(928), - [aux_sym__val_number_decimal_token3] = ACTIONS(930), - [aux_sym__val_number_token1] = ACTIONS(930), - [aux_sym__val_number_token2] = ACTIONS(930), - [aux_sym__val_number_token3] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym__str_single_quotes] = ACTIONS(930), - [sym__str_back_ticks] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(930), - [aux_sym_record_entry_token1] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(3), - }, - [420] = { - [sym_comment] = STATE(420), - [anon_sym_export] = ACTIONS(912), - [anon_sym_alias] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_let_DASHenv] = ACTIONS(912), - [anon_sym_mut] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [aux_sym_cmd_identifier_token1] = ACTIONS(912), - [aux_sym_cmd_identifier_token2] = ACTIONS(912), - [aux_sym_cmd_identifier_token3] = ACTIONS(912), - [aux_sym_cmd_identifier_token4] = ACTIONS(912), - [aux_sym_cmd_identifier_token5] = ACTIONS(912), - [aux_sym_cmd_identifier_token6] = ACTIONS(912), - [aux_sym_cmd_identifier_token7] = ACTIONS(912), - [aux_sym_cmd_identifier_token8] = ACTIONS(912), - [aux_sym_cmd_identifier_token9] = ACTIONS(912), - [aux_sym_cmd_identifier_token10] = ACTIONS(912), - [aux_sym_cmd_identifier_token11] = ACTIONS(912), - [aux_sym_cmd_identifier_token12] = ACTIONS(912), - [aux_sym_cmd_identifier_token13] = ACTIONS(912), - [aux_sym_cmd_identifier_token14] = ACTIONS(912), - [aux_sym_cmd_identifier_token15] = ACTIONS(912), - [aux_sym_cmd_identifier_token16] = ACTIONS(912), - [aux_sym_cmd_identifier_token17] = ACTIONS(912), - [aux_sym_cmd_identifier_token18] = ACTIONS(912), - [aux_sym_cmd_identifier_token19] = ACTIONS(912), - [aux_sym_cmd_identifier_token20] = ACTIONS(912), - [aux_sym_cmd_identifier_token21] = ACTIONS(912), - [aux_sym_cmd_identifier_token22] = ACTIONS(912), - [aux_sym_cmd_identifier_token23] = ACTIONS(912), - [aux_sym_cmd_identifier_token24] = ACTIONS(912), - [aux_sym_cmd_identifier_token25] = ACTIONS(912), - [aux_sym_cmd_identifier_token26] = ACTIONS(912), - [aux_sym_cmd_identifier_token27] = ACTIONS(912), - [aux_sym_cmd_identifier_token28] = ACTIONS(912), - [aux_sym_cmd_identifier_token29] = ACTIONS(912), - [aux_sym_cmd_identifier_token30] = ACTIONS(912), - [aux_sym_cmd_identifier_token31] = ACTIONS(912), - [aux_sym_cmd_identifier_token32] = ACTIONS(912), - [aux_sym_cmd_identifier_token33] = ACTIONS(912), - [aux_sym_cmd_identifier_token34] = ACTIONS(912), - [aux_sym_cmd_identifier_token35] = ACTIONS(912), - [aux_sym_cmd_identifier_token36] = ACTIONS(912), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_null] = ACTIONS(912), - [aux_sym_cmd_identifier_token38] = ACTIONS(912), - [aux_sym_cmd_identifier_token39] = ACTIONS(912), - [aux_sym_cmd_identifier_token40] = ACTIONS(912), - [anon_sym_def] = ACTIONS(912), - [anon_sym_export_DASHenv] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym_module] = ACTIONS(912), - [anon_sym_use] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(912), - [anon_sym_error] = ACTIONS(912), - [anon_sym_list] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [anon_sym_loop] = ACTIONS(912), - [anon_sym_make] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_match] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_try] = ACTIONS(912), - [anon_sym_catch] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_source] = ACTIONS(912), - [anon_sym_source_DASHenv] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_hide] = ACTIONS(912), - [anon_sym_hide_DASHenv] = ACTIONS(912), - [anon_sym_overlay] = ACTIONS(912), - [anon_sym_new] = ACTIONS(912), - [anon_sym_as] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(912), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(912), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(912), - [aux_sym__val_number_token1] = ACTIONS(912), - [aux_sym__val_number_token2] = ACTIONS(912), - [aux_sym__val_number_token3] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym__str_single_quotes] = ACTIONS(912), - [sym__str_back_ticks] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(912), - [sym__entry_separator] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(121), - }, - [421] = { - [sym__expr_parenthesized_immediate] = STATE(7789), - [sym_comment] = STATE(421), - [anon_sym_export] = ACTIONS(2031), - [anon_sym_alias] = ACTIONS(2031), - [anon_sym_let] = ACTIONS(2031), - [anon_sym_let_DASHenv] = ACTIONS(2031), - [anon_sym_mut] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [aux_sym_cmd_identifier_token1] = ACTIONS(2031), - [aux_sym_cmd_identifier_token2] = ACTIONS(2031), - [aux_sym_cmd_identifier_token3] = ACTIONS(2031), - [aux_sym_cmd_identifier_token4] = ACTIONS(2031), - [aux_sym_cmd_identifier_token5] = ACTIONS(2031), - [aux_sym_cmd_identifier_token6] = ACTIONS(2031), - [aux_sym_cmd_identifier_token7] = ACTIONS(2031), - [aux_sym_cmd_identifier_token8] = ACTIONS(2031), - [aux_sym_cmd_identifier_token9] = ACTIONS(2031), - [aux_sym_cmd_identifier_token10] = ACTIONS(2031), - [aux_sym_cmd_identifier_token11] = ACTIONS(2031), - [aux_sym_cmd_identifier_token12] = ACTIONS(2031), - [aux_sym_cmd_identifier_token13] = ACTIONS(2031), - [aux_sym_cmd_identifier_token14] = ACTIONS(2031), - [aux_sym_cmd_identifier_token15] = ACTIONS(2031), - [aux_sym_cmd_identifier_token16] = ACTIONS(2031), - [aux_sym_cmd_identifier_token17] = ACTIONS(2031), - [aux_sym_cmd_identifier_token18] = ACTIONS(2031), - [aux_sym_cmd_identifier_token19] = ACTIONS(2031), - [aux_sym_cmd_identifier_token20] = ACTIONS(2031), - [aux_sym_cmd_identifier_token21] = ACTIONS(2031), - [aux_sym_cmd_identifier_token22] = ACTIONS(2031), - [aux_sym_cmd_identifier_token23] = ACTIONS(2031), - [aux_sym_cmd_identifier_token24] = ACTIONS(2031), - [aux_sym_cmd_identifier_token25] = ACTIONS(2031), - [aux_sym_cmd_identifier_token26] = ACTIONS(2031), - [aux_sym_cmd_identifier_token27] = ACTIONS(2031), - [aux_sym_cmd_identifier_token28] = ACTIONS(2031), - [aux_sym_cmd_identifier_token29] = ACTIONS(2031), - [aux_sym_cmd_identifier_token30] = ACTIONS(2031), - [aux_sym_cmd_identifier_token31] = ACTIONS(2031), - [aux_sym_cmd_identifier_token32] = ACTIONS(2031), - [aux_sym_cmd_identifier_token33] = ACTIONS(2031), - [aux_sym_cmd_identifier_token34] = ACTIONS(2031), - [aux_sym_cmd_identifier_token35] = ACTIONS(2031), - [aux_sym_cmd_identifier_token36] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [aux_sym_cmd_identifier_token38] = ACTIONS(2031), - [aux_sym_cmd_identifier_token39] = ACTIONS(2031), - [aux_sym_cmd_identifier_token40] = ACTIONS(2031), - [anon_sym_def] = ACTIONS(2031), - [anon_sym_export_DASHenv] = ACTIONS(2031), - [anon_sym_extern] = ACTIONS(2031), - [anon_sym_module] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2031), - [anon_sym_error] = ACTIONS(2031), - [anon_sym_list] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_in] = ACTIONS(2031), - [anon_sym_loop] = ACTIONS(2031), - [anon_sym_make] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_else] = ACTIONS(2031), - [anon_sym_match] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_catch] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_source] = ACTIONS(2031), - [anon_sym_source_DASHenv] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2031), - [anon_sym_hide] = ACTIONS(2031), - [anon_sym_hide_DASHenv] = ACTIONS(2031), - [anon_sym_overlay] = ACTIONS(2031), - [anon_sym_new] = ACTIONS(2031), - [anon_sym_as] = ACTIONS(2031), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2031), - [aux_sym__val_number_decimal_token1] = ACTIONS(2031), - [aux_sym__val_number_decimal_token2] = ACTIONS(2031), - [anon_sym_DOT2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token3] = ACTIONS(2031), - [aux_sym__val_number_token1] = ACTIONS(2031), - [aux_sym__val_number_token2] = ACTIONS(2031), - [aux_sym__val_number_token3] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(2031), - [sym__str_single_quotes] = ACTIONS(2031), - [sym__str_back_ticks] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2031), - [sym__entry_separator] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(121), - }, - [422] = { - [sym__expr_parenthesized_immediate] = STATE(7789), - [sym_comment] = STATE(422), - [anon_sym_export] = ACTIONS(2035), - [anon_sym_alias] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_let_DASHenv] = ACTIONS(2035), - [anon_sym_mut] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [aux_sym_cmd_identifier_token1] = ACTIONS(2035), - [aux_sym_cmd_identifier_token2] = ACTIONS(2035), - [aux_sym_cmd_identifier_token3] = ACTIONS(2035), - [aux_sym_cmd_identifier_token4] = ACTIONS(2035), - [aux_sym_cmd_identifier_token5] = ACTIONS(2035), - [aux_sym_cmd_identifier_token6] = ACTIONS(2035), - [aux_sym_cmd_identifier_token7] = ACTIONS(2035), - [aux_sym_cmd_identifier_token8] = ACTIONS(2035), - [aux_sym_cmd_identifier_token9] = ACTIONS(2035), - [aux_sym_cmd_identifier_token10] = ACTIONS(2035), - [aux_sym_cmd_identifier_token11] = ACTIONS(2035), - [aux_sym_cmd_identifier_token12] = ACTIONS(2035), - [aux_sym_cmd_identifier_token13] = ACTIONS(2035), - [aux_sym_cmd_identifier_token14] = ACTIONS(2035), - [aux_sym_cmd_identifier_token15] = ACTIONS(2035), - [aux_sym_cmd_identifier_token16] = ACTIONS(2035), - [aux_sym_cmd_identifier_token17] = ACTIONS(2035), - [aux_sym_cmd_identifier_token18] = ACTIONS(2035), - [aux_sym_cmd_identifier_token19] = ACTIONS(2035), - [aux_sym_cmd_identifier_token20] = ACTIONS(2035), - [aux_sym_cmd_identifier_token21] = ACTIONS(2035), - [aux_sym_cmd_identifier_token22] = ACTIONS(2035), - [aux_sym_cmd_identifier_token23] = ACTIONS(2035), - [aux_sym_cmd_identifier_token24] = ACTIONS(2035), - [aux_sym_cmd_identifier_token25] = ACTIONS(2035), - [aux_sym_cmd_identifier_token26] = ACTIONS(2035), - [aux_sym_cmd_identifier_token27] = ACTIONS(2035), - [aux_sym_cmd_identifier_token28] = ACTIONS(2035), - [aux_sym_cmd_identifier_token29] = ACTIONS(2035), - [aux_sym_cmd_identifier_token30] = ACTIONS(2035), - [aux_sym_cmd_identifier_token31] = ACTIONS(2035), - [aux_sym_cmd_identifier_token32] = ACTIONS(2035), - [aux_sym_cmd_identifier_token33] = ACTIONS(2035), - [aux_sym_cmd_identifier_token34] = ACTIONS(2035), - [aux_sym_cmd_identifier_token35] = ACTIONS(2035), - [aux_sym_cmd_identifier_token36] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [aux_sym_cmd_identifier_token38] = ACTIONS(2035), - [aux_sym_cmd_identifier_token39] = ACTIONS(2035), - [aux_sym_cmd_identifier_token40] = ACTIONS(2035), - [anon_sym_def] = ACTIONS(2035), - [anon_sym_export_DASHenv] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_module] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_in] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_make] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_source] = ACTIONS(2035), - [anon_sym_source_DASHenv] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_hide] = ACTIONS(2035), - [anon_sym_hide_DASHenv] = ACTIONS(2035), - [anon_sym_overlay] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_as] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2035), - [anon_sym_DOT2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), - [sym__entry_separator] = ACTIONS(2037), - [anon_sym_POUND] = ACTIONS(121), - }, - [423] = { - [sym_comment] = STATE(423), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_alias] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_let_DASHenv] = ACTIONS(1587), - [anon_sym_mut] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [aux_sym_cmd_identifier_token1] = ACTIONS(1587), - [aux_sym_cmd_identifier_token2] = ACTIONS(1587), - [aux_sym_cmd_identifier_token3] = ACTIONS(1587), - [aux_sym_cmd_identifier_token4] = ACTIONS(1587), - [aux_sym_cmd_identifier_token5] = ACTIONS(1587), - [aux_sym_cmd_identifier_token6] = ACTIONS(1587), - [aux_sym_cmd_identifier_token7] = ACTIONS(1587), - [aux_sym_cmd_identifier_token8] = ACTIONS(1587), - [aux_sym_cmd_identifier_token9] = ACTIONS(1587), - [aux_sym_cmd_identifier_token10] = ACTIONS(1587), - [aux_sym_cmd_identifier_token11] = ACTIONS(1587), - [aux_sym_cmd_identifier_token12] = ACTIONS(1587), - [aux_sym_cmd_identifier_token13] = ACTIONS(1587), - [aux_sym_cmd_identifier_token14] = ACTIONS(1587), - [aux_sym_cmd_identifier_token15] = ACTIONS(1587), - [aux_sym_cmd_identifier_token16] = ACTIONS(1587), - [aux_sym_cmd_identifier_token17] = ACTIONS(1587), - [aux_sym_cmd_identifier_token18] = ACTIONS(1587), - [aux_sym_cmd_identifier_token19] = ACTIONS(1587), - [aux_sym_cmd_identifier_token20] = ACTIONS(1587), - [aux_sym_cmd_identifier_token21] = ACTIONS(1587), - [aux_sym_cmd_identifier_token22] = ACTIONS(1587), - [aux_sym_cmd_identifier_token23] = ACTIONS(1587), - [aux_sym_cmd_identifier_token24] = ACTIONS(1587), - [aux_sym_cmd_identifier_token25] = ACTIONS(1587), - [aux_sym_cmd_identifier_token26] = ACTIONS(1587), - [aux_sym_cmd_identifier_token27] = ACTIONS(1587), - [aux_sym_cmd_identifier_token28] = ACTIONS(1587), - [aux_sym_cmd_identifier_token29] = ACTIONS(1587), - [aux_sym_cmd_identifier_token30] = ACTIONS(1587), - [aux_sym_cmd_identifier_token31] = ACTIONS(1587), - [aux_sym_cmd_identifier_token32] = ACTIONS(1587), - [aux_sym_cmd_identifier_token33] = ACTIONS(1587), - [aux_sym_cmd_identifier_token34] = ACTIONS(1587), - [aux_sym_cmd_identifier_token35] = ACTIONS(1587), - [aux_sym_cmd_identifier_token36] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1595), - [aux_sym_cmd_identifier_token40] = ACTIONS(1595), - [anon_sym_def] = ACTIONS(1587), - [anon_sym_export_DASHenv] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_error] = ACTIONS(1587), - [anon_sym_list] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_make] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_source] = ACTIONS(1587), - [anon_sym_source_DASHenv] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_hide] = ACTIONS(1587), - [anon_sym_hide_DASHenv] = ACTIONS(1587), - [anon_sym_overlay] = ACTIONS(1587), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_as] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1595), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1595), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1595), - [anon_sym_DOT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1595), - [aux_sym__val_number_token1] = ACTIONS(1595), - [aux_sym__val_number_token2] = ACTIONS(1595), - [aux_sym__val_number_token3] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym__str_single_quotes] = ACTIONS(1595), - [sym__str_back_ticks] = ACTIONS(1595), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1595), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), - }, - [424] = { - [sym_comment] = STATE(424), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(948), - [aux_sym_cmd_identifier_token3] = ACTIONS(948), - [aux_sym_cmd_identifier_token4] = ACTIONS(948), - [aux_sym_cmd_identifier_token5] = ACTIONS(948), - [aux_sym_cmd_identifier_token6] = ACTIONS(948), - [aux_sym_cmd_identifier_token7] = ACTIONS(948), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(948), - [aux_sym_cmd_identifier_token11] = ACTIONS(948), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(948), - [aux_sym_cmd_identifier_token17] = ACTIONS(948), - [aux_sym_cmd_identifier_token18] = ACTIONS(948), - [aux_sym_cmd_identifier_token19] = ACTIONS(948), - [aux_sym_cmd_identifier_token20] = ACTIONS(948), - [aux_sym_cmd_identifier_token21] = ACTIONS(948), - [aux_sym_cmd_identifier_token22] = ACTIONS(948), - [aux_sym_cmd_identifier_token23] = ACTIONS(948), - [aux_sym_cmd_identifier_token24] = ACTIONS(948), - [aux_sym_cmd_identifier_token25] = ACTIONS(948), - [aux_sym_cmd_identifier_token26] = ACTIONS(948), - [aux_sym_cmd_identifier_token27] = ACTIONS(948), - [aux_sym_cmd_identifier_token28] = ACTIONS(948), - [aux_sym_cmd_identifier_token29] = ACTIONS(948), - [aux_sym_cmd_identifier_token30] = ACTIONS(948), - [aux_sym_cmd_identifier_token31] = ACTIONS(948), - [aux_sym_cmd_identifier_token32] = ACTIONS(948), - [aux_sym_cmd_identifier_token33] = ACTIONS(948), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(948), - [aux_sym_cmd_identifier_token36] = ACTIONS(948), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_null] = ACTIONS(948), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(948), - [aux_sym_cmd_identifier_token40] = ACTIONS(948), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_list] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_new] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(2039), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(948), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(948), - [aux_sym__val_number_token1] = ACTIONS(948), - [aux_sym__val_number_token2] = ACTIONS(948), - [aux_sym__val_number_token3] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym__str_single_quotes] = ACTIONS(948), - [sym__str_back_ticks] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), - [sym__entry_separator] = ACTIONS(950), - [aux_sym__unquoted_in_record_token7] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1847), + [aux_sym_cmd_identifier_token3] = ACTIONS(1847), + [aux_sym_cmd_identifier_token4] = ACTIONS(1847), + [aux_sym_cmd_identifier_token5] = ACTIONS(1847), + [aux_sym_cmd_identifier_token6] = ACTIONS(1847), + [aux_sym_cmd_identifier_token7] = ACTIONS(1847), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1847), + [aux_sym_cmd_identifier_token11] = ACTIONS(1847), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1847), + [aux_sym_cmd_identifier_token17] = ACTIONS(1847), + [aux_sym_cmd_identifier_token18] = ACTIONS(1847), + [aux_sym_cmd_identifier_token19] = ACTIONS(1847), + [aux_sym_cmd_identifier_token20] = ACTIONS(1847), + [aux_sym_cmd_identifier_token21] = ACTIONS(1847), + [aux_sym_cmd_identifier_token22] = ACTIONS(1847), + [aux_sym_cmd_identifier_token23] = ACTIONS(1847), + [aux_sym_cmd_identifier_token24] = ACTIONS(1847), + [aux_sym_cmd_identifier_token25] = ACTIONS(1847), + [aux_sym_cmd_identifier_token26] = ACTIONS(1847), + [aux_sym_cmd_identifier_token27] = ACTIONS(1847), + [aux_sym_cmd_identifier_token28] = ACTIONS(1847), + [aux_sym_cmd_identifier_token29] = ACTIONS(1847), + [aux_sym_cmd_identifier_token30] = ACTIONS(1847), + [aux_sym_cmd_identifier_token31] = ACTIONS(1847), + [aux_sym_cmd_identifier_token32] = ACTIONS(1847), + [aux_sym_cmd_identifier_token33] = ACTIONS(1847), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1847), + [aux_sym_cmd_identifier_token36] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1849), + [aux_sym_cmd_identifier_token40] = ACTIONS(1849), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1849), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_list] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(247), }, - [425] = { - [sym_comment] = STATE(425), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1871), - [aux_sym_cmd_identifier_token3] = ACTIONS(1871), - [aux_sym_cmd_identifier_token4] = ACTIONS(1871), - [aux_sym_cmd_identifier_token5] = ACTIONS(1871), - [aux_sym_cmd_identifier_token6] = ACTIONS(1871), - [aux_sym_cmd_identifier_token7] = ACTIONS(1871), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1871), - [aux_sym_cmd_identifier_token11] = ACTIONS(1871), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1871), - [aux_sym_cmd_identifier_token17] = ACTIONS(1871), - [aux_sym_cmd_identifier_token18] = ACTIONS(1871), - [aux_sym_cmd_identifier_token19] = ACTIONS(1871), - [aux_sym_cmd_identifier_token20] = ACTIONS(1871), - [aux_sym_cmd_identifier_token21] = ACTIONS(1871), - [aux_sym_cmd_identifier_token22] = ACTIONS(1871), - [aux_sym_cmd_identifier_token23] = ACTIONS(1871), - [aux_sym_cmd_identifier_token24] = ACTIONS(1871), - [aux_sym_cmd_identifier_token25] = ACTIONS(1871), - [aux_sym_cmd_identifier_token26] = ACTIONS(1871), - [aux_sym_cmd_identifier_token27] = ACTIONS(1871), - [aux_sym_cmd_identifier_token28] = ACTIONS(1871), - [aux_sym_cmd_identifier_token29] = ACTIONS(1871), - [aux_sym_cmd_identifier_token30] = ACTIONS(1871), - [aux_sym_cmd_identifier_token31] = ACTIONS(1871), - [aux_sym_cmd_identifier_token32] = ACTIONS(1871), - [aux_sym_cmd_identifier_token33] = ACTIONS(1871), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1871), - [aux_sym_cmd_identifier_token36] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1877), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_list] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), - [anon_sym_DOT_DOT2] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2045), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [anon_sym_DOT2] = ACTIONS(1871), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), + [415] = { + [sym_comment] = STATE(415), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(2062), + [aux_sym__immediate_decimal_token2] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), + }, + [416] = { + [sym_cell_path] = STATE(648), + [sym_path] = STATE(532), + [sym_comment] = STATE(416), + [aux_sym_cell_path_repeat1] = STATE(424), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_alias] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_let_DASHenv] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [aux_sym_cmd_identifier_token1] = ACTIONS(1843), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1843), + [aux_sym_cmd_identifier_token9] = ACTIONS(1843), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1843), + [aux_sym_cmd_identifier_token13] = ACTIONS(1843), + [aux_sym_cmd_identifier_token14] = ACTIONS(1843), + [aux_sym_cmd_identifier_token15] = ACTIONS(1843), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1843), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [anon_sym_null] = ACTIONS(1845), + [aux_sym_cmd_identifier_token38] = ACTIONS(1843), + [aux_sym_cmd_identifier_token39] = ACTIONS(1845), + [aux_sym_cmd_identifier_token40] = ACTIONS(1845), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_export_DASHenv] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1845), + [anon_sym_error] = ACTIONS(1843), + [anon_sym_list] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_make] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_source] = ACTIONS(1843), + [anon_sym_source_DASHenv] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1843), + [anon_sym_hide] = ACTIONS(1843), + [anon_sym_hide_DASHenv] = ACTIONS(1843), + [anon_sym_overlay] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1845), + [aux_sym__val_number_decimal_token3] = ACTIONS(1845), + [aux_sym__val_number_decimal_token4] = ACTIONS(1845), + [aux_sym__val_number_token1] = ACTIONS(1845), + [aux_sym__val_number_token2] = ACTIONS(1845), + [aux_sym__val_number_token3] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [sym__str_single_quotes] = ACTIONS(1845), + [sym__str_back_ticks] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(247), + }, + [417] = { + [sym_comment] = STATE(417), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [aux_sym_cmd_identifier_token1] = ACTIONS(2066), + [aux_sym_cmd_identifier_token2] = ACTIONS(2066), + [aux_sym_cmd_identifier_token3] = ACTIONS(2066), + [aux_sym_cmd_identifier_token4] = ACTIONS(2066), + [aux_sym_cmd_identifier_token5] = ACTIONS(2066), + [aux_sym_cmd_identifier_token6] = ACTIONS(2066), + [aux_sym_cmd_identifier_token7] = ACTIONS(2066), + [aux_sym_cmd_identifier_token8] = ACTIONS(2066), + [aux_sym_cmd_identifier_token9] = ACTIONS(2066), + [aux_sym_cmd_identifier_token10] = ACTIONS(2066), + [aux_sym_cmd_identifier_token11] = ACTIONS(2066), + [aux_sym_cmd_identifier_token12] = ACTIONS(2066), + [aux_sym_cmd_identifier_token13] = ACTIONS(2066), + [aux_sym_cmd_identifier_token14] = ACTIONS(2066), + [aux_sym_cmd_identifier_token15] = ACTIONS(2066), + [aux_sym_cmd_identifier_token16] = ACTIONS(2066), + [aux_sym_cmd_identifier_token17] = ACTIONS(2066), + [aux_sym_cmd_identifier_token18] = ACTIONS(2066), + [aux_sym_cmd_identifier_token19] = ACTIONS(2066), + [aux_sym_cmd_identifier_token20] = ACTIONS(2066), + [aux_sym_cmd_identifier_token21] = ACTIONS(2066), + [aux_sym_cmd_identifier_token22] = ACTIONS(2066), + [aux_sym_cmd_identifier_token23] = ACTIONS(2066), + [aux_sym_cmd_identifier_token24] = ACTIONS(2066), + [aux_sym_cmd_identifier_token25] = ACTIONS(2066), + [aux_sym_cmd_identifier_token26] = ACTIONS(2066), + [aux_sym_cmd_identifier_token27] = ACTIONS(2066), + [aux_sym_cmd_identifier_token28] = ACTIONS(2066), + [aux_sym_cmd_identifier_token29] = ACTIONS(2066), + [aux_sym_cmd_identifier_token30] = ACTIONS(2066), + [aux_sym_cmd_identifier_token31] = ACTIONS(2066), + [aux_sym_cmd_identifier_token32] = ACTIONS(2066), + [aux_sym_cmd_identifier_token33] = ACTIONS(2066), + [aux_sym_cmd_identifier_token34] = ACTIONS(2066), + [aux_sym_cmd_identifier_token35] = ACTIONS(2066), + [aux_sym_cmd_identifier_token36] = ACTIONS(2066), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [anon_sym_null] = ACTIONS(2066), + [aux_sym_cmd_identifier_token38] = ACTIONS(2066), + [aux_sym_cmd_identifier_token39] = ACTIONS(2066), + [aux_sym_cmd_identifier_token40] = ACTIONS(2066), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_list] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_in] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_make] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_new] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2066), + [anon_sym_DOT_DOT2] = ACTIONS(2068), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2070), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2066), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2066), + [aux_sym__val_number_decimal_token4] = ACTIONS(2066), + [aux_sym__val_number_token1] = ACTIONS(2066), + [aux_sym__val_number_token2] = ACTIONS(2066), + [aux_sym__val_number_token3] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [sym__str_single_quotes] = ACTIONS(2066), + [sym__str_back_ticks] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2066), + [sym__entry_separator] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(3), + }, + [418] = { + [sym_comment] = STATE(418), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [anon_sym_true] = ACTIONS(962), + [anon_sym_false] = ACTIONS(962), + [anon_sym_null] = ACTIONS(962), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(962), + [aux_sym_cmd_identifier_token40] = ACTIONS(962), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_error] = ACTIONS(962), + [anon_sym_list] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_new] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(962), + [aux_sym__val_number_decimal_token3] = ACTIONS(962), + [aux_sym__val_number_decimal_token4] = ACTIONS(962), + [aux_sym__val_number_token1] = ACTIONS(962), + [aux_sym__val_number_token2] = ACTIONS(962), + [aux_sym__val_number_token3] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), + [sym__entry_separator] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(3), + }, + [419] = { + [sym_expr_parenthesized] = STATE(4523), + [sym__spread_parenthesized] = STATE(4877), + [sym_val_range] = STATE(4895), + [sym__val_range] = STATE(7816), + [sym__val_range_with_end] = STATE(7649), + [sym__value] = STATE(4895), + [sym_val_nothing] = STATE(4994), + [sym_val_bool] = STATE(4669), + [sym__spread_variable] = STATE(4899), + [sym_val_variable] = STATE(4441), + [sym_val_number] = STATE(4994), + [sym__val_number_decimal] = STATE(4161), + [sym__val_number] = STATE(4878), + [sym_val_duration] = STATE(4994), + [sym_val_filesize] = STATE(4994), + [sym_val_binary] = STATE(4994), + [sym_val_string] = STATE(4994), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4994), + [sym__inter_single_quotes] = STATE(4902), + [sym__inter_double_quotes] = STATE(4928), + [sym_val_list] = STATE(4994), + [sym__spread_list] = STATE(4877), + [sym_val_record] = STATE(4994), + [sym_val_table] = STATE(4994), + [sym_val_closure] = STATE(4994), + [sym__cmd_arg] = STATE(5029), + [sym_redirection] = STATE(4914), + [sym__flag] = STATE(4915), + [sym_short_flag] = STATE(4979), + [sym_long_flag] = STATE(4979), + [sym_unquoted] = STATE(4557), + [sym__unquoted_with_expr] = STATE(4922), + [sym__unquoted_anonymous_prefix] = STATE(7231), + [sym_comment] = STATE(419), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [anon_sym_null] = ACTIONS(2006), + [aux_sym_cmd_identifier_token38] = ACTIONS(2008), + [aux_sym_cmd_identifier_token39] = ACTIONS(2008), + [aux_sym_cmd_identifier_token40] = ACTIONS(2008), + [sym__newline] = ACTIONS(2074), + [sym__space] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DASH] = ACTIONS(2022), + [aux_sym_ctrl_match_token1] = ACTIONS(2024), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2030), + [anon_sym_DOT_DOT_LT] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2034), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2038), + [aux_sym__val_number_token1] = ACTIONS(2040), + [aux_sym__val_number_token2] = ACTIONS(2040), + [aux_sym__val_number_token3] = ACTIONS(2040), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2048), + [sym__str_single_quotes] = ACTIONS(2050), + [sym__str_back_ticks] = ACTIONS(2050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2056), + [anon_sym_err_GT] = ACTIONS(2058), + [anon_sym_out_GT] = ACTIONS(2058), + [anon_sym_e_GT] = ACTIONS(2058), + [anon_sym_o_GT] = ACTIONS(2058), + [anon_sym_err_PLUSout_GT] = ACTIONS(2058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2058), + [anon_sym_o_PLUSe_GT] = ACTIONS(2058), + [anon_sym_e_PLUSo_GT] = ACTIONS(2058), + [anon_sym_err_GT_GT] = ACTIONS(2058), + [anon_sym_out_GT_GT] = ACTIONS(2058), + [anon_sym_e_GT_GT] = ACTIONS(2058), + [anon_sym_o_GT_GT] = ACTIONS(2058), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2058), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2058), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2058), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2058), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(3), + }, + [420] = { + [sym_comment] = STATE(420), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_list] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_new] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [aux_sym_record_entry_token1] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + }, + [421] = { + [sym_comment] = STATE(421), + [anon_sym_export] = ACTIONS(1690), + [anon_sym_alias] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_let_DASHenv] = ACTIONS(1690), + [anon_sym_mut] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [aux_sym_cmd_identifier_token1] = ACTIONS(1690), + [aux_sym_cmd_identifier_token2] = ACTIONS(1690), + [aux_sym_cmd_identifier_token3] = ACTIONS(1690), + [aux_sym_cmd_identifier_token4] = ACTIONS(1690), + [aux_sym_cmd_identifier_token5] = ACTIONS(1690), + [aux_sym_cmd_identifier_token6] = ACTIONS(1690), + [aux_sym_cmd_identifier_token7] = ACTIONS(1690), + [aux_sym_cmd_identifier_token8] = ACTIONS(1690), + [aux_sym_cmd_identifier_token9] = ACTIONS(1690), + [aux_sym_cmd_identifier_token10] = ACTIONS(1690), + [aux_sym_cmd_identifier_token11] = ACTIONS(1690), + [aux_sym_cmd_identifier_token12] = ACTIONS(1690), + [aux_sym_cmd_identifier_token13] = ACTIONS(1690), + [aux_sym_cmd_identifier_token14] = ACTIONS(1690), + [aux_sym_cmd_identifier_token15] = ACTIONS(1690), + [aux_sym_cmd_identifier_token16] = ACTIONS(1690), + [aux_sym_cmd_identifier_token17] = ACTIONS(1690), + [aux_sym_cmd_identifier_token18] = ACTIONS(1690), + [aux_sym_cmd_identifier_token19] = ACTIONS(1690), + [aux_sym_cmd_identifier_token20] = ACTIONS(1690), + [aux_sym_cmd_identifier_token21] = ACTIONS(1690), + [aux_sym_cmd_identifier_token22] = ACTIONS(1690), + [aux_sym_cmd_identifier_token23] = ACTIONS(1690), + [aux_sym_cmd_identifier_token24] = ACTIONS(1690), + [aux_sym_cmd_identifier_token25] = ACTIONS(1690), + [aux_sym_cmd_identifier_token26] = ACTIONS(1690), + [aux_sym_cmd_identifier_token27] = ACTIONS(1690), + [aux_sym_cmd_identifier_token28] = ACTIONS(1690), + [aux_sym_cmd_identifier_token29] = ACTIONS(1690), + [aux_sym_cmd_identifier_token30] = ACTIONS(1690), + [aux_sym_cmd_identifier_token31] = ACTIONS(1690), + [aux_sym_cmd_identifier_token32] = ACTIONS(1690), + [aux_sym_cmd_identifier_token33] = ACTIONS(1690), + [aux_sym_cmd_identifier_token34] = ACTIONS(1690), + [aux_sym_cmd_identifier_token35] = ACTIONS(1690), + [aux_sym_cmd_identifier_token36] = ACTIONS(1690), + [anon_sym_true] = ACTIONS(1690), + [anon_sym_false] = ACTIONS(1690), + [anon_sym_null] = ACTIONS(1690), + [aux_sym_cmd_identifier_token38] = ACTIONS(1690), + [aux_sym_cmd_identifier_token39] = ACTIONS(1690), + [aux_sym_cmd_identifier_token40] = ACTIONS(1690), + [anon_sym_def] = ACTIONS(1690), + [anon_sym_export_DASHenv] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_module] = ACTIONS(1690), + [anon_sym_use] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_DOLLAR] = ACTIONS(1690), + [anon_sym_error] = ACTIONS(1690), + [anon_sym_list] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_in] = ACTIONS(1690), + [anon_sym_loop] = ACTIONS(1690), + [anon_sym_make] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_do] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_try] = ACTIONS(1690), + [anon_sym_catch] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_source] = ACTIONS(1690), + [anon_sym_source_DASHenv] = ACTIONS(1690), + [anon_sym_register] = ACTIONS(1690), + [anon_sym_hide] = ACTIONS(1690), + [anon_sym_hide_DASHenv] = ACTIONS(1690), + [anon_sym_overlay] = ACTIONS(1690), + [anon_sym_new] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1690), + [anon_sym_LPAREN2] = ACTIONS(1692), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1690), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1690), + [aux_sym__val_number_decimal_token1] = ACTIONS(1690), + [aux_sym__val_number_decimal_token2] = ACTIONS(1690), + [aux_sym__val_number_decimal_token3] = ACTIONS(1690), + [aux_sym__val_number_decimal_token4] = ACTIONS(1690), + [aux_sym__val_number_token1] = ACTIONS(1690), + [aux_sym__val_number_token2] = ACTIONS(1690), + [aux_sym__val_number_token3] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [sym__str_single_quotes] = ACTIONS(1690), + [sym__str_back_ticks] = ACTIONS(1690), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1690), + [sym__entry_separator] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1690), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), [anon_sym_POUND] = ACTIONS(3), }, + [422] = { + [sym_comment] = STATE(422), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(986), + [anon_sym_list] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_new] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [aux_sym_record_entry_token1] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + }, + [423] = { + [sym_comment] = STATE(423), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_list] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_new] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [aux_sym_record_entry_token1] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), + }, + [424] = { + [sym_path] = STATE(532), + [sym_comment] = STATE(424), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(951), + [anon_sym_alias] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_let_DASHenv] = ACTIONS(951), + [anon_sym_mut] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [aux_sym_cmd_identifier_token1] = ACTIONS(951), + [aux_sym_cmd_identifier_token2] = ACTIONS(951), + [aux_sym_cmd_identifier_token3] = ACTIONS(951), + [aux_sym_cmd_identifier_token4] = ACTIONS(951), + [aux_sym_cmd_identifier_token5] = ACTIONS(951), + [aux_sym_cmd_identifier_token6] = ACTIONS(951), + [aux_sym_cmd_identifier_token7] = ACTIONS(951), + [aux_sym_cmd_identifier_token8] = ACTIONS(951), + [aux_sym_cmd_identifier_token9] = ACTIONS(951), + [aux_sym_cmd_identifier_token10] = ACTIONS(951), + [aux_sym_cmd_identifier_token11] = ACTIONS(951), + [aux_sym_cmd_identifier_token12] = ACTIONS(951), + [aux_sym_cmd_identifier_token13] = ACTIONS(951), + [aux_sym_cmd_identifier_token14] = ACTIONS(951), + [aux_sym_cmd_identifier_token15] = ACTIONS(951), + [aux_sym_cmd_identifier_token16] = ACTIONS(951), + [aux_sym_cmd_identifier_token17] = ACTIONS(951), + [aux_sym_cmd_identifier_token18] = ACTIONS(951), + [aux_sym_cmd_identifier_token19] = ACTIONS(951), + [aux_sym_cmd_identifier_token20] = ACTIONS(951), + [aux_sym_cmd_identifier_token21] = ACTIONS(951), + [aux_sym_cmd_identifier_token22] = ACTIONS(951), + [aux_sym_cmd_identifier_token23] = ACTIONS(951), + [aux_sym_cmd_identifier_token24] = ACTIONS(951), + [aux_sym_cmd_identifier_token25] = ACTIONS(951), + [aux_sym_cmd_identifier_token26] = ACTIONS(951), + [aux_sym_cmd_identifier_token27] = ACTIONS(951), + [aux_sym_cmd_identifier_token28] = ACTIONS(951), + [aux_sym_cmd_identifier_token29] = ACTIONS(951), + [aux_sym_cmd_identifier_token30] = ACTIONS(951), + [aux_sym_cmd_identifier_token31] = ACTIONS(951), + [aux_sym_cmd_identifier_token32] = ACTIONS(951), + [aux_sym_cmd_identifier_token33] = ACTIONS(951), + [aux_sym_cmd_identifier_token34] = ACTIONS(951), + [aux_sym_cmd_identifier_token35] = ACTIONS(951), + [aux_sym_cmd_identifier_token36] = ACTIONS(951), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_null] = ACTIONS(953), + [aux_sym_cmd_identifier_token38] = ACTIONS(951), + [aux_sym_cmd_identifier_token39] = ACTIONS(953), + [aux_sym_cmd_identifier_token40] = ACTIONS(953), + [anon_sym_def] = ACTIONS(951), + [anon_sym_export_DASHenv] = ACTIONS(951), + [anon_sym_extern] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_use] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_error] = ACTIONS(951), + [anon_sym_list] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_in] = ACTIONS(951), + [anon_sym_loop] = ACTIONS(951), + [anon_sym_make] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [anon_sym_do] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_else] = ACTIONS(951), + [anon_sym_match] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_try] = ACTIONS(951), + [anon_sym_catch] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_source] = ACTIONS(951), + [anon_sym_source_DASHenv] = ACTIONS(951), + [anon_sym_register] = ACTIONS(951), + [anon_sym_hide] = ACTIONS(951), + [anon_sym_hide_DASHenv] = ACTIONS(951), + [anon_sym_overlay] = ACTIONS(951), + [anon_sym_new] = ACTIONS(951), + [anon_sym_as] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(953), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(953), + [aux_sym__val_number_decimal_token3] = ACTIONS(953), + [aux_sym__val_number_decimal_token4] = ACTIONS(953), + [aux_sym__val_number_token1] = ACTIONS(953), + [aux_sym__val_number_token2] = ACTIONS(953), + [aux_sym__val_number_token3] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym__str_single_quotes] = ACTIONS(953), + [sym__str_back_ticks] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(247), + }, + [425] = { + [sym_path] = STATE(532), + [sym_comment] = STATE(425), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(955), + [anon_sym_alias] = ACTIONS(955), + [anon_sym_let] = ACTIONS(955), + [anon_sym_let_DASHenv] = ACTIONS(955), + [anon_sym_mut] = ACTIONS(955), + [anon_sym_const] = ACTIONS(955), + [aux_sym_cmd_identifier_token1] = ACTIONS(955), + [aux_sym_cmd_identifier_token2] = ACTIONS(955), + [aux_sym_cmd_identifier_token3] = ACTIONS(955), + [aux_sym_cmd_identifier_token4] = ACTIONS(955), + [aux_sym_cmd_identifier_token5] = ACTIONS(955), + [aux_sym_cmd_identifier_token6] = ACTIONS(955), + [aux_sym_cmd_identifier_token7] = ACTIONS(955), + [aux_sym_cmd_identifier_token8] = ACTIONS(955), + [aux_sym_cmd_identifier_token9] = ACTIONS(955), + [aux_sym_cmd_identifier_token10] = ACTIONS(955), + [aux_sym_cmd_identifier_token11] = ACTIONS(955), + [aux_sym_cmd_identifier_token12] = ACTIONS(955), + [aux_sym_cmd_identifier_token13] = ACTIONS(955), + [aux_sym_cmd_identifier_token14] = ACTIONS(955), + [aux_sym_cmd_identifier_token15] = ACTIONS(955), + [aux_sym_cmd_identifier_token16] = ACTIONS(955), + [aux_sym_cmd_identifier_token17] = ACTIONS(955), + [aux_sym_cmd_identifier_token18] = ACTIONS(955), + [aux_sym_cmd_identifier_token19] = ACTIONS(955), + [aux_sym_cmd_identifier_token20] = ACTIONS(955), + [aux_sym_cmd_identifier_token21] = ACTIONS(955), + [aux_sym_cmd_identifier_token22] = ACTIONS(955), + [aux_sym_cmd_identifier_token23] = ACTIONS(955), + [aux_sym_cmd_identifier_token24] = ACTIONS(955), + [aux_sym_cmd_identifier_token25] = ACTIONS(955), + [aux_sym_cmd_identifier_token26] = ACTIONS(955), + [aux_sym_cmd_identifier_token27] = ACTIONS(955), + [aux_sym_cmd_identifier_token28] = ACTIONS(955), + [aux_sym_cmd_identifier_token29] = ACTIONS(955), + [aux_sym_cmd_identifier_token30] = ACTIONS(955), + [aux_sym_cmd_identifier_token31] = ACTIONS(955), + [aux_sym_cmd_identifier_token32] = ACTIONS(955), + [aux_sym_cmd_identifier_token33] = ACTIONS(955), + [aux_sym_cmd_identifier_token34] = ACTIONS(955), + [aux_sym_cmd_identifier_token35] = ACTIONS(955), + [aux_sym_cmd_identifier_token36] = ACTIONS(955), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_null] = ACTIONS(957), + [aux_sym_cmd_identifier_token38] = ACTIONS(955), + [aux_sym_cmd_identifier_token39] = ACTIONS(957), + [aux_sym_cmd_identifier_token40] = ACTIONS(957), + [anon_sym_def] = ACTIONS(955), + [anon_sym_export_DASHenv] = ACTIONS(955), + [anon_sym_extern] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_use] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_error] = ACTIONS(955), + [anon_sym_list] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_break] = ACTIONS(955), + [anon_sym_continue] = ACTIONS(955), + [anon_sym_for] = ACTIONS(955), + [anon_sym_in] = ACTIONS(955), + [anon_sym_loop] = ACTIONS(955), + [anon_sym_make] = ACTIONS(955), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(955), + [anon_sym_if] = ACTIONS(955), + [anon_sym_else] = ACTIONS(955), + [anon_sym_match] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_try] = ACTIONS(955), + [anon_sym_catch] = ACTIONS(955), + [anon_sym_return] = ACTIONS(955), + [anon_sym_source] = ACTIONS(955), + [anon_sym_source_DASHenv] = ACTIONS(955), + [anon_sym_register] = ACTIONS(955), + [anon_sym_hide] = ACTIONS(955), + [anon_sym_hide_DASHenv] = ACTIONS(955), + [anon_sym_overlay] = ACTIONS(955), + [anon_sym_new] = ACTIONS(955), + [anon_sym_as] = ACTIONS(955), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(957), + [anon_sym_DOT] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(957), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(957), + [aux_sym__val_number_decimal_token3] = ACTIONS(957), + [aux_sym__val_number_decimal_token4] = ACTIONS(957), + [aux_sym__val_number_token1] = ACTIONS(957), + [aux_sym__val_number_token2] = ACTIONS(957), + [aux_sym__val_number_token3] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__str_single_quotes] = ACTIONS(957), + [sym__str_back_ticks] = ACTIONS(957), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(247), + }, [426] = { [sym_comment] = STATE(426), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1879), - [aux_sym_cmd_identifier_token3] = ACTIONS(1879), - [aux_sym_cmd_identifier_token4] = ACTIONS(1879), - [aux_sym_cmd_identifier_token5] = ACTIONS(1879), - [aux_sym_cmd_identifier_token6] = ACTIONS(1879), - [aux_sym_cmd_identifier_token7] = ACTIONS(1879), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1879), - [aux_sym_cmd_identifier_token11] = ACTIONS(1879), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1879), - [aux_sym_cmd_identifier_token17] = ACTIONS(1879), - [aux_sym_cmd_identifier_token18] = ACTIONS(1879), - [aux_sym_cmd_identifier_token19] = ACTIONS(1879), - [aux_sym_cmd_identifier_token20] = ACTIONS(1879), - [aux_sym_cmd_identifier_token21] = ACTIONS(1879), - [aux_sym_cmd_identifier_token22] = ACTIONS(1879), - [aux_sym_cmd_identifier_token23] = ACTIONS(1879), - [aux_sym_cmd_identifier_token24] = ACTIONS(1879), - [aux_sym_cmd_identifier_token25] = ACTIONS(1879), - [aux_sym_cmd_identifier_token26] = ACTIONS(1879), - [aux_sym_cmd_identifier_token27] = ACTIONS(1879), - [aux_sym_cmd_identifier_token28] = ACTIONS(1879), - [aux_sym_cmd_identifier_token29] = ACTIONS(1879), - [aux_sym_cmd_identifier_token30] = ACTIONS(1879), - [aux_sym_cmd_identifier_token31] = ACTIONS(1879), - [aux_sym_cmd_identifier_token32] = ACTIONS(1879), - [aux_sym_cmd_identifier_token33] = ACTIONS(1879), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1879), - [aux_sym_cmd_identifier_token36] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_list] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), - [anon_sym_DOT_DOT2] = ACTIONS(2047), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [anon_sym_DOT2] = ACTIONS(1879), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(247), }, [427] = { [sym_comment] = STATE(427), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(948), - [aux_sym_cmd_identifier_token3] = ACTIONS(948), - [aux_sym_cmd_identifier_token4] = ACTIONS(948), - [aux_sym_cmd_identifier_token5] = ACTIONS(948), - [aux_sym_cmd_identifier_token6] = ACTIONS(948), - [aux_sym_cmd_identifier_token7] = ACTIONS(948), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(948), - [aux_sym_cmd_identifier_token11] = ACTIONS(948), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(948), - [aux_sym_cmd_identifier_token17] = ACTIONS(948), - [aux_sym_cmd_identifier_token18] = ACTIONS(948), - [aux_sym_cmd_identifier_token19] = ACTIONS(948), - [aux_sym_cmd_identifier_token20] = ACTIONS(948), - [aux_sym_cmd_identifier_token21] = ACTIONS(948), - [aux_sym_cmd_identifier_token22] = ACTIONS(948), - [aux_sym_cmd_identifier_token23] = ACTIONS(948), - [aux_sym_cmd_identifier_token24] = ACTIONS(948), - [aux_sym_cmd_identifier_token25] = ACTIONS(948), - [aux_sym_cmd_identifier_token26] = ACTIONS(948), - [aux_sym_cmd_identifier_token27] = ACTIONS(948), - [aux_sym_cmd_identifier_token28] = ACTIONS(948), - [aux_sym_cmd_identifier_token29] = ACTIONS(948), - [aux_sym_cmd_identifier_token30] = ACTIONS(948), - [aux_sym_cmd_identifier_token31] = ACTIONS(948), - [aux_sym_cmd_identifier_token32] = ACTIONS(948), - [aux_sym_cmd_identifier_token33] = ACTIONS(948), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(948), - [aux_sym_cmd_identifier_token36] = ACTIONS(948), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(948), - [anon_sym_list] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_new] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2053), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1006), + [aux_sym_cmd_identifier_token3] = ACTIONS(1006), + [aux_sym_cmd_identifier_token4] = ACTIONS(1006), + [aux_sym_cmd_identifier_token5] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1006), + [aux_sym_cmd_identifier_token7] = ACTIONS(1006), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1006), + [aux_sym_cmd_identifier_token17] = ACTIONS(1006), + [aux_sym_cmd_identifier_token18] = ACTIONS(1006), + [aux_sym_cmd_identifier_token19] = ACTIONS(1006), + [aux_sym_cmd_identifier_token20] = ACTIONS(1006), + [aux_sym_cmd_identifier_token21] = ACTIONS(1006), + [aux_sym_cmd_identifier_token22] = ACTIONS(1006), + [aux_sym_cmd_identifier_token23] = ACTIONS(1006), + [aux_sym_cmd_identifier_token24] = ACTIONS(1006), + [aux_sym_cmd_identifier_token25] = ACTIONS(1006), + [aux_sym_cmd_identifier_token26] = ACTIONS(1006), + [aux_sym_cmd_identifier_token27] = ACTIONS(1006), + [aux_sym_cmd_identifier_token28] = ACTIONS(1006), + [aux_sym_cmd_identifier_token29] = ACTIONS(1006), + [aux_sym_cmd_identifier_token30] = ACTIONS(1006), + [aux_sym_cmd_identifier_token31] = ACTIONS(1006), + [aux_sym_cmd_identifier_token32] = ACTIONS(1006), + [aux_sym_cmd_identifier_token33] = ACTIONS(1006), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1006), + [aux_sym_cmd_identifier_token36] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_decimal_token4] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), + [sym__entry_separator] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2083), [anon_sym_POUND] = ACTIONS(3), }, [428] = { [sym_comment] = STATE(428), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_alias] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_let_DASHenv] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [aux_sym_cmd_identifier_token1] = ACTIONS(2055), - [aux_sym_cmd_identifier_token2] = ACTIONS(2055), - [aux_sym_cmd_identifier_token3] = ACTIONS(2055), - [aux_sym_cmd_identifier_token4] = ACTIONS(2055), - [aux_sym_cmd_identifier_token5] = ACTIONS(2055), - [aux_sym_cmd_identifier_token6] = ACTIONS(2055), - [aux_sym_cmd_identifier_token7] = ACTIONS(2055), - [aux_sym_cmd_identifier_token8] = ACTIONS(2055), - [aux_sym_cmd_identifier_token9] = ACTIONS(2055), - [aux_sym_cmd_identifier_token10] = ACTIONS(2055), - [aux_sym_cmd_identifier_token11] = ACTIONS(2055), - [aux_sym_cmd_identifier_token12] = ACTIONS(2055), - [aux_sym_cmd_identifier_token13] = ACTIONS(2055), - [aux_sym_cmd_identifier_token14] = ACTIONS(2055), - [aux_sym_cmd_identifier_token15] = ACTIONS(2055), - [aux_sym_cmd_identifier_token16] = ACTIONS(2055), - [aux_sym_cmd_identifier_token17] = ACTIONS(2055), - [aux_sym_cmd_identifier_token18] = ACTIONS(2055), - [aux_sym_cmd_identifier_token19] = ACTIONS(2055), - [aux_sym_cmd_identifier_token20] = ACTIONS(2055), - [aux_sym_cmd_identifier_token21] = ACTIONS(2055), - [aux_sym_cmd_identifier_token22] = ACTIONS(2055), - [aux_sym_cmd_identifier_token23] = ACTIONS(2055), - [aux_sym_cmd_identifier_token24] = ACTIONS(2055), - [aux_sym_cmd_identifier_token25] = ACTIONS(2055), - [aux_sym_cmd_identifier_token26] = ACTIONS(2055), - [aux_sym_cmd_identifier_token27] = ACTIONS(2055), - [aux_sym_cmd_identifier_token28] = ACTIONS(2055), - [aux_sym_cmd_identifier_token29] = ACTIONS(2055), - [aux_sym_cmd_identifier_token30] = ACTIONS(2055), - [aux_sym_cmd_identifier_token31] = ACTIONS(2055), - [aux_sym_cmd_identifier_token32] = ACTIONS(2055), - [aux_sym_cmd_identifier_token33] = ACTIONS(2055), - [aux_sym_cmd_identifier_token34] = ACTIONS(2055), - [aux_sym_cmd_identifier_token35] = ACTIONS(2055), - [aux_sym_cmd_identifier_token36] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [anon_sym_null] = ACTIONS(2055), - [aux_sym_cmd_identifier_token38] = ACTIONS(2055), - [aux_sym_cmd_identifier_token39] = ACTIONS(2055), - [aux_sym_cmd_identifier_token40] = ACTIONS(2055), - [anon_sym_def] = ACTIONS(2055), - [anon_sym_export_DASHenv] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_error] = ACTIONS(2055), - [anon_sym_list] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_make] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_catch] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_source] = ACTIONS(2055), - [anon_sym_source_DASHenv] = ACTIONS(2055), - [anon_sym_register] = ACTIONS(2055), - [anon_sym_hide] = ACTIONS(2055), - [anon_sym_hide_DASHenv] = ACTIONS(2055), - [anon_sym_overlay] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LPAREN2] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2055), - [aux_sym__val_number_decimal_token2] = ACTIONS(2055), - [anon_sym_DOT2] = ACTIONS(2055), - [aux_sym__val_number_decimal_token3] = ACTIONS(2055), - [aux_sym__val_number_token1] = ACTIONS(2055), - [aux_sym__val_number_token2] = ACTIONS(2055), - [aux_sym__val_number_token3] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [sym__str_single_quotes] = ACTIONS(2055), - [sym__str_back_ticks] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2055), - [sym__entry_separator] = ACTIONS(2055), - [aux_sym__unquoted_in_record_token3] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_alias] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_let_DASHenv] = ACTIONS(2085), + [anon_sym_mut] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [aux_sym_cmd_identifier_token1] = ACTIONS(2085), + [aux_sym_cmd_identifier_token2] = ACTIONS(2085), + [aux_sym_cmd_identifier_token3] = ACTIONS(2085), + [aux_sym_cmd_identifier_token4] = ACTIONS(2085), + [aux_sym_cmd_identifier_token5] = ACTIONS(2085), + [aux_sym_cmd_identifier_token6] = ACTIONS(2085), + [aux_sym_cmd_identifier_token7] = ACTIONS(2085), + [aux_sym_cmd_identifier_token8] = ACTIONS(2085), + [aux_sym_cmd_identifier_token9] = ACTIONS(2085), + [aux_sym_cmd_identifier_token10] = ACTIONS(2085), + [aux_sym_cmd_identifier_token11] = ACTIONS(2085), + [aux_sym_cmd_identifier_token12] = ACTIONS(2085), + [aux_sym_cmd_identifier_token13] = ACTIONS(2085), + [aux_sym_cmd_identifier_token14] = ACTIONS(2085), + [aux_sym_cmd_identifier_token15] = ACTIONS(2085), + [aux_sym_cmd_identifier_token16] = ACTIONS(2085), + [aux_sym_cmd_identifier_token17] = ACTIONS(2085), + [aux_sym_cmd_identifier_token18] = ACTIONS(2085), + [aux_sym_cmd_identifier_token19] = ACTIONS(2085), + [aux_sym_cmd_identifier_token20] = ACTIONS(2085), + [aux_sym_cmd_identifier_token21] = ACTIONS(2085), + [aux_sym_cmd_identifier_token22] = ACTIONS(2085), + [aux_sym_cmd_identifier_token23] = ACTIONS(2085), + [aux_sym_cmd_identifier_token24] = ACTIONS(2085), + [aux_sym_cmd_identifier_token25] = ACTIONS(2085), + [aux_sym_cmd_identifier_token26] = ACTIONS(2085), + [aux_sym_cmd_identifier_token27] = ACTIONS(2085), + [aux_sym_cmd_identifier_token28] = ACTIONS(2085), + [aux_sym_cmd_identifier_token29] = ACTIONS(2085), + [aux_sym_cmd_identifier_token30] = ACTIONS(2085), + [aux_sym_cmd_identifier_token31] = ACTIONS(2085), + [aux_sym_cmd_identifier_token32] = ACTIONS(2085), + [aux_sym_cmd_identifier_token33] = ACTIONS(2085), + [aux_sym_cmd_identifier_token34] = ACTIONS(2085), + [aux_sym_cmd_identifier_token35] = ACTIONS(2085), + [aux_sym_cmd_identifier_token36] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [anon_sym_null] = ACTIONS(2085), + [aux_sym_cmd_identifier_token38] = ACTIONS(2085), + [aux_sym_cmd_identifier_token39] = ACTIONS(2085), + [aux_sym_cmd_identifier_token40] = ACTIONS(2085), + [anon_sym_def] = ACTIONS(2085), + [anon_sym_export_DASHenv] = ACTIONS(2085), + [anon_sym_extern] = ACTIONS(2085), + [anon_sym_module] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_error] = ACTIONS(2085), + [anon_sym_list] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_in] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_make] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_else] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_catch] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_source] = ACTIONS(2085), + [anon_sym_source_DASHenv] = ACTIONS(2085), + [anon_sym_register] = ACTIONS(2085), + [anon_sym_hide] = ACTIONS(2085), + [anon_sym_hide_DASHenv] = ACTIONS(2085), + [anon_sym_overlay] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2085), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2085), + [aux_sym__val_number_decimal_token2] = ACTIONS(2085), + [aux_sym__val_number_decimal_token3] = ACTIONS(2085), + [aux_sym__val_number_decimal_token4] = ACTIONS(2085), + [aux_sym__val_number_token1] = ACTIONS(2085), + [aux_sym__val_number_token2] = ACTIONS(2085), + [aux_sym__val_number_token3] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [sym__str_single_quotes] = ACTIONS(2085), + [sym__str_back_ticks] = ACTIONS(2085), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2085), + [sym__entry_separator] = ACTIONS(2087), + [anon_sym_PLUS] = ACTIONS(2085), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(3), }, [429] = { [sym_comment] = STATE(429), - [anon_sym_export] = ACTIONS(900), - [anon_sym_alias] = ACTIONS(900), - [anon_sym_let] = ACTIONS(900), - [anon_sym_let_DASHenv] = ACTIONS(900), - [anon_sym_mut] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [aux_sym_cmd_identifier_token1] = ACTIONS(900), - [aux_sym_cmd_identifier_token2] = ACTIONS(900), - [aux_sym_cmd_identifier_token3] = ACTIONS(900), - [aux_sym_cmd_identifier_token4] = ACTIONS(900), - [aux_sym_cmd_identifier_token5] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(900), - [aux_sym_cmd_identifier_token7] = ACTIONS(900), - [aux_sym_cmd_identifier_token8] = ACTIONS(900), - [aux_sym_cmd_identifier_token9] = ACTIONS(900), - [aux_sym_cmd_identifier_token10] = ACTIONS(900), - [aux_sym_cmd_identifier_token11] = ACTIONS(900), - [aux_sym_cmd_identifier_token12] = ACTIONS(900), - [aux_sym_cmd_identifier_token13] = ACTIONS(900), - [aux_sym_cmd_identifier_token14] = ACTIONS(900), - [aux_sym_cmd_identifier_token15] = ACTIONS(900), - [aux_sym_cmd_identifier_token16] = ACTIONS(900), - [aux_sym_cmd_identifier_token17] = ACTIONS(900), - [aux_sym_cmd_identifier_token18] = ACTIONS(900), - [aux_sym_cmd_identifier_token19] = ACTIONS(900), - [aux_sym_cmd_identifier_token20] = ACTIONS(900), - [aux_sym_cmd_identifier_token21] = ACTIONS(900), - [aux_sym_cmd_identifier_token22] = ACTIONS(900), - [aux_sym_cmd_identifier_token23] = ACTIONS(900), - [aux_sym_cmd_identifier_token24] = ACTIONS(900), - [aux_sym_cmd_identifier_token25] = ACTIONS(900), - [aux_sym_cmd_identifier_token26] = ACTIONS(900), - [aux_sym_cmd_identifier_token27] = ACTIONS(900), - [aux_sym_cmd_identifier_token28] = ACTIONS(900), - [aux_sym_cmd_identifier_token29] = ACTIONS(900), - [aux_sym_cmd_identifier_token30] = ACTIONS(900), - [aux_sym_cmd_identifier_token31] = ACTIONS(900), - [aux_sym_cmd_identifier_token32] = ACTIONS(900), - [aux_sym_cmd_identifier_token33] = ACTIONS(900), - [aux_sym_cmd_identifier_token34] = ACTIONS(900), - [aux_sym_cmd_identifier_token35] = ACTIONS(900), - [aux_sym_cmd_identifier_token36] = ACTIONS(900), - [anon_sym_true] = ACTIONS(900), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [aux_sym_cmd_identifier_token38] = ACTIONS(900), - [aux_sym_cmd_identifier_token39] = ACTIONS(900), - [aux_sym_cmd_identifier_token40] = ACTIONS(900), - [anon_sym_def] = ACTIONS(900), - [anon_sym_export_DASHenv] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(900), - [anon_sym_module] = ACTIONS(900), - [anon_sym_use] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(900), - [anon_sym_DOLLAR] = ACTIONS(900), - [anon_sym_error] = ACTIONS(900), - [anon_sym_list] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(900), - [anon_sym_make] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_match] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [anon_sym_try] = ACTIONS(900), - [anon_sym_catch] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_source] = ACTIONS(900), - [anon_sym_source_DASHenv] = ACTIONS(900), - [anon_sym_register] = ACTIONS(900), - [anon_sym_hide] = ACTIONS(900), - [anon_sym_hide_DASHenv] = ACTIONS(900), - [anon_sym_overlay] = ACTIONS(900), - [anon_sym_new] = ACTIONS(900), - [anon_sym_as] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(900), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(900), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(900), - [aux_sym__val_number_token1] = ACTIONS(900), - [aux_sym__val_number_token2] = ACTIONS(900), - [aux_sym__val_number_token3] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym__str_single_quotes] = ACTIONS(900), - [sym__str_back_ticks] = ACTIONS(900), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(900), - [sym__entry_separator] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_alias] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_let_DASHenv] = ACTIONS(2089), + [anon_sym_mut] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [aux_sym_cmd_identifier_token1] = ACTIONS(2089), + [aux_sym_cmd_identifier_token2] = ACTIONS(2089), + [aux_sym_cmd_identifier_token3] = ACTIONS(2089), + [aux_sym_cmd_identifier_token4] = ACTIONS(2089), + [aux_sym_cmd_identifier_token5] = ACTIONS(2089), + [aux_sym_cmd_identifier_token6] = ACTIONS(2089), + [aux_sym_cmd_identifier_token7] = ACTIONS(2089), + [aux_sym_cmd_identifier_token8] = ACTIONS(2089), + [aux_sym_cmd_identifier_token9] = ACTIONS(2089), + [aux_sym_cmd_identifier_token10] = ACTIONS(2089), + [aux_sym_cmd_identifier_token11] = ACTIONS(2089), + [aux_sym_cmd_identifier_token12] = ACTIONS(2089), + [aux_sym_cmd_identifier_token13] = ACTIONS(2089), + [aux_sym_cmd_identifier_token14] = ACTIONS(2089), + [aux_sym_cmd_identifier_token15] = ACTIONS(2089), + [aux_sym_cmd_identifier_token16] = ACTIONS(2089), + [aux_sym_cmd_identifier_token17] = ACTIONS(2089), + [aux_sym_cmd_identifier_token18] = ACTIONS(2089), + [aux_sym_cmd_identifier_token19] = ACTIONS(2089), + [aux_sym_cmd_identifier_token20] = ACTIONS(2089), + [aux_sym_cmd_identifier_token21] = ACTIONS(2089), + [aux_sym_cmd_identifier_token22] = ACTIONS(2089), + [aux_sym_cmd_identifier_token23] = ACTIONS(2089), + [aux_sym_cmd_identifier_token24] = ACTIONS(2089), + [aux_sym_cmd_identifier_token25] = ACTIONS(2089), + [aux_sym_cmd_identifier_token26] = ACTIONS(2089), + [aux_sym_cmd_identifier_token27] = ACTIONS(2089), + [aux_sym_cmd_identifier_token28] = ACTIONS(2089), + [aux_sym_cmd_identifier_token29] = ACTIONS(2089), + [aux_sym_cmd_identifier_token30] = ACTIONS(2089), + [aux_sym_cmd_identifier_token31] = ACTIONS(2089), + [aux_sym_cmd_identifier_token32] = ACTIONS(2089), + [aux_sym_cmd_identifier_token33] = ACTIONS(2089), + [aux_sym_cmd_identifier_token34] = ACTIONS(2089), + [aux_sym_cmd_identifier_token35] = ACTIONS(2089), + [aux_sym_cmd_identifier_token36] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [aux_sym_cmd_identifier_token38] = ACTIONS(2089), + [aux_sym_cmd_identifier_token39] = ACTIONS(2089), + [aux_sym_cmd_identifier_token40] = ACTIONS(2089), + [anon_sym_def] = ACTIONS(2089), + [anon_sym_export_DASHenv] = ACTIONS(2089), + [anon_sym_extern] = ACTIONS(2089), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_DOLLAR] = ACTIONS(2089), + [anon_sym_error] = ACTIONS(2089), + [anon_sym_list] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_loop] = ACTIONS(2089), + [anon_sym_make] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_else] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_catch] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_source] = ACTIONS(2089), + [anon_sym_source_DASHenv] = ACTIONS(2089), + [anon_sym_register] = ACTIONS(2089), + [anon_sym_hide] = ACTIONS(2089), + [anon_sym_hide_DASHenv] = ACTIONS(2089), + [anon_sym_overlay] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_LPAREN2] = ACTIONS(2091), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2089), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), + [aux_sym__val_number_decimal_token1] = ACTIONS(2089), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2089), + [aux_sym__val_number_decimal_token4] = ACTIONS(2089), + [aux_sym__val_number_token1] = ACTIONS(2089), + [aux_sym__val_number_token2] = ACTIONS(2089), + [aux_sym__val_number_token3] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [sym__str_single_quotes] = ACTIONS(2089), + [sym__str_back_ticks] = ACTIONS(2089), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2089), + [sym__entry_separator] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2089), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(3), }, [430] = { [sym_comment] = STATE(430), - [anon_sym_export] = ACTIONS(906), - [anon_sym_alias] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_let_DASHenv] = ACTIONS(906), - [anon_sym_mut] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [aux_sym_cmd_identifier_token1] = ACTIONS(906), - [aux_sym_cmd_identifier_token2] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(906), - [aux_sym_cmd_identifier_token4] = ACTIONS(906), - [aux_sym_cmd_identifier_token5] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [aux_sym_cmd_identifier_token7] = ACTIONS(906), - [aux_sym_cmd_identifier_token8] = ACTIONS(906), - [aux_sym_cmd_identifier_token9] = ACTIONS(906), - [aux_sym_cmd_identifier_token10] = ACTIONS(906), - [aux_sym_cmd_identifier_token11] = ACTIONS(906), - [aux_sym_cmd_identifier_token12] = ACTIONS(906), - [aux_sym_cmd_identifier_token13] = ACTIONS(906), - [aux_sym_cmd_identifier_token14] = ACTIONS(906), - [aux_sym_cmd_identifier_token15] = ACTIONS(906), - [aux_sym_cmd_identifier_token16] = ACTIONS(906), - [aux_sym_cmd_identifier_token17] = ACTIONS(906), - [aux_sym_cmd_identifier_token18] = ACTIONS(906), - [aux_sym_cmd_identifier_token19] = ACTIONS(906), - [aux_sym_cmd_identifier_token20] = ACTIONS(906), - [aux_sym_cmd_identifier_token21] = ACTIONS(906), - [aux_sym_cmd_identifier_token22] = ACTIONS(906), - [aux_sym_cmd_identifier_token23] = ACTIONS(906), - [aux_sym_cmd_identifier_token24] = ACTIONS(906), - [aux_sym_cmd_identifier_token25] = ACTIONS(906), - [aux_sym_cmd_identifier_token26] = ACTIONS(906), - [aux_sym_cmd_identifier_token27] = ACTIONS(906), - [aux_sym_cmd_identifier_token28] = ACTIONS(906), - [aux_sym_cmd_identifier_token29] = ACTIONS(906), - [aux_sym_cmd_identifier_token30] = ACTIONS(906), - [aux_sym_cmd_identifier_token31] = ACTIONS(906), - [aux_sym_cmd_identifier_token32] = ACTIONS(906), - [aux_sym_cmd_identifier_token33] = ACTIONS(906), - [aux_sym_cmd_identifier_token34] = ACTIONS(906), - [aux_sym_cmd_identifier_token35] = ACTIONS(906), - [aux_sym_cmd_identifier_token36] = ACTIONS(906), - [anon_sym_true] = ACTIONS(906), - [anon_sym_false] = ACTIONS(906), - [anon_sym_null] = ACTIONS(906), - [aux_sym_cmd_identifier_token38] = ACTIONS(906), - [aux_sym_cmd_identifier_token39] = ACTIONS(906), - [aux_sym_cmd_identifier_token40] = ACTIONS(906), - [anon_sym_def] = ACTIONS(906), - [anon_sym_export_DASHenv] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_use] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_error] = ACTIONS(906), - [anon_sym_list] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_in] = ACTIONS(906), - [anon_sym_loop] = ACTIONS(906), - [anon_sym_make] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_try] = ACTIONS(906), - [anon_sym_catch] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_source] = ACTIONS(906), - [anon_sym_source_DASHenv] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_hide] = ACTIONS(906), - [anon_sym_hide_DASHenv] = ACTIONS(906), - [anon_sym_overlay] = ACTIONS(906), - [anon_sym_new] = ACTIONS(906), - [anon_sym_as] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(2063), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(906), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(906), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(906), - [aux_sym__val_number_token1] = ACTIONS(906), - [aux_sym__val_number_token2] = ACTIONS(906), - [aux_sym__val_number_token3] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [sym__str_single_quotes] = ACTIONS(906), - [sym__str_back_ticks] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(906), - [sym__entry_separator] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_alias] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_let_DASHenv] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [aux_sym_cmd_identifier_token1] = ACTIONS(2097), + [aux_sym_cmd_identifier_token2] = ACTIONS(2097), + [aux_sym_cmd_identifier_token3] = ACTIONS(2097), + [aux_sym_cmd_identifier_token4] = ACTIONS(2097), + [aux_sym_cmd_identifier_token5] = ACTIONS(2097), + [aux_sym_cmd_identifier_token6] = ACTIONS(2097), + [aux_sym_cmd_identifier_token7] = ACTIONS(2097), + [aux_sym_cmd_identifier_token8] = ACTIONS(2097), + [aux_sym_cmd_identifier_token9] = ACTIONS(2097), + [aux_sym_cmd_identifier_token10] = ACTIONS(2097), + [aux_sym_cmd_identifier_token11] = ACTIONS(2097), + [aux_sym_cmd_identifier_token12] = ACTIONS(2097), + [aux_sym_cmd_identifier_token13] = ACTIONS(2097), + [aux_sym_cmd_identifier_token14] = ACTIONS(2097), + [aux_sym_cmd_identifier_token15] = ACTIONS(2097), + [aux_sym_cmd_identifier_token16] = ACTIONS(2097), + [aux_sym_cmd_identifier_token17] = ACTIONS(2097), + [aux_sym_cmd_identifier_token18] = ACTIONS(2097), + [aux_sym_cmd_identifier_token19] = ACTIONS(2097), + [aux_sym_cmd_identifier_token20] = ACTIONS(2097), + [aux_sym_cmd_identifier_token21] = ACTIONS(2097), + [aux_sym_cmd_identifier_token22] = ACTIONS(2097), + [aux_sym_cmd_identifier_token23] = ACTIONS(2097), + [aux_sym_cmd_identifier_token24] = ACTIONS(2097), + [aux_sym_cmd_identifier_token25] = ACTIONS(2097), + [aux_sym_cmd_identifier_token26] = ACTIONS(2097), + [aux_sym_cmd_identifier_token27] = ACTIONS(2097), + [aux_sym_cmd_identifier_token28] = ACTIONS(2097), + [aux_sym_cmd_identifier_token29] = ACTIONS(2097), + [aux_sym_cmd_identifier_token30] = ACTIONS(2097), + [aux_sym_cmd_identifier_token31] = ACTIONS(2097), + [aux_sym_cmd_identifier_token32] = ACTIONS(2097), + [aux_sym_cmd_identifier_token33] = ACTIONS(2097), + [aux_sym_cmd_identifier_token34] = ACTIONS(2097), + [aux_sym_cmd_identifier_token35] = ACTIONS(2097), + [aux_sym_cmd_identifier_token36] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [aux_sym_cmd_identifier_token38] = ACTIONS(2097), + [aux_sym_cmd_identifier_token39] = ACTIONS(2097), + [aux_sym_cmd_identifier_token40] = ACTIONS(2097), + [anon_sym_def] = ACTIONS(2097), + [anon_sym_export_DASHenv] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_error] = ACTIONS(2097), + [anon_sym_list] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_make] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_else] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_catch] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_source] = ACTIONS(2097), + [anon_sym_source_DASHenv] = ACTIONS(2097), + [anon_sym_register] = ACTIONS(2097), + [anon_sym_hide] = ACTIONS(2097), + [anon_sym_hide_DASHenv] = ACTIONS(2097), + [anon_sym_overlay] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2097), + [anon_sym_LPAREN2] = ACTIONS(2099), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2097), + [aux_sym__val_number_decimal_token1] = ACTIONS(2097), + [aux_sym__val_number_decimal_token2] = ACTIONS(2097), + [aux_sym__val_number_decimal_token3] = ACTIONS(2097), + [aux_sym__val_number_decimal_token4] = ACTIONS(2097), + [aux_sym__val_number_token1] = ACTIONS(2097), + [aux_sym__val_number_token2] = ACTIONS(2097), + [aux_sym__val_number_token3] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [sym__str_single_quotes] = ACTIONS(2097), + [sym__str_back_ticks] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2097), + [sym__entry_separator] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2097), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2103), + [anon_sym_POUND] = ACTIONS(3), }, [431] = { - [sym__expr_parenthesized_immediate] = STATE(7789), [sym_comment] = STATE(431), - [anon_sym_export] = ACTIONS(2065), - [anon_sym_alias] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_let_DASHenv] = ACTIONS(2065), - [anon_sym_mut] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [aux_sym_cmd_identifier_token1] = ACTIONS(2065), - [aux_sym_cmd_identifier_token2] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2065), - [aux_sym_cmd_identifier_token4] = ACTIONS(2065), - [aux_sym_cmd_identifier_token5] = ACTIONS(2065), - [aux_sym_cmd_identifier_token6] = ACTIONS(2065), - [aux_sym_cmd_identifier_token7] = ACTIONS(2065), - [aux_sym_cmd_identifier_token8] = ACTIONS(2065), - [aux_sym_cmd_identifier_token9] = ACTIONS(2065), - [aux_sym_cmd_identifier_token10] = ACTIONS(2065), - [aux_sym_cmd_identifier_token11] = ACTIONS(2065), - [aux_sym_cmd_identifier_token12] = ACTIONS(2065), - [aux_sym_cmd_identifier_token13] = ACTIONS(2065), - [aux_sym_cmd_identifier_token14] = ACTIONS(2065), - [aux_sym_cmd_identifier_token15] = ACTIONS(2065), - [aux_sym_cmd_identifier_token16] = ACTIONS(2065), - [aux_sym_cmd_identifier_token17] = ACTIONS(2065), - [aux_sym_cmd_identifier_token18] = ACTIONS(2065), - [aux_sym_cmd_identifier_token19] = ACTIONS(2065), - [aux_sym_cmd_identifier_token20] = ACTIONS(2065), - [aux_sym_cmd_identifier_token21] = ACTIONS(2065), - [aux_sym_cmd_identifier_token22] = ACTIONS(2065), - [aux_sym_cmd_identifier_token23] = ACTIONS(2065), - [aux_sym_cmd_identifier_token24] = ACTIONS(2065), - [aux_sym_cmd_identifier_token25] = ACTIONS(2065), - [aux_sym_cmd_identifier_token26] = ACTIONS(2065), - [aux_sym_cmd_identifier_token27] = ACTIONS(2065), - [aux_sym_cmd_identifier_token28] = ACTIONS(2065), - [aux_sym_cmd_identifier_token29] = ACTIONS(2065), - [aux_sym_cmd_identifier_token30] = ACTIONS(2065), - [aux_sym_cmd_identifier_token31] = ACTIONS(2065), - [aux_sym_cmd_identifier_token32] = ACTIONS(2065), - [aux_sym_cmd_identifier_token33] = ACTIONS(2065), - [aux_sym_cmd_identifier_token34] = ACTIONS(2065), - [aux_sym_cmd_identifier_token35] = ACTIONS(2065), - [aux_sym_cmd_identifier_token36] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token38] = ACTIONS(2065), - [aux_sym_cmd_identifier_token39] = ACTIONS(2065), - [aux_sym_cmd_identifier_token40] = ACTIONS(2065), - [anon_sym_def] = ACTIONS(2065), - [anon_sym_export_DASHenv] = ACTIONS(2065), - [anon_sym_extern] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_DOLLAR] = ACTIONS(2065), - [anon_sym_error] = ACTIONS(2065), - [anon_sym_list] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [anon_sym_loop] = ACTIONS(2065), - [anon_sym_make] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_else] = ACTIONS(2065), - [anon_sym_match] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2065), - [anon_sym_catch] = ACTIONS(2065), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_source] = ACTIONS(2065), - [anon_sym_source_DASHenv] = ACTIONS(2065), - [anon_sym_register] = ACTIONS(2065), - [anon_sym_hide] = ACTIONS(2065), - [anon_sym_hide_DASHenv] = ACTIONS(2065), - [anon_sym_overlay] = ACTIONS(2065), - [anon_sym_new] = ACTIONS(2065), - [anon_sym_as] = ACTIONS(2065), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2065), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), - [aux_sym__val_number_decimal_token1] = ACTIONS(2065), - [aux_sym__val_number_decimal_token2] = ACTIONS(2065), - [anon_sym_DOT2] = ACTIONS(2065), - [aux_sym__val_number_decimal_token3] = ACTIONS(2065), - [aux_sym__val_number_token1] = ACTIONS(2065), - [aux_sym__val_number_token2] = ACTIONS(2065), - [aux_sym__val_number_token3] = ACTIONS(2065), - [anon_sym_DQUOTE] = ACTIONS(2065), - [sym__str_single_quotes] = ACTIONS(2065), - [sym__str_back_ticks] = ACTIONS(2065), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2065), - [sym__entry_separator] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_alias] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_let_DASHenv] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [aux_sym_cmd_identifier_token1] = ACTIONS(2105), + [aux_sym_cmd_identifier_token2] = ACTIONS(2105), + [aux_sym_cmd_identifier_token3] = ACTIONS(2105), + [aux_sym_cmd_identifier_token4] = ACTIONS(2105), + [aux_sym_cmd_identifier_token5] = ACTIONS(2105), + [aux_sym_cmd_identifier_token6] = ACTIONS(2105), + [aux_sym_cmd_identifier_token7] = ACTIONS(2105), + [aux_sym_cmd_identifier_token8] = ACTIONS(2105), + [aux_sym_cmd_identifier_token9] = ACTIONS(2105), + [aux_sym_cmd_identifier_token10] = ACTIONS(2105), + [aux_sym_cmd_identifier_token11] = ACTIONS(2105), + [aux_sym_cmd_identifier_token12] = ACTIONS(2105), + [aux_sym_cmd_identifier_token13] = ACTIONS(2105), + [aux_sym_cmd_identifier_token14] = ACTIONS(2105), + [aux_sym_cmd_identifier_token15] = ACTIONS(2105), + [aux_sym_cmd_identifier_token16] = ACTIONS(2105), + [aux_sym_cmd_identifier_token17] = ACTIONS(2105), + [aux_sym_cmd_identifier_token18] = ACTIONS(2105), + [aux_sym_cmd_identifier_token19] = ACTIONS(2105), + [aux_sym_cmd_identifier_token20] = ACTIONS(2105), + [aux_sym_cmd_identifier_token21] = ACTIONS(2105), + [aux_sym_cmd_identifier_token22] = ACTIONS(2105), + [aux_sym_cmd_identifier_token23] = ACTIONS(2105), + [aux_sym_cmd_identifier_token24] = ACTIONS(2105), + [aux_sym_cmd_identifier_token25] = ACTIONS(2105), + [aux_sym_cmd_identifier_token26] = ACTIONS(2105), + [aux_sym_cmd_identifier_token27] = ACTIONS(2105), + [aux_sym_cmd_identifier_token28] = ACTIONS(2105), + [aux_sym_cmd_identifier_token29] = ACTIONS(2105), + [aux_sym_cmd_identifier_token30] = ACTIONS(2105), + [aux_sym_cmd_identifier_token31] = ACTIONS(2105), + [aux_sym_cmd_identifier_token32] = ACTIONS(2105), + [aux_sym_cmd_identifier_token33] = ACTIONS(2105), + [aux_sym_cmd_identifier_token34] = ACTIONS(2105), + [aux_sym_cmd_identifier_token35] = ACTIONS(2105), + [aux_sym_cmd_identifier_token36] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [aux_sym_cmd_identifier_token38] = ACTIONS(2105), + [aux_sym_cmd_identifier_token39] = ACTIONS(2105), + [aux_sym_cmd_identifier_token40] = ACTIONS(2105), + [anon_sym_def] = ACTIONS(2105), + [anon_sym_export_DASHenv] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2105), + [anon_sym_error] = ACTIONS(2105), + [anon_sym_list] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_make] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_catch] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_source] = ACTIONS(2105), + [anon_sym_source_DASHenv] = ACTIONS(2105), + [anon_sym_register] = ACTIONS(2105), + [anon_sym_hide] = ACTIONS(2105), + [anon_sym_hide_DASHenv] = ACTIONS(2105), + [anon_sym_overlay] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(2099), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2105), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2105), + [aux_sym__val_number_decimal_token3] = ACTIONS(2105), + [aux_sym__val_number_decimal_token4] = ACTIONS(2105), + [aux_sym__val_number_token1] = ACTIONS(2105), + [aux_sym__val_number_token2] = ACTIONS(2105), + [aux_sym__val_number_token3] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [sym__str_single_quotes] = ACTIONS(2105), + [sym__str_back_ticks] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2105), + [sym__entry_separator] = ACTIONS(2107), + [anon_sym_PLUS] = ACTIONS(2105), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2103), + [anon_sym_POUND] = ACTIONS(3), }, [432] = { - [sym__expr_parenthesized_immediate] = STATE(7789), [sym_comment] = STATE(432), - [anon_sym_export] = ACTIONS(2069), - [anon_sym_alias] = ACTIONS(2069), - [anon_sym_let] = ACTIONS(2069), - [anon_sym_let_DASHenv] = ACTIONS(2069), - [anon_sym_mut] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), - [aux_sym_cmd_identifier_token1] = ACTIONS(2069), - [aux_sym_cmd_identifier_token2] = ACTIONS(2069), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [aux_sym_cmd_identifier_token6] = ACTIONS(2069), - [aux_sym_cmd_identifier_token7] = ACTIONS(2069), - [aux_sym_cmd_identifier_token8] = ACTIONS(2069), - [aux_sym_cmd_identifier_token9] = ACTIONS(2069), - [aux_sym_cmd_identifier_token10] = ACTIONS(2069), - [aux_sym_cmd_identifier_token11] = ACTIONS(2069), - [aux_sym_cmd_identifier_token12] = ACTIONS(2069), - [aux_sym_cmd_identifier_token13] = ACTIONS(2069), - [aux_sym_cmd_identifier_token14] = ACTIONS(2069), - [aux_sym_cmd_identifier_token15] = ACTIONS(2069), - [aux_sym_cmd_identifier_token16] = ACTIONS(2069), - [aux_sym_cmd_identifier_token17] = ACTIONS(2069), - [aux_sym_cmd_identifier_token18] = ACTIONS(2069), - [aux_sym_cmd_identifier_token19] = ACTIONS(2069), - [aux_sym_cmd_identifier_token20] = ACTIONS(2069), - [aux_sym_cmd_identifier_token21] = ACTIONS(2069), - [aux_sym_cmd_identifier_token22] = ACTIONS(2069), - [aux_sym_cmd_identifier_token23] = ACTIONS(2069), - [aux_sym_cmd_identifier_token24] = ACTIONS(2069), - [aux_sym_cmd_identifier_token25] = ACTIONS(2069), - [aux_sym_cmd_identifier_token26] = ACTIONS(2069), - [aux_sym_cmd_identifier_token27] = ACTIONS(2069), - [aux_sym_cmd_identifier_token28] = ACTIONS(2069), - [aux_sym_cmd_identifier_token29] = ACTIONS(2069), - [aux_sym_cmd_identifier_token30] = ACTIONS(2069), - [aux_sym_cmd_identifier_token31] = ACTIONS(2069), - [aux_sym_cmd_identifier_token32] = ACTIONS(2069), - [aux_sym_cmd_identifier_token33] = ACTIONS(2069), - [aux_sym_cmd_identifier_token34] = ACTIONS(2069), - [aux_sym_cmd_identifier_token35] = ACTIONS(2069), - [aux_sym_cmd_identifier_token36] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(2069), - [anon_sym_false] = ACTIONS(2069), - [anon_sym_null] = ACTIONS(2069), - [aux_sym_cmd_identifier_token38] = ACTIONS(2069), - [aux_sym_cmd_identifier_token39] = ACTIONS(2069), - [aux_sym_cmd_identifier_token40] = ACTIONS(2069), - [anon_sym_def] = ACTIONS(2069), - [anon_sym_export_DASHenv] = ACTIONS(2069), - [anon_sym_extern] = ACTIONS(2069), - [anon_sym_module] = ACTIONS(2069), - [anon_sym_use] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_error] = ACTIONS(2069), - [anon_sym_list] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_in] = ACTIONS(2069), - [anon_sym_loop] = ACTIONS(2069), - [anon_sym_make] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2069), - [anon_sym_do] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_else] = ACTIONS(2069), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_try] = ACTIONS(2069), - [anon_sym_catch] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_source] = ACTIONS(2069), - [anon_sym_source_DASHenv] = ACTIONS(2069), - [anon_sym_register] = ACTIONS(2069), - [anon_sym_hide] = ACTIONS(2069), - [anon_sym_hide_DASHenv] = ACTIONS(2069), - [anon_sym_overlay] = ACTIONS(2069), - [anon_sym_new] = ACTIONS(2069), - [anon_sym_as] = ACTIONS(2069), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(2069), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2069), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2069), - [aux_sym__val_number_decimal_token1] = ACTIONS(2069), - [aux_sym__val_number_decimal_token2] = ACTIONS(2069), - [anon_sym_DOT2] = ACTIONS(2069), - [aux_sym__val_number_decimal_token3] = ACTIONS(2069), - [aux_sym__val_number_token1] = ACTIONS(2069), - [aux_sym__val_number_token2] = ACTIONS(2069), - [aux_sym__val_number_token3] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [sym__str_single_quotes] = ACTIONS(2069), - [sym__str_back_ticks] = ACTIONS(2069), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2069), - [sym__entry_separator] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(970), + [anon_sym_alias] = ACTIONS(970), + [anon_sym_let] = ACTIONS(970), + [anon_sym_let_DASHenv] = ACTIONS(970), + [anon_sym_mut] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [aux_sym_cmd_identifier_token1] = ACTIONS(970), + [aux_sym_cmd_identifier_token2] = ACTIONS(970), + [aux_sym_cmd_identifier_token3] = ACTIONS(970), + [aux_sym_cmd_identifier_token4] = ACTIONS(970), + [aux_sym_cmd_identifier_token5] = ACTIONS(970), + [aux_sym_cmd_identifier_token6] = ACTIONS(970), + [aux_sym_cmd_identifier_token7] = ACTIONS(970), + [aux_sym_cmd_identifier_token8] = ACTIONS(970), + [aux_sym_cmd_identifier_token9] = ACTIONS(970), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(970), + [aux_sym_cmd_identifier_token13] = ACTIONS(970), + [aux_sym_cmd_identifier_token14] = ACTIONS(970), + [aux_sym_cmd_identifier_token15] = ACTIONS(970), + [aux_sym_cmd_identifier_token16] = ACTIONS(970), + [aux_sym_cmd_identifier_token17] = ACTIONS(970), + [aux_sym_cmd_identifier_token18] = ACTIONS(970), + [aux_sym_cmd_identifier_token19] = ACTIONS(970), + [aux_sym_cmd_identifier_token20] = ACTIONS(970), + [aux_sym_cmd_identifier_token21] = ACTIONS(970), + [aux_sym_cmd_identifier_token22] = ACTIONS(970), + [aux_sym_cmd_identifier_token23] = ACTIONS(970), + [aux_sym_cmd_identifier_token24] = ACTIONS(970), + [aux_sym_cmd_identifier_token25] = ACTIONS(970), + [aux_sym_cmd_identifier_token26] = ACTIONS(970), + [aux_sym_cmd_identifier_token27] = ACTIONS(970), + [aux_sym_cmd_identifier_token28] = ACTIONS(970), + [aux_sym_cmd_identifier_token29] = ACTIONS(970), + [aux_sym_cmd_identifier_token30] = ACTIONS(970), + [aux_sym_cmd_identifier_token31] = ACTIONS(970), + [aux_sym_cmd_identifier_token32] = ACTIONS(970), + [aux_sym_cmd_identifier_token33] = ACTIONS(970), + [aux_sym_cmd_identifier_token34] = ACTIONS(970), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [anon_sym_null] = ACTIONS(970), + [aux_sym_cmd_identifier_token38] = ACTIONS(970), + [aux_sym_cmd_identifier_token39] = ACTIONS(970), + [aux_sym_cmd_identifier_token40] = ACTIONS(970), + [anon_sym_def] = ACTIONS(970), + [anon_sym_export_DASHenv] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_use] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_error] = ACTIONS(970), + [anon_sym_list] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_in] = ACTIONS(970), + [anon_sym_loop] = ACTIONS(970), + [anon_sym_make] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_match] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_try] = ACTIONS(970), + [anon_sym_catch] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_source] = ACTIONS(970), + [anon_sym_source_DASHenv] = ACTIONS(970), + [anon_sym_register] = ACTIONS(970), + [anon_sym_hide] = ACTIONS(970), + [anon_sym_hide_DASHenv] = ACTIONS(970), + [anon_sym_overlay] = ACTIONS(970), + [anon_sym_new] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(2109), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(970), + [aux_sym__val_number_decimal_token3] = ACTIONS(970), + [aux_sym__val_number_decimal_token4] = ACTIONS(970), + [aux_sym__val_number_token1] = ACTIONS(970), + [aux_sym__val_number_token2] = ACTIONS(970), + [aux_sym__val_number_token3] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), + [sym__entry_separator] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(3), }, [433] = { [sym_comment] = STATE(433), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [aux_sym_cmd_identifier_token1] = ACTIONS(936), - [aux_sym_cmd_identifier_token2] = ACTIONS(936), - [aux_sym_cmd_identifier_token3] = ACTIONS(936), - [aux_sym_cmd_identifier_token4] = ACTIONS(936), - [aux_sym_cmd_identifier_token5] = ACTIONS(936), - [aux_sym_cmd_identifier_token6] = ACTIONS(936), - [aux_sym_cmd_identifier_token7] = ACTIONS(936), - [aux_sym_cmd_identifier_token8] = ACTIONS(936), - [aux_sym_cmd_identifier_token9] = ACTIONS(936), - [aux_sym_cmd_identifier_token10] = ACTIONS(936), - [aux_sym_cmd_identifier_token11] = ACTIONS(936), - [aux_sym_cmd_identifier_token12] = ACTIONS(936), - [aux_sym_cmd_identifier_token13] = ACTIONS(936), - [aux_sym_cmd_identifier_token14] = ACTIONS(936), - [aux_sym_cmd_identifier_token15] = ACTIONS(936), - [aux_sym_cmd_identifier_token16] = ACTIONS(936), - [aux_sym_cmd_identifier_token17] = ACTIONS(936), - [aux_sym_cmd_identifier_token18] = ACTIONS(936), - [aux_sym_cmd_identifier_token19] = ACTIONS(936), - [aux_sym_cmd_identifier_token20] = ACTIONS(936), - [aux_sym_cmd_identifier_token21] = ACTIONS(936), - [aux_sym_cmd_identifier_token22] = ACTIONS(936), - [aux_sym_cmd_identifier_token23] = ACTIONS(936), - [aux_sym_cmd_identifier_token24] = ACTIONS(936), - [aux_sym_cmd_identifier_token25] = ACTIONS(936), - [aux_sym_cmd_identifier_token26] = ACTIONS(936), - [aux_sym_cmd_identifier_token27] = ACTIONS(936), - [aux_sym_cmd_identifier_token28] = ACTIONS(936), - [aux_sym_cmd_identifier_token29] = ACTIONS(936), - [aux_sym_cmd_identifier_token30] = ACTIONS(936), - [aux_sym_cmd_identifier_token31] = ACTIONS(936), - [aux_sym_cmd_identifier_token32] = ACTIONS(936), - [aux_sym_cmd_identifier_token33] = ACTIONS(936), - [aux_sym_cmd_identifier_token34] = ACTIONS(936), - [aux_sym_cmd_identifier_token35] = ACTIONS(936), - [aux_sym_cmd_identifier_token36] = ACTIONS(936), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [anon_sym_null] = ACTIONS(938), - [aux_sym_cmd_identifier_token38] = ACTIONS(936), - [aux_sym_cmd_identifier_token39] = ACTIONS(938), - [aux_sym_cmd_identifier_token40] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(938), - [anon_sym_DOT_DOT2] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(938), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(980), + [anon_sym_list] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_new] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(2111), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [sym__entry_separator] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(3), }, [434] = { [sym_comment] = STATE(434), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1709), + [aux_sym_cmd_identifier_token3] = ACTIONS(1709), + [aux_sym_cmd_identifier_token4] = ACTIONS(1709), + [aux_sym_cmd_identifier_token5] = ACTIONS(1709), + [aux_sym_cmd_identifier_token6] = ACTIONS(1709), + [aux_sym_cmd_identifier_token7] = ACTIONS(1709), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1709), + [aux_sym_cmd_identifier_token11] = ACTIONS(1709), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1709), + [aux_sym_cmd_identifier_token17] = ACTIONS(1709), + [aux_sym_cmd_identifier_token18] = ACTIONS(1709), + [aux_sym_cmd_identifier_token19] = ACTIONS(1709), + [aux_sym_cmd_identifier_token20] = ACTIONS(1709), + [aux_sym_cmd_identifier_token21] = ACTIONS(1709), + [aux_sym_cmd_identifier_token22] = ACTIONS(1709), + [aux_sym_cmd_identifier_token23] = ACTIONS(1709), + [aux_sym_cmd_identifier_token24] = ACTIONS(1709), + [aux_sym_cmd_identifier_token25] = ACTIONS(1709), + [aux_sym_cmd_identifier_token26] = ACTIONS(1709), + [aux_sym_cmd_identifier_token27] = ACTIONS(1709), + [aux_sym_cmd_identifier_token28] = ACTIONS(1709), + [aux_sym_cmd_identifier_token29] = ACTIONS(1709), + [aux_sym_cmd_identifier_token30] = ACTIONS(1709), + [aux_sym_cmd_identifier_token31] = ACTIONS(1709), + [aux_sym_cmd_identifier_token32] = ACTIONS(1709), + [aux_sym_cmd_identifier_token33] = ACTIONS(1709), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1709), + [aux_sym_cmd_identifier_token36] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_null] = ACTIONS(1709), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1709), + [aux_sym_cmd_identifier_token40] = ACTIONS(1709), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_list] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_new] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1709), + [aux_sym__val_number_token2] = ACTIONS(1709), + [aux_sym__val_number_token3] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym__str_single_quotes] = ACTIONS(1709), + [sym__str_back_ticks] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1709), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), [anon_sym_POUND] = ACTIONS(3), }, [435] = { [sym_comment] = STATE(435), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1905), + [anon_sym_alias] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_let_DASHenv] = ACTIONS(1905), + [anon_sym_mut] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [aux_sym_cmd_identifier_token1] = ACTIONS(1905), + [aux_sym_cmd_identifier_token2] = ACTIONS(1905), + [aux_sym_cmd_identifier_token3] = ACTIONS(1905), + [aux_sym_cmd_identifier_token4] = ACTIONS(1905), + [aux_sym_cmd_identifier_token5] = ACTIONS(1905), + [aux_sym_cmd_identifier_token6] = ACTIONS(1905), + [aux_sym_cmd_identifier_token7] = ACTIONS(1905), + [aux_sym_cmd_identifier_token8] = ACTIONS(1905), + [aux_sym_cmd_identifier_token9] = ACTIONS(1905), + [aux_sym_cmd_identifier_token10] = ACTIONS(1905), + [aux_sym_cmd_identifier_token11] = ACTIONS(1905), + [aux_sym_cmd_identifier_token12] = ACTIONS(1905), + [aux_sym_cmd_identifier_token13] = ACTIONS(1905), + [aux_sym_cmd_identifier_token14] = ACTIONS(1905), + [aux_sym_cmd_identifier_token15] = ACTIONS(1905), + [aux_sym_cmd_identifier_token16] = ACTIONS(1905), + [aux_sym_cmd_identifier_token17] = ACTIONS(1905), + [aux_sym_cmd_identifier_token18] = ACTIONS(1905), + [aux_sym_cmd_identifier_token19] = ACTIONS(1905), + [aux_sym_cmd_identifier_token20] = ACTIONS(1905), + [aux_sym_cmd_identifier_token21] = ACTIONS(1905), + [aux_sym_cmd_identifier_token22] = ACTIONS(1905), + [aux_sym_cmd_identifier_token23] = ACTIONS(1905), + [aux_sym_cmd_identifier_token24] = ACTIONS(1905), + [aux_sym_cmd_identifier_token25] = ACTIONS(1905), + [aux_sym_cmd_identifier_token26] = ACTIONS(1905), + [aux_sym_cmd_identifier_token27] = ACTIONS(1905), + [aux_sym_cmd_identifier_token28] = ACTIONS(1905), + [aux_sym_cmd_identifier_token29] = ACTIONS(1905), + [aux_sym_cmd_identifier_token30] = ACTIONS(1905), + [aux_sym_cmd_identifier_token31] = ACTIONS(1905), + [aux_sym_cmd_identifier_token32] = ACTIONS(1905), + [aux_sym_cmd_identifier_token33] = ACTIONS(1905), + [aux_sym_cmd_identifier_token34] = ACTIONS(1905), + [aux_sym_cmd_identifier_token35] = ACTIONS(1905), + [aux_sym_cmd_identifier_token36] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1905), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = ACTIONS(1911), + [anon_sym_def] = ACTIONS(1905), + [anon_sym_export_DASHenv] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_module] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_error] = ACTIONS(1905), + [anon_sym_list] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_in] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_make] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_do] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_else] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1905), + [anon_sym_catch] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_source] = ACTIONS(1905), + [anon_sym_source_DASHenv] = ACTIONS(1905), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_hide] = ACTIONS(1905), + [anon_sym_hide_DASHenv] = ACTIONS(1905), + [anon_sym_overlay] = ACTIONS(1905), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_as] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), + [anon_sym_DOT_DOT2] = ACTIONS(2113), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2115), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1905), + [aux_sym__val_number_decimal_token2] = ACTIONS(1911), + [aux_sym__val_number_decimal_token3] = ACTIONS(1911), + [aux_sym__val_number_decimal_token4] = ACTIONS(1911), + [aux_sym__val_number_token1] = ACTIONS(1911), + [aux_sym__val_number_token2] = ACTIONS(1911), + [aux_sym__val_number_token3] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(247), }, [436] = { [sym_comment] = STATE(436), - [anon_sym_export] = ACTIONS(2073), - [anon_sym_alias] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_let_DASHenv] = ACTIONS(2073), - [anon_sym_mut] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [aux_sym_cmd_identifier_token1] = ACTIONS(2073), - [aux_sym_cmd_identifier_token2] = ACTIONS(2073), - [aux_sym_cmd_identifier_token3] = ACTIONS(2073), - [aux_sym_cmd_identifier_token4] = ACTIONS(2073), - [aux_sym_cmd_identifier_token5] = ACTIONS(2073), - [aux_sym_cmd_identifier_token6] = ACTIONS(2073), - [aux_sym_cmd_identifier_token7] = ACTIONS(2073), - [aux_sym_cmd_identifier_token8] = ACTIONS(2073), - [aux_sym_cmd_identifier_token9] = ACTIONS(2073), - [aux_sym_cmd_identifier_token10] = ACTIONS(2073), - [aux_sym_cmd_identifier_token11] = ACTIONS(2073), - [aux_sym_cmd_identifier_token12] = ACTIONS(2073), - [aux_sym_cmd_identifier_token13] = ACTIONS(2073), - [aux_sym_cmd_identifier_token14] = ACTIONS(2073), - [aux_sym_cmd_identifier_token15] = ACTIONS(2073), - [aux_sym_cmd_identifier_token16] = ACTIONS(2073), - [aux_sym_cmd_identifier_token17] = ACTIONS(2073), - [aux_sym_cmd_identifier_token18] = ACTIONS(2073), - [aux_sym_cmd_identifier_token19] = ACTIONS(2073), - [aux_sym_cmd_identifier_token20] = ACTIONS(2073), - [aux_sym_cmd_identifier_token21] = ACTIONS(2073), - [aux_sym_cmd_identifier_token22] = ACTIONS(2073), - [aux_sym_cmd_identifier_token23] = ACTIONS(2073), - [aux_sym_cmd_identifier_token24] = ACTIONS(2073), - [aux_sym_cmd_identifier_token25] = ACTIONS(2073), - [aux_sym_cmd_identifier_token26] = ACTIONS(2073), - [aux_sym_cmd_identifier_token27] = ACTIONS(2073), - [aux_sym_cmd_identifier_token28] = ACTIONS(2073), - [aux_sym_cmd_identifier_token29] = ACTIONS(2073), - [aux_sym_cmd_identifier_token30] = ACTIONS(2073), - [aux_sym_cmd_identifier_token31] = ACTIONS(2073), - [aux_sym_cmd_identifier_token32] = ACTIONS(2073), - [aux_sym_cmd_identifier_token33] = ACTIONS(2073), - [aux_sym_cmd_identifier_token34] = ACTIONS(2073), - [aux_sym_cmd_identifier_token35] = ACTIONS(2073), - [aux_sym_cmd_identifier_token36] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [aux_sym_cmd_identifier_token38] = ACTIONS(2073), - [aux_sym_cmd_identifier_token39] = ACTIONS(2073), - [aux_sym_cmd_identifier_token40] = ACTIONS(2073), - [anon_sym_def] = ACTIONS(2073), - [anon_sym_export_DASHenv] = ACTIONS(2073), - [anon_sym_extern] = ACTIONS(2073), - [anon_sym_module] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2073), - [anon_sym_list] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_in] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_make] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_else] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_catch] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_source] = ACTIONS(2073), - [anon_sym_source_DASHenv] = ACTIONS(2073), - [anon_sym_register] = ACTIONS(2073), - [anon_sym_hide] = ACTIONS(2073), - [anon_sym_hide_DASHenv] = ACTIONS(2073), - [anon_sym_overlay] = ACTIONS(2073), - [anon_sym_new] = ACTIONS(2073), - [anon_sym_as] = ACTIONS(2073), - [anon_sym_LPAREN2] = ACTIONS(2075), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2073), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2073), - [anon_sym_DOT2] = ACTIONS(2073), - [aux_sym__val_number_decimal_token3] = ACTIONS(2073), - [aux_sym__val_number_token1] = ACTIONS(2073), - [aux_sym__val_number_token2] = ACTIONS(2073), - [aux_sym__val_number_token3] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2073), - [sym__str_single_quotes] = ACTIONS(2073), - [sym__str_back_ticks] = ACTIONS(2073), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2073), - [sym__entry_separator] = ACTIONS(2075), - [aux_sym__unquoted_in_record_token7] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_alias] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_let_DASHenv] = ACTIONS(2117), + [anon_sym_mut] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [aux_sym_cmd_identifier_token1] = ACTIONS(2117), + [aux_sym_cmd_identifier_token2] = ACTIONS(2117), + [aux_sym_cmd_identifier_token3] = ACTIONS(2117), + [aux_sym_cmd_identifier_token4] = ACTIONS(2117), + [aux_sym_cmd_identifier_token5] = ACTIONS(2117), + [aux_sym_cmd_identifier_token6] = ACTIONS(2117), + [aux_sym_cmd_identifier_token7] = ACTIONS(2117), + [aux_sym_cmd_identifier_token8] = ACTIONS(2117), + [aux_sym_cmd_identifier_token9] = ACTIONS(2117), + [aux_sym_cmd_identifier_token10] = ACTIONS(2117), + [aux_sym_cmd_identifier_token11] = ACTIONS(2117), + [aux_sym_cmd_identifier_token12] = ACTIONS(2117), + [aux_sym_cmd_identifier_token13] = ACTIONS(2117), + [aux_sym_cmd_identifier_token14] = ACTIONS(2117), + [aux_sym_cmd_identifier_token15] = ACTIONS(2117), + [aux_sym_cmd_identifier_token16] = ACTIONS(2117), + [aux_sym_cmd_identifier_token17] = ACTIONS(2117), + [aux_sym_cmd_identifier_token18] = ACTIONS(2117), + [aux_sym_cmd_identifier_token19] = ACTIONS(2117), + [aux_sym_cmd_identifier_token20] = ACTIONS(2117), + [aux_sym_cmd_identifier_token21] = ACTIONS(2117), + [aux_sym_cmd_identifier_token22] = ACTIONS(2117), + [aux_sym_cmd_identifier_token23] = ACTIONS(2117), + [aux_sym_cmd_identifier_token24] = ACTIONS(2117), + [aux_sym_cmd_identifier_token25] = ACTIONS(2117), + [aux_sym_cmd_identifier_token26] = ACTIONS(2117), + [aux_sym_cmd_identifier_token27] = ACTIONS(2117), + [aux_sym_cmd_identifier_token28] = ACTIONS(2117), + [aux_sym_cmd_identifier_token29] = ACTIONS(2117), + [aux_sym_cmd_identifier_token30] = ACTIONS(2117), + [aux_sym_cmd_identifier_token31] = ACTIONS(2117), + [aux_sym_cmd_identifier_token32] = ACTIONS(2117), + [aux_sym_cmd_identifier_token33] = ACTIONS(2117), + [aux_sym_cmd_identifier_token34] = ACTIONS(2117), + [aux_sym_cmd_identifier_token35] = ACTIONS(2117), + [aux_sym_cmd_identifier_token36] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_null] = ACTIONS(2117), + [aux_sym_cmd_identifier_token38] = ACTIONS(2117), + [aux_sym_cmd_identifier_token39] = ACTIONS(2117), + [aux_sym_cmd_identifier_token40] = ACTIONS(2117), + [anon_sym_def] = ACTIONS(2117), + [anon_sym_export_DASHenv] = ACTIONS(2117), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_DOLLAR] = ACTIONS(2117), + [anon_sym_error] = ACTIONS(2117), + [anon_sym_list] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_in] = ACTIONS(2117), + [anon_sym_loop] = ACTIONS(2117), + [anon_sym_make] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_catch] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_source] = ACTIONS(2117), + [anon_sym_source_DASHenv] = ACTIONS(2117), + [anon_sym_register] = ACTIONS(2117), + [anon_sym_hide] = ACTIONS(2117), + [anon_sym_hide_DASHenv] = ACTIONS(2117), + [anon_sym_overlay] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_as] = ACTIONS(2117), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2117), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2117), + [aux_sym__val_number_decimal_token1] = ACTIONS(2117), + [aux_sym__val_number_decimal_token2] = ACTIONS(2117), + [aux_sym__val_number_decimal_token3] = ACTIONS(2117), + [aux_sym__val_number_decimal_token4] = ACTIONS(2117), + [aux_sym__val_number_token1] = ACTIONS(2117), + [aux_sym__val_number_token2] = ACTIONS(2117), + [aux_sym__val_number_token3] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2117), + [sym__str_single_quotes] = ACTIONS(2117), + [sym__str_back_ticks] = ACTIONS(2117), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2117), + [sym__entry_separator] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2117), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(3), }, [437] = { [sym_comment] = STATE(437), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [aux_sym_cmd_identifier_token1] = ACTIONS(1608), - [aux_sym_cmd_identifier_token2] = ACTIONS(1608), - [aux_sym_cmd_identifier_token3] = ACTIONS(1608), - [aux_sym_cmd_identifier_token4] = ACTIONS(1608), - [aux_sym_cmd_identifier_token5] = ACTIONS(1608), - [aux_sym_cmd_identifier_token6] = ACTIONS(1608), - [aux_sym_cmd_identifier_token7] = ACTIONS(1608), - [aux_sym_cmd_identifier_token8] = ACTIONS(1608), - [aux_sym_cmd_identifier_token9] = ACTIONS(1608), - [aux_sym_cmd_identifier_token10] = ACTIONS(1608), - [aux_sym_cmd_identifier_token11] = ACTIONS(1608), - [aux_sym_cmd_identifier_token12] = ACTIONS(1608), - [aux_sym_cmd_identifier_token13] = ACTIONS(1608), - [aux_sym_cmd_identifier_token14] = ACTIONS(1608), - [aux_sym_cmd_identifier_token15] = ACTIONS(1608), - [aux_sym_cmd_identifier_token16] = ACTIONS(1608), - [aux_sym_cmd_identifier_token17] = ACTIONS(1608), - [aux_sym_cmd_identifier_token18] = ACTIONS(1608), - [aux_sym_cmd_identifier_token19] = ACTIONS(1608), - [aux_sym_cmd_identifier_token20] = ACTIONS(1608), - [aux_sym_cmd_identifier_token21] = ACTIONS(1608), - [aux_sym_cmd_identifier_token22] = ACTIONS(1608), - [aux_sym_cmd_identifier_token23] = ACTIONS(1608), - [aux_sym_cmd_identifier_token24] = ACTIONS(1608), - [aux_sym_cmd_identifier_token25] = ACTIONS(1608), - [aux_sym_cmd_identifier_token26] = ACTIONS(1608), - [aux_sym_cmd_identifier_token27] = ACTIONS(1608), - [aux_sym_cmd_identifier_token28] = ACTIONS(1608), - [aux_sym_cmd_identifier_token29] = ACTIONS(1608), - [aux_sym_cmd_identifier_token30] = ACTIONS(1608), - [aux_sym_cmd_identifier_token31] = ACTIONS(1608), - [aux_sym_cmd_identifier_token32] = ACTIONS(1608), - [aux_sym_cmd_identifier_token33] = ACTIONS(1608), - [aux_sym_cmd_identifier_token34] = ACTIONS(1608), - [aux_sym_cmd_identifier_token35] = ACTIONS(1608), - [aux_sym_cmd_identifier_token36] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1608), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1610), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1610), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1610), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1610), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1608), + [anon_sym_export] = ACTIONS(2123), + [anon_sym_alias] = ACTIONS(2123), + [anon_sym_let] = ACTIONS(2123), + [anon_sym_let_DASHenv] = ACTIONS(2123), + [anon_sym_mut] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [aux_sym_cmd_identifier_token1] = ACTIONS(2123), + [aux_sym_cmd_identifier_token2] = ACTIONS(2123), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [aux_sym_cmd_identifier_token6] = ACTIONS(2123), + [aux_sym_cmd_identifier_token7] = ACTIONS(2123), + [aux_sym_cmd_identifier_token8] = ACTIONS(2123), + [aux_sym_cmd_identifier_token9] = ACTIONS(2123), + [aux_sym_cmd_identifier_token10] = ACTIONS(2123), + [aux_sym_cmd_identifier_token11] = ACTIONS(2123), + [aux_sym_cmd_identifier_token12] = ACTIONS(2123), + [aux_sym_cmd_identifier_token13] = ACTIONS(2123), + [aux_sym_cmd_identifier_token14] = ACTIONS(2123), + [aux_sym_cmd_identifier_token15] = ACTIONS(2123), + [aux_sym_cmd_identifier_token16] = ACTIONS(2123), + [aux_sym_cmd_identifier_token17] = ACTIONS(2123), + [aux_sym_cmd_identifier_token18] = ACTIONS(2123), + [aux_sym_cmd_identifier_token19] = ACTIONS(2123), + [aux_sym_cmd_identifier_token20] = ACTIONS(2123), + [aux_sym_cmd_identifier_token21] = ACTIONS(2123), + [aux_sym_cmd_identifier_token22] = ACTIONS(2123), + [aux_sym_cmd_identifier_token23] = ACTIONS(2123), + [aux_sym_cmd_identifier_token24] = ACTIONS(2123), + [aux_sym_cmd_identifier_token25] = ACTIONS(2123), + [aux_sym_cmd_identifier_token26] = ACTIONS(2123), + [aux_sym_cmd_identifier_token27] = ACTIONS(2123), + [aux_sym_cmd_identifier_token28] = ACTIONS(2123), + [aux_sym_cmd_identifier_token29] = ACTIONS(2123), + [aux_sym_cmd_identifier_token30] = ACTIONS(2123), + [aux_sym_cmd_identifier_token31] = ACTIONS(2123), + [aux_sym_cmd_identifier_token32] = ACTIONS(2123), + [aux_sym_cmd_identifier_token33] = ACTIONS(2123), + [aux_sym_cmd_identifier_token34] = ACTIONS(2123), + [aux_sym_cmd_identifier_token35] = ACTIONS(2123), + [aux_sym_cmd_identifier_token36] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [anon_sym_null] = ACTIONS(2123), + [aux_sym_cmd_identifier_token38] = ACTIONS(2123), + [aux_sym_cmd_identifier_token39] = ACTIONS(2123), + [aux_sym_cmd_identifier_token40] = ACTIONS(2123), + [anon_sym_def] = ACTIONS(2123), + [anon_sym_export_DASHenv] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2123), + [anon_sym_module] = ACTIONS(2123), + [anon_sym_use] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2123), + [anon_sym_error] = ACTIONS(2123), + [anon_sym_list] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_in] = ACTIONS(2123), + [anon_sym_loop] = ACTIONS(2123), + [anon_sym_make] = ACTIONS(2123), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_do] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_else] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_try] = ACTIONS(2123), + [anon_sym_catch] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_source] = ACTIONS(2123), + [anon_sym_source_DASHenv] = ACTIONS(2123), + [anon_sym_register] = ACTIONS(2123), + [anon_sym_hide] = ACTIONS(2123), + [anon_sym_hide_DASHenv] = ACTIONS(2123), + [anon_sym_overlay] = ACTIONS(2123), + [anon_sym_new] = ACTIONS(2123), + [anon_sym_as] = ACTIONS(2123), + [anon_sym_LPAREN2] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2123), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2123), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [aux_sym__val_number_decimal_token2] = ACTIONS(2123), + [aux_sym__val_number_decimal_token3] = ACTIONS(2123), + [aux_sym__val_number_decimal_token4] = ACTIONS(2123), + [aux_sym__val_number_token1] = ACTIONS(2123), + [aux_sym__val_number_token2] = ACTIONS(2123), + [aux_sym__val_number_token3] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [sym__str_single_quotes] = ACTIONS(2123), + [sym__str_back_ticks] = ACTIONS(2123), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2123), + [sym__entry_separator] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2123), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2129), [anon_sym_POUND] = ACTIONS(3), }, [438] = { [sym_comment] = STATE(438), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_alias] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_let_DASHenv] = ACTIONS(2077), - [anon_sym_mut] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [aux_sym_cmd_identifier_token1] = ACTIONS(2077), - [aux_sym_cmd_identifier_token2] = ACTIONS(2077), - [aux_sym_cmd_identifier_token3] = ACTIONS(2077), - [aux_sym_cmd_identifier_token4] = ACTIONS(2077), - [aux_sym_cmd_identifier_token5] = ACTIONS(2077), - [aux_sym_cmd_identifier_token6] = ACTIONS(2077), - [aux_sym_cmd_identifier_token7] = ACTIONS(2077), - [aux_sym_cmd_identifier_token8] = ACTIONS(2077), - [aux_sym_cmd_identifier_token9] = ACTIONS(2077), - [aux_sym_cmd_identifier_token10] = ACTIONS(2077), - [aux_sym_cmd_identifier_token11] = ACTIONS(2077), - [aux_sym_cmd_identifier_token12] = ACTIONS(2077), - [aux_sym_cmd_identifier_token13] = ACTIONS(2077), - [aux_sym_cmd_identifier_token14] = ACTIONS(2077), - [aux_sym_cmd_identifier_token15] = ACTIONS(2077), - [aux_sym_cmd_identifier_token16] = ACTIONS(2077), - [aux_sym_cmd_identifier_token17] = ACTIONS(2077), - [aux_sym_cmd_identifier_token18] = ACTIONS(2077), - [aux_sym_cmd_identifier_token19] = ACTIONS(2077), - [aux_sym_cmd_identifier_token20] = ACTIONS(2077), - [aux_sym_cmd_identifier_token21] = ACTIONS(2077), - [aux_sym_cmd_identifier_token22] = ACTIONS(2077), - [aux_sym_cmd_identifier_token23] = ACTIONS(2077), - [aux_sym_cmd_identifier_token24] = ACTIONS(2077), - [aux_sym_cmd_identifier_token25] = ACTIONS(2077), - [aux_sym_cmd_identifier_token26] = ACTIONS(2077), - [aux_sym_cmd_identifier_token27] = ACTIONS(2077), - [aux_sym_cmd_identifier_token28] = ACTIONS(2077), - [aux_sym_cmd_identifier_token29] = ACTIONS(2077), - [aux_sym_cmd_identifier_token30] = ACTIONS(2077), - [aux_sym_cmd_identifier_token31] = ACTIONS(2077), - [aux_sym_cmd_identifier_token32] = ACTIONS(2077), - [aux_sym_cmd_identifier_token33] = ACTIONS(2077), - [aux_sym_cmd_identifier_token34] = ACTIONS(2077), - [aux_sym_cmd_identifier_token35] = ACTIONS(2077), - [aux_sym_cmd_identifier_token36] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2077), - [aux_sym_cmd_identifier_token38] = ACTIONS(2077), - [aux_sym_cmd_identifier_token39] = ACTIONS(2077), - [aux_sym_cmd_identifier_token40] = ACTIONS(2077), - [anon_sym_def] = ACTIONS(2077), - [anon_sym_export_DASHenv] = ACTIONS(2077), - [anon_sym_extern] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_use] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_error] = ACTIONS(2077), - [anon_sym_list] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2077), - [anon_sym_loop] = ACTIONS(2077), - [anon_sym_make] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_catch] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_source] = ACTIONS(2077), - [anon_sym_source_DASHenv] = ACTIONS(2077), - [anon_sym_register] = ACTIONS(2077), - [anon_sym_hide] = ACTIONS(2077), - [anon_sym_hide_DASHenv] = ACTIONS(2077), - [anon_sym_overlay] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2077), - [anon_sym_LPAREN2] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2077), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2077), - [aux_sym__val_number_decimal_token1] = ACTIONS(2077), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [anon_sym_DOT2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_token1] = ACTIONS(2077), - [aux_sym__val_number_token2] = ACTIONS(2077), - [aux_sym__val_number_token3] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [sym__str_single_quotes] = ACTIONS(2077), - [sym__str_back_ticks] = ACTIONS(2077), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2077), - [sym__entry_separator] = ACTIONS(2081), - [aux_sym__unquoted_in_record_token7] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [sym__entry_separator] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(3), }, [439] = { [sym_comment] = STATE(439), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [aux_sym_cmd_identifier_token1] = ACTIONS(1863), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1863), - [aux_sym_cmd_identifier_token9] = ACTIONS(1863), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1863), - [aux_sym_cmd_identifier_token13] = ACTIONS(1863), - [aux_sym_cmd_identifier_token14] = ACTIONS(1863), - [aux_sym_cmd_identifier_token15] = ACTIONS(1863), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1863), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [aux_sym_cmd_identifier_token38] = ACTIONS(1863), - [aux_sym_cmd_identifier_token39] = ACTIONS(1869), - [aux_sym_cmd_identifier_token40] = ACTIONS(1869), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_list] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_in] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_make] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_catch] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), - [anon_sym_DOT_DOT2] = ACTIONS(2085), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2087), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [anon_sym_DOT2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [anon_sym_null] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), + [anon_sym_list] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_new] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(976), + [aux_sym__val_number_decimal_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token4] = ACTIONS(976), + [aux_sym__val_number_token1] = ACTIONS(976), + [aux_sym__val_number_token2] = ACTIONS(976), + [aux_sym__val_number_token3] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [sym__entry_separator] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), }, [440] = { [sym_comment] = STATE(440), - [anon_sym_export] = ACTIONS(1959), - [anon_sym_alias] = ACTIONS(1959), - [anon_sym_let] = ACTIONS(1959), - [anon_sym_let_DASHenv] = ACTIONS(1959), - [anon_sym_mut] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [aux_sym_cmd_identifier_token1] = ACTIONS(1959), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1959), - [aux_sym_cmd_identifier_token9] = ACTIONS(1959), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1959), - [aux_sym_cmd_identifier_token13] = ACTIONS(1959), - [aux_sym_cmd_identifier_token14] = ACTIONS(1959), - [aux_sym_cmd_identifier_token15] = ACTIONS(1959), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1959), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [anon_sym_null] = ACTIONS(1961), - [aux_sym_cmd_identifier_token38] = ACTIONS(1959), - [aux_sym_cmd_identifier_token39] = ACTIONS(1961), - [aux_sym_cmd_identifier_token40] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_export_DASHenv] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_module] = ACTIONS(1959), - [anon_sym_use] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_error] = ACTIONS(1959), - [anon_sym_list] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_in] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_make] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_source] = ACTIONS(1959), - [anon_sym_source_DASHenv] = ACTIONS(1959), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_hide_DASHenv] = ACTIONS(1959), - [anon_sym_overlay] = ACTIONS(1959), - [anon_sym_new] = ACTIONS(1959), - [anon_sym_as] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), - [anon_sym_DOT_DOT2] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1961), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [anon_sym_DOT2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1006), + [aux_sym_cmd_identifier_token3] = ACTIONS(1006), + [aux_sym_cmd_identifier_token4] = ACTIONS(1006), + [aux_sym_cmd_identifier_token5] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1006), + [aux_sym_cmd_identifier_token7] = ACTIONS(1006), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1006), + [aux_sym_cmd_identifier_token17] = ACTIONS(1006), + [aux_sym_cmd_identifier_token18] = ACTIONS(1006), + [aux_sym_cmd_identifier_token19] = ACTIONS(1006), + [aux_sym_cmd_identifier_token20] = ACTIONS(1006), + [aux_sym_cmd_identifier_token21] = ACTIONS(1006), + [aux_sym_cmd_identifier_token22] = ACTIONS(1006), + [aux_sym_cmd_identifier_token23] = ACTIONS(1006), + [aux_sym_cmd_identifier_token24] = ACTIONS(1006), + [aux_sym_cmd_identifier_token25] = ACTIONS(1006), + [aux_sym_cmd_identifier_token26] = ACTIONS(1006), + [aux_sym_cmd_identifier_token27] = ACTIONS(1006), + [aux_sym_cmd_identifier_token28] = ACTIONS(1006), + [aux_sym_cmd_identifier_token29] = ACTIONS(1006), + [aux_sym_cmd_identifier_token30] = ACTIONS(1006), + [aux_sym_cmd_identifier_token31] = ACTIONS(1006), + [aux_sym_cmd_identifier_token32] = ACTIONS(1006), + [aux_sym_cmd_identifier_token33] = ACTIONS(1006), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1006), + [aux_sym_cmd_identifier_token36] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(2113), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2115), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), }, [441] = { [sym_comment] = STATE(441), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_alias] = ACTIONS(1963), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_let_DASHenv] = ACTIONS(1963), - [anon_sym_mut] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [aux_sym_cmd_identifier_token1] = ACTIONS(1963), - [aux_sym_cmd_identifier_token2] = ACTIONS(1963), - [aux_sym_cmd_identifier_token3] = ACTIONS(1963), - [aux_sym_cmd_identifier_token4] = ACTIONS(1963), - [aux_sym_cmd_identifier_token5] = ACTIONS(1963), - [aux_sym_cmd_identifier_token6] = ACTIONS(1963), - [aux_sym_cmd_identifier_token7] = ACTIONS(1963), - [aux_sym_cmd_identifier_token8] = ACTIONS(1963), - [aux_sym_cmd_identifier_token9] = ACTIONS(1963), - [aux_sym_cmd_identifier_token10] = ACTIONS(1963), - [aux_sym_cmd_identifier_token11] = ACTIONS(1963), - [aux_sym_cmd_identifier_token12] = ACTIONS(1963), - [aux_sym_cmd_identifier_token13] = ACTIONS(1963), - [aux_sym_cmd_identifier_token14] = ACTIONS(1963), - [aux_sym_cmd_identifier_token15] = ACTIONS(1963), - [aux_sym_cmd_identifier_token16] = ACTIONS(1963), - [aux_sym_cmd_identifier_token17] = ACTIONS(1963), - [aux_sym_cmd_identifier_token18] = ACTIONS(1963), - [aux_sym_cmd_identifier_token19] = ACTIONS(1963), - [aux_sym_cmd_identifier_token20] = ACTIONS(1963), - [aux_sym_cmd_identifier_token21] = ACTIONS(1963), - [aux_sym_cmd_identifier_token22] = ACTIONS(1963), - [aux_sym_cmd_identifier_token23] = ACTIONS(1963), - [aux_sym_cmd_identifier_token24] = ACTIONS(1963), - [aux_sym_cmd_identifier_token25] = ACTIONS(1963), - [aux_sym_cmd_identifier_token26] = ACTIONS(1963), - [aux_sym_cmd_identifier_token27] = ACTIONS(1963), - [aux_sym_cmd_identifier_token28] = ACTIONS(1963), - [aux_sym_cmd_identifier_token29] = ACTIONS(1963), - [aux_sym_cmd_identifier_token30] = ACTIONS(1963), - [aux_sym_cmd_identifier_token31] = ACTIONS(1963), - [aux_sym_cmd_identifier_token32] = ACTIONS(1963), - [aux_sym_cmd_identifier_token33] = ACTIONS(1963), - [aux_sym_cmd_identifier_token34] = ACTIONS(1963), - [aux_sym_cmd_identifier_token35] = ACTIONS(1963), - [aux_sym_cmd_identifier_token36] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1965), - [anon_sym_false] = ACTIONS(1965), - [anon_sym_null] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1963), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_export_DASHenv] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_module] = ACTIONS(1963), - [anon_sym_use] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1963), - [anon_sym_list] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_in] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_make] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_source] = ACTIONS(1963), - [anon_sym_source_DASHenv] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_hide_DASHenv] = ACTIONS(1963), - [anon_sym_overlay] = ACTIONS(1963), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_as] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), - [anon_sym_DOT_DOT2] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [anon_sym_DOT2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(2131), + [anon_sym_alias] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_let_DASHenv] = ACTIONS(2131), + [anon_sym_mut] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [aux_sym_cmd_identifier_token1] = ACTIONS(2131), + [aux_sym_cmd_identifier_token2] = ACTIONS(2131), + [aux_sym_cmd_identifier_token3] = ACTIONS(2131), + [aux_sym_cmd_identifier_token4] = ACTIONS(2131), + [aux_sym_cmd_identifier_token5] = ACTIONS(2131), + [aux_sym_cmd_identifier_token6] = ACTIONS(2131), + [aux_sym_cmd_identifier_token7] = ACTIONS(2131), + [aux_sym_cmd_identifier_token8] = ACTIONS(2131), + [aux_sym_cmd_identifier_token9] = ACTIONS(2131), + [aux_sym_cmd_identifier_token10] = ACTIONS(2131), + [aux_sym_cmd_identifier_token11] = ACTIONS(2131), + [aux_sym_cmd_identifier_token12] = ACTIONS(2131), + [aux_sym_cmd_identifier_token13] = ACTIONS(2131), + [aux_sym_cmd_identifier_token14] = ACTIONS(2131), + [aux_sym_cmd_identifier_token15] = ACTIONS(2131), + [aux_sym_cmd_identifier_token16] = ACTIONS(2131), + [aux_sym_cmd_identifier_token17] = ACTIONS(2131), + [aux_sym_cmd_identifier_token18] = ACTIONS(2131), + [aux_sym_cmd_identifier_token19] = ACTIONS(2131), + [aux_sym_cmd_identifier_token20] = ACTIONS(2131), + [aux_sym_cmd_identifier_token21] = ACTIONS(2131), + [aux_sym_cmd_identifier_token22] = ACTIONS(2131), + [aux_sym_cmd_identifier_token23] = ACTIONS(2131), + [aux_sym_cmd_identifier_token24] = ACTIONS(2131), + [aux_sym_cmd_identifier_token25] = ACTIONS(2131), + [aux_sym_cmd_identifier_token26] = ACTIONS(2131), + [aux_sym_cmd_identifier_token27] = ACTIONS(2131), + [aux_sym_cmd_identifier_token28] = ACTIONS(2131), + [aux_sym_cmd_identifier_token29] = ACTIONS(2131), + [aux_sym_cmd_identifier_token30] = ACTIONS(2131), + [aux_sym_cmd_identifier_token31] = ACTIONS(2131), + [aux_sym_cmd_identifier_token32] = ACTIONS(2131), + [aux_sym_cmd_identifier_token33] = ACTIONS(2131), + [aux_sym_cmd_identifier_token34] = ACTIONS(2131), + [aux_sym_cmd_identifier_token35] = ACTIONS(2131), + [aux_sym_cmd_identifier_token36] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [anon_sym_null] = ACTIONS(2131), + [aux_sym_cmd_identifier_token38] = ACTIONS(2131), + [aux_sym_cmd_identifier_token39] = ACTIONS(2131), + [aux_sym_cmd_identifier_token40] = ACTIONS(2131), + [anon_sym_def] = ACTIONS(2131), + [anon_sym_export_DASHenv] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_module] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_error] = ACTIONS(2131), + [anon_sym_list] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_in] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_make] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_catch] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_source] = ACTIONS(2131), + [anon_sym_source_DASHenv] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2131), + [anon_sym_hide] = ACTIONS(2131), + [anon_sym_hide_DASHenv] = ACTIONS(2131), + [anon_sym_overlay] = ACTIONS(2131), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2131), + [aux_sym__val_number_decimal_token4] = ACTIONS(2131), + [aux_sym__val_number_token1] = ACTIONS(2131), + [aux_sym__val_number_token2] = ACTIONS(2131), + [aux_sym__val_number_token3] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2131), + [sym__str_single_quotes] = ACTIONS(2131), + [sym__str_back_ticks] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2131), + [sym__entry_separator] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2131), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2131), [anon_sym_POUND] = ACTIONS(3), }, [442] = { [sym_comment] = STATE(442), - [anon_sym_export] = ACTIONS(1570), - [anon_sym_alias] = ACTIONS(1570), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_let_DASHenv] = ACTIONS(1570), - [anon_sym_mut] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [aux_sym_cmd_identifier_token1] = ACTIONS(1570), - [aux_sym_cmd_identifier_token2] = ACTIONS(1570), - [aux_sym_cmd_identifier_token3] = ACTIONS(1570), - [aux_sym_cmd_identifier_token4] = ACTIONS(1570), - [aux_sym_cmd_identifier_token5] = ACTIONS(1570), - [aux_sym_cmd_identifier_token6] = ACTIONS(1570), - [aux_sym_cmd_identifier_token7] = ACTIONS(1570), - [aux_sym_cmd_identifier_token8] = ACTIONS(1570), - [aux_sym_cmd_identifier_token9] = ACTIONS(1570), - [aux_sym_cmd_identifier_token10] = ACTIONS(1570), - [aux_sym_cmd_identifier_token11] = ACTIONS(1570), - [aux_sym_cmd_identifier_token12] = ACTIONS(1570), - [aux_sym_cmd_identifier_token13] = ACTIONS(1570), - [aux_sym_cmd_identifier_token14] = ACTIONS(1570), - [aux_sym_cmd_identifier_token15] = ACTIONS(1570), - [aux_sym_cmd_identifier_token16] = ACTIONS(1570), - [aux_sym_cmd_identifier_token17] = ACTIONS(1570), - [aux_sym_cmd_identifier_token18] = ACTIONS(1570), - [aux_sym_cmd_identifier_token19] = ACTIONS(1570), - [aux_sym_cmd_identifier_token20] = ACTIONS(1570), - [aux_sym_cmd_identifier_token21] = ACTIONS(1570), - [aux_sym_cmd_identifier_token22] = ACTIONS(1570), - [aux_sym_cmd_identifier_token23] = ACTIONS(1570), - [aux_sym_cmd_identifier_token24] = ACTIONS(1570), - [aux_sym_cmd_identifier_token25] = ACTIONS(1570), - [aux_sym_cmd_identifier_token26] = ACTIONS(1570), - [aux_sym_cmd_identifier_token27] = ACTIONS(1570), - [aux_sym_cmd_identifier_token28] = ACTIONS(1570), - [aux_sym_cmd_identifier_token29] = ACTIONS(1570), - [aux_sym_cmd_identifier_token30] = ACTIONS(1570), - [aux_sym_cmd_identifier_token31] = ACTIONS(1570), - [aux_sym_cmd_identifier_token32] = ACTIONS(1570), - [aux_sym_cmd_identifier_token33] = ACTIONS(1570), - [aux_sym_cmd_identifier_token34] = ACTIONS(1570), - [aux_sym_cmd_identifier_token35] = ACTIONS(1570), - [aux_sym_cmd_identifier_token36] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [aux_sym_cmd_identifier_token38] = ACTIONS(1570), - [aux_sym_cmd_identifier_token39] = ACTIONS(1580), - [aux_sym_cmd_identifier_token40] = ACTIONS(1580), - [anon_sym_def] = ACTIONS(1570), - [anon_sym_export_DASHenv] = ACTIONS(1570), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_module] = ACTIONS(1570), - [anon_sym_use] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(1580), - [anon_sym_error] = ACTIONS(1570), - [anon_sym_list] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_in] = ACTIONS(1570), - [anon_sym_loop] = ACTIONS(1570), - [anon_sym_make] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_do] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_else] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_try] = ACTIONS(1570), - [anon_sym_catch] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_source] = ACTIONS(1570), - [anon_sym_source_DASHenv] = ACTIONS(1570), - [anon_sym_register] = ACTIONS(1570), - [anon_sym_hide] = ACTIONS(1570), - [anon_sym_hide_DASHenv] = ACTIONS(1570), - [anon_sym_overlay] = ACTIONS(1570), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_as] = ACTIONS(1570), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1580), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1580), - [aux_sym__val_number_decimal_token1] = ACTIONS(1570), - [aux_sym__val_number_decimal_token2] = ACTIONS(1580), - [anon_sym_DOT2] = ACTIONS(1570), - [aux_sym__val_number_decimal_token3] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1580), - [aux_sym__val_number_token2] = ACTIONS(1580), - [aux_sym__val_number_token3] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1580), - [sym__str_single_quotes] = ACTIONS(1580), - [sym__str_back_ticks] = ACTIONS(1580), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1580), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [443] = { - [sym_expr_parenthesized] = STATE(4365), - [sym__spread_parenthesized] = STATE(4813), - [sym_val_range] = STATE(4877), - [sym__val_range] = STATE(7607), - [sym__val_range_with_end] = STATE(7463), - [sym__value] = STATE(4877), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4503), - [sym__spread_variable] = STATE(4753), - [sym_val_variable] = STATE(4350), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(4110), - [sym__val_number] = STATE(4817), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__str_double_quotes] = STATE(4505), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4757), - [sym__inter_double_quotes] = STATE(4767), - [sym_val_list] = STATE(4862), - [sym__spread_list] = STATE(4813), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym__cmd_arg] = STATE(5095), - [sym_redirection] = STATE(4794), - [sym__flag] = STATE(4797), - [sym_short_flag] = STATE(4833), - [sym_long_flag] = STATE(4833), - [sym_unquoted] = STATE(4515), - [sym__unquoted_with_expr] = STATE(4841), - [sym__unquoted_anonymous_prefix] = STATE(7185), [sym_comment] = STATE(443), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1969), - [aux_sym_cmd_identifier_token38] = ACTIONS(1971), - [aux_sym_cmd_identifier_token39] = ACTIONS(1971), - [aux_sym_cmd_identifier_token40] = ACTIONS(1971), - [sym__newline] = ACTIONS(2089), - [sym__space] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1985), - [aux_sym_ctrl_match_token1] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), - [anon_sym_DOT_DOT_LT] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [anon_sym_DOT2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(2001), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2011), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2019), - [anon_sym_err_GT] = ACTIONS(2021), - [anon_sym_out_GT] = ACTIONS(2021), - [anon_sym_e_GT] = ACTIONS(2021), - [anon_sym_o_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT] = ACTIONS(2021), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), - [aux_sym_unquoted_token1] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [444] = { [sym_comment] = STATE(444), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_alias] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_let_DASHenv] = ACTIONS(1923), - [anon_sym_mut] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [aux_sym_cmd_identifier_token1] = ACTIONS(1923), - [aux_sym_cmd_identifier_token2] = ACTIONS(1923), - [aux_sym_cmd_identifier_token3] = ACTIONS(1923), - [aux_sym_cmd_identifier_token4] = ACTIONS(1923), - [aux_sym_cmd_identifier_token5] = ACTIONS(1923), - [aux_sym_cmd_identifier_token6] = ACTIONS(1923), - [aux_sym_cmd_identifier_token7] = ACTIONS(1923), - [aux_sym_cmd_identifier_token8] = ACTIONS(1923), - [aux_sym_cmd_identifier_token9] = ACTIONS(1923), - [aux_sym_cmd_identifier_token10] = ACTIONS(1923), - [aux_sym_cmd_identifier_token11] = ACTIONS(1923), - [aux_sym_cmd_identifier_token12] = ACTIONS(1923), - [aux_sym_cmd_identifier_token13] = ACTIONS(1923), - [aux_sym_cmd_identifier_token14] = ACTIONS(1923), - [aux_sym_cmd_identifier_token15] = ACTIONS(1923), - [aux_sym_cmd_identifier_token16] = ACTIONS(1923), - [aux_sym_cmd_identifier_token17] = ACTIONS(1923), - [aux_sym_cmd_identifier_token18] = ACTIONS(1923), - [aux_sym_cmd_identifier_token19] = ACTIONS(1923), - [aux_sym_cmd_identifier_token20] = ACTIONS(1923), - [aux_sym_cmd_identifier_token21] = ACTIONS(1923), - [aux_sym_cmd_identifier_token22] = ACTIONS(1923), - [aux_sym_cmd_identifier_token23] = ACTIONS(1923), - [aux_sym_cmd_identifier_token24] = ACTIONS(1923), - [aux_sym_cmd_identifier_token25] = ACTIONS(1923), - [aux_sym_cmd_identifier_token26] = ACTIONS(1923), - [aux_sym_cmd_identifier_token27] = ACTIONS(1923), - [aux_sym_cmd_identifier_token28] = ACTIONS(1923), - [aux_sym_cmd_identifier_token29] = ACTIONS(1923), - [aux_sym_cmd_identifier_token30] = ACTIONS(1923), - [aux_sym_cmd_identifier_token31] = ACTIONS(1923), - [aux_sym_cmd_identifier_token32] = ACTIONS(1923), - [aux_sym_cmd_identifier_token33] = ACTIONS(1923), - [aux_sym_cmd_identifier_token34] = ACTIONS(1923), - [aux_sym_cmd_identifier_token35] = ACTIONS(1923), - [aux_sym_cmd_identifier_token36] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1923), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1923), - [anon_sym_export_DASHenv] = ACTIONS(1923), - [anon_sym_extern] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_use] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1927), - [anon_sym_error] = ACTIONS(1923), - [anon_sym_list] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_in] = ACTIONS(1923), - [anon_sym_loop] = ACTIONS(1923), - [anon_sym_make] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_match] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_catch] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_source] = ACTIONS(1923), - [anon_sym_source_DASHenv] = ACTIONS(1923), - [anon_sym_register] = ACTIONS(1923), - [anon_sym_hide] = ACTIONS(1923), - [anon_sym_hide_DASHenv] = ACTIONS(1923), - [anon_sym_overlay] = ACTIONS(1923), - [anon_sym_new] = ACTIONS(1923), - [anon_sym_as] = ACTIONS(1923), - [anon_sym_LPAREN2] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1923), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(1923), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_alias] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_let_DASHenv] = ACTIONS(1935), + [anon_sym_mut] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [aux_sym_cmd_identifier_token1] = ACTIONS(1935), + [aux_sym_cmd_identifier_token2] = ACTIONS(1935), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [aux_sym_cmd_identifier_token6] = ACTIONS(1935), + [aux_sym_cmd_identifier_token7] = ACTIONS(1935), + [aux_sym_cmd_identifier_token8] = ACTIONS(1935), + [aux_sym_cmd_identifier_token9] = ACTIONS(1935), + [aux_sym_cmd_identifier_token10] = ACTIONS(1935), + [aux_sym_cmd_identifier_token11] = ACTIONS(1935), + [aux_sym_cmd_identifier_token12] = ACTIONS(1935), + [aux_sym_cmd_identifier_token13] = ACTIONS(1935), + [aux_sym_cmd_identifier_token14] = ACTIONS(1935), + [aux_sym_cmd_identifier_token15] = ACTIONS(1935), + [aux_sym_cmd_identifier_token16] = ACTIONS(1935), + [aux_sym_cmd_identifier_token17] = ACTIONS(1935), + [aux_sym_cmd_identifier_token18] = ACTIONS(1935), + [aux_sym_cmd_identifier_token19] = ACTIONS(1935), + [aux_sym_cmd_identifier_token20] = ACTIONS(1935), + [aux_sym_cmd_identifier_token21] = ACTIONS(1935), + [aux_sym_cmd_identifier_token22] = ACTIONS(1935), + [aux_sym_cmd_identifier_token23] = ACTIONS(1935), + [aux_sym_cmd_identifier_token24] = ACTIONS(1935), + [aux_sym_cmd_identifier_token25] = ACTIONS(1935), + [aux_sym_cmd_identifier_token26] = ACTIONS(1935), + [aux_sym_cmd_identifier_token27] = ACTIONS(1935), + [aux_sym_cmd_identifier_token28] = ACTIONS(1935), + [aux_sym_cmd_identifier_token29] = ACTIONS(1935), + [aux_sym_cmd_identifier_token30] = ACTIONS(1935), + [aux_sym_cmd_identifier_token31] = ACTIONS(1935), + [aux_sym_cmd_identifier_token32] = ACTIONS(1935), + [aux_sym_cmd_identifier_token33] = ACTIONS(1935), + [aux_sym_cmd_identifier_token34] = ACTIONS(1935), + [aux_sym_cmd_identifier_token35] = ACTIONS(1935), + [aux_sym_cmd_identifier_token36] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [anon_sym_null] = ACTIONS(1941), + [aux_sym_cmd_identifier_token38] = ACTIONS(1935), + [aux_sym_cmd_identifier_token39] = ACTIONS(1941), + [aux_sym_cmd_identifier_token40] = ACTIONS(1941), + [anon_sym_def] = ACTIONS(1935), + [anon_sym_export_DASHenv] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_use] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_DOLLAR] = ACTIONS(1941), + [anon_sym_error] = ACTIONS(1935), + [anon_sym_list] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_in] = ACTIONS(1935), + [anon_sym_loop] = ACTIONS(1935), + [anon_sym_make] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_source] = ACTIONS(1935), + [anon_sym_source_DASHenv] = ACTIONS(1935), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_hide] = ACTIONS(1935), + [anon_sym_hide_DASHenv] = ACTIONS(1935), + [anon_sym_overlay] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), + [anon_sym_DOT_DOT2] = ACTIONS(2137), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1941), + [aux_sym__val_number_decimal_token3] = ACTIONS(1941), + [aux_sym__val_number_decimal_token4] = ACTIONS(1941), + [aux_sym__val_number_token1] = ACTIONS(1941), + [aux_sym__val_number_token2] = ACTIONS(1941), + [aux_sym__val_number_token3] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym__str_single_quotes] = ACTIONS(1941), + [sym__str_back_ticks] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(247), }, [445] = { - [sym__expr_parenthesized_immediate] = STATE(7543), [sym_comment] = STATE(445), - [anon_sym_export] = ACTIONS(1955), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_let_DASHenv] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1955), - [aux_sym_cmd_identifier_token2] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [aux_sym_cmd_identifier_token6] = ACTIONS(1955), - [aux_sym_cmd_identifier_token7] = ACTIONS(1955), - [aux_sym_cmd_identifier_token8] = ACTIONS(1955), - [aux_sym_cmd_identifier_token9] = ACTIONS(1955), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [aux_sym_cmd_identifier_token12] = ACTIONS(1955), - [aux_sym_cmd_identifier_token13] = ACTIONS(1955), - [aux_sym_cmd_identifier_token14] = ACTIONS(1955), - [aux_sym_cmd_identifier_token15] = ACTIONS(1955), - [aux_sym_cmd_identifier_token16] = ACTIONS(1955), - [aux_sym_cmd_identifier_token17] = ACTIONS(1955), - [aux_sym_cmd_identifier_token18] = ACTIONS(1955), - [aux_sym_cmd_identifier_token19] = ACTIONS(1955), - [aux_sym_cmd_identifier_token20] = ACTIONS(1955), - [aux_sym_cmd_identifier_token21] = ACTIONS(1955), - [aux_sym_cmd_identifier_token22] = ACTIONS(1955), - [aux_sym_cmd_identifier_token23] = ACTIONS(1955), - [aux_sym_cmd_identifier_token24] = ACTIONS(1955), - [aux_sym_cmd_identifier_token25] = ACTIONS(1955), - [aux_sym_cmd_identifier_token26] = ACTIONS(1955), - [aux_sym_cmd_identifier_token27] = ACTIONS(1955), - [aux_sym_cmd_identifier_token28] = ACTIONS(1955), - [aux_sym_cmd_identifier_token29] = ACTIONS(1955), - [aux_sym_cmd_identifier_token30] = ACTIONS(1955), - [aux_sym_cmd_identifier_token31] = ACTIONS(1955), - [aux_sym_cmd_identifier_token32] = ACTIONS(1955), - [aux_sym_cmd_identifier_token33] = ACTIONS(1955), - [aux_sym_cmd_identifier_token34] = ACTIONS(1955), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_list] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_make] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(1955), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [sym__entry_separator] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [446] = { [sym_comment] = STATE(446), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [447] = { [sym_comment] = STATE(447), - [anon_sym_export] = ACTIONS(1939), - [anon_sym_alias] = ACTIONS(1939), - [anon_sym_let] = ACTIONS(1939), - [anon_sym_let_DASHenv] = ACTIONS(1939), - [anon_sym_mut] = ACTIONS(1939), - [anon_sym_const] = ACTIONS(1939), - [aux_sym_cmd_identifier_token1] = ACTIONS(1939), - [aux_sym_cmd_identifier_token2] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1939), - [aux_sym_cmd_identifier_token4] = ACTIONS(1939), - [aux_sym_cmd_identifier_token5] = ACTIONS(1939), - [aux_sym_cmd_identifier_token6] = ACTIONS(1939), - [aux_sym_cmd_identifier_token7] = ACTIONS(1939), - [aux_sym_cmd_identifier_token8] = ACTIONS(1939), - [aux_sym_cmd_identifier_token9] = ACTIONS(1939), - [aux_sym_cmd_identifier_token10] = ACTIONS(1939), - [aux_sym_cmd_identifier_token11] = ACTIONS(1939), - [aux_sym_cmd_identifier_token12] = ACTIONS(1939), - [aux_sym_cmd_identifier_token13] = ACTIONS(1939), - [aux_sym_cmd_identifier_token14] = ACTIONS(1939), - [aux_sym_cmd_identifier_token15] = ACTIONS(1939), - [aux_sym_cmd_identifier_token16] = ACTIONS(1939), - [aux_sym_cmd_identifier_token17] = ACTIONS(1939), - [aux_sym_cmd_identifier_token18] = ACTIONS(1939), - [aux_sym_cmd_identifier_token19] = ACTIONS(1939), - [aux_sym_cmd_identifier_token20] = ACTIONS(1939), - [aux_sym_cmd_identifier_token21] = ACTIONS(1939), - [aux_sym_cmd_identifier_token22] = ACTIONS(1939), - [aux_sym_cmd_identifier_token23] = ACTIONS(1939), - [aux_sym_cmd_identifier_token24] = ACTIONS(1939), - [aux_sym_cmd_identifier_token25] = ACTIONS(1939), - [aux_sym_cmd_identifier_token26] = ACTIONS(1939), - [aux_sym_cmd_identifier_token27] = ACTIONS(1939), - [aux_sym_cmd_identifier_token28] = ACTIONS(1939), - [aux_sym_cmd_identifier_token29] = ACTIONS(1939), - [aux_sym_cmd_identifier_token30] = ACTIONS(1939), - [aux_sym_cmd_identifier_token31] = ACTIONS(1939), - [aux_sym_cmd_identifier_token32] = ACTIONS(1939), - [aux_sym_cmd_identifier_token33] = ACTIONS(1939), - [aux_sym_cmd_identifier_token34] = ACTIONS(1939), - [aux_sym_cmd_identifier_token35] = ACTIONS(1939), - [aux_sym_cmd_identifier_token36] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1939), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1939), - [anon_sym_export_DASHenv] = ACTIONS(1939), - [anon_sym_extern] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1939), - [anon_sym_use] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1939), - [anon_sym_list] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_break] = ACTIONS(1939), - [anon_sym_continue] = ACTIONS(1939), - [anon_sym_for] = ACTIONS(1939), - [anon_sym_in] = ACTIONS(1939), - [anon_sym_loop] = ACTIONS(1939), - [anon_sym_make] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1939), - [anon_sym_do] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_else] = ACTIONS(1939), - [anon_sym_match] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1939), - [anon_sym_catch] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(1939), - [anon_sym_source] = ACTIONS(1939), - [anon_sym_source_DASHenv] = ACTIONS(1939), - [anon_sym_register] = ACTIONS(1939), - [anon_sym_hide] = ACTIONS(1939), - [anon_sym_hide_DASHenv] = ACTIONS(1939), - [anon_sym_overlay] = ACTIONS(1939), - [anon_sym_new] = ACTIONS(1939), - [anon_sym_as] = ACTIONS(1939), - [anon_sym_LPAREN2] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1939), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [anon_sym_DOT2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, [448] = { [sym_comment] = STATE(448), - [anon_sym_export] = ACTIONS(1947), - [anon_sym_alias] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_let_DASHenv] = ACTIONS(1947), - [anon_sym_mut] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [aux_sym_cmd_identifier_token1] = ACTIONS(1947), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1947), - [aux_sym_cmd_identifier_token9] = ACTIONS(1947), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1947), - [aux_sym_cmd_identifier_token13] = ACTIONS(1947), - [aux_sym_cmd_identifier_token14] = ACTIONS(1947), - [aux_sym_cmd_identifier_token15] = ACTIONS(1947), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1947), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_null] = ACTIONS(1953), - [aux_sym_cmd_identifier_token38] = ACTIONS(1947), - [aux_sym_cmd_identifier_token39] = ACTIONS(1953), - [aux_sym_cmd_identifier_token40] = ACTIONS(1953), - [anon_sym_def] = ACTIONS(1947), - [anon_sym_export_DASHenv] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_module] = ACTIONS(1947), - [anon_sym_use] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1947), - [anon_sym_list] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_in] = ACTIONS(1947), - [anon_sym_loop] = ACTIONS(1947), - [anon_sym_make] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_source] = ACTIONS(1947), - [anon_sym_source_DASHenv] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_hide] = ACTIONS(1947), - [anon_sym_hide_DASHenv] = ACTIONS(1947), - [anon_sym_overlay] = ACTIONS(1947), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_as] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1953), - [anon_sym_DOT_DOT2] = ACTIONS(2093), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2095), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1953), - [anon_sym_DOT2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1953), - [aux_sym__val_number_token1] = ACTIONS(1953), - [aux_sym__val_number_token2] = ACTIONS(1953), - [aux_sym__val_number_token3] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym__str_single_quotes] = ACTIONS(1953), - [sym__str_back_ticks] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1951), + [aux_sym_cmd_identifier_token40] = ACTIONS(1951), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1951), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_list] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), + [anon_sym_DOT_DOT2] = ACTIONS(2113), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2115), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1951), + [aux_sym__val_number_decimal_token3] = ACTIONS(1951), + [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__val_number_token1] = ACTIONS(1951), + [aux_sym__val_number_token2] = ACTIONS(1951), + [aux_sym__val_number_token3] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(247), }, [449] = { [sym_comment] = STATE(449), - [anon_sym_export] = ACTIONS(1216), - [anon_sym_alias] = ACTIONS(1216), - [anon_sym_let] = ACTIONS(1216), - [anon_sym_let_DASHenv] = ACTIONS(1216), - [anon_sym_mut] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [aux_sym_cmd_identifier_token1] = ACTIONS(1216), - [aux_sym_cmd_identifier_token2] = ACTIONS(1216), - [aux_sym_cmd_identifier_token3] = ACTIONS(1216), - [aux_sym_cmd_identifier_token4] = ACTIONS(1216), - [aux_sym_cmd_identifier_token5] = ACTIONS(1216), - [aux_sym_cmd_identifier_token6] = ACTIONS(1216), - [aux_sym_cmd_identifier_token7] = ACTIONS(1216), - [aux_sym_cmd_identifier_token8] = ACTIONS(1216), - [aux_sym_cmd_identifier_token9] = ACTIONS(1216), - [aux_sym_cmd_identifier_token10] = ACTIONS(1216), - [aux_sym_cmd_identifier_token11] = ACTIONS(1216), - [aux_sym_cmd_identifier_token12] = ACTIONS(1216), - [aux_sym_cmd_identifier_token13] = ACTIONS(1216), - [aux_sym_cmd_identifier_token14] = ACTIONS(1216), - [aux_sym_cmd_identifier_token15] = ACTIONS(1216), - [aux_sym_cmd_identifier_token16] = ACTIONS(1216), - [aux_sym_cmd_identifier_token17] = ACTIONS(1216), - [aux_sym_cmd_identifier_token18] = ACTIONS(1216), - [aux_sym_cmd_identifier_token19] = ACTIONS(1216), - [aux_sym_cmd_identifier_token20] = ACTIONS(1216), - [aux_sym_cmd_identifier_token21] = ACTIONS(1216), - [aux_sym_cmd_identifier_token22] = ACTIONS(1216), - [aux_sym_cmd_identifier_token23] = ACTIONS(1216), - [aux_sym_cmd_identifier_token24] = ACTIONS(1220), - [aux_sym_cmd_identifier_token25] = ACTIONS(1216), - [aux_sym_cmd_identifier_token26] = ACTIONS(1220), - [aux_sym_cmd_identifier_token27] = ACTIONS(1216), - [aux_sym_cmd_identifier_token28] = ACTIONS(1216), - [aux_sym_cmd_identifier_token29] = ACTIONS(1216), - [aux_sym_cmd_identifier_token30] = ACTIONS(1216), - [aux_sym_cmd_identifier_token31] = ACTIONS(1220), - [aux_sym_cmd_identifier_token32] = ACTIONS(1220), - [aux_sym_cmd_identifier_token33] = ACTIONS(1220), - [aux_sym_cmd_identifier_token34] = ACTIONS(1220), - [aux_sym_cmd_identifier_token35] = ACTIONS(1220), - [aux_sym_cmd_identifier_token36] = ACTIONS(1216), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), - [anon_sym_null] = ACTIONS(1220), - [aux_sym_cmd_identifier_token38] = ACTIONS(1216), - [aux_sym_cmd_identifier_token39] = ACTIONS(1220), - [aux_sym_cmd_identifier_token40] = ACTIONS(1220), - [sym__newline] = ACTIONS(1220), - [anon_sym_def] = ACTIONS(1216), - [anon_sym_export_DASHenv] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_module] = ACTIONS(1216), - [anon_sym_use] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_DOLLAR] = ACTIONS(1216), - [anon_sym_error] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_loop] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_match] = ACTIONS(1216), - [aux_sym_ctrl_match_token1] = ACTIONS(1220), - [anon_sym_DOT_DOT] = ACTIONS(1216), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_source] = ACTIONS(1216), - [anon_sym_source_DASHenv] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_hide] = ACTIONS(1216), - [anon_sym_hide_DASHenv] = ACTIONS(1216), - [anon_sym_overlay] = ACTIONS(1216), - [anon_sym_where] = ACTIONS(1220), - [aux_sym_expr_unary_token1] = ACTIONS(1220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1220), - [anon_sym_DOT_DOT_LT] = ACTIONS(1220), - [aux_sym__val_number_decimal_token1] = ACTIONS(1216), - [aux_sym__val_number_decimal_token2] = ACTIONS(1220), - [anon_sym_DOT2] = ACTIONS(1216), - [aux_sym__val_number_decimal_token3] = ACTIONS(1220), - [aux_sym__val_number_token1] = ACTIONS(1220), - [aux_sym__val_number_token2] = ACTIONS(1220), - [aux_sym__val_number_token3] = ACTIONS(1220), - [anon_sym_0b] = ACTIONS(1216), - [anon_sym_0o] = ACTIONS(1216), - [anon_sym_0x] = ACTIONS(1216), - [sym_val_date] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym__str_single_quotes] = ACTIONS(1220), - [sym__str_back_ticks] = ACTIONS(1220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), }, [450] = { [sym_comment] = STATE(450), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1569), + [aux_sym_cmd_identifier_token40] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1569), + [aux_sym__val_number_token2] = ACTIONS(1569), + [aux_sym__val_number_token3] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), [anon_sym_POUND] = ACTIONS(3), }, [451] = { [sym_comment] = STATE(451), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [aux_sym__immediate_decimal_token1] = ACTIONS(2097), - [aux_sym__immediate_decimal_token2] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1648), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1648), + [aux_sym_cmd_identifier_token40] = ACTIONS(1648), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1648), + [aux_sym__val_number_decimal_token3] = ACTIONS(1648), + [aux_sym__val_number_decimal_token4] = ACTIONS(1648), + [aux_sym__val_number_token1] = ACTIONS(1648), + [aux_sym__val_number_token2] = ACTIONS(1648), + [aux_sym__val_number_token3] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [sym__str_single_quotes] = ACTIONS(1648), + [sym__str_back_ticks] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), + [sym__entry_separator] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(3), }, [452] = { - [sym_expr_parenthesized] = STATE(4441), - [sym__spread_parenthesized] = STATE(4990), - [sym_val_range] = STATE(4991), - [sym__val_range] = STATE(7583), - [sym__val_range_with_end] = STATE(7539), - [sym__value] = STATE(4991), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4649), - [sym__spread_variable] = STATE(4992), - [sym_val_variable] = STATE(4449), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4147), - [sym__val_number] = STATE(5016), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__str_double_quotes] = STATE(4635), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(5044), - [sym__inter_double_quotes] = STATE(5045), - [sym_val_list] = STATE(5043), - [sym__spread_list] = STATE(4990), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym__cmd_arg] = STATE(4993), - [sym_redirection] = STATE(4994), - [sym__flag] = STATE(4995), - [sym_short_flag] = STATE(5008), - [sym_long_flag] = STATE(5008), - [sym_unquoted] = STATE(4700), - [sym__unquoted_with_expr] = STATE(4998), - [sym__unquoted_anonymous_prefix] = STATE(7231), [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1975), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_null] = ACTIONS(2103), - [aux_sym_cmd_identifier_token38] = ACTIONS(2105), - [aux_sym_cmd_identifier_token39] = ACTIONS(2105), - [aux_sym_cmd_identifier_token40] = ACTIONS(2105), - [sym__newline] = ACTIONS(1973), - [sym__space] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_DOLLAR] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2115), - [aux_sym_ctrl_match_token1] = ACTIONS(2117), - [anon_sym_DOT_DOT] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2121), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2123), - [anon_sym_DOT_DOT_LT] = ACTIONS(2123), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2125), - [aux_sym__val_number_decimal_token1] = ACTIONS(2127), - [aux_sym__val_number_decimal_token2] = ACTIONS(2127), - [anon_sym_DOT2] = ACTIONS(2129), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2133), - [aux_sym__val_number_token2] = ACTIONS(2133), - [aux_sym__val_number_token3] = ACTIONS(2133), - [anon_sym_0b] = ACTIONS(2135), - [anon_sym_0o] = ACTIONS(2137), - [anon_sym_0x] = ACTIONS(2137), - [sym_val_date] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2141), - [sym__str_single_quotes] = ACTIONS(2143), - [sym__str_back_ticks] = ACTIONS(2143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2145), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2147), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2149), - [anon_sym_err_GT] = ACTIONS(2151), - [anon_sym_out_GT] = ACTIONS(2151), - [anon_sym_e_GT] = ACTIONS(2151), - [anon_sym_o_GT] = ACTIONS(2151), - [anon_sym_err_PLUSout_GT] = ACTIONS(2151), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2151), - [anon_sym_o_PLUSe_GT] = ACTIONS(2151), - [anon_sym_e_PLUSo_GT] = ACTIONS(2151), - [anon_sym_err_GT_GT] = ACTIONS(2151), - [anon_sym_out_GT_GT] = ACTIONS(2151), - [anon_sym_e_GT_GT] = ACTIONS(2151), - [anon_sym_o_GT_GT] = ACTIONS(2151), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2151), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2151), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2151), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2151), - [aux_sym_unquoted_token1] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(3), }, [453] = { [sym_comment] = STATE(453), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [aux_sym_cmd_identifier_token1] = ACTIONS(2155), - [aux_sym_cmd_identifier_token2] = ACTIONS(2155), - [aux_sym_cmd_identifier_token3] = ACTIONS(2155), - [aux_sym_cmd_identifier_token4] = ACTIONS(2155), - [aux_sym_cmd_identifier_token5] = ACTIONS(2155), - [aux_sym_cmd_identifier_token6] = ACTIONS(2155), - [aux_sym_cmd_identifier_token7] = ACTIONS(2155), - [aux_sym_cmd_identifier_token8] = ACTIONS(2155), - [aux_sym_cmd_identifier_token9] = ACTIONS(2155), - [aux_sym_cmd_identifier_token10] = ACTIONS(2155), - [aux_sym_cmd_identifier_token11] = ACTIONS(2155), - [aux_sym_cmd_identifier_token12] = ACTIONS(2155), - [aux_sym_cmd_identifier_token13] = ACTIONS(2155), - [aux_sym_cmd_identifier_token14] = ACTIONS(2155), - [aux_sym_cmd_identifier_token15] = ACTIONS(2155), - [aux_sym_cmd_identifier_token16] = ACTIONS(2155), - [aux_sym_cmd_identifier_token17] = ACTIONS(2155), - [aux_sym_cmd_identifier_token18] = ACTIONS(2155), - [aux_sym_cmd_identifier_token19] = ACTIONS(2155), - [aux_sym_cmd_identifier_token20] = ACTIONS(2155), - [aux_sym_cmd_identifier_token21] = ACTIONS(2155), - [aux_sym_cmd_identifier_token22] = ACTIONS(2155), - [aux_sym_cmd_identifier_token23] = ACTIONS(2155), - [aux_sym_cmd_identifier_token24] = ACTIONS(2155), - [aux_sym_cmd_identifier_token25] = ACTIONS(2155), - [aux_sym_cmd_identifier_token26] = ACTIONS(2155), - [aux_sym_cmd_identifier_token27] = ACTIONS(2155), - [aux_sym_cmd_identifier_token28] = ACTIONS(2155), - [aux_sym_cmd_identifier_token29] = ACTIONS(2155), - [aux_sym_cmd_identifier_token30] = ACTIONS(2155), - [aux_sym_cmd_identifier_token31] = ACTIONS(2155), - [aux_sym_cmd_identifier_token32] = ACTIONS(2155), - [aux_sym_cmd_identifier_token33] = ACTIONS(2155), - [aux_sym_cmd_identifier_token34] = ACTIONS(2155), - [aux_sym_cmd_identifier_token35] = ACTIONS(2155), - [aux_sym_cmd_identifier_token36] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [aux_sym_cmd_identifier_token38] = ACTIONS(2155), - [aux_sym_cmd_identifier_token39] = ACTIONS(2155), - [aux_sym_cmd_identifier_token40] = ACTIONS(2155), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_list] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_in] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_make] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_catch] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_new] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_LPAREN2] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2155), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2155), - [anon_sym_DOT2] = ACTIONS(2155), - [aux_sym__val_number_decimal_token3] = ACTIONS(2155), - [aux_sym__val_number_token1] = ACTIONS(2155), - [aux_sym__val_number_token2] = ACTIONS(2155), - [aux_sym__val_number_token3] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [sym__str_single_quotes] = ACTIONS(2155), - [sym__str_back_ticks] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2155), - [sym__entry_separator] = ACTIONS(2159), - [aux_sym__unquoted_in_record_token7] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1569), + [aux_sym_cmd_identifier_token40] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), + [aux_sym__immediate_decimal_token1] = ACTIONS(2141), + [aux_sym__immediate_decimal_token2] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1569), + [aux_sym__val_number_token2] = ACTIONS(1569), + [aux_sym__val_number_token3] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), }, [454] = { [sym_comment] = STATE(454), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_alias] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_let_DASHenv] = ACTIONS(2163), - [anon_sym_mut] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [aux_sym_cmd_identifier_token1] = ACTIONS(2163), - [aux_sym_cmd_identifier_token2] = ACTIONS(2163), - [aux_sym_cmd_identifier_token3] = ACTIONS(2163), - [aux_sym_cmd_identifier_token4] = ACTIONS(2163), - [aux_sym_cmd_identifier_token5] = ACTIONS(2163), - [aux_sym_cmd_identifier_token6] = ACTIONS(2163), - [aux_sym_cmd_identifier_token7] = ACTIONS(2163), - [aux_sym_cmd_identifier_token8] = ACTIONS(2163), - [aux_sym_cmd_identifier_token9] = ACTIONS(2163), - [aux_sym_cmd_identifier_token10] = ACTIONS(2163), - [aux_sym_cmd_identifier_token11] = ACTIONS(2163), - [aux_sym_cmd_identifier_token12] = ACTIONS(2163), - [aux_sym_cmd_identifier_token13] = ACTIONS(2163), - [aux_sym_cmd_identifier_token14] = ACTIONS(2163), - [aux_sym_cmd_identifier_token15] = ACTIONS(2163), - [aux_sym_cmd_identifier_token16] = ACTIONS(2163), - [aux_sym_cmd_identifier_token17] = ACTIONS(2163), - [aux_sym_cmd_identifier_token18] = ACTIONS(2163), - [aux_sym_cmd_identifier_token19] = ACTIONS(2163), - [aux_sym_cmd_identifier_token20] = ACTIONS(2163), - [aux_sym_cmd_identifier_token21] = ACTIONS(2163), - [aux_sym_cmd_identifier_token22] = ACTIONS(2163), - [aux_sym_cmd_identifier_token23] = ACTIONS(2163), - [aux_sym_cmd_identifier_token24] = ACTIONS(2163), - [aux_sym_cmd_identifier_token25] = ACTIONS(2163), - [aux_sym_cmd_identifier_token26] = ACTIONS(2163), - [aux_sym_cmd_identifier_token27] = ACTIONS(2163), - [aux_sym_cmd_identifier_token28] = ACTIONS(2163), - [aux_sym_cmd_identifier_token29] = ACTIONS(2163), - [aux_sym_cmd_identifier_token30] = ACTIONS(2163), - [aux_sym_cmd_identifier_token31] = ACTIONS(2163), - [aux_sym_cmd_identifier_token32] = ACTIONS(2163), - [aux_sym_cmd_identifier_token33] = ACTIONS(2163), - [aux_sym_cmd_identifier_token34] = ACTIONS(2163), - [aux_sym_cmd_identifier_token35] = ACTIONS(2163), - [aux_sym_cmd_identifier_token36] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [anon_sym_null] = ACTIONS(2163), - [aux_sym_cmd_identifier_token38] = ACTIONS(2163), - [aux_sym_cmd_identifier_token39] = ACTIONS(2163), - [aux_sym_cmd_identifier_token40] = ACTIONS(2163), - [anon_sym_def] = ACTIONS(2163), - [anon_sym_export_DASHenv] = ACTIONS(2163), - [anon_sym_extern] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_use] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2163), - [anon_sym_error] = ACTIONS(2163), - [anon_sym_list] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [anon_sym_loop] = ACTIONS(2163), - [anon_sym_make] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_catch] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_source] = ACTIONS(2163), - [anon_sym_source_DASHenv] = ACTIONS(2163), - [anon_sym_register] = ACTIONS(2163), - [anon_sym_hide] = ACTIONS(2163), - [anon_sym_hide_DASHenv] = ACTIONS(2163), - [anon_sym_overlay] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_LPAREN2] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2163), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2163), - [aux_sym__val_number_decimal_token1] = ACTIONS(2163), - [aux_sym__val_number_decimal_token2] = ACTIONS(2163), - [anon_sym_DOT2] = ACTIONS(2163), - [aux_sym__val_number_decimal_token3] = ACTIONS(2163), - [aux_sym__val_number_token1] = ACTIONS(2163), - [aux_sym__val_number_token2] = ACTIONS(2163), - [aux_sym__val_number_token3] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [sym__str_single_quotes] = ACTIONS(2163), - [sym__str_back_ticks] = ACTIONS(2163), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2163), - [sym__entry_separator] = ACTIONS(2165), - [aux_sym__unquoted_in_record_token7] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(2145), + [aux_sym__immediate_decimal_token2] = ACTIONS(2147), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3), }, [455] = { [sym_comment] = STATE(455), - [anon_sym_export] = ACTIONS(924), - [anon_sym_alias] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_let_DASHenv] = ACTIONS(924), - [anon_sym_mut] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [aux_sym_cmd_identifier_token1] = ACTIONS(924), - [aux_sym_cmd_identifier_token2] = ACTIONS(924), - [aux_sym_cmd_identifier_token3] = ACTIONS(924), - [aux_sym_cmd_identifier_token4] = ACTIONS(924), - [aux_sym_cmd_identifier_token5] = ACTIONS(924), - [aux_sym_cmd_identifier_token6] = ACTIONS(924), - [aux_sym_cmd_identifier_token7] = ACTIONS(924), - [aux_sym_cmd_identifier_token8] = ACTIONS(924), - [aux_sym_cmd_identifier_token9] = ACTIONS(924), - [aux_sym_cmd_identifier_token10] = ACTIONS(924), - [aux_sym_cmd_identifier_token11] = ACTIONS(924), - [aux_sym_cmd_identifier_token12] = ACTIONS(924), - [aux_sym_cmd_identifier_token13] = ACTIONS(924), - [aux_sym_cmd_identifier_token14] = ACTIONS(924), - [aux_sym_cmd_identifier_token15] = ACTIONS(924), - [aux_sym_cmd_identifier_token16] = ACTIONS(924), - [aux_sym_cmd_identifier_token17] = ACTIONS(924), - [aux_sym_cmd_identifier_token18] = ACTIONS(924), - [aux_sym_cmd_identifier_token19] = ACTIONS(924), - [aux_sym_cmd_identifier_token20] = ACTIONS(924), - [aux_sym_cmd_identifier_token21] = ACTIONS(924), - [aux_sym_cmd_identifier_token22] = ACTIONS(924), - [aux_sym_cmd_identifier_token23] = ACTIONS(924), - [aux_sym_cmd_identifier_token24] = ACTIONS(924), - [aux_sym_cmd_identifier_token25] = ACTIONS(924), - [aux_sym_cmd_identifier_token26] = ACTIONS(924), - [aux_sym_cmd_identifier_token27] = ACTIONS(924), - [aux_sym_cmd_identifier_token28] = ACTIONS(924), - [aux_sym_cmd_identifier_token29] = ACTIONS(924), - [aux_sym_cmd_identifier_token30] = ACTIONS(924), - [aux_sym_cmd_identifier_token31] = ACTIONS(924), - [aux_sym_cmd_identifier_token32] = ACTIONS(924), - [aux_sym_cmd_identifier_token33] = ACTIONS(924), - [aux_sym_cmd_identifier_token34] = ACTIONS(924), - [aux_sym_cmd_identifier_token35] = ACTIONS(924), - [aux_sym_cmd_identifier_token36] = ACTIONS(924), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [anon_sym_null] = ACTIONS(926), - [aux_sym_cmd_identifier_token38] = ACTIONS(924), - [aux_sym_cmd_identifier_token39] = ACTIONS(926), - [aux_sym_cmd_identifier_token40] = ACTIONS(926), - [anon_sym_def] = ACTIONS(924), - [anon_sym_export_DASHenv] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(926), - [anon_sym_error] = ACTIONS(924), - [anon_sym_list] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_make] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_try] = ACTIONS(924), - [anon_sym_catch] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_source] = ACTIONS(924), - [anon_sym_source_DASHenv] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_hide] = ACTIONS(924), - [anon_sym_hide_DASHenv] = ACTIONS(924), - [anon_sym_overlay] = ACTIONS(924), - [anon_sym_new] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(926), - [aux_sym__val_number_decimal_token1] = ACTIONS(924), - [aux_sym__val_number_decimal_token2] = ACTIONS(926), - [anon_sym_DOT2] = ACTIONS(924), - [aux_sym__val_number_decimal_token3] = ACTIONS(926), - [aux_sym__val_number_token1] = ACTIONS(926), - [aux_sym__val_number_token2] = ACTIONS(926), - [aux_sym__val_number_token3] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym__str_single_quotes] = ACTIONS(926), - [sym__str_back_ticks] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(926), - [aux_sym_record_entry_token1] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1982), + [anon_sym_alias] = ACTIONS(1982), + [anon_sym_let] = ACTIONS(1982), + [anon_sym_let_DASHenv] = ACTIONS(1982), + [anon_sym_mut] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(1982), + [aux_sym_cmd_identifier_token1] = ACTIONS(1982), + [aux_sym_cmd_identifier_token2] = ACTIONS(1982), + [aux_sym_cmd_identifier_token3] = ACTIONS(1982), + [aux_sym_cmd_identifier_token4] = ACTIONS(1982), + [aux_sym_cmd_identifier_token5] = ACTIONS(1982), + [aux_sym_cmd_identifier_token6] = ACTIONS(1982), + [aux_sym_cmd_identifier_token7] = ACTIONS(1982), + [aux_sym_cmd_identifier_token8] = ACTIONS(1982), + [aux_sym_cmd_identifier_token9] = ACTIONS(1982), + [aux_sym_cmd_identifier_token10] = ACTIONS(1982), + [aux_sym_cmd_identifier_token11] = ACTIONS(1982), + [aux_sym_cmd_identifier_token12] = ACTIONS(1982), + [aux_sym_cmd_identifier_token13] = ACTIONS(1982), + [aux_sym_cmd_identifier_token14] = ACTIONS(1982), + [aux_sym_cmd_identifier_token15] = ACTIONS(1982), + [aux_sym_cmd_identifier_token16] = ACTIONS(1982), + [aux_sym_cmd_identifier_token17] = ACTIONS(1982), + [aux_sym_cmd_identifier_token18] = ACTIONS(1982), + [aux_sym_cmd_identifier_token19] = ACTIONS(1982), + [aux_sym_cmd_identifier_token20] = ACTIONS(1982), + [aux_sym_cmd_identifier_token21] = ACTIONS(1982), + [aux_sym_cmd_identifier_token22] = ACTIONS(1982), + [aux_sym_cmd_identifier_token23] = ACTIONS(1982), + [aux_sym_cmd_identifier_token24] = ACTIONS(1982), + [aux_sym_cmd_identifier_token25] = ACTIONS(1982), + [aux_sym_cmd_identifier_token26] = ACTIONS(1982), + [aux_sym_cmd_identifier_token27] = ACTIONS(1982), + [aux_sym_cmd_identifier_token28] = ACTIONS(1982), + [aux_sym_cmd_identifier_token29] = ACTIONS(1982), + [aux_sym_cmd_identifier_token30] = ACTIONS(1982), + [aux_sym_cmd_identifier_token31] = ACTIONS(1982), + [aux_sym_cmd_identifier_token32] = ACTIONS(1982), + [aux_sym_cmd_identifier_token33] = ACTIONS(1982), + [aux_sym_cmd_identifier_token34] = ACTIONS(1982), + [aux_sym_cmd_identifier_token35] = ACTIONS(1982), + [aux_sym_cmd_identifier_token36] = ACTIONS(1982), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [anon_sym_null] = ACTIONS(1984), + [aux_sym_cmd_identifier_token38] = ACTIONS(1982), + [aux_sym_cmd_identifier_token39] = ACTIONS(1984), + [aux_sym_cmd_identifier_token40] = ACTIONS(1984), + [anon_sym_def] = ACTIONS(1982), + [anon_sym_export_DASHenv] = ACTIONS(1982), + [anon_sym_extern] = ACTIONS(1982), + [anon_sym_module] = ACTIONS(1982), + [anon_sym_use] = ACTIONS(1982), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1984), + [anon_sym_error] = ACTIONS(1982), + [anon_sym_list] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_break] = ACTIONS(1982), + [anon_sym_continue] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1982), + [anon_sym_in] = ACTIONS(1982), + [anon_sym_loop] = ACTIONS(1982), + [anon_sym_make] = ACTIONS(1982), + [anon_sym_while] = ACTIONS(1982), + [anon_sym_do] = ACTIONS(1982), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_else] = ACTIONS(1982), + [anon_sym_match] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_try] = ACTIONS(1982), + [anon_sym_catch] = ACTIONS(1982), + [anon_sym_return] = ACTIONS(1982), + [anon_sym_source] = ACTIONS(1982), + [anon_sym_source_DASHenv] = ACTIONS(1982), + [anon_sym_register] = ACTIONS(1982), + [anon_sym_hide] = ACTIONS(1982), + [anon_sym_hide_DASHenv] = ACTIONS(1982), + [anon_sym_overlay] = ACTIONS(1982), + [anon_sym_new] = ACTIONS(1982), + [anon_sym_as] = ACTIONS(1982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1984), + [anon_sym_DOT_DOT2] = ACTIONS(1982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1984), + [aux_sym__val_number_decimal_token1] = ACTIONS(1982), + [aux_sym__val_number_decimal_token2] = ACTIONS(1984), + [aux_sym__val_number_decimal_token3] = ACTIONS(1984), + [aux_sym__val_number_decimal_token4] = ACTIONS(1984), + [aux_sym__val_number_token1] = ACTIONS(1984), + [aux_sym__val_number_token2] = ACTIONS(1984), + [aux_sym__val_number_token3] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1984), + [sym__str_single_quotes] = ACTIONS(1984), + [sym__str_back_ticks] = ACTIONS(1984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1984), + [anon_sym_PLUS] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(247), }, [456] = { + [sym_expr_parenthesized] = STATE(4691), + [sym__spread_parenthesized] = STATE(5143), + [sym_val_range] = STATE(5187), + [sym__val_range] = STATE(7916), + [sym__val_range_with_end] = STATE(7587), + [sym__value] = STATE(5187), + [sym_val_nothing] = STATE(5122), + [sym_val_bool] = STATE(4803), + [sym__spread_variable] = STATE(5022), + [sym_val_variable] = STATE(4677), + [sym_val_number] = STATE(5122), + [sym__val_number_decimal] = STATE(4195), + [sym__val_number] = STATE(5127), + [sym_val_duration] = STATE(5122), + [sym_val_filesize] = STATE(5122), + [sym_val_binary] = STATE(5122), + [sym_val_string] = STATE(5122), + [sym__str_double_quotes] = STATE(4755), + [sym_val_interpolated] = STATE(5122), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5023), + [sym_val_list] = STATE(5122), + [sym__spread_list] = STATE(5143), + [sym_val_record] = STATE(5122), + [sym_val_table] = STATE(5122), + [sym_val_closure] = STATE(5122), + [sym__cmd_arg] = STATE(5025), + [sym_redirection] = STATE(5036), + [sym__flag] = STATE(5079), + [sym_short_flag] = STATE(5067), + [sym_long_flag] = STATE(5067), + [sym_unquoted] = STATE(4819), + [sym__unquoted_with_expr] = STATE(5026), + [sym__unquoted_anonymous_prefix] = STATE(7308), [sym_comment] = STATE(456), - [anon_sym_export] = ACTIONS(932), - [anon_sym_alias] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_let_DASHenv] = ACTIONS(932), - [anon_sym_mut] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [aux_sym_cmd_identifier_token1] = ACTIONS(932), - [aux_sym_cmd_identifier_token2] = ACTIONS(932), - [aux_sym_cmd_identifier_token3] = ACTIONS(932), - [aux_sym_cmd_identifier_token4] = ACTIONS(932), - [aux_sym_cmd_identifier_token5] = ACTIONS(932), - [aux_sym_cmd_identifier_token6] = ACTIONS(932), - [aux_sym_cmd_identifier_token7] = ACTIONS(932), - [aux_sym_cmd_identifier_token8] = ACTIONS(932), - [aux_sym_cmd_identifier_token9] = ACTIONS(932), - [aux_sym_cmd_identifier_token10] = ACTIONS(932), - [aux_sym_cmd_identifier_token11] = ACTIONS(932), - [aux_sym_cmd_identifier_token12] = ACTIONS(932), - [aux_sym_cmd_identifier_token13] = ACTIONS(932), - [aux_sym_cmd_identifier_token14] = ACTIONS(932), - [aux_sym_cmd_identifier_token15] = ACTIONS(932), - [aux_sym_cmd_identifier_token16] = ACTIONS(932), - [aux_sym_cmd_identifier_token17] = ACTIONS(932), - [aux_sym_cmd_identifier_token18] = ACTIONS(932), - [aux_sym_cmd_identifier_token19] = ACTIONS(932), - [aux_sym_cmd_identifier_token20] = ACTIONS(932), - [aux_sym_cmd_identifier_token21] = ACTIONS(932), - [aux_sym_cmd_identifier_token22] = ACTIONS(932), - [aux_sym_cmd_identifier_token23] = ACTIONS(932), - [aux_sym_cmd_identifier_token24] = ACTIONS(932), - [aux_sym_cmd_identifier_token25] = ACTIONS(932), - [aux_sym_cmd_identifier_token26] = ACTIONS(932), - [aux_sym_cmd_identifier_token27] = ACTIONS(932), - [aux_sym_cmd_identifier_token28] = ACTIONS(932), - [aux_sym_cmd_identifier_token29] = ACTIONS(932), - [aux_sym_cmd_identifier_token30] = ACTIONS(932), - [aux_sym_cmd_identifier_token31] = ACTIONS(932), - [aux_sym_cmd_identifier_token32] = ACTIONS(932), - [aux_sym_cmd_identifier_token33] = ACTIONS(932), - [aux_sym_cmd_identifier_token34] = ACTIONS(932), - [aux_sym_cmd_identifier_token35] = ACTIONS(932), - [aux_sym_cmd_identifier_token36] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_null] = ACTIONS(934), - [aux_sym_cmd_identifier_token38] = ACTIONS(932), - [aux_sym_cmd_identifier_token39] = ACTIONS(934), - [aux_sym_cmd_identifier_token40] = ACTIONS(934), - [anon_sym_def] = ACTIONS(932), - [anon_sym_export_DASHenv] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_error] = ACTIONS(932), - [anon_sym_list] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_make] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_try] = ACTIONS(932), - [anon_sym_catch] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_source] = ACTIONS(932), - [anon_sym_source_DASHenv] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_hide] = ACTIONS(932), - [anon_sym_hide_DASHenv] = ACTIONS(932), - [anon_sym_overlay] = ACTIONS(932), - [anon_sym_new] = ACTIONS(932), - [anon_sym_as] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(934), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(934), - [aux_sym__val_number_decimal_token1] = ACTIONS(932), - [aux_sym__val_number_decimal_token2] = ACTIONS(934), - [anon_sym_DOT2] = ACTIONS(932), - [aux_sym__val_number_decimal_token3] = ACTIONS(934), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym__str_single_quotes] = ACTIONS(934), - [sym__str_back_ticks] = ACTIONS(934), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(934), - [aux_sym_record_entry_token1] = ACTIONS(934), + [ts_builtin_sym_end] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [anon_sym_null] = ACTIONS(2151), + [aux_sym_cmd_identifier_token38] = ACTIONS(2153), + [aux_sym_cmd_identifier_token39] = ACTIONS(2153), + [aux_sym_cmd_identifier_token40] = ACTIONS(2153), + [sym__newline] = ACTIONS(2010), + [sym__space] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_err_GT_PIPE] = ACTIONS(2010), + [anon_sym_out_GT_PIPE] = ACTIONS(2010), + [anon_sym_e_GT_PIPE] = ACTIONS(2010), + [anon_sym_o_GT_PIPE] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2163), + [aux_sym_ctrl_match_token1] = ACTIONS(2165), + [anon_sym_DOT_DOT] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2169), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2171), + [anon_sym_DOT_DOT_LT] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(2175), + [aux_sym__val_number_decimal_token3] = ACTIONS(2177), + [aux_sym__val_number_decimal_token4] = ACTIONS(2179), + [aux_sym__val_number_token1] = ACTIONS(2181), + [aux_sym__val_number_token2] = ACTIONS(2181), + [aux_sym__val_number_token3] = ACTIONS(2181), + [anon_sym_0b] = ACTIONS(2183), + [anon_sym_0o] = ACTIONS(2185), + [anon_sym_0x] = ACTIONS(2185), + [sym_val_date] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2189), + [sym__str_single_quotes] = ACTIONS(2191), + [sym__str_back_ticks] = ACTIONS(2191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2195), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2197), + [anon_sym_err_GT] = ACTIONS(2199), + [anon_sym_out_GT] = ACTIONS(2199), + [anon_sym_e_GT] = ACTIONS(2199), + [anon_sym_o_GT] = ACTIONS(2199), + [anon_sym_err_PLUSout_GT] = ACTIONS(2199), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2199), + [anon_sym_o_PLUSe_GT] = ACTIONS(2199), + [anon_sym_e_PLUSo_GT] = ACTIONS(2199), + [anon_sym_err_GT_GT] = ACTIONS(2199), + [anon_sym_out_GT_GT] = ACTIONS(2199), + [anon_sym_e_GT_GT] = ACTIONS(2199), + [anon_sym_o_GT_GT] = ACTIONS(2199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2199), + [aux_sym_unquoted_token1] = ACTIONS(2201), [anon_sym_POUND] = ACTIONS(3), }, [457] = { + [sym__expr_parenthesized_immediate] = STATE(7603), [sym_comment] = STATE(457), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [aux_sym_cmd_identifier_token1] = ACTIONS(1608), - [aux_sym_cmd_identifier_token2] = ACTIONS(1608), - [aux_sym_cmd_identifier_token3] = ACTIONS(1608), - [aux_sym_cmd_identifier_token4] = ACTIONS(1608), - [aux_sym_cmd_identifier_token5] = ACTIONS(1608), - [aux_sym_cmd_identifier_token6] = ACTIONS(1608), - [aux_sym_cmd_identifier_token7] = ACTIONS(1608), - [aux_sym_cmd_identifier_token8] = ACTIONS(1608), - [aux_sym_cmd_identifier_token9] = ACTIONS(1608), - [aux_sym_cmd_identifier_token10] = ACTIONS(1608), - [aux_sym_cmd_identifier_token11] = ACTIONS(1608), - [aux_sym_cmd_identifier_token12] = ACTIONS(1608), - [aux_sym_cmd_identifier_token13] = ACTIONS(1608), - [aux_sym_cmd_identifier_token14] = ACTIONS(1608), - [aux_sym_cmd_identifier_token15] = ACTIONS(1608), - [aux_sym_cmd_identifier_token16] = ACTIONS(1608), - [aux_sym_cmd_identifier_token17] = ACTIONS(1608), - [aux_sym_cmd_identifier_token18] = ACTIONS(1608), - [aux_sym_cmd_identifier_token19] = ACTIONS(1608), - [aux_sym_cmd_identifier_token20] = ACTIONS(1608), - [aux_sym_cmd_identifier_token21] = ACTIONS(1608), - [aux_sym_cmd_identifier_token22] = ACTIONS(1608), - [aux_sym_cmd_identifier_token23] = ACTIONS(1608), - [aux_sym_cmd_identifier_token24] = ACTIONS(1608), - [aux_sym_cmd_identifier_token25] = ACTIONS(1608), - [aux_sym_cmd_identifier_token26] = ACTIONS(1608), - [aux_sym_cmd_identifier_token27] = ACTIONS(1608), - [aux_sym_cmd_identifier_token28] = ACTIONS(1608), - [aux_sym_cmd_identifier_token29] = ACTIONS(1608), - [aux_sym_cmd_identifier_token30] = ACTIONS(1608), - [aux_sym_cmd_identifier_token31] = ACTIONS(1608), - [aux_sym_cmd_identifier_token32] = ACTIONS(1608), - [aux_sym_cmd_identifier_token33] = ACTIONS(1608), - [aux_sym_cmd_identifier_token34] = ACTIONS(1608), - [aux_sym_cmd_identifier_token35] = ACTIONS(1608), - [aux_sym_cmd_identifier_token36] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1608), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1610), - [anon_sym_DOT_DOT2] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1610), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1610), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1949), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1949), + [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_list] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1949), + [aux_sym__val_number_decimal_token3] = ACTIONS(1949), + [aux_sym__val_number_decimal_token4] = ACTIONS(1949), + [aux_sym__val_number_token1] = ACTIONS(1949), + [aux_sym__val_number_token2] = ACTIONS(1949), + [aux_sym__val_number_token3] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym__str_single_quotes] = ACTIONS(1949), + [sym__str_back_ticks] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), + [sym__entry_separator] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1949), [anon_sym_POUND] = ACTIONS(3), }, [458] = { - [sym_path] = STATE(572), + [sym__expr_parenthesized_immediate] = STATE(7603), [sym_comment] = STATE(458), - [aux_sym_cell_path_repeat1] = STATE(460), - [anon_sym_export] = ACTIONS(889), - [anon_sym_alias] = ACTIONS(889), - [anon_sym_let] = ACTIONS(889), - [anon_sym_let_DASHenv] = ACTIONS(889), - [anon_sym_mut] = ACTIONS(889), - [anon_sym_const] = ACTIONS(889), - [aux_sym_cmd_identifier_token1] = ACTIONS(889), - [aux_sym_cmd_identifier_token2] = ACTIONS(889), - [aux_sym_cmd_identifier_token3] = ACTIONS(889), - [aux_sym_cmd_identifier_token4] = ACTIONS(889), - [aux_sym_cmd_identifier_token5] = ACTIONS(889), - [aux_sym_cmd_identifier_token6] = ACTIONS(889), - [aux_sym_cmd_identifier_token7] = ACTIONS(889), - [aux_sym_cmd_identifier_token8] = ACTIONS(889), - [aux_sym_cmd_identifier_token9] = ACTIONS(889), - [aux_sym_cmd_identifier_token10] = ACTIONS(889), - [aux_sym_cmd_identifier_token11] = ACTIONS(889), - [aux_sym_cmd_identifier_token12] = ACTIONS(889), - [aux_sym_cmd_identifier_token13] = ACTIONS(889), - [aux_sym_cmd_identifier_token14] = ACTIONS(889), - [aux_sym_cmd_identifier_token15] = ACTIONS(889), - [aux_sym_cmd_identifier_token16] = ACTIONS(889), - [aux_sym_cmd_identifier_token17] = ACTIONS(889), - [aux_sym_cmd_identifier_token18] = ACTIONS(889), - [aux_sym_cmd_identifier_token19] = ACTIONS(889), - [aux_sym_cmd_identifier_token20] = ACTIONS(889), - [aux_sym_cmd_identifier_token21] = ACTIONS(889), - [aux_sym_cmd_identifier_token22] = ACTIONS(889), - [aux_sym_cmd_identifier_token23] = ACTIONS(889), - [aux_sym_cmd_identifier_token24] = ACTIONS(889), - [aux_sym_cmd_identifier_token25] = ACTIONS(889), - [aux_sym_cmd_identifier_token26] = ACTIONS(889), - [aux_sym_cmd_identifier_token27] = ACTIONS(889), - [aux_sym_cmd_identifier_token28] = ACTIONS(889), - [aux_sym_cmd_identifier_token29] = ACTIONS(889), - [aux_sym_cmd_identifier_token30] = ACTIONS(889), - [aux_sym_cmd_identifier_token31] = ACTIONS(889), - [aux_sym_cmd_identifier_token32] = ACTIONS(889), - [aux_sym_cmd_identifier_token33] = ACTIONS(889), - [aux_sym_cmd_identifier_token34] = ACTIONS(889), - [aux_sym_cmd_identifier_token35] = ACTIONS(889), - [aux_sym_cmd_identifier_token36] = ACTIONS(889), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_null] = ACTIONS(891), - [aux_sym_cmd_identifier_token38] = ACTIONS(889), - [aux_sym_cmd_identifier_token39] = ACTIONS(891), - [aux_sym_cmd_identifier_token40] = ACTIONS(891), - [anon_sym_def] = ACTIONS(889), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_use] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_error] = ACTIONS(889), - [anon_sym_list] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [anon_sym_loop] = ACTIONS(889), - [anon_sym_make] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_match] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_try] = ACTIONS(889), - [anon_sym_catch] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(889), - [anon_sym_source_DASHenv] = ACTIONS(889), - [anon_sym_register] = ACTIONS(889), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(889), - [anon_sym_overlay] = ACTIONS(889), - [anon_sym_new] = ACTIONS(889), - [anon_sym_as] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(891), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(891), + [anon_sym_export] = ACTIONS(1905), + [anon_sym_alias] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_let_DASHenv] = ACTIONS(1905), + [anon_sym_mut] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [aux_sym_cmd_identifier_token1] = ACTIONS(1905), + [aux_sym_cmd_identifier_token2] = ACTIONS(1905), + [aux_sym_cmd_identifier_token3] = ACTIONS(1905), + [aux_sym_cmd_identifier_token4] = ACTIONS(1905), + [aux_sym_cmd_identifier_token5] = ACTIONS(1905), + [aux_sym_cmd_identifier_token6] = ACTIONS(1905), + [aux_sym_cmd_identifier_token7] = ACTIONS(1905), + [aux_sym_cmd_identifier_token8] = ACTIONS(1905), + [aux_sym_cmd_identifier_token9] = ACTIONS(1905), + [aux_sym_cmd_identifier_token10] = ACTIONS(1905), + [aux_sym_cmd_identifier_token11] = ACTIONS(1905), + [aux_sym_cmd_identifier_token12] = ACTIONS(1905), + [aux_sym_cmd_identifier_token13] = ACTIONS(1905), + [aux_sym_cmd_identifier_token14] = ACTIONS(1905), + [aux_sym_cmd_identifier_token15] = ACTIONS(1905), + [aux_sym_cmd_identifier_token16] = ACTIONS(1905), + [aux_sym_cmd_identifier_token17] = ACTIONS(1905), + [aux_sym_cmd_identifier_token18] = ACTIONS(1905), + [aux_sym_cmd_identifier_token19] = ACTIONS(1905), + [aux_sym_cmd_identifier_token20] = ACTIONS(1905), + [aux_sym_cmd_identifier_token21] = ACTIONS(1905), + [aux_sym_cmd_identifier_token22] = ACTIONS(1905), + [aux_sym_cmd_identifier_token23] = ACTIONS(1905), + [aux_sym_cmd_identifier_token24] = ACTIONS(1905), + [aux_sym_cmd_identifier_token25] = ACTIONS(1905), + [aux_sym_cmd_identifier_token26] = ACTIONS(1905), + [aux_sym_cmd_identifier_token27] = ACTIONS(1905), + [aux_sym_cmd_identifier_token28] = ACTIONS(1905), + [aux_sym_cmd_identifier_token29] = ACTIONS(1905), + [aux_sym_cmd_identifier_token30] = ACTIONS(1905), + [aux_sym_cmd_identifier_token31] = ACTIONS(1905), + [aux_sym_cmd_identifier_token32] = ACTIONS(1905), + [aux_sym_cmd_identifier_token33] = ACTIONS(1905), + [aux_sym_cmd_identifier_token34] = ACTIONS(1905), + [aux_sym_cmd_identifier_token35] = ACTIONS(1905), + [aux_sym_cmd_identifier_token36] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [anon_sym_null] = ACTIONS(1905), + [aux_sym_cmd_identifier_token38] = ACTIONS(1905), + [aux_sym_cmd_identifier_token39] = ACTIONS(1905), + [aux_sym_cmd_identifier_token40] = ACTIONS(1905), + [anon_sym_def] = ACTIONS(1905), + [anon_sym_export_DASHenv] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_module] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_DOLLAR] = ACTIONS(1905), + [anon_sym_error] = ACTIONS(1905), + [anon_sym_list] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_in] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_make] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_do] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_else] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1905), + [anon_sym_catch] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_source] = ACTIONS(1905), + [anon_sym_source_DASHenv] = ACTIONS(1905), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_hide] = ACTIONS(1905), + [anon_sym_hide_DASHenv] = ACTIONS(1905), + [anon_sym_overlay] = ACTIONS(1905), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_as] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), + [aux_sym__val_number_decimal_token1] = ACTIONS(1905), + [aux_sym__val_number_decimal_token2] = ACTIONS(1905), + [aux_sym__val_number_decimal_token3] = ACTIONS(1905), + [aux_sym__val_number_decimal_token4] = ACTIONS(1905), + [aux_sym__val_number_token1] = ACTIONS(1905), + [aux_sym__val_number_token2] = ACTIONS(1905), + [aux_sym__val_number_token3] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1905), + [sym__str_single_quotes] = ACTIONS(1905), + [sym__str_back_ticks] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), + [sym__entry_separator] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1905), [anon_sym_POUND] = ACTIONS(3), }, [459] = { + [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(459), - [anon_sym_export] = ACTIONS(916), - [anon_sym_alias] = ACTIONS(916), - [anon_sym_let] = ACTIONS(916), - [anon_sym_let_DASHenv] = ACTIONS(916), - [anon_sym_mut] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [aux_sym_cmd_identifier_token1] = ACTIONS(916), - [aux_sym_cmd_identifier_token2] = ACTIONS(916), - [aux_sym_cmd_identifier_token3] = ACTIONS(916), - [aux_sym_cmd_identifier_token4] = ACTIONS(916), - [aux_sym_cmd_identifier_token5] = ACTIONS(916), - [aux_sym_cmd_identifier_token6] = ACTIONS(916), - [aux_sym_cmd_identifier_token7] = ACTIONS(916), - [aux_sym_cmd_identifier_token8] = ACTIONS(916), - [aux_sym_cmd_identifier_token9] = ACTIONS(916), - [aux_sym_cmd_identifier_token10] = ACTIONS(916), - [aux_sym_cmd_identifier_token11] = ACTIONS(916), - [aux_sym_cmd_identifier_token12] = ACTIONS(916), - [aux_sym_cmd_identifier_token13] = ACTIONS(916), - [aux_sym_cmd_identifier_token14] = ACTIONS(916), - [aux_sym_cmd_identifier_token15] = ACTIONS(916), - [aux_sym_cmd_identifier_token16] = ACTIONS(916), - [aux_sym_cmd_identifier_token17] = ACTIONS(916), - [aux_sym_cmd_identifier_token18] = ACTIONS(916), - [aux_sym_cmd_identifier_token19] = ACTIONS(916), - [aux_sym_cmd_identifier_token20] = ACTIONS(916), - [aux_sym_cmd_identifier_token21] = ACTIONS(916), - [aux_sym_cmd_identifier_token22] = ACTIONS(916), - [aux_sym_cmd_identifier_token23] = ACTIONS(916), - [aux_sym_cmd_identifier_token24] = ACTIONS(916), - [aux_sym_cmd_identifier_token25] = ACTIONS(916), - [aux_sym_cmd_identifier_token26] = ACTIONS(916), - [aux_sym_cmd_identifier_token27] = ACTIONS(916), - [aux_sym_cmd_identifier_token28] = ACTIONS(916), - [aux_sym_cmd_identifier_token29] = ACTIONS(916), - [aux_sym_cmd_identifier_token30] = ACTIONS(916), - [aux_sym_cmd_identifier_token31] = ACTIONS(916), - [aux_sym_cmd_identifier_token32] = ACTIONS(916), - [aux_sym_cmd_identifier_token33] = ACTIONS(916), - [aux_sym_cmd_identifier_token34] = ACTIONS(916), - [aux_sym_cmd_identifier_token35] = ACTIONS(916), - [aux_sym_cmd_identifier_token36] = ACTIONS(916), - [anon_sym_true] = ACTIONS(916), - [anon_sym_false] = ACTIONS(916), - [anon_sym_null] = ACTIONS(916), - [aux_sym_cmd_identifier_token38] = ACTIONS(916), - [aux_sym_cmd_identifier_token39] = ACTIONS(916), - [aux_sym_cmd_identifier_token40] = ACTIONS(916), - [anon_sym_def] = ACTIONS(916), - [anon_sym_export_DASHenv] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_use] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_DOLLAR] = ACTIONS(916), - [anon_sym_error] = ACTIONS(916), - [anon_sym_list] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [anon_sym_loop] = ACTIONS(916), - [anon_sym_make] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_match] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_try] = ACTIONS(916), - [anon_sym_catch] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_source] = ACTIONS(916), - [anon_sym_source_DASHenv] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_hide] = ACTIONS(916), - [anon_sym_hide_DASHenv] = ACTIONS(916), - [anon_sym_overlay] = ACTIONS(916), - [anon_sym_new] = ACTIONS(916), - [anon_sym_as] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(916), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(916), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(916), - [aux_sym__val_number_token1] = ACTIONS(916), - [aux_sym__val_number_token2] = ACTIONS(916), - [aux_sym__val_number_token3] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym__str_single_quotes] = ACTIONS(916), - [sym__str_back_ticks] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(916), - [sym__entry_separator] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2203), + [anon_sym_alias] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_let_DASHenv] = ACTIONS(2203), + [anon_sym_mut] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [aux_sym_cmd_identifier_token1] = ACTIONS(2203), + [aux_sym_cmd_identifier_token2] = ACTIONS(2203), + [aux_sym_cmd_identifier_token3] = ACTIONS(2203), + [aux_sym_cmd_identifier_token4] = ACTIONS(2203), + [aux_sym_cmd_identifier_token5] = ACTIONS(2203), + [aux_sym_cmd_identifier_token6] = ACTIONS(2203), + [aux_sym_cmd_identifier_token7] = ACTIONS(2203), + [aux_sym_cmd_identifier_token8] = ACTIONS(2203), + [aux_sym_cmd_identifier_token9] = ACTIONS(2203), + [aux_sym_cmd_identifier_token10] = ACTIONS(2203), + [aux_sym_cmd_identifier_token11] = ACTIONS(2203), + [aux_sym_cmd_identifier_token12] = ACTIONS(2203), + [aux_sym_cmd_identifier_token13] = ACTIONS(2203), + [aux_sym_cmd_identifier_token14] = ACTIONS(2203), + [aux_sym_cmd_identifier_token15] = ACTIONS(2203), + [aux_sym_cmd_identifier_token16] = ACTIONS(2203), + [aux_sym_cmd_identifier_token17] = ACTIONS(2203), + [aux_sym_cmd_identifier_token18] = ACTIONS(2203), + [aux_sym_cmd_identifier_token19] = ACTIONS(2203), + [aux_sym_cmd_identifier_token20] = ACTIONS(2203), + [aux_sym_cmd_identifier_token21] = ACTIONS(2203), + [aux_sym_cmd_identifier_token22] = ACTIONS(2203), + [aux_sym_cmd_identifier_token23] = ACTIONS(2203), + [aux_sym_cmd_identifier_token24] = ACTIONS(2203), + [aux_sym_cmd_identifier_token25] = ACTIONS(2203), + [aux_sym_cmd_identifier_token26] = ACTIONS(2203), + [aux_sym_cmd_identifier_token27] = ACTIONS(2203), + [aux_sym_cmd_identifier_token28] = ACTIONS(2203), + [aux_sym_cmd_identifier_token29] = ACTIONS(2203), + [aux_sym_cmd_identifier_token30] = ACTIONS(2203), + [aux_sym_cmd_identifier_token31] = ACTIONS(2203), + [aux_sym_cmd_identifier_token32] = ACTIONS(2203), + [aux_sym_cmd_identifier_token33] = ACTIONS(2203), + [aux_sym_cmd_identifier_token34] = ACTIONS(2203), + [aux_sym_cmd_identifier_token35] = ACTIONS(2203), + [aux_sym_cmd_identifier_token36] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2203), + [anon_sym_false] = ACTIONS(2203), + [anon_sym_null] = ACTIONS(2203), + [aux_sym_cmd_identifier_token38] = ACTIONS(2203), + [aux_sym_cmd_identifier_token39] = ACTIONS(2203), + [aux_sym_cmd_identifier_token40] = ACTIONS(2203), + [anon_sym_def] = ACTIONS(2203), + [anon_sym_export_DASHenv] = ACTIONS(2203), + [anon_sym_extern] = ACTIONS(2203), + [anon_sym_module] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_DOLLAR] = ACTIONS(2203), + [anon_sym_error] = ACTIONS(2203), + [anon_sym_list] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_in] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_make] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [anon_sym_do] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_else] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_try] = ACTIONS(2203), + [anon_sym_catch] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_source] = ACTIONS(2203), + [anon_sym_source_DASHenv] = ACTIONS(2203), + [anon_sym_register] = ACTIONS(2203), + [anon_sym_hide] = ACTIONS(2203), + [anon_sym_hide_DASHenv] = ACTIONS(2203), + [anon_sym_overlay] = ACTIONS(2203), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2203), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2203), + [aux_sym__val_number_decimal_token1] = ACTIONS(2203), + [aux_sym__val_number_decimal_token2] = ACTIONS(2203), + [aux_sym__val_number_decimal_token3] = ACTIONS(2203), + [aux_sym__val_number_decimal_token4] = ACTIONS(2203), + [aux_sym__val_number_token1] = ACTIONS(2203), + [aux_sym__val_number_token2] = ACTIONS(2203), + [aux_sym__val_number_token3] = ACTIONS(2203), + [anon_sym_DQUOTE] = ACTIONS(2203), + [sym__str_single_quotes] = ACTIONS(2203), + [sym__str_back_ticks] = ACTIONS(2203), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2203), + [sym__entry_separator] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(3), }, [460] = { - [sym_path] = STATE(572), + [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(460), - [aux_sym_cell_path_repeat1] = STATE(460), - [anon_sym_export] = ACTIONS(893), - [anon_sym_alias] = ACTIONS(893), - [anon_sym_let] = ACTIONS(893), - [anon_sym_let_DASHenv] = ACTIONS(893), - [anon_sym_mut] = ACTIONS(893), - [anon_sym_const] = ACTIONS(893), - [aux_sym_cmd_identifier_token1] = ACTIONS(893), - [aux_sym_cmd_identifier_token2] = ACTIONS(893), - [aux_sym_cmd_identifier_token3] = ACTIONS(893), - [aux_sym_cmd_identifier_token4] = ACTIONS(893), - [aux_sym_cmd_identifier_token5] = ACTIONS(893), - [aux_sym_cmd_identifier_token6] = ACTIONS(893), - [aux_sym_cmd_identifier_token7] = ACTIONS(893), - [aux_sym_cmd_identifier_token8] = ACTIONS(893), - [aux_sym_cmd_identifier_token9] = ACTIONS(893), - [aux_sym_cmd_identifier_token10] = ACTIONS(893), - [aux_sym_cmd_identifier_token11] = ACTIONS(893), - [aux_sym_cmd_identifier_token12] = ACTIONS(893), - [aux_sym_cmd_identifier_token13] = ACTIONS(893), - [aux_sym_cmd_identifier_token14] = ACTIONS(893), - [aux_sym_cmd_identifier_token15] = ACTIONS(893), - [aux_sym_cmd_identifier_token16] = ACTIONS(893), - [aux_sym_cmd_identifier_token17] = ACTIONS(893), - [aux_sym_cmd_identifier_token18] = ACTIONS(893), - [aux_sym_cmd_identifier_token19] = ACTIONS(893), - [aux_sym_cmd_identifier_token20] = ACTIONS(893), - [aux_sym_cmd_identifier_token21] = ACTIONS(893), - [aux_sym_cmd_identifier_token22] = ACTIONS(893), - [aux_sym_cmd_identifier_token23] = ACTIONS(893), - [aux_sym_cmd_identifier_token24] = ACTIONS(893), - [aux_sym_cmd_identifier_token25] = ACTIONS(893), - [aux_sym_cmd_identifier_token26] = ACTIONS(893), - [aux_sym_cmd_identifier_token27] = ACTIONS(893), - [aux_sym_cmd_identifier_token28] = ACTIONS(893), - [aux_sym_cmd_identifier_token29] = ACTIONS(893), - [aux_sym_cmd_identifier_token30] = ACTIONS(893), - [aux_sym_cmd_identifier_token31] = ACTIONS(893), - [aux_sym_cmd_identifier_token32] = ACTIONS(893), - [aux_sym_cmd_identifier_token33] = ACTIONS(893), - [aux_sym_cmd_identifier_token34] = ACTIONS(893), - [aux_sym_cmd_identifier_token35] = ACTIONS(893), - [aux_sym_cmd_identifier_token36] = ACTIONS(893), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [anon_sym_null] = ACTIONS(895), - [aux_sym_cmd_identifier_token38] = ACTIONS(893), - [aux_sym_cmd_identifier_token39] = ACTIONS(895), - [aux_sym_cmd_identifier_token40] = ACTIONS(895), - [anon_sym_def] = ACTIONS(893), - [anon_sym_export_DASHenv] = ACTIONS(893), - [anon_sym_extern] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_use] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_error] = ACTIONS(893), - [anon_sym_list] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_in] = ACTIONS(893), - [anon_sym_loop] = ACTIONS(893), - [anon_sym_make] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_else] = ACTIONS(893), - [anon_sym_match] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_try] = ACTIONS(893), - [anon_sym_catch] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_source] = ACTIONS(893), - [anon_sym_source_DASHenv] = ACTIONS(893), - [anon_sym_register] = ACTIONS(893), - [anon_sym_hide] = ACTIONS(893), - [anon_sym_hide_DASHenv] = ACTIONS(893), - [anon_sym_overlay] = ACTIONS(893), - [anon_sym_new] = ACTIONS(893), - [anon_sym_as] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(895), - [anon_sym_DOT] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(895), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(895), - [aux_sym__val_number_token1] = ACTIONS(895), - [aux_sym__val_number_token2] = ACTIONS(895), - [aux_sym__val_number_token3] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(895), + [anon_sym_export] = ACTIONS(2207), + [anon_sym_alias] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_let_DASHenv] = ACTIONS(2207), + [anon_sym_mut] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [aux_sym_cmd_identifier_token1] = ACTIONS(2207), + [aux_sym_cmd_identifier_token2] = ACTIONS(2207), + [aux_sym_cmd_identifier_token3] = ACTIONS(2207), + [aux_sym_cmd_identifier_token4] = ACTIONS(2207), + [aux_sym_cmd_identifier_token5] = ACTIONS(2207), + [aux_sym_cmd_identifier_token6] = ACTIONS(2207), + [aux_sym_cmd_identifier_token7] = ACTIONS(2207), + [aux_sym_cmd_identifier_token8] = ACTIONS(2207), + [aux_sym_cmd_identifier_token9] = ACTIONS(2207), + [aux_sym_cmd_identifier_token10] = ACTIONS(2207), + [aux_sym_cmd_identifier_token11] = ACTIONS(2207), + [aux_sym_cmd_identifier_token12] = ACTIONS(2207), + [aux_sym_cmd_identifier_token13] = ACTIONS(2207), + [aux_sym_cmd_identifier_token14] = ACTIONS(2207), + [aux_sym_cmd_identifier_token15] = ACTIONS(2207), + [aux_sym_cmd_identifier_token16] = ACTIONS(2207), + [aux_sym_cmd_identifier_token17] = ACTIONS(2207), + [aux_sym_cmd_identifier_token18] = ACTIONS(2207), + [aux_sym_cmd_identifier_token19] = ACTIONS(2207), + [aux_sym_cmd_identifier_token20] = ACTIONS(2207), + [aux_sym_cmd_identifier_token21] = ACTIONS(2207), + [aux_sym_cmd_identifier_token22] = ACTIONS(2207), + [aux_sym_cmd_identifier_token23] = ACTIONS(2207), + [aux_sym_cmd_identifier_token24] = ACTIONS(2207), + [aux_sym_cmd_identifier_token25] = ACTIONS(2207), + [aux_sym_cmd_identifier_token26] = ACTIONS(2207), + [aux_sym_cmd_identifier_token27] = ACTIONS(2207), + [aux_sym_cmd_identifier_token28] = ACTIONS(2207), + [aux_sym_cmd_identifier_token29] = ACTIONS(2207), + [aux_sym_cmd_identifier_token30] = ACTIONS(2207), + [aux_sym_cmd_identifier_token31] = ACTIONS(2207), + [aux_sym_cmd_identifier_token32] = ACTIONS(2207), + [aux_sym_cmd_identifier_token33] = ACTIONS(2207), + [aux_sym_cmd_identifier_token34] = ACTIONS(2207), + [aux_sym_cmd_identifier_token35] = ACTIONS(2207), + [aux_sym_cmd_identifier_token36] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2207), + [anon_sym_false] = ACTIONS(2207), + [anon_sym_null] = ACTIONS(2207), + [aux_sym_cmd_identifier_token38] = ACTIONS(2207), + [aux_sym_cmd_identifier_token39] = ACTIONS(2207), + [aux_sym_cmd_identifier_token40] = ACTIONS(2207), + [anon_sym_def] = ACTIONS(2207), + [anon_sym_export_DASHenv] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_module] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_error] = ACTIONS(2207), + [anon_sym_list] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_in] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_make] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_do] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_else] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_catch] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_source] = ACTIONS(2207), + [anon_sym_source_DASHenv] = ACTIONS(2207), + [anon_sym_register] = ACTIONS(2207), + [anon_sym_hide] = ACTIONS(2207), + [anon_sym_hide_DASHenv] = ACTIONS(2207), + [anon_sym_overlay] = ACTIONS(2207), + [anon_sym_new] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2207), + [aux_sym__val_number_decimal_token1] = ACTIONS(2207), + [aux_sym__val_number_decimal_token2] = ACTIONS(2207), + [aux_sym__val_number_decimal_token3] = ACTIONS(2207), + [aux_sym__val_number_decimal_token4] = ACTIONS(2207), + [aux_sym__val_number_token1] = ACTIONS(2207), + [aux_sym__val_number_token2] = ACTIONS(2207), + [aux_sym__val_number_token3] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2207), + [sym__str_single_quotes] = ACTIONS(2207), + [sym__str_back_ticks] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2207), + [sym__entry_separator] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2207), [anon_sym_POUND] = ACTIONS(3), }, [461] = { + [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [aux_sym_cmd_identifier_token1] = ACTIONS(920), - [aux_sym_cmd_identifier_token2] = ACTIONS(920), - [aux_sym_cmd_identifier_token3] = ACTIONS(920), - [aux_sym_cmd_identifier_token4] = ACTIONS(920), - [aux_sym_cmd_identifier_token5] = ACTIONS(920), - [aux_sym_cmd_identifier_token6] = ACTIONS(920), - [aux_sym_cmd_identifier_token7] = ACTIONS(920), - [aux_sym_cmd_identifier_token8] = ACTIONS(920), - [aux_sym_cmd_identifier_token9] = ACTIONS(920), - [aux_sym_cmd_identifier_token10] = ACTIONS(920), - [aux_sym_cmd_identifier_token11] = ACTIONS(920), - [aux_sym_cmd_identifier_token12] = ACTIONS(920), - [aux_sym_cmd_identifier_token13] = ACTIONS(920), - [aux_sym_cmd_identifier_token14] = ACTIONS(920), - [aux_sym_cmd_identifier_token15] = ACTIONS(920), - [aux_sym_cmd_identifier_token16] = ACTIONS(920), - [aux_sym_cmd_identifier_token17] = ACTIONS(920), - [aux_sym_cmd_identifier_token18] = ACTIONS(920), - [aux_sym_cmd_identifier_token19] = ACTIONS(920), - [aux_sym_cmd_identifier_token20] = ACTIONS(920), - [aux_sym_cmd_identifier_token21] = ACTIONS(920), - [aux_sym_cmd_identifier_token22] = ACTIONS(920), - [aux_sym_cmd_identifier_token23] = ACTIONS(920), - [aux_sym_cmd_identifier_token24] = ACTIONS(920), - [aux_sym_cmd_identifier_token25] = ACTIONS(920), - [aux_sym_cmd_identifier_token26] = ACTIONS(920), - [aux_sym_cmd_identifier_token27] = ACTIONS(920), - [aux_sym_cmd_identifier_token28] = ACTIONS(920), - [aux_sym_cmd_identifier_token29] = ACTIONS(920), - [aux_sym_cmd_identifier_token30] = ACTIONS(920), - [aux_sym_cmd_identifier_token31] = ACTIONS(920), - [aux_sym_cmd_identifier_token32] = ACTIONS(920), - [aux_sym_cmd_identifier_token33] = ACTIONS(920), - [aux_sym_cmd_identifier_token34] = ACTIONS(920), - [aux_sym_cmd_identifier_token35] = ACTIONS(920), - [aux_sym_cmd_identifier_token36] = ACTIONS(920), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [anon_sym_null] = ACTIONS(920), - [aux_sym_cmd_identifier_token38] = ACTIONS(920), - [aux_sym_cmd_identifier_token39] = ACTIONS(920), - [aux_sym_cmd_identifier_token40] = ACTIONS(920), - [anon_sym_def] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_error] = ACTIONS(920), - [anon_sym_list] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_make] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_catch] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_new] = ACTIONS(920), - [anon_sym_as] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(920), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(920), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(920), - [aux_sym__val_number_token1] = ACTIONS(920), - [aux_sym__val_number_token2] = ACTIONS(920), - [aux_sym__val_number_token3] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym__str_single_quotes] = ACTIONS(920), - [sym__str_back_ticks] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(920), - [sym__entry_separator] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2211), + [anon_sym_alias] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_let_DASHenv] = ACTIONS(2211), + [anon_sym_mut] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [aux_sym_cmd_identifier_token1] = ACTIONS(2211), + [aux_sym_cmd_identifier_token2] = ACTIONS(2211), + [aux_sym_cmd_identifier_token3] = ACTIONS(2211), + [aux_sym_cmd_identifier_token4] = ACTIONS(2211), + [aux_sym_cmd_identifier_token5] = ACTIONS(2211), + [aux_sym_cmd_identifier_token6] = ACTIONS(2211), + [aux_sym_cmd_identifier_token7] = ACTIONS(2211), + [aux_sym_cmd_identifier_token8] = ACTIONS(2211), + [aux_sym_cmd_identifier_token9] = ACTIONS(2211), + [aux_sym_cmd_identifier_token10] = ACTIONS(2211), + [aux_sym_cmd_identifier_token11] = ACTIONS(2211), + [aux_sym_cmd_identifier_token12] = ACTIONS(2211), + [aux_sym_cmd_identifier_token13] = ACTIONS(2211), + [aux_sym_cmd_identifier_token14] = ACTIONS(2211), + [aux_sym_cmd_identifier_token15] = ACTIONS(2211), + [aux_sym_cmd_identifier_token16] = ACTIONS(2211), + [aux_sym_cmd_identifier_token17] = ACTIONS(2211), + [aux_sym_cmd_identifier_token18] = ACTIONS(2211), + [aux_sym_cmd_identifier_token19] = ACTIONS(2211), + [aux_sym_cmd_identifier_token20] = ACTIONS(2211), + [aux_sym_cmd_identifier_token21] = ACTIONS(2211), + [aux_sym_cmd_identifier_token22] = ACTIONS(2211), + [aux_sym_cmd_identifier_token23] = ACTIONS(2211), + [aux_sym_cmd_identifier_token24] = ACTIONS(2211), + [aux_sym_cmd_identifier_token25] = ACTIONS(2211), + [aux_sym_cmd_identifier_token26] = ACTIONS(2211), + [aux_sym_cmd_identifier_token27] = ACTIONS(2211), + [aux_sym_cmd_identifier_token28] = ACTIONS(2211), + [aux_sym_cmd_identifier_token29] = ACTIONS(2211), + [aux_sym_cmd_identifier_token30] = ACTIONS(2211), + [aux_sym_cmd_identifier_token31] = ACTIONS(2211), + [aux_sym_cmd_identifier_token32] = ACTIONS(2211), + [aux_sym_cmd_identifier_token33] = ACTIONS(2211), + [aux_sym_cmd_identifier_token34] = ACTIONS(2211), + [aux_sym_cmd_identifier_token35] = ACTIONS(2211), + [aux_sym_cmd_identifier_token36] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2211), + [aux_sym_cmd_identifier_token38] = ACTIONS(2211), + [aux_sym_cmd_identifier_token39] = ACTIONS(2211), + [aux_sym_cmd_identifier_token40] = ACTIONS(2211), + [anon_sym_def] = ACTIONS(2211), + [anon_sym_export_DASHenv] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(2211), + [anon_sym_module] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_error] = ACTIONS(2211), + [anon_sym_list] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_make] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_else] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_try] = ACTIONS(2211), + [anon_sym_catch] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_source] = ACTIONS(2211), + [anon_sym_source_DASHenv] = ACTIONS(2211), + [anon_sym_register] = ACTIONS(2211), + [anon_sym_hide] = ACTIONS(2211), + [anon_sym_hide_DASHenv] = ACTIONS(2211), + [anon_sym_overlay] = ACTIONS(2211), + [anon_sym_new] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2211), + [aux_sym__val_number_decimal_token1] = ACTIONS(2211), + [aux_sym__val_number_decimal_token2] = ACTIONS(2211), + [aux_sym__val_number_decimal_token3] = ACTIONS(2211), + [aux_sym__val_number_decimal_token4] = ACTIONS(2211), + [aux_sym__val_number_token1] = ACTIONS(2211), + [aux_sym__val_number_token2] = ACTIONS(2211), + [aux_sym__val_number_token3] = ACTIONS(2211), + [anon_sym_DQUOTE] = ACTIONS(2211), + [sym__str_single_quotes] = ACTIONS(2211), + [sym__str_back_ticks] = ACTIONS(2211), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2211), + [sym__entry_separator] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(3), }, [462] = { + [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1350), - [aux_sym_cmd_identifier_token2] = ACTIONS(1350), - [aux_sym_cmd_identifier_token3] = ACTIONS(1350), - [aux_sym_cmd_identifier_token4] = ACTIONS(1350), - [aux_sym_cmd_identifier_token5] = ACTIONS(1350), - [aux_sym_cmd_identifier_token6] = ACTIONS(1350), - [aux_sym_cmd_identifier_token7] = ACTIONS(1350), - [aux_sym_cmd_identifier_token8] = ACTIONS(1350), - [aux_sym_cmd_identifier_token9] = ACTIONS(1350), - [aux_sym_cmd_identifier_token10] = ACTIONS(1350), - [aux_sym_cmd_identifier_token11] = ACTIONS(1350), - [aux_sym_cmd_identifier_token12] = ACTIONS(1350), - [aux_sym_cmd_identifier_token13] = ACTIONS(1350), - [aux_sym_cmd_identifier_token14] = ACTIONS(1350), - [aux_sym_cmd_identifier_token15] = ACTIONS(1350), - [aux_sym_cmd_identifier_token16] = ACTIONS(1350), - [aux_sym_cmd_identifier_token17] = ACTIONS(1350), - [aux_sym_cmd_identifier_token18] = ACTIONS(1350), - [aux_sym_cmd_identifier_token19] = ACTIONS(1350), - [aux_sym_cmd_identifier_token20] = ACTIONS(1350), - [aux_sym_cmd_identifier_token21] = ACTIONS(1350), - [aux_sym_cmd_identifier_token22] = ACTIONS(1350), - [aux_sym_cmd_identifier_token23] = ACTIONS(1350), - [aux_sym_cmd_identifier_token24] = ACTIONS(1350), - [aux_sym_cmd_identifier_token25] = ACTIONS(1350), - [aux_sym_cmd_identifier_token26] = ACTIONS(1350), - [aux_sym_cmd_identifier_token27] = ACTIONS(1350), - [aux_sym_cmd_identifier_token28] = ACTIONS(1350), - [aux_sym_cmd_identifier_token29] = ACTIONS(1350), - [aux_sym_cmd_identifier_token30] = ACTIONS(1350), - [aux_sym_cmd_identifier_token31] = ACTIONS(1350), - [aux_sym_cmd_identifier_token32] = ACTIONS(1350), - [aux_sym_cmd_identifier_token33] = ACTIONS(1350), - [aux_sym_cmd_identifier_token34] = ACTIONS(1350), - [aux_sym_cmd_identifier_token35] = ACTIONS(1350), - [aux_sym_cmd_identifier_token36] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [aux_sym_cmd_identifier_token38] = ACTIONS(1350), - [aux_sym_cmd_identifier_token39] = ACTIONS(1362), - [aux_sym_cmd_identifier_token40] = ACTIONS(1362), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1362), - [aux_sym__immediate_decimal_token1] = ACTIONS(2170), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1362), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_alias] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_let_DASHenv] = ACTIONS(2215), + [anon_sym_mut] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [aux_sym_cmd_identifier_token1] = ACTIONS(2215), + [aux_sym_cmd_identifier_token2] = ACTIONS(2215), + [aux_sym_cmd_identifier_token3] = ACTIONS(2215), + [aux_sym_cmd_identifier_token4] = ACTIONS(2215), + [aux_sym_cmd_identifier_token5] = ACTIONS(2215), + [aux_sym_cmd_identifier_token6] = ACTIONS(2215), + [aux_sym_cmd_identifier_token7] = ACTIONS(2215), + [aux_sym_cmd_identifier_token8] = ACTIONS(2215), + [aux_sym_cmd_identifier_token9] = ACTIONS(2215), + [aux_sym_cmd_identifier_token10] = ACTIONS(2215), + [aux_sym_cmd_identifier_token11] = ACTIONS(2215), + [aux_sym_cmd_identifier_token12] = ACTIONS(2215), + [aux_sym_cmd_identifier_token13] = ACTIONS(2215), + [aux_sym_cmd_identifier_token14] = ACTIONS(2215), + [aux_sym_cmd_identifier_token15] = ACTIONS(2215), + [aux_sym_cmd_identifier_token16] = ACTIONS(2215), + [aux_sym_cmd_identifier_token17] = ACTIONS(2215), + [aux_sym_cmd_identifier_token18] = ACTIONS(2215), + [aux_sym_cmd_identifier_token19] = ACTIONS(2215), + [aux_sym_cmd_identifier_token20] = ACTIONS(2215), + [aux_sym_cmd_identifier_token21] = ACTIONS(2215), + [aux_sym_cmd_identifier_token22] = ACTIONS(2215), + [aux_sym_cmd_identifier_token23] = ACTIONS(2215), + [aux_sym_cmd_identifier_token24] = ACTIONS(2215), + [aux_sym_cmd_identifier_token25] = ACTIONS(2215), + [aux_sym_cmd_identifier_token26] = ACTIONS(2215), + [aux_sym_cmd_identifier_token27] = ACTIONS(2215), + [aux_sym_cmd_identifier_token28] = ACTIONS(2215), + [aux_sym_cmd_identifier_token29] = ACTIONS(2215), + [aux_sym_cmd_identifier_token30] = ACTIONS(2215), + [aux_sym_cmd_identifier_token31] = ACTIONS(2215), + [aux_sym_cmd_identifier_token32] = ACTIONS(2215), + [aux_sym_cmd_identifier_token33] = ACTIONS(2215), + [aux_sym_cmd_identifier_token34] = ACTIONS(2215), + [aux_sym_cmd_identifier_token35] = ACTIONS(2215), + [aux_sym_cmd_identifier_token36] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [anon_sym_null] = ACTIONS(2215), + [aux_sym_cmd_identifier_token38] = ACTIONS(2215), + [aux_sym_cmd_identifier_token39] = ACTIONS(2215), + [aux_sym_cmd_identifier_token40] = ACTIONS(2215), + [anon_sym_def] = ACTIONS(2215), + [anon_sym_export_DASHenv] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2215), + [anon_sym_error] = ACTIONS(2215), + [anon_sym_list] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_make] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_source] = ACTIONS(2215), + [anon_sym_source_DASHenv] = ACTIONS(2215), + [anon_sym_register] = ACTIONS(2215), + [anon_sym_hide] = ACTIONS(2215), + [anon_sym_hide_DASHenv] = ACTIONS(2215), + [anon_sym_overlay] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2215), + [aux_sym__val_number_decimal_token2] = ACTIONS(2215), + [aux_sym__val_number_decimal_token3] = ACTIONS(2215), + [aux_sym__val_number_decimal_token4] = ACTIONS(2215), + [aux_sym__val_number_token1] = ACTIONS(2215), + [aux_sym__val_number_token2] = ACTIONS(2215), + [aux_sym__val_number_token3] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [sym__str_single_quotes] = ACTIONS(2215), + [sym__str_back_ticks] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2215), + [sym__entry_separator] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2215), [anon_sym_POUND] = ACTIONS(3), }, [463] = { [sym_comment] = STATE(463), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_list] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT_DOT2] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2053), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [anon_sym_DOT2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [aux_sym_cmd_identifier_token1] = ACTIONS(2066), + [aux_sym_cmd_identifier_token2] = ACTIONS(2066), + [aux_sym_cmd_identifier_token3] = ACTIONS(2066), + [aux_sym_cmd_identifier_token4] = ACTIONS(2066), + [aux_sym_cmd_identifier_token5] = ACTIONS(2066), + [aux_sym_cmd_identifier_token6] = ACTIONS(2066), + [aux_sym_cmd_identifier_token7] = ACTIONS(2066), + [aux_sym_cmd_identifier_token8] = ACTIONS(2066), + [aux_sym_cmd_identifier_token9] = ACTIONS(2066), + [aux_sym_cmd_identifier_token10] = ACTIONS(2066), + [aux_sym_cmd_identifier_token11] = ACTIONS(2066), + [aux_sym_cmd_identifier_token12] = ACTIONS(2066), + [aux_sym_cmd_identifier_token13] = ACTIONS(2066), + [aux_sym_cmd_identifier_token14] = ACTIONS(2066), + [aux_sym_cmd_identifier_token15] = ACTIONS(2066), + [aux_sym_cmd_identifier_token16] = ACTIONS(2066), + [aux_sym_cmd_identifier_token17] = ACTIONS(2066), + [aux_sym_cmd_identifier_token18] = ACTIONS(2066), + [aux_sym_cmd_identifier_token19] = ACTIONS(2066), + [aux_sym_cmd_identifier_token20] = ACTIONS(2066), + [aux_sym_cmd_identifier_token21] = ACTIONS(2066), + [aux_sym_cmd_identifier_token22] = ACTIONS(2066), + [aux_sym_cmd_identifier_token23] = ACTIONS(2066), + [aux_sym_cmd_identifier_token24] = ACTIONS(2066), + [aux_sym_cmd_identifier_token25] = ACTIONS(2066), + [aux_sym_cmd_identifier_token26] = ACTIONS(2066), + [aux_sym_cmd_identifier_token27] = ACTIONS(2066), + [aux_sym_cmd_identifier_token28] = ACTIONS(2066), + [aux_sym_cmd_identifier_token29] = ACTIONS(2066), + [aux_sym_cmd_identifier_token30] = ACTIONS(2066), + [aux_sym_cmd_identifier_token31] = ACTIONS(2066), + [aux_sym_cmd_identifier_token32] = ACTIONS(2066), + [aux_sym_cmd_identifier_token33] = ACTIONS(2066), + [aux_sym_cmd_identifier_token34] = ACTIONS(2066), + [aux_sym_cmd_identifier_token35] = ACTIONS(2066), + [aux_sym_cmd_identifier_token36] = ACTIONS(2066), + [anon_sym_true] = ACTIONS(2072), + [anon_sym_false] = ACTIONS(2072), + [anon_sym_null] = ACTIONS(2072), + [aux_sym_cmd_identifier_token38] = ACTIONS(2066), + [aux_sym_cmd_identifier_token39] = ACTIONS(2072), + [aux_sym_cmd_identifier_token40] = ACTIONS(2072), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_list] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_in] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_make] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_new] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), + [anon_sym_DOT_DOT2] = ACTIONS(2219), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2221), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(247), }, [464] = { [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_alias] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_let_DASHenv] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [aux_sym_cmd_identifier_token1] = ACTIONS(1913), - [aux_sym_cmd_identifier_token2] = ACTIONS(1913), - [aux_sym_cmd_identifier_token3] = ACTIONS(1913), - [aux_sym_cmd_identifier_token4] = ACTIONS(1913), - [aux_sym_cmd_identifier_token5] = ACTIONS(1913), - [aux_sym_cmd_identifier_token6] = ACTIONS(1913), - [aux_sym_cmd_identifier_token7] = ACTIONS(1913), - [aux_sym_cmd_identifier_token8] = ACTIONS(1913), - [aux_sym_cmd_identifier_token9] = ACTIONS(1913), - [aux_sym_cmd_identifier_token10] = ACTIONS(1913), - [aux_sym_cmd_identifier_token11] = ACTIONS(1913), - [aux_sym_cmd_identifier_token12] = ACTIONS(1913), - [aux_sym_cmd_identifier_token13] = ACTIONS(1913), - [aux_sym_cmd_identifier_token14] = ACTIONS(1913), - [aux_sym_cmd_identifier_token15] = ACTIONS(1913), - [aux_sym_cmd_identifier_token16] = ACTIONS(1913), - [aux_sym_cmd_identifier_token17] = ACTIONS(1913), - [aux_sym_cmd_identifier_token18] = ACTIONS(1913), - [aux_sym_cmd_identifier_token19] = ACTIONS(1913), - [aux_sym_cmd_identifier_token20] = ACTIONS(1913), - [aux_sym_cmd_identifier_token21] = ACTIONS(1913), - [aux_sym_cmd_identifier_token22] = ACTIONS(1913), - [aux_sym_cmd_identifier_token23] = ACTIONS(1913), - [aux_sym_cmd_identifier_token24] = ACTIONS(1913), - [aux_sym_cmd_identifier_token25] = ACTIONS(1913), - [aux_sym_cmd_identifier_token26] = ACTIONS(1913), - [aux_sym_cmd_identifier_token27] = ACTIONS(1913), - [aux_sym_cmd_identifier_token28] = ACTIONS(1913), - [aux_sym_cmd_identifier_token29] = ACTIONS(1913), - [aux_sym_cmd_identifier_token30] = ACTIONS(1913), - [aux_sym_cmd_identifier_token31] = ACTIONS(1913), - [aux_sym_cmd_identifier_token32] = ACTIONS(1913), - [aux_sym_cmd_identifier_token33] = ACTIONS(1913), - [aux_sym_cmd_identifier_token34] = ACTIONS(1913), - [aux_sym_cmd_identifier_token35] = ACTIONS(1913), - [aux_sym_cmd_identifier_token36] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [aux_sym_cmd_identifier_token38] = ACTIONS(1913), - [aux_sym_cmd_identifier_token39] = ACTIONS(1915), - [aux_sym_cmd_identifier_token40] = ACTIONS(1915), - [anon_sym_def] = ACTIONS(1913), - [anon_sym_export_DASHenv] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_list] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_make] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_catch] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_source] = ACTIONS(1913), - [anon_sym_source_DASHenv] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_hide] = ACTIONS(1913), - [anon_sym_hide_DASHenv] = ACTIONS(1913), - [anon_sym_overlay] = ACTIONS(1913), - [anon_sym_new] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), - [anon_sym_DOT_DOT2] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [anon_sym_DOT2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1972), + [anon_sym_alias] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_let_DASHenv] = ACTIONS(1972), + [anon_sym_mut] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [aux_sym_cmd_identifier_token1] = ACTIONS(1972), + [aux_sym_cmd_identifier_token2] = ACTIONS(1972), + [aux_sym_cmd_identifier_token3] = ACTIONS(1972), + [aux_sym_cmd_identifier_token4] = ACTIONS(1972), + [aux_sym_cmd_identifier_token5] = ACTIONS(1972), + [aux_sym_cmd_identifier_token6] = ACTIONS(1972), + [aux_sym_cmd_identifier_token7] = ACTIONS(1972), + [aux_sym_cmd_identifier_token8] = ACTIONS(1972), + [aux_sym_cmd_identifier_token9] = ACTIONS(1972), + [aux_sym_cmd_identifier_token10] = ACTIONS(1972), + [aux_sym_cmd_identifier_token11] = ACTIONS(1972), + [aux_sym_cmd_identifier_token12] = ACTIONS(1972), + [aux_sym_cmd_identifier_token13] = ACTIONS(1972), + [aux_sym_cmd_identifier_token14] = ACTIONS(1972), + [aux_sym_cmd_identifier_token15] = ACTIONS(1972), + [aux_sym_cmd_identifier_token16] = ACTIONS(1972), + [aux_sym_cmd_identifier_token17] = ACTIONS(1972), + [aux_sym_cmd_identifier_token18] = ACTIONS(1972), + [aux_sym_cmd_identifier_token19] = ACTIONS(1972), + [aux_sym_cmd_identifier_token20] = ACTIONS(1972), + [aux_sym_cmd_identifier_token21] = ACTIONS(1972), + [aux_sym_cmd_identifier_token22] = ACTIONS(1972), + [aux_sym_cmd_identifier_token23] = ACTIONS(1972), + [aux_sym_cmd_identifier_token24] = ACTIONS(1972), + [aux_sym_cmd_identifier_token25] = ACTIONS(1972), + [aux_sym_cmd_identifier_token26] = ACTIONS(1972), + [aux_sym_cmd_identifier_token27] = ACTIONS(1972), + [aux_sym_cmd_identifier_token28] = ACTIONS(1972), + [aux_sym_cmd_identifier_token29] = ACTIONS(1972), + [aux_sym_cmd_identifier_token30] = ACTIONS(1972), + [aux_sym_cmd_identifier_token31] = ACTIONS(1972), + [aux_sym_cmd_identifier_token32] = ACTIONS(1972), + [aux_sym_cmd_identifier_token33] = ACTIONS(1972), + [aux_sym_cmd_identifier_token34] = ACTIONS(1972), + [aux_sym_cmd_identifier_token35] = ACTIONS(1972), + [aux_sym_cmd_identifier_token36] = ACTIONS(1972), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [anon_sym_null] = ACTIONS(1978), + [aux_sym_cmd_identifier_token38] = ACTIONS(1972), + [aux_sym_cmd_identifier_token39] = ACTIONS(1978), + [aux_sym_cmd_identifier_token40] = ACTIONS(1978), + [anon_sym_def] = ACTIONS(1972), + [anon_sym_export_DASHenv] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_error] = ACTIONS(1972), + [anon_sym_list] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_make] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_source] = ACTIONS(1972), + [anon_sym_source_DASHenv] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_hide] = ACTIONS(1972), + [anon_sym_hide_DASHenv] = ACTIONS(1972), + [anon_sym_overlay] = ACTIONS(1972), + [anon_sym_new] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1978), + [anon_sym_DOT_DOT2] = ACTIONS(2223), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2225), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2225), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1978), + [aux_sym__val_number_decimal_token4] = ACTIONS(1978), + [aux_sym__val_number_token1] = ACTIONS(1978), + [aux_sym__val_number_token2] = ACTIONS(1978), + [aux_sym__val_number_token3] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym__str_single_quotes] = ACTIONS(1978), + [sym__str_back_ticks] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(247), }, [465] = { [sym_comment] = STATE(465), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(2174), - [aux_sym__immediate_decimal_token2] = ACTIONS(2176), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1960), + [anon_sym_alias] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_let_DASHenv] = ACTIONS(1960), + [anon_sym_mut] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [aux_sym_cmd_identifier_token1] = ACTIONS(1960), + [aux_sym_cmd_identifier_token2] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1960), + [aux_sym_cmd_identifier_token4] = ACTIONS(1960), + [aux_sym_cmd_identifier_token5] = ACTIONS(1960), + [aux_sym_cmd_identifier_token6] = ACTIONS(1960), + [aux_sym_cmd_identifier_token7] = ACTIONS(1960), + [aux_sym_cmd_identifier_token8] = ACTIONS(1960), + [aux_sym_cmd_identifier_token9] = ACTIONS(1960), + [aux_sym_cmd_identifier_token10] = ACTIONS(1960), + [aux_sym_cmd_identifier_token11] = ACTIONS(1960), + [aux_sym_cmd_identifier_token12] = ACTIONS(1960), + [aux_sym_cmd_identifier_token13] = ACTIONS(1960), + [aux_sym_cmd_identifier_token14] = ACTIONS(1960), + [aux_sym_cmd_identifier_token15] = ACTIONS(1960), + [aux_sym_cmd_identifier_token16] = ACTIONS(1960), + [aux_sym_cmd_identifier_token17] = ACTIONS(1960), + [aux_sym_cmd_identifier_token18] = ACTIONS(1960), + [aux_sym_cmd_identifier_token19] = ACTIONS(1960), + [aux_sym_cmd_identifier_token20] = ACTIONS(1960), + [aux_sym_cmd_identifier_token21] = ACTIONS(1960), + [aux_sym_cmd_identifier_token22] = ACTIONS(1960), + [aux_sym_cmd_identifier_token23] = ACTIONS(1960), + [aux_sym_cmd_identifier_token24] = ACTIONS(1960), + [aux_sym_cmd_identifier_token25] = ACTIONS(1960), + [aux_sym_cmd_identifier_token26] = ACTIONS(1960), + [aux_sym_cmd_identifier_token27] = ACTIONS(1960), + [aux_sym_cmd_identifier_token28] = ACTIONS(1960), + [aux_sym_cmd_identifier_token29] = ACTIONS(1960), + [aux_sym_cmd_identifier_token30] = ACTIONS(1960), + [aux_sym_cmd_identifier_token31] = ACTIONS(1960), + [aux_sym_cmd_identifier_token32] = ACTIONS(1960), + [aux_sym_cmd_identifier_token33] = ACTIONS(1960), + [aux_sym_cmd_identifier_token34] = ACTIONS(1960), + [aux_sym_cmd_identifier_token35] = ACTIONS(1960), + [aux_sym_cmd_identifier_token36] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1966), + [aux_sym_cmd_identifier_token38] = ACTIONS(1960), + [aux_sym_cmd_identifier_token39] = ACTIONS(1966), + [aux_sym_cmd_identifier_token40] = ACTIONS(1966), + [anon_sym_def] = ACTIONS(1960), + [anon_sym_export_DASHenv] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_module] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1966), + [anon_sym_error] = ACTIONS(1960), + [anon_sym_list] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_in] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_make] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_else] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1960), + [anon_sym_catch] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_source] = ACTIONS(1960), + [anon_sym_source_DASHenv] = ACTIONS(1960), + [anon_sym_register] = ACTIONS(1960), + [anon_sym_hide] = ACTIONS(1960), + [anon_sym_hide_DASHenv] = ACTIONS(1960), + [anon_sym_overlay] = ACTIONS(1960), + [anon_sym_new] = ACTIONS(1960), + [anon_sym_as] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1966), + [anon_sym_DOT_DOT2] = ACTIONS(2227), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2229), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2229), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1966), + [aux_sym__val_number_decimal_token3] = ACTIONS(1966), + [aux_sym__val_number_decimal_token4] = ACTIONS(1966), + [aux_sym__val_number_token1] = ACTIONS(1966), + [aux_sym__val_number_token2] = ACTIONS(1966), + [aux_sym__val_number_token3] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [sym__str_single_quotes] = ACTIONS(1966), + [sym__str_back_ticks] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(247), }, [466] = { [sym_comment] = STATE(466), - [anon_sym_export] = ACTIONS(1955), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_let_DASHenv] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1955), - [aux_sym_cmd_identifier_token2] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [aux_sym_cmd_identifier_token6] = ACTIONS(1955), - [aux_sym_cmd_identifier_token7] = ACTIONS(1955), - [aux_sym_cmd_identifier_token8] = ACTIONS(1955), - [aux_sym_cmd_identifier_token9] = ACTIONS(1955), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [aux_sym_cmd_identifier_token12] = ACTIONS(1955), - [aux_sym_cmd_identifier_token13] = ACTIONS(1955), - [aux_sym_cmd_identifier_token14] = ACTIONS(1955), - [aux_sym_cmd_identifier_token15] = ACTIONS(1955), - [aux_sym_cmd_identifier_token16] = ACTIONS(1955), - [aux_sym_cmd_identifier_token17] = ACTIONS(1955), - [aux_sym_cmd_identifier_token18] = ACTIONS(1955), - [aux_sym_cmd_identifier_token19] = ACTIONS(1955), - [aux_sym_cmd_identifier_token20] = ACTIONS(1955), - [aux_sym_cmd_identifier_token21] = ACTIONS(1955), - [aux_sym_cmd_identifier_token22] = ACTIONS(1955), - [aux_sym_cmd_identifier_token23] = ACTIONS(1955), - [aux_sym_cmd_identifier_token24] = ACTIONS(1955), - [aux_sym_cmd_identifier_token25] = ACTIONS(1955), - [aux_sym_cmd_identifier_token26] = ACTIONS(1955), - [aux_sym_cmd_identifier_token27] = ACTIONS(1955), - [aux_sym_cmd_identifier_token28] = ACTIONS(1955), - [aux_sym_cmd_identifier_token29] = ACTIONS(1955), - [aux_sym_cmd_identifier_token30] = ACTIONS(1955), - [aux_sym_cmd_identifier_token31] = ACTIONS(1955), - [aux_sym_cmd_identifier_token32] = ACTIONS(1955), - [aux_sym_cmd_identifier_token33] = ACTIONS(1955), - [aux_sym_cmd_identifier_token34] = ACTIONS(1955), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_null] = ACTIONS(1957), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1957), - [aux_sym_cmd_identifier_token40] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_list] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_make] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(1955), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT2] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2053), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [anon_sym_DOT2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1957), - [aux_sym__val_number_token1] = ACTIONS(1957), - [aux_sym__val_number_token2] = ACTIONS(1957), - [aux_sym__val_number_token3] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1953), + [anon_sym_alias] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_let_DASHenv] = ACTIONS(1953), + [anon_sym_mut] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [aux_sym_cmd_identifier_token1] = ACTIONS(1953), + [aux_sym_cmd_identifier_token2] = ACTIONS(1953), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [aux_sym_cmd_identifier_token6] = ACTIONS(1953), + [aux_sym_cmd_identifier_token7] = ACTIONS(1953), + [aux_sym_cmd_identifier_token8] = ACTIONS(1953), + [aux_sym_cmd_identifier_token9] = ACTIONS(1953), + [aux_sym_cmd_identifier_token10] = ACTIONS(1953), + [aux_sym_cmd_identifier_token11] = ACTIONS(1953), + [aux_sym_cmd_identifier_token12] = ACTIONS(1953), + [aux_sym_cmd_identifier_token13] = ACTIONS(1953), + [aux_sym_cmd_identifier_token14] = ACTIONS(1953), + [aux_sym_cmd_identifier_token15] = ACTIONS(1953), + [aux_sym_cmd_identifier_token16] = ACTIONS(1953), + [aux_sym_cmd_identifier_token17] = ACTIONS(1953), + [aux_sym_cmd_identifier_token18] = ACTIONS(1953), + [aux_sym_cmd_identifier_token19] = ACTIONS(1953), + [aux_sym_cmd_identifier_token20] = ACTIONS(1953), + [aux_sym_cmd_identifier_token21] = ACTIONS(1953), + [aux_sym_cmd_identifier_token22] = ACTIONS(1953), + [aux_sym_cmd_identifier_token23] = ACTIONS(1953), + [aux_sym_cmd_identifier_token24] = ACTIONS(1953), + [aux_sym_cmd_identifier_token25] = ACTIONS(1953), + [aux_sym_cmd_identifier_token26] = ACTIONS(1953), + [aux_sym_cmd_identifier_token27] = ACTIONS(1953), + [aux_sym_cmd_identifier_token28] = ACTIONS(1953), + [aux_sym_cmd_identifier_token29] = ACTIONS(1953), + [aux_sym_cmd_identifier_token30] = ACTIONS(1953), + [aux_sym_cmd_identifier_token31] = ACTIONS(1953), + [aux_sym_cmd_identifier_token32] = ACTIONS(1953), + [aux_sym_cmd_identifier_token33] = ACTIONS(1953), + [aux_sym_cmd_identifier_token34] = ACTIONS(1953), + [aux_sym_cmd_identifier_token35] = ACTIONS(1953), + [aux_sym_cmd_identifier_token36] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token38] = ACTIONS(1953), + [aux_sym_cmd_identifier_token39] = ACTIONS(1955), + [aux_sym_cmd_identifier_token40] = ACTIONS(1955), + [anon_sym_def] = ACTIONS(1953), + [anon_sym_export_DASHenv] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_module] = ACTIONS(1953), + [anon_sym_use] = ACTIONS(1953), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1955), + [anon_sym_error] = ACTIONS(1953), + [anon_sym_list] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_in] = ACTIONS(1953), + [anon_sym_loop] = ACTIONS(1953), + [anon_sym_make] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_try] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_source] = ACTIONS(1953), + [anon_sym_source_DASHenv] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_hide] = ACTIONS(1953), + [anon_sym_hide_DASHenv] = ACTIONS(1953), + [anon_sym_overlay] = ACTIONS(1953), + [anon_sym_new] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), + [anon_sym_DOT_DOT2] = ACTIONS(1953), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1955), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), + [aux_sym__val_number_decimal_token1] = ACTIONS(1953), + [aux_sym__val_number_decimal_token2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token3] = ACTIONS(1955), + [aux_sym__val_number_decimal_token4] = ACTIONS(1955), + [aux_sym__val_number_token1] = ACTIONS(1955), + [aux_sym__val_number_token2] = ACTIONS(1955), + [aux_sym__val_number_token3] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym__str_single_quotes] = ACTIONS(1955), + [sym__str_back_ticks] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(247), }, [467] = { - [sym__expr_parenthesized_immediate] = STATE(7543), [sym_comment] = STATE(467), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1931), - [aux_sym_cmd_identifier_token40] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_list] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [anon_sym_DOT2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), - [sym__entry_separator] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1943), + [anon_sym_alias] = ACTIONS(1943), + [anon_sym_let] = ACTIONS(1943), + [anon_sym_let_DASHenv] = ACTIONS(1943), + [anon_sym_mut] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [aux_sym_cmd_identifier_token1] = ACTIONS(1943), + [aux_sym_cmd_identifier_token2] = ACTIONS(1943), + [aux_sym_cmd_identifier_token3] = ACTIONS(1943), + [aux_sym_cmd_identifier_token4] = ACTIONS(1943), + [aux_sym_cmd_identifier_token5] = ACTIONS(1943), + [aux_sym_cmd_identifier_token6] = ACTIONS(1943), + [aux_sym_cmd_identifier_token7] = ACTIONS(1943), + [aux_sym_cmd_identifier_token8] = ACTIONS(1943), + [aux_sym_cmd_identifier_token9] = ACTIONS(1943), + [aux_sym_cmd_identifier_token10] = ACTIONS(1943), + [aux_sym_cmd_identifier_token11] = ACTIONS(1943), + [aux_sym_cmd_identifier_token12] = ACTIONS(1943), + [aux_sym_cmd_identifier_token13] = ACTIONS(1943), + [aux_sym_cmd_identifier_token14] = ACTIONS(1943), + [aux_sym_cmd_identifier_token15] = ACTIONS(1943), + [aux_sym_cmd_identifier_token16] = ACTIONS(1943), + [aux_sym_cmd_identifier_token17] = ACTIONS(1943), + [aux_sym_cmd_identifier_token18] = ACTIONS(1943), + [aux_sym_cmd_identifier_token19] = ACTIONS(1943), + [aux_sym_cmd_identifier_token20] = ACTIONS(1943), + [aux_sym_cmd_identifier_token21] = ACTIONS(1943), + [aux_sym_cmd_identifier_token22] = ACTIONS(1943), + [aux_sym_cmd_identifier_token23] = ACTIONS(1943), + [aux_sym_cmd_identifier_token24] = ACTIONS(1943), + [aux_sym_cmd_identifier_token25] = ACTIONS(1943), + [aux_sym_cmd_identifier_token26] = ACTIONS(1943), + [aux_sym_cmd_identifier_token27] = ACTIONS(1943), + [aux_sym_cmd_identifier_token28] = ACTIONS(1943), + [aux_sym_cmd_identifier_token29] = ACTIONS(1943), + [aux_sym_cmd_identifier_token30] = ACTIONS(1943), + [aux_sym_cmd_identifier_token31] = ACTIONS(1943), + [aux_sym_cmd_identifier_token32] = ACTIONS(1943), + [aux_sym_cmd_identifier_token33] = ACTIONS(1943), + [aux_sym_cmd_identifier_token34] = ACTIONS(1943), + [aux_sym_cmd_identifier_token35] = ACTIONS(1943), + [aux_sym_cmd_identifier_token36] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1945), + [aux_sym_cmd_identifier_token38] = ACTIONS(1943), + [aux_sym_cmd_identifier_token39] = ACTIONS(1945), + [aux_sym_cmd_identifier_token40] = ACTIONS(1945), + [anon_sym_def] = ACTIONS(1943), + [anon_sym_export_DASHenv] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym_module] = ACTIONS(1943), + [anon_sym_use] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_error] = ACTIONS(1943), + [anon_sym_list] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(1943), + [anon_sym_loop] = ACTIONS(1943), + [anon_sym_make] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_else] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_source] = ACTIONS(1943), + [anon_sym_source_DASHenv] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_hide] = ACTIONS(1943), + [anon_sym_hide_DASHenv] = ACTIONS(1943), + [anon_sym_overlay] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_as] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), + [anon_sym_DOT_DOT2] = ACTIONS(1943), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1945), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1945), + [aux_sym__val_number_decimal_token4] = ACTIONS(1945), + [aux_sym__val_number_token1] = ACTIONS(1945), + [aux_sym__val_number_token2] = ACTIONS(1945), + [aux_sym__val_number_token3] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym__str_single_quotes] = ACTIONS(1945), + [sym__str_back_ticks] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(247), }, [468] = { [sym_comment] = STATE(468), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [aux_sym_cmd_identifier_token1] = ACTIONS(936), - [aux_sym_cmd_identifier_token2] = ACTIONS(936), - [aux_sym_cmd_identifier_token3] = ACTIONS(936), - [aux_sym_cmd_identifier_token4] = ACTIONS(936), - [aux_sym_cmd_identifier_token5] = ACTIONS(936), - [aux_sym_cmd_identifier_token6] = ACTIONS(936), - [aux_sym_cmd_identifier_token7] = ACTIONS(936), - [aux_sym_cmd_identifier_token8] = ACTIONS(936), - [aux_sym_cmd_identifier_token9] = ACTIONS(936), - [aux_sym_cmd_identifier_token10] = ACTIONS(936), - [aux_sym_cmd_identifier_token11] = ACTIONS(936), - [aux_sym_cmd_identifier_token12] = ACTIONS(936), - [aux_sym_cmd_identifier_token13] = ACTIONS(936), - [aux_sym_cmd_identifier_token14] = ACTIONS(936), - [aux_sym_cmd_identifier_token15] = ACTIONS(936), - [aux_sym_cmd_identifier_token16] = ACTIONS(936), - [aux_sym_cmd_identifier_token17] = ACTIONS(936), - [aux_sym_cmd_identifier_token18] = ACTIONS(936), - [aux_sym_cmd_identifier_token19] = ACTIONS(936), - [aux_sym_cmd_identifier_token20] = ACTIONS(936), - [aux_sym_cmd_identifier_token21] = ACTIONS(936), - [aux_sym_cmd_identifier_token22] = ACTIONS(936), - [aux_sym_cmd_identifier_token23] = ACTIONS(936), - [aux_sym_cmd_identifier_token24] = ACTIONS(936), - [aux_sym_cmd_identifier_token25] = ACTIONS(936), - [aux_sym_cmd_identifier_token26] = ACTIONS(936), - [aux_sym_cmd_identifier_token27] = ACTIONS(936), - [aux_sym_cmd_identifier_token28] = ACTIONS(936), - [aux_sym_cmd_identifier_token29] = ACTIONS(936), - [aux_sym_cmd_identifier_token30] = ACTIONS(936), - [aux_sym_cmd_identifier_token31] = ACTIONS(936), - [aux_sym_cmd_identifier_token32] = ACTIONS(936), - [aux_sym_cmd_identifier_token33] = ACTIONS(936), - [aux_sym_cmd_identifier_token34] = ACTIONS(936), - [aux_sym_cmd_identifier_token35] = ACTIONS(936), - [aux_sym_cmd_identifier_token36] = ACTIONS(936), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [anon_sym_null] = ACTIONS(938), - [aux_sym_cmd_identifier_token38] = ACTIONS(936), - [aux_sym_cmd_identifier_token39] = ACTIONS(938), - [aux_sym_cmd_identifier_token40] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(938), - [aux_sym_record_entry_token1] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [469] = { [sym_comment] = STATE(469), - [anon_sym_export] = ACTIONS(1744), - [anon_sym_alias] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(1744), - [anon_sym_let_DASHenv] = ACTIONS(1744), - [anon_sym_mut] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [aux_sym_cmd_identifier_token1] = ACTIONS(1744), - [aux_sym_cmd_identifier_token2] = ACTIONS(1744), - [aux_sym_cmd_identifier_token3] = ACTIONS(1744), - [aux_sym_cmd_identifier_token4] = ACTIONS(1744), - [aux_sym_cmd_identifier_token5] = ACTIONS(1744), - [aux_sym_cmd_identifier_token6] = ACTIONS(1744), - [aux_sym_cmd_identifier_token7] = ACTIONS(1744), - [aux_sym_cmd_identifier_token8] = ACTIONS(1744), - [aux_sym_cmd_identifier_token9] = ACTIONS(1744), - [aux_sym_cmd_identifier_token10] = ACTIONS(1744), - [aux_sym_cmd_identifier_token11] = ACTIONS(1744), - [aux_sym_cmd_identifier_token12] = ACTIONS(1744), - [aux_sym_cmd_identifier_token13] = ACTIONS(1744), - [aux_sym_cmd_identifier_token14] = ACTIONS(1744), - [aux_sym_cmd_identifier_token15] = ACTIONS(1744), - [aux_sym_cmd_identifier_token16] = ACTIONS(1744), - [aux_sym_cmd_identifier_token17] = ACTIONS(1744), - [aux_sym_cmd_identifier_token18] = ACTIONS(1744), - [aux_sym_cmd_identifier_token19] = ACTIONS(1744), - [aux_sym_cmd_identifier_token20] = ACTIONS(1744), - [aux_sym_cmd_identifier_token21] = ACTIONS(1744), - [aux_sym_cmd_identifier_token22] = ACTIONS(1744), - [aux_sym_cmd_identifier_token23] = ACTIONS(1744), - [aux_sym_cmd_identifier_token24] = ACTIONS(1744), - [aux_sym_cmd_identifier_token25] = ACTIONS(1744), - [aux_sym_cmd_identifier_token26] = ACTIONS(1744), - [aux_sym_cmd_identifier_token27] = ACTIONS(1744), - [aux_sym_cmd_identifier_token28] = ACTIONS(1744), - [aux_sym_cmd_identifier_token29] = ACTIONS(1744), - [aux_sym_cmd_identifier_token30] = ACTIONS(1744), - [aux_sym_cmd_identifier_token31] = ACTIONS(1744), - [aux_sym_cmd_identifier_token32] = ACTIONS(1744), - [aux_sym_cmd_identifier_token33] = ACTIONS(1744), - [aux_sym_cmd_identifier_token34] = ACTIONS(1744), - [aux_sym_cmd_identifier_token35] = ACTIONS(1744), - [aux_sym_cmd_identifier_token36] = ACTIONS(1744), - [anon_sym_true] = ACTIONS(1744), - [anon_sym_false] = ACTIONS(1744), - [anon_sym_null] = ACTIONS(1744), - [aux_sym_cmd_identifier_token38] = ACTIONS(1744), - [aux_sym_cmd_identifier_token39] = ACTIONS(1744), - [aux_sym_cmd_identifier_token40] = ACTIONS(1744), - [anon_sym_def] = ACTIONS(1744), - [anon_sym_export_DASHenv] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_module] = ACTIONS(1744), - [anon_sym_use] = ACTIONS(1744), - [anon_sym_RBRACK] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1744), - [anon_sym_error] = ACTIONS(1744), - [anon_sym_list] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1744), - [anon_sym_make] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_do] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_else] = ACTIONS(1744), - [anon_sym_match] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_try] = ACTIONS(1744), - [anon_sym_catch] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_source] = ACTIONS(1744), - [anon_sym_source_DASHenv] = ACTIONS(1744), - [anon_sym_register] = ACTIONS(1744), - [anon_sym_hide] = ACTIONS(1744), - [anon_sym_hide_DASHenv] = ACTIONS(1744), - [anon_sym_overlay] = ACTIONS(1744), - [anon_sym_new] = ACTIONS(1744), - [anon_sym_as] = ACTIONS(1744), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1744), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1744), - [aux_sym__val_number_decimal_token1] = ACTIONS(1744), - [aux_sym__val_number_decimal_token2] = ACTIONS(1744), - [anon_sym_DOT2] = ACTIONS(1744), - [aux_sym__val_number_decimal_token3] = ACTIONS(1744), - [aux_sym__val_number_token1] = ACTIONS(1744), - [aux_sym__val_number_token2] = ACTIONS(1744), - [aux_sym__val_number_token3] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym__str_single_quotes] = ACTIONS(1744), - [sym__str_back_ticks] = ACTIONS(1744), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1744), - [sym__entry_separator] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_alias] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_let_DASHenv] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [aux_sym_cmd_identifier_token1] = ACTIONS(2105), + [aux_sym_cmd_identifier_token2] = ACTIONS(2105), + [aux_sym_cmd_identifier_token3] = ACTIONS(2105), + [aux_sym_cmd_identifier_token4] = ACTIONS(2105), + [aux_sym_cmd_identifier_token5] = ACTIONS(2105), + [aux_sym_cmd_identifier_token6] = ACTIONS(2105), + [aux_sym_cmd_identifier_token7] = ACTIONS(2105), + [aux_sym_cmd_identifier_token8] = ACTIONS(2105), + [aux_sym_cmd_identifier_token9] = ACTIONS(2105), + [aux_sym_cmd_identifier_token10] = ACTIONS(2105), + [aux_sym_cmd_identifier_token11] = ACTIONS(2105), + [aux_sym_cmd_identifier_token12] = ACTIONS(2105), + [aux_sym_cmd_identifier_token13] = ACTIONS(2105), + [aux_sym_cmd_identifier_token14] = ACTIONS(2105), + [aux_sym_cmd_identifier_token15] = ACTIONS(2105), + [aux_sym_cmd_identifier_token16] = ACTIONS(2105), + [aux_sym_cmd_identifier_token17] = ACTIONS(2105), + [aux_sym_cmd_identifier_token18] = ACTIONS(2105), + [aux_sym_cmd_identifier_token19] = ACTIONS(2105), + [aux_sym_cmd_identifier_token20] = ACTIONS(2105), + [aux_sym_cmd_identifier_token21] = ACTIONS(2105), + [aux_sym_cmd_identifier_token22] = ACTIONS(2105), + [aux_sym_cmd_identifier_token23] = ACTIONS(2105), + [aux_sym_cmd_identifier_token24] = ACTIONS(2105), + [aux_sym_cmd_identifier_token25] = ACTIONS(2105), + [aux_sym_cmd_identifier_token26] = ACTIONS(2105), + [aux_sym_cmd_identifier_token27] = ACTIONS(2105), + [aux_sym_cmd_identifier_token28] = ACTIONS(2105), + [aux_sym_cmd_identifier_token29] = ACTIONS(2105), + [aux_sym_cmd_identifier_token30] = ACTIONS(2105), + [aux_sym_cmd_identifier_token31] = ACTIONS(2105), + [aux_sym_cmd_identifier_token32] = ACTIONS(2105), + [aux_sym_cmd_identifier_token33] = ACTIONS(2105), + [aux_sym_cmd_identifier_token34] = ACTIONS(2105), + [aux_sym_cmd_identifier_token35] = ACTIONS(2105), + [aux_sym_cmd_identifier_token36] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [aux_sym_cmd_identifier_token38] = ACTIONS(2105), + [aux_sym_cmd_identifier_token39] = ACTIONS(2105), + [aux_sym_cmd_identifier_token40] = ACTIONS(2105), + [anon_sym_def] = ACTIONS(2105), + [anon_sym_export_DASHenv] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2105), + [anon_sym_error] = ACTIONS(2105), + [anon_sym_list] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_make] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_catch] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_source] = ACTIONS(2105), + [anon_sym_source_DASHenv] = ACTIONS(2105), + [anon_sym_register] = ACTIONS(2105), + [anon_sym_hide] = ACTIONS(2105), + [anon_sym_hide_DASHenv] = ACTIONS(2105), + [anon_sym_overlay] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(2099), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2105), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2105), + [aux_sym__val_number_decimal_token3] = ACTIONS(2105), + [aux_sym__val_number_decimal_token4] = ACTIONS(2105), + [aux_sym__val_number_token1] = ACTIONS(2105), + [aux_sym__val_number_token2] = ACTIONS(2105), + [aux_sym__val_number_token3] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2107), + [sym__str_single_quotes] = ACTIONS(2107), + [sym__str_back_ticks] = ACTIONS(2107), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2107), + [anon_sym_PLUS] = ACTIONS(2105), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2103), + [anon_sym_POUND] = ACTIONS(3), }, [470] = { [sym_comment] = STATE(470), - [anon_sym_export] = ACTIONS(1429), - [anon_sym_alias] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_let_DASHenv] = ACTIONS(1429), - [anon_sym_mut] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [aux_sym_cmd_identifier_token1] = ACTIONS(1429), - [aux_sym_cmd_identifier_token2] = ACTIONS(1429), - [aux_sym_cmd_identifier_token3] = ACTIONS(1429), - [aux_sym_cmd_identifier_token4] = ACTIONS(1429), - [aux_sym_cmd_identifier_token5] = ACTIONS(1429), - [aux_sym_cmd_identifier_token6] = ACTIONS(1429), - [aux_sym_cmd_identifier_token7] = ACTIONS(1429), - [aux_sym_cmd_identifier_token8] = ACTIONS(1429), - [aux_sym_cmd_identifier_token9] = ACTIONS(1429), - [aux_sym_cmd_identifier_token10] = ACTIONS(1429), - [aux_sym_cmd_identifier_token11] = ACTIONS(1429), - [aux_sym_cmd_identifier_token12] = ACTIONS(1429), - [aux_sym_cmd_identifier_token13] = ACTIONS(1429), - [aux_sym_cmd_identifier_token14] = ACTIONS(1429), - [aux_sym_cmd_identifier_token15] = ACTIONS(1429), - [aux_sym_cmd_identifier_token16] = ACTIONS(1429), - [aux_sym_cmd_identifier_token17] = ACTIONS(1429), - [aux_sym_cmd_identifier_token18] = ACTIONS(1429), - [aux_sym_cmd_identifier_token19] = ACTIONS(1429), - [aux_sym_cmd_identifier_token20] = ACTIONS(1429), - [aux_sym_cmd_identifier_token21] = ACTIONS(1429), - [aux_sym_cmd_identifier_token22] = ACTIONS(1429), - [aux_sym_cmd_identifier_token23] = ACTIONS(1429), - [aux_sym_cmd_identifier_token24] = ACTIONS(1429), - [aux_sym_cmd_identifier_token25] = ACTIONS(1429), - [aux_sym_cmd_identifier_token26] = ACTIONS(1429), - [aux_sym_cmd_identifier_token27] = ACTIONS(1429), - [aux_sym_cmd_identifier_token28] = ACTIONS(1429), - [aux_sym_cmd_identifier_token29] = ACTIONS(1429), - [aux_sym_cmd_identifier_token30] = ACTIONS(1429), - [aux_sym_cmd_identifier_token31] = ACTIONS(1429), - [aux_sym_cmd_identifier_token32] = ACTIONS(1429), - [aux_sym_cmd_identifier_token33] = ACTIONS(1429), - [aux_sym_cmd_identifier_token34] = ACTIONS(1429), - [aux_sym_cmd_identifier_token35] = ACTIONS(1429), - [aux_sym_cmd_identifier_token36] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_null] = ACTIONS(1429), - [aux_sym_cmd_identifier_token38] = ACTIONS(1429), - [aux_sym_cmd_identifier_token39] = ACTIONS(1429), - [aux_sym_cmd_identifier_token40] = ACTIONS(1429), - [anon_sym_def] = ACTIONS(1429), - [anon_sym_export_DASHenv] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_module] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_DOLLAR] = ACTIONS(1429), - [anon_sym_error] = ACTIONS(1429), - [anon_sym_list] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_make] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1429), - [anon_sym_catch] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_source] = ACTIONS(1429), - [anon_sym_source_DASHenv] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_hide] = ACTIONS(1429), - [anon_sym_hide_DASHenv] = ACTIONS(1429), - [anon_sym_overlay] = ACTIONS(1429), - [anon_sym_new] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1429), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1429), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1429), - [aux_sym__val_number_token1] = ACTIONS(1429), - [aux_sym__val_number_token2] = ACTIONS(1429), - [aux_sym__val_number_token3] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [sym__str_single_quotes] = ACTIONS(1429), - [sym__str_back_ticks] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1429), - [sym__entry_separator] = ACTIONS(1441), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2131), + [anon_sym_alias] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_let_DASHenv] = ACTIONS(2131), + [anon_sym_mut] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [aux_sym_cmd_identifier_token1] = ACTIONS(2131), + [aux_sym_cmd_identifier_token2] = ACTIONS(2131), + [aux_sym_cmd_identifier_token3] = ACTIONS(2131), + [aux_sym_cmd_identifier_token4] = ACTIONS(2131), + [aux_sym_cmd_identifier_token5] = ACTIONS(2131), + [aux_sym_cmd_identifier_token6] = ACTIONS(2131), + [aux_sym_cmd_identifier_token7] = ACTIONS(2131), + [aux_sym_cmd_identifier_token8] = ACTIONS(2131), + [aux_sym_cmd_identifier_token9] = ACTIONS(2131), + [aux_sym_cmd_identifier_token10] = ACTIONS(2131), + [aux_sym_cmd_identifier_token11] = ACTIONS(2131), + [aux_sym_cmd_identifier_token12] = ACTIONS(2131), + [aux_sym_cmd_identifier_token13] = ACTIONS(2131), + [aux_sym_cmd_identifier_token14] = ACTIONS(2131), + [aux_sym_cmd_identifier_token15] = ACTIONS(2131), + [aux_sym_cmd_identifier_token16] = ACTIONS(2131), + [aux_sym_cmd_identifier_token17] = ACTIONS(2131), + [aux_sym_cmd_identifier_token18] = ACTIONS(2131), + [aux_sym_cmd_identifier_token19] = ACTIONS(2131), + [aux_sym_cmd_identifier_token20] = ACTIONS(2131), + [aux_sym_cmd_identifier_token21] = ACTIONS(2131), + [aux_sym_cmd_identifier_token22] = ACTIONS(2131), + [aux_sym_cmd_identifier_token23] = ACTIONS(2131), + [aux_sym_cmd_identifier_token24] = ACTIONS(2131), + [aux_sym_cmd_identifier_token25] = ACTIONS(2131), + [aux_sym_cmd_identifier_token26] = ACTIONS(2131), + [aux_sym_cmd_identifier_token27] = ACTIONS(2131), + [aux_sym_cmd_identifier_token28] = ACTIONS(2131), + [aux_sym_cmd_identifier_token29] = ACTIONS(2131), + [aux_sym_cmd_identifier_token30] = ACTIONS(2131), + [aux_sym_cmd_identifier_token31] = ACTIONS(2131), + [aux_sym_cmd_identifier_token32] = ACTIONS(2131), + [aux_sym_cmd_identifier_token33] = ACTIONS(2131), + [aux_sym_cmd_identifier_token34] = ACTIONS(2131), + [aux_sym_cmd_identifier_token35] = ACTIONS(2131), + [aux_sym_cmd_identifier_token36] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [anon_sym_null] = ACTIONS(2131), + [aux_sym_cmd_identifier_token38] = ACTIONS(2131), + [aux_sym_cmd_identifier_token39] = ACTIONS(2131), + [aux_sym_cmd_identifier_token40] = ACTIONS(2131), + [anon_sym_def] = ACTIONS(2131), + [anon_sym_export_DASHenv] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_module] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_error] = ACTIONS(2131), + [anon_sym_list] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_in] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_make] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_catch] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_source] = ACTIONS(2131), + [anon_sym_source_DASHenv] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2131), + [anon_sym_hide] = ACTIONS(2131), + [anon_sym_hide_DASHenv] = ACTIONS(2131), + [anon_sym_overlay] = ACTIONS(2131), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2131), + [aux_sym__val_number_decimal_token4] = ACTIONS(2131), + [aux_sym__val_number_token1] = ACTIONS(2131), + [aux_sym__val_number_token2] = ACTIONS(2131), + [aux_sym__val_number_token3] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2133), + [sym__str_single_quotes] = ACTIONS(2133), + [sym__str_back_ticks] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2131), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(3), }, [471] = { + [sym__expr_parenthesized_immediate] = STATE(7628), [sym_comment] = STATE(471), - [anon_sym_export] = ACTIONS(2178), - [anon_sym_alias] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_let_DASHenv] = ACTIONS(2178), - [anon_sym_mut] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [aux_sym_cmd_identifier_token1] = ACTIONS(2178), - [aux_sym_cmd_identifier_token2] = ACTIONS(2178), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [aux_sym_cmd_identifier_token6] = ACTIONS(2178), - [aux_sym_cmd_identifier_token7] = ACTIONS(2178), - [aux_sym_cmd_identifier_token8] = ACTIONS(2178), - [aux_sym_cmd_identifier_token9] = ACTIONS(2178), - [aux_sym_cmd_identifier_token10] = ACTIONS(2178), - [aux_sym_cmd_identifier_token11] = ACTIONS(2178), - [aux_sym_cmd_identifier_token12] = ACTIONS(2178), - [aux_sym_cmd_identifier_token13] = ACTIONS(2178), - [aux_sym_cmd_identifier_token14] = ACTIONS(2178), - [aux_sym_cmd_identifier_token15] = ACTIONS(2178), - [aux_sym_cmd_identifier_token16] = ACTIONS(2178), - [aux_sym_cmd_identifier_token17] = ACTIONS(2178), - [aux_sym_cmd_identifier_token18] = ACTIONS(2178), - [aux_sym_cmd_identifier_token19] = ACTIONS(2178), - [aux_sym_cmd_identifier_token20] = ACTIONS(2178), - [aux_sym_cmd_identifier_token21] = ACTIONS(2178), - [aux_sym_cmd_identifier_token22] = ACTIONS(2178), - [aux_sym_cmd_identifier_token23] = ACTIONS(2178), - [aux_sym_cmd_identifier_token24] = ACTIONS(2178), - [aux_sym_cmd_identifier_token25] = ACTIONS(2178), - [aux_sym_cmd_identifier_token26] = ACTIONS(2178), - [aux_sym_cmd_identifier_token27] = ACTIONS(2178), - [aux_sym_cmd_identifier_token28] = ACTIONS(2178), - [aux_sym_cmd_identifier_token29] = ACTIONS(2178), - [aux_sym_cmd_identifier_token30] = ACTIONS(2178), - [aux_sym_cmd_identifier_token31] = ACTIONS(2178), - [aux_sym_cmd_identifier_token32] = ACTIONS(2178), - [aux_sym_cmd_identifier_token33] = ACTIONS(2178), - [aux_sym_cmd_identifier_token34] = ACTIONS(2178), - [aux_sym_cmd_identifier_token35] = ACTIONS(2178), - [aux_sym_cmd_identifier_token36] = ACTIONS(2178), - [anon_sym_true] = ACTIONS(2178), - [anon_sym_false] = ACTIONS(2178), - [anon_sym_null] = ACTIONS(2178), - [aux_sym_cmd_identifier_token38] = ACTIONS(2178), - [aux_sym_cmd_identifier_token39] = ACTIONS(2178), - [aux_sym_cmd_identifier_token40] = ACTIONS(2178), - [anon_sym_def] = ACTIONS(2178), - [anon_sym_export_DASHenv] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym_module] = ACTIONS(2178), - [anon_sym_use] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2178), - [anon_sym_error] = ACTIONS(2178), - [anon_sym_list] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_loop] = ACTIONS(2178), - [anon_sym_make] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_else] = ACTIONS(2178), - [anon_sym_match] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_catch] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_source] = ACTIONS(2178), - [anon_sym_source_DASHenv] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_hide] = ACTIONS(2178), - [anon_sym_hide_DASHenv] = ACTIONS(2178), - [anon_sym_overlay] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2178), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2178), - [aux_sym__val_number_decimal_token1] = ACTIONS(2178), - [aux_sym__val_number_decimal_token2] = ACTIONS(2178), - [anon_sym_DOT2] = ACTIONS(2178), - [aux_sym__val_number_decimal_token3] = ACTIONS(2178), - [aux_sym__val_number_token1] = ACTIONS(2178), - [aux_sym__val_number_token2] = ACTIONS(2178), - [aux_sym__val_number_token3] = ACTIONS(2178), - [anon_sym_LBRACK2] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2178), - [sym__str_single_quotes] = ACTIONS(2178), - [sym__str_back_ticks] = ACTIONS(2178), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2178), - [sym__entry_separator] = ACTIONS(2182), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1951), + [aux_sym_cmd_identifier_token40] = ACTIONS(1951), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1951), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_list] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1951), + [aux_sym__val_number_decimal_token3] = ACTIONS(1951), + [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__val_number_token1] = ACTIONS(1951), + [aux_sym__val_number_token2] = ACTIONS(1951), + [aux_sym__val_number_token3] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(247), }, [472] = { [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_alias] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_let_DASHenv] = ACTIONS(2184), - [anon_sym_mut] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [aux_sym_cmd_identifier_token1] = ACTIONS(2184), - [aux_sym_cmd_identifier_token2] = ACTIONS(2184), - [aux_sym_cmd_identifier_token3] = ACTIONS(2184), - [aux_sym_cmd_identifier_token4] = ACTIONS(2184), - [aux_sym_cmd_identifier_token5] = ACTIONS(2184), - [aux_sym_cmd_identifier_token6] = ACTIONS(2184), - [aux_sym_cmd_identifier_token7] = ACTIONS(2184), - [aux_sym_cmd_identifier_token8] = ACTIONS(2184), - [aux_sym_cmd_identifier_token9] = ACTIONS(2184), - [aux_sym_cmd_identifier_token10] = ACTIONS(2184), - [aux_sym_cmd_identifier_token11] = ACTIONS(2184), - [aux_sym_cmd_identifier_token12] = ACTIONS(2184), - [aux_sym_cmd_identifier_token13] = ACTIONS(2184), - [aux_sym_cmd_identifier_token14] = ACTIONS(2184), - [aux_sym_cmd_identifier_token15] = ACTIONS(2184), - [aux_sym_cmd_identifier_token16] = ACTIONS(2184), - [aux_sym_cmd_identifier_token17] = ACTIONS(2184), - [aux_sym_cmd_identifier_token18] = ACTIONS(2184), - [aux_sym_cmd_identifier_token19] = ACTIONS(2184), - [aux_sym_cmd_identifier_token20] = ACTIONS(2184), - [aux_sym_cmd_identifier_token21] = ACTIONS(2184), - [aux_sym_cmd_identifier_token22] = ACTIONS(2184), - [aux_sym_cmd_identifier_token23] = ACTIONS(2184), - [aux_sym_cmd_identifier_token24] = ACTIONS(2184), - [aux_sym_cmd_identifier_token25] = ACTIONS(2184), - [aux_sym_cmd_identifier_token26] = ACTIONS(2184), - [aux_sym_cmd_identifier_token27] = ACTIONS(2184), - [aux_sym_cmd_identifier_token28] = ACTIONS(2184), - [aux_sym_cmd_identifier_token29] = ACTIONS(2184), - [aux_sym_cmd_identifier_token30] = ACTIONS(2184), - [aux_sym_cmd_identifier_token31] = ACTIONS(2184), - [aux_sym_cmd_identifier_token32] = ACTIONS(2184), - [aux_sym_cmd_identifier_token33] = ACTIONS(2184), - [aux_sym_cmd_identifier_token34] = ACTIONS(2184), - [aux_sym_cmd_identifier_token35] = ACTIONS(2184), - [aux_sym_cmd_identifier_token36] = ACTIONS(2184), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2184), - [aux_sym_cmd_identifier_token38] = ACTIONS(2184), - [aux_sym_cmd_identifier_token39] = ACTIONS(2184), - [aux_sym_cmd_identifier_token40] = ACTIONS(2184), - [anon_sym_def] = ACTIONS(2184), - [anon_sym_export_DASHenv] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_use] = ACTIONS(2184), - [anon_sym_RBRACK] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_error] = ACTIONS(2184), - [anon_sym_list] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_loop] = ACTIONS(2184), - [anon_sym_make] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_catch] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_source] = ACTIONS(2184), - [anon_sym_source_DASHenv] = ACTIONS(2184), - [anon_sym_register] = ACTIONS(2184), - [anon_sym_hide] = ACTIONS(2184), - [anon_sym_hide_DASHenv] = ACTIONS(2184), - [anon_sym_overlay] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2184), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2184), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [anon_sym_DOT2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2184), - [aux_sym__val_number_token1] = ACTIONS(2184), - [aux_sym__val_number_token2] = ACTIONS(2184), - [aux_sym__val_number_token3] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym__str_single_quotes] = ACTIONS(2184), - [sym__str_back_ticks] = ACTIONS(2184), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2184), - [sym__entry_separator] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = ACTIONS(994), + [anon_sym_null] = ACTIONS(994), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(994), + [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_list] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_new] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(994), + [aux_sym__val_number_decimal_token3] = ACTIONS(994), + [aux_sym__val_number_decimal_token4] = ACTIONS(994), + [aux_sym__val_number_token1] = ACTIONS(994), + [aux_sym__val_number_token2] = ACTIONS(994), + [aux_sym__val_number_token3] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), + [sym__entry_separator] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(3), }, [473] = { [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(1683), - [anon_sym_alias] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1683), - [anon_sym_let_DASHenv] = ACTIONS(1683), - [anon_sym_mut] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [aux_sym_cmd_identifier_token1] = ACTIONS(1683), - [aux_sym_cmd_identifier_token2] = ACTIONS(1683), - [aux_sym_cmd_identifier_token3] = ACTIONS(1683), - [aux_sym_cmd_identifier_token4] = ACTIONS(1683), - [aux_sym_cmd_identifier_token5] = ACTIONS(1683), - [aux_sym_cmd_identifier_token6] = ACTIONS(1683), - [aux_sym_cmd_identifier_token7] = ACTIONS(1683), - [aux_sym_cmd_identifier_token8] = ACTIONS(1683), - [aux_sym_cmd_identifier_token9] = ACTIONS(1683), - [aux_sym_cmd_identifier_token10] = ACTIONS(1683), - [aux_sym_cmd_identifier_token11] = ACTIONS(1683), - [aux_sym_cmd_identifier_token12] = ACTIONS(1683), - [aux_sym_cmd_identifier_token13] = ACTIONS(1683), - [aux_sym_cmd_identifier_token14] = ACTIONS(1683), - [aux_sym_cmd_identifier_token15] = ACTIONS(1683), - [aux_sym_cmd_identifier_token16] = ACTIONS(1683), - [aux_sym_cmd_identifier_token17] = ACTIONS(1683), - [aux_sym_cmd_identifier_token18] = ACTIONS(1683), - [aux_sym_cmd_identifier_token19] = ACTIONS(1683), - [aux_sym_cmd_identifier_token20] = ACTIONS(1683), - [aux_sym_cmd_identifier_token21] = ACTIONS(1683), - [aux_sym_cmd_identifier_token22] = ACTIONS(1683), - [aux_sym_cmd_identifier_token23] = ACTIONS(1683), - [aux_sym_cmd_identifier_token24] = ACTIONS(1683), - [aux_sym_cmd_identifier_token25] = ACTIONS(1683), - [aux_sym_cmd_identifier_token26] = ACTIONS(1683), - [aux_sym_cmd_identifier_token27] = ACTIONS(1683), - [aux_sym_cmd_identifier_token28] = ACTIONS(1683), - [aux_sym_cmd_identifier_token29] = ACTIONS(1683), - [aux_sym_cmd_identifier_token30] = ACTIONS(1683), - [aux_sym_cmd_identifier_token31] = ACTIONS(1683), - [aux_sym_cmd_identifier_token32] = ACTIONS(1683), - [aux_sym_cmd_identifier_token33] = ACTIONS(1683), - [aux_sym_cmd_identifier_token34] = ACTIONS(1683), - [aux_sym_cmd_identifier_token35] = ACTIONS(1683), - [aux_sym_cmd_identifier_token36] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_null] = ACTIONS(1683), - [aux_sym_cmd_identifier_token38] = ACTIONS(1683), - [aux_sym_cmd_identifier_token39] = ACTIONS(1683), - [aux_sym_cmd_identifier_token40] = ACTIONS(1683), - [anon_sym_def] = ACTIONS(1683), - [anon_sym_export_DASHenv] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym_module] = ACTIONS(1683), - [anon_sym_use] = ACTIONS(1683), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1683), - [anon_sym_error] = ACTIONS(1683), - [anon_sym_list] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_loop] = ACTIONS(1683), - [anon_sym_make] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_else] = ACTIONS(1683), - [anon_sym_match] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1683), - [anon_sym_catch] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_source] = ACTIONS(1683), - [anon_sym_source_DASHenv] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1683), - [anon_sym_hide] = ACTIONS(1683), - [anon_sym_hide_DASHenv] = ACTIONS(1683), - [anon_sym_overlay] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_as] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1683), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [anon_sym_DOT2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1683), - [sym__entry_separator] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1006), + [aux_sym_cmd_identifier_token3] = ACTIONS(1006), + [aux_sym_cmd_identifier_token4] = ACTIONS(1006), + [aux_sym_cmd_identifier_token5] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1006), + [aux_sym_cmd_identifier_token7] = ACTIONS(1006), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1006), + [aux_sym_cmd_identifier_token17] = ACTIONS(1006), + [aux_sym_cmd_identifier_token18] = ACTIONS(1006), + [aux_sym_cmd_identifier_token19] = ACTIONS(1006), + [aux_sym_cmd_identifier_token20] = ACTIONS(1006), + [aux_sym_cmd_identifier_token21] = ACTIONS(1006), + [aux_sym_cmd_identifier_token22] = ACTIONS(1006), + [aux_sym_cmd_identifier_token23] = ACTIONS(1006), + [aux_sym_cmd_identifier_token24] = ACTIONS(1006), + [aux_sym_cmd_identifier_token25] = ACTIONS(1006), + [aux_sym_cmd_identifier_token26] = ACTIONS(1006), + [aux_sym_cmd_identifier_token27] = ACTIONS(1006), + [aux_sym_cmd_identifier_token28] = ACTIONS(1006), + [aux_sym_cmd_identifier_token29] = ACTIONS(1006), + [aux_sym_cmd_identifier_token30] = ACTIONS(1006), + [aux_sym_cmd_identifier_token31] = ACTIONS(1006), + [aux_sym_cmd_identifier_token32] = ACTIONS(1006), + [aux_sym_cmd_identifier_token33] = ACTIONS(1006), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1006), + [aux_sym_cmd_identifier_token36] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_decimal_token4] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(3), }, [474] = { [sym_comment] = STATE(474), - [anon_sym_export] = ACTIONS(916), - [anon_sym_alias] = ACTIONS(916), - [anon_sym_let] = ACTIONS(916), - [anon_sym_let_DASHenv] = ACTIONS(916), - [anon_sym_mut] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [aux_sym_cmd_identifier_token1] = ACTIONS(916), - [aux_sym_cmd_identifier_token2] = ACTIONS(916), - [aux_sym_cmd_identifier_token3] = ACTIONS(916), - [aux_sym_cmd_identifier_token4] = ACTIONS(916), - [aux_sym_cmd_identifier_token5] = ACTIONS(916), - [aux_sym_cmd_identifier_token6] = ACTIONS(916), - [aux_sym_cmd_identifier_token7] = ACTIONS(916), - [aux_sym_cmd_identifier_token8] = ACTIONS(916), - [aux_sym_cmd_identifier_token9] = ACTIONS(916), - [aux_sym_cmd_identifier_token10] = ACTIONS(916), - [aux_sym_cmd_identifier_token11] = ACTIONS(916), - [aux_sym_cmd_identifier_token12] = ACTIONS(916), - [aux_sym_cmd_identifier_token13] = ACTIONS(916), - [aux_sym_cmd_identifier_token14] = ACTIONS(916), - [aux_sym_cmd_identifier_token15] = ACTIONS(916), - [aux_sym_cmd_identifier_token16] = ACTIONS(916), - [aux_sym_cmd_identifier_token17] = ACTIONS(916), - [aux_sym_cmd_identifier_token18] = ACTIONS(916), - [aux_sym_cmd_identifier_token19] = ACTIONS(916), - [aux_sym_cmd_identifier_token20] = ACTIONS(916), - [aux_sym_cmd_identifier_token21] = ACTIONS(916), - [aux_sym_cmd_identifier_token22] = ACTIONS(916), - [aux_sym_cmd_identifier_token23] = ACTIONS(916), - [aux_sym_cmd_identifier_token24] = ACTIONS(916), - [aux_sym_cmd_identifier_token25] = ACTIONS(916), - [aux_sym_cmd_identifier_token26] = ACTIONS(916), - [aux_sym_cmd_identifier_token27] = ACTIONS(916), - [aux_sym_cmd_identifier_token28] = ACTIONS(916), - [aux_sym_cmd_identifier_token29] = ACTIONS(916), - [aux_sym_cmd_identifier_token30] = ACTIONS(916), - [aux_sym_cmd_identifier_token31] = ACTIONS(916), - [aux_sym_cmd_identifier_token32] = ACTIONS(916), - [aux_sym_cmd_identifier_token33] = ACTIONS(916), - [aux_sym_cmd_identifier_token34] = ACTIONS(916), - [aux_sym_cmd_identifier_token35] = ACTIONS(916), - [aux_sym_cmd_identifier_token36] = ACTIONS(916), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(916), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [anon_sym_def] = ACTIONS(916), - [anon_sym_export_DASHenv] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_use] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_error] = ACTIONS(916), - [anon_sym_list] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [anon_sym_loop] = ACTIONS(916), - [anon_sym_make] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_match] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_try] = ACTIONS(916), - [anon_sym_catch] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_source] = ACTIONS(916), - [anon_sym_source_DASHenv] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_hide] = ACTIONS(916), - [anon_sym_hide_DASHenv] = ACTIONS(916), - [anon_sym_overlay] = ACTIONS(916), - [anon_sym_new] = ACTIONS(916), - [anon_sym_as] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(918), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(2231), + [aux_sym__immediate_decimal_token2] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [475] = { [sym_comment] = STATE(475), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_alias] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_let_DASHenv] = ACTIONS(2188), - [anon_sym_mut] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [aux_sym_cmd_identifier_token1] = ACTIONS(2188), - [aux_sym_cmd_identifier_token2] = ACTIONS(2188), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), - [aux_sym_cmd_identifier_token6] = ACTIONS(2188), - [aux_sym_cmd_identifier_token7] = ACTIONS(2188), - [aux_sym_cmd_identifier_token8] = ACTIONS(2188), - [aux_sym_cmd_identifier_token9] = ACTIONS(2188), - [aux_sym_cmd_identifier_token10] = ACTIONS(2188), - [aux_sym_cmd_identifier_token11] = ACTIONS(2188), - [aux_sym_cmd_identifier_token12] = ACTIONS(2188), - [aux_sym_cmd_identifier_token13] = ACTIONS(2188), - [aux_sym_cmd_identifier_token14] = ACTIONS(2188), - [aux_sym_cmd_identifier_token15] = ACTIONS(2188), - [aux_sym_cmd_identifier_token16] = ACTIONS(2188), - [aux_sym_cmd_identifier_token17] = ACTIONS(2188), - [aux_sym_cmd_identifier_token18] = ACTIONS(2188), - [aux_sym_cmd_identifier_token19] = ACTIONS(2188), - [aux_sym_cmd_identifier_token20] = ACTIONS(2188), - [aux_sym_cmd_identifier_token21] = ACTIONS(2188), - [aux_sym_cmd_identifier_token22] = ACTIONS(2188), - [aux_sym_cmd_identifier_token23] = ACTIONS(2188), - [aux_sym_cmd_identifier_token24] = ACTIONS(2188), - [aux_sym_cmd_identifier_token25] = ACTIONS(2188), - [aux_sym_cmd_identifier_token26] = ACTIONS(2188), - [aux_sym_cmd_identifier_token27] = ACTIONS(2188), - [aux_sym_cmd_identifier_token28] = ACTIONS(2188), - [aux_sym_cmd_identifier_token29] = ACTIONS(2188), - [aux_sym_cmd_identifier_token30] = ACTIONS(2188), - [aux_sym_cmd_identifier_token31] = ACTIONS(2188), - [aux_sym_cmd_identifier_token32] = ACTIONS(2188), - [aux_sym_cmd_identifier_token33] = ACTIONS(2188), - [aux_sym_cmd_identifier_token34] = ACTIONS(2188), - [aux_sym_cmd_identifier_token35] = ACTIONS(2188), - [aux_sym_cmd_identifier_token36] = ACTIONS(2188), - [anon_sym_true] = ACTIONS(2188), - [anon_sym_false] = ACTIONS(2188), - [anon_sym_null] = ACTIONS(2188), - [aux_sym_cmd_identifier_token38] = ACTIONS(2188), - [aux_sym_cmd_identifier_token39] = ACTIONS(2188), - [aux_sym_cmd_identifier_token40] = ACTIONS(2188), - [anon_sym_def] = ACTIONS(2188), - [anon_sym_export_DASHenv] = ACTIONS(2188), - [anon_sym_extern] = ACTIONS(2188), - [anon_sym_module] = ACTIONS(2188), - [anon_sym_use] = ACTIONS(2188), - [anon_sym_RBRACK] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_DOLLAR] = ACTIONS(2188), - [anon_sym_error] = ACTIONS(2188), - [anon_sym_list] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_in] = ACTIONS(2188), - [anon_sym_loop] = ACTIONS(2188), - [anon_sym_make] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_else] = ACTIONS(2188), - [anon_sym_match] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_catch] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_source] = ACTIONS(2188), - [anon_sym_source_DASHenv] = ACTIONS(2188), - [anon_sym_register] = ACTIONS(2188), - [anon_sym_hide] = ACTIONS(2188), - [anon_sym_hide_DASHenv] = ACTIONS(2188), - [anon_sym_overlay] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_as] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2188), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2188), - [aux_sym__val_number_decimal_token1] = ACTIONS(2188), - [aux_sym__val_number_decimal_token2] = ACTIONS(2188), - [anon_sym_DOT2] = ACTIONS(2188), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(2188), - [aux_sym__val_number_token2] = ACTIONS(2188), - [aux_sym__val_number_token3] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(2188), - [sym__str_single_quotes] = ACTIONS(2188), - [sym__str_back_ticks] = ACTIONS(2188), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2188), - [sym__entry_separator] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_alias] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_let_DASHenv] = ACTIONS(2235), + [anon_sym_mut] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [aux_sym_cmd_identifier_token1] = ACTIONS(2235), + [aux_sym_cmd_identifier_token2] = ACTIONS(2235), + [aux_sym_cmd_identifier_token3] = ACTIONS(2235), + [aux_sym_cmd_identifier_token4] = ACTIONS(2235), + [aux_sym_cmd_identifier_token5] = ACTIONS(2235), + [aux_sym_cmd_identifier_token6] = ACTIONS(2235), + [aux_sym_cmd_identifier_token7] = ACTIONS(2235), + [aux_sym_cmd_identifier_token8] = ACTIONS(2235), + [aux_sym_cmd_identifier_token9] = ACTIONS(2235), + [aux_sym_cmd_identifier_token10] = ACTIONS(2235), + [aux_sym_cmd_identifier_token11] = ACTIONS(2235), + [aux_sym_cmd_identifier_token12] = ACTIONS(2235), + [aux_sym_cmd_identifier_token13] = ACTIONS(2235), + [aux_sym_cmd_identifier_token14] = ACTIONS(2235), + [aux_sym_cmd_identifier_token15] = ACTIONS(2235), + [aux_sym_cmd_identifier_token16] = ACTIONS(2235), + [aux_sym_cmd_identifier_token17] = ACTIONS(2235), + [aux_sym_cmd_identifier_token18] = ACTIONS(2235), + [aux_sym_cmd_identifier_token19] = ACTIONS(2235), + [aux_sym_cmd_identifier_token20] = ACTIONS(2235), + [aux_sym_cmd_identifier_token21] = ACTIONS(2235), + [aux_sym_cmd_identifier_token22] = ACTIONS(2235), + [aux_sym_cmd_identifier_token23] = ACTIONS(2235), + [aux_sym_cmd_identifier_token24] = ACTIONS(2235), + [aux_sym_cmd_identifier_token25] = ACTIONS(2235), + [aux_sym_cmd_identifier_token26] = ACTIONS(2235), + [aux_sym_cmd_identifier_token27] = ACTIONS(2235), + [aux_sym_cmd_identifier_token28] = ACTIONS(2235), + [aux_sym_cmd_identifier_token29] = ACTIONS(2235), + [aux_sym_cmd_identifier_token30] = ACTIONS(2235), + [aux_sym_cmd_identifier_token31] = ACTIONS(2235), + [aux_sym_cmd_identifier_token32] = ACTIONS(2235), + [aux_sym_cmd_identifier_token33] = ACTIONS(2235), + [aux_sym_cmd_identifier_token34] = ACTIONS(2235), + [aux_sym_cmd_identifier_token35] = ACTIONS(2235), + [aux_sym_cmd_identifier_token36] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(2235), + [anon_sym_false] = ACTIONS(2235), + [anon_sym_null] = ACTIONS(2235), + [aux_sym_cmd_identifier_token38] = ACTIONS(2235), + [aux_sym_cmd_identifier_token39] = ACTIONS(2235), + [aux_sym_cmd_identifier_token40] = ACTIONS(2235), + [anon_sym_def] = ACTIONS(2235), + [anon_sym_export_DASHenv] = ACTIONS(2235), + [anon_sym_extern] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_DOLLAR] = ACTIONS(2235), + [anon_sym_error] = ACTIONS(2235), + [anon_sym_list] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_make] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_catch] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_source] = ACTIONS(2235), + [anon_sym_source_DASHenv] = ACTIONS(2235), + [anon_sym_register] = ACTIONS(2235), + [anon_sym_hide] = ACTIONS(2235), + [anon_sym_hide_DASHenv] = ACTIONS(2235), + [anon_sym_overlay] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2235), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2235), + [aux_sym__val_number_decimal_token1] = ACTIONS(2235), + [aux_sym__val_number_decimal_token2] = ACTIONS(2235), + [aux_sym__val_number_decimal_token3] = ACTIONS(2235), + [aux_sym__val_number_decimal_token4] = ACTIONS(2235), + [aux_sym__val_number_token1] = ACTIONS(2235), + [aux_sym__val_number_token2] = ACTIONS(2235), + [aux_sym__val_number_token3] = ACTIONS(2235), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2235), + [sym__str_single_quotes] = ACTIONS(2235), + [sym__str_back_ticks] = ACTIONS(2235), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2235), + [sym__entry_separator] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(3), }, [476] = { [sym_comment] = STATE(476), - [aux_sym__multiple_types_repeat1] = STATE(515), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_alias] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_let_DASHenv] = ACTIONS(2192), - [anon_sym_mut] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [aux_sym_cmd_identifier_token1] = ACTIONS(2192), - [aux_sym_cmd_identifier_token2] = ACTIONS(2192), - [aux_sym_cmd_identifier_token3] = ACTIONS(2192), - [aux_sym_cmd_identifier_token4] = ACTIONS(2192), - [aux_sym_cmd_identifier_token5] = ACTIONS(2192), - [aux_sym_cmd_identifier_token6] = ACTIONS(2192), - [aux_sym_cmd_identifier_token7] = ACTIONS(2192), - [aux_sym_cmd_identifier_token8] = ACTIONS(2192), - [aux_sym_cmd_identifier_token9] = ACTIONS(2192), - [aux_sym_cmd_identifier_token10] = ACTIONS(2192), - [aux_sym_cmd_identifier_token11] = ACTIONS(2192), - [aux_sym_cmd_identifier_token12] = ACTIONS(2192), - [aux_sym_cmd_identifier_token13] = ACTIONS(2192), - [aux_sym_cmd_identifier_token14] = ACTIONS(2192), - [aux_sym_cmd_identifier_token15] = ACTIONS(2192), - [aux_sym_cmd_identifier_token16] = ACTIONS(2192), - [aux_sym_cmd_identifier_token17] = ACTIONS(2192), - [aux_sym_cmd_identifier_token18] = ACTIONS(2192), - [aux_sym_cmd_identifier_token19] = ACTIONS(2192), - [aux_sym_cmd_identifier_token20] = ACTIONS(2192), - [aux_sym_cmd_identifier_token21] = ACTIONS(2192), - [aux_sym_cmd_identifier_token22] = ACTIONS(2192), - [aux_sym_cmd_identifier_token23] = ACTIONS(2192), - [aux_sym_cmd_identifier_token24] = ACTIONS(2192), - [aux_sym_cmd_identifier_token25] = ACTIONS(2192), - [aux_sym_cmd_identifier_token26] = ACTIONS(2192), - [aux_sym_cmd_identifier_token27] = ACTIONS(2192), - [aux_sym_cmd_identifier_token28] = ACTIONS(2192), - [aux_sym_cmd_identifier_token29] = ACTIONS(2192), - [aux_sym_cmd_identifier_token30] = ACTIONS(2192), - [aux_sym_cmd_identifier_token31] = ACTIONS(2192), - [aux_sym_cmd_identifier_token32] = ACTIONS(2192), - [aux_sym_cmd_identifier_token33] = ACTIONS(2192), - [aux_sym_cmd_identifier_token34] = ACTIONS(2192), - [aux_sym_cmd_identifier_token35] = ACTIONS(2192), - [aux_sym_cmd_identifier_token36] = ACTIONS(2192), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [anon_sym_null] = ACTIONS(2192), - [aux_sym_cmd_identifier_token38] = ACTIONS(2192), - [aux_sym_cmd_identifier_token39] = ACTIONS(2192), - [aux_sym_cmd_identifier_token40] = ACTIONS(2192), - [anon_sym_def] = ACTIONS(2192), - [anon_sym_export_DASHenv] = ACTIONS(2192), - [anon_sym_extern] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_use] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [anon_sym_error] = ACTIONS(2192), - [anon_sym_list] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_in] = ACTIONS(2192), - [anon_sym_loop] = ACTIONS(2192), - [anon_sym_make] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_else] = ACTIONS(2192), - [anon_sym_match] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2192), - [anon_sym_catch] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_source] = ACTIONS(2192), - [anon_sym_source_DASHenv] = ACTIONS(2192), - [anon_sym_register] = ACTIONS(2192), - [anon_sym_hide] = ACTIONS(2192), - [anon_sym_hide_DASHenv] = ACTIONS(2192), - [anon_sym_overlay] = ACTIONS(2192), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_as] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2192), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2192), - [aux_sym__val_number_decimal_token1] = ACTIONS(2192), - [aux_sym__val_number_decimal_token2] = ACTIONS(2192), - [anon_sym_DOT2] = ACTIONS(2192), - [aux_sym__val_number_decimal_token3] = ACTIONS(2192), - [aux_sym__val_number_token1] = ACTIONS(2192), - [aux_sym__val_number_token2] = ACTIONS(2192), - [aux_sym__val_number_token3] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym__str_single_quotes] = ACTIONS(2192), - [sym__str_back_ticks] = ACTIONS(2192), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2192), - [sym__entry_separator] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_alias] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_let_DASHenv] = ACTIONS(1778), + [anon_sym_mut] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [aux_sym_cmd_identifier_token1] = ACTIONS(1778), + [aux_sym_cmd_identifier_token2] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1778), + [aux_sym_cmd_identifier_token4] = ACTIONS(1778), + [aux_sym_cmd_identifier_token5] = ACTIONS(1778), + [aux_sym_cmd_identifier_token6] = ACTIONS(1778), + [aux_sym_cmd_identifier_token7] = ACTIONS(1778), + [aux_sym_cmd_identifier_token8] = ACTIONS(1778), + [aux_sym_cmd_identifier_token9] = ACTIONS(1778), + [aux_sym_cmd_identifier_token10] = ACTIONS(1778), + [aux_sym_cmd_identifier_token11] = ACTIONS(1778), + [aux_sym_cmd_identifier_token12] = ACTIONS(1778), + [aux_sym_cmd_identifier_token13] = ACTIONS(1778), + [aux_sym_cmd_identifier_token14] = ACTIONS(1778), + [aux_sym_cmd_identifier_token15] = ACTIONS(1778), + [aux_sym_cmd_identifier_token16] = ACTIONS(1778), + [aux_sym_cmd_identifier_token17] = ACTIONS(1778), + [aux_sym_cmd_identifier_token18] = ACTIONS(1778), + [aux_sym_cmd_identifier_token19] = ACTIONS(1778), + [aux_sym_cmd_identifier_token20] = ACTIONS(1778), + [aux_sym_cmd_identifier_token21] = ACTIONS(1778), + [aux_sym_cmd_identifier_token22] = ACTIONS(1778), + [aux_sym_cmd_identifier_token23] = ACTIONS(1778), + [aux_sym_cmd_identifier_token24] = ACTIONS(1778), + [aux_sym_cmd_identifier_token25] = ACTIONS(1778), + [aux_sym_cmd_identifier_token26] = ACTIONS(1778), + [aux_sym_cmd_identifier_token27] = ACTIONS(1778), + [aux_sym_cmd_identifier_token28] = ACTIONS(1778), + [aux_sym_cmd_identifier_token29] = ACTIONS(1778), + [aux_sym_cmd_identifier_token30] = ACTIONS(1778), + [aux_sym_cmd_identifier_token31] = ACTIONS(1778), + [aux_sym_cmd_identifier_token32] = ACTIONS(1778), + [aux_sym_cmd_identifier_token33] = ACTIONS(1778), + [aux_sym_cmd_identifier_token34] = ACTIONS(1778), + [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token36] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token38] = ACTIONS(1778), + [aux_sym_cmd_identifier_token39] = ACTIONS(1778), + [aux_sym_cmd_identifier_token40] = ACTIONS(1778), + [anon_sym_def] = ACTIONS(1778), + [anon_sym_export_DASHenv] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_error] = ACTIONS(1778), + [anon_sym_list] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_make] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_do] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_else] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1778), + [anon_sym_catch] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_source] = ACTIONS(1778), + [anon_sym_source_DASHenv] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1778), + [anon_sym_hide] = ACTIONS(1778), + [anon_sym_hide_DASHenv] = ACTIONS(1778), + [anon_sym_overlay] = ACTIONS(1778), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_as] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1778), + [aux_sym__val_number_decimal_token3] = ACTIONS(1778), + [aux_sym__val_number_decimal_token4] = ACTIONS(1778), + [aux_sym__val_number_token1] = ACTIONS(1778), + [aux_sym__val_number_token2] = ACTIONS(1778), + [aux_sym__val_number_token3] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [sym__str_single_quotes] = ACTIONS(1778), + [sym__str_back_ticks] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), + [sym__entry_separator] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(3), }, [477] = { [sym_comment] = STATE(477), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_alias] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_let_DASHenv] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [aux_sym_cmd_identifier_token1] = ACTIONS(2055), - [aux_sym_cmd_identifier_token2] = ACTIONS(2055), - [aux_sym_cmd_identifier_token3] = ACTIONS(2055), - [aux_sym_cmd_identifier_token4] = ACTIONS(2055), - [aux_sym_cmd_identifier_token5] = ACTIONS(2055), - [aux_sym_cmd_identifier_token6] = ACTIONS(2055), - [aux_sym_cmd_identifier_token7] = ACTIONS(2055), - [aux_sym_cmd_identifier_token8] = ACTIONS(2055), - [aux_sym_cmd_identifier_token9] = ACTIONS(2055), - [aux_sym_cmd_identifier_token10] = ACTIONS(2055), - [aux_sym_cmd_identifier_token11] = ACTIONS(2055), - [aux_sym_cmd_identifier_token12] = ACTIONS(2055), - [aux_sym_cmd_identifier_token13] = ACTIONS(2055), - [aux_sym_cmd_identifier_token14] = ACTIONS(2055), - [aux_sym_cmd_identifier_token15] = ACTIONS(2055), - [aux_sym_cmd_identifier_token16] = ACTIONS(2055), - [aux_sym_cmd_identifier_token17] = ACTIONS(2055), - [aux_sym_cmd_identifier_token18] = ACTIONS(2055), - [aux_sym_cmd_identifier_token19] = ACTIONS(2055), - [aux_sym_cmd_identifier_token20] = ACTIONS(2055), - [aux_sym_cmd_identifier_token21] = ACTIONS(2055), - [aux_sym_cmd_identifier_token22] = ACTIONS(2055), - [aux_sym_cmd_identifier_token23] = ACTIONS(2055), - [aux_sym_cmd_identifier_token24] = ACTIONS(2055), - [aux_sym_cmd_identifier_token25] = ACTIONS(2055), - [aux_sym_cmd_identifier_token26] = ACTIONS(2055), - [aux_sym_cmd_identifier_token27] = ACTIONS(2055), - [aux_sym_cmd_identifier_token28] = ACTIONS(2055), - [aux_sym_cmd_identifier_token29] = ACTIONS(2055), - [aux_sym_cmd_identifier_token30] = ACTIONS(2055), - [aux_sym_cmd_identifier_token31] = ACTIONS(2055), - [aux_sym_cmd_identifier_token32] = ACTIONS(2055), - [aux_sym_cmd_identifier_token33] = ACTIONS(2055), - [aux_sym_cmd_identifier_token34] = ACTIONS(2055), - [aux_sym_cmd_identifier_token35] = ACTIONS(2055), - [aux_sym_cmd_identifier_token36] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [anon_sym_null] = ACTIONS(2055), - [aux_sym_cmd_identifier_token38] = ACTIONS(2055), - [aux_sym_cmd_identifier_token39] = ACTIONS(2055), - [aux_sym_cmd_identifier_token40] = ACTIONS(2055), - [anon_sym_def] = ACTIONS(2055), - [anon_sym_export_DASHenv] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_error] = ACTIONS(2055), - [anon_sym_list] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_make] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_catch] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_source] = ACTIONS(2055), - [anon_sym_source_DASHenv] = ACTIONS(2055), - [anon_sym_register] = ACTIONS(2055), - [anon_sym_hide] = ACTIONS(2055), - [anon_sym_hide_DASHenv] = ACTIONS(2055), - [anon_sym_overlay] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LPAREN2] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2055), - [aux_sym__val_number_decimal_token2] = ACTIONS(2055), - [anon_sym_DOT2] = ACTIONS(2055), - [aux_sym__val_number_decimal_token3] = ACTIONS(2055), - [aux_sym__val_number_token1] = ACTIONS(2055), - [aux_sym__val_number_token2] = ACTIONS(2055), - [aux_sym__val_number_token3] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [sym__str_single_quotes] = ACTIONS(2055), - [sym__str_back_ticks] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2055), - [aux_sym__unquoted_in_record_token3] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_alias] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_let_DASHenv] = ACTIONS(2241), + [anon_sym_mut] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [aux_sym_cmd_identifier_token1] = ACTIONS(2241), + [aux_sym_cmd_identifier_token2] = ACTIONS(2241), + [aux_sym_cmd_identifier_token3] = ACTIONS(2241), + [aux_sym_cmd_identifier_token4] = ACTIONS(2241), + [aux_sym_cmd_identifier_token5] = ACTIONS(2241), + [aux_sym_cmd_identifier_token6] = ACTIONS(2241), + [aux_sym_cmd_identifier_token7] = ACTIONS(2241), + [aux_sym_cmd_identifier_token8] = ACTIONS(2241), + [aux_sym_cmd_identifier_token9] = ACTIONS(2241), + [aux_sym_cmd_identifier_token10] = ACTIONS(2241), + [aux_sym_cmd_identifier_token11] = ACTIONS(2241), + [aux_sym_cmd_identifier_token12] = ACTIONS(2241), + [aux_sym_cmd_identifier_token13] = ACTIONS(2241), + [aux_sym_cmd_identifier_token14] = ACTIONS(2241), + [aux_sym_cmd_identifier_token15] = ACTIONS(2241), + [aux_sym_cmd_identifier_token16] = ACTIONS(2241), + [aux_sym_cmd_identifier_token17] = ACTIONS(2241), + [aux_sym_cmd_identifier_token18] = ACTIONS(2241), + [aux_sym_cmd_identifier_token19] = ACTIONS(2241), + [aux_sym_cmd_identifier_token20] = ACTIONS(2241), + [aux_sym_cmd_identifier_token21] = ACTIONS(2241), + [aux_sym_cmd_identifier_token22] = ACTIONS(2241), + [aux_sym_cmd_identifier_token23] = ACTIONS(2241), + [aux_sym_cmd_identifier_token24] = ACTIONS(2241), + [aux_sym_cmd_identifier_token25] = ACTIONS(2241), + [aux_sym_cmd_identifier_token26] = ACTIONS(2241), + [aux_sym_cmd_identifier_token27] = ACTIONS(2241), + [aux_sym_cmd_identifier_token28] = ACTIONS(2241), + [aux_sym_cmd_identifier_token29] = ACTIONS(2241), + [aux_sym_cmd_identifier_token30] = ACTIONS(2241), + [aux_sym_cmd_identifier_token31] = ACTIONS(2241), + [aux_sym_cmd_identifier_token32] = ACTIONS(2241), + [aux_sym_cmd_identifier_token33] = ACTIONS(2241), + [aux_sym_cmd_identifier_token34] = ACTIONS(2241), + [aux_sym_cmd_identifier_token35] = ACTIONS(2241), + [aux_sym_cmd_identifier_token36] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_null] = ACTIONS(2241), + [aux_sym_cmd_identifier_token38] = ACTIONS(2241), + [aux_sym_cmd_identifier_token39] = ACTIONS(2241), + [aux_sym_cmd_identifier_token40] = ACTIONS(2241), + [anon_sym_def] = ACTIONS(2241), + [anon_sym_export_DASHenv] = ACTIONS(2241), + [anon_sym_extern] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_RBRACK] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_error] = ACTIONS(2241), + [anon_sym_list] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_make] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_catch] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_source] = ACTIONS(2241), + [anon_sym_source_DASHenv] = ACTIONS(2241), + [anon_sym_register] = ACTIONS(2241), + [anon_sym_hide] = ACTIONS(2241), + [anon_sym_hide_DASHenv] = ACTIONS(2241), + [anon_sym_overlay] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2241), + [aux_sym__val_number_decimal_token1] = ACTIONS(2241), + [aux_sym__val_number_decimal_token2] = ACTIONS(2241), + [aux_sym__val_number_decimal_token3] = ACTIONS(2241), + [aux_sym__val_number_decimal_token4] = ACTIONS(2241), + [aux_sym__val_number_token1] = ACTIONS(2241), + [aux_sym__val_number_token2] = ACTIONS(2241), + [aux_sym__val_number_token3] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2241), + [sym__str_single_quotes] = ACTIONS(2241), + [sym__str_back_ticks] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2241), + [sym__entry_separator] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(3), }, [478] = { - [sym__expr_parenthesized_immediate] = STATE(7789), [sym_comment] = STATE(478), - [anon_sym_export] = ACTIONS(2031), - [anon_sym_alias] = ACTIONS(2031), - [anon_sym_let] = ACTIONS(2031), - [anon_sym_let_DASHenv] = ACTIONS(2031), - [anon_sym_mut] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [aux_sym_cmd_identifier_token1] = ACTIONS(2031), - [aux_sym_cmd_identifier_token2] = ACTIONS(2031), - [aux_sym_cmd_identifier_token3] = ACTIONS(2031), - [aux_sym_cmd_identifier_token4] = ACTIONS(2031), - [aux_sym_cmd_identifier_token5] = ACTIONS(2031), - [aux_sym_cmd_identifier_token6] = ACTIONS(2031), - [aux_sym_cmd_identifier_token7] = ACTIONS(2031), - [aux_sym_cmd_identifier_token8] = ACTIONS(2031), - [aux_sym_cmd_identifier_token9] = ACTIONS(2031), - [aux_sym_cmd_identifier_token10] = ACTIONS(2031), - [aux_sym_cmd_identifier_token11] = ACTIONS(2031), - [aux_sym_cmd_identifier_token12] = ACTIONS(2031), - [aux_sym_cmd_identifier_token13] = ACTIONS(2031), - [aux_sym_cmd_identifier_token14] = ACTIONS(2031), - [aux_sym_cmd_identifier_token15] = ACTIONS(2031), - [aux_sym_cmd_identifier_token16] = ACTIONS(2031), - [aux_sym_cmd_identifier_token17] = ACTIONS(2031), - [aux_sym_cmd_identifier_token18] = ACTIONS(2031), - [aux_sym_cmd_identifier_token19] = ACTIONS(2031), - [aux_sym_cmd_identifier_token20] = ACTIONS(2031), - [aux_sym_cmd_identifier_token21] = ACTIONS(2031), - [aux_sym_cmd_identifier_token22] = ACTIONS(2031), - [aux_sym_cmd_identifier_token23] = ACTIONS(2031), - [aux_sym_cmd_identifier_token24] = ACTIONS(2031), - [aux_sym_cmd_identifier_token25] = ACTIONS(2031), - [aux_sym_cmd_identifier_token26] = ACTIONS(2031), - [aux_sym_cmd_identifier_token27] = ACTIONS(2031), - [aux_sym_cmd_identifier_token28] = ACTIONS(2031), - [aux_sym_cmd_identifier_token29] = ACTIONS(2031), - [aux_sym_cmd_identifier_token30] = ACTIONS(2031), - [aux_sym_cmd_identifier_token31] = ACTIONS(2031), - [aux_sym_cmd_identifier_token32] = ACTIONS(2031), - [aux_sym_cmd_identifier_token33] = ACTIONS(2031), - [aux_sym_cmd_identifier_token34] = ACTIONS(2031), - [aux_sym_cmd_identifier_token35] = ACTIONS(2031), - [aux_sym_cmd_identifier_token36] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [anon_sym_null] = ACTIONS(2033), - [aux_sym_cmd_identifier_token38] = ACTIONS(2031), - [aux_sym_cmd_identifier_token39] = ACTIONS(2033), - [aux_sym_cmd_identifier_token40] = ACTIONS(2033), - [anon_sym_def] = ACTIONS(2031), - [anon_sym_export_DASHenv] = ACTIONS(2031), - [anon_sym_extern] = ACTIONS(2031), - [anon_sym_module] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_error] = ACTIONS(2031), - [anon_sym_list] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_in] = ACTIONS(2031), - [anon_sym_loop] = ACTIONS(2031), - [anon_sym_make] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_else] = ACTIONS(2031), - [anon_sym_match] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_catch] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_source] = ACTIONS(2031), - [anon_sym_source_DASHenv] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2031), - [anon_sym_hide] = ACTIONS(2031), - [anon_sym_hide_DASHenv] = ACTIONS(2031), - [anon_sym_overlay] = ACTIONS(2031), - [anon_sym_new] = ACTIONS(2031), - [anon_sym_as] = ACTIONS(2031), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), - [aux_sym__val_number_decimal_token1] = ACTIONS(2031), - [aux_sym__val_number_decimal_token2] = ACTIONS(2033), - [anon_sym_DOT2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token3] = ACTIONS(2033), - [aux_sym__val_number_token1] = ACTIONS(2033), - [aux_sym__val_number_token2] = ACTIONS(2033), - [aux_sym__val_number_token3] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym__str_single_quotes] = ACTIONS(2033), - [sym__str_back_ticks] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [479] = { [sym_comment] = STATE(479), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [aux_sym_cmd_identifier_token1] = ACTIONS(920), - [aux_sym_cmd_identifier_token2] = ACTIONS(920), - [aux_sym_cmd_identifier_token3] = ACTIONS(920), - [aux_sym_cmd_identifier_token4] = ACTIONS(920), - [aux_sym_cmd_identifier_token5] = ACTIONS(920), - [aux_sym_cmd_identifier_token6] = ACTIONS(920), - [aux_sym_cmd_identifier_token7] = ACTIONS(920), - [aux_sym_cmd_identifier_token8] = ACTIONS(920), - [aux_sym_cmd_identifier_token9] = ACTIONS(920), - [aux_sym_cmd_identifier_token10] = ACTIONS(920), - [aux_sym_cmd_identifier_token11] = ACTIONS(920), - [aux_sym_cmd_identifier_token12] = ACTIONS(920), - [aux_sym_cmd_identifier_token13] = ACTIONS(920), - [aux_sym_cmd_identifier_token14] = ACTIONS(920), - [aux_sym_cmd_identifier_token15] = ACTIONS(920), - [aux_sym_cmd_identifier_token16] = ACTIONS(920), - [aux_sym_cmd_identifier_token17] = ACTIONS(920), - [aux_sym_cmd_identifier_token18] = ACTIONS(920), - [aux_sym_cmd_identifier_token19] = ACTIONS(920), - [aux_sym_cmd_identifier_token20] = ACTIONS(920), - [aux_sym_cmd_identifier_token21] = ACTIONS(920), - [aux_sym_cmd_identifier_token22] = ACTIONS(920), - [aux_sym_cmd_identifier_token23] = ACTIONS(920), - [aux_sym_cmd_identifier_token24] = ACTIONS(920), - [aux_sym_cmd_identifier_token25] = ACTIONS(920), - [aux_sym_cmd_identifier_token26] = ACTIONS(920), - [aux_sym_cmd_identifier_token27] = ACTIONS(920), - [aux_sym_cmd_identifier_token28] = ACTIONS(920), - [aux_sym_cmd_identifier_token29] = ACTIONS(920), - [aux_sym_cmd_identifier_token30] = ACTIONS(920), - [aux_sym_cmd_identifier_token31] = ACTIONS(920), - [aux_sym_cmd_identifier_token32] = ACTIONS(920), - [aux_sym_cmd_identifier_token33] = ACTIONS(920), - [aux_sym_cmd_identifier_token34] = ACTIONS(920), - [aux_sym_cmd_identifier_token35] = ACTIONS(920), - [aux_sym_cmd_identifier_token36] = ACTIONS(920), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(920), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [anon_sym_def] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_error] = ACTIONS(920), - [anon_sym_list] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_make] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_try] = ACTIONS(920), - [anon_sym_catch] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_new] = ACTIONS(920), - [anon_sym_as] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_list] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_new] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [480] = { [sym_comment] = STATE(480), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_alias] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_let_DASHenv] = ACTIONS(2200), - [anon_sym_mut] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [aux_sym_cmd_identifier_token1] = ACTIONS(2200), - [aux_sym_cmd_identifier_token2] = ACTIONS(2200), - [aux_sym_cmd_identifier_token3] = ACTIONS(2200), - [aux_sym_cmd_identifier_token4] = ACTIONS(2200), - [aux_sym_cmd_identifier_token5] = ACTIONS(2200), - [aux_sym_cmd_identifier_token6] = ACTIONS(2200), - [aux_sym_cmd_identifier_token7] = ACTIONS(2200), - [aux_sym_cmd_identifier_token8] = ACTIONS(2200), - [aux_sym_cmd_identifier_token9] = ACTIONS(2200), - [aux_sym_cmd_identifier_token10] = ACTIONS(2200), - [aux_sym_cmd_identifier_token11] = ACTIONS(2200), - [aux_sym_cmd_identifier_token12] = ACTIONS(2200), - [aux_sym_cmd_identifier_token13] = ACTIONS(2200), - [aux_sym_cmd_identifier_token14] = ACTIONS(2200), - [aux_sym_cmd_identifier_token15] = ACTIONS(2200), - [aux_sym_cmd_identifier_token16] = ACTIONS(2200), - [aux_sym_cmd_identifier_token17] = ACTIONS(2200), - [aux_sym_cmd_identifier_token18] = ACTIONS(2200), - [aux_sym_cmd_identifier_token19] = ACTIONS(2200), - [aux_sym_cmd_identifier_token20] = ACTIONS(2200), - [aux_sym_cmd_identifier_token21] = ACTIONS(2200), - [aux_sym_cmd_identifier_token22] = ACTIONS(2200), - [aux_sym_cmd_identifier_token23] = ACTIONS(2200), - [aux_sym_cmd_identifier_token24] = ACTIONS(2200), - [aux_sym_cmd_identifier_token25] = ACTIONS(2200), - [aux_sym_cmd_identifier_token26] = ACTIONS(2200), - [aux_sym_cmd_identifier_token27] = ACTIONS(2200), - [aux_sym_cmd_identifier_token28] = ACTIONS(2200), - [aux_sym_cmd_identifier_token29] = ACTIONS(2200), - [aux_sym_cmd_identifier_token30] = ACTIONS(2200), - [aux_sym_cmd_identifier_token31] = ACTIONS(2200), - [aux_sym_cmd_identifier_token32] = ACTIONS(2200), - [aux_sym_cmd_identifier_token33] = ACTIONS(2200), - [aux_sym_cmd_identifier_token34] = ACTIONS(2200), - [aux_sym_cmd_identifier_token35] = ACTIONS(2200), - [aux_sym_cmd_identifier_token36] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [anon_sym_null] = ACTIONS(2200), - [aux_sym_cmd_identifier_token38] = ACTIONS(2200), - [aux_sym_cmd_identifier_token39] = ACTIONS(2200), - [aux_sym_cmd_identifier_token40] = ACTIONS(2200), - [anon_sym_def] = ACTIONS(2200), - [anon_sym_export_DASHenv] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_RBRACK] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_DOLLAR] = ACTIONS(2200), - [anon_sym_error] = ACTIONS(2200), - [anon_sym_list] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_make] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_catch] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_source] = ACTIONS(2200), - [anon_sym_source_DASHenv] = ACTIONS(2200), - [anon_sym_register] = ACTIONS(2200), - [anon_sym_hide] = ACTIONS(2200), - [anon_sym_hide_DASHenv] = ACTIONS(2200), - [anon_sym_overlay] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2200), - [aux_sym__val_number_decimal_token1] = ACTIONS(2200), - [aux_sym__val_number_decimal_token2] = ACTIONS(2200), - [anon_sym_DOT2] = ACTIONS(2200), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(2200), - [aux_sym__val_number_token2] = ACTIONS(2200), - [aux_sym__val_number_token3] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [sym__str_single_quotes] = ACTIONS(2200), - [sym__str_back_ticks] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2200), - [sym__entry_separator] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(962), + [anon_sym_list] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_new] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), }, [481] = { [sym_comment] = STATE(481), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_alias] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_let_DASHenv] = ACTIONS(2204), - [anon_sym_mut] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [aux_sym_cmd_identifier_token1] = ACTIONS(2204), - [aux_sym_cmd_identifier_token2] = ACTIONS(2204), - [aux_sym_cmd_identifier_token3] = ACTIONS(2204), - [aux_sym_cmd_identifier_token4] = ACTIONS(2204), - [aux_sym_cmd_identifier_token5] = ACTIONS(2204), - [aux_sym_cmd_identifier_token6] = ACTIONS(2204), - [aux_sym_cmd_identifier_token7] = ACTIONS(2204), - [aux_sym_cmd_identifier_token8] = ACTIONS(2204), - [aux_sym_cmd_identifier_token9] = ACTIONS(2204), - [aux_sym_cmd_identifier_token10] = ACTIONS(2204), - [aux_sym_cmd_identifier_token11] = ACTIONS(2204), - [aux_sym_cmd_identifier_token12] = ACTIONS(2204), - [aux_sym_cmd_identifier_token13] = ACTIONS(2204), - [aux_sym_cmd_identifier_token14] = ACTIONS(2204), - [aux_sym_cmd_identifier_token15] = ACTIONS(2204), - [aux_sym_cmd_identifier_token16] = ACTIONS(2204), - [aux_sym_cmd_identifier_token17] = ACTIONS(2204), - [aux_sym_cmd_identifier_token18] = ACTIONS(2204), - [aux_sym_cmd_identifier_token19] = ACTIONS(2204), - [aux_sym_cmd_identifier_token20] = ACTIONS(2204), - [aux_sym_cmd_identifier_token21] = ACTIONS(2204), - [aux_sym_cmd_identifier_token22] = ACTIONS(2204), - [aux_sym_cmd_identifier_token23] = ACTIONS(2204), - [aux_sym_cmd_identifier_token24] = ACTIONS(2204), - [aux_sym_cmd_identifier_token25] = ACTIONS(2204), - [aux_sym_cmd_identifier_token26] = ACTIONS(2204), - [aux_sym_cmd_identifier_token27] = ACTIONS(2204), - [aux_sym_cmd_identifier_token28] = ACTIONS(2204), - [aux_sym_cmd_identifier_token29] = ACTIONS(2204), - [aux_sym_cmd_identifier_token30] = ACTIONS(2204), - [aux_sym_cmd_identifier_token31] = ACTIONS(2204), - [aux_sym_cmd_identifier_token32] = ACTIONS(2204), - [aux_sym_cmd_identifier_token33] = ACTIONS(2204), - [aux_sym_cmd_identifier_token34] = ACTIONS(2204), - [aux_sym_cmd_identifier_token35] = ACTIONS(2204), - [aux_sym_cmd_identifier_token36] = ACTIONS(2204), - [anon_sym_true] = ACTIONS(2204), - [anon_sym_false] = ACTIONS(2204), - [anon_sym_null] = ACTIONS(2204), - [aux_sym_cmd_identifier_token38] = ACTIONS(2204), - [aux_sym_cmd_identifier_token39] = ACTIONS(2204), - [aux_sym_cmd_identifier_token40] = ACTIONS(2204), - [anon_sym_def] = ACTIONS(2204), - [anon_sym_export_DASHenv] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_module] = ACTIONS(2204), - [anon_sym_use] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2204), - [anon_sym_error] = ACTIONS(2204), - [anon_sym_list] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2204), - [anon_sym_loop] = ACTIONS(2204), - [anon_sym_make] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_else] = ACTIONS(2204), - [anon_sym_match] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_catch] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_source] = ACTIONS(2204), - [anon_sym_source_DASHenv] = ACTIONS(2204), - [anon_sym_register] = ACTIONS(2204), - [anon_sym_hide] = ACTIONS(2204), - [anon_sym_hide_DASHenv] = ACTIONS(2204), - [anon_sym_overlay] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2204), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2204), - [aux_sym__val_number_decimal_token1] = ACTIONS(2204), - [aux_sym__val_number_decimal_token2] = ACTIONS(2204), - [anon_sym_DOT2] = ACTIONS(2204), - [aux_sym__val_number_decimal_token3] = ACTIONS(2204), - [aux_sym__val_number_token1] = ACTIONS(2204), - [aux_sym__val_number_token2] = ACTIONS(2204), - [aux_sym__val_number_token3] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [sym__str_single_quotes] = ACTIONS(2204), - [sym__str_back_ticks] = ACTIONS(2204), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2204), - [sym__entry_separator] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(986), + [anon_sym_list] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_new] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [sym__entry_separator] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(3), }, [482] = { [sym_comment] = STATE(482), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [aux_sym_cmd_identifier_token1] = ACTIONS(928), - [aux_sym_cmd_identifier_token2] = ACTIONS(928), - [aux_sym_cmd_identifier_token3] = ACTIONS(928), - [aux_sym_cmd_identifier_token4] = ACTIONS(928), - [aux_sym_cmd_identifier_token5] = ACTIONS(928), - [aux_sym_cmd_identifier_token6] = ACTIONS(928), - [aux_sym_cmd_identifier_token7] = ACTIONS(928), - [aux_sym_cmd_identifier_token8] = ACTIONS(928), - [aux_sym_cmd_identifier_token9] = ACTIONS(928), - [aux_sym_cmd_identifier_token10] = ACTIONS(928), - [aux_sym_cmd_identifier_token11] = ACTIONS(928), - [aux_sym_cmd_identifier_token12] = ACTIONS(928), - [aux_sym_cmd_identifier_token13] = ACTIONS(928), - [aux_sym_cmd_identifier_token14] = ACTIONS(928), - [aux_sym_cmd_identifier_token15] = ACTIONS(928), - [aux_sym_cmd_identifier_token16] = ACTIONS(928), - [aux_sym_cmd_identifier_token17] = ACTIONS(928), - [aux_sym_cmd_identifier_token18] = ACTIONS(928), - [aux_sym_cmd_identifier_token19] = ACTIONS(928), - [aux_sym_cmd_identifier_token20] = ACTIONS(928), - [aux_sym_cmd_identifier_token21] = ACTIONS(928), - [aux_sym_cmd_identifier_token22] = ACTIONS(928), - [aux_sym_cmd_identifier_token23] = ACTIONS(928), - [aux_sym_cmd_identifier_token24] = ACTIONS(928), - [aux_sym_cmd_identifier_token25] = ACTIONS(928), - [aux_sym_cmd_identifier_token26] = ACTIONS(928), - [aux_sym_cmd_identifier_token27] = ACTIONS(928), - [aux_sym_cmd_identifier_token28] = ACTIONS(928), - [aux_sym_cmd_identifier_token29] = ACTIONS(928), - [aux_sym_cmd_identifier_token30] = ACTIONS(928), - [aux_sym_cmd_identifier_token31] = ACTIONS(928), - [aux_sym_cmd_identifier_token32] = ACTIONS(928), - [aux_sym_cmd_identifier_token33] = ACTIONS(928), - [aux_sym_cmd_identifier_token34] = ACTIONS(928), - [aux_sym_cmd_identifier_token35] = ACTIONS(928), - [aux_sym_cmd_identifier_token36] = ACTIONS(928), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [anon_sym_null] = ACTIONS(928), - [aux_sym_cmd_identifier_token38] = ACTIONS(928), - [aux_sym_cmd_identifier_token39] = ACTIONS(928), - [aux_sym_cmd_identifier_token40] = ACTIONS(928), - [anon_sym_def] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_error] = ACTIONS(928), - [anon_sym_list] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_make] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_catch] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_as] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(928), - [aux_sym__val_number_decimal_token1] = ACTIONS(928), - [aux_sym__val_number_decimal_token2] = ACTIONS(928), - [anon_sym_DOT2] = ACTIONS(928), - [aux_sym__val_number_decimal_token3] = ACTIONS(928), - [aux_sym__val_number_token1] = ACTIONS(928), - [aux_sym__val_number_token2] = ACTIONS(928), - [aux_sym__val_number_token3] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym__str_single_quotes] = ACTIONS(928), - [sym__str_back_ticks] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(928), - [sym__entry_separator] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [aux_sym__immediate_decimal_token2] = ACTIONS(2147), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3), }, [483] = { [sym_comment] = STATE(483), - [anon_sym_export] = ACTIONS(912), - [anon_sym_alias] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_let_DASHenv] = ACTIONS(912), - [anon_sym_mut] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [aux_sym_cmd_identifier_token1] = ACTIONS(912), - [aux_sym_cmd_identifier_token2] = ACTIONS(912), - [aux_sym_cmd_identifier_token3] = ACTIONS(912), - [aux_sym_cmd_identifier_token4] = ACTIONS(912), - [aux_sym_cmd_identifier_token5] = ACTIONS(912), - [aux_sym_cmd_identifier_token6] = ACTIONS(912), - [aux_sym_cmd_identifier_token7] = ACTIONS(912), - [aux_sym_cmd_identifier_token8] = ACTIONS(912), - [aux_sym_cmd_identifier_token9] = ACTIONS(912), - [aux_sym_cmd_identifier_token10] = ACTIONS(912), - [aux_sym_cmd_identifier_token11] = ACTIONS(912), - [aux_sym_cmd_identifier_token12] = ACTIONS(912), - [aux_sym_cmd_identifier_token13] = ACTIONS(912), - [aux_sym_cmd_identifier_token14] = ACTIONS(912), - [aux_sym_cmd_identifier_token15] = ACTIONS(912), - [aux_sym_cmd_identifier_token16] = ACTIONS(912), - [aux_sym_cmd_identifier_token17] = ACTIONS(912), - [aux_sym_cmd_identifier_token18] = ACTIONS(912), - [aux_sym_cmd_identifier_token19] = ACTIONS(912), - [aux_sym_cmd_identifier_token20] = ACTIONS(912), - [aux_sym_cmd_identifier_token21] = ACTIONS(912), - [aux_sym_cmd_identifier_token22] = ACTIONS(912), - [aux_sym_cmd_identifier_token23] = ACTIONS(912), - [aux_sym_cmd_identifier_token24] = ACTIONS(912), - [aux_sym_cmd_identifier_token25] = ACTIONS(912), - [aux_sym_cmd_identifier_token26] = ACTIONS(912), - [aux_sym_cmd_identifier_token27] = ACTIONS(912), - [aux_sym_cmd_identifier_token28] = ACTIONS(912), - [aux_sym_cmd_identifier_token29] = ACTIONS(912), - [aux_sym_cmd_identifier_token30] = ACTIONS(912), - [aux_sym_cmd_identifier_token31] = ACTIONS(912), - [aux_sym_cmd_identifier_token32] = ACTIONS(912), - [aux_sym_cmd_identifier_token33] = ACTIONS(912), - [aux_sym_cmd_identifier_token34] = ACTIONS(912), - [aux_sym_cmd_identifier_token35] = ACTIONS(912), - [aux_sym_cmd_identifier_token36] = ACTIONS(912), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(912), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [anon_sym_def] = ACTIONS(912), - [anon_sym_export_DASHenv] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym_module] = ACTIONS(912), - [anon_sym_use] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(912), - [anon_sym_list] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [anon_sym_loop] = ACTIONS(912), - [anon_sym_make] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_match] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_try] = ACTIONS(912), - [anon_sym_catch] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_source] = ACTIONS(912), - [anon_sym_source_DASHenv] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_hide] = ACTIONS(912), - [anon_sym_hide_DASHenv] = ACTIONS(912), - [anon_sym_overlay] = ACTIONS(912), - [anon_sym_new] = ACTIONS(912), - [anon_sym_as] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(914), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [anon_sym_true] = ACTIONS(990), + [anon_sym_false] = ACTIONS(990), + [anon_sym_null] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_list] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_new] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [sym__entry_separator] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(990), [anon_sym_POUND] = ACTIONS(3), }, [484] = { [sym_comment] = STATE(484), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_alias] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_let_DASHenv] = ACTIONS(2208), - [anon_sym_mut] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [aux_sym_cmd_identifier_token1] = ACTIONS(2208), - [aux_sym_cmd_identifier_token2] = ACTIONS(2208), - [aux_sym_cmd_identifier_token3] = ACTIONS(2208), - [aux_sym_cmd_identifier_token4] = ACTIONS(2208), - [aux_sym_cmd_identifier_token5] = ACTIONS(2208), - [aux_sym_cmd_identifier_token6] = ACTIONS(2208), - [aux_sym_cmd_identifier_token7] = ACTIONS(2208), - [aux_sym_cmd_identifier_token8] = ACTIONS(2208), - [aux_sym_cmd_identifier_token9] = ACTIONS(2208), - [aux_sym_cmd_identifier_token10] = ACTIONS(2208), - [aux_sym_cmd_identifier_token11] = ACTIONS(2208), - [aux_sym_cmd_identifier_token12] = ACTIONS(2208), - [aux_sym_cmd_identifier_token13] = ACTIONS(2208), - [aux_sym_cmd_identifier_token14] = ACTIONS(2208), - [aux_sym_cmd_identifier_token15] = ACTIONS(2208), - [aux_sym_cmd_identifier_token16] = ACTIONS(2208), - [aux_sym_cmd_identifier_token17] = ACTIONS(2208), - [aux_sym_cmd_identifier_token18] = ACTIONS(2208), - [aux_sym_cmd_identifier_token19] = ACTIONS(2208), - [aux_sym_cmd_identifier_token20] = ACTIONS(2208), - [aux_sym_cmd_identifier_token21] = ACTIONS(2208), - [aux_sym_cmd_identifier_token22] = ACTIONS(2208), - [aux_sym_cmd_identifier_token23] = ACTIONS(2208), - [aux_sym_cmd_identifier_token24] = ACTIONS(2208), - [aux_sym_cmd_identifier_token25] = ACTIONS(2208), - [aux_sym_cmd_identifier_token26] = ACTIONS(2208), - [aux_sym_cmd_identifier_token27] = ACTIONS(2208), - [aux_sym_cmd_identifier_token28] = ACTIONS(2208), - [aux_sym_cmd_identifier_token29] = ACTIONS(2208), - [aux_sym_cmd_identifier_token30] = ACTIONS(2208), - [aux_sym_cmd_identifier_token31] = ACTIONS(2208), - [aux_sym_cmd_identifier_token32] = ACTIONS(2208), - [aux_sym_cmd_identifier_token33] = ACTIONS(2208), - [aux_sym_cmd_identifier_token34] = ACTIONS(2208), - [aux_sym_cmd_identifier_token35] = ACTIONS(2208), - [aux_sym_cmd_identifier_token36] = ACTIONS(2208), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2208), - [aux_sym_cmd_identifier_token38] = ACTIONS(2208), - [aux_sym_cmd_identifier_token39] = ACTIONS(2208), - [aux_sym_cmd_identifier_token40] = ACTIONS(2208), - [anon_sym_def] = ACTIONS(2208), - [anon_sym_export_DASHenv] = ACTIONS(2208), - [anon_sym_extern] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_use] = ACTIONS(2208), - [anon_sym_RBRACK] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_DOLLAR] = ACTIONS(2208), - [anon_sym_error] = ACTIONS(2208), - [anon_sym_list] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [anon_sym_loop] = ACTIONS(2208), - [anon_sym_make] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_match] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_catch] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_source] = ACTIONS(2208), - [anon_sym_source_DASHenv] = ACTIONS(2208), - [anon_sym_register] = ACTIONS(2208), - [anon_sym_hide] = ACTIONS(2208), - [anon_sym_hide_DASHenv] = ACTIONS(2208), - [anon_sym_overlay] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2208), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2208), - [aux_sym__val_number_decimal_token1] = ACTIONS(2208), - [aux_sym__val_number_decimal_token2] = ACTIONS(2208), - [anon_sym_DOT2] = ACTIONS(2208), - [aux_sym__val_number_decimal_token3] = ACTIONS(2208), - [aux_sym__val_number_token1] = ACTIONS(2208), - [aux_sym__val_number_token2] = ACTIONS(2208), - [aux_sym__val_number_token3] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [sym__str_single_quotes] = ACTIONS(2208), - [sym__str_back_ticks] = ACTIONS(2208), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2208), - [sym__entry_separator] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1648), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1648), + [aux_sym_cmd_identifier_token40] = ACTIONS(1648), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), + [aux_sym__immediate_decimal_token2] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1648), + [aux_sym__val_number_decimal_token3] = ACTIONS(1648), + [aux_sym__val_number_decimal_token4] = ACTIONS(1648), + [aux_sym__val_number_token1] = ACTIONS(1648), + [aux_sym__val_number_token2] = ACTIONS(1648), + [aux_sym__val_number_token3] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [sym__str_single_quotes] = ACTIONS(1648), + [sym__str_back_ticks] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), + [sym__entry_separator] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(3), }, [485] = { [sym_comment] = STATE(485), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_alias] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_let_DASHenv] = ACTIONS(2212), - [anon_sym_mut] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [aux_sym_cmd_identifier_token1] = ACTIONS(2212), - [aux_sym_cmd_identifier_token2] = ACTIONS(2212), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [aux_sym_cmd_identifier_token6] = ACTIONS(2212), - [aux_sym_cmd_identifier_token7] = ACTIONS(2212), - [aux_sym_cmd_identifier_token8] = ACTIONS(2212), - [aux_sym_cmd_identifier_token9] = ACTIONS(2212), - [aux_sym_cmd_identifier_token10] = ACTIONS(2212), - [aux_sym_cmd_identifier_token11] = ACTIONS(2212), - [aux_sym_cmd_identifier_token12] = ACTIONS(2212), - [aux_sym_cmd_identifier_token13] = ACTIONS(2212), - [aux_sym_cmd_identifier_token14] = ACTIONS(2212), - [aux_sym_cmd_identifier_token15] = ACTIONS(2212), - [aux_sym_cmd_identifier_token16] = ACTIONS(2212), - [aux_sym_cmd_identifier_token17] = ACTIONS(2212), - [aux_sym_cmd_identifier_token18] = ACTIONS(2212), - [aux_sym_cmd_identifier_token19] = ACTIONS(2212), - [aux_sym_cmd_identifier_token20] = ACTIONS(2212), - [aux_sym_cmd_identifier_token21] = ACTIONS(2212), - [aux_sym_cmd_identifier_token22] = ACTIONS(2212), - [aux_sym_cmd_identifier_token23] = ACTIONS(2212), - [aux_sym_cmd_identifier_token24] = ACTIONS(2212), - [aux_sym_cmd_identifier_token25] = ACTIONS(2212), - [aux_sym_cmd_identifier_token26] = ACTIONS(2212), - [aux_sym_cmd_identifier_token27] = ACTIONS(2212), - [aux_sym_cmd_identifier_token28] = ACTIONS(2212), - [aux_sym_cmd_identifier_token29] = ACTIONS(2212), - [aux_sym_cmd_identifier_token30] = ACTIONS(2212), - [aux_sym_cmd_identifier_token31] = ACTIONS(2212), - [aux_sym_cmd_identifier_token32] = ACTIONS(2212), - [aux_sym_cmd_identifier_token33] = ACTIONS(2212), - [aux_sym_cmd_identifier_token34] = ACTIONS(2212), - [aux_sym_cmd_identifier_token35] = ACTIONS(2212), - [aux_sym_cmd_identifier_token36] = ACTIONS(2212), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_null] = ACTIONS(2212), - [aux_sym_cmd_identifier_token38] = ACTIONS(2212), - [aux_sym_cmd_identifier_token39] = ACTIONS(2212), - [aux_sym_cmd_identifier_token40] = ACTIONS(2212), - [anon_sym_def] = ACTIONS(2212), - [anon_sym_export_DASHenv] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_module] = ACTIONS(2212), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_RBRACK] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_DOLLAR] = ACTIONS(2212), - [anon_sym_error] = ACTIONS(2212), - [anon_sym_list] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_in] = ACTIONS(2212), - [anon_sym_loop] = ACTIONS(2212), - [anon_sym_make] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_match] = ACTIONS(2212), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_catch] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_source] = ACTIONS(2212), - [anon_sym_source_DASHenv] = ACTIONS(2212), - [anon_sym_register] = ACTIONS(2212), - [anon_sym_hide] = ACTIONS(2212), - [anon_sym_hide_DASHenv] = ACTIONS(2212), - [anon_sym_overlay] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_as] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2212), - [aux_sym__val_number_decimal_token1] = ACTIONS(2212), - [aux_sym__val_number_decimal_token2] = ACTIONS(2212), - [anon_sym_DOT2] = ACTIONS(2212), - [aux_sym__val_number_decimal_token3] = ACTIONS(2212), - [aux_sym__val_number_token1] = ACTIONS(2212), - [aux_sym__val_number_token2] = ACTIONS(2212), - [aux_sym__val_number_token3] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2212), - [sym__str_single_quotes] = ACTIONS(2212), - [sym__str_back_ticks] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2212), - [sym__entry_separator] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(2247), + [aux_sym__immediate_decimal_token2] = ACTIONS(2249), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [486] = { [sym_comment] = STATE(486), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1350), - [aux_sym_cmd_identifier_token2] = ACTIONS(1350), - [aux_sym_cmd_identifier_token3] = ACTIONS(1350), - [aux_sym_cmd_identifier_token4] = ACTIONS(1350), - [aux_sym_cmd_identifier_token5] = ACTIONS(1350), - [aux_sym_cmd_identifier_token6] = ACTIONS(1350), - [aux_sym_cmd_identifier_token7] = ACTIONS(1350), - [aux_sym_cmd_identifier_token8] = ACTIONS(1350), - [aux_sym_cmd_identifier_token9] = ACTIONS(1350), - [aux_sym_cmd_identifier_token10] = ACTIONS(1350), - [aux_sym_cmd_identifier_token11] = ACTIONS(1350), - [aux_sym_cmd_identifier_token12] = ACTIONS(1350), - [aux_sym_cmd_identifier_token13] = ACTIONS(1350), - [aux_sym_cmd_identifier_token14] = ACTIONS(1350), - [aux_sym_cmd_identifier_token15] = ACTIONS(1350), - [aux_sym_cmd_identifier_token16] = ACTIONS(1350), - [aux_sym_cmd_identifier_token17] = ACTIONS(1350), - [aux_sym_cmd_identifier_token18] = ACTIONS(1350), - [aux_sym_cmd_identifier_token19] = ACTIONS(1350), - [aux_sym_cmd_identifier_token20] = ACTIONS(1350), - [aux_sym_cmd_identifier_token21] = ACTIONS(1350), - [aux_sym_cmd_identifier_token22] = ACTIONS(1350), - [aux_sym_cmd_identifier_token23] = ACTIONS(1350), - [aux_sym_cmd_identifier_token24] = ACTIONS(1350), - [aux_sym_cmd_identifier_token25] = ACTIONS(1350), - [aux_sym_cmd_identifier_token26] = ACTIONS(1350), - [aux_sym_cmd_identifier_token27] = ACTIONS(1350), - [aux_sym_cmd_identifier_token28] = ACTIONS(1350), - [aux_sym_cmd_identifier_token29] = ACTIONS(1350), - [aux_sym_cmd_identifier_token30] = ACTIONS(1350), - [aux_sym_cmd_identifier_token31] = ACTIONS(1350), - [aux_sym_cmd_identifier_token32] = ACTIONS(1350), - [aux_sym_cmd_identifier_token33] = ACTIONS(1350), - [aux_sym_cmd_identifier_token34] = ACTIONS(1350), - [aux_sym_cmd_identifier_token35] = ACTIONS(1350), - [aux_sym_cmd_identifier_token36] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1350), - [aux_sym_cmd_identifier_token38] = ACTIONS(1350), - [aux_sym_cmd_identifier_token39] = ACTIONS(1350), - [aux_sym_cmd_identifier_token40] = ACTIONS(1350), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1350), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1350), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_token1] = ACTIONS(1350), - [aux_sym__val_number_token2] = ACTIONS(1350), - [aux_sym__val_number_token3] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1350), - [sym__str_back_ticks] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1350), - [sym__entry_separator] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2251), + [anon_sym_alias] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_let_DASHenv] = ACTIONS(2251), + [anon_sym_mut] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [aux_sym_cmd_identifier_token1] = ACTIONS(2251), + [aux_sym_cmd_identifier_token2] = ACTIONS(2251), + [aux_sym_cmd_identifier_token3] = ACTIONS(2251), + [aux_sym_cmd_identifier_token4] = ACTIONS(2251), + [aux_sym_cmd_identifier_token5] = ACTIONS(2251), + [aux_sym_cmd_identifier_token6] = ACTIONS(2251), + [aux_sym_cmd_identifier_token7] = ACTIONS(2251), + [aux_sym_cmd_identifier_token8] = ACTIONS(2251), + [aux_sym_cmd_identifier_token9] = ACTIONS(2251), + [aux_sym_cmd_identifier_token10] = ACTIONS(2251), + [aux_sym_cmd_identifier_token11] = ACTIONS(2251), + [aux_sym_cmd_identifier_token12] = ACTIONS(2251), + [aux_sym_cmd_identifier_token13] = ACTIONS(2251), + [aux_sym_cmd_identifier_token14] = ACTIONS(2251), + [aux_sym_cmd_identifier_token15] = ACTIONS(2251), + [aux_sym_cmd_identifier_token16] = ACTIONS(2251), + [aux_sym_cmd_identifier_token17] = ACTIONS(2251), + [aux_sym_cmd_identifier_token18] = ACTIONS(2251), + [aux_sym_cmd_identifier_token19] = ACTIONS(2251), + [aux_sym_cmd_identifier_token20] = ACTIONS(2251), + [aux_sym_cmd_identifier_token21] = ACTIONS(2251), + [aux_sym_cmd_identifier_token22] = ACTIONS(2251), + [aux_sym_cmd_identifier_token23] = ACTIONS(2251), + [aux_sym_cmd_identifier_token24] = ACTIONS(2251), + [aux_sym_cmd_identifier_token25] = ACTIONS(2251), + [aux_sym_cmd_identifier_token26] = ACTIONS(2251), + [aux_sym_cmd_identifier_token27] = ACTIONS(2251), + [aux_sym_cmd_identifier_token28] = ACTIONS(2251), + [aux_sym_cmd_identifier_token29] = ACTIONS(2251), + [aux_sym_cmd_identifier_token30] = ACTIONS(2251), + [aux_sym_cmd_identifier_token31] = ACTIONS(2251), + [aux_sym_cmd_identifier_token32] = ACTIONS(2251), + [aux_sym_cmd_identifier_token33] = ACTIONS(2251), + [aux_sym_cmd_identifier_token34] = ACTIONS(2251), + [aux_sym_cmd_identifier_token35] = ACTIONS(2251), + [aux_sym_cmd_identifier_token36] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(2251), + [anon_sym_false] = ACTIONS(2251), + [anon_sym_null] = ACTIONS(2251), + [aux_sym_cmd_identifier_token38] = ACTIONS(2251), + [aux_sym_cmd_identifier_token39] = ACTIONS(2251), + [aux_sym_cmd_identifier_token40] = ACTIONS(2251), + [anon_sym_def] = ACTIONS(2251), + [anon_sym_export_DASHenv] = ACTIONS(2251), + [anon_sym_extern] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_RBRACK] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_DOLLAR] = ACTIONS(2251), + [anon_sym_error] = ACTIONS(2251), + [anon_sym_list] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_in] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_make] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_do] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [anon_sym_catch] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_source] = ACTIONS(2251), + [anon_sym_source_DASHenv] = ACTIONS(2251), + [anon_sym_register] = ACTIONS(2251), + [anon_sym_hide] = ACTIONS(2251), + [anon_sym_hide_DASHenv] = ACTIONS(2251), + [anon_sym_overlay] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2251), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2251), + [aux_sym__val_number_decimal_token1] = ACTIONS(2251), + [aux_sym__val_number_decimal_token2] = ACTIONS(2251), + [aux_sym__val_number_decimal_token3] = ACTIONS(2251), + [aux_sym__val_number_decimal_token4] = ACTIONS(2251), + [aux_sym__val_number_token1] = ACTIONS(2251), + [aux_sym__val_number_token2] = ACTIONS(2251), + [aux_sym__val_number_token3] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [sym__str_single_quotes] = ACTIONS(2251), + [sym__str_back_ticks] = ACTIONS(2251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2251), + [sym__entry_separator] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(3), }, [487] = { - [sym__expr_parenthesized_immediate] = STATE(7789), [sym_comment] = STATE(487), - [anon_sym_export] = ACTIONS(2065), - [anon_sym_alias] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_let_DASHenv] = ACTIONS(2065), - [anon_sym_mut] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [aux_sym_cmd_identifier_token1] = ACTIONS(2065), - [aux_sym_cmd_identifier_token2] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2065), - [aux_sym_cmd_identifier_token4] = ACTIONS(2065), - [aux_sym_cmd_identifier_token5] = ACTIONS(2065), - [aux_sym_cmd_identifier_token6] = ACTIONS(2065), - [aux_sym_cmd_identifier_token7] = ACTIONS(2065), - [aux_sym_cmd_identifier_token8] = ACTIONS(2065), - [aux_sym_cmd_identifier_token9] = ACTIONS(2065), - [aux_sym_cmd_identifier_token10] = ACTIONS(2065), - [aux_sym_cmd_identifier_token11] = ACTIONS(2065), - [aux_sym_cmd_identifier_token12] = ACTIONS(2065), - [aux_sym_cmd_identifier_token13] = ACTIONS(2065), - [aux_sym_cmd_identifier_token14] = ACTIONS(2065), - [aux_sym_cmd_identifier_token15] = ACTIONS(2065), - [aux_sym_cmd_identifier_token16] = ACTIONS(2065), - [aux_sym_cmd_identifier_token17] = ACTIONS(2065), - [aux_sym_cmd_identifier_token18] = ACTIONS(2065), - [aux_sym_cmd_identifier_token19] = ACTIONS(2065), - [aux_sym_cmd_identifier_token20] = ACTIONS(2065), - [aux_sym_cmd_identifier_token21] = ACTIONS(2065), - [aux_sym_cmd_identifier_token22] = ACTIONS(2065), - [aux_sym_cmd_identifier_token23] = ACTIONS(2065), - [aux_sym_cmd_identifier_token24] = ACTIONS(2065), - [aux_sym_cmd_identifier_token25] = ACTIONS(2065), - [aux_sym_cmd_identifier_token26] = ACTIONS(2065), - [aux_sym_cmd_identifier_token27] = ACTIONS(2065), - [aux_sym_cmd_identifier_token28] = ACTIONS(2065), - [aux_sym_cmd_identifier_token29] = ACTIONS(2065), - [aux_sym_cmd_identifier_token30] = ACTIONS(2065), - [aux_sym_cmd_identifier_token31] = ACTIONS(2065), - [aux_sym_cmd_identifier_token32] = ACTIONS(2065), - [aux_sym_cmd_identifier_token33] = ACTIONS(2065), - [aux_sym_cmd_identifier_token34] = ACTIONS(2065), - [aux_sym_cmd_identifier_token35] = ACTIONS(2065), - [aux_sym_cmd_identifier_token36] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = ACTIONS(2067), - [anon_sym_null] = ACTIONS(2067), - [aux_sym_cmd_identifier_token38] = ACTIONS(2065), - [aux_sym_cmd_identifier_token39] = ACTIONS(2067), - [aux_sym_cmd_identifier_token40] = ACTIONS(2067), - [anon_sym_def] = ACTIONS(2065), - [anon_sym_export_DASHenv] = ACTIONS(2065), - [anon_sym_extern] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_error] = ACTIONS(2065), - [anon_sym_list] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [anon_sym_loop] = ACTIONS(2065), - [anon_sym_make] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_else] = ACTIONS(2065), - [anon_sym_match] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2065), - [anon_sym_catch] = ACTIONS(2065), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_source] = ACTIONS(2065), - [anon_sym_source_DASHenv] = ACTIONS(2065), - [anon_sym_register] = ACTIONS(2065), - [anon_sym_hide] = ACTIONS(2065), - [anon_sym_hide_DASHenv] = ACTIONS(2065), - [anon_sym_overlay] = ACTIONS(2065), - [anon_sym_new] = ACTIONS(2065), - [anon_sym_as] = ACTIONS(2065), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2067), - [aux_sym__val_number_decimal_token1] = ACTIONS(2065), - [aux_sym__val_number_decimal_token2] = ACTIONS(2067), - [anon_sym_DOT2] = ACTIONS(2065), - [aux_sym__val_number_decimal_token3] = ACTIONS(2067), - [aux_sym__val_number_token1] = ACTIONS(2067), - [aux_sym__val_number_token2] = ACTIONS(2067), - [aux_sym__val_number_token3] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [sym__str_single_quotes] = ACTIONS(2067), - [sym__str_back_ticks] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [aux_sym_record_entry_token1] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(247), }, [488] = { [sym_comment] = STATE(488), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_alias] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_let_DASHenv] = ACTIONS(2216), - [anon_sym_mut] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [aux_sym_cmd_identifier_token1] = ACTIONS(2216), - [aux_sym_cmd_identifier_token2] = ACTIONS(2216), - [aux_sym_cmd_identifier_token3] = ACTIONS(2216), - [aux_sym_cmd_identifier_token4] = ACTIONS(2216), - [aux_sym_cmd_identifier_token5] = ACTIONS(2216), - [aux_sym_cmd_identifier_token6] = ACTIONS(2216), - [aux_sym_cmd_identifier_token7] = ACTIONS(2216), - [aux_sym_cmd_identifier_token8] = ACTIONS(2216), - [aux_sym_cmd_identifier_token9] = ACTIONS(2216), - [aux_sym_cmd_identifier_token10] = ACTIONS(2216), - [aux_sym_cmd_identifier_token11] = ACTIONS(2216), - [aux_sym_cmd_identifier_token12] = ACTIONS(2216), - [aux_sym_cmd_identifier_token13] = ACTIONS(2216), - [aux_sym_cmd_identifier_token14] = ACTIONS(2216), - [aux_sym_cmd_identifier_token15] = ACTIONS(2216), - [aux_sym_cmd_identifier_token16] = ACTIONS(2216), - [aux_sym_cmd_identifier_token17] = ACTIONS(2216), - [aux_sym_cmd_identifier_token18] = ACTIONS(2216), - [aux_sym_cmd_identifier_token19] = ACTIONS(2216), - [aux_sym_cmd_identifier_token20] = ACTIONS(2216), - [aux_sym_cmd_identifier_token21] = ACTIONS(2216), - [aux_sym_cmd_identifier_token22] = ACTIONS(2216), - [aux_sym_cmd_identifier_token23] = ACTIONS(2216), - [aux_sym_cmd_identifier_token24] = ACTIONS(2216), - [aux_sym_cmd_identifier_token25] = ACTIONS(2216), - [aux_sym_cmd_identifier_token26] = ACTIONS(2216), - [aux_sym_cmd_identifier_token27] = ACTIONS(2216), - [aux_sym_cmd_identifier_token28] = ACTIONS(2216), - [aux_sym_cmd_identifier_token29] = ACTIONS(2216), - [aux_sym_cmd_identifier_token30] = ACTIONS(2216), - [aux_sym_cmd_identifier_token31] = ACTIONS(2216), - [aux_sym_cmd_identifier_token32] = ACTIONS(2216), - [aux_sym_cmd_identifier_token33] = ACTIONS(2216), - [aux_sym_cmd_identifier_token34] = ACTIONS(2216), - [aux_sym_cmd_identifier_token35] = ACTIONS(2216), - [aux_sym_cmd_identifier_token36] = ACTIONS(2216), - [anon_sym_true] = ACTIONS(2216), - [anon_sym_false] = ACTIONS(2216), - [anon_sym_null] = ACTIONS(2216), - [aux_sym_cmd_identifier_token38] = ACTIONS(2216), - [aux_sym_cmd_identifier_token39] = ACTIONS(2216), - [aux_sym_cmd_identifier_token40] = ACTIONS(2216), - [anon_sym_def] = ACTIONS(2216), - [anon_sym_export_DASHenv] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_RBRACK] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_DOLLAR] = ACTIONS(2216), - [anon_sym_error] = ACTIONS(2216), - [anon_sym_list] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_loop] = ACTIONS(2216), - [anon_sym_make] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_match] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_catch] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_source] = ACTIONS(2216), - [anon_sym_source_DASHenv] = ACTIONS(2216), - [anon_sym_register] = ACTIONS(2216), - [anon_sym_hide] = ACTIONS(2216), - [anon_sym_hide_DASHenv] = ACTIONS(2216), - [anon_sym_overlay] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2216), - [aux_sym__val_number_decimal_token2] = ACTIONS(2216), - [anon_sym_DOT2] = ACTIONS(2216), - [aux_sym__val_number_decimal_token3] = ACTIONS(2216), - [aux_sym__val_number_token1] = ACTIONS(2216), - [aux_sym__val_number_token2] = ACTIONS(2216), - [aux_sym__val_number_token3] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [sym__str_single_quotes] = ACTIONS(2216), - [sym__str_back_ticks] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2216), - [sym__entry_separator] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_alias] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_let_DASHenv] = ACTIONS(2255), + [anon_sym_mut] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [aux_sym_cmd_identifier_token1] = ACTIONS(2255), + [aux_sym_cmd_identifier_token2] = ACTIONS(2255), + [aux_sym_cmd_identifier_token3] = ACTIONS(2255), + [aux_sym_cmd_identifier_token4] = ACTIONS(2255), + [aux_sym_cmd_identifier_token5] = ACTIONS(2255), + [aux_sym_cmd_identifier_token6] = ACTIONS(2255), + [aux_sym_cmd_identifier_token7] = ACTIONS(2255), + [aux_sym_cmd_identifier_token8] = ACTIONS(2255), + [aux_sym_cmd_identifier_token9] = ACTIONS(2255), + [aux_sym_cmd_identifier_token10] = ACTIONS(2255), + [aux_sym_cmd_identifier_token11] = ACTIONS(2255), + [aux_sym_cmd_identifier_token12] = ACTIONS(2255), + [aux_sym_cmd_identifier_token13] = ACTIONS(2255), + [aux_sym_cmd_identifier_token14] = ACTIONS(2255), + [aux_sym_cmd_identifier_token15] = ACTIONS(2255), + [aux_sym_cmd_identifier_token16] = ACTIONS(2255), + [aux_sym_cmd_identifier_token17] = ACTIONS(2255), + [aux_sym_cmd_identifier_token18] = ACTIONS(2255), + [aux_sym_cmd_identifier_token19] = ACTIONS(2255), + [aux_sym_cmd_identifier_token20] = ACTIONS(2255), + [aux_sym_cmd_identifier_token21] = ACTIONS(2255), + [aux_sym_cmd_identifier_token22] = ACTIONS(2255), + [aux_sym_cmd_identifier_token23] = ACTIONS(2255), + [aux_sym_cmd_identifier_token24] = ACTIONS(2255), + [aux_sym_cmd_identifier_token25] = ACTIONS(2255), + [aux_sym_cmd_identifier_token26] = ACTIONS(2255), + [aux_sym_cmd_identifier_token27] = ACTIONS(2255), + [aux_sym_cmd_identifier_token28] = ACTIONS(2255), + [aux_sym_cmd_identifier_token29] = ACTIONS(2255), + [aux_sym_cmd_identifier_token30] = ACTIONS(2255), + [aux_sym_cmd_identifier_token31] = ACTIONS(2255), + [aux_sym_cmd_identifier_token32] = ACTIONS(2255), + [aux_sym_cmd_identifier_token33] = ACTIONS(2255), + [aux_sym_cmd_identifier_token34] = ACTIONS(2255), + [aux_sym_cmd_identifier_token35] = ACTIONS(2255), + [aux_sym_cmd_identifier_token36] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(2255), + [anon_sym_false] = ACTIONS(2255), + [anon_sym_null] = ACTIONS(2255), + [aux_sym_cmd_identifier_token38] = ACTIONS(2255), + [aux_sym_cmd_identifier_token39] = ACTIONS(2255), + [aux_sym_cmd_identifier_token40] = ACTIONS(2255), + [anon_sym_def] = ACTIONS(2255), + [anon_sym_export_DASHenv] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym_module] = ACTIONS(2255), + [anon_sym_use] = ACTIONS(2255), + [anon_sym_RBRACK] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_error] = ACTIONS(2255), + [anon_sym_list] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_in] = ACTIONS(2255), + [anon_sym_loop] = ACTIONS(2255), + [anon_sym_make] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_else] = ACTIONS(2255), + [anon_sym_match] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_source] = ACTIONS(2255), + [anon_sym_source_DASHenv] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_hide] = ACTIONS(2255), + [anon_sym_hide_DASHenv] = ACTIONS(2255), + [anon_sym_overlay] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_as] = ACTIONS(2255), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2255), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2255), + [aux_sym__val_number_decimal_token1] = ACTIONS(2255), + [aux_sym__val_number_decimal_token2] = ACTIONS(2255), + [aux_sym__val_number_decimal_token3] = ACTIONS(2255), + [aux_sym__val_number_decimal_token4] = ACTIONS(2255), + [aux_sym__val_number_token1] = ACTIONS(2255), + [aux_sym__val_number_token2] = ACTIONS(2255), + [aux_sym__val_number_token3] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2255), + [sym__str_single_quotes] = ACTIONS(2255), + [sym__str_back_ticks] = ACTIONS(2255), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2255), + [sym__entry_separator] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(3), }, [489] = { [sym_comment] = STATE(489), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_alias] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_let_DASHenv] = ACTIONS(2216), - [anon_sym_mut] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [aux_sym_cmd_identifier_token1] = ACTIONS(2216), - [aux_sym_cmd_identifier_token2] = ACTIONS(2216), - [aux_sym_cmd_identifier_token3] = ACTIONS(2216), - [aux_sym_cmd_identifier_token4] = ACTIONS(2216), - [aux_sym_cmd_identifier_token5] = ACTIONS(2216), - [aux_sym_cmd_identifier_token6] = ACTIONS(2216), - [aux_sym_cmd_identifier_token7] = ACTIONS(2216), - [aux_sym_cmd_identifier_token8] = ACTIONS(2216), - [aux_sym_cmd_identifier_token9] = ACTIONS(2216), - [aux_sym_cmd_identifier_token10] = ACTIONS(2216), - [aux_sym_cmd_identifier_token11] = ACTIONS(2216), - [aux_sym_cmd_identifier_token12] = ACTIONS(2216), - [aux_sym_cmd_identifier_token13] = ACTIONS(2216), - [aux_sym_cmd_identifier_token14] = ACTIONS(2216), - [aux_sym_cmd_identifier_token15] = ACTIONS(2216), - [aux_sym_cmd_identifier_token16] = ACTIONS(2216), - [aux_sym_cmd_identifier_token17] = ACTIONS(2216), - [aux_sym_cmd_identifier_token18] = ACTIONS(2216), - [aux_sym_cmd_identifier_token19] = ACTIONS(2216), - [aux_sym_cmd_identifier_token20] = ACTIONS(2216), - [aux_sym_cmd_identifier_token21] = ACTIONS(2216), - [aux_sym_cmd_identifier_token22] = ACTIONS(2216), - [aux_sym_cmd_identifier_token23] = ACTIONS(2216), - [aux_sym_cmd_identifier_token24] = ACTIONS(2216), - [aux_sym_cmd_identifier_token25] = ACTIONS(2216), - [aux_sym_cmd_identifier_token26] = ACTIONS(2216), - [aux_sym_cmd_identifier_token27] = ACTIONS(2216), - [aux_sym_cmd_identifier_token28] = ACTIONS(2216), - [aux_sym_cmd_identifier_token29] = ACTIONS(2216), - [aux_sym_cmd_identifier_token30] = ACTIONS(2216), - [aux_sym_cmd_identifier_token31] = ACTIONS(2216), - [aux_sym_cmd_identifier_token32] = ACTIONS(2216), - [aux_sym_cmd_identifier_token33] = ACTIONS(2216), - [aux_sym_cmd_identifier_token34] = ACTIONS(2216), - [aux_sym_cmd_identifier_token35] = ACTIONS(2216), - [aux_sym_cmd_identifier_token36] = ACTIONS(2216), - [anon_sym_true] = ACTIONS(2216), - [anon_sym_false] = ACTIONS(2216), - [anon_sym_null] = ACTIONS(2216), - [aux_sym_cmd_identifier_token38] = ACTIONS(2216), - [aux_sym_cmd_identifier_token39] = ACTIONS(2216), - [aux_sym_cmd_identifier_token40] = ACTIONS(2216), - [anon_sym_def] = ACTIONS(2216), - [anon_sym_export_DASHenv] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_RBRACK] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_DOLLAR] = ACTIONS(2216), - [anon_sym_error] = ACTIONS(2216), - [anon_sym_list] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_loop] = ACTIONS(2216), - [anon_sym_make] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_match] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_catch] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_source] = ACTIONS(2216), - [anon_sym_source_DASHenv] = ACTIONS(2216), - [anon_sym_register] = ACTIONS(2216), - [anon_sym_hide] = ACTIONS(2216), - [anon_sym_hide_DASHenv] = ACTIONS(2216), - [anon_sym_overlay] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2216), - [aux_sym__val_number_decimal_token2] = ACTIONS(2216), - [anon_sym_DOT2] = ACTIONS(2216), - [aux_sym__val_number_decimal_token3] = ACTIONS(2216), - [aux_sym__val_number_token1] = ACTIONS(2216), - [aux_sym__val_number_token2] = ACTIONS(2216), - [aux_sym__val_number_token3] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [sym__str_single_quotes] = ACTIONS(2216), - [sym__str_back_ticks] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2216), - [sym__entry_separator] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token2] = ACTIONS(1867), + [aux_sym_cmd_identifier_token3] = ACTIONS(1867), + [aux_sym_cmd_identifier_token4] = ACTIONS(1867), + [aux_sym_cmd_identifier_token5] = ACTIONS(1867), + [aux_sym_cmd_identifier_token6] = ACTIONS(1867), + [aux_sym_cmd_identifier_token7] = ACTIONS(1867), + [aux_sym_cmd_identifier_token8] = ACTIONS(1867), + [aux_sym_cmd_identifier_token9] = ACTIONS(1867), + [aux_sym_cmd_identifier_token10] = ACTIONS(1867), + [aux_sym_cmd_identifier_token11] = ACTIONS(1867), + [aux_sym_cmd_identifier_token12] = ACTIONS(1867), + [aux_sym_cmd_identifier_token13] = ACTIONS(1867), + [aux_sym_cmd_identifier_token14] = ACTIONS(1867), + [aux_sym_cmd_identifier_token15] = ACTIONS(1867), + [aux_sym_cmd_identifier_token16] = ACTIONS(1867), + [aux_sym_cmd_identifier_token17] = ACTIONS(1867), + [aux_sym_cmd_identifier_token18] = ACTIONS(1867), + [aux_sym_cmd_identifier_token19] = ACTIONS(1867), + [aux_sym_cmd_identifier_token20] = ACTIONS(1867), + [aux_sym_cmd_identifier_token21] = ACTIONS(1867), + [aux_sym_cmd_identifier_token22] = ACTIONS(1867), + [aux_sym_cmd_identifier_token23] = ACTIONS(1867), + [aux_sym_cmd_identifier_token24] = ACTIONS(1867), + [aux_sym_cmd_identifier_token25] = ACTIONS(1867), + [aux_sym_cmd_identifier_token26] = ACTIONS(1867), + [aux_sym_cmd_identifier_token27] = ACTIONS(1867), + [aux_sym_cmd_identifier_token28] = ACTIONS(1867), + [aux_sym_cmd_identifier_token29] = ACTIONS(1867), + [aux_sym_cmd_identifier_token30] = ACTIONS(1867), + [aux_sym_cmd_identifier_token31] = ACTIONS(1867), + [aux_sym_cmd_identifier_token32] = ACTIONS(1867), + [aux_sym_cmd_identifier_token33] = ACTIONS(1867), + [aux_sym_cmd_identifier_token34] = ACTIONS(1867), + [aux_sym_cmd_identifier_token35] = ACTIONS(1867), + [aux_sym_cmd_identifier_token36] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_null] = ACTIONS(1867), + [aux_sym_cmd_identifier_token38] = ACTIONS(1867), + [aux_sym_cmd_identifier_token39] = ACTIONS(1867), + [aux_sym_cmd_identifier_token40] = ACTIONS(1867), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_list] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_make] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_as] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1867), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1867), + [aux_sym__val_number_decimal_token3] = ACTIONS(1867), + [aux_sym__val_number_decimal_token4] = ACTIONS(1867), + [aux_sym__val_number_token1] = ACTIONS(1867), + [aux_sym__val_number_token2] = ACTIONS(1867), + [aux_sym__val_number_token3] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [sym__str_single_quotes] = ACTIONS(1867), + [sym__str_back_ticks] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), + [sym__entry_separator] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(3), }, [490] = { + [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(490), - [aux_sym__multiple_types_repeat1] = STATE(511), - [anon_sym_export] = ACTIONS(2220), - [anon_sym_alias] = ACTIONS(2220), - [anon_sym_let] = ACTIONS(2220), - [anon_sym_let_DASHenv] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [aux_sym_cmd_identifier_token1] = ACTIONS(2220), - [aux_sym_cmd_identifier_token2] = ACTIONS(2220), - [aux_sym_cmd_identifier_token3] = ACTIONS(2220), - [aux_sym_cmd_identifier_token4] = ACTIONS(2220), - [aux_sym_cmd_identifier_token5] = ACTIONS(2220), - [aux_sym_cmd_identifier_token6] = ACTIONS(2220), - [aux_sym_cmd_identifier_token7] = ACTIONS(2220), - [aux_sym_cmd_identifier_token8] = ACTIONS(2220), - [aux_sym_cmd_identifier_token9] = ACTIONS(2220), - [aux_sym_cmd_identifier_token10] = ACTIONS(2220), - [aux_sym_cmd_identifier_token11] = ACTIONS(2220), - [aux_sym_cmd_identifier_token12] = ACTIONS(2220), - [aux_sym_cmd_identifier_token13] = ACTIONS(2220), - [aux_sym_cmd_identifier_token14] = ACTIONS(2220), - [aux_sym_cmd_identifier_token15] = ACTIONS(2220), - [aux_sym_cmd_identifier_token16] = ACTIONS(2220), - [aux_sym_cmd_identifier_token17] = ACTIONS(2220), - [aux_sym_cmd_identifier_token18] = ACTIONS(2220), - [aux_sym_cmd_identifier_token19] = ACTIONS(2220), - [aux_sym_cmd_identifier_token20] = ACTIONS(2220), - [aux_sym_cmd_identifier_token21] = ACTIONS(2220), - [aux_sym_cmd_identifier_token22] = ACTIONS(2220), - [aux_sym_cmd_identifier_token23] = ACTIONS(2220), - [aux_sym_cmd_identifier_token24] = ACTIONS(2220), - [aux_sym_cmd_identifier_token25] = ACTIONS(2220), - [aux_sym_cmd_identifier_token26] = ACTIONS(2220), - [aux_sym_cmd_identifier_token27] = ACTIONS(2220), - [aux_sym_cmd_identifier_token28] = ACTIONS(2220), - [aux_sym_cmd_identifier_token29] = ACTIONS(2220), - [aux_sym_cmd_identifier_token30] = ACTIONS(2220), - [aux_sym_cmd_identifier_token31] = ACTIONS(2220), - [aux_sym_cmd_identifier_token32] = ACTIONS(2220), - [aux_sym_cmd_identifier_token33] = ACTIONS(2220), - [aux_sym_cmd_identifier_token34] = ACTIONS(2220), - [aux_sym_cmd_identifier_token35] = ACTIONS(2220), - [aux_sym_cmd_identifier_token36] = ACTIONS(2220), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2220), - [aux_sym_cmd_identifier_token38] = ACTIONS(2220), - [aux_sym_cmd_identifier_token39] = ACTIONS(2220), - [aux_sym_cmd_identifier_token40] = ACTIONS(2220), - [anon_sym_def] = ACTIONS(2220), - [anon_sym_export_DASHenv] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_module] = ACTIONS(2220), - [anon_sym_use] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_error] = ACTIONS(2220), - [anon_sym_list] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_in] = ACTIONS(2220), - [anon_sym_loop] = ACTIONS(2220), - [anon_sym_make] = ACTIONS(2220), - [anon_sym_while] = ACTIONS(2220), - [anon_sym_do] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_else] = ACTIONS(2220), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2220), - [anon_sym_catch] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_source] = ACTIONS(2220), - [anon_sym_source_DASHenv] = ACTIONS(2220), - [anon_sym_register] = ACTIONS(2220), - [anon_sym_hide] = ACTIONS(2220), - [anon_sym_hide_DASHenv] = ACTIONS(2220), - [anon_sym_overlay] = ACTIONS(2220), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_as] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2220), - [aux_sym__val_number_decimal_token1] = ACTIONS(2220), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [anon_sym_DOT2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2220), - [aux_sym__val_number_token1] = ACTIONS(2220), - [aux_sym__val_number_token2] = ACTIONS(2220), - [aux_sym__val_number_token3] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym__str_single_quotes] = ACTIONS(2220), - [sym__str_back_ticks] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2220), - [sym__entry_separator] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2203), + [anon_sym_alias] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_let_DASHenv] = ACTIONS(2203), + [anon_sym_mut] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [aux_sym_cmd_identifier_token1] = ACTIONS(2203), + [aux_sym_cmd_identifier_token2] = ACTIONS(2203), + [aux_sym_cmd_identifier_token3] = ACTIONS(2203), + [aux_sym_cmd_identifier_token4] = ACTIONS(2203), + [aux_sym_cmd_identifier_token5] = ACTIONS(2203), + [aux_sym_cmd_identifier_token6] = ACTIONS(2203), + [aux_sym_cmd_identifier_token7] = ACTIONS(2203), + [aux_sym_cmd_identifier_token8] = ACTIONS(2203), + [aux_sym_cmd_identifier_token9] = ACTIONS(2203), + [aux_sym_cmd_identifier_token10] = ACTIONS(2203), + [aux_sym_cmd_identifier_token11] = ACTIONS(2203), + [aux_sym_cmd_identifier_token12] = ACTIONS(2203), + [aux_sym_cmd_identifier_token13] = ACTIONS(2203), + [aux_sym_cmd_identifier_token14] = ACTIONS(2203), + [aux_sym_cmd_identifier_token15] = ACTIONS(2203), + [aux_sym_cmd_identifier_token16] = ACTIONS(2203), + [aux_sym_cmd_identifier_token17] = ACTIONS(2203), + [aux_sym_cmd_identifier_token18] = ACTIONS(2203), + [aux_sym_cmd_identifier_token19] = ACTIONS(2203), + [aux_sym_cmd_identifier_token20] = ACTIONS(2203), + [aux_sym_cmd_identifier_token21] = ACTIONS(2203), + [aux_sym_cmd_identifier_token22] = ACTIONS(2203), + [aux_sym_cmd_identifier_token23] = ACTIONS(2203), + [aux_sym_cmd_identifier_token24] = ACTIONS(2203), + [aux_sym_cmd_identifier_token25] = ACTIONS(2203), + [aux_sym_cmd_identifier_token26] = ACTIONS(2203), + [aux_sym_cmd_identifier_token27] = ACTIONS(2203), + [aux_sym_cmd_identifier_token28] = ACTIONS(2203), + [aux_sym_cmd_identifier_token29] = ACTIONS(2203), + [aux_sym_cmd_identifier_token30] = ACTIONS(2203), + [aux_sym_cmd_identifier_token31] = ACTIONS(2203), + [aux_sym_cmd_identifier_token32] = ACTIONS(2203), + [aux_sym_cmd_identifier_token33] = ACTIONS(2203), + [aux_sym_cmd_identifier_token34] = ACTIONS(2203), + [aux_sym_cmd_identifier_token35] = ACTIONS(2203), + [aux_sym_cmd_identifier_token36] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_null] = ACTIONS(2205), + [aux_sym_cmd_identifier_token38] = ACTIONS(2203), + [aux_sym_cmd_identifier_token39] = ACTIONS(2205), + [aux_sym_cmd_identifier_token40] = ACTIONS(2205), + [anon_sym_def] = ACTIONS(2203), + [anon_sym_export_DASHenv] = ACTIONS(2203), + [anon_sym_extern] = ACTIONS(2203), + [anon_sym_module] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_DOLLAR] = ACTIONS(2205), + [anon_sym_error] = ACTIONS(2203), + [anon_sym_list] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_in] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_make] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [anon_sym_do] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_else] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2203), + [anon_sym_catch] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_source] = ACTIONS(2203), + [anon_sym_source_DASHenv] = ACTIONS(2203), + [anon_sym_register] = ACTIONS(2203), + [anon_sym_hide] = ACTIONS(2203), + [anon_sym_hide_DASHenv] = ACTIONS(2203), + [anon_sym_overlay] = ACTIONS(2203), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2205), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2205), + [aux_sym__val_number_decimal_token1] = ACTIONS(2203), + [aux_sym__val_number_decimal_token2] = ACTIONS(2205), + [aux_sym__val_number_decimal_token3] = ACTIONS(2205), + [aux_sym__val_number_decimal_token4] = ACTIONS(2205), + [aux_sym__val_number_token1] = ACTIONS(2205), + [aux_sym__val_number_token2] = ACTIONS(2205), + [aux_sym__val_number_token3] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [sym__str_single_quotes] = ACTIONS(2205), + [sym__str_back_ticks] = ACTIONS(2205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(247), }, [491] = { [sym_comment] = STATE(491), - [aux_sym__multiple_types_repeat1] = STATE(511), - [anon_sym_export] = ACTIONS(2220), - [anon_sym_alias] = ACTIONS(2220), - [anon_sym_let] = ACTIONS(2220), - [anon_sym_let_DASHenv] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [aux_sym_cmd_identifier_token1] = ACTIONS(2220), - [aux_sym_cmd_identifier_token2] = ACTIONS(2220), - [aux_sym_cmd_identifier_token3] = ACTIONS(2220), - [aux_sym_cmd_identifier_token4] = ACTIONS(2220), - [aux_sym_cmd_identifier_token5] = ACTIONS(2220), - [aux_sym_cmd_identifier_token6] = ACTIONS(2220), - [aux_sym_cmd_identifier_token7] = ACTIONS(2220), - [aux_sym_cmd_identifier_token8] = ACTIONS(2220), - [aux_sym_cmd_identifier_token9] = ACTIONS(2220), - [aux_sym_cmd_identifier_token10] = ACTIONS(2220), - [aux_sym_cmd_identifier_token11] = ACTIONS(2220), - [aux_sym_cmd_identifier_token12] = ACTIONS(2220), - [aux_sym_cmd_identifier_token13] = ACTIONS(2220), - [aux_sym_cmd_identifier_token14] = ACTIONS(2220), - [aux_sym_cmd_identifier_token15] = ACTIONS(2220), - [aux_sym_cmd_identifier_token16] = ACTIONS(2220), - [aux_sym_cmd_identifier_token17] = ACTIONS(2220), - [aux_sym_cmd_identifier_token18] = ACTIONS(2220), - [aux_sym_cmd_identifier_token19] = ACTIONS(2220), - [aux_sym_cmd_identifier_token20] = ACTIONS(2220), - [aux_sym_cmd_identifier_token21] = ACTIONS(2220), - [aux_sym_cmd_identifier_token22] = ACTIONS(2220), - [aux_sym_cmd_identifier_token23] = ACTIONS(2220), - [aux_sym_cmd_identifier_token24] = ACTIONS(2220), - [aux_sym_cmd_identifier_token25] = ACTIONS(2220), - [aux_sym_cmd_identifier_token26] = ACTIONS(2220), - [aux_sym_cmd_identifier_token27] = ACTIONS(2220), - [aux_sym_cmd_identifier_token28] = ACTIONS(2220), - [aux_sym_cmd_identifier_token29] = ACTIONS(2220), - [aux_sym_cmd_identifier_token30] = ACTIONS(2220), - [aux_sym_cmd_identifier_token31] = ACTIONS(2220), - [aux_sym_cmd_identifier_token32] = ACTIONS(2220), - [aux_sym_cmd_identifier_token33] = ACTIONS(2220), - [aux_sym_cmd_identifier_token34] = ACTIONS(2220), - [aux_sym_cmd_identifier_token35] = ACTIONS(2220), - [aux_sym_cmd_identifier_token36] = ACTIONS(2220), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2220), - [aux_sym_cmd_identifier_token38] = ACTIONS(2220), - [aux_sym_cmd_identifier_token39] = ACTIONS(2220), - [aux_sym_cmd_identifier_token40] = ACTIONS(2220), - [anon_sym_def] = ACTIONS(2220), - [anon_sym_export_DASHenv] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_module] = ACTIONS(2220), - [anon_sym_use] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_error] = ACTIONS(2220), - [anon_sym_list] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_in] = ACTIONS(2220), - [anon_sym_loop] = ACTIONS(2220), - [anon_sym_make] = ACTIONS(2220), - [anon_sym_while] = ACTIONS(2220), - [anon_sym_do] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_else] = ACTIONS(2220), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2220), - [anon_sym_catch] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_source] = ACTIONS(2220), - [anon_sym_source_DASHenv] = ACTIONS(2220), - [anon_sym_register] = ACTIONS(2220), - [anon_sym_hide] = ACTIONS(2220), - [anon_sym_hide_DASHenv] = ACTIONS(2220), - [anon_sym_overlay] = ACTIONS(2220), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_as] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2220), - [aux_sym__val_number_decimal_token1] = ACTIONS(2220), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [anon_sym_DOT2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2220), - [aux_sym__val_number_token1] = ACTIONS(2220), - [aux_sym__val_number_token2] = ACTIONS(2220), - [aux_sym__val_number_token3] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym__str_single_quotes] = ACTIONS(2220), - [sym__str_back_ticks] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2220), - [sym__entry_separator] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_alias] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_let_DASHenv] = ACTIONS(2259), + [anon_sym_mut] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [aux_sym_cmd_identifier_token1] = ACTIONS(2259), + [aux_sym_cmd_identifier_token2] = ACTIONS(2259), + [aux_sym_cmd_identifier_token3] = ACTIONS(2259), + [aux_sym_cmd_identifier_token4] = ACTIONS(2259), + [aux_sym_cmd_identifier_token5] = ACTIONS(2259), + [aux_sym_cmd_identifier_token6] = ACTIONS(2259), + [aux_sym_cmd_identifier_token7] = ACTIONS(2259), + [aux_sym_cmd_identifier_token8] = ACTIONS(2259), + [aux_sym_cmd_identifier_token9] = ACTIONS(2259), + [aux_sym_cmd_identifier_token10] = ACTIONS(2259), + [aux_sym_cmd_identifier_token11] = ACTIONS(2259), + [aux_sym_cmd_identifier_token12] = ACTIONS(2259), + [aux_sym_cmd_identifier_token13] = ACTIONS(2259), + [aux_sym_cmd_identifier_token14] = ACTIONS(2259), + [aux_sym_cmd_identifier_token15] = ACTIONS(2259), + [aux_sym_cmd_identifier_token16] = ACTIONS(2259), + [aux_sym_cmd_identifier_token17] = ACTIONS(2259), + [aux_sym_cmd_identifier_token18] = ACTIONS(2259), + [aux_sym_cmd_identifier_token19] = ACTIONS(2259), + [aux_sym_cmd_identifier_token20] = ACTIONS(2259), + [aux_sym_cmd_identifier_token21] = ACTIONS(2259), + [aux_sym_cmd_identifier_token22] = ACTIONS(2259), + [aux_sym_cmd_identifier_token23] = ACTIONS(2259), + [aux_sym_cmd_identifier_token24] = ACTIONS(2259), + [aux_sym_cmd_identifier_token25] = ACTIONS(2259), + [aux_sym_cmd_identifier_token26] = ACTIONS(2259), + [aux_sym_cmd_identifier_token27] = ACTIONS(2259), + [aux_sym_cmd_identifier_token28] = ACTIONS(2259), + [aux_sym_cmd_identifier_token29] = ACTIONS(2259), + [aux_sym_cmd_identifier_token30] = ACTIONS(2259), + [aux_sym_cmd_identifier_token31] = ACTIONS(2259), + [aux_sym_cmd_identifier_token32] = ACTIONS(2259), + [aux_sym_cmd_identifier_token33] = ACTIONS(2259), + [aux_sym_cmd_identifier_token34] = ACTIONS(2259), + [aux_sym_cmd_identifier_token35] = ACTIONS(2259), + [aux_sym_cmd_identifier_token36] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2259), + [anon_sym_false] = ACTIONS(2259), + [anon_sym_null] = ACTIONS(2259), + [aux_sym_cmd_identifier_token38] = ACTIONS(2259), + [aux_sym_cmd_identifier_token39] = ACTIONS(2259), + [aux_sym_cmd_identifier_token40] = ACTIONS(2259), + [anon_sym_def] = ACTIONS(2259), + [anon_sym_export_DASHenv] = ACTIONS(2259), + [anon_sym_extern] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_use] = ACTIONS(2259), + [anon_sym_RBRACK] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_DOLLAR] = ACTIONS(2259), + [anon_sym_error] = ACTIONS(2259), + [anon_sym_list] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_in] = ACTIONS(2259), + [anon_sym_loop] = ACTIONS(2259), + [anon_sym_make] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_catch] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_source] = ACTIONS(2259), + [anon_sym_source_DASHenv] = ACTIONS(2259), + [anon_sym_register] = ACTIONS(2259), + [anon_sym_hide] = ACTIONS(2259), + [anon_sym_hide_DASHenv] = ACTIONS(2259), + [anon_sym_overlay] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2259), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2259), + [aux_sym__val_number_decimal_token1] = ACTIONS(2259), + [aux_sym__val_number_decimal_token2] = ACTIONS(2259), + [aux_sym__val_number_decimal_token3] = ACTIONS(2259), + [aux_sym__val_number_decimal_token4] = ACTIONS(2259), + [aux_sym__val_number_token1] = ACTIONS(2259), + [aux_sym__val_number_token2] = ACTIONS(2259), + [aux_sym__val_number_token3] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2259), + [sym__str_single_quotes] = ACTIONS(2259), + [sym__str_back_ticks] = ACTIONS(2259), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2259), + [sym__entry_separator] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_POUND] = ACTIONS(3), }, [492] = { - [sym__expr_parenthesized_immediate] = STATE(7512), [sym_comment] = STATE(492), - [anon_sym_export] = ACTIONS(1955), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_let_DASHenv] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1955), - [aux_sym_cmd_identifier_token2] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [aux_sym_cmd_identifier_token6] = ACTIONS(1955), - [aux_sym_cmd_identifier_token7] = ACTIONS(1955), - [aux_sym_cmd_identifier_token8] = ACTIONS(1955), - [aux_sym_cmd_identifier_token9] = ACTIONS(1955), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [aux_sym_cmd_identifier_token12] = ACTIONS(1955), - [aux_sym_cmd_identifier_token13] = ACTIONS(1955), - [aux_sym_cmd_identifier_token14] = ACTIONS(1955), - [aux_sym_cmd_identifier_token15] = ACTIONS(1955), - [aux_sym_cmd_identifier_token16] = ACTIONS(1955), - [aux_sym_cmd_identifier_token17] = ACTIONS(1955), - [aux_sym_cmd_identifier_token18] = ACTIONS(1955), - [aux_sym_cmd_identifier_token19] = ACTIONS(1955), - [aux_sym_cmd_identifier_token20] = ACTIONS(1955), - [aux_sym_cmd_identifier_token21] = ACTIONS(1955), - [aux_sym_cmd_identifier_token22] = ACTIONS(1955), - [aux_sym_cmd_identifier_token23] = ACTIONS(1955), - [aux_sym_cmd_identifier_token24] = ACTIONS(1955), - [aux_sym_cmd_identifier_token25] = ACTIONS(1955), - [aux_sym_cmd_identifier_token26] = ACTIONS(1955), - [aux_sym_cmd_identifier_token27] = ACTIONS(1955), - [aux_sym_cmd_identifier_token28] = ACTIONS(1955), - [aux_sym_cmd_identifier_token29] = ACTIONS(1955), - [aux_sym_cmd_identifier_token30] = ACTIONS(1955), - [aux_sym_cmd_identifier_token31] = ACTIONS(1955), - [aux_sym_cmd_identifier_token32] = ACTIONS(1955), - [aux_sym_cmd_identifier_token33] = ACTIONS(1955), - [aux_sym_cmd_identifier_token34] = ACTIONS(1955), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_null] = ACTIONS(1957), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1957), - [aux_sym_cmd_identifier_token40] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_list] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_make] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(1955), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [anon_sym_DOT2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1957), - [aux_sym__val_number_token1] = ACTIONS(1957), - [aux_sym__val_number_token2] = ACTIONS(1957), - [aux_sym__val_number_token3] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_alias] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_let_DASHenv] = ACTIONS(2263), + [anon_sym_mut] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [aux_sym_cmd_identifier_token1] = ACTIONS(2263), + [aux_sym_cmd_identifier_token2] = ACTIONS(2263), + [aux_sym_cmd_identifier_token3] = ACTIONS(2263), + [aux_sym_cmd_identifier_token4] = ACTIONS(2263), + [aux_sym_cmd_identifier_token5] = ACTIONS(2263), + [aux_sym_cmd_identifier_token6] = ACTIONS(2263), + [aux_sym_cmd_identifier_token7] = ACTIONS(2263), + [aux_sym_cmd_identifier_token8] = ACTIONS(2263), + [aux_sym_cmd_identifier_token9] = ACTIONS(2263), + [aux_sym_cmd_identifier_token10] = ACTIONS(2263), + [aux_sym_cmd_identifier_token11] = ACTIONS(2263), + [aux_sym_cmd_identifier_token12] = ACTIONS(2263), + [aux_sym_cmd_identifier_token13] = ACTIONS(2263), + [aux_sym_cmd_identifier_token14] = ACTIONS(2263), + [aux_sym_cmd_identifier_token15] = ACTIONS(2263), + [aux_sym_cmd_identifier_token16] = ACTIONS(2263), + [aux_sym_cmd_identifier_token17] = ACTIONS(2263), + [aux_sym_cmd_identifier_token18] = ACTIONS(2263), + [aux_sym_cmd_identifier_token19] = ACTIONS(2263), + [aux_sym_cmd_identifier_token20] = ACTIONS(2263), + [aux_sym_cmd_identifier_token21] = ACTIONS(2263), + [aux_sym_cmd_identifier_token22] = ACTIONS(2263), + [aux_sym_cmd_identifier_token23] = ACTIONS(2263), + [aux_sym_cmd_identifier_token24] = ACTIONS(2263), + [aux_sym_cmd_identifier_token25] = ACTIONS(2263), + [aux_sym_cmd_identifier_token26] = ACTIONS(2263), + [aux_sym_cmd_identifier_token27] = ACTIONS(2263), + [aux_sym_cmd_identifier_token28] = ACTIONS(2263), + [aux_sym_cmd_identifier_token29] = ACTIONS(2263), + [aux_sym_cmd_identifier_token30] = ACTIONS(2263), + [aux_sym_cmd_identifier_token31] = ACTIONS(2263), + [aux_sym_cmd_identifier_token32] = ACTIONS(2263), + [aux_sym_cmd_identifier_token33] = ACTIONS(2263), + [aux_sym_cmd_identifier_token34] = ACTIONS(2263), + [aux_sym_cmd_identifier_token35] = ACTIONS(2263), + [aux_sym_cmd_identifier_token36] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2263), + [anon_sym_false] = ACTIONS(2263), + [anon_sym_null] = ACTIONS(2263), + [aux_sym_cmd_identifier_token38] = ACTIONS(2263), + [aux_sym_cmd_identifier_token39] = ACTIONS(2263), + [aux_sym_cmd_identifier_token40] = ACTIONS(2263), + [anon_sym_def] = ACTIONS(2263), + [anon_sym_export_DASHenv] = ACTIONS(2263), + [anon_sym_extern] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_use] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2263), + [anon_sym_error] = ACTIONS(2263), + [anon_sym_list] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(2263), + [anon_sym_loop] = ACTIONS(2263), + [anon_sym_make] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_else] = ACTIONS(2263), + [anon_sym_match] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_catch] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_source] = ACTIONS(2263), + [anon_sym_source_DASHenv] = ACTIONS(2263), + [anon_sym_register] = ACTIONS(2263), + [anon_sym_hide] = ACTIONS(2263), + [anon_sym_hide_DASHenv] = ACTIONS(2263), + [anon_sym_overlay] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_as] = ACTIONS(2263), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2263), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2263), + [aux_sym__val_number_decimal_token1] = ACTIONS(2263), + [aux_sym__val_number_decimal_token2] = ACTIONS(2263), + [aux_sym__val_number_decimal_token3] = ACTIONS(2263), + [aux_sym__val_number_decimal_token4] = ACTIONS(2263), + [aux_sym__val_number_token1] = ACTIONS(2263), + [aux_sym__val_number_token2] = ACTIONS(2263), + [aux_sym__val_number_token3] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(2263), + [sym__str_single_quotes] = ACTIONS(2263), + [sym__str_back_ticks] = ACTIONS(2263), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2263), + [sym__entry_separator] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [493] = { [sym_comment] = STATE(493), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(948), - [aux_sym_cmd_identifier_token3] = ACTIONS(948), - [aux_sym_cmd_identifier_token4] = ACTIONS(948), - [aux_sym_cmd_identifier_token5] = ACTIONS(948), - [aux_sym_cmd_identifier_token6] = ACTIONS(948), - [aux_sym_cmd_identifier_token7] = ACTIONS(948), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(948), - [aux_sym_cmd_identifier_token11] = ACTIONS(948), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(948), - [aux_sym_cmd_identifier_token17] = ACTIONS(948), - [aux_sym_cmd_identifier_token18] = ACTIONS(948), - [aux_sym_cmd_identifier_token19] = ACTIONS(948), - [aux_sym_cmd_identifier_token20] = ACTIONS(948), - [aux_sym_cmd_identifier_token21] = ACTIONS(948), - [aux_sym_cmd_identifier_token22] = ACTIONS(948), - [aux_sym_cmd_identifier_token23] = ACTIONS(948), - [aux_sym_cmd_identifier_token24] = ACTIONS(948), - [aux_sym_cmd_identifier_token25] = ACTIONS(948), - [aux_sym_cmd_identifier_token26] = ACTIONS(948), - [aux_sym_cmd_identifier_token27] = ACTIONS(948), - [aux_sym_cmd_identifier_token28] = ACTIONS(948), - [aux_sym_cmd_identifier_token29] = ACTIONS(948), - [aux_sym_cmd_identifier_token30] = ACTIONS(948), - [aux_sym_cmd_identifier_token31] = ACTIONS(948), - [aux_sym_cmd_identifier_token32] = ACTIONS(948), - [aux_sym_cmd_identifier_token33] = ACTIONS(948), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(948), - [aux_sym_cmd_identifier_token36] = ACTIONS(948), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_null] = ACTIONS(948), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(948), - [aux_sym_cmd_identifier_token40] = ACTIONS(948), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_RBRACK] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_list] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_new] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(948), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(948), - [aux_sym__val_number_token1] = ACTIONS(948), - [aux_sym__val_number_token2] = ACTIONS(948), - [aux_sym__val_number_token3] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym__str_single_quotes] = ACTIONS(948), - [sym__str_back_ticks] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), - [sym__entry_separator] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_alias] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_let_DASHenv] = ACTIONS(2089), + [anon_sym_mut] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [aux_sym_cmd_identifier_token1] = ACTIONS(2089), + [aux_sym_cmd_identifier_token2] = ACTIONS(2089), + [aux_sym_cmd_identifier_token3] = ACTIONS(2089), + [aux_sym_cmd_identifier_token4] = ACTIONS(2089), + [aux_sym_cmd_identifier_token5] = ACTIONS(2089), + [aux_sym_cmd_identifier_token6] = ACTIONS(2089), + [aux_sym_cmd_identifier_token7] = ACTIONS(2089), + [aux_sym_cmd_identifier_token8] = ACTIONS(2089), + [aux_sym_cmd_identifier_token9] = ACTIONS(2089), + [aux_sym_cmd_identifier_token10] = ACTIONS(2089), + [aux_sym_cmd_identifier_token11] = ACTIONS(2089), + [aux_sym_cmd_identifier_token12] = ACTIONS(2089), + [aux_sym_cmd_identifier_token13] = ACTIONS(2089), + [aux_sym_cmd_identifier_token14] = ACTIONS(2089), + [aux_sym_cmd_identifier_token15] = ACTIONS(2089), + [aux_sym_cmd_identifier_token16] = ACTIONS(2089), + [aux_sym_cmd_identifier_token17] = ACTIONS(2089), + [aux_sym_cmd_identifier_token18] = ACTIONS(2089), + [aux_sym_cmd_identifier_token19] = ACTIONS(2089), + [aux_sym_cmd_identifier_token20] = ACTIONS(2089), + [aux_sym_cmd_identifier_token21] = ACTIONS(2089), + [aux_sym_cmd_identifier_token22] = ACTIONS(2089), + [aux_sym_cmd_identifier_token23] = ACTIONS(2089), + [aux_sym_cmd_identifier_token24] = ACTIONS(2089), + [aux_sym_cmd_identifier_token25] = ACTIONS(2089), + [aux_sym_cmd_identifier_token26] = ACTIONS(2089), + [aux_sym_cmd_identifier_token27] = ACTIONS(2089), + [aux_sym_cmd_identifier_token28] = ACTIONS(2089), + [aux_sym_cmd_identifier_token29] = ACTIONS(2089), + [aux_sym_cmd_identifier_token30] = ACTIONS(2089), + [aux_sym_cmd_identifier_token31] = ACTIONS(2089), + [aux_sym_cmd_identifier_token32] = ACTIONS(2089), + [aux_sym_cmd_identifier_token33] = ACTIONS(2089), + [aux_sym_cmd_identifier_token34] = ACTIONS(2089), + [aux_sym_cmd_identifier_token35] = ACTIONS(2089), + [aux_sym_cmd_identifier_token36] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [aux_sym_cmd_identifier_token38] = ACTIONS(2089), + [aux_sym_cmd_identifier_token39] = ACTIONS(2089), + [aux_sym_cmd_identifier_token40] = ACTIONS(2089), + [anon_sym_def] = ACTIONS(2089), + [anon_sym_export_DASHenv] = ACTIONS(2089), + [anon_sym_extern] = ACTIONS(2089), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_DOLLAR] = ACTIONS(2089), + [anon_sym_error] = ACTIONS(2089), + [anon_sym_list] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_loop] = ACTIONS(2089), + [anon_sym_make] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_else] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_catch] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_source] = ACTIONS(2089), + [anon_sym_source_DASHenv] = ACTIONS(2089), + [anon_sym_register] = ACTIONS(2089), + [anon_sym_hide] = ACTIONS(2089), + [anon_sym_hide_DASHenv] = ACTIONS(2089), + [anon_sym_overlay] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_LPAREN2] = ACTIONS(2091), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), + [aux_sym__val_number_decimal_token1] = ACTIONS(2089), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2089), + [aux_sym__val_number_decimal_token4] = ACTIONS(2089), + [aux_sym__val_number_token1] = ACTIONS(2089), + [aux_sym__val_number_token2] = ACTIONS(2089), + [aux_sym__val_number_token3] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2093), + [sym__str_single_quotes] = ACTIONS(2093), + [sym__str_back_ticks] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2089), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(3), }, [494] = { [sym_comment] = STATE(494), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [aux_sym__immediate_decimal_token2] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2267), + [anon_sym_alias] = ACTIONS(2267), + [anon_sym_let] = ACTIONS(2267), + [anon_sym_let_DASHenv] = ACTIONS(2267), + [anon_sym_mut] = ACTIONS(2267), + [anon_sym_const] = ACTIONS(2267), + [aux_sym_cmd_identifier_token1] = ACTIONS(2267), + [aux_sym_cmd_identifier_token2] = ACTIONS(2267), + [aux_sym_cmd_identifier_token3] = ACTIONS(2267), + [aux_sym_cmd_identifier_token4] = ACTIONS(2267), + [aux_sym_cmd_identifier_token5] = ACTIONS(2267), + [aux_sym_cmd_identifier_token6] = ACTIONS(2267), + [aux_sym_cmd_identifier_token7] = ACTIONS(2267), + [aux_sym_cmd_identifier_token8] = ACTIONS(2267), + [aux_sym_cmd_identifier_token9] = ACTIONS(2267), + [aux_sym_cmd_identifier_token10] = ACTIONS(2267), + [aux_sym_cmd_identifier_token11] = ACTIONS(2267), + [aux_sym_cmd_identifier_token12] = ACTIONS(2267), + [aux_sym_cmd_identifier_token13] = ACTIONS(2267), + [aux_sym_cmd_identifier_token14] = ACTIONS(2267), + [aux_sym_cmd_identifier_token15] = ACTIONS(2267), + [aux_sym_cmd_identifier_token16] = ACTIONS(2267), + [aux_sym_cmd_identifier_token17] = ACTIONS(2267), + [aux_sym_cmd_identifier_token18] = ACTIONS(2267), + [aux_sym_cmd_identifier_token19] = ACTIONS(2267), + [aux_sym_cmd_identifier_token20] = ACTIONS(2267), + [aux_sym_cmd_identifier_token21] = ACTIONS(2267), + [aux_sym_cmd_identifier_token22] = ACTIONS(2267), + [aux_sym_cmd_identifier_token23] = ACTIONS(2267), + [aux_sym_cmd_identifier_token24] = ACTIONS(2267), + [aux_sym_cmd_identifier_token25] = ACTIONS(2267), + [aux_sym_cmd_identifier_token26] = ACTIONS(2267), + [aux_sym_cmd_identifier_token27] = ACTIONS(2267), + [aux_sym_cmd_identifier_token28] = ACTIONS(2267), + [aux_sym_cmd_identifier_token29] = ACTIONS(2267), + [aux_sym_cmd_identifier_token30] = ACTIONS(2267), + [aux_sym_cmd_identifier_token31] = ACTIONS(2267), + [aux_sym_cmd_identifier_token32] = ACTIONS(2267), + [aux_sym_cmd_identifier_token33] = ACTIONS(2267), + [aux_sym_cmd_identifier_token34] = ACTIONS(2267), + [aux_sym_cmd_identifier_token35] = ACTIONS(2267), + [aux_sym_cmd_identifier_token36] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2267), + [anon_sym_false] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2267), + [aux_sym_cmd_identifier_token38] = ACTIONS(2267), + [aux_sym_cmd_identifier_token39] = ACTIONS(2267), + [aux_sym_cmd_identifier_token40] = ACTIONS(2267), + [anon_sym_def] = ACTIONS(2267), + [anon_sym_export_DASHenv] = ACTIONS(2267), + [anon_sym_extern] = ACTIONS(2267), + [anon_sym_module] = ACTIONS(2267), + [anon_sym_use] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_error] = ACTIONS(2267), + [anon_sym_list] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2267), + [anon_sym_break] = ACTIONS(2267), + [anon_sym_continue] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_in] = ACTIONS(2267), + [anon_sym_loop] = ACTIONS(2267), + [anon_sym_make] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [anon_sym_do] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_else] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_try] = ACTIONS(2267), + [anon_sym_catch] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_source] = ACTIONS(2267), + [anon_sym_source_DASHenv] = ACTIONS(2267), + [anon_sym_register] = ACTIONS(2267), + [anon_sym_hide] = ACTIONS(2267), + [anon_sym_hide_DASHenv] = ACTIONS(2267), + [anon_sym_overlay] = ACTIONS(2267), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2267), + [anon_sym_LPAREN2] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2267), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2267), + [aux_sym__val_number_decimal_token1] = ACTIONS(2267), + [aux_sym__val_number_decimal_token2] = ACTIONS(2267), + [aux_sym__val_number_decimal_token3] = ACTIONS(2267), + [aux_sym__val_number_decimal_token4] = ACTIONS(2267), + [aux_sym__val_number_token1] = ACTIONS(2267), + [aux_sym__val_number_token2] = ACTIONS(2267), + [aux_sym__val_number_token3] = ACTIONS(2267), + [anon_sym_DQUOTE] = ACTIONS(2267), + [sym__str_single_quotes] = ACTIONS(2267), + [sym__str_back_ticks] = ACTIONS(2267), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2267), + [sym__entry_separator] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2267), + [anon_sym_POUND] = ACTIONS(3), }, [495] = { [sym_comment] = STATE(495), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_alias] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_let_DASHenv] = ACTIONS(2226), - [anon_sym_mut] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [aux_sym_cmd_identifier_token1] = ACTIONS(2226), - [aux_sym_cmd_identifier_token2] = ACTIONS(2226), - [aux_sym_cmd_identifier_token3] = ACTIONS(2226), - [aux_sym_cmd_identifier_token4] = ACTIONS(2226), - [aux_sym_cmd_identifier_token5] = ACTIONS(2226), - [aux_sym_cmd_identifier_token6] = ACTIONS(2226), - [aux_sym_cmd_identifier_token7] = ACTIONS(2226), - [aux_sym_cmd_identifier_token8] = ACTIONS(2226), - [aux_sym_cmd_identifier_token9] = ACTIONS(2226), - [aux_sym_cmd_identifier_token10] = ACTIONS(2226), - [aux_sym_cmd_identifier_token11] = ACTIONS(2226), - [aux_sym_cmd_identifier_token12] = ACTIONS(2226), - [aux_sym_cmd_identifier_token13] = ACTIONS(2226), - [aux_sym_cmd_identifier_token14] = ACTIONS(2226), - [aux_sym_cmd_identifier_token15] = ACTIONS(2226), - [aux_sym_cmd_identifier_token16] = ACTIONS(2226), - [aux_sym_cmd_identifier_token17] = ACTIONS(2226), - [aux_sym_cmd_identifier_token18] = ACTIONS(2226), - [aux_sym_cmd_identifier_token19] = ACTIONS(2226), - [aux_sym_cmd_identifier_token20] = ACTIONS(2226), - [aux_sym_cmd_identifier_token21] = ACTIONS(2226), - [aux_sym_cmd_identifier_token22] = ACTIONS(2226), - [aux_sym_cmd_identifier_token23] = ACTIONS(2226), - [aux_sym_cmd_identifier_token24] = ACTIONS(2226), - [aux_sym_cmd_identifier_token25] = ACTIONS(2226), - [aux_sym_cmd_identifier_token26] = ACTIONS(2226), - [aux_sym_cmd_identifier_token27] = ACTIONS(2226), - [aux_sym_cmd_identifier_token28] = ACTIONS(2226), - [aux_sym_cmd_identifier_token29] = ACTIONS(2226), - [aux_sym_cmd_identifier_token30] = ACTIONS(2226), - [aux_sym_cmd_identifier_token31] = ACTIONS(2226), - [aux_sym_cmd_identifier_token32] = ACTIONS(2226), - [aux_sym_cmd_identifier_token33] = ACTIONS(2226), - [aux_sym_cmd_identifier_token34] = ACTIONS(2226), - [aux_sym_cmd_identifier_token35] = ACTIONS(2226), - [aux_sym_cmd_identifier_token36] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2226), - [anon_sym_false] = ACTIONS(2226), - [anon_sym_null] = ACTIONS(2226), - [aux_sym_cmd_identifier_token38] = ACTIONS(2226), - [aux_sym_cmd_identifier_token39] = ACTIONS(2226), - [aux_sym_cmd_identifier_token40] = ACTIONS(2226), - [anon_sym_def] = ACTIONS(2226), - [anon_sym_export_DASHenv] = ACTIONS(2226), - [anon_sym_extern] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_use] = ACTIONS(2226), - [anon_sym_RBRACK] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_DOLLAR] = ACTIONS(2226), - [anon_sym_error] = ACTIONS(2226), - [anon_sym_list] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2226), - [anon_sym_loop] = ACTIONS(2226), - [anon_sym_make] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_match] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_catch] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_source] = ACTIONS(2226), - [anon_sym_source_DASHenv] = ACTIONS(2226), - [anon_sym_register] = ACTIONS(2226), - [anon_sym_hide] = ACTIONS(2226), - [anon_sym_hide_DASHenv] = ACTIONS(2226), - [anon_sym_overlay] = ACTIONS(2226), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_as] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2226), - [aux_sym__val_number_decimal_token1] = ACTIONS(2226), - [aux_sym__val_number_decimal_token2] = ACTIONS(2226), - [anon_sym_DOT2] = ACTIONS(2226), - [aux_sym__val_number_decimal_token3] = ACTIONS(2226), - [aux_sym__val_number_token1] = ACTIONS(2226), - [aux_sym__val_number_token2] = ACTIONS(2226), - [aux_sym__val_number_token3] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [sym__str_single_quotes] = ACTIONS(2226), - [sym__str_back_ticks] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2226), - [sym__entry_separator] = ACTIONS(2228), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2097), + [anon_sym_alias] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_let_DASHenv] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [aux_sym_cmd_identifier_token1] = ACTIONS(2097), + [aux_sym_cmd_identifier_token2] = ACTIONS(2097), + [aux_sym_cmd_identifier_token3] = ACTIONS(2097), + [aux_sym_cmd_identifier_token4] = ACTIONS(2097), + [aux_sym_cmd_identifier_token5] = ACTIONS(2097), + [aux_sym_cmd_identifier_token6] = ACTIONS(2097), + [aux_sym_cmd_identifier_token7] = ACTIONS(2097), + [aux_sym_cmd_identifier_token8] = ACTIONS(2097), + [aux_sym_cmd_identifier_token9] = ACTIONS(2097), + [aux_sym_cmd_identifier_token10] = ACTIONS(2097), + [aux_sym_cmd_identifier_token11] = ACTIONS(2097), + [aux_sym_cmd_identifier_token12] = ACTIONS(2097), + [aux_sym_cmd_identifier_token13] = ACTIONS(2097), + [aux_sym_cmd_identifier_token14] = ACTIONS(2097), + [aux_sym_cmd_identifier_token15] = ACTIONS(2097), + [aux_sym_cmd_identifier_token16] = ACTIONS(2097), + [aux_sym_cmd_identifier_token17] = ACTIONS(2097), + [aux_sym_cmd_identifier_token18] = ACTIONS(2097), + [aux_sym_cmd_identifier_token19] = ACTIONS(2097), + [aux_sym_cmd_identifier_token20] = ACTIONS(2097), + [aux_sym_cmd_identifier_token21] = ACTIONS(2097), + [aux_sym_cmd_identifier_token22] = ACTIONS(2097), + [aux_sym_cmd_identifier_token23] = ACTIONS(2097), + [aux_sym_cmd_identifier_token24] = ACTIONS(2097), + [aux_sym_cmd_identifier_token25] = ACTIONS(2097), + [aux_sym_cmd_identifier_token26] = ACTIONS(2097), + [aux_sym_cmd_identifier_token27] = ACTIONS(2097), + [aux_sym_cmd_identifier_token28] = ACTIONS(2097), + [aux_sym_cmd_identifier_token29] = ACTIONS(2097), + [aux_sym_cmd_identifier_token30] = ACTIONS(2097), + [aux_sym_cmd_identifier_token31] = ACTIONS(2097), + [aux_sym_cmd_identifier_token32] = ACTIONS(2097), + [aux_sym_cmd_identifier_token33] = ACTIONS(2097), + [aux_sym_cmd_identifier_token34] = ACTIONS(2097), + [aux_sym_cmd_identifier_token35] = ACTIONS(2097), + [aux_sym_cmd_identifier_token36] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [aux_sym_cmd_identifier_token38] = ACTIONS(2097), + [aux_sym_cmd_identifier_token39] = ACTIONS(2097), + [aux_sym_cmd_identifier_token40] = ACTIONS(2097), + [anon_sym_def] = ACTIONS(2097), + [anon_sym_export_DASHenv] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_module] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_error] = ACTIONS(2097), + [anon_sym_list] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_make] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_else] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_catch] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_source] = ACTIONS(2097), + [anon_sym_source_DASHenv] = ACTIONS(2097), + [anon_sym_register] = ACTIONS(2097), + [anon_sym_hide] = ACTIONS(2097), + [anon_sym_hide_DASHenv] = ACTIONS(2097), + [anon_sym_overlay] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2097), + [anon_sym_LPAREN2] = ACTIONS(2099), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2101), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2097), + [aux_sym__val_number_decimal_token1] = ACTIONS(2097), + [aux_sym__val_number_decimal_token2] = ACTIONS(2097), + [aux_sym__val_number_decimal_token3] = ACTIONS(2097), + [aux_sym__val_number_decimal_token4] = ACTIONS(2097), + [aux_sym__val_number_token1] = ACTIONS(2097), + [aux_sym__val_number_token2] = ACTIONS(2097), + [aux_sym__val_number_token3] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2101), + [sym__str_single_quotes] = ACTIONS(2101), + [sym__str_back_ticks] = ACTIONS(2101), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2097), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2103), + [anon_sym_POUND] = ACTIONS(3), }, [496] = { [sym_comment] = STATE(496), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_alias] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_let_DASHenv] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [aux_sym_cmd_identifier_token1] = ACTIONS(2230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2230), - [aux_sym_cmd_identifier_token3] = ACTIONS(2230), - [aux_sym_cmd_identifier_token4] = ACTIONS(2230), - [aux_sym_cmd_identifier_token5] = ACTIONS(2230), - [aux_sym_cmd_identifier_token6] = ACTIONS(2230), - [aux_sym_cmd_identifier_token7] = ACTIONS(2230), - [aux_sym_cmd_identifier_token8] = ACTIONS(2230), - [aux_sym_cmd_identifier_token9] = ACTIONS(2230), - [aux_sym_cmd_identifier_token10] = ACTIONS(2230), - [aux_sym_cmd_identifier_token11] = ACTIONS(2230), - [aux_sym_cmd_identifier_token12] = ACTIONS(2230), - [aux_sym_cmd_identifier_token13] = ACTIONS(2230), - [aux_sym_cmd_identifier_token14] = ACTIONS(2230), - [aux_sym_cmd_identifier_token15] = ACTIONS(2230), - [aux_sym_cmd_identifier_token16] = ACTIONS(2230), - [aux_sym_cmd_identifier_token17] = ACTIONS(2230), - [aux_sym_cmd_identifier_token18] = ACTIONS(2230), - [aux_sym_cmd_identifier_token19] = ACTIONS(2230), - [aux_sym_cmd_identifier_token20] = ACTIONS(2230), - [aux_sym_cmd_identifier_token21] = ACTIONS(2230), - [aux_sym_cmd_identifier_token22] = ACTIONS(2230), - [aux_sym_cmd_identifier_token23] = ACTIONS(2230), - [aux_sym_cmd_identifier_token24] = ACTIONS(2230), - [aux_sym_cmd_identifier_token25] = ACTIONS(2230), - [aux_sym_cmd_identifier_token26] = ACTIONS(2230), - [aux_sym_cmd_identifier_token27] = ACTIONS(2230), - [aux_sym_cmd_identifier_token28] = ACTIONS(2230), - [aux_sym_cmd_identifier_token29] = ACTIONS(2230), - [aux_sym_cmd_identifier_token30] = ACTIONS(2230), - [aux_sym_cmd_identifier_token31] = ACTIONS(2230), - [aux_sym_cmd_identifier_token32] = ACTIONS(2230), - [aux_sym_cmd_identifier_token33] = ACTIONS(2230), - [aux_sym_cmd_identifier_token34] = ACTIONS(2230), - [aux_sym_cmd_identifier_token35] = ACTIONS(2230), - [aux_sym_cmd_identifier_token36] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2230), - [anon_sym_false] = ACTIONS(2230), - [anon_sym_null] = ACTIONS(2230), - [aux_sym_cmd_identifier_token38] = ACTIONS(2230), - [aux_sym_cmd_identifier_token39] = ACTIONS(2230), - [aux_sym_cmd_identifier_token40] = ACTIONS(2230), - [anon_sym_def] = ACTIONS(2230), - [anon_sym_export_DASHenv] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_RBRACK] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_error] = ACTIONS(2230), - [anon_sym_list] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_make] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_source] = ACTIONS(2230), - [anon_sym_source_DASHenv] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_hide] = ACTIONS(2230), - [anon_sym_hide_DASHenv] = ACTIONS(2230), - [anon_sym_overlay] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2230), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2230), - [anon_sym_DOT2] = ACTIONS(2230), - [aux_sym__val_number_decimal_token3] = ACTIONS(2230), - [aux_sym__val_number_token1] = ACTIONS(2230), - [aux_sym__val_number_token2] = ACTIONS(2230), - [aux_sym__val_number_token3] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym__str_single_quotes] = ACTIONS(2230), - [sym__str_back_ticks] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), - [sym__entry_separator] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2271), + [anon_sym_alias] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_let_DASHenv] = ACTIONS(2271), + [anon_sym_mut] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [aux_sym_cmd_identifier_token1] = ACTIONS(2271), + [aux_sym_cmd_identifier_token2] = ACTIONS(2271), + [aux_sym_cmd_identifier_token3] = ACTIONS(2271), + [aux_sym_cmd_identifier_token4] = ACTIONS(2271), + [aux_sym_cmd_identifier_token5] = ACTIONS(2271), + [aux_sym_cmd_identifier_token6] = ACTIONS(2271), + [aux_sym_cmd_identifier_token7] = ACTIONS(2271), + [aux_sym_cmd_identifier_token8] = ACTIONS(2271), + [aux_sym_cmd_identifier_token9] = ACTIONS(2271), + [aux_sym_cmd_identifier_token10] = ACTIONS(2271), + [aux_sym_cmd_identifier_token11] = ACTIONS(2271), + [aux_sym_cmd_identifier_token12] = ACTIONS(2271), + [aux_sym_cmd_identifier_token13] = ACTIONS(2271), + [aux_sym_cmd_identifier_token14] = ACTIONS(2271), + [aux_sym_cmd_identifier_token15] = ACTIONS(2271), + [aux_sym_cmd_identifier_token16] = ACTIONS(2271), + [aux_sym_cmd_identifier_token17] = ACTIONS(2271), + [aux_sym_cmd_identifier_token18] = ACTIONS(2271), + [aux_sym_cmd_identifier_token19] = ACTIONS(2271), + [aux_sym_cmd_identifier_token20] = ACTIONS(2271), + [aux_sym_cmd_identifier_token21] = ACTIONS(2271), + [aux_sym_cmd_identifier_token22] = ACTIONS(2271), + [aux_sym_cmd_identifier_token23] = ACTIONS(2271), + [aux_sym_cmd_identifier_token24] = ACTIONS(2271), + [aux_sym_cmd_identifier_token25] = ACTIONS(2271), + [aux_sym_cmd_identifier_token26] = ACTIONS(2271), + [aux_sym_cmd_identifier_token27] = ACTIONS(2271), + [aux_sym_cmd_identifier_token28] = ACTIONS(2271), + [aux_sym_cmd_identifier_token29] = ACTIONS(2271), + [aux_sym_cmd_identifier_token30] = ACTIONS(2271), + [aux_sym_cmd_identifier_token31] = ACTIONS(2271), + [aux_sym_cmd_identifier_token32] = ACTIONS(2271), + [aux_sym_cmd_identifier_token33] = ACTIONS(2271), + [aux_sym_cmd_identifier_token34] = ACTIONS(2271), + [aux_sym_cmd_identifier_token35] = ACTIONS(2271), + [aux_sym_cmd_identifier_token36] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(2271), + [anon_sym_false] = ACTIONS(2271), + [anon_sym_null] = ACTIONS(2271), + [aux_sym_cmd_identifier_token38] = ACTIONS(2271), + [aux_sym_cmd_identifier_token39] = ACTIONS(2271), + [aux_sym_cmd_identifier_token40] = ACTIONS(2271), + [anon_sym_def] = ACTIONS(2271), + [anon_sym_export_DASHenv] = ACTIONS(2271), + [anon_sym_extern] = ACTIONS(2271), + [anon_sym_module] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_RBRACK] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_DOLLAR] = ACTIONS(2271), + [anon_sym_error] = ACTIONS(2271), + [anon_sym_list] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_in] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_make] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [anon_sym_do] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_else] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_try] = ACTIONS(2271), + [anon_sym_catch] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_source] = ACTIONS(2271), + [anon_sym_source_DASHenv] = ACTIONS(2271), + [anon_sym_register] = ACTIONS(2271), + [anon_sym_hide] = ACTIONS(2271), + [anon_sym_hide_DASHenv] = ACTIONS(2271), + [anon_sym_overlay] = ACTIONS(2271), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2271), + [aux_sym__val_number_decimal_token1] = ACTIONS(2271), + [aux_sym__val_number_decimal_token2] = ACTIONS(2271), + [aux_sym__val_number_decimal_token3] = ACTIONS(2271), + [aux_sym__val_number_decimal_token4] = ACTIONS(2271), + [aux_sym__val_number_token1] = ACTIONS(2271), + [aux_sym__val_number_token2] = ACTIONS(2271), + [aux_sym__val_number_token3] = ACTIONS(2271), + [anon_sym_DQUOTE] = ACTIONS(2271), + [sym__str_single_quotes] = ACTIONS(2271), + [sym__str_back_ticks] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2271), + [sym__entry_separator] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_POUND] = ACTIONS(3), }, [497] = { [sym_comment] = STATE(497), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [aux_sym_cmd_identifier_token1] = ACTIONS(2155), - [aux_sym_cmd_identifier_token2] = ACTIONS(2155), - [aux_sym_cmd_identifier_token3] = ACTIONS(2155), - [aux_sym_cmd_identifier_token4] = ACTIONS(2155), - [aux_sym_cmd_identifier_token5] = ACTIONS(2155), - [aux_sym_cmd_identifier_token6] = ACTIONS(2155), - [aux_sym_cmd_identifier_token7] = ACTIONS(2155), - [aux_sym_cmd_identifier_token8] = ACTIONS(2155), - [aux_sym_cmd_identifier_token9] = ACTIONS(2155), - [aux_sym_cmd_identifier_token10] = ACTIONS(2155), - [aux_sym_cmd_identifier_token11] = ACTIONS(2155), - [aux_sym_cmd_identifier_token12] = ACTIONS(2155), - [aux_sym_cmd_identifier_token13] = ACTIONS(2155), - [aux_sym_cmd_identifier_token14] = ACTIONS(2155), - [aux_sym_cmd_identifier_token15] = ACTIONS(2155), - [aux_sym_cmd_identifier_token16] = ACTIONS(2155), - [aux_sym_cmd_identifier_token17] = ACTIONS(2155), - [aux_sym_cmd_identifier_token18] = ACTIONS(2155), - [aux_sym_cmd_identifier_token19] = ACTIONS(2155), - [aux_sym_cmd_identifier_token20] = ACTIONS(2155), - [aux_sym_cmd_identifier_token21] = ACTIONS(2155), - [aux_sym_cmd_identifier_token22] = ACTIONS(2155), - [aux_sym_cmd_identifier_token23] = ACTIONS(2155), - [aux_sym_cmd_identifier_token24] = ACTIONS(2155), - [aux_sym_cmd_identifier_token25] = ACTIONS(2155), - [aux_sym_cmd_identifier_token26] = ACTIONS(2155), - [aux_sym_cmd_identifier_token27] = ACTIONS(2155), - [aux_sym_cmd_identifier_token28] = ACTIONS(2155), - [aux_sym_cmd_identifier_token29] = ACTIONS(2155), - [aux_sym_cmd_identifier_token30] = ACTIONS(2155), - [aux_sym_cmd_identifier_token31] = ACTIONS(2155), - [aux_sym_cmd_identifier_token32] = ACTIONS(2155), - [aux_sym_cmd_identifier_token33] = ACTIONS(2155), - [aux_sym_cmd_identifier_token34] = ACTIONS(2155), - [aux_sym_cmd_identifier_token35] = ACTIONS(2155), - [aux_sym_cmd_identifier_token36] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [aux_sym_cmd_identifier_token38] = ACTIONS(2155), - [aux_sym_cmd_identifier_token39] = ACTIONS(2155), - [aux_sym_cmd_identifier_token40] = ACTIONS(2155), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_list] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_in] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_make] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_catch] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_new] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_LPAREN2] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2155), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2155), - [anon_sym_DOT2] = ACTIONS(2155), - [aux_sym__val_number_decimal_token3] = ACTIONS(2155), - [aux_sym__val_number_token1] = ACTIONS(2155), - [aux_sym__val_number_token2] = ACTIONS(2155), - [aux_sym__val_number_token3] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym__str_single_quotes] = ACTIONS(2159), - [sym__str_back_ticks] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2159), - [aux_sym__unquoted_in_record_token7] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, [498] = { [sym_comment] = STATE(498), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1535), - [aux_sym_cmd_identifier_token40] = ACTIONS(1535), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1535), - [aux_sym__immediate_decimal_token2] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1535), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1535), - [aux_sym__val_number_token1] = ACTIONS(1535), - [aux_sym__val_number_token2] = ACTIONS(1535), - [aux_sym__val_number_token3] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym__str_single_quotes] = ACTIONS(1535), - [sym__str_back_ticks] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1535), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__multiple_types_repeat1] = STATE(527), + [anon_sym_export] = ACTIONS(2275), + [anon_sym_alias] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_let_DASHenv] = ACTIONS(2275), + [anon_sym_mut] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [aux_sym_cmd_identifier_token1] = ACTIONS(2275), + [aux_sym_cmd_identifier_token2] = ACTIONS(2275), + [aux_sym_cmd_identifier_token3] = ACTIONS(2275), + [aux_sym_cmd_identifier_token4] = ACTIONS(2275), + [aux_sym_cmd_identifier_token5] = ACTIONS(2275), + [aux_sym_cmd_identifier_token6] = ACTIONS(2275), + [aux_sym_cmd_identifier_token7] = ACTIONS(2275), + [aux_sym_cmd_identifier_token8] = ACTIONS(2275), + [aux_sym_cmd_identifier_token9] = ACTIONS(2275), + [aux_sym_cmd_identifier_token10] = ACTIONS(2275), + [aux_sym_cmd_identifier_token11] = ACTIONS(2275), + [aux_sym_cmd_identifier_token12] = ACTIONS(2275), + [aux_sym_cmd_identifier_token13] = ACTIONS(2275), + [aux_sym_cmd_identifier_token14] = ACTIONS(2275), + [aux_sym_cmd_identifier_token15] = ACTIONS(2275), + [aux_sym_cmd_identifier_token16] = ACTIONS(2275), + [aux_sym_cmd_identifier_token17] = ACTIONS(2275), + [aux_sym_cmd_identifier_token18] = ACTIONS(2275), + [aux_sym_cmd_identifier_token19] = ACTIONS(2275), + [aux_sym_cmd_identifier_token20] = ACTIONS(2275), + [aux_sym_cmd_identifier_token21] = ACTIONS(2275), + [aux_sym_cmd_identifier_token22] = ACTIONS(2275), + [aux_sym_cmd_identifier_token23] = ACTIONS(2275), + [aux_sym_cmd_identifier_token24] = ACTIONS(2275), + [aux_sym_cmd_identifier_token25] = ACTIONS(2275), + [aux_sym_cmd_identifier_token26] = ACTIONS(2275), + [aux_sym_cmd_identifier_token27] = ACTIONS(2275), + [aux_sym_cmd_identifier_token28] = ACTIONS(2275), + [aux_sym_cmd_identifier_token29] = ACTIONS(2275), + [aux_sym_cmd_identifier_token30] = ACTIONS(2275), + [aux_sym_cmd_identifier_token31] = ACTIONS(2275), + [aux_sym_cmd_identifier_token32] = ACTIONS(2275), + [aux_sym_cmd_identifier_token33] = ACTIONS(2275), + [aux_sym_cmd_identifier_token34] = ACTIONS(2275), + [aux_sym_cmd_identifier_token35] = ACTIONS(2275), + [aux_sym_cmd_identifier_token36] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [anon_sym_null] = ACTIONS(2275), + [aux_sym_cmd_identifier_token38] = ACTIONS(2275), + [aux_sym_cmd_identifier_token39] = ACTIONS(2275), + [aux_sym_cmd_identifier_token40] = ACTIONS(2275), + [anon_sym_def] = ACTIONS(2275), + [anon_sym_export_DASHenv] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_module] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2275), + [anon_sym_error] = ACTIONS(2275), + [anon_sym_list] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_make] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_do] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_else] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2275), + [anon_sym_catch] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_source] = ACTIONS(2275), + [anon_sym_source_DASHenv] = ACTIONS(2275), + [anon_sym_register] = ACTIONS(2275), + [anon_sym_hide] = ACTIONS(2275), + [anon_sym_hide_DASHenv] = ACTIONS(2275), + [anon_sym_overlay] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2275), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), + [aux_sym__val_number_decimal_token1] = ACTIONS(2275), + [aux_sym__val_number_decimal_token2] = ACTIONS(2275), + [aux_sym__val_number_decimal_token3] = ACTIONS(2275), + [aux_sym__val_number_decimal_token4] = ACTIONS(2275), + [aux_sym__val_number_token1] = ACTIONS(2275), + [aux_sym__val_number_token2] = ACTIONS(2275), + [aux_sym__val_number_token3] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2275), + [sym__str_single_quotes] = ACTIONS(2275), + [sym__str_back_ticks] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), + [sym__entry_separator] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), }, [499] = { [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(2236), - [aux_sym__immediate_decimal_token2] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_alias] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_let_DASHenv] = ACTIONS(2281), + [anon_sym_mut] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [aux_sym_cmd_identifier_token1] = ACTIONS(2281), + [aux_sym_cmd_identifier_token2] = ACTIONS(2281), + [aux_sym_cmd_identifier_token3] = ACTIONS(2281), + [aux_sym_cmd_identifier_token4] = ACTIONS(2281), + [aux_sym_cmd_identifier_token5] = ACTIONS(2281), + [aux_sym_cmd_identifier_token6] = ACTIONS(2281), + [aux_sym_cmd_identifier_token7] = ACTIONS(2281), + [aux_sym_cmd_identifier_token8] = ACTIONS(2281), + [aux_sym_cmd_identifier_token9] = ACTIONS(2281), + [aux_sym_cmd_identifier_token10] = ACTIONS(2281), + [aux_sym_cmd_identifier_token11] = ACTIONS(2281), + [aux_sym_cmd_identifier_token12] = ACTIONS(2281), + [aux_sym_cmd_identifier_token13] = ACTIONS(2281), + [aux_sym_cmd_identifier_token14] = ACTIONS(2281), + [aux_sym_cmd_identifier_token15] = ACTIONS(2281), + [aux_sym_cmd_identifier_token16] = ACTIONS(2281), + [aux_sym_cmd_identifier_token17] = ACTIONS(2281), + [aux_sym_cmd_identifier_token18] = ACTIONS(2281), + [aux_sym_cmd_identifier_token19] = ACTIONS(2281), + [aux_sym_cmd_identifier_token20] = ACTIONS(2281), + [aux_sym_cmd_identifier_token21] = ACTIONS(2281), + [aux_sym_cmd_identifier_token22] = ACTIONS(2281), + [aux_sym_cmd_identifier_token23] = ACTIONS(2281), + [aux_sym_cmd_identifier_token24] = ACTIONS(2281), + [aux_sym_cmd_identifier_token25] = ACTIONS(2281), + [aux_sym_cmd_identifier_token26] = ACTIONS(2281), + [aux_sym_cmd_identifier_token27] = ACTIONS(2281), + [aux_sym_cmd_identifier_token28] = ACTIONS(2281), + [aux_sym_cmd_identifier_token29] = ACTIONS(2281), + [aux_sym_cmd_identifier_token30] = ACTIONS(2281), + [aux_sym_cmd_identifier_token31] = ACTIONS(2281), + [aux_sym_cmd_identifier_token32] = ACTIONS(2281), + [aux_sym_cmd_identifier_token33] = ACTIONS(2281), + [aux_sym_cmd_identifier_token34] = ACTIONS(2281), + [aux_sym_cmd_identifier_token35] = ACTIONS(2281), + [aux_sym_cmd_identifier_token36] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2281), + [anon_sym_export_DASHenv] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_RBRACK] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_error] = ACTIONS(2281), + [anon_sym_list] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_make] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_catch] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_source] = ACTIONS(2281), + [anon_sym_source_DASHenv] = ACTIONS(2281), + [anon_sym_register] = ACTIONS(2281), + [anon_sym_hide] = ACTIONS(2281), + [anon_sym_hide_DASHenv] = ACTIONS(2281), + [anon_sym_overlay] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [sym__str_single_quotes] = ACTIONS(2281), + [sym__str_back_ticks] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), + [sym__entry_separator] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2281), [anon_sym_POUND] = ACTIONS(3), }, [500] = { [sym_comment] = STATE(500), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_alias] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_let_DASHenv] = ACTIONS(2163), - [anon_sym_mut] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [aux_sym_cmd_identifier_token1] = ACTIONS(2163), - [aux_sym_cmd_identifier_token2] = ACTIONS(2163), - [aux_sym_cmd_identifier_token3] = ACTIONS(2163), - [aux_sym_cmd_identifier_token4] = ACTIONS(2163), - [aux_sym_cmd_identifier_token5] = ACTIONS(2163), - [aux_sym_cmd_identifier_token6] = ACTIONS(2163), - [aux_sym_cmd_identifier_token7] = ACTIONS(2163), - [aux_sym_cmd_identifier_token8] = ACTIONS(2163), - [aux_sym_cmd_identifier_token9] = ACTIONS(2163), - [aux_sym_cmd_identifier_token10] = ACTIONS(2163), - [aux_sym_cmd_identifier_token11] = ACTIONS(2163), - [aux_sym_cmd_identifier_token12] = ACTIONS(2163), - [aux_sym_cmd_identifier_token13] = ACTIONS(2163), - [aux_sym_cmd_identifier_token14] = ACTIONS(2163), - [aux_sym_cmd_identifier_token15] = ACTIONS(2163), - [aux_sym_cmd_identifier_token16] = ACTIONS(2163), - [aux_sym_cmd_identifier_token17] = ACTIONS(2163), - [aux_sym_cmd_identifier_token18] = ACTIONS(2163), - [aux_sym_cmd_identifier_token19] = ACTIONS(2163), - [aux_sym_cmd_identifier_token20] = ACTIONS(2163), - [aux_sym_cmd_identifier_token21] = ACTIONS(2163), - [aux_sym_cmd_identifier_token22] = ACTIONS(2163), - [aux_sym_cmd_identifier_token23] = ACTIONS(2163), - [aux_sym_cmd_identifier_token24] = ACTIONS(2163), - [aux_sym_cmd_identifier_token25] = ACTIONS(2163), - [aux_sym_cmd_identifier_token26] = ACTIONS(2163), - [aux_sym_cmd_identifier_token27] = ACTIONS(2163), - [aux_sym_cmd_identifier_token28] = ACTIONS(2163), - [aux_sym_cmd_identifier_token29] = ACTIONS(2163), - [aux_sym_cmd_identifier_token30] = ACTIONS(2163), - [aux_sym_cmd_identifier_token31] = ACTIONS(2163), - [aux_sym_cmd_identifier_token32] = ACTIONS(2163), - [aux_sym_cmd_identifier_token33] = ACTIONS(2163), - [aux_sym_cmd_identifier_token34] = ACTIONS(2163), - [aux_sym_cmd_identifier_token35] = ACTIONS(2163), - [aux_sym_cmd_identifier_token36] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [anon_sym_null] = ACTIONS(2163), - [aux_sym_cmd_identifier_token38] = ACTIONS(2163), - [aux_sym_cmd_identifier_token39] = ACTIONS(2163), - [aux_sym_cmd_identifier_token40] = ACTIONS(2163), - [anon_sym_def] = ACTIONS(2163), - [anon_sym_export_DASHenv] = ACTIONS(2163), - [anon_sym_extern] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_use] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2163), - [anon_sym_error] = ACTIONS(2163), - [anon_sym_list] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [anon_sym_loop] = ACTIONS(2163), - [anon_sym_make] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_do] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_catch] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_source] = ACTIONS(2163), - [anon_sym_source_DASHenv] = ACTIONS(2163), - [anon_sym_register] = ACTIONS(2163), - [anon_sym_hide] = ACTIONS(2163), - [anon_sym_hide_DASHenv] = ACTIONS(2163), - [anon_sym_overlay] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_LPAREN2] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2163), - [aux_sym__val_number_decimal_token1] = ACTIONS(2163), - [aux_sym__val_number_decimal_token2] = ACTIONS(2163), - [anon_sym_DOT2] = ACTIONS(2163), - [aux_sym__val_number_decimal_token3] = ACTIONS(2163), - [aux_sym__val_number_token1] = ACTIONS(2163), - [aux_sym__val_number_token2] = ACTIONS(2163), - [aux_sym__val_number_token3] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), - [aux_sym__unquoted_in_record_token7] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(998), + [aux_sym_cmd_identifier_token3] = ACTIONS(998), + [aux_sym_cmd_identifier_token4] = ACTIONS(998), + [aux_sym_cmd_identifier_token5] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(998), + [aux_sym_cmd_identifier_token7] = ACTIONS(998), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(998), + [aux_sym_cmd_identifier_token17] = ACTIONS(998), + [aux_sym_cmd_identifier_token18] = ACTIONS(998), + [aux_sym_cmd_identifier_token19] = ACTIONS(998), + [aux_sym_cmd_identifier_token20] = ACTIONS(998), + [aux_sym_cmd_identifier_token21] = ACTIONS(998), + [aux_sym_cmd_identifier_token22] = ACTIONS(998), + [aux_sym_cmd_identifier_token23] = ACTIONS(998), + [aux_sym_cmd_identifier_token24] = ACTIONS(998), + [aux_sym_cmd_identifier_token25] = ACTIONS(998), + [aux_sym_cmd_identifier_token26] = ACTIONS(998), + [aux_sym_cmd_identifier_token27] = ACTIONS(998), + [aux_sym_cmd_identifier_token28] = ACTIONS(998), + [aux_sym_cmd_identifier_token29] = ACTIONS(998), + [aux_sym_cmd_identifier_token30] = ACTIONS(998), + [aux_sym_cmd_identifier_token31] = ACTIONS(998), + [aux_sym_cmd_identifier_token32] = ACTIONS(998), + [aux_sym_cmd_identifier_token33] = ACTIONS(998), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(998), + [anon_sym_list] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_new] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [aux_sym_record_entry_token1] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), }, [501] = { [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(940), - [anon_sym_alias] = ACTIONS(940), - [anon_sym_let] = ACTIONS(940), - [anon_sym_let_DASHenv] = ACTIONS(940), - [anon_sym_mut] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [aux_sym_cmd_identifier_token1] = ACTIONS(940), - [aux_sym_cmd_identifier_token2] = ACTIONS(940), - [aux_sym_cmd_identifier_token3] = ACTIONS(940), - [aux_sym_cmd_identifier_token4] = ACTIONS(940), - [aux_sym_cmd_identifier_token5] = ACTIONS(940), - [aux_sym_cmd_identifier_token6] = ACTIONS(940), - [aux_sym_cmd_identifier_token7] = ACTIONS(940), - [aux_sym_cmd_identifier_token8] = ACTIONS(940), - [aux_sym_cmd_identifier_token9] = ACTIONS(940), - [aux_sym_cmd_identifier_token10] = ACTIONS(940), - [aux_sym_cmd_identifier_token11] = ACTIONS(940), - [aux_sym_cmd_identifier_token12] = ACTIONS(940), - [aux_sym_cmd_identifier_token13] = ACTIONS(940), - [aux_sym_cmd_identifier_token14] = ACTIONS(940), - [aux_sym_cmd_identifier_token15] = ACTIONS(940), - [aux_sym_cmd_identifier_token16] = ACTIONS(940), - [aux_sym_cmd_identifier_token17] = ACTIONS(940), - [aux_sym_cmd_identifier_token18] = ACTIONS(940), - [aux_sym_cmd_identifier_token19] = ACTIONS(940), - [aux_sym_cmd_identifier_token20] = ACTIONS(940), - [aux_sym_cmd_identifier_token21] = ACTIONS(940), - [aux_sym_cmd_identifier_token22] = ACTIONS(940), - [aux_sym_cmd_identifier_token23] = ACTIONS(940), - [aux_sym_cmd_identifier_token24] = ACTIONS(940), - [aux_sym_cmd_identifier_token25] = ACTIONS(940), - [aux_sym_cmd_identifier_token26] = ACTIONS(940), - [aux_sym_cmd_identifier_token27] = ACTIONS(940), - [aux_sym_cmd_identifier_token28] = ACTIONS(940), - [aux_sym_cmd_identifier_token29] = ACTIONS(940), - [aux_sym_cmd_identifier_token30] = ACTIONS(940), - [aux_sym_cmd_identifier_token31] = ACTIONS(940), - [aux_sym_cmd_identifier_token32] = ACTIONS(940), - [aux_sym_cmd_identifier_token33] = ACTIONS(940), - [aux_sym_cmd_identifier_token34] = ACTIONS(940), - [aux_sym_cmd_identifier_token35] = ACTIONS(940), - [aux_sym_cmd_identifier_token36] = ACTIONS(940), - [anon_sym_true] = ACTIONS(946), - [anon_sym_false] = ACTIONS(946), - [anon_sym_null] = ACTIONS(946), - [aux_sym_cmd_identifier_token38] = ACTIONS(940), - [aux_sym_cmd_identifier_token39] = ACTIONS(946), - [aux_sym_cmd_identifier_token40] = ACTIONS(946), - [anon_sym_def] = ACTIONS(940), - [anon_sym_export_DASHenv] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym_module] = ACTIONS(940), - [anon_sym_use] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(946), - [anon_sym_error] = ACTIONS(940), - [anon_sym_list] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_in] = ACTIONS(940), - [anon_sym_loop] = ACTIONS(940), - [anon_sym_make] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_match] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_try] = ACTIONS(940), - [anon_sym_catch] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_source] = ACTIONS(940), - [anon_sym_source_DASHenv] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_hide] = ACTIONS(940), - [anon_sym_hide_DASHenv] = ACTIONS(940), - [anon_sym_overlay] = ACTIONS(940), - [anon_sym_new] = ACTIONS(940), - [anon_sym_as] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(946), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(946), - [aux_sym__val_number_decimal_token1] = ACTIONS(940), - [aux_sym__val_number_decimal_token2] = ACTIONS(946), - [anon_sym_DOT2] = ACTIONS(940), - [aux_sym__val_number_decimal_token3] = ACTIONS(946), - [aux_sym__val_number_token1] = ACTIONS(946), - [aux_sym__val_number_token2] = ACTIONS(946), - [aux_sym__val_number_token3] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym__str_single_quotes] = ACTIONS(946), - [sym__str_back_ticks] = ACTIONS(946), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(946), - [aux_sym_record_entry_token1] = ACTIONS(2240), + [anon_sym_export] = ACTIONS(2287), + [anon_sym_alias] = ACTIONS(2287), + [anon_sym_let] = ACTIONS(2287), + [anon_sym_let_DASHenv] = ACTIONS(2287), + [anon_sym_mut] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [aux_sym_cmd_identifier_token1] = ACTIONS(2287), + [aux_sym_cmd_identifier_token2] = ACTIONS(2287), + [aux_sym_cmd_identifier_token3] = ACTIONS(2287), + [aux_sym_cmd_identifier_token4] = ACTIONS(2287), + [aux_sym_cmd_identifier_token5] = ACTIONS(2287), + [aux_sym_cmd_identifier_token6] = ACTIONS(2287), + [aux_sym_cmd_identifier_token7] = ACTIONS(2287), + [aux_sym_cmd_identifier_token8] = ACTIONS(2287), + [aux_sym_cmd_identifier_token9] = ACTIONS(2287), + [aux_sym_cmd_identifier_token10] = ACTIONS(2287), + [aux_sym_cmd_identifier_token11] = ACTIONS(2287), + [aux_sym_cmd_identifier_token12] = ACTIONS(2287), + [aux_sym_cmd_identifier_token13] = ACTIONS(2287), + [aux_sym_cmd_identifier_token14] = ACTIONS(2287), + [aux_sym_cmd_identifier_token15] = ACTIONS(2287), + [aux_sym_cmd_identifier_token16] = ACTIONS(2287), + [aux_sym_cmd_identifier_token17] = ACTIONS(2287), + [aux_sym_cmd_identifier_token18] = ACTIONS(2287), + [aux_sym_cmd_identifier_token19] = ACTIONS(2287), + [aux_sym_cmd_identifier_token20] = ACTIONS(2287), + [aux_sym_cmd_identifier_token21] = ACTIONS(2287), + [aux_sym_cmd_identifier_token22] = ACTIONS(2287), + [aux_sym_cmd_identifier_token23] = ACTIONS(2287), + [aux_sym_cmd_identifier_token24] = ACTIONS(2287), + [aux_sym_cmd_identifier_token25] = ACTIONS(2287), + [aux_sym_cmd_identifier_token26] = ACTIONS(2287), + [aux_sym_cmd_identifier_token27] = ACTIONS(2287), + [aux_sym_cmd_identifier_token28] = ACTIONS(2287), + [aux_sym_cmd_identifier_token29] = ACTIONS(2287), + [aux_sym_cmd_identifier_token30] = ACTIONS(2287), + [aux_sym_cmd_identifier_token31] = ACTIONS(2287), + [aux_sym_cmd_identifier_token32] = ACTIONS(2287), + [aux_sym_cmd_identifier_token33] = ACTIONS(2287), + [aux_sym_cmd_identifier_token34] = ACTIONS(2287), + [aux_sym_cmd_identifier_token35] = ACTIONS(2287), + [aux_sym_cmd_identifier_token36] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2287), + [anon_sym_false] = ACTIONS(2287), + [anon_sym_null] = ACTIONS(2287), + [aux_sym_cmd_identifier_token38] = ACTIONS(2287), + [aux_sym_cmd_identifier_token39] = ACTIONS(2287), + [aux_sym_cmd_identifier_token40] = ACTIONS(2287), + [anon_sym_def] = ACTIONS(2287), + [anon_sym_export_DASHenv] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym_module] = ACTIONS(2287), + [anon_sym_use] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_DOLLAR] = ACTIONS(2287), + [anon_sym_error] = ACTIONS(2287), + [anon_sym_list] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_in] = ACTIONS(2287), + [anon_sym_loop] = ACTIONS(2287), + [anon_sym_make] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_else] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_catch] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_source] = ACTIONS(2287), + [anon_sym_source_DASHenv] = ACTIONS(2287), + [anon_sym_register] = ACTIONS(2287), + [anon_sym_hide] = ACTIONS(2287), + [anon_sym_hide_DASHenv] = ACTIONS(2287), + [anon_sym_overlay] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2287), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(2289), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2287), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2287), + [aux_sym__val_number_decimal_token1] = ACTIONS(2287), + [aux_sym__val_number_decimal_token2] = ACTIONS(2287), + [aux_sym__val_number_decimal_token3] = ACTIONS(2287), + [aux_sym__val_number_decimal_token4] = ACTIONS(2287), + [aux_sym__val_number_token1] = ACTIONS(2287), + [aux_sym__val_number_token2] = ACTIONS(2287), + [aux_sym__val_number_token3] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(2287), + [sym__str_single_quotes] = ACTIONS(2287), + [sym__str_back_ticks] = ACTIONS(2287), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2287), + [sym__entry_separator] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2287), [anon_sym_POUND] = ACTIONS(3), }, [502] = { [sym_comment] = STATE(502), - [anon_sym_export] = ACTIONS(2073), - [anon_sym_alias] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_let_DASHenv] = ACTIONS(2073), - [anon_sym_mut] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [aux_sym_cmd_identifier_token1] = ACTIONS(2073), - [aux_sym_cmd_identifier_token2] = ACTIONS(2073), - [aux_sym_cmd_identifier_token3] = ACTIONS(2073), - [aux_sym_cmd_identifier_token4] = ACTIONS(2073), - [aux_sym_cmd_identifier_token5] = ACTIONS(2073), - [aux_sym_cmd_identifier_token6] = ACTIONS(2073), - [aux_sym_cmd_identifier_token7] = ACTIONS(2073), - [aux_sym_cmd_identifier_token8] = ACTIONS(2073), - [aux_sym_cmd_identifier_token9] = ACTIONS(2073), - [aux_sym_cmd_identifier_token10] = ACTIONS(2073), - [aux_sym_cmd_identifier_token11] = ACTIONS(2073), - [aux_sym_cmd_identifier_token12] = ACTIONS(2073), - [aux_sym_cmd_identifier_token13] = ACTIONS(2073), - [aux_sym_cmd_identifier_token14] = ACTIONS(2073), - [aux_sym_cmd_identifier_token15] = ACTIONS(2073), - [aux_sym_cmd_identifier_token16] = ACTIONS(2073), - [aux_sym_cmd_identifier_token17] = ACTIONS(2073), - [aux_sym_cmd_identifier_token18] = ACTIONS(2073), - [aux_sym_cmd_identifier_token19] = ACTIONS(2073), - [aux_sym_cmd_identifier_token20] = ACTIONS(2073), - [aux_sym_cmd_identifier_token21] = ACTIONS(2073), - [aux_sym_cmd_identifier_token22] = ACTIONS(2073), - [aux_sym_cmd_identifier_token23] = ACTIONS(2073), - [aux_sym_cmd_identifier_token24] = ACTIONS(2073), - [aux_sym_cmd_identifier_token25] = ACTIONS(2073), - [aux_sym_cmd_identifier_token26] = ACTIONS(2073), - [aux_sym_cmd_identifier_token27] = ACTIONS(2073), - [aux_sym_cmd_identifier_token28] = ACTIONS(2073), - [aux_sym_cmd_identifier_token29] = ACTIONS(2073), - [aux_sym_cmd_identifier_token30] = ACTIONS(2073), - [aux_sym_cmd_identifier_token31] = ACTIONS(2073), - [aux_sym_cmd_identifier_token32] = ACTIONS(2073), - [aux_sym_cmd_identifier_token33] = ACTIONS(2073), - [aux_sym_cmd_identifier_token34] = ACTIONS(2073), - [aux_sym_cmd_identifier_token35] = ACTIONS(2073), - [aux_sym_cmd_identifier_token36] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [aux_sym_cmd_identifier_token38] = ACTIONS(2073), - [aux_sym_cmd_identifier_token39] = ACTIONS(2073), - [aux_sym_cmd_identifier_token40] = ACTIONS(2073), - [anon_sym_def] = ACTIONS(2073), - [anon_sym_export_DASHenv] = ACTIONS(2073), - [anon_sym_extern] = ACTIONS(2073), - [anon_sym_module] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2073), - [anon_sym_list] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_in] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_make] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_else] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_catch] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_source] = ACTIONS(2073), - [anon_sym_source_DASHenv] = ACTIONS(2073), - [anon_sym_register] = ACTIONS(2073), - [anon_sym_hide] = ACTIONS(2073), - [anon_sym_hide_DASHenv] = ACTIONS(2073), - [anon_sym_overlay] = ACTIONS(2073), - [anon_sym_new] = ACTIONS(2073), - [anon_sym_as] = ACTIONS(2073), - [anon_sym_LPAREN2] = ACTIONS(2075), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2073), - [anon_sym_DOT2] = ACTIONS(2073), - [aux_sym__val_number_decimal_token3] = ACTIONS(2073), - [aux_sym__val_number_token1] = ACTIONS(2073), - [aux_sym__val_number_token2] = ACTIONS(2073), - [aux_sym__val_number_token3] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2075), - [sym__str_single_quotes] = ACTIONS(2075), - [sym__str_back_ticks] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2075), - [aux_sym__unquoted_in_record_token7] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__multiple_types_repeat1] = STATE(527), + [anon_sym_export] = ACTIONS(2275), + [anon_sym_alias] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_let_DASHenv] = ACTIONS(2275), + [anon_sym_mut] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [aux_sym_cmd_identifier_token1] = ACTIONS(2275), + [aux_sym_cmd_identifier_token2] = ACTIONS(2275), + [aux_sym_cmd_identifier_token3] = ACTIONS(2275), + [aux_sym_cmd_identifier_token4] = ACTIONS(2275), + [aux_sym_cmd_identifier_token5] = ACTIONS(2275), + [aux_sym_cmd_identifier_token6] = ACTIONS(2275), + [aux_sym_cmd_identifier_token7] = ACTIONS(2275), + [aux_sym_cmd_identifier_token8] = ACTIONS(2275), + [aux_sym_cmd_identifier_token9] = ACTIONS(2275), + [aux_sym_cmd_identifier_token10] = ACTIONS(2275), + [aux_sym_cmd_identifier_token11] = ACTIONS(2275), + [aux_sym_cmd_identifier_token12] = ACTIONS(2275), + [aux_sym_cmd_identifier_token13] = ACTIONS(2275), + [aux_sym_cmd_identifier_token14] = ACTIONS(2275), + [aux_sym_cmd_identifier_token15] = ACTIONS(2275), + [aux_sym_cmd_identifier_token16] = ACTIONS(2275), + [aux_sym_cmd_identifier_token17] = ACTIONS(2275), + [aux_sym_cmd_identifier_token18] = ACTIONS(2275), + [aux_sym_cmd_identifier_token19] = ACTIONS(2275), + [aux_sym_cmd_identifier_token20] = ACTIONS(2275), + [aux_sym_cmd_identifier_token21] = ACTIONS(2275), + [aux_sym_cmd_identifier_token22] = ACTIONS(2275), + [aux_sym_cmd_identifier_token23] = ACTIONS(2275), + [aux_sym_cmd_identifier_token24] = ACTIONS(2275), + [aux_sym_cmd_identifier_token25] = ACTIONS(2275), + [aux_sym_cmd_identifier_token26] = ACTIONS(2275), + [aux_sym_cmd_identifier_token27] = ACTIONS(2275), + [aux_sym_cmd_identifier_token28] = ACTIONS(2275), + [aux_sym_cmd_identifier_token29] = ACTIONS(2275), + [aux_sym_cmd_identifier_token30] = ACTIONS(2275), + [aux_sym_cmd_identifier_token31] = ACTIONS(2275), + [aux_sym_cmd_identifier_token32] = ACTIONS(2275), + [aux_sym_cmd_identifier_token33] = ACTIONS(2275), + [aux_sym_cmd_identifier_token34] = ACTIONS(2275), + [aux_sym_cmd_identifier_token35] = ACTIONS(2275), + [aux_sym_cmd_identifier_token36] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [anon_sym_null] = ACTIONS(2275), + [aux_sym_cmd_identifier_token38] = ACTIONS(2275), + [aux_sym_cmd_identifier_token39] = ACTIONS(2275), + [aux_sym_cmd_identifier_token40] = ACTIONS(2275), + [anon_sym_def] = ACTIONS(2275), + [anon_sym_export_DASHenv] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_module] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2275), + [anon_sym_error] = ACTIONS(2275), + [anon_sym_list] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_make] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_do] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_else] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2275), + [anon_sym_catch] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_source] = ACTIONS(2275), + [anon_sym_source_DASHenv] = ACTIONS(2275), + [anon_sym_register] = ACTIONS(2275), + [anon_sym_hide] = ACTIONS(2275), + [anon_sym_hide_DASHenv] = ACTIONS(2275), + [anon_sym_overlay] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2275), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), + [aux_sym__val_number_decimal_token1] = ACTIONS(2275), + [aux_sym__val_number_decimal_token2] = ACTIONS(2275), + [aux_sym__val_number_decimal_token3] = ACTIONS(2275), + [aux_sym__val_number_decimal_token4] = ACTIONS(2275), + [aux_sym__val_number_token1] = ACTIONS(2275), + [aux_sym__val_number_token2] = ACTIONS(2275), + [aux_sym__val_number_token3] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2275), + [sym__str_single_quotes] = ACTIONS(2275), + [sym__str_back_ticks] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), + [sym__entry_separator] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), }, [503] = { [sym_comment] = STATE(503), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_alias] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_let_DASHenv] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [aux_sym_cmd_identifier_token1] = ACTIONS(2055), - [aux_sym_cmd_identifier_token2] = ACTIONS(2055), - [aux_sym_cmd_identifier_token3] = ACTIONS(2055), - [aux_sym_cmd_identifier_token4] = ACTIONS(2055), - [aux_sym_cmd_identifier_token5] = ACTIONS(2055), - [aux_sym_cmd_identifier_token6] = ACTIONS(2055), - [aux_sym_cmd_identifier_token7] = ACTIONS(2055), - [aux_sym_cmd_identifier_token8] = ACTIONS(2055), - [aux_sym_cmd_identifier_token9] = ACTIONS(2055), - [aux_sym_cmd_identifier_token10] = ACTIONS(2055), - [aux_sym_cmd_identifier_token11] = ACTIONS(2055), - [aux_sym_cmd_identifier_token12] = ACTIONS(2055), - [aux_sym_cmd_identifier_token13] = ACTIONS(2055), - [aux_sym_cmd_identifier_token14] = ACTIONS(2055), - [aux_sym_cmd_identifier_token15] = ACTIONS(2055), - [aux_sym_cmd_identifier_token16] = ACTIONS(2055), - [aux_sym_cmd_identifier_token17] = ACTIONS(2055), - [aux_sym_cmd_identifier_token18] = ACTIONS(2055), - [aux_sym_cmd_identifier_token19] = ACTIONS(2055), - [aux_sym_cmd_identifier_token20] = ACTIONS(2055), - [aux_sym_cmd_identifier_token21] = ACTIONS(2055), - [aux_sym_cmd_identifier_token22] = ACTIONS(2055), - [aux_sym_cmd_identifier_token23] = ACTIONS(2055), - [aux_sym_cmd_identifier_token24] = ACTIONS(2055), - [aux_sym_cmd_identifier_token25] = ACTIONS(2055), - [aux_sym_cmd_identifier_token26] = ACTIONS(2055), - [aux_sym_cmd_identifier_token27] = ACTIONS(2055), - [aux_sym_cmd_identifier_token28] = ACTIONS(2055), - [aux_sym_cmd_identifier_token29] = ACTIONS(2055), - [aux_sym_cmd_identifier_token30] = ACTIONS(2055), - [aux_sym_cmd_identifier_token31] = ACTIONS(2055), - [aux_sym_cmd_identifier_token32] = ACTIONS(2055), - [aux_sym_cmd_identifier_token33] = ACTIONS(2055), - [aux_sym_cmd_identifier_token34] = ACTIONS(2055), - [aux_sym_cmd_identifier_token35] = ACTIONS(2055), - [aux_sym_cmd_identifier_token36] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [anon_sym_null] = ACTIONS(2055), - [aux_sym_cmd_identifier_token38] = ACTIONS(2055), - [aux_sym_cmd_identifier_token39] = ACTIONS(2055), - [aux_sym_cmd_identifier_token40] = ACTIONS(2055), - [anon_sym_def] = ACTIONS(2055), - [anon_sym_export_DASHenv] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_error] = ACTIONS(2055), - [anon_sym_list] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_make] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_catch] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_source] = ACTIONS(2055), - [anon_sym_source_DASHenv] = ACTIONS(2055), - [anon_sym_register] = ACTIONS(2055), - [anon_sym_hide] = ACTIONS(2055), - [anon_sym_hide_DASHenv] = ACTIONS(2055), - [anon_sym_overlay] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LPAREN2] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2055), - [aux_sym__val_number_decimal_token2] = ACTIONS(2055), - [anon_sym_DOT2] = ACTIONS(2055), - [aux_sym__val_number_decimal_token3] = ACTIONS(2055), - [aux_sym__val_number_token1] = ACTIONS(2055), - [aux_sym__val_number_token2] = ACTIONS(2055), - [aux_sym__val_number_token3] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [sym__str_single_quotes] = ACTIONS(2055), - [sym__str_back_ticks] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2055), - [sym__entry_separator] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(970), + [anon_sym_alias] = ACTIONS(970), + [anon_sym_let] = ACTIONS(970), + [anon_sym_let_DASHenv] = ACTIONS(970), + [anon_sym_mut] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [aux_sym_cmd_identifier_token1] = ACTIONS(970), + [aux_sym_cmd_identifier_token2] = ACTIONS(970), + [aux_sym_cmd_identifier_token3] = ACTIONS(970), + [aux_sym_cmd_identifier_token4] = ACTIONS(970), + [aux_sym_cmd_identifier_token5] = ACTIONS(970), + [aux_sym_cmd_identifier_token6] = ACTIONS(970), + [aux_sym_cmd_identifier_token7] = ACTIONS(970), + [aux_sym_cmd_identifier_token8] = ACTIONS(970), + [aux_sym_cmd_identifier_token9] = ACTIONS(970), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(970), + [aux_sym_cmd_identifier_token13] = ACTIONS(970), + [aux_sym_cmd_identifier_token14] = ACTIONS(970), + [aux_sym_cmd_identifier_token15] = ACTIONS(970), + [aux_sym_cmd_identifier_token16] = ACTIONS(970), + [aux_sym_cmd_identifier_token17] = ACTIONS(970), + [aux_sym_cmd_identifier_token18] = ACTIONS(970), + [aux_sym_cmd_identifier_token19] = ACTIONS(970), + [aux_sym_cmd_identifier_token20] = ACTIONS(970), + [aux_sym_cmd_identifier_token21] = ACTIONS(970), + [aux_sym_cmd_identifier_token22] = ACTIONS(970), + [aux_sym_cmd_identifier_token23] = ACTIONS(970), + [aux_sym_cmd_identifier_token24] = ACTIONS(970), + [aux_sym_cmd_identifier_token25] = ACTIONS(970), + [aux_sym_cmd_identifier_token26] = ACTIONS(970), + [aux_sym_cmd_identifier_token27] = ACTIONS(970), + [aux_sym_cmd_identifier_token28] = ACTIONS(970), + [aux_sym_cmd_identifier_token29] = ACTIONS(970), + [aux_sym_cmd_identifier_token30] = ACTIONS(970), + [aux_sym_cmd_identifier_token31] = ACTIONS(970), + [aux_sym_cmd_identifier_token32] = ACTIONS(970), + [aux_sym_cmd_identifier_token33] = ACTIONS(970), + [aux_sym_cmd_identifier_token34] = ACTIONS(970), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_null] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(970), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [anon_sym_def] = ACTIONS(970), + [anon_sym_export_DASHenv] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_use] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(970), + [anon_sym_list] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_in] = ACTIONS(970), + [anon_sym_loop] = ACTIONS(970), + [anon_sym_make] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_match] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(970), + [anon_sym_catch] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_source] = ACTIONS(970), + [anon_sym_source_DASHenv] = ACTIONS(970), + [anon_sym_register] = ACTIONS(970), + [anon_sym_hide] = ACTIONS(970), + [anon_sym_hide_DASHenv] = ACTIONS(970), + [anon_sym_overlay] = ACTIONS(970), + [anon_sym_new] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(2293), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), }, [504] = { [sym_comment] = STATE(504), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(2242), - [aux_sym__immediate_decimal_token2] = ACTIONS(2244), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [anon_sym_export] = ACTIONS(2295), + [anon_sym_alias] = ACTIONS(2295), + [anon_sym_let] = ACTIONS(2295), + [anon_sym_let_DASHenv] = ACTIONS(2295), + [anon_sym_mut] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [aux_sym_cmd_identifier_token1] = ACTIONS(2295), + [aux_sym_cmd_identifier_token2] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2295), + [aux_sym_cmd_identifier_token4] = ACTIONS(2295), + [aux_sym_cmd_identifier_token5] = ACTIONS(2295), + [aux_sym_cmd_identifier_token6] = ACTIONS(2295), + [aux_sym_cmd_identifier_token7] = ACTIONS(2295), + [aux_sym_cmd_identifier_token8] = ACTIONS(2295), + [aux_sym_cmd_identifier_token9] = ACTIONS(2295), + [aux_sym_cmd_identifier_token10] = ACTIONS(2295), + [aux_sym_cmd_identifier_token11] = ACTIONS(2295), + [aux_sym_cmd_identifier_token12] = ACTIONS(2295), + [aux_sym_cmd_identifier_token13] = ACTIONS(2295), + [aux_sym_cmd_identifier_token14] = ACTIONS(2295), + [aux_sym_cmd_identifier_token15] = ACTIONS(2295), + [aux_sym_cmd_identifier_token16] = ACTIONS(2295), + [aux_sym_cmd_identifier_token17] = ACTIONS(2295), + [aux_sym_cmd_identifier_token18] = ACTIONS(2295), + [aux_sym_cmd_identifier_token19] = ACTIONS(2295), + [aux_sym_cmd_identifier_token20] = ACTIONS(2295), + [aux_sym_cmd_identifier_token21] = ACTIONS(2295), + [aux_sym_cmd_identifier_token22] = ACTIONS(2295), + [aux_sym_cmd_identifier_token23] = ACTIONS(2295), + [aux_sym_cmd_identifier_token24] = ACTIONS(2295), + [aux_sym_cmd_identifier_token25] = ACTIONS(2295), + [aux_sym_cmd_identifier_token26] = ACTIONS(2295), + [aux_sym_cmd_identifier_token27] = ACTIONS(2295), + [aux_sym_cmd_identifier_token28] = ACTIONS(2295), + [aux_sym_cmd_identifier_token29] = ACTIONS(2295), + [aux_sym_cmd_identifier_token30] = ACTIONS(2295), + [aux_sym_cmd_identifier_token31] = ACTIONS(2295), + [aux_sym_cmd_identifier_token32] = ACTIONS(2295), + [aux_sym_cmd_identifier_token33] = ACTIONS(2295), + [aux_sym_cmd_identifier_token34] = ACTIONS(2295), + [aux_sym_cmd_identifier_token35] = ACTIONS(2295), + [aux_sym_cmd_identifier_token36] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(2295), + [anon_sym_false] = ACTIONS(2295), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token38] = ACTIONS(2295), + [aux_sym_cmd_identifier_token39] = ACTIONS(2295), + [aux_sym_cmd_identifier_token40] = ACTIONS(2295), + [anon_sym_def] = ACTIONS(2295), + [anon_sym_export_DASHenv] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym_module] = ACTIONS(2295), + [anon_sym_use] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2295), + [anon_sym_error] = ACTIONS(2295), + [anon_sym_list] = ACTIONS(2295), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_in] = ACTIONS(2295), + [anon_sym_loop] = ACTIONS(2295), + [anon_sym_make] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [anon_sym_do] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_else] = ACTIONS(2295), + [anon_sym_match] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [anon_sym_catch] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_source] = ACTIONS(2295), + [anon_sym_source_DASHenv] = ACTIONS(2295), + [anon_sym_register] = ACTIONS(2295), + [anon_sym_hide] = ACTIONS(2295), + [anon_sym_hide_DASHenv] = ACTIONS(2295), + [anon_sym_overlay] = ACTIONS(2295), + [anon_sym_new] = ACTIONS(2295), + [anon_sym_as] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2295), + [aux_sym__val_number_decimal_token1] = ACTIONS(2295), + [aux_sym__val_number_decimal_token2] = ACTIONS(2295), + [aux_sym__val_number_decimal_token3] = ACTIONS(2295), + [aux_sym__val_number_decimal_token4] = ACTIONS(2295), + [aux_sym__val_number_token1] = ACTIONS(2295), + [aux_sym__val_number_token2] = ACTIONS(2295), + [aux_sym__val_number_token3] = ACTIONS(2295), + [anon_sym_DQUOTE] = ACTIONS(2295), + [sym__str_single_quotes] = ACTIONS(2295), + [sym__str_back_ticks] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2295), + [sym__entry_separator] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2295), + [anon_sym_POUND] = ACTIONS(3), + }, + [505] = { + [sym_comment] = STATE(505), + [aux_sym__multiple_types_repeat1] = STATE(516), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_alias] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_let_DASHenv] = ACTIONS(2299), + [anon_sym_mut] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [aux_sym_cmd_identifier_token1] = ACTIONS(2299), + [aux_sym_cmd_identifier_token2] = ACTIONS(2299), + [aux_sym_cmd_identifier_token3] = ACTIONS(2299), + [aux_sym_cmd_identifier_token4] = ACTIONS(2299), + [aux_sym_cmd_identifier_token5] = ACTIONS(2299), + [aux_sym_cmd_identifier_token6] = ACTIONS(2299), + [aux_sym_cmd_identifier_token7] = ACTIONS(2299), + [aux_sym_cmd_identifier_token8] = ACTIONS(2299), + [aux_sym_cmd_identifier_token9] = ACTIONS(2299), + [aux_sym_cmd_identifier_token10] = ACTIONS(2299), + [aux_sym_cmd_identifier_token11] = ACTIONS(2299), + [aux_sym_cmd_identifier_token12] = ACTIONS(2299), + [aux_sym_cmd_identifier_token13] = ACTIONS(2299), + [aux_sym_cmd_identifier_token14] = ACTIONS(2299), + [aux_sym_cmd_identifier_token15] = ACTIONS(2299), + [aux_sym_cmd_identifier_token16] = ACTIONS(2299), + [aux_sym_cmd_identifier_token17] = ACTIONS(2299), + [aux_sym_cmd_identifier_token18] = ACTIONS(2299), + [aux_sym_cmd_identifier_token19] = ACTIONS(2299), + [aux_sym_cmd_identifier_token20] = ACTIONS(2299), + [aux_sym_cmd_identifier_token21] = ACTIONS(2299), + [aux_sym_cmd_identifier_token22] = ACTIONS(2299), + [aux_sym_cmd_identifier_token23] = ACTIONS(2299), + [aux_sym_cmd_identifier_token24] = ACTIONS(2299), + [aux_sym_cmd_identifier_token25] = ACTIONS(2299), + [aux_sym_cmd_identifier_token26] = ACTIONS(2299), + [aux_sym_cmd_identifier_token27] = ACTIONS(2299), + [aux_sym_cmd_identifier_token28] = ACTIONS(2299), + [aux_sym_cmd_identifier_token29] = ACTIONS(2299), + [aux_sym_cmd_identifier_token30] = ACTIONS(2299), + [aux_sym_cmd_identifier_token31] = ACTIONS(2299), + [aux_sym_cmd_identifier_token32] = ACTIONS(2299), + [aux_sym_cmd_identifier_token33] = ACTIONS(2299), + [aux_sym_cmd_identifier_token34] = ACTIONS(2299), + [aux_sym_cmd_identifier_token35] = ACTIONS(2299), + [aux_sym_cmd_identifier_token36] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(2299), + [anon_sym_false] = ACTIONS(2299), + [anon_sym_null] = ACTIONS(2299), + [aux_sym_cmd_identifier_token38] = ACTIONS(2299), + [aux_sym_cmd_identifier_token39] = ACTIONS(2299), + [aux_sym_cmd_identifier_token40] = ACTIONS(2299), + [anon_sym_def] = ACTIONS(2299), + [anon_sym_export_DASHenv] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2299), + [anon_sym_module] = ACTIONS(2299), + [anon_sym_use] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2299), + [anon_sym_error] = ACTIONS(2299), + [anon_sym_list] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_in] = ACTIONS(2299), + [anon_sym_loop] = ACTIONS(2299), + [anon_sym_make] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2299), + [anon_sym_match] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_catch] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_source] = ACTIONS(2299), + [anon_sym_source_DASHenv] = ACTIONS(2299), + [anon_sym_register] = ACTIONS(2299), + [anon_sym_hide] = ACTIONS(2299), + [anon_sym_hide_DASHenv] = ACTIONS(2299), + [anon_sym_overlay] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_as] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2299), + [aux_sym__val_number_decimal_token1] = ACTIONS(2299), + [aux_sym__val_number_decimal_token2] = ACTIONS(2299), + [aux_sym__val_number_decimal_token3] = ACTIONS(2299), + [aux_sym__val_number_decimal_token4] = ACTIONS(2299), + [aux_sym__val_number_token1] = ACTIONS(2299), + [aux_sym__val_number_token2] = ACTIONS(2299), + [aux_sym__val_number_token3] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2299), + [sym__str_single_quotes] = ACTIONS(2299), + [sym__str_back_ticks] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2299), + [sym__entry_separator] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2299), [anon_sym_POUND] = ACTIONS(3), }, - [505] = { - [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1733), - [aux_sym_cmd_identifier_token3] = ACTIONS(1733), - [aux_sym_cmd_identifier_token4] = ACTIONS(1733), - [aux_sym_cmd_identifier_token5] = ACTIONS(1733), - [aux_sym_cmd_identifier_token6] = ACTIONS(1733), - [aux_sym_cmd_identifier_token7] = ACTIONS(1733), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1733), - [aux_sym_cmd_identifier_token11] = ACTIONS(1733), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1733), - [aux_sym_cmd_identifier_token17] = ACTIONS(1733), - [aux_sym_cmd_identifier_token18] = ACTIONS(1733), - [aux_sym_cmd_identifier_token19] = ACTIONS(1733), - [aux_sym_cmd_identifier_token20] = ACTIONS(1733), - [aux_sym_cmd_identifier_token21] = ACTIONS(1733), - [aux_sym_cmd_identifier_token22] = ACTIONS(1733), - [aux_sym_cmd_identifier_token23] = ACTIONS(1733), - [aux_sym_cmd_identifier_token24] = ACTIONS(1733), - [aux_sym_cmd_identifier_token25] = ACTIONS(1733), - [aux_sym_cmd_identifier_token26] = ACTIONS(1733), - [aux_sym_cmd_identifier_token27] = ACTIONS(1733), - [aux_sym_cmd_identifier_token28] = ACTIONS(1733), - [aux_sym_cmd_identifier_token29] = ACTIONS(1733), - [aux_sym_cmd_identifier_token30] = ACTIONS(1733), - [aux_sym_cmd_identifier_token31] = ACTIONS(1733), - [aux_sym_cmd_identifier_token32] = ACTIONS(1733), - [aux_sym_cmd_identifier_token33] = ACTIONS(1733), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1733), - [aux_sym_cmd_identifier_token36] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [anon_sym_null] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1733), - [aux_sym_cmd_identifier_token40] = ACTIONS(1733), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_RBRACK] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_list] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [anon_sym_DOT2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1733), - [aux_sym__val_number_token1] = ACTIONS(1733), - [aux_sym__val_number_token2] = ACTIONS(1733), - [aux_sym__val_number_token3] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym__str_single_quotes] = ACTIONS(1733), - [sym__str_back_ticks] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), - [sym__entry_separator] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(121), - }, [506] = { + [sym__expr_parenthesized_immediate] = STATE(7628), [sym_comment] = STATE(506), - [aux_sym__multiple_types_repeat1] = STATE(511), - [anon_sym_export] = ACTIONS(2220), - [anon_sym_alias] = ACTIONS(2220), - [anon_sym_let] = ACTIONS(2220), - [anon_sym_let_DASHenv] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [aux_sym_cmd_identifier_token1] = ACTIONS(2220), - [aux_sym_cmd_identifier_token2] = ACTIONS(2220), - [aux_sym_cmd_identifier_token3] = ACTIONS(2220), - [aux_sym_cmd_identifier_token4] = ACTIONS(2220), - [aux_sym_cmd_identifier_token5] = ACTIONS(2220), - [aux_sym_cmd_identifier_token6] = ACTIONS(2220), - [aux_sym_cmd_identifier_token7] = ACTIONS(2220), - [aux_sym_cmd_identifier_token8] = ACTIONS(2220), - [aux_sym_cmd_identifier_token9] = ACTIONS(2220), - [aux_sym_cmd_identifier_token10] = ACTIONS(2220), - [aux_sym_cmd_identifier_token11] = ACTIONS(2220), - [aux_sym_cmd_identifier_token12] = ACTIONS(2220), - [aux_sym_cmd_identifier_token13] = ACTIONS(2220), - [aux_sym_cmd_identifier_token14] = ACTIONS(2220), - [aux_sym_cmd_identifier_token15] = ACTIONS(2220), - [aux_sym_cmd_identifier_token16] = ACTIONS(2220), - [aux_sym_cmd_identifier_token17] = ACTIONS(2220), - [aux_sym_cmd_identifier_token18] = ACTIONS(2220), - [aux_sym_cmd_identifier_token19] = ACTIONS(2220), - [aux_sym_cmd_identifier_token20] = ACTIONS(2220), - [aux_sym_cmd_identifier_token21] = ACTIONS(2220), - [aux_sym_cmd_identifier_token22] = ACTIONS(2220), - [aux_sym_cmd_identifier_token23] = ACTIONS(2220), - [aux_sym_cmd_identifier_token24] = ACTIONS(2220), - [aux_sym_cmd_identifier_token25] = ACTIONS(2220), - [aux_sym_cmd_identifier_token26] = ACTIONS(2220), - [aux_sym_cmd_identifier_token27] = ACTIONS(2220), - [aux_sym_cmd_identifier_token28] = ACTIONS(2220), - [aux_sym_cmd_identifier_token29] = ACTIONS(2220), - [aux_sym_cmd_identifier_token30] = ACTIONS(2220), - [aux_sym_cmd_identifier_token31] = ACTIONS(2220), - [aux_sym_cmd_identifier_token32] = ACTIONS(2220), - [aux_sym_cmd_identifier_token33] = ACTIONS(2220), - [aux_sym_cmd_identifier_token34] = ACTIONS(2220), - [aux_sym_cmd_identifier_token35] = ACTIONS(2220), - [aux_sym_cmd_identifier_token36] = ACTIONS(2220), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2220), - [aux_sym_cmd_identifier_token38] = ACTIONS(2220), - [aux_sym_cmd_identifier_token39] = ACTIONS(2220), - [aux_sym_cmd_identifier_token40] = ACTIONS(2220), - [anon_sym_def] = ACTIONS(2220), - [anon_sym_export_DASHenv] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_module] = ACTIONS(2220), - [anon_sym_use] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_error] = ACTIONS(2220), - [anon_sym_list] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_in] = ACTIONS(2220), - [anon_sym_loop] = ACTIONS(2220), - [anon_sym_make] = ACTIONS(2220), - [anon_sym_while] = ACTIONS(2220), - [anon_sym_do] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_else] = ACTIONS(2220), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2220), - [anon_sym_catch] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_source] = ACTIONS(2220), - [anon_sym_source_DASHenv] = ACTIONS(2220), - [anon_sym_register] = ACTIONS(2220), - [anon_sym_hide] = ACTIONS(2220), - [anon_sym_hide_DASHenv] = ACTIONS(2220), - [anon_sym_overlay] = ACTIONS(2220), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_as] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2220), - [aux_sym__val_number_decimal_token1] = ACTIONS(2220), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [anon_sym_DOT2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2220), - [aux_sym__val_number_token1] = ACTIONS(2220), - [aux_sym__val_number_token2] = ACTIONS(2220), - [aux_sym__val_number_token3] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym__str_single_quotes] = ACTIONS(2220), - [sym__str_back_ticks] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2220), - [sym__entry_separator] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1905), + [anon_sym_alias] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_let_DASHenv] = ACTIONS(1905), + [anon_sym_mut] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [aux_sym_cmd_identifier_token1] = ACTIONS(1905), + [aux_sym_cmd_identifier_token2] = ACTIONS(1905), + [aux_sym_cmd_identifier_token3] = ACTIONS(1905), + [aux_sym_cmd_identifier_token4] = ACTIONS(1905), + [aux_sym_cmd_identifier_token5] = ACTIONS(1905), + [aux_sym_cmd_identifier_token6] = ACTIONS(1905), + [aux_sym_cmd_identifier_token7] = ACTIONS(1905), + [aux_sym_cmd_identifier_token8] = ACTIONS(1905), + [aux_sym_cmd_identifier_token9] = ACTIONS(1905), + [aux_sym_cmd_identifier_token10] = ACTIONS(1905), + [aux_sym_cmd_identifier_token11] = ACTIONS(1905), + [aux_sym_cmd_identifier_token12] = ACTIONS(1905), + [aux_sym_cmd_identifier_token13] = ACTIONS(1905), + [aux_sym_cmd_identifier_token14] = ACTIONS(1905), + [aux_sym_cmd_identifier_token15] = ACTIONS(1905), + [aux_sym_cmd_identifier_token16] = ACTIONS(1905), + [aux_sym_cmd_identifier_token17] = ACTIONS(1905), + [aux_sym_cmd_identifier_token18] = ACTIONS(1905), + [aux_sym_cmd_identifier_token19] = ACTIONS(1905), + [aux_sym_cmd_identifier_token20] = ACTIONS(1905), + [aux_sym_cmd_identifier_token21] = ACTIONS(1905), + [aux_sym_cmd_identifier_token22] = ACTIONS(1905), + [aux_sym_cmd_identifier_token23] = ACTIONS(1905), + [aux_sym_cmd_identifier_token24] = ACTIONS(1905), + [aux_sym_cmd_identifier_token25] = ACTIONS(1905), + [aux_sym_cmd_identifier_token26] = ACTIONS(1905), + [aux_sym_cmd_identifier_token27] = ACTIONS(1905), + [aux_sym_cmd_identifier_token28] = ACTIONS(1905), + [aux_sym_cmd_identifier_token29] = ACTIONS(1905), + [aux_sym_cmd_identifier_token30] = ACTIONS(1905), + [aux_sym_cmd_identifier_token31] = ACTIONS(1905), + [aux_sym_cmd_identifier_token32] = ACTIONS(1905), + [aux_sym_cmd_identifier_token33] = ACTIONS(1905), + [aux_sym_cmd_identifier_token34] = ACTIONS(1905), + [aux_sym_cmd_identifier_token35] = ACTIONS(1905), + [aux_sym_cmd_identifier_token36] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1905), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = ACTIONS(1911), + [anon_sym_def] = ACTIONS(1905), + [anon_sym_export_DASHenv] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_module] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_error] = ACTIONS(1905), + [anon_sym_list] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_in] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_make] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_do] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_else] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1905), + [anon_sym_catch] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_source] = ACTIONS(1905), + [anon_sym_source_DASHenv] = ACTIONS(1905), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_hide] = ACTIONS(1905), + [anon_sym_hide_DASHenv] = ACTIONS(1905), + [anon_sym_overlay] = ACTIONS(1905), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_as] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1905), + [aux_sym__val_number_decimal_token2] = ACTIONS(1911), + [aux_sym__val_number_decimal_token3] = ACTIONS(1911), + [aux_sym__val_number_decimal_token4] = ACTIONS(1911), + [aux_sym__val_number_token1] = ACTIONS(1911), + [aux_sym__val_number_token2] = ACTIONS(1911), + [aux_sym__val_number_token3] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(247), }, [507] = { [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(2248), - [anon_sym_alias] = ACTIONS(2248), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_let_DASHenv] = ACTIONS(2248), - [anon_sym_mut] = ACTIONS(2248), - [anon_sym_const] = ACTIONS(2248), - [aux_sym_cmd_identifier_token1] = ACTIONS(2248), - [aux_sym_cmd_identifier_token2] = ACTIONS(2248), - [aux_sym_cmd_identifier_token3] = ACTIONS(2248), - [aux_sym_cmd_identifier_token4] = ACTIONS(2248), - [aux_sym_cmd_identifier_token5] = ACTIONS(2248), - [aux_sym_cmd_identifier_token6] = ACTIONS(2248), - [aux_sym_cmd_identifier_token7] = ACTIONS(2248), - [aux_sym_cmd_identifier_token8] = ACTIONS(2248), - [aux_sym_cmd_identifier_token9] = ACTIONS(2248), - [aux_sym_cmd_identifier_token10] = ACTIONS(2248), - [aux_sym_cmd_identifier_token11] = ACTIONS(2248), - [aux_sym_cmd_identifier_token12] = ACTIONS(2248), - [aux_sym_cmd_identifier_token13] = ACTIONS(2248), - [aux_sym_cmd_identifier_token14] = ACTIONS(2248), - [aux_sym_cmd_identifier_token15] = ACTIONS(2248), - [aux_sym_cmd_identifier_token16] = ACTIONS(2248), - [aux_sym_cmd_identifier_token17] = ACTIONS(2248), - [aux_sym_cmd_identifier_token18] = ACTIONS(2248), - [aux_sym_cmd_identifier_token19] = ACTIONS(2248), - [aux_sym_cmd_identifier_token20] = ACTIONS(2248), - [aux_sym_cmd_identifier_token21] = ACTIONS(2248), - [aux_sym_cmd_identifier_token22] = ACTIONS(2248), - [aux_sym_cmd_identifier_token23] = ACTIONS(2248), - [aux_sym_cmd_identifier_token24] = ACTIONS(2248), - [aux_sym_cmd_identifier_token25] = ACTIONS(2248), - [aux_sym_cmd_identifier_token26] = ACTIONS(2248), - [aux_sym_cmd_identifier_token27] = ACTIONS(2248), - [aux_sym_cmd_identifier_token28] = ACTIONS(2248), - [aux_sym_cmd_identifier_token29] = ACTIONS(2248), - [aux_sym_cmd_identifier_token30] = ACTIONS(2248), - [aux_sym_cmd_identifier_token31] = ACTIONS(2248), - [aux_sym_cmd_identifier_token32] = ACTIONS(2248), - [aux_sym_cmd_identifier_token33] = ACTIONS(2248), - [aux_sym_cmd_identifier_token34] = ACTIONS(2248), - [aux_sym_cmd_identifier_token35] = ACTIONS(2248), - [aux_sym_cmd_identifier_token36] = ACTIONS(2248), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [anon_sym_null] = ACTIONS(2248), - [aux_sym_cmd_identifier_token38] = ACTIONS(2248), - [aux_sym_cmd_identifier_token39] = ACTIONS(2248), - [aux_sym_cmd_identifier_token40] = ACTIONS(2248), - [anon_sym_def] = ACTIONS(2248), - [anon_sym_export_DASHenv] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_module] = ACTIONS(2248), - [anon_sym_use] = ACTIONS(2248), - [anon_sym_RBRACK] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_DOLLAR] = ACTIONS(2248), - [anon_sym_error] = ACTIONS(2248), - [anon_sym_list] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_for] = ACTIONS(2248), - [anon_sym_in] = ACTIONS(2248), - [anon_sym_loop] = ACTIONS(2248), - [anon_sym_make] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_do] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_else] = ACTIONS(2248), - [anon_sym_match] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2248), - [anon_sym_try] = ACTIONS(2248), - [anon_sym_catch] = ACTIONS(2248), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_source] = ACTIONS(2248), - [anon_sym_source_DASHenv] = ACTIONS(2248), - [anon_sym_register] = ACTIONS(2248), - [anon_sym_hide] = ACTIONS(2248), - [anon_sym_hide_DASHenv] = ACTIONS(2248), - [anon_sym_overlay] = ACTIONS(2248), - [anon_sym_new] = ACTIONS(2248), - [anon_sym_as] = ACTIONS(2248), - [anon_sym_PLUS] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2248), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2248), - [anon_sym_DOT2] = ACTIONS(2248), - [aux_sym__val_number_decimal_token3] = ACTIONS(2248), - [aux_sym__val_number_token1] = ACTIONS(2248), - [aux_sym__val_number_token2] = ACTIONS(2248), - [aux_sym__val_number_token3] = ACTIONS(2248), - [anon_sym_DQUOTE] = ACTIONS(2248), - [sym__str_single_quotes] = ACTIONS(2248), - [sym__str_back_ticks] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2248), - [sym__entry_separator] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2303), + [anon_sym_alias] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_let_DASHenv] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [aux_sym_cmd_identifier_token1] = ACTIONS(2303), + [aux_sym_cmd_identifier_token2] = ACTIONS(2303), + [aux_sym_cmd_identifier_token3] = ACTIONS(2303), + [aux_sym_cmd_identifier_token4] = ACTIONS(2303), + [aux_sym_cmd_identifier_token5] = ACTIONS(2303), + [aux_sym_cmd_identifier_token6] = ACTIONS(2303), + [aux_sym_cmd_identifier_token7] = ACTIONS(2303), + [aux_sym_cmd_identifier_token8] = ACTIONS(2303), + [aux_sym_cmd_identifier_token9] = ACTIONS(2303), + [aux_sym_cmd_identifier_token10] = ACTIONS(2303), + [aux_sym_cmd_identifier_token11] = ACTIONS(2303), + [aux_sym_cmd_identifier_token12] = ACTIONS(2303), + [aux_sym_cmd_identifier_token13] = ACTIONS(2303), + [aux_sym_cmd_identifier_token14] = ACTIONS(2303), + [aux_sym_cmd_identifier_token15] = ACTIONS(2303), + [aux_sym_cmd_identifier_token16] = ACTIONS(2303), + [aux_sym_cmd_identifier_token17] = ACTIONS(2303), + [aux_sym_cmd_identifier_token18] = ACTIONS(2303), + [aux_sym_cmd_identifier_token19] = ACTIONS(2303), + [aux_sym_cmd_identifier_token20] = ACTIONS(2303), + [aux_sym_cmd_identifier_token21] = ACTIONS(2303), + [aux_sym_cmd_identifier_token22] = ACTIONS(2303), + [aux_sym_cmd_identifier_token23] = ACTIONS(2303), + [aux_sym_cmd_identifier_token24] = ACTIONS(2303), + [aux_sym_cmd_identifier_token25] = ACTIONS(2303), + [aux_sym_cmd_identifier_token26] = ACTIONS(2303), + [aux_sym_cmd_identifier_token27] = ACTIONS(2303), + [aux_sym_cmd_identifier_token28] = ACTIONS(2303), + [aux_sym_cmd_identifier_token29] = ACTIONS(2303), + [aux_sym_cmd_identifier_token30] = ACTIONS(2303), + [aux_sym_cmd_identifier_token31] = ACTIONS(2303), + [aux_sym_cmd_identifier_token32] = ACTIONS(2303), + [aux_sym_cmd_identifier_token33] = ACTIONS(2303), + [aux_sym_cmd_identifier_token34] = ACTIONS(2303), + [aux_sym_cmd_identifier_token35] = ACTIONS(2303), + [aux_sym_cmd_identifier_token36] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_null] = ACTIONS(2303), + [aux_sym_cmd_identifier_token38] = ACTIONS(2303), + [aux_sym_cmd_identifier_token39] = ACTIONS(2303), + [aux_sym_cmd_identifier_token40] = ACTIONS(2303), + [anon_sym_def] = ACTIONS(2303), + [anon_sym_export_DASHenv] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_RBRACK] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_error] = ACTIONS(2303), + [anon_sym_list] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_make] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_do] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_else] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_catch] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_source] = ACTIONS(2303), + [anon_sym_source_DASHenv] = ACTIONS(2303), + [anon_sym_register] = ACTIONS(2303), + [anon_sym_hide] = ACTIONS(2303), + [anon_sym_hide_DASHenv] = ACTIONS(2303), + [anon_sym_overlay] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2303), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2303), + [aux_sym__val_number_decimal_token3] = ACTIONS(2303), + [aux_sym__val_number_decimal_token4] = ACTIONS(2303), + [aux_sym__val_number_token1] = ACTIONS(2303), + [aux_sym__val_number_token2] = ACTIONS(2303), + [aux_sym__val_number_token3] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(2303), + [sym__str_single_quotes] = ACTIONS(2303), + [sym__str_back_ticks] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2303), + [sym__entry_separator] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(3), }, [508] = { - [sym__expr_parenthesized_immediate] = STATE(7789), + [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(508), - [anon_sym_export] = ACTIONS(2069), - [anon_sym_alias] = ACTIONS(2069), - [anon_sym_let] = ACTIONS(2069), - [anon_sym_let_DASHenv] = ACTIONS(2069), - [anon_sym_mut] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), - [aux_sym_cmd_identifier_token1] = ACTIONS(2069), - [aux_sym_cmd_identifier_token2] = ACTIONS(2069), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [aux_sym_cmd_identifier_token6] = ACTIONS(2069), - [aux_sym_cmd_identifier_token7] = ACTIONS(2069), - [aux_sym_cmd_identifier_token8] = ACTIONS(2069), - [aux_sym_cmd_identifier_token9] = ACTIONS(2069), - [aux_sym_cmd_identifier_token10] = ACTIONS(2069), - [aux_sym_cmd_identifier_token11] = ACTIONS(2069), - [aux_sym_cmd_identifier_token12] = ACTIONS(2069), - [aux_sym_cmd_identifier_token13] = ACTIONS(2069), - [aux_sym_cmd_identifier_token14] = ACTIONS(2069), - [aux_sym_cmd_identifier_token15] = ACTIONS(2069), - [aux_sym_cmd_identifier_token16] = ACTIONS(2069), - [aux_sym_cmd_identifier_token17] = ACTIONS(2069), - [aux_sym_cmd_identifier_token18] = ACTIONS(2069), - [aux_sym_cmd_identifier_token19] = ACTIONS(2069), - [aux_sym_cmd_identifier_token20] = ACTIONS(2069), - [aux_sym_cmd_identifier_token21] = ACTIONS(2069), - [aux_sym_cmd_identifier_token22] = ACTIONS(2069), - [aux_sym_cmd_identifier_token23] = ACTIONS(2069), - [aux_sym_cmd_identifier_token24] = ACTIONS(2069), - [aux_sym_cmd_identifier_token25] = ACTIONS(2069), - [aux_sym_cmd_identifier_token26] = ACTIONS(2069), - [aux_sym_cmd_identifier_token27] = ACTIONS(2069), - [aux_sym_cmd_identifier_token28] = ACTIONS(2069), - [aux_sym_cmd_identifier_token29] = ACTIONS(2069), - [aux_sym_cmd_identifier_token30] = ACTIONS(2069), - [aux_sym_cmd_identifier_token31] = ACTIONS(2069), - [aux_sym_cmd_identifier_token32] = ACTIONS(2069), - [aux_sym_cmd_identifier_token33] = ACTIONS(2069), - [aux_sym_cmd_identifier_token34] = ACTIONS(2069), - [aux_sym_cmd_identifier_token35] = ACTIONS(2069), - [aux_sym_cmd_identifier_token36] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_null] = ACTIONS(2071), - [aux_sym_cmd_identifier_token38] = ACTIONS(2069), - [aux_sym_cmd_identifier_token39] = ACTIONS(2071), - [aux_sym_cmd_identifier_token40] = ACTIONS(2071), - [anon_sym_def] = ACTIONS(2069), - [anon_sym_export_DASHenv] = ACTIONS(2069), - [anon_sym_extern] = ACTIONS(2069), - [anon_sym_module] = ACTIONS(2069), - [anon_sym_use] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_DOLLAR] = ACTIONS(2071), - [anon_sym_error] = ACTIONS(2069), - [anon_sym_list] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_in] = ACTIONS(2069), - [anon_sym_loop] = ACTIONS(2069), - [anon_sym_make] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2069), - [anon_sym_do] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_else] = ACTIONS(2069), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2069), - [anon_sym_catch] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_source] = ACTIONS(2069), - [anon_sym_source_DASHenv] = ACTIONS(2069), - [anon_sym_register] = ACTIONS(2069), - [anon_sym_hide] = ACTIONS(2069), - [anon_sym_hide_DASHenv] = ACTIONS(2069), - [anon_sym_overlay] = ACTIONS(2069), - [anon_sym_new] = ACTIONS(2069), - [anon_sym_as] = ACTIONS(2069), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(2069), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2069), - [aux_sym__val_number_decimal_token2] = ACTIONS(2071), - [anon_sym_DOT2] = ACTIONS(2069), - [aux_sym__val_number_decimal_token3] = ACTIONS(2071), - [aux_sym__val_number_token1] = ACTIONS(2071), - [aux_sym__val_number_token2] = ACTIONS(2071), - [aux_sym__val_number_token3] = ACTIONS(2071), - [anon_sym_DQUOTE] = ACTIONS(2071), - [sym__str_single_quotes] = ACTIONS(2071), - [sym__str_back_ticks] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2207), + [anon_sym_alias] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_let_DASHenv] = ACTIONS(2207), + [anon_sym_mut] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [aux_sym_cmd_identifier_token1] = ACTIONS(2207), + [aux_sym_cmd_identifier_token2] = ACTIONS(2207), + [aux_sym_cmd_identifier_token3] = ACTIONS(2207), + [aux_sym_cmd_identifier_token4] = ACTIONS(2207), + [aux_sym_cmd_identifier_token5] = ACTIONS(2207), + [aux_sym_cmd_identifier_token6] = ACTIONS(2207), + [aux_sym_cmd_identifier_token7] = ACTIONS(2207), + [aux_sym_cmd_identifier_token8] = ACTIONS(2207), + [aux_sym_cmd_identifier_token9] = ACTIONS(2207), + [aux_sym_cmd_identifier_token10] = ACTIONS(2207), + [aux_sym_cmd_identifier_token11] = ACTIONS(2207), + [aux_sym_cmd_identifier_token12] = ACTIONS(2207), + [aux_sym_cmd_identifier_token13] = ACTIONS(2207), + [aux_sym_cmd_identifier_token14] = ACTIONS(2207), + [aux_sym_cmd_identifier_token15] = ACTIONS(2207), + [aux_sym_cmd_identifier_token16] = ACTIONS(2207), + [aux_sym_cmd_identifier_token17] = ACTIONS(2207), + [aux_sym_cmd_identifier_token18] = ACTIONS(2207), + [aux_sym_cmd_identifier_token19] = ACTIONS(2207), + [aux_sym_cmd_identifier_token20] = ACTIONS(2207), + [aux_sym_cmd_identifier_token21] = ACTIONS(2207), + [aux_sym_cmd_identifier_token22] = ACTIONS(2207), + [aux_sym_cmd_identifier_token23] = ACTIONS(2207), + [aux_sym_cmd_identifier_token24] = ACTIONS(2207), + [aux_sym_cmd_identifier_token25] = ACTIONS(2207), + [aux_sym_cmd_identifier_token26] = ACTIONS(2207), + [aux_sym_cmd_identifier_token27] = ACTIONS(2207), + [aux_sym_cmd_identifier_token28] = ACTIONS(2207), + [aux_sym_cmd_identifier_token29] = ACTIONS(2207), + [aux_sym_cmd_identifier_token30] = ACTIONS(2207), + [aux_sym_cmd_identifier_token31] = ACTIONS(2207), + [aux_sym_cmd_identifier_token32] = ACTIONS(2207), + [aux_sym_cmd_identifier_token33] = ACTIONS(2207), + [aux_sym_cmd_identifier_token34] = ACTIONS(2207), + [aux_sym_cmd_identifier_token35] = ACTIONS(2207), + [aux_sym_cmd_identifier_token36] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_null] = ACTIONS(2209), + [aux_sym_cmd_identifier_token38] = ACTIONS(2207), + [aux_sym_cmd_identifier_token39] = ACTIONS(2209), + [aux_sym_cmd_identifier_token40] = ACTIONS(2209), + [anon_sym_def] = ACTIONS(2207), + [anon_sym_export_DASHenv] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_module] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2209), + [anon_sym_error] = ACTIONS(2207), + [anon_sym_list] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_in] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_make] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_do] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_else] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_catch] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_source] = ACTIONS(2207), + [anon_sym_source_DASHenv] = ACTIONS(2207), + [anon_sym_register] = ACTIONS(2207), + [anon_sym_hide] = ACTIONS(2207), + [anon_sym_hide_DASHenv] = ACTIONS(2207), + [anon_sym_overlay] = ACTIONS(2207), + [anon_sym_new] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2209), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2209), + [aux_sym__val_number_decimal_token1] = ACTIONS(2207), + [aux_sym__val_number_decimal_token2] = ACTIONS(2209), + [aux_sym__val_number_decimal_token3] = ACTIONS(2209), + [aux_sym__val_number_decimal_token4] = ACTIONS(2209), + [aux_sym__val_number_token1] = ACTIONS(2209), + [aux_sym__val_number_token2] = ACTIONS(2209), + [aux_sym__val_number_token3] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [sym__str_single_quotes] = ACTIONS(2209), + [sym__str_back_ticks] = ACTIONS(2209), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_POUND] = ACTIONS(247), }, [509] = { + [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(509), - [anon_sym_export] = ACTIONS(900), - [anon_sym_alias] = ACTIONS(900), - [anon_sym_let] = ACTIONS(900), - [anon_sym_let_DASHenv] = ACTIONS(900), - [anon_sym_mut] = ACTIONS(900), - [anon_sym_const] = ACTIONS(900), - [aux_sym_cmd_identifier_token1] = ACTIONS(900), - [aux_sym_cmd_identifier_token2] = ACTIONS(900), - [aux_sym_cmd_identifier_token3] = ACTIONS(900), - [aux_sym_cmd_identifier_token4] = ACTIONS(900), - [aux_sym_cmd_identifier_token5] = ACTIONS(900), - [aux_sym_cmd_identifier_token6] = ACTIONS(900), - [aux_sym_cmd_identifier_token7] = ACTIONS(900), - [aux_sym_cmd_identifier_token8] = ACTIONS(900), - [aux_sym_cmd_identifier_token9] = ACTIONS(900), - [aux_sym_cmd_identifier_token10] = ACTIONS(900), - [aux_sym_cmd_identifier_token11] = ACTIONS(900), - [aux_sym_cmd_identifier_token12] = ACTIONS(900), - [aux_sym_cmd_identifier_token13] = ACTIONS(900), - [aux_sym_cmd_identifier_token14] = ACTIONS(900), - [aux_sym_cmd_identifier_token15] = ACTIONS(900), - [aux_sym_cmd_identifier_token16] = ACTIONS(900), - [aux_sym_cmd_identifier_token17] = ACTIONS(900), - [aux_sym_cmd_identifier_token18] = ACTIONS(900), - [aux_sym_cmd_identifier_token19] = ACTIONS(900), - [aux_sym_cmd_identifier_token20] = ACTIONS(900), - [aux_sym_cmd_identifier_token21] = ACTIONS(900), - [aux_sym_cmd_identifier_token22] = ACTIONS(900), - [aux_sym_cmd_identifier_token23] = ACTIONS(900), - [aux_sym_cmd_identifier_token24] = ACTIONS(900), - [aux_sym_cmd_identifier_token25] = ACTIONS(900), - [aux_sym_cmd_identifier_token26] = ACTIONS(900), - [aux_sym_cmd_identifier_token27] = ACTIONS(900), - [aux_sym_cmd_identifier_token28] = ACTIONS(900), - [aux_sym_cmd_identifier_token29] = ACTIONS(900), - [aux_sym_cmd_identifier_token30] = ACTIONS(900), - [aux_sym_cmd_identifier_token31] = ACTIONS(900), - [aux_sym_cmd_identifier_token32] = ACTIONS(900), - [aux_sym_cmd_identifier_token33] = ACTIONS(900), - [aux_sym_cmd_identifier_token34] = ACTIONS(900), - [aux_sym_cmd_identifier_token35] = ACTIONS(900), - [aux_sym_cmd_identifier_token36] = ACTIONS(900), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [anon_sym_null] = ACTIONS(902), - [aux_sym_cmd_identifier_token38] = ACTIONS(900), - [aux_sym_cmd_identifier_token39] = ACTIONS(902), - [aux_sym_cmd_identifier_token40] = ACTIONS(902), - [anon_sym_def] = ACTIONS(900), - [anon_sym_export_DASHenv] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(900), - [anon_sym_module] = ACTIONS(900), - [anon_sym_use] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(902), - [anon_sym_error] = ACTIONS(900), - [anon_sym_list] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(900), - [anon_sym_make] = ACTIONS(900), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_match] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_try] = ACTIONS(900), - [anon_sym_catch] = ACTIONS(900), - [anon_sym_return] = ACTIONS(900), - [anon_sym_source] = ACTIONS(900), - [anon_sym_source_DASHenv] = ACTIONS(900), - [anon_sym_register] = ACTIONS(900), - [anon_sym_hide] = ACTIONS(900), - [anon_sym_hide_DASHenv] = ACTIONS(900), - [anon_sym_overlay] = ACTIONS(900), - [anon_sym_new] = ACTIONS(900), - [anon_sym_as] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(902), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(902), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(902), - [aux_sym__val_number_token1] = ACTIONS(902), - [aux_sym__val_number_token2] = ACTIONS(902), - [aux_sym__val_number_token3] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym__str_single_quotes] = ACTIONS(902), - [sym__str_back_ticks] = ACTIONS(902), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2211), + [anon_sym_alias] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_let_DASHenv] = ACTIONS(2211), + [anon_sym_mut] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [aux_sym_cmd_identifier_token1] = ACTIONS(2211), + [aux_sym_cmd_identifier_token2] = ACTIONS(2211), + [aux_sym_cmd_identifier_token3] = ACTIONS(2211), + [aux_sym_cmd_identifier_token4] = ACTIONS(2211), + [aux_sym_cmd_identifier_token5] = ACTIONS(2211), + [aux_sym_cmd_identifier_token6] = ACTIONS(2211), + [aux_sym_cmd_identifier_token7] = ACTIONS(2211), + [aux_sym_cmd_identifier_token8] = ACTIONS(2211), + [aux_sym_cmd_identifier_token9] = ACTIONS(2211), + [aux_sym_cmd_identifier_token10] = ACTIONS(2211), + [aux_sym_cmd_identifier_token11] = ACTIONS(2211), + [aux_sym_cmd_identifier_token12] = ACTIONS(2211), + [aux_sym_cmd_identifier_token13] = ACTIONS(2211), + [aux_sym_cmd_identifier_token14] = ACTIONS(2211), + [aux_sym_cmd_identifier_token15] = ACTIONS(2211), + [aux_sym_cmd_identifier_token16] = ACTIONS(2211), + [aux_sym_cmd_identifier_token17] = ACTIONS(2211), + [aux_sym_cmd_identifier_token18] = ACTIONS(2211), + [aux_sym_cmd_identifier_token19] = ACTIONS(2211), + [aux_sym_cmd_identifier_token20] = ACTIONS(2211), + [aux_sym_cmd_identifier_token21] = ACTIONS(2211), + [aux_sym_cmd_identifier_token22] = ACTIONS(2211), + [aux_sym_cmd_identifier_token23] = ACTIONS(2211), + [aux_sym_cmd_identifier_token24] = ACTIONS(2211), + [aux_sym_cmd_identifier_token25] = ACTIONS(2211), + [aux_sym_cmd_identifier_token26] = ACTIONS(2211), + [aux_sym_cmd_identifier_token27] = ACTIONS(2211), + [aux_sym_cmd_identifier_token28] = ACTIONS(2211), + [aux_sym_cmd_identifier_token29] = ACTIONS(2211), + [aux_sym_cmd_identifier_token30] = ACTIONS(2211), + [aux_sym_cmd_identifier_token31] = ACTIONS(2211), + [aux_sym_cmd_identifier_token32] = ACTIONS(2211), + [aux_sym_cmd_identifier_token33] = ACTIONS(2211), + [aux_sym_cmd_identifier_token34] = ACTIONS(2211), + [aux_sym_cmd_identifier_token35] = ACTIONS(2211), + [aux_sym_cmd_identifier_token36] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_null] = ACTIONS(2213), + [aux_sym_cmd_identifier_token38] = ACTIONS(2211), + [aux_sym_cmd_identifier_token39] = ACTIONS(2213), + [aux_sym_cmd_identifier_token40] = ACTIONS(2213), + [anon_sym_def] = ACTIONS(2211), + [anon_sym_export_DASHenv] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(2211), + [anon_sym_module] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_error] = ACTIONS(2211), + [anon_sym_list] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_make] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_else] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2211), + [anon_sym_catch] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_source] = ACTIONS(2211), + [anon_sym_source_DASHenv] = ACTIONS(2211), + [anon_sym_register] = ACTIONS(2211), + [anon_sym_hide] = ACTIONS(2211), + [anon_sym_hide_DASHenv] = ACTIONS(2211), + [anon_sym_overlay] = ACTIONS(2211), + [anon_sym_new] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2213), + [aux_sym__val_number_decimal_token1] = ACTIONS(2211), + [aux_sym__val_number_decimal_token2] = ACTIONS(2213), + [aux_sym__val_number_decimal_token3] = ACTIONS(2213), + [aux_sym__val_number_decimal_token4] = ACTIONS(2213), + [aux_sym__val_number_token1] = ACTIONS(2213), + [aux_sym__val_number_token2] = ACTIONS(2213), + [aux_sym__val_number_token3] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [sym__str_single_quotes] = ACTIONS(2213), + [sym__str_back_ticks] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(247), }, [510] = { [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(906), - [anon_sym_alias] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_let_DASHenv] = ACTIONS(906), - [anon_sym_mut] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [aux_sym_cmd_identifier_token1] = ACTIONS(906), - [aux_sym_cmd_identifier_token2] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(906), - [aux_sym_cmd_identifier_token4] = ACTIONS(906), - [aux_sym_cmd_identifier_token5] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [aux_sym_cmd_identifier_token7] = ACTIONS(906), - [aux_sym_cmd_identifier_token8] = ACTIONS(906), - [aux_sym_cmd_identifier_token9] = ACTIONS(906), - [aux_sym_cmd_identifier_token10] = ACTIONS(906), - [aux_sym_cmd_identifier_token11] = ACTIONS(906), - [aux_sym_cmd_identifier_token12] = ACTIONS(906), - [aux_sym_cmd_identifier_token13] = ACTIONS(906), - [aux_sym_cmd_identifier_token14] = ACTIONS(906), - [aux_sym_cmd_identifier_token15] = ACTIONS(906), - [aux_sym_cmd_identifier_token16] = ACTIONS(906), - [aux_sym_cmd_identifier_token17] = ACTIONS(906), - [aux_sym_cmd_identifier_token18] = ACTIONS(906), - [aux_sym_cmd_identifier_token19] = ACTIONS(906), - [aux_sym_cmd_identifier_token20] = ACTIONS(906), - [aux_sym_cmd_identifier_token21] = ACTIONS(906), - [aux_sym_cmd_identifier_token22] = ACTIONS(906), - [aux_sym_cmd_identifier_token23] = ACTIONS(906), - [aux_sym_cmd_identifier_token24] = ACTIONS(906), - [aux_sym_cmd_identifier_token25] = ACTIONS(906), - [aux_sym_cmd_identifier_token26] = ACTIONS(906), - [aux_sym_cmd_identifier_token27] = ACTIONS(906), - [aux_sym_cmd_identifier_token28] = ACTIONS(906), - [aux_sym_cmd_identifier_token29] = ACTIONS(906), - [aux_sym_cmd_identifier_token30] = ACTIONS(906), - [aux_sym_cmd_identifier_token31] = ACTIONS(906), - [aux_sym_cmd_identifier_token32] = ACTIONS(906), - [aux_sym_cmd_identifier_token33] = ACTIONS(906), - [aux_sym_cmd_identifier_token34] = ACTIONS(906), - [aux_sym_cmd_identifier_token35] = ACTIONS(906), - [aux_sym_cmd_identifier_token36] = ACTIONS(906), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [anon_sym_null] = ACTIONS(908), - [aux_sym_cmd_identifier_token38] = ACTIONS(906), - [aux_sym_cmd_identifier_token39] = ACTIONS(908), - [aux_sym_cmd_identifier_token40] = ACTIONS(908), - [anon_sym_def] = ACTIONS(906), - [anon_sym_export_DASHenv] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym_module] = ACTIONS(906), - [anon_sym_use] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_error] = ACTIONS(906), - [anon_sym_list] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_in] = ACTIONS(906), - [anon_sym_loop] = ACTIONS(906), - [anon_sym_make] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_try] = ACTIONS(906), - [anon_sym_catch] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_source] = ACTIONS(906), - [anon_sym_source_DASHenv] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_hide] = ACTIONS(906), - [anon_sym_hide_DASHenv] = ACTIONS(906), - [anon_sym_overlay] = ACTIONS(906), - [anon_sym_new] = ACTIONS(906), - [anon_sym_as] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(2254), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(908), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(908), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(908), - [aux_sym__val_number_token1] = ACTIONS(908), - [aux_sym__val_number_token2] = ACTIONS(908), - [aux_sym__val_number_token3] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1690), + [anon_sym_alias] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_let_DASHenv] = ACTIONS(1690), + [anon_sym_mut] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [aux_sym_cmd_identifier_token1] = ACTIONS(1690), + [aux_sym_cmd_identifier_token2] = ACTIONS(1690), + [aux_sym_cmd_identifier_token3] = ACTIONS(1690), + [aux_sym_cmd_identifier_token4] = ACTIONS(1690), + [aux_sym_cmd_identifier_token5] = ACTIONS(1690), + [aux_sym_cmd_identifier_token6] = ACTIONS(1690), + [aux_sym_cmd_identifier_token7] = ACTIONS(1690), + [aux_sym_cmd_identifier_token8] = ACTIONS(1690), + [aux_sym_cmd_identifier_token9] = ACTIONS(1690), + [aux_sym_cmd_identifier_token10] = ACTIONS(1690), + [aux_sym_cmd_identifier_token11] = ACTIONS(1690), + [aux_sym_cmd_identifier_token12] = ACTIONS(1690), + [aux_sym_cmd_identifier_token13] = ACTIONS(1690), + [aux_sym_cmd_identifier_token14] = ACTIONS(1690), + [aux_sym_cmd_identifier_token15] = ACTIONS(1690), + [aux_sym_cmd_identifier_token16] = ACTIONS(1690), + [aux_sym_cmd_identifier_token17] = ACTIONS(1690), + [aux_sym_cmd_identifier_token18] = ACTIONS(1690), + [aux_sym_cmd_identifier_token19] = ACTIONS(1690), + [aux_sym_cmd_identifier_token20] = ACTIONS(1690), + [aux_sym_cmd_identifier_token21] = ACTIONS(1690), + [aux_sym_cmd_identifier_token22] = ACTIONS(1690), + [aux_sym_cmd_identifier_token23] = ACTIONS(1690), + [aux_sym_cmd_identifier_token24] = ACTIONS(1690), + [aux_sym_cmd_identifier_token25] = ACTIONS(1690), + [aux_sym_cmd_identifier_token26] = ACTIONS(1690), + [aux_sym_cmd_identifier_token27] = ACTIONS(1690), + [aux_sym_cmd_identifier_token28] = ACTIONS(1690), + [aux_sym_cmd_identifier_token29] = ACTIONS(1690), + [aux_sym_cmd_identifier_token30] = ACTIONS(1690), + [aux_sym_cmd_identifier_token31] = ACTIONS(1690), + [aux_sym_cmd_identifier_token32] = ACTIONS(1690), + [aux_sym_cmd_identifier_token33] = ACTIONS(1690), + [aux_sym_cmd_identifier_token34] = ACTIONS(1690), + [aux_sym_cmd_identifier_token35] = ACTIONS(1690), + [aux_sym_cmd_identifier_token36] = ACTIONS(1690), + [anon_sym_true] = ACTIONS(1698), + [anon_sym_false] = ACTIONS(1698), + [anon_sym_null] = ACTIONS(1698), + [aux_sym_cmd_identifier_token38] = ACTIONS(1690), + [aux_sym_cmd_identifier_token39] = ACTIONS(1698), + [aux_sym_cmd_identifier_token40] = ACTIONS(1698), + [anon_sym_def] = ACTIONS(1690), + [anon_sym_export_DASHenv] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_module] = ACTIONS(1690), + [anon_sym_use] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_error] = ACTIONS(1690), + [anon_sym_list] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_in] = ACTIONS(1690), + [anon_sym_loop] = ACTIONS(1690), + [anon_sym_make] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_do] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_try] = ACTIONS(1690), + [anon_sym_catch] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_source] = ACTIONS(1690), + [anon_sym_source_DASHenv] = ACTIONS(1690), + [anon_sym_register] = ACTIONS(1690), + [anon_sym_hide] = ACTIONS(1690), + [anon_sym_hide_DASHenv] = ACTIONS(1690), + [anon_sym_overlay] = ACTIONS(1690), + [anon_sym_new] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1690), + [anon_sym_LPAREN2] = ACTIONS(1692), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1698), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1698), + [aux_sym__val_number_decimal_token1] = ACTIONS(1690), + [aux_sym__val_number_decimal_token2] = ACTIONS(1698), + [aux_sym__val_number_decimal_token3] = ACTIONS(1698), + [aux_sym__val_number_decimal_token4] = ACTIONS(1698), + [aux_sym__val_number_token1] = ACTIONS(1698), + [aux_sym__val_number_token2] = ACTIONS(1698), + [aux_sym__val_number_token3] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym__str_single_quotes] = ACTIONS(1698), + [sym__str_back_ticks] = ACTIONS(1698), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1690), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), }, [511] = { + [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(511), - [aux_sym__multiple_types_repeat1] = STATE(511), - [anon_sym_export] = ACTIONS(2256), - [anon_sym_alias] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_let_DASHenv] = ACTIONS(2256), - [anon_sym_mut] = ACTIONS(2256), - [anon_sym_const] = ACTIONS(2256), - [aux_sym_cmd_identifier_token1] = ACTIONS(2256), - [aux_sym_cmd_identifier_token2] = ACTIONS(2256), - [aux_sym_cmd_identifier_token3] = ACTIONS(2256), - [aux_sym_cmd_identifier_token4] = ACTIONS(2256), - [aux_sym_cmd_identifier_token5] = ACTIONS(2256), - [aux_sym_cmd_identifier_token6] = ACTIONS(2256), - [aux_sym_cmd_identifier_token7] = ACTIONS(2256), - [aux_sym_cmd_identifier_token8] = ACTIONS(2256), - [aux_sym_cmd_identifier_token9] = ACTIONS(2256), - [aux_sym_cmd_identifier_token10] = ACTIONS(2256), - [aux_sym_cmd_identifier_token11] = ACTIONS(2256), - [aux_sym_cmd_identifier_token12] = ACTIONS(2256), - [aux_sym_cmd_identifier_token13] = ACTIONS(2256), - [aux_sym_cmd_identifier_token14] = ACTIONS(2256), - [aux_sym_cmd_identifier_token15] = ACTIONS(2256), - [aux_sym_cmd_identifier_token16] = ACTIONS(2256), - [aux_sym_cmd_identifier_token17] = ACTIONS(2256), - [aux_sym_cmd_identifier_token18] = ACTIONS(2256), - [aux_sym_cmd_identifier_token19] = ACTIONS(2256), - [aux_sym_cmd_identifier_token20] = ACTIONS(2256), - [aux_sym_cmd_identifier_token21] = ACTIONS(2256), - [aux_sym_cmd_identifier_token22] = ACTIONS(2256), - [aux_sym_cmd_identifier_token23] = ACTIONS(2256), - [aux_sym_cmd_identifier_token24] = ACTIONS(2256), - [aux_sym_cmd_identifier_token25] = ACTIONS(2256), - [aux_sym_cmd_identifier_token26] = ACTIONS(2256), - [aux_sym_cmd_identifier_token27] = ACTIONS(2256), - [aux_sym_cmd_identifier_token28] = ACTIONS(2256), - [aux_sym_cmd_identifier_token29] = ACTIONS(2256), - [aux_sym_cmd_identifier_token30] = ACTIONS(2256), - [aux_sym_cmd_identifier_token31] = ACTIONS(2256), - [aux_sym_cmd_identifier_token32] = ACTIONS(2256), - [aux_sym_cmd_identifier_token33] = ACTIONS(2256), - [aux_sym_cmd_identifier_token34] = ACTIONS(2256), - [aux_sym_cmd_identifier_token35] = ACTIONS(2256), - [aux_sym_cmd_identifier_token36] = ACTIONS(2256), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [anon_sym_null] = ACTIONS(2256), - [aux_sym_cmd_identifier_token38] = ACTIONS(2256), - [aux_sym_cmd_identifier_token39] = ACTIONS(2256), - [aux_sym_cmd_identifier_token40] = ACTIONS(2256), - [anon_sym_def] = ACTIONS(2256), - [anon_sym_export_DASHenv] = ACTIONS(2256), - [anon_sym_extern] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - [anon_sym_use] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_DOLLAR] = ACTIONS(2256), - [anon_sym_error] = ACTIONS(2256), - [anon_sym_list] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2256), - [anon_sym_break] = ACTIONS(2256), - [anon_sym_continue] = ACTIONS(2256), - [anon_sym_for] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [anon_sym_loop] = ACTIONS(2256), - [anon_sym_make] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_else] = ACTIONS(2256), - [anon_sym_match] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_try] = ACTIONS(2256), - [anon_sym_catch] = ACTIONS(2256), - [anon_sym_return] = ACTIONS(2256), - [anon_sym_source] = ACTIONS(2256), - [anon_sym_source_DASHenv] = ACTIONS(2256), - [anon_sym_register] = ACTIONS(2256), - [anon_sym_hide] = ACTIONS(2256), - [anon_sym_hide_DASHenv] = ACTIONS(2256), - [anon_sym_overlay] = ACTIONS(2256), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_as] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2256), - [aux_sym__val_number_decimal_token1] = ACTIONS(2256), - [aux_sym__val_number_decimal_token2] = ACTIONS(2256), - [anon_sym_DOT2] = ACTIONS(2256), - [aux_sym__val_number_decimal_token3] = ACTIONS(2256), - [aux_sym__val_number_token1] = ACTIONS(2256), - [aux_sym__val_number_token2] = ACTIONS(2256), - [aux_sym__val_number_token3] = ACTIONS(2256), - [anon_sym_DQUOTE] = ACTIONS(2256), - [sym__str_single_quotes] = ACTIONS(2256), - [sym__str_back_ticks] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2256), - [sym__entry_separator] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_alias] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_let_DASHenv] = ACTIONS(2215), + [anon_sym_mut] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [aux_sym_cmd_identifier_token1] = ACTIONS(2215), + [aux_sym_cmd_identifier_token2] = ACTIONS(2215), + [aux_sym_cmd_identifier_token3] = ACTIONS(2215), + [aux_sym_cmd_identifier_token4] = ACTIONS(2215), + [aux_sym_cmd_identifier_token5] = ACTIONS(2215), + [aux_sym_cmd_identifier_token6] = ACTIONS(2215), + [aux_sym_cmd_identifier_token7] = ACTIONS(2215), + [aux_sym_cmd_identifier_token8] = ACTIONS(2215), + [aux_sym_cmd_identifier_token9] = ACTIONS(2215), + [aux_sym_cmd_identifier_token10] = ACTIONS(2215), + [aux_sym_cmd_identifier_token11] = ACTIONS(2215), + [aux_sym_cmd_identifier_token12] = ACTIONS(2215), + [aux_sym_cmd_identifier_token13] = ACTIONS(2215), + [aux_sym_cmd_identifier_token14] = ACTIONS(2215), + [aux_sym_cmd_identifier_token15] = ACTIONS(2215), + [aux_sym_cmd_identifier_token16] = ACTIONS(2215), + [aux_sym_cmd_identifier_token17] = ACTIONS(2215), + [aux_sym_cmd_identifier_token18] = ACTIONS(2215), + [aux_sym_cmd_identifier_token19] = ACTIONS(2215), + [aux_sym_cmd_identifier_token20] = ACTIONS(2215), + [aux_sym_cmd_identifier_token21] = ACTIONS(2215), + [aux_sym_cmd_identifier_token22] = ACTIONS(2215), + [aux_sym_cmd_identifier_token23] = ACTIONS(2215), + [aux_sym_cmd_identifier_token24] = ACTIONS(2215), + [aux_sym_cmd_identifier_token25] = ACTIONS(2215), + [aux_sym_cmd_identifier_token26] = ACTIONS(2215), + [aux_sym_cmd_identifier_token27] = ACTIONS(2215), + [aux_sym_cmd_identifier_token28] = ACTIONS(2215), + [aux_sym_cmd_identifier_token29] = ACTIONS(2215), + [aux_sym_cmd_identifier_token30] = ACTIONS(2215), + [aux_sym_cmd_identifier_token31] = ACTIONS(2215), + [aux_sym_cmd_identifier_token32] = ACTIONS(2215), + [aux_sym_cmd_identifier_token33] = ACTIONS(2215), + [aux_sym_cmd_identifier_token34] = ACTIONS(2215), + [aux_sym_cmd_identifier_token35] = ACTIONS(2215), + [aux_sym_cmd_identifier_token36] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_null] = ACTIONS(2217), + [aux_sym_cmd_identifier_token38] = ACTIONS(2215), + [aux_sym_cmd_identifier_token39] = ACTIONS(2217), + [aux_sym_cmd_identifier_token40] = ACTIONS(2217), + [anon_sym_def] = ACTIONS(2215), + [anon_sym_export_DASHenv] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2217), + [anon_sym_error] = ACTIONS(2215), + [anon_sym_list] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_make] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_source] = ACTIONS(2215), + [anon_sym_source_DASHenv] = ACTIONS(2215), + [anon_sym_register] = ACTIONS(2215), + [anon_sym_hide] = ACTIONS(2215), + [anon_sym_hide_DASHenv] = ACTIONS(2215), + [anon_sym_overlay] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2215), + [aux_sym__val_number_decimal_token2] = ACTIONS(2217), + [aux_sym__val_number_decimal_token3] = ACTIONS(2217), + [aux_sym__val_number_decimal_token4] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2217), + [aux_sym__val_number_token2] = ACTIONS(2217), + [aux_sym__val_number_token3] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [sym__str_single_quotes] = ACTIONS(2217), + [sym__str_back_ticks] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_POUND] = ACTIONS(247), }, [512] = { [sym_comment] = STATE(512), - [anon_sym_export] = ACTIONS(924), - [anon_sym_alias] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_let_DASHenv] = ACTIONS(924), - [anon_sym_mut] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [aux_sym_cmd_identifier_token1] = ACTIONS(924), - [aux_sym_cmd_identifier_token2] = ACTIONS(924), - [aux_sym_cmd_identifier_token3] = ACTIONS(924), - [aux_sym_cmd_identifier_token4] = ACTIONS(924), - [aux_sym_cmd_identifier_token5] = ACTIONS(924), - [aux_sym_cmd_identifier_token6] = ACTIONS(924), - [aux_sym_cmd_identifier_token7] = ACTIONS(924), - [aux_sym_cmd_identifier_token8] = ACTIONS(924), - [aux_sym_cmd_identifier_token9] = ACTIONS(924), - [aux_sym_cmd_identifier_token10] = ACTIONS(924), - [aux_sym_cmd_identifier_token11] = ACTIONS(924), - [aux_sym_cmd_identifier_token12] = ACTIONS(924), - [aux_sym_cmd_identifier_token13] = ACTIONS(924), - [aux_sym_cmd_identifier_token14] = ACTIONS(924), - [aux_sym_cmd_identifier_token15] = ACTIONS(924), - [aux_sym_cmd_identifier_token16] = ACTIONS(924), - [aux_sym_cmd_identifier_token17] = ACTIONS(924), - [aux_sym_cmd_identifier_token18] = ACTIONS(924), - [aux_sym_cmd_identifier_token19] = ACTIONS(924), - [aux_sym_cmd_identifier_token20] = ACTIONS(924), - [aux_sym_cmd_identifier_token21] = ACTIONS(924), - [aux_sym_cmd_identifier_token22] = ACTIONS(924), - [aux_sym_cmd_identifier_token23] = ACTIONS(924), - [aux_sym_cmd_identifier_token24] = ACTIONS(924), - [aux_sym_cmd_identifier_token25] = ACTIONS(924), - [aux_sym_cmd_identifier_token26] = ACTIONS(924), - [aux_sym_cmd_identifier_token27] = ACTIONS(924), - [aux_sym_cmd_identifier_token28] = ACTIONS(924), - [aux_sym_cmd_identifier_token29] = ACTIONS(924), - [aux_sym_cmd_identifier_token30] = ACTIONS(924), - [aux_sym_cmd_identifier_token31] = ACTIONS(924), - [aux_sym_cmd_identifier_token32] = ACTIONS(924), - [aux_sym_cmd_identifier_token33] = ACTIONS(924), - [aux_sym_cmd_identifier_token34] = ACTIONS(924), - [aux_sym_cmd_identifier_token35] = ACTIONS(924), - [aux_sym_cmd_identifier_token36] = ACTIONS(924), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [anon_sym_null] = ACTIONS(924), - [aux_sym_cmd_identifier_token38] = ACTIONS(924), - [aux_sym_cmd_identifier_token39] = ACTIONS(924), - [aux_sym_cmd_identifier_token40] = ACTIONS(924), - [anon_sym_def] = ACTIONS(924), - [anon_sym_export_DASHenv] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_error] = ACTIONS(924), - [anon_sym_list] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_make] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_try] = ACTIONS(924), - [anon_sym_catch] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_source] = ACTIONS(924), - [anon_sym_source_DASHenv] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_hide] = ACTIONS(924), - [anon_sym_hide_DASHenv] = ACTIONS(924), - [anon_sym_overlay] = ACTIONS(924), - [anon_sym_new] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(924), - [aux_sym__val_number_decimal_token1] = ACTIONS(924), - [aux_sym__val_number_decimal_token2] = ACTIONS(924), - [anon_sym_DOT2] = ACTIONS(924), - [aux_sym__val_number_decimal_token3] = ACTIONS(924), - [aux_sym__val_number_token1] = ACTIONS(924), - [aux_sym__val_number_token2] = ACTIONS(924), - [aux_sym__val_number_token3] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym__str_single_quotes] = ACTIONS(924), - [sym__str_back_ticks] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(924), - [sym__entry_separator] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1525), + [anon_sym_alias] = ACTIONS(1525), + [anon_sym_let] = ACTIONS(1525), + [anon_sym_let_DASHenv] = ACTIONS(1525), + [anon_sym_mut] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [aux_sym_cmd_identifier_token1] = ACTIONS(1525), + [aux_sym_cmd_identifier_token2] = ACTIONS(1525), + [aux_sym_cmd_identifier_token3] = ACTIONS(1525), + [aux_sym_cmd_identifier_token4] = ACTIONS(1525), + [aux_sym_cmd_identifier_token5] = ACTIONS(1525), + [aux_sym_cmd_identifier_token6] = ACTIONS(1525), + [aux_sym_cmd_identifier_token7] = ACTIONS(1525), + [aux_sym_cmd_identifier_token8] = ACTIONS(1525), + [aux_sym_cmd_identifier_token9] = ACTIONS(1525), + [aux_sym_cmd_identifier_token10] = ACTIONS(1525), + [aux_sym_cmd_identifier_token11] = ACTIONS(1525), + [aux_sym_cmd_identifier_token12] = ACTIONS(1525), + [aux_sym_cmd_identifier_token13] = ACTIONS(1525), + [aux_sym_cmd_identifier_token14] = ACTIONS(1525), + [aux_sym_cmd_identifier_token15] = ACTIONS(1525), + [aux_sym_cmd_identifier_token16] = ACTIONS(1525), + [aux_sym_cmd_identifier_token17] = ACTIONS(1525), + [aux_sym_cmd_identifier_token18] = ACTIONS(1525), + [aux_sym_cmd_identifier_token19] = ACTIONS(1525), + [aux_sym_cmd_identifier_token20] = ACTIONS(1525), + [aux_sym_cmd_identifier_token21] = ACTIONS(1525), + [aux_sym_cmd_identifier_token22] = ACTIONS(1525), + [aux_sym_cmd_identifier_token23] = ACTIONS(1525), + [aux_sym_cmd_identifier_token24] = ACTIONS(1525), + [aux_sym_cmd_identifier_token25] = ACTIONS(1525), + [aux_sym_cmd_identifier_token26] = ACTIONS(1525), + [aux_sym_cmd_identifier_token27] = ACTIONS(1525), + [aux_sym_cmd_identifier_token28] = ACTIONS(1525), + [aux_sym_cmd_identifier_token29] = ACTIONS(1525), + [aux_sym_cmd_identifier_token30] = ACTIONS(1525), + [aux_sym_cmd_identifier_token31] = ACTIONS(1525), + [aux_sym_cmd_identifier_token32] = ACTIONS(1525), + [aux_sym_cmd_identifier_token33] = ACTIONS(1525), + [aux_sym_cmd_identifier_token34] = ACTIONS(1525), + [aux_sym_cmd_identifier_token35] = ACTIONS(1525), + [aux_sym_cmd_identifier_token36] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [aux_sym_cmd_identifier_token38] = ACTIONS(1525), + [aux_sym_cmd_identifier_token39] = ACTIONS(1525), + [aux_sym_cmd_identifier_token40] = ACTIONS(1525), + [anon_sym_def] = ACTIONS(1525), + [anon_sym_export_DASHenv] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym_module] = ACTIONS(1525), + [anon_sym_use] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_error] = ACTIONS(1525), + [anon_sym_list] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [anon_sym_loop] = ACTIONS(1525), + [anon_sym_make] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_catch] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_source] = ACTIONS(1525), + [anon_sym_source_DASHenv] = ACTIONS(1525), + [anon_sym_register] = ACTIONS(1525), + [anon_sym_hide] = ACTIONS(1525), + [anon_sym_hide_DASHenv] = ACTIONS(1525), + [anon_sym_overlay] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1525), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1525), + [aux_sym__val_number_decimal_token3] = ACTIONS(1525), + [aux_sym__val_number_decimal_token4] = ACTIONS(1525), + [aux_sym__val_number_token1] = ACTIONS(1525), + [aux_sym__val_number_token2] = ACTIONS(1525), + [aux_sym__val_number_token3] = ACTIONS(1525), + [anon_sym_DQUOTE] = ACTIONS(1525), + [sym__str_single_quotes] = ACTIONS(1525), + [sym__str_back_ticks] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1525), + [sym__entry_separator] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1525), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(3), }, [513] = { - [sym__expr_parenthesized_immediate] = STATE(7789), [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(2035), - [anon_sym_alias] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_let_DASHenv] = ACTIONS(2035), - [anon_sym_mut] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [aux_sym_cmd_identifier_token1] = ACTIONS(2035), - [aux_sym_cmd_identifier_token2] = ACTIONS(2035), - [aux_sym_cmd_identifier_token3] = ACTIONS(2035), - [aux_sym_cmd_identifier_token4] = ACTIONS(2035), - [aux_sym_cmd_identifier_token5] = ACTIONS(2035), - [aux_sym_cmd_identifier_token6] = ACTIONS(2035), - [aux_sym_cmd_identifier_token7] = ACTIONS(2035), - [aux_sym_cmd_identifier_token8] = ACTIONS(2035), - [aux_sym_cmd_identifier_token9] = ACTIONS(2035), - [aux_sym_cmd_identifier_token10] = ACTIONS(2035), - [aux_sym_cmd_identifier_token11] = ACTIONS(2035), - [aux_sym_cmd_identifier_token12] = ACTIONS(2035), - [aux_sym_cmd_identifier_token13] = ACTIONS(2035), - [aux_sym_cmd_identifier_token14] = ACTIONS(2035), - [aux_sym_cmd_identifier_token15] = ACTIONS(2035), - [aux_sym_cmd_identifier_token16] = ACTIONS(2035), - [aux_sym_cmd_identifier_token17] = ACTIONS(2035), - [aux_sym_cmd_identifier_token18] = ACTIONS(2035), - [aux_sym_cmd_identifier_token19] = ACTIONS(2035), - [aux_sym_cmd_identifier_token20] = ACTIONS(2035), - [aux_sym_cmd_identifier_token21] = ACTIONS(2035), - [aux_sym_cmd_identifier_token22] = ACTIONS(2035), - [aux_sym_cmd_identifier_token23] = ACTIONS(2035), - [aux_sym_cmd_identifier_token24] = ACTIONS(2035), - [aux_sym_cmd_identifier_token25] = ACTIONS(2035), - [aux_sym_cmd_identifier_token26] = ACTIONS(2035), - [aux_sym_cmd_identifier_token27] = ACTIONS(2035), - [aux_sym_cmd_identifier_token28] = ACTIONS(2035), - [aux_sym_cmd_identifier_token29] = ACTIONS(2035), - [aux_sym_cmd_identifier_token30] = ACTIONS(2035), - [aux_sym_cmd_identifier_token31] = ACTIONS(2035), - [aux_sym_cmd_identifier_token32] = ACTIONS(2035), - [aux_sym_cmd_identifier_token33] = ACTIONS(2035), - [aux_sym_cmd_identifier_token34] = ACTIONS(2035), - [aux_sym_cmd_identifier_token35] = ACTIONS(2035), - [aux_sym_cmd_identifier_token36] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2037), - [anon_sym_false] = ACTIONS(2037), - [anon_sym_null] = ACTIONS(2037), - [aux_sym_cmd_identifier_token38] = ACTIONS(2035), - [aux_sym_cmd_identifier_token39] = ACTIONS(2037), - [aux_sym_cmd_identifier_token40] = ACTIONS(2037), - [anon_sym_def] = ACTIONS(2035), - [anon_sym_export_DASHenv] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_module] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2037), - [anon_sym_error] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_in] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_make] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_source] = ACTIONS(2035), - [anon_sym_source_DASHenv] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_hide] = ACTIONS(2035), - [anon_sym_hide_DASHenv] = ACTIONS(2035), - [anon_sym_overlay] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_as] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2037), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2037), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2037), - [anon_sym_DOT2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2037), - [aux_sym__val_number_token1] = ACTIONS(2037), - [aux_sym__val_number_token2] = ACTIONS(2037), - [aux_sym__val_number_token3] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2037), - [sym__str_single_quotes] = ACTIONS(2037), - [sym__str_back_ticks] = ACTIONS(2037), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2037), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [514] = { [sym_comment] = STATE(514), - [anon_sym_export] = ACTIONS(932), - [anon_sym_alias] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_let_DASHenv] = ACTIONS(932), - [anon_sym_mut] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [aux_sym_cmd_identifier_token1] = ACTIONS(932), - [aux_sym_cmd_identifier_token2] = ACTIONS(932), - [aux_sym_cmd_identifier_token3] = ACTIONS(932), - [aux_sym_cmd_identifier_token4] = ACTIONS(932), - [aux_sym_cmd_identifier_token5] = ACTIONS(932), - [aux_sym_cmd_identifier_token6] = ACTIONS(932), - [aux_sym_cmd_identifier_token7] = ACTIONS(932), - [aux_sym_cmd_identifier_token8] = ACTIONS(932), - [aux_sym_cmd_identifier_token9] = ACTIONS(932), - [aux_sym_cmd_identifier_token10] = ACTIONS(932), - [aux_sym_cmd_identifier_token11] = ACTIONS(932), - [aux_sym_cmd_identifier_token12] = ACTIONS(932), - [aux_sym_cmd_identifier_token13] = ACTIONS(932), - [aux_sym_cmd_identifier_token14] = ACTIONS(932), - [aux_sym_cmd_identifier_token15] = ACTIONS(932), - [aux_sym_cmd_identifier_token16] = ACTIONS(932), - [aux_sym_cmd_identifier_token17] = ACTIONS(932), - [aux_sym_cmd_identifier_token18] = ACTIONS(932), - [aux_sym_cmd_identifier_token19] = ACTIONS(932), - [aux_sym_cmd_identifier_token20] = ACTIONS(932), - [aux_sym_cmd_identifier_token21] = ACTIONS(932), - [aux_sym_cmd_identifier_token22] = ACTIONS(932), - [aux_sym_cmd_identifier_token23] = ACTIONS(932), - [aux_sym_cmd_identifier_token24] = ACTIONS(932), - [aux_sym_cmd_identifier_token25] = ACTIONS(932), - [aux_sym_cmd_identifier_token26] = ACTIONS(932), - [aux_sym_cmd_identifier_token27] = ACTIONS(932), - [aux_sym_cmd_identifier_token28] = ACTIONS(932), - [aux_sym_cmd_identifier_token29] = ACTIONS(932), - [aux_sym_cmd_identifier_token30] = ACTIONS(932), - [aux_sym_cmd_identifier_token31] = ACTIONS(932), - [aux_sym_cmd_identifier_token32] = ACTIONS(932), - [aux_sym_cmd_identifier_token33] = ACTIONS(932), - [aux_sym_cmd_identifier_token34] = ACTIONS(932), - [aux_sym_cmd_identifier_token35] = ACTIONS(932), - [aux_sym_cmd_identifier_token36] = ACTIONS(932), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [anon_sym_null] = ACTIONS(932), - [aux_sym_cmd_identifier_token38] = ACTIONS(932), - [aux_sym_cmd_identifier_token39] = ACTIONS(932), - [aux_sym_cmd_identifier_token40] = ACTIONS(932), - [anon_sym_def] = ACTIONS(932), - [anon_sym_export_DASHenv] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_error] = ACTIONS(932), - [anon_sym_list] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_make] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_try] = ACTIONS(932), - [anon_sym_catch] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_source] = ACTIONS(932), - [anon_sym_source_DASHenv] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_hide] = ACTIONS(932), - [anon_sym_hide_DASHenv] = ACTIONS(932), - [anon_sym_overlay] = ACTIONS(932), - [anon_sym_new] = ACTIONS(932), - [anon_sym_as] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(932), - [aux_sym__val_number_decimal_token1] = ACTIONS(932), - [aux_sym__val_number_decimal_token2] = ACTIONS(932), - [anon_sym_DOT2] = ACTIONS(932), - [aux_sym__val_number_decimal_token3] = ACTIONS(932), - [aux_sym__val_number_token1] = ACTIONS(932), - [aux_sym__val_number_token2] = ACTIONS(932), - [aux_sym__val_number_token3] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym__str_single_quotes] = ACTIONS(932), - [sym__str_back_ticks] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(932), - [sym__entry_separator] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(980), + [anon_sym_list] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_new] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [515] = { [sym_comment] = STATE(515), - [aux_sym__multiple_types_repeat1] = STATE(511), - [anon_sym_export] = ACTIONS(2220), - [anon_sym_alias] = ACTIONS(2220), - [anon_sym_let] = ACTIONS(2220), - [anon_sym_let_DASHenv] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [aux_sym_cmd_identifier_token1] = ACTIONS(2220), - [aux_sym_cmd_identifier_token2] = ACTIONS(2220), - [aux_sym_cmd_identifier_token3] = ACTIONS(2220), - [aux_sym_cmd_identifier_token4] = ACTIONS(2220), - [aux_sym_cmd_identifier_token5] = ACTIONS(2220), - [aux_sym_cmd_identifier_token6] = ACTIONS(2220), - [aux_sym_cmd_identifier_token7] = ACTIONS(2220), - [aux_sym_cmd_identifier_token8] = ACTIONS(2220), - [aux_sym_cmd_identifier_token9] = ACTIONS(2220), - [aux_sym_cmd_identifier_token10] = ACTIONS(2220), - [aux_sym_cmd_identifier_token11] = ACTIONS(2220), - [aux_sym_cmd_identifier_token12] = ACTIONS(2220), - [aux_sym_cmd_identifier_token13] = ACTIONS(2220), - [aux_sym_cmd_identifier_token14] = ACTIONS(2220), - [aux_sym_cmd_identifier_token15] = ACTIONS(2220), - [aux_sym_cmd_identifier_token16] = ACTIONS(2220), - [aux_sym_cmd_identifier_token17] = ACTIONS(2220), - [aux_sym_cmd_identifier_token18] = ACTIONS(2220), - [aux_sym_cmd_identifier_token19] = ACTIONS(2220), - [aux_sym_cmd_identifier_token20] = ACTIONS(2220), - [aux_sym_cmd_identifier_token21] = ACTIONS(2220), - [aux_sym_cmd_identifier_token22] = ACTIONS(2220), - [aux_sym_cmd_identifier_token23] = ACTIONS(2220), - [aux_sym_cmd_identifier_token24] = ACTIONS(2220), - [aux_sym_cmd_identifier_token25] = ACTIONS(2220), - [aux_sym_cmd_identifier_token26] = ACTIONS(2220), - [aux_sym_cmd_identifier_token27] = ACTIONS(2220), - [aux_sym_cmd_identifier_token28] = ACTIONS(2220), - [aux_sym_cmd_identifier_token29] = ACTIONS(2220), - [aux_sym_cmd_identifier_token30] = ACTIONS(2220), - [aux_sym_cmd_identifier_token31] = ACTIONS(2220), - [aux_sym_cmd_identifier_token32] = ACTIONS(2220), - [aux_sym_cmd_identifier_token33] = ACTIONS(2220), - [aux_sym_cmd_identifier_token34] = ACTIONS(2220), - [aux_sym_cmd_identifier_token35] = ACTIONS(2220), - [aux_sym_cmd_identifier_token36] = ACTIONS(2220), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2220), - [aux_sym_cmd_identifier_token38] = ACTIONS(2220), - [aux_sym_cmd_identifier_token39] = ACTIONS(2220), - [aux_sym_cmd_identifier_token40] = ACTIONS(2220), - [anon_sym_def] = ACTIONS(2220), - [anon_sym_export_DASHenv] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_module] = ACTIONS(2220), - [anon_sym_use] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_error] = ACTIONS(2220), - [anon_sym_list] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_in] = ACTIONS(2220), - [anon_sym_loop] = ACTIONS(2220), - [anon_sym_make] = ACTIONS(2220), - [anon_sym_while] = ACTIONS(2220), - [anon_sym_do] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_else] = ACTIONS(2220), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2220), - [anon_sym_catch] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_source] = ACTIONS(2220), - [anon_sym_source_DASHenv] = ACTIONS(2220), - [anon_sym_register] = ACTIONS(2220), - [anon_sym_hide] = ACTIONS(2220), - [anon_sym_hide_DASHenv] = ACTIONS(2220), - [anon_sym_overlay] = ACTIONS(2220), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_as] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2220), - [aux_sym__val_number_decimal_token1] = ACTIONS(2220), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [anon_sym_DOT2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2220), - [aux_sym__val_number_token1] = ACTIONS(2220), - [aux_sym__val_number_token2] = ACTIONS(2220), - [aux_sym__val_number_token3] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym__str_single_quotes] = ACTIONS(2220), - [sym__str_back_ticks] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2220), - [sym__entry_separator] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [516] = { [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(2263), - [anon_sym_alias] = ACTIONS(2263), - [anon_sym_let] = ACTIONS(2263), - [anon_sym_let_DASHenv] = ACTIONS(2263), - [anon_sym_mut] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [aux_sym_cmd_identifier_token1] = ACTIONS(2263), - [aux_sym_cmd_identifier_token2] = ACTIONS(2263), - [aux_sym_cmd_identifier_token3] = ACTIONS(2263), - [aux_sym_cmd_identifier_token4] = ACTIONS(2263), - [aux_sym_cmd_identifier_token5] = ACTIONS(2263), - [aux_sym_cmd_identifier_token6] = ACTIONS(2263), - [aux_sym_cmd_identifier_token7] = ACTIONS(2263), - [aux_sym_cmd_identifier_token8] = ACTIONS(2263), - [aux_sym_cmd_identifier_token9] = ACTIONS(2263), - [aux_sym_cmd_identifier_token10] = ACTIONS(2263), - [aux_sym_cmd_identifier_token11] = ACTIONS(2263), - [aux_sym_cmd_identifier_token12] = ACTIONS(2263), - [aux_sym_cmd_identifier_token13] = ACTIONS(2263), - [aux_sym_cmd_identifier_token14] = ACTIONS(2263), - [aux_sym_cmd_identifier_token15] = ACTIONS(2263), - [aux_sym_cmd_identifier_token16] = ACTIONS(2263), - [aux_sym_cmd_identifier_token17] = ACTIONS(2263), - [aux_sym_cmd_identifier_token18] = ACTIONS(2263), - [aux_sym_cmd_identifier_token19] = ACTIONS(2263), - [aux_sym_cmd_identifier_token20] = ACTIONS(2263), - [aux_sym_cmd_identifier_token21] = ACTIONS(2263), - [aux_sym_cmd_identifier_token22] = ACTIONS(2263), - [aux_sym_cmd_identifier_token23] = ACTIONS(2263), - [aux_sym_cmd_identifier_token24] = ACTIONS(2263), - [aux_sym_cmd_identifier_token25] = ACTIONS(2263), - [aux_sym_cmd_identifier_token26] = ACTIONS(2263), - [aux_sym_cmd_identifier_token27] = ACTIONS(2263), - [aux_sym_cmd_identifier_token28] = ACTIONS(2263), - [aux_sym_cmd_identifier_token29] = ACTIONS(2263), - [aux_sym_cmd_identifier_token30] = ACTIONS(2263), - [aux_sym_cmd_identifier_token31] = ACTIONS(2263), - [aux_sym_cmd_identifier_token32] = ACTIONS(2263), - [aux_sym_cmd_identifier_token33] = ACTIONS(2263), - [aux_sym_cmd_identifier_token34] = ACTIONS(2263), - [aux_sym_cmd_identifier_token35] = ACTIONS(2263), - [aux_sym_cmd_identifier_token36] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2263), - [anon_sym_false] = ACTIONS(2263), - [anon_sym_null] = ACTIONS(2263), - [aux_sym_cmd_identifier_token38] = ACTIONS(2263), - [aux_sym_cmd_identifier_token39] = ACTIONS(2263), - [aux_sym_cmd_identifier_token40] = ACTIONS(2263), - [anon_sym_def] = ACTIONS(2263), - [anon_sym_export_DASHenv] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_use] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_error] = ACTIONS(2263), - [anon_sym_list] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(2263), - [anon_sym_loop] = ACTIONS(2263), - [anon_sym_make] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_catch] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_source] = ACTIONS(2263), - [anon_sym_source_DASHenv] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_hide] = ACTIONS(2263), - [anon_sym_hide_DASHenv] = ACTIONS(2263), - [anon_sym_overlay] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_as] = ACTIONS(2263), - [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2263), - [aux_sym__immediate_decimal_token1] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2263), - [aux_sym__val_number_decimal_token1] = ACTIONS(2263), - [aux_sym__val_number_decimal_token2] = ACTIONS(2263), - [anon_sym_DOT2] = ACTIONS(2263), - [aux_sym__val_number_decimal_token3] = ACTIONS(2263), - [aux_sym__val_number_token1] = ACTIONS(2263), - [aux_sym__val_number_token2] = ACTIONS(2263), - [aux_sym__val_number_token3] = ACTIONS(2263), - [anon_sym_DQUOTE] = ACTIONS(2263), - [sym__str_single_quotes] = ACTIONS(2263), - [sym__str_back_ticks] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2263), - [sym__entry_separator] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__multiple_types_repeat1] = STATE(527), + [anon_sym_export] = ACTIONS(2275), + [anon_sym_alias] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_let_DASHenv] = ACTIONS(2275), + [anon_sym_mut] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [aux_sym_cmd_identifier_token1] = ACTIONS(2275), + [aux_sym_cmd_identifier_token2] = ACTIONS(2275), + [aux_sym_cmd_identifier_token3] = ACTIONS(2275), + [aux_sym_cmd_identifier_token4] = ACTIONS(2275), + [aux_sym_cmd_identifier_token5] = ACTIONS(2275), + [aux_sym_cmd_identifier_token6] = ACTIONS(2275), + [aux_sym_cmd_identifier_token7] = ACTIONS(2275), + [aux_sym_cmd_identifier_token8] = ACTIONS(2275), + [aux_sym_cmd_identifier_token9] = ACTIONS(2275), + [aux_sym_cmd_identifier_token10] = ACTIONS(2275), + [aux_sym_cmd_identifier_token11] = ACTIONS(2275), + [aux_sym_cmd_identifier_token12] = ACTIONS(2275), + [aux_sym_cmd_identifier_token13] = ACTIONS(2275), + [aux_sym_cmd_identifier_token14] = ACTIONS(2275), + [aux_sym_cmd_identifier_token15] = ACTIONS(2275), + [aux_sym_cmd_identifier_token16] = ACTIONS(2275), + [aux_sym_cmd_identifier_token17] = ACTIONS(2275), + [aux_sym_cmd_identifier_token18] = ACTIONS(2275), + [aux_sym_cmd_identifier_token19] = ACTIONS(2275), + [aux_sym_cmd_identifier_token20] = ACTIONS(2275), + [aux_sym_cmd_identifier_token21] = ACTIONS(2275), + [aux_sym_cmd_identifier_token22] = ACTIONS(2275), + [aux_sym_cmd_identifier_token23] = ACTIONS(2275), + [aux_sym_cmd_identifier_token24] = ACTIONS(2275), + [aux_sym_cmd_identifier_token25] = ACTIONS(2275), + [aux_sym_cmd_identifier_token26] = ACTIONS(2275), + [aux_sym_cmd_identifier_token27] = ACTIONS(2275), + [aux_sym_cmd_identifier_token28] = ACTIONS(2275), + [aux_sym_cmd_identifier_token29] = ACTIONS(2275), + [aux_sym_cmd_identifier_token30] = ACTIONS(2275), + [aux_sym_cmd_identifier_token31] = ACTIONS(2275), + [aux_sym_cmd_identifier_token32] = ACTIONS(2275), + [aux_sym_cmd_identifier_token33] = ACTIONS(2275), + [aux_sym_cmd_identifier_token34] = ACTIONS(2275), + [aux_sym_cmd_identifier_token35] = ACTIONS(2275), + [aux_sym_cmd_identifier_token36] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [anon_sym_null] = ACTIONS(2275), + [aux_sym_cmd_identifier_token38] = ACTIONS(2275), + [aux_sym_cmd_identifier_token39] = ACTIONS(2275), + [aux_sym_cmd_identifier_token40] = ACTIONS(2275), + [anon_sym_def] = ACTIONS(2275), + [anon_sym_export_DASHenv] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_module] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2275), + [anon_sym_error] = ACTIONS(2275), + [anon_sym_list] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_make] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_do] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_else] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2275), + [anon_sym_catch] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_source] = ACTIONS(2275), + [anon_sym_source_DASHenv] = ACTIONS(2275), + [anon_sym_register] = ACTIONS(2275), + [anon_sym_hide] = ACTIONS(2275), + [anon_sym_hide_DASHenv] = ACTIONS(2275), + [anon_sym_overlay] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2275), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), + [aux_sym__val_number_decimal_token1] = ACTIONS(2275), + [aux_sym__val_number_decimal_token2] = ACTIONS(2275), + [aux_sym__val_number_decimal_token3] = ACTIONS(2275), + [aux_sym__val_number_decimal_token4] = ACTIONS(2275), + [aux_sym__val_number_token1] = ACTIONS(2275), + [aux_sym__val_number_token2] = ACTIONS(2275), + [aux_sym__val_number_token3] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2275), + [sym__str_single_quotes] = ACTIONS(2275), + [sym__str_back_ticks] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), + [sym__entry_separator] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), }, [517] = { [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(2269), - [anon_sym_alias] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_let_DASHenv] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [aux_sym_cmd_identifier_token1] = ACTIONS(2269), - [aux_sym_cmd_identifier_token2] = ACTIONS(2269), - [aux_sym_cmd_identifier_token3] = ACTIONS(2269), - [aux_sym_cmd_identifier_token4] = ACTIONS(2269), - [aux_sym_cmd_identifier_token5] = ACTIONS(2269), - [aux_sym_cmd_identifier_token6] = ACTIONS(2269), - [aux_sym_cmd_identifier_token7] = ACTIONS(2269), - [aux_sym_cmd_identifier_token8] = ACTIONS(2269), - [aux_sym_cmd_identifier_token9] = ACTIONS(2269), - [aux_sym_cmd_identifier_token10] = ACTIONS(2269), - [aux_sym_cmd_identifier_token11] = ACTIONS(2269), - [aux_sym_cmd_identifier_token12] = ACTIONS(2269), - [aux_sym_cmd_identifier_token13] = ACTIONS(2269), - [aux_sym_cmd_identifier_token14] = ACTIONS(2269), - [aux_sym_cmd_identifier_token15] = ACTIONS(2269), - [aux_sym_cmd_identifier_token16] = ACTIONS(2269), - [aux_sym_cmd_identifier_token17] = ACTIONS(2269), - [aux_sym_cmd_identifier_token18] = ACTIONS(2269), - [aux_sym_cmd_identifier_token19] = ACTIONS(2269), - [aux_sym_cmd_identifier_token20] = ACTIONS(2269), - [aux_sym_cmd_identifier_token21] = ACTIONS(2269), - [aux_sym_cmd_identifier_token22] = ACTIONS(2269), - [aux_sym_cmd_identifier_token23] = ACTIONS(2269), - [aux_sym_cmd_identifier_token24] = ACTIONS(2269), - [aux_sym_cmd_identifier_token25] = ACTIONS(2269), - [aux_sym_cmd_identifier_token26] = ACTIONS(2269), - [aux_sym_cmd_identifier_token27] = ACTIONS(2269), - [aux_sym_cmd_identifier_token28] = ACTIONS(2269), - [aux_sym_cmd_identifier_token29] = ACTIONS(2269), - [aux_sym_cmd_identifier_token30] = ACTIONS(2269), - [aux_sym_cmd_identifier_token31] = ACTIONS(2269), - [aux_sym_cmd_identifier_token32] = ACTIONS(2269), - [aux_sym_cmd_identifier_token33] = ACTIONS(2269), - [aux_sym_cmd_identifier_token34] = ACTIONS(2269), - [aux_sym_cmd_identifier_token35] = ACTIONS(2269), - [aux_sym_cmd_identifier_token36] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_null] = ACTIONS(2269), - [aux_sym_cmd_identifier_token38] = ACTIONS(2269), - [aux_sym_cmd_identifier_token39] = ACTIONS(2269), - [aux_sym_cmd_identifier_token40] = ACTIONS(2269), - [anon_sym_def] = ACTIONS(2269), - [anon_sym_export_DASHenv] = ACTIONS(2269), - [anon_sym_extern] = ACTIONS(2269), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_error] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_in] = ACTIONS(2269), - [anon_sym_loop] = ACTIONS(2269), - [anon_sym_make] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_do] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_else] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_catch] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_source] = ACTIONS(2269), - [anon_sym_source_DASHenv] = ACTIONS(2269), - [anon_sym_register] = ACTIONS(2269), - [anon_sym_hide] = ACTIONS(2269), - [anon_sym_hide_DASHenv] = ACTIONS(2269), - [anon_sym_overlay] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_LPAREN2] = ACTIONS(2271), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2269), - [aux_sym__val_number_decimal_token1] = ACTIONS(2269), - [aux_sym__val_number_decimal_token2] = ACTIONS(2269), - [anon_sym_DOT2] = ACTIONS(2269), - [aux_sym__val_number_decimal_token3] = ACTIONS(2269), - [aux_sym__val_number_token1] = ACTIONS(2269), - [aux_sym__val_number_token2] = ACTIONS(2269), - [aux_sym__val_number_token3] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2269), - [sym__str_single_quotes] = ACTIONS(2269), - [sym__str_back_ticks] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2269), - [sym__entry_separator] = ACTIONS(2271), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1006), + [aux_sym_cmd_identifier_token3] = ACTIONS(1006), + [aux_sym_cmd_identifier_token4] = ACTIONS(1006), + [aux_sym_cmd_identifier_token5] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1006), + [aux_sym_cmd_identifier_token7] = ACTIONS(1006), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1006), + [aux_sym_cmd_identifier_token17] = ACTIONS(1006), + [aux_sym_cmd_identifier_token18] = ACTIONS(1006), + [aux_sym_cmd_identifier_token19] = ACTIONS(1006), + [aux_sym_cmd_identifier_token20] = ACTIONS(1006), + [aux_sym_cmd_identifier_token21] = ACTIONS(1006), + [aux_sym_cmd_identifier_token22] = ACTIONS(1006), + [aux_sym_cmd_identifier_token23] = ACTIONS(1006), + [aux_sym_cmd_identifier_token24] = ACTIONS(1006), + [aux_sym_cmd_identifier_token25] = ACTIONS(1006), + [aux_sym_cmd_identifier_token26] = ACTIONS(1006), + [aux_sym_cmd_identifier_token27] = ACTIONS(1006), + [aux_sym_cmd_identifier_token28] = ACTIONS(1006), + [aux_sym_cmd_identifier_token29] = ACTIONS(1006), + [aux_sym_cmd_identifier_token30] = ACTIONS(1006), + [aux_sym_cmd_identifier_token31] = ACTIONS(1006), + [aux_sym_cmd_identifier_token32] = ACTIONS(1006), + [aux_sym_cmd_identifier_token33] = ACTIONS(1006), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1006), + [aux_sym_cmd_identifier_token36] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_RBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_decimal_token4] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), + [sym__entry_separator] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(3), }, [518] = { - [sym__expr_parenthesized_immediate] = STATE(7512), [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_list] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [anon_sym_DOT2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2085), + [anon_sym_alias] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_let_DASHenv] = ACTIONS(2085), + [anon_sym_mut] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [aux_sym_cmd_identifier_token1] = ACTIONS(2085), + [aux_sym_cmd_identifier_token2] = ACTIONS(2085), + [aux_sym_cmd_identifier_token3] = ACTIONS(2085), + [aux_sym_cmd_identifier_token4] = ACTIONS(2085), + [aux_sym_cmd_identifier_token5] = ACTIONS(2085), + [aux_sym_cmd_identifier_token6] = ACTIONS(2085), + [aux_sym_cmd_identifier_token7] = ACTIONS(2085), + [aux_sym_cmd_identifier_token8] = ACTIONS(2085), + [aux_sym_cmd_identifier_token9] = ACTIONS(2085), + [aux_sym_cmd_identifier_token10] = ACTIONS(2085), + [aux_sym_cmd_identifier_token11] = ACTIONS(2085), + [aux_sym_cmd_identifier_token12] = ACTIONS(2085), + [aux_sym_cmd_identifier_token13] = ACTIONS(2085), + [aux_sym_cmd_identifier_token14] = ACTIONS(2085), + [aux_sym_cmd_identifier_token15] = ACTIONS(2085), + [aux_sym_cmd_identifier_token16] = ACTIONS(2085), + [aux_sym_cmd_identifier_token17] = ACTIONS(2085), + [aux_sym_cmd_identifier_token18] = ACTIONS(2085), + [aux_sym_cmd_identifier_token19] = ACTIONS(2085), + [aux_sym_cmd_identifier_token20] = ACTIONS(2085), + [aux_sym_cmd_identifier_token21] = ACTIONS(2085), + [aux_sym_cmd_identifier_token22] = ACTIONS(2085), + [aux_sym_cmd_identifier_token23] = ACTIONS(2085), + [aux_sym_cmd_identifier_token24] = ACTIONS(2085), + [aux_sym_cmd_identifier_token25] = ACTIONS(2085), + [aux_sym_cmd_identifier_token26] = ACTIONS(2085), + [aux_sym_cmd_identifier_token27] = ACTIONS(2085), + [aux_sym_cmd_identifier_token28] = ACTIONS(2085), + [aux_sym_cmd_identifier_token29] = ACTIONS(2085), + [aux_sym_cmd_identifier_token30] = ACTIONS(2085), + [aux_sym_cmd_identifier_token31] = ACTIONS(2085), + [aux_sym_cmd_identifier_token32] = ACTIONS(2085), + [aux_sym_cmd_identifier_token33] = ACTIONS(2085), + [aux_sym_cmd_identifier_token34] = ACTIONS(2085), + [aux_sym_cmd_identifier_token35] = ACTIONS(2085), + [aux_sym_cmd_identifier_token36] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2087), + [anon_sym_false] = ACTIONS(2087), + [anon_sym_null] = ACTIONS(2087), + [aux_sym_cmd_identifier_token38] = ACTIONS(2085), + [aux_sym_cmd_identifier_token39] = ACTIONS(2087), + [aux_sym_cmd_identifier_token40] = ACTIONS(2087), + [anon_sym_def] = ACTIONS(2085), + [anon_sym_export_DASHenv] = ACTIONS(2085), + [anon_sym_extern] = ACTIONS(2085), + [anon_sym_module] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2087), + [anon_sym_error] = ACTIONS(2085), + [anon_sym_list] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_in] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_make] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_do] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_else] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_catch] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_source] = ACTIONS(2085), + [anon_sym_source_DASHenv] = ACTIONS(2085), + [anon_sym_register] = ACTIONS(2085), + [anon_sym_hide] = ACTIONS(2085), + [anon_sym_hide_DASHenv] = ACTIONS(2085), + [anon_sym_overlay] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2087), + [aux_sym__val_number_decimal_token1] = ACTIONS(2085), + [aux_sym__val_number_decimal_token2] = ACTIONS(2087), + [aux_sym__val_number_decimal_token3] = ACTIONS(2087), + [aux_sym__val_number_decimal_token4] = ACTIONS(2087), + [aux_sym__val_number_token1] = ACTIONS(2087), + [aux_sym__val_number_token2] = ACTIONS(2087), + [aux_sym__val_number_token3] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(2087), + [sym__str_single_quotes] = ACTIONS(2087), + [sym__str_back_ticks] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2087), + [anon_sym_PLUS] = ACTIONS(2085), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(247), }, [519] = { [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_alias] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_let_DASHenv] = ACTIONS(2077), - [anon_sym_mut] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [aux_sym_cmd_identifier_token1] = ACTIONS(2077), - [aux_sym_cmd_identifier_token2] = ACTIONS(2077), - [aux_sym_cmd_identifier_token3] = ACTIONS(2077), - [aux_sym_cmd_identifier_token4] = ACTIONS(2077), - [aux_sym_cmd_identifier_token5] = ACTIONS(2077), - [aux_sym_cmd_identifier_token6] = ACTIONS(2077), - [aux_sym_cmd_identifier_token7] = ACTIONS(2077), - [aux_sym_cmd_identifier_token8] = ACTIONS(2077), - [aux_sym_cmd_identifier_token9] = ACTIONS(2077), - [aux_sym_cmd_identifier_token10] = ACTIONS(2077), - [aux_sym_cmd_identifier_token11] = ACTIONS(2077), - [aux_sym_cmd_identifier_token12] = ACTIONS(2077), - [aux_sym_cmd_identifier_token13] = ACTIONS(2077), - [aux_sym_cmd_identifier_token14] = ACTIONS(2077), - [aux_sym_cmd_identifier_token15] = ACTIONS(2077), - [aux_sym_cmd_identifier_token16] = ACTIONS(2077), - [aux_sym_cmd_identifier_token17] = ACTIONS(2077), - [aux_sym_cmd_identifier_token18] = ACTIONS(2077), - [aux_sym_cmd_identifier_token19] = ACTIONS(2077), - [aux_sym_cmd_identifier_token20] = ACTIONS(2077), - [aux_sym_cmd_identifier_token21] = ACTIONS(2077), - [aux_sym_cmd_identifier_token22] = ACTIONS(2077), - [aux_sym_cmd_identifier_token23] = ACTIONS(2077), - [aux_sym_cmd_identifier_token24] = ACTIONS(2077), - [aux_sym_cmd_identifier_token25] = ACTIONS(2077), - [aux_sym_cmd_identifier_token26] = ACTIONS(2077), - [aux_sym_cmd_identifier_token27] = ACTIONS(2077), - [aux_sym_cmd_identifier_token28] = ACTIONS(2077), - [aux_sym_cmd_identifier_token29] = ACTIONS(2077), - [aux_sym_cmd_identifier_token30] = ACTIONS(2077), - [aux_sym_cmd_identifier_token31] = ACTIONS(2077), - [aux_sym_cmd_identifier_token32] = ACTIONS(2077), - [aux_sym_cmd_identifier_token33] = ACTIONS(2077), - [aux_sym_cmd_identifier_token34] = ACTIONS(2077), - [aux_sym_cmd_identifier_token35] = ACTIONS(2077), - [aux_sym_cmd_identifier_token36] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2077), - [aux_sym_cmd_identifier_token38] = ACTIONS(2077), - [aux_sym_cmd_identifier_token39] = ACTIONS(2077), - [aux_sym_cmd_identifier_token40] = ACTIONS(2077), - [anon_sym_def] = ACTIONS(2077), - [anon_sym_export_DASHenv] = ACTIONS(2077), - [anon_sym_extern] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_use] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_error] = ACTIONS(2077), - [anon_sym_list] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2077), - [anon_sym_loop] = ACTIONS(2077), - [anon_sym_make] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_catch] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_source] = ACTIONS(2077), - [anon_sym_source_DASHenv] = ACTIONS(2077), - [anon_sym_register] = ACTIONS(2077), - [anon_sym_hide] = ACTIONS(2077), - [anon_sym_hide_DASHenv] = ACTIONS(2077), - [anon_sym_overlay] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2077), - [anon_sym_LPAREN2] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2077), - [aux_sym__val_number_decimal_token1] = ACTIONS(2077), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [anon_sym_DOT2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_token1] = ACTIONS(2077), - [aux_sym__val_number_token2] = ACTIONS(2077), - [aux_sym__val_number_token3] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2081), - [sym__str_back_ticks] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2081), - [aux_sym__unquoted_in_record_token7] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2311), + [anon_sym_alias] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_let_DASHenv] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [aux_sym_cmd_identifier_token1] = ACTIONS(2311), + [aux_sym_cmd_identifier_token2] = ACTIONS(2311), + [aux_sym_cmd_identifier_token3] = ACTIONS(2311), + [aux_sym_cmd_identifier_token4] = ACTIONS(2311), + [aux_sym_cmd_identifier_token5] = ACTIONS(2311), + [aux_sym_cmd_identifier_token6] = ACTIONS(2311), + [aux_sym_cmd_identifier_token7] = ACTIONS(2311), + [aux_sym_cmd_identifier_token8] = ACTIONS(2311), + [aux_sym_cmd_identifier_token9] = ACTIONS(2311), + [aux_sym_cmd_identifier_token10] = ACTIONS(2311), + [aux_sym_cmd_identifier_token11] = ACTIONS(2311), + [aux_sym_cmd_identifier_token12] = ACTIONS(2311), + [aux_sym_cmd_identifier_token13] = ACTIONS(2311), + [aux_sym_cmd_identifier_token14] = ACTIONS(2311), + [aux_sym_cmd_identifier_token15] = ACTIONS(2311), + [aux_sym_cmd_identifier_token16] = ACTIONS(2311), + [aux_sym_cmd_identifier_token17] = ACTIONS(2311), + [aux_sym_cmd_identifier_token18] = ACTIONS(2311), + [aux_sym_cmd_identifier_token19] = ACTIONS(2311), + [aux_sym_cmd_identifier_token20] = ACTIONS(2311), + [aux_sym_cmd_identifier_token21] = ACTIONS(2311), + [aux_sym_cmd_identifier_token22] = ACTIONS(2311), + [aux_sym_cmd_identifier_token23] = ACTIONS(2311), + [aux_sym_cmd_identifier_token24] = ACTIONS(2311), + [aux_sym_cmd_identifier_token25] = ACTIONS(2311), + [aux_sym_cmd_identifier_token26] = ACTIONS(2311), + [aux_sym_cmd_identifier_token27] = ACTIONS(2311), + [aux_sym_cmd_identifier_token28] = ACTIONS(2311), + [aux_sym_cmd_identifier_token29] = ACTIONS(2311), + [aux_sym_cmd_identifier_token30] = ACTIONS(2311), + [aux_sym_cmd_identifier_token31] = ACTIONS(2311), + [aux_sym_cmd_identifier_token32] = ACTIONS(2311), + [aux_sym_cmd_identifier_token33] = ACTIONS(2311), + [aux_sym_cmd_identifier_token34] = ACTIONS(2311), + [aux_sym_cmd_identifier_token35] = ACTIONS(2311), + [aux_sym_cmd_identifier_token36] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [anon_sym_null] = ACTIONS(2311), + [aux_sym_cmd_identifier_token38] = ACTIONS(2311), + [aux_sym_cmd_identifier_token39] = ACTIONS(2311), + [aux_sym_cmd_identifier_token40] = ACTIONS(2311), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_export_DASHenv] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_module] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_RBRACK] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2311), + [anon_sym_error] = ACTIONS(2311), + [anon_sym_list] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_make] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_do] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_source] = ACTIONS(2311), + [anon_sym_source_DASHenv] = ACTIONS(2311), + [anon_sym_register] = ACTIONS(2311), + [anon_sym_hide] = ACTIONS(2311), + [anon_sym_hide_DASHenv] = ACTIONS(2311), + [anon_sym_overlay] = ACTIONS(2311), + [anon_sym_new] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), + [aux_sym__val_number_decimal_token1] = ACTIONS(2311), + [aux_sym__val_number_decimal_token2] = ACTIONS(2311), + [aux_sym__val_number_decimal_token3] = ACTIONS(2311), + [aux_sym__val_number_decimal_token4] = ACTIONS(2311), + [aux_sym__val_number_token1] = ACTIONS(2311), + [aux_sym__val_number_token2] = ACTIONS(2311), + [aux_sym__val_number_token3] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2311), + [sym__str_single_quotes] = ACTIONS(2311), + [sym__str_back_ticks] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), + [sym__entry_separator] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(3), }, [520] = { [sym_comment] = STATE(520), - [anon_sym_export] = ACTIONS(2273), - [anon_sym_alias] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_let_DASHenv] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [aux_sym_cmd_identifier_token1] = ACTIONS(2273), - [aux_sym_cmd_identifier_token2] = ACTIONS(2273), - [aux_sym_cmd_identifier_token3] = ACTIONS(2273), - [aux_sym_cmd_identifier_token4] = ACTIONS(2273), - [aux_sym_cmd_identifier_token5] = ACTIONS(2273), - [aux_sym_cmd_identifier_token6] = ACTIONS(2273), - [aux_sym_cmd_identifier_token7] = ACTIONS(2273), - [aux_sym_cmd_identifier_token8] = ACTIONS(2273), - [aux_sym_cmd_identifier_token9] = ACTIONS(2273), - [aux_sym_cmd_identifier_token10] = ACTIONS(2273), - [aux_sym_cmd_identifier_token11] = ACTIONS(2273), - [aux_sym_cmd_identifier_token12] = ACTIONS(2273), - [aux_sym_cmd_identifier_token13] = ACTIONS(2273), - [aux_sym_cmd_identifier_token14] = ACTIONS(2273), - [aux_sym_cmd_identifier_token15] = ACTIONS(2273), - [aux_sym_cmd_identifier_token16] = ACTIONS(2273), - [aux_sym_cmd_identifier_token17] = ACTIONS(2273), - [aux_sym_cmd_identifier_token18] = ACTIONS(2273), - [aux_sym_cmd_identifier_token19] = ACTIONS(2273), - [aux_sym_cmd_identifier_token20] = ACTIONS(2273), - [aux_sym_cmd_identifier_token21] = ACTIONS(2273), - [aux_sym_cmd_identifier_token22] = ACTIONS(2273), - [aux_sym_cmd_identifier_token23] = ACTIONS(2273), - [aux_sym_cmd_identifier_token24] = ACTIONS(2273), - [aux_sym_cmd_identifier_token25] = ACTIONS(2273), - [aux_sym_cmd_identifier_token26] = ACTIONS(2273), - [aux_sym_cmd_identifier_token27] = ACTIONS(2273), - [aux_sym_cmd_identifier_token28] = ACTIONS(2273), - [aux_sym_cmd_identifier_token29] = ACTIONS(2273), - [aux_sym_cmd_identifier_token30] = ACTIONS(2273), - [aux_sym_cmd_identifier_token31] = ACTIONS(2273), - [aux_sym_cmd_identifier_token32] = ACTIONS(2273), - [aux_sym_cmd_identifier_token33] = ACTIONS(2273), - [aux_sym_cmd_identifier_token34] = ACTIONS(2273), - [aux_sym_cmd_identifier_token35] = ACTIONS(2273), - [aux_sym_cmd_identifier_token36] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [anon_sym_null] = ACTIONS(2273), - [aux_sym_cmd_identifier_token38] = ACTIONS(2273), - [aux_sym_cmd_identifier_token39] = ACTIONS(2273), - [aux_sym_cmd_identifier_token40] = ACTIONS(2273), - [anon_sym_def] = ACTIONS(2273), - [anon_sym_export_DASHenv] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_module] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_RBRACK] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_error] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_make] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_catch] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_source] = ACTIONS(2273), - [anon_sym_source_DASHenv] = ACTIONS(2273), - [anon_sym_register] = ACTIONS(2273), - [anon_sym_hide] = ACTIONS(2273), - [anon_sym_hide_DASHenv] = ACTIONS(2273), - [anon_sym_overlay] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2273), - [aux_sym__val_number_decimal_token1] = ACTIONS(2273), - [aux_sym__val_number_decimal_token2] = ACTIONS(2273), - [anon_sym_DOT2] = ACTIONS(2273), - [aux_sym__val_number_decimal_token3] = ACTIONS(2273), - [aux_sym__val_number_token1] = ACTIONS(2273), - [aux_sym__val_number_token2] = ACTIONS(2273), - [aux_sym__val_number_token3] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [sym__str_single_quotes] = ACTIONS(2273), - [sym__str_back_ticks] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2273), - [sym__entry_separator] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1709), + [aux_sym_cmd_identifier_token3] = ACTIONS(1709), + [aux_sym_cmd_identifier_token4] = ACTIONS(1709), + [aux_sym_cmd_identifier_token5] = ACTIONS(1709), + [aux_sym_cmd_identifier_token6] = ACTIONS(1709), + [aux_sym_cmd_identifier_token7] = ACTIONS(1709), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1709), + [aux_sym_cmd_identifier_token11] = ACTIONS(1709), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1709), + [aux_sym_cmd_identifier_token17] = ACTIONS(1709), + [aux_sym_cmd_identifier_token18] = ACTIONS(1709), + [aux_sym_cmd_identifier_token19] = ACTIONS(1709), + [aux_sym_cmd_identifier_token20] = ACTIONS(1709), + [aux_sym_cmd_identifier_token21] = ACTIONS(1709), + [aux_sym_cmd_identifier_token22] = ACTIONS(1709), + [aux_sym_cmd_identifier_token23] = ACTIONS(1709), + [aux_sym_cmd_identifier_token24] = ACTIONS(1709), + [aux_sym_cmd_identifier_token25] = ACTIONS(1709), + [aux_sym_cmd_identifier_token26] = ACTIONS(1709), + [aux_sym_cmd_identifier_token27] = ACTIONS(1709), + [aux_sym_cmd_identifier_token28] = ACTIONS(1709), + [aux_sym_cmd_identifier_token29] = ACTIONS(1709), + [aux_sym_cmd_identifier_token30] = ACTIONS(1709), + [aux_sym_cmd_identifier_token31] = ACTIONS(1709), + [aux_sym_cmd_identifier_token32] = ACTIONS(1709), + [aux_sym_cmd_identifier_token33] = ACTIONS(1709), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1709), + [aux_sym_cmd_identifier_token36] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_list] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_new] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1709), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(247), }, [521] = { [sym_comment] = STATE(521), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(948), - [aux_sym_cmd_identifier_token3] = ACTIONS(948), - [aux_sym_cmd_identifier_token4] = ACTIONS(948), - [aux_sym_cmd_identifier_token5] = ACTIONS(948), - [aux_sym_cmd_identifier_token6] = ACTIONS(948), - [aux_sym_cmd_identifier_token7] = ACTIONS(948), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(948), - [aux_sym_cmd_identifier_token11] = ACTIONS(948), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(948), - [aux_sym_cmd_identifier_token17] = ACTIONS(948), - [aux_sym_cmd_identifier_token18] = ACTIONS(948), - [aux_sym_cmd_identifier_token19] = ACTIONS(948), - [aux_sym_cmd_identifier_token20] = ACTIONS(948), - [aux_sym_cmd_identifier_token21] = ACTIONS(948), - [aux_sym_cmd_identifier_token22] = ACTIONS(948), - [aux_sym_cmd_identifier_token23] = ACTIONS(948), - [aux_sym_cmd_identifier_token24] = ACTIONS(948), - [aux_sym_cmd_identifier_token25] = ACTIONS(948), - [aux_sym_cmd_identifier_token26] = ACTIONS(948), - [aux_sym_cmd_identifier_token27] = ACTIONS(948), - [aux_sym_cmd_identifier_token28] = ACTIONS(948), - [aux_sym_cmd_identifier_token29] = ACTIONS(948), - [aux_sym_cmd_identifier_token30] = ACTIONS(948), - [aux_sym_cmd_identifier_token31] = ACTIONS(948), - [aux_sym_cmd_identifier_token32] = ACTIONS(948), - [aux_sym_cmd_identifier_token33] = ACTIONS(948), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(948), - [aux_sym_cmd_identifier_token36] = ACTIONS(948), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_null] = ACTIONS(948), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(948), - [aux_sym_cmd_identifier_token40] = ACTIONS(948), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_list] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_new] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(2039), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(948), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(948), - [aux_sym__val_number_token1] = ACTIONS(948), - [aux_sym__val_number_token2] = ACTIONS(948), - [aux_sym__val_number_token3] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), - [aux_sym__unquoted_in_record_token7] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_alias] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_let_DASHenv] = ACTIONS(2117), + [anon_sym_mut] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [aux_sym_cmd_identifier_token1] = ACTIONS(2117), + [aux_sym_cmd_identifier_token2] = ACTIONS(2117), + [aux_sym_cmd_identifier_token3] = ACTIONS(2117), + [aux_sym_cmd_identifier_token4] = ACTIONS(2117), + [aux_sym_cmd_identifier_token5] = ACTIONS(2117), + [aux_sym_cmd_identifier_token6] = ACTIONS(2117), + [aux_sym_cmd_identifier_token7] = ACTIONS(2117), + [aux_sym_cmd_identifier_token8] = ACTIONS(2117), + [aux_sym_cmd_identifier_token9] = ACTIONS(2117), + [aux_sym_cmd_identifier_token10] = ACTIONS(2117), + [aux_sym_cmd_identifier_token11] = ACTIONS(2117), + [aux_sym_cmd_identifier_token12] = ACTIONS(2117), + [aux_sym_cmd_identifier_token13] = ACTIONS(2117), + [aux_sym_cmd_identifier_token14] = ACTIONS(2117), + [aux_sym_cmd_identifier_token15] = ACTIONS(2117), + [aux_sym_cmd_identifier_token16] = ACTIONS(2117), + [aux_sym_cmd_identifier_token17] = ACTIONS(2117), + [aux_sym_cmd_identifier_token18] = ACTIONS(2117), + [aux_sym_cmd_identifier_token19] = ACTIONS(2117), + [aux_sym_cmd_identifier_token20] = ACTIONS(2117), + [aux_sym_cmd_identifier_token21] = ACTIONS(2117), + [aux_sym_cmd_identifier_token22] = ACTIONS(2117), + [aux_sym_cmd_identifier_token23] = ACTIONS(2117), + [aux_sym_cmd_identifier_token24] = ACTIONS(2117), + [aux_sym_cmd_identifier_token25] = ACTIONS(2117), + [aux_sym_cmd_identifier_token26] = ACTIONS(2117), + [aux_sym_cmd_identifier_token27] = ACTIONS(2117), + [aux_sym_cmd_identifier_token28] = ACTIONS(2117), + [aux_sym_cmd_identifier_token29] = ACTIONS(2117), + [aux_sym_cmd_identifier_token30] = ACTIONS(2117), + [aux_sym_cmd_identifier_token31] = ACTIONS(2117), + [aux_sym_cmd_identifier_token32] = ACTIONS(2117), + [aux_sym_cmd_identifier_token33] = ACTIONS(2117), + [aux_sym_cmd_identifier_token34] = ACTIONS(2117), + [aux_sym_cmd_identifier_token35] = ACTIONS(2117), + [aux_sym_cmd_identifier_token36] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token38] = ACTIONS(2117), + [aux_sym_cmd_identifier_token39] = ACTIONS(2121), + [aux_sym_cmd_identifier_token40] = ACTIONS(2121), + [anon_sym_def] = ACTIONS(2117), + [anon_sym_export_DASHenv] = ACTIONS(2117), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_DOLLAR] = ACTIONS(2121), + [anon_sym_error] = ACTIONS(2117), + [anon_sym_list] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_in] = ACTIONS(2117), + [anon_sym_loop] = ACTIONS(2117), + [anon_sym_make] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_catch] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_source] = ACTIONS(2117), + [anon_sym_source_DASHenv] = ACTIONS(2117), + [anon_sym_register] = ACTIONS(2117), + [anon_sym_hide] = ACTIONS(2117), + [anon_sym_hide_DASHenv] = ACTIONS(2117), + [anon_sym_overlay] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_as] = ACTIONS(2117), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2121), + [aux_sym__val_number_decimal_token1] = ACTIONS(2117), + [aux_sym__val_number_decimal_token2] = ACTIONS(2121), + [aux_sym__val_number_decimal_token3] = ACTIONS(2121), + [aux_sym__val_number_decimal_token4] = ACTIONS(2121), + [aux_sym__val_number_token1] = ACTIONS(2121), + [aux_sym__val_number_token2] = ACTIONS(2121), + [aux_sym__val_number_token3] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [sym__str_single_quotes] = ACTIONS(2121), + [sym__str_back_ticks] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2117), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), }, [522] = { [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [aux_sym__immediate_decimal_token2] = ACTIONS(2176), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2311), + [anon_sym_alias] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_let_DASHenv] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [aux_sym_cmd_identifier_token1] = ACTIONS(2311), + [aux_sym_cmd_identifier_token2] = ACTIONS(2311), + [aux_sym_cmd_identifier_token3] = ACTIONS(2311), + [aux_sym_cmd_identifier_token4] = ACTIONS(2311), + [aux_sym_cmd_identifier_token5] = ACTIONS(2311), + [aux_sym_cmd_identifier_token6] = ACTIONS(2311), + [aux_sym_cmd_identifier_token7] = ACTIONS(2311), + [aux_sym_cmd_identifier_token8] = ACTIONS(2311), + [aux_sym_cmd_identifier_token9] = ACTIONS(2311), + [aux_sym_cmd_identifier_token10] = ACTIONS(2311), + [aux_sym_cmd_identifier_token11] = ACTIONS(2311), + [aux_sym_cmd_identifier_token12] = ACTIONS(2311), + [aux_sym_cmd_identifier_token13] = ACTIONS(2311), + [aux_sym_cmd_identifier_token14] = ACTIONS(2311), + [aux_sym_cmd_identifier_token15] = ACTIONS(2311), + [aux_sym_cmd_identifier_token16] = ACTIONS(2311), + [aux_sym_cmd_identifier_token17] = ACTIONS(2311), + [aux_sym_cmd_identifier_token18] = ACTIONS(2311), + [aux_sym_cmd_identifier_token19] = ACTIONS(2311), + [aux_sym_cmd_identifier_token20] = ACTIONS(2311), + [aux_sym_cmd_identifier_token21] = ACTIONS(2311), + [aux_sym_cmd_identifier_token22] = ACTIONS(2311), + [aux_sym_cmd_identifier_token23] = ACTIONS(2311), + [aux_sym_cmd_identifier_token24] = ACTIONS(2311), + [aux_sym_cmd_identifier_token25] = ACTIONS(2311), + [aux_sym_cmd_identifier_token26] = ACTIONS(2311), + [aux_sym_cmd_identifier_token27] = ACTIONS(2311), + [aux_sym_cmd_identifier_token28] = ACTIONS(2311), + [aux_sym_cmd_identifier_token29] = ACTIONS(2311), + [aux_sym_cmd_identifier_token30] = ACTIONS(2311), + [aux_sym_cmd_identifier_token31] = ACTIONS(2311), + [aux_sym_cmd_identifier_token32] = ACTIONS(2311), + [aux_sym_cmd_identifier_token33] = ACTIONS(2311), + [aux_sym_cmd_identifier_token34] = ACTIONS(2311), + [aux_sym_cmd_identifier_token35] = ACTIONS(2311), + [aux_sym_cmd_identifier_token36] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [anon_sym_null] = ACTIONS(2311), + [aux_sym_cmd_identifier_token38] = ACTIONS(2311), + [aux_sym_cmd_identifier_token39] = ACTIONS(2311), + [aux_sym_cmd_identifier_token40] = ACTIONS(2311), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_export_DASHenv] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_module] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_RBRACK] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2311), + [anon_sym_error] = ACTIONS(2311), + [anon_sym_list] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_make] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_do] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_source] = ACTIONS(2311), + [anon_sym_source_DASHenv] = ACTIONS(2311), + [anon_sym_register] = ACTIONS(2311), + [anon_sym_hide] = ACTIONS(2311), + [anon_sym_hide_DASHenv] = ACTIONS(2311), + [anon_sym_overlay] = ACTIONS(2311), + [anon_sym_new] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), + [aux_sym__val_number_decimal_token1] = ACTIONS(2311), + [aux_sym__val_number_decimal_token2] = ACTIONS(2311), + [aux_sym__val_number_decimal_token3] = ACTIONS(2311), + [aux_sym__val_number_decimal_token4] = ACTIONS(2311), + [aux_sym__val_number_token1] = ACTIONS(2311), + [aux_sym__val_number_token2] = ACTIONS(2311), + [aux_sym__val_number_token3] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2311), + [sym__str_single_quotes] = ACTIONS(2311), + [sym__str_back_ticks] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), + [sym__entry_separator] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(3), }, [523] = { [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(2277), - [anon_sym_alias] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_let_DASHenv] = ACTIONS(2277), - [anon_sym_mut] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [aux_sym_cmd_identifier_token1] = ACTIONS(2277), - [aux_sym_cmd_identifier_token2] = ACTIONS(2277), - [aux_sym_cmd_identifier_token3] = ACTIONS(2277), - [aux_sym_cmd_identifier_token4] = ACTIONS(2277), - [aux_sym_cmd_identifier_token5] = ACTIONS(2277), - [aux_sym_cmd_identifier_token6] = ACTIONS(2277), - [aux_sym_cmd_identifier_token7] = ACTIONS(2277), - [aux_sym_cmd_identifier_token8] = ACTIONS(2277), - [aux_sym_cmd_identifier_token9] = ACTIONS(2277), - [aux_sym_cmd_identifier_token10] = ACTIONS(2277), - [aux_sym_cmd_identifier_token11] = ACTIONS(2277), - [aux_sym_cmd_identifier_token12] = ACTIONS(2277), - [aux_sym_cmd_identifier_token13] = ACTIONS(2277), - [aux_sym_cmd_identifier_token14] = ACTIONS(2277), - [aux_sym_cmd_identifier_token15] = ACTIONS(2277), - [aux_sym_cmd_identifier_token16] = ACTIONS(2277), - [aux_sym_cmd_identifier_token17] = ACTIONS(2277), - [aux_sym_cmd_identifier_token18] = ACTIONS(2277), - [aux_sym_cmd_identifier_token19] = ACTIONS(2277), - [aux_sym_cmd_identifier_token20] = ACTIONS(2277), - [aux_sym_cmd_identifier_token21] = ACTIONS(2277), - [aux_sym_cmd_identifier_token22] = ACTIONS(2277), - [aux_sym_cmd_identifier_token23] = ACTIONS(2277), - [aux_sym_cmd_identifier_token24] = ACTIONS(2277), - [aux_sym_cmd_identifier_token25] = ACTIONS(2277), - [aux_sym_cmd_identifier_token26] = ACTIONS(2277), - [aux_sym_cmd_identifier_token27] = ACTIONS(2277), - [aux_sym_cmd_identifier_token28] = ACTIONS(2277), - [aux_sym_cmd_identifier_token29] = ACTIONS(2277), - [aux_sym_cmd_identifier_token30] = ACTIONS(2277), - [aux_sym_cmd_identifier_token31] = ACTIONS(2277), - [aux_sym_cmd_identifier_token32] = ACTIONS(2277), - [aux_sym_cmd_identifier_token33] = ACTIONS(2277), - [aux_sym_cmd_identifier_token34] = ACTIONS(2277), - [aux_sym_cmd_identifier_token35] = ACTIONS(2277), - [aux_sym_cmd_identifier_token36] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [anon_sym_null] = ACTIONS(2277), - [aux_sym_cmd_identifier_token38] = ACTIONS(2277), - [aux_sym_cmd_identifier_token39] = ACTIONS(2277), - [aux_sym_cmd_identifier_token40] = ACTIONS(2277), - [anon_sym_def] = ACTIONS(2277), - [anon_sym_export_DASHenv] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_module] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_error] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_in] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_make] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_catch] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_source] = ACTIONS(2277), - [anon_sym_source_DASHenv] = ACTIONS(2277), - [anon_sym_register] = ACTIONS(2277), - [anon_sym_hide] = ACTIONS(2277), - [anon_sym_hide_DASHenv] = ACTIONS(2277), - [anon_sym_overlay] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2277), - [aux_sym__val_number_decimal_token1] = ACTIONS(2277), - [aux_sym__val_number_decimal_token2] = ACTIONS(2277), - [anon_sym_DOT2] = ACTIONS(2277), - [aux_sym__val_number_decimal_token3] = ACTIONS(2277), - [aux_sym__val_number_token1] = ACTIONS(2277), - [aux_sym__val_number_token2] = ACTIONS(2277), - [aux_sym__val_number_token3] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2277), - [sym__str_single_quotes] = ACTIONS(2277), - [sym__str_back_ticks] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2277), - [sym__entry_separator] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1770), + [anon_sym_alias] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1770), + [anon_sym_let_DASHenv] = ACTIONS(1770), + [anon_sym_mut] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [aux_sym_cmd_identifier_token1] = ACTIONS(1770), + [aux_sym_cmd_identifier_token2] = ACTIONS(1770), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [aux_sym_cmd_identifier_token6] = ACTIONS(1770), + [aux_sym_cmd_identifier_token7] = ACTIONS(1770), + [aux_sym_cmd_identifier_token8] = ACTIONS(1770), + [aux_sym_cmd_identifier_token9] = ACTIONS(1770), + [aux_sym_cmd_identifier_token10] = ACTIONS(1770), + [aux_sym_cmd_identifier_token11] = ACTIONS(1770), + [aux_sym_cmd_identifier_token12] = ACTIONS(1770), + [aux_sym_cmd_identifier_token13] = ACTIONS(1770), + [aux_sym_cmd_identifier_token14] = ACTIONS(1770), + [aux_sym_cmd_identifier_token15] = ACTIONS(1770), + [aux_sym_cmd_identifier_token16] = ACTIONS(1770), + [aux_sym_cmd_identifier_token17] = ACTIONS(1770), + [aux_sym_cmd_identifier_token18] = ACTIONS(1770), + [aux_sym_cmd_identifier_token19] = ACTIONS(1770), + [aux_sym_cmd_identifier_token20] = ACTIONS(1770), + [aux_sym_cmd_identifier_token21] = ACTIONS(1770), + [aux_sym_cmd_identifier_token22] = ACTIONS(1770), + [aux_sym_cmd_identifier_token23] = ACTIONS(1770), + [aux_sym_cmd_identifier_token24] = ACTIONS(1770), + [aux_sym_cmd_identifier_token25] = ACTIONS(1770), + [aux_sym_cmd_identifier_token26] = ACTIONS(1770), + [aux_sym_cmd_identifier_token27] = ACTIONS(1770), + [aux_sym_cmd_identifier_token28] = ACTIONS(1770), + [aux_sym_cmd_identifier_token29] = ACTIONS(1770), + [aux_sym_cmd_identifier_token30] = ACTIONS(1770), + [aux_sym_cmd_identifier_token31] = ACTIONS(1770), + [aux_sym_cmd_identifier_token32] = ACTIONS(1770), + [aux_sym_cmd_identifier_token33] = ACTIONS(1770), + [aux_sym_cmd_identifier_token34] = ACTIONS(1770), + [aux_sym_cmd_identifier_token35] = ACTIONS(1770), + [aux_sym_cmd_identifier_token36] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [aux_sym_cmd_identifier_token38] = ACTIONS(1770), + [aux_sym_cmd_identifier_token39] = ACTIONS(1770), + [aux_sym_cmd_identifier_token40] = ACTIONS(1770), + [anon_sym_def] = ACTIONS(1770), + [anon_sym_export_DASHenv] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_module] = ACTIONS(1770), + [anon_sym_use] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_error] = ACTIONS(1770), + [anon_sym_list] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_loop] = ACTIONS(1770), + [anon_sym_make] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_match] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_try] = ACTIONS(1770), + [anon_sym_catch] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_source] = ACTIONS(1770), + [anon_sym_source_DASHenv] = ACTIONS(1770), + [anon_sym_register] = ACTIONS(1770), + [anon_sym_hide] = ACTIONS(1770), + [anon_sym_hide_DASHenv] = ACTIONS(1770), + [anon_sym_overlay] = ACTIONS(1770), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1770), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1770), + [sym__entry_separator] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(3), }, [524] = { [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(2269), - [anon_sym_alias] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_let_DASHenv] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [aux_sym_cmd_identifier_token1] = ACTIONS(2269), - [aux_sym_cmd_identifier_token2] = ACTIONS(2269), - [aux_sym_cmd_identifier_token3] = ACTIONS(2269), - [aux_sym_cmd_identifier_token4] = ACTIONS(2269), - [aux_sym_cmd_identifier_token5] = ACTIONS(2269), - [aux_sym_cmd_identifier_token6] = ACTIONS(2269), - [aux_sym_cmd_identifier_token7] = ACTIONS(2269), - [aux_sym_cmd_identifier_token8] = ACTIONS(2269), - [aux_sym_cmd_identifier_token9] = ACTIONS(2269), - [aux_sym_cmd_identifier_token10] = ACTIONS(2269), - [aux_sym_cmd_identifier_token11] = ACTIONS(2269), - [aux_sym_cmd_identifier_token12] = ACTIONS(2269), - [aux_sym_cmd_identifier_token13] = ACTIONS(2269), - [aux_sym_cmd_identifier_token14] = ACTIONS(2269), - [aux_sym_cmd_identifier_token15] = ACTIONS(2269), - [aux_sym_cmd_identifier_token16] = ACTIONS(2269), - [aux_sym_cmd_identifier_token17] = ACTIONS(2269), - [aux_sym_cmd_identifier_token18] = ACTIONS(2269), - [aux_sym_cmd_identifier_token19] = ACTIONS(2269), - [aux_sym_cmd_identifier_token20] = ACTIONS(2269), - [aux_sym_cmd_identifier_token21] = ACTIONS(2269), - [aux_sym_cmd_identifier_token22] = ACTIONS(2269), - [aux_sym_cmd_identifier_token23] = ACTIONS(2269), - [aux_sym_cmd_identifier_token24] = ACTIONS(2269), - [aux_sym_cmd_identifier_token25] = ACTIONS(2269), - [aux_sym_cmd_identifier_token26] = ACTIONS(2269), - [aux_sym_cmd_identifier_token27] = ACTIONS(2269), - [aux_sym_cmd_identifier_token28] = ACTIONS(2269), - [aux_sym_cmd_identifier_token29] = ACTIONS(2269), - [aux_sym_cmd_identifier_token30] = ACTIONS(2269), - [aux_sym_cmd_identifier_token31] = ACTIONS(2269), - [aux_sym_cmd_identifier_token32] = ACTIONS(2269), - [aux_sym_cmd_identifier_token33] = ACTIONS(2269), - [aux_sym_cmd_identifier_token34] = ACTIONS(2269), - [aux_sym_cmd_identifier_token35] = ACTIONS(2269), - [aux_sym_cmd_identifier_token36] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2271), - [anon_sym_false] = ACTIONS(2271), - [anon_sym_null] = ACTIONS(2271), - [aux_sym_cmd_identifier_token38] = ACTIONS(2269), - [aux_sym_cmd_identifier_token39] = ACTIONS(2271), - [aux_sym_cmd_identifier_token40] = ACTIONS(2271), - [anon_sym_def] = ACTIONS(2269), - [anon_sym_export_DASHenv] = ACTIONS(2269), - [anon_sym_extern] = ACTIONS(2269), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_error] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_in] = ACTIONS(2269), - [anon_sym_loop] = ACTIONS(2269), - [anon_sym_make] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_do] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_else] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_catch] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_source] = ACTIONS(2269), - [anon_sym_source_DASHenv] = ACTIONS(2269), - [anon_sym_register] = ACTIONS(2269), - [anon_sym_hide] = ACTIONS(2269), - [anon_sym_hide_DASHenv] = ACTIONS(2269), - [anon_sym_overlay] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_LPAREN2] = ACTIONS(2271), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2271), - [aux_sym__val_number_decimal_token1] = ACTIONS(2269), - [aux_sym__val_number_decimal_token2] = ACTIONS(2271), - [anon_sym_DOT2] = ACTIONS(2269), - [aux_sym__val_number_decimal_token3] = ACTIONS(2271), - [aux_sym__val_number_token1] = ACTIONS(2271), - [aux_sym__val_number_token2] = ACTIONS(2271), - [aux_sym__val_number_token3] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [sym__str_single_quotes] = ACTIONS(2271), - [sym__str_back_ticks] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2271), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2123), + [anon_sym_alias] = ACTIONS(2123), + [anon_sym_let] = ACTIONS(2123), + [anon_sym_let_DASHenv] = ACTIONS(2123), + [anon_sym_mut] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [aux_sym_cmd_identifier_token1] = ACTIONS(2123), + [aux_sym_cmd_identifier_token2] = ACTIONS(2123), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [aux_sym_cmd_identifier_token6] = ACTIONS(2123), + [aux_sym_cmd_identifier_token7] = ACTIONS(2123), + [aux_sym_cmd_identifier_token8] = ACTIONS(2123), + [aux_sym_cmd_identifier_token9] = ACTIONS(2123), + [aux_sym_cmd_identifier_token10] = ACTIONS(2123), + [aux_sym_cmd_identifier_token11] = ACTIONS(2123), + [aux_sym_cmd_identifier_token12] = ACTIONS(2123), + [aux_sym_cmd_identifier_token13] = ACTIONS(2123), + [aux_sym_cmd_identifier_token14] = ACTIONS(2123), + [aux_sym_cmd_identifier_token15] = ACTIONS(2123), + [aux_sym_cmd_identifier_token16] = ACTIONS(2123), + [aux_sym_cmd_identifier_token17] = ACTIONS(2123), + [aux_sym_cmd_identifier_token18] = ACTIONS(2123), + [aux_sym_cmd_identifier_token19] = ACTIONS(2123), + [aux_sym_cmd_identifier_token20] = ACTIONS(2123), + [aux_sym_cmd_identifier_token21] = ACTIONS(2123), + [aux_sym_cmd_identifier_token22] = ACTIONS(2123), + [aux_sym_cmd_identifier_token23] = ACTIONS(2123), + [aux_sym_cmd_identifier_token24] = ACTIONS(2123), + [aux_sym_cmd_identifier_token25] = ACTIONS(2123), + [aux_sym_cmd_identifier_token26] = ACTIONS(2123), + [aux_sym_cmd_identifier_token27] = ACTIONS(2123), + [aux_sym_cmd_identifier_token28] = ACTIONS(2123), + [aux_sym_cmd_identifier_token29] = ACTIONS(2123), + [aux_sym_cmd_identifier_token30] = ACTIONS(2123), + [aux_sym_cmd_identifier_token31] = ACTIONS(2123), + [aux_sym_cmd_identifier_token32] = ACTIONS(2123), + [aux_sym_cmd_identifier_token33] = ACTIONS(2123), + [aux_sym_cmd_identifier_token34] = ACTIONS(2123), + [aux_sym_cmd_identifier_token35] = ACTIONS(2123), + [aux_sym_cmd_identifier_token36] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(2127), + [anon_sym_false] = ACTIONS(2127), + [anon_sym_null] = ACTIONS(2127), + [aux_sym_cmd_identifier_token38] = ACTIONS(2123), + [aux_sym_cmd_identifier_token39] = ACTIONS(2127), + [aux_sym_cmd_identifier_token40] = ACTIONS(2127), + [anon_sym_def] = ACTIONS(2123), + [anon_sym_export_DASHenv] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2123), + [anon_sym_module] = ACTIONS(2123), + [anon_sym_use] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2127), + [anon_sym_error] = ACTIONS(2123), + [anon_sym_list] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_in] = ACTIONS(2123), + [anon_sym_loop] = ACTIONS(2123), + [anon_sym_make] = ACTIONS(2123), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_do] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_else] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_try] = ACTIONS(2123), + [anon_sym_catch] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_source] = ACTIONS(2123), + [anon_sym_source_DASHenv] = ACTIONS(2123), + [anon_sym_register] = ACTIONS(2123), + [anon_sym_hide] = ACTIONS(2123), + [anon_sym_hide_DASHenv] = ACTIONS(2123), + [anon_sym_overlay] = ACTIONS(2123), + [anon_sym_new] = ACTIONS(2123), + [anon_sym_as] = ACTIONS(2123), + [anon_sym_LPAREN2] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2127), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [aux_sym__val_number_decimal_token2] = ACTIONS(2127), + [aux_sym__val_number_decimal_token3] = ACTIONS(2127), + [aux_sym__val_number_decimal_token4] = ACTIONS(2127), + [aux_sym__val_number_token1] = ACTIONS(2127), + [aux_sym__val_number_token2] = ACTIONS(2127), + [aux_sym__val_number_token3] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [sym__str_single_quotes] = ACTIONS(2127), + [sym__str_back_ticks] = ACTIONS(2127), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2123), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(247), }, [525] = { [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(1947), - [anon_sym_alias] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_let_DASHenv] = ACTIONS(1947), - [anon_sym_mut] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [aux_sym_cmd_identifier_token1] = ACTIONS(1947), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1947), - [aux_sym_cmd_identifier_token9] = ACTIONS(1947), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1947), - [aux_sym_cmd_identifier_token13] = ACTIONS(1947), - [aux_sym_cmd_identifier_token14] = ACTIONS(1947), - [aux_sym_cmd_identifier_token15] = ACTIONS(1947), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1947), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1947), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1947), - [anon_sym_export_DASHenv] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_module] = ACTIONS(1947), - [anon_sym_use] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_error] = ACTIONS(1947), - [anon_sym_list] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_in] = ACTIONS(1947), - [anon_sym_loop] = ACTIONS(1947), - [anon_sym_make] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_source] = ACTIONS(1947), - [anon_sym_source_DASHenv] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_hide] = ACTIONS(1947), - [anon_sym_hide_DASHenv] = ACTIONS(1947), - [anon_sym_overlay] = ACTIONS(1947), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_as] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [sym__entry_separator] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2315), + [anon_sym_alias] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_let_DASHenv] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [aux_sym_cmd_identifier_token1] = ACTIONS(2315), + [aux_sym_cmd_identifier_token2] = ACTIONS(2315), + [aux_sym_cmd_identifier_token3] = ACTIONS(2315), + [aux_sym_cmd_identifier_token4] = ACTIONS(2315), + [aux_sym_cmd_identifier_token5] = ACTIONS(2315), + [aux_sym_cmd_identifier_token6] = ACTIONS(2315), + [aux_sym_cmd_identifier_token7] = ACTIONS(2315), + [aux_sym_cmd_identifier_token8] = ACTIONS(2315), + [aux_sym_cmd_identifier_token9] = ACTIONS(2315), + [aux_sym_cmd_identifier_token10] = ACTIONS(2315), + [aux_sym_cmd_identifier_token11] = ACTIONS(2315), + [aux_sym_cmd_identifier_token12] = ACTIONS(2315), + [aux_sym_cmd_identifier_token13] = ACTIONS(2315), + [aux_sym_cmd_identifier_token14] = ACTIONS(2315), + [aux_sym_cmd_identifier_token15] = ACTIONS(2315), + [aux_sym_cmd_identifier_token16] = ACTIONS(2315), + [aux_sym_cmd_identifier_token17] = ACTIONS(2315), + [aux_sym_cmd_identifier_token18] = ACTIONS(2315), + [aux_sym_cmd_identifier_token19] = ACTIONS(2315), + [aux_sym_cmd_identifier_token20] = ACTIONS(2315), + [aux_sym_cmd_identifier_token21] = ACTIONS(2315), + [aux_sym_cmd_identifier_token22] = ACTIONS(2315), + [aux_sym_cmd_identifier_token23] = ACTIONS(2315), + [aux_sym_cmd_identifier_token24] = ACTIONS(2315), + [aux_sym_cmd_identifier_token25] = ACTIONS(2315), + [aux_sym_cmd_identifier_token26] = ACTIONS(2315), + [aux_sym_cmd_identifier_token27] = ACTIONS(2315), + [aux_sym_cmd_identifier_token28] = ACTIONS(2315), + [aux_sym_cmd_identifier_token29] = ACTIONS(2315), + [aux_sym_cmd_identifier_token30] = ACTIONS(2315), + [aux_sym_cmd_identifier_token31] = ACTIONS(2315), + [aux_sym_cmd_identifier_token32] = ACTIONS(2315), + [aux_sym_cmd_identifier_token33] = ACTIONS(2315), + [aux_sym_cmd_identifier_token34] = ACTIONS(2315), + [aux_sym_cmd_identifier_token35] = ACTIONS(2315), + [aux_sym_cmd_identifier_token36] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2315), + [anon_sym_false] = ACTIONS(2315), + [anon_sym_null] = ACTIONS(2315), + [aux_sym_cmd_identifier_token38] = ACTIONS(2315), + [aux_sym_cmd_identifier_token39] = ACTIONS(2315), + [aux_sym_cmd_identifier_token40] = ACTIONS(2315), + [anon_sym_def] = ACTIONS(2315), + [anon_sym_export_DASHenv] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_module] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_RBRACK] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_error] = ACTIONS(2315), + [anon_sym_list] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_make] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_do] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_else] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2315), + [anon_sym_catch] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_source] = ACTIONS(2315), + [anon_sym_source_DASHenv] = ACTIONS(2315), + [anon_sym_register] = ACTIONS(2315), + [anon_sym_hide] = ACTIONS(2315), + [anon_sym_hide_DASHenv] = ACTIONS(2315), + [anon_sym_overlay] = ACTIONS(2315), + [anon_sym_new] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2315), + [aux_sym__val_number_decimal_token3] = ACTIONS(2315), + [aux_sym__val_number_decimal_token4] = ACTIONS(2315), + [aux_sym__val_number_token1] = ACTIONS(2315), + [aux_sym__val_number_token2] = ACTIONS(2315), + [aux_sym__val_number_token3] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [sym__str_single_quotes] = ACTIONS(2315), + [sym__str_back_ticks] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2315), + [sym__entry_separator] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(3), }, [526] = { [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [aux_sym_cmd_identifier_token1] = ACTIONS(1863), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1863), - [aux_sym_cmd_identifier_token9] = ACTIONS(1863), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1863), - [aux_sym_cmd_identifier_token13] = ACTIONS(1863), - [aux_sym_cmd_identifier_token14] = ACTIONS(1863), - [aux_sym_cmd_identifier_token15] = ACTIONS(1863), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1863), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [anon_sym_null] = ACTIONS(1863), - [aux_sym_cmd_identifier_token38] = ACTIONS(1863), - [aux_sym_cmd_identifier_token39] = ACTIONS(1863), - [aux_sym_cmd_identifier_token40] = ACTIONS(1863), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_list] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_in] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_make] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_catch] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [anon_sym_DOT2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), - [sym__entry_separator] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [527] = { [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1871), - [aux_sym_cmd_identifier_token3] = ACTIONS(1871), - [aux_sym_cmd_identifier_token4] = ACTIONS(1871), - [aux_sym_cmd_identifier_token5] = ACTIONS(1871), - [aux_sym_cmd_identifier_token6] = ACTIONS(1871), - [aux_sym_cmd_identifier_token7] = ACTIONS(1871), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1871), - [aux_sym_cmd_identifier_token11] = ACTIONS(1871), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1871), - [aux_sym_cmd_identifier_token17] = ACTIONS(1871), - [aux_sym_cmd_identifier_token18] = ACTIONS(1871), - [aux_sym_cmd_identifier_token19] = ACTIONS(1871), - [aux_sym_cmd_identifier_token20] = ACTIONS(1871), - [aux_sym_cmd_identifier_token21] = ACTIONS(1871), - [aux_sym_cmd_identifier_token22] = ACTIONS(1871), - [aux_sym_cmd_identifier_token23] = ACTIONS(1871), - [aux_sym_cmd_identifier_token24] = ACTIONS(1871), - [aux_sym_cmd_identifier_token25] = ACTIONS(1871), - [aux_sym_cmd_identifier_token26] = ACTIONS(1871), - [aux_sym_cmd_identifier_token27] = ACTIONS(1871), - [aux_sym_cmd_identifier_token28] = ACTIONS(1871), - [aux_sym_cmd_identifier_token29] = ACTIONS(1871), - [aux_sym_cmd_identifier_token30] = ACTIONS(1871), - [aux_sym_cmd_identifier_token31] = ACTIONS(1871), - [aux_sym_cmd_identifier_token32] = ACTIONS(1871), - [aux_sym_cmd_identifier_token33] = ACTIONS(1871), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1871), - [aux_sym_cmd_identifier_token36] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1871), - [anon_sym_false] = ACTIONS(1871), - [anon_sym_null] = ACTIONS(1871), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1871), - [aux_sym_cmd_identifier_token40] = ACTIONS(1871), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_list] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1871), - [anon_sym_DOT2] = ACTIONS(1871), - [aux_sym__val_number_decimal_token3] = ACTIONS(1871), - [aux_sym__val_number_token1] = ACTIONS(1871), - [aux_sym__val_number_token2] = ACTIONS(1871), - [aux_sym__val_number_token3] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [sym__str_single_quotes] = ACTIONS(1871), - [sym__str_back_ticks] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), - [sym__entry_separator] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__multiple_types_repeat1] = STATE(527), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_alias] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_DASHenv] = ACTIONS(2319), + [anon_sym_mut] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [aux_sym_cmd_identifier_token1] = ACTIONS(2319), + [aux_sym_cmd_identifier_token2] = ACTIONS(2319), + [aux_sym_cmd_identifier_token3] = ACTIONS(2319), + [aux_sym_cmd_identifier_token4] = ACTIONS(2319), + [aux_sym_cmd_identifier_token5] = ACTIONS(2319), + [aux_sym_cmd_identifier_token6] = ACTIONS(2319), + [aux_sym_cmd_identifier_token7] = ACTIONS(2319), + [aux_sym_cmd_identifier_token8] = ACTIONS(2319), + [aux_sym_cmd_identifier_token9] = ACTIONS(2319), + [aux_sym_cmd_identifier_token10] = ACTIONS(2319), + [aux_sym_cmd_identifier_token11] = ACTIONS(2319), + [aux_sym_cmd_identifier_token12] = ACTIONS(2319), + [aux_sym_cmd_identifier_token13] = ACTIONS(2319), + [aux_sym_cmd_identifier_token14] = ACTIONS(2319), + [aux_sym_cmd_identifier_token15] = ACTIONS(2319), + [aux_sym_cmd_identifier_token16] = ACTIONS(2319), + [aux_sym_cmd_identifier_token17] = ACTIONS(2319), + [aux_sym_cmd_identifier_token18] = ACTIONS(2319), + [aux_sym_cmd_identifier_token19] = ACTIONS(2319), + [aux_sym_cmd_identifier_token20] = ACTIONS(2319), + [aux_sym_cmd_identifier_token21] = ACTIONS(2319), + [aux_sym_cmd_identifier_token22] = ACTIONS(2319), + [aux_sym_cmd_identifier_token23] = ACTIONS(2319), + [aux_sym_cmd_identifier_token24] = ACTIONS(2319), + [aux_sym_cmd_identifier_token25] = ACTIONS(2319), + [aux_sym_cmd_identifier_token26] = ACTIONS(2319), + [aux_sym_cmd_identifier_token27] = ACTIONS(2319), + [aux_sym_cmd_identifier_token28] = ACTIONS(2319), + [aux_sym_cmd_identifier_token29] = ACTIONS(2319), + [aux_sym_cmd_identifier_token30] = ACTIONS(2319), + [aux_sym_cmd_identifier_token31] = ACTIONS(2319), + [aux_sym_cmd_identifier_token32] = ACTIONS(2319), + [aux_sym_cmd_identifier_token33] = ACTIONS(2319), + [aux_sym_cmd_identifier_token34] = ACTIONS(2319), + [aux_sym_cmd_identifier_token35] = ACTIONS(2319), + [aux_sym_cmd_identifier_token36] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2319), + [anon_sym_false] = ACTIONS(2319), + [anon_sym_null] = ACTIONS(2319), + [aux_sym_cmd_identifier_token38] = ACTIONS(2319), + [aux_sym_cmd_identifier_token39] = ACTIONS(2319), + [aux_sym_cmd_identifier_token40] = ACTIONS(2319), + [anon_sym_def] = ACTIONS(2319), + [anon_sym_export_DASHenv] = ACTIONS(2319), + [anon_sym_extern] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_error] = ACTIONS(2319), + [anon_sym_list] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_in] = ACTIONS(2319), + [anon_sym_loop] = ACTIONS(2319), + [anon_sym_make] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_else] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_catch] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_source] = ACTIONS(2319), + [anon_sym_source_DASHenv] = ACTIONS(2319), + [anon_sym_register] = ACTIONS(2319), + [anon_sym_hide] = ACTIONS(2319), + [anon_sym_hide_DASHenv] = ACTIONS(2319), + [anon_sym_overlay] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2319), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2319), + [aux_sym__val_number_decimal_token1] = ACTIONS(2319), + [aux_sym__val_number_decimal_token2] = ACTIONS(2319), + [aux_sym__val_number_decimal_token3] = ACTIONS(2319), + [aux_sym__val_number_decimal_token4] = ACTIONS(2319), + [aux_sym__val_number_token1] = ACTIONS(2319), + [aux_sym__val_number_token2] = ACTIONS(2319), + [aux_sym__val_number_token3] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym__str_single_quotes] = ACTIONS(2319), + [sym__str_back_ticks] = ACTIONS(2319), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2319), + [sym__entry_separator] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_POUND] = ACTIONS(3), }, [528] = { [sym_comment] = STATE(528), + [aux_sym__multiple_types_repeat1] = STATE(527), + [anon_sym_export] = ACTIONS(2275), + [anon_sym_alias] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_let_DASHenv] = ACTIONS(2275), + [anon_sym_mut] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [aux_sym_cmd_identifier_token1] = ACTIONS(2275), + [aux_sym_cmd_identifier_token2] = ACTIONS(2275), + [aux_sym_cmd_identifier_token3] = ACTIONS(2275), + [aux_sym_cmd_identifier_token4] = ACTIONS(2275), + [aux_sym_cmd_identifier_token5] = ACTIONS(2275), + [aux_sym_cmd_identifier_token6] = ACTIONS(2275), + [aux_sym_cmd_identifier_token7] = ACTIONS(2275), + [aux_sym_cmd_identifier_token8] = ACTIONS(2275), + [aux_sym_cmd_identifier_token9] = ACTIONS(2275), + [aux_sym_cmd_identifier_token10] = ACTIONS(2275), + [aux_sym_cmd_identifier_token11] = ACTIONS(2275), + [aux_sym_cmd_identifier_token12] = ACTIONS(2275), + [aux_sym_cmd_identifier_token13] = ACTIONS(2275), + [aux_sym_cmd_identifier_token14] = ACTIONS(2275), + [aux_sym_cmd_identifier_token15] = ACTIONS(2275), + [aux_sym_cmd_identifier_token16] = ACTIONS(2275), + [aux_sym_cmd_identifier_token17] = ACTIONS(2275), + [aux_sym_cmd_identifier_token18] = ACTIONS(2275), + [aux_sym_cmd_identifier_token19] = ACTIONS(2275), + [aux_sym_cmd_identifier_token20] = ACTIONS(2275), + [aux_sym_cmd_identifier_token21] = ACTIONS(2275), + [aux_sym_cmd_identifier_token22] = ACTIONS(2275), + [aux_sym_cmd_identifier_token23] = ACTIONS(2275), + [aux_sym_cmd_identifier_token24] = ACTIONS(2275), + [aux_sym_cmd_identifier_token25] = ACTIONS(2275), + [aux_sym_cmd_identifier_token26] = ACTIONS(2275), + [aux_sym_cmd_identifier_token27] = ACTIONS(2275), + [aux_sym_cmd_identifier_token28] = ACTIONS(2275), + [aux_sym_cmd_identifier_token29] = ACTIONS(2275), + [aux_sym_cmd_identifier_token30] = ACTIONS(2275), + [aux_sym_cmd_identifier_token31] = ACTIONS(2275), + [aux_sym_cmd_identifier_token32] = ACTIONS(2275), + [aux_sym_cmd_identifier_token33] = ACTIONS(2275), + [aux_sym_cmd_identifier_token34] = ACTIONS(2275), + [aux_sym_cmd_identifier_token35] = ACTIONS(2275), + [aux_sym_cmd_identifier_token36] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [anon_sym_null] = ACTIONS(2275), + [aux_sym_cmd_identifier_token38] = ACTIONS(2275), + [aux_sym_cmd_identifier_token39] = ACTIONS(2275), + [aux_sym_cmd_identifier_token40] = ACTIONS(2275), + [anon_sym_def] = ACTIONS(2275), + [anon_sym_export_DASHenv] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_module] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2275), + [anon_sym_error] = ACTIONS(2275), + [anon_sym_list] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_make] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_do] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_else] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2324), + [anon_sym_try] = ACTIONS(2275), + [anon_sym_catch] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_source] = ACTIONS(2275), + [anon_sym_source_DASHenv] = ACTIONS(2275), + [anon_sym_register] = ACTIONS(2275), + [anon_sym_hide] = ACTIONS(2275), + [anon_sym_hide_DASHenv] = ACTIONS(2275), + [anon_sym_overlay] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2275), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), + [aux_sym__val_number_decimal_token1] = ACTIONS(2275), + [aux_sym__val_number_decimal_token2] = ACTIONS(2275), + [aux_sym__val_number_decimal_token3] = ACTIONS(2275), + [aux_sym__val_number_decimal_token4] = ACTIONS(2275), + [aux_sym__val_number_token1] = ACTIONS(2275), + [aux_sym__val_number_token2] = ACTIONS(2275), + [aux_sym__val_number_token3] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2275), + [sym__str_single_quotes] = ACTIONS(2275), + [sym__str_back_ticks] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), + [sym__entry_separator] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), + }, + [529] = { + [sym_comment] = STATE(529), + [anon_sym_export] = ACTIONS(2326), + [anon_sym_alias] = ACTIONS(2326), + [anon_sym_let] = ACTIONS(2326), + [anon_sym_let_DASHenv] = ACTIONS(2326), + [anon_sym_mut] = ACTIONS(2326), + [anon_sym_const] = ACTIONS(2326), + [aux_sym_cmd_identifier_token1] = ACTIONS(2326), + [aux_sym_cmd_identifier_token2] = ACTIONS(2326), + [aux_sym_cmd_identifier_token3] = ACTIONS(2326), + [aux_sym_cmd_identifier_token4] = ACTIONS(2326), + [aux_sym_cmd_identifier_token5] = ACTIONS(2326), + [aux_sym_cmd_identifier_token6] = ACTIONS(2326), + [aux_sym_cmd_identifier_token7] = ACTIONS(2326), + [aux_sym_cmd_identifier_token8] = ACTIONS(2326), + [aux_sym_cmd_identifier_token9] = ACTIONS(2326), + [aux_sym_cmd_identifier_token10] = ACTIONS(2326), + [aux_sym_cmd_identifier_token11] = ACTIONS(2326), + [aux_sym_cmd_identifier_token12] = ACTIONS(2326), + [aux_sym_cmd_identifier_token13] = ACTIONS(2326), + [aux_sym_cmd_identifier_token14] = ACTIONS(2326), + [aux_sym_cmd_identifier_token15] = ACTIONS(2326), + [aux_sym_cmd_identifier_token16] = ACTIONS(2326), + [aux_sym_cmd_identifier_token17] = ACTIONS(2326), + [aux_sym_cmd_identifier_token18] = ACTIONS(2326), + [aux_sym_cmd_identifier_token19] = ACTIONS(2326), + [aux_sym_cmd_identifier_token20] = ACTIONS(2326), + [aux_sym_cmd_identifier_token21] = ACTIONS(2326), + [aux_sym_cmd_identifier_token22] = ACTIONS(2326), + [aux_sym_cmd_identifier_token23] = ACTIONS(2326), + [aux_sym_cmd_identifier_token24] = ACTIONS(2326), + [aux_sym_cmd_identifier_token25] = ACTIONS(2326), + [aux_sym_cmd_identifier_token26] = ACTIONS(2326), + [aux_sym_cmd_identifier_token27] = ACTIONS(2326), + [aux_sym_cmd_identifier_token28] = ACTIONS(2326), + [aux_sym_cmd_identifier_token29] = ACTIONS(2326), + [aux_sym_cmd_identifier_token30] = ACTIONS(2326), + [aux_sym_cmd_identifier_token31] = ACTIONS(2326), + [aux_sym_cmd_identifier_token32] = ACTIONS(2326), + [aux_sym_cmd_identifier_token33] = ACTIONS(2326), + [aux_sym_cmd_identifier_token34] = ACTIONS(2326), + [aux_sym_cmd_identifier_token35] = ACTIONS(2326), + [aux_sym_cmd_identifier_token36] = ACTIONS(2326), + [anon_sym_true] = ACTIONS(2326), + [anon_sym_false] = ACTIONS(2326), + [anon_sym_null] = ACTIONS(2326), + [aux_sym_cmd_identifier_token38] = ACTIONS(2326), + [aux_sym_cmd_identifier_token39] = ACTIONS(2326), + [aux_sym_cmd_identifier_token40] = ACTIONS(2326), + [anon_sym_def] = ACTIONS(2326), + [anon_sym_export_DASHenv] = ACTIONS(2326), + [anon_sym_extern] = ACTIONS(2326), + [anon_sym_module] = ACTIONS(2326), + [anon_sym_use] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_DOLLAR] = ACTIONS(2326), + [anon_sym_error] = ACTIONS(2326), + [anon_sym_list] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2326), + [anon_sym_continue] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_in] = ACTIONS(2326), + [anon_sym_loop] = ACTIONS(2326), + [anon_sym_make] = ACTIONS(2326), + [anon_sym_while] = ACTIONS(2326), + [anon_sym_do] = ACTIONS(2326), + [anon_sym_if] = ACTIONS(2326), + [anon_sym_else] = ACTIONS(2326), + [anon_sym_match] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_try] = ACTIONS(2326), + [anon_sym_catch] = ACTIONS(2326), + [anon_sym_return] = ACTIONS(2326), + [anon_sym_source] = ACTIONS(2326), + [anon_sym_source_DASHenv] = ACTIONS(2326), + [anon_sym_register] = ACTIONS(2326), + [anon_sym_hide] = ACTIONS(2326), + [anon_sym_hide_DASHenv] = ACTIONS(2326), + [anon_sym_overlay] = ACTIONS(2326), + [anon_sym_new] = ACTIONS(2326), + [anon_sym_as] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2326), + [aux_sym__val_number_decimal_token1] = ACTIONS(2326), + [aux_sym__val_number_decimal_token2] = ACTIONS(2326), + [aux_sym__val_number_decimal_token3] = ACTIONS(2326), + [aux_sym__val_number_decimal_token4] = ACTIONS(2326), + [aux_sym__val_number_token1] = ACTIONS(2326), + [aux_sym__val_number_token2] = ACTIONS(2326), + [aux_sym__val_number_token3] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2326), + [sym__str_single_quotes] = ACTIONS(2326), + [sym__str_back_ticks] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2326), + [sym__entry_separator] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(3), + }, + [530] = { + [sym_comment] = STATE(530), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(2249), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), + }, + [531] = { + [sym_comment] = STATE(531), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), + }, + [532] = { + [sym_comment] = STATE(532), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_list] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_new] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + }, + [533] = { + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_alias] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_let_DASHenv] = ACTIONS(2332), + [anon_sym_mut] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [aux_sym_cmd_identifier_token1] = ACTIONS(2332), + [aux_sym_cmd_identifier_token2] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [aux_sym_cmd_identifier_token6] = ACTIONS(2332), + [aux_sym_cmd_identifier_token7] = ACTIONS(2332), + [aux_sym_cmd_identifier_token8] = ACTIONS(2332), + [aux_sym_cmd_identifier_token9] = ACTIONS(2332), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2332), + [aux_sym_cmd_identifier_token13] = ACTIONS(2332), + [aux_sym_cmd_identifier_token14] = ACTIONS(2332), + [aux_sym_cmd_identifier_token15] = ACTIONS(2332), + [aux_sym_cmd_identifier_token16] = ACTIONS(2332), + [aux_sym_cmd_identifier_token17] = ACTIONS(2332), + [aux_sym_cmd_identifier_token18] = ACTIONS(2332), + [aux_sym_cmd_identifier_token19] = ACTIONS(2332), + [aux_sym_cmd_identifier_token20] = ACTIONS(2332), + [aux_sym_cmd_identifier_token21] = ACTIONS(2332), + [aux_sym_cmd_identifier_token22] = ACTIONS(2332), + [aux_sym_cmd_identifier_token23] = ACTIONS(2332), + [aux_sym_cmd_identifier_token24] = ACTIONS(2332), + [aux_sym_cmd_identifier_token25] = ACTIONS(2332), + [aux_sym_cmd_identifier_token26] = ACTIONS(2332), + [aux_sym_cmd_identifier_token27] = ACTIONS(2332), + [aux_sym_cmd_identifier_token28] = ACTIONS(2332), + [aux_sym_cmd_identifier_token29] = ACTIONS(2332), + [aux_sym_cmd_identifier_token30] = ACTIONS(2332), + [aux_sym_cmd_identifier_token31] = ACTIONS(2332), + [aux_sym_cmd_identifier_token32] = ACTIONS(2332), + [aux_sym_cmd_identifier_token33] = ACTIONS(2332), + [aux_sym_cmd_identifier_token34] = ACTIONS(2332), + [aux_sym_cmd_identifier_token35] = ACTIONS(2332), + [aux_sym_cmd_identifier_token36] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_null] = ACTIONS(2332), + [aux_sym_cmd_identifier_token38] = ACTIONS(2332), + [aux_sym_cmd_identifier_token39] = ACTIONS(2332), + [aux_sym_cmd_identifier_token40] = ACTIONS(2332), + [anon_sym_def] = ACTIONS(2332), + [anon_sym_export_DASHenv] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2332), + [anon_sym_error] = ACTIONS(2332), + [anon_sym_list] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_make] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_source] = ACTIONS(2332), + [anon_sym_source_DASHenv] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2332), + [anon_sym_hide] = ACTIONS(2332), + [anon_sym_hide_DASHenv] = ACTIONS(2332), + [anon_sym_overlay] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2332), + [aux_sym__val_number_decimal_token2] = ACTIONS(2332), + [aux_sym__val_number_decimal_token3] = ACTIONS(2332), + [aux_sym__val_number_decimal_token4] = ACTIONS(2332), + [aux_sym__val_number_token1] = ACTIONS(2332), + [aux_sym__val_number_token2] = ACTIONS(2332), + [aux_sym__val_number_token3] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym__str_single_quotes] = ACTIONS(2332), + [sym__str_back_ticks] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [sym__entry_separator] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(3), + }, + [534] = { + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(2336), + [anon_sym_alias] = ACTIONS(2336), + [anon_sym_let] = ACTIONS(2336), + [anon_sym_let_DASHenv] = ACTIONS(2336), + [anon_sym_mut] = ACTIONS(2336), + [anon_sym_const] = ACTIONS(2336), + [aux_sym_cmd_identifier_token1] = ACTIONS(2336), + [aux_sym_cmd_identifier_token2] = ACTIONS(2336), + [aux_sym_cmd_identifier_token3] = ACTIONS(2336), + [aux_sym_cmd_identifier_token4] = ACTIONS(2336), + [aux_sym_cmd_identifier_token5] = ACTIONS(2336), + [aux_sym_cmd_identifier_token6] = ACTIONS(2336), + [aux_sym_cmd_identifier_token7] = ACTIONS(2336), + [aux_sym_cmd_identifier_token8] = ACTIONS(2336), + [aux_sym_cmd_identifier_token9] = ACTIONS(2336), + [aux_sym_cmd_identifier_token10] = ACTIONS(2336), + [aux_sym_cmd_identifier_token11] = ACTIONS(2336), + [aux_sym_cmd_identifier_token12] = ACTIONS(2336), + [aux_sym_cmd_identifier_token13] = ACTIONS(2336), + [aux_sym_cmd_identifier_token14] = ACTIONS(2336), + [aux_sym_cmd_identifier_token15] = ACTIONS(2336), + [aux_sym_cmd_identifier_token16] = ACTIONS(2336), + [aux_sym_cmd_identifier_token17] = ACTIONS(2336), + [aux_sym_cmd_identifier_token18] = ACTIONS(2336), + [aux_sym_cmd_identifier_token19] = ACTIONS(2336), + [aux_sym_cmd_identifier_token20] = ACTIONS(2336), + [aux_sym_cmd_identifier_token21] = ACTIONS(2336), + [aux_sym_cmd_identifier_token22] = ACTIONS(2336), + [aux_sym_cmd_identifier_token23] = ACTIONS(2336), + [aux_sym_cmd_identifier_token24] = ACTIONS(2336), + [aux_sym_cmd_identifier_token25] = ACTIONS(2336), + [aux_sym_cmd_identifier_token26] = ACTIONS(2336), + [aux_sym_cmd_identifier_token27] = ACTIONS(2336), + [aux_sym_cmd_identifier_token28] = ACTIONS(2336), + [aux_sym_cmd_identifier_token29] = ACTIONS(2336), + [aux_sym_cmd_identifier_token30] = ACTIONS(2336), + [aux_sym_cmd_identifier_token31] = ACTIONS(2336), + [aux_sym_cmd_identifier_token32] = ACTIONS(2336), + [aux_sym_cmd_identifier_token33] = ACTIONS(2336), + [aux_sym_cmd_identifier_token34] = ACTIONS(2336), + [aux_sym_cmd_identifier_token35] = ACTIONS(2336), + [aux_sym_cmd_identifier_token36] = ACTIONS(2336), + [anon_sym_true] = ACTIONS(2336), + [anon_sym_false] = ACTIONS(2336), + [anon_sym_null] = ACTIONS(2336), + [aux_sym_cmd_identifier_token38] = ACTIONS(2336), + [aux_sym_cmd_identifier_token39] = ACTIONS(2336), + [aux_sym_cmd_identifier_token40] = ACTIONS(2336), + [anon_sym_def] = ACTIONS(2336), + [anon_sym_export_DASHenv] = ACTIONS(2336), + [anon_sym_extern] = ACTIONS(2336), + [anon_sym_module] = ACTIONS(2336), + [anon_sym_use] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(2336), + [anon_sym_error] = ACTIONS(2336), + [anon_sym_list] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2336), + [anon_sym_continue] = ACTIONS(2336), + [anon_sym_for] = ACTIONS(2336), + [anon_sym_in] = ACTIONS(2336), + [anon_sym_loop] = ACTIONS(2336), + [anon_sym_make] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_do] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_else] = ACTIONS(2336), + [anon_sym_match] = ACTIONS(2336), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2336), + [anon_sym_catch] = ACTIONS(2336), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_source] = ACTIONS(2336), + [anon_sym_source_DASHenv] = ACTIONS(2336), + [anon_sym_register] = ACTIONS(2336), + [anon_sym_hide] = ACTIONS(2336), + [anon_sym_hide_DASHenv] = ACTIONS(2336), + [anon_sym_overlay] = ACTIONS(2336), + [anon_sym_new] = ACTIONS(2336), + [anon_sym_as] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2336), + [aux_sym__val_number_decimal_token1] = ACTIONS(2336), + [aux_sym__val_number_decimal_token2] = ACTIONS(2336), + [aux_sym__val_number_decimal_token3] = ACTIONS(2336), + [aux_sym__val_number_decimal_token4] = ACTIONS(2336), + [aux_sym__val_number_token1] = ACTIONS(2336), + [aux_sym__val_number_token2] = ACTIONS(2336), + [aux_sym__val_number_token3] = ACTIONS(2336), + [anon_sym_DQUOTE] = ACTIONS(2336), + [sym__str_single_quotes] = ACTIONS(2336), + [sym__str_back_ticks] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2336), + [sym__entry_separator] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2336), + [anon_sym_POUND] = ACTIONS(3), + }, + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_alias] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_let_DASHenv] = ACTIONS(2340), + [anon_sym_mut] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [aux_sym_cmd_identifier_token1] = ACTIONS(2340), + [aux_sym_cmd_identifier_token2] = ACTIONS(2340), + [aux_sym_cmd_identifier_token3] = ACTIONS(2340), + [aux_sym_cmd_identifier_token4] = ACTIONS(2340), + [aux_sym_cmd_identifier_token5] = ACTIONS(2340), + [aux_sym_cmd_identifier_token6] = ACTIONS(2340), + [aux_sym_cmd_identifier_token7] = ACTIONS(2340), + [aux_sym_cmd_identifier_token8] = ACTIONS(2340), + [aux_sym_cmd_identifier_token9] = ACTIONS(2340), + [aux_sym_cmd_identifier_token10] = ACTIONS(2340), + [aux_sym_cmd_identifier_token11] = ACTIONS(2340), + [aux_sym_cmd_identifier_token12] = ACTIONS(2340), + [aux_sym_cmd_identifier_token13] = ACTIONS(2340), + [aux_sym_cmd_identifier_token14] = ACTIONS(2340), + [aux_sym_cmd_identifier_token15] = ACTIONS(2340), + [aux_sym_cmd_identifier_token16] = ACTIONS(2340), + [aux_sym_cmd_identifier_token17] = ACTIONS(2340), + [aux_sym_cmd_identifier_token18] = ACTIONS(2340), + [aux_sym_cmd_identifier_token19] = ACTIONS(2340), + [aux_sym_cmd_identifier_token20] = ACTIONS(2340), + [aux_sym_cmd_identifier_token21] = ACTIONS(2340), + [aux_sym_cmd_identifier_token22] = ACTIONS(2340), + [aux_sym_cmd_identifier_token23] = ACTIONS(2340), + [aux_sym_cmd_identifier_token24] = ACTIONS(2340), + [aux_sym_cmd_identifier_token25] = ACTIONS(2340), + [aux_sym_cmd_identifier_token26] = ACTIONS(2340), + [aux_sym_cmd_identifier_token27] = ACTIONS(2340), + [aux_sym_cmd_identifier_token28] = ACTIONS(2340), + [aux_sym_cmd_identifier_token29] = ACTIONS(2340), + [aux_sym_cmd_identifier_token30] = ACTIONS(2340), + [aux_sym_cmd_identifier_token31] = ACTIONS(2340), + [aux_sym_cmd_identifier_token32] = ACTIONS(2340), + [aux_sym_cmd_identifier_token33] = ACTIONS(2340), + [aux_sym_cmd_identifier_token34] = ACTIONS(2340), + [aux_sym_cmd_identifier_token35] = ACTIONS(2340), + [aux_sym_cmd_identifier_token36] = ACTIONS(2340), + [anon_sym_true] = ACTIONS(2340), + [anon_sym_false] = ACTIONS(2340), + [anon_sym_null] = ACTIONS(2340), + [aux_sym_cmd_identifier_token38] = ACTIONS(2340), + [aux_sym_cmd_identifier_token39] = ACTIONS(2340), + [aux_sym_cmd_identifier_token40] = ACTIONS(2340), + [anon_sym_def] = ACTIONS(2340), + [anon_sym_export_DASHenv] = ACTIONS(2340), + [anon_sym_extern] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_use] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_DOLLAR] = ACTIONS(2340), + [anon_sym_error] = ACTIONS(2340), + [anon_sym_list] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2340), + [anon_sym_loop] = ACTIONS(2340), + [anon_sym_make] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_match] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_catch] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_source] = ACTIONS(2340), + [anon_sym_source_DASHenv] = ACTIONS(2340), + [anon_sym_register] = ACTIONS(2340), + [anon_sym_hide] = ACTIONS(2340), + [anon_sym_hide_DASHenv] = ACTIONS(2340), + [anon_sym_overlay] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2340), + [aux_sym__val_number_decimal_token1] = ACTIONS(2340), + [aux_sym__val_number_decimal_token2] = ACTIONS(2340), + [aux_sym__val_number_decimal_token3] = ACTIONS(2340), + [aux_sym__val_number_decimal_token4] = ACTIONS(2340), + [aux_sym__val_number_token1] = ACTIONS(2340), + [aux_sym__val_number_token2] = ACTIONS(2340), + [aux_sym__val_number_token3] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2340), + [sym__str_single_quotes] = ACTIONS(2340), + [sym__str_back_ticks] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2340), + [sym__entry_separator] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(3), + }, + [536] = { + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_alias] = ACTIONS(2344), + [anon_sym_let] = ACTIONS(2344), + [anon_sym_let_DASHenv] = ACTIONS(2344), + [anon_sym_mut] = ACTIONS(2344), + [anon_sym_const] = ACTIONS(2344), + [aux_sym_cmd_identifier_token1] = ACTIONS(2344), + [aux_sym_cmd_identifier_token2] = ACTIONS(2344), + [aux_sym_cmd_identifier_token3] = ACTIONS(2344), + [aux_sym_cmd_identifier_token4] = ACTIONS(2344), + [aux_sym_cmd_identifier_token5] = ACTIONS(2344), + [aux_sym_cmd_identifier_token6] = ACTIONS(2344), + [aux_sym_cmd_identifier_token7] = ACTIONS(2344), + [aux_sym_cmd_identifier_token8] = ACTIONS(2344), + [aux_sym_cmd_identifier_token9] = ACTIONS(2344), + [aux_sym_cmd_identifier_token10] = ACTIONS(2344), + [aux_sym_cmd_identifier_token11] = ACTIONS(2344), + [aux_sym_cmd_identifier_token12] = ACTIONS(2344), + [aux_sym_cmd_identifier_token13] = ACTIONS(2344), + [aux_sym_cmd_identifier_token14] = ACTIONS(2344), + [aux_sym_cmd_identifier_token15] = ACTIONS(2344), + [aux_sym_cmd_identifier_token16] = ACTIONS(2344), + [aux_sym_cmd_identifier_token17] = ACTIONS(2344), + [aux_sym_cmd_identifier_token18] = ACTIONS(2344), + [aux_sym_cmd_identifier_token19] = ACTIONS(2344), + [aux_sym_cmd_identifier_token20] = ACTIONS(2344), + [aux_sym_cmd_identifier_token21] = ACTIONS(2344), + [aux_sym_cmd_identifier_token22] = ACTIONS(2344), + [aux_sym_cmd_identifier_token23] = ACTIONS(2344), + [aux_sym_cmd_identifier_token24] = ACTIONS(2344), + [aux_sym_cmd_identifier_token25] = ACTIONS(2344), + [aux_sym_cmd_identifier_token26] = ACTIONS(2344), + [aux_sym_cmd_identifier_token27] = ACTIONS(2344), + [aux_sym_cmd_identifier_token28] = ACTIONS(2344), + [aux_sym_cmd_identifier_token29] = ACTIONS(2344), + [aux_sym_cmd_identifier_token30] = ACTIONS(2344), + [aux_sym_cmd_identifier_token31] = ACTIONS(2344), + [aux_sym_cmd_identifier_token32] = ACTIONS(2344), + [aux_sym_cmd_identifier_token33] = ACTIONS(2344), + [aux_sym_cmd_identifier_token34] = ACTIONS(2344), + [aux_sym_cmd_identifier_token35] = ACTIONS(2344), + [aux_sym_cmd_identifier_token36] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2344), + [anon_sym_false] = ACTIONS(2344), + [anon_sym_null] = ACTIONS(2344), + [aux_sym_cmd_identifier_token38] = ACTIONS(2344), + [aux_sym_cmd_identifier_token39] = ACTIONS(2344), + [aux_sym_cmd_identifier_token40] = ACTIONS(2344), + [anon_sym_def] = ACTIONS(2344), + [anon_sym_export_DASHenv] = ACTIONS(2344), + [anon_sym_extern] = ACTIONS(2344), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_use] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_DOLLAR] = ACTIONS(2344), + [anon_sym_error] = ACTIONS(2344), + [anon_sym_list] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_in] = ACTIONS(2344), + [anon_sym_loop] = ACTIONS(2344), + [anon_sym_make] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_do] = ACTIONS(2344), + [anon_sym_if] = ACTIONS(2344), + [anon_sym_else] = ACTIONS(2344), + [anon_sym_match] = ACTIONS(2344), + [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2344), + [anon_sym_catch] = ACTIONS(2344), + [anon_sym_return] = ACTIONS(2344), + [anon_sym_source] = ACTIONS(2344), + [anon_sym_source_DASHenv] = ACTIONS(2344), + [anon_sym_register] = ACTIONS(2344), + [anon_sym_hide] = ACTIONS(2344), + [anon_sym_hide_DASHenv] = ACTIONS(2344), + [anon_sym_overlay] = ACTIONS(2344), + [anon_sym_new] = ACTIONS(2344), + [anon_sym_as] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2344), + [aux_sym__val_number_decimal_token1] = ACTIONS(2344), + [aux_sym__val_number_decimal_token2] = ACTIONS(2344), + [aux_sym__val_number_decimal_token3] = ACTIONS(2344), + [aux_sym__val_number_decimal_token4] = ACTIONS(2344), + [aux_sym__val_number_token1] = ACTIONS(2344), + [aux_sym__val_number_token2] = ACTIONS(2344), + [aux_sym__val_number_token3] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2344), + [sym__str_single_quotes] = ACTIONS(2344), + [sym__str_back_ticks] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2344), + [sym__entry_separator] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_POUND] = ACTIONS(3), + }, + [537] = { + [sym_comment] = STATE(537), [anon_sym_export] = ACTIONS(1879), [anon_sym_alias] = ACTIONS(1879), [anon_sym_let] = ACTIONS(1879), @@ -131685,13 +137836,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1879), [anon_sym_new] = ACTIONS(1879), [anon_sym_as] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), [aux_sym__val_number_decimal_token1] = ACTIONS(1879), [aux_sym__val_number_decimal_token2] = ACTIONS(1879), - [anon_sym_DOT2] = ACTIONS(1879), [aux_sym__val_number_decimal_token3] = ACTIONS(1879), + [aux_sym__val_number_decimal_token4] = ACTIONS(1879), [aux_sym__val_number_token1] = ACTIONS(1879), [aux_sym__val_number_token2] = ACTIONS(1879), [aux_sym__val_number_token3] = ACTIONS(1879), @@ -131699,7200 +137849,7890 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1879), [sym__str_back_ticks] = ACTIONS(1879), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), - [sym__entry_separator] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(121), - }, - [529] = { - [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(2281), - [anon_sym_alias] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_let_DASHenv] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [aux_sym_cmd_identifier_token1] = ACTIONS(2281), - [aux_sym_cmd_identifier_token2] = ACTIONS(2281), - [aux_sym_cmd_identifier_token3] = ACTIONS(2281), - [aux_sym_cmd_identifier_token4] = ACTIONS(2281), - [aux_sym_cmd_identifier_token5] = ACTIONS(2281), - [aux_sym_cmd_identifier_token6] = ACTIONS(2281), - [aux_sym_cmd_identifier_token7] = ACTIONS(2281), - [aux_sym_cmd_identifier_token8] = ACTIONS(2281), - [aux_sym_cmd_identifier_token9] = ACTIONS(2281), - [aux_sym_cmd_identifier_token10] = ACTIONS(2281), - [aux_sym_cmd_identifier_token11] = ACTIONS(2281), - [aux_sym_cmd_identifier_token12] = ACTIONS(2281), - [aux_sym_cmd_identifier_token13] = ACTIONS(2281), - [aux_sym_cmd_identifier_token14] = ACTIONS(2281), - [aux_sym_cmd_identifier_token15] = ACTIONS(2281), - [aux_sym_cmd_identifier_token16] = ACTIONS(2281), - [aux_sym_cmd_identifier_token17] = ACTIONS(2281), - [aux_sym_cmd_identifier_token18] = ACTIONS(2281), - [aux_sym_cmd_identifier_token19] = ACTIONS(2281), - [aux_sym_cmd_identifier_token20] = ACTIONS(2281), - [aux_sym_cmd_identifier_token21] = ACTIONS(2281), - [aux_sym_cmd_identifier_token22] = ACTIONS(2281), - [aux_sym_cmd_identifier_token23] = ACTIONS(2281), - [aux_sym_cmd_identifier_token24] = ACTIONS(2281), - [aux_sym_cmd_identifier_token25] = ACTIONS(2281), - [aux_sym_cmd_identifier_token26] = ACTIONS(2281), - [aux_sym_cmd_identifier_token27] = ACTIONS(2281), - [aux_sym_cmd_identifier_token28] = ACTIONS(2281), - [aux_sym_cmd_identifier_token29] = ACTIONS(2281), - [aux_sym_cmd_identifier_token30] = ACTIONS(2281), - [aux_sym_cmd_identifier_token31] = ACTIONS(2281), - [aux_sym_cmd_identifier_token32] = ACTIONS(2281), - [aux_sym_cmd_identifier_token33] = ACTIONS(2281), - [aux_sym_cmd_identifier_token34] = ACTIONS(2281), - [aux_sym_cmd_identifier_token35] = ACTIONS(2281), - [aux_sym_cmd_identifier_token36] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [aux_sym_cmd_identifier_token38] = ACTIONS(2281), - [aux_sym_cmd_identifier_token39] = ACTIONS(2281), - [aux_sym_cmd_identifier_token40] = ACTIONS(2281), - [anon_sym_def] = ACTIONS(2281), - [anon_sym_export_DASHenv] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(2281), - [anon_sym_module] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_error] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_in] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_make] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_catch] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_source] = ACTIONS(2281), - [anon_sym_source_DASHenv] = ACTIONS(2281), - [anon_sym_register] = ACTIONS(2281), - [anon_sym_hide] = ACTIONS(2281), - [anon_sym_hide_DASHenv] = ACTIONS(2281), - [anon_sym_overlay] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), - [aux_sym__val_number_decimal_token1] = ACTIONS(2281), - [aux_sym__val_number_decimal_token2] = ACTIONS(2281), - [anon_sym_DOT2] = ACTIONS(2281), - [aux_sym__val_number_decimal_token3] = ACTIONS(2281), - [aux_sym__val_number_token1] = ACTIONS(2281), - [aux_sym__val_number_token2] = ACTIONS(2281), - [aux_sym__val_number_token3] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2281), - [sym__str_single_quotes] = ACTIONS(2281), - [sym__str_back_ticks] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), - [sym__entry_separator] = ACTIONS(2283), - [anon_sym_POUND] = ACTIONS(121), - }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(2285), - [anon_sym_alias] = ACTIONS(2285), - [anon_sym_let] = ACTIONS(2285), - [anon_sym_let_DASHenv] = ACTIONS(2285), - [anon_sym_mut] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [aux_sym_cmd_identifier_token1] = ACTIONS(2285), - [aux_sym_cmd_identifier_token2] = ACTIONS(2285), - [aux_sym_cmd_identifier_token3] = ACTIONS(2285), - [aux_sym_cmd_identifier_token4] = ACTIONS(2285), - [aux_sym_cmd_identifier_token5] = ACTIONS(2285), - [aux_sym_cmd_identifier_token6] = ACTIONS(2285), - [aux_sym_cmd_identifier_token7] = ACTIONS(2285), - [aux_sym_cmd_identifier_token8] = ACTIONS(2285), - [aux_sym_cmd_identifier_token9] = ACTIONS(2285), - [aux_sym_cmd_identifier_token10] = ACTIONS(2285), - [aux_sym_cmd_identifier_token11] = ACTIONS(2285), - [aux_sym_cmd_identifier_token12] = ACTIONS(2285), - [aux_sym_cmd_identifier_token13] = ACTIONS(2285), - [aux_sym_cmd_identifier_token14] = ACTIONS(2285), - [aux_sym_cmd_identifier_token15] = ACTIONS(2285), - [aux_sym_cmd_identifier_token16] = ACTIONS(2285), - [aux_sym_cmd_identifier_token17] = ACTIONS(2285), - [aux_sym_cmd_identifier_token18] = ACTIONS(2285), - [aux_sym_cmd_identifier_token19] = ACTIONS(2285), - [aux_sym_cmd_identifier_token20] = ACTIONS(2285), - [aux_sym_cmd_identifier_token21] = ACTIONS(2285), - [aux_sym_cmd_identifier_token22] = ACTIONS(2285), - [aux_sym_cmd_identifier_token23] = ACTIONS(2285), - [aux_sym_cmd_identifier_token24] = ACTIONS(2285), - [aux_sym_cmd_identifier_token25] = ACTIONS(2285), - [aux_sym_cmd_identifier_token26] = ACTIONS(2285), - [aux_sym_cmd_identifier_token27] = ACTIONS(2285), - [aux_sym_cmd_identifier_token28] = ACTIONS(2285), - [aux_sym_cmd_identifier_token29] = ACTIONS(2285), - [aux_sym_cmd_identifier_token30] = ACTIONS(2285), - [aux_sym_cmd_identifier_token31] = ACTIONS(2285), - [aux_sym_cmd_identifier_token32] = ACTIONS(2285), - [aux_sym_cmd_identifier_token33] = ACTIONS(2285), - [aux_sym_cmd_identifier_token34] = ACTIONS(2285), - [aux_sym_cmd_identifier_token35] = ACTIONS(2285), - [aux_sym_cmd_identifier_token36] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2285), - [anon_sym_false] = ACTIONS(2285), - [anon_sym_null] = ACTIONS(2285), - [aux_sym_cmd_identifier_token38] = ACTIONS(2285), - [aux_sym_cmd_identifier_token39] = ACTIONS(2285), - [aux_sym_cmd_identifier_token40] = ACTIONS(2285), - [anon_sym_def] = ACTIONS(2285), - [anon_sym_export_DASHenv] = ACTIONS(2285), - [anon_sym_extern] = ACTIONS(2285), - [anon_sym_module] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2285), - [anon_sym_error] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_in] = ACTIONS(2285), - [anon_sym_loop] = ACTIONS(2285), - [anon_sym_make] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_do] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_else] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_catch] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_source] = ACTIONS(2285), - [anon_sym_source_DASHenv] = ACTIONS(2285), - [anon_sym_register] = ACTIONS(2285), - [anon_sym_hide] = ACTIONS(2285), - [anon_sym_hide_DASHenv] = ACTIONS(2285), - [anon_sym_overlay] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_as] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2285), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2285), - [aux_sym__val_number_decimal_token1] = ACTIONS(2285), - [aux_sym__val_number_decimal_token2] = ACTIONS(2285), - [anon_sym_DOT2] = ACTIONS(2285), - [aux_sym__val_number_decimal_token3] = ACTIONS(2285), - [aux_sym__val_number_token1] = ACTIONS(2285), - [aux_sym__val_number_token2] = ACTIONS(2285), - [aux_sym__val_number_token3] = ACTIONS(2285), - [anon_sym_DQUOTE] = ACTIONS(2285), - [sym__str_single_quotes] = ACTIONS(2285), - [sym__str_back_ticks] = ACTIONS(2285), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2285), - [sym__entry_separator] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(121), - }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(2289), - [anon_sym_alias] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_let_DASHenv] = ACTIONS(2289), - [anon_sym_mut] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [aux_sym_cmd_identifier_token1] = ACTIONS(2289), - [aux_sym_cmd_identifier_token2] = ACTIONS(2289), - [aux_sym_cmd_identifier_token3] = ACTIONS(2289), - [aux_sym_cmd_identifier_token4] = ACTIONS(2289), - [aux_sym_cmd_identifier_token5] = ACTIONS(2289), - [aux_sym_cmd_identifier_token6] = ACTIONS(2289), - [aux_sym_cmd_identifier_token7] = ACTIONS(2289), - [aux_sym_cmd_identifier_token8] = ACTIONS(2289), - [aux_sym_cmd_identifier_token9] = ACTIONS(2289), - [aux_sym_cmd_identifier_token10] = ACTIONS(2289), - [aux_sym_cmd_identifier_token11] = ACTIONS(2289), - [aux_sym_cmd_identifier_token12] = ACTIONS(2289), - [aux_sym_cmd_identifier_token13] = ACTIONS(2289), - [aux_sym_cmd_identifier_token14] = ACTIONS(2289), - [aux_sym_cmd_identifier_token15] = ACTIONS(2289), - [aux_sym_cmd_identifier_token16] = ACTIONS(2289), - [aux_sym_cmd_identifier_token17] = ACTIONS(2289), - [aux_sym_cmd_identifier_token18] = ACTIONS(2289), - [aux_sym_cmd_identifier_token19] = ACTIONS(2289), - [aux_sym_cmd_identifier_token20] = ACTIONS(2289), - [aux_sym_cmd_identifier_token21] = ACTIONS(2289), - [aux_sym_cmd_identifier_token22] = ACTIONS(2289), - [aux_sym_cmd_identifier_token23] = ACTIONS(2289), - [aux_sym_cmd_identifier_token24] = ACTIONS(2289), - [aux_sym_cmd_identifier_token25] = ACTIONS(2289), - [aux_sym_cmd_identifier_token26] = ACTIONS(2289), - [aux_sym_cmd_identifier_token27] = ACTIONS(2289), - [aux_sym_cmd_identifier_token28] = ACTIONS(2289), - [aux_sym_cmd_identifier_token29] = ACTIONS(2289), - [aux_sym_cmd_identifier_token30] = ACTIONS(2289), - [aux_sym_cmd_identifier_token31] = ACTIONS(2289), - [aux_sym_cmd_identifier_token32] = ACTIONS(2289), - [aux_sym_cmd_identifier_token33] = ACTIONS(2289), - [aux_sym_cmd_identifier_token34] = ACTIONS(2289), - [aux_sym_cmd_identifier_token35] = ACTIONS(2289), - [aux_sym_cmd_identifier_token36] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [anon_sym_null] = ACTIONS(2289), - [aux_sym_cmd_identifier_token38] = ACTIONS(2289), - [aux_sym_cmd_identifier_token39] = ACTIONS(2289), - [aux_sym_cmd_identifier_token40] = ACTIONS(2289), - [anon_sym_def] = ACTIONS(2289), - [anon_sym_export_DASHenv] = ACTIONS(2289), - [anon_sym_extern] = ACTIONS(2289), - [anon_sym_module] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_DOLLAR] = ACTIONS(2289), - [anon_sym_error] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_loop] = ACTIONS(2289), - [anon_sym_make] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_catch] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_source] = ACTIONS(2289), - [anon_sym_source_DASHenv] = ACTIONS(2289), - [anon_sym_register] = ACTIONS(2289), - [anon_sym_hide] = ACTIONS(2289), - [anon_sym_hide_DASHenv] = ACTIONS(2289), - [anon_sym_overlay] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2289), - [aux_sym__val_number_decimal_token2] = ACTIONS(2289), - [anon_sym_DOT2] = ACTIONS(2289), - [aux_sym__val_number_decimal_token3] = ACTIONS(2289), - [aux_sym__val_number_token1] = ACTIONS(2289), - [aux_sym__val_number_token2] = ACTIONS(2289), - [aux_sym__val_number_token3] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym__str_single_quotes] = ACTIONS(2289), - [sym__str_back_ticks] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2289), - [sym__entry_separator] = ACTIONS(2291), - [anon_sym_POUND] = ACTIONS(121), - }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(2293), - [anon_sym_alias] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2293), - [anon_sym_let_DASHenv] = ACTIONS(2293), - [anon_sym_mut] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [aux_sym_cmd_identifier_token1] = ACTIONS(2293), - [aux_sym_cmd_identifier_token2] = ACTIONS(2293), - [aux_sym_cmd_identifier_token3] = ACTIONS(2293), - [aux_sym_cmd_identifier_token4] = ACTIONS(2293), - [aux_sym_cmd_identifier_token5] = ACTIONS(2293), - [aux_sym_cmd_identifier_token6] = ACTIONS(2293), - [aux_sym_cmd_identifier_token7] = ACTIONS(2293), - [aux_sym_cmd_identifier_token8] = ACTIONS(2293), - [aux_sym_cmd_identifier_token9] = ACTIONS(2293), - [aux_sym_cmd_identifier_token10] = ACTIONS(2293), - [aux_sym_cmd_identifier_token11] = ACTIONS(2293), - [aux_sym_cmd_identifier_token12] = ACTIONS(2293), - [aux_sym_cmd_identifier_token13] = ACTIONS(2293), - [aux_sym_cmd_identifier_token14] = ACTIONS(2293), - [aux_sym_cmd_identifier_token15] = ACTIONS(2293), - [aux_sym_cmd_identifier_token16] = ACTIONS(2293), - [aux_sym_cmd_identifier_token17] = ACTIONS(2293), - [aux_sym_cmd_identifier_token18] = ACTIONS(2293), - [aux_sym_cmd_identifier_token19] = ACTIONS(2293), - [aux_sym_cmd_identifier_token20] = ACTIONS(2293), - [aux_sym_cmd_identifier_token21] = ACTIONS(2293), - [aux_sym_cmd_identifier_token22] = ACTIONS(2293), - [aux_sym_cmd_identifier_token23] = ACTIONS(2293), - [aux_sym_cmd_identifier_token24] = ACTIONS(2293), - [aux_sym_cmd_identifier_token25] = ACTIONS(2293), - [aux_sym_cmd_identifier_token26] = ACTIONS(2293), - [aux_sym_cmd_identifier_token27] = ACTIONS(2293), - [aux_sym_cmd_identifier_token28] = ACTIONS(2293), - [aux_sym_cmd_identifier_token29] = ACTIONS(2293), - [aux_sym_cmd_identifier_token30] = ACTIONS(2293), - [aux_sym_cmd_identifier_token31] = ACTIONS(2293), - [aux_sym_cmd_identifier_token32] = ACTIONS(2293), - [aux_sym_cmd_identifier_token33] = ACTIONS(2293), - [aux_sym_cmd_identifier_token34] = ACTIONS(2293), - [aux_sym_cmd_identifier_token35] = ACTIONS(2293), - [aux_sym_cmd_identifier_token36] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2293), - [aux_sym_cmd_identifier_token38] = ACTIONS(2293), - [aux_sym_cmd_identifier_token39] = ACTIONS(2293), - [aux_sym_cmd_identifier_token40] = ACTIONS(2293), - [anon_sym_def] = ACTIONS(2293), - [anon_sym_export_DASHenv] = ACTIONS(2293), - [anon_sym_extern] = ACTIONS(2293), - [anon_sym_module] = ACTIONS(2293), - [anon_sym_use] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_error] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_in] = ACTIONS(2293), - [anon_sym_loop] = ACTIONS(2293), - [anon_sym_make] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_catch] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_source] = ACTIONS(2293), - [anon_sym_source_DASHenv] = ACTIONS(2293), - [anon_sym_register] = ACTIONS(2293), - [anon_sym_hide] = ACTIONS(2293), - [anon_sym_hide_DASHenv] = ACTIONS(2293), - [anon_sym_overlay] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_as] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2293), - [aux_sym__val_number_decimal_token1] = ACTIONS(2293), - [aux_sym__val_number_decimal_token2] = ACTIONS(2293), - [anon_sym_DOT2] = ACTIONS(2293), - [aux_sym__val_number_decimal_token3] = ACTIONS(2293), - [aux_sym__val_number_token1] = ACTIONS(2293), - [aux_sym__val_number_token2] = ACTIONS(2293), - [aux_sym__val_number_token3] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym__str_single_quotes] = ACTIONS(2293), - [sym__str_back_ticks] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2293), - [sym__entry_separator] = ACTIONS(2295), - [anon_sym_POUND] = ACTIONS(121), - }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_alias] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_let_DASHenv] = ACTIONS(2297), - [anon_sym_mut] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [aux_sym_cmd_identifier_token1] = ACTIONS(2297), - [aux_sym_cmd_identifier_token2] = ACTIONS(2297), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), - [aux_sym_cmd_identifier_token6] = ACTIONS(2297), - [aux_sym_cmd_identifier_token7] = ACTIONS(2297), - [aux_sym_cmd_identifier_token8] = ACTIONS(2297), - [aux_sym_cmd_identifier_token9] = ACTIONS(2297), - [aux_sym_cmd_identifier_token10] = ACTIONS(2297), - [aux_sym_cmd_identifier_token11] = ACTIONS(2297), - [aux_sym_cmd_identifier_token12] = ACTIONS(2297), - [aux_sym_cmd_identifier_token13] = ACTIONS(2297), - [aux_sym_cmd_identifier_token14] = ACTIONS(2297), - [aux_sym_cmd_identifier_token15] = ACTIONS(2297), - [aux_sym_cmd_identifier_token16] = ACTIONS(2297), - [aux_sym_cmd_identifier_token17] = ACTIONS(2297), - [aux_sym_cmd_identifier_token18] = ACTIONS(2297), - [aux_sym_cmd_identifier_token19] = ACTIONS(2297), - [aux_sym_cmd_identifier_token20] = ACTIONS(2297), - [aux_sym_cmd_identifier_token21] = ACTIONS(2297), - [aux_sym_cmd_identifier_token22] = ACTIONS(2297), - [aux_sym_cmd_identifier_token23] = ACTIONS(2297), - [aux_sym_cmd_identifier_token24] = ACTIONS(2297), - [aux_sym_cmd_identifier_token25] = ACTIONS(2297), - [aux_sym_cmd_identifier_token26] = ACTIONS(2297), - [aux_sym_cmd_identifier_token27] = ACTIONS(2297), - [aux_sym_cmd_identifier_token28] = ACTIONS(2297), - [aux_sym_cmd_identifier_token29] = ACTIONS(2297), - [aux_sym_cmd_identifier_token30] = ACTIONS(2297), - [aux_sym_cmd_identifier_token31] = ACTIONS(2297), - [aux_sym_cmd_identifier_token32] = ACTIONS(2297), - [aux_sym_cmd_identifier_token33] = ACTIONS(2297), - [aux_sym_cmd_identifier_token34] = ACTIONS(2297), - [aux_sym_cmd_identifier_token35] = ACTIONS(2297), - [aux_sym_cmd_identifier_token36] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_null] = ACTIONS(2297), - [aux_sym_cmd_identifier_token38] = ACTIONS(2297), - [aux_sym_cmd_identifier_token39] = ACTIONS(2297), - [aux_sym_cmd_identifier_token40] = ACTIONS(2297), - [anon_sym_def] = ACTIONS(2297), - [anon_sym_export_DASHenv] = ACTIONS(2297), - [anon_sym_extern] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_error] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_loop] = ACTIONS(2297), - [anon_sym_make] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_catch] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_source] = ACTIONS(2297), - [anon_sym_source_DASHenv] = ACTIONS(2297), - [anon_sym_register] = ACTIONS(2297), - [anon_sym_hide] = ACTIONS(2297), - [anon_sym_hide_DASHenv] = ACTIONS(2297), - [anon_sym_overlay] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2297), - [aux_sym__val_number_decimal_token1] = ACTIONS(2297), - [aux_sym__val_number_decimal_token2] = ACTIONS(2297), - [anon_sym_DOT2] = ACTIONS(2297), - [aux_sym__val_number_decimal_token3] = ACTIONS(2297), - [aux_sym__val_number_token1] = ACTIONS(2297), - [aux_sym__val_number_token2] = ACTIONS(2297), - [aux_sym__val_number_token3] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [sym__str_single_quotes] = ACTIONS(2297), - [sym__str_back_ticks] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2297), - [sym__entry_separator] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(121), - }, - [534] = { - [sym_comment] = STATE(534), - [anon_sym_export] = ACTIONS(2301), - [anon_sym_alias] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_let_DASHenv] = ACTIONS(2301), - [anon_sym_mut] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [aux_sym_cmd_identifier_token1] = ACTIONS(2301), - [aux_sym_cmd_identifier_token2] = ACTIONS(2301), - [aux_sym_cmd_identifier_token3] = ACTIONS(2301), - [aux_sym_cmd_identifier_token4] = ACTIONS(2301), - [aux_sym_cmd_identifier_token5] = ACTIONS(2301), - [aux_sym_cmd_identifier_token6] = ACTIONS(2301), - [aux_sym_cmd_identifier_token7] = ACTIONS(2301), - [aux_sym_cmd_identifier_token8] = ACTIONS(2301), - [aux_sym_cmd_identifier_token9] = ACTIONS(2301), - [aux_sym_cmd_identifier_token10] = ACTIONS(2301), - [aux_sym_cmd_identifier_token11] = ACTIONS(2301), - [aux_sym_cmd_identifier_token12] = ACTIONS(2301), - [aux_sym_cmd_identifier_token13] = ACTIONS(2301), - [aux_sym_cmd_identifier_token14] = ACTIONS(2301), - [aux_sym_cmd_identifier_token15] = ACTIONS(2301), - [aux_sym_cmd_identifier_token16] = ACTIONS(2301), - [aux_sym_cmd_identifier_token17] = ACTIONS(2301), - [aux_sym_cmd_identifier_token18] = ACTIONS(2301), - [aux_sym_cmd_identifier_token19] = ACTIONS(2301), - [aux_sym_cmd_identifier_token20] = ACTIONS(2301), - [aux_sym_cmd_identifier_token21] = ACTIONS(2301), - [aux_sym_cmd_identifier_token22] = ACTIONS(2301), - [aux_sym_cmd_identifier_token23] = ACTIONS(2301), - [aux_sym_cmd_identifier_token24] = ACTIONS(2301), - [aux_sym_cmd_identifier_token25] = ACTIONS(2301), - [aux_sym_cmd_identifier_token26] = ACTIONS(2301), - [aux_sym_cmd_identifier_token27] = ACTIONS(2301), - [aux_sym_cmd_identifier_token28] = ACTIONS(2301), - [aux_sym_cmd_identifier_token29] = ACTIONS(2301), - [aux_sym_cmd_identifier_token30] = ACTIONS(2301), - [aux_sym_cmd_identifier_token31] = ACTIONS(2301), - [aux_sym_cmd_identifier_token32] = ACTIONS(2301), - [aux_sym_cmd_identifier_token33] = ACTIONS(2301), - [aux_sym_cmd_identifier_token34] = ACTIONS(2301), - [aux_sym_cmd_identifier_token35] = ACTIONS(2301), - [aux_sym_cmd_identifier_token36] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [anon_sym_null] = ACTIONS(2301), - [aux_sym_cmd_identifier_token38] = ACTIONS(2301), - [aux_sym_cmd_identifier_token39] = ACTIONS(2301), - [aux_sym_cmd_identifier_token40] = ACTIONS(2301), - [anon_sym_def] = ACTIONS(2301), - [anon_sym_export_DASHenv] = ACTIONS(2301), - [anon_sym_extern] = ACTIONS(2301), - [anon_sym_module] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_error] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_in] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_make] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_do] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_else] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_catch] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_source] = ACTIONS(2301), - [anon_sym_source_DASHenv] = ACTIONS(2301), - [anon_sym_register] = ACTIONS(2301), - [anon_sym_hide] = ACTIONS(2301), - [anon_sym_hide_DASHenv] = ACTIONS(2301), - [anon_sym_overlay] = ACTIONS(2301), - [anon_sym_new] = ACTIONS(2301), - [anon_sym_as] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2301), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2301), - [aux_sym__val_number_decimal_token2] = ACTIONS(2301), - [anon_sym_DOT2] = ACTIONS(2301), - [aux_sym__val_number_decimal_token3] = ACTIONS(2301), - [aux_sym__val_number_token1] = ACTIONS(2301), - [aux_sym__val_number_token2] = ACTIONS(2301), - [aux_sym__val_number_token3] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2301), - [sym__str_single_quotes] = ACTIONS(2301), - [sym__str_back_ticks] = ACTIONS(2301), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2301), - [sym__entry_separator] = ACTIONS(2303), - [anon_sym_POUND] = ACTIONS(121), - }, - [535] = { - [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_alias] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_let_DASHenv] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [aux_sym_cmd_identifier_token1] = ACTIONS(2305), - [aux_sym_cmd_identifier_token2] = ACTIONS(2305), - [aux_sym_cmd_identifier_token3] = ACTIONS(2305), - [aux_sym_cmd_identifier_token4] = ACTIONS(2305), - [aux_sym_cmd_identifier_token5] = ACTIONS(2305), - [aux_sym_cmd_identifier_token6] = ACTIONS(2305), - [aux_sym_cmd_identifier_token7] = ACTIONS(2305), - [aux_sym_cmd_identifier_token8] = ACTIONS(2305), - [aux_sym_cmd_identifier_token9] = ACTIONS(2305), - [aux_sym_cmd_identifier_token10] = ACTIONS(2305), - [aux_sym_cmd_identifier_token11] = ACTIONS(2305), - [aux_sym_cmd_identifier_token12] = ACTIONS(2305), - [aux_sym_cmd_identifier_token13] = ACTIONS(2305), - [aux_sym_cmd_identifier_token14] = ACTIONS(2305), - [aux_sym_cmd_identifier_token15] = ACTIONS(2305), - [aux_sym_cmd_identifier_token16] = ACTIONS(2305), - [aux_sym_cmd_identifier_token17] = ACTIONS(2305), - [aux_sym_cmd_identifier_token18] = ACTIONS(2305), - [aux_sym_cmd_identifier_token19] = ACTIONS(2305), - [aux_sym_cmd_identifier_token20] = ACTIONS(2305), - [aux_sym_cmd_identifier_token21] = ACTIONS(2305), - [aux_sym_cmd_identifier_token22] = ACTIONS(2305), - [aux_sym_cmd_identifier_token23] = ACTIONS(2305), - [aux_sym_cmd_identifier_token24] = ACTIONS(2305), - [aux_sym_cmd_identifier_token25] = ACTIONS(2305), - [aux_sym_cmd_identifier_token26] = ACTIONS(2305), - [aux_sym_cmd_identifier_token27] = ACTIONS(2305), - [aux_sym_cmd_identifier_token28] = ACTIONS(2305), - [aux_sym_cmd_identifier_token29] = ACTIONS(2305), - [aux_sym_cmd_identifier_token30] = ACTIONS(2305), - [aux_sym_cmd_identifier_token31] = ACTIONS(2305), - [aux_sym_cmd_identifier_token32] = ACTIONS(2305), - [aux_sym_cmd_identifier_token33] = ACTIONS(2305), - [aux_sym_cmd_identifier_token34] = ACTIONS(2305), - [aux_sym_cmd_identifier_token35] = ACTIONS(2305), - [aux_sym_cmd_identifier_token36] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2305), - [aux_sym_cmd_identifier_token38] = ACTIONS(2305), - [aux_sym_cmd_identifier_token39] = ACTIONS(2305), - [aux_sym_cmd_identifier_token40] = ACTIONS(2305), - [anon_sym_def] = ACTIONS(2305), - [anon_sym_export_DASHenv] = ACTIONS(2305), - [anon_sym_extern] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_error] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_in] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_make] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_catch] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_source] = ACTIONS(2305), - [anon_sym_source_DASHenv] = ACTIONS(2305), - [anon_sym_register] = ACTIONS(2305), - [anon_sym_hide] = ACTIONS(2305), - [anon_sym_hide_DASHenv] = ACTIONS(2305), - [anon_sym_overlay] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2305), - [aux_sym__val_number_decimal_token1] = ACTIONS(2305), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [anon_sym_DOT2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2305), - [aux_sym__val_number_token1] = ACTIONS(2305), - [aux_sym__val_number_token2] = ACTIONS(2305), - [aux_sym__val_number_token3] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym__str_single_quotes] = ACTIONS(2305), - [sym__str_back_ticks] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2305), - [sym__entry_separator] = ACTIONS(2307), - [anon_sym_POUND] = ACTIONS(121), - }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(2309), - [anon_sym_alias] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_let_DASHenv] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [aux_sym_cmd_identifier_token1] = ACTIONS(2309), - [aux_sym_cmd_identifier_token2] = ACTIONS(2309), - [aux_sym_cmd_identifier_token3] = ACTIONS(2309), - [aux_sym_cmd_identifier_token4] = ACTIONS(2309), - [aux_sym_cmd_identifier_token5] = ACTIONS(2309), - [aux_sym_cmd_identifier_token6] = ACTIONS(2309), - [aux_sym_cmd_identifier_token7] = ACTIONS(2309), - [aux_sym_cmd_identifier_token8] = ACTIONS(2309), - [aux_sym_cmd_identifier_token9] = ACTIONS(2309), - [aux_sym_cmd_identifier_token10] = ACTIONS(2309), - [aux_sym_cmd_identifier_token11] = ACTIONS(2309), - [aux_sym_cmd_identifier_token12] = ACTIONS(2309), - [aux_sym_cmd_identifier_token13] = ACTIONS(2309), - [aux_sym_cmd_identifier_token14] = ACTIONS(2309), - [aux_sym_cmd_identifier_token15] = ACTIONS(2309), - [aux_sym_cmd_identifier_token16] = ACTIONS(2309), - [aux_sym_cmd_identifier_token17] = ACTIONS(2309), - [aux_sym_cmd_identifier_token18] = ACTIONS(2309), - [aux_sym_cmd_identifier_token19] = ACTIONS(2309), - [aux_sym_cmd_identifier_token20] = ACTIONS(2309), - [aux_sym_cmd_identifier_token21] = ACTIONS(2309), - [aux_sym_cmd_identifier_token22] = ACTIONS(2309), - [aux_sym_cmd_identifier_token23] = ACTIONS(2309), - [aux_sym_cmd_identifier_token24] = ACTIONS(2309), - [aux_sym_cmd_identifier_token25] = ACTIONS(2309), - [aux_sym_cmd_identifier_token26] = ACTIONS(2309), - [aux_sym_cmd_identifier_token27] = ACTIONS(2309), - [aux_sym_cmd_identifier_token28] = ACTIONS(2309), - [aux_sym_cmd_identifier_token29] = ACTIONS(2309), - [aux_sym_cmd_identifier_token30] = ACTIONS(2309), - [aux_sym_cmd_identifier_token31] = ACTIONS(2309), - [aux_sym_cmd_identifier_token32] = ACTIONS(2309), - [aux_sym_cmd_identifier_token33] = ACTIONS(2309), - [aux_sym_cmd_identifier_token34] = ACTIONS(2309), - [aux_sym_cmd_identifier_token35] = ACTIONS(2309), - [aux_sym_cmd_identifier_token36] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [anon_sym_null] = ACTIONS(2309), - [aux_sym_cmd_identifier_token38] = ACTIONS(2309), - [aux_sym_cmd_identifier_token39] = ACTIONS(2309), - [aux_sym_cmd_identifier_token40] = ACTIONS(2309), - [anon_sym_def] = ACTIONS(2309), - [anon_sym_export_DASHenv] = ACTIONS(2309), - [anon_sym_extern] = ACTIONS(2309), - [anon_sym_module] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_error] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_make] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_catch] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_source] = ACTIONS(2309), - [anon_sym_source_DASHenv] = ACTIONS(2309), - [anon_sym_register] = ACTIONS(2309), - [anon_sym_hide] = ACTIONS(2309), - [anon_sym_hide_DASHenv] = ACTIONS(2309), - [anon_sym_overlay] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2309), - [aux_sym__val_number_decimal_token2] = ACTIONS(2309), - [anon_sym_DOT2] = ACTIONS(2309), - [aux_sym__val_number_decimal_token3] = ACTIONS(2309), - [aux_sym__val_number_token1] = ACTIONS(2309), - [aux_sym__val_number_token2] = ACTIONS(2309), - [aux_sym__val_number_token3] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(2309), - [sym__str_single_quotes] = ACTIONS(2309), - [sym__str_back_ticks] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2309), - [sym__entry_separator] = ACTIONS(2311), - [anon_sym_POUND] = ACTIONS(121), - }, - [537] = { - [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_alias] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_let_DASHenv] = ACTIONS(2313), - [anon_sym_mut] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [aux_sym_cmd_identifier_token1] = ACTIONS(2313), - [aux_sym_cmd_identifier_token2] = ACTIONS(2313), - [aux_sym_cmd_identifier_token3] = ACTIONS(2313), - [aux_sym_cmd_identifier_token4] = ACTIONS(2313), - [aux_sym_cmd_identifier_token5] = ACTIONS(2313), - [aux_sym_cmd_identifier_token6] = ACTIONS(2313), - [aux_sym_cmd_identifier_token7] = ACTIONS(2313), - [aux_sym_cmd_identifier_token8] = ACTIONS(2313), - [aux_sym_cmd_identifier_token9] = ACTIONS(2313), - [aux_sym_cmd_identifier_token10] = ACTIONS(2313), - [aux_sym_cmd_identifier_token11] = ACTIONS(2313), - [aux_sym_cmd_identifier_token12] = ACTIONS(2313), - [aux_sym_cmd_identifier_token13] = ACTIONS(2313), - [aux_sym_cmd_identifier_token14] = ACTIONS(2313), - [aux_sym_cmd_identifier_token15] = ACTIONS(2313), - [aux_sym_cmd_identifier_token16] = ACTIONS(2313), - [aux_sym_cmd_identifier_token17] = ACTIONS(2313), - [aux_sym_cmd_identifier_token18] = ACTIONS(2313), - [aux_sym_cmd_identifier_token19] = ACTIONS(2313), - [aux_sym_cmd_identifier_token20] = ACTIONS(2313), - [aux_sym_cmd_identifier_token21] = ACTIONS(2313), - [aux_sym_cmd_identifier_token22] = ACTIONS(2313), - [aux_sym_cmd_identifier_token23] = ACTIONS(2313), - [aux_sym_cmd_identifier_token24] = ACTIONS(2313), - [aux_sym_cmd_identifier_token25] = ACTIONS(2313), - [aux_sym_cmd_identifier_token26] = ACTIONS(2313), - [aux_sym_cmd_identifier_token27] = ACTIONS(2313), - [aux_sym_cmd_identifier_token28] = ACTIONS(2313), - [aux_sym_cmd_identifier_token29] = ACTIONS(2313), - [aux_sym_cmd_identifier_token30] = ACTIONS(2313), - [aux_sym_cmd_identifier_token31] = ACTIONS(2313), - [aux_sym_cmd_identifier_token32] = ACTIONS(2313), - [aux_sym_cmd_identifier_token33] = ACTIONS(2313), - [aux_sym_cmd_identifier_token34] = ACTIONS(2313), - [aux_sym_cmd_identifier_token35] = ACTIONS(2313), - [aux_sym_cmd_identifier_token36] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2313), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_export_DASHenv] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_in] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_make] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_catch] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_source] = ACTIONS(2313), - [anon_sym_source_DASHenv] = ACTIONS(2313), - [anon_sym_register] = ACTIONS(2313), - [anon_sym_hide] = ACTIONS(2313), - [anon_sym_hide_DASHenv] = ACTIONS(2313), - [anon_sym_overlay] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2313), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [anon_sym_DOT2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), - [sym__entry_separator] = ACTIONS(2315), - [anon_sym_POUND] = ACTIONS(121), + [sym__entry_separator] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(3), }, [538] = { [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(2317), - [anon_sym_alias] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_let_DASHenv] = ACTIONS(2317), - [anon_sym_mut] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [aux_sym_cmd_identifier_token1] = ACTIONS(2317), - [aux_sym_cmd_identifier_token2] = ACTIONS(2317), - [aux_sym_cmd_identifier_token3] = ACTIONS(2317), - [aux_sym_cmd_identifier_token4] = ACTIONS(2317), - [aux_sym_cmd_identifier_token5] = ACTIONS(2317), - [aux_sym_cmd_identifier_token6] = ACTIONS(2317), - [aux_sym_cmd_identifier_token7] = ACTIONS(2317), - [aux_sym_cmd_identifier_token8] = ACTIONS(2317), - [aux_sym_cmd_identifier_token9] = ACTIONS(2317), - [aux_sym_cmd_identifier_token10] = ACTIONS(2317), - [aux_sym_cmd_identifier_token11] = ACTIONS(2317), - [aux_sym_cmd_identifier_token12] = ACTIONS(2317), - [aux_sym_cmd_identifier_token13] = ACTIONS(2317), - [aux_sym_cmd_identifier_token14] = ACTIONS(2317), - [aux_sym_cmd_identifier_token15] = ACTIONS(2317), - [aux_sym_cmd_identifier_token16] = ACTIONS(2317), - [aux_sym_cmd_identifier_token17] = ACTIONS(2317), - [aux_sym_cmd_identifier_token18] = ACTIONS(2317), - [aux_sym_cmd_identifier_token19] = ACTIONS(2317), - [aux_sym_cmd_identifier_token20] = ACTIONS(2317), - [aux_sym_cmd_identifier_token21] = ACTIONS(2317), - [aux_sym_cmd_identifier_token22] = ACTIONS(2317), - [aux_sym_cmd_identifier_token23] = ACTIONS(2317), - [aux_sym_cmd_identifier_token24] = ACTIONS(2317), - [aux_sym_cmd_identifier_token25] = ACTIONS(2317), - [aux_sym_cmd_identifier_token26] = ACTIONS(2317), - [aux_sym_cmd_identifier_token27] = ACTIONS(2317), - [aux_sym_cmd_identifier_token28] = ACTIONS(2317), - [aux_sym_cmd_identifier_token29] = ACTIONS(2317), - [aux_sym_cmd_identifier_token30] = ACTIONS(2317), - [aux_sym_cmd_identifier_token31] = ACTIONS(2317), - [aux_sym_cmd_identifier_token32] = ACTIONS(2317), - [aux_sym_cmd_identifier_token33] = ACTIONS(2317), - [aux_sym_cmd_identifier_token34] = ACTIONS(2317), - [aux_sym_cmd_identifier_token35] = ACTIONS(2317), - [aux_sym_cmd_identifier_token36] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [aux_sym_cmd_identifier_token38] = ACTIONS(2317), - [aux_sym_cmd_identifier_token39] = ACTIONS(2317), - [aux_sym_cmd_identifier_token40] = ACTIONS(2317), - [anon_sym_def] = ACTIONS(2317), - [anon_sym_export_DASHenv] = ACTIONS(2317), - [anon_sym_extern] = ACTIONS(2317), - [anon_sym_module] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_error] = ACTIONS(2317), - [anon_sym_list] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_in] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_make] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_catch] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_source] = ACTIONS(2317), - [anon_sym_source_DASHenv] = ACTIONS(2317), - [anon_sym_register] = ACTIONS(2317), - [anon_sym_hide] = ACTIONS(2317), - [anon_sym_hide_DASHenv] = ACTIONS(2317), - [anon_sym_overlay] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_as] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2317), - [aux_sym__val_number_decimal_token1] = ACTIONS(2317), - [aux_sym__val_number_decimal_token2] = ACTIONS(2317), - [anon_sym_DOT2] = ACTIONS(2317), - [aux_sym__val_number_decimal_token3] = ACTIONS(2317), - [aux_sym__val_number_token1] = ACTIONS(2317), - [aux_sym__val_number_token2] = ACTIONS(2317), - [aux_sym__val_number_token3] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [sym__str_single_quotes] = ACTIONS(2317), - [sym__str_back_ticks] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2317), - [sym__entry_separator] = ACTIONS(2319), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_alias] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_let_DASHenv] = ACTIONS(2348), + [anon_sym_mut] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [aux_sym_cmd_identifier_token1] = ACTIONS(2348), + [aux_sym_cmd_identifier_token2] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2348), + [aux_sym_cmd_identifier_token4] = ACTIONS(2348), + [aux_sym_cmd_identifier_token5] = ACTIONS(2348), + [aux_sym_cmd_identifier_token6] = ACTIONS(2348), + [aux_sym_cmd_identifier_token7] = ACTIONS(2348), + [aux_sym_cmd_identifier_token8] = ACTIONS(2348), + [aux_sym_cmd_identifier_token9] = ACTIONS(2348), + [aux_sym_cmd_identifier_token10] = ACTIONS(2348), + [aux_sym_cmd_identifier_token11] = ACTIONS(2348), + [aux_sym_cmd_identifier_token12] = ACTIONS(2348), + [aux_sym_cmd_identifier_token13] = ACTIONS(2348), + [aux_sym_cmd_identifier_token14] = ACTIONS(2348), + [aux_sym_cmd_identifier_token15] = ACTIONS(2348), + [aux_sym_cmd_identifier_token16] = ACTIONS(2348), + [aux_sym_cmd_identifier_token17] = ACTIONS(2348), + [aux_sym_cmd_identifier_token18] = ACTIONS(2348), + [aux_sym_cmd_identifier_token19] = ACTIONS(2348), + [aux_sym_cmd_identifier_token20] = ACTIONS(2348), + [aux_sym_cmd_identifier_token21] = ACTIONS(2348), + [aux_sym_cmd_identifier_token22] = ACTIONS(2348), + [aux_sym_cmd_identifier_token23] = ACTIONS(2348), + [aux_sym_cmd_identifier_token24] = ACTIONS(2348), + [aux_sym_cmd_identifier_token25] = ACTIONS(2348), + [aux_sym_cmd_identifier_token26] = ACTIONS(2348), + [aux_sym_cmd_identifier_token27] = ACTIONS(2348), + [aux_sym_cmd_identifier_token28] = ACTIONS(2348), + [aux_sym_cmd_identifier_token29] = ACTIONS(2348), + [aux_sym_cmd_identifier_token30] = ACTIONS(2348), + [aux_sym_cmd_identifier_token31] = ACTIONS(2348), + [aux_sym_cmd_identifier_token32] = ACTIONS(2348), + [aux_sym_cmd_identifier_token33] = ACTIONS(2348), + [aux_sym_cmd_identifier_token34] = ACTIONS(2348), + [aux_sym_cmd_identifier_token35] = ACTIONS(2348), + [aux_sym_cmd_identifier_token36] = ACTIONS(2348), + [anon_sym_true] = ACTIONS(2348), + [anon_sym_false] = ACTIONS(2348), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token38] = ACTIONS(2348), + [aux_sym_cmd_identifier_token39] = ACTIONS(2348), + [aux_sym_cmd_identifier_token40] = ACTIONS(2348), + [anon_sym_def] = ACTIONS(2348), + [anon_sym_export_DASHenv] = ACTIONS(2348), + [anon_sym_extern] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_use] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_DOLLAR] = ACTIONS(2348), + [anon_sym_error] = ACTIONS(2348), + [anon_sym_list] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2348), + [anon_sym_loop] = ACTIONS(2348), + [anon_sym_make] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_match] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_catch] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_source] = ACTIONS(2348), + [anon_sym_source_DASHenv] = ACTIONS(2348), + [anon_sym_register] = ACTIONS(2348), + [anon_sym_hide] = ACTIONS(2348), + [anon_sym_hide_DASHenv] = ACTIONS(2348), + [anon_sym_overlay] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2348), + [aux_sym__val_number_decimal_token1] = ACTIONS(2348), + [aux_sym__val_number_decimal_token2] = ACTIONS(2348), + [aux_sym__val_number_decimal_token3] = ACTIONS(2348), + [aux_sym__val_number_decimal_token4] = ACTIONS(2348), + [aux_sym__val_number_token1] = ACTIONS(2348), + [aux_sym__val_number_token2] = ACTIONS(2348), + [aux_sym__val_number_token3] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [sym__str_single_quotes] = ACTIONS(2348), + [sym__str_back_ticks] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), + [sym__entry_separator] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(3), }, [539] = { [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1931), - [aux_sym_cmd_identifier_token40] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_list] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [anon_sym_DOT2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), - [sym__entry_separator] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2352), + [anon_sym_alias] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2352), + [anon_sym_let_DASHenv] = ACTIONS(2352), + [anon_sym_mut] = ACTIONS(2352), + [anon_sym_const] = ACTIONS(2352), + [aux_sym_cmd_identifier_token1] = ACTIONS(2352), + [aux_sym_cmd_identifier_token2] = ACTIONS(2352), + [aux_sym_cmd_identifier_token3] = ACTIONS(2352), + [aux_sym_cmd_identifier_token4] = ACTIONS(2352), + [aux_sym_cmd_identifier_token5] = ACTIONS(2352), + [aux_sym_cmd_identifier_token6] = ACTIONS(2352), + [aux_sym_cmd_identifier_token7] = ACTIONS(2352), + [aux_sym_cmd_identifier_token8] = ACTIONS(2352), + [aux_sym_cmd_identifier_token9] = ACTIONS(2352), + [aux_sym_cmd_identifier_token10] = ACTIONS(2352), + [aux_sym_cmd_identifier_token11] = ACTIONS(2352), + [aux_sym_cmd_identifier_token12] = ACTIONS(2352), + [aux_sym_cmd_identifier_token13] = ACTIONS(2352), + [aux_sym_cmd_identifier_token14] = ACTIONS(2352), + [aux_sym_cmd_identifier_token15] = ACTIONS(2352), + [aux_sym_cmd_identifier_token16] = ACTIONS(2352), + [aux_sym_cmd_identifier_token17] = ACTIONS(2352), + [aux_sym_cmd_identifier_token18] = ACTIONS(2352), + [aux_sym_cmd_identifier_token19] = ACTIONS(2352), + [aux_sym_cmd_identifier_token20] = ACTIONS(2352), + [aux_sym_cmd_identifier_token21] = ACTIONS(2352), + [aux_sym_cmd_identifier_token22] = ACTIONS(2352), + [aux_sym_cmd_identifier_token23] = ACTIONS(2352), + [aux_sym_cmd_identifier_token24] = ACTIONS(2352), + [aux_sym_cmd_identifier_token25] = ACTIONS(2352), + [aux_sym_cmd_identifier_token26] = ACTIONS(2352), + [aux_sym_cmd_identifier_token27] = ACTIONS(2352), + [aux_sym_cmd_identifier_token28] = ACTIONS(2352), + [aux_sym_cmd_identifier_token29] = ACTIONS(2352), + [aux_sym_cmd_identifier_token30] = ACTIONS(2352), + [aux_sym_cmd_identifier_token31] = ACTIONS(2352), + [aux_sym_cmd_identifier_token32] = ACTIONS(2352), + [aux_sym_cmd_identifier_token33] = ACTIONS(2352), + [aux_sym_cmd_identifier_token34] = ACTIONS(2352), + [aux_sym_cmd_identifier_token35] = ACTIONS(2352), + [aux_sym_cmd_identifier_token36] = ACTIONS(2352), + [anon_sym_true] = ACTIONS(2352), + [anon_sym_false] = ACTIONS(2352), + [anon_sym_null] = ACTIONS(2352), + [aux_sym_cmd_identifier_token38] = ACTIONS(2352), + [aux_sym_cmd_identifier_token39] = ACTIONS(2352), + [aux_sym_cmd_identifier_token40] = ACTIONS(2352), + [anon_sym_def] = ACTIONS(2352), + [anon_sym_export_DASHenv] = ACTIONS(2352), + [anon_sym_extern] = ACTIONS(2352), + [anon_sym_module] = ACTIONS(2352), + [anon_sym_use] = ACTIONS(2352), + [anon_sym_LPAREN] = ACTIONS(2352), + [anon_sym_DOLLAR] = ACTIONS(2352), + [anon_sym_error] = ACTIONS(2352), + [anon_sym_list] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_break] = ACTIONS(2352), + [anon_sym_continue] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_in] = ACTIONS(2352), + [anon_sym_loop] = ACTIONS(2352), + [anon_sym_make] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_match] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_try] = ACTIONS(2352), + [anon_sym_catch] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_source] = ACTIONS(2352), + [anon_sym_source_DASHenv] = ACTIONS(2352), + [anon_sym_register] = ACTIONS(2352), + [anon_sym_hide] = ACTIONS(2352), + [anon_sym_hide_DASHenv] = ACTIONS(2352), + [anon_sym_overlay] = ACTIONS(2352), + [anon_sym_new] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2352), + [aux_sym__val_number_decimal_token1] = ACTIONS(2352), + [aux_sym__val_number_decimal_token2] = ACTIONS(2352), + [aux_sym__val_number_decimal_token3] = ACTIONS(2352), + [aux_sym__val_number_decimal_token4] = ACTIONS(2352), + [aux_sym__val_number_token1] = ACTIONS(2352), + [aux_sym__val_number_token2] = ACTIONS(2352), + [aux_sym__val_number_token3] = ACTIONS(2352), + [anon_sym_DQUOTE] = ACTIONS(2352), + [sym__str_single_quotes] = ACTIONS(2352), + [sym__str_back_ticks] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2352), + [sym__entry_separator] = ACTIONS(2354), + [anon_sym_PLUS] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(3), }, [540] = { [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [anon_sym_DOT2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1747), + [anon_sym_alias] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_let_DASHenv] = ACTIONS(1747), + [anon_sym_mut] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [aux_sym_cmd_identifier_token1] = ACTIONS(1747), + [aux_sym_cmd_identifier_token2] = ACTIONS(1747), + [aux_sym_cmd_identifier_token3] = ACTIONS(1747), + [aux_sym_cmd_identifier_token4] = ACTIONS(1747), + [aux_sym_cmd_identifier_token5] = ACTIONS(1747), + [aux_sym_cmd_identifier_token6] = ACTIONS(1747), + [aux_sym_cmd_identifier_token7] = ACTIONS(1747), + [aux_sym_cmd_identifier_token8] = ACTIONS(1747), + [aux_sym_cmd_identifier_token9] = ACTIONS(1747), + [aux_sym_cmd_identifier_token10] = ACTIONS(1747), + [aux_sym_cmd_identifier_token11] = ACTIONS(1747), + [aux_sym_cmd_identifier_token12] = ACTIONS(1747), + [aux_sym_cmd_identifier_token13] = ACTIONS(1747), + [aux_sym_cmd_identifier_token14] = ACTIONS(1747), + [aux_sym_cmd_identifier_token15] = ACTIONS(1747), + [aux_sym_cmd_identifier_token16] = ACTIONS(1747), + [aux_sym_cmd_identifier_token17] = ACTIONS(1747), + [aux_sym_cmd_identifier_token18] = ACTIONS(1747), + [aux_sym_cmd_identifier_token19] = ACTIONS(1747), + [aux_sym_cmd_identifier_token20] = ACTIONS(1747), + [aux_sym_cmd_identifier_token21] = ACTIONS(1747), + [aux_sym_cmd_identifier_token22] = ACTIONS(1747), + [aux_sym_cmd_identifier_token23] = ACTIONS(1747), + [aux_sym_cmd_identifier_token24] = ACTIONS(1747), + [aux_sym_cmd_identifier_token25] = ACTIONS(1747), + [aux_sym_cmd_identifier_token26] = ACTIONS(1747), + [aux_sym_cmd_identifier_token27] = ACTIONS(1747), + [aux_sym_cmd_identifier_token28] = ACTIONS(1747), + [aux_sym_cmd_identifier_token29] = ACTIONS(1747), + [aux_sym_cmd_identifier_token30] = ACTIONS(1747), + [aux_sym_cmd_identifier_token31] = ACTIONS(1747), + [aux_sym_cmd_identifier_token32] = ACTIONS(1747), + [aux_sym_cmd_identifier_token33] = ACTIONS(1747), + [aux_sym_cmd_identifier_token34] = ACTIONS(1747), + [aux_sym_cmd_identifier_token35] = ACTIONS(1747), + [aux_sym_cmd_identifier_token36] = ACTIONS(1747), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [anon_sym_null] = ACTIONS(1747), + [aux_sym_cmd_identifier_token38] = ACTIONS(1747), + [aux_sym_cmd_identifier_token39] = ACTIONS(1747), + [aux_sym_cmd_identifier_token40] = ACTIONS(1747), + [anon_sym_def] = ACTIONS(1747), + [anon_sym_export_DASHenv] = ACTIONS(1747), + [anon_sym_extern] = ACTIONS(1747), + [anon_sym_module] = ACTIONS(1747), + [anon_sym_use] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_error] = ACTIONS(1747), + [anon_sym_list] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_in] = ACTIONS(1747), + [anon_sym_loop] = ACTIONS(1747), + [anon_sym_make] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_do] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1747), + [anon_sym_match] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_try] = ACTIONS(1747), + [anon_sym_catch] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_source] = ACTIONS(1747), + [anon_sym_source_DASHenv] = ACTIONS(1747), + [anon_sym_register] = ACTIONS(1747), + [anon_sym_hide] = ACTIONS(1747), + [anon_sym_hide_DASHenv] = ACTIONS(1747), + [anon_sym_overlay] = ACTIONS(1747), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_as] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1747), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1747), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1747), + [aux_sym__val_number_token1] = ACTIONS(1747), + [aux_sym__val_number_token2] = ACTIONS(1747), + [aux_sym__val_number_token3] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym__str_single_quotes] = ACTIONS(1747), + [sym__str_back_ticks] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1747), + [sym__entry_separator] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(3), }, [541] = { [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(1955), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_let_DASHenv] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1955), - [aux_sym_cmd_identifier_token2] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [aux_sym_cmd_identifier_token6] = ACTIONS(1955), - [aux_sym_cmd_identifier_token7] = ACTIONS(1955), - [aux_sym_cmd_identifier_token8] = ACTIONS(1955), - [aux_sym_cmd_identifier_token9] = ACTIONS(1955), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [aux_sym_cmd_identifier_token12] = ACTIONS(1955), - [aux_sym_cmd_identifier_token13] = ACTIONS(1955), - [aux_sym_cmd_identifier_token14] = ACTIONS(1955), - [aux_sym_cmd_identifier_token15] = ACTIONS(1955), - [aux_sym_cmd_identifier_token16] = ACTIONS(1955), - [aux_sym_cmd_identifier_token17] = ACTIONS(1955), - [aux_sym_cmd_identifier_token18] = ACTIONS(1955), - [aux_sym_cmd_identifier_token19] = ACTIONS(1955), - [aux_sym_cmd_identifier_token20] = ACTIONS(1955), - [aux_sym_cmd_identifier_token21] = ACTIONS(1955), - [aux_sym_cmd_identifier_token22] = ACTIONS(1955), - [aux_sym_cmd_identifier_token23] = ACTIONS(1955), - [aux_sym_cmd_identifier_token24] = ACTIONS(1955), - [aux_sym_cmd_identifier_token25] = ACTIONS(1955), - [aux_sym_cmd_identifier_token26] = ACTIONS(1955), - [aux_sym_cmd_identifier_token27] = ACTIONS(1955), - [aux_sym_cmd_identifier_token28] = ACTIONS(1955), - [aux_sym_cmd_identifier_token29] = ACTIONS(1955), - [aux_sym_cmd_identifier_token30] = ACTIONS(1955), - [aux_sym_cmd_identifier_token31] = ACTIONS(1955), - [aux_sym_cmd_identifier_token32] = ACTIONS(1955), - [aux_sym_cmd_identifier_token33] = ACTIONS(1955), - [aux_sym_cmd_identifier_token34] = ACTIONS(1955), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_list] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_make] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(1955), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [sym__entry_separator] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1855), + [anon_sym_alias] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_let_DASHenv] = ACTIONS(1855), + [anon_sym_mut] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [aux_sym_cmd_identifier_token1] = ACTIONS(1855), + [aux_sym_cmd_identifier_token2] = ACTIONS(1855), + [aux_sym_cmd_identifier_token3] = ACTIONS(1855), + [aux_sym_cmd_identifier_token4] = ACTIONS(1855), + [aux_sym_cmd_identifier_token5] = ACTIONS(1855), + [aux_sym_cmd_identifier_token6] = ACTIONS(1855), + [aux_sym_cmd_identifier_token7] = ACTIONS(1855), + [aux_sym_cmd_identifier_token8] = ACTIONS(1855), + [aux_sym_cmd_identifier_token9] = ACTIONS(1855), + [aux_sym_cmd_identifier_token10] = ACTIONS(1855), + [aux_sym_cmd_identifier_token11] = ACTIONS(1855), + [aux_sym_cmd_identifier_token12] = ACTIONS(1855), + [aux_sym_cmd_identifier_token13] = ACTIONS(1855), + [aux_sym_cmd_identifier_token14] = ACTIONS(1855), + [aux_sym_cmd_identifier_token15] = ACTIONS(1855), + [aux_sym_cmd_identifier_token16] = ACTIONS(1855), + [aux_sym_cmd_identifier_token17] = ACTIONS(1855), + [aux_sym_cmd_identifier_token18] = ACTIONS(1855), + [aux_sym_cmd_identifier_token19] = ACTIONS(1855), + [aux_sym_cmd_identifier_token20] = ACTIONS(1855), + [aux_sym_cmd_identifier_token21] = ACTIONS(1855), + [aux_sym_cmd_identifier_token22] = ACTIONS(1855), + [aux_sym_cmd_identifier_token23] = ACTIONS(1855), + [aux_sym_cmd_identifier_token24] = ACTIONS(1855), + [aux_sym_cmd_identifier_token25] = ACTIONS(1855), + [aux_sym_cmd_identifier_token26] = ACTIONS(1855), + [aux_sym_cmd_identifier_token27] = ACTIONS(1855), + [aux_sym_cmd_identifier_token28] = ACTIONS(1855), + [aux_sym_cmd_identifier_token29] = ACTIONS(1855), + [aux_sym_cmd_identifier_token30] = ACTIONS(1855), + [aux_sym_cmd_identifier_token31] = ACTIONS(1855), + [aux_sym_cmd_identifier_token32] = ACTIONS(1855), + [aux_sym_cmd_identifier_token33] = ACTIONS(1855), + [aux_sym_cmd_identifier_token34] = ACTIONS(1855), + [aux_sym_cmd_identifier_token35] = ACTIONS(1855), + [aux_sym_cmd_identifier_token36] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [anon_sym_null] = ACTIONS(1855), + [aux_sym_cmd_identifier_token38] = ACTIONS(1855), + [aux_sym_cmd_identifier_token39] = ACTIONS(1855), + [aux_sym_cmd_identifier_token40] = ACTIONS(1855), + [anon_sym_def] = ACTIONS(1855), + [anon_sym_export_DASHenv] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1855), + [anon_sym_use] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_error] = ACTIONS(1855), + [anon_sym_list] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_loop] = ACTIONS(1855), + [anon_sym_make] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_catch] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_source] = ACTIONS(1855), + [anon_sym_source_DASHenv] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1855), + [anon_sym_hide] = ACTIONS(1855), + [anon_sym_hide_DASHenv] = ACTIONS(1855), + [anon_sym_overlay] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1855), + [aux_sym__val_number_decimal_token3] = ACTIONS(1855), + [aux_sym__val_number_decimal_token4] = ACTIONS(1855), + [aux_sym__val_number_token1] = ACTIONS(1855), + [aux_sym__val_number_token2] = ACTIONS(1855), + [aux_sym__val_number_token3] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [sym__str_single_quotes] = ACTIONS(1855), + [sym__str_back_ticks] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), + [sym__entry_separator] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(3), }, [542] = { [sym_comment] = STATE(542), - [anon_sym_export] = ACTIONS(2263), - [anon_sym_alias] = ACTIONS(2263), - [anon_sym_let] = ACTIONS(2263), - [anon_sym_let_DASHenv] = ACTIONS(2263), - [anon_sym_mut] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [aux_sym_cmd_identifier_token1] = ACTIONS(2263), - [aux_sym_cmd_identifier_token2] = ACTIONS(2263), - [aux_sym_cmd_identifier_token3] = ACTIONS(2263), - [aux_sym_cmd_identifier_token4] = ACTIONS(2263), - [aux_sym_cmd_identifier_token5] = ACTIONS(2263), - [aux_sym_cmd_identifier_token6] = ACTIONS(2263), - [aux_sym_cmd_identifier_token7] = ACTIONS(2263), - [aux_sym_cmd_identifier_token8] = ACTIONS(2263), - [aux_sym_cmd_identifier_token9] = ACTIONS(2263), - [aux_sym_cmd_identifier_token10] = ACTIONS(2263), - [aux_sym_cmd_identifier_token11] = ACTIONS(2263), - [aux_sym_cmd_identifier_token12] = ACTIONS(2263), - [aux_sym_cmd_identifier_token13] = ACTIONS(2263), - [aux_sym_cmd_identifier_token14] = ACTIONS(2263), - [aux_sym_cmd_identifier_token15] = ACTIONS(2263), - [aux_sym_cmd_identifier_token16] = ACTIONS(2263), - [aux_sym_cmd_identifier_token17] = ACTIONS(2263), - [aux_sym_cmd_identifier_token18] = ACTIONS(2263), - [aux_sym_cmd_identifier_token19] = ACTIONS(2263), - [aux_sym_cmd_identifier_token20] = ACTIONS(2263), - [aux_sym_cmd_identifier_token21] = ACTIONS(2263), - [aux_sym_cmd_identifier_token22] = ACTIONS(2263), - [aux_sym_cmd_identifier_token23] = ACTIONS(2263), - [aux_sym_cmd_identifier_token24] = ACTIONS(2263), - [aux_sym_cmd_identifier_token25] = ACTIONS(2263), - [aux_sym_cmd_identifier_token26] = ACTIONS(2263), - [aux_sym_cmd_identifier_token27] = ACTIONS(2263), - [aux_sym_cmd_identifier_token28] = ACTIONS(2263), - [aux_sym_cmd_identifier_token29] = ACTIONS(2263), - [aux_sym_cmd_identifier_token30] = ACTIONS(2263), - [aux_sym_cmd_identifier_token31] = ACTIONS(2263), - [aux_sym_cmd_identifier_token32] = ACTIONS(2263), - [aux_sym_cmd_identifier_token33] = ACTIONS(2263), - [aux_sym_cmd_identifier_token34] = ACTIONS(2263), - [aux_sym_cmd_identifier_token35] = ACTIONS(2263), - [aux_sym_cmd_identifier_token36] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [anon_sym_null] = ACTIONS(2267), - [aux_sym_cmd_identifier_token38] = ACTIONS(2263), - [aux_sym_cmd_identifier_token39] = ACTIONS(2267), - [aux_sym_cmd_identifier_token40] = ACTIONS(2267), - [anon_sym_def] = ACTIONS(2263), - [anon_sym_export_DASHenv] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_use] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_error] = ACTIONS(2263), - [anon_sym_list] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(2263), - [anon_sym_loop] = ACTIONS(2263), - [anon_sym_make] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_catch] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_source] = ACTIONS(2263), - [anon_sym_source_DASHenv] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_hide] = ACTIONS(2263), - [anon_sym_hide_DASHenv] = ACTIONS(2263), - [anon_sym_overlay] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_as] = ACTIONS(2263), - [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2267), - [aux_sym__immediate_decimal_token1] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2267), - [aux_sym__val_number_decimal_token1] = ACTIONS(2263), - [aux_sym__val_number_decimal_token2] = ACTIONS(2267), - [anon_sym_DOT2] = ACTIONS(2263), - [aux_sym__val_number_decimal_token3] = ACTIONS(2267), - [aux_sym__val_number_token1] = ACTIONS(2267), - [aux_sym__val_number_token2] = ACTIONS(2267), - [aux_sym__val_number_token3] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(542), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_alias] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_let_DASHenv] = ACTIONS(1755), + [anon_sym_mut] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1755), + [aux_sym_cmd_identifier_token3] = ACTIONS(1755), + [aux_sym_cmd_identifier_token4] = ACTIONS(1755), + [aux_sym_cmd_identifier_token5] = ACTIONS(1755), + [aux_sym_cmd_identifier_token6] = ACTIONS(1755), + [aux_sym_cmd_identifier_token7] = ACTIONS(1755), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1755), + [aux_sym_cmd_identifier_token11] = ACTIONS(1755), + [aux_sym_cmd_identifier_token12] = ACTIONS(1755), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1755), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1755), + [aux_sym_cmd_identifier_token17] = ACTIONS(1755), + [aux_sym_cmd_identifier_token18] = ACTIONS(1755), + [aux_sym_cmd_identifier_token19] = ACTIONS(1755), + [aux_sym_cmd_identifier_token20] = ACTIONS(1755), + [aux_sym_cmd_identifier_token21] = ACTIONS(1755), + [aux_sym_cmd_identifier_token22] = ACTIONS(1755), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1755), + [aux_sym_cmd_identifier_token25] = ACTIONS(1755), + [aux_sym_cmd_identifier_token26] = ACTIONS(1755), + [aux_sym_cmd_identifier_token27] = ACTIONS(1755), + [aux_sym_cmd_identifier_token28] = ACTIONS(1755), + [aux_sym_cmd_identifier_token29] = ACTIONS(1755), + [aux_sym_cmd_identifier_token30] = ACTIONS(1755), + [aux_sym_cmd_identifier_token31] = ACTIONS(1755), + [aux_sym_cmd_identifier_token32] = ACTIONS(1755), + [aux_sym_cmd_identifier_token33] = ACTIONS(1755), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1755), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [sym__newline] = ACTIONS(2356), + [anon_sym_def] = ACTIONS(1755), + [anon_sym_export_DASHenv] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_error] = ACTIONS(1755), + [anon_sym_list] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_make] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_source] = ACTIONS(1755), + [anon_sym_source_DASHenv] = ACTIONS(1755), + [anon_sym_register] = ACTIONS(1755), + [anon_sym_hide] = ACTIONS(1755), + [anon_sym_hide_DASHenv] = ACTIONS(1755), + [anon_sym_overlay] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), }, [543] = { [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(2178), - [anon_sym_alias] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_let_DASHenv] = ACTIONS(2178), - [anon_sym_mut] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [aux_sym_cmd_identifier_token1] = ACTIONS(2178), - [aux_sym_cmd_identifier_token2] = ACTIONS(2178), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [aux_sym_cmd_identifier_token6] = ACTIONS(2178), - [aux_sym_cmd_identifier_token7] = ACTIONS(2178), - [aux_sym_cmd_identifier_token8] = ACTIONS(2178), - [aux_sym_cmd_identifier_token9] = ACTIONS(2178), - [aux_sym_cmd_identifier_token10] = ACTIONS(2178), - [aux_sym_cmd_identifier_token11] = ACTIONS(2178), - [aux_sym_cmd_identifier_token12] = ACTIONS(2178), - [aux_sym_cmd_identifier_token13] = ACTIONS(2178), - [aux_sym_cmd_identifier_token14] = ACTIONS(2178), - [aux_sym_cmd_identifier_token15] = ACTIONS(2178), - [aux_sym_cmd_identifier_token16] = ACTIONS(2178), - [aux_sym_cmd_identifier_token17] = ACTIONS(2178), - [aux_sym_cmd_identifier_token18] = ACTIONS(2178), - [aux_sym_cmd_identifier_token19] = ACTIONS(2178), - [aux_sym_cmd_identifier_token20] = ACTIONS(2178), - [aux_sym_cmd_identifier_token21] = ACTIONS(2178), - [aux_sym_cmd_identifier_token22] = ACTIONS(2178), - [aux_sym_cmd_identifier_token23] = ACTIONS(2178), - [aux_sym_cmd_identifier_token24] = ACTIONS(2178), - [aux_sym_cmd_identifier_token25] = ACTIONS(2178), - [aux_sym_cmd_identifier_token26] = ACTIONS(2178), - [aux_sym_cmd_identifier_token27] = ACTIONS(2178), - [aux_sym_cmd_identifier_token28] = ACTIONS(2178), - [aux_sym_cmd_identifier_token29] = ACTIONS(2178), - [aux_sym_cmd_identifier_token30] = ACTIONS(2178), - [aux_sym_cmd_identifier_token31] = ACTIONS(2178), - [aux_sym_cmd_identifier_token32] = ACTIONS(2178), - [aux_sym_cmd_identifier_token33] = ACTIONS(2178), - [aux_sym_cmd_identifier_token34] = ACTIONS(2178), - [aux_sym_cmd_identifier_token35] = ACTIONS(2178), - [aux_sym_cmd_identifier_token36] = ACTIONS(2178), - [anon_sym_true] = ACTIONS(2182), - [anon_sym_false] = ACTIONS(2182), - [anon_sym_null] = ACTIONS(2182), - [aux_sym_cmd_identifier_token38] = ACTIONS(2178), - [aux_sym_cmd_identifier_token39] = ACTIONS(2182), - [aux_sym_cmd_identifier_token40] = ACTIONS(2182), - [anon_sym_def] = ACTIONS(2178), - [anon_sym_export_DASHenv] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym_module] = ACTIONS(2178), - [anon_sym_use] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2182), - [anon_sym_error] = ACTIONS(2178), - [anon_sym_list] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_loop] = ACTIONS(2178), - [anon_sym_make] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_else] = ACTIONS(2178), - [anon_sym_match] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_catch] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_source] = ACTIONS(2178), - [anon_sym_source_DASHenv] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_hide] = ACTIONS(2178), - [anon_sym_hide_DASHenv] = ACTIONS(2178), - [anon_sym_overlay] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2178), - [aux_sym__val_number_decimal_token2] = ACTIONS(2182), - [anon_sym_DOT2] = ACTIONS(2178), - [aux_sym__val_number_decimal_token3] = ACTIONS(2182), - [aux_sym__val_number_token1] = ACTIONS(2182), - [aux_sym__val_number_token2] = ACTIONS(2182), - [aux_sym__val_number_token3] = ACTIONS(2182), - [anon_sym_LBRACK2] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2182), - [sym__str_single_quotes] = ACTIONS(2182), - [sym__str_back_ticks] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2182), + [anon_sym_export] = ACTIONS(1796), + [anon_sym_alias] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_let_DASHenv] = ACTIONS(1796), + [anon_sym_mut] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [aux_sym_cmd_identifier_token1] = ACTIONS(1796), + [aux_sym_cmd_identifier_token2] = ACTIONS(1796), + [aux_sym_cmd_identifier_token3] = ACTIONS(1796), + [aux_sym_cmd_identifier_token4] = ACTIONS(1796), + [aux_sym_cmd_identifier_token5] = ACTIONS(1796), + [aux_sym_cmd_identifier_token6] = ACTIONS(1796), + [aux_sym_cmd_identifier_token7] = ACTIONS(1796), + [aux_sym_cmd_identifier_token8] = ACTIONS(1796), + [aux_sym_cmd_identifier_token9] = ACTIONS(1796), + [aux_sym_cmd_identifier_token10] = ACTIONS(1796), + [aux_sym_cmd_identifier_token11] = ACTIONS(1796), + [aux_sym_cmd_identifier_token12] = ACTIONS(1796), + [aux_sym_cmd_identifier_token13] = ACTIONS(1796), + [aux_sym_cmd_identifier_token14] = ACTIONS(1796), + [aux_sym_cmd_identifier_token15] = ACTIONS(1796), + [aux_sym_cmd_identifier_token16] = ACTIONS(1796), + [aux_sym_cmd_identifier_token17] = ACTIONS(1796), + [aux_sym_cmd_identifier_token18] = ACTIONS(1796), + [aux_sym_cmd_identifier_token19] = ACTIONS(1796), + [aux_sym_cmd_identifier_token20] = ACTIONS(1796), + [aux_sym_cmd_identifier_token21] = ACTIONS(1796), + [aux_sym_cmd_identifier_token22] = ACTIONS(1796), + [aux_sym_cmd_identifier_token23] = ACTIONS(1796), + [aux_sym_cmd_identifier_token24] = ACTIONS(1796), + [aux_sym_cmd_identifier_token25] = ACTIONS(1796), + [aux_sym_cmd_identifier_token26] = ACTIONS(1796), + [aux_sym_cmd_identifier_token27] = ACTIONS(1796), + [aux_sym_cmd_identifier_token28] = ACTIONS(1796), + [aux_sym_cmd_identifier_token29] = ACTIONS(1796), + [aux_sym_cmd_identifier_token30] = ACTIONS(1796), + [aux_sym_cmd_identifier_token31] = ACTIONS(1796), + [aux_sym_cmd_identifier_token32] = ACTIONS(1796), + [aux_sym_cmd_identifier_token33] = ACTIONS(1796), + [aux_sym_cmd_identifier_token34] = ACTIONS(1796), + [aux_sym_cmd_identifier_token35] = ACTIONS(1796), + [aux_sym_cmd_identifier_token36] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [anon_sym_def] = ACTIONS(1796), + [anon_sym_export_DASHenv] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_module] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_error] = ACTIONS(1796), + [anon_sym_list] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_make] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_catch] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_source] = ACTIONS(1796), + [anon_sym_source_DASHenv] = ACTIONS(1796), + [anon_sym_register] = ACTIONS(1796), + [anon_sym_hide] = ACTIONS(1796), + [anon_sym_hide_DASHenv] = ACTIONS(1796), + [anon_sym_overlay] = ACTIONS(1796), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), + [sym__entry_separator] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), [anon_sym_POUND] = ACTIONS(3), }, [544] = { [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_alias] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_let_DASHenv] = ACTIONS(2325), - [anon_sym_mut] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [aux_sym_cmd_identifier_token1] = ACTIONS(2325), - [aux_sym_cmd_identifier_token2] = ACTIONS(2325), - [aux_sym_cmd_identifier_token3] = ACTIONS(2325), - [aux_sym_cmd_identifier_token4] = ACTIONS(2325), - [aux_sym_cmd_identifier_token5] = ACTIONS(2325), - [aux_sym_cmd_identifier_token6] = ACTIONS(2325), - [aux_sym_cmd_identifier_token7] = ACTIONS(2325), - [aux_sym_cmd_identifier_token8] = ACTIONS(2325), - [aux_sym_cmd_identifier_token9] = ACTIONS(2325), - [aux_sym_cmd_identifier_token10] = ACTIONS(2325), - [aux_sym_cmd_identifier_token11] = ACTIONS(2325), - [aux_sym_cmd_identifier_token12] = ACTIONS(2325), - [aux_sym_cmd_identifier_token13] = ACTIONS(2325), - [aux_sym_cmd_identifier_token14] = ACTIONS(2325), - [aux_sym_cmd_identifier_token15] = ACTIONS(2325), - [aux_sym_cmd_identifier_token16] = ACTIONS(2325), - [aux_sym_cmd_identifier_token17] = ACTIONS(2325), - [aux_sym_cmd_identifier_token18] = ACTIONS(2325), - [aux_sym_cmd_identifier_token19] = ACTIONS(2325), - [aux_sym_cmd_identifier_token20] = ACTIONS(2325), - [aux_sym_cmd_identifier_token21] = ACTIONS(2325), - [aux_sym_cmd_identifier_token22] = ACTIONS(2325), - [aux_sym_cmd_identifier_token23] = ACTIONS(2325), - [aux_sym_cmd_identifier_token24] = ACTIONS(2325), - [aux_sym_cmd_identifier_token25] = ACTIONS(2325), - [aux_sym_cmd_identifier_token26] = ACTIONS(2325), - [aux_sym_cmd_identifier_token27] = ACTIONS(2325), - [aux_sym_cmd_identifier_token28] = ACTIONS(2325), - [aux_sym_cmd_identifier_token29] = ACTIONS(2325), - [aux_sym_cmd_identifier_token30] = ACTIONS(2325), - [aux_sym_cmd_identifier_token31] = ACTIONS(2325), - [aux_sym_cmd_identifier_token32] = ACTIONS(2325), - [aux_sym_cmd_identifier_token33] = ACTIONS(2325), - [aux_sym_cmd_identifier_token34] = ACTIONS(2325), - [aux_sym_cmd_identifier_token35] = ACTIONS(2325), - [aux_sym_cmd_identifier_token36] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_null] = ACTIONS(2325), - [aux_sym_cmd_identifier_token38] = ACTIONS(2325), - [aux_sym_cmd_identifier_token39] = ACTIONS(2325), - [aux_sym_cmd_identifier_token40] = ACTIONS(2325), - [anon_sym_def] = ACTIONS(2325), - [anon_sym_export_DASHenv] = ACTIONS(2325), - [anon_sym_extern] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_use] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2325), - [anon_sym_DOLLAR] = ACTIONS(2325), - [anon_sym_error] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_in] = ACTIONS(2325), - [anon_sym_loop] = ACTIONS(2325), - [anon_sym_make] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_match] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_catch] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_source] = ACTIONS(2325), - [anon_sym_source_DASHenv] = ACTIONS(2325), - [anon_sym_register] = ACTIONS(2325), - [anon_sym_hide] = ACTIONS(2325), - [anon_sym_hide_DASHenv] = ACTIONS(2325), - [anon_sym_overlay] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2325), - [aux_sym__val_number_decimal_token2] = ACTIONS(2325), - [anon_sym_DOT2] = ACTIONS(2325), - [aux_sym__val_number_decimal_token3] = ACTIONS(2325), - [aux_sym__val_number_token1] = ACTIONS(2325), - [aux_sym__val_number_token2] = ACTIONS(2325), - [aux_sym__val_number_token3] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2325), - [sym__str_single_quotes] = ACTIONS(2325), - [sym__str_back_ticks] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2325), - [sym__entry_separator] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2359), + [anon_sym_alias] = ACTIONS(2359), + [anon_sym_let] = ACTIONS(2359), + [anon_sym_let_DASHenv] = ACTIONS(2359), + [anon_sym_mut] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [aux_sym_cmd_identifier_token1] = ACTIONS(2359), + [aux_sym_cmd_identifier_token2] = ACTIONS(2359), + [aux_sym_cmd_identifier_token3] = ACTIONS(2359), + [aux_sym_cmd_identifier_token4] = ACTIONS(2359), + [aux_sym_cmd_identifier_token5] = ACTIONS(2359), + [aux_sym_cmd_identifier_token6] = ACTIONS(2359), + [aux_sym_cmd_identifier_token7] = ACTIONS(2359), + [aux_sym_cmd_identifier_token8] = ACTIONS(2359), + [aux_sym_cmd_identifier_token9] = ACTIONS(2359), + [aux_sym_cmd_identifier_token10] = ACTIONS(2359), + [aux_sym_cmd_identifier_token11] = ACTIONS(2359), + [aux_sym_cmd_identifier_token12] = ACTIONS(2359), + [aux_sym_cmd_identifier_token13] = ACTIONS(2359), + [aux_sym_cmd_identifier_token14] = ACTIONS(2359), + [aux_sym_cmd_identifier_token15] = ACTIONS(2359), + [aux_sym_cmd_identifier_token16] = ACTIONS(2359), + [aux_sym_cmd_identifier_token17] = ACTIONS(2359), + [aux_sym_cmd_identifier_token18] = ACTIONS(2359), + [aux_sym_cmd_identifier_token19] = ACTIONS(2359), + [aux_sym_cmd_identifier_token20] = ACTIONS(2359), + [aux_sym_cmd_identifier_token21] = ACTIONS(2359), + [aux_sym_cmd_identifier_token22] = ACTIONS(2359), + [aux_sym_cmd_identifier_token23] = ACTIONS(2359), + [aux_sym_cmd_identifier_token24] = ACTIONS(2359), + [aux_sym_cmd_identifier_token25] = ACTIONS(2359), + [aux_sym_cmd_identifier_token26] = ACTIONS(2359), + [aux_sym_cmd_identifier_token27] = ACTIONS(2359), + [aux_sym_cmd_identifier_token28] = ACTIONS(2359), + [aux_sym_cmd_identifier_token29] = ACTIONS(2359), + [aux_sym_cmd_identifier_token30] = ACTIONS(2359), + [aux_sym_cmd_identifier_token31] = ACTIONS(2359), + [aux_sym_cmd_identifier_token32] = ACTIONS(2359), + [aux_sym_cmd_identifier_token33] = ACTIONS(2359), + [aux_sym_cmd_identifier_token34] = ACTIONS(2359), + [aux_sym_cmd_identifier_token35] = ACTIONS(2359), + [aux_sym_cmd_identifier_token36] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2359), + [anon_sym_false] = ACTIONS(2359), + [anon_sym_null] = ACTIONS(2359), + [aux_sym_cmd_identifier_token38] = ACTIONS(2359), + [aux_sym_cmd_identifier_token39] = ACTIONS(2359), + [aux_sym_cmd_identifier_token40] = ACTIONS(2359), + [anon_sym_def] = ACTIONS(2359), + [anon_sym_export_DASHenv] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2359), + [anon_sym_use] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2359), + [anon_sym_error] = ACTIONS(2359), + [anon_sym_list] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_in] = ACTIONS(2359), + [anon_sym_loop] = ACTIONS(2359), + [anon_sym_make] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_do] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_source] = ACTIONS(2359), + [anon_sym_source_DASHenv] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_hide] = ACTIONS(2359), + [anon_sym_hide_DASHenv] = ACTIONS(2359), + [anon_sym_overlay] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_as] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2359), + [aux_sym__val_number_decimal_token1] = ACTIONS(2359), + [aux_sym__val_number_decimal_token2] = ACTIONS(2359), + [aux_sym__val_number_decimal_token3] = ACTIONS(2359), + [aux_sym__val_number_decimal_token4] = ACTIONS(2359), + [aux_sym__val_number_token1] = ACTIONS(2359), + [aux_sym__val_number_token2] = ACTIONS(2359), + [aux_sym__val_number_token3] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(2359), + [sym__str_single_quotes] = ACTIONS(2359), + [sym__str_back_ticks] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2359), + [sym__entry_separator] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_POUND] = ACTIONS(3), }, [545] = { [sym_comment] = STATE(545), - [anon_sym_export] = ACTIONS(2329), - [anon_sym_alias] = ACTIONS(2329), - [anon_sym_let] = ACTIONS(2329), - [anon_sym_let_DASHenv] = ACTIONS(2329), - [anon_sym_mut] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [aux_sym_cmd_identifier_token1] = ACTIONS(2329), - [aux_sym_cmd_identifier_token2] = ACTIONS(2329), - [aux_sym_cmd_identifier_token3] = ACTIONS(2329), - [aux_sym_cmd_identifier_token4] = ACTIONS(2329), - [aux_sym_cmd_identifier_token5] = ACTIONS(2329), - [aux_sym_cmd_identifier_token6] = ACTIONS(2329), - [aux_sym_cmd_identifier_token7] = ACTIONS(2329), - [aux_sym_cmd_identifier_token8] = ACTIONS(2329), - [aux_sym_cmd_identifier_token9] = ACTIONS(2329), - [aux_sym_cmd_identifier_token10] = ACTIONS(2329), - [aux_sym_cmd_identifier_token11] = ACTIONS(2329), - [aux_sym_cmd_identifier_token12] = ACTIONS(2329), - [aux_sym_cmd_identifier_token13] = ACTIONS(2329), - [aux_sym_cmd_identifier_token14] = ACTIONS(2329), - [aux_sym_cmd_identifier_token15] = ACTIONS(2329), - [aux_sym_cmd_identifier_token16] = ACTIONS(2329), - [aux_sym_cmd_identifier_token17] = ACTIONS(2329), - [aux_sym_cmd_identifier_token18] = ACTIONS(2329), - [aux_sym_cmd_identifier_token19] = ACTIONS(2329), - [aux_sym_cmd_identifier_token20] = ACTIONS(2329), - [aux_sym_cmd_identifier_token21] = ACTIONS(2329), - [aux_sym_cmd_identifier_token22] = ACTIONS(2329), - [aux_sym_cmd_identifier_token23] = ACTIONS(2329), - [aux_sym_cmd_identifier_token24] = ACTIONS(2329), - [aux_sym_cmd_identifier_token25] = ACTIONS(2329), - [aux_sym_cmd_identifier_token26] = ACTIONS(2329), - [aux_sym_cmd_identifier_token27] = ACTIONS(2329), - [aux_sym_cmd_identifier_token28] = ACTIONS(2329), - [aux_sym_cmd_identifier_token29] = ACTIONS(2329), - [aux_sym_cmd_identifier_token30] = ACTIONS(2329), - [aux_sym_cmd_identifier_token31] = ACTIONS(2329), - [aux_sym_cmd_identifier_token32] = ACTIONS(2329), - [aux_sym_cmd_identifier_token33] = ACTIONS(2329), - [aux_sym_cmd_identifier_token34] = ACTIONS(2329), - [aux_sym_cmd_identifier_token35] = ACTIONS(2329), - [aux_sym_cmd_identifier_token36] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2329), - [anon_sym_false] = ACTIONS(2329), - [anon_sym_null] = ACTIONS(2329), - [aux_sym_cmd_identifier_token38] = ACTIONS(2329), - [aux_sym_cmd_identifier_token39] = ACTIONS(2329), - [aux_sym_cmd_identifier_token40] = ACTIONS(2329), - [anon_sym_def] = ACTIONS(2329), - [anon_sym_export_DASHenv] = ACTIONS(2329), - [anon_sym_extern] = ACTIONS(2329), - [anon_sym_module] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2329), - [anon_sym_DOLLAR] = ACTIONS(2329), - [anon_sym_error] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_in] = ACTIONS(2329), - [anon_sym_loop] = ACTIONS(2329), - [anon_sym_make] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_match] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_catch] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_source] = ACTIONS(2329), - [anon_sym_source_DASHenv] = ACTIONS(2329), - [anon_sym_register] = ACTIONS(2329), - [anon_sym_hide] = ACTIONS(2329), - [anon_sym_hide_DASHenv] = ACTIONS(2329), - [anon_sym_overlay] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_as] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2329), - [aux_sym__val_number_decimal_token1] = ACTIONS(2329), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [anon_sym_DOT2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2329), - [aux_sym__val_number_token1] = ACTIONS(2329), - [aux_sym__val_number_token2] = ACTIONS(2329), - [aux_sym__val_number_token3] = ACTIONS(2329), - [anon_sym_DQUOTE] = ACTIONS(2329), - [sym__str_single_quotes] = ACTIONS(2329), - [sym__str_back_ticks] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2329), - [sym__entry_separator] = ACTIONS(2331), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1741), + [anon_sym_alias] = ACTIONS(1741), + [anon_sym_let] = ACTIONS(1741), + [anon_sym_let_DASHenv] = ACTIONS(1741), + [anon_sym_mut] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1741), + [aux_sym_cmd_identifier_token1] = ACTIONS(1741), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1741), + [aux_sym_cmd_identifier_token9] = ACTIONS(1741), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1741), + [aux_sym_cmd_identifier_token13] = ACTIONS(1741), + [aux_sym_cmd_identifier_token14] = ACTIONS(1741), + [aux_sym_cmd_identifier_token15] = ACTIONS(1741), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1741), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1741), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1741), + [anon_sym_export_DASHenv] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1741), + [anon_sym_module] = ACTIONS(1741), + [anon_sym_use] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1741), + [anon_sym_list] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1741), + [anon_sym_continue] = ACTIONS(1741), + [anon_sym_for] = ACTIONS(1741), + [anon_sym_in] = ACTIONS(1741), + [anon_sym_loop] = ACTIONS(1741), + [anon_sym_make] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_do] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1741), + [anon_sym_else] = ACTIONS(1741), + [anon_sym_match] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1741), + [anon_sym_catch] = ACTIONS(1741), + [anon_sym_return] = ACTIONS(1741), + [anon_sym_source] = ACTIONS(1741), + [anon_sym_source_DASHenv] = ACTIONS(1741), + [anon_sym_register] = ACTIONS(1741), + [anon_sym_hide] = ACTIONS(1741), + [anon_sym_hide_DASHenv] = ACTIONS(1741), + [anon_sym_overlay] = ACTIONS(1741), + [anon_sym_new] = ACTIONS(1741), + [anon_sym_as] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1741), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [sym__entry_separator] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(3), }, [546] = { [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(2333), - [anon_sym_alias] = ACTIONS(2333), - [anon_sym_let] = ACTIONS(2333), - [anon_sym_let_DASHenv] = ACTIONS(2333), - [anon_sym_mut] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [aux_sym_cmd_identifier_token1] = ACTIONS(2333), - [aux_sym_cmd_identifier_token2] = ACTIONS(2333), - [aux_sym_cmd_identifier_token3] = ACTIONS(2333), - [aux_sym_cmd_identifier_token4] = ACTIONS(2333), - [aux_sym_cmd_identifier_token5] = ACTIONS(2333), - [aux_sym_cmd_identifier_token6] = ACTIONS(2333), - [aux_sym_cmd_identifier_token7] = ACTIONS(2333), - [aux_sym_cmd_identifier_token8] = ACTIONS(2333), - [aux_sym_cmd_identifier_token9] = ACTIONS(2333), - [aux_sym_cmd_identifier_token10] = ACTIONS(2333), - [aux_sym_cmd_identifier_token11] = ACTIONS(2333), - [aux_sym_cmd_identifier_token12] = ACTIONS(2333), - [aux_sym_cmd_identifier_token13] = ACTIONS(2333), - [aux_sym_cmd_identifier_token14] = ACTIONS(2333), - [aux_sym_cmd_identifier_token15] = ACTIONS(2333), - [aux_sym_cmd_identifier_token16] = ACTIONS(2333), - [aux_sym_cmd_identifier_token17] = ACTIONS(2333), - [aux_sym_cmd_identifier_token18] = ACTIONS(2333), - [aux_sym_cmd_identifier_token19] = ACTIONS(2333), - [aux_sym_cmd_identifier_token20] = ACTIONS(2333), - [aux_sym_cmd_identifier_token21] = ACTIONS(2333), - [aux_sym_cmd_identifier_token22] = ACTIONS(2333), - [aux_sym_cmd_identifier_token23] = ACTIONS(2333), - [aux_sym_cmd_identifier_token24] = ACTIONS(2333), - [aux_sym_cmd_identifier_token25] = ACTIONS(2333), - [aux_sym_cmd_identifier_token26] = ACTIONS(2333), - [aux_sym_cmd_identifier_token27] = ACTIONS(2333), - [aux_sym_cmd_identifier_token28] = ACTIONS(2333), - [aux_sym_cmd_identifier_token29] = ACTIONS(2333), - [aux_sym_cmd_identifier_token30] = ACTIONS(2333), - [aux_sym_cmd_identifier_token31] = ACTIONS(2333), - [aux_sym_cmd_identifier_token32] = ACTIONS(2333), - [aux_sym_cmd_identifier_token33] = ACTIONS(2333), - [aux_sym_cmd_identifier_token34] = ACTIONS(2333), - [aux_sym_cmd_identifier_token35] = ACTIONS(2333), - [aux_sym_cmd_identifier_token36] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2333), - [anon_sym_false] = ACTIONS(2333), - [anon_sym_null] = ACTIONS(2333), - [aux_sym_cmd_identifier_token38] = ACTIONS(2333), - [aux_sym_cmd_identifier_token39] = ACTIONS(2333), - [aux_sym_cmd_identifier_token40] = ACTIONS(2333), - [anon_sym_def] = ACTIONS(2333), - [anon_sym_export_DASHenv] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2333), - [anon_sym_module] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_DOLLAR] = ACTIONS(2333), - [anon_sym_error] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_in] = ACTIONS(2333), - [anon_sym_loop] = ACTIONS(2333), - [anon_sym_make] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_else] = ACTIONS(2333), - [anon_sym_match] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_catch] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_source] = ACTIONS(2333), - [anon_sym_source_DASHenv] = ACTIONS(2333), - [anon_sym_register] = ACTIONS(2333), - [anon_sym_hide] = ACTIONS(2333), - [anon_sym_hide_DASHenv] = ACTIONS(2333), - [anon_sym_overlay] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_as] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2333), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2333), - [aux_sym__val_number_decimal_token1] = ACTIONS(2333), - [aux_sym__val_number_decimal_token2] = ACTIONS(2333), - [anon_sym_DOT2] = ACTIONS(2333), - [aux_sym__val_number_decimal_token3] = ACTIONS(2333), - [aux_sym__val_number_token1] = ACTIONS(2333), - [aux_sym__val_number_token2] = ACTIONS(2333), - [aux_sym__val_number_token3] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2333), - [sym__str_single_quotes] = ACTIONS(2333), - [sym__str_back_ticks] = ACTIONS(2333), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2333), - [sym__entry_separator] = ACTIONS(2335), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2363), + [anon_sym_alias] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_DASHenv] = ACTIONS(2363), + [anon_sym_mut] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [aux_sym_cmd_identifier_token1] = ACTIONS(2363), + [aux_sym_cmd_identifier_token2] = ACTIONS(2363), + [aux_sym_cmd_identifier_token3] = ACTIONS(2363), + [aux_sym_cmd_identifier_token4] = ACTIONS(2363), + [aux_sym_cmd_identifier_token5] = ACTIONS(2363), + [aux_sym_cmd_identifier_token6] = ACTIONS(2363), + [aux_sym_cmd_identifier_token7] = ACTIONS(2363), + [aux_sym_cmd_identifier_token8] = ACTIONS(2363), + [aux_sym_cmd_identifier_token9] = ACTIONS(2363), + [aux_sym_cmd_identifier_token10] = ACTIONS(2363), + [aux_sym_cmd_identifier_token11] = ACTIONS(2363), + [aux_sym_cmd_identifier_token12] = ACTIONS(2363), + [aux_sym_cmd_identifier_token13] = ACTIONS(2363), + [aux_sym_cmd_identifier_token14] = ACTIONS(2363), + [aux_sym_cmd_identifier_token15] = ACTIONS(2363), + [aux_sym_cmd_identifier_token16] = ACTIONS(2363), + [aux_sym_cmd_identifier_token17] = ACTIONS(2363), + [aux_sym_cmd_identifier_token18] = ACTIONS(2363), + [aux_sym_cmd_identifier_token19] = ACTIONS(2363), + [aux_sym_cmd_identifier_token20] = ACTIONS(2363), + [aux_sym_cmd_identifier_token21] = ACTIONS(2363), + [aux_sym_cmd_identifier_token22] = ACTIONS(2363), + [aux_sym_cmd_identifier_token23] = ACTIONS(2363), + [aux_sym_cmd_identifier_token24] = ACTIONS(2363), + [aux_sym_cmd_identifier_token25] = ACTIONS(2363), + [aux_sym_cmd_identifier_token26] = ACTIONS(2363), + [aux_sym_cmd_identifier_token27] = ACTIONS(2363), + [aux_sym_cmd_identifier_token28] = ACTIONS(2363), + [aux_sym_cmd_identifier_token29] = ACTIONS(2363), + [aux_sym_cmd_identifier_token30] = ACTIONS(2363), + [aux_sym_cmd_identifier_token31] = ACTIONS(2363), + [aux_sym_cmd_identifier_token32] = ACTIONS(2363), + [aux_sym_cmd_identifier_token33] = ACTIONS(2363), + [aux_sym_cmd_identifier_token34] = ACTIONS(2363), + [aux_sym_cmd_identifier_token35] = ACTIONS(2363), + [aux_sym_cmd_identifier_token36] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2363), + [anon_sym_false] = ACTIONS(2363), + [anon_sym_null] = ACTIONS(2363), + [aux_sym_cmd_identifier_token38] = ACTIONS(2363), + [aux_sym_cmd_identifier_token39] = ACTIONS(2363), + [aux_sym_cmd_identifier_token40] = ACTIONS(2363), + [anon_sym_def] = ACTIONS(2363), + [anon_sym_export_DASHenv] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2363), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_error] = ACTIONS(2363), + [anon_sym_list] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_in] = ACTIONS(2363), + [anon_sym_loop] = ACTIONS(2363), + [anon_sym_make] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_else] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_catch] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_source] = ACTIONS(2363), + [anon_sym_source_DASHenv] = ACTIONS(2363), + [anon_sym_register] = ACTIONS(2363), + [anon_sym_hide] = ACTIONS(2363), + [anon_sym_hide_DASHenv] = ACTIONS(2363), + [anon_sym_overlay] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2363), + [aux_sym__val_number_decimal_token1] = ACTIONS(2363), + [aux_sym__val_number_decimal_token2] = ACTIONS(2363), + [aux_sym__val_number_decimal_token3] = ACTIONS(2363), + [aux_sym__val_number_decimal_token4] = ACTIONS(2363), + [aux_sym__val_number_token1] = ACTIONS(2363), + [aux_sym__val_number_token2] = ACTIONS(2363), + [aux_sym__val_number_token3] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym__str_single_quotes] = ACTIONS(2363), + [sym__str_back_ticks] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2363), + [sym__entry_separator] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_POUND] = ACTIONS(3), }, [547] = { [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(1764), - [anon_sym_alias] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_let_DASHenv] = ACTIONS(1764), - [anon_sym_mut] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [aux_sym_cmd_identifier_token1] = ACTIONS(1764), - [aux_sym_cmd_identifier_token2] = ACTIONS(1764), - [aux_sym_cmd_identifier_token3] = ACTIONS(1764), - [aux_sym_cmd_identifier_token4] = ACTIONS(1764), - [aux_sym_cmd_identifier_token5] = ACTIONS(1764), - [aux_sym_cmd_identifier_token6] = ACTIONS(1764), - [aux_sym_cmd_identifier_token7] = ACTIONS(1764), - [aux_sym_cmd_identifier_token8] = ACTIONS(1764), - [aux_sym_cmd_identifier_token9] = ACTIONS(1764), - [aux_sym_cmd_identifier_token10] = ACTIONS(1764), - [aux_sym_cmd_identifier_token11] = ACTIONS(1764), - [aux_sym_cmd_identifier_token12] = ACTIONS(1764), - [aux_sym_cmd_identifier_token13] = ACTIONS(1764), - [aux_sym_cmd_identifier_token14] = ACTIONS(1764), - [aux_sym_cmd_identifier_token15] = ACTIONS(1764), - [aux_sym_cmd_identifier_token16] = ACTIONS(1764), - [aux_sym_cmd_identifier_token17] = ACTIONS(1764), - [aux_sym_cmd_identifier_token18] = ACTIONS(1764), - [aux_sym_cmd_identifier_token19] = ACTIONS(1764), - [aux_sym_cmd_identifier_token20] = ACTIONS(1764), - [aux_sym_cmd_identifier_token21] = ACTIONS(1764), - [aux_sym_cmd_identifier_token22] = ACTIONS(1764), - [aux_sym_cmd_identifier_token23] = ACTIONS(1764), - [aux_sym_cmd_identifier_token24] = ACTIONS(1764), - [aux_sym_cmd_identifier_token25] = ACTIONS(1764), - [aux_sym_cmd_identifier_token26] = ACTIONS(1764), - [aux_sym_cmd_identifier_token27] = ACTIONS(1764), - [aux_sym_cmd_identifier_token28] = ACTIONS(1764), - [aux_sym_cmd_identifier_token29] = ACTIONS(1764), - [aux_sym_cmd_identifier_token30] = ACTIONS(1764), - [aux_sym_cmd_identifier_token31] = ACTIONS(1764), - [aux_sym_cmd_identifier_token32] = ACTIONS(1764), - [aux_sym_cmd_identifier_token33] = ACTIONS(1764), - [aux_sym_cmd_identifier_token34] = ACTIONS(1764), - [aux_sym_cmd_identifier_token35] = ACTIONS(1764), - [aux_sym_cmd_identifier_token36] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_null] = ACTIONS(1764), - [aux_sym_cmd_identifier_token38] = ACTIONS(1764), - [aux_sym_cmd_identifier_token39] = ACTIONS(1764), - [aux_sym_cmd_identifier_token40] = ACTIONS(1764), - [anon_sym_def] = ACTIONS(1764), - [anon_sym_export_DASHenv] = ACTIONS(1764), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_module] = ACTIONS(1764), - [anon_sym_use] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1764), - [anon_sym_error] = ACTIONS(1764), - [anon_sym_list] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_loop] = ACTIONS(1764), - [anon_sym_make] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_do] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_match] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_catch] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_source] = ACTIONS(1764), - [anon_sym_source_DASHenv] = ACTIONS(1764), - [anon_sym_register] = ACTIONS(1764), - [anon_sym_hide] = ACTIONS(1764), - [anon_sym_hide_DASHenv] = ACTIONS(1764), - [anon_sym_overlay] = ACTIONS(1764), - [anon_sym_new] = ACTIONS(1764), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1764), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1764), - [aux_sym__val_number_decimal_token1] = ACTIONS(1764), - [aux_sym__val_number_decimal_token2] = ACTIONS(1764), - [anon_sym_DOT2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(1764), - [aux_sym__val_number_token2] = ACTIONS(1764), - [aux_sym__val_number_token3] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [sym__str_single_quotes] = ACTIONS(1764), - [sym__str_back_ticks] = ACTIONS(1764), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1764), - [sym__entry_separator] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2367), + [anon_sym_alias] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_let_DASHenv] = ACTIONS(2367), + [anon_sym_mut] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [aux_sym_cmd_identifier_token1] = ACTIONS(2367), + [aux_sym_cmd_identifier_token2] = ACTIONS(2367), + [aux_sym_cmd_identifier_token3] = ACTIONS(2367), + [aux_sym_cmd_identifier_token4] = ACTIONS(2367), + [aux_sym_cmd_identifier_token5] = ACTIONS(2367), + [aux_sym_cmd_identifier_token6] = ACTIONS(2367), + [aux_sym_cmd_identifier_token7] = ACTIONS(2367), + [aux_sym_cmd_identifier_token8] = ACTIONS(2367), + [aux_sym_cmd_identifier_token9] = ACTIONS(2367), + [aux_sym_cmd_identifier_token10] = ACTIONS(2367), + [aux_sym_cmd_identifier_token11] = ACTIONS(2367), + [aux_sym_cmd_identifier_token12] = ACTIONS(2367), + [aux_sym_cmd_identifier_token13] = ACTIONS(2367), + [aux_sym_cmd_identifier_token14] = ACTIONS(2367), + [aux_sym_cmd_identifier_token15] = ACTIONS(2367), + [aux_sym_cmd_identifier_token16] = ACTIONS(2367), + [aux_sym_cmd_identifier_token17] = ACTIONS(2367), + [aux_sym_cmd_identifier_token18] = ACTIONS(2367), + [aux_sym_cmd_identifier_token19] = ACTIONS(2367), + [aux_sym_cmd_identifier_token20] = ACTIONS(2367), + [aux_sym_cmd_identifier_token21] = ACTIONS(2367), + [aux_sym_cmd_identifier_token22] = ACTIONS(2367), + [aux_sym_cmd_identifier_token23] = ACTIONS(2367), + [aux_sym_cmd_identifier_token24] = ACTIONS(2367), + [aux_sym_cmd_identifier_token25] = ACTIONS(2367), + [aux_sym_cmd_identifier_token26] = ACTIONS(2367), + [aux_sym_cmd_identifier_token27] = ACTIONS(2367), + [aux_sym_cmd_identifier_token28] = ACTIONS(2367), + [aux_sym_cmd_identifier_token29] = ACTIONS(2367), + [aux_sym_cmd_identifier_token30] = ACTIONS(2367), + [aux_sym_cmd_identifier_token31] = ACTIONS(2367), + [aux_sym_cmd_identifier_token32] = ACTIONS(2367), + [aux_sym_cmd_identifier_token33] = ACTIONS(2367), + [aux_sym_cmd_identifier_token34] = ACTIONS(2367), + [aux_sym_cmd_identifier_token35] = ACTIONS(2367), + [aux_sym_cmd_identifier_token36] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(2367), + [anon_sym_false] = ACTIONS(2367), + [anon_sym_null] = ACTIONS(2367), + [aux_sym_cmd_identifier_token38] = ACTIONS(2367), + [aux_sym_cmd_identifier_token39] = ACTIONS(2367), + [aux_sym_cmd_identifier_token40] = ACTIONS(2367), + [anon_sym_def] = ACTIONS(2367), + [anon_sym_export_DASHenv] = ACTIONS(2367), + [anon_sym_extern] = ACTIONS(2367), + [anon_sym_module] = ACTIONS(2367), + [anon_sym_use] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2367), + [anon_sym_error] = ACTIONS(2367), + [anon_sym_list] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_in] = ACTIONS(2367), + [anon_sym_loop] = ACTIONS(2367), + [anon_sym_make] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_do] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_else] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_try] = ACTIONS(2367), + [anon_sym_catch] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_source] = ACTIONS(2367), + [anon_sym_source_DASHenv] = ACTIONS(2367), + [anon_sym_register] = ACTIONS(2367), + [anon_sym_hide] = ACTIONS(2367), + [anon_sym_hide_DASHenv] = ACTIONS(2367), + [anon_sym_overlay] = ACTIONS(2367), + [anon_sym_new] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2367), + [aux_sym__val_number_decimal_token1] = ACTIONS(2367), + [aux_sym__val_number_decimal_token2] = ACTIONS(2367), + [aux_sym__val_number_decimal_token3] = ACTIONS(2367), + [aux_sym__val_number_decimal_token4] = ACTIONS(2367), + [aux_sym__val_number_token1] = ACTIONS(2367), + [aux_sym__val_number_token2] = ACTIONS(2367), + [aux_sym__val_number_token3] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2367), + [sym__str_single_quotes] = ACTIONS(2367), + [sym__str_back_ticks] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2367), + [sym__entry_separator] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(3), }, [548] = { [sym_comment] = STATE(548), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_alias] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_let_DASHenv] = ACTIONS(2337), - [anon_sym_mut] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [aux_sym_cmd_identifier_token1] = ACTIONS(2337), - [aux_sym_cmd_identifier_token2] = ACTIONS(2337), - [aux_sym_cmd_identifier_token3] = ACTIONS(2337), - [aux_sym_cmd_identifier_token4] = ACTIONS(2337), - [aux_sym_cmd_identifier_token5] = ACTIONS(2337), - [aux_sym_cmd_identifier_token6] = ACTIONS(2337), - [aux_sym_cmd_identifier_token7] = ACTIONS(2337), - [aux_sym_cmd_identifier_token8] = ACTIONS(2337), - [aux_sym_cmd_identifier_token9] = ACTIONS(2337), - [aux_sym_cmd_identifier_token10] = ACTIONS(2337), - [aux_sym_cmd_identifier_token11] = ACTIONS(2337), - [aux_sym_cmd_identifier_token12] = ACTIONS(2337), - [aux_sym_cmd_identifier_token13] = ACTIONS(2337), - [aux_sym_cmd_identifier_token14] = ACTIONS(2337), - [aux_sym_cmd_identifier_token15] = ACTIONS(2337), - [aux_sym_cmd_identifier_token16] = ACTIONS(2337), - [aux_sym_cmd_identifier_token17] = ACTIONS(2337), - [aux_sym_cmd_identifier_token18] = ACTIONS(2337), - [aux_sym_cmd_identifier_token19] = ACTIONS(2337), - [aux_sym_cmd_identifier_token20] = ACTIONS(2337), - [aux_sym_cmd_identifier_token21] = ACTIONS(2337), - [aux_sym_cmd_identifier_token22] = ACTIONS(2337), - [aux_sym_cmd_identifier_token23] = ACTIONS(2337), - [aux_sym_cmd_identifier_token24] = ACTIONS(2337), - [aux_sym_cmd_identifier_token25] = ACTIONS(2337), - [aux_sym_cmd_identifier_token26] = ACTIONS(2337), - [aux_sym_cmd_identifier_token27] = ACTIONS(2337), - [aux_sym_cmd_identifier_token28] = ACTIONS(2337), - [aux_sym_cmd_identifier_token29] = ACTIONS(2337), - [aux_sym_cmd_identifier_token30] = ACTIONS(2337), - [aux_sym_cmd_identifier_token31] = ACTIONS(2337), - [aux_sym_cmd_identifier_token32] = ACTIONS(2337), - [aux_sym_cmd_identifier_token33] = ACTIONS(2337), - [aux_sym_cmd_identifier_token34] = ACTIONS(2337), - [aux_sym_cmd_identifier_token35] = ACTIONS(2337), - [aux_sym_cmd_identifier_token36] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [anon_sym_null] = ACTIONS(2337), - [aux_sym_cmd_identifier_token38] = ACTIONS(2337), - [aux_sym_cmd_identifier_token39] = ACTIONS(2337), - [aux_sym_cmd_identifier_token40] = ACTIONS(2337), - [anon_sym_def] = ACTIONS(2337), - [anon_sym_export_DASHenv] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym_module] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_DOLLAR] = ACTIONS(2337), - [anon_sym_error] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_in] = ACTIONS(2337), - [anon_sym_loop] = ACTIONS(2337), - [anon_sym_make] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_source] = ACTIONS(2337), - [anon_sym_source_DASHenv] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_hide] = ACTIONS(2337), - [anon_sym_hide_DASHenv] = ACTIONS(2337), - [anon_sym_overlay] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_as] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2337), - [aux_sym__val_number_decimal_token1] = ACTIONS(2337), - [aux_sym__val_number_decimal_token2] = ACTIONS(2337), - [anon_sym_DOT2] = ACTIONS(2337), - [aux_sym__val_number_decimal_token3] = ACTIONS(2337), - [aux_sym__val_number_token1] = ACTIONS(2337), - [aux_sym__val_number_token2] = ACTIONS(2337), - [aux_sym__val_number_token3] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2337), - [sym__str_single_quotes] = ACTIONS(2337), - [sym__str_back_ticks] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2337), - [sym__entry_separator] = ACTIONS(2339), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1899), + [anon_sym_alias] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_let_DASHenv] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [aux_sym_cmd_identifier_token1] = ACTIONS(1899), + [aux_sym_cmd_identifier_token2] = ACTIONS(1899), + [aux_sym_cmd_identifier_token3] = ACTIONS(1899), + [aux_sym_cmd_identifier_token4] = ACTIONS(1899), + [aux_sym_cmd_identifier_token5] = ACTIONS(1899), + [aux_sym_cmd_identifier_token6] = ACTIONS(1899), + [aux_sym_cmd_identifier_token7] = ACTIONS(1899), + [aux_sym_cmd_identifier_token8] = ACTIONS(1899), + [aux_sym_cmd_identifier_token9] = ACTIONS(1899), + [aux_sym_cmd_identifier_token10] = ACTIONS(1899), + [aux_sym_cmd_identifier_token11] = ACTIONS(1899), + [aux_sym_cmd_identifier_token12] = ACTIONS(1899), + [aux_sym_cmd_identifier_token13] = ACTIONS(1899), + [aux_sym_cmd_identifier_token14] = ACTIONS(1899), + [aux_sym_cmd_identifier_token15] = ACTIONS(1899), + [aux_sym_cmd_identifier_token16] = ACTIONS(1899), + [aux_sym_cmd_identifier_token17] = ACTIONS(1899), + [aux_sym_cmd_identifier_token18] = ACTIONS(1899), + [aux_sym_cmd_identifier_token19] = ACTIONS(1899), + [aux_sym_cmd_identifier_token20] = ACTIONS(1899), + [aux_sym_cmd_identifier_token21] = ACTIONS(1899), + [aux_sym_cmd_identifier_token22] = ACTIONS(1899), + [aux_sym_cmd_identifier_token23] = ACTIONS(1899), + [aux_sym_cmd_identifier_token24] = ACTIONS(1899), + [aux_sym_cmd_identifier_token25] = ACTIONS(1899), + [aux_sym_cmd_identifier_token26] = ACTIONS(1899), + [aux_sym_cmd_identifier_token27] = ACTIONS(1899), + [aux_sym_cmd_identifier_token28] = ACTIONS(1899), + [aux_sym_cmd_identifier_token29] = ACTIONS(1899), + [aux_sym_cmd_identifier_token30] = ACTIONS(1899), + [aux_sym_cmd_identifier_token31] = ACTIONS(1899), + [aux_sym_cmd_identifier_token32] = ACTIONS(1899), + [aux_sym_cmd_identifier_token33] = ACTIONS(1899), + [aux_sym_cmd_identifier_token34] = ACTIONS(1899), + [aux_sym_cmd_identifier_token35] = ACTIONS(1899), + [aux_sym_cmd_identifier_token36] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_null] = ACTIONS(1899), + [aux_sym_cmd_identifier_token38] = ACTIONS(1899), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_export_DASHenv] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_module] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_error] = ACTIONS(1899), + [anon_sym_list] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_make] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_source] = ACTIONS(1899), + [anon_sym_source_DASHenv] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_hide] = ACTIONS(1899), + [anon_sym_hide_DASHenv] = ACTIONS(1899), + [anon_sym_overlay] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1899), + [aux_sym__val_number_decimal_token3] = ACTIONS(1899), + [aux_sym__val_number_decimal_token4] = ACTIONS(1899), + [aux_sym__val_number_token1] = ACTIONS(1899), + [aux_sym__val_number_token2] = ACTIONS(1899), + [aux_sym__val_number_token3] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), + [sym__entry_separator] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(3), }, [549] = { [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [aux_sym_cmd_identifier_token2] = ACTIONS(2341), - [aux_sym_cmd_identifier_token3] = ACTIONS(2341), - [aux_sym_cmd_identifier_token4] = ACTIONS(2341), - [aux_sym_cmd_identifier_token5] = ACTIONS(2341), - [aux_sym_cmd_identifier_token6] = ACTIONS(2341), - [aux_sym_cmd_identifier_token7] = ACTIONS(2341), - [aux_sym_cmd_identifier_token8] = ACTIONS(2341), - [aux_sym_cmd_identifier_token9] = ACTIONS(2341), - [aux_sym_cmd_identifier_token10] = ACTIONS(2341), - [aux_sym_cmd_identifier_token11] = ACTIONS(2341), - [aux_sym_cmd_identifier_token12] = ACTIONS(2341), - [aux_sym_cmd_identifier_token13] = ACTIONS(2341), - [aux_sym_cmd_identifier_token14] = ACTIONS(2341), - [aux_sym_cmd_identifier_token15] = ACTIONS(2341), - [aux_sym_cmd_identifier_token16] = ACTIONS(2341), - [aux_sym_cmd_identifier_token17] = ACTIONS(2341), - [aux_sym_cmd_identifier_token18] = ACTIONS(2341), - [aux_sym_cmd_identifier_token19] = ACTIONS(2341), - [aux_sym_cmd_identifier_token20] = ACTIONS(2341), - [aux_sym_cmd_identifier_token21] = ACTIONS(2341), - [aux_sym_cmd_identifier_token22] = ACTIONS(2341), - [aux_sym_cmd_identifier_token23] = ACTIONS(2341), - [aux_sym_cmd_identifier_token24] = ACTIONS(2341), - [aux_sym_cmd_identifier_token25] = ACTIONS(2341), - [aux_sym_cmd_identifier_token26] = ACTIONS(2341), - [aux_sym_cmd_identifier_token27] = ACTIONS(2341), - [aux_sym_cmd_identifier_token28] = ACTIONS(2341), - [aux_sym_cmd_identifier_token29] = ACTIONS(2341), - [aux_sym_cmd_identifier_token30] = ACTIONS(2341), - [aux_sym_cmd_identifier_token31] = ACTIONS(2341), - [aux_sym_cmd_identifier_token32] = ACTIONS(2341), - [aux_sym_cmd_identifier_token33] = ACTIONS(2341), - [aux_sym_cmd_identifier_token34] = ACTIONS(2341), - [aux_sym_cmd_identifier_token35] = ACTIONS(2341), - [aux_sym_cmd_identifier_token36] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [aux_sym_cmd_identifier_token38] = ACTIONS(2341), - [aux_sym_cmd_identifier_token39] = ACTIONS(2341), - [aux_sym_cmd_identifier_token40] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_make] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_catch] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), - [aux_sym__val_number_decimal_token1] = ACTIONS(2341), - [aux_sym__val_number_decimal_token2] = ACTIONS(2341), - [anon_sym_DOT2] = ACTIONS(2341), - [aux_sym__val_number_decimal_token3] = ACTIONS(2341), - [aux_sym__val_number_token1] = ACTIONS(2341), - [aux_sym__val_number_token2] = ACTIONS(2341), - [aux_sym__val_number_token3] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym__str_single_quotes] = ACTIONS(2341), - [sym__str_back_ticks] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), - [sym__entry_separator] = ACTIONS(2343), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_alias] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_let_DASHenv] = ACTIONS(1835), + [anon_sym_mut] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [aux_sym_cmd_identifier_token1] = ACTIONS(1835), + [aux_sym_cmd_identifier_token2] = ACTIONS(1835), + [aux_sym_cmd_identifier_token3] = ACTIONS(1835), + [aux_sym_cmd_identifier_token4] = ACTIONS(1835), + [aux_sym_cmd_identifier_token5] = ACTIONS(1835), + [aux_sym_cmd_identifier_token6] = ACTIONS(1835), + [aux_sym_cmd_identifier_token7] = ACTIONS(1835), + [aux_sym_cmd_identifier_token8] = ACTIONS(1835), + [aux_sym_cmd_identifier_token9] = ACTIONS(1835), + [aux_sym_cmd_identifier_token10] = ACTIONS(1835), + [aux_sym_cmd_identifier_token11] = ACTIONS(1835), + [aux_sym_cmd_identifier_token12] = ACTIONS(1835), + [aux_sym_cmd_identifier_token13] = ACTIONS(1835), + [aux_sym_cmd_identifier_token14] = ACTIONS(1835), + [aux_sym_cmd_identifier_token15] = ACTIONS(1835), + [aux_sym_cmd_identifier_token16] = ACTIONS(1835), + [aux_sym_cmd_identifier_token17] = ACTIONS(1835), + [aux_sym_cmd_identifier_token18] = ACTIONS(1835), + [aux_sym_cmd_identifier_token19] = ACTIONS(1835), + [aux_sym_cmd_identifier_token20] = ACTIONS(1835), + [aux_sym_cmd_identifier_token21] = ACTIONS(1835), + [aux_sym_cmd_identifier_token22] = ACTIONS(1835), + [aux_sym_cmd_identifier_token23] = ACTIONS(1835), + [aux_sym_cmd_identifier_token24] = ACTIONS(1835), + [aux_sym_cmd_identifier_token25] = ACTIONS(1835), + [aux_sym_cmd_identifier_token26] = ACTIONS(1835), + [aux_sym_cmd_identifier_token27] = ACTIONS(1835), + [aux_sym_cmd_identifier_token28] = ACTIONS(1835), + [aux_sym_cmd_identifier_token29] = ACTIONS(1835), + [aux_sym_cmd_identifier_token30] = ACTIONS(1835), + [aux_sym_cmd_identifier_token31] = ACTIONS(1835), + [aux_sym_cmd_identifier_token32] = ACTIONS(1835), + [aux_sym_cmd_identifier_token33] = ACTIONS(1835), + [aux_sym_cmd_identifier_token34] = ACTIONS(1835), + [aux_sym_cmd_identifier_token35] = ACTIONS(1835), + [aux_sym_cmd_identifier_token36] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [anon_sym_null] = ACTIONS(1835), + [aux_sym_cmd_identifier_token38] = ACTIONS(1835), + [aux_sym_cmd_identifier_token39] = ACTIONS(1835), + [aux_sym_cmd_identifier_token40] = ACTIONS(1835), + [anon_sym_def] = ACTIONS(1835), + [anon_sym_export_DASHenv] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_error] = ACTIONS(1835), + [anon_sym_list] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_in] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_make] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_catch] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_source] = ACTIONS(1835), + [anon_sym_source_DASHenv] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1835), + [anon_sym_hide] = ACTIONS(1835), + [anon_sym_hide_DASHenv] = ACTIONS(1835), + [anon_sym_overlay] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_as] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1835), + [aux_sym__val_number_decimal_token3] = ACTIONS(1835), + [aux_sym__val_number_decimal_token4] = ACTIONS(1835), + [aux_sym__val_number_token1] = ACTIONS(1835), + [aux_sym__val_number_token2] = ACTIONS(1835), + [aux_sym__val_number_token3] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), + [sym__entry_separator] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(3), }, [550] = { [sym_comment] = STATE(550), - [anon_sym_export] = ACTIONS(1780), - [anon_sym_alias] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_let_DASHenv] = ACTIONS(1780), - [anon_sym_mut] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [aux_sym_cmd_identifier_token1] = ACTIONS(1780), - [aux_sym_cmd_identifier_token2] = ACTIONS(1780), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [aux_sym_cmd_identifier_token6] = ACTIONS(1780), - [aux_sym_cmd_identifier_token7] = ACTIONS(1780), - [aux_sym_cmd_identifier_token8] = ACTIONS(1780), - [aux_sym_cmd_identifier_token9] = ACTIONS(1780), - [aux_sym_cmd_identifier_token10] = ACTIONS(1780), - [aux_sym_cmd_identifier_token11] = ACTIONS(1780), - [aux_sym_cmd_identifier_token12] = ACTIONS(1780), - [aux_sym_cmd_identifier_token13] = ACTIONS(1780), - [aux_sym_cmd_identifier_token14] = ACTIONS(1780), - [aux_sym_cmd_identifier_token15] = ACTIONS(1780), - [aux_sym_cmd_identifier_token16] = ACTIONS(1780), - [aux_sym_cmd_identifier_token17] = ACTIONS(1780), - [aux_sym_cmd_identifier_token18] = ACTIONS(1780), - [aux_sym_cmd_identifier_token19] = ACTIONS(1780), - [aux_sym_cmd_identifier_token20] = ACTIONS(1780), - [aux_sym_cmd_identifier_token21] = ACTIONS(1780), - [aux_sym_cmd_identifier_token22] = ACTIONS(1780), - [aux_sym_cmd_identifier_token23] = ACTIONS(1780), - [aux_sym_cmd_identifier_token24] = ACTIONS(1780), - [aux_sym_cmd_identifier_token25] = ACTIONS(1780), - [aux_sym_cmd_identifier_token26] = ACTIONS(1780), - [aux_sym_cmd_identifier_token27] = ACTIONS(1780), - [aux_sym_cmd_identifier_token28] = ACTIONS(1780), - [aux_sym_cmd_identifier_token29] = ACTIONS(1780), - [aux_sym_cmd_identifier_token30] = ACTIONS(1780), - [aux_sym_cmd_identifier_token31] = ACTIONS(1780), - [aux_sym_cmd_identifier_token32] = ACTIONS(1780), - [aux_sym_cmd_identifier_token33] = ACTIONS(1780), - [aux_sym_cmd_identifier_token34] = ACTIONS(1780), - [aux_sym_cmd_identifier_token35] = ACTIONS(1780), - [aux_sym_cmd_identifier_token36] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [aux_sym_cmd_identifier_token38] = ACTIONS(1780), - [aux_sym_cmd_identifier_token39] = ACTIONS(1780), - [aux_sym_cmd_identifier_token40] = ACTIONS(1780), - [anon_sym_def] = ACTIONS(1780), - [anon_sym_export_DASHenv] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_module] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_error] = ACTIONS(1780), - [anon_sym_list] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_make] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_source] = ACTIONS(1780), - [anon_sym_source_DASHenv] = ACTIONS(1780), - [anon_sym_register] = ACTIONS(1780), - [anon_sym_hide] = ACTIONS(1780), - [anon_sym_hide_DASHenv] = ACTIONS(1780), - [anon_sym_overlay] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1780), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1780), - [anon_sym_DOT2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1780), - [aux_sym__val_number_token1] = ACTIONS(1780), - [aux_sym__val_number_token2] = ACTIONS(1780), - [aux_sym__val_number_token3] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym__str_single_quotes] = ACTIONS(1780), - [sym__str_back_ticks] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1780), - [sym__entry_separator] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_alias] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_let_DASHenv] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [aux_sym_cmd_identifier_token1] = ACTIONS(2371), + [aux_sym_cmd_identifier_token2] = ACTIONS(2371), + [aux_sym_cmd_identifier_token3] = ACTIONS(2371), + [aux_sym_cmd_identifier_token4] = ACTIONS(2371), + [aux_sym_cmd_identifier_token5] = ACTIONS(2371), + [aux_sym_cmd_identifier_token6] = ACTIONS(2371), + [aux_sym_cmd_identifier_token7] = ACTIONS(2371), + [aux_sym_cmd_identifier_token8] = ACTIONS(2371), + [aux_sym_cmd_identifier_token9] = ACTIONS(2371), + [aux_sym_cmd_identifier_token10] = ACTIONS(2371), + [aux_sym_cmd_identifier_token11] = ACTIONS(2371), + [aux_sym_cmd_identifier_token12] = ACTIONS(2371), + [aux_sym_cmd_identifier_token13] = ACTIONS(2371), + [aux_sym_cmd_identifier_token14] = ACTIONS(2371), + [aux_sym_cmd_identifier_token15] = ACTIONS(2371), + [aux_sym_cmd_identifier_token16] = ACTIONS(2371), + [aux_sym_cmd_identifier_token17] = ACTIONS(2371), + [aux_sym_cmd_identifier_token18] = ACTIONS(2371), + [aux_sym_cmd_identifier_token19] = ACTIONS(2371), + [aux_sym_cmd_identifier_token20] = ACTIONS(2371), + [aux_sym_cmd_identifier_token21] = ACTIONS(2371), + [aux_sym_cmd_identifier_token22] = ACTIONS(2371), + [aux_sym_cmd_identifier_token23] = ACTIONS(2371), + [aux_sym_cmd_identifier_token24] = ACTIONS(2371), + [aux_sym_cmd_identifier_token25] = ACTIONS(2371), + [aux_sym_cmd_identifier_token26] = ACTIONS(2371), + [aux_sym_cmd_identifier_token27] = ACTIONS(2371), + [aux_sym_cmd_identifier_token28] = ACTIONS(2371), + [aux_sym_cmd_identifier_token29] = ACTIONS(2371), + [aux_sym_cmd_identifier_token30] = ACTIONS(2371), + [aux_sym_cmd_identifier_token31] = ACTIONS(2371), + [aux_sym_cmd_identifier_token32] = ACTIONS(2371), + [aux_sym_cmd_identifier_token33] = ACTIONS(2371), + [aux_sym_cmd_identifier_token34] = ACTIONS(2371), + [aux_sym_cmd_identifier_token35] = ACTIONS(2371), + [aux_sym_cmd_identifier_token36] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [anon_sym_null] = ACTIONS(2371), + [aux_sym_cmd_identifier_token38] = ACTIONS(2371), + [aux_sym_cmd_identifier_token39] = ACTIONS(2371), + [aux_sym_cmd_identifier_token40] = ACTIONS(2371), + [anon_sym_def] = ACTIONS(2371), + [anon_sym_export_DASHenv] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2371), + [anon_sym_error] = ACTIONS(2371), + [anon_sym_list] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_in] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_make] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_do] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_else] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2371), + [anon_sym_catch] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_source] = ACTIONS(2371), + [anon_sym_source_DASHenv] = ACTIONS(2371), + [anon_sym_register] = ACTIONS(2371), + [anon_sym_hide] = ACTIONS(2371), + [anon_sym_hide_DASHenv] = ACTIONS(2371), + [anon_sym_overlay] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2371), + [aux_sym__val_number_decimal_token1] = ACTIONS(2371), + [aux_sym__val_number_decimal_token2] = ACTIONS(2371), + [aux_sym__val_number_decimal_token3] = ACTIONS(2371), + [aux_sym__val_number_decimal_token4] = ACTIONS(2371), + [aux_sym__val_number_token1] = ACTIONS(2371), + [aux_sym__val_number_token2] = ACTIONS(2371), + [aux_sym__val_number_token3] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [sym__str_single_quotes] = ACTIONS(2371), + [sym__str_back_ticks] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2371), + [sym__entry_separator] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(3), }, [551] = { [sym_comment] = STATE(551), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_alias] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_let_DASHenv] = ACTIONS(1788), - [anon_sym_mut] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [aux_sym_cmd_identifier_token1] = ACTIONS(1788), - [aux_sym_cmd_identifier_token2] = ACTIONS(1788), - [aux_sym_cmd_identifier_token3] = ACTIONS(1788), - [aux_sym_cmd_identifier_token4] = ACTIONS(1788), - [aux_sym_cmd_identifier_token5] = ACTIONS(1788), - [aux_sym_cmd_identifier_token6] = ACTIONS(1788), - [aux_sym_cmd_identifier_token7] = ACTIONS(1788), - [aux_sym_cmd_identifier_token8] = ACTIONS(1788), - [aux_sym_cmd_identifier_token9] = ACTIONS(1788), - [aux_sym_cmd_identifier_token10] = ACTIONS(1788), - [aux_sym_cmd_identifier_token11] = ACTIONS(1788), - [aux_sym_cmd_identifier_token12] = ACTIONS(1788), - [aux_sym_cmd_identifier_token13] = ACTIONS(1788), - [aux_sym_cmd_identifier_token14] = ACTIONS(1788), - [aux_sym_cmd_identifier_token15] = ACTIONS(1788), - [aux_sym_cmd_identifier_token16] = ACTIONS(1788), - [aux_sym_cmd_identifier_token17] = ACTIONS(1788), - [aux_sym_cmd_identifier_token18] = ACTIONS(1788), - [aux_sym_cmd_identifier_token19] = ACTIONS(1788), - [aux_sym_cmd_identifier_token20] = ACTIONS(1788), - [aux_sym_cmd_identifier_token21] = ACTIONS(1788), - [aux_sym_cmd_identifier_token22] = ACTIONS(1788), - [aux_sym_cmd_identifier_token23] = ACTIONS(1788), - [aux_sym_cmd_identifier_token24] = ACTIONS(1788), - [aux_sym_cmd_identifier_token25] = ACTIONS(1788), - [aux_sym_cmd_identifier_token26] = ACTIONS(1788), - [aux_sym_cmd_identifier_token27] = ACTIONS(1788), - [aux_sym_cmd_identifier_token28] = ACTIONS(1788), - [aux_sym_cmd_identifier_token29] = ACTIONS(1788), - [aux_sym_cmd_identifier_token30] = ACTIONS(1788), - [aux_sym_cmd_identifier_token31] = ACTIONS(1788), - [aux_sym_cmd_identifier_token32] = ACTIONS(1788), - [aux_sym_cmd_identifier_token33] = ACTIONS(1788), - [aux_sym_cmd_identifier_token34] = ACTIONS(1788), - [aux_sym_cmd_identifier_token35] = ACTIONS(1788), - [aux_sym_cmd_identifier_token36] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [anon_sym_null] = ACTIONS(1788), - [aux_sym_cmd_identifier_token38] = ACTIONS(1788), - [aux_sym_cmd_identifier_token39] = ACTIONS(1788), - [aux_sym_cmd_identifier_token40] = ACTIONS(1788), - [anon_sym_def] = ACTIONS(1788), - [anon_sym_export_DASHenv] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1788), - [anon_sym_error] = ACTIONS(1788), - [anon_sym_list] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_make] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_do] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_else] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_try] = ACTIONS(1788), - [anon_sym_catch] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_source] = ACTIONS(1788), - [anon_sym_source_DASHenv] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_hide] = ACTIONS(1788), - [anon_sym_hide_DASHenv] = ACTIONS(1788), - [anon_sym_overlay] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_as] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1788), - [anon_sym_DOT2] = ACTIONS(1788), - [aux_sym__val_number_decimal_token3] = ACTIONS(1788), - [aux_sym__val_number_token1] = ACTIONS(1788), - [aux_sym__val_number_token2] = ACTIONS(1788), - [aux_sym__val_number_token3] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym__str_single_quotes] = ACTIONS(1788), - [sym__str_back_ticks] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), - [sym__entry_separator] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1589), + [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3), }, [552] = { [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(1792), - [anon_sym_alias] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_let_DASHenv] = ACTIONS(1792), - [anon_sym_mut] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [aux_sym_cmd_identifier_token1] = ACTIONS(1792), - [aux_sym_cmd_identifier_token2] = ACTIONS(1792), - [aux_sym_cmd_identifier_token3] = ACTIONS(1792), - [aux_sym_cmd_identifier_token4] = ACTIONS(1792), - [aux_sym_cmd_identifier_token5] = ACTIONS(1792), - [aux_sym_cmd_identifier_token6] = ACTIONS(1792), - [aux_sym_cmd_identifier_token7] = ACTIONS(1792), - [aux_sym_cmd_identifier_token8] = ACTIONS(1792), - [aux_sym_cmd_identifier_token9] = ACTIONS(1792), - [aux_sym_cmd_identifier_token10] = ACTIONS(1792), - [aux_sym_cmd_identifier_token11] = ACTIONS(1792), - [aux_sym_cmd_identifier_token12] = ACTIONS(1792), - [aux_sym_cmd_identifier_token13] = ACTIONS(1792), - [aux_sym_cmd_identifier_token14] = ACTIONS(1792), - [aux_sym_cmd_identifier_token15] = ACTIONS(1792), - [aux_sym_cmd_identifier_token16] = ACTIONS(1792), - [aux_sym_cmd_identifier_token17] = ACTIONS(1792), - [aux_sym_cmd_identifier_token18] = ACTIONS(1792), - [aux_sym_cmd_identifier_token19] = ACTIONS(1792), - [aux_sym_cmd_identifier_token20] = ACTIONS(1792), - [aux_sym_cmd_identifier_token21] = ACTIONS(1792), - [aux_sym_cmd_identifier_token22] = ACTIONS(1792), - [aux_sym_cmd_identifier_token23] = ACTIONS(1792), - [aux_sym_cmd_identifier_token24] = ACTIONS(1792), - [aux_sym_cmd_identifier_token25] = ACTIONS(1792), - [aux_sym_cmd_identifier_token26] = ACTIONS(1792), - [aux_sym_cmd_identifier_token27] = ACTIONS(1792), - [aux_sym_cmd_identifier_token28] = ACTIONS(1792), - [aux_sym_cmd_identifier_token29] = ACTIONS(1792), - [aux_sym_cmd_identifier_token30] = ACTIONS(1792), - [aux_sym_cmd_identifier_token31] = ACTIONS(1792), - [aux_sym_cmd_identifier_token32] = ACTIONS(1792), - [aux_sym_cmd_identifier_token33] = ACTIONS(1792), - [aux_sym_cmd_identifier_token34] = ACTIONS(1792), - [aux_sym_cmd_identifier_token35] = ACTIONS(1792), - [aux_sym_cmd_identifier_token36] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1792), - [aux_sym_cmd_identifier_token38] = ACTIONS(1792), - [aux_sym_cmd_identifier_token39] = ACTIONS(1792), - [aux_sym_cmd_identifier_token40] = ACTIONS(1792), - [anon_sym_def] = ACTIONS(1792), - [anon_sym_export_DASHenv] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_module] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_error] = ACTIONS(1792), - [anon_sym_list] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_make] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_do] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1792), - [anon_sym_catch] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_source] = ACTIONS(1792), - [anon_sym_source_DASHenv] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1792), - [anon_sym_hide] = ACTIONS(1792), - [anon_sym_hide_DASHenv] = ACTIONS(1792), - [anon_sym_overlay] = ACTIONS(1792), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1792), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [anon_sym_DOT2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1792), - [sym__entry_separator] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2375), + [anon_sym_alias] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_let_DASHenv] = ACTIONS(2375), + [anon_sym_mut] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [aux_sym_cmd_identifier_token1] = ACTIONS(2375), + [aux_sym_cmd_identifier_token2] = ACTIONS(2375), + [aux_sym_cmd_identifier_token3] = ACTIONS(2375), + [aux_sym_cmd_identifier_token4] = ACTIONS(2375), + [aux_sym_cmd_identifier_token5] = ACTIONS(2375), + [aux_sym_cmd_identifier_token6] = ACTIONS(2375), + [aux_sym_cmd_identifier_token7] = ACTIONS(2375), + [aux_sym_cmd_identifier_token8] = ACTIONS(2375), + [aux_sym_cmd_identifier_token9] = ACTIONS(2375), + [aux_sym_cmd_identifier_token10] = ACTIONS(2375), + [aux_sym_cmd_identifier_token11] = ACTIONS(2375), + [aux_sym_cmd_identifier_token12] = ACTIONS(2375), + [aux_sym_cmd_identifier_token13] = ACTIONS(2375), + [aux_sym_cmd_identifier_token14] = ACTIONS(2375), + [aux_sym_cmd_identifier_token15] = ACTIONS(2375), + [aux_sym_cmd_identifier_token16] = ACTIONS(2375), + [aux_sym_cmd_identifier_token17] = ACTIONS(2375), + [aux_sym_cmd_identifier_token18] = ACTIONS(2375), + [aux_sym_cmd_identifier_token19] = ACTIONS(2375), + [aux_sym_cmd_identifier_token20] = ACTIONS(2375), + [aux_sym_cmd_identifier_token21] = ACTIONS(2375), + [aux_sym_cmd_identifier_token22] = ACTIONS(2375), + [aux_sym_cmd_identifier_token23] = ACTIONS(2375), + [aux_sym_cmd_identifier_token24] = ACTIONS(2375), + [aux_sym_cmd_identifier_token25] = ACTIONS(2375), + [aux_sym_cmd_identifier_token26] = ACTIONS(2375), + [aux_sym_cmd_identifier_token27] = ACTIONS(2375), + [aux_sym_cmd_identifier_token28] = ACTIONS(2375), + [aux_sym_cmd_identifier_token29] = ACTIONS(2375), + [aux_sym_cmd_identifier_token30] = ACTIONS(2375), + [aux_sym_cmd_identifier_token31] = ACTIONS(2375), + [aux_sym_cmd_identifier_token32] = ACTIONS(2375), + [aux_sym_cmd_identifier_token33] = ACTIONS(2375), + [aux_sym_cmd_identifier_token34] = ACTIONS(2375), + [aux_sym_cmd_identifier_token35] = ACTIONS(2375), + [aux_sym_cmd_identifier_token36] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2375), + [anon_sym_false] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2375), + [aux_sym_cmd_identifier_token38] = ACTIONS(2375), + [aux_sym_cmd_identifier_token39] = ACTIONS(2375), + [aux_sym_cmd_identifier_token40] = ACTIONS(2375), + [anon_sym_def] = ACTIONS(2375), + [anon_sym_export_DASHenv] = ACTIONS(2375), + [anon_sym_extern] = ACTIONS(2375), + [anon_sym_module] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_error] = ACTIONS(2375), + [anon_sym_list] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_in] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_make] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [anon_sym_do] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_else] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_try] = ACTIONS(2375), + [anon_sym_catch] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_source] = ACTIONS(2375), + [anon_sym_source_DASHenv] = ACTIONS(2375), + [anon_sym_register] = ACTIONS(2375), + [anon_sym_hide] = ACTIONS(2375), + [anon_sym_hide_DASHenv] = ACTIONS(2375), + [anon_sym_overlay] = ACTIONS(2375), + [anon_sym_new] = ACTIONS(2375), + [anon_sym_as] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2375), + [aux_sym__val_number_decimal_token1] = ACTIONS(2375), + [aux_sym__val_number_decimal_token2] = ACTIONS(2375), + [aux_sym__val_number_decimal_token3] = ACTIONS(2375), + [aux_sym__val_number_decimal_token4] = ACTIONS(2375), + [aux_sym__val_number_token1] = ACTIONS(2375), + [aux_sym__val_number_token2] = ACTIONS(2375), + [aux_sym__val_number_token3] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(2375), + [sym__str_single_quotes] = ACTIONS(2375), + [sym__str_back_ticks] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2375), + [sym__entry_separator] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_POUND] = ACTIONS(3), }, [553] = { [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(2345), - [anon_sym_alias] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_let_DASHenv] = ACTIONS(2345), - [anon_sym_mut] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [aux_sym_cmd_identifier_token1] = ACTIONS(2345), - [aux_sym_cmd_identifier_token2] = ACTIONS(2345), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), - [aux_sym_cmd_identifier_token6] = ACTIONS(2345), - [aux_sym_cmd_identifier_token7] = ACTIONS(2345), - [aux_sym_cmd_identifier_token8] = ACTIONS(2345), - [aux_sym_cmd_identifier_token9] = ACTIONS(2345), - [aux_sym_cmd_identifier_token10] = ACTIONS(2345), - [aux_sym_cmd_identifier_token11] = ACTIONS(2345), - [aux_sym_cmd_identifier_token12] = ACTIONS(2345), - [aux_sym_cmd_identifier_token13] = ACTIONS(2345), - [aux_sym_cmd_identifier_token14] = ACTIONS(2345), - [aux_sym_cmd_identifier_token15] = ACTIONS(2345), - [aux_sym_cmd_identifier_token16] = ACTIONS(2345), - [aux_sym_cmd_identifier_token17] = ACTIONS(2345), - [aux_sym_cmd_identifier_token18] = ACTIONS(2345), - [aux_sym_cmd_identifier_token19] = ACTIONS(2345), - [aux_sym_cmd_identifier_token20] = ACTIONS(2345), - [aux_sym_cmd_identifier_token21] = ACTIONS(2345), - [aux_sym_cmd_identifier_token22] = ACTIONS(2345), - [aux_sym_cmd_identifier_token23] = ACTIONS(2345), - [aux_sym_cmd_identifier_token24] = ACTIONS(2345), - [aux_sym_cmd_identifier_token25] = ACTIONS(2345), - [aux_sym_cmd_identifier_token26] = ACTIONS(2345), - [aux_sym_cmd_identifier_token27] = ACTIONS(2345), - [aux_sym_cmd_identifier_token28] = ACTIONS(2345), - [aux_sym_cmd_identifier_token29] = ACTIONS(2345), - [aux_sym_cmd_identifier_token30] = ACTIONS(2345), - [aux_sym_cmd_identifier_token31] = ACTIONS(2345), - [aux_sym_cmd_identifier_token32] = ACTIONS(2345), - [aux_sym_cmd_identifier_token33] = ACTIONS(2345), - [aux_sym_cmd_identifier_token34] = ACTIONS(2345), - [aux_sym_cmd_identifier_token35] = ACTIONS(2345), - [aux_sym_cmd_identifier_token36] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2345), - [aux_sym_cmd_identifier_token38] = ACTIONS(2345), - [aux_sym_cmd_identifier_token39] = ACTIONS(2345), - [aux_sym_cmd_identifier_token40] = ACTIONS(2345), - [anon_sym_def] = ACTIONS(2345), - [anon_sym_export_DASHenv] = ACTIONS(2345), - [anon_sym_extern] = ACTIONS(2345), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_error] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_in] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_make] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_else] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_catch] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_source] = ACTIONS(2345), - [anon_sym_source_DASHenv] = ACTIONS(2345), - [anon_sym_register] = ACTIONS(2345), - [anon_sym_hide] = ACTIONS(2345), - [anon_sym_hide_DASHenv] = ACTIONS(2345), - [anon_sym_overlay] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2345), - [aux_sym__val_number_decimal_token1] = ACTIONS(2345), - [aux_sym__val_number_decimal_token2] = ACTIONS(2345), - [anon_sym_DOT2] = ACTIONS(2345), - [aux_sym__val_number_decimal_token3] = ACTIONS(2345), - [aux_sym__val_number_token1] = ACTIONS(2345), - [aux_sym__val_number_token2] = ACTIONS(2345), - [aux_sym__val_number_token3] = ACTIONS(2345), - [anon_sym_DQUOTE] = ACTIONS(2345), - [sym__str_single_quotes] = ACTIONS(2345), - [sym__str_back_ticks] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2345), - [sym__entry_separator] = ACTIONS(2347), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1569), + [aux_sym_cmd_identifier_token40] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1569), + [aux_sym__val_number_token2] = ACTIONS(1569), + [aux_sym__val_number_token3] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), }, [554] = { [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(1804), - [anon_sym_alias] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_let_DASHenv] = ACTIONS(1804), - [anon_sym_mut] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [aux_sym_cmd_identifier_token1] = ACTIONS(1804), - [aux_sym_cmd_identifier_token2] = ACTIONS(1804), - [aux_sym_cmd_identifier_token3] = ACTIONS(1804), - [aux_sym_cmd_identifier_token4] = ACTIONS(1804), - [aux_sym_cmd_identifier_token5] = ACTIONS(1804), - [aux_sym_cmd_identifier_token6] = ACTIONS(1804), - [aux_sym_cmd_identifier_token7] = ACTIONS(1804), - [aux_sym_cmd_identifier_token8] = ACTIONS(1804), - [aux_sym_cmd_identifier_token9] = ACTIONS(1804), - [aux_sym_cmd_identifier_token10] = ACTIONS(1804), - [aux_sym_cmd_identifier_token11] = ACTIONS(1804), - [aux_sym_cmd_identifier_token12] = ACTIONS(1804), - [aux_sym_cmd_identifier_token13] = ACTIONS(1804), - [aux_sym_cmd_identifier_token14] = ACTIONS(1804), - [aux_sym_cmd_identifier_token15] = ACTIONS(1804), - [aux_sym_cmd_identifier_token16] = ACTIONS(1804), - [aux_sym_cmd_identifier_token17] = ACTIONS(1804), - [aux_sym_cmd_identifier_token18] = ACTIONS(1804), - [aux_sym_cmd_identifier_token19] = ACTIONS(1804), - [aux_sym_cmd_identifier_token20] = ACTIONS(1804), - [aux_sym_cmd_identifier_token21] = ACTIONS(1804), - [aux_sym_cmd_identifier_token22] = ACTIONS(1804), - [aux_sym_cmd_identifier_token23] = ACTIONS(1804), - [aux_sym_cmd_identifier_token24] = ACTIONS(1804), - [aux_sym_cmd_identifier_token25] = ACTIONS(1804), - [aux_sym_cmd_identifier_token26] = ACTIONS(1804), - [aux_sym_cmd_identifier_token27] = ACTIONS(1804), - [aux_sym_cmd_identifier_token28] = ACTIONS(1804), - [aux_sym_cmd_identifier_token29] = ACTIONS(1804), - [aux_sym_cmd_identifier_token30] = ACTIONS(1804), - [aux_sym_cmd_identifier_token31] = ACTIONS(1804), - [aux_sym_cmd_identifier_token32] = ACTIONS(1804), - [aux_sym_cmd_identifier_token33] = ACTIONS(1804), - [aux_sym_cmd_identifier_token34] = ACTIONS(1804), - [aux_sym_cmd_identifier_token35] = ACTIONS(1804), - [aux_sym_cmd_identifier_token36] = ACTIONS(1804), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_null] = ACTIONS(1804), - [aux_sym_cmd_identifier_token38] = ACTIONS(1804), - [aux_sym_cmd_identifier_token39] = ACTIONS(1804), - [aux_sym_cmd_identifier_token40] = ACTIONS(1804), - [anon_sym_def] = ACTIONS(1804), - [anon_sym_export_DASHenv] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_module] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_error] = ACTIONS(1804), - [anon_sym_list] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_in] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_make] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_else] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_try] = ACTIONS(1804), - [anon_sym_catch] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_source] = ACTIONS(1804), - [anon_sym_source_DASHenv] = ACTIONS(1804), - [anon_sym_register] = ACTIONS(1804), - [anon_sym_hide] = ACTIONS(1804), - [anon_sym_hide_DASHenv] = ACTIONS(1804), - [anon_sym_overlay] = ACTIONS(1804), - [anon_sym_new] = ACTIONS(1804), - [anon_sym_as] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1804), - [aux_sym__val_number_decimal_token1] = ACTIONS(1804), - [aux_sym__val_number_decimal_token2] = ACTIONS(1804), - [anon_sym_DOT2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1804), - [aux_sym__val_number_token1] = ACTIONS(1804), - [aux_sym__val_number_token2] = ACTIONS(1804), - [aux_sym__val_number_token3] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym__str_single_quotes] = ACTIONS(1804), - [sym__str_back_ticks] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1804), - [sym__entry_separator] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1648), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1648), + [aux_sym_cmd_identifier_token40] = ACTIONS(1648), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1648), + [aux_sym__val_number_decimal_token3] = ACTIONS(1648), + [aux_sym__val_number_decimal_token4] = ACTIONS(1648), + [aux_sym__val_number_token1] = ACTIONS(1648), + [aux_sym__val_number_token2] = ACTIONS(1648), + [aux_sym__val_number_token3] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [sym__str_single_quotes] = ACTIONS(1648), + [sym__str_back_ticks] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), + [sym__entry_separator] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(3), }, [555] = { [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [aux_sym_cmd_identifier_token1] = ACTIONS(2349), - [aux_sym_cmd_identifier_token2] = ACTIONS(2349), - [aux_sym_cmd_identifier_token3] = ACTIONS(2349), - [aux_sym_cmd_identifier_token4] = ACTIONS(2349), - [aux_sym_cmd_identifier_token5] = ACTIONS(2349), - [aux_sym_cmd_identifier_token6] = ACTIONS(2349), - [aux_sym_cmd_identifier_token7] = ACTIONS(2349), - [aux_sym_cmd_identifier_token8] = ACTIONS(2349), - [aux_sym_cmd_identifier_token9] = ACTIONS(2349), - [aux_sym_cmd_identifier_token10] = ACTIONS(2349), - [aux_sym_cmd_identifier_token11] = ACTIONS(2349), - [aux_sym_cmd_identifier_token12] = ACTIONS(2349), - [aux_sym_cmd_identifier_token13] = ACTIONS(2349), - [aux_sym_cmd_identifier_token14] = ACTIONS(2349), - [aux_sym_cmd_identifier_token15] = ACTIONS(2349), - [aux_sym_cmd_identifier_token16] = ACTIONS(2349), - [aux_sym_cmd_identifier_token17] = ACTIONS(2349), - [aux_sym_cmd_identifier_token18] = ACTIONS(2349), - [aux_sym_cmd_identifier_token19] = ACTIONS(2349), - [aux_sym_cmd_identifier_token20] = ACTIONS(2349), - [aux_sym_cmd_identifier_token21] = ACTIONS(2349), - [aux_sym_cmd_identifier_token22] = ACTIONS(2349), - [aux_sym_cmd_identifier_token23] = ACTIONS(2349), - [aux_sym_cmd_identifier_token24] = ACTIONS(2349), - [aux_sym_cmd_identifier_token25] = ACTIONS(2349), - [aux_sym_cmd_identifier_token26] = ACTIONS(2349), - [aux_sym_cmd_identifier_token27] = ACTIONS(2349), - [aux_sym_cmd_identifier_token28] = ACTIONS(2349), - [aux_sym_cmd_identifier_token29] = ACTIONS(2349), - [aux_sym_cmd_identifier_token30] = ACTIONS(2349), - [aux_sym_cmd_identifier_token31] = ACTIONS(2349), - [aux_sym_cmd_identifier_token32] = ACTIONS(2349), - [aux_sym_cmd_identifier_token33] = ACTIONS(2349), - [aux_sym_cmd_identifier_token34] = ACTIONS(2349), - [aux_sym_cmd_identifier_token35] = ACTIONS(2349), - [aux_sym_cmd_identifier_token36] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [anon_sym_null] = ACTIONS(2349), - [aux_sym_cmd_identifier_token38] = ACTIONS(2349), - [aux_sym_cmd_identifier_token39] = ACTIONS(2349), - [aux_sym_cmd_identifier_token40] = ACTIONS(2349), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_in] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_make] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_catch] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [anon_sym_DOT2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), - [sym__entry_separator] = ACTIONS(2351), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(3), }, [556] = { [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(2353), - [anon_sym_alias] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_let_DASHenv] = ACTIONS(2353), - [anon_sym_mut] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [aux_sym_cmd_identifier_token1] = ACTIONS(2353), - [aux_sym_cmd_identifier_token2] = ACTIONS(2353), - [aux_sym_cmd_identifier_token3] = ACTIONS(2353), - [aux_sym_cmd_identifier_token4] = ACTIONS(2353), - [aux_sym_cmd_identifier_token5] = ACTIONS(2353), - [aux_sym_cmd_identifier_token6] = ACTIONS(2353), - [aux_sym_cmd_identifier_token7] = ACTIONS(2353), - [aux_sym_cmd_identifier_token8] = ACTIONS(2353), - [aux_sym_cmd_identifier_token9] = ACTIONS(2353), - [aux_sym_cmd_identifier_token10] = ACTIONS(2353), - [aux_sym_cmd_identifier_token11] = ACTIONS(2353), - [aux_sym_cmd_identifier_token12] = ACTIONS(2353), - [aux_sym_cmd_identifier_token13] = ACTIONS(2353), - [aux_sym_cmd_identifier_token14] = ACTIONS(2353), - [aux_sym_cmd_identifier_token15] = ACTIONS(2353), - [aux_sym_cmd_identifier_token16] = ACTIONS(2353), - [aux_sym_cmd_identifier_token17] = ACTIONS(2353), - [aux_sym_cmd_identifier_token18] = ACTIONS(2353), - [aux_sym_cmd_identifier_token19] = ACTIONS(2353), - [aux_sym_cmd_identifier_token20] = ACTIONS(2353), - [aux_sym_cmd_identifier_token21] = ACTIONS(2353), - [aux_sym_cmd_identifier_token22] = ACTIONS(2353), - [aux_sym_cmd_identifier_token23] = ACTIONS(2353), - [aux_sym_cmd_identifier_token24] = ACTIONS(2353), - [aux_sym_cmd_identifier_token25] = ACTIONS(2353), - [aux_sym_cmd_identifier_token26] = ACTIONS(2353), - [aux_sym_cmd_identifier_token27] = ACTIONS(2353), - [aux_sym_cmd_identifier_token28] = ACTIONS(2353), - [aux_sym_cmd_identifier_token29] = ACTIONS(2353), - [aux_sym_cmd_identifier_token30] = ACTIONS(2353), - [aux_sym_cmd_identifier_token31] = ACTIONS(2353), - [aux_sym_cmd_identifier_token32] = ACTIONS(2353), - [aux_sym_cmd_identifier_token33] = ACTIONS(2353), - [aux_sym_cmd_identifier_token34] = ACTIONS(2353), - [aux_sym_cmd_identifier_token35] = ACTIONS(2353), - [aux_sym_cmd_identifier_token36] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [anon_sym_null] = ACTIONS(2353), - [aux_sym_cmd_identifier_token38] = ACTIONS(2353), - [aux_sym_cmd_identifier_token39] = ACTIONS(2353), - [aux_sym_cmd_identifier_token40] = ACTIONS(2353), - [anon_sym_def] = ACTIONS(2353), - [anon_sym_export_DASHenv] = ACTIONS(2353), - [anon_sym_extern] = ACTIONS(2353), - [anon_sym_module] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_error] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_in] = ACTIONS(2353), - [anon_sym_loop] = ACTIONS(2353), - [anon_sym_make] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_else] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_catch] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_source] = ACTIONS(2353), - [anon_sym_source_DASHenv] = ACTIONS(2353), - [anon_sym_register] = ACTIONS(2353), - [anon_sym_hide] = ACTIONS(2353), - [anon_sym_hide_DASHenv] = ACTIONS(2353), - [anon_sym_overlay] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2353), - [aux_sym__val_number_decimal_token1] = ACTIONS(2353), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [anon_sym_DOT2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2353), - [aux_sym__val_number_token1] = ACTIONS(2353), - [aux_sym__val_number_token2] = ACTIONS(2353), - [aux_sym__val_number_token3] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym__str_single_quotes] = ACTIONS(2353), - [sym__str_back_ticks] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2353), - [sym__entry_separator] = ACTIONS(2355), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2379), + [anon_sym_alias] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_let_DASHenv] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [aux_sym_cmd_identifier_token1] = ACTIONS(2379), + [aux_sym_cmd_identifier_token2] = ACTIONS(2379), + [aux_sym_cmd_identifier_token3] = ACTIONS(2379), + [aux_sym_cmd_identifier_token4] = ACTIONS(2379), + [aux_sym_cmd_identifier_token5] = ACTIONS(2379), + [aux_sym_cmd_identifier_token6] = ACTIONS(2379), + [aux_sym_cmd_identifier_token7] = ACTIONS(2379), + [aux_sym_cmd_identifier_token8] = ACTIONS(2379), + [aux_sym_cmd_identifier_token9] = ACTIONS(2379), + [aux_sym_cmd_identifier_token10] = ACTIONS(2379), + [aux_sym_cmd_identifier_token11] = ACTIONS(2379), + [aux_sym_cmd_identifier_token12] = ACTIONS(2379), + [aux_sym_cmd_identifier_token13] = ACTIONS(2379), + [aux_sym_cmd_identifier_token14] = ACTIONS(2379), + [aux_sym_cmd_identifier_token15] = ACTIONS(2379), + [aux_sym_cmd_identifier_token16] = ACTIONS(2379), + [aux_sym_cmd_identifier_token17] = ACTIONS(2379), + [aux_sym_cmd_identifier_token18] = ACTIONS(2379), + [aux_sym_cmd_identifier_token19] = ACTIONS(2379), + [aux_sym_cmd_identifier_token20] = ACTIONS(2379), + [aux_sym_cmd_identifier_token21] = ACTIONS(2379), + [aux_sym_cmd_identifier_token22] = ACTIONS(2379), + [aux_sym_cmd_identifier_token23] = ACTIONS(2379), + [aux_sym_cmd_identifier_token24] = ACTIONS(2379), + [aux_sym_cmd_identifier_token25] = ACTIONS(2379), + [aux_sym_cmd_identifier_token26] = ACTIONS(2379), + [aux_sym_cmd_identifier_token27] = ACTIONS(2379), + [aux_sym_cmd_identifier_token28] = ACTIONS(2379), + [aux_sym_cmd_identifier_token29] = ACTIONS(2379), + [aux_sym_cmd_identifier_token30] = ACTIONS(2379), + [aux_sym_cmd_identifier_token31] = ACTIONS(2379), + [aux_sym_cmd_identifier_token32] = ACTIONS(2379), + [aux_sym_cmd_identifier_token33] = ACTIONS(2379), + [aux_sym_cmd_identifier_token34] = ACTIONS(2379), + [aux_sym_cmd_identifier_token35] = ACTIONS(2379), + [aux_sym_cmd_identifier_token36] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2379), + [anon_sym_false] = ACTIONS(2379), + [anon_sym_null] = ACTIONS(2379), + [aux_sym_cmd_identifier_token38] = ACTIONS(2379), + [aux_sym_cmd_identifier_token39] = ACTIONS(2379), + [aux_sym_cmd_identifier_token40] = ACTIONS(2379), + [anon_sym_def] = ACTIONS(2379), + [anon_sym_export_DASHenv] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym_module] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_error] = ACTIONS(2379), + [anon_sym_list] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_in] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_make] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_catch] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_source] = ACTIONS(2379), + [anon_sym_source_DASHenv] = ACTIONS(2379), + [anon_sym_register] = ACTIONS(2379), + [anon_sym_hide] = ACTIONS(2379), + [anon_sym_hide_DASHenv] = ACTIONS(2379), + [anon_sym_overlay] = ACTIONS(2379), + [anon_sym_new] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2379), + [aux_sym__val_number_decimal_token1] = ACTIONS(2379), + [aux_sym__val_number_decimal_token2] = ACTIONS(2379), + [aux_sym__val_number_decimal_token3] = ACTIONS(2379), + [aux_sym__val_number_decimal_token4] = ACTIONS(2379), + [aux_sym__val_number_token1] = ACTIONS(2379), + [aux_sym__val_number_token2] = ACTIONS(2379), + [aux_sym__val_number_token3] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [sym__str_single_quotes] = ACTIONS(2379), + [sym__str_back_ticks] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2379), + [sym__entry_separator] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(3), }, [557] = { [sym_comment] = STATE(557), - [anon_sym_export] = ACTIONS(1808), - [anon_sym_alias] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_let_DASHenv] = ACTIONS(1808), - [anon_sym_mut] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [aux_sym_cmd_identifier_token1] = ACTIONS(1808), - [aux_sym_cmd_identifier_token2] = ACTIONS(1808), - [aux_sym_cmd_identifier_token3] = ACTIONS(1808), - [aux_sym_cmd_identifier_token4] = ACTIONS(1808), - [aux_sym_cmd_identifier_token5] = ACTIONS(1808), - [aux_sym_cmd_identifier_token6] = ACTIONS(1808), - [aux_sym_cmd_identifier_token7] = ACTIONS(1808), - [aux_sym_cmd_identifier_token8] = ACTIONS(1808), - [aux_sym_cmd_identifier_token9] = ACTIONS(1808), - [aux_sym_cmd_identifier_token10] = ACTIONS(1808), - [aux_sym_cmd_identifier_token11] = ACTIONS(1808), - [aux_sym_cmd_identifier_token12] = ACTIONS(1808), - [aux_sym_cmd_identifier_token13] = ACTIONS(1808), - [aux_sym_cmd_identifier_token14] = ACTIONS(1808), - [aux_sym_cmd_identifier_token15] = ACTIONS(1808), - [aux_sym_cmd_identifier_token16] = ACTIONS(1808), - [aux_sym_cmd_identifier_token17] = ACTIONS(1808), - [aux_sym_cmd_identifier_token18] = ACTIONS(1808), - [aux_sym_cmd_identifier_token19] = ACTIONS(1808), - [aux_sym_cmd_identifier_token20] = ACTIONS(1808), - [aux_sym_cmd_identifier_token21] = ACTIONS(1808), - [aux_sym_cmd_identifier_token22] = ACTIONS(1808), - [aux_sym_cmd_identifier_token23] = ACTIONS(1808), - [aux_sym_cmd_identifier_token24] = ACTIONS(1808), - [aux_sym_cmd_identifier_token25] = ACTIONS(1808), - [aux_sym_cmd_identifier_token26] = ACTIONS(1808), - [aux_sym_cmd_identifier_token27] = ACTIONS(1808), - [aux_sym_cmd_identifier_token28] = ACTIONS(1808), - [aux_sym_cmd_identifier_token29] = ACTIONS(1808), - [aux_sym_cmd_identifier_token30] = ACTIONS(1808), - [aux_sym_cmd_identifier_token31] = ACTIONS(1808), - [aux_sym_cmd_identifier_token32] = ACTIONS(1808), - [aux_sym_cmd_identifier_token33] = ACTIONS(1808), - [aux_sym_cmd_identifier_token34] = ACTIONS(1808), - [aux_sym_cmd_identifier_token35] = ACTIONS(1808), - [aux_sym_cmd_identifier_token36] = ACTIONS(1808), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_null] = ACTIONS(1808), - [aux_sym_cmd_identifier_token38] = ACTIONS(1808), - [aux_sym_cmd_identifier_token39] = ACTIONS(1808), - [aux_sym_cmd_identifier_token40] = ACTIONS(1808), - [anon_sym_def] = ACTIONS(1808), - [anon_sym_export_DASHenv] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_module] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1808), - [anon_sym_error] = ACTIONS(1808), - [anon_sym_list] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_make] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_catch] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_source] = ACTIONS(1808), - [anon_sym_source_DASHenv] = ACTIONS(1808), - [anon_sym_register] = ACTIONS(1808), - [anon_sym_hide] = ACTIONS(1808), - [anon_sym_hide_DASHenv] = ACTIONS(1808), - [anon_sym_overlay] = ACTIONS(1808), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1808), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1808), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1808), - [anon_sym_DOT2] = ACTIONS(1808), - [aux_sym__val_number_decimal_token3] = ACTIONS(1808), - [aux_sym__val_number_token1] = ACTIONS(1808), - [aux_sym__val_number_token2] = ACTIONS(1808), - [aux_sym__val_number_token3] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1808), - [sym__str_single_quotes] = ACTIONS(1808), - [sym__str_back_ticks] = ACTIONS(1808), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1808), - [sym__entry_separator] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_alias] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_let_DASHenv] = ACTIONS(1839), + [anon_sym_mut] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [aux_sym_cmd_identifier_token1] = ACTIONS(1839), + [aux_sym_cmd_identifier_token2] = ACTIONS(1839), + [aux_sym_cmd_identifier_token3] = ACTIONS(1839), + [aux_sym_cmd_identifier_token4] = ACTIONS(1839), + [aux_sym_cmd_identifier_token5] = ACTIONS(1839), + [aux_sym_cmd_identifier_token6] = ACTIONS(1839), + [aux_sym_cmd_identifier_token7] = ACTIONS(1839), + [aux_sym_cmd_identifier_token8] = ACTIONS(1839), + [aux_sym_cmd_identifier_token9] = ACTIONS(1839), + [aux_sym_cmd_identifier_token10] = ACTIONS(1839), + [aux_sym_cmd_identifier_token11] = ACTIONS(1839), + [aux_sym_cmd_identifier_token12] = ACTIONS(1839), + [aux_sym_cmd_identifier_token13] = ACTIONS(1839), + [aux_sym_cmd_identifier_token14] = ACTIONS(1839), + [aux_sym_cmd_identifier_token15] = ACTIONS(1839), + [aux_sym_cmd_identifier_token16] = ACTIONS(1839), + [aux_sym_cmd_identifier_token17] = ACTIONS(1839), + [aux_sym_cmd_identifier_token18] = ACTIONS(1839), + [aux_sym_cmd_identifier_token19] = ACTIONS(1839), + [aux_sym_cmd_identifier_token20] = ACTIONS(1839), + [aux_sym_cmd_identifier_token21] = ACTIONS(1839), + [aux_sym_cmd_identifier_token22] = ACTIONS(1839), + [aux_sym_cmd_identifier_token23] = ACTIONS(1839), + [aux_sym_cmd_identifier_token24] = ACTIONS(1839), + [aux_sym_cmd_identifier_token25] = ACTIONS(1839), + [aux_sym_cmd_identifier_token26] = ACTIONS(1839), + [aux_sym_cmd_identifier_token27] = ACTIONS(1839), + [aux_sym_cmd_identifier_token28] = ACTIONS(1839), + [aux_sym_cmd_identifier_token29] = ACTIONS(1839), + [aux_sym_cmd_identifier_token30] = ACTIONS(1839), + [aux_sym_cmd_identifier_token31] = ACTIONS(1839), + [aux_sym_cmd_identifier_token32] = ACTIONS(1839), + [aux_sym_cmd_identifier_token33] = ACTIONS(1839), + [aux_sym_cmd_identifier_token34] = ACTIONS(1839), + [aux_sym_cmd_identifier_token35] = ACTIONS(1839), + [aux_sym_cmd_identifier_token36] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1839), + [anon_sym_false] = ACTIONS(1839), + [anon_sym_null] = ACTIONS(1839), + [aux_sym_cmd_identifier_token38] = ACTIONS(1839), + [aux_sym_cmd_identifier_token39] = ACTIONS(1839), + [aux_sym_cmd_identifier_token40] = ACTIONS(1839), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_export_DASHenv] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_list] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_in] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_make] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_else] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_catch] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_source] = ACTIONS(1839), + [anon_sym_source_DASHenv] = ACTIONS(1839), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_new] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1839), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1839), + [aux_sym__val_number_decimal_token3] = ACTIONS(1839), + [aux_sym__val_number_decimal_token4] = ACTIONS(1839), + [aux_sym__val_number_token1] = ACTIONS(1839), + [aux_sym__val_number_token2] = ACTIONS(1839), + [aux_sym__val_number_token3] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [sym__str_single_quotes] = ACTIONS(1839), + [sym__str_back_ticks] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1839), + [sym__entry_separator] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(3), }, [558] = { [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(1816), - [anon_sym_alias] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_let_DASHenv] = ACTIONS(1816), - [anon_sym_mut] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [aux_sym_cmd_identifier_token1] = ACTIONS(1816), - [aux_sym_cmd_identifier_token2] = ACTIONS(1816), - [aux_sym_cmd_identifier_token3] = ACTIONS(1816), - [aux_sym_cmd_identifier_token4] = ACTIONS(1816), - [aux_sym_cmd_identifier_token5] = ACTIONS(1816), - [aux_sym_cmd_identifier_token6] = ACTIONS(1816), - [aux_sym_cmd_identifier_token7] = ACTIONS(1816), - [aux_sym_cmd_identifier_token8] = ACTIONS(1816), - [aux_sym_cmd_identifier_token9] = ACTIONS(1816), - [aux_sym_cmd_identifier_token10] = ACTIONS(1816), - [aux_sym_cmd_identifier_token11] = ACTIONS(1816), - [aux_sym_cmd_identifier_token12] = ACTIONS(1816), - [aux_sym_cmd_identifier_token13] = ACTIONS(1816), - [aux_sym_cmd_identifier_token14] = ACTIONS(1816), - [aux_sym_cmd_identifier_token15] = ACTIONS(1816), - [aux_sym_cmd_identifier_token16] = ACTIONS(1816), - [aux_sym_cmd_identifier_token17] = ACTIONS(1816), - [aux_sym_cmd_identifier_token18] = ACTIONS(1816), - [aux_sym_cmd_identifier_token19] = ACTIONS(1816), - [aux_sym_cmd_identifier_token20] = ACTIONS(1816), - [aux_sym_cmd_identifier_token21] = ACTIONS(1816), - [aux_sym_cmd_identifier_token22] = ACTIONS(1816), - [aux_sym_cmd_identifier_token23] = ACTIONS(1816), - [aux_sym_cmd_identifier_token24] = ACTIONS(1816), - [aux_sym_cmd_identifier_token25] = ACTIONS(1816), - [aux_sym_cmd_identifier_token26] = ACTIONS(1816), - [aux_sym_cmd_identifier_token27] = ACTIONS(1816), - [aux_sym_cmd_identifier_token28] = ACTIONS(1816), - [aux_sym_cmd_identifier_token29] = ACTIONS(1816), - [aux_sym_cmd_identifier_token30] = ACTIONS(1816), - [aux_sym_cmd_identifier_token31] = ACTIONS(1816), - [aux_sym_cmd_identifier_token32] = ACTIONS(1816), - [aux_sym_cmd_identifier_token33] = ACTIONS(1816), - [aux_sym_cmd_identifier_token34] = ACTIONS(1816), - [aux_sym_cmd_identifier_token35] = ACTIONS(1816), - [aux_sym_cmd_identifier_token36] = ACTIONS(1816), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1816), - [aux_sym_cmd_identifier_token38] = ACTIONS(1816), - [aux_sym_cmd_identifier_token39] = ACTIONS(1816), - [aux_sym_cmd_identifier_token40] = ACTIONS(1816), - [anon_sym_def] = ACTIONS(1816), - [anon_sym_export_DASHenv] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_module] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1816), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_error] = ACTIONS(1816), - [anon_sym_list] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_make] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_do] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_catch] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_source] = ACTIONS(1816), - [anon_sym_source_DASHenv] = ACTIONS(1816), - [anon_sym_register] = ACTIONS(1816), - [anon_sym_hide] = ACTIONS(1816), - [anon_sym_hide_DASHenv] = ACTIONS(1816), - [anon_sym_overlay] = ACTIONS(1816), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1816), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1816), - [aux_sym__val_number_decimal_token1] = ACTIONS(1816), - [aux_sym__val_number_decimal_token2] = ACTIONS(1816), - [anon_sym_DOT2] = ACTIONS(1816), - [aux_sym__val_number_decimal_token3] = ACTIONS(1816), - [aux_sym__val_number_token1] = ACTIONS(1816), - [aux_sym__val_number_token2] = ACTIONS(1816), - [aux_sym__val_number_token3] = ACTIONS(1816), - [anon_sym_DQUOTE] = ACTIONS(1816), - [sym__str_single_quotes] = ACTIONS(1816), - [sym__str_back_ticks] = ACTIONS(1816), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1816), - [sym__entry_separator] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2383), + [anon_sym_alias] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_let_DASHenv] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [aux_sym_cmd_identifier_token1] = ACTIONS(2383), + [aux_sym_cmd_identifier_token2] = ACTIONS(2383), + [aux_sym_cmd_identifier_token3] = ACTIONS(2383), + [aux_sym_cmd_identifier_token4] = ACTIONS(2383), + [aux_sym_cmd_identifier_token5] = ACTIONS(2383), + [aux_sym_cmd_identifier_token6] = ACTIONS(2383), + [aux_sym_cmd_identifier_token7] = ACTIONS(2383), + [aux_sym_cmd_identifier_token8] = ACTIONS(2383), + [aux_sym_cmd_identifier_token9] = ACTIONS(2383), + [aux_sym_cmd_identifier_token10] = ACTIONS(2383), + [aux_sym_cmd_identifier_token11] = ACTIONS(2383), + [aux_sym_cmd_identifier_token12] = ACTIONS(2383), + [aux_sym_cmd_identifier_token13] = ACTIONS(2383), + [aux_sym_cmd_identifier_token14] = ACTIONS(2383), + [aux_sym_cmd_identifier_token15] = ACTIONS(2383), + [aux_sym_cmd_identifier_token16] = ACTIONS(2383), + [aux_sym_cmd_identifier_token17] = ACTIONS(2383), + [aux_sym_cmd_identifier_token18] = ACTIONS(2383), + [aux_sym_cmd_identifier_token19] = ACTIONS(2383), + [aux_sym_cmd_identifier_token20] = ACTIONS(2383), + [aux_sym_cmd_identifier_token21] = ACTIONS(2383), + [aux_sym_cmd_identifier_token22] = ACTIONS(2383), + [aux_sym_cmd_identifier_token23] = ACTIONS(2383), + [aux_sym_cmd_identifier_token24] = ACTIONS(2383), + [aux_sym_cmd_identifier_token25] = ACTIONS(2383), + [aux_sym_cmd_identifier_token26] = ACTIONS(2383), + [aux_sym_cmd_identifier_token27] = ACTIONS(2383), + [aux_sym_cmd_identifier_token28] = ACTIONS(2383), + [aux_sym_cmd_identifier_token29] = ACTIONS(2383), + [aux_sym_cmd_identifier_token30] = ACTIONS(2383), + [aux_sym_cmd_identifier_token31] = ACTIONS(2383), + [aux_sym_cmd_identifier_token32] = ACTIONS(2383), + [aux_sym_cmd_identifier_token33] = ACTIONS(2383), + [aux_sym_cmd_identifier_token34] = ACTIONS(2383), + [aux_sym_cmd_identifier_token35] = ACTIONS(2383), + [aux_sym_cmd_identifier_token36] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(2383), + [anon_sym_false] = ACTIONS(2383), + [anon_sym_null] = ACTIONS(2383), + [aux_sym_cmd_identifier_token38] = ACTIONS(2383), + [aux_sym_cmd_identifier_token39] = ACTIONS(2383), + [aux_sym_cmd_identifier_token40] = ACTIONS(2383), + [anon_sym_def] = ACTIONS(2383), + [anon_sym_export_DASHenv] = ACTIONS(2383), + [anon_sym_extern] = ACTIONS(2383), + [anon_sym_module] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2383), + [anon_sym_error] = ACTIONS(2383), + [anon_sym_list] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_make] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [anon_sym_do] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_else] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_try] = ACTIONS(2383), + [anon_sym_catch] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_source] = ACTIONS(2383), + [anon_sym_source_DASHenv] = ACTIONS(2383), + [anon_sym_register] = ACTIONS(2383), + [anon_sym_hide] = ACTIONS(2383), + [anon_sym_hide_DASHenv] = ACTIONS(2383), + [anon_sym_overlay] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2383), + [aux_sym__val_number_decimal_token1] = ACTIONS(2383), + [aux_sym__val_number_decimal_token2] = ACTIONS(2383), + [aux_sym__val_number_decimal_token3] = ACTIONS(2383), + [aux_sym__val_number_decimal_token4] = ACTIONS(2383), + [aux_sym__val_number_token1] = ACTIONS(2383), + [aux_sym__val_number_token2] = ACTIONS(2383), + [aux_sym__val_number_token3] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [sym__str_single_quotes] = ACTIONS(2383), + [sym__str_back_ticks] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2383), + [sym__entry_separator] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(3), }, [559] = { [sym_comment] = STATE(559), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_alias] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_let_DASHenv] = ACTIONS(2357), - [anon_sym_mut] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [aux_sym_cmd_identifier_token1] = ACTIONS(2357), - [aux_sym_cmd_identifier_token2] = ACTIONS(2357), - [aux_sym_cmd_identifier_token3] = ACTIONS(2357), - [aux_sym_cmd_identifier_token4] = ACTIONS(2357), - [aux_sym_cmd_identifier_token5] = ACTIONS(2357), - [aux_sym_cmd_identifier_token6] = ACTIONS(2357), - [aux_sym_cmd_identifier_token7] = ACTIONS(2357), - [aux_sym_cmd_identifier_token8] = ACTIONS(2357), - [aux_sym_cmd_identifier_token9] = ACTIONS(2357), - [aux_sym_cmd_identifier_token10] = ACTIONS(2357), - [aux_sym_cmd_identifier_token11] = ACTIONS(2357), - [aux_sym_cmd_identifier_token12] = ACTIONS(2357), - [aux_sym_cmd_identifier_token13] = ACTIONS(2357), - [aux_sym_cmd_identifier_token14] = ACTIONS(2357), - [aux_sym_cmd_identifier_token15] = ACTIONS(2357), - [aux_sym_cmd_identifier_token16] = ACTIONS(2357), - [aux_sym_cmd_identifier_token17] = ACTIONS(2357), - [aux_sym_cmd_identifier_token18] = ACTIONS(2357), - [aux_sym_cmd_identifier_token19] = ACTIONS(2357), - [aux_sym_cmd_identifier_token20] = ACTIONS(2357), - [aux_sym_cmd_identifier_token21] = ACTIONS(2357), - [aux_sym_cmd_identifier_token22] = ACTIONS(2357), - [aux_sym_cmd_identifier_token23] = ACTIONS(2357), - [aux_sym_cmd_identifier_token24] = ACTIONS(2357), - [aux_sym_cmd_identifier_token25] = ACTIONS(2357), - [aux_sym_cmd_identifier_token26] = ACTIONS(2357), - [aux_sym_cmd_identifier_token27] = ACTIONS(2357), - [aux_sym_cmd_identifier_token28] = ACTIONS(2357), - [aux_sym_cmd_identifier_token29] = ACTIONS(2357), - [aux_sym_cmd_identifier_token30] = ACTIONS(2357), - [aux_sym_cmd_identifier_token31] = ACTIONS(2357), - [aux_sym_cmd_identifier_token32] = ACTIONS(2357), - [aux_sym_cmd_identifier_token33] = ACTIONS(2357), - [aux_sym_cmd_identifier_token34] = ACTIONS(2357), - [aux_sym_cmd_identifier_token35] = ACTIONS(2357), - [aux_sym_cmd_identifier_token36] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2357), - [anon_sym_false] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2357), - [aux_sym_cmd_identifier_token38] = ACTIONS(2357), - [aux_sym_cmd_identifier_token39] = ACTIONS(2357), - [aux_sym_cmd_identifier_token40] = ACTIONS(2357), - [anon_sym_def] = ACTIONS(2357), - [anon_sym_export_DASHenv] = ACTIONS(2357), - [anon_sym_extern] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2357), - [anon_sym_error] = ACTIONS(2357), - [anon_sym_list] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2357), - [anon_sym_loop] = ACTIONS(2357), - [anon_sym_make] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_match] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_catch] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_source] = ACTIONS(2357), - [anon_sym_source_DASHenv] = ACTIONS(2357), - [anon_sym_register] = ACTIONS(2357), - [anon_sym_hide] = ACTIONS(2357), - [anon_sym_hide_DASHenv] = ACTIONS(2357), - [anon_sym_overlay] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_as] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2357), - [aux_sym__val_number_decimal_token1] = ACTIONS(2357), - [aux_sym__val_number_decimal_token2] = ACTIONS(2357), - [anon_sym_DOT2] = ACTIONS(2357), - [aux_sym__val_number_decimal_token3] = ACTIONS(2357), - [aux_sym__val_number_token1] = ACTIONS(2357), - [aux_sym__val_number_token2] = ACTIONS(2357), - [aux_sym__val_number_token3] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym__str_single_quotes] = ACTIONS(2357), - [sym__str_back_ticks] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2357), - [sym__entry_separator] = ACTIONS(2359), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1525), + [anon_sym_alias] = ACTIONS(1525), + [anon_sym_let] = ACTIONS(1525), + [anon_sym_let_DASHenv] = ACTIONS(1525), + [anon_sym_mut] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [aux_sym_cmd_identifier_token1] = ACTIONS(1525), + [aux_sym_cmd_identifier_token2] = ACTIONS(1525), + [aux_sym_cmd_identifier_token3] = ACTIONS(1525), + [aux_sym_cmd_identifier_token4] = ACTIONS(1525), + [aux_sym_cmd_identifier_token5] = ACTIONS(1525), + [aux_sym_cmd_identifier_token6] = ACTIONS(1525), + [aux_sym_cmd_identifier_token7] = ACTIONS(1525), + [aux_sym_cmd_identifier_token8] = ACTIONS(1525), + [aux_sym_cmd_identifier_token9] = ACTIONS(1525), + [aux_sym_cmd_identifier_token10] = ACTIONS(1525), + [aux_sym_cmd_identifier_token11] = ACTIONS(1525), + [aux_sym_cmd_identifier_token12] = ACTIONS(1525), + [aux_sym_cmd_identifier_token13] = ACTIONS(1525), + [aux_sym_cmd_identifier_token14] = ACTIONS(1525), + [aux_sym_cmd_identifier_token15] = ACTIONS(1525), + [aux_sym_cmd_identifier_token16] = ACTIONS(1525), + [aux_sym_cmd_identifier_token17] = ACTIONS(1525), + [aux_sym_cmd_identifier_token18] = ACTIONS(1525), + [aux_sym_cmd_identifier_token19] = ACTIONS(1525), + [aux_sym_cmd_identifier_token20] = ACTIONS(1525), + [aux_sym_cmd_identifier_token21] = ACTIONS(1525), + [aux_sym_cmd_identifier_token22] = ACTIONS(1525), + [aux_sym_cmd_identifier_token23] = ACTIONS(1525), + [aux_sym_cmd_identifier_token24] = ACTIONS(1525), + [aux_sym_cmd_identifier_token25] = ACTIONS(1525), + [aux_sym_cmd_identifier_token26] = ACTIONS(1525), + [aux_sym_cmd_identifier_token27] = ACTIONS(1525), + [aux_sym_cmd_identifier_token28] = ACTIONS(1525), + [aux_sym_cmd_identifier_token29] = ACTIONS(1525), + [aux_sym_cmd_identifier_token30] = ACTIONS(1525), + [aux_sym_cmd_identifier_token31] = ACTIONS(1525), + [aux_sym_cmd_identifier_token32] = ACTIONS(1525), + [aux_sym_cmd_identifier_token33] = ACTIONS(1525), + [aux_sym_cmd_identifier_token34] = ACTIONS(1525), + [aux_sym_cmd_identifier_token35] = ACTIONS(1525), + [aux_sym_cmd_identifier_token36] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [aux_sym_cmd_identifier_token38] = ACTIONS(1525), + [aux_sym_cmd_identifier_token39] = ACTIONS(1525), + [aux_sym_cmd_identifier_token40] = ACTIONS(1525), + [anon_sym_def] = ACTIONS(1525), + [anon_sym_export_DASHenv] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym_module] = ACTIONS(1525), + [anon_sym_use] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_error] = ACTIONS(1525), + [anon_sym_list] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [anon_sym_loop] = ACTIONS(1525), + [anon_sym_make] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_catch] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_source] = ACTIONS(1525), + [anon_sym_source_DASHenv] = ACTIONS(1525), + [anon_sym_register] = ACTIONS(1525), + [anon_sym_hide] = ACTIONS(1525), + [anon_sym_hide_DASHenv] = ACTIONS(1525), + [anon_sym_overlay] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1525), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1525), + [aux_sym__val_number_decimal_token3] = ACTIONS(1525), + [aux_sym__val_number_decimal_token4] = ACTIONS(1525), + [aux_sym__val_number_token1] = ACTIONS(1525), + [aux_sym__val_number_token2] = ACTIONS(1525), + [aux_sym__val_number_token3] = ACTIONS(1525), + [anon_sym_DQUOTE] = ACTIONS(1525), + [sym__str_single_quotes] = ACTIONS(1525), + [sym__str_back_ticks] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1525), + [sym__entry_separator] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(3), }, [560] = { [sym_comment] = STATE(560), - [anon_sym_export] = ACTIONS(1820), - [anon_sym_alias] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_let_DASHenv] = ACTIONS(1820), - [anon_sym_mut] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [aux_sym_cmd_identifier_token1] = ACTIONS(1820), - [aux_sym_cmd_identifier_token2] = ACTIONS(1820), - [aux_sym_cmd_identifier_token3] = ACTIONS(1820), - [aux_sym_cmd_identifier_token4] = ACTIONS(1820), - [aux_sym_cmd_identifier_token5] = ACTIONS(1820), - [aux_sym_cmd_identifier_token6] = ACTIONS(1820), - [aux_sym_cmd_identifier_token7] = ACTIONS(1820), - [aux_sym_cmd_identifier_token8] = ACTIONS(1820), - [aux_sym_cmd_identifier_token9] = ACTIONS(1820), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [aux_sym_cmd_identifier_token12] = ACTIONS(1820), - [aux_sym_cmd_identifier_token13] = ACTIONS(1820), - [aux_sym_cmd_identifier_token14] = ACTIONS(1820), - [aux_sym_cmd_identifier_token15] = ACTIONS(1820), - [aux_sym_cmd_identifier_token16] = ACTIONS(1820), - [aux_sym_cmd_identifier_token17] = ACTIONS(1820), - [aux_sym_cmd_identifier_token18] = ACTIONS(1820), - [aux_sym_cmd_identifier_token19] = ACTIONS(1820), - [aux_sym_cmd_identifier_token20] = ACTIONS(1820), - [aux_sym_cmd_identifier_token21] = ACTIONS(1820), - [aux_sym_cmd_identifier_token22] = ACTIONS(1820), - [aux_sym_cmd_identifier_token23] = ACTIONS(1820), - [aux_sym_cmd_identifier_token24] = ACTIONS(1820), - [aux_sym_cmd_identifier_token25] = ACTIONS(1820), - [aux_sym_cmd_identifier_token26] = ACTIONS(1820), - [aux_sym_cmd_identifier_token27] = ACTIONS(1820), - [aux_sym_cmd_identifier_token28] = ACTIONS(1820), - [aux_sym_cmd_identifier_token29] = ACTIONS(1820), - [aux_sym_cmd_identifier_token30] = ACTIONS(1820), - [aux_sym_cmd_identifier_token31] = ACTIONS(1820), - [aux_sym_cmd_identifier_token32] = ACTIONS(1820), - [aux_sym_cmd_identifier_token33] = ACTIONS(1820), - [aux_sym_cmd_identifier_token34] = ACTIONS(1820), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1820), - [aux_sym_cmd_identifier_token38] = ACTIONS(1820), - [aux_sym_cmd_identifier_token39] = ACTIONS(1820), - [aux_sym_cmd_identifier_token40] = ACTIONS(1820), - [anon_sym_def] = ACTIONS(1820), - [anon_sym_export_DASHenv] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_module] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_error] = ACTIONS(1820), - [anon_sym_list] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_make] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_do] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_else] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1820), - [anon_sym_catch] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_source] = ACTIONS(1820), - [anon_sym_source_DASHenv] = ACTIONS(1820), - [anon_sym_register] = ACTIONS(1820), - [anon_sym_hide] = ACTIONS(1820), - [anon_sym_hide_DASHenv] = ACTIONS(1820), - [anon_sym_overlay] = ACTIONS(1820), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_as] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [anon_sym_DOT2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), - [sym__entry_separator] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_alias] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_let_DASHenv] = ACTIONS(2235), + [anon_sym_mut] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [aux_sym_cmd_identifier_token1] = ACTIONS(2235), + [aux_sym_cmd_identifier_token2] = ACTIONS(2235), + [aux_sym_cmd_identifier_token3] = ACTIONS(2235), + [aux_sym_cmd_identifier_token4] = ACTIONS(2235), + [aux_sym_cmd_identifier_token5] = ACTIONS(2235), + [aux_sym_cmd_identifier_token6] = ACTIONS(2235), + [aux_sym_cmd_identifier_token7] = ACTIONS(2235), + [aux_sym_cmd_identifier_token8] = ACTIONS(2235), + [aux_sym_cmd_identifier_token9] = ACTIONS(2235), + [aux_sym_cmd_identifier_token10] = ACTIONS(2235), + [aux_sym_cmd_identifier_token11] = ACTIONS(2235), + [aux_sym_cmd_identifier_token12] = ACTIONS(2235), + [aux_sym_cmd_identifier_token13] = ACTIONS(2235), + [aux_sym_cmd_identifier_token14] = ACTIONS(2235), + [aux_sym_cmd_identifier_token15] = ACTIONS(2235), + [aux_sym_cmd_identifier_token16] = ACTIONS(2235), + [aux_sym_cmd_identifier_token17] = ACTIONS(2235), + [aux_sym_cmd_identifier_token18] = ACTIONS(2235), + [aux_sym_cmd_identifier_token19] = ACTIONS(2235), + [aux_sym_cmd_identifier_token20] = ACTIONS(2235), + [aux_sym_cmd_identifier_token21] = ACTIONS(2235), + [aux_sym_cmd_identifier_token22] = ACTIONS(2235), + [aux_sym_cmd_identifier_token23] = ACTIONS(2235), + [aux_sym_cmd_identifier_token24] = ACTIONS(2235), + [aux_sym_cmd_identifier_token25] = ACTIONS(2235), + [aux_sym_cmd_identifier_token26] = ACTIONS(2235), + [aux_sym_cmd_identifier_token27] = ACTIONS(2235), + [aux_sym_cmd_identifier_token28] = ACTIONS(2235), + [aux_sym_cmd_identifier_token29] = ACTIONS(2235), + [aux_sym_cmd_identifier_token30] = ACTIONS(2235), + [aux_sym_cmd_identifier_token31] = ACTIONS(2235), + [aux_sym_cmd_identifier_token32] = ACTIONS(2235), + [aux_sym_cmd_identifier_token33] = ACTIONS(2235), + [aux_sym_cmd_identifier_token34] = ACTIONS(2235), + [aux_sym_cmd_identifier_token35] = ACTIONS(2235), + [aux_sym_cmd_identifier_token36] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(2239), + [anon_sym_false] = ACTIONS(2239), + [anon_sym_null] = ACTIONS(2239), + [aux_sym_cmd_identifier_token38] = ACTIONS(2235), + [aux_sym_cmd_identifier_token39] = ACTIONS(2239), + [aux_sym_cmd_identifier_token40] = ACTIONS(2239), + [anon_sym_def] = ACTIONS(2235), + [anon_sym_export_DASHenv] = ACTIONS(2235), + [anon_sym_extern] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_DOLLAR] = ACTIONS(2239), + [anon_sym_error] = ACTIONS(2235), + [anon_sym_list] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_make] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_catch] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_source] = ACTIONS(2235), + [anon_sym_source_DASHenv] = ACTIONS(2235), + [anon_sym_register] = ACTIONS(2235), + [anon_sym_hide] = ACTIONS(2235), + [anon_sym_hide_DASHenv] = ACTIONS(2235), + [anon_sym_overlay] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2239), + [aux_sym__val_number_decimal_token1] = ACTIONS(2235), + [aux_sym__val_number_decimal_token2] = ACTIONS(2239), + [aux_sym__val_number_decimal_token3] = ACTIONS(2239), + [aux_sym__val_number_decimal_token4] = ACTIONS(2239), + [aux_sym__val_number_token1] = ACTIONS(2239), + [aux_sym__val_number_token2] = ACTIONS(2239), + [aux_sym__val_number_token3] = ACTIONS(2239), + [anon_sym_LBRACK2] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2239), + [sym__str_single_quotes] = ACTIONS(2239), + [sym__str_back_ticks] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(247), }, [561] = { [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(2361), - [anon_sym_alias] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_let_DASHenv] = ACTIONS(2361), - [anon_sym_mut] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [aux_sym_cmd_identifier_token1] = ACTIONS(2361), - [aux_sym_cmd_identifier_token2] = ACTIONS(2361), - [aux_sym_cmd_identifier_token3] = ACTIONS(2361), - [aux_sym_cmd_identifier_token4] = ACTIONS(2361), - [aux_sym_cmd_identifier_token5] = ACTIONS(2361), - [aux_sym_cmd_identifier_token6] = ACTIONS(2361), - [aux_sym_cmd_identifier_token7] = ACTIONS(2361), - [aux_sym_cmd_identifier_token8] = ACTIONS(2361), - [aux_sym_cmd_identifier_token9] = ACTIONS(2361), - [aux_sym_cmd_identifier_token10] = ACTIONS(2361), - [aux_sym_cmd_identifier_token11] = ACTIONS(2361), - [aux_sym_cmd_identifier_token12] = ACTIONS(2361), - [aux_sym_cmd_identifier_token13] = ACTIONS(2361), - [aux_sym_cmd_identifier_token14] = ACTIONS(2361), - [aux_sym_cmd_identifier_token15] = ACTIONS(2361), - [aux_sym_cmd_identifier_token16] = ACTIONS(2361), - [aux_sym_cmd_identifier_token17] = ACTIONS(2361), - [aux_sym_cmd_identifier_token18] = ACTIONS(2361), - [aux_sym_cmd_identifier_token19] = ACTIONS(2361), - [aux_sym_cmd_identifier_token20] = ACTIONS(2361), - [aux_sym_cmd_identifier_token21] = ACTIONS(2361), - [aux_sym_cmd_identifier_token22] = ACTIONS(2361), - [aux_sym_cmd_identifier_token23] = ACTIONS(2361), - [aux_sym_cmd_identifier_token24] = ACTIONS(2361), - [aux_sym_cmd_identifier_token25] = ACTIONS(2361), - [aux_sym_cmd_identifier_token26] = ACTIONS(2361), - [aux_sym_cmd_identifier_token27] = ACTIONS(2361), - [aux_sym_cmd_identifier_token28] = ACTIONS(2361), - [aux_sym_cmd_identifier_token29] = ACTIONS(2361), - [aux_sym_cmd_identifier_token30] = ACTIONS(2361), - [aux_sym_cmd_identifier_token31] = ACTIONS(2361), - [aux_sym_cmd_identifier_token32] = ACTIONS(2361), - [aux_sym_cmd_identifier_token33] = ACTIONS(2361), - [aux_sym_cmd_identifier_token34] = ACTIONS(2361), - [aux_sym_cmd_identifier_token35] = ACTIONS(2361), - [aux_sym_cmd_identifier_token36] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2361), - [aux_sym_cmd_identifier_token38] = ACTIONS(2361), - [aux_sym_cmd_identifier_token39] = ACTIONS(2361), - [aux_sym_cmd_identifier_token40] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2361), - [anon_sym_export_DASHenv] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym_module] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_error] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_in] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_make] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_catch] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_source] = ACTIONS(2361), - [anon_sym_source_DASHenv] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_hide] = ACTIONS(2361), - [anon_sym_hide_DASHenv] = ACTIONS(2361), - [anon_sym_overlay] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_as] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), - [aux_sym__val_number_decimal_token1] = ACTIONS(2361), - [aux_sym__val_number_decimal_token2] = ACTIONS(2361), - [anon_sym_DOT2] = ACTIONS(2361), - [aux_sym__val_number_decimal_token3] = ACTIONS(2361), - [aux_sym__val_number_token1] = ACTIONS(2361), - [aux_sym__val_number_token2] = ACTIONS(2361), - [aux_sym__val_number_token3] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), - [sym__entry_separator] = ACTIONS(2363), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2389), + [anon_sym_alias] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_let_DASHenv] = ACTIONS(2389), + [anon_sym_mut] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [aux_sym_cmd_identifier_token1] = ACTIONS(2389), + [aux_sym_cmd_identifier_token2] = ACTIONS(2389), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), + [aux_sym_cmd_identifier_token6] = ACTIONS(2389), + [aux_sym_cmd_identifier_token7] = ACTIONS(2389), + [aux_sym_cmd_identifier_token8] = ACTIONS(2389), + [aux_sym_cmd_identifier_token9] = ACTIONS(2389), + [aux_sym_cmd_identifier_token10] = ACTIONS(2389), + [aux_sym_cmd_identifier_token11] = ACTIONS(2389), + [aux_sym_cmd_identifier_token12] = ACTIONS(2389), + [aux_sym_cmd_identifier_token13] = ACTIONS(2389), + [aux_sym_cmd_identifier_token14] = ACTIONS(2389), + [aux_sym_cmd_identifier_token15] = ACTIONS(2389), + [aux_sym_cmd_identifier_token16] = ACTIONS(2389), + [aux_sym_cmd_identifier_token17] = ACTIONS(2389), + [aux_sym_cmd_identifier_token18] = ACTIONS(2389), + [aux_sym_cmd_identifier_token19] = ACTIONS(2389), + [aux_sym_cmd_identifier_token20] = ACTIONS(2389), + [aux_sym_cmd_identifier_token21] = ACTIONS(2389), + [aux_sym_cmd_identifier_token22] = ACTIONS(2389), + [aux_sym_cmd_identifier_token23] = ACTIONS(2389), + [aux_sym_cmd_identifier_token24] = ACTIONS(2389), + [aux_sym_cmd_identifier_token25] = ACTIONS(2389), + [aux_sym_cmd_identifier_token26] = ACTIONS(2389), + [aux_sym_cmd_identifier_token27] = ACTIONS(2389), + [aux_sym_cmd_identifier_token28] = ACTIONS(2389), + [aux_sym_cmd_identifier_token29] = ACTIONS(2389), + [aux_sym_cmd_identifier_token30] = ACTIONS(2389), + [aux_sym_cmd_identifier_token31] = ACTIONS(2389), + [aux_sym_cmd_identifier_token32] = ACTIONS(2389), + [aux_sym_cmd_identifier_token33] = ACTIONS(2389), + [aux_sym_cmd_identifier_token34] = ACTIONS(2389), + [aux_sym_cmd_identifier_token35] = ACTIONS(2389), + [aux_sym_cmd_identifier_token36] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [anon_sym_null] = ACTIONS(2389), + [aux_sym_cmd_identifier_token38] = ACTIONS(2389), + [aux_sym_cmd_identifier_token39] = ACTIONS(2389), + [aux_sym_cmd_identifier_token40] = ACTIONS(2389), + [anon_sym_def] = ACTIONS(2389), + [anon_sym_export_DASHenv] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym_module] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2389), + [anon_sym_error] = ACTIONS(2389), + [anon_sym_list] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_in] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_make] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_else] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_catch] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_source] = ACTIONS(2389), + [anon_sym_source_DASHenv] = ACTIONS(2389), + [anon_sym_register] = ACTIONS(2389), + [anon_sym_hide] = ACTIONS(2389), + [anon_sym_hide_DASHenv] = ACTIONS(2389), + [anon_sym_overlay] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_as] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2389), + [aux_sym__val_number_decimal_token1] = ACTIONS(2389), + [aux_sym__val_number_decimal_token2] = ACTIONS(2389), + [aux_sym__val_number_decimal_token3] = ACTIONS(2389), + [aux_sym__val_number_decimal_token4] = ACTIONS(2389), + [aux_sym__val_number_token1] = ACTIONS(2389), + [aux_sym__val_number_token2] = ACTIONS(2389), + [aux_sym__val_number_token3] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(2389), + [sym__str_single_quotes] = ACTIONS(2389), + [sym__str_back_ticks] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2389), + [sym__entry_separator] = ACTIONS(2391), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(3), }, [562] = { [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(2365), - [anon_sym_alias] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_DASHenv] = ACTIONS(2365), - [anon_sym_mut] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [aux_sym_cmd_identifier_token1] = ACTIONS(2365), - [aux_sym_cmd_identifier_token2] = ACTIONS(2365), - [aux_sym_cmd_identifier_token3] = ACTIONS(2365), - [aux_sym_cmd_identifier_token4] = ACTIONS(2365), - [aux_sym_cmd_identifier_token5] = ACTIONS(2365), - [aux_sym_cmd_identifier_token6] = ACTIONS(2365), - [aux_sym_cmd_identifier_token7] = ACTIONS(2365), - [aux_sym_cmd_identifier_token8] = ACTIONS(2365), - [aux_sym_cmd_identifier_token9] = ACTIONS(2365), - [aux_sym_cmd_identifier_token10] = ACTIONS(2365), - [aux_sym_cmd_identifier_token11] = ACTIONS(2365), - [aux_sym_cmd_identifier_token12] = ACTIONS(2365), - [aux_sym_cmd_identifier_token13] = ACTIONS(2365), - [aux_sym_cmd_identifier_token14] = ACTIONS(2365), - [aux_sym_cmd_identifier_token15] = ACTIONS(2365), - [aux_sym_cmd_identifier_token16] = ACTIONS(2365), - [aux_sym_cmd_identifier_token17] = ACTIONS(2365), - [aux_sym_cmd_identifier_token18] = ACTIONS(2365), - [aux_sym_cmd_identifier_token19] = ACTIONS(2365), - [aux_sym_cmd_identifier_token20] = ACTIONS(2365), - [aux_sym_cmd_identifier_token21] = ACTIONS(2365), - [aux_sym_cmd_identifier_token22] = ACTIONS(2365), - [aux_sym_cmd_identifier_token23] = ACTIONS(2365), - [aux_sym_cmd_identifier_token24] = ACTIONS(2365), - [aux_sym_cmd_identifier_token25] = ACTIONS(2365), - [aux_sym_cmd_identifier_token26] = ACTIONS(2365), - [aux_sym_cmd_identifier_token27] = ACTIONS(2365), - [aux_sym_cmd_identifier_token28] = ACTIONS(2365), - [aux_sym_cmd_identifier_token29] = ACTIONS(2365), - [aux_sym_cmd_identifier_token30] = ACTIONS(2365), - [aux_sym_cmd_identifier_token31] = ACTIONS(2365), - [aux_sym_cmd_identifier_token32] = ACTIONS(2365), - [aux_sym_cmd_identifier_token33] = ACTIONS(2365), - [aux_sym_cmd_identifier_token34] = ACTIONS(2365), - [aux_sym_cmd_identifier_token35] = ACTIONS(2365), - [aux_sym_cmd_identifier_token36] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(2365), - [aux_sym_cmd_identifier_token38] = ACTIONS(2365), - [aux_sym_cmd_identifier_token39] = ACTIONS(2365), - [aux_sym_cmd_identifier_token40] = ACTIONS(2365), - [anon_sym_def] = ACTIONS(2365), - [anon_sym_export_DASHenv] = ACTIONS(2365), - [anon_sym_extern] = ACTIONS(2365), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_error] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_in] = ACTIONS(2365), - [anon_sym_loop] = ACTIONS(2365), - [anon_sym_make] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_catch] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_source] = ACTIONS(2365), - [anon_sym_source_DASHenv] = ACTIONS(2365), - [anon_sym_register] = ACTIONS(2365), - [anon_sym_hide] = ACTIONS(2365), - [anon_sym_hide_DASHenv] = ACTIONS(2365), - [anon_sym_overlay] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2365), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [aux_sym__val_number_decimal_token2] = ACTIONS(2365), - [anon_sym_DOT2] = ACTIONS(2365), - [aux_sym__val_number_decimal_token3] = ACTIONS(2365), - [aux_sym__val_number_token1] = ACTIONS(2365), - [aux_sym__val_number_token2] = ACTIONS(2365), - [aux_sym__val_number_token3] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym__str_single_quotes] = ACTIONS(2365), - [sym__str_back_ticks] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2365), - [sym__entry_separator] = ACTIONS(2367), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2287), + [anon_sym_alias] = ACTIONS(2287), + [anon_sym_let] = ACTIONS(2287), + [anon_sym_let_DASHenv] = ACTIONS(2287), + [anon_sym_mut] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [aux_sym_cmd_identifier_token1] = ACTIONS(2287), + [aux_sym_cmd_identifier_token2] = ACTIONS(2287), + [aux_sym_cmd_identifier_token3] = ACTIONS(2287), + [aux_sym_cmd_identifier_token4] = ACTIONS(2287), + [aux_sym_cmd_identifier_token5] = ACTIONS(2287), + [aux_sym_cmd_identifier_token6] = ACTIONS(2287), + [aux_sym_cmd_identifier_token7] = ACTIONS(2287), + [aux_sym_cmd_identifier_token8] = ACTIONS(2287), + [aux_sym_cmd_identifier_token9] = ACTIONS(2287), + [aux_sym_cmd_identifier_token10] = ACTIONS(2287), + [aux_sym_cmd_identifier_token11] = ACTIONS(2287), + [aux_sym_cmd_identifier_token12] = ACTIONS(2287), + [aux_sym_cmd_identifier_token13] = ACTIONS(2287), + [aux_sym_cmd_identifier_token14] = ACTIONS(2287), + [aux_sym_cmd_identifier_token15] = ACTIONS(2287), + [aux_sym_cmd_identifier_token16] = ACTIONS(2287), + [aux_sym_cmd_identifier_token17] = ACTIONS(2287), + [aux_sym_cmd_identifier_token18] = ACTIONS(2287), + [aux_sym_cmd_identifier_token19] = ACTIONS(2287), + [aux_sym_cmd_identifier_token20] = ACTIONS(2287), + [aux_sym_cmd_identifier_token21] = ACTIONS(2287), + [aux_sym_cmd_identifier_token22] = ACTIONS(2287), + [aux_sym_cmd_identifier_token23] = ACTIONS(2287), + [aux_sym_cmd_identifier_token24] = ACTIONS(2287), + [aux_sym_cmd_identifier_token25] = ACTIONS(2287), + [aux_sym_cmd_identifier_token26] = ACTIONS(2287), + [aux_sym_cmd_identifier_token27] = ACTIONS(2287), + [aux_sym_cmd_identifier_token28] = ACTIONS(2287), + [aux_sym_cmd_identifier_token29] = ACTIONS(2287), + [aux_sym_cmd_identifier_token30] = ACTIONS(2287), + [aux_sym_cmd_identifier_token31] = ACTIONS(2287), + [aux_sym_cmd_identifier_token32] = ACTIONS(2287), + [aux_sym_cmd_identifier_token33] = ACTIONS(2287), + [aux_sym_cmd_identifier_token34] = ACTIONS(2287), + [aux_sym_cmd_identifier_token35] = ACTIONS(2287), + [aux_sym_cmd_identifier_token36] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [aux_sym_cmd_identifier_token38] = ACTIONS(2287), + [aux_sym_cmd_identifier_token39] = ACTIONS(2289), + [aux_sym_cmd_identifier_token40] = ACTIONS(2289), + [anon_sym_def] = ACTIONS(2287), + [anon_sym_export_DASHenv] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym_module] = ACTIONS(2287), + [anon_sym_use] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_DOLLAR] = ACTIONS(2289), + [anon_sym_error] = ACTIONS(2287), + [anon_sym_list] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_in] = ACTIONS(2287), + [anon_sym_loop] = ACTIONS(2287), + [anon_sym_make] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_else] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_catch] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_source] = ACTIONS(2287), + [anon_sym_source_DASHenv] = ACTIONS(2287), + [anon_sym_register] = ACTIONS(2287), + [anon_sym_hide] = ACTIONS(2287), + [anon_sym_hide_DASHenv] = ACTIONS(2287), + [anon_sym_overlay] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2287), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(2289), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2289), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2287), + [aux_sym__val_number_decimal_token2] = ACTIONS(2289), + [aux_sym__val_number_decimal_token3] = ACTIONS(2289), + [aux_sym__val_number_decimal_token4] = ACTIONS(2289), + [aux_sym__val_number_token1] = ACTIONS(2289), + [aux_sym__val_number_token2] = ACTIONS(2289), + [aux_sym__val_number_token3] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [sym__str_single_quotes] = ACTIONS(2289), + [sym__str_back_ticks] = ACTIONS(2289), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(247), }, [563] = { [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(1429), - [anon_sym_alias] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_let_DASHenv] = ACTIONS(1429), - [anon_sym_mut] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [aux_sym_cmd_identifier_token1] = ACTIONS(1429), - [aux_sym_cmd_identifier_token2] = ACTIONS(1429), - [aux_sym_cmd_identifier_token3] = ACTIONS(1429), - [aux_sym_cmd_identifier_token4] = ACTIONS(1429), - [aux_sym_cmd_identifier_token5] = ACTIONS(1429), - [aux_sym_cmd_identifier_token6] = ACTIONS(1429), - [aux_sym_cmd_identifier_token7] = ACTIONS(1429), - [aux_sym_cmd_identifier_token8] = ACTIONS(1429), - [aux_sym_cmd_identifier_token9] = ACTIONS(1429), - [aux_sym_cmd_identifier_token10] = ACTIONS(1429), - [aux_sym_cmd_identifier_token11] = ACTIONS(1429), - [aux_sym_cmd_identifier_token12] = ACTIONS(1429), - [aux_sym_cmd_identifier_token13] = ACTIONS(1429), - [aux_sym_cmd_identifier_token14] = ACTIONS(1429), - [aux_sym_cmd_identifier_token15] = ACTIONS(1429), - [aux_sym_cmd_identifier_token16] = ACTIONS(1429), - [aux_sym_cmd_identifier_token17] = ACTIONS(1429), - [aux_sym_cmd_identifier_token18] = ACTIONS(1429), - [aux_sym_cmd_identifier_token19] = ACTIONS(1429), - [aux_sym_cmd_identifier_token20] = ACTIONS(1429), - [aux_sym_cmd_identifier_token21] = ACTIONS(1429), - [aux_sym_cmd_identifier_token22] = ACTIONS(1429), - [aux_sym_cmd_identifier_token23] = ACTIONS(1429), - [aux_sym_cmd_identifier_token24] = ACTIONS(1429), - [aux_sym_cmd_identifier_token25] = ACTIONS(1429), - [aux_sym_cmd_identifier_token26] = ACTIONS(1429), - [aux_sym_cmd_identifier_token27] = ACTIONS(1429), - [aux_sym_cmd_identifier_token28] = ACTIONS(1429), - [aux_sym_cmd_identifier_token29] = ACTIONS(1429), - [aux_sym_cmd_identifier_token30] = ACTIONS(1429), - [aux_sym_cmd_identifier_token31] = ACTIONS(1429), - [aux_sym_cmd_identifier_token32] = ACTIONS(1429), - [aux_sym_cmd_identifier_token33] = ACTIONS(1429), - [aux_sym_cmd_identifier_token34] = ACTIONS(1429), - [aux_sym_cmd_identifier_token35] = ACTIONS(1429), - [aux_sym_cmd_identifier_token36] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_null] = ACTIONS(1429), - [aux_sym_cmd_identifier_token38] = ACTIONS(1429), - [aux_sym_cmd_identifier_token39] = ACTIONS(1429), - [aux_sym_cmd_identifier_token40] = ACTIONS(1429), - [anon_sym_def] = ACTIONS(1429), - [anon_sym_export_DASHenv] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_module] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_DOLLAR] = ACTIONS(1429), - [anon_sym_error] = ACTIONS(1429), - [anon_sym_list] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_make] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1429), - [anon_sym_catch] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_source] = ACTIONS(1429), - [anon_sym_source_DASHenv] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_hide] = ACTIONS(1429), - [anon_sym_hide_DASHenv] = ACTIONS(1429), - [anon_sym_overlay] = ACTIONS(1429), - [anon_sym_new] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1429), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1429), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1429), - [aux_sym__val_number_token1] = ACTIONS(1429), - [aux_sym__val_number_token2] = ACTIONS(1429), - [aux_sym__val_number_token3] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [sym__str_single_quotes] = ACTIONS(1429), - [sym__str_back_ticks] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1429), - [sym__entry_separator] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_null] = ACTIONS(1021), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1021), + [aux_sym_cmd_identifier_token40] = ACTIONS(1021), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1021), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1021), + [aux_sym__val_number_decimal_token3] = ACTIONS(1021), + [aux_sym__val_number_decimal_token4] = ACTIONS(1021), + [aux_sym__val_number_token1] = ACTIONS(1021), + [aux_sym__val_number_token2] = ACTIONS(1021), + [aux_sym__val_number_token3] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [sym__str_single_quotes] = ACTIONS(1021), + [sym__str_back_ticks] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1021), + [sym__entry_separator] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(3), }, [564] = { [sym_comment] = STATE(564), - [anon_sym_export] = ACTIONS(2369), - [anon_sym_alias] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_let_DASHenv] = ACTIONS(2369), - [anon_sym_mut] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [aux_sym_cmd_identifier_token1] = ACTIONS(2369), - [aux_sym_cmd_identifier_token2] = ACTIONS(2369), - [aux_sym_cmd_identifier_token3] = ACTIONS(2369), - [aux_sym_cmd_identifier_token4] = ACTIONS(2369), - [aux_sym_cmd_identifier_token5] = ACTIONS(2369), - [aux_sym_cmd_identifier_token6] = ACTIONS(2369), - [aux_sym_cmd_identifier_token7] = ACTIONS(2369), - [aux_sym_cmd_identifier_token8] = ACTIONS(2369), - [aux_sym_cmd_identifier_token9] = ACTIONS(2369), - [aux_sym_cmd_identifier_token10] = ACTIONS(2369), - [aux_sym_cmd_identifier_token11] = ACTIONS(2369), - [aux_sym_cmd_identifier_token12] = ACTIONS(2369), - [aux_sym_cmd_identifier_token13] = ACTIONS(2369), - [aux_sym_cmd_identifier_token14] = ACTIONS(2369), - [aux_sym_cmd_identifier_token15] = ACTIONS(2369), - [aux_sym_cmd_identifier_token16] = ACTIONS(2369), - [aux_sym_cmd_identifier_token17] = ACTIONS(2369), - [aux_sym_cmd_identifier_token18] = ACTIONS(2369), - [aux_sym_cmd_identifier_token19] = ACTIONS(2369), - [aux_sym_cmd_identifier_token20] = ACTIONS(2369), - [aux_sym_cmd_identifier_token21] = ACTIONS(2369), - [aux_sym_cmd_identifier_token22] = ACTIONS(2369), - [aux_sym_cmd_identifier_token23] = ACTIONS(2369), - [aux_sym_cmd_identifier_token24] = ACTIONS(2369), - [aux_sym_cmd_identifier_token25] = ACTIONS(2369), - [aux_sym_cmd_identifier_token26] = ACTIONS(2369), - [aux_sym_cmd_identifier_token27] = ACTIONS(2369), - [aux_sym_cmd_identifier_token28] = ACTIONS(2369), - [aux_sym_cmd_identifier_token29] = ACTIONS(2369), - [aux_sym_cmd_identifier_token30] = ACTIONS(2369), - [aux_sym_cmd_identifier_token31] = ACTIONS(2369), - [aux_sym_cmd_identifier_token32] = ACTIONS(2369), - [aux_sym_cmd_identifier_token33] = ACTIONS(2369), - [aux_sym_cmd_identifier_token34] = ACTIONS(2369), - [aux_sym_cmd_identifier_token35] = ACTIONS(2369), - [aux_sym_cmd_identifier_token36] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [anon_sym_null] = ACTIONS(2369), - [aux_sym_cmd_identifier_token38] = ACTIONS(2369), - [aux_sym_cmd_identifier_token39] = ACTIONS(2369), - [aux_sym_cmd_identifier_token40] = ACTIONS(2369), - [anon_sym_def] = ACTIONS(2369), - [anon_sym_export_DASHenv] = ACTIONS(2369), - [anon_sym_extern] = ACTIONS(2369), - [anon_sym_module] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_error] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_in] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_make] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_catch] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_source] = ACTIONS(2369), - [anon_sym_source_DASHenv] = ACTIONS(2369), - [anon_sym_register] = ACTIONS(2369), - [anon_sym_hide] = ACTIONS(2369), - [anon_sym_hide_DASHenv] = ACTIONS(2369), - [anon_sym_overlay] = ACTIONS(2369), - [anon_sym_new] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), - [aux_sym__val_number_decimal_token1] = ACTIONS(2369), - [aux_sym__val_number_decimal_token2] = ACTIONS(2369), - [anon_sym_DOT2] = ACTIONS(2369), - [aux_sym__val_number_decimal_token3] = ACTIONS(2369), - [aux_sym__val_number_token1] = ACTIONS(2369), - [aux_sym__val_number_token2] = ACTIONS(2369), - [aux_sym__val_number_token3] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(2369), - [sym__str_single_quotes] = ACTIONS(2369), - [sym__str_back_ticks] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), - [sym__entry_separator] = ACTIONS(2371), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2393), + [anon_sym_alias] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_let_DASHenv] = ACTIONS(2393), + [anon_sym_mut] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [aux_sym_cmd_identifier_token1] = ACTIONS(2393), + [aux_sym_cmd_identifier_token2] = ACTIONS(2393), + [aux_sym_cmd_identifier_token3] = ACTIONS(2393), + [aux_sym_cmd_identifier_token4] = ACTIONS(2393), + [aux_sym_cmd_identifier_token5] = ACTIONS(2393), + [aux_sym_cmd_identifier_token6] = ACTIONS(2393), + [aux_sym_cmd_identifier_token7] = ACTIONS(2393), + [aux_sym_cmd_identifier_token8] = ACTIONS(2393), + [aux_sym_cmd_identifier_token9] = ACTIONS(2393), + [aux_sym_cmd_identifier_token10] = ACTIONS(2393), + [aux_sym_cmd_identifier_token11] = ACTIONS(2393), + [aux_sym_cmd_identifier_token12] = ACTIONS(2393), + [aux_sym_cmd_identifier_token13] = ACTIONS(2393), + [aux_sym_cmd_identifier_token14] = ACTIONS(2393), + [aux_sym_cmd_identifier_token15] = ACTIONS(2393), + [aux_sym_cmd_identifier_token16] = ACTIONS(2393), + [aux_sym_cmd_identifier_token17] = ACTIONS(2393), + [aux_sym_cmd_identifier_token18] = ACTIONS(2393), + [aux_sym_cmd_identifier_token19] = ACTIONS(2393), + [aux_sym_cmd_identifier_token20] = ACTIONS(2393), + [aux_sym_cmd_identifier_token21] = ACTIONS(2393), + [aux_sym_cmd_identifier_token22] = ACTIONS(2393), + [aux_sym_cmd_identifier_token23] = ACTIONS(2393), + [aux_sym_cmd_identifier_token24] = ACTIONS(2393), + [aux_sym_cmd_identifier_token25] = ACTIONS(2393), + [aux_sym_cmd_identifier_token26] = ACTIONS(2393), + [aux_sym_cmd_identifier_token27] = ACTIONS(2393), + [aux_sym_cmd_identifier_token28] = ACTIONS(2393), + [aux_sym_cmd_identifier_token29] = ACTIONS(2393), + [aux_sym_cmd_identifier_token30] = ACTIONS(2393), + [aux_sym_cmd_identifier_token31] = ACTIONS(2393), + [aux_sym_cmd_identifier_token32] = ACTIONS(2393), + [aux_sym_cmd_identifier_token33] = ACTIONS(2393), + [aux_sym_cmd_identifier_token34] = ACTIONS(2393), + [aux_sym_cmd_identifier_token35] = ACTIONS(2393), + [aux_sym_cmd_identifier_token36] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2393), + [aux_sym_cmd_identifier_token38] = ACTIONS(2393), + [aux_sym_cmd_identifier_token39] = ACTIONS(2393), + [aux_sym_cmd_identifier_token40] = ACTIONS(2393), + [anon_sym_def] = ACTIONS(2393), + [anon_sym_export_DASHenv] = ACTIONS(2393), + [anon_sym_extern] = ACTIONS(2393), + [anon_sym_module] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_error] = ACTIONS(2393), + [anon_sym_list] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_in] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_make] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_else] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2393), + [anon_sym_catch] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_source] = ACTIONS(2393), + [anon_sym_source_DASHenv] = ACTIONS(2393), + [anon_sym_register] = ACTIONS(2393), + [anon_sym_hide] = ACTIONS(2393), + [anon_sym_hide_DASHenv] = ACTIONS(2393), + [anon_sym_overlay] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2393), + [aux_sym__val_number_decimal_token2] = ACTIONS(2393), + [aux_sym__val_number_decimal_token3] = ACTIONS(2393), + [aux_sym__val_number_decimal_token4] = ACTIONS(2393), + [aux_sym__val_number_token1] = ACTIONS(2393), + [aux_sym__val_number_token2] = ACTIONS(2393), + [aux_sym__val_number_token3] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(2393), + [sym__str_single_quotes] = ACTIONS(2393), + [sym__str_back_ticks] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2393), + [sym__entry_separator] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(3), }, [565] = { [sym_comment] = STATE(565), - [anon_sym_export] = ACTIONS(2373), - [anon_sym_alias] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_let_DASHenv] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [aux_sym_cmd_identifier_token1] = ACTIONS(2373), - [aux_sym_cmd_identifier_token2] = ACTIONS(2373), - [aux_sym_cmd_identifier_token3] = ACTIONS(2373), - [aux_sym_cmd_identifier_token4] = ACTIONS(2373), - [aux_sym_cmd_identifier_token5] = ACTIONS(2373), - [aux_sym_cmd_identifier_token6] = ACTIONS(2373), - [aux_sym_cmd_identifier_token7] = ACTIONS(2373), - [aux_sym_cmd_identifier_token8] = ACTIONS(2373), - [aux_sym_cmd_identifier_token9] = ACTIONS(2373), - [aux_sym_cmd_identifier_token10] = ACTIONS(2373), - [aux_sym_cmd_identifier_token11] = ACTIONS(2373), - [aux_sym_cmd_identifier_token12] = ACTIONS(2373), - [aux_sym_cmd_identifier_token13] = ACTIONS(2373), - [aux_sym_cmd_identifier_token14] = ACTIONS(2373), - [aux_sym_cmd_identifier_token15] = ACTIONS(2373), - [aux_sym_cmd_identifier_token16] = ACTIONS(2373), - [aux_sym_cmd_identifier_token17] = ACTIONS(2373), - [aux_sym_cmd_identifier_token18] = ACTIONS(2373), - [aux_sym_cmd_identifier_token19] = ACTIONS(2373), - [aux_sym_cmd_identifier_token20] = ACTIONS(2373), - [aux_sym_cmd_identifier_token21] = ACTIONS(2373), - [aux_sym_cmd_identifier_token22] = ACTIONS(2373), - [aux_sym_cmd_identifier_token23] = ACTIONS(2373), - [aux_sym_cmd_identifier_token24] = ACTIONS(2373), - [aux_sym_cmd_identifier_token25] = ACTIONS(2373), - [aux_sym_cmd_identifier_token26] = ACTIONS(2373), - [aux_sym_cmd_identifier_token27] = ACTIONS(2373), - [aux_sym_cmd_identifier_token28] = ACTIONS(2373), - [aux_sym_cmd_identifier_token29] = ACTIONS(2373), - [aux_sym_cmd_identifier_token30] = ACTIONS(2373), - [aux_sym_cmd_identifier_token31] = ACTIONS(2373), - [aux_sym_cmd_identifier_token32] = ACTIONS(2373), - [aux_sym_cmd_identifier_token33] = ACTIONS(2373), - [aux_sym_cmd_identifier_token34] = ACTIONS(2373), - [aux_sym_cmd_identifier_token35] = ACTIONS(2373), - [aux_sym_cmd_identifier_token36] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [anon_sym_null] = ACTIONS(2373), - [aux_sym_cmd_identifier_token38] = ACTIONS(2373), - [aux_sym_cmd_identifier_token39] = ACTIONS(2373), - [aux_sym_cmd_identifier_token40] = ACTIONS(2373), - [anon_sym_def] = ACTIONS(2373), - [anon_sym_export_DASHenv] = ACTIONS(2373), - [anon_sym_extern] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_error] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(2373), - [anon_sym_loop] = ACTIONS(2373), - [anon_sym_make] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_catch] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_source] = ACTIONS(2373), - [anon_sym_source_DASHenv] = ACTIONS(2373), - [anon_sym_register] = ACTIONS(2373), - [anon_sym_hide] = ACTIONS(2373), - [anon_sym_hide_DASHenv] = ACTIONS(2373), - [anon_sym_overlay] = ACTIONS(2373), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), - [aux_sym__val_number_decimal_token1] = ACTIONS(2373), - [aux_sym__val_number_decimal_token2] = ACTIONS(2373), - [anon_sym_DOT2] = ACTIONS(2373), - [aux_sym__val_number_decimal_token3] = ACTIONS(2373), - [aux_sym__val_number_token1] = ACTIONS(2373), - [aux_sym__val_number_token2] = ACTIONS(2373), - [aux_sym__val_number_token3] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym__str_single_quotes] = ACTIONS(2373), - [sym__str_back_ticks] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), - [sym__entry_separator] = ACTIONS(2375), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [anon_sym_true] = ACTIONS(962), + [anon_sym_false] = ACTIONS(962), + [anon_sym_null] = ACTIONS(962), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(962), + [aux_sym_cmd_identifier_token40] = ACTIONS(962), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_error] = ACTIONS(962), + [anon_sym_list] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_new] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(962), + [aux_sym__val_number_decimal_token3] = ACTIONS(962), + [aux_sym__val_number_decimal_token4] = ACTIONS(962), + [aux_sym__val_number_token1] = ACTIONS(962), + [aux_sym__val_number_token2] = ACTIONS(962), + [aux_sym__val_number_token3] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), + [sym__entry_separator] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(3), }, [566] = { [sym_comment] = STATE(566), - [aux_sym__multiple_types_repeat1] = STATE(511), - [anon_sym_export] = ACTIONS(2220), - [anon_sym_alias] = ACTIONS(2220), - [anon_sym_let] = ACTIONS(2220), - [anon_sym_let_DASHenv] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [aux_sym_cmd_identifier_token1] = ACTIONS(2220), - [aux_sym_cmd_identifier_token2] = ACTIONS(2220), - [aux_sym_cmd_identifier_token3] = ACTIONS(2220), - [aux_sym_cmd_identifier_token4] = ACTIONS(2220), - [aux_sym_cmd_identifier_token5] = ACTIONS(2220), - [aux_sym_cmd_identifier_token6] = ACTIONS(2220), - [aux_sym_cmd_identifier_token7] = ACTIONS(2220), - [aux_sym_cmd_identifier_token8] = ACTIONS(2220), - [aux_sym_cmd_identifier_token9] = ACTIONS(2220), - [aux_sym_cmd_identifier_token10] = ACTIONS(2220), - [aux_sym_cmd_identifier_token11] = ACTIONS(2220), - [aux_sym_cmd_identifier_token12] = ACTIONS(2220), - [aux_sym_cmd_identifier_token13] = ACTIONS(2220), - [aux_sym_cmd_identifier_token14] = ACTIONS(2220), - [aux_sym_cmd_identifier_token15] = ACTIONS(2220), - [aux_sym_cmd_identifier_token16] = ACTIONS(2220), - [aux_sym_cmd_identifier_token17] = ACTIONS(2220), - [aux_sym_cmd_identifier_token18] = ACTIONS(2220), - [aux_sym_cmd_identifier_token19] = ACTIONS(2220), - [aux_sym_cmd_identifier_token20] = ACTIONS(2220), - [aux_sym_cmd_identifier_token21] = ACTIONS(2220), - [aux_sym_cmd_identifier_token22] = ACTIONS(2220), - [aux_sym_cmd_identifier_token23] = ACTIONS(2220), - [aux_sym_cmd_identifier_token24] = ACTIONS(2220), - [aux_sym_cmd_identifier_token25] = ACTIONS(2220), - [aux_sym_cmd_identifier_token26] = ACTIONS(2220), - [aux_sym_cmd_identifier_token27] = ACTIONS(2220), - [aux_sym_cmd_identifier_token28] = ACTIONS(2220), - [aux_sym_cmd_identifier_token29] = ACTIONS(2220), - [aux_sym_cmd_identifier_token30] = ACTIONS(2220), - [aux_sym_cmd_identifier_token31] = ACTIONS(2220), - [aux_sym_cmd_identifier_token32] = ACTIONS(2220), - [aux_sym_cmd_identifier_token33] = ACTIONS(2220), - [aux_sym_cmd_identifier_token34] = ACTIONS(2220), - [aux_sym_cmd_identifier_token35] = ACTIONS(2220), - [aux_sym_cmd_identifier_token36] = ACTIONS(2220), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2220), - [aux_sym_cmd_identifier_token38] = ACTIONS(2220), - [aux_sym_cmd_identifier_token39] = ACTIONS(2220), - [aux_sym_cmd_identifier_token40] = ACTIONS(2220), - [anon_sym_def] = ACTIONS(2220), - [anon_sym_export_DASHenv] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_module] = ACTIONS(2220), - [anon_sym_use] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_error] = ACTIONS(2220), - [anon_sym_list] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_in] = ACTIONS(2220), - [anon_sym_loop] = ACTIONS(2220), - [anon_sym_make] = ACTIONS(2220), - [anon_sym_while] = ACTIONS(2220), - [anon_sym_do] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_else] = ACTIONS(2220), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_try] = ACTIONS(2220), - [anon_sym_catch] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_source] = ACTIONS(2220), - [anon_sym_source_DASHenv] = ACTIONS(2220), - [anon_sym_register] = ACTIONS(2220), - [anon_sym_hide] = ACTIONS(2220), - [anon_sym_hide_DASHenv] = ACTIONS(2220), - [anon_sym_overlay] = ACTIONS(2220), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_as] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2220), - [aux_sym__val_number_decimal_token1] = ACTIONS(2220), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [anon_sym_DOT2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2220), - [aux_sym__val_number_token1] = ACTIONS(2220), - [aux_sym__val_number_token2] = ACTIONS(2220), - [aux_sym__val_number_token3] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym__str_single_quotes] = ACTIONS(2220), - [sym__str_back_ticks] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2220), - [sym__entry_separator] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1949), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1949), + [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_list] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1949), + [aux_sym__val_number_decimal_token3] = ACTIONS(1949), + [aux_sym__val_number_decimal_token4] = ACTIONS(1949), + [aux_sym__val_number_token1] = ACTIONS(1949), + [aux_sym__val_number_token2] = ACTIONS(1949), + [aux_sym__val_number_token3] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym__str_single_quotes] = ACTIONS(1949), + [sym__str_back_ticks] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), + [sym__entry_separator] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(3), }, [567] = { [sym_comment] = STATE(567), - [aux_sym_shebang_repeat1] = STATE(567), - [anon_sym_export] = ACTIONS(1856), - [anon_sym_alias] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_let_DASHenv] = ACTIONS(1856), - [anon_sym_mut] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [aux_sym_cmd_identifier_token1] = ACTIONS(1856), - [aux_sym_cmd_identifier_token2] = ACTIONS(1856), - [aux_sym_cmd_identifier_token3] = ACTIONS(1856), - [aux_sym_cmd_identifier_token4] = ACTIONS(1856), - [aux_sym_cmd_identifier_token5] = ACTIONS(1856), - [aux_sym_cmd_identifier_token6] = ACTIONS(1856), - [aux_sym_cmd_identifier_token7] = ACTIONS(1856), - [aux_sym_cmd_identifier_token8] = ACTIONS(1856), - [aux_sym_cmd_identifier_token9] = ACTIONS(1856), - [aux_sym_cmd_identifier_token10] = ACTIONS(1856), - [aux_sym_cmd_identifier_token11] = ACTIONS(1856), - [aux_sym_cmd_identifier_token12] = ACTIONS(1856), - [aux_sym_cmd_identifier_token13] = ACTIONS(1856), - [aux_sym_cmd_identifier_token14] = ACTIONS(1856), - [aux_sym_cmd_identifier_token15] = ACTIONS(1856), - [aux_sym_cmd_identifier_token16] = ACTIONS(1856), - [aux_sym_cmd_identifier_token17] = ACTIONS(1856), - [aux_sym_cmd_identifier_token18] = ACTIONS(1856), - [aux_sym_cmd_identifier_token19] = ACTIONS(1856), - [aux_sym_cmd_identifier_token20] = ACTIONS(1856), - [aux_sym_cmd_identifier_token21] = ACTIONS(1856), - [aux_sym_cmd_identifier_token22] = ACTIONS(1856), - [aux_sym_cmd_identifier_token23] = ACTIONS(1856), - [aux_sym_cmd_identifier_token24] = ACTIONS(1856), - [aux_sym_cmd_identifier_token25] = ACTIONS(1856), - [aux_sym_cmd_identifier_token26] = ACTIONS(1856), - [aux_sym_cmd_identifier_token27] = ACTIONS(1856), - [aux_sym_cmd_identifier_token28] = ACTIONS(1856), - [aux_sym_cmd_identifier_token29] = ACTIONS(1856), - [aux_sym_cmd_identifier_token30] = ACTIONS(1856), - [aux_sym_cmd_identifier_token31] = ACTIONS(1856), - [aux_sym_cmd_identifier_token32] = ACTIONS(1856), - [aux_sym_cmd_identifier_token33] = ACTIONS(1856), - [aux_sym_cmd_identifier_token34] = ACTIONS(1856), - [aux_sym_cmd_identifier_token35] = ACTIONS(1856), - [aux_sym_cmd_identifier_token36] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1858), - [aux_sym_cmd_identifier_token38] = ACTIONS(1856), - [aux_sym_cmd_identifier_token39] = ACTIONS(1858), - [aux_sym_cmd_identifier_token40] = ACTIONS(1858), - [sym__newline] = ACTIONS(2377), - [anon_sym_def] = ACTIONS(1856), - [anon_sym_export_DASHenv] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_module] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_DOLLAR] = ACTIONS(1858), - [anon_sym_error] = ACTIONS(1856), - [anon_sym_list] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_in] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_make] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_do] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_else] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [anon_sym_catch] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_source] = ACTIONS(1856), - [anon_sym_source_DASHenv] = ACTIONS(1856), - [anon_sym_register] = ACTIONS(1856), - [anon_sym_hide] = ACTIONS(1856), - [anon_sym_hide_DASHenv] = ACTIONS(1856), - [anon_sym_overlay] = ACTIONS(1856), - [anon_sym_new] = ACTIONS(1856), - [anon_sym_as] = ACTIONS(1856), - [anon_sym_PLUS] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1858), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1858), - [aux_sym__val_number_decimal_token1] = ACTIONS(1856), - [aux_sym__val_number_decimal_token2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), - [aux_sym__val_number_decimal_token3] = ACTIONS(1858), - [aux_sym__val_number_token1] = ACTIONS(1858), - [aux_sym__val_number_token2] = ACTIONS(1858), - [aux_sym__val_number_token3] = ACTIONS(1858), - [anon_sym_DQUOTE] = ACTIONS(1858), - [sym__str_single_quotes] = ACTIONS(1858), - [sym__str_back_ticks] = ACTIONS(1858), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1858), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_alias] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_let_DASHenv] = ACTIONS(1782), + [anon_sym_mut] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [aux_sym_cmd_identifier_token1] = ACTIONS(1782), + [aux_sym_cmd_identifier_token2] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1782), + [aux_sym_cmd_identifier_token4] = ACTIONS(1782), + [aux_sym_cmd_identifier_token5] = ACTIONS(1782), + [aux_sym_cmd_identifier_token6] = ACTIONS(1782), + [aux_sym_cmd_identifier_token7] = ACTIONS(1782), + [aux_sym_cmd_identifier_token8] = ACTIONS(1782), + [aux_sym_cmd_identifier_token9] = ACTIONS(1782), + [aux_sym_cmd_identifier_token10] = ACTIONS(1782), + [aux_sym_cmd_identifier_token11] = ACTIONS(1782), + [aux_sym_cmd_identifier_token12] = ACTIONS(1782), + [aux_sym_cmd_identifier_token13] = ACTIONS(1782), + [aux_sym_cmd_identifier_token14] = ACTIONS(1782), + [aux_sym_cmd_identifier_token15] = ACTIONS(1782), + [aux_sym_cmd_identifier_token16] = ACTIONS(1782), + [aux_sym_cmd_identifier_token17] = ACTIONS(1782), + [aux_sym_cmd_identifier_token18] = ACTIONS(1782), + [aux_sym_cmd_identifier_token19] = ACTIONS(1782), + [aux_sym_cmd_identifier_token20] = ACTIONS(1782), + [aux_sym_cmd_identifier_token21] = ACTIONS(1782), + [aux_sym_cmd_identifier_token22] = ACTIONS(1782), + [aux_sym_cmd_identifier_token23] = ACTIONS(1782), + [aux_sym_cmd_identifier_token24] = ACTIONS(1782), + [aux_sym_cmd_identifier_token25] = ACTIONS(1782), + [aux_sym_cmd_identifier_token26] = ACTIONS(1782), + [aux_sym_cmd_identifier_token27] = ACTIONS(1782), + [aux_sym_cmd_identifier_token28] = ACTIONS(1782), + [aux_sym_cmd_identifier_token29] = ACTIONS(1782), + [aux_sym_cmd_identifier_token30] = ACTIONS(1782), + [aux_sym_cmd_identifier_token31] = ACTIONS(1782), + [aux_sym_cmd_identifier_token32] = ACTIONS(1782), + [aux_sym_cmd_identifier_token33] = ACTIONS(1782), + [aux_sym_cmd_identifier_token34] = ACTIONS(1782), + [aux_sym_cmd_identifier_token35] = ACTIONS(1782), + [aux_sym_cmd_identifier_token36] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token38] = ACTIONS(1782), + [aux_sym_cmd_identifier_token39] = ACTIONS(1782), + [aux_sym_cmd_identifier_token40] = ACTIONS(1782), + [anon_sym_def] = ACTIONS(1782), + [anon_sym_export_DASHenv] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_error] = ACTIONS(1782), + [anon_sym_list] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_make] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_catch] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_source] = ACTIONS(1782), + [anon_sym_source_DASHenv] = ACTIONS(1782), + [anon_sym_register] = ACTIONS(1782), + [anon_sym_hide] = ACTIONS(1782), + [anon_sym_hide_DASHenv] = ACTIONS(1782), + [anon_sym_overlay] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1782), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1782), + [aux_sym__val_number_decimal_token4] = ACTIONS(1782), + [aux_sym__val_number_token1] = ACTIONS(1782), + [aux_sym__val_number_token2] = ACTIONS(1782), + [aux_sym__val_number_token3] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym__str_single_quotes] = ACTIONS(1782), + [sym__str_back_ticks] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1782), + [sym__entry_separator] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), [anon_sym_POUND] = ACTIONS(3), }, [568] = { [sym_comment] = STATE(568), - [anon_sym_export] = ACTIONS(2380), - [anon_sym_alias] = ACTIONS(2380), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_let_DASHenv] = ACTIONS(2380), - [anon_sym_mut] = ACTIONS(2380), - [anon_sym_const] = ACTIONS(2380), - [aux_sym_cmd_identifier_token1] = ACTIONS(2380), - [aux_sym_cmd_identifier_token2] = ACTIONS(2380), - [aux_sym_cmd_identifier_token3] = ACTIONS(2380), - [aux_sym_cmd_identifier_token4] = ACTIONS(2380), - [aux_sym_cmd_identifier_token5] = ACTIONS(2380), - [aux_sym_cmd_identifier_token6] = ACTIONS(2380), - [aux_sym_cmd_identifier_token7] = ACTIONS(2380), - [aux_sym_cmd_identifier_token8] = ACTIONS(2380), - [aux_sym_cmd_identifier_token9] = ACTIONS(2380), - [aux_sym_cmd_identifier_token10] = ACTIONS(2380), - [aux_sym_cmd_identifier_token11] = ACTIONS(2380), - [aux_sym_cmd_identifier_token12] = ACTIONS(2380), - [aux_sym_cmd_identifier_token13] = ACTIONS(2380), - [aux_sym_cmd_identifier_token14] = ACTIONS(2380), - [aux_sym_cmd_identifier_token15] = ACTIONS(2380), - [aux_sym_cmd_identifier_token16] = ACTIONS(2380), - [aux_sym_cmd_identifier_token17] = ACTIONS(2380), - [aux_sym_cmd_identifier_token18] = ACTIONS(2380), - [aux_sym_cmd_identifier_token19] = ACTIONS(2380), - [aux_sym_cmd_identifier_token20] = ACTIONS(2380), - [aux_sym_cmd_identifier_token21] = ACTIONS(2380), - [aux_sym_cmd_identifier_token22] = ACTIONS(2380), - [aux_sym_cmd_identifier_token23] = ACTIONS(2380), - [aux_sym_cmd_identifier_token24] = ACTIONS(2380), - [aux_sym_cmd_identifier_token25] = ACTIONS(2380), - [aux_sym_cmd_identifier_token26] = ACTIONS(2380), - [aux_sym_cmd_identifier_token27] = ACTIONS(2380), - [aux_sym_cmd_identifier_token28] = ACTIONS(2380), - [aux_sym_cmd_identifier_token29] = ACTIONS(2380), - [aux_sym_cmd_identifier_token30] = ACTIONS(2380), - [aux_sym_cmd_identifier_token31] = ACTIONS(2380), - [aux_sym_cmd_identifier_token32] = ACTIONS(2380), - [aux_sym_cmd_identifier_token33] = ACTIONS(2380), - [aux_sym_cmd_identifier_token34] = ACTIONS(2380), - [aux_sym_cmd_identifier_token35] = ACTIONS(2380), - [aux_sym_cmd_identifier_token36] = ACTIONS(2380), - [anon_sym_true] = ACTIONS(2380), - [anon_sym_false] = ACTIONS(2380), - [anon_sym_null] = ACTIONS(2380), - [aux_sym_cmd_identifier_token38] = ACTIONS(2380), - [aux_sym_cmd_identifier_token39] = ACTIONS(2380), - [aux_sym_cmd_identifier_token40] = ACTIONS(2380), - [anon_sym_def] = ACTIONS(2380), - [anon_sym_export_DASHenv] = ACTIONS(2380), - [anon_sym_extern] = ACTIONS(2380), - [anon_sym_module] = ACTIONS(2380), - [anon_sym_use] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_DOLLAR] = ACTIONS(2380), - [anon_sym_error] = ACTIONS(2380), - [anon_sym_list] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_break] = ACTIONS(2380), - [anon_sym_continue] = ACTIONS(2380), - [anon_sym_for] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_loop] = ACTIONS(2380), - [anon_sym_make] = ACTIONS(2380), - [anon_sym_while] = ACTIONS(2380), - [anon_sym_do] = ACTIONS(2380), - [anon_sym_if] = ACTIONS(2380), - [anon_sym_else] = ACTIONS(2380), - [anon_sym_match] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_try] = ACTIONS(2380), - [anon_sym_catch] = ACTIONS(2380), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_source] = ACTIONS(2380), - [anon_sym_source_DASHenv] = ACTIONS(2380), - [anon_sym_register] = ACTIONS(2380), - [anon_sym_hide] = ACTIONS(2380), - [anon_sym_hide_DASHenv] = ACTIONS(2380), - [anon_sym_overlay] = ACTIONS(2380), - [anon_sym_new] = ACTIONS(2380), - [anon_sym_as] = ACTIONS(2380), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2380), - [aux_sym__val_number_decimal_token1] = ACTIONS(2380), - [aux_sym__val_number_decimal_token2] = ACTIONS(2380), - [anon_sym_DOT2] = ACTIONS(2380), - [aux_sym__val_number_decimal_token3] = ACTIONS(2380), - [aux_sym__val_number_token1] = ACTIONS(2380), - [aux_sym__val_number_token2] = ACTIONS(2380), - [aux_sym__val_number_token3] = ACTIONS(2380), - [anon_sym_DQUOTE] = ACTIONS(2380), - [sym__str_single_quotes] = ACTIONS(2380), - [sym__str_back_ticks] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2380), - [sym__entry_separator] = ACTIONS(2382), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1905), + [anon_sym_alias] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_let_DASHenv] = ACTIONS(1905), + [anon_sym_mut] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [aux_sym_cmd_identifier_token1] = ACTIONS(1905), + [aux_sym_cmd_identifier_token2] = ACTIONS(1905), + [aux_sym_cmd_identifier_token3] = ACTIONS(1905), + [aux_sym_cmd_identifier_token4] = ACTIONS(1905), + [aux_sym_cmd_identifier_token5] = ACTIONS(1905), + [aux_sym_cmd_identifier_token6] = ACTIONS(1905), + [aux_sym_cmd_identifier_token7] = ACTIONS(1905), + [aux_sym_cmd_identifier_token8] = ACTIONS(1905), + [aux_sym_cmd_identifier_token9] = ACTIONS(1905), + [aux_sym_cmd_identifier_token10] = ACTIONS(1905), + [aux_sym_cmd_identifier_token11] = ACTIONS(1905), + [aux_sym_cmd_identifier_token12] = ACTIONS(1905), + [aux_sym_cmd_identifier_token13] = ACTIONS(1905), + [aux_sym_cmd_identifier_token14] = ACTIONS(1905), + [aux_sym_cmd_identifier_token15] = ACTIONS(1905), + [aux_sym_cmd_identifier_token16] = ACTIONS(1905), + [aux_sym_cmd_identifier_token17] = ACTIONS(1905), + [aux_sym_cmd_identifier_token18] = ACTIONS(1905), + [aux_sym_cmd_identifier_token19] = ACTIONS(1905), + [aux_sym_cmd_identifier_token20] = ACTIONS(1905), + [aux_sym_cmd_identifier_token21] = ACTIONS(1905), + [aux_sym_cmd_identifier_token22] = ACTIONS(1905), + [aux_sym_cmd_identifier_token23] = ACTIONS(1905), + [aux_sym_cmd_identifier_token24] = ACTIONS(1905), + [aux_sym_cmd_identifier_token25] = ACTIONS(1905), + [aux_sym_cmd_identifier_token26] = ACTIONS(1905), + [aux_sym_cmd_identifier_token27] = ACTIONS(1905), + [aux_sym_cmd_identifier_token28] = ACTIONS(1905), + [aux_sym_cmd_identifier_token29] = ACTIONS(1905), + [aux_sym_cmd_identifier_token30] = ACTIONS(1905), + [aux_sym_cmd_identifier_token31] = ACTIONS(1905), + [aux_sym_cmd_identifier_token32] = ACTIONS(1905), + [aux_sym_cmd_identifier_token33] = ACTIONS(1905), + [aux_sym_cmd_identifier_token34] = ACTIONS(1905), + [aux_sym_cmd_identifier_token35] = ACTIONS(1905), + [aux_sym_cmd_identifier_token36] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [anon_sym_null] = ACTIONS(1905), + [aux_sym_cmd_identifier_token38] = ACTIONS(1905), + [aux_sym_cmd_identifier_token39] = ACTIONS(1905), + [aux_sym_cmd_identifier_token40] = ACTIONS(1905), + [anon_sym_def] = ACTIONS(1905), + [anon_sym_export_DASHenv] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_module] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_DOLLAR] = ACTIONS(1905), + [anon_sym_error] = ACTIONS(1905), + [anon_sym_list] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_in] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_make] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_do] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_else] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1905), + [anon_sym_catch] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_source] = ACTIONS(1905), + [anon_sym_source_DASHenv] = ACTIONS(1905), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_hide] = ACTIONS(1905), + [anon_sym_hide_DASHenv] = ACTIONS(1905), + [anon_sym_overlay] = ACTIONS(1905), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_as] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), + [aux_sym__val_number_decimal_token1] = ACTIONS(1905), + [aux_sym__val_number_decimal_token2] = ACTIONS(1905), + [aux_sym__val_number_decimal_token3] = ACTIONS(1905), + [aux_sym__val_number_decimal_token4] = ACTIONS(1905), + [aux_sym__val_number_token1] = ACTIONS(1905), + [aux_sym__val_number_token2] = ACTIONS(1905), + [aux_sym__val_number_token3] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1905), + [sym__str_single_quotes] = ACTIONS(1905), + [sym__str_back_ticks] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), + [sym__entry_separator] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(3), }, [569] = { [sym_comment] = STATE(569), - [anon_sym_export] = ACTIONS(2384), - [anon_sym_alias] = ACTIONS(2384), - [anon_sym_let] = ACTIONS(2384), - [anon_sym_let_DASHenv] = ACTIONS(2384), - [anon_sym_mut] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [aux_sym_cmd_identifier_token1] = ACTIONS(2384), - [aux_sym_cmd_identifier_token2] = ACTIONS(2384), - [aux_sym_cmd_identifier_token3] = ACTIONS(2384), - [aux_sym_cmd_identifier_token4] = ACTIONS(2384), - [aux_sym_cmd_identifier_token5] = ACTIONS(2384), - [aux_sym_cmd_identifier_token6] = ACTIONS(2384), - [aux_sym_cmd_identifier_token7] = ACTIONS(2384), - [aux_sym_cmd_identifier_token8] = ACTIONS(2384), - [aux_sym_cmd_identifier_token9] = ACTIONS(2384), - [aux_sym_cmd_identifier_token10] = ACTIONS(2384), - [aux_sym_cmd_identifier_token11] = ACTIONS(2384), - [aux_sym_cmd_identifier_token12] = ACTIONS(2384), - [aux_sym_cmd_identifier_token13] = ACTIONS(2384), - [aux_sym_cmd_identifier_token14] = ACTIONS(2384), - [aux_sym_cmd_identifier_token15] = ACTIONS(2384), - [aux_sym_cmd_identifier_token16] = ACTIONS(2384), - [aux_sym_cmd_identifier_token17] = ACTIONS(2384), - [aux_sym_cmd_identifier_token18] = ACTIONS(2384), - [aux_sym_cmd_identifier_token19] = ACTIONS(2384), - [aux_sym_cmd_identifier_token20] = ACTIONS(2384), - [aux_sym_cmd_identifier_token21] = ACTIONS(2384), - [aux_sym_cmd_identifier_token22] = ACTIONS(2384), - [aux_sym_cmd_identifier_token23] = ACTIONS(2384), - [aux_sym_cmd_identifier_token24] = ACTIONS(2384), - [aux_sym_cmd_identifier_token25] = ACTIONS(2384), - [aux_sym_cmd_identifier_token26] = ACTIONS(2384), - [aux_sym_cmd_identifier_token27] = ACTIONS(2384), - [aux_sym_cmd_identifier_token28] = ACTIONS(2384), - [aux_sym_cmd_identifier_token29] = ACTIONS(2384), - [aux_sym_cmd_identifier_token30] = ACTIONS(2384), - [aux_sym_cmd_identifier_token31] = ACTIONS(2384), - [aux_sym_cmd_identifier_token32] = ACTIONS(2384), - [aux_sym_cmd_identifier_token33] = ACTIONS(2384), - [aux_sym_cmd_identifier_token34] = ACTIONS(2384), - [aux_sym_cmd_identifier_token35] = ACTIONS(2384), - [aux_sym_cmd_identifier_token36] = ACTIONS(2384), - [anon_sym_true] = ACTIONS(2384), - [anon_sym_false] = ACTIONS(2384), - [anon_sym_null] = ACTIONS(2384), - [aux_sym_cmd_identifier_token38] = ACTIONS(2384), - [aux_sym_cmd_identifier_token39] = ACTIONS(2384), - [aux_sym_cmd_identifier_token40] = ACTIONS(2384), - [anon_sym_def] = ACTIONS(2384), - [anon_sym_export_DASHenv] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym_module] = ACTIONS(2384), - [anon_sym_use] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_DOLLAR] = ACTIONS(2384), - [anon_sym_error] = ACTIONS(2384), - [anon_sym_list] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_in] = ACTIONS(2384), - [anon_sym_loop] = ACTIONS(2384), - [anon_sym_make] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_match] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_source] = ACTIONS(2384), - [anon_sym_source_DASHenv] = ACTIONS(2384), - [anon_sym_register] = ACTIONS(2384), - [anon_sym_hide] = ACTIONS(2384), - [anon_sym_hide_DASHenv] = ACTIONS(2384), - [anon_sym_overlay] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_as] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2384), - [aux_sym__val_number_decimal_token1] = ACTIONS(2384), - [aux_sym__val_number_decimal_token2] = ACTIONS(2384), - [anon_sym_DOT2] = ACTIONS(2384), - [aux_sym__val_number_decimal_token3] = ACTIONS(2384), - [aux_sym__val_number_token1] = ACTIONS(2384), - [aux_sym__val_number_token2] = ACTIONS(2384), - [aux_sym__val_number_token3] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2384), - [sym__str_single_quotes] = ACTIONS(2384), - [sym__str_back_ticks] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2384), - [sym__entry_separator] = ACTIONS(2386), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2397), + [anon_sym_alias] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_let_DASHenv] = ACTIONS(2397), + [anon_sym_mut] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [aux_sym_cmd_identifier_token1] = ACTIONS(2397), + [aux_sym_cmd_identifier_token2] = ACTIONS(2397), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [aux_sym_cmd_identifier_token6] = ACTIONS(2397), + [aux_sym_cmd_identifier_token7] = ACTIONS(2397), + [aux_sym_cmd_identifier_token8] = ACTIONS(2397), + [aux_sym_cmd_identifier_token9] = ACTIONS(2397), + [aux_sym_cmd_identifier_token10] = ACTIONS(2397), + [aux_sym_cmd_identifier_token11] = ACTIONS(2397), + [aux_sym_cmd_identifier_token12] = ACTIONS(2397), + [aux_sym_cmd_identifier_token13] = ACTIONS(2397), + [aux_sym_cmd_identifier_token14] = ACTIONS(2397), + [aux_sym_cmd_identifier_token15] = ACTIONS(2397), + [aux_sym_cmd_identifier_token16] = ACTIONS(2397), + [aux_sym_cmd_identifier_token17] = ACTIONS(2397), + [aux_sym_cmd_identifier_token18] = ACTIONS(2397), + [aux_sym_cmd_identifier_token19] = ACTIONS(2397), + [aux_sym_cmd_identifier_token20] = ACTIONS(2397), + [aux_sym_cmd_identifier_token21] = ACTIONS(2397), + [aux_sym_cmd_identifier_token22] = ACTIONS(2397), + [aux_sym_cmd_identifier_token23] = ACTIONS(2397), + [aux_sym_cmd_identifier_token24] = ACTIONS(2397), + [aux_sym_cmd_identifier_token25] = ACTIONS(2397), + [aux_sym_cmd_identifier_token26] = ACTIONS(2397), + [aux_sym_cmd_identifier_token27] = ACTIONS(2397), + [aux_sym_cmd_identifier_token28] = ACTIONS(2397), + [aux_sym_cmd_identifier_token29] = ACTIONS(2397), + [aux_sym_cmd_identifier_token30] = ACTIONS(2397), + [aux_sym_cmd_identifier_token31] = ACTIONS(2397), + [aux_sym_cmd_identifier_token32] = ACTIONS(2397), + [aux_sym_cmd_identifier_token33] = ACTIONS(2397), + [aux_sym_cmd_identifier_token34] = ACTIONS(2397), + [aux_sym_cmd_identifier_token35] = ACTIONS(2397), + [aux_sym_cmd_identifier_token36] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [anon_sym_null] = ACTIONS(2397), + [aux_sym_cmd_identifier_token38] = ACTIONS(2397), + [aux_sym_cmd_identifier_token39] = ACTIONS(2397), + [aux_sym_cmd_identifier_token40] = ACTIONS(2397), + [anon_sym_def] = ACTIONS(2397), + [anon_sym_export_DASHenv] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_module] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_error] = ACTIONS(2397), + [anon_sym_list] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_make] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2397), + [anon_sym_catch] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_source] = ACTIONS(2397), + [anon_sym_source_DASHenv] = ACTIONS(2397), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_hide] = ACTIONS(2397), + [anon_sym_hide_DASHenv] = ACTIONS(2397), + [anon_sym_overlay] = ACTIONS(2397), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2397), + [aux_sym__val_number_decimal_token1] = ACTIONS(2397), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2397), + [aux_sym__val_number_decimal_token4] = ACTIONS(2397), + [aux_sym__val_number_token1] = ACTIONS(2397), + [aux_sym__val_number_token2] = ACTIONS(2397), + [aux_sym__val_number_token3] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym__str_single_quotes] = ACTIONS(2397), + [sym__str_back_ticks] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2397), + [sym__entry_separator] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(3), }, [570] = { [sym_comment] = STATE(570), - [anon_sym_export] = ACTIONS(1959), - [anon_sym_alias] = ACTIONS(1959), - [anon_sym_let] = ACTIONS(1959), - [anon_sym_let_DASHenv] = ACTIONS(1959), - [anon_sym_mut] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [aux_sym_cmd_identifier_token1] = ACTIONS(1959), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1959), - [aux_sym_cmd_identifier_token9] = ACTIONS(1959), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1959), - [aux_sym_cmd_identifier_token13] = ACTIONS(1959), - [aux_sym_cmd_identifier_token14] = ACTIONS(1959), - [aux_sym_cmd_identifier_token15] = ACTIONS(1959), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1959), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1959), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_export_DASHenv] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_module] = ACTIONS(1959), - [anon_sym_use] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1959), - [anon_sym_list] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_in] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_make] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_source] = ACTIONS(1959), - [anon_sym_source_DASHenv] = ACTIONS(1959), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_hide_DASHenv] = ACTIONS(1959), - [anon_sym_overlay] = ACTIONS(1959), - [anon_sym_new] = ACTIONS(1959), - [anon_sym_as] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [sym__entry_separator] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym__multiple_types_repeat1] = STATE(527), + [anon_sym_export] = ACTIONS(2275), + [anon_sym_alias] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_let_DASHenv] = ACTIONS(2275), + [anon_sym_mut] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [aux_sym_cmd_identifier_token1] = ACTIONS(2275), + [aux_sym_cmd_identifier_token2] = ACTIONS(2275), + [aux_sym_cmd_identifier_token3] = ACTIONS(2275), + [aux_sym_cmd_identifier_token4] = ACTIONS(2275), + [aux_sym_cmd_identifier_token5] = ACTIONS(2275), + [aux_sym_cmd_identifier_token6] = ACTIONS(2275), + [aux_sym_cmd_identifier_token7] = ACTIONS(2275), + [aux_sym_cmd_identifier_token8] = ACTIONS(2275), + [aux_sym_cmd_identifier_token9] = ACTIONS(2275), + [aux_sym_cmd_identifier_token10] = ACTIONS(2275), + [aux_sym_cmd_identifier_token11] = ACTIONS(2275), + [aux_sym_cmd_identifier_token12] = ACTIONS(2275), + [aux_sym_cmd_identifier_token13] = ACTIONS(2275), + [aux_sym_cmd_identifier_token14] = ACTIONS(2275), + [aux_sym_cmd_identifier_token15] = ACTIONS(2275), + [aux_sym_cmd_identifier_token16] = ACTIONS(2275), + [aux_sym_cmd_identifier_token17] = ACTIONS(2275), + [aux_sym_cmd_identifier_token18] = ACTIONS(2275), + [aux_sym_cmd_identifier_token19] = ACTIONS(2275), + [aux_sym_cmd_identifier_token20] = ACTIONS(2275), + [aux_sym_cmd_identifier_token21] = ACTIONS(2275), + [aux_sym_cmd_identifier_token22] = ACTIONS(2275), + [aux_sym_cmd_identifier_token23] = ACTIONS(2275), + [aux_sym_cmd_identifier_token24] = ACTIONS(2275), + [aux_sym_cmd_identifier_token25] = ACTIONS(2275), + [aux_sym_cmd_identifier_token26] = ACTIONS(2275), + [aux_sym_cmd_identifier_token27] = ACTIONS(2275), + [aux_sym_cmd_identifier_token28] = ACTIONS(2275), + [aux_sym_cmd_identifier_token29] = ACTIONS(2275), + [aux_sym_cmd_identifier_token30] = ACTIONS(2275), + [aux_sym_cmd_identifier_token31] = ACTIONS(2275), + [aux_sym_cmd_identifier_token32] = ACTIONS(2275), + [aux_sym_cmd_identifier_token33] = ACTIONS(2275), + [aux_sym_cmd_identifier_token34] = ACTIONS(2275), + [aux_sym_cmd_identifier_token35] = ACTIONS(2275), + [aux_sym_cmd_identifier_token36] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [anon_sym_null] = ACTIONS(2275), + [aux_sym_cmd_identifier_token38] = ACTIONS(2275), + [aux_sym_cmd_identifier_token39] = ACTIONS(2275), + [aux_sym_cmd_identifier_token40] = ACTIONS(2275), + [anon_sym_def] = ACTIONS(2275), + [anon_sym_export_DASHenv] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_module] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2275), + [anon_sym_error] = ACTIONS(2275), + [anon_sym_list] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_make] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_do] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_else] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_try] = ACTIONS(2275), + [anon_sym_catch] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_source] = ACTIONS(2275), + [anon_sym_source_DASHenv] = ACTIONS(2275), + [anon_sym_register] = ACTIONS(2275), + [anon_sym_hide] = ACTIONS(2275), + [anon_sym_hide_DASHenv] = ACTIONS(2275), + [anon_sym_overlay] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2275), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), + [aux_sym__val_number_decimal_token1] = ACTIONS(2275), + [aux_sym__val_number_decimal_token2] = ACTIONS(2275), + [aux_sym__val_number_decimal_token3] = ACTIONS(2275), + [aux_sym__val_number_decimal_token4] = ACTIONS(2275), + [aux_sym__val_number_token1] = ACTIONS(2275), + [aux_sym__val_number_token2] = ACTIONS(2275), + [aux_sym__val_number_token3] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(2275), + [sym__str_single_quotes] = ACTIONS(2275), + [sym__str_back_ticks] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), + [sym__entry_separator] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), }, [571] = { [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_alias] = ACTIONS(1963), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_let_DASHenv] = ACTIONS(1963), - [anon_sym_mut] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [aux_sym_cmd_identifier_token1] = ACTIONS(1963), - [aux_sym_cmd_identifier_token2] = ACTIONS(1963), - [aux_sym_cmd_identifier_token3] = ACTIONS(1963), - [aux_sym_cmd_identifier_token4] = ACTIONS(1963), - [aux_sym_cmd_identifier_token5] = ACTIONS(1963), - [aux_sym_cmd_identifier_token6] = ACTIONS(1963), - [aux_sym_cmd_identifier_token7] = ACTIONS(1963), - [aux_sym_cmd_identifier_token8] = ACTIONS(1963), - [aux_sym_cmd_identifier_token9] = ACTIONS(1963), - [aux_sym_cmd_identifier_token10] = ACTIONS(1963), - [aux_sym_cmd_identifier_token11] = ACTIONS(1963), - [aux_sym_cmd_identifier_token12] = ACTIONS(1963), - [aux_sym_cmd_identifier_token13] = ACTIONS(1963), - [aux_sym_cmd_identifier_token14] = ACTIONS(1963), - [aux_sym_cmd_identifier_token15] = ACTIONS(1963), - [aux_sym_cmd_identifier_token16] = ACTIONS(1963), - [aux_sym_cmd_identifier_token17] = ACTIONS(1963), - [aux_sym_cmd_identifier_token18] = ACTIONS(1963), - [aux_sym_cmd_identifier_token19] = ACTIONS(1963), - [aux_sym_cmd_identifier_token20] = ACTIONS(1963), - [aux_sym_cmd_identifier_token21] = ACTIONS(1963), - [aux_sym_cmd_identifier_token22] = ACTIONS(1963), - [aux_sym_cmd_identifier_token23] = ACTIONS(1963), - [aux_sym_cmd_identifier_token24] = ACTIONS(1963), - [aux_sym_cmd_identifier_token25] = ACTIONS(1963), - [aux_sym_cmd_identifier_token26] = ACTIONS(1963), - [aux_sym_cmd_identifier_token27] = ACTIONS(1963), - [aux_sym_cmd_identifier_token28] = ACTIONS(1963), - [aux_sym_cmd_identifier_token29] = ACTIONS(1963), - [aux_sym_cmd_identifier_token30] = ACTIONS(1963), - [aux_sym_cmd_identifier_token31] = ACTIONS(1963), - [aux_sym_cmd_identifier_token32] = ACTIONS(1963), - [aux_sym_cmd_identifier_token33] = ACTIONS(1963), - [aux_sym_cmd_identifier_token34] = ACTIONS(1963), - [aux_sym_cmd_identifier_token35] = ACTIONS(1963), - [aux_sym_cmd_identifier_token36] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1963), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_export_DASHenv] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_module] = ACTIONS(1963), - [anon_sym_use] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1963), - [anon_sym_list] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_in] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_make] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_source] = ACTIONS(1963), - [anon_sym_source_DASHenv] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_hide_DASHenv] = ACTIONS(1963), - [anon_sym_overlay] = ACTIONS(1963), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_as] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), - [sym__entry_separator] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_alias] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_let_DASHenv] = ACTIONS(1935), + [anon_sym_mut] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [aux_sym_cmd_identifier_token1] = ACTIONS(1935), + [aux_sym_cmd_identifier_token2] = ACTIONS(1935), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [aux_sym_cmd_identifier_token6] = ACTIONS(1935), + [aux_sym_cmd_identifier_token7] = ACTIONS(1935), + [aux_sym_cmd_identifier_token8] = ACTIONS(1935), + [aux_sym_cmd_identifier_token9] = ACTIONS(1935), + [aux_sym_cmd_identifier_token10] = ACTIONS(1935), + [aux_sym_cmd_identifier_token11] = ACTIONS(1935), + [aux_sym_cmd_identifier_token12] = ACTIONS(1935), + [aux_sym_cmd_identifier_token13] = ACTIONS(1935), + [aux_sym_cmd_identifier_token14] = ACTIONS(1935), + [aux_sym_cmd_identifier_token15] = ACTIONS(1935), + [aux_sym_cmd_identifier_token16] = ACTIONS(1935), + [aux_sym_cmd_identifier_token17] = ACTIONS(1935), + [aux_sym_cmd_identifier_token18] = ACTIONS(1935), + [aux_sym_cmd_identifier_token19] = ACTIONS(1935), + [aux_sym_cmd_identifier_token20] = ACTIONS(1935), + [aux_sym_cmd_identifier_token21] = ACTIONS(1935), + [aux_sym_cmd_identifier_token22] = ACTIONS(1935), + [aux_sym_cmd_identifier_token23] = ACTIONS(1935), + [aux_sym_cmd_identifier_token24] = ACTIONS(1935), + [aux_sym_cmd_identifier_token25] = ACTIONS(1935), + [aux_sym_cmd_identifier_token26] = ACTIONS(1935), + [aux_sym_cmd_identifier_token27] = ACTIONS(1935), + [aux_sym_cmd_identifier_token28] = ACTIONS(1935), + [aux_sym_cmd_identifier_token29] = ACTIONS(1935), + [aux_sym_cmd_identifier_token30] = ACTIONS(1935), + [aux_sym_cmd_identifier_token31] = ACTIONS(1935), + [aux_sym_cmd_identifier_token32] = ACTIONS(1935), + [aux_sym_cmd_identifier_token33] = ACTIONS(1935), + [aux_sym_cmd_identifier_token34] = ACTIONS(1935), + [aux_sym_cmd_identifier_token35] = ACTIONS(1935), + [aux_sym_cmd_identifier_token36] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1935), + [anon_sym_false] = ACTIONS(1935), + [anon_sym_null] = ACTIONS(1935), + [aux_sym_cmd_identifier_token38] = ACTIONS(1935), + [aux_sym_cmd_identifier_token39] = ACTIONS(1935), + [aux_sym_cmd_identifier_token40] = ACTIONS(1935), + [anon_sym_def] = ACTIONS(1935), + [anon_sym_export_DASHenv] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_use] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_error] = ACTIONS(1935), + [anon_sym_list] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_in] = ACTIONS(1935), + [anon_sym_loop] = ACTIONS(1935), + [anon_sym_make] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_source] = ACTIONS(1935), + [anon_sym_source_DASHenv] = ACTIONS(1935), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_hide] = ACTIONS(1935), + [anon_sym_hide_DASHenv] = ACTIONS(1935), + [anon_sym_overlay] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1935), + [aux_sym__val_number_decimal_token3] = ACTIONS(1935), + [aux_sym__val_number_decimal_token4] = ACTIONS(1935), + [aux_sym__val_number_token1] = ACTIONS(1935), + [aux_sym__val_number_token2] = ACTIONS(1935), + [aux_sym__val_number_token3] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1935), + [sym__str_single_quotes] = ACTIONS(1935), + [sym__str_back_ticks] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), + [sym__entry_separator] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(3), }, [572] = { [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(928), - [anon_sym_alias] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_let_DASHenv] = ACTIONS(928), - [anon_sym_mut] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [aux_sym_cmd_identifier_token1] = ACTIONS(928), - [aux_sym_cmd_identifier_token2] = ACTIONS(928), - [aux_sym_cmd_identifier_token3] = ACTIONS(928), - [aux_sym_cmd_identifier_token4] = ACTIONS(928), - [aux_sym_cmd_identifier_token5] = ACTIONS(928), - [aux_sym_cmd_identifier_token6] = ACTIONS(928), - [aux_sym_cmd_identifier_token7] = ACTIONS(928), - [aux_sym_cmd_identifier_token8] = ACTIONS(928), - [aux_sym_cmd_identifier_token9] = ACTIONS(928), - [aux_sym_cmd_identifier_token10] = ACTIONS(928), - [aux_sym_cmd_identifier_token11] = ACTIONS(928), - [aux_sym_cmd_identifier_token12] = ACTIONS(928), - [aux_sym_cmd_identifier_token13] = ACTIONS(928), - [aux_sym_cmd_identifier_token14] = ACTIONS(928), - [aux_sym_cmd_identifier_token15] = ACTIONS(928), - [aux_sym_cmd_identifier_token16] = ACTIONS(928), - [aux_sym_cmd_identifier_token17] = ACTIONS(928), - [aux_sym_cmd_identifier_token18] = ACTIONS(928), - [aux_sym_cmd_identifier_token19] = ACTIONS(928), - [aux_sym_cmd_identifier_token20] = ACTIONS(928), - [aux_sym_cmd_identifier_token21] = ACTIONS(928), - [aux_sym_cmd_identifier_token22] = ACTIONS(928), - [aux_sym_cmd_identifier_token23] = ACTIONS(928), - [aux_sym_cmd_identifier_token24] = ACTIONS(928), - [aux_sym_cmd_identifier_token25] = ACTIONS(928), - [aux_sym_cmd_identifier_token26] = ACTIONS(928), - [aux_sym_cmd_identifier_token27] = ACTIONS(928), - [aux_sym_cmd_identifier_token28] = ACTIONS(928), - [aux_sym_cmd_identifier_token29] = ACTIONS(928), - [aux_sym_cmd_identifier_token30] = ACTIONS(928), - [aux_sym_cmd_identifier_token31] = ACTIONS(928), - [aux_sym_cmd_identifier_token32] = ACTIONS(928), - [aux_sym_cmd_identifier_token33] = ACTIONS(928), - [aux_sym_cmd_identifier_token34] = ACTIONS(928), - [aux_sym_cmd_identifier_token35] = ACTIONS(928), - [aux_sym_cmd_identifier_token36] = ACTIONS(928), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [anon_sym_null] = ACTIONS(930), - [aux_sym_cmd_identifier_token38] = ACTIONS(928), - [aux_sym_cmd_identifier_token39] = ACTIONS(930), - [aux_sym_cmd_identifier_token40] = ACTIONS(930), - [anon_sym_def] = ACTIONS(928), - [anon_sym_export_DASHenv] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_module] = ACTIONS(928), - [anon_sym_use] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_error] = ACTIONS(928), - [anon_sym_list] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_loop] = ACTIONS(928), - [anon_sym_make] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_match] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_try] = ACTIONS(928), - [anon_sym_catch] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_source] = ACTIONS(928), - [anon_sym_source_DASHenv] = ACTIONS(928), - [anon_sym_register] = ACTIONS(928), - [anon_sym_hide] = ACTIONS(928), - [anon_sym_hide_DASHenv] = ACTIONS(928), - [anon_sym_overlay] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_as] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(930), - [aux_sym__val_number_decimal_token1] = ACTIONS(928), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [anon_sym_DOT2] = ACTIONS(928), - [aux_sym__val_number_decimal_token3] = ACTIONS(930), - [aux_sym__val_number_token1] = ACTIONS(930), - [aux_sym__val_number_token2] = ACTIONS(930), - [aux_sym__val_number_token3] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym__str_single_quotes] = ACTIONS(930), - [sym__str_back_ticks] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(930), + [anon_sym_export] = ACTIONS(2401), + [anon_sym_alias] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_let_DASHenv] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [aux_sym_cmd_identifier_token1] = ACTIONS(2401), + [aux_sym_cmd_identifier_token2] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2401), + [aux_sym_cmd_identifier_token4] = ACTIONS(2401), + [aux_sym_cmd_identifier_token5] = ACTIONS(2401), + [aux_sym_cmd_identifier_token6] = ACTIONS(2401), + [aux_sym_cmd_identifier_token7] = ACTIONS(2401), + [aux_sym_cmd_identifier_token8] = ACTIONS(2401), + [aux_sym_cmd_identifier_token9] = ACTIONS(2401), + [aux_sym_cmd_identifier_token10] = ACTIONS(2401), + [aux_sym_cmd_identifier_token11] = ACTIONS(2401), + [aux_sym_cmd_identifier_token12] = ACTIONS(2401), + [aux_sym_cmd_identifier_token13] = ACTIONS(2401), + [aux_sym_cmd_identifier_token14] = ACTIONS(2401), + [aux_sym_cmd_identifier_token15] = ACTIONS(2401), + [aux_sym_cmd_identifier_token16] = ACTIONS(2401), + [aux_sym_cmd_identifier_token17] = ACTIONS(2401), + [aux_sym_cmd_identifier_token18] = ACTIONS(2401), + [aux_sym_cmd_identifier_token19] = ACTIONS(2401), + [aux_sym_cmd_identifier_token20] = ACTIONS(2401), + [aux_sym_cmd_identifier_token21] = ACTIONS(2401), + [aux_sym_cmd_identifier_token22] = ACTIONS(2401), + [aux_sym_cmd_identifier_token23] = ACTIONS(2401), + [aux_sym_cmd_identifier_token24] = ACTIONS(2401), + [aux_sym_cmd_identifier_token25] = ACTIONS(2401), + [aux_sym_cmd_identifier_token26] = ACTIONS(2401), + [aux_sym_cmd_identifier_token27] = ACTIONS(2401), + [aux_sym_cmd_identifier_token28] = ACTIONS(2401), + [aux_sym_cmd_identifier_token29] = ACTIONS(2401), + [aux_sym_cmd_identifier_token30] = ACTIONS(2401), + [aux_sym_cmd_identifier_token31] = ACTIONS(2401), + [aux_sym_cmd_identifier_token32] = ACTIONS(2401), + [aux_sym_cmd_identifier_token33] = ACTIONS(2401), + [aux_sym_cmd_identifier_token34] = ACTIONS(2401), + [aux_sym_cmd_identifier_token35] = ACTIONS(2401), + [aux_sym_cmd_identifier_token36] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token38] = ACTIONS(2401), + [aux_sym_cmd_identifier_token39] = ACTIONS(2401), + [aux_sym_cmd_identifier_token40] = ACTIONS(2401), + [anon_sym_def] = ACTIONS(2401), + [anon_sym_export_DASHenv] = ACTIONS(2401), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_module] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_error] = ACTIONS(2401), + [anon_sym_list] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_make] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_else] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_catch] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_source] = ACTIONS(2401), + [anon_sym_source_DASHenv] = ACTIONS(2401), + [anon_sym_register] = ACTIONS(2401), + [anon_sym_hide] = ACTIONS(2401), + [anon_sym_hide_DASHenv] = ACTIONS(2401), + [anon_sym_overlay] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2401), + [aux_sym__val_number_decimal_token2] = ACTIONS(2401), + [aux_sym__val_number_decimal_token3] = ACTIONS(2401), + [aux_sym__val_number_decimal_token4] = ACTIONS(2401), + [aux_sym__val_number_token1] = ACTIONS(2401), + [aux_sym__val_number_token2] = ACTIONS(2401), + [aux_sym__val_number_token3] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym__str_single_quotes] = ACTIONS(2401), + [sym__str_back_ticks] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2401), + [sym__entry_separator] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2401), [anon_sym_POUND] = ACTIONS(3), }, [573] = { [sym_comment] = STATE(573), - [anon_sym_export] = ACTIONS(924), - [anon_sym_alias] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_let_DASHenv] = ACTIONS(924), - [anon_sym_mut] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [aux_sym_cmd_identifier_token1] = ACTIONS(924), - [aux_sym_cmd_identifier_token2] = ACTIONS(924), - [aux_sym_cmd_identifier_token3] = ACTIONS(924), - [aux_sym_cmd_identifier_token4] = ACTIONS(924), - [aux_sym_cmd_identifier_token5] = ACTIONS(924), - [aux_sym_cmd_identifier_token6] = ACTIONS(924), - [aux_sym_cmd_identifier_token7] = ACTIONS(924), - [aux_sym_cmd_identifier_token8] = ACTIONS(924), - [aux_sym_cmd_identifier_token9] = ACTIONS(924), - [aux_sym_cmd_identifier_token10] = ACTIONS(924), - [aux_sym_cmd_identifier_token11] = ACTIONS(924), - [aux_sym_cmd_identifier_token12] = ACTIONS(924), - [aux_sym_cmd_identifier_token13] = ACTIONS(924), - [aux_sym_cmd_identifier_token14] = ACTIONS(924), - [aux_sym_cmd_identifier_token15] = ACTIONS(924), - [aux_sym_cmd_identifier_token16] = ACTIONS(924), - [aux_sym_cmd_identifier_token17] = ACTIONS(924), - [aux_sym_cmd_identifier_token18] = ACTIONS(924), - [aux_sym_cmd_identifier_token19] = ACTIONS(924), - [aux_sym_cmd_identifier_token20] = ACTIONS(924), - [aux_sym_cmd_identifier_token21] = ACTIONS(924), - [aux_sym_cmd_identifier_token22] = ACTIONS(924), - [aux_sym_cmd_identifier_token23] = ACTIONS(924), - [aux_sym_cmd_identifier_token24] = ACTIONS(924), - [aux_sym_cmd_identifier_token25] = ACTIONS(924), - [aux_sym_cmd_identifier_token26] = ACTIONS(924), - [aux_sym_cmd_identifier_token27] = ACTIONS(924), - [aux_sym_cmd_identifier_token28] = ACTIONS(924), - [aux_sym_cmd_identifier_token29] = ACTIONS(924), - [aux_sym_cmd_identifier_token30] = ACTIONS(924), - [aux_sym_cmd_identifier_token31] = ACTIONS(924), - [aux_sym_cmd_identifier_token32] = ACTIONS(924), - [aux_sym_cmd_identifier_token33] = ACTIONS(924), - [aux_sym_cmd_identifier_token34] = ACTIONS(924), - [aux_sym_cmd_identifier_token35] = ACTIONS(924), - [aux_sym_cmd_identifier_token36] = ACTIONS(924), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [anon_sym_null] = ACTIONS(926), - [aux_sym_cmd_identifier_token38] = ACTIONS(924), - [aux_sym_cmd_identifier_token39] = ACTIONS(926), - [aux_sym_cmd_identifier_token40] = ACTIONS(926), - [anon_sym_def] = ACTIONS(924), - [anon_sym_export_DASHenv] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_module] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(926), - [anon_sym_error] = ACTIONS(924), - [anon_sym_list] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_make] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_try] = ACTIONS(924), - [anon_sym_catch] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_source] = ACTIONS(924), - [anon_sym_source_DASHenv] = ACTIONS(924), - [anon_sym_register] = ACTIONS(924), - [anon_sym_hide] = ACTIONS(924), - [anon_sym_hide_DASHenv] = ACTIONS(924), - [anon_sym_overlay] = ACTIONS(924), - [anon_sym_new] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(926), - [aux_sym__val_number_decimal_token1] = ACTIONS(924), - [aux_sym__val_number_decimal_token2] = ACTIONS(926), - [anon_sym_DOT2] = ACTIONS(924), - [aux_sym__val_number_decimal_token3] = ACTIONS(926), - [aux_sym__val_number_token1] = ACTIONS(926), - [aux_sym__val_number_token2] = ACTIONS(926), - [aux_sym__val_number_token3] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym__str_single_quotes] = ACTIONS(926), - [sym__str_back_ticks] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(926), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [aux_sym_cmd_identifier_token1] = ACTIONS(2066), + [aux_sym_cmd_identifier_token2] = ACTIONS(2066), + [aux_sym_cmd_identifier_token3] = ACTIONS(2066), + [aux_sym_cmd_identifier_token4] = ACTIONS(2066), + [aux_sym_cmd_identifier_token5] = ACTIONS(2066), + [aux_sym_cmd_identifier_token6] = ACTIONS(2066), + [aux_sym_cmd_identifier_token7] = ACTIONS(2066), + [aux_sym_cmd_identifier_token8] = ACTIONS(2066), + [aux_sym_cmd_identifier_token9] = ACTIONS(2066), + [aux_sym_cmd_identifier_token10] = ACTIONS(2066), + [aux_sym_cmd_identifier_token11] = ACTIONS(2066), + [aux_sym_cmd_identifier_token12] = ACTIONS(2066), + [aux_sym_cmd_identifier_token13] = ACTIONS(2066), + [aux_sym_cmd_identifier_token14] = ACTIONS(2066), + [aux_sym_cmd_identifier_token15] = ACTIONS(2066), + [aux_sym_cmd_identifier_token16] = ACTIONS(2066), + [aux_sym_cmd_identifier_token17] = ACTIONS(2066), + [aux_sym_cmd_identifier_token18] = ACTIONS(2066), + [aux_sym_cmd_identifier_token19] = ACTIONS(2066), + [aux_sym_cmd_identifier_token20] = ACTIONS(2066), + [aux_sym_cmd_identifier_token21] = ACTIONS(2066), + [aux_sym_cmd_identifier_token22] = ACTIONS(2066), + [aux_sym_cmd_identifier_token23] = ACTIONS(2066), + [aux_sym_cmd_identifier_token24] = ACTIONS(2066), + [aux_sym_cmd_identifier_token25] = ACTIONS(2066), + [aux_sym_cmd_identifier_token26] = ACTIONS(2066), + [aux_sym_cmd_identifier_token27] = ACTIONS(2066), + [aux_sym_cmd_identifier_token28] = ACTIONS(2066), + [aux_sym_cmd_identifier_token29] = ACTIONS(2066), + [aux_sym_cmd_identifier_token30] = ACTIONS(2066), + [aux_sym_cmd_identifier_token31] = ACTIONS(2066), + [aux_sym_cmd_identifier_token32] = ACTIONS(2066), + [aux_sym_cmd_identifier_token33] = ACTIONS(2066), + [aux_sym_cmd_identifier_token34] = ACTIONS(2066), + [aux_sym_cmd_identifier_token35] = ACTIONS(2066), + [aux_sym_cmd_identifier_token36] = ACTIONS(2066), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [anon_sym_null] = ACTIONS(2066), + [aux_sym_cmd_identifier_token38] = ACTIONS(2066), + [aux_sym_cmd_identifier_token39] = ACTIONS(2066), + [aux_sym_cmd_identifier_token40] = ACTIONS(2066), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_list] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_in] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_make] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_new] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2066), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2066), + [aux_sym__val_number_decimal_token4] = ACTIONS(2066), + [aux_sym__val_number_token1] = ACTIONS(2066), + [aux_sym__val_number_token2] = ACTIONS(2066), + [aux_sym__val_number_token3] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [sym__str_single_quotes] = ACTIONS(2066), + [sym__str_back_ticks] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2066), + [sym__entry_separator] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2066), [anon_sym_POUND] = ACTIONS(3), }, [574] = { [sym_comment] = STATE(574), - [anon_sym_export] = ACTIONS(932), - [anon_sym_alias] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_let_DASHenv] = ACTIONS(932), - [anon_sym_mut] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [aux_sym_cmd_identifier_token1] = ACTIONS(932), - [aux_sym_cmd_identifier_token2] = ACTIONS(932), - [aux_sym_cmd_identifier_token3] = ACTIONS(932), - [aux_sym_cmd_identifier_token4] = ACTIONS(932), - [aux_sym_cmd_identifier_token5] = ACTIONS(932), - [aux_sym_cmd_identifier_token6] = ACTIONS(932), - [aux_sym_cmd_identifier_token7] = ACTIONS(932), - [aux_sym_cmd_identifier_token8] = ACTIONS(932), - [aux_sym_cmd_identifier_token9] = ACTIONS(932), - [aux_sym_cmd_identifier_token10] = ACTIONS(932), - [aux_sym_cmd_identifier_token11] = ACTIONS(932), - [aux_sym_cmd_identifier_token12] = ACTIONS(932), - [aux_sym_cmd_identifier_token13] = ACTIONS(932), - [aux_sym_cmd_identifier_token14] = ACTIONS(932), - [aux_sym_cmd_identifier_token15] = ACTIONS(932), - [aux_sym_cmd_identifier_token16] = ACTIONS(932), - [aux_sym_cmd_identifier_token17] = ACTIONS(932), - [aux_sym_cmd_identifier_token18] = ACTIONS(932), - [aux_sym_cmd_identifier_token19] = ACTIONS(932), - [aux_sym_cmd_identifier_token20] = ACTIONS(932), - [aux_sym_cmd_identifier_token21] = ACTIONS(932), - [aux_sym_cmd_identifier_token22] = ACTIONS(932), - [aux_sym_cmd_identifier_token23] = ACTIONS(932), - [aux_sym_cmd_identifier_token24] = ACTIONS(932), - [aux_sym_cmd_identifier_token25] = ACTIONS(932), - [aux_sym_cmd_identifier_token26] = ACTIONS(932), - [aux_sym_cmd_identifier_token27] = ACTIONS(932), - [aux_sym_cmd_identifier_token28] = ACTIONS(932), - [aux_sym_cmd_identifier_token29] = ACTIONS(932), - [aux_sym_cmd_identifier_token30] = ACTIONS(932), - [aux_sym_cmd_identifier_token31] = ACTIONS(932), - [aux_sym_cmd_identifier_token32] = ACTIONS(932), - [aux_sym_cmd_identifier_token33] = ACTIONS(932), - [aux_sym_cmd_identifier_token34] = ACTIONS(932), - [aux_sym_cmd_identifier_token35] = ACTIONS(932), - [aux_sym_cmd_identifier_token36] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_null] = ACTIONS(934), - [aux_sym_cmd_identifier_token38] = ACTIONS(932), - [aux_sym_cmd_identifier_token39] = ACTIONS(934), - [aux_sym_cmd_identifier_token40] = ACTIONS(934), - [anon_sym_def] = ACTIONS(932), - [anon_sym_export_DASHenv] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_module] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_error] = ACTIONS(932), - [anon_sym_list] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_make] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_else] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_try] = ACTIONS(932), - [anon_sym_catch] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_source] = ACTIONS(932), - [anon_sym_source_DASHenv] = ACTIONS(932), - [anon_sym_register] = ACTIONS(932), - [anon_sym_hide] = ACTIONS(932), - [anon_sym_hide_DASHenv] = ACTIONS(932), - [anon_sym_overlay] = ACTIONS(932), - [anon_sym_new] = ACTIONS(932), - [anon_sym_as] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(934), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(934), - [aux_sym__val_number_decimal_token1] = ACTIONS(932), - [aux_sym__val_number_decimal_token2] = ACTIONS(934), - [anon_sym_DOT2] = ACTIONS(932), - [aux_sym__val_number_decimal_token3] = ACTIONS(934), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym__str_single_quotes] = ACTIONS(934), - [sym__str_back_ticks] = ACTIONS(934), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(934), + [anon_sym_export] = ACTIONS(1972), + [anon_sym_alias] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_let_DASHenv] = ACTIONS(1972), + [anon_sym_mut] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [aux_sym_cmd_identifier_token1] = ACTIONS(1972), + [aux_sym_cmd_identifier_token2] = ACTIONS(1972), + [aux_sym_cmd_identifier_token3] = ACTIONS(1972), + [aux_sym_cmd_identifier_token4] = ACTIONS(1972), + [aux_sym_cmd_identifier_token5] = ACTIONS(1972), + [aux_sym_cmd_identifier_token6] = ACTIONS(1972), + [aux_sym_cmd_identifier_token7] = ACTIONS(1972), + [aux_sym_cmd_identifier_token8] = ACTIONS(1972), + [aux_sym_cmd_identifier_token9] = ACTIONS(1972), + [aux_sym_cmd_identifier_token10] = ACTIONS(1972), + [aux_sym_cmd_identifier_token11] = ACTIONS(1972), + [aux_sym_cmd_identifier_token12] = ACTIONS(1972), + [aux_sym_cmd_identifier_token13] = ACTIONS(1972), + [aux_sym_cmd_identifier_token14] = ACTIONS(1972), + [aux_sym_cmd_identifier_token15] = ACTIONS(1972), + [aux_sym_cmd_identifier_token16] = ACTIONS(1972), + [aux_sym_cmd_identifier_token17] = ACTIONS(1972), + [aux_sym_cmd_identifier_token18] = ACTIONS(1972), + [aux_sym_cmd_identifier_token19] = ACTIONS(1972), + [aux_sym_cmd_identifier_token20] = ACTIONS(1972), + [aux_sym_cmd_identifier_token21] = ACTIONS(1972), + [aux_sym_cmd_identifier_token22] = ACTIONS(1972), + [aux_sym_cmd_identifier_token23] = ACTIONS(1972), + [aux_sym_cmd_identifier_token24] = ACTIONS(1972), + [aux_sym_cmd_identifier_token25] = ACTIONS(1972), + [aux_sym_cmd_identifier_token26] = ACTIONS(1972), + [aux_sym_cmd_identifier_token27] = ACTIONS(1972), + [aux_sym_cmd_identifier_token28] = ACTIONS(1972), + [aux_sym_cmd_identifier_token29] = ACTIONS(1972), + [aux_sym_cmd_identifier_token30] = ACTIONS(1972), + [aux_sym_cmd_identifier_token31] = ACTIONS(1972), + [aux_sym_cmd_identifier_token32] = ACTIONS(1972), + [aux_sym_cmd_identifier_token33] = ACTIONS(1972), + [aux_sym_cmd_identifier_token34] = ACTIONS(1972), + [aux_sym_cmd_identifier_token35] = ACTIONS(1972), + [aux_sym_cmd_identifier_token36] = ACTIONS(1972), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [anon_sym_null] = ACTIONS(1972), + [aux_sym_cmd_identifier_token38] = ACTIONS(1972), + [aux_sym_cmd_identifier_token39] = ACTIONS(1972), + [aux_sym_cmd_identifier_token40] = ACTIONS(1972), + [anon_sym_def] = ACTIONS(1972), + [anon_sym_export_DASHenv] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_error] = ACTIONS(1972), + [anon_sym_list] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_make] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_source] = ACTIONS(1972), + [anon_sym_source_DASHenv] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_hide] = ACTIONS(1972), + [anon_sym_hide_DASHenv] = ACTIONS(1972), + [anon_sym_overlay] = ACTIONS(1972), + [anon_sym_new] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1972), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1972), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(1972), + [aux_sym__val_number_token2] = ACTIONS(1972), + [aux_sym__val_number_token3] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym__str_single_quotes] = ACTIONS(1972), + [sym__str_back_ticks] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1972), + [sym__entry_separator] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(1972), [anon_sym_POUND] = ACTIONS(3), }, [575] = { [sym_comment] = STATE(575), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [aux_sym_cmd_identifier_token1] = ACTIONS(936), - [aux_sym_cmd_identifier_token2] = ACTIONS(936), - [aux_sym_cmd_identifier_token3] = ACTIONS(936), - [aux_sym_cmd_identifier_token4] = ACTIONS(936), - [aux_sym_cmd_identifier_token5] = ACTIONS(936), - [aux_sym_cmd_identifier_token6] = ACTIONS(936), - [aux_sym_cmd_identifier_token7] = ACTIONS(936), - [aux_sym_cmd_identifier_token8] = ACTIONS(936), - [aux_sym_cmd_identifier_token9] = ACTIONS(936), - [aux_sym_cmd_identifier_token10] = ACTIONS(936), - [aux_sym_cmd_identifier_token11] = ACTIONS(936), - [aux_sym_cmd_identifier_token12] = ACTIONS(936), - [aux_sym_cmd_identifier_token13] = ACTIONS(936), - [aux_sym_cmd_identifier_token14] = ACTIONS(936), - [aux_sym_cmd_identifier_token15] = ACTIONS(936), - [aux_sym_cmd_identifier_token16] = ACTIONS(936), - [aux_sym_cmd_identifier_token17] = ACTIONS(936), - [aux_sym_cmd_identifier_token18] = ACTIONS(936), - [aux_sym_cmd_identifier_token19] = ACTIONS(936), - [aux_sym_cmd_identifier_token20] = ACTIONS(936), - [aux_sym_cmd_identifier_token21] = ACTIONS(936), - [aux_sym_cmd_identifier_token22] = ACTIONS(936), - [aux_sym_cmd_identifier_token23] = ACTIONS(936), - [aux_sym_cmd_identifier_token24] = ACTIONS(936), - [aux_sym_cmd_identifier_token25] = ACTIONS(936), - [aux_sym_cmd_identifier_token26] = ACTIONS(936), - [aux_sym_cmd_identifier_token27] = ACTIONS(936), - [aux_sym_cmd_identifier_token28] = ACTIONS(936), - [aux_sym_cmd_identifier_token29] = ACTIONS(936), - [aux_sym_cmd_identifier_token30] = ACTIONS(936), - [aux_sym_cmd_identifier_token31] = ACTIONS(936), - [aux_sym_cmd_identifier_token32] = ACTIONS(936), - [aux_sym_cmd_identifier_token33] = ACTIONS(936), - [aux_sym_cmd_identifier_token34] = ACTIONS(936), - [aux_sym_cmd_identifier_token35] = ACTIONS(936), - [aux_sym_cmd_identifier_token36] = ACTIONS(936), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [anon_sym_null] = ACTIONS(936), - [aux_sym_cmd_identifier_token38] = ACTIONS(936), - [aux_sym_cmd_identifier_token39] = ACTIONS(936), - [aux_sym_cmd_identifier_token40] = ACTIONS(936), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(936), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(936), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(936), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(936), - [aux_sym__val_number_token1] = ACTIONS(936), - [aux_sym__val_number_token2] = ACTIONS(936), - [aux_sym__val_number_token3] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym__str_single_quotes] = ACTIONS(936), - [sym__str_back_ticks] = ACTIONS(936), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(936), - [sym__entry_separator] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1960), + [anon_sym_alias] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_let_DASHenv] = ACTIONS(1960), + [anon_sym_mut] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [aux_sym_cmd_identifier_token1] = ACTIONS(1960), + [aux_sym_cmd_identifier_token2] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1960), + [aux_sym_cmd_identifier_token4] = ACTIONS(1960), + [aux_sym_cmd_identifier_token5] = ACTIONS(1960), + [aux_sym_cmd_identifier_token6] = ACTIONS(1960), + [aux_sym_cmd_identifier_token7] = ACTIONS(1960), + [aux_sym_cmd_identifier_token8] = ACTIONS(1960), + [aux_sym_cmd_identifier_token9] = ACTIONS(1960), + [aux_sym_cmd_identifier_token10] = ACTIONS(1960), + [aux_sym_cmd_identifier_token11] = ACTIONS(1960), + [aux_sym_cmd_identifier_token12] = ACTIONS(1960), + [aux_sym_cmd_identifier_token13] = ACTIONS(1960), + [aux_sym_cmd_identifier_token14] = ACTIONS(1960), + [aux_sym_cmd_identifier_token15] = ACTIONS(1960), + [aux_sym_cmd_identifier_token16] = ACTIONS(1960), + [aux_sym_cmd_identifier_token17] = ACTIONS(1960), + [aux_sym_cmd_identifier_token18] = ACTIONS(1960), + [aux_sym_cmd_identifier_token19] = ACTIONS(1960), + [aux_sym_cmd_identifier_token20] = ACTIONS(1960), + [aux_sym_cmd_identifier_token21] = ACTIONS(1960), + [aux_sym_cmd_identifier_token22] = ACTIONS(1960), + [aux_sym_cmd_identifier_token23] = ACTIONS(1960), + [aux_sym_cmd_identifier_token24] = ACTIONS(1960), + [aux_sym_cmd_identifier_token25] = ACTIONS(1960), + [aux_sym_cmd_identifier_token26] = ACTIONS(1960), + [aux_sym_cmd_identifier_token27] = ACTIONS(1960), + [aux_sym_cmd_identifier_token28] = ACTIONS(1960), + [aux_sym_cmd_identifier_token29] = ACTIONS(1960), + [aux_sym_cmd_identifier_token30] = ACTIONS(1960), + [aux_sym_cmd_identifier_token31] = ACTIONS(1960), + [aux_sym_cmd_identifier_token32] = ACTIONS(1960), + [aux_sym_cmd_identifier_token33] = ACTIONS(1960), + [aux_sym_cmd_identifier_token34] = ACTIONS(1960), + [aux_sym_cmd_identifier_token35] = ACTIONS(1960), + [aux_sym_cmd_identifier_token36] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token38] = ACTIONS(1960), + [aux_sym_cmd_identifier_token39] = ACTIONS(1960), + [aux_sym_cmd_identifier_token40] = ACTIONS(1960), + [anon_sym_def] = ACTIONS(1960), + [anon_sym_export_DASHenv] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_module] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_error] = ACTIONS(1960), + [anon_sym_list] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_in] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_make] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_else] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_try] = ACTIONS(1960), + [anon_sym_catch] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_source] = ACTIONS(1960), + [anon_sym_source_DASHenv] = ACTIONS(1960), + [anon_sym_register] = ACTIONS(1960), + [anon_sym_hide] = ACTIONS(1960), + [anon_sym_hide_DASHenv] = ACTIONS(1960), + [anon_sym_overlay] = ACTIONS(1960), + [anon_sym_new] = ACTIONS(1960), + [anon_sym_as] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1960), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1960), + [aux_sym__val_number_decimal_token3] = ACTIONS(1960), + [aux_sym__val_number_decimal_token4] = ACTIONS(1960), + [aux_sym__val_number_token1] = ACTIONS(1960), + [aux_sym__val_number_token2] = ACTIONS(1960), + [aux_sym__val_number_token3] = ACTIONS(1960), + [anon_sym_DQUOTE] = ACTIONS(1960), + [sym__str_single_quotes] = ACTIONS(1960), + [sym__str_back_ticks] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1960), + [sym__entry_separator] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(3), }, [576] = { [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(2388), - [anon_sym_alias] = ACTIONS(2388), - [anon_sym_let] = ACTIONS(2388), - [anon_sym_let_DASHenv] = ACTIONS(2388), - [anon_sym_mut] = ACTIONS(2388), - [anon_sym_const] = ACTIONS(2388), - [aux_sym_cmd_identifier_token1] = ACTIONS(2388), - [aux_sym_cmd_identifier_token2] = ACTIONS(2388), - [aux_sym_cmd_identifier_token3] = ACTIONS(2388), - [aux_sym_cmd_identifier_token4] = ACTIONS(2388), - [aux_sym_cmd_identifier_token5] = ACTIONS(2388), - [aux_sym_cmd_identifier_token6] = ACTIONS(2388), - [aux_sym_cmd_identifier_token7] = ACTIONS(2388), - [aux_sym_cmd_identifier_token8] = ACTIONS(2388), - [aux_sym_cmd_identifier_token9] = ACTIONS(2388), - [aux_sym_cmd_identifier_token10] = ACTIONS(2388), - [aux_sym_cmd_identifier_token11] = ACTIONS(2388), - [aux_sym_cmd_identifier_token12] = ACTIONS(2388), - [aux_sym_cmd_identifier_token13] = ACTIONS(2388), - [aux_sym_cmd_identifier_token14] = ACTIONS(2388), - [aux_sym_cmd_identifier_token15] = ACTIONS(2388), - [aux_sym_cmd_identifier_token16] = ACTIONS(2388), - [aux_sym_cmd_identifier_token17] = ACTIONS(2388), - [aux_sym_cmd_identifier_token18] = ACTIONS(2388), - [aux_sym_cmd_identifier_token19] = ACTIONS(2388), - [aux_sym_cmd_identifier_token20] = ACTIONS(2388), - [aux_sym_cmd_identifier_token21] = ACTIONS(2388), - [aux_sym_cmd_identifier_token22] = ACTIONS(2388), - [aux_sym_cmd_identifier_token23] = ACTIONS(2388), - [aux_sym_cmd_identifier_token24] = ACTIONS(2388), - [aux_sym_cmd_identifier_token25] = ACTIONS(2388), - [aux_sym_cmd_identifier_token26] = ACTIONS(2388), - [aux_sym_cmd_identifier_token27] = ACTIONS(2388), - [aux_sym_cmd_identifier_token28] = ACTIONS(2388), - [aux_sym_cmd_identifier_token29] = ACTIONS(2388), - [aux_sym_cmd_identifier_token30] = ACTIONS(2388), - [aux_sym_cmd_identifier_token31] = ACTIONS(2388), - [aux_sym_cmd_identifier_token32] = ACTIONS(2388), - [aux_sym_cmd_identifier_token33] = ACTIONS(2388), - [aux_sym_cmd_identifier_token34] = ACTIONS(2388), - [aux_sym_cmd_identifier_token35] = ACTIONS(2388), - [aux_sym_cmd_identifier_token36] = ACTIONS(2388), - [anon_sym_true] = ACTIONS(2388), - [anon_sym_false] = ACTIONS(2388), - [anon_sym_null] = ACTIONS(2388), - [aux_sym_cmd_identifier_token38] = ACTIONS(2388), - [aux_sym_cmd_identifier_token39] = ACTIONS(2388), - [aux_sym_cmd_identifier_token40] = ACTIONS(2388), - [anon_sym_def] = ACTIONS(2388), - [anon_sym_export_DASHenv] = ACTIONS(2388), - [anon_sym_extern] = ACTIONS(2388), - [anon_sym_module] = ACTIONS(2388), - [anon_sym_use] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_DOLLAR] = ACTIONS(2388), - [anon_sym_error] = ACTIONS(2388), - [anon_sym_list] = ACTIONS(2388), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_break] = ACTIONS(2388), - [anon_sym_continue] = ACTIONS(2388), - [anon_sym_for] = ACTIONS(2388), - [anon_sym_in] = ACTIONS(2388), - [anon_sym_loop] = ACTIONS(2388), - [anon_sym_make] = ACTIONS(2388), - [anon_sym_while] = ACTIONS(2388), - [anon_sym_do] = ACTIONS(2388), - [anon_sym_if] = ACTIONS(2388), - [anon_sym_else] = ACTIONS(2388), - [anon_sym_match] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_try] = ACTIONS(2388), - [anon_sym_catch] = ACTIONS(2388), - [anon_sym_return] = ACTIONS(2388), - [anon_sym_source] = ACTIONS(2388), - [anon_sym_source_DASHenv] = ACTIONS(2388), - [anon_sym_register] = ACTIONS(2388), - [anon_sym_hide] = ACTIONS(2388), - [anon_sym_hide_DASHenv] = ACTIONS(2388), - [anon_sym_overlay] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2388), - [anon_sym_as] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2388), - [aux_sym__val_number_decimal_token1] = ACTIONS(2388), - [aux_sym__val_number_decimal_token2] = ACTIONS(2388), - [anon_sym_DOT2] = ACTIONS(2388), - [aux_sym__val_number_decimal_token3] = ACTIONS(2388), - [aux_sym__val_number_token1] = ACTIONS(2388), - [aux_sym__val_number_token2] = ACTIONS(2388), - [aux_sym__val_number_token3] = ACTIONS(2388), - [anon_sym_DQUOTE] = ACTIONS(2388), - [sym__str_single_quotes] = ACTIONS(2388), - [sym__str_back_ticks] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2388), - [sym__entry_separator] = ACTIONS(2390), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2405), + [anon_sym_alias] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_DASHenv] = ACTIONS(2405), + [anon_sym_mut] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [aux_sym_cmd_identifier_token1] = ACTIONS(2405), + [aux_sym_cmd_identifier_token2] = ACTIONS(2405), + [aux_sym_cmd_identifier_token3] = ACTIONS(2405), + [aux_sym_cmd_identifier_token4] = ACTIONS(2405), + [aux_sym_cmd_identifier_token5] = ACTIONS(2405), + [aux_sym_cmd_identifier_token6] = ACTIONS(2405), + [aux_sym_cmd_identifier_token7] = ACTIONS(2405), + [aux_sym_cmd_identifier_token8] = ACTIONS(2405), + [aux_sym_cmd_identifier_token9] = ACTIONS(2405), + [aux_sym_cmd_identifier_token10] = ACTIONS(2405), + [aux_sym_cmd_identifier_token11] = ACTIONS(2405), + [aux_sym_cmd_identifier_token12] = ACTIONS(2405), + [aux_sym_cmd_identifier_token13] = ACTIONS(2405), + [aux_sym_cmd_identifier_token14] = ACTIONS(2405), + [aux_sym_cmd_identifier_token15] = ACTIONS(2405), + [aux_sym_cmd_identifier_token16] = ACTIONS(2405), + [aux_sym_cmd_identifier_token17] = ACTIONS(2405), + [aux_sym_cmd_identifier_token18] = ACTIONS(2405), + [aux_sym_cmd_identifier_token19] = ACTIONS(2405), + [aux_sym_cmd_identifier_token20] = ACTIONS(2405), + [aux_sym_cmd_identifier_token21] = ACTIONS(2405), + [aux_sym_cmd_identifier_token22] = ACTIONS(2405), + [aux_sym_cmd_identifier_token23] = ACTIONS(2405), + [aux_sym_cmd_identifier_token24] = ACTIONS(2405), + [aux_sym_cmd_identifier_token25] = ACTIONS(2405), + [aux_sym_cmd_identifier_token26] = ACTIONS(2405), + [aux_sym_cmd_identifier_token27] = ACTIONS(2405), + [aux_sym_cmd_identifier_token28] = ACTIONS(2405), + [aux_sym_cmd_identifier_token29] = ACTIONS(2405), + [aux_sym_cmd_identifier_token30] = ACTIONS(2405), + [aux_sym_cmd_identifier_token31] = ACTIONS(2405), + [aux_sym_cmd_identifier_token32] = ACTIONS(2405), + [aux_sym_cmd_identifier_token33] = ACTIONS(2405), + [aux_sym_cmd_identifier_token34] = ACTIONS(2405), + [aux_sym_cmd_identifier_token35] = ACTIONS(2405), + [aux_sym_cmd_identifier_token36] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [anon_sym_null] = ACTIONS(2405), + [aux_sym_cmd_identifier_token38] = ACTIONS(2405), + [aux_sym_cmd_identifier_token39] = ACTIONS(2405), + [aux_sym_cmd_identifier_token40] = ACTIONS(2405), + [anon_sym_def] = ACTIONS(2405), + [anon_sym_export_DASHenv] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_error] = ACTIONS(2405), + [anon_sym_list] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_in] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_make] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_catch] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_source] = ACTIONS(2405), + [anon_sym_source_DASHenv] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_hide] = ACTIONS(2405), + [anon_sym_hide_DASHenv] = ACTIONS(2405), + [anon_sym_overlay] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2405), + [aux_sym__val_number_decimal_token1] = ACTIONS(2405), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2405), + [aux_sym__val_number_decimal_token4] = ACTIONS(2405), + [aux_sym__val_number_token1] = ACTIONS(2405), + [aux_sym__val_number_token2] = ACTIONS(2405), + [aux_sym__val_number_token3] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym__str_single_quotes] = ACTIONS(2405), + [sym__str_back_ticks] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2405), + [sym__entry_separator] = ACTIONS(2407), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(3), }, [577] = { [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(916), - [anon_sym_alias] = ACTIONS(916), - [anon_sym_let] = ACTIONS(916), - [anon_sym_let_DASHenv] = ACTIONS(916), - [anon_sym_mut] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [aux_sym_cmd_identifier_token1] = ACTIONS(916), - [aux_sym_cmd_identifier_token2] = ACTIONS(916), - [aux_sym_cmd_identifier_token3] = ACTIONS(916), - [aux_sym_cmd_identifier_token4] = ACTIONS(916), - [aux_sym_cmd_identifier_token5] = ACTIONS(916), - [aux_sym_cmd_identifier_token6] = ACTIONS(916), - [aux_sym_cmd_identifier_token7] = ACTIONS(916), - [aux_sym_cmd_identifier_token8] = ACTIONS(916), - [aux_sym_cmd_identifier_token9] = ACTIONS(916), - [aux_sym_cmd_identifier_token10] = ACTIONS(916), - [aux_sym_cmd_identifier_token11] = ACTIONS(916), - [aux_sym_cmd_identifier_token12] = ACTIONS(916), - [aux_sym_cmd_identifier_token13] = ACTIONS(916), - [aux_sym_cmd_identifier_token14] = ACTIONS(916), - [aux_sym_cmd_identifier_token15] = ACTIONS(916), - [aux_sym_cmd_identifier_token16] = ACTIONS(916), - [aux_sym_cmd_identifier_token17] = ACTIONS(916), - [aux_sym_cmd_identifier_token18] = ACTIONS(916), - [aux_sym_cmd_identifier_token19] = ACTIONS(916), - [aux_sym_cmd_identifier_token20] = ACTIONS(916), - [aux_sym_cmd_identifier_token21] = ACTIONS(916), - [aux_sym_cmd_identifier_token22] = ACTIONS(916), - [aux_sym_cmd_identifier_token23] = ACTIONS(916), - [aux_sym_cmd_identifier_token24] = ACTIONS(916), - [aux_sym_cmd_identifier_token25] = ACTIONS(916), - [aux_sym_cmd_identifier_token26] = ACTIONS(916), - [aux_sym_cmd_identifier_token27] = ACTIONS(916), - [aux_sym_cmd_identifier_token28] = ACTIONS(916), - [aux_sym_cmd_identifier_token29] = ACTIONS(916), - [aux_sym_cmd_identifier_token30] = ACTIONS(916), - [aux_sym_cmd_identifier_token31] = ACTIONS(916), - [aux_sym_cmd_identifier_token32] = ACTIONS(916), - [aux_sym_cmd_identifier_token33] = ACTIONS(916), - [aux_sym_cmd_identifier_token34] = ACTIONS(916), - [aux_sym_cmd_identifier_token35] = ACTIONS(916), - [aux_sym_cmd_identifier_token36] = ACTIONS(916), - [anon_sym_true] = ACTIONS(916), - [anon_sym_false] = ACTIONS(916), - [anon_sym_null] = ACTIONS(916), - [aux_sym_cmd_identifier_token38] = ACTIONS(916), - [aux_sym_cmd_identifier_token39] = ACTIONS(916), - [aux_sym_cmd_identifier_token40] = ACTIONS(916), - [anon_sym_def] = ACTIONS(916), - [anon_sym_export_DASHenv] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_use] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_DOLLAR] = ACTIONS(916), - [anon_sym_error] = ACTIONS(916), - [anon_sym_list] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [anon_sym_loop] = ACTIONS(916), - [anon_sym_make] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_match] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_try] = ACTIONS(916), - [anon_sym_catch] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_source] = ACTIONS(916), - [anon_sym_source_DASHenv] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_hide] = ACTIONS(916), - [anon_sym_hide_DASHenv] = ACTIONS(916), - [anon_sym_overlay] = ACTIONS(916), - [anon_sym_new] = ACTIONS(916), - [anon_sym_as] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(916), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(916), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(916), - [aux_sym__val_number_token1] = ACTIONS(916), - [aux_sym__val_number_token2] = ACTIONS(916), - [aux_sym__val_number_token3] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym__str_single_quotes] = ACTIONS(916), - [sym__str_back_ticks] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(916), - [sym__entry_separator] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2409), + [anon_sym_alias] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_let_DASHenv] = ACTIONS(2409), + [anon_sym_mut] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [aux_sym_cmd_identifier_token1] = ACTIONS(2409), + [aux_sym_cmd_identifier_token2] = ACTIONS(2409), + [aux_sym_cmd_identifier_token3] = ACTIONS(2409), + [aux_sym_cmd_identifier_token4] = ACTIONS(2409), + [aux_sym_cmd_identifier_token5] = ACTIONS(2409), + [aux_sym_cmd_identifier_token6] = ACTIONS(2409), + [aux_sym_cmd_identifier_token7] = ACTIONS(2409), + [aux_sym_cmd_identifier_token8] = ACTIONS(2409), + [aux_sym_cmd_identifier_token9] = ACTIONS(2409), + [aux_sym_cmd_identifier_token10] = ACTIONS(2409), + [aux_sym_cmd_identifier_token11] = ACTIONS(2409), + [aux_sym_cmd_identifier_token12] = ACTIONS(2409), + [aux_sym_cmd_identifier_token13] = ACTIONS(2409), + [aux_sym_cmd_identifier_token14] = ACTIONS(2409), + [aux_sym_cmd_identifier_token15] = ACTIONS(2409), + [aux_sym_cmd_identifier_token16] = ACTIONS(2409), + [aux_sym_cmd_identifier_token17] = ACTIONS(2409), + [aux_sym_cmd_identifier_token18] = ACTIONS(2409), + [aux_sym_cmd_identifier_token19] = ACTIONS(2409), + [aux_sym_cmd_identifier_token20] = ACTIONS(2409), + [aux_sym_cmd_identifier_token21] = ACTIONS(2409), + [aux_sym_cmd_identifier_token22] = ACTIONS(2409), + [aux_sym_cmd_identifier_token23] = ACTIONS(2409), + [aux_sym_cmd_identifier_token24] = ACTIONS(2409), + [aux_sym_cmd_identifier_token25] = ACTIONS(2409), + [aux_sym_cmd_identifier_token26] = ACTIONS(2409), + [aux_sym_cmd_identifier_token27] = ACTIONS(2409), + [aux_sym_cmd_identifier_token28] = ACTIONS(2409), + [aux_sym_cmd_identifier_token29] = ACTIONS(2409), + [aux_sym_cmd_identifier_token30] = ACTIONS(2409), + [aux_sym_cmd_identifier_token31] = ACTIONS(2409), + [aux_sym_cmd_identifier_token32] = ACTIONS(2409), + [aux_sym_cmd_identifier_token33] = ACTIONS(2409), + [aux_sym_cmd_identifier_token34] = ACTIONS(2409), + [aux_sym_cmd_identifier_token35] = ACTIONS(2409), + [aux_sym_cmd_identifier_token36] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2409), + [aux_sym_cmd_identifier_token38] = ACTIONS(2409), + [aux_sym_cmd_identifier_token39] = ACTIONS(2409), + [aux_sym_cmd_identifier_token40] = ACTIONS(2409), + [anon_sym_def] = ACTIONS(2409), + [anon_sym_export_DASHenv] = ACTIONS(2409), + [anon_sym_extern] = ACTIONS(2409), + [anon_sym_module] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_error] = ACTIONS(2409), + [anon_sym_list] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_in] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_make] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_do] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_else] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2409), + [anon_sym_catch] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_source] = ACTIONS(2409), + [anon_sym_source_DASHenv] = ACTIONS(2409), + [anon_sym_register] = ACTIONS(2409), + [anon_sym_hide] = ACTIONS(2409), + [anon_sym_hide_DASHenv] = ACTIONS(2409), + [anon_sym_overlay] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_as] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2409), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2409), + [aux_sym__val_number_decimal_token3] = ACTIONS(2409), + [aux_sym__val_number_decimal_token4] = ACTIONS(2409), + [aux_sym__val_number_token1] = ACTIONS(2409), + [aux_sym__val_number_token2] = ACTIONS(2409), + [aux_sym__val_number_token3] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym__str_single_quotes] = ACTIONS(2409), + [sym__str_back_ticks] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2409), + [sym__entry_separator] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(3), }, [578] = { [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [aux_sym_cmd_identifier_token1] = ACTIONS(920), - [aux_sym_cmd_identifier_token2] = ACTIONS(920), - [aux_sym_cmd_identifier_token3] = ACTIONS(920), - [aux_sym_cmd_identifier_token4] = ACTIONS(920), - [aux_sym_cmd_identifier_token5] = ACTIONS(920), - [aux_sym_cmd_identifier_token6] = ACTIONS(920), - [aux_sym_cmd_identifier_token7] = ACTIONS(920), - [aux_sym_cmd_identifier_token8] = ACTIONS(920), - [aux_sym_cmd_identifier_token9] = ACTIONS(920), - [aux_sym_cmd_identifier_token10] = ACTIONS(920), - [aux_sym_cmd_identifier_token11] = ACTIONS(920), - [aux_sym_cmd_identifier_token12] = ACTIONS(920), - [aux_sym_cmd_identifier_token13] = ACTIONS(920), - [aux_sym_cmd_identifier_token14] = ACTIONS(920), - [aux_sym_cmd_identifier_token15] = ACTIONS(920), - [aux_sym_cmd_identifier_token16] = ACTIONS(920), - [aux_sym_cmd_identifier_token17] = ACTIONS(920), - [aux_sym_cmd_identifier_token18] = ACTIONS(920), - [aux_sym_cmd_identifier_token19] = ACTIONS(920), - [aux_sym_cmd_identifier_token20] = ACTIONS(920), - [aux_sym_cmd_identifier_token21] = ACTIONS(920), - [aux_sym_cmd_identifier_token22] = ACTIONS(920), - [aux_sym_cmd_identifier_token23] = ACTIONS(920), - [aux_sym_cmd_identifier_token24] = ACTIONS(920), - [aux_sym_cmd_identifier_token25] = ACTIONS(920), - [aux_sym_cmd_identifier_token26] = ACTIONS(920), - [aux_sym_cmd_identifier_token27] = ACTIONS(920), - [aux_sym_cmd_identifier_token28] = ACTIONS(920), - [aux_sym_cmd_identifier_token29] = ACTIONS(920), - [aux_sym_cmd_identifier_token30] = ACTIONS(920), - [aux_sym_cmd_identifier_token31] = ACTIONS(920), - [aux_sym_cmd_identifier_token32] = ACTIONS(920), - [aux_sym_cmd_identifier_token33] = ACTIONS(920), - [aux_sym_cmd_identifier_token34] = ACTIONS(920), - [aux_sym_cmd_identifier_token35] = ACTIONS(920), - [aux_sym_cmd_identifier_token36] = ACTIONS(920), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [anon_sym_null] = ACTIONS(920), - [aux_sym_cmd_identifier_token38] = ACTIONS(920), - [aux_sym_cmd_identifier_token39] = ACTIONS(920), - [aux_sym_cmd_identifier_token40] = ACTIONS(920), - [anon_sym_def] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_error] = ACTIONS(920), - [anon_sym_list] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_make] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_catch] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_new] = ACTIONS(920), - [anon_sym_as] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(920), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(920), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(920), - [aux_sym__val_number_token1] = ACTIONS(920), - [aux_sym__val_number_token2] = ACTIONS(920), - [aux_sym__val_number_token3] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym__str_single_quotes] = ACTIONS(920), - [sym__str_back_ticks] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(920), - [sym__entry_separator] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_alias] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_let_DASHenv] = ACTIONS(2413), + [anon_sym_mut] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [aux_sym_cmd_identifier_token1] = ACTIONS(2413), + [aux_sym_cmd_identifier_token2] = ACTIONS(2413), + [aux_sym_cmd_identifier_token3] = ACTIONS(2413), + [aux_sym_cmd_identifier_token4] = ACTIONS(2413), + [aux_sym_cmd_identifier_token5] = ACTIONS(2413), + [aux_sym_cmd_identifier_token6] = ACTIONS(2413), + [aux_sym_cmd_identifier_token7] = ACTIONS(2413), + [aux_sym_cmd_identifier_token8] = ACTIONS(2413), + [aux_sym_cmd_identifier_token9] = ACTIONS(2413), + [aux_sym_cmd_identifier_token10] = ACTIONS(2413), + [aux_sym_cmd_identifier_token11] = ACTIONS(2413), + [aux_sym_cmd_identifier_token12] = ACTIONS(2413), + [aux_sym_cmd_identifier_token13] = ACTIONS(2413), + [aux_sym_cmd_identifier_token14] = ACTIONS(2413), + [aux_sym_cmd_identifier_token15] = ACTIONS(2413), + [aux_sym_cmd_identifier_token16] = ACTIONS(2413), + [aux_sym_cmd_identifier_token17] = ACTIONS(2413), + [aux_sym_cmd_identifier_token18] = ACTIONS(2413), + [aux_sym_cmd_identifier_token19] = ACTIONS(2413), + [aux_sym_cmd_identifier_token20] = ACTIONS(2413), + [aux_sym_cmd_identifier_token21] = ACTIONS(2413), + [aux_sym_cmd_identifier_token22] = ACTIONS(2413), + [aux_sym_cmd_identifier_token23] = ACTIONS(2413), + [aux_sym_cmd_identifier_token24] = ACTIONS(2413), + [aux_sym_cmd_identifier_token25] = ACTIONS(2413), + [aux_sym_cmd_identifier_token26] = ACTIONS(2413), + [aux_sym_cmd_identifier_token27] = ACTIONS(2413), + [aux_sym_cmd_identifier_token28] = ACTIONS(2413), + [aux_sym_cmd_identifier_token29] = ACTIONS(2413), + [aux_sym_cmd_identifier_token30] = ACTIONS(2413), + [aux_sym_cmd_identifier_token31] = ACTIONS(2413), + [aux_sym_cmd_identifier_token32] = ACTIONS(2413), + [aux_sym_cmd_identifier_token33] = ACTIONS(2413), + [aux_sym_cmd_identifier_token34] = ACTIONS(2413), + [aux_sym_cmd_identifier_token35] = ACTIONS(2413), + [aux_sym_cmd_identifier_token36] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [anon_sym_null] = ACTIONS(2413), + [aux_sym_cmd_identifier_token38] = ACTIONS(2413), + [aux_sym_cmd_identifier_token39] = ACTIONS(2413), + [aux_sym_cmd_identifier_token40] = ACTIONS(2413), + [anon_sym_def] = ACTIONS(2413), + [anon_sym_export_DASHenv] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_error] = ACTIONS(2413), + [anon_sym_list] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_in] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_make] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_catch] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_source] = ACTIONS(2413), + [anon_sym_source_DASHenv] = ACTIONS(2413), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_hide] = ACTIONS(2413), + [anon_sym_hide_DASHenv] = ACTIONS(2413), + [anon_sym_overlay] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2413), + [aux_sym__val_number_decimal_token1] = ACTIONS(2413), + [aux_sym__val_number_decimal_token2] = ACTIONS(2413), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(2413), + [aux_sym__val_number_token2] = ACTIONS(2413), + [aux_sym__val_number_token3] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym__str_single_quotes] = ACTIONS(2413), + [sym__str_back_ticks] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2413), + [sym__entry_separator] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(3), }, [579] = { [sym_comment] = STATE(579), - [anon_sym_export] = ACTIONS(912), - [anon_sym_alias] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_let_DASHenv] = ACTIONS(912), - [anon_sym_mut] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [aux_sym_cmd_identifier_token1] = ACTIONS(912), - [aux_sym_cmd_identifier_token2] = ACTIONS(912), - [aux_sym_cmd_identifier_token3] = ACTIONS(912), - [aux_sym_cmd_identifier_token4] = ACTIONS(912), - [aux_sym_cmd_identifier_token5] = ACTIONS(912), - [aux_sym_cmd_identifier_token6] = ACTIONS(912), - [aux_sym_cmd_identifier_token7] = ACTIONS(912), - [aux_sym_cmd_identifier_token8] = ACTIONS(912), - [aux_sym_cmd_identifier_token9] = ACTIONS(912), - [aux_sym_cmd_identifier_token10] = ACTIONS(912), - [aux_sym_cmd_identifier_token11] = ACTIONS(912), - [aux_sym_cmd_identifier_token12] = ACTIONS(912), - [aux_sym_cmd_identifier_token13] = ACTIONS(912), - [aux_sym_cmd_identifier_token14] = ACTIONS(912), - [aux_sym_cmd_identifier_token15] = ACTIONS(912), - [aux_sym_cmd_identifier_token16] = ACTIONS(912), - [aux_sym_cmd_identifier_token17] = ACTIONS(912), - [aux_sym_cmd_identifier_token18] = ACTIONS(912), - [aux_sym_cmd_identifier_token19] = ACTIONS(912), - [aux_sym_cmd_identifier_token20] = ACTIONS(912), - [aux_sym_cmd_identifier_token21] = ACTIONS(912), - [aux_sym_cmd_identifier_token22] = ACTIONS(912), - [aux_sym_cmd_identifier_token23] = ACTIONS(912), - [aux_sym_cmd_identifier_token24] = ACTIONS(912), - [aux_sym_cmd_identifier_token25] = ACTIONS(912), - [aux_sym_cmd_identifier_token26] = ACTIONS(912), - [aux_sym_cmd_identifier_token27] = ACTIONS(912), - [aux_sym_cmd_identifier_token28] = ACTIONS(912), - [aux_sym_cmd_identifier_token29] = ACTIONS(912), - [aux_sym_cmd_identifier_token30] = ACTIONS(912), - [aux_sym_cmd_identifier_token31] = ACTIONS(912), - [aux_sym_cmd_identifier_token32] = ACTIONS(912), - [aux_sym_cmd_identifier_token33] = ACTIONS(912), - [aux_sym_cmd_identifier_token34] = ACTIONS(912), - [aux_sym_cmd_identifier_token35] = ACTIONS(912), - [aux_sym_cmd_identifier_token36] = ACTIONS(912), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_null] = ACTIONS(912), - [aux_sym_cmd_identifier_token38] = ACTIONS(912), - [aux_sym_cmd_identifier_token39] = ACTIONS(912), - [aux_sym_cmd_identifier_token40] = ACTIONS(912), - [anon_sym_def] = ACTIONS(912), - [anon_sym_export_DASHenv] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym_module] = ACTIONS(912), - [anon_sym_use] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(912), - [anon_sym_error] = ACTIONS(912), - [anon_sym_list] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [anon_sym_loop] = ACTIONS(912), - [anon_sym_make] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_match] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_try] = ACTIONS(912), - [anon_sym_catch] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_source] = ACTIONS(912), - [anon_sym_source_DASHenv] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_hide] = ACTIONS(912), - [anon_sym_hide_DASHenv] = ACTIONS(912), - [anon_sym_overlay] = ACTIONS(912), - [anon_sym_new] = ACTIONS(912), - [anon_sym_as] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(912), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(912), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(912), - [aux_sym__val_number_token1] = ACTIONS(912), - [aux_sym__val_number_token2] = ACTIONS(912), - [aux_sym__val_number_token3] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym__str_single_quotes] = ACTIONS(912), - [sym__str_back_ticks] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(912), - [sym__entry_separator] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_alias] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_let_DASHenv] = ACTIONS(2417), + [anon_sym_mut] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [aux_sym_cmd_identifier_token1] = ACTIONS(2417), + [aux_sym_cmd_identifier_token2] = ACTIONS(2417), + [aux_sym_cmd_identifier_token3] = ACTIONS(2417), + [aux_sym_cmd_identifier_token4] = ACTIONS(2417), + [aux_sym_cmd_identifier_token5] = ACTIONS(2417), + [aux_sym_cmd_identifier_token6] = ACTIONS(2417), + [aux_sym_cmd_identifier_token7] = ACTIONS(2417), + [aux_sym_cmd_identifier_token8] = ACTIONS(2417), + [aux_sym_cmd_identifier_token9] = ACTIONS(2417), + [aux_sym_cmd_identifier_token10] = ACTIONS(2417), + [aux_sym_cmd_identifier_token11] = ACTIONS(2417), + [aux_sym_cmd_identifier_token12] = ACTIONS(2417), + [aux_sym_cmd_identifier_token13] = ACTIONS(2417), + [aux_sym_cmd_identifier_token14] = ACTIONS(2417), + [aux_sym_cmd_identifier_token15] = ACTIONS(2417), + [aux_sym_cmd_identifier_token16] = ACTIONS(2417), + [aux_sym_cmd_identifier_token17] = ACTIONS(2417), + [aux_sym_cmd_identifier_token18] = ACTIONS(2417), + [aux_sym_cmd_identifier_token19] = ACTIONS(2417), + [aux_sym_cmd_identifier_token20] = ACTIONS(2417), + [aux_sym_cmd_identifier_token21] = ACTIONS(2417), + [aux_sym_cmd_identifier_token22] = ACTIONS(2417), + [aux_sym_cmd_identifier_token23] = ACTIONS(2417), + [aux_sym_cmd_identifier_token24] = ACTIONS(2417), + [aux_sym_cmd_identifier_token25] = ACTIONS(2417), + [aux_sym_cmd_identifier_token26] = ACTIONS(2417), + [aux_sym_cmd_identifier_token27] = ACTIONS(2417), + [aux_sym_cmd_identifier_token28] = ACTIONS(2417), + [aux_sym_cmd_identifier_token29] = ACTIONS(2417), + [aux_sym_cmd_identifier_token30] = ACTIONS(2417), + [aux_sym_cmd_identifier_token31] = ACTIONS(2417), + [aux_sym_cmd_identifier_token32] = ACTIONS(2417), + [aux_sym_cmd_identifier_token33] = ACTIONS(2417), + [aux_sym_cmd_identifier_token34] = ACTIONS(2417), + [aux_sym_cmd_identifier_token35] = ACTIONS(2417), + [aux_sym_cmd_identifier_token36] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [anon_sym_null] = ACTIONS(2417), + [aux_sym_cmd_identifier_token38] = ACTIONS(2417), + [aux_sym_cmd_identifier_token39] = ACTIONS(2417), + [aux_sym_cmd_identifier_token40] = ACTIONS(2417), + [anon_sym_def] = ACTIONS(2417), + [anon_sym_export_DASHenv] = ACTIONS(2417), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_error] = ACTIONS(2417), + [anon_sym_list] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_in] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_make] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_else] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_catch] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_source] = ACTIONS(2417), + [anon_sym_source_DASHenv] = ACTIONS(2417), + [anon_sym_register] = ACTIONS(2417), + [anon_sym_hide] = ACTIONS(2417), + [anon_sym_hide_DASHenv] = ACTIONS(2417), + [anon_sym_overlay] = ACTIONS(2417), + [anon_sym_new] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2417), + [aux_sym__val_number_decimal_token1] = ACTIONS(2417), + [aux_sym__val_number_decimal_token2] = ACTIONS(2417), + [aux_sym__val_number_decimal_token3] = ACTIONS(2417), + [aux_sym__val_number_decimal_token4] = ACTIONS(2417), + [aux_sym__val_number_token1] = ACTIONS(2417), + [aux_sym__val_number_token2] = ACTIONS(2417), + [aux_sym__val_number_token3] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2417), + [sym__str_single_quotes] = ACTIONS(2417), + [sym__str_back_ticks] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2417), + [sym__entry_separator] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(3), }, [580] = { [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(2244), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [anon_sym_export] = ACTIONS(2421), + [anon_sym_alias] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_let_DASHenv] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [aux_sym_cmd_identifier_token1] = ACTIONS(2421), + [aux_sym_cmd_identifier_token2] = ACTIONS(2421), + [aux_sym_cmd_identifier_token3] = ACTIONS(2421), + [aux_sym_cmd_identifier_token4] = ACTIONS(2421), + [aux_sym_cmd_identifier_token5] = ACTIONS(2421), + [aux_sym_cmd_identifier_token6] = ACTIONS(2421), + [aux_sym_cmd_identifier_token7] = ACTIONS(2421), + [aux_sym_cmd_identifier_token8] = ACTIONS(2421), + [aux_sym_cmd_identifier_token9] = ACTIONS(2421), + [aux_sym_cmd_identifier_token10] = ACTIONS(2421), + [aux_sym_cmd_identifier_token11] = ACTIONS(2421), + [aux_sym_cmd_identifier_token12] = ACTIONS(2421), + [aux_sym_cmd_identifier_token13] = ACTIONS(2421), + [aux_sym_cmd_identifier_token14] = ACTIONS(2421), + [aux_sym_cmd_identifier_token15] = ACTIONS(2421), + [aux_sym_cmd_identifier_token16] = ACTIONS(2421), + [aux_sym_cmd_identifier_token17] = ACTIONS(2421), + [aux_sym_cmd_identifier_token18] = ACTIONS(2421), + [aux_sym_cmd_identifier_token19] = ACTIONS(2421), + [aux_sym_cmd_identifier_token20] = ACTIONS(2421), + [aux_sym_cmd_identifier_token21] = ACTIONS(2421), + [aux_sym_cmd_identifier_token22] = ACTIONS(2421), + [aux_sym_cmd_identifier_token23] = ACTIONS(2421), + [aux_sym_cmd_identifier_token24] = ACTIONS(2421), + [aux_sym_cmd_identifier_token25] = ACTIONS(2421), + [aux_sym_cmd_identifier_token26] = ACTIONS(2421), + [aux_sym_cmd_identifier_token27] = ACTIONS(2421), + [aux_sym_cmd_identifier_token28] = ACTIONS(2421), + [aux_sym_cmd_identifier_token29] = ACTIONS(2421), + [aux_sym_cmd_identifier_token30] = ACTIONS(2421), + [aux_sym_cmd_identifier_token31] = ACTIONS(2421), + [aux_sym_cmd_identifier_token32] = ACTIONS(2421), + [aux_sym_cmd_identifier_token33] = ACTIONS(2421), + [aux_sym_cmd_identifier_token34] = ACTIONS(2421), + [aux_sym_cmd_identifier_token35] = ACTIONS(2421), + [aux_sym_cmd_identifier_token36] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2421), + [aux_sym_cmd_identifier_token38] = ACTIONS(2421), + [aux_sym_cmd_identifier_token39] = ACTIONS(2421), + [aux_sym_cmd_identifier_token40] = ACTIONS(2421), + [anon_sym_def] = ACTIONS(2421), + [anon_sym_export_DASHenv] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_list] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_in] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_make] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_catch] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_source] = ACTIONS(2421), + [anon_sym_source_DASHenv] = ACTIONS(2421), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2421), + [aux_sym__val_number_decimal_token1] = ACTIONS(2421), + [aux_sym__val_number_decimal_token2] = ACTIONS(2421), + [aux_sym__val_number_decimal_token3] = ACTIONS(2421), + [aux_sym__val_number_decimal_token4] = ACTIONS(2421), + [aux_sym__val_number_token1] = ACTIONS(2421), + [aux_sym__val_number_token2] = ACTIONS(2421), + [aux_sym__val_number_token3] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym__str_single_quotes] = ACTIONS(2421), + [sym__str_back_ticks] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2421), + [sym__entry_separator] = ACTIONS(2423), + [anon_sym_PLUS] = ACTIONS(2421), [anon_sym_POUND] = ACTIONS(3), }, [581] = { [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_alias] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_let_DASHenv] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [aux_sym_cmd_identifier_token1] = ACTIONS(2425), + [aux_sym_cmd_identifier_token2] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [aux_sym_cmd_identifier_token6] = ACTIONS(2425), + [aux_sym_cmd_identifier_token7] = ACTIONS(2425), + [aux_sym_cmd_identifier_token8] = ACTIONS(2425), + [aux_sym_cmd_identifier_token9] = ACTIONS(2425), + [aux_sym_cmd_identifier_token10] = ACTIONS(2425), + [aux_sym_cmd_identifier_token11] = ACTIONS(2425), + [aux_sym_cmd_identifier_token12] = ACTIONS(2425), + [aux_sym_cmd_identifier_token13] = ACTIONS(2425), + [aux_sym_cmd_identifier_token14] = ACTIONS(2425), + [aux_sym_cmd_identifier_token15] = ACTIONS(2425), + [aux_sym_cmd_identifier_token16] = ACTIONS(2425), + [aux_sym_cmd_identifier_token17] = ACTIONS(2425), + [aux_sym_cmd_identifier_token18] = ACTIONS(2425), + [aux_sym_cmd_identifier_token19] = ACTIONS(2425), + [aux_sym_cmd_identifier_token20] = ACTIONS(2425), + [aux_sym_cmd_identifier_token21] = ACTIONS(2425), + [aux_sym_cmd_identifier_token22] = ACTIONS(2425), + [aux_sym_cmd_identifier_token23] = ACTIONS(2425), + [aux_sym_cmd_identifier_token24] = ACTIONS(2425), + [aux_sym_cmd_identifier_token25] = ACTIONS(2425), + [aux_sym_cmd_identifier_token26] = ACTIONS(2425), + [aux_sym_cmd_identifier_token27] = ACTIONS(2425), + [aux_sym_cmd_identifier_token28] = ACTIONS(2425), + [aux_sym_cmd_identifier_token29] = ACTIONS(2425), + [aux_sym_cmd_identifier_token30] = ACTIONS(2425), + [aux_sym_cmd_identifier_token31] = ACTIONS(2425), + [aux_sym_cmd_identifier_token32] = ACTIONS(2425), + [aux_sym_cmd_identifier_token33] = ACTIONS(2425), + [aux_sym_cmd_identifier_token34] = ACTIONS(2425), + [aux_sym_cmd_identifier_token35] = ACTIONS(2425), + [aux_sym_cmd_identifier_token36] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token38] = ACTIONS(2425), + [aux_sym_cmd_identifier_token39] = ACTIONS(2425), + [aux_sym_cmd_identifier_token40] = ACTIONS(2425), + [anon_sym_def] = ACTIONS(2425), + [anon_sym_export_DASHenv] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2425), + [anon_sym_error] = ACTIONS(2425), + [anon_sym_list] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_in] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_make] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_catch] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_source] = ACTIONS(2425), + [anon_sym_source_DASHenv] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_hide] = ACTIONS(2425), + [anon_sym_hide_DASHenv] = ACTIONS(2425), + [anon_sym_overlay] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2425), + [aux_sym__val_number_decimal_token1] = ACTIONS(2425), + [aux_sym__val_number_decimal_token2] = ACTIONS(2425), + [aux_sym__val_number_decimal_token3] = ACTIONS(2425), + [aux_sym__val_number_decimal_token4] = ACTIONS(2425), + [aux_sym__val_number_token1] = ACTIONS(2425), + [aux_sym__val_number_token2] = ACTIONS(2425), + [aux_sym__val_number_token3] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [sym__str_single_quotes] = ACTIONS(2425), + [sym__str_back_ticks] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2425), + [sym__entry_separator] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(2425), [anon_sym_POUND] = ACTIONS(3), }, [582] = { [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2429), + [aux_sym_cmd_identifier_token4] = ACTIONS(2429), + [aux_sym_cmd_identifier_token5] = ACTIONS(2429), + [aux_sym_cmd_identifier_token6] = ACTIONS(2429), + [aux_sym_cmd_identifier_token7] = ACTIONS(2429), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2429), + [aux_sym_cmd_identifier_token11] = ACTIONS(2429), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2429), + [aux_sym_cmd_identifier_token17] = ACTIONS(2429), + [aux_sym_cmd_identifier_token18] = ACTIONS(2429), + [aux_sym_cmd_identifier_token19] = ACTIONS(2429), + [aux_sym_cmd_identifier_token20] = ACTIONS(2429), + [aux_sym_cmd_identifier_token21] = ACTIONS(2429), + [aux_sym_cmd_identifier_token22] = ACTIONS(2429), + [aux_sym_cmd_identifier_token23] = ACTIONS(2429), + [aux_sym_cmd_identifier_token24] = ACTIONS(2429), + [aux_sym_cmd_identifier_token25] = ACTIONS(2429), + [aux_sym_cmd_identifier_token26] = ACTIONS(2429), + [aux_sym_cmd_identifier_token27] = ACTIONS(2429), + [aux_sym_cmd_identifier_token28] = ACTIONS(2429), + [aux_sym_cmd_identifier_token29] = ACTIONS(2429), + [aux_sym_cmd_identifier_token30] = ACTIONS(2429), + [aux_sym_cmd_identifier_token31] = ACTIONS(2429), + [aux_sym_cmd_identifier_token32] = ACTIONS(2429), + [aux_sym_cmd_identifier_token33] = ACTIONS(2429), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2429), + [aux_sym_cmd_identifier_token36] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2429), + [aux_sym_cmd_identifier_token40] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_list] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2429), + [aux_sym__val_number_decimal_token3] = ACTIONS(2429), + [aux_sym__val_number_decimal_token4] = ACTIONS(2429), + [aux_sym__val_number_token1] = ACTIONS(2429), + [aux_sym__val_number_token2] = ACTIONS(2429), + [aux_sym__val_number_token3] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [sym__str_single_quotes] = ACTIONS(2429), + [sym__str_back_ticks] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2431), + [anon_sym_PLUS] = ACTIONS(2429), [anon_sym_POUND] = ACTIONS(3), }, [583] = { [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(1429), - [anon_sym_alias] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_let_DASHenv] = ACTIONS(1429), - [anon_sym_mut] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [aux_sym_cmd_identifier_token1] = ACTIONS(1429), - [aux_sym_cmd_identifier_token2] = ACTIONS(1429), - [aux_sym_cmd_identifier_token3] = ACTIONS(1429), - [aux_sym_cmd_identifier_token4] = ACTIONS(1429), - [aux_sym_cmd_identifier_token5] = ACTIONS(1429), - [aux_sym_cmd_identifier_token6] = ACTIONS(1429), - [aux_sym_cmd_identifier_token7] = ACTIONS(1429), - [aux_sym_cmd_identifier_token8] = ACTIONS(1429), - [aux_sym_cmd_identifier_token9] = ACTIONS(1429), - [aux_sym_cmd_identifier_token10] = ACTIONS(1429), - [aux_sym_cmd_identifier_token11] = ACTIONS(1429), - [aux_sym_cmd_identifier_token12] = ACTIONS(1429), - [aux_sym_cmd_identifier_token13] = ACTIONS(1429), - [aux_sym_cmd_identifier_token14] = ACTIONS(1429), - [aux_sym_cmd_identifier_token15] = ACTIONS(1429), - [aux_sym_cmd_identifier_token16] = ACTIONS(1429), - [aux_sym_cmd_identifier_token17] = ACTIONS(1429), - [aux_sym_cmd_identifier_token18] = ACTIONS(1429), - [aux_sym_cmd_identifier_token19] = ACTIONS(1429), - [aux_sym_cmd_identifier_token20] = ACTIONS(1429), - [aux_sym_cmd_identifier_token21] = ACTIONS(1429), - [aux_sym_cmd_identifier_token22] = ACTIONS(1429), - [aux_sym_cmd_identifier_token23] = ACTIONS(1429), - [aux_sym_cmd_identifier_token24] = ACTIONS(1429), - [aux_sym_cmd_identifier_token25] = ACTIONS(1429), - [aux_sym_cmd_identifier_token26] = ACTIONS(1429), - [aux_sym_cmd_identifier_token27] = ACTIONS(1429), - [aux_sym_cmd_identifier_token28] = ACTIONS(1429), - [aux_sym_cmd_identifier_token29] = ACTIONS(1429), - [aux_sym_cmd_identifier_token30] = ACTIONS(1429), - [aux_sym_cmd_identifier_token31] = ACTIONS(1429), - [aux_sym_cmd_identifier_token32] = ACTIONS(1429), - [aux_sym_cmd_identifier_token33] = ACTIONS(1429), - [aux_sym_cmd_identifier_token34] = ACTIONS(1429), - [aux_sym_cmd_identifier_token35] = ACTIONS(1429), - [aux_sym_cmd_identifier_token36] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1429), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [anon_sym_def] = ACTIONS(1429), - [anon_sym_export_DASHenv] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_module] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_error] = ACTIONS(1429), - [anon_sym_list] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_make] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_try] = ACTIONS(1429), - [anon_sym_catch] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_source] = ACTIONS(1429), - [anon_sym_source_DASHenv] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_hide] = ACTIONS(1429), - [anon_sym_hide_DASHenv] = ACTIONS(1429), - [anon_sym_overlay] = ACTIONS(1429), - [anon_sym_new] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1441), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1441), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1441), - [aux_sym__unquoted_in_record_token6] = ACTIONS(1394), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_alias] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_let_DASHenv] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [aux_sym_cmd_identifier_token1] = ACTIONS(2433), + [aux_sym_cmd_identifier_token2] = ACTIONS(2433), + [aux_sym_cmd_identifier_token3] = ACTIONS(2433), + [aux_sym_cmd_identifier_token4] = ACTIONS(2433), + [aux_sym_cmd_identifier_token5] = ACTIONS(2433), + [aux_sym_cmd_identifier_token6] = ACTIONS(2433), + [aux_sym_cmd_identifier_token7] = ACTIONS(2433), + [aux_sym_cmd_identifier_token8] = ACTIONS(2433), + [aux_sym_cmd_identifier_token9] = ACTIONS(2433), + [aux_sym_cmd_identifier_token10] = ACTIONS(2433), + [aux_sym_cmd_identifier_token11] = ACTIONS(2433), + [aux_sym_cmd_identifier_token12] = ACTIONS(2433), + [aux_sym_cmd_identifier_token13] = ACTIONS(2433), + [aux_sym_cmd_identifier_token14] = ACTIONS(2433), + [aux_sym_cmd_identifier_token15] = ACTIONS(2433), + [aux_sym_cmd_identifier_token16] = ACTIONS(2433), + [aux_sym_cmd_identifier_token17] = ACTIONS(2433), + [aux_sym_cmd_identifier_token18] = ACTIONS(2433), + [aux_sym_cmd_identifier_token19] = ACTIONS(2433), + [aux_sym_cmd_identifier_token20] = ACTIONS(2433), + [aux_sym_cmd_identifier_token21] = ACTIONS(2433), + [aux_sym_cmd_identifier_token22] = ACTIONS(2433), + [aux_sym_cmd_identifier_token23] = ACTIONS(2433), + [aux_sym_cmd_identifier_token24] = ACTIONS(2433), + [aux_sym_cmd_identifier_token25] = ACTIONS(2433), + [aux_sym_cmd_identifier_token26] = ACTIONS(2433), + [aux_sym_cmd_identifier_token27] = ACTIONS(2433), + [aux_sym_cmd_identifier_token28] = ACTIONS(2433), + [aux_sym_cmd_identifier_token29] = ACTIONS(2433), + [aux_sym_cmd_identifier_token30] = ACTIONS(2433), + [aux_sym_cmd_identifier_token31] = ACTIONS(2433), + [aux_sym_cmd_identifier_token32] = ACTIONS(2433), + [aux_sym_cmd_identifier_token33] = ACTIONS(2433), + [aux_sym_cmd_identifier_token34] = ACTIONS(2433), + [aux_sym_cmd_identifier_token35] = ACTIONS(2433), + [aux_sym_cmd_identifier_token36] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_null] = ACTIONS(2433), + [aux_sym_cmd_identifier_token38] = ACTIONS(2433), + [aux_sym_cmd_identifier_token39] = ACTIONS(2433), + [aux_sym_cmd_identifier_token40] = ACTIONS(2433), + [anon_sym_def] = ACTIONS(2433), + [anon_sym_export_DASHenv] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2433), + [anon_sym_error] = ACTIONS(2433), + [anon_sym_list] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_in] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_make] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_catch] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_source] = ACTIONS(2433), + [anon_sym_source_DASHenv] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_hide] = ACTIONS(2433), + [anon_sym_hide_DASHenv] = ACTIONS(2433), + [anon_sym_overlay] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2433), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2433), + [aux_sym__val_number_decimal_token3] = ACTIONS(2433), + [aux_sym__val_number_decimal_token4] = ACTIONS(2433), + [aux_sym__val_number_token1] = ACTIONS(2433), + [aux_sym__val_number_token2] = ACTIONS(2433), + [aux_sym__val_number_token3] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2433), + [sym__str_single_quotes] = ACTIONS(2433), + [sym__str_back_ticks] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2433), + [sym__entry_separator] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2433), [anon_sym_POUND] = ACTIONS(3), }, [584] = { [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1350), - [aux_sym_cmd_identifier_token2] = ACTIONS(1350), - [aux_sym_cmd_identifier_token3] = ACTIONS(1350), - [aux_sym_cmd_identifier_token4] = ACTIONS(1350), - [aux_sym_cmd_identifier_token5] = ACTIONS(1350), - [aux_sym_cmd_identifier_token6] = ACTIONS(1350), - [aux_sym_cmd_identifier_token7] = ACTIONS(1350), - [aux_sym_cmd_identifier_token8] = ACTIONS(1350), - [aux_sym_cmd_identifier_token9] = ACTIONS(1350), - [aux_sym_cmd_identifier_token10] = ACTIONS(1350), - [aux_sym_cmd_identifier_token11] = ACTIONS(1350), - [aux_sym_cmd_identifier_token12] = ACTIONS(1350), - [aux_sym_cmd_identifier_token13] = ACTIONS(1350), - [aux_sym_cmd_identifier_token14] = ACTIONS(1350), - [aux_sym_cmd_identifier_token15] = ACTIONS(1350), - [aux_sym_cmd_identifier_token16] = ACTIONS(1350), - [aux_sym_cmd_identifier_token17] = ACTIONS(1350), - [aux_sym_cmd_identifier_token18] = ACTIONS(1350), - [aux_sym_cmd_identifier_token19] = ACTIONS(1350), - [aux_sym_cmd_identifier_token20] = ACTIONS(1350), - [aux_sym_cmd_identifier_token21] = ACTIONS(1350), - [aux_sym_cmd_identifier_token22] = ACTIONS(1350), - [aux_sym_cmd_identifier_token23] = ACTIONS(1350), - [aux_sym_cmd_identifier_token24] = ACTIONS(1350), - [aux_sym_cmd_identifier_token25] = ACTIONS(1350), - [aux_sym_cmd_identifier_token26] = ACTIONS(1350), - [aux_sym_cmd_identifier_token27] = ACTIONS(1350), - [aux_sym_cmd_identifier_token28] = ACTIONS(1350), - [aux_sym_cmd_identifier_token29] = ACTIONS(1350), - [aux_sym_cmd_identifier_token30] = ACTIONS(1350), - [aux_sym_cmd_identifier_token31] = ACTIONS(1350), - [aux_sym_cmd_identifier_token32] = ACTIONS(1350), - [aux_sym_cmd_identifier_token33] = ACTIONS(1350), - [aux_sym_cmd_identifier_token34] = ACTIONS(1350), - [aux_sym_cmd_identifier_token35] = ACTIONS(1350), - [aux_sym_cmd_identifier_token36] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [aux_sym_cmd_identifier_token38] = ACTIONS(1350), - [aux_sym_cmd_identifier_token39] = ACTIONS(1362), - [aux_sym_cmd_identifier_token40] = ACTIONS(1362), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1362), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1350), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [anon_sym_DOT2] = ACTIONS(1350), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1362), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_alias] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_let_DASHenv] = ACTIONS(2437), + [anon_sym_mut] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [aux_sym_cmd_identifier_token1] = ACTIONS(2437), + [aux_sym_cmd_identifier_token2] = ACTIONS(2437), + [aux_sym_cmd_identifier_token3] = ACTIONS(2437), + [aux_sym_cmd_identifier_token4] = ACTIONS(2437), + [aux_sym_cmd_identifier_token5] = ACTIONS(2437), + [aux_sym_cmd_identifier_token6] = ACTIONS(2437), + [aux_sym_cmd_identifier_token7] = ACTIONS(2437), + [aux_sym_cmd_identifier_token8] = ACTIONS(2437), + [aux_sym_cmd_identifier_token9] = ACTIONS(2437), + [aux_sym_cmd_identifier_token10] = ACTIONS(2437), + [aux_sym_cmd_identifier_token11] = ACTIONS(2437), + [aux_sym_cmd_identifier_token12] = ACTIONS(2437), + [aux_sym_cmd_identifier_token13] = ACTIONS(2437), + [aux_sym_cmd_identifier_token14] = ACTIONS(2437), + [aux_sym_cmd_identifier_token15] = ACTIONS(2437), + [aux_sym_cmd_identifier_token16] = ACTIONS(2437), + [aux_sym_cmd_identifier_token17] = ACTIONS(2437), + [aux_sym_cmd_identifier_token18] = ACTIONS(2437), + [aux_sym_cmd_identifier_token19] = ACTIONS(2437), + [aux_sym_cmd_identifier_token20] = ACTIONS(2437), + [aux_sym_cmd_identifier_token21] = ACTIONS(2437), + [aux_sym_cmd_identifier_token22] = ACTIONS(2437), + [aux_sym_cmd_identifier_token23] = ACTIONS(2437), + [aux_sym_cmd_identifier_token24] = ACTIONS(2437), + [aux_sym_cmd_identifier_token25] = ACTIONS(2437), + [aux_sym_cmd_identifier_token26] = ACTIONS(2437), + [aux_sym_cmd_identifier_token27] = ACTIONS(2437), + [aux_sym_cmd_identifier_token28] = ACTIONS(2437), + [aux_sym_cmd_identifier_token29] = ACTIONS(2437), + [aux_sym_cmd_identifier_token30] = ACTIONS(2437), + [aux_sym_cmd_identifier_token31] = ACTIONS(2437), + [aux_sym_cmd_identifier_token32] = ACTIONS(2437), + [aux_sym_cmd_identifier_token33] = ACTIONS(2437), + [aux_sym_cmd_identifier_token34] = ACTIONS(2437), + [aux_sym_cmd_identifier_token35] = ACTIONS(2437), + [aux_sym_cmd_identifier_token36] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_null] = ACTIONS(2437), + [aux_sym_cmd_identifier_token38] = ACTIONS(2437), + [aux_sym_cmd_identifier_token39] = ACTIONS(2437), + [aux_sym_cmd_identifier_token40] = ACTIONS(2437), + [anon_sym_def] = ACTIONS(2437), + [anon_sym_export_DASHenv] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_DOLLAR] = ACTIONS(2437), + [anon_sym_error] = ACTIONS(2437), + [anon_sym_list] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_in] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_make] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_catch] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_source] = ACTIONS(2437), + [anon_sym_source_DASHenv] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_hide] = ACTIONS(2437), + [anon_sym_hide_DASHenv] = ACTIONS(2437), + [anon_sym_overlay] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2437), + [aux_sym__val_number_decimal_token2] = ACTIONS(2437), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(2437), + [aux_sym__val_number_token2] = ACTIONS(2437), + [aux_sym__val_number_token3] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(2437), + [sym__str_single_quotes] = ACTIONS(2437), + [sym__str_back_ticks] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2437), + [sym__entry_separator] = ACTIONS(2439), + [anon_sym_PLUS] = ACTIONS(2437), [anon_sym_POUND] = ACTIONS(3), }, [585] = { [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1470), - [aux_sym_cmd_identifier_token40] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym__str_single_quotes] = ACTIONS(1470), - [sym__str_back_ticks] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1470), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_alias] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_let_DASHenv] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [aux_sym_cmd_identifier_token1] = ACTIONS(2441), + [aux_sym_cmd_identifier_token2] = ACTIONS(2441), + [aux_sym_cmd_identifier_token3] = ACTIONS(2441), + [aux_sym_cmd_identifier_token4] = ACTIONS(2441), + [aux_sym_cmd_identifier_token5] = ACTIONS(2441), + [aux_sym_cmd_identifier_token6] = ACTIONS(2441), + [aux_sym_cmd_identifier_token7] = ACTIONS(2441), + [aux_sym_cmd_identifier_token8] = ACTIONS(2441), + [aux_sym_cmd_identifier_token9] = ACTIONS(2441), + [aux_sym_cmd_identifier_token10] = ACTIONS(2441), + [aux_sym_cmd_identifier_token11] = ACTIONS(2441), + [aux_sym_cmd_identifier_token12] = ACTIONS(2441), + [aux_sym_cmd_identifier_token13] = ACTIONS(2441), + [aux_sym_cmd_identifier_token14] = ACTIONS(2441), + [aux_sym_cmd_identifier_token15] = ACTIONS(2441), + [aux_sym_cmd_identifier_token16] = ACTIONS(2441), + [aux_sym_cmd_identifier_token17] = ACTIONS(2441), + [aux_sym_cmd_identifier_token18] = ACTIONS(2441), + [aux_sym_cmd_identifier_token19] = ACTIONS(2441), + [aux_sym_cmd_identifier_token20] = ACTIONS(2441), + [aux_sym_cmd_identifier_token21] = ACTIONS(2441), + [aux_sym_cmd_identifier_token22] = ACTIONS(2441), + [aux_sym_cmd_identifier_token23] = ACTIONS(2441), + [aux_sym_cmd_identifier_token24] = ACTIONS(2441), + [aux_sym_cmd_identifier_token25] = ACTIONS(2441), + [aux_sym_cmd_identifier_token26] = ACTIONS(2441), + [aux_sym_cmd_identifier_token27] = ACTIONS(2441), + [aux_sym_cmd_identifier_token28] = ACTIONS(2441), + [aux_sym_cmd_identifier_token29] = ACTIONS(2441), + [aux_sym_cmd_identifier_token30] = ACTIONS(2441), + [aux_sym_cmd_identifier_token31] = ACTIONS(2441), + [aux_sym_cmd_identifier_token32] = ACTIONS(2441), + [aux_sym_cmd_identifier_token33] = ACTIONS(2441), + [aux_sym_cmd_identifier_token34] = ACTIONS(2441), + [aux_sym_cmd_identifier_token35] = ACTIONS(2441), + [aux_sym_cmd_identifier_token36] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [anon_sym_null] = ACTIONS(2441), + [aux_sym_cmd_identifier_token38] = ACTIONS(2441), + [aux_sym_cmd_identifier_token39] = ACTIONS(2441), + [aux_sym_cmd_identifier_token40] = ACTIONS(2441), + [anon_sym_def] = ACTIONS(2441), + [anon_sym_export_DASHenv] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_DOLLAR] = ACTIONS(2441), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_list] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_make] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_catch] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_source] = ACTIONS(2441), + [anon_sym_source_DASHenv] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2441), + [aux_sym__val_number_decimal_token1] = ACTIONS(2441), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2441), + [aux_sym__val_number_decimal_token4] = ACTIONS(2441), + [aux_sym__val_number_token1] = ACTIONS(2441), + [aux_sym__val_number_token2] = ACTIONS(2441), + [aux_sym__val_number_token3] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym__str_single_quotes] = ACTIONS(2441), + [sym__str_back_ticks] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2441), + [sym__entry_separator] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(3), }, [586] = { [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1535), - [aux_sym_cmd_identifier_token40] = ACTIONS(1535), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1535), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1535), - [aux_sym__val_number_token1] = ACTIONS(1535), - [aux_sym__val_number_token2] = ACTIONS(1535), - [aux_sym__val_number_token3] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym__str_single_quotes] = ACTIONS(1535), - [sym__str_back_ticks] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1535), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(986), + [anon_sym_list] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_new] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), }, [587] = { [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [aux_sym_cmd_identifier_token1] = ACTIONS(1608), - [aux_sym_cmd_identifier_token2] = ACTIONS(1608), - [aux_sym_cmd_identifier_token3] = ACTIONS(1608), - [aux_sym_cmd_identifier_token4] = ACTIONS(1608), - [aux_sym_cmd_identifier_token5] = ACTIONS(1608), - [aux_sym_cmd_identifier_token6] = ACTIONS(1608), - [aux_sym_cmd_identifier_token7] = ACTIONS(1608), - [aux_sym_cmd_identifier_token8] = ACTIONS(1608), - [aux_sym_cmd_identifier_token9] = ACTIONS(1608), - [aux_sym_cmd_identifier_token10] = ACTIONS(1608), - [aux_sym_cmd_identifier_token11] = ACTIONS(1608), - [aux_sym_cmd_identifier_token12] = ACTIONS(1608), - [aux_sym_cmd_identifier_token13] = ACTIONS(1608), - [aux_sym_cmd_identifier_token14] = ACTIONS(1608), - [aux_sym_cmd_identifier_token15] = ACTIONS(1608), - [aux_sym_cmd_identifier_token16] = ACTIONS(1608), - [aux_sym_cmd_identifier_token17] = ACTIONS(1608), - [aux_sym_cmd_identifier_token18] = ACTIONS(1608), - [aux_sym_cmd_identifier_token19] = ACTIONS(1608), - [aux_sym_cmd_identifier_token20] = ACTIONS(1608), - [aux_sym_cmd_identifier_token21] = ACTIONS(1608), - [aux_sym_cmd_identifier_token22] = ACTIONS(1608), - [aux_sym_cmd_identifier_token23] = ACTIONS(1608), - [aux_sym_cmd_identifier_token24] = ACTIONS(1608), - [aux_sym_cmd_identifier_token25] = ACTIONS(1608), - [aux_sym_cmd_identifier_token26] = ACTIONS(1608), - [aux_sym_cmd_identifier_token27] = ACTIONS(1608), - [aux_sym_cmd_identifier_token28] = ACTIONS(1608), - [aux_sym_cmd_identifier_token29] = ACTIONS(1608), - [aux_sym_cmd_identifier_token30] = ACTIONS(1608), - [aux_sym_cmd_identifier_token31] = ACTIONS(1608), - [aux_sym_cmd_identifier_token32] = ACTIONS(1608), - [aux_sym_cmd_identifier_token33] = ACTIONS(1608), - [aux_sym_cmd_identifier_token34] = ACTIONS(1608), - [aux_sym_cmd_identifier_token35] = ACTIONS(1608), - [aux_sym_cmd_identifier_token36] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [aux_sym_cmd_identifier_token38] = ACTIONS(1608), - [aux_sym_cmd_identifier_token39] = ACTIONS(1608), - [aux_sym_cmd_identifier_token40] = ACTIONS(1608), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1608), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1608), - [aux_sym__val_number_token2] = ACTIONS(1608), - [aux_sym__val_number_token3] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym__str_single_quotes] = ACTIONS(1608), - [sym__str_back_ticks] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1608), - [sym__entry_separator] = ACTIONS(1610), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_list] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_new] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), }, [588] = { [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_alias] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_let_DASHenv] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [aux_sym_cmd_identifier_token1] = ACTIONS(2055), - [aux_sym_cmd_identifier_token2] = ACTIONS(2055), - [aux_sym_cmd_identifier_token3] = ACTIONS(2055), - [aux_sym_cmd_identifier_token4] = ACTIONS(2055), - [aux_sym_cmd_identifier_token5] = ACTIONS(2055), - [aux_sym_cmd_identifier_token6] = ACTIONS(2055), - [aux_sym_cmd_identifier_token7] = ACTIONS(2055), - [aux_sym_cmd_identifier_token8] = ACTIONS(2055), - [aux_sym_cmd_identifier_token9] = ACTIONS(2055), - [aux_sym_cmd_identifier_token10] = ACTIONS(2055), - [aux_sym_cmd_identifier_token11] = ACTIONS(2055), - [aux_sym_cmd_identifier_token12] = ACTIONS(2055), - [aux_sym_cmd_identifier_token13] = ACTIONS(2055), - [aux_sym_cmd_identifier_token14] = ACTIONS(2055), - [aux_sym_cmd_identifier_token15] = ACTIONS(2055), - [aux_sym_cmd_identifier_token16] = ACTIONS(2055), - [aux_sym_cmd_identifier_token17] = ACTIONS(2055), - [aux_sym_cmd_identifier_token18] = ACTIONS(2055), - [aux_sym_cmd_identifier_token19] = ACTIONS(2055), - [aux_sym_cmd_identifier_token20] = ACTIONS(2055), - [aux_sym_cmd_identifier_token21] = ACTIONS(2055), - [aux_sym_cmd_identifier_token22] = ACTIONS(2055), - [aux_sym_cmd_identifier_token23] = ACTIONS(2055), - [aux_sym_cmd_identifier_token24] = ACTIONS(2055), - [aux_sym_cmd_identifier_token25] = ACTIONS(2055), - [aux_sym_cmd_identifier_token26] = ACTIONS(2055), - [aux_sym_cmd_identifier_token27] = ACTIONS(2055), - [aux_sym_cmd_identifier_token28] = ACTIONS(2055), - [aux_sym_cmd_identifier_token29] = ACTIONS(2055), - [aux_sym_cmd_identifier_token30] = ACTIONS(2055), - [aux_sym_cmd_identifier_token31] = ACTIONS(2055), - [aux_sym_cmd_identifier_token32] = ACTIONS(2055), - [aux_sym_cmd_identifier_token33] = ACTIONS(2055), - [aux_sym_cmd_identifier_token34] = ACTIONS(2055), - [aux_sym_cmd_identifier_token35] = ACTIONS(2055), - [aux_sym_cmd_identifier_token36] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [aux_sym_cmd_identifier_token38] = ACTIONS(2055), - [aux_sym_cmd_identifier_token39] = ACTIONS(2057), - [aux_sym_cmd_identifier_token40] = ACTIONS(2057), - [anon_sym_def] = ACTIONS(2055), - [anon_sym_export_DASHenv] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2055), - [anon_sym_list] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_make] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_catch] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_source] = ACTIONS(2055), - [anon_sym_source_DASHenv] = ACTIONS(2055), - [anon_sym_register] = ACTIONS(2055), - [anon_sym_hide] = ACTIONS(2055), - [anon_sym_hide_DASHenv] = ACTIONS(2055), - [anon_sym_overlay] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LPAREN2] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), - [aux_sym__val_number_decimal_token1] = ACTIONS(2055), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [anon_sym_DOT2] = ACTIONS(2055), - [aux_sym__val_number_decimal_token3] = ACTIONS(2057), - [aux_sym__val_number_token1] = ACTIONS(2057), - [aux_sym__val_number_token2] = ACTIONS(2057), - [aux_sym__val_number_token3] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [sym__str_single_quotes] = ACTIONS(2057), - [sym__str_back_ticks] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [anon_sym_null] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), + [anon_sym_list] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_new] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(976), + [aux_sym__val_number_decimal_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token4] = ACTIONS(976), + [aux_sym__val_number_token1] = ACTIONS(976), + [aux_sym__val_number_token2] = ACTIONS(976), + [aux_sym__val_number_token3] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [sym__entry_separator] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), }, [589] = { [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_alias] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_let_DASHenv] = ACTIONS(2394), - [anon_sym_mut] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [aux_sym_cmd_identifier_token1] = ACTIONS(2394), - [aux_sym_cmd_identifier_token2] = ACTIONS(2394), - [aux_sym_cmd_identifier_token3] = ACTIONS(2394), - [aux_sym_cmd_identifier_token4] = ACTIONS(2394), - [aux_sym_cmd_identifier_token5] = ACTIONS(2394), - [aux_sym_cmd_identifier_token6] = ACTIONS(2394), - [aux_sym_cmd_identifier_token7] = ACTIONS(2394), - [aux_sym_cmd_identifier_token8] = ACTIONS(2394), - [aux_sym_cmd_identifier_token9] = ACTIONS(2394), - [aux_sym_cmd_identifier_token10] = ACTIONS(2394), - [aux_sym_cmd_identifier_token11] = ACTIONS(2394), - [aux_sym_cmd_identifier_token12] = ACTIONS(2394), - [aux_sym_cmd_identifier_token13] = ACTIONS(2394), - [aux_sym_cmd_identifier_token14] = ACTIONS(2394), - [aux_sym_cmd_identifier_token15] = ACTIONS(2394), - [aux_sym_cmd_identifier_token16] = ACTIONS(2394), - [aux_sym_cmd_identifier_token17] = ACTIONS(2394), - [aux_sym_cmd_identifier_token18] = ACTIONS(2394), - [aux_sym_cmd_identifier_token19] = ACTIONS(2394), - [aux_sym_cmd_identifier_token20] = ACTIONS(2394), - [aux_sym_cmd_identifier_token21] = ACTIONS(2394), - [aux_sym_cmd_identifier_token22] = ACTIONS(2394), - [aux_sym_cmd_identifier_token23] = ACTIONS(2394), - [aux_sym_cmd_identifier_token24] = ACTIONS(2394), - [aux_sym_cmd_identifier_token25] = ACTIONS(2394), - [aux_sym_cmd_identifier_token26] = ACTIONS(2394), - [aux_sym_cmd_identifier_token27] = ACTIONS(2394), - [aux_sym_cmd_identifier_token28] = ACTIONS(2394), - [aux_sym_cmd_identifier_token29] = ACTIONS(2394), - [aux_sym_cmd_identifier_token30] = ACTIONS(2394), - [aux_sym_cmd_identifier_token31] = ACTIONS(2394), - [aux_sym_cmd_identifier_token32] = ACTIONS(2394), - [aux_sym_cmd_identifier_token33] = ACTIONS(2394), - [aux_sym_cmd_identifier_token34] = ACTIONS(2394), - [aux_sym_cmd_identifier_token35] = ACTIONS(2394), - [aux_sym_cmd_identifier_token36] = ACTIONS(2394), - [anon_sym_true] = ACTIONS(2394), - [anon_sym_false] = ACTIONS(2394), - [anon_sym_null] = ACTIONS(2394), - [aux_sym_cmd_identifier_token38] = ACTIONS(2394), - [aux_sym_cmd_identifier_token39] = ACTIONS(2394), - [aux_sym_cmd_identifier_token40] = ACTIONS(2394), - [anon_sym_def] = ACTIONS(2394), - [anon_sym_export_DASHenv] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_use] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_DOLLAR] = ACTIONS(2394), - [anon_sym_error] = ACTIONS(2394), - [anon_sym_list] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_in] = ACTIONS(2394), - [anon_sym_loop] = ACTIONS(2394), - [anon_sym_make] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_match] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_catch] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_source] = ACTIONS(2394), - [anon_sym_source_DASHenv] = ACTIONS(2394), - [anon_sym_register] = ACTIONS(2394), - [anon_sym_hide] = ACTIONS(2394), - [anon_sym_hide_DASHenv] = ACTIONS(2394), - [anon_sym_overlay] = ACTIONS(2394), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_as] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2394), - [aux_sym__val_number_decimal_token1] = ACTIONS(2394), - [aux_sym__val_number_decimal_token2] = ACTIONS(2394), - [anon_sym_DOT2] = ACTIONS(2394), - [aux_sym__val_number_decimal_token3] = ACTIONS(2394), - [aux_sym__val_number_token1] = ACTIONS(2394), - [aux_sym__val_number_token2] = ACTIONS(2394), - [aux_sym__val_number_token3] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2394), - [sym__str_single_quotes] = ACTIONS(2394), - [sym__str_back_ticks] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2394), - [sym__entry_separator] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_export] = ACTIONS(1525), + [anon_sym_alias] = ACTIONS(1525), + [anon_sym_let] = ACTIONS(1525), + [anon_sym_let_DASHenv] = ACTIONS(1525), + [anon_sym_mut] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [aux_sym_cmd_identifier_token1] = ACTIONS(1525), + [aux_sym_cmd_identifier_token2] = ACTIONS(1525), + [aux_sym_cmd_identifier_token3] = ACTIONS(1525), + [aux_sym_cmd_identifier_token4] = ACTIONS(1525), + [aux_sym_cmd_identifier_token5] = ACTIONS(1525), + [aux_sym_cmd_identifier_token6] = ACTIONS(1525), + [aux_sym_cmd_identifier_token7] = ACTIONS(1525), + [aux_sym_cmd_identifier_token8] = ACTIONS(1525), + [aux_sym_cmd_identifier_token9] = ACTIONS(1525), + [aux_sym_cmd_identifier_token10] = ACTIONS(1525), + [aux_sym_cmd_identifier_token11] = ACTIONS(1525), + [aux_sym_cmd_identifier_token12] = ACTIONS(1525), + [aux_sym_cmd_identifier_token13] = ACTIONS(1525), + [aux_sym_cmd_identifier_token14] = ACTIONS(1525), + [aux_sym_cmd_identifier_token15] = ACTIONS(1525), + [aux_sym_cmd_identifier_token16] = ACTIONS(1525), + [aux_sym_cmd_identifier_token17] = ACTIONS(1525), + [aux_sym_cmd_identifier_token18] = ACTIONS(1525), + [aux_sym_cmd_identifier_token19] = ACTIONS(1525), + [aux_sym_cmd_identifier_token20] = ACTIONS(1525), + [aux_sym_cmd_identifier_token21] = ACTIONS(1525), + [aux_sym_cmd_identifier_token22] = ACTIONS(1525), + [aux_sym_cmd_identifier_token23] = ACTIONS(1525), + [aux_sym_cmd_identifier_token24] = ACTIONS(1525), + [aux_sym_cmd_identifier_token25] = ACTIONS(1525), + [aux_sym_cmd_identifier_token26] = ACTIONS(1525), + [aux_sym_cmd_identifier_token27] = ACTIONS(1525), + [aux_sym_cmd_identifier_token28] = ACTIONS(1525), + [aux_sym_cmd_identifier_token29] = ACTIONS(1525), + [aux_sym_cmd_identifier_token30] = ACTIONS(1525), + [aux_sym_cmd_identifier_token31] = ACTIONS(1525), + [aux_sym_cmd_identifier_token32] = ACTIONS(1525), + [aux_sym_cmd_identifier_token33] = ACTIONS(1525), + [aux_sym_cmd_identifier_token34] = ACTIONS(1525), + [aux_sym_cmd_identifier_token35] = ACTIONS(1525), + [aux_sym_cmd_identifier_token36] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [aux_sym_cmd_identifier_token38] = ACTIONS(1525), + [aux_sym_cmd_identifier_token39] = ACTIONS(1537), + [aux_sym_cmd_identifier_token40] = ACTIONS(1537), + [anon_sym_def] = ACTIONS(1525), + [anon_sym_export_DASHenv] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym_module] = ACTIONS(1525), + [anon_sym_use] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_error] = ACTIONS(1525), + [anon_sym_list] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [anon_sym_loop] = ACTIONS(1525), + [anon_sym_make] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_catch] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_source] = ACTIONS(1525), + [anon_sym_source_DASHenv] = ACTIONS(1525), + [anon_sym_register] = ACTIONS(1525), + [anon_sym_hide] = ACTIONS(1525), + [anon_sym_hide_DASHenv] = ACTIONS(1525), + [anon_sym_overlay] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1537), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), + [aux_sym__val_number_token1] = ACTIONS(1537), + [aux_sym__val_number_token2] = ACTIONS(1537), + [aux_sym__val_number_token3] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1537), + [sym__str_single_quotes] = ACTIONS(1537), + [sym__str_back_ticks] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1525), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(247), }, [590] = { [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(1959), - [anon_sym_alias] = ACTIONS(1959), - [anon_sym_let] = ACTIONS(1959), - [anon_sym_let_DASHenv] = ACTIONS(1959), - [anon_sym_mut] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [aux_sym_cmd_identifier_token1] = ACTIONS(1959), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1959), - [aux_sym_cmd_identifier_token9] = ACTIONS(1959), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1959), - [aux_sym_cmd_identifier_token13] = ACTIONS(1959), - [aux_sym_cmd_identifier_token14] = ACTIONS(1959), - [aux_sym_cmd_identifier_token15] = ACTIONS(1959), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1959), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [anon_sym_null] = ACTIONS(1961), - [aux_sym_cmd_identifier_token38] = ACTIONS(1959), - [aux_sym_cmd_identifier_token39] = ACTIONS(1961), - [aux_sym_cmd_identifier_token40] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_export_DASHenv] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_module] = ACTIONS(1959), - [anon_sym_use] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_error] = ACTIONS(1959), - [anon_sym_list] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_in] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_make] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_source] = ACTIONS(1959), - [anon_sym_source_DASHenv] = ACTIONS(1959), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_hide_DASHenv] = ACTIONS(1959), - [anon_sym_overlay] = ACTIONS(1959), - [anon_sym_new] = ACTIONS(1959), - [anon_sym_as] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [anon_sym_DOT2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(3), - }, - [591] = { - [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_alias] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_let_DASHenv] = ACTIONS(2216), - [anon_sym_mut] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [aux_sym_cmd_identifier_token1] = ACTIONS(2216), - [aux_sym_cmd_identifier_token2] = ACTIONS(2216), - [aux_sym_cmd_identifier_token3] = ACTIONS(2216), - [aux_sym_cmd_identifier_token4] = ACTIONS(2216), - [aux_sym_cmd_identifier_token5] = ACTIONS(2216), - [aux_sym_cmd_identifier_token6] = ACTIONS(2216), - [aux_sym_cmd_identifier_token7] = ACTIONS(2216), - [aux_sym_cmd_identifier_token8] = ACTIONS(2216), - [aux_sym_cmd_identifier_token9] = ACTIONS(2216), - [aux_sym_cmd_identifier_token10] = ACTIONS(2216), - [aux_sym_cmd_identifier_token11] = ACTIONS(2216), - [aux_sym_cmd_identifier_token12] = ACTIONS(2216), - [aux_sym_cmd_identifier_token13] = ACTIONS(2216), - [aux_sym_cmd_identifier_token14] = ACTIONS(2216), - [aux_sym_cmd_identifier_token15] = ACTIONS(2216), - [aux_sym_cmd_identifier_token16] = ACTIONS(2216), - [aux_sym_cmd_identifier_token17] = ACTIONS(2216), - [aux_sym_cmd_identifier_token18] = ACTIONS(2216), - [aux_sym_cmd_identifier_token19] = ACTIONS(2216), - [aux_sym_cmd_identifier_token20] = ACTIONS(2216), - [aux_sym_cmd_identifier_token21] = ACTIONS(2216), - [aux_sym_cmd_identifier_token22] = ACTIONS(2216), - [aux_sym_cmd_identifier_token23] = ACTIONS(2216), - [aux_sym_cmd_identifier_token24] = ACTIONS(2216), - [aux_sym_cmd_identifier_token25] = ACTIONS(2216), - [aux_sym_cmd_identifier_token26] = ACTIONS(2216), - [aux_sym_cmd_identifier_token27] = ACTIONS(2216), - [aux_sym_cmd_identifier_token28] = ACTIONS(2216), - [aux_sym_cmd_identifier_token29] = ACTIONS(2216), - [aux_sym_cmd_identifier_token30] = ACTIONS(2216), - [aux_sym_cmd_identifier_token31] = ACTIONS(2216), - [aux_sym_cmd_identifier_token32] = ACTIONS(2216), - [aux_sym_cmd_identifier_token33] = ACTIONS(2216), - [aux_sym_cmd_identifier_token34] = ACTIONS(2216), - [aux_sym_cmd_identifier_token35] = ACTIONS(2216), - [aux_sym_cmd_identifier_token36] = ACTIONS(2216), - [anon_sym_true] = ACTIONS(2218), - [anon_sym_false] = ACTIONS(2218), - [anon_sym_null] = ACTIONS(2218), - [aux_sym_cmd_identifier_token38] = ACTIONS(2216), - [aux_sym_cmd_identifier_token39] = ACTIONS(2218), - [aux_sym_cmd_identifier_token40] = ACTIONS(2218), - [anon_sym_def] = ACTIONS(2216), - [anon_sym_export_DASHenv] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2218), - [anon_sym_error] = ACTIONS(2216), - [anon_sym_list] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_loop] = ACTIONS(2216), - [anon_sym_make] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_match] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_catch] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_source] = ACTIONS(2216), - [anon_sym_source_DASHenv] = ACTIONS(2216), - [anon_sym_register] = ACTIONS(2216), - [anon_sym_hide] = ACTIONS(2216), - [anon_sym_hide_DASHenv] = ACTIONS(2216), - [anon_sym_overlay] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), - [aux_sym__val_number_decimal_token1] = ACTIONS(2216), - [aux_sym__val_number_decimal_token2] = ACTIONS(2218), - [anon_sym_DOT2] = ACTIONS(2216), - [aux_sym__val_number_decimal_token3] = ACTIONS(2218), - [aux_sym__val_number_token1] = ACTIONS(2218), - [aux_sym__val_number_token2] = ACTIONS(2218), - [aux_sym__val_number_token3] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(3), - }, - [592] = { - [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [aux_sym_cmd_identifier_token1] = ACTIONS(1863), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1863), - [aux_sym_cmd_identifier_token9] = ACTIONS(1863), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1863), - [aux_sym_cmd_identifier_token13] = ACTIONS(1863), - [aux_sym_cmd_identifier_token14] = ACTIONS(1863), - [aux_sym_cmd_identifier_token15] = ACTIONS(1863), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1863), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [aux_sym_cmd_identifier_token38] = ACTIONS(1863), - [aux_sym_cmd_identifier_token39] = ACTIONS(1869), - [aux_sym_cmd_identifier_token40] = ACTIONS(1869), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_list] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_in] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_make] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_catch] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [anon_sym_DOT2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(3), - }, - [593] = { - [sym_comment] = STATE(593), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_alias] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_let_DASHenv] = ACTIONS(2192), - [anon_sym_mut] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [aux_sym_cmd_identifier_token1] = ACTIONS(2192), - [aux_sym_cmd_identifier_token2] = ACTIONS(2192), - [aux_sym_cmd_identifier_token3] = ACTIONS(2192), - [aux_sym_cmd_identifier_token4] = ACTIONS(2192), - [aux_sym_cmd_identifier_token5] = ACTIONS(2192), - [aux_sym_cmd_identifier_token6] = ACTIONS(2192), - [aux_sym_cmd_identifier_token7] = ACTIONS(2192), - [aux_sym_cmd_identifier_token8] = ACTIONS(2192), - [aux_sym_cmd_identifier_token9] = ACTIONS(2192), - [aux_sym_cmd_identifier_token10] = ACTIONS(2192), - [aux_sym_cmd_identifier_token11] = ACTIONS(2192), - [aux_sym_cmd_identifier_token12] = ACTIONS(2192), - [aux_sym_cmd_identifier_token13] = ACTIONS(2192), - [aux_sym_cmd_identifier_token14] = ACTIONS(2192), - [aux_sym_cmd_identifier_token15] = ACTIONS(2192), - [aux_sym_cmd_identifier_token16] = ACTIONS(2192), - [aux_sym_cmd_identifier_token17] = ACTIONS(2192), - [aux_sym_cmd_identifier_token18] = ACTIONS(2192), - [aux_sym_cmd_identifier_token19] = ACTIONS(2192), - [aux_sym_cmd_identifier_token20] = ACTIONS(2192), - [aux_sym_cmd_identifier_token21] = ACTIONS(2192), - [aux_sym_cmd_identifier_token22] = ACTIONS(2192), - [aux_sym_cmd_identifier_token23] = ACTIONS(2192), - [aux_sym_cmd_identifier_token24] = ACTIONS(2192), - [aux_sym_cmd_identifier_token25] = ACTIONS(2192), - [aux_sym_cmd_identifier_token26] = ACTIONS(2192), - [aux_sym_cmd_identifier_token27] = ACTIONS(2192), - [aux_sym_cmd_identifier_token28] = ACTIONS(2192), - [aux_sym_cmd_identifier_token29] = ACTIONS(2192), - [aux_sym_cmd_identifier_token30] = ACTIONS(2192), - [aux_sym_cmd_identifier_token31] = ACTIONS(2192), - [aux_sym_cmd_identifier_token32] = ACTIONS(2192), - [aux_sym_cmd_identifier_token33] = ACTIONS(2192), - [aux_sym_cmd_identifier_token34] = ACTIONS(2192), - [aux_sym_cmd_identifier_token35] = ACTIONS(2192), - [aux_sym_cmd_identifier_token36] = ACTIONS(2192), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2398), - [aux_sym_cmd_identifier_token38] = ACTIONS(2192), - [aux_sym_cmd_identifier_token39] = ACTIONS(2398), - [aux_sym_cmd_identifier_token40] = ACTIONS(2398), - [anon_sym_def] = ACTIONS(2192), - [anon_sym_export_DASHenv] = ACTIONS(2192), - [anon_sym_extern] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_use] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [anon_sym_error] = ACTIONS(2192), - [anon_sym_list] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_in] = ACTIONS(2192), - [anon_sym_loop] = ACTIONS(2192), - [anon_sym_make] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_else] = ACTIONS(2192), - [anon_sym_match] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2192), - [anon_sym_catch] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_source] = ACTIONS(2192), - [anon_sym_source_DASHenv] = ACTIONS(2192), - [anon_sym_register] = ACTIONS(2192), - [anon_sym_hide] = ACTIONS(2192), - [anon_sym_hide_DASHenv] = ACTIONS(2192), - [anon_sym_overlay] = ACTIONS(2192), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_as] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2398), - [aux_sym__val_number_decimal_token1] = ACTIONS(2192), - [aux_sym__val_number_decimal_token2] = ACTIONS(2398), - [anon_sym_DOT2] = ACTIONS(2192), - [aux_sym__val_number_decimal_token3] = ACTIONS(2398), - [aux_sym__val_number_token1] = ACTIONS(2398), - [aux_sym__val_number_token2] = ACTIONS(2398), - [aux_sym__val_number_token3] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [sym__str_single_quotes] = ACTIONS(2398), - [sym__str_back_ticks] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(3), - }, - [594] = { - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_alias] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_let_DASHenv] = ACTIONS(2184), - [anon_sym_mut] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [aux_sym_cmd_identifier_token1] = ACTIONS(2184), - [aux_sym_cmd_identifier_token2] = ACTIONS(2184), - [aux_sym_cmd_identifier_token3] = ACTIONS(2184), - [aux_sym_cmd_identifier_token4] = ACTIONS(2184), - [aux_sym_cmd_identifier_token5] = ACTIONS(2184), - [aux_sym_cmd_identifier_token6] = ACTIONS(2184), - [aux_sym_cmd_identifier_token7] = ACTIONS(2184), - [aux_sym_cmd_identifier_token8] = ACTIONS(2184), - [aux_sym_cmd_identifier_token9] = ACTIONS(2184), - [aux_sym_cmd_identifier_token10] = ACTIONS(2184), - [aux_sym_cmd_identifier_token11] = ACTIONS(2184), - [aux_sym_cmd_identifier_token12] = ACTIONS(2184), - [aux_sym_cmd_identifier_token13] = ACTIONS(2184), - [aux_sym_cmd_identifier_token14] = ACTIONS(2184), - [aux_sym_cmd_identifier_token15] = ACTIONS(2184), - [aux_sym_cmd_identifier_token16] = ACTIONS(2184), - [aux_sym_cmd_identifier_token17] = ACTIONS(2184), - [aux_sym_cmd_identifier_token18] = ACTIONS(2184), - [aux_sym_cmd_identifier_token19] = ACTIONS(2184), - [aux_sym_cmd_identifier_token20] = ACTIONS(2184), - [aux_sym_cmd_identifier_token21] = ACTIONS(2184), - [aux_sym_cmd_identifier_token22] = ACTIONS(2184), - [aux_sym_cmd_identifier_token23] = ACTIONS(2184), - [aux_sym_cmd_identifier_token24] = ACTIONS(2184), - [aux_sym_cmd_identifier_token25] = ACTIONS(2184), - [aux_sym_cmd_identifier_token26] = ACTIONS(2184), - [aux_sym_cmd_identifier_token27] = ACTIONS(2184), - [aux_sym_cmd_identifier_token28] = ACTIONS(2184), - [aux_sym_cmd_identifier_token29] = ACTIONS(2184), - [aux_sym_cmd_identifier_token30] = ACTIONS(2184), - [aux_sym_cmd_identifier_token31] = ACTIONS(2184), - [aux_sym_cmd_identifier_token32] = ACTIONS(2184), - [aux_sym_cmd_identifier_token33] = ACTIONS(2184), - [aux_sym_cmd_identifier_token34] = ACTIONS(2184), - [aux_sym_cmd_identifier_token35] = ACTIONS(2184), - [aux_sym_cmd_identifier_token36] = ACTIONS(2184), - [anon_sym_true] = ACTIONS(2186), - [anon_sym_false] = ACTIONS(2186), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token38] = ACTIONS(2184), - [aux_sym_cmd_identifier_token39] = ACTIONS(2186), - [aux_sym_cmd_identifier_token40] = ACTIONS(2186), - [anon_sym_def] = ACTIONS(2184), - [anon_sym_export_DASHenv] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_use] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2186), - [anon_sym_error] = ACTIONS(2184), - [anon_sym_list] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_loop] = ACTIONS(2184), - [anon_sym_make] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_catch] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_source] = ACTIONS(2184), - [anon_sym_source_DASHenv] = ACTIONS(2184), - [anon_sym_register] = ACTIONS(2184), - [anon_sym_hide] = ACTIONS(2184), - [anon_sym_hide_DASHenv] = ACTIONS(2184), - [anon_sym_overlay] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2186), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2186), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [anon_sym_DOT2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(2186), - [aux_sym__val_number_token2] = ACTIONS(2186), - [aux_sym__val_number_token3] = ACTIONS(2186), - [anon_sym_DQUOTE] = ACTIONS(2186), - [sym__str_single_quotes] = ACTIONS(2186), - [sym__str_back_ticks] = ACTIONS(2186), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(3), - }, - [595] = { - [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_alias] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_let_DASHenv] = ACTIONS(2200), - [anon_sym_mut] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [aux_sym_cmd_identifier_token1] = ACTIONS(2200), - [aux_sym_cmd_identifier_token2] = ACTIONS(2200), - [aux_sym_cmd_identifier_token3] = ACTIONS(2200), - [aux_sym_cmd_identifier_token4] = ACTIONS(2200), - [aux_sym_cmd_identifier_token5] = ACTIONS(2200), - [aux_sym_cmd_identifier_token6] = ACTIONS(2200), - [aux_sym_cmd_identifier_token7] = ACTIONS(2200), - [aux_sym_cmd_identifier_token8] = ACTIONS(2200), - [aux_sym_cmd_identifier_token9] = ACTIONS(2200), - [aux_sym_cmd_identifier_token10] = ACTIONS(2200), - [aux_sym_cmd_identifier_token11] = ACTIONS(2200), - [aux_sym_cmd_identifier_token12] = ACTIONS(2200), - [aux_sym_cmd_identifier_token13] = ACTIONS(2200), - [aux_sym_cmd_identifier_token14] = ACTIONS(2200), - [aux_sym_cmd_identifier_token15] = ACTIONS(2200), - [aux_sym_cmd_identifier_token16] = ACTIONS(2200), - [aux_sym_cmd_identifier_token17] = ACTIONS(2200), - [aux_sym_cmd_identifier_token18] = ACTIONS(2200), - [aux_sym_cmd_identifier_token19] = ACTIONS(2200), - [aux_sym_cmd_identifier_token20] = ACTIONS(2200), - [aux_sym_cmd_identifier_token21] = ACTIONS(2200), - [aux_sym_cmd_identifier_token22] = ACTIONS(2200), - [aux_sym_cmd_identifier_token23] = ACTIONS(2200), - [aux_sym_cmd_identifier_token24] = ACTIONS(2200), - [aux_sym_cmd_identifier_token25] = ACTIONS(2200), - [aux_sym_cmd_identifier_token26] = ACTIONS(2200), - [aux_sym_cmd_identifier_token27] = ACTIONS(2200), - [aux_sym_cmd_identifier_token28] = ACTIONS(2200), - [aux_sym_cmd_identifier_token29] = ACTIONS(2200), - [aux_sym_cmd_identifier_token30] = ACTIONS(2200), - [aux_sym_cmd_identifier_token31] = ACTIONS(2200), - [aux_sym_cmd_identifier_token32] = ACTIONS(2200), - [aux_sym_cmd_identifier_token33] = ACTIONS(2200), - [aux_sym_cmd_identifier_token34] = ACTIONS(2200), - [aux_sym_cmd_identifier_token35] = ACTIONS(2200), - [aux_sym_cmd_identifier_token36] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [anon_sym_null] = ACTIONS(2202), - [aux_sym_cmd_identifier_token38] = ACTIONS(2200), - [aux_sym_cmd_identifier_token39] = ACTIONS(2202), - [aux_sym_cmd_identifier_token40] = ACTIONS(2202), - [anon_sym_def] = ACTIONS(2200), - [anon_sym_export_DASHenv] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_error] = ACTIONS(2200), - [anon_sym_list] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_make] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_catch] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_source] = ACTIONS(2200), - [anon_sym_source_DASHenv] = ACTIONS(2200), - [anon_sym_register] = ACTIONS(2200), - [anon_sym_hide] = ACTIONS(2200), - [anon_sym_hide_DASHenv] = ACTIONS(2200), - [anon_sym_overlay] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2202), - [aux_sym__val_number_decimal_token1] = ACTIONS(2200), - [aux_sym__val_number_decimal_token2] = ACTIONS(2202), - [anon_sym_DOT2] = ACTIONS(2200), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2202), - [sym__str_single_quotes] = ACTIONS(2202), - [sym__str_back_ticks] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(3), - }, - [596] = { - [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1871), - [aux_sym_cmd_identifier_token3] = ACTIONS(1871), - [aux_sym_cmd_identifier_token4] = ACTIONS(1871), - [aux_sym_cmd_identifier_token5] = ACTIONS(1871), - [aux_sym_cmd_identifier_token6] = ACTIONS(1871), - [aux_sym_cmd_identifier_token7] = ACTIONS(1871), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1871), - [aux_sym_cmd_identifier_token11] = ACTIONS(1871), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1871), - [aux_sym_cmd_identifier_token17] = ACTIONS(1871), - [aux_sym_cmd_identifier_token18] = ACTIONS(1871), - [aux_sym_cmd_identifier_token19] = ACTIONS(1871), - [aux_sym_cmd_identifier_token20] = ACTIONS(1871), - [aux_sym_cmd_identifier_token21] = ACTIONS(1871), - [aux_sym_cmd_identifier_token22] = ACTIONS(1871), - [aux_sym_cmd_identifier_token23] = ACTIONS(1871), - [aux_sym_cmd_identifier_token24] = ACTIONS(1871), - [aux_sym_cmd_identifier_token25] = ACTIONS(1871), - [aux_sym_cmd_identifier_token26] = ACTIONS(1871), - [aux_sym_cmd_identifier_token27] = ACTIONS(1871), - [aux_sym_cmd_identifier_token28] = ACTIONS(1871), - [aux_sym_cmd_identifier_token29] = ACTIONS(1871), - [aux_sym_cmd_identifier_token30] = ACTIONS(1871), - [aux_sym_cmd_identifier_token31] = ACTIONS(1871), - [aux_sym_cmd_identifier_token32] = ACTIONS(1871), - [aux_sym_cmd_identifier_token33] = ACTIONS(1871), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1871), - [aux_sym_cmd_identifier_token36] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1877), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_list] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [anon_sym_DOT2] = ACTIONS(1871), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), + [anon_sym_export] = ACTIONS(1953), + [anon_sym_alias] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_let_DASHenv] = ACTIONS(1953), + [anon_sym_mut] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [aux_sym_cmd_identifier_token1] = ACTIONS(1953), + [aux_sym_cmd_identifier_token2] = ACTIONS(1953), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [aux_sym_cmd_identifier_token6] = ACTIONS(1953), + [aux_sym_cmd_identifier_token7] = ACTIONS(1953), + [aux_sym_cmd_identifier_token8] = ACTIONS(1953), + [aux_sym_cmd_identifier_token9] = ACTIONS(1953), + [aux_sym_cmd_identifier_token10] = ACTIONS(1953), + [aux_sym_cmd_identifier_token11] = ACTIONS(1953), + [aux_sym_cmd_identifier_token12] = ACTIONS(1953), + [aux_sym_cmd_identifier_token13] = ACTIONS(1953), + [aux_sym_cmd_identifier_token14] = ACTIONS(1953), + [aux_sym_cmd_identifier_token15] = ACTIONS(1953), + [aux_sym_cmd_identifier_token16] = ACTIONS(1953), + [aux_sym_cmd_identifier_token17] = ACTIONS(1953), + [aux_sym_cmd_identifier_token18] = ACTIONS(1953), + [aux_sym_cmd_identifier_token19] = ACTIONS(1953), + [aux_sym_cmd_identifier_token20] = ACTIONS(1953), + [aux_sym_cmd_identifier_token21] = ACTIONS(1953), + [aux_sym_cmd_identifier_token22] = ACTIONS(1953), + [aux_sym_cmd_identifier_token23] = ACTIONS(1953), + [aux_sym_cmd_identifier_token24] = ACTIONS(1953), + [aux_sym_cmd_identifier_token25] = ACTIONS(1953), + [aux_sym_cmd_identifier_token26] = ACTIONS(1953), + [aux_sym_cmd_identifier_token27] = ACTIONS(1953), + [aux_sym_cmd_identifier_token28] = ACTIONS(1953), + [aux_sym_cmd_identifier_token29] = ACTIONS(1953), + [aux_sym_cmd_identifier_token30] = ACTIONS(1953), + [aux_sym_cmd_identifier_token31] = ACTIONS(1953), + [aux_sym_cmd_identifier_token32] = ACTIONS(1953), + [aux_sym_cmd_identifier_token33] = ACTIONS(1953), + [aux_sym_cmd_identifier_token34] = ACTIONS(1953), + [aux_sym_cmd_identifier_token35] = ACTIONS(1953), + [aux_sym_cmd_identifier_token36] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1953), + [aux_sym_cmd_identifier_token38] = ACTIONS(1953), + [aux_sym_cmd_identifier_token39] = ACTIONS(1953), + [aux_sym_cmd_identifier_token40] = ACTIONS(1953), + [anon_sym_def] = ACTIONS(1953), + [anon_sym_export_DASHenv] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_module] = ACTIONS(1953), + [anon_sym_use] = ACTIONS(1953), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_DOLLAR] = ACTIONS(1953), + [anon_sym_error] = ACTIONS(1953), + [anon_sym_list] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_in] = ACTIONS(1953), + [anon_sym_loop] = ACTIONS(1953), + [anon_sym_make] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_source] = ACTIONS(1953), + [anon_sym_source_DASHenv] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_hide] = ACTIONS(1953), + [anon_sym_hide_DASHenv] = ACTIONS(1953), + [anon_sym_overlay] = ACTIONS(1953), + [anon_sym_new] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1953), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1953), + [aux_sym__val_number_decimal_token2] = ACTIONS(1953), + [aux_sym__val_number_decimal_token3] = ACTIONS(1953), + [aux_sym__val_number_decimal_token4] = ACTIONS(1953), + [aux_sym__val_number_token1] = ACTIONS(1953), + [aux_sym__val_number_token2] = ACTIONS(1953), + [aux_sym__val_number_token3] = ACTIONS(1953), + [anon_sym_DQUOTE] = ACTIONS(1953), + [sym__str_single_quotes] = ACTIONS(1953), + [sym__str_back_ticks] = ACTIONS(1953), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1953), + [sym__entry_separator] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(3), + }, + [591] = { + [sym_comment] = STATE(591), + [anon_sym_export] = ACTIONS(1943), + [anon_sym_alias] = ACTIONS(1943), + [anon_sym_let] = ACTIONS(1943), + [anon_sym_let_DASHenv] = ACTIONS(1943), + [anon_sym_mut] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [aux_sym_cmd_identifier_token1] = ACTIONS(1943), + [aux_sym_cmd_identifier_token2] = ACTIONS(1943), + [aux_sym_cmd_identifier_token3] = ACTIONS(1943), + [aux_sym_cmd_identifier_token4] = ACTIONS(1943), + [aux_sym_cmd_identifier_token5] = ACTIONS(1943), + [aux_sym_cmd_identifier_token6] = ACTIONS(1943), + [aux_sym_cmd_identifier_token7] = ACTIONS(1943), + [aux_sym_cmd_identifier_token8] = ACTIONS(1943), + [aux_sym_cmd_identifier_token9] = ACTIONS(1943), + [aux_sym_cmd_identifier_token10] = ACTIONS(1943), + [aux_sym_cmd_identifier_token11] = ACTIONS(1943), + [aux_sym_cmd_identifier_token12] = ACTIONS(1943), + [aux_sym_cmd_identifier_token13] = ACTIONS(1943), + [aux_sym_cmd_identifier_token14] = ACTIONS(1943), + [aux_sym_cmd_identifier_token15] = ACTIONS(1943), + [aux_sym_cmd_identifier_token16] = ACTIONS(1943), + [aux_sym_cmd_identifier_token17] = ACTIONS(1943), + [aux_sym_cmd_identifier_token18] = ACTIONS(1943), + [aux_sym_cmd_identifier_token19] = ACTIONS(1943), + [aux_sym_cmd_identifier_token20] = ACTIONS(1943), + [aux_sym_cmd_identifier_token21] = ACTIONS(1943), + [aux_sym_cmd_identifier_token22] = ACTIONS(1943), + [aux_sym_cmd_identifier_token23] = ACTIONS(1943), + [aux_sym_cmd_identifier_token24] = ACTIONS(1943), + [aux_sym_cmd_identifier_token25] = ACTIONS(1943), + [aux_sym_cmd_identifier_token26] = ACTIONS(1943), + [aux_sym_cmd_identifier_token27] = ACTIONS(1943), + [aux_sym_cmd_identifier_token28] = ACTIONS(1943), + [aux_sym_cmd_identifier_token29] = ACTIONS(1943), + [aux_sym_cmd_identifier_token30] = ACTIONS(1943), + [aux_sym_cmd_identifier_token31] = ACTIONS(1943), + [aux_sym_cmd_identifier_token32] = ACTIONS(1943), + [aux_sym_cmd_identifier_token33] = ACTIONS(1943), + [aux_sym_cmd_identifier_token34] = ACTIONS(1943), + [aux_sym_cmd_identifier_token35] = ACTIONS(1943), + [aux_sym_cmd_identifier_token36] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1943), + [anon_sym_false] = ACTIONS(1943), + [anon_sym_null] = ACTIONS(1943), + [aux_sym_cmd_identifier_token38] = ACTIONS(1943), + [aux_sym_cmd_identifier_token39] = ACTIONS(1943), + [aux_sym_cmd_identifier_token40] = ACTIONS(1943), + [anon_sym_def] = ACTIONS(1943), + [anon_sym_export_DASHenv] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym_module] = ACTIONS(1943), + [anon_sym_use] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_DOLLAR] = ACTIONS(1943), + [anon_sym_error] = ACTIONS(1943), + [anon_sym_list] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(1943), + [anon_sym_loop] = ACTIONS(1943), + [anon_sym_make] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_else] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_source] = ACTIONS(1943), + [anon_sym_source_DASHenv] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_hide] = ACTIONS(1943), + [anon_sym_hide_DASHenv] = ACTIONS(1943), + [anon_sym_overlay] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_as] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1943), + [aux_sym__val_number_decimal_token3] = ACTIONS(1943), + [aux_sym__val_number_decimal_token4] = ACTIONS(1943), + [aux_sym__val_number_token1] = ACTIONS(1943), + [aux_sym__val_number_token2] = ACTIONS(1943), + [aux_sym__val_number_token3] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym__str_single_quotes] = ACTIONS(1943), + [sym__str_back_ticks] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), + [sym__entry_separator] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(3), + }, + [592] = { + [sym_comment] = STATE(592), + [anon_sym_export] = ACTIONS(2267), + [anon_sym_alias] = ACTIONS(2267), + [anon_sym_let] = ACTIONS(2267), + [anon_sym_let_DASHenv] = ACTIONS(2267), + [anon_sym_mut] = ACTIONS(2267), + [anon_sym_const] = ACTIONS(2267), + [aux_sym_cmd_identifier_token1] = ACTIONS(2267), + [aux_sym_cmd_identifier_token2] = ACTIONS(2267), + [aux_sym_cmd_identifier_token3] = ACTIONS(2267), + [aux_sym_cmd_identifier_token4] = ACTIONS(2267), + [aux_sym_cmd_identifier_token5] = ACTIONS(2267), + [aux_sym_cmd_identifier_token6] = ACTIONS(2267), + [aux_sym_cmd_identifier_token7] = ACTIONS(2267), + [aux_sym_cmd_identifier_token8] = ACTIONS(2267), + [aux_sym_cmd_identifier_token9] = ACTIONS(2267), + [aux_sym_cmd_identifier_token10] = ACTIONS(2267), + [aux_sym_cmd_identifier_token11] = ACTIONS(2267), + [aux_sym_cmd_identifier_token12] = ACTIONS(2267), + [aux_sym_cmd_identifier_token13] = ACTIONS(2267), + [aux_sym_cmd_identifier_token14] = ACTIONS(2267), + [aux_sym_cmd_identifier_token15] = ACTIONS(2267), + [aux_sym_cmd_identifier_token16] = ACTIONS(2267), + [aux_sym_cmd_identifier_token17] = ACTIONS(2267), + [aux_sym_cmd_identifier_token18] = ACTIONS(2267), + [aux_sym_cmd_identifier_token19] = ACTIONS(2267), + [aux_sym_cmd_identifier_token20] = ACTIONS(2267), + [aux_sym_cmd_identifier_token21] = ACTIONS(2267), + [aux_sym_cmd_identifier_token22] = ACTIONS(2267), + [aux_sym_cmd_identifier_token23] = ACTIONS(2267), + [aux_sym_cmd_identifier_token24] = ACTIONS(2267), + [aux_sym_cmd_identifier_token25] = ACTIONS(2267), + [aux_sym_cmd_identifier_token26] = ACTIONS(2267), + [aux_sym_cmd_identifier_token27] = ACTIONS(2267), + [aux_sym_cmd_identifier_token28] = ACTIONS(2267), + [aux_sym_cmd_identifier_token29] = ACTIONS(2267), + [aux_sym_cmd_identifier_token30] = ACTIONS(2267), + [aux_sym_cmd_identifier_token31] = ACTIONS(2267), + [aux_sym_cmd_identifier_token32] = ACTIONS(2267), + [aux_sym_cmd_identifier_token33] = ACTIONS(2267), + [aux_sym_cmd_identifier_token34] = ACTIONS(2267), + [aux_sym_cmd_identifier_token35] = ACTIONS(2267), + [aux_sym_cmd_identifier_token36] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_null] = ACTIONS(2269), + [aux_sym_cmd_identifier_token38] = ACTIONS(2267), + [aux_sym_cmd_identifier_token39] = ACTIONS(2269), + [aux_sym_cmd_identifier_token40] = ACTIONS(2269), + [anon_sym_def] = ACTIONS(2267), + [anon_sym_export_DASHenv] = ACTIONS(2267), + [anon_sym_extern] = ACTIONS(2267), + [anon_sym_module] = ACTIONS(2267), + [anon_sym_use] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(2269), + [anon_sym_error] = ACTIONS(2267), + [anon_sym_list] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2267), + [anon_sym_break] = ACTIONS(2267), + [anon_sym_continue] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_in] = ACTIONS(2267), + [anon_sym_loop] = ACTIONS(2267), + [anon_sym_make] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [anon_sym_do] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_else] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2267), + [anon_sym_catch] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_source] = ACTIONS(2267), + [anon_sym_source_DASHenv] = ACTIONS(2267), + [anon_sym_register] = ACTIONS(2267), + [anon_sym_hide] = ACTIONS(2267), + [anon_sym_hide_DASHenv] = ACTIONS(2267), + [anon_sym_overlay] = ACTIONS(2267), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2267), + [anon_sym_LPAREN2] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2269), + [aux_sym__val_number_decimal_token1] = ACTIONS(2267), + [aux_sym__val_number_decimal_token2] = ACTIONS(2269), + [aux_sym__val_number_decimal_token3] = ACTIONS(2269), + [aux_sym__val_number_decimal_token4] = ACTIONS(2269), + [aux_sym__val_number_token1] = ACTIONS(2269), + [aux_sym__val_number_token2] = ACTIONS(2269), + [aux_sym__val_number_token3] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2269), + [sym__str_single_quotes] = ACTIONS(2269), + [sym__str_back_ticks] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2267), + [anon_sym_POUND] = ACTIONS(247), + }, + [593] = { + [sym_comment] = STATE(593), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_alias] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_let_DASHenv] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [aux_sym_cmd_identifier_token1] = ACTIONS(2445), + [aux_sym_cmd_identifier_token2] = ACTIONS(2445), + [aux_sym_cmd_identifier_token3] = ACTIONS(2445), + [aux_sym_cmd_identifier_token4] = ACTIONS(2445), + [aux_sym_cmd_identifier_token5] = ACTIONS(2445), + [aux_sym_cmd_identifier_token6] = ACTIONS(2445), + [aux_sym_cmd_identifier_token7] = ACTIONS(2445), + [aux_sym_cmd_identifier_token8] = ACTIONS(2445), + [aux_sym_cmd_identifier_token9] = ACTIONS(2445), + [aux_sym_cmd_identifier_token10] = ACTIONS(2445), + [aux_sym_cmd_identifier_token11] = ACTIONS(2445), + [aux_sym_cmd_identifier_token12] = ACTIONS(2445), + [aux_sym_cmd_identifier_token13] = ACTIONS(2445), + [aux_sym_cmd_identifier_token14] = ACTIONS(2445), + [aux_sym_cmd_identifier_token15] = ACTIONS(2445), + [aux_sym_cmd_identifier_token16] = ACTIONS(2445), + [aux_sym_cmd_identifier_token17] = ACTIONS(2445), + [aux_sym_cmd_identifier_token18] = ACTIONS(2445), + [aux_sym_cmd_identifier_token19] = ACTIONS(2445), + [aux_sym_cmd_identifier_token20] = ACTIONS(2445), + [aux_sym_cmd_identifier_token21] = ACTIONS(2445), + [aux_sym_cmd_identifier_token22] = ACTIONS(2445), + [aux_sym_cmd_identifier_token23] = ACTIONS(2445), + [aux_sym_cmd_identifier_token24] = ACTIONS(2445), + [aux_sym_cmd_identifier_token25] = ACTIONS(2445), + [aux_sym_cmd_identifier_token26] = ACTIONS(2445), + [aux_sym_cmd_identifier_token27] = ACTIONS(2445), + [aux_sym_cmd_identifier_token28] = ACTIONS(2445), + [aux_sym_cmd_identifier_token29] = ACTIONS(2445), + [aux_sym_cmd_identifier_token30] = ACTIONS(2445), + [aux_sym_cmd_identifier_token31] = ACTIONS(2445), + [aux_sym_cmd_identifier_token32] = ACTIONS(2445), + [aux_sym_cmd_identifier_token33] = ACTIONS(2445), + [aux_sym_cmd_identifier_token34] = ACTIONS(2445), + [aux_sym_cmd_identifier_token35] = ACTIONS(2445), + [aux_sym_cmd_identifier_token36] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [anon_sym_null] = ACTIONS(2445), + [aux_sym_cmd_identifier_token38] = ACTIONS(2445), + [aux_sym_cmd_identifier_token39] = ACTIONS(2445), + [aux_sym_cmd_identifier_token40] = ACTIONS(2445), + [anon_sym_def] = ACTIONS(2445), + [anon_sym_export_DASHenv] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_DOLLAR] = ACTIONS(2445), + [anon_sym_error] = ACTIONS(2445), + [anon_sym_list] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_make] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_catch] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_source] = ACTIONS(2445), + [anon_sym_source_DASHenv] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_hide] = ACTIONS(2445), + [anon_sym_hide_DASHenv] = ACTIONS(2445), + [anon_sym_overlay] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2445), + [aux_sym__val_number_decimal_token1] = ACTIONS(2445), + [aux_sym__val_number_decimal_token2] = ACTIONS(2445), + [aux_sym__val_number_decimal_token3] = ACTIONS(2445), + [aux_sym__val_number_decimal_token4] = ACTIONS(2445), + [aux_sym__val_number_token1] = ACTIONS(2445), + [aux_sym__val_number_token2] = ACTIONS(2445), + [aux_sym__val_number_token3] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [sym__str_single_quotes] = ACTIONS(2445), + [sym__str_back_ticks] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2445), + [sym__entry_separator] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(3), + }, + [594] = { + [sym_comment] = STATE(594), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [sym__entry_separator] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(3), }, + [595] = { + [sym_comment] = STATE(595), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(962), + [anon_sym_list] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_new] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), + }, + [596] = { + [sym_comment] = STATE(596), + [anon_sym_export] = ACTIONS(2397), + [anon_sym_alias] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_let_DASHenv] = ACTIONS(2397), + [anon_sym_mut] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [aux_sym_cmd_identifier_token1] = ACTIONS(2397), + [aux_sym_cmd_identifier_token2] = ACTIONS(2397), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [aux_sym_cmd_identifier_token6] = ACTIONS(2397), + [aux_sym_cmd_identifier_token7] = ACTIONS(2397), + [aux_sym_cmd_identifier_token8] = ACTIONS(2397), + [aux_sym_cmd_identifier_token9] = ACTIONS(2397), + [aux_sym_cmd_identifier_token10] = ACTIONS(2397), + [aux_sym_cmd_identifier_token11] = ACTIONS(2397), + [aux_sym_cmd_identifier_token12] = ACTIONS(2397), + [aux_sym_cmd_identifier_token13] = ACTIONS(2397), + [aux_sym_cmd_identifier_token14] = ACTIONS(2397), + [aux_sym_cmd_identifier_token15] = ACTIONS(2397), + [aux_sym_cmd_identifier_token16] = ACTIONS(2397), + [aux_sym_cmd_identifier_token17] = ACTIONS(2397), + [aux_sym_cmd_identifier_token18] = ACTIONS(2397), + [aux_sym_cmd_identifier_token19] = ACTIONS(2397), + [aux_sym_cmd_identifier_token20] = ACTIONS(2397), + [aux_sym_cmd_identifier_token21] = ACTIONS(2397), + [aux_sym_cmd_identifier_token22] = ACTIONS(2397), + [aux_sym_cmd_identifier_token23] = ACTIONS(2397), + [aux_sym_cmd_identifier_token24] = ACTIONS(2397), + [aux_sym_cmd_identifier_token25] = ACTIONS(2397), + [aux_sym_cmd_identifier_token26] = ACTIONS(2397), + [aux_sym_cmd_identifier_token27] = ACTIONS(2397), + [aux_sym_cmd_identifier_token28] = ACTIONS(2397), + [aux_sym_cmd_identifier_token29] = ACTIONS(2397), + [aux_sym_cmd_identifier_token30] = ACTIONS(2397), + [aux_sym_cmd_identifier_token31] = ACTIONS(2397), + [aux_sym_cmd_identifier_token32] = ACTIONS(2397), + [aux_sym_cmd_identifier_token33] = ACTIONS(2397), + [aux_sym_cmd_identifier_token34] = ACTIONS(2397), + [aux_sym_cmd_identifier_token35] = ACTIONS(2397), + [aux_sym_cmd_identifier_token36] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2399), + [aux_sym_cmd_identifier_token38] = ACTIONS(2397), + [aux_sym_cmd_identifier_token39] = ACTIONS(2399), + [aux_sym_cmd_identifier_token40] = ACTIONS(2399), + [anon_sym_def] = ACTIONS(2397), + [anon_sym_export_DASHenv] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_module] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_error] = ACTIONS(2397), + [anon_sym_list] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_make] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2397), + [anon_sym_catch] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_source] = ACTIONS(2397), + [anon_sym_source_DASHenv] = ACTIONS(2397), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_hide] = ACTIONS(2397), + [anon_sym_hide_DASHenv] = ACTIONS(2397), + [anon_sym_overlay] = ACTIONS(2397), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2399), + [aux_sym__val_number_decimal_token1] = ACTIONS(2397), + [aux_sym__val_number_decimal_token2] = ACTIONS(2399), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), + [aux_sym__val_number_token1] = ACTIONS(2399), + [aux_sym__val_number_token2] = ACTIONS(2399), + [aux_sym__val_number_token3] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym__str_single_quotes] = ACTIONS(2399), + [sym__str_back_ticks] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(247), + }, [597] = { [sym_comment] = STATE(597), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_alias] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_let_DASHenv] = ACTIONS(2208), - [anon_sym_mut] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [aux_sym_cmd_identifier_token1] = ACTIONS(2208), - [aux_sym_cmd_identifier_token2] = ACTIONS(2208), - [aux_sym_cmd_identifier_token3] = ACTIONS(2208), - [aux_sym_cmd_identifier_token4] = ACTIONS(2208), - [aux_sym_cmd_identifier_token5] = ACTIONS(2208), - [aux_sym_cmd_identifier_token6] = ACTIONS(2208), - [aux_sym_cmd_identifier_token7] = ACTIONS(2208), - [aux_sym_cmd_identifier_token8] = ACTIONS(2208), - [aux_sym_cmd_identifier_token9] = ACTIONS(2208), - [aux_sym_cmd_identifier_token10] = ACTIONS(2208), - [aux_sym_cmd_identifier_token11] = ACTIONS(2208), - [aux_sym_cmd_identifier_token12] = ACTIONS(2208), - [aux_sym_cmd_identifier_token13] = ACTIONS(2208), - [aux_sym_cmd_identifier_token14] = ACTIONS(2208), - [aux_sym_cmd_identifier_token15] = ACTIONS(2208), - [aux_sym_cmd_identifier_token16] = ACTIONS(2208), - [aux_sym_cmd_identifier_token17] = ACTIONS(2208), - [aux_sym_cmd_identifier_token18] = ACTIONS(2208), - [aux_sym_cmd_identifier_token19] = ACTIONS(2208), - [aux_sym_cmd_identifier_token20] = ACTIONS(2208), - [aux_sym_cmd_identifier_token21] = ACTIONS(2208), - [aux_sym_cmd_identifier_token22] = ACTIONS(2208), - [aux_sym_cmd_identifier_token23] = ACTIONS(2208), - [aux_sym_cmd_identifier_token24] = ACTIONS(2208), - [aux_sym_cmd_identifier_token25] = ACTIONS(2208), - [aux_sym_cmd_identifier_token26] = ACTIONS(2208), - [aux_sym_cmd_identifier_token27] = ACTIONS(2208), - [aux_sym_cmd_identifier_token28] = ACTIONS(2208), - [aux_sym_cmd_identifier_token29] = ACTIONS(2208), - [aux_sym_cmd_identifier_token30] = ACTIONS(2208), - [aux_sym_cmd_identifier_token31] = ACTIONS(2208), - [aux_sym_cmd_identifier_token32] = ACTIONS(2208), - [aux_sym_cmd_identifier_token33] = ACTIONS(2208), - [aux_sym_cmd_identifier_token34] = ACTIONS(2208), - [aux_sym_cmd_identifier_token35] = ACTIONS(2208), - [aux_sym_cmd_identifier_token36] = ACTIONS(2208), - [anon_sym_true] = ACTIONS(2210), - [anon_sym_false] = ACTIONS(2210), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token38] = ACTIONS(2208), - [aux_sym_cmd_identifier_token39] = ACTIONS(2210), - [aux_sym_cmd_identifier_token40] = ACTIONS(2210), - [anon_sym_def] = ACTIONS(2208), - [anon_sym_export_DASHenv] = ACTIONS(2208), - [anon_sym_extern] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_use] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_DOLLAR] = ACTIONS(2210), - [anon_sym_error] = ACTIONS(2208), - [anon_sym_list] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [anon_sym_loop] = ACTIONS(2208), - [anon_sym_make] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_match] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_catch] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_source] = ACTIONS(2208), - [anon_sym_source_DASHenv] = ACTIONS(2208), - [anon_sym_register] = ACTIONS(2208), - [anon_sym_hide] = ACTIONS(2208), - [anon_sym_hide_DASHenv] = ACTIONS(2208), - [anon_sym_overlay] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2210), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2210), - [aux_sym__val_number_decimal_token1] = ACTIONS(2208), - [aux_sym__val_number_decimal_token2] = ACTIONS(2210), - [anon_sym_DOT2] = ACTIONS(2208), - [aux_sym__val_number_decimal_token3] = ACTIONS(2210), - [aux_sym__val_number_token1] = ACTIONS(2210), - [aux_sym__val_number_token2] = ACTIONS(2210), - [aux_sym__val_number_token3] = ACTIONS(2210), - [anon_sym_DQUOTE] = ACTIONS(2210), - [sym__str_single_quotes] = ACTIONS(2210), - [sym__str_back_ticks] = ACTIONS(2210), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_alias] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_let_DASHenv] = ACTIONS(2332), + [anon_sym_mut] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [aux_sym_cmd_identifier_token1] = ACTIONS(2332), + [aux_sym_cmd_identifier_token2] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [aux_sym_cmd_identifier_token6] = ACTIONS(2332), + [aux_sym_cmd_identifier_token7] = ACTIONS(2332), + [aux_sym_cmd_identifier_token8] = ACTIONS(2332), + [aux_sym_cmd_identifier_token9] = ACTIONS(2332), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2332), + [aux_sym_cmd_identifier_token13] = ACTIONS(2332), + [aux_sym_cmd_identifier_token14] = ACTIONS(2332), + [aux_sym_cmd_identifier_token15] = ACTIONS(2332), + [aux_sym_cmd_identifier_token16] = ACTIONS(2332), + [aux_sym_cmd_identifier_token17] = ACTIONS(2332), + [aux_sym_cmd_identifier_token18] = ACTIONS(2332), + [aux_sym_cmd_identifier_token19] = ACTIONS(2332), + [aux_sym_cmd_identifier_token20] = ACTIONS(2332), + [aux_sym_cmd_identifier_token21] = ACTIONS(2332), + [aux_sym_cmd_identifier_token22] = ACTIONS(2332), + [aux_sym_cmd_identifier_token23] = ACTIONS(2332), + [aux_sym_cmd_identifier_token24] = ACTIONS(2332), + [aux_sym_cmd_identifier_token25] = ACTIONS(2332), + [aux_sym_cmd_identifier_token26] = ACTIONS(2332), + [aux_sym_cmd_identifier_token27] = ACTIONS(2332), + [aux_sym_cmd_identifier_token28] = ACTIONS(2332), + [aux_sym_cmd_identifier_token29] = ACTIONS(2332), + [aux_sym_cmd_identifier_token30] = ACTIONS(2332), + [aux_sym_cmd_identifier_token31] = ACTIONS(2332), + [aux_sym_cmd_identifier_token32] = ACTIONS(2332), + [aux_sym_cmd_identifier_token33] = ACTIONS(2332), + [aux_sym_cmd_identifier_token34] = ACTIONS(2332), + [aux_sym_cmd_identifier_token35] = ACTIONS(2332), + [aux_sym_cmd_identifier_token36] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2334), + [anon_sym_false] = ACTIONS(2334), + [anon_sym_null] = ACTIONS(2334), + [aux_sym_cmd_identifier_token38] = ACTIONS(2332), + [aux_sym_cmd_identifier_token39] = ACTIONS(2334), + [aux_sym_cmd_identifier_token40] = ACTIONS(2334), + [anon_sym_def] = ACTIONS(2332), + [anon_sym_export_DASHenv] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_DOLLAR] = ACTIONS(2334), + [anon_sym_error] = ACTIONS(2332), + [anon_sym_list] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_make] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_source] = ACTIONS(2332), + [anon_sym_source_DASHenv] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2332), + [anon_sym_hide] = ACTIONS(2332), + [anon_sym_hide_DASHenv] = ACTIONS(2332), + [anon_sym_overlay] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2334), + [aux_sym__val_number_decimal_token1] = ACTIONS(2332), + [aux_sym__val_number_decimal_token2] = ACTIONS(2334), + [aux_sym__val_number_decimal_token3] = ACTIONS(2334), + [aux_sym__val_number_decimal_token4] = ACTIONS(2334), + [aux_sym__val_number_token1] = ACTIONS(2334), + [aux_sym__val_number_token2] = ACTIONS(2334), + [aux_sym__val_number_token3] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [sym__str_single_quotes] = ACTIONS(2334), + [sym__str_back_ticks] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(247), }, [598] = { [sym_comment] = STATE(598), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_alias] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_let_DASHenv] = ACTIONS(2212), - [anon_sym_mut] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [aux_sym_cmd_identifier_token1] = ACTIONS(2212), - [aux_sym_cmd_identifier_token2] = ACTIONS(2212), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [aux_sym_cmd_identifier_token6] = ACTIONS(2212), - [aux_sym_cmd_identifier_token7] = ACTIONS(2212), - [aux_sym_cmd_identifier_token8] = ACTIONS(2212), - [aux_sym_cmd_identifier_token9] = ACTIONS(2212), - [aux_sym_cmd_identifier_token10] = ACTIONS(2212), - [aux_sym_cmd_identifier_token11] = ACTIONS(2212), - [aux_sym_cmd_identifier_token12] = ACTIONS(2212), - [aux_sym_cmd_identifier_token13] = ACTIONS(2212), - [aux_sym_cmd_identifier_token14] = ACTIONS(2212), - [aux_sym_cmd_identifier_token15] = ACTIONS(2212), - [aux_sym_cmd_identifier_token16] = ACTIONS(2212), - [aux_sym_cmd_identifier_token17] = ACTIONS(2212), - [aux_sym_cmd_identifier_token18] = ACTIONS(2212), - [aux_sym_cmd_identifier_token19] = ACTIONS(2212), - [aux_sym_cmd_identifier_token20] = ACTIONS(2212), - [aux_sym_cmd_identifier_token21] = ACTIONS(2212), - [aux_sym_cmd_identifier_token22] = ACTIONS(2212), - [aux_sym_cmd_identifier_token23] = ACTIONS(2212), - [aux_sym_cmd_identifier_token24] = ACTIONS(2212), - [aux_sym_cmd_identifier_token25] = ACTIONS(2212), - [aux_sym_cmd_identifier_token26] = ACTIONS(2212), - [aux_sym_cmd_identifier_token27] = ACTIONS(2212), - [aux_sym_cmd_identifier_token28] = ACTIONS(2212), - [aux_sym_cmd_identifier_token29] = ACTIONS(2212), - [aux_sym_cmd_identifier_token30] = ACTIONS(2212), - [aux_sym_cmd_identifier_token31] = ACTIONS(2212), - [aux_sym_cmd_identifier_token32] = ACTIONS(2212), - [aux_sym_cmd_identifier_token33] = ACTIONS(2212), - [aux_sym_cmd_identifier_token34] = ACTIONS(2212), - [aux_sym_cmd_identifier_token35] = ACTIONS(2212), - [aux_sym_cmd_identifier_token36] = ACTIONS(2212), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_null] = ACTIONS(2214), - [aux_sym_cmd_identifier_token38] = ACTIONS(2212), - [aux_sym_cmd_identifier_token39] = ACTIONS(2214), - [aux_sym_cmd_identifier_token40] = ACTIONS(2214), - [anon_sym_def] = ACTIONS(2212), - [anon_sym_export_DASHenv] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_module] = ACTIONS(2212), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_DOLLAR] = ACTIONS(2214), - [anon_sym_error] = ACTIONS(2212), - [anon_sym_list] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_in] = ACTIONS(2212), - [anon_sym_loop] = ACTIONS(2212), - [anon_sym_make] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_match] = ACTIONS(2212), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_catch] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_source] = ACTIONS(2212), - [anon_sym_source_DASHenv] = ACTIONS(2212), - [anon_sym_register] = ACTIONS(2212), - [anon_sym_hide] = ACTIONS(2212), - [anon_sym_hide_DASHenv] = ACTIONS(2212), - [anon_sym_overlay] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_as] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2214), - [aux_sym__val_number_decimal_token1] = ACTIONS(2212), - [aux_sym__val_number_decimal_token2] = ACTIONS(2214), - [anon_sym_DOT2] = ACTIONS(2212), - [aux_sym__val_number_decimal_token3] = ACTIONS(2214), - [aux_sym__val_number_token1] = ACTIONS(2214), - [aux_sym__val_number_token2] = ACTIONS(2214), - [aux_sym__val_number_token3] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym__str_single_quotes] = ACTIONS(2214), - [sym__str_back_ticks] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token2] = ACTIONS(1867), + [aux_sym_cmd_identifier_token3] = ACTIONS(1867), + [aux_sym_cmd_identifier_token4] = ACTIONS(1867), + [aux_sym_cmd_identifier_token5] = ACTIONS(1867), + [aux_sym_cmd_identifier_token6] = ACTIONS(1867), + [aux_sym_cmd_identifier_token7] = ACTIONS(1867), + [aux_sym_cmd_identifier_token8] = ACTIONS(1867), + [aux_sym_cmd_identifier_token9] = ACTIONS(1867), + [aux_sym_cmd_identifier_token10] = ACTIONS(1867), + [aux_sym_cmd_identifier_token11] = ACTIONS(1867), + [aux_sym_cmd_identifier_token12] = ACTIONS(1867), + [aux_sym_cmd_identifier_token13] = ACTIONS(1867), + [aux_sym_cmd_identifier_token14] = ACTIONS(1867), + [aux_sym_cmd_identifier_token15] = ACTIONS(1867), + [aux_sym_cmd_identifier_token16] = ACTIONS(1867), + [aux_sym_cmd_identifier_token17] = ACTIONS(1867), + [aux_sym_cmd_identifier_token18] = ACTIONS(1867), + [aux_sym_cmd_identifier_token19] = ACTIONS(1867), + [aux_sym_cmd_identifier_token20] = ACTIONS(1867), + [aux_sym_cmd_identifier_token21] = ACTIONS(1867), + [aux_sym_cmd_identifier_token22] = ACTIONS(1867), + [aux_sym_cmd_identifier_token23] = ACTIONS(1867), + [aux_sym_cmd_identifier_token24] = ACTIONS(1867), + [aux_sym_cmd_identifier_token25] = ACTIONS(1867), + [aux_sym_cmd_identifier_token26] = ACTIONS(1867), + [aux_sym_cmd_identifier_token27] = ACTIONS(1867), + [aux_sym_cmd_identifier_token28] = ACTIONS(1867), + [aux_sym_cmd_identifier_token29] = ACTIONS(1867), + [aux_sym_cmd_identifier_token30] = ACTIONS(1867), + [aux_sym_cmd_identifier_token31] = ACTIONS(1867), + [aux_sym_cmd_identifier_token32] = ACTIONS(1867), + [aux_sym_cmd_identifier_token33] = ACTIONS(1867), + [aux_sym_cmd_identifier_token34] = ACTIONS(1867), + [aux_sym_cmd_identifier_token35] = ACTIONS(1867), + [aux_sym_cmd_identifier_token36] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [anon_sym_null] = ACTIONS(1869), + [aux_sym_cmd_identifier_token38] = ACTIONS(1867), + [aux_sym_cmd_identifier_token39] = ACTIONS(1869), + [aux_sym_cmd_identifier_token40] = ACTIONS(1869), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_list] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_make] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_as] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1869), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1869), + [aux_sym__val_number_token1] = ACTIONS(1869), + [aux_sym__val_number_token2] = ACTIONS(1869), + [aux_sym__val_number_token3] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [sym__str_single_quotes] = ACTIONS(1869), + [sym__str_back_ticks] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(247), }, [599] = { [sym_comment] = STATE(599), - [anon_sym_export] = ACTIONS(1683), - [anon_sym_alias] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1683), - [anon_sym_let_DASHenv] = ACTIONS(1683), - [anon_sym_mut] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [aux_sym_cmd_identifier_token1] = ACTIONS(1683), - [aux_sym_cmd_identifier_token2] = ACTIONS(1683), - [aux_sym_cmd_identifier_token3] = ACTIONS(1683), - [aux_sym_cmd_identifier_token4] = ACTIONS(1683), - [aux_sym_cmd_identifier_token5] = ACTIONS(1683), - [aux_sym_cmd_identifier_token6] = ACTIONS(1683), - [aux_sym_cmd_identifier_token7] = ACTIONS(1683), - [aux_sym_cmd_identifier_token8] = ACTIONS(1683), - [aux_sym_cmd_identifier_token9] = ACTIONS(1683), - [aux_sym_cmd_identifier_token10] = ACTIONS(1683), - [aux_sym_cmd_identifier_token11] = ACTIONS(1683), - [aux_sym_cmd_identifier_token12] = ACTIONS(1683), - [aux_sym_cmd_identifier_token13] = ACTIONS(1683), - [aux_sym_cmd_identifier_token14] = ACTIONS(1683), - [aux_sym_cmd_identifier_token15] = ACTIONS(1683), - [aux_sym_cmd_identifier_token16] = ACTIONS(1683), - [aux_sym_cmd_identifier_token17] = ACTIONS(1683), - [aux_sym_cmd_identifier_token18] = ACTIONS(1683), - [aux_sym_cmd_identifier_token19] = ACTIONS(1683), - [aux_sym_cmd_identifier_token20] = ACTIONS(1683), - [aux_sym_cmd_identifier_token21] = ACTIONS(1683), - [aux_sym_cmd_identifier_token22] = ACTIONS(1683), - [aux_sym_cmd_identifier_token23] = ACTIONS(1683), - [aux_sym_cmd_identifier_token24] = ACTIONS(1683), - [aux_sym_cmd_identifier_token25] = ACTIONS(1683), - [aux_sym_cmd_identifier_token26] = ACTIONS(1683), - [aux_sym_cmd_identifier_token27] = ACTIONS(1683), - [aux_sym_cmd_identifier_token28] = ACTIONS(1683), - [aux_sym_cmd_identifier_token29] = ACTIONS(1683), - [aux_sym_cmd_identifier_token30] = ACTIONS(1683), - [aux_sym_cmd_identifier_token31] = ACTIONS(1683), - [aux_sym_cmd_identifier_token32] = ACTIONS(1683), - [aux_sym_cmd_identifier_token33] = ACTIONS(1683), - [aux_sym_cmd_identifier_token34] = ACTIONS(1683), - [aux_sym_cmd_identifier_token35] = ACTIONS(1683), - [aux_sym_cmd_identifier_token36] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1687), - [anon_sym_false] = ACTIONS(1687), - [anon_sym_null] = ACTIONS(1687), - [aux_sym_cmd_identifier_token38] = ACTIONS(1683), - [aux_sym_cmd_identifier_token39] = ACTIONS(1687), - [aux_sym_cmd_identifier_token40] = ACTIONS(1687), - [anon_sym_def] = ACTIONS(1683), - [anon_sym_export_DASHenv] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym_module] = ACTIONS(1683), - [anon_sym_use] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_error] = ACTIONS(1683), - [anon_sym_list] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_loop] = ACTIONS(1683), - [anon_sym_make] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_else] = ACTIONS(1683), - [anon_sym_match] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1683), - [anon_sym_catch] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_source] = ACTIONS(1683), - [anon_sym_source_DASHenv] = ACTIONS(1683), - [anon_sym_register] = ACTIONS(1683), - [anon_sym_hide] = ACTIONS(1683), - [anon_sym_hide_DASHenv] = ACTIONS(1683), - [anon_sym_overlay] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_as] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1687), - [aux_sym__val_number_decimal_token1] = ACTIONS(1683), - [aux_sym__val_number_decimal_token2] = ACTIONS(1687), - [anon_sym_DOT2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1687), - [aux_sym__val_number_token1] = ACTIONS(1687), - [aux_sym__val_number_token2] = ACTIONS(1687), - [aux_sym__val_number_token3] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [sym__str_single_quotes] = ACTIONS(1687), - [sym__str_back_ticks] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1273), + [anon_sym_alias] = ACTIONS(1273), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_let_DASHenv] = ACTIONS(1273), + [anon_sym_mut] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [aux_sym_cmd_identifier_token1] = ACTIONS(1273), + [aux_sym_cmd_identifier_token2] = ACTIONS(1273), + [aux_sym_cmd_identifier_token3] = ACTIONS(1273), + [aux_sym_cmd_identifier_token4] = ACTIONS(1273), + [aux_sym_cmd_identifier_token5] = ACTIONS(1273), + [aux_sym_cmd_identifier_token6] = ACTIONS(1273), + [aux_sym_cmd_identifier_token7] = ACTIONS(1273), + [aux_sym_cmd_identifier_token8] = ACTIONS(1273), + [aux_sym_cmd_identifier_token9] = ACTIONS(1273), + [aux_sym_cmd_identifier_token10] = ACTIONS(1273), + [aux_sym_cmd_identifier_token11] = ACTIONS(1273), + [aux_sym_cmd_identifier_token12] = ACTIONS(1273), + [aux_sym_cmd_identifier_token13] = ACTIONS(1273), + [aux_sym_cmd_identifier_token14] = ACTIONS(1273), + [aux_sym_cmd_identifier_token15] = ACTIONS(1273), + [aux_sym_cmd_identifier_token16] = ACTIONS(1273), + [aux_sym_cmd_identifier_token17] = ACTIONS(1273), + [aux_sym_cmd_identifier_token18] = ACTIONS(1273), + [aux_sym_cmd_identifier_token19] = ACTIONS(1273), + [aux_sym_cmd_identifier_token20] = ACTIONS(1273), + [aux_sym_cmd_identifier_token21] = ACTIONS(1273), + [aux_sym_cmd_identifier_token22] = ACTIONS(1273), + [aux_sym_cmd_identifier_token23] = ACTIONS(1273), + [aux_sym_cmd_identifier_token24] = ACTIONS(1273), + [aux_sym_cmd_identifier_token25] = ACTIONS(1273), + [aux_sym_cmd_identifier_token26] = ACTIONS(1273), + [aux_sym_cmd_identifier_token27] = ACTIONS(1273), + [aux_sym_cmd_identifier_token28] = ACTIONS(1273), + [aux_sym_cmd_identifier_token29] = ACTIONS(1273), + [aux_sym_cmd_identifier_token30] = ACTIONS(1273), + [aux_sym_cmd_identifier_token31] = ACTIONS(1273), + [aux_sym_cmd_identifier_token32] = ACTIONS(1273), + [aux_sym_cmd_identifier_token33] = ACTIONS(1273), + [aux_sym_cmd_identifier_token34] = ACTIONS(1273), + [aux_sym_cmd_identifier_token35] = ACTIONS(1273), + [aux_sym_cmd_identifier_token36] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_null] = ACTIONS(1277), + [aux_sym_cmd_identifier_token38] = ACTIONS(1273), + [aux_sym_cmd_identifier_token39] = ACTIONS(1277), + [aux_sym_cmd_identifier_token40] = ACTIONS(1277), + [sym__newline] = ACTIONS(1277), + [anon_sym_def] = ACTIONS(1273), + [anon_sym_export_DASHenv] = ACTIONS(1273), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_use] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_error] = ACTIONS(1273), + [anon_sym_list] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_loop] = ACTIONS(1273), + [anon_sym_make] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_match] = ACTIONS(1273), + [anon_sym_try] = ACTIONS(1273), + [anon_sym_catch] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_source] = ACTIONS(1273), + [anon_sym_source_DASHenv] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_hide] = ACTIONS(1273), + [anon_sym_hide_DASHenv] = ACTIONS(1273), + [anon_sym_overlay] = ACTIONS(1273), + [anon_sym_new] = ACTIONS(1273), + [anon_sym_as] = ACTIONS(1273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1277), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1273), + [aux_sym__val_number_decimal_token2] = ACTIONS(1277), + [aux_sym__val_number_decimal_token3] = ACTIONS(1277), + [aux_sym__val_number_decimal_token4] = ACTIONS(1277), + [aux_sym__val_number_token1] = ACTIONS(1277), + [aux_sym__val_number_token2] = ACTIONS(1277), + [aux_sym__val_number_token3] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym__str_single_quotes] = ACTIONS(1277), + [sym__str_back_ticks] = ACTIONS(1277), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_POUND] = ACTIONS(247), }, [600] = { [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1879), - [aux_sym_cmd_identifier_token3] = ACTIONS(1879), - [aux_sym_cmd_identifier_token4] = ACTIONS(1879), - [aux_sym_cmd_identifier_token5] = ACTIONS(1879), - [aux_sym_cmd_identifier_token6] = ACTIONS(1879), - [aux_sym_cmd_identifier_token7] = ACTIONS(1879), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1879), - [aux_sym_cmd_identifier_token11] = ACTIONS(1879), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1879), - [aux_sym_cmd_identifier_token17] = ACTIONS(1879), - [aux_sym_cmd_identifier_token18] = ACTIONS(1879), - [aux_sym_cmd_identifier_token19] = ACTIONS(1879), - [aux_sym_cmd_identifier_token20] = ACTIONS(1879), - [aux_sym_cmd_identifier_token21] = ACTIONS(1879), - [aux_sym_cmd_identifier_token22] = ACTIONS(1879), - [aux_sym_cmd_identifier_token23] = ACTIONS(1879), - [aux_sym_cmd_identifier_token24] = ACTIONS(1879), - [aux_sym_cmd_identifier_token25] = ACTIONS(1879), - [aux_sym_cmd_identifier_token26] = ACTIONS(1879), - [aux_sym_cmd_identifier_token27] = ACTIONS(1879), - [aux_sym_cmd_identifier_token28] = ACTIONS(1879), - [aux_sym_cmd_identifier_token29] = ACTIONS(1879), - [aux_sym_cmd_identifier_token30] = ACTIONS(1879), - [aux_sym_cmd_identifier_token31] = ACTIONS(1879), - [aux_sym_cmd_identifier_token32] = ACTIONS(1879), - [aux_sym_cmd_identifier_token33] = ACTIONS(1879), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1879), - [aux_sym_cmd_identifier_token36] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_list] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [anon_sym_DOT2] = ACTIONS(1879), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1935), + [anon_sym_alias] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_let_DASHenv] = ACTIONS(1935), + [anon_sym_mut] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [aux_sym_cmd_identifier_token1] = ACTIONS(1935), + [aux_sym_cmd_identifier_token2] = ACTIONS(1935), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [aux_sym_cmd_identifier_token6] = ACTIONS(1935), + [aux_sym_cmd_identifier_token7] = ACTIONS(1935), + [aux_sym_cmd_identifier_token8] = ACTIONS(1935), + [aux_sym_cmd_identifier_token9] = ACTIONS(1935), + [aux_sym_cmd_identifier_token10] = ACTIONS(1935), + [aux_sym_cmd_identifier_token11] = ACTIONS(1935), + [aux_sym_cmd_identifier_token12] = ACTIONS(1935), + [aux_sym_cmd_identifier_token13] = ACTIONS(1935), + [aux_sym_cmd_identifier_token14] = ACTIONS(1935), + [aux_sym_cmd_identifier_token15] = ACTIONS(1935), + [aux_sym_cmd_identifier_token16] = ACTIONS(1935), + [aux_sym_cmd_identifier_token17] = ACTIONS(1935), + [aux_sym_cmd_identifier_token18] = ACTIONS(1935), + [aux_sym_cmd_identifier_token19] = ACTIONS(1935), + [aux_sym_cmd_identifier_token20] = ACTIONS(1935), + [aux_sym_cmd_identifier_token21] = ACTIONS(1935), + [aux_sym_cmd_identifier_token22] = ACTIONS(1935), + [aux_sym_cmd_identifier_token23] = ACTIONS(1935), + [aux_sym_cmd_identifier_token24] = ACTIONS(1935), + [aux_sym_cmd_identifier_token25] = ACTIONS(1935), + [aux_sym_cmd_identifier_token26] = ACTIONS(1935), + [aux_sym_cmd_identifier_token27] = ACTIONS(1935), + [aux_sym_cmd_identifier_token28] = ACTIONS(1935), + [aux_sym_cmd_identifier_token29] = ACTIONS(1935), + [aux_sym_cmd_identifier_token30] = ACTIONS(1935), + [aux_sym_cmd_identifier_token31] = ACTIONS(1935), + [aux_sym_cmd_identifier_token32] = ACTIONS(1935), + [aux_sym_cmd_identifier_token33] = ACTIONS(1935), + [aux_sym_cmd_identifier_token34] = ACTIONS(1935), + [aux_sym_cmd_identifier_token35] = ACTIONS(1935), + [aux_sym_cmd_identifier_token36] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [anon_sym_null] = ACTIONS(1941), + [aux_sym_cmd_identifier_token38] = ACTIONS(1935), + [aux_sym_cmd_identifier_token39] = ACTIONS(1941), + [aux_sym_cmd_identifier_token40] = ACTIONS(1941), + [anon_sym_def] = ACTIONS(1935), + [anon_sym_export_DASHenv] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_use] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_DOLLAR] = ACTIONS(1941), + [anon_sym_error] = ACTIONS(1935), + [anon_sym_list] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_in] = ACTIONS(1935), + [anon_sym_loop] = ACTIONS(1935), + [anon_sym_make] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_source] = ACTIONS(1935), + [anon_sym_source_DASHenv] = ACTIONS(1935), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_hide] = ACTIONS(1935), + [anon_sym_hide_DASHenv] = ACTIONS(1935), + [anon_sym_overlay] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_as] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1941), + [aux_sym__val_number_decimal_token3] = ACTIONS(1941), + [aux_sym__val_number_decimal_token4] = ACTIONS(1941), + [aux_sym__val_number_token1] = ACTIONS(1941), + [aux_sym__val_number_token2] = ACTIONS(1941), + [aux_sym__val_number_token3] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym__str_single_quotes] = ACTIONS(1941), + [sym__str_back_ticks] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(247), }, [601] = { [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(2401), + [anon_sym_alias] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_let_DASHenv] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [aux_sym_cmd_identifier_token1] = ACTIONS(2401), + [aux_sym_cmd_identifier_token2] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2401), + [aux_sym_cmd_identifier_token4] = ACTIONS(2401), + [aux_sym_cmd_identifier_token5] = ACTIONS(2401), + [aux_sym_cmd_identifier_token6] = ACTIONS(2401), + [aux_sym_cmd_identifier_token7] = ACTIONS(2401), + [aux_sym_cmd_identifier_token8] = ACTIONS(2401), + [aux_sym_cmd_identifier_token9] = ACTIONS(2401), + [aux_sym_cmd_identifier_token10] = ACTIONS(2401), + [aux_sym_cmd_identifier_token11] = ACTIONS(2401), + [aux_sym_cmd_identifier_token12] = ACTIONS(2401), + [aux_sym_cmd_identifier_token13] = ACTIONS(2401), + [aux_sym_cmd_identifier_token14] = ACTIONS(2401), + [aux_sym_cmd_identifier_token15] = ACTIONS(2401), + [aux_sym_cmd_identifier_token16] = ACTIONS(2401), + [aux_sym_cmd_identifier_token17] = ACTIONS(2401), + [aux_sym_cmd_identifier_token18] = ACTIONS(2401), + [aux_sym_cmd_identifier_token19] = ACTIONS(2401), + [aux_sym_cmd_identifier_token20] = ACTIONS(2401), + [aux_sym_cmd_identifier_token21] = ACTIONS(2401), + [aux_sym_cmd_identifier_token22] = ACTIONS(2401), + [aux_sym_cmd_identifier_token23] = ACTIONS(2401), + [aux_sym_cmd_identifier_token24] = ACTIONS(2401), + [aux_sym_cmd_identifier_token25] = ACTIONS(2401), + [aux_sym_cmd_identifier_token26] = ACTIONS(2401), + [aux_sym_cmd_identifier_token27] = ACTIONS(2401), + [aux_sym_cmd_identifier_token28] = ACTIONS(2401), + [aux_sym_cmd_identifier_token29] = ACTIONS(2401), + [aux_sym_cmd_identifier_token30] = ACTIONS(2401), + [aux_sym_cmd_identifier_token31] = ACTIONS(2401), + [aux_sym_cmd_identifier_token32] = ACTIONS(2401), + [aux_sym_cmd_identifier_token33] = ACTIONS(2401), + [aux_sym_cmd_identifier_token34] = ACTIONS(2401), + [aux_sym_cmd_identifier_token35] = ACTIONS(2401), + [aux_sym_cmd_identifier_token36] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2403), + [anon_sym_false] = ACTIONS(2403), + [anon_sym_null] = ACTIONS(2403), + [aux_sym_cmd_identifier_token38] = ACTIONS(2401), + [aux_sym_cmd_identifier_token39] = ACTIONS(2403), + [aux_sym_cmd_identifier_token40] = ACTIONS(2403), + [anon_sym_def] = ACTIONS(2401), + [anon_sym_export_DASHenv] = ACTIONS(2401), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_module] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_error] = ACTIONS(2401), + [anon_sym_list] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_make] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_else] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_catch] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_source] = ACTIONS(2401), + [anon_sym_source_DASHenv] = ACTIONS(2401), + [anon_sym_register] = ACTIONS(2401), + [anon_sym_hide] = ACTIONS(2401), + [anon_sym_hide_DASHenv] = ACTIONS(2401), + [anon_sym_overlay] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2403), + [aux_sym__val_number_decimal_token1] = ACTIONS(2401), + [aux_sym__val_number_decimal_token2] = ACTIONS(2403), + [aux_sym__val_number_decimal_token3] = ACTIONS(2403), + [aux_sym__val_number_decimal_token4] = ACTIONS(2403), + [aux_sym__val_number_token1] = ACTIONS(2403), + [aux_sym__val_number_token2] = ACTIONS(2403), + [aux_sym__val_number_token3] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2403), + [sym__str_single_quotes] = ACTIONS(2403), + [sym__str_back_ticks] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(247), + }, + [602] = { + [sym_comment] = STATE(602), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [aux_sym_cmd_identifier_token1] = ACTIONS(2066), + [aux_sym_cmd_identifier_token2] = ACTIONS(2066), + [aux_sym_cmd_identifier_token3] = ACTIONS(2066), + [aux_sym_cmd_identifier_token4] = ACTIONS(2066), + [aux_sym_cmd_identifier_token5] = ACTIONS(2066), + [aux_sym_cmd_identifier_token6] = ACTIONS(2066), + [aux_sym_cmd_identifier_token7] = ACTIONS(2066), + [aux_sym_cmd_identifier_token8] = ACTIONS(2066), + [aux_sym_cmd_identifier_token9] = ACTIONS(2066), + [aux_sym_cmd_identifier_token10] = ACTIONS(2066), + [aux_sym_cmd_identifier_token11] = ACTIONS(2066), + [aux_sym_cmd_identifier_token12] = ACTIONS(2066), + [aux_sym_cmd_identifier_token13] = ACTIONS(2066), + [aux_sym_cmd_identifier_token14] = ACTIONS(2066), + [aux_sym_cmd_identifier_token15] = ACTIONS(2066), + [aux_sym_cmd_identifier_token16] = ACTIONS(2066), + [aux_sym_cmd_identifier_token17] = ACTIONS(2066), + [aux_sym_cmd_identifier_token18] = ACTIONS(2066), + [aux_sym_cmd_identifier_token19] = ACTIONS(2066), + [aux_sym_cmd_identifier_token20] = ACTIONS(2066), + [aux_sym_cmd_identifier_token21] = ACTIONS(2066), + [aux_sym_cmd_identifier_token22] = ACTIONS(2066), + [aux_sym_cmd_identifier_token23] = ACTIONS(2066), + [aux_sym_cmd_identifier_token24] = ACTIONS(2066), + [aux_sym_cmd_identifier_token25] = ACTIONS(2066), + [aux_sym_cmd_identifier_token26] = ACTIONS(2066), + [aux_sym_cmd_identifier_token27] = ACTIONS(2066), + [aux_sym_cmd_identifier_token28] = ACTIONS(2066), + [aux_sym_cmd_identifier_token29] = ACTIONS(2066), + [aux_sym_cmd_identifier_token30] = ACTIONS(2066), + [aux_sym_cmd_identifier_token31] = ACTIONS(2066), + [aux_sym_cmd_identifier_token32] = ACTIONS(2066), + [aux_sym_cmd_identifier_token33] = ACTIONS(2066), + [aux_sym_cmd_identifier_token34] = ACTIONS(2066), + [aux_sym_cmd_identifier_token35] = ACTIONS(2066), + [aux_sym_cmd_identifier_token36] = ACTIONS(2066), + [anon_sym_true] = ACTIONS(2072), + [anon_sym_false] = ACTIONS(2072), + [anon_sym_null] = ACTIONS(2072), + [aux_sym_cmd_identifier_token38] = ACTIONS(2066), + [aux_sym_cmd_identifier_token39] = ACTIONS(2072), + [aux_sym_cmd_identifier_token40] = ACTIONS(2072), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_list] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_in] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_make] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_new] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(247), + }, + [603] = { + [sym_comment] = STATE(603), + [anon_sym_export] = ACTIONS(1972), + [anon_sym_alias] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_let_DASHenv] = ACTIONS(1972), + [anon_sym_mut] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [aux_sym_cmd_identifier_token1] = ACTIONS(1972), + [aux_sym_cmd_identifier_token2] = ACTIONS(1972), + [aux_sym_cmd_identifier_token3] = ACTIONS(1972), + [aux_sym_cmd_identifier_token4] = ACTIONS(1972), + [aux_sym_cmd_identifier_token5] = ACTIONS(1972), + [aux_sym_cmd_identifier_token6] = ACTIONS(1972), + [aux_sym_cmd_identifier_token7] = ACTIONS(1972), + [aux_sym_cmd_identifier_token8] = ACTIONS(1972), + [aux_sym_cmd_identifier_token9] = ACTIONS(1972), + [aux_sym_cmd_identifier_token10] = ACTIONS(1972), + [aux_sym_cmd_identifier_token11] = ACTIONS(1972), + [aux_sym_cmd_identifier_token12] = ACTIONS(1972), + [aux_sym_cmd_identifier_token13] = ACTIONS(1972), + [aux_sym_cmd_identifier_token14] = ACTIONS(1972), + [aux_sym_cmd_identifier_token15] = ACTIONS(1972), + [aux_sym_cmd_identifier_token16] = ACTIONS(1972), + [aux_sym_cmd_identifier_token17] = ACTIONS(1972), + [aux_sym_cmd_identifier_token18] = ACTIONS(1972), + [aux_sym_cmd_identifier_token19] = ACTIONS(1972), + [aux_sym_cmd_identifier_token20] = ACTIONS(1972), + [aux_sym_cmd_identifier_token21] = ACTIONS(1972), + [aux_sym_cmd_identifier_token22] = ACTIONS(1972), + [aux_sym_cmd_identifier_token23] = ACTIONS(1972), + [aux_sym_cmd_identifier_token24] = ACTIONS(1972), + [aux_sym_cmd_identifier_token25] = ACTIONS(1972), + [aux_sym_cmd_identifier_token26] = ACTIONS(1972), + [aux_sym_cmd_identifier_token27] = ACTIONS(1972), + [aux_sym_cmd_identifier_token28] = ACTIONS(1972), + [aux_sym_cmd_identifier_token29] = ACTIONS(1972), + [aux_sym_cmd_identifier_token30] = ACTIONS(1972), + [aux_sym_cmd_identifier_token31] = ACTIONS(1972), + [aux_sym_cmd_identifier_token32] = ACTIONS(1972), + [aux_sym_cmd_identifier_token33] = ACTIONS(1972), + [aux_sym_cmd_identifier_token34] = ACTIONS(1972), + [aux_sym_cmd_identifier_token35] = ACTIONS(1972), + [aux_sym_cmd_identifier_token36] = ACTIONS(1972), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [anon_sym_null] = ACTIONS(1978), + [aux_sym_cmd_identifier_token38] = ACTIONS(1972), + [aux_sym_cmd_identifier_token39] = ACTIONS(1978), + [aux_sym_cmd_identifier_token40] = ACTIONS(1978), + [anon_sym_def] = ACTIONS(1972), + [anon_sym_export_DASHenv] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_error] = ACTIONS(1972), + [anon_sym_list] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_make] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_source] = ACTIONS(1972), + [anon_sym_source_DASHenv] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_hide] = ACTIONS(1972), + [anon_sym_hide_DASHenv] = ACTIONS(1972), + [anon_sym_overlay] = ACTIONS(1972), + [anon_sym_new] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1978), + [aux_sym__val_number_decimal_token4] = ACTIONS(1978), + [aux_sym__val_number_token1] = ACTIONS(1978), + [aux_sym__val_number_token2] = ACTIONS(1978), + [aux_sym__val_number_token3] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym__str_single_quotes] = ACTIONS(1978), + [sym__str_back_ticks] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(247), + }, + [604] = { + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(1960), + [anon_sym_alias] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_let_DASHenv] = ACTIONS(1960), + [anon_sym_mut] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [aux_sym_cmd_identifier_token1] = ACTIONS(1960), + [aux_sym_cmd_identifier_token2] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1960), + [aux_sym_cmd_identifier_token4] = ACTIONS(1960), + [aux_sym_cmd_identifier_token5] = ACTIONS(1960), + [aux_sym_cmd_identifier_token6] = ACTIONS(1960), + [aux_sym_cmd_identifier_token7] = ACTIONS(1960), + [aux_sym_cmd_identifier_token8] = ACTIONS(1960), + [aux_sym_cmd_identifier_token9] = ACTIONS(1960), + [aux_sym_cmd_identifier_token10] = ACTIONS(1960), + [aux_sym_cmd_identifier_token11] = ACTIONS(1960), + [aux_sym_cmd_identifier_token12] = ACTIONS(1960), + [aux_sym_cmd_identifier_token13] = ACTIONS(1960), + [aux_sym_cmd_identifier_token14] = ACTIONS(1960), + [aux_sym_cmd_identifier_token15] = ACTIONS(1960), + [aux_sym_cmd_identifier_token16] = ACTIONS(1960), + [aux_sym_cmd_identifier_token17] = ACTIONS(1960), + [aux_sym_cmd_identifier_token18] = ACTIONS(1960), + [aux_sym_cmd_identifier_token19] = ACTIONS(1960), + [aux_sym_cmd_identifier_token20] = ACTIONS(1960), + [aux_sym_cmd_identifier_token21] = ACTIONS(1960), + [aux_sym_cmd_identifier_token22] = ACTIONS(1960), + [aux_sym_cmd_identifier_token23] = ACTIONS(1960), + [aux_sym_cmd_identifier_token24] = ACTIONS(1960), + [aux_sym_cmd_identifier_token25] = ACTIONS(1960), + [aux_sym_cmd_identifier_token26] = ACTIONS(1960), + [aux_sym_cmd_identifier_token27] = ACTIONS(1960), + [aux_sym_cmd_identifier_token28] = ACTIONS(1960), + [aux_sym_cmd_identifier_token29] = ACTIONS(1960), + [aux_sym_cmd_identifier_token30] = ACTIONS(1960), + [aux_sym_cmd_identifier_token31] = ACTIONS(1960), + [aux_sym_cmd_identifier_token32] = ACTIONS(1960), + [aux_sym_cmd_identifier_token33] = ACTIONS(1960), + [aux_sym_cmd_identifier_token34] = ACTIONS(1960), + [aux_sym_cmd_identifier_token35] = ACTIONS(1960), + [aux_sym_cmd_identifier_token36] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1966), + [aux_sym_cmd_identifier_token38] = ACTIONS(1960), + [aux_sym_cmd_identifier_token39] = ACTIONS(1966), + [aux_sym_cmd_identifier_token40] = ACTIONS(1966), + [anon_sym_def] = ACTIONS(1960), + [anon_sym_export_DASHenv] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_module] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1966), + [anon_sym_error] = ACTIONS(1960), + [anon_sym_list] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_in] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_make] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_else] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1960), + [anon_sym_catch] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_source] = ACTIONS(1960), + [anon_sym_source_DASHenv] = ACTIONS(1960), + [anon_sym_register] = ACTIONS(1960), + [anon_sym_hide] = ACTIONS(1960), + [anon_sym_hide_DASHenv] = ACTIONS(1960), + [anon_sym_overlay] = ACTIONS(1960), + [anon_sym_new] = ACTIONS(1960), + [anon_sym_as] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1966), + [aux_sym__val_number_decimal_token3] = ACTIONS(1966), + [aux_sym__val_number_decimal_token4] = ACTIONS(1966), + [aux_sym__val_number_token1] = ACTIONS(1966), + [aux_sym__val_number_token2] = ACTIONS(1966), + [aux_sym__val_number_token3] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [sym__str_single_quotes] = ACTIONS(1966), + [sym__str_back_ticks] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(247), + }, + [605] = { + [sym_comment] = STATE(605), + [anon_sym_export] = ACTIONS(2405), + [anon_sym_alias] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_DASHenv] = ACTIONS(2405), + [anon_sym_mut] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [aux_sym_cmd_identifier_token1] = ACTIONS(2405), + [aux_sym_cmd_identifier_token2] = ACTIONS(2405), + [aux_sym_cmd_identifier_token3] = ACTIONS(2405), + [aux_sym_cmd_identifier_token4] = ACTIONS(2405), + [aux_sym_cmd_identifier_token5] = ACTIONS(2405), + [aux_sym_cmd_identifier_token6] = ACTIONS(2405), + [aux_sym_cmd_identifier_token7] = ACTIONS(2405), + [aux_sym_cmd_identifier_token8] = ACTIONS(2405), + [aux_sym_cmd_identifier_token9] = ACTIONS(2405), + [aux_sym_cmd_identifier_token10] = ACTIONS(2405), + [aux_sym_cmd_identifier_token11] = ACTIONS(2405), + [aux_sym_cmd_identifier_token12] = ACTIONS(2405), + [aux_sym_cmd_identifier_token13] = ACTIONS(2405), + [aux_sym_cmd_identifier_token14] = ACTIONS(2405), + [aux_sym_cmd_identifier_token15] = ACTIONS(2405), + [aux_sym_cmd_identifier_token16] = ACTIONS(2405), + [aux_sym_cmd_identifier_token17] = ACTIONS(2405), + [aux_sym_cmd_identifier_token18] = ACTIONS(2405), + [aux_sym_cmd_identifier_token19] = ACTIONS(2405), + [aux_sym_cmd_identifier_token20] = ACTIONS(2405), + [aux_sym_cmd_identifier_token21] = ACTIONS(2405), + [aux_sym_cmd_identifier_token22] = ACTIONS(2405), + [aux_sym_cmd_identifier_token23] = ACTIONS(2405), + [aux_sym_cmd_identifier_token24] = ACTIONS(2405), + [aux_sym_cmd_identifier_token25] = ACTIONS(2405), + [aux_sym_cmd_identifier_token26] = ACTIONS(2405), + [aux_sym_cmd_identifier_token27] = ACTIONS(2405), + [aux_sym_cmd_identifier_token28] = ACTIONS(2405), + [aux_sym_cmd_identifier_token29] = ACTIONS(2405), + [aux_sym_cmd_identifier_token30] = ACTIONS(2405), + [aux_sym_cmd_identifier_token31] = ACTIONS(2405), + [aux_sym_cmd_identifier_token32] = ACTIONS(2405), + [aux_sym_cmd_identifier_token33] = ACTIONS(2405), + [aux_sym_cmd_identifier_token34] = ACTIONS(2405), + [aux_sym_cmd_identifier_token35] = ACTIONS(2405), + [aux_sym_cmd_identifier_token36] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2407), + [anon_sym_false] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2407), + [aux_sym_cmd_identifier_token38] = ACTIONS(2405), + [aux_sym_cmd_identifier_token39] = ACTIONS(2407), + [aux_sym_cmd_identifier_token40] = ACTIONS(2407), + [anon_sym_def] = ACTIONS(2405), + [anon_sym_export_DASHenv] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_error] = ACTIONS(2405), + [anon_sym_list] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_in] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_make] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_catch] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_source] = ACTIONS(2405), + [anon_sym_source_DASHenv] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_hide] = ACTIONS(2405), + [anon_sym_hide_DASHenv] = ACTIONS(2405), + [anon_sym_overlay] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2405), + [aux_sym__val_number_decimal_token2] = ACTIONS(2407), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [aux_sym__val_number_token1] = ACTIONS(2407), + [aux_sym__val_number_token2] = ACTIONS(2407), + [aux_sym__val_number_token3] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym__str_single_quotes] = ACTIONS(2407), + [sym__str_back_ticks] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2407), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(247), + }, + [606] = { + [sym_comment] = STATE(606), + [anon_sym_export] = ACTIONS(2409), + [anon_sym_alias] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_let_DASHenv] = ACTIONS(2409), + [anon_sym_mut] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [aux_sym_cmd_identifier_token1] = ACTIONS(2409), + [aux_sym_cmd_identifier_token2] = ACTIONS(2409), + [aux_sym_cmd_identifier_token3] = ACTIONS(2409), + [aux_sym_cmd_identifier_token4] = ACTIONS(2409), + [aux_sym_cmd_identifier_token5] = ACTIONS(2409), + [aux_sym_cmd_identifier_token6] = ACTIONS(2409), + [aux_sym_cmd_identifier_token7] = ACTIONS(2409), + [aux_sym_cmd_identifier_token8] = ACTIONS(2409), + [aux_sym_cmd_identifier_token9] = ACTIONS(2409), + [aux_sym_cmd_identifier_token10] = ACTIONS(2409), + [aux_sym_cmd_identifier_token11] = ACTIONS(2409), + [aux_sym_cmd_identifier_token12] = ACTIONS(2409), + [aux_sym_cmd_identifier_token13] = ACTIONS(2409), + [aux_sym_cmd_identifier_token14] = ACTIONS(2409), + [aux_sym_cmd_identifier_token15] = ACTIONS(2409), + [aux_sym_cmd_identifier_token16] = ACTIONS(2409), + [aux_sym_cmd_identifier_token17] = ACTIONS(2409), + [aux_sym_cmd_identifier_token18] = ACTIONS(2409), + [aux_sym_cmd_identifier_token19] = ACTIONS(2409), + [aux_sym_cmd_identifier_token20] = ACTIONS(2409), + [aux_sym_cmd_identifier_token21] = ACTIONS(2409), + [aux_sym_cmd_identifier_token22] = ACTIONS(2409), + [aux_sym_cmd_identifier_token23] = ACTIONS(2409), + [aux_sym_cmd_identifier_token24] = ACTIONS(2409), + [aux_sym_cmd_identifier_token25] = ACTIONS(2409), + [aux_sym_cmd_identifier_token26] = ACTIONS(2409), + [aux_sym_cmd_identifier_token27] = ACTIONS(2409), + [aux_sym_cmd_identifier_token28] = ACTIONS(2409), + [aux_sym_cmd_identifier_token29] = ACTIONS(2409), + [aux_sym_cmd_identifier_token30] = ACTIONS(2409), + [aux_sym_cmd_identifier_token31] = ACTIONS(2409), + [aux_sym_cmd_identifier_token32] = ACTIONS(2409), + [aux_sym_cmd_identifier_token33] = ACTIONS(2409), + [aux_sym_cmd_identifier_token34] = ACTIONS(2409), + [aux_sym_cmd_identifier_token35] = ACTIONS(2409), + [aux_sym_cmd_identifier_token36] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2411), + [anon_sym_false] = ACTIONS(2411), + [anon_sym_null] = ACTIONS(2411), + [aux_sym_cmd_identifier_token38] = ACTIONS(2409), + [aux_sym_cmd_identifier_token39] = ACTIONS(2411), + [aux_sym_cmd_identifier_token40] = ACTIONS(2411), + [anon_sym_def] = ACTIONS(2409), + [anon_sym_export_DASHenv] = ACTIONS(2409), + [anon_sym_extern] = ACTIONS(2409), + [anon_sym_module] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_error] = ACTIONS(2409), + [anon_sym_list] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_in] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_make] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_do] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_else] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2409), + [anon_sym_catch] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_source] = ACTIONS(2409), + [anon_sym_source_DASHenv] = ACTIONS(2409), + [anon_sym_register] = ACTIONS(2409), + [anon_sym_hide] = ACTIONS(2409), + [anon_sym_hide_DASHenv] = ACTIONS(2409), + [anon_sym_overlay] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_as] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2411), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2411), + [aux_sym__val_number_decimal_token4] = ACTIONS(2411), + [aux_sym__val_number_token1] = ACTIONS(2411), + [aux_sym__val_number_token2] = ACTIONS(2411), + [aux_sym__val_number_token3] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [sym__str_single_quotes] = ACTIONS(2411), + [sym__str_back_ticks] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(247), + }, + [607] = { + [sym_comment] = STATE(607), + [anon_sym_export] = ACTIONS(1778), + [anon_sym_alias] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_let_DASHenv] = ACTIONS(1778), + [anon_sym_mut] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [aux_sym_cmd_identifier_token1] = ACTIONS(1778), + [aux_sym_cmd_identifier_token2] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1778), + [aux_sym_cmd_identifier_token4] = ACTIONS(1778), + [aux_sym_cmd_identifier_token5] = ACTIONS(1778), + [aux_sym_cmd_identifier_token6] = ACTIONS(1778), + [aux_sym_cmd_identifier_token7] = ACTIONS(1778), + [aux_sym_cmd_identifier_token8] = ACTIONS(1778), + [aux_sym_cmd_identifier_token9] = ACTIONS(1778), + [aux_sym_cmd_identifier_token10] = ACTIONS(1778), + [aux_sym_cmd_identifier_token11] = ACTIONS(1778), + [aux_sym_cmd_identifier_token12] = ACTIONS(1778), + [aux_sym_cmd_identifier_token13] = ACTIONS(1778), + [aux_sym_cmd_identifier_token14] = ACTIONS(1778), + [aux_sym_cmd_identifier_token15] = ACTIONS(1778), + [aux_sym_cmd_identifier_token16] = ACTIONS(1778), + [aux_sym_cmd_identifier_token17] = ACTIONS(1778), + [aux_sym_cmd_identifier_token18] = ACTIONS(1778), + [aux_sym_cmd_identifier_token19] = ACTIONS(1778), + [aux_sym_cmd_identifier_token20] = ACTIONS(1778), + [aux_sym_cmd_identifier_token21] = ACTIONS(1778), + [aux_sym_cmd_identifier_token22] = ACTIONS(1778), + [aux_sym_cmd_identifier_token23] = ACTIONS(1778), + [aux_sym_cmd_identifier_token24] = ACTIONS(1778), + [aux_sym_cmd_identifier_token25] = ACTIONS(1778), + [aux_sym_cmd_identifier_token26] = ACTIONS(1778), + [aux_sym_cmd_identifier_token27] = ACTIONS(1778), + [aux_sym_cmd_identifier_token28] = ACTIONS(1778), + [aux_sym_cmd_identifier_token29] = ACTIONS(1778), + [aux_sym_cmd_identifier_token30] = ACTIONS(1778), + [aux_sym_cmd_identifier_token31] = ACTIONS(1778), + [aux_sym_cmd_identifier_token32] = ACTIONS(1778), + [aux_sym_cmd_identifier_token33] = ACTIONS(1778), + [aux_sym_cmd_identifier_token34] = ACTIONS(1778), + [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token36] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), + [aux_sym_cmd_identifier_token38] = ACTIONS(1778), + [aux_sym_cmd_identifier_token39] = ACTIONS(1780), + [aux_sym_cmd_identifier_token40] = ACTIONS(1780), + [anon_sym_def] = ACTIONS(1778), + [anon_sym_export_DASHenv] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_module] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_error] = ACTIONS(1778), + [anon_sym_list] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_in] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_make] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_do] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_else] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1778), + [anon_sym_catch] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_source] = ACTIONS(1778), + [anon_sym_source_DASHenv] = ACTIONS(1778), + [anon_sym_register] = ACTIONS(1778), + [anon_sym_hide] = ACTIONS(1778), + [anon_sym_hide_DASHenv] = ACTIONS(1778), + [anon_sym_overlay] = ACTIONS(1778), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_as] = ACTIONS(1778), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1780), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1780), + [aux_sym__val_number_decimal_token3] = ACTIONS(1780), + [aux_sym__val_number_decimal_token4] = ACTIONS(1780), + [aux_sym__val_number_token1] = ACTIONS(1780), + [aux_sym__val_number_token2] = ACTIONS(1780), + [aux_sym__val_number_token3] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [sym__str_single_quotes] = ACTIONS(1780), + [sym__str_back_ticks] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(247), + }, + [608] = { + [sym_comment] = STATE(608), + [anon_sym_export] = ACTIONS(2315), + [anon_sym_alias] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_let_DASHenv] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [aux_sym_cmd_identifier_token1] = ACTIONS(2315), + [aux_sym_cmd_identifier_token2] = ACTIONS(2315), + [aux_sym_cmd_identifier_token3] = ACTIONS(2315), + [aux_sym_cmd_identifier_token4] = ACTIONS(2315), + [aux_sym_cmd_identifier_token5] = ACTIONS(2315), + [aux_sym_cmd_identifier_token6] = ACTIONS(2315), + [aux_sym_cmd_identifier_token7] = ACTIONS(2315), + [aux_sym_cmd_identifier_token8] = ACTIONS(2315), + [aux_sym_cmd_identifier_token9] = ACTIONS(2315), + [aux_sym_cmd_identifier_token10] = ACTIONS(2315), + [aux_sym_cmd_identifier_token11] = ACTIONS(2315), + [aux_sym_cmd_identifier_token12] = ACTIONS(2315), + [aux_sym_cmd_identifier_token13] = ACTIONS(2315), + [aux_sym_cmd_identifier_token14] = ACTIONS(2315), + [aux_sym_cmd_identifier_token15] = ACTIONS(2315), + [aux_sym_cmd_identifier_token16] = ACTIONS(2315), + [aux_sym_cmd_identifier_token17] = ACTIONS(2315), + [aux_sym_cmd_identifier_token18] = ACTIONS(2315), + [aux_sym_cmd_identifier_token19] = ACTIONS(2315), + [aux_sym_cmd_identifier_token20] = ACTIONS(2315), + [aux_sym_cmd_identifier_token21] = ACTIONS(2315), + [aux_sym_cmd_identifier_token22] = ACTIONS(2315), + [aux_sym_cmd_identifier_token23] = ACTIONS(2315), + [aux_sym_cmd_identifier_token24] = ACTIONS(2315), + [aux_sym_cmd_identifier_token25] = ACTIONS(2315), + [aux_sym_cmd_identifier_token26] = ACTIONS(2315), + [aux_sym_cmd_identifier_token27] = ACTIONS(2315), + [aux_sym_cmd_identifier_token28] = ACTIONS(2315), + [aux_sym_cmd_identifier_token29] = ACTIONS(2315), + [aux_sym_cmd_identifier_token30] = ACTIONS(2315), + [aux_sym_cmd_identifier_token31] = ACTIONS(2315), + [aux_sym_cmd_identifier_token32] = ACTIONS(2315), + [aux_sym_cmd_identifier_token33] = ACTIONS(2315), + [aux_sym_cmd_identifier_token34] = ACTIONS(2315), + [aux_sym_cmd_identifier_token35] = ACTIONS(2315), + [aux_sym_cmd_identifier_token36] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_null] = ACTIONS(2317), + [aux_sym_cmd_identifier_token38] = ACTIONS(2315), + [aux_sym_cmd_identifier_token39] = ACTIONS(2317), + [aux_sym_cmd_identifier_token40] = ACTIONS(2317), + [anon_sym_def] = ACTIONS(2315), + [anon_sym_export_DASHenv] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_module] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2317), + [anon_sym_error] = ACTIONS(2315), + [anon_sym_list] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_make] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_do] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_else] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2315), + [anon_sym_catch] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_source] = ACTIONS(2315), + [anon_sym_source_DASHenv] = ACTIONS(2315), + [anon_sym_register] = ACTIONS(2315), + [anon_sym_hide] = ACTIONS(2315), + [anon_sym_hide_DASHenv] = ACTIONS(2315), + [anon_sym_overlay] = ACTIONS(2315), + [anon_sym_new] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2317), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2317), + [aux_sym__val_number_decimal_token3] = ACTIONS(2317), + [aux_sym__val_number_decimal_token4] = ACTIONS(2317), + [aux_sym__val_number_token1] = ACTIONS(2317), + [aux_sym__val_number_token2] = ACTIONS(2317), + [aux_sym__val_number_token3] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [sym__str_single_quotes] = ACTIONS(2317), + [sym__str_back_ticks] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(247), + }, + [609] = { + [sym_comment] = STATE(609), + [anon_sym_export] = ACTIONS(2336), + [anon_sym_alias] = ACTIONS(2336), + [anon_sym_let] = ACTIONS(2336), + [anon_sym_let_DASHenv] = ACTIONS(2336), + [anon_sym_mut] = ACTIONS(2336), + [anon_sym_const] = ACTIONS(2336), + [aux_sym_cmd_identifier_token1] = ACTIONS(2336), + [aux_sym_cmd_identifier_token2] = ACTIONS(2336), + [aux_sym_cmd_identifier_token3] = ACTIONS(2336), + [aux_sym_cmd_identifier_token4] = ACTIONS(2336), + [aux_sym_cmd_identifier_token5] = ACTIONS(2336), + [aux_sym_cmd_identifier_token6] = ACTIONS(2336), + [aux_sym_cmd_identifier_token7] = ACTIONS(2336), + [aux_sym_cmd_identifier_token8] = ACTIONS(2336), + [aux_sym_cmd_identifier_token9] = ACTIONS(2336), + [aux_sym_cmd_identifier_token10] = ACTIONS(2336), + [aux_sym_cmd_identifier_token11] = ACTIONS(2336), + [aux_sym_cmd_identifier_token12] = ACTIONS(2336), + [aux_sym_cmd_identifier_token13] = ACTIONS(2336), + [aux_sym_cmd_identifier_token14] = ACTIONS(2336), + [aux_sym_cmd_identifier_token15] = ACTIONS(2336), + [aux_sym_cmd_identifier_token16] = ACTIONS(2336), + [aux_sym_cmd_identifier_token17] = ACTIONS(2336), + [aux_sym_cmd_identifier_token18] = ACTIONS(2336), + [aux_sym_cmd_identifier_token19] = ACTIONS(2336), + [aux_sym_cmd_identifier_token20] = ACTIONS(2336), + [aux_sym_cmd_identifier_token21] = ACTIONS(2336), + [aux_sym_cmd_identifier_token22] = ACTIONS(2336), + [aux_sym_cmd_identifier_token23] = ACTIONS(2336), + [aux_sym_cmd_identifier_token24] = ACTIONS(2336), + [aux_sym_cmd_identifier_token25] = ACTIONS(2336), + [aux_sym_cmd_identifier_token26] = ACTIONS(2336), + [aux_sym_cmd_identifier_token27] = ACTIONS(2336), + [aux_sym_cmd_identifier_token28] = ACTIONS(2336), + [aux_sym_cmd_identifier_token29] = ACTIONS(2336), + [aux_sym_cmd_identifier_token30] = ACTIONS(2336), + [aux_sym_cmd_identifier_token31] = ACTIONS(2336), + [aux_sym_cmd_identifier_token32] = ACTIONS(2336), + [aux_sym_cmd_identifier_token33] = ACTIONS(2336), + [aux_sym_cmd_identifier_token34] = ACTIONS(2336), + [aux_sym_cmd_identifier_token35] = ACTIONS(2336), + [aux_sym_cmd_identifier_token36] = ACTIONS(2336), + [anon_sym_true] = ACTIONS(2338), + [anon_sym_false] = ACTIONS(2338), + [anon_sym_null] = ACTIONS(2338), + [aux_sym_cmd_identifier_token38] = ACTIONS(2336), + [aux_sym_cmd_identifier_token39] = ACTIONS(2338), + [aux_sym_cmd_identifier_token40] = ACTIONS(2338), + [anon_sym_def] = ACTIONS(2336), + [anon_sym_export_DASHenv] = ACTIONS(2336), + [anon_sym_extern] = ACTIONS(2336), + [anon_sym_module] = ACTIONS(2336), + [anon_sym_use] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_DOLLAR] = ACTIONS(2338), + [anon_sym_error] = ACTIONS(2336), + [anon_sym_list] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2336), + [anon_sym_continue] = ACTIONS(2336), + [anon_sym_for] = ACTIONS(2336), + [anon_sym_in] = ACTIONS(2336), + [anon_sym_loop] = ACTIONS(2336), + [anon_sym_make] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_do] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_else] = ACTIONS(2336), + [anon_sym_match] = ACTIONS(2336), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_try] = ACTIONS(2336), + [anon_sym_catch] = ACTIONS(2336), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_source] = ACTIONS(2336), + [anon_sym_source_DASHenv] = ACTIONS(2336), + [anon_sym_register] = ACTIONS(2336), + [anon_sym_hide] = ACTIONS(2336), + [anon_sym_hide_DASHenv] = ACTIONS(2336), + [anon_sym_overlay] = ACTIONS(2336), + [anon_sym_new] = ACTIONS(2336), + [anon_sym_as] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2336), + [aux_sym__val_number_decimal_token2] = ACTIONS(2338), + [aux_sym__val_number_decimal_token3] = ACTIONS(2338), + [aux_sym__val_number_decimal_token4] = ACTIONS(2338), + [aux_sym__val_number_token1] = ACTIONS(2338), + [aux_sym__val_number_token2] = ACTIONS(2338), + [aux_sym__val_number_token3] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [sym__str_single_quotes] = ACTIONS(2338), + [sym__str_back_ticks] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2336), + [anon_sym_POUND] = ACTIONS(247), + }, + [610] = { + [sym_comment] = STATE(610), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_alias] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_let_DASHenv] = ACTIONS(2413), + [anon_sym_mut] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [aux_sym_cmd_identifier_token1] = ACTIONS(2413), + [aux_sym_cmd_identifier_token2] = ACTIONS(2413), + [aux_sym_cmd_identifier_token3] = ACTIONS(2413), + [aux_sym_cmd_identifier_token4] = ACTIONS(2413), + [aux_sym_cmd_identifier_token5] = ACTIONS(2413), + [aux_sym_cmd_identifier_token6] = ACTIONS(2413), + [aux_sym_cmd_identifier_token7] = ACTIONS(2413), + [aux_sym_cmd_identifier_token8] = ACTIONS(2413), + [aux_sym_cmd_identifier_token9] = ACTIONS(2413), + [aux_sym_cmd_identifier_token10] = ACTIONS(2413), + [aux_sym_cmd_identifier_token11] = ACTIONS(2413), + [aux_sym_cmd_identifier_token12] = ACTIONS(2413), + [aux_sym_cmd_identifier_token13] = ACTIONS(2413), + [aux_sym_cmd_identifier_token14] = ACTIONS(2413), + [aux_sym_cmd_identifier_token15] = ACTIONS(2413), + [aux_sym_cmd_identifier_token16] = ACTIONS(2413), + [aux_sym_cmd_identifier_token17] = ACTIONS(2413), + [aux_sym_cmd_identifier_token18] = ACTIONS(2413), + [aux_sym_cmd_identifier_token19] = ACTIONS(2413), + [aux_sym_cmd_identifier_token20] = ACTIONS(2413), + [aux_sym_cmd_identifier_token21] = ACTIONS(2413), + [aux_sym_cmd_identifier_token22] = ACTIONS(2413), + [aux_sym_cmd_identifier_token23] = ACTIONS(2413), + [aux_sym_cmd_identifier_token24] = ACTIONS(2413), + [aux_sym_cmd_identifier_token25] = ACTIONS(2413), + [aux_sym_cmd_identifier_token26] = ACTIONS(2413), + [aux_sym_cmd_identifier_token27] = ACTIONS(2413), + [aux_sym_cmd_identifier_token28] = ACTIONS(2413), + [aux_sym_cmd_identifier_token29] = ACTIONS(2413), + [aux_sym_cmd_identifier_token30] = ACTIONS(2413), + [aux_sym_cmd_identifier_token31] = ACTIONS(2413), + [aux_sym_cmd_identifier_token32] = ACTIONS(2413), + [aux_sym_cmd_identifier_token33] = ACTIONS(2413), + [aux_sym_cmd_identifier_token34] = ACTIONS(2413), + [aux_sym_cmd_identifier_token35] = ACTIONS(2413), + [aux_sym_cmd_identifier_token36] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2415), + [anon_sym_false] = ACTIONS(2415), + [anon_sym_null] = ACTIONS(2415), + [aux_sym_cmd_identifier_token38] = ACTIONS(2413), + [aux_sym_cmd_identifier_token39] = ACTIONS(2415), + [aux_sym_cmd_identifier_token40] = ACTIONS(2415), + [anon_sym_def] = ACTIONS(2413), + [anon_sym_export_DASHenv] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2415), + [anon_sym_error] = ACTIONS(2413), + [anon_sym_list] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_in] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_make] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_catch] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_source] = ACTIONS(2413), + [anon_sym_source_DASHenv] = ACTIONS(2413), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_hide] = ACTIONS(2413), + [anon_sym_hide_DASHenv] = ACTIONS(2413), + [anon_sym_overlay] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2415), + [aux_sym__val_number_decimal_token1] = ACTIONS(2413), + [aux_sym__val_number_decimal_token2] = ACTIONS(2415), + [aux_sym__val_number_decimal_token3] = ACTIONS(2415), + [aux_sym__val_number_decimal_token4] = ACTIONS(2415), + [aux_sym__val_number_token1] = ACTIONS(2415), + [aux_sym__val_number_token2] = ACTIONS(2415), + [aux_sym__val_number_token3] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(2415), + [sym__str_single_quotes] = ACTIONS(2415), + [sym__str_back_ticks] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(247), + }, + [611] = { + [sym_comment] = STATE(611), + [anon_sym_export] = ACTIONS(2389), + [anon_sym_alias] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_let_DASHenv] = ACTIONS(2389), + [anon_sym_mut] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [aux_sym_cmd_identifier_token1] = ACTIONS(2389), + [aux_sym_cmd_identifier_token2] = ACTIONS(2389), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), + [aux_sym_cmd_identifier_token6] = ACTIONS(2389), + [aux_sym_cmd_identifier_token7] = ACTIONS(2389), + [aux_sym_cmd_identifier_token8] = ACTIONS(2389), + [aux_sym_cmd_identifier_token9] = ACTIONS(2389), + [aux_sym_cmd_identifier_token10] = ACTIONS(2389), + [aux_sym_cmd_identifier_token11] = ACTIONS(2389), + [aux_sym_cmd_identifier_token12] = ACTIONS(2389), + [aux_sym_cmd_identifier_token13] = ACTIONS(2389), + [aux_sym_cmd_identifier_token14] = ACTIONS(2389), + [aux_sym_cmd_identifier_token15] = ACTIONS(2389), + [aux_sym_cmd_identifier_token16] = ACTIONS(2389), + [aux_sym_cmd_identifier_token17] = ACTIONS(2389), + [aux_sym_cmd_identifier_token18] = ACTIONS(2389), + [aux_sym_cmd_identifier_token19] = ACTIONS(2389), + [aux_sym_cmd_identifier_token20] = ACTIONS(2389), + [aux_sym_cmd_identifier_token21] = ACTIONS(2389), + [aux_sym_cmd_identifier_token22] = ACTIONS(2389), + [aux_sym_cmd_identifier_token23] = ACTIONS(2389), + [aux_sym_cmd_identifier_token24] = ACTIONS(2389), + [aux_sym_cmd_identifier_token25] = ACTIONS(2389), + [aux_sym_cmd_identifier_token26] = ACTIONS(2389), + [aux_sym_cmd_identifier_token27] = ACTIONS(2389), + [aux_sym_cmd_identifier_token28] = ACTIONS(2389), + [aux_sym_cmd_identifier_token29] = ACTIONS(2389), + [aux_sym_cmd_identifier_token30] = ACTIONS(2389), + [aux_sym_cmd_identifier_token31] = ACTIONS(2389), + [aux_sym_cmd_identifier_token32] = ACTIONS(2389), + [aux_sym_cmd_identifier_token33] = ACTIONS(2389), + [aux_sym_cmd_identifier_token34] = ACTIONS(2389), + [aux_sym_cmd_identifier_token35] = ACTIONS(2389), + [aux_sym_cmd_identifier_token36] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [anon_sym_null] = ACTIONS(2391), + [aux_sym_cmd_identifier_token38] = ACTIONS(2389), + [aux_sym_cmd_identifier_token39] = ACTIONS(2391), + [aux_sym_cmd_identifier_token40] = ACTIONS(2391), + [anon_sym_def] = ACTIONS(2389), + [anon_sym_export_DASHenv] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym_module] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_error] = ACTIONS(2389), + [anon_sym_list] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_in] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_make] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_else] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_catch] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_source] = ACTIONS(2389), + [anon_sym_source_DASHenv] = ACTIONS(2389), + [anon_sym_register] = ACTIONS(2389), + [anon_sym_hide] = ACTIONS(2389), + [anon_sym_hide_DASHenv] = ACTIONS(2389), + [anon_sym_overlay] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_as] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2391), + [aux_sym__val_number_decimal_token1] = ACTIONS(2389), + [aux_sym__val_number_decimal_token2] = ACTIONS(2391), + [aux_sym__val_number_decimal_token3] = ACTIONS(2391), + [aux_sym__val_number_decimal_token4] = ACTIONS(2391), + [aux_sym__val_number_token1] = ACTIONS(2391), + [aux_sym__val_number_token2] = ACTIONS(2391), + [aux_sym__val_number_token3] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym__str_single_quotes] = ACTIONS(2391), + [sym__str_back_ticks] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2391), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(247), + }, + [612] = { + [sym_comment] = STATE(612), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_alias] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_let_DASHenv] = ACTIONS(2255), + [anon_sym_mut] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [aux_sym_cmd_identifier_token1] = ACTIONS(2255), + [aux_sym_cmd_identifier_token2] = ACTIONS(2255), + [aux_sym_cmd_identifier_token3] = ACTIONS(2255), + [aux_sym_cmd_identifier_token4] = ACTIONS(2255), + [aux_sym_cmd_identifier_token5] = ACTIONS(2255), + [aux_sym_cmd_identifier_token6] = ACTIONS(2255), + [aux_sym_cmd_identifier_token7] = ACTIONS(2255), + [aux_sym_cmd_identifier_token8] = ACTIONS(2255), + [aux_sym_cmd_identifier_token9] = ACTIONS(2255), + [aux_sym_cmd_identifier_token10] = ACTIONS(2255), + [aux_sym_cmd_identifier_token11] = ACTIONS(2255), + [aux_sym_cmd_identifier_token12] = ACTIONS(2255), + [aux_sym_cmd_identifier_token13] = ACTIONS(2255), + [aux_sym_cmd_identifier_token14] = ACTIONS(2255), + [aux_sym_cmd_identifier_token15] = ACTIONS(2255), + [aux_sym_cmd_identifier_token16] = ACTIONS(2255), + [aux_sym_cmd_identifier_token17] = ACTIONS(2255), + [aux_sym_cmd_identifier_token18] = ACTIONS(2255), + [aux_sym_cmd_identifier_token19] = ACTIONS(2255), + [aux_sym_cmd_identifier_token20] = ACTIONS(2255), + [aux_sym_cmd_identifier_token21] = ACTIONS(2255), + [aux_sym_cmd_identifier_token22] = ACTIONS(2255), + [aux_sym_cmd_identifier_token23] = ACTIONS(2255), + [aux_sym_cmd_identifier_token24] = ACTIONS(2255), + [aux_sym_cmd_identifier_token25] = ACTIONS(2255), + [aux_sym_cmd_identifier_token26] = ACTIONS(2255), + [aux_sym_cmd_identifier_token27] = ACTIONS(2255), + [aux_sym_cmd_identifier_token28] = ACTIONS(2255), + [aux_sym_cmd_identifier_token29] = ACTIONS(2255), + [aux_sym_cmd_identifier_token30] = ACTIONS(2255), + [aux_sym_cmd_identifier_token31] = ACTIONS(2255), + [aux_sym_cmd_identifier_token32] = ACTIONS(2255), + [aux_sym_cmd_identifier_token33] = ACTIONS(2255), + [aux_sym_cmd_identifier_token34] = ACTIONS(2255), + [aux_sym_cmd_identifier_token35] = ACTIONS(2255), + [aux_sym_cmd_identifier_token36] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [aux_sym_cmd_identifier_token38] = ACTIONS(2255), + [aux_sym_cmd_identifier_token39] = ACTIONS(2257), + [aux_sym_cmd_identifier_token40] = ACTIONS(2257), + [anon_sym_def] = ACTIONS(2255), + [anon_sym_export_DASHenv] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym_module] = ACTIONS(2255), + [anon_sym_use] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2257), + [anon_sym_error] = ACTIONS(2255), + [anon_sym_list] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_in] = ACTIONS(2255), + [anon_sym_loop] = ACTIONS(2255), + [anon_sym_make] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_else] = ACTIONS(2255), + [anon_sym_match] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_catch] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_source] = ACTIONS(2255), + [anon_sym_source_DASHenv] = ACTIONS(2255), + [anon_sym_register] = ACTIONS(2255), + [anon_sym_hide] = ACTIONS(2255), + [anon_sym_hide_DASHenv] = ACTIONS(2255), + [anon_sym_overlay] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_as] = ACTIONS(2255), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2257), + [aux_sym__val_number_decimal_token1] = ACTIONS(2255), + [aux_sym__val_number_decimal_token2] = ACTIONS(2257), + [aux_sym__val_number_decimal_token3] = ACTIONS(2257), + [aux_sym__val_number_decimal_token4] = ACTIONS(2257), + [aux_sym__val_number_token1] = ACTIONS(2257), + [aux_sym__val_number_token2] = ACTIONS(2257), + [aux_sym__val_number_token3] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [sym__str_single_quotes] = ACTIONS(2257), + [sym__str_back_ticks] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(247), + }, + [613] = { + [sym_comment] = STATE(613), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_alias] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_let_DASHenv] = ACTIONS(2340), + [anon_sym_mut] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [aux_sym_cmd_identifier_token1] = ACTIONS(2340), + [aux_sym_cmd_identifier_token2] = ACTIONS(2340), + [aux_sym_cmd_identifier_token3] = ACTIONS(2340), + [aux_sym_cmd_identifier_token4] = ACTIONS(2340), + [aux_sym_cmd_identifier_token5] = ACTIONS(2340), + [aux_sym_cmd_identifier_token6] = ACTIONS(2340), + [aux_sym_cmd_identifier_token7] = ACTIONS(2340), + [aux_sym_cmd_identifier_token8] = ACTIONS(2340), + [aux_sym_cmd_identifier_token9] = ACTIONS(2340), + [aux_sym_cmd_identifier_token10] = ACTIONS(2340), + [aux_sym_cmd_identifier_token11] = ACTIONS(2340), + [aux_sym_cmd_identifier_token12] = ACTIONS(2340), + [aux_sym_cmd_identifier_token13] = ACTIONS(2340), + [aux_sym_cmd_identifier_token14] = ACTIONS(2340), + [aux_sym_cmd_identifier_token15] = ACTIONS(2340), + [aux_sym_cmd_identifier_token16] = ACTIONS(2340), + [aux_sym_cmd_identifier_token17] = ACTIONS(2340), + [aux_sym_cmd_identifier_token18] = ACTIONS(2340), + [aux_sym_cmd_identifier_token19] = ACTIONS(2340), + [aux_sym_cmd_identifier_token20] = ACTIONS(2340), + [aux_sym_cmd_identifier_token21] = ACTIONS(2340), + [aux_sym_cmd_identifier_token22] = ACTIONS(2340), + [aux_sym_cmd_identifier_token23] = ACTIONS(2340), + [aux_sym_cmd_identifier_token24] = ACTIONS(2340), + [aux_sym_cmd_identifier_token25] = ACTIONS(2340), + [aux_sym_cmd_identifier_token26] = ACTIONS(2340), + [aux_sym_cmd_identifier_token27] = ACTIONS(2340), + [aux_sym_cmd_identifier_token28] = ACTIONS(2340), + [aux_sym_cmd_identifier_token29] = ACTIONS(2340), + [aux_sym_cmd_identifier_token30] = ACTIONS(2340), + [aux_sym_cmd_identifier_token31] = ACTIONS(2340), + [aux_sym_cmd_identifier_token32] = ACTIONS(2340), + [aux_sym_cmd_identifier_token33] = ACTIONS(2340), + [aux_sym_cmd_identifier_token34] = ACTIONS(2340), + [aux_sym_cmd_identifier_token35] = ACTIONS(2340), + [aux_sym_cmd_identifier_token36] = ACTIONS(2340), + [anon_sym_true] = ACTIONS(2342), + [anon_sym_false] = ACTIONS(2342), + [anon_sym_null] = ACTIONS(2342), + [aux_sym_cmd_identifier_token38] = ACTIONS(2340), + [aux_sym_cmd_identifier_token39] = ACTIONS(2342), + [aux_sym_cmd_identifier_token40] = ACTIONS(2342), + [anon_sym_def] = ACTIONS(2340), + [anon_sym_export_DASHenv] = ACTIONS(2340), + [anon_sym_extern] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_use] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_DOLLAR] = ACTIONS(2342), + [anon_sym_error] = ACTIONS(2340), + [anon_sym_list] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2340), + [anon_sym_loop] = ACTIONS(2340), + [anon_sym_make] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_match] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_catch] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_source] = ACTIONS(2340), + [anon_sym_source_DASHenv] = ACTIONS(2340), + [anon_sym_register] = ACTIONS(2340), + [anon_sym_hide] = ACTIONS(2340), + [anon_sym_hide_DASHenv] = ACTIONS(2340), + [anon_sym_overlay] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2342), + [aux_sym__val_number_decimal_token1] = ACTIONS(2340), + [aux_sym__val_number_decimal_token2] = ACTIONS(2342), + [aux_sym__val_number_decimal_token3] = ACTIONS(2342), + [aux_sym__val_number_decimal_token4] = ACTIONS(2342), + [aux_sym__val_number_token1] = ACTIONS(2342), + [aux_sym__val_number_token2] = ACTIONS(2342), + [aux_sym__val_number_token3] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [sym__str_single_quotes] = ACTIONS(2342), + [sym__str_back_ticks] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(247), + }, + [614] = { + [sym_comment] = STATE(614), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_alias] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_let_DASHenv] = ACTIONS(2259), + [anon_sym_mut] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [aux_sym_cmd_identifier_token1] = ACTIONS(2259), + [aux_sym_cmd_identifier_token2] = ACTIONS(2259), + [aux_sym_cmd_identifier_token3] = ACTIONS(2259), + [aux_sym_cmd_identifier_token4] = ACTIONS(2259), + [aux_sym_cmd_identifier_token5] = ACTIONS(2259), + [aux_sym_cmd_identifier_token6] = ACTIONS(2259), + [aux_sym_cmd_identifier_token7] = ACTIONS(2259), + [aux_sym_cmd_identifier_token8] = ACTIONS(2259), + [aux_sym_cmd_identifier_token9] = ACTIONS(2259), + [aux_sym_cmd_identifier_token10] = ACTIONS(2259), + [aux_sym_cmd_identifier_token11] = ACTIONS(2259), + [aux_sym_cmd_identifier_token12] = ACTIONS(2259), + [aux_sym_cmd_identifier_token13] = ACTIONS(2259), + [aux_sym_cmd_identifier_token14] = ACTIONS(2259), + [aux_sym_cmd_identifier_token15] = ACTIONS(2259), + [aux_sym_cmd_identifier_token16] = ACTIONS(2259), + [aux_sym_cmd_identifier_token17] = ACTIONS(2259), + [aux_sym_cmd_identifier_token18] = ACTIONS(2259), + [aux_sym_cmd_identifier_token19] = ACTIONS(2259), + [aux_sym_cmd_identifier_token20] = ACTIONS(2259), + [aux_sym_cmd_identifier_token21] = ACTIONS(2259), + [aux_sym_cmd_identifier_token22] = ACTIONS(2259), + [aux_sym_cmd_identifier_token23] = ACTIONS(2259), + [aux_sym_cmd_identifier_token24] = ACTIONS(2259), + [aux_sym_cmd_identifier_token25] = ACTIONS(2259), + [aux_sym_cmd_identifier_token26] = ACTIONS(2259), + [aux_sym_cmd_identifier_token27] = ACTIONS(2259), + [aux_sym_cmd_identifier_token28] = ACTIONS(2259), + [aux_sym_cmd_identifier_token29] = ACTIONS(2259), + [aux_sym_cmd_identifier_token30] = ACTIONS(2259), + [aux_sym_cmd_identifier_token31] = ACTIONS(2259), + [aux_sym_cmd_identifier_token32] = ACTIONS(2259), + [aux_sym_cmd_identifier_token33] = ACTIONS(2259), + [aux_sym_cmd_identifier_token34] = ACTIONS(2259), + [aux_sym_cmd_identifier_token35] = ACTIONS(2259), + [aux_sym_cmd_identifier_token36] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_null] = ACTIONS(2261), + [aux_sym_cmd_identifier_token38] = ACTIONS(2259), + [aux_sym_cmd_identifier_token39] = ACTIONS(2261), + [aux_sym_cmd_identifier_token40] = ACTIONS(2261), + [anon_sym_def] = ACTIONS(2259), + [anon_sym_export_DASHenv] = ACTIONS(2259), + [anon_sym_extern] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_use] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_error] = ACTIONS(2259), + [anon_sym_list] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_in] = ACTIONS(2259), + [anon_sym_loop] = ACTIONS(2259), + [anon_sym_make] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_catch] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_source] = ACTIONS(2259), + [anon_sym_source_DASHenv] = ACTIONS(2259), + [anon_sym_register] = ACTIONS(2259), + [anon_sym_hide] = ACTIONS(2259), + [anon_sym_hide_DASHenv] = ACTIONS(2259), + [anon_sym_overlay] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2261), + [aux_sym__val_number_decimal_token1] = ACTIONS(2259), + [aux_sym__val_number_decimal_token2] = ACTIONS(2261), + [aux_sym__val_number_decimal_token3] = ACTIONS(2261), + [aux_sym__val_number_decimal_token4] = ACTIONS(2261), + [aux_sym__val_number_token1] = ACTIONS(2261), + [aux_sym__val_number_token2] = ACTIONS(2261), + [aux_sym__val_number_token3] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [sym__str_single_quotes] = ACTIONS(2261), + [sym__str_back_ticks] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_POUND] = ACTIONS(247), + }, + [615] = { + [sym_comment] = STATE(615), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_alias] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_let_DASHenv] = ACTIONS(2417), + [anon_sym_mut] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [aux_sym_cmd_identifier_token1] = ACTIONS(2417), + [aux_sym_cmd_identifier_token2] = ACTIONS(2417), + [aux_sym_cmd_identifier_token3] = ACTIONS(2417), + [aux_sym_cmd_identifier_token4] = ACTIONS(2417), + [aux_sym_cmd_identifier_token5] = ACTIONS(2417), + [aux_sym_cmd_identifier_token6] = ACTIONS(2417), + [aux_sym_cmd_identifier_token7] = ACTIONS(2417), + [aux_sym_cmd_identifier_token8] = ACTIONS(2417), + [aux_sym_cmd_identifier_token9] = ACTIONS(2417), + [aux_sym_cmd_identifier_token10] = ACTIONS(2417), + [aux_sym_cmd_identifier_token11] = ACTIONS(2417), + [aux_sym_cmd_identifier_token12] = ACTIONS(2417), + [aux_sym_cmd_identifier_token13] = ACTIONS(2417), + [aux_sym_cmd_identifier_token14] = ACTIONS(2417), + [aux_sym_cmd_identifier_token15] = ACTIONS(2417), + [aux_sym_cmd_identifier_token16] = ACTIONS(2417), + [aux_sym_cmd_identifier_token17] = ACTIONS(2417), + [aux_sym_cmd_identifier_token18] = ACTIONS(2417), + [aux_sym_cmd_identifier_token19] = ACTIONS(2417), + [aux_sym_cmd_identifier_token20] = ACTIONS(2417), + [aux_sym_cmd_identifier_token21] = ACTIONS(2417), + [aux_sym_cmd_identifier_token22] = ACTIONS(2417), + [aux_sym_cmd_identifier_token23] = ACTIONS(2417), + [aux_sym_cmd_identifier_token24] = ACTIONS(2417), + [aux_sym_cmd_identifier_token25] = ACTIONS(2417), + [aux_sym_cmd_identifier_token26] = ACTIONS(2417), + [aux_sym_cmd_identifier_token27] = ACTIONS(2417), + [aux_sym_cmd_identifier_token28] = ACTIONS(2417), + [aux_sym_cmd_identifier_token29] = ACTIONS(2417), + [aux_sym_cmd_identifier_token30] = ACTIONS(2417), + [aux_sym_cmd_identifier_token31] = ACTIONS(2417), + [aux_sym_cmd_identifier_token32] = ACTIONS(2417), + [aux_sym_cmd_identifier_token33] = ACTIONS(2417), + [aux_sym_cmd_identifier_token34] = ACTIONS(2417), + [aux_sym_cmd_identifier_token35] = ACTIONS(2417), + [aux_sym_cmd_identifier_token36] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2419), + [anon_sym_false] = ACTIONS(2419), + [anon_sym_null] = ACTIONS(2419), + [aux_sym_cmd_identifier_token38] = ACTIONS(2417), + [aux_sym_cmd_identifier_token39] = ACTIONS(2419), + [aux_sym_cmd_identifier_token40] = ACTIONS(2419), + [anon_sym_def] = ACTIONS(2417), + [anon_sym_export_DASHenv] = ACTIONS(2417), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2419), + [anon_sym_error] = ACTIONS(2417), + [anon_sym_list] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_in] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_make] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_else] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_catch] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_source] = ACTIONS(2417), + [anon_sym_source_DASHenv] = ACTIONS(2417), + [anon_sym_register] = ACTIONS(2417), + [anon_sym_hide] = ACTIONS(2417), + [anon_sym_hide_DASHenv] = ACTIONS(2417), + [anon_sym_overlay] = ACTIONS(2417), + [anon_sym_new] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), + [aux_sym__val_number_decimal_token1] = ACTIONS(2417), + [aux_sym__val_number_decimal_token2] = ACTIONS(2419), + [aux_sym__val_number_decimal_token3] = ACTIONS(2419), + [aux_sym__val_number_decimal_token4] = ACTIONS(2419), + [aux_sym__val_number_token1] = ACTIONS(2419), + [aux_sym__val_number_token2] = ACTIONS(2419), + [aux_sym__val_number_token3] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(2419), + [sym__str_single_quotes] = ACTIONS(2419), + [sym__str_back_ticks] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(247), + }, + [616] = { + [sym_comment] = STATE(616), + [anon_sym_export] = ACTIONS(2421), + [anon_sym_alias] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_let_DASHenv] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [aux_sym_cmd_identifier_token1] = ACTIONS(2421), + [aux_sym_cmd_identifier_token2] = ACTIONS(2421), + [aux_sym_cmd_identifier_token3] = ACTIONS(2421), + [aux_sym_cmd_identifier_token4] = ACTIONS(2421), + [aux_sym_cmd_identifier_token5] = ACTIONS(2421), + [aux_sym_cmd_identifier_token6] = ACTIONS(2421), + [aux_sym_cmd_identifier_token7] = ACTIONS(2421), + [aux_sym_cmd_identifier_token8] = ACTIONS(2421), + [aux_sym_cmd_identifier_token9] = ACTIONS(2421), + [aux_sym_cmd_identifier_token10] = ACTIONS(2421), + [aux_sym_cmd_identifier_token11] = ACTIONS(2421), + [aux_sym_cmd_identifier_token12] = ACTIONS(2421), + [aux_sym_cmd_identifier_token13] = ACTIONS(2421), + [aux_sym_cmd_identifier_token14] = ACTIONS(2421), + [aux_sym_cmd_identifier_token15] = ACTIONS(2421), + [aux_sym_cmd_identifier_token16] = ACTIONS(2421), + [aux_sym_cmd_identifier_token17] = ACTIONS(2421), + [aux_sym_cmd_identifier_token18] = ACTIONS(2421), + [aux_sym_cmd_identifier_token19] = ACTIONS(2421), + [aux_sym_cmd_identifier_token20] = ACTIONS(2421), + [aux_sym_cmd_identifier_token21] = ACTIONS(2421), + [aux_sym_cmd_identifier_token22] = ACTIONS(2421), + [aux_sym_cmd_identifier_token23] = ACTIONS(2421), + [aux_sym_cmd_identifier_token24] = ACTIONS(2421), + [aux_sym_cmd_identifier_token25] = ACTIONS(2421), + [aux_sym_cmd_identifier_token26] = ACTIONS(2421), + [aux_sym_cmd_identifier_token27] = ACTIONS(2421), + [aux_sym_cmd_identifier_token28] = ACTIONS(2421), + [aux_sym_cmd_identifier_token29] = ACTIONS(2421), + [aux_sym_cmd_identifier_token30] = ACTIONS(2421), + [aux_sym_cmd_identifier_token31] = ACTIONS(2421), + [aux_sym_cmd_identifier_token32] = ACTIONS(2421), + [aux_sym_cmd_identifier_token33] = ACTIONS(2421), + [aux_sym_cmd_identifier_token34] = ACTIONS(2421), + [aux_sym_cmd_identifier_token35] = ACTIONS(2421), + [aux_sym_cmd_identifier_token36] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token38] = ACTIONS(2421), + [aux_sym_cmd_identifier_token39] = ACTIONS(2423), + [aux_sym_cmd_identifier_token40] = ACTIONS(2423), + [anon_sym_def] = ACTIONS(2421), + [anon_sym_export_DASHenv] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2423), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_list] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_in] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_make] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_catch] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_source] = ACTIONS(2421), + [anon_sym_source_DASHenv] = ACTIONS(2421), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2423), + [aux_sym__val_number_decimal_token1] = ACTIONS(2421), + [aux_sym__val_number_decimal_token2] = ACTIONS(2423), + [aux_sym__val_number_decimal_token3] = ACTIONS(2423), + [aux_sym__val_number_decimal_token4] = ACTIONS(2423), + [aux_sym__val_number_token1] = ACTIONS(2423), + [aux_sym__val_number_token2] = ACTIONS(2423), + [aux_sym__val_number_token3] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(2423), + [sym__str_single_quotes] = ACTIONS(2423), + [sym__str_back_ticks] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(247), + }, + [617] = { + [sym_comment] = STATE(617), [anon_sym_export] = ACTIONS(2281), [anon_sym_alias] = ACTIONS(2281), [anon_sym_let] = ACTIONS(2281), @@ -138974,13 +145814,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2281), [anon_sym_new] = ACTIONS(2281), [anon_sym_as] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2283), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2283), [aux_sym__val_number_decimal_token1] = ACTIONS(2281), [aux_sym__val_number_decimal_token2] = ACTIONS(2283), - [anon_sym_DOT2] = ACTIONS(2281), [aux_sym__val_number_decimal_token3] = ACTIONS(2283), + [aux_sym__val_number_decimal_token4] = ACTIONS(2283), [aux_sym__val_number_token1] = ACTIONS(2283), [aux_sym__val_number_token2] = ACTIONS(2283), [aux_sym__val_number_token3] = ACTIONS(2283), @@ -138988,14972 +145827,14170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2283), [sym__str_back_ticks] = ACTIONS(2283), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2283), - [anon_sym_POUND] = ACTIONS(3), - }, - [602] = { - [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(2285), - [anon_sym_alias] = ACTIONS(2285), - [anon_sym_let] = ACTIONS(2285), - [anon_sym_let_DASHenv] = ACTIONS(2285), - [anon_sym_mut] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [aux_sym_cmd_identifier_token1] = ACTIONS(2285), - [aux_sym_cmd_identifier_token2] = ACTIONS(2285), - [aux_sym_cmd_identifier_token3] = ACTIONS(2285), - [aux_sym_cmd_identifier_token4] = ACTIONS(2285), - [aux_sym_cmd_identifier_token5] = ACTIONS(2285), - [aux_sym_cmd_identifier_token6] = ACTIONS(2285), - [aux_sym_cmd_identifier_token7] = ACTIONS(2285), - [aux_sym_cmd_identifier_token8] = ACTIONS(2285), - [aux_sym_cmd_identifier_token9] = ACTIONS(2285), - [aux_sym_cmd_identifier_token10] = ACTIONS(2285), - [aux_sym_cmd_identifier_token11] = ACTIONS(2285), - [aux_sym_cmd_identifier_token12] = ACTIONS(2285), - [aux_sym_cmd_identifier_token13] = ACTIONS(2285), - [aux_sym_cmd_identifier_token14] = ACTIONS(2285), - [aux_sym_cmd_identifier_token15] = ACTIONS(2285), - [aux_sym_cmd_identifier_token16] = ACTIONS(2285), - [aux_sym_cmd_identifier_token17] = ACTIONS(2285), - [aux_sym_cmd_identifier_token18] = ACTIONS(2285), - [aux_sym_cmd_identifier_token19] = ACTIONS(2285), - [aux_sym_cmd_identifier_token20] = ACTIONS(2285), - [aux_sym_cmd_identifier_token21] = ACTIONS(2285), - [aux_sym_cmd_identifier_token22] = ACTIONS(2285), - [aux_sym_cmd_identifier_token23] = ACTIONS(2285), - [aux_sym_cmd_identifier_token24] = ACTIONS(2285), - [aux_sym_cmd_identifier_token25] = ACTIONS(2285), - [aux_sym_cmd_identifier_token26] = ACTIONS(2285), - [aux_sym_cmd_identifier_token27] = ACTIONS(2285), - [aux_sym_cmd_identifier_token28] = ACTIONS(2285), - [aux_sym_cmd_identifier_token29] = ACTIONS(2285), - [aux_sym_cmd_identifier_token30] = ACTIONS(2285), - [aux_sym_cmd_identifier_token31] = ACTIONS(2285), - [aux_sym_cmd_identifier_token32] = ACTIONS(2285), - [aux_sym_cmd_identifier_token33] = ACTIONS(2285), - [aux_sym_cmd_identifier_token34] = ACTIONS(2285), - [aux_sym_cmd_identifier_token35] = ACTIONS(2285), - [aux_sym_cmd_identifier_token36] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2287), - [anon_sym_false] = ACTIONS(2287), - [anon_sym_null] = ACTIONS(2287), - [aux_sym_cmd_identifier_token38] = ACTIONS(2285), - [aux_sym_cmd_identifier_token39] = ACTIONS(2287), - [aux_sym_cmd_identifier_token40] = ACTIONS(2287), - [anon_sym_def] = ACTIONS(2285), - [anon_sym_export_DASHenv] = ACTIONS(2285), - [anon_sym_extern] = ACTIONS(2285), - [anon_sym_module] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_error] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_in] = ACTIONS(2285), - [anon_sym_loop] = ACTIONS(2285), - [anon_sym_make] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_do] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_else] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_catch] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_source] = ACTIONS(2285), - [anon_sym_source_DASHenv] = ACTIONS(2285), - [anon_sym_register] = ACTIONS(2285), - [anon_sym_hide] = ACTIONS(2285), - [anon_sym_hide_DASHenv] = ACTIONS(2285), - [anon_sym_overlay] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_as] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2287), - [aux_sym__val_number_decimal_token1] = ACTIONS(2285), - [aux_sym__val_number_decimal_token2] = ACTIONS(2287), - [anon_sym_DOT2] = ACTIONS(2285), - [aux_sym__val_number_decimal_token3] = ACTIONS(2287), - [aux_sym__val_number_token1] = ACTIONS(2287), - [aux_sym__val_number_token2] = ACTIONS(2287), - [aux_sym__val_number_token3] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [sym__str_single_quotes] = ACTIONS(2287), - [sym__str_back_ticks] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - }, - [603] = { - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(2289), - [anon_sym_alias] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_let_DASHenv] = ACTIONS(2289), - [anon_sym_mut] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [aux_sym_cmd_identifier_token1] = ACTIONS(2289), - [aux_sym_cmd_identifier_token2] = ACTIONS(2289), - [aux_sym_cmd_identifier_token3] = ACTIONS(2289), - [aux_sym_cmd_identifier_token4] = ACTIONS(2289), - [aux_sym_cmd_identifier_token5] = ACTIONS(2289), - [aux_sym_cmd_identifier_token6] = ACTIONS(2289), - [aux_sym_cmd_identifier_token7] = ACTIONS(2289), - [aux_sym_cmd_identifier_token8] = ACTIONS(2289), - [aux_sym_cmd_identifier_token9] = ACTIONS(2289), - [aux_sym_cmd_identifier_token10] = ACTIONS(2289), - [aux_sym_cmd_identifier_token11] = ACTIONS(2289), - [aux_sym_cmd_identifier_token12] = ACTIONS(2289), - [aux_sym_cmd_identifier_token13] = ACTIONS(2289), - [aux_sym_cmd_identifier_token14] = ACTIONS(2289), - [aux_sym_cmd_identifier_token15] = ACTIONS(2289), - [aux_sym_cmd_identifier_token16] = ACTIONS(2289), - [aux_sym_cmd_identifier_token17] = ACTIONS(2289), - [aux_sym_cmd_identifier_token18] = ACTIONS(2289), - [aux_sym_cmd_identifier_token19] = ACTIONS(2289), - [aux_sym_cmd_identifier_token20] = ACTIONS(2289), - [aux_sym_cmd_identifier_token21] = ACTIONS(2289), - [aux_sym_cmd_identifier_token22] = ACTIONS(2289), - [aux_sym_cmd_identifier_token23] = ACTIONS(2289), - [aux_sym_cmd_identifier_token24] = ACTIONS(2289), - [aux_sym_cmd_identifier_token25] = ACTIONS(2289), - [aux_sym_cmd_identifier_token26] = ACTIONS(2289), - [aux_sym_cmd_identifier_token27] = ACTIONS(2289), - [aux_sym_cmd_identifier_token28] = ACTIONS(2289), - [aux_sym_cmd_identifier_token29] = ACTIONS(2289), - [aux_sym_cmd_identifier_token30] = ACTIONS(2289), - [aux_sym_cmd_identifier_token31] = ACTIONS(2289), - [aux_sym_cmd_identifier_token32] = ACTIONS(2289), - [aux_sym_cmd_identifier_token33] = ACTIONS(2289), - [aux_sym_cmd_identifier_token34] = ACTIONS(2289), - [aux_sym_cmd_identifier_token35] = ACTIONS(2289), - [aux_sym_cmd_identifier_token36] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(2291), - [anon_sym_false] = ACTIONS(2291), - [anon_sym_null] = ACTIONS(2291), - [aux_sym_cmd_identifier_token38] = ACTIONS(2289), - [aux_sym_cmd_identifier_token39] = ACTIONS(2291), - [aux_sym_cmd_identifier_token40] = ACTIONS(2291), - [anon_sym_def] = ACTIONS(2289), - [anon_sym_export_DASHenv] = ACTIONS(2289), - [anon_sym_extern] = ACTIONS(2289), - [anon_sym_module] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_error] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_loop] = ACTIONS(2289), - [anon_sym_make] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_catch] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_source] = ACTIONS(2289), - [anon_sym_source_DASHenv] = ACTIONS(2289), - [anon_sym_register] = ACTIONS(2289), - [anon_sym_hide] = ACTIONS(2289), - [anon_sym_hide_DASHenv] = ACTIONS(2289), - [anon_sym_overlay] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2291), - [aux_sym__val_number_decimal_token1] = ACTIONS(2289), - [aux_sym__val_number_decimal_token2] = ACTIONS(2291), - [anon_sym_DOT2] = ACTIONS(2289), - [aux_sym__val_number_decimal_token3] = ACTIONS(2291), - [aux_sym__val_number_token1] = ACTIONS(2291), - [aux_sym__val_number_token2] = ACTIONS(2291), - [aux_sym__val_number_token3] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(2291), - [sym__str_single_quotes] = ACTIONS(2291), - [sym__str_back_ticks] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2291), - [anon_sym_POUND] = ACTIONS(3), - }, - [604] = { - [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(2293), - [anon_sym_alias] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2293), - [anon_sym_let_DASHenv] = ACTIONS(2293), - [anon_sym_mut] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [aux_sym_cmd_identifier_token1] = ACTIONS(2293), - [aux_sym_cmd_identifier_token2] = ACTIONS(2293), - [aux_sym_cmd_identifier_token3] = ACTIONS(2293), - [aux_sym_cmd_identifier_token4] = ACTIONS(2293), - [aux_sym_cmd_identifier_token5] = ACTIONS(2293), - [aux_sym_cmd_identifier_token6] = ACTIONS(2293), - [aux_sym_cmd_identifier_token7] = ACTIONS(2293), - [aux_sym_cmd_identifier_token8] = ACTIONS(2293), - [aux_sym_cmd_identifier_token9] = ACTIONS(2293), - [aux_sym_cmd_identifier_token10] = ACTIONS(2293), - [aux_sym_cmd_identifier_token11] = ACTIONS(2293), - [aux_sym_cmd_identifier_token12] = ACTIONS(2293), - [aux_sym_cmd_identifier_token13] = ACTIONS(2293), - [aux_sym_cmd_identifier_token14] = ACTIONS(2293), - [aux_sym_cmd_identifier_token15] = ACTIONS(2293), - [aux_sym_cmd_identifier_token16] = ACTIONS(2293), - [aux_sym_cmd_identifier_token17] = ACTIONS(2293), - [aux_sym_cmd_identifier_token18] = ACTIONS(2293), - [aux_sym_cmd_identifier_token19] = ACTIONS(2293), - [aux_sym_cmd_identifier_token20] = ACTIONS(2293), - [aux_sym_cmd_identifier_token21] = ACTIONS(2293), - [aux_sym_cmd_identifier_token22] = ACTIONS(2293), - [aux_sym_cmd_identifier_token23] = ACTIONS(2293), - [aux_sym_cmd_identifier_token24] = ACTIONS(2293), - [aux_sym_cmd_identifier_token25] = ACTIONS(2293), - [aux_sym_cmd_identifier_token26] = ACTIONS(2293), - [aux_sym_cmd_identifier_token27] = ACTIONS(2293), - [aux_sym_cmd_identifier_token28] = ACTIONS(2293), - [aux_sym_cmd_identifier_token29] = ACTIONS(2293), - [aux_sym_cmd_identifier_token30] = ACTIONS(2293), - [aux_sym_cmd_identifier_token31] = ACTIONS(2293), - [aux_sym_cmd_identifier_token32] = ACTIONS(2293), - [aux_sym_cmd_identifier_token33] = ACTIONS(2293), - [aux_sym_cmd_identifier_token34] = ACTIONS(2293), - [aux_sym_cmd_identifier_token35] = ACTIONS(2293), - [aux_sym_cmd_identifier_token36] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2295), - [anon_sym_false] = ACTIONS(2295), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token38] = ACTIONS(2293), - [aux_sym_cmd_identifier_token39] = ACTIONS(2295), - [aux_sym_cmd_identifier_token40] = ACTIONS(2295), - [anon_sym_def] = ACTIONS(2293), - [anon_sym_export_DASHenv] = ACTIONS(2293), - [anon_sym_extern] = ACTIONS(2293), - [anon_sym_module] = ACTIONS(2293), - [anon_sym_use] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_error] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_in] = ACTIONS(2293), - [anon_sym_loop] = ACTIONS(2293), - [anon_sym_make] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_catch] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_source] = ACTIONS(2293), - [anon_sym_source_DASHenv] = ACTIONS(2293), - [anon_sym_register] = ACTIONS(2293), - [anon_sym_hide] = ACTIONS(2293), - [anon_sym_hide_DASHenv] = ACTIONS(2293), - [anon_sym_overlay] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_as] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2295), - [aux_sym__val_number_decimal_token1] = ACTIONS(2293), - [aux_sym__val_number_decimal_token2] = ACTIONS(2295), - [anon_sym_DOT2] = ACTIONS(2293), - [aux_sym__val_number_decimal_token3] = ACTIONS(2295), - [aux_sym__val_number_token1] = ACTIONS(2295), - [aux_sym__val_number_token2] = ACTIONS(2295), - [aux_sym__val_number_token3] = ACTIONS(2295), - [anon_sym_DQUOTE] = ACTIONS(2295), - [sym__str_single_quotes] = ACTIONS(2295), - [sym__str_back_ticks] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2295), - [anon_sym_POUND] = ACTIONS(3), - }, - [605] = { - [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_alias] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_let_DASHenv] = ACTIONS(2297), - [anon_sym_mut] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [aux_sym_cmd_identifier_token1] = ACTIONS(2297), - [aux_sym_cmd_identifier_token2] = ACTIONS(2297), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), - [aux_sym_cmd_identifier_token6] = ACTIONS(2297), - [aux_sym_cmd_identifier_token7] = ACTIONS(2297), - [aux_sym_cmd_identifier_token8] = ACTIONS(2297), - [aux_sym_cmd_identifier_token9] = ACTIONS(2297), - [aux_sym_cmd_identifier_token10] = ACTIONS(2297), - [aux_sym_cmd_identifier_token11] = ACTIONS(2297), - [aux_sym_cmd_identifier_token12] = ACTIONS(2297), - [aux_sym_cmd_identifier_token13] = ACTIONS(2297), - [aux_sym_cmd_identifier_token14] = ACTIONS(2297), - [aux_sym_cmd_identifier_token15] = ACTIONS(2297), - [aux_sym_cmd_identifier_token16] = ACTIONS(2297), - [aux_sym_cmd_identifier_token17] = ACTIONS(2297), - [aux_sym_cmd_identifier_token18] = ACTIONS(2297), - [aux_sym_cmd_identifier_token19] = ACTIONS(2297), - [aux_sym_cmd_identifier_token20] = ACTIONS(2297), - [aux_sym_cmd_identifier_token21] = ACTIONS(2297), - [aux_sym_cmd_identifier_token22] = ACTIONS(2297), - [aux_sym_cmd_identifier_token23] = ACTIONS(2297), - [aux_sym_cmd_identifier_token24] = ACTIONS(2297), - [aux_sym_cmd_identifier_token25] = ACTIONS(2297), - [aux_sym_cmd_identifier_token26] = ACTIONS(2297), - [aux_sym_cmd_identifier_token27] = ACTIONS(2297), - [aux_sym_cmd_identifier_token28] = ACTIONS(2297), - [aux_sym_cmd_identifier_token29] = ACTIONS(2297), - [aux_sym_cmd_identifier_token30] = ACTIONS(2297), - [aux_sym_cmd_identifier_token31] = ACTIONS(2297), - [aux_sym_cmd_identifier_token32] = ACTIONS(2297), - [aux_sym_cmd_identifier_token33] = ACTIONS(2297), - [aux_sym_cmd_identifier_token34] = ACTIONS(2297), - [aux_sym_cmd_identifier_token35] = ACTIONS(2297), - [aux_sym_cmd_identifier_token36] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [anon_sym_null] = ACTIONS(2299), - [aux_sym_cmd_identifier_token38] = ACTIONS(2297), - [aux_sym_cmd_identifier_token39] = ACTIONS(2299), - [aux_sym_cmd_identifier_token40] = ACTIONS(2299), - [anon_sym_def] = ACTIONS(2297), - [anon_sym_export_DASHenv] = ACTIONS(2297), - [anon_sym_extern] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2299), - [anon_sym_error] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_loop] = ACTIONS(2297), - [anon_sym_make] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_catch] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_source] = ACTIONS(2297), - [anon_sym_source_DASHenv] = ACTIONS(2297), - [anon_sym_register] = ACTIONS(2297), - [anon_sym_hide] = ACTIONS(2297), - [anon_sym_hide_DASHenv] = ACTIONS(2297), - [anon_sym_overlay] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2299), - [aux_sym__val_number_decimal_token1] = ACTIONS(2297), - [aux_sym__val_number_decimal_token2] = ACTIONS(2299), - [anon_sym_DOT2] = ACTIONS(2297), - [aux_sym__val_number_decimal_token3] = ACTIONS(2299), - [aux_sym__val_number_token1] = ACTIONS(2299), - [aux_sym__val_number_token2] = ACTIONS(2299), - [aux_sym__val_number_token3] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(2299), - [sym__str_single_quotes] = ACTIONS(2299), - [sym__str_back_ticks] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(2301), - [anon_sym_alias] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_let_DASHenv] = ACTIONS(2301), - [anon_sym_mut] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [aux_sym_cmd_identifier_token1] = ACTIONS(2301), - [aux_sym_cmd_identifier_token2] = ACTIONS(2301), - [aux_sym_cmd_identifier_token3] = ACTIONS(2301), - [aux_sym_cmd_identifier_token4] = ACTIONS(2301), - [aux_sym_cmd_identifier_token5] = ACTIONS(2301), - [aux_sym_cmd_identifier_token6] = ACTIONS(2301), - [aux_sym_cmd_identifier_token7] = ACTIONS(2301), - [aux_sym_cmd_identifier_token8] = ACTIONS(2301), - [aux_sym_cmd_identifier_token9] = ACTIONS(2301), - [aux_sym_cmd_identifier_token10] = ACTIONS(2301), - [aux_sym_cmd_identifier_token11] = ACTIONS(2301), - [aux_sym_cmd_identifier_token12] = ACTIONS(2301), - [aux_sym_cmd_identifier_token13] = ACTIONS(2301), - [aux_sym_cmd_identifier_token14] = ACTIONS(2301), - [aux_sym_cmd_identifier_token15] = ACTIONS(2301), - [aux_sym_cmd_identifier_token16] = ACTIONS(2301), - [aux_sym_cmd_identifier_token17] = ACTIONS(2301), - [aux_sym_cmd_identifier_token18] = ACTIONS(2301), - [aux_sym_cmd_identifier_token19] = ACTIONS(2301), - [aux_sym_cmd_identifier_token20] = ACTIONS(2301), - [aux_sym_cmd_identifier_token21] = ACTIONS(2301), - [aux_sym_cmd_identifier_token22] = ACTIONS(2301), - [aux_sym_cmd_identifier_token23] = ACTIONS(2301), - [aux_sym_cmd_identifier_token24] = ACTIONS(2301), - [aux_sym_cmd_identifier_token25] = ACTIONS(2301), - [aux_sym_cmd_identifier_token26] = ACTIONS(2301), - [aux_sym_cmd_identifier_token27] = ACTIONS(2301), - [aux_sym_cmd_identifier_token28] = ACTIONS(2301), - [aux_sym_cmd_identifier_token29] = ACTIONS(2301), - [aux_sym_cmd_identifier_token30] = ACTIONS(2301), - [aux_sym_cmd_identifier_token31] = ACTIONS(2301), - [aux_sym_cmd_identifier_token32] = ACTIONS(2301), - [aux_sym_cmd_identifier_token33] = ACTIONS(2301), - [aux_sym_cmd_identifier_token34] = ACTIONS(2301), - [aux_sym_cmd_identifier_token35] = ACTIONS(2301), - [aux_sym_cmd_identifier_token36] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2303), - [anon_sym_false] = ACTIONS(2303), - [anon_sym_null] = ACTIONS(2303), - [aux_sym_cmd_identifier_token38] = ACTIONS(2301), - [aux_sym_cmd_identifier_token39] = ACTIONS(2303), - [aux_sym_cmd_identifier_token40] = ACTIONS(2303), - [anon_sym_def] = ACTIONS(2301), - [anon_sym_export_DASHenv] = ACTIONS(2301), - [anon_sym_extern] = ACTIONS(2301), - [anon_sym_module] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_error] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_in] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_make] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_do] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_else] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_catch] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_source] = ACTIONS(2301), - [anon_sym_source_DASHenv] = ACTIONS(2301), - [anon_sym_register] = ACTIONS(2301), - [anon_sym_hide] = ACTIONS(2301), - [anon_sym_hide_DASHenv] = ACTIONS(2301), - [anon_sym_overlay] = ACTIONS(2301), - [anon_sym_new] = ACTIONS(2301), - [anon_sym_as] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2303), - [aux_sym__val_number_decimal_token1] = ACTIONS(2301), - [aux_sym__val_number_decimal_token2] = ACTIONS(2303), - [anon_sym_DOT2] = ACTIONS(2301), - [aux_sym__val_number_decimal_token3] = ACTIONS(2303), - [aux_sym__val_number_token1] = ACTIONS(2303), - [aux_sym__val_number_token2] = ACTIONS(2303), - [aux_sym__val_number_token3] = ACTIONS(2303), - [anon_sym_DQUOTE] = ACTIONS(2303), - [sym__str_single_quotes] = ACTIONS(2303), - [sym__str_back_ticks] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2303), - [anon_sym_POUND] = ACTIONS(3), - }, - [607] = { - [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_alias] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_let_DASHenv] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [aux_sym_cmd_identifier_token1] = ACTIONS(2305), - [aux_sym_cmd_identifier_token2] = ACTIONS(2305), - [aux_sym_cmd_identifier_token3] = ACTIONS(2305), - [aux_sym_cmd_identifier_token4] = ACTIONS(2305), - [aux_sym_cmd_identifier_token5] = ACTIONS(2305), - [aux_sym_cmd_identifier_token6] = ACTIONS(2305), - [aux_sym_cmd_identifier_token7] = ACTIONS(2305), - [aux_sym_cmd_identifier_token8] = ACTIONS(2305), - [aux_sym_cmd_identifier_token9] = ACTIONS(2305), - [aux_sym_cmd_identifier_token10] = ACTIONS(2305), - [aux_sym_cmd_identifier_token11] = ACTIONS(2305), - [aux_sym_cmd_identifier_token12] = ACTIONS(2305), - [aux_sym_cmd_identifier_token13] = ACTIONS(2305), - [aux_sym_cmd_identifier_token14] = ACTIONS(2305), - [aux_sym_cmd_identifier_token15] = ACTIONS(2305), - [aux_sym_cmd_identifier_token16] = ACTIONS(2305), - [aux_sym_cmd_identifier_token17] = ACTIONS(2305), - [aux_sym_cmd_identifier_token18] = ACTIONS(2305), - [aux_sym_cmd_identifier_token19] = ACTIONS(2305), - [aux_sym_cmd_identifier_token20] = ACTIONS(2305), - [aux_sym_cmd_identifier_token21] = ACTIONS(2305), - [aux_sym_cmd_identifier_token22] = ACTIONS(2305), - [aux_sym_cmd_identifier_token23] = ACTIONS(2305), - [aux_sym_cmd_identifier_token24] = ACTIONS(2305), - [aux_sym_cmd_identifier_token25] = ACTIONS(2305), - [aux_sym_cmd_identifier_token26] = ACTIONS(2305), - [aux_sym_cmd_identifier_token27] = ACTIONS(2305), - [aux_sym_cmd_identifier_token28] = ACTIONS(2305), - [aux_sym_cmd_identifier_token29] = ACTIONS(2305), - [aux_sym_cmd_identifier_token30] = ACTIONS(2305), - [aux_sym_cmd_identifier_token31] = ACTIONS(2305), - [aux_sym_cmd_identifier_token32] = ACTIONS(2305), - [aux_sym_cmd_identifier_token33] = ACTIONS(2305), - [aux_sym_cmd_identifier_token34] = ACTIONS(2305), - [aux_sym_cmd_identifier_token35] = ACTIONS(2305), - [aux_sym_cmd_identifier_token36] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2307), - [anon_sym_false] = ACTIONS(2307), - [anon_sym_null] = ACTIONS(2307), - [aux_sym_cmd_identifier_token38] = ACTIONS(2305), - [aux_sym_cmd_identifier_token39] = ACTIONS(2307), - [aux_sym_cmd_identifier_token40] = ACTIONS(2307), - [anon_sym_def] = ACTIONS(2305), - [anon_sym_export_DASHenv] = ACTIONS(2305), - [anon_sym_extern] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_error] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_in] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_make] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_catch] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_source] = ACTIONS(2305), - [anon_sym_source_DASHenv] = ACTIONS(2305), - [anon_sym_register] = ACTIONS(2305), - [anon_sym_hide] = ACTIONS(2305), - [anon_sym_hide_DASHenv] = ACTIONS(2305), - [anon_sym_overlay] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2305), - [aux_sym__val_number_decimal_token2] = ACTIONS(2307), - [anon_sym_DOT2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_token1] = ACTIONS(2307), - [aux_sym__val_number_token2] = ACTIONS(2307), - [aux_sym__val_number_token3] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym__str_single_quotes] = ACTIONS(2307), - [sym__str_back_ticks] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2307), - [anon_sym_POUND] = ACTIONS(3), - }, - [608] = { - [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(2309), - [anon_sym_alias] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_let_DASHenv] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [aux_sym_cmd_identifier_token1] = ACTIONS(2309), - [aux_sym_cmd_identifier_token2] = ACTIONS(2309), - [aux_sym_cmd_identifier_token3] = ACTIONS(2309), - [aux_sym_cmd_identifier_token4] = ACTIONS(2309), - [aux_sym_cmd_identifier_token5] = ACTIONS(2309), - [aux_sym_cmd_identifier_token6] = ACTIONS(2309), - [aux_sym_cmd_identifier_token7] = ACTIONS(2309), - [aux_sym_cmd_identifier_token8] = ACTIONS(2309), - [aux_sym_cmd_identifier_token9] = ACTIONS(2309), - [aux_sym_cmd_identifier_token10] = ACTIONS(2309), - [aux_sym_cmd_identifier_token11] = ACTIONS(2309), - [aux_sym_cmd_identifier_token12] = ACTIONS(2309), - [aux_sym_cmd_identifier_token13] = ACTIONS(2309), - [aux_sym_cmd_identifier_token14] = ACTIONS(2309), - [aux_sym_cmd_identifier_token15] = ACTIONS(2309), - [aux_sym_cmd_identifier_token16] = ACTIONS(2309), - [aux_sym_cmd_identifier_token17] = ACTIONS(2309), - [aux_sym_cmd_identifier_token18] = ACTIONS(2309), - [aux_sym_cmd_identifier_token19] = ACTIONS(2309), - [aux_sym_cmd_identifier_token20] = ACTIONS(2309), - [aux_sym_cmd_identifier_token21] = ACTIONS(2309), - [aux_sym_cmd_identifier_token22] = ACTIONS(2309), - [aux_sym_cmd_identifier_token23] = ACTIONS(2309), - [aux_sym_cmd_identifier_token24] = ACTIONS(2309), - [aux_sym_cmd_identifier_token25] = ACTIONS(2309), - [aux_sym_cmd_identifier_token26] = ACTIONS(2309), - [aux_sym_cmd_identifier_token27] = ACTIONS(2309), - [aux_sym_cmd_identifier_token28] = ACTIONS(2309), - [aux_sym_cmd_identifier_token29] = ACTIONS(2309), - [aux_sym_cmd_identifier_token30] = ACTIONS(2309), - [aux_sym_cmd_identifier_token31] = ACTIONS(2309), - [aux_sym_cmd_identifier_token32] = ACTIONS(2309), - [aux_sym_cmd_identifier_token33] = ACTIONS(2309), - [aux_sym_cmd_identifier_token34] = ACTIONS(2309), - [aux_sym_cmd_identifier_token35] = ACTIONS(2309), - [aux_sym_cmd_identifier_token36] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2311), - [anon_sym_false] = ACTIONS(2311), - [anon_sym_null] = ACTIONS(2311), - [aux_sym_cmd_identifier_token38] = ACTIONS(2309), - [aux_sym_cmd_identifier_token39] = ACTIONS(2311), - [aux_sym_cmd_identifier_token40] = ACTIONS(2311), - [anon_sym_def] = ACTIONS(2309), - [anon_sym_export_DASHenv] = ACTIONS(2309), - [anon_sym_extern] = ACTIONS(2309), - [anon_sym_module] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_error] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_make] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_catch] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_source] = ACTIONS(2309), - [anon_sym_source_DASHenv] = ACTIONS(2309), - [anon_sym_register] = ACTIONS(2309), - [anon_sym_hide] = ACTIONS(2309), - [anon_sym_hide_DASHenv] = ACTIONS(2309), - [anon_sym_overlay] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), - [aux_sym__val_number_decimal_token1] = ACTIONS(2309), - [aux_sym__val_number_decimal_token2] = ACTIONS(2311), - [anon_sym_DOT2] = ACTIONS(2309), - [aux_sym__val_number_decimal_token3] = ACTIONS(2311), - [aux_sym__val_number_token1] = ACTIONS(2311), - [aux_sym__val_number_token2] = ACTIONS(2311), - [aux_sym__val_number_token3] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(2311), - [sym__str_single_quotes] = ACTIONS(2311), - [sym__str_back_ticks] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), - [anon_sym_POUND] = ACTIONS(3), - }, - [609] = { - [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_alias] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_let_DASHenv] = ACTIONS(2313), - [anon_sym_mut] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [aux_sym_cmd_identifier_token1] = ACTIONS(2313), - [aux_sym_cmd_identifier_token2] = ACTIONS(2313), - [aux_sym_cmd_identifier_token3] = ACTIONS(2313), - [aux_sym_cmd_identifier_token4] = ACTIONS(2313), - [aux_sym_cmd_identifier_token5] = ACTIONS(2313), - [aux_sym_cmd_identifier_token6] = ACTIONS(2313), - [aux_sym_cmd_identifier_token7] = ACTIONS(2313), - [aux_sym_cmd_identifier_token8] = ACTIONS(2313), - [aux_sym_cmd_identifier_token9] = ACTIONS(2313), - [aux_sym_cmd_identifier_token10] = ACTIONS(2313), - [aux_sym_cmd_identifier_token11] = ACTIONS(2313), - [aux_sym_cmd_identifier_token12] = ACTIONS(2313), - [aux_sym_cmd_identifier_token13] = ACTIONS(2313), - [aux_sym_cmd_identifier_token14] = ACTIONS(2313), - [aux_sym_cmd_identifier_token15] = ACTIONS(2313), - [aux_sym_cmd_identifier_token16] = ACTIONS(2313), - [aux_sym_cmd_identifier_token17] = ACTIONS(2313), - [aux_sym_cmd_identifier_token18] = ACTIONS(2313), - [aux_sym_cmd_identifier_token19] = ACTIONS(2313), - [aux_sym_cmd_identifier_token20] = ACTIONS(2313), - [aux_sym_cmd_identifier_token21] = ACTIONS(2313), - [aux_sym_cmd_identifier_token22] = ACTIONS(2313), - [aux_sym_cmd_identifier_token23] = ACTIONS(2313), - [aux_sym_cmd_identifier_token24] = ACTIONS(2313), - [aux_sym_cmd_identifier_token25] = ACTIONS(2313), - [aux_sym_cmd_identifier_token26] = ACTIONS(2313), - [aux_sym_cmd_identifier_token27] = ACTIONS(2313), - [aux_sym_cmd_identifier_token28] = ACTIONS(2313), - [aux_sym_cmd_identifier_token29] = ACTIONS(2313), - [aux_sym_cmd_identifier_token30] = ACTIONS(2313), - [aux_sym_cmd_identifier_token31] = ACTIONS(2313), - [aux_sym_cmd_identifier_token32] = ACTIONS(2313), - [aux_sym_cmd_identifier_token33] = ACTIONS(2313), - [aux_sym_cmd_identifier_token34] = ACTIONS(2313), - [aux_sym_cmd_identifier_token35] = ACTIONS(2313), - [aux_sym_cmd_identifier_token36] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2315), - [anon_sym_false] = ACTIONS(2315), - [anon_sym_null] = ACTIONS(2315), - [aux_sym_cmd_identifier_token38] = ACTIONS(2313), - [aux_sym_cmd_identifier_token39] = ACTIONS(2315), - [aux_sym_cmd_identifier_token40] = ACTIONS(2315), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_export_DASHenv] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2315), - [anon_sym_error] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_in] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_make] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_catch] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_source] = ACTIONS(2313), - [anon_sym_source_DASHenv] = ACTIONS(2313), - [anon_sym_register] = ACTIONS(2313), - [anon_sym_hide] = ACTIONS(2313), - [anon_sym_hide_DASHenv] = ACTIONS(2313), - [anon_sym_overlay] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2313), - [aux_sym__val_number_decimal_token2] = ACTIONS(2315), - [anon_sym_DOT2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2315), - [aux_sym__val_number_token1] = ACTIONS(2315), - [aux_sym__val_number_token2] = ACTIONS(2315), - [aux_sym__val_number_token3] = ACTIONS(2315), - [anon_sym_DQUOTE] = ACTIONS(2315), - [sym__str_single_quotes] = ACTIONS(2315), - [sym__str_back_ticks] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2315), - [anon_sym_POUND] = ACTIONS(3), - }, - [610] = { - [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(2317), - [anon_sym_alias] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_let_DASHenv] = ACTIONS(2317), - [anon_sym_mut] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [aux_sym_cmd_identifier_token1] = ACTIONS(2317), - [aux_sym_cmd_identifier_token2] = ACTIONS(2317), - [aux_sym_cmd_identifier_token3] = ACTIONS(2317), - [aux_sym_cmd_identifier_token4] = ACTIONS(2317), - [aux_sym_cmd_identifier_token5] = ACTIONS(2317), - [aux_sym_cmd_identifier_token6] = ACTIONS(2317), - [aux_sym_cmd_identifier_token7] = ACTIONS(2317), - [aux_sym_cmd_identifier_token8] = ACTIONS(2317), - [aux_sym_cmd_identifier_token9] = ACTIONS(2317), - [aux_sym_cmd_identifier_token10] = ACTIONS(2317), - [aux_sym_cmd_identifier_token11] = ACTIONS(2317), - [aux_sym_cmd_identifier_token12] = ACTIONS(2317), - [aux_sym_cmd_identifier_token13] = ACTIONS(2317), - [aux_sym_cmd_identifier_token14] = ACTIONS(2317), - [aux_sym_cmd_identifier_token15] = ACTIONS(2317), - [aux_sym_cmd_identifier_token16] = ACTIONS(2317), - [aux_sym_cmd_identifier_token17] = ACTIONS(2317), - [aux_sym_cmd_identifier_token18] = ACTIONS(2317), - [aux_sym_cmd_identifier_token19] = ACTIONS(2317), - [aux_sym_cmd_identifier_token20] = ACTIONS(2317), - [aux_sym_cmd_identifier_token21] = ACTIONS(2317), - [aux_sym_cmd_identifier_token22] = ACTIONS(2317), - [aux_sym_cmd_identifier_token23] = ACTIONS(2317), - [aux_sym_cmd_identifier_token24] = ACTIONS(2317), - [aux_sym_cmd_identifier_token25] = ACTIONS(2317), - [aux_sym_cmd_identifier_token26] = ACTIONS(2317), - [aux_sym_cmd_identifier_token27] = ACTIONS(2317), - [aux_sym_cmd_identifier_token28] = ACTIONS(2317), - [aux_sym_cmd_identifier_token29] = ACTIONS(2317), - [aux_sym_cmd_identifier_token30] = ACTIONS(2317), - [aux_sym_cmd_identifier_token31] = ACTIONS(2317), - [aux_sym_cmd_identifier_token32] = ACTIONS(2317), - [aux_sym_cmd_identifier_token33] = ACTIONS(2317), - [aux_sym_cmd_identifier_token34] = ACTIONS(2317), - [aux_sym_cmd_identifier_token35] = ACTIONS(2317), - [aux_sym_cmd_identifier_token36] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token38] = ACTIONS(2317), - [aux_sym_cmd_identifier_token39] = ACTIONS(2319), - [aux_sym_cmd_identifier_token40] = ACTIONS(2319), - [anon_sym_def] = ACTIONS(2317), - [anon_sym_export_DASHenv] = ACTIONS(2317), - [anon_sym_extern] = ACTIONS(2317), - [anon_sym_module] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_DOLLAR] = ACTIONS(2319), - [anon_sym_error] = ACTIONS(2317), - [anon_sym_list] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_in] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_make] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_catch] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_source] = ACTIONS(2317), - [anon_sym_source_DASHenv] = ACTIONS(2317), - [anon_sym_register] = ACTIONS(2317), - [anon_sym_hide] = ACTIONS(2317), - [anon_sym_hide_DASHenv] = ACTIONS(2317), - [anon_sym_overlay] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_as] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2319), - [aux_sym__val_number_decimal_token1] = ACTIONS(2317), - [aux_sym__val_number_decimal_token2] = ACTIONS(2319), - [anon_sym_DOT2] = ACTIONS(2317), - [aux_sym__val_number_decimal_token3] = ACTIONS(2319), - [aux_sym__val_number_token1] = ACTIONS(2319), - [aux_sym__val_number_token2] = ACTIONS(2319), - [aux_sym__val_number_token3] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym__str_single_quotes] = ACTIONS(2319), - [sym__str_back_ticks] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2319), - [anon_sym_POUND] = ACTIONS(3), - }, - [611] = { - [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_alias] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_let_DASHenv] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [aux_sym_cmd_identifier_token1] = ACTIONS(2230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2230), - [aux_sym_cmd_identifier_token3] = ACTIONS(2230), - [aux_sym_cmd_identifier_token4] = ACTIONS(2230), - [aux_sym_cmd_identifier_token5] = ACTIONS(2230), - [aux_sym_cmd_identifier_token6] = ACTIONS(2230), - [aux_sym_cmd_identifier_token7] = ACTIONS(2230), - [aux_sym_cmd_identifier_token8] = ACTIONS(2230), - [aux_sym_cmd_identifier_token9] = ACTIONS(2230), - [aux_sym_cmd_identifier_token10] = ACTIONS(2230), - [aux_sym_cmd_identifier_token11] = ACTIONS(2230), - [aux_sym_cmd_identifier_token12] = ACTIONS(2230), - [aux_sym_cmd_identifier_token13] = ACTIONS(2230), - [aux_sym_cmd_identifier_token14] = ACTIONS(2230), - [aux_sym_cmd_identifier_token15] = ACTIONS(2230), - [aux_sym_cmd_identifier_token16] = ACTIONS(2230), - [aux_sym_cmd_identifier_token17] = ACTIONS(2230), - [aux_sym_cmd_identifier_token18] = ACTIONS(2230), - [aux_sym_cmd_identifier_token19] = ACTIONS(2230), - [aux_sym_cmd_identifier_token20] = ACTIONS(2230), - [aux_sym_cmd_identifier_token21] = ACTIONS(2230), - [aux_sym_cmd_identifier_token22] = ACTIONS(2230), - [aux_sym_cmd_identifier_token23] = ACTIONS(2230), - [aux_sym_cmd_identifier_token24] = ACTIONS(2230), - [aux_sym_cmd_identifier_token25] = ACTIONS(2230), - [aux_sym_cmd_identifier_token26] = ACTIONS(2230), - [aux_sym_cmd_identifier_token27] = ACTIONS(2230), - [aux_sym_cmd_identifier_token28] = ACTIONS(2230), - [aux_sym_cmd_identifier_token29] = ACTIONS(2230), - [aux_sym_cmd_identifier_token30] = ACTIONS(2230), - [aux_sym_cmd_identifier_token31] = ACTIONS(2230), - [aux_sym_cmd_identifier_token32] = ACTIONS(2230), - [aux_sym_cmd_identifier_token33] = ACTIONS(2230), - [aux_sym_cmd_identifier_token34] = ACTIONS(2230), - [aux_sym_cmd_identifier_token35] = ACTIONS(2230), - [aux_sym_cmd_identifier_token36] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_null] = ACTIONS(2232), - [aux_sym_cmd_identifier_token38] = ACTIONS(2230), - [aux_sym_cmd_identifier_token39] = ACTIONS(2232), - [aux_sym_cmd_identifier_token40] = ACTIONS(2232), - [anon_sym_def] = ACTIONS(2230), - [anon_sym_export_DASHenv] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2232), - [anon_sym_error] = ACTIONS(2230), - [anon_sym_list] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_make] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_source] = ACTIONS(2230), - [anon_sym_source_DASHenv] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_hide] = ACTIONS(2230), - [anon_sym_hide_DASHenv] = ACTIONS(2230), - [anon_sym_overlay] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2232), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2232), - [anon_sym_DOT2] = ACTIONS(2230), - [aux_sym__val_number_decimal_token3] = ACTIONS(2232), - [aux_sym__val_number_token1] = ACTIONS(2232), - [aux_sym__val_number_token2] = ACTIONS(2232), - [aux_sym__val_number_token3] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym__str_single_quotes] = ACTIONS(2232), - [sym__str_back_ticks] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(3), - }, - [612] = { - [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(2248), - [anon_sym_alias] = ACTIONS(2248), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_let_DASHenv] = ACTIONS(2248), - [anon_sym_mut] = ACTIONS(2248), - [anon_sym_const] = ACTIONS(2248), - [aux_sym_cmd_identifier_token1] = ACTIONS(2248), - [aux_sym_cmd_identifier_token2] = ACTIONS(2248), - [aux_sym_cmd_identifier_token3] = ACTIONS(2248), - [aux_sym_cmd_identifier_token4] = ACTIONS(2248), - [aux_sym_cmd_identifier_token5] = ACTIONS(2248), - [aux_sym_cmd_identifier_token6] = ACTIONS(2248), - [aux_sym_cmd_identifier_token7] = ACTIONS(2248), - [aux_sym_cmd_identifier_token8] = ACTIONS(2248), - [aux_sym_cmd_identifier_token9] = ACTIONS(2248), - [aux_sym_cmd_identifier_token10] = ACTIONS(2248), - [aux_sym_cmd_identifier_token11] = ACTIONS(2248), - [aux_sym_cmd_identifier_token12] = ACTIONS(2248), - [aux_sym_cmd_identifier_token13] = ACTIONS(2248), - [aux_sym_cmd_identifier_token14] = ACTIONS(2248), - [aux_sym_cmd_identifier_token15] = ACTIONS(2248), - [aux_sym_cmd_identifier_token16] = ACTIONS(2248), - [aux_sym_cmd_identifier_token17] = ACTIONS(2248), - [aux_sym_cmd_identifier_token18] = ACTIONS(2248), - [aux_sym_cmd_identifier_token19] = ACTIONS(2248), - [aux_sym_cmd_identifier_token20] = ACTIONS(2248), - [aux_sym_cmd_identifier_token21] = ACTIONS(2248), - [aux_sym_cmd_identifier_token22] = ACTIONS(2248), - [aux_sym_cmd_identifier_token23] = ACTIONS(2248), - [aux_sym_cmd_identifier_token24] = ACTIONS(2248), - [aux_sym_cmd_identifier_token25] = ACTIONS(2248), - [aux_sym_cmd_identifier_token26] = ACTIONS(2248), - [aux_sym_cmd_identifier_token27] = ACTIONS(2248), - [aux_sym_cmd_identifier_token28] = ACTIONS(2248), - [aux_sym_cmd_identifier_token29] = ACTIONS(2248), - [aux_sym_cmd_identifier_token30] = ACTIONS(2248), - [aux_sym_cmd_identifier_token31] = ACTIONS(2248), - [aux_sym_cmd_identifier_token32] = ACTIONS(2248), - [aux_sym_cmd_identifier_token33] = ACTIONS(2248), - [aux_sym_cmd_identifier_token34] = ACTIONS(2248), - [aux_sym_cmd_identifier_token35] = ACTIONS(2248), - [aux_sym_cmd_identifier_token36] = ACTIONS(2248), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2250), - [aux_sym_cmd_identifier_token38] = ACTIONS(2248), - [aux_sym_cmd_identifier_token39] = ACTIONS(2250), - [aux_sym_cmd_identifier_token40] = ACTIONS(2250), - [anon_sym_def] = ACTIONS(2248), - [anon_sym_export_DASHenv] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_module] = ACTIONS(2248), - [anon_sym_use] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_DOLLAR] = ACTIONS(2250), - [anon_sym_error] = ACTIONS(2248), - [anon_sym_list] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_for] = ACTIONS(2248), - [anon_sym_in] = ACTIONS(2248), - [anon_sym_loop] = ACTIONS(2248), - [anon_sym_make] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_do] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_else] = ACTIONS(2248), - [anon_sym_match] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2248), - [anon_sym_catch] = ACTIONS(2248), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_source] = ACTIONS(2248), - [anon_sym_source_DASHenv] = ACTIONS(2248), - [anon_sym_register] = ACTIONS(2248), - [anon_sym_hide] = ACTIONS(2248), - [anon_sym_hide_DASHenv] = ACTIONS(2248), - [anon_sym_overlay] = ACTIONS(2248), - [anon_sym_new] = ACTIONS(2248), - [anon_sym_as] = ACTIONS(2248), - [anon_sym_PLUS] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2250), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2250), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [anon_sym_DOT2] = ACTIONS(2248), - [aux_sym__val_number_decimal_token3] = ACTIONS(2250), - [aux_sym__val_number_token1] = ACTIONS(2250), - [aux_sym__val_number_token2] = ACTIONS(2250), - [aux_sym__val_number_token3] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(3), - }, - [613] = { - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(1216), - [anon_sym_alias] = ACTIONS(1216), - [anon_sym_let] = ACTIONS(1216), - [anon_sym_let_DASHenv] = ACTIONS(1216), - [anon_sym_mut] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [aux_sym_cmd_identifier_token1] = ACTIONS(1216), - [aux_sym_cmd_identifier_token2] = ACTIONS(1216), - [aux_sym_cmd_identifier_token3] = ACTIONS(1216), - [aux_sym_cmd_identifier_token4] = ACTIONS(1216), - [aux_sym_cmd_identifier_token5] = ACTIONS(1216), - [aux_sym_cmd_identifier_token6] = ACTIONS(1216), - [aux_sym_cmd_identifier_token7] = ACTIONS(1216), - [aux_sym_cmd_identifier_token8] = ACTIONS(1216), - [aux_sym_cmd_identifier_token9] = ACTIONS(1216), - [aux_sym_cmd_identifier_token10] = ACTIONS(1216), - [aux_sym_cmd_identifier_token11] = ACTIONS(1216), - [aux_sym_cmd_identifier_token12] = ACTIONS(1216), - [aux_sym_cmd_identifier_token13] = ACTIONS(1216), - [aux_sym_cmd_identifier_token14] = ACTIONS(1216), - [aux_sym_cmd_identifier_token15] = ACTIONS(1216), - [aux_sym_cmd_identifier_token16] = ACTIONS(1216), - [aux_sym_cmd_identifier_token17] = ACTIONS(1216), - [aux_sym_cmd_identifier_token18] = ACTIONS(1216), - [aux_sym_cmd_identifier_token19] = ACTIONS(1216), - [aux_sym_cmd_identifier_token20] = ACTIONS(1216), - [aux_sym_cmd_identifier_token21] = ACTIONS(1216), - [aux_sym_cmd_identifier_token22] = ACTIONS(1216), - [aux_sym_cmd_identifier_token23] = ACTIONS(1216), - [aux_sym_cmd_identifier_token24] = ACTIONS(1216), - [aux_sym_cmd_identifier_token25] = ACTIONS(1216), - [aux_sym_cmd_identifier_token26] = ACTIONS(1216), - [aux_sym_cmd_identifier_token27] = ACTIONS(1216), - [aux_sym_cmd_identifier_token28] = ACTIONS(1216), - [aux_sym_cmd_identifier_token29] = ACTIONS(1216), - [aux_sym_cmd_identifier_token30] = ACTIONS(1216), - [aux_sym_cmd_identifier_token31] = ACTIONS(1216), - [aux_sym_cmd_identifier_token32] = ACTIONS(1216), - [aux_sym_cmd_identifier_token33] = ACTIONS(1216), - [aux_sym_cmd_identifier_token34] = ACTIONS(1216), - [aux_sym_cmd_identifier_token35] = ACTIONS(1216), - [aux_sym_cmd_identifier_token36] = ACTIONS(1216), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), - [anon_sym_null] = ACTIONS(1220), - [aux_sym_cmd_identifier_token38] = ACTIONS(1216), - [aux_sym_cmd_identifier_token39] = ACTIONS(1220), - [aux_sym_cmd_identifier_token40] = ACTIONS(1220), - [sym__newline] = ACTIONS(1220), - [anon_sym_def] = ACTIONS(1216), - [anon_sym_export_DASHenv] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_module] = ACTIONS(1216), - [anon_sym_use] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_DOLLAR] = ACTIONS(1220), - [anon_sym_error] = ACTIONS(1216), - [anon_sym_list] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_in] = ACTIONS(1216), - [anon_sym_loop] = ACTIONS(1216), - [anon_sym_make] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_match] = ACTIONS(1216), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_catch] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_source] = ACTIONS(1216), - [anon_sym_source_DASHenv] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_hide] = ACTIONS(1216), - [anon_sym_hide_DASHenv] = ACTIONS(1216), - [anon_sym_overlay] = ACTIONS(1216), - [anon_sym_new] = ACTIONS(1216), - [anon_sym_as] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1220), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1220), - [aux_sym__val_number_decimal_token1] = ACTIONS(1216), - [aux_sym__val_number_decimal_token2] = ACTIONS(1220), - [anon_sym_DOT2] = ACTIONS(1216), - [aux_sym__val_number_decimal_token3] = ACTIONS(1220), - [aux_sym__val_number_token1] = ACTIONS(1220), - [aux_sym__val_number_token2] = ACTIONS(1220), - [aux_sym__val_number_token3] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym__str_single_quotes] = ACTIONS(1220), - [sym__str_back_ticks] = ACTIONS(1220), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(3), - }, - [614] = { - [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(948), - [aux_sym_cmd_identifier_token3] = ACTIONS(948), - [aux_sym_cmd_identifier_token4] = ACTIONS(948), - [aux_sym_cmd_identifier_token5] = ACTIONS(948), - [aux_sym_cmd_identifier_token6] = ACTIONS(948), - [aux_sym_cmd_identifier_token7] = ACTIONS(948), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(948), - [aux_sym_cmd_identifier_token11] = ACTIONS(948), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(948), - [aux_sym_cmd_identifier_token17] = ACTIONS(948), - [aux_sym_cmd_identifier_token18] = ACTIONS(948), - [aux_sym_cmd_identifier_token19] = ACTIONS(948), - [aux_sym_cmd_identifier_token20] = ACTIONS(948), - [aux_sym_cmd_identifier_token21] = ACTIONS(948), - [aux_sym_cmd_identifier_token22] = ACTIONS(948), - [aux_sym_cmd_identifier_token23] = ACTIONS(948), - [aux_sym_cmd_identifier_token24] = ACTIONS(948), - [aux_sym_cmd_identifier_token25] = ACTIONS(948), - [aux_sym_cmd_identifier_token26] = ACTIONS(948), - [aux_sym_cmd_identifier_token27] = ACTIONS(948), - [aux_sym_cmd_identifier_token28] = ACTIONS(948), - [aux_sym_cmd_identifier_token29] = ACTIONS(948), - [aux_sym_cmd_identifier_token30] = ACTIONS(948), - [aux_sym_cmd_identifier_token31] = ACTIONS(948), - [aux_sym_cmd_identifier_token32] = ACTIONS(948), - [aux_sym_cmd_identifier_token33] = ACTIONS(948), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(948), - [aux_sym_cmd_identifier_token36] = ACTIONS(948), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(948), - [anon_sym_list] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_new] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(3), - }, - [615] = { - [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1733), - [aux_sym_cmd_identifier_token3] = ACTIONS(1733), - [aux_sym_cmd_identifier_token4] = ACTIONS(1733), - [aux_sym_cmd_identifier_token5] = ACTIONS(1733), - [aux_sym_cmd_identifier_token6] = ACTIONS(1733), - [aux_sym_cmd_identifier_token7] = ACTIONS(1733), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1733), - [aux_sym_cmd_identifier_token11] = ACTIONS(1733), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1733), - [aux_sym_cmd_identifier_token17] = ACTIONS(1733), - [aux_sym_cmd_identifier_token18] = ACTIONS(1733), - [aux_sym_cmd_identifier_token19] = ACTIONS(1733), - [aux_sym_cmd_identifier_token20] = ACTIONS(1733), - [aux_sym_cmd_identifier_token21] = ACTIONS(1733), - [aux_sym_cmd_identifier_token22] = ACTIONS(1733), - [aux_sym_cmd_identifier_token23] = ACTIONS(1733), - [aux_sym_cmd_identifier_token24] = ACTIONS(1733), - [aux_sym_cmd_identifier_token25] = ACTIONS(1733), - [aux_sym_cmd_identifier_token26] = ACTIONS(1733), - [aux_sym_cmd_identifier_token27] = ACTIONS(1733), - [aux_sym_cmd_identifier_token28] = ACTIONS(1733), - [aux_sym_cmd_identifier_token29] = ACTIONS(1733), - [aux_sym_cmd_identifier_token30] = ACTIONS(1733), - [aux_sym_cmd_identifier_token31] = ACTIONS(1733), - [aux_sym_cmd_identifier_token32] = ACTIONS(1733), - [aux_sym_cmd_identifier_token33] = ACTIONS(1733), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1733), - [aux_sym_cmd_identifier_token36] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [anon_sym_null] = ACTIONS(1735), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1735), - [aux_sym_cmd_identifier_token40] = ACTIONS(1735), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_list] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [anon_sym_DOT2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(3), - }, - [616] = { - [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(2273), - [anon_sym_alias] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_let_DASHenv] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [aux_sym_cmd_identifier_token1] = ACTIONS(2273), - [aux_sym_cmd_identifier_token2] = ACTIONS(2273), - [aux_sym_cmd_identifier_token3] = ACTIONS(2273), - [aux_sym_cmd_identifier_token4] = ACTIONS(2273), - [aux_sym_cmd_identifier_token5] = ACTIONS(2273), - [aux_sym_cmd_identifier_token6] = ACTIONS(2273), - [aux_sym_cmd_identifier_token7] = ACTIONS(2273), - [aux_sym_cmd_identifier_token8] = ACTIONS(2273), - [aux_sym_cmd_identifier_token9] = ACTIONS(2273), - [aux_sym_cmd_identifier_token10] = ACTIONS(2273), - [aux_sym_cmd_identifier_token11] = ACTIONS(2273), - [aux_sym_cmd_identifier_token12] = ACTIONS(2273), - [aux_sym_cmd_identifier_token13] = ACTIONS(2273), - [aux_sym_cmd_identifier_token14] = ACTIONS(2273), - [aux_sym_cmd_identifier_token15] = ACTIONS(2273), - [aux_sym_cmd_identifier_token16] = ACTIONS(2273), - [aux_sym_cmd_identifier_token17] = ACTIONS(2273), - [aux_sym_cmd_identifier_token18] = ACTIONS(2273), - [aux_sym_cmd_identifier_token19] = ACTIONS(2273), - [aux_sym_cmd_identifier_token20] = ACTIONS(2273), - [aux_sym_cmd_identifier_token21] = ACTIONS(2273), - [aux_sym_cmd_identifier_token22] = ACTIONS(2273), - [aux_sym_cmd_identifier_token23] = ACTIONS(2273), - [aux_sym_cmd_identifier_token24] = ACTIONS(2273), - [aux_sym_cmd_identifier_token25] = ACTIONS(2273), - [aux_sym_cmd_identifier_token26] = ACTIONS(2273), - [aux_sym_cmd_identifier_token27] = ACTIONS(2273), - [aux_sym_cmd_identifier_token28] = ACTIONS(2273), - [aux_sym_cmd_identifier_token29] = ACTIONS(2273), - [aux_sym_cmd_identifier_token30] = ACTIONS(2273), - [aux_sym_cmd_identifier_token31] = ACTIONS(2273), - [aux_sym_cmd_identifier_token32] = ACTIONS(2273), - [aux_sym_cmd_identifier_token33] = ACTIONS(2273), - [aux_sym_cmd_identifier_token34] = ACTIONS(2273), - [aux_sym_cmd_identifier_token35] = ACTIONS(2273), - [aux_sym_cmd_identifier_token36] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [anon_sym_null] = ACTIONS(2275), - [aux_sym_cmd_identifier_token38] = ACTIONS(2273), - [aux_sym_cmd_identifier_token39] = ACTIONS(2275), - [aux_sym_cmd_identifier_token40] = ACTIONS(2275), - [anon_sym_def] = ACTIONS(2273), - [anon_sym_export_DASHenv] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_module] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_make] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_catch] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_source] = ACTIONS(2273), - [anon_sym_source_DASHenv] = ACTIONS(2273), - [anon_sym_register] = ACTIONS(2273), - [anon_sym_hide] = ACTIONS(2273), - [anon_sym_hide_DASHenv] = ACTIONS(2273), - [anon_sym_overlay] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = ACTIONS(2273), - [aux_sym__val_number_decimal_token2] = ACTIONS(2275), - [anon_sym_DOT2] = ACTIONS(2273), - [aux_sym__val_number_decimal_token3] = ACTIONS(2275), - [aux_sym__val_number_token1] = ACTIONS(2275), - [aux_sym__val_number_token2] = ACTIONS(2275), - [aux_sym__val_number_token3] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym__str_single_quotes] = ACTIONS(2275), - [sym__str_back_ticks] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(3), - }, - [617] = { - [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_alias] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_let_DASHenv] = ACTIONS(2204), - [anon_sym_mut] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [aux_sym_cmd_identifier_token1] = ACTIONS(2204), - [aux_sym_cmd_identifier_token2] = ACTIONS(2204), - [aux_sym_cmd_identifier_token3] = ACTIONS(2204), - [aux_sym_cmd_identifier_token4] = ACTIONS(2204), - [aux_sym_cmd_identifier_token5] = ACTIONS(2204), - [aux_sym_cmd_identifier_token6] = ACTIONS(2204), - [aux_sym_cmd_identifier_token7] = ACTIONS(2204), - [aux_sym_cmd_identifier_token8] = ACTIONS(2204), - [aux_sym_cmd_identifier_token9] = ACTIONS(2204), - [aux_sym_cmd_identifier_token10] = ACTIONS(2204), - [aux_sym_cmd_identifier_token11] = ACTIONS(2204), - [aux_sym_cmd_identifier_token12] = ACTIONS(2204), - [aux_sym_cmd_identifier_token13] = ACTIONS(2204), - [aux_sym_cmd_identifier_token14] = ACTIONS(2204), - [aux_sym_cmd_identifier_token15] = ACTIONS(2204), - [aux_sym_cmd_identifier_token16] = ACTIONS(2204), - [aux_sym_cmd_identifier_token17] = ACTIONS(2204), - [aux_sym_cmd_identifier_token18] = ACTIONS(2204), - [aux_sym_cmd_identifier_token19] = ACTIONS(2204), - [aux_sym_cmd_identifier_token20] = ACTIONS(2204), - [aux_sym_cmd_identifier_token21] = ACTIONS(2204), - [aux_sym_cmd_identifier_token22] = ACTIONS(2204), - [aux_sym_cmd_identifier_token23] = ACTIONS(2204), - [aux_sym_cmd_identifier_token24] = ACTIONS(2204), - [aux_sym_cmd_identifier_token25] = ACTIONS(2204), - [aux_sym_cmd_identifier_token26] = ACTIONS(2204), - [aux_sym_cmd_identifier_token27] = ACTIONS(2204), - [aux_sym_cmd_identifier_token28] = ACTIONS(2204), - [aux_sym_cmd_identifier_token29] = ACTIONS(2204), - [aux_sym_cmd_identifier_token30] = ACTIONS(2204), - [aux_sym_cmd_identifier_token31] = ACTIONS(2204), - [aux_sym_cmd_identifier_token32] = ACTIONS(2204), - [aux_sym_cmd_identifier_token33] = ACTIONS(2204), - [aux_sym_cmd_identifier_token34] = ACTIONS(2204), - [aux_sym_cmd_identifier_token35] = ACTIONS(2204), - [aux_sym_cmd_identifier_token36] = ACTIONS(2204), - [anon_sym_true] = ACTIONS(2206), - [anon_sym_false] = ACTIONS(2206), - [anon_sym_null] = ACTIONS(2206), - [aux_sym_cmd_identifier_token38] = ACTIONS(2204), - [aux_sym_cmd_identifier_token39] = ACTIONS(2206), - [aux_sym_cmd_identifier_token40] = ACTIONS(2206), - [anon_sym_def] = ACTIONS(2204), - [anon_sym_export_DASHenv] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_module] = ACTIONS(2204), - [anon_sym_use] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2206), - [anon_sym_error] = ACTIONS(2204), - [anon_sym_list] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2204), - [anon_sym_loop] = ACTIONS(2204), - [anon_sym_make] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_else] = ACTIONS(2204), - [anon_sym_match] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_catch] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_source] = ACTIONS(2204), - [anon_sym_source_DASHenv] = ACTIONS(2204), - [anon_sym_register] = ACTIONS(2204), - [anon_sym_hide] = ACTIONS(2204), - [anon_sym_hide_DASHenv] = ACTIONS(2204), - [anon_sym_overlay] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2206), - [aux_sym__val_number_decimal_token1] = ACTIONS(2204), - [aux_sym__val_number_decimal_token2] = ACTIONS(2206), - [anon_sym_DOT2] = ACTIONS(2204), - [aux_sym__val_number_decimal_token3] = ACTIONS(2206), - [aux_sym__val_number_token1] = ACTIONS(2206), - [aux_sym__val_number_token2] = ACTIONS(2206), - [aux_sym__val_number_token3] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2206), - [sym__str_single_quotes] = ACTIONS(2206), - [sym__str_back_ticks] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_POUND] = ACTIONS(247), }, [618] = { [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(1947), - [anon_sym_alias] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_let_DASHenv] = ACTIONS(1947), - [anon_sym_mut] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [aux_sym_cmd_identifier_token1] = ACTIONS(1947), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1947), - [aux_sym_cmd_identifier_token9] = ACTIONS(1947), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1947), - [aux_sym_cmd_identifier_token13] = ACTIONS(1947), - [aux_sym_cmd_identifier_token14] = ACTIONS(1947), - [aux_sym_cmd_identifier_token15] = ACTIONS(1947), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1947), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_null] = ACTIONS(1953), - [aux_sym_cmd_identifier_token38] = ACTIONS(1947), - [aux_sym_cmd_identifier_token39] = ACTIONS(1953), - [aux_sym_cmd_identifier_token40] = ACTIONS(1953), - [anon_sym_def] = ACTIONS(1947), - [anon_sym_export_DASHenv] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_module] = ACTIONS(1947), - [anon_sym_use] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1947), - [anon_sym_list] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_in] = ACTIONS(1947), - [anon_sym_loop] = ACTIONS(1947), - [anon_sym_make] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_source] = ACTIONS(1947), - [anon_sym_source_DASHenv] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_hide] = ACTIONS(1947), - [anon_sym_hide_DASHenv] = ACTIONS(1947), - [anon_sym_overlay] = ACTIONS(1947), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_as] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1953), - [anon_sym_DOT2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1953), - [aux_sym__val_number_token1] = ACTIONS(1953), - [aux_sym__val_number_token2] = ACTIONS(1953), - [aux_sym__val_number_token3] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym__str_single_quotes] = ACTIONS(1953), - [sym__str_back_ticks] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_alias] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_let_DASHenv] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [aux_sym_cmd_identifier_token1] = ACTIONS(2425), + [aux_sym_cmd_identifier_token2] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [aux_sym_cmd_identifier_token6] = ACTIONS(2425), + [aux_sym_cmd_identifier_token7] = ACTIONS(2425), + [aux_sym_cmd_identifier_token8] = ACTIONS(2425), + [aux_sym_cmd_identifier_token9] = ACTIONS(2425), + [aux_sym_cmd_identifier_token10] = ACTIONS(2425), + [aux_sym_cmd_identifier_token11] = ACTIONS(2425), + [aux_sym_cmd_identifier_token12] = ACTIONS(2425), + [aux_sym_cmd_identifier_token13] = ACTIONS(2425), + [aux_sym_cmd_identifier_token14] = ACTIONS(2425), + [aux_sym_cmd_identifier_token15] = ACTIONS(2425), + [aux_sym_cmd_identifier_token16] = ACTIONS(2425), + [aux_sym_cmd_identifier_token17] = ACTIONS(2425), + [aux_sym_cmd_identifier_token18] = ACTIONS(2425), + [aux_sym_cmd_identifier_token19] = ACTIONS(2425), + [aux_sym_cmd_identifier_token20] = ACTIONS(2425), + [aux_sym_cmd_identifier_token21] = ACTIONS(2425), + [aux_sym_cmd_identifier_token22] = ACTIONS(2425), + [aux_sym_cmd_identifier_token23] = ACTIONS(2425), + [aux_sym_cmd_identifier_token24] = ACTIONS(2425), + [aux_sym_cmd_identifier_token25] = ACTIONS(2425), + [aux_sym_cmd_identifier_token26] = ACTIONS(2425), + [aux_sym_cmd_identifier_token27] = ACTIONS(2425), + [aux_sym_cmd_identifier_token28] = ACTIONS(2425), + [aux_sym_cmd_identifier_token29] = ACTIONS(2425), + [aux_sym_cmd_identifier_token30] = ACTIONS(2425), + [aux_sym_cmd_identifier_token31] = ACTIONS(2425), + [aux_sym_cmd_identifier_token32] = ACTIONS(2425), + [aux_sym_cmd_identifier_token33] = ACTIONS(2425), + [aux_sym_cmd_identifier_token34] = ACTIONS(2425), + [aux_sym_cmd_identifier_token35] = ACTIONS(2425), + [aux_sym_cmd_identifier_token36] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2427), + [aux_sym_cmd_identifier_token38] = ACTIONS(2425), + [aux_sym_cmd_identifier_token39] = ACTIONS(2427), + [aux_sym_cmd_identifier_token40] = ACTIONS(2427), + [anon_sym_def] = ACTIONS(2425), + [anon_sym_export_DASHenv] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_error] = ACTIONS(2425), + [anon_sym_list] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_in] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_make] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_catch] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_source] = ACTIONS(2425), + [anon_sym_source_DASHenv] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_hide] = ACTIONS(2425), + [anon_sym_hide_DASHenv] = ACTIONS(2425), + [anon_sym_overlay] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2427), + [aux_sym__val_number_decimal_token1] = ACTIONS(2425), + [aux_sym__val_number_decimal_token2] = ACTIONS(2427), + [aux_sym__val_number_decimal_token3] = ACTIONS(2427), + [aux_sym__val_number_decimal_token4] = ACTIONS(2427), + [aux_sym__val_number_token1] = ACTIONS(2427), + [aux_sym__val_number_token2] = ACTIONS(2427), + [aux_sym__val_number_token3] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym__str_single_quotes] = ACTIONS(2427), + [sym__str_back_ticks] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(247), }, [619] = { [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(2325), - [anon_sym_alias] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_let_DASHenv] = ACTIONS(2325), - [anon_sym_mut] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [aux_sym_cmd_identifier_token1] = ACTIONS(2325), - [aux_sym_cmd_identifier_token2] = ACTIONS(2325), - [aux_sym_cmd_identifier_token3] = ACTIONS(2325), - [aux_sym_cmd_identifier_token4] = ACTIONS(2325), - [aux_sym_cmd_identifier_token5] = ACTIONS(2325), - [aux_sym_cmd_identifier_token6] = ACTIONS(2325), - [aux_sym_cmd_identifier_token7] = ACTIONS(2325), - [aux_sym_cmd_identifier_token8] = ACTIONS(2325), - [aux_sym_cmd_identifier_token9] = ACTIONS(2325), - [aux_sym_cmd_identifier_token10] = ACTIONS(2325), - [aux_sym_cmd_identifier_token11] = ACTIONS(2325), - [aux_sym_cmd_identifier_token12] = ACTIONS(2325), - [aux_sym_cmd_identifier_token13] = ACTIONS(2325), - [aux_sym_cmd_identifier_token14] = ACTIONS(2325), - [aux_sym_cmd_identifier_token15] = ACTIONS(2325), - [aux_sym_cmd_identifier_token16] = ACTIONS(2325), - [aux_sym_cmd_identifier_token17] = ACTIONS(2325), - [aux_sym_cmd_identifier_token18] = ACTIONS(2325), - [aux_sym_cmd_identifier_token19] = ACTIONS(2325), - [aux_sym_cmd_identifier_token20] = ACTIONS(2325), - [aux_sym_cmd_identifier_token21] = ACTIONS(2325), - [aux_sym_cmd_identifier_token22] = ACTIONS(2325), - [aux_sym_cmd_identifier_token23] = ACTIONS(2325), - [aux_sym_cmd_identifier_token24] = ACTIONS(2325), - [aux_sym_cmd_identifier_token25] = ACTIONS(2325), - [aux_sym_cmd_identifier_token26] = ACTIONS(2325), - [aux_sym_cmd_identifier_token27] = ACTIONS(2325), - [aux_sym_cmd_identifier_token28] = ACTIONS(2325), - [aux_sym_cmd_identifier_token29] = ACTIONS(2325), - [aux_sym_cmd_identifier_token30] = ACTIONS(2325), - [aux_sym_cmd_identifier_token31] = ACTIONS(2325), - [aux_sym_cmd_identifier_token32] = ACTIONS(2325), - [aux_sym_cmd_identifier_token33] = ACTIONS(2325), - [aux_sym_cmd_identifier_token34] = ACTIONS(2325), - [aux_sym_cmd_identifier_token35] = ACTIONS(2325), - [aux_sym_cmd_identifier_token36] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_null] = ACTIONS(2327), - [aux_sym_cmd_identifier_token38] = ACTIONS(2325), - [aux_sym_cmd_identifier_token39] = ACTIONS(2327), - [aux_sym_cmd_identifier_token40] = ACTIONS(2327), - [anon_sym_def] = ACTIONS(2325), - [anon_sym_export_DASHenv] = ACTIONS(2325), - [anon_sym_extern] = ACTIONS(2325), - [anon_sym_module] = ACTIONS(2325), - [anon_sym_use] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2327), - [anon_sym_error] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_in] = ACTIONS(2325), - [anon_sym_loop] = ACTIONS(2325), - [anon_sym_make] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_match] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_catch] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_source] = ACTIONS(2325), - [anon_sym_source_DASHenv] = ACTIONS(2325), - [anon_sym_register] = ACTIONS(2325), - [anon_sym_hide] = ACTIONS(2325), - [anon_sym_hide_DASHenv] = ACTIONS(2325), - [anon_sym_overlay] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2327), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2327), - [aux_sym__val_number_decimal_token1] = ACTIONS(2325), - [aux_sym__val_number_decimal_token2] = ACTIONS(2327), - [anon_sym_DOT2] = ACTIONS(2325), - [aux_sym__val_number_decimal_token3] = ACTIONS(2327), - [aux_sym__val_number_token1] = ACTIONS(2327), - [aux_sym__val_number_token2] = ACTIONS(2327), - [aux_sym__val_number_token3] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym__str_single_quotes] = ACTIONS(2327), - [sym__str_back_ticks] = ACTIONS(2327), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2429), + [aux_sym_cmd_identifier_token4] = ACTIONS(2429), + [aux_sym_cmd_identifier_token5] = ACTIONS(2429), + [aux_sym_cmd_identifier_token6] = ACTIONS(2429), + [aux_sym_cmd_identifier_token7] = ACTIONS(2429), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2429), + [aux_sym_cmd_identifier_token11] = ACTIONS(2429), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2429), + [aux_sym_cmd_identifier_token17] = ACTIONS(2429), + [aux_sym_cmd_identifier_token18] = ACTIONS(2429), + [aux_sym_cmd_identifier_token19] = ACTIONS(2429), + [aux_sym_cmd_identifier_token20] = ACTIONS(2429), + [aux_sym_cmd_identifier_token21] = ACTIONS(2429), + [aux_sym_cmd_identifier_token22] = ACTIONS(2429), + [aux_sym_cmd_identifier_token23] = ACTIONS(2429), + [aux_sym_cmd_identifier_token24] = ACTIONS(2429), + [aux_sym_cmd_identifier_token25] = ACTIONS(2429), + [aux_sym_cmd_identifier_token26] = ACTIONS(2429), + [aux_sym_cmd_identifier_token27] = ACTIONS(2429), + [aux_sym_cmd_identifier_token28] = ACTIONS(2429), + [aux_sym_cmd_identifier_token29] = ACTIONS(2429), + [aux_sym_cmd_identifier_token30] = ACTIONS(2429), + [aux_sym_cmd_identifier_token31] = ACTIONS(2429), + [aux_sym_cmd_identifier_token32] = ACTIONS(2429), + [aux_sym_cmd_identifier_token33] = ACTIONS(2429), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2429), + [aux_sym_cmd_identifier_token36] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2431), + [anon_sym_false] = ACTIONS(2431), + [anon_sym_null] = ACTIONS(2431), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2431), + [aux_sym_cmd_identifier_token40] = ACTIONS(2431), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2431), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_list] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2431), + [aux_sym__val_number_decimal_token3] = ACTIONS(2431), + [aux_sym__val_number_decimal_token4] = ACTIONS(2431), + [aux_sym__val_number_token1] = ACTIONS(2431), + [aux_sym__val_number_token2] = ACTIONS(2431), + [aux_sym__val_number_token3] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym__str_single_quotes] = ACTIONS(2431), + [sym__str_back_ticks] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2431), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(247), }, [620] = { [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(1744), - [anon_sym_alias] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(1744), - [anon_sym_let_DASHenv] = ACTIONS(1744), - [anon_sym_mut] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [aux_sym_cmd_identifier_token1] = ACTIONS(1744), - [aux_sym_cmd_identifier_token2] = ACTIONS(1744), - [aux_sym_cmd_identifier_token3] = ACTIONS(1744), - [aux_sym_cmd_identifier_token4] = ACTIONS(1744), - [aux_sym_cmd_identifier_token5] = ACTIONS(1744), - [aux_sym_cmd_identifier_token6] = ACTIONS(1744), - [aux_sym_cmd_identifier_token7] = ACTIONS(1744), - [aux_sym_cmd_identifier_token8] = ACTIONS(1744), - [aux_sym_cmd_identifier_token9] = ACTIONS(1744), - [aux_sym_cmd_identifier_token10] = ACTIONS(1744), - [aux_sym_cmd_identifier_token11] = ACTIONS(1744), - [aux_sym_cmd_identifier_token12] = ACTIONS(1744), - [aux_sym_cmd_identifier_token13] = ACTIONS(1744), - [aux_sym_cmd_identifier_token14] = ACTIONS(1744), - [aux_sym_cmd_identifier_token15] = ACTIONS(1744), - [aux_sym_cmd_identifier_token16] = ACTIONS(1744), - [aux_sym_cmd_identifier_token17] = ACTIONS(1744), - [aux_sym_cmd_identifier_token18] = ACTIONS(1744), - [aux_sym_cmd_identifier_token19] = ACTIONS(1744), - [aux_sym_cmd_identifier_token20] = ACTIONS(1744), - [aux_sym_cmd_identifier_token21] = ACTIONS(1744), - [aux_sym_cmd_identifier_token22] = ACTIONS(1744), - [aux_sym_cmd_identifier_token23] = ACTIONS(1744), - [aux_sym_cmd_identifier_token24] = ACTIONS(1744), - [aux_sym_cmd_identifier_token25] = ACTIONS(1744), - [aux_sym_cmd_identifier_token26] = ACTIONS(1744), - [aux_sym_cmd_identifier_token27] = ACTIONS(1744), - [aux_sym_cmd_identifier_token28] = ACTIONS(1744), - [aux_sym_cmd_identifier_token29] = ACTIONS(1744), - [aux_sym_cmd_identifier_token30] = ACTIONS(1744), - [aux_sym_cmd_identifier_token31] = ACTIONS(1744), - [aux_sym_cmd_identifier_token32] = ACTIONS(1744), - [aux_sym_cmd_identifier_token33] = ACTIONS(1744), - [aux_sym_cmd_identifier_token34] = ACTIONS(1744), - [aux_sym_cmd_identifier_token35] = ACTIONS(1744), - [aux_sym_cmd_identifier_token36] = ACTIONS(1744), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1746), - [aux_sym_cmd_identifier_token38] = ACTIONS(1744), - [aux_sym_cmd_identifier_token39] = ACTIONS(1746), - [aux_sym_cmd_identifier_token40] = ACTIONS(1746), - [anon_sym_def] = ACTIONS(1744), - [anon_sym_export_DASHenv] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_module] = ACTIONS(1744), - [anon_sym_use] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [anon_sym_error] = ACTIONS(1744), - [anon_sym_list] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1744), - [anon_sym_make] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_do] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_else] = ACTIONS(1744), - [anon_sym_match] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_try] = ACTIONS(1744), - [anon_sym_catch] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_source] = ACTIONS(1744), - [anon_sym_source_DASHenv] = ACTIONS(1744), - [anon_sym_register] = ACTIONS(1744), - [anon_sym_hide] = ACTIONS(1744), - [anon_sym_hide_DASHenv] = ACTIONS(1744), - [anon_sym_overlay] = ACTIONS(1744), - [anon_sym_new] = ACTIONS(1744), - [anon_sym_as] = ACTIONS(1744), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1746), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1746), - [aux_sym__val_number_decimal_token1] = ACTIONS(1744), - [aux_sym__val_number_decimal_token2] = ACTIONS(1746), - [anon_sym_DOT2] = ACTIONS(1744), - [aux_sym__val_number_decimal_token3] = ACTIONS(1746), - [aux_sym__val_number_token1] = ACTIONS(1746), - [aux_sym__val_number_token2] = ACTIONS(1746), - [aux_sym__val_number_token3] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [sym__str_single_quotes] = ACTIONS(1746), - [sym__str_back_ticks] = ACTIONS(1746), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_alias] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_let_DASHenv] = ACTIONS(2299), + [anon_sym_mut] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [aux_sym_cmd_identifier_token1] = ACTIONS(2299), + [aux_sym_cmd_identifier_token2] = ACTIONS(2299), + [aux_sym_cmd_identifier_token3] = ACTIONS(2299), + [aux_sym_cmd_identifier_token4] = ACTIONS(2299), + [aux_sym_cmd_identifier_token5] = ACTIONS(2299), + [aux_sym_cmd_identifier_token6] = ACTIONS(2299), + [aux_sym_cmd_identifier_token7] = ACTIONS(2299), + [aux_sym_cmd_identifier_token8] = ACTIONS(2299), + [aux_sym_cmd_identifier_token9] = ACTIONS(2299), + [aux_sym_cmd_identifier_token10] = ACTIONS(2299), + [aux_sym_cmd_identifier_token11] = ACTIONS(2299), + [aux_sym_cmd_identifier_token12] = ACTIONS(2299), + [aux_sym_cmd_identifier_token13] = ACTIONS(2299), + [aux_sym_cmd_identifier_token14] = ACTIONS(2299), + [aux_sym_cmd_identifier_token15] = ACTIONS(2299), + [aux_sym_cmd_identifier_token16] = ACTIONS(2299), + [aux_sym_cmd_identifier_token17] = ACTIONS(2299), + [aux_sym_cmd_identifier_token18] = ACTIONS(2299), + [aux_sym_cmd_identifier_token19] = ACTIONS(2299), + [aux_sym_cmd_identifier_token20] = ACTIONS(2299), + [aux_sym_cmd_identifier_token21] = ACTIONS(2299), + [aux_sym_cmd_identifier_token22] = ACTIONS(2299), + [aux_sym_cmd_identifier_token23] = ACTIONS(2299), + [aux_sym_cmd_identifier_token24] = ACTIONS(2299), + [aux_sym_cmd_identifier_token25] = ACTIONS(2299), + [aux_sym_cmd_identifier_token26] = ACTIONS(2299), + [aux_sym_cmd_identifier_token27] = ACTIONS(2299), + [aux_sym_cmd_identifier_token28] = ACTIONS(2299), + [aux_sym_cmd_identifier_token29] = ACTIONS(2299), + [aux_sym_cmd_identifier_token30] = ACTIONS(2299), + [aux_sym_cmd_identifier_token31] = ACTIONS(2299), + [aux_sym_cmd_identifier_token32] = ACTIONS(2299), + [aux_sym_cmd_identifier_token33] = ACTIONS(2299), + [aux_sym_cmd_identifier_token34] = ACTIONS(2299), + [aux_sym_cmd_identifier_token35] = ACTIONS(2299), + [aux_sym_cmd_identifier_token36] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_null] = ACTIONS(2449), + [aux_sym_cmd_identifier_token38] = ACTIONS(2299), + [aux_sym_cmd_identifier_token39] = ACTIONS(2449), + [aux_sym_cmd_identifier_token40] = ACTIONS(2449), + [anon_sym_def] = ACTIONS(2299), + [anon_sym_export_DASHenv] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2299), + [anon_sym_module] = ACTIONS(2299), + [anon_sym_use] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_DOLLAR] = ACTIONS(2449), + [anon_sym_error] = ACTIONS(2299), + [anon_sym_list] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_in] = ACTIONS(2299), + [anon_sym_loop] = ACTIONS(2299), + [anon_sym_make] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2299), + [anon_sym_match] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_catch] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_source] = ACTIONS(2299), + [anon_sym_source_DASHenv] = ACTIONS(2299), + [anon_sym_register] = ACTIONS(2299), + [anon_sym_hide] = ACTIONS(2299), + [anon_sym_hide_DASHenv] = ACTIONS(2299), + [anon_sym_overlay] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_as] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), + [aux_sym__val_number_decimal_token1] = ACTIONS(2299), + [aux_sym__val_number_decimal_token2] = ACTIONS(2449), + [aux_sym__val_number_decimal_token3] = ACTIONS(2449), + [aux_sym__val_number_decimal_token4] = ACTIONS(2449), + [aux_sym__val_number_token1] = ACTIONS(2449), + [aux_sym__val_number_token2] = ACTIONS(2449), + [aux_sym__val_number_token3] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2449), + [sym__str_single_quotes] = ACTIONS(2449), + [sym__str_back_ticks] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(247), }, [621] = { [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(2329), - [anon_sym_alias] = ACTIONS(2329), - [anon_sym_let] = ACTIONS(2329), - [anon_sym_let_DASHenv] = ACTIONS(2329), - [anon_sym_mut] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [aux_sym_cmd_identifier_token1] = ACTIONS(2329), - [aux_sym_cmd_identifier_token2] = ACTIONS(2329), - [aux_sym_cmd_identifier_token3] = ACTIONS(2329), - [aux_sym_cmd_identifier_token4] = ACTIONS(2329), - [aux_sym_cmd_identifier_token5] = ACTIONS(2329), - [aux_sym_cmd_identifier_token6] = ACTIONS(2329), - [aux_sym_cmd_identifier_token7] = ACTIONS(2329), - [aux_sym_cmd_identifier_token8] = ACTIONS(2329), - [aux_sym_cmd_identifier_token9] = ACTIONS(2329), - [aux_sym_cmd_identifier_token10] = ACTIONS(2329), - [aux_sym_cmd_identifier_token11] = ACTIONS(2329), - [aux_sym_cmd_identifier_token12] = ACTIONS(2329), - [aux_sym_cmd_identifier_token13] = ACTIONS(2329), - [aux_sym_cmd_identifier_token14] = ACTIONS(2329), - [aux_sym_cmd_identifier_token15] = ACTIONS(2329), - [aux_sym_cmd_identifier_token16] = ACTIONS(2329), - [aux_sym_cmd_identifier_token17] = ACTIONS(2329), - [aux_sym_cmd_identifier_token18] = ACTIONS(2329), - [aux_sym_cmd_identifier_token19] = ACTIONS(2329), - [aux_sym_cmd_identifier_token20] = ACTIONS(2329), - [aux_sym_cmd_identifier_token21] = ACTIONS(2329), - [aux_sym_cmd_identifier_token22] = ACTIONS(2329), - [aux_sym_cmd_identifier_token23] = ACTIONS(2329), - [aux_sym_cmd_identifier_token24] = ACTIONS(2329), - [aux_sym_cmd_identifier_token25] = ACTIONS(2329), - [aux_sym_cmd_identifier_token26] = ACTIONS(2329), - [aux_sym_cmd_identifier_token27] = ACTIONS(2329), - [aux_sym_cmd_identifier_token28] = ACTIONS(2329), - [aux_sym_cmd_identifier_token29] = ACTIONS(2329), - [aux_sym_cmd_identifier_token30] = ACTIONS(2329), - [aux_sym_cmd_identifier_token31] = ACTIONS(2329), - [aux_sym_cmd_identifier_token32] = ACTIONS(2329), - [aux_sym_cmd_identifier_token33] = ACTIONS(2329), - [aux_sym_cmd_identifier_token34] = ACTIONS(2329), - [aux_sym_cmd_identifier_token35] = ACTIONS(2329), - [aux_sym_cmd_identifier_token36] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [anon_sym_null] = ACTIONS(2331), - [aux_sym_cmd_identifier_token38] = ACTIONS(2329), - [aux_sym_cmd_identifier_token39] = ACTIONS(2331), - [aux_sym_cmd_identifier_token40] = ACTIONS(2331), - [anon_sym_def] = ACTIONS(2329), - [anon_sym_export_DASHenv] = ACTIONS(2329), - [anon_sym_extern] = ACTIONS(2329), - [anon_sym_module] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_DOLLAR] = ACTIONS(2331), - [anon_sym_error] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_in] = ACTIONS(2329), - [anon_sym_loop] = ACTIONS(2329), - [anon_sym_make] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_match] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_catch] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_source] = ACTIONS(2329), - [anon_sym_source_DASHenv] = ACTIONS(2329), - [anon_sym_register] = ACTIONS(2329), - [anon_sym_hide] = ACTIONS(2329), - [anon_sym_hide_DASHenv] = ACTIONS(2329), - [anon_sym_overlay] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_as] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2331), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2331), - [aux_sym__val_number_decimal_token1] = ACTIONS(2329), - [aux_sym__val_number_decimal_token2] = ACTIONS(2331), - [anon_sym_DOT2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_token1] = ACTIONS(2331), - [aux_sym__val_number_token2] = ACTIONS(2331), - [aux_sym__val_number_token3] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [sym__str_single_quotes] = ACTIONS(2331), - [sym__str_back_ticks] = ACTIONS(2331), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2331), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_alias] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_let_DASHenv] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [aux_sym_cmd_identifier_token1] = ACTIONS(2433), + [aux_sym_cmd_identifier_token2] = ACTIONS(2433), + [aux_sym_cmd_identifier_token3] = ACTIONS(2433), + [aux_sym_cmd_identifier_token4] = ACTIONS(2433), + [aux_sym_cmd_identifier_token5] = ACTIONS(2433), + [aux_sym_cmd_identifier_token6] = ACTIONS(2433), + [aux_sym_cmd_identifier_token7] = ACTIONS(2433), + [aux_sym_cmd_identifier_token8] = ACTIONS(2433), + [aux_sym_cmd_identifier_token9] = ACTIONS(2433), + [aux_sym_cmd_identifier_token10] = ACTIONS(2433), + [aux_sym_cmd_identifier_token11] = ACTIONS(2433), + [aux_sym_cmd_identifier_token12] = ACTIONS(2433), + [aux_sym_cmd_identifier_token13] = ACTIONS(2433), + [aux_sym_cmd_identifier_token14] = ACTIONS(2433), + [aux_sym_cmd_identifier_token15] = ACTIONS(2433), + [aux_sym_cmd_identifier_token16] = ACTIONS(2433), + [aux_sym_cmd_identifier_token17] = ACTIONS(2433), + [aux_sym_cmd_identifier_token18] = ACTIONS(2433), + [aux_sym_cmd_identifier_token19] = ACTIONS(2433), + [aux_sym_cmd_identifier_token20] = ACTIONS(2433), + [aux_sym_cmd_identifier_token21] = ACTIONS(2433), + [aux_sym_cmd_identifier_token22] = ACTIONS(2433), + [aux_sym_cmd_identifier_token23] = ACTIONS(2433), + [aux_sym_cmd_identifier_token24] = ACTIONS(2433), + [aux_sym_cmd_identifier_token25] = ACTIONS(2433), + [aux_sym_cmd_identifier_token26] = ACTIONS(2433), + [aux_sym_cmd_identifier_token27] = ACTIONS(2433), + [aux_sym_cmd_identifier_token28] = ACTIONS(2433), + [aux_sym_cmd_identifier_token29] = ACTIONS(2433), + [aux_sym_cmd_identifier_token30] = ACTIONS(2433), + [aux_sym_cmd_identifier_token31] = ACTIONS(2433), + [aux_sym_cmd_identifier_token32] = ACTIONS(2433), + [aux_sym_cmd_identifier_token33] = ACTIONS(2433), + [aux_sym_cmd_identifier_token34] = ACTIONS(2433), + [aux_sym_cmd_identifier_token35] = ACTIONS(2433), + [aux_sym_cmd_identifier_token36] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2435), + [anon_sym_false] = ACTIONS(2435), + [anon_sym_null] = ACTIONS(2435), + [aux_sym_cmd_identifier_token38] = ACTIONS(2433), + [aux_sym_cmd_identifier_token39] = ACTIONS(2435), + [aux_sym_cmd_identifier_token40] = ACTIONS(2435), + [anon_sym_def] = ACTIONS(2433), + [anon_sym_export_DASHenv] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_DOLLAR] = ACTIONS(2435), + [anon_sym_error] = ACTIONS(2433), + [anon_sym_list] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_in] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_make] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_catch] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_source] = ACTIONS(2433), + [anon_sym_source_DASHenv] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_hide] = ACTIONS(2433), + [anon_sym_hide_DASHenv] = ACTIONS(2433), + [anon_sym_overlay] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2435), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2435), + [aux_sym__val_number_decimal_token4] = ACTIONS(2435), + [aux_sym__val_number_token1] = ACTIONS(2435), + [aux_sym__val_number_token2] = ACTIONS(2435), + [aux_sym__val_number_token3] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym__str_single_quotes] = ACTIONS(2435), + [sym__str_back_ticks] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(247), }, [622] = { [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(2400), - [anon_sym_alias] = ACTIONS(2400), - [anon_sym_let] = ACTIONS(2400), - [anon_sym_let_DASHenv] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [aux_sym_cmd_identifier_token1] = ACTIONS(2400), - [aux_sym_cmd_identifier_token2] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2400), - [aux_sym_cmd_identifier_token4] = ACTIONS(2400), - [aux_sym_cmd_identifier_token5] = ACTIONS(2400), - [aux_sym_cmd_identifier_token6] = ACTIONS(2400), - [aux_sym_cmd_identifier_token7] = ACTIONS(2400), - [aux_sym_cmd_identifier_token8] = ACTIONS(2400), - [aux_sym_cmd_identifier_token9] = ACTIONS(2400), - [aux_sym_cmd_identifier_token10] = ACTIONS(2400), - [aux_sym_cmd_identifier_token11] = ACTIONS(2400), - [aux_sym_cmd_identifier_token12] = ACTIONS(2400), - [aux_sym_cmd_identifier_token13] = ACTIONS(2400), - [aux_sym_cmd_identifier_token14] = ACTIONS(2400), - [aux_sym_cmd_identifier_token15] = ACTIONS(2400), - [aux_sym_cmd_identifier_token16] = ACTIONS(2400), - [aux_sym_cmd_identifier_token17] = ACTIONS(2400), - [aux_sym_cmd_identifier_token18] = ACTIONS(2400), - [aux_sym_cmd_identifier_token19] = ACTIONS(2400), - [aux_sym_cmd_identifier_token20] = ACTIONS(2400), - [aux_sym_cmd_identifier_token21] = ACTIONS(2400), - [aux_sym_cmd_identifier_token22] = ACTIONS(2400), - [aux_sym_cmd_identifier_token23] = ACTIONS(2400), - [aux_sym_cmd_identifier_token24] = ACTIONS(2400), - [aux_sym_cmd_identifier_token25] = ACTIONS(2400), - [aux_sym_cmd_identifier_token26] = ACTIONS(2400), - [aux_sym_cmd_identifier_token27] = ACTIONS(2400), - [aux_sym_cmd_identifier_token28] = ACTIONS(2400), - [aux_sym_cmd_identifier_token29] = ACTIONS(2400), - [aux_sym_cmd_identifier_token30] = ACTIONS(2400), - [aux_sym_cmd_identifier_token31] = ACTIONS(2400), - [aux_sym_cmd_identifier_token32] = ACTIONS(2400), - [aux_sym_cmd_identifier_token33] = ACTIONS(2400), - [aux_sym_cmd_identifier_token34] = ACTIONS(2400), - [aux_sym_cmd_identifier_token35] = ACTIONS(2400), - [aux_sym_cmd_identifier_token36] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_null] = ACTIONS(2402), - [aux_sym_cmd_identifier_token38] = ACTIONS(2400), - [aux_sym_cmd_identifier_token39] = ACTIONS(2402), - [aux_sym_cmd_identifier_token40] = ACTIONS(2402), - [anon_sym_def] = ACTIONS(2400), - [anon_sym_export_DASHenv] = ACTIONS(2400), - [anon_sym_extern] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_use] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(2402), - [anon_sym_error] = ACTIONS(2400), - [anon_sym_list] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_loop] = ACTIONS(2400), - [anon_sym_make] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2400), - [anon_sym_do] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2400), - [anon_sym_catch] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_source] = ACTIONS(2400), - [anon_sym_source_DASHenv] = ACTIONS(2400), - [anon_sym_register] = ACTIONS(2400), - [anon_sym_hide] = ACTIONS(2400), - [anon_sym_hide_DASHenv] = ACTIONS(2400), - [anon_sym_overlay] = ACTIONS(2400), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), - [aux_sym__val_number_decimal_token1] = ACTIONS(2400), - [aux_sym__val_number_decimal_token2] = ACTIONS(2402), - [anon_sym_DOT2] = ACTIONS(2400), - [aux_sym__val_number_decimal_token3] = ACTIONS(2402), - [aux_sym__val_number_token1] = ACTIONS(2402), - [aux_sym__val_number_token2] = ACTIONS(2402), - [aux_sym__val_number_token3] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2402), - [sym__str_single_quotes] = ACTIONS(2402), - [sym__str_back_ticks] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_alias] = ACTIONS(2344), + [anon_sym_let] = ACTIONS(2344), + [anon_sym_let_DASHenv] = ACTIONS(2344), + [anon_sym_mut] = ACTIONS(2344), + [anon_sym_const] = ACTIONS(2344), + [aux_sym_cmd_identifier_token1] = ACTIONS(2344), + [aux_sym_cmd_identifier_token2] = ACTIONS(2344), + [aux_sym_cmd_identifier_token3] = ACTIONS(2344), + [aux_sym_cmd_identifier_token4] = ACTIONS(2344), + [aux_sym_cmd_identifier_token5] = ACTIONS(2344), + [aux_sym_cmd_identifier_token6] = ACTIONS(2344), + [aux_sym_cmd_identifier_token7] = ACTIONS(2344), + [aux_sym_cmd_identifier_token8] = ACTIONS(2344), + [aux_sym_cmd_identifier_token9] = ACTIONS(2344), + [aux_sym_cmd_identifier_token10] = ACTIONS(2344), + [aux_sym_cmd_identifier_token11] = ACTIONS(2344), + [aux_sym_cmd_identifier_token12] = ACTIONS(2344), + [aux_sym_cmd_identifier_token13] = ACTIONS(2344), + [aux_sym_cmd_identifier_token14] = ACTIONS(2344), + [aux_sym_cmd_identifier_token15] = ACTIONS(2344), + [aux_sym_cmd_identifier_token16] = ACTIONS(2344), + [aux_sym_cmd_identifier_token17] = ACTIONS(2344), + [aux_sym_cmd_identifier_token18] = ACTIONS(2344), + [aux_sym_cmd_identifier_token19] = ACTIONS(2344), + [aux_sym_cmd_identifier_token20] = ACTIONS(2344), + [aux_sym_cmd_identifier_token21] = ACTIONS(2344), + [aux_sym_cmd_identifier_token22] = ACTIONS(2344), + [aux_sym_cmd_identifier_token23] = ACTIONS(2344), + [aux_sym_cmd_identifier_token24] = ACTIONS(2344), + [aux_sym_cmd_identifier_token25] = ACTIONS(2344), + [aux_sym_cmd_identifier_token26] = ACTIONS(2344), + [aux_sym_cmd_identifier_token27] = ACTIONS(2344), + [aux_sym_cmd_identifier_token28] = ACTIONS(2344), + [aux_sym_cmd_identifier_token29] = ACTIONS(2344), + [aux_sym_cmd_identifier_token30] = ACTIONS(2344), + [aux_sym_cmd_identifier_token31] = ACTIONS(2344), + [aux_sym_cmd_identifier_token32] = ACTIONS(2344), + [aux_sym_cmd_identifier_token33] = ACTIONS(2344), + [aux_sym_cmd_identifier_token34] = ACTIONS(2344), + [aux_sym_cmd_identifier_token35] = ACTIONS(2344), + [aux_sym_cmd_identifier_token36] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2346), + [aux_sym_cmd_identifier_token38] = ACTIONS(2344), + [aux_sym_cmd_identifier_token39] = ACTIONS(2346), + [aux_sym_cmd_identifier_token40] = ACTIONS(2346), + [anon_sym_def] = ACTIONS(2344), + [anon_sym_export_DASHenv] = ACTIONS(2344), + [anon_sym_extern] = ACTIONS(2344), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_use] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2346), + [anon_sym_error] = ACTIONS(2344), + [anon_sym_list] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_in] = ACTIONS(2344), + [anon_sym_loop] = ACTIONS(2344), + [anon_sym_make] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_do] = ACTIONS(2344), + [anon_sym_if] = ACTIONS(2344), + [anon_sym_else] = ACTIONS(2344), + [anon_sym_match] = ACTIONS(2344), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2344), + [anon_sym_catch] = ACTIONS(2344), + [anon_sym_return] = ACTIONS(2344), + [anon_sym_source] = ACTIONS(2344), + [anon_sym_source_DASHenv] = ACTIONS(2344), + [anon_sym_register] = ACTIONS(2344), + [anon_sym_hide] = ACTIONS(2344), + [anon_sym_hide_DASHenv] = ACTIONS(2344), + [anon_sym_overlay] = ACTIONS(2344), + [anon_sym_new] = ACTIONS(2344), + [anon_sym_as] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2344), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [sym__str_single_quotes] = ACTIONS(2346), + [sym__str_back_ticks] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_POUND] = ACTIONS(247), }, [623] = { [sym_comment] = STATE(623), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_alias] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_let_DASHenv] = ACTIONS(2226), - [anon_sym_mut] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [aux_sym_cmd_identifier_token1] = ACTIONS(2226), - [aux_sym_cmd_identifier_token2] = ACTIONS(2226), - [aux_sym_cmd_identifier_token3] = ACTIONS(2226), - [aux_sym_cmd_identifier_token4] = ACTIONS(2226), - [aux_sym_cmd_identifier_token5] = ACTIONS(2226), - [aux_sym_cmd_identifier_token6] = ACTIONS(2226), - [aux_sym_cmd_identifier_token7] = ACTIONS(2226), - [aux_sym_cmd_identifier_token8] = ACTIONS(2226), - [aux_sym_cmd_identifier_token9] = ACTIONS(2226), - [aux_sym_cmd_identifier_token10] = ACTIONS(2226), - [aux_sym_cmd_identifier_token11] = ACTIONS(2226), - [aux_sym_cmd_identifier_token12] = ACTIONS(2226), - [aux_sym_cmd_identifier_token13] = ACTIONS(2226), - [aux_sym_cmd_identifier_token14] = ACTIONS(2226), - [aux_sym_cmd_identifier_token15] = ACTIONS(2226), - [aux_sym_cmd_identifier_token16] = ACTIONS(2226), - [aux_sym_cmd_identifier_token17] = ACTIONS(2226), - [aux_sym_cmd_identifier_token18] = ACTIONS(2226), - [aux_sym_cmd_identifier_token19] = ACTIONS(2226), - [aux_sym_cmd_identifier_token20] = ACTIONS(2226), - [aux_sym_cmd_identifier_token21] = ACTIONS(2226), - [aux_sym_cmd_identifier_token22] = ACTIONS(2226), - [aux_sym_cmd_identifier_token23] = ACTIONS(2226), - [aux_sym_cmd_identifier_token24] = ACTIONS(2226), - [aux_sym_cmd_identifier_token25] = ACTIONS(2226), - [aux_sym_cmd_identifier_token26] = ACTIONS(2226), - [aux_sym_cmd_identifier_token27] = ACTIONS(2226), - [aux_sym_cmd_identifier_token28] = ACTIONS(2226), - [aux_sym_cmd_identifier_token29] = ACTIONS(2226), - [aux_sym_cmd_identifier_token30] = ACTIONS(2226), - [aux_sym_cmd_identifier_token31] = ACTIONS(2226), - [aux_sym_cmd_identifier_token32] = ACTIONS(2226), - [aux_sym_cmd_identifier_token33] = ACTIONS(2226), - [aux_sym_cmd_identifier_token34] = ACTIONS(2226), - [aux_sym_cmd_identifier_token35] = ACTIONS(2226), - [aux_sym_cmd_identifier_token36] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_null] = ACTIONS(2228), - [aux_sym_cmd_identifier_token38] = ACTIONS(2226), - [aux_sym_cmd_identifier_token39] = ACTIONS(2228), - [aux_sym_cmd_identifier_token40] = ACTIONS(2228), - [anon_sym_def] = ACTIONS(2226), - [anon_sym_export_DASHenv] = ACTIONS(2226), - [anon_sym_extern] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_use] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_error] = ACTIONS(2226), - [anon_sym_list] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2226), - [anon_sym_loop] = ACTIONS(2226), - [anon_sym_make] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_match] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_catch] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_source] = ACTIONS(2226), - [anon_sym_source_DASHenv] = ACTIONS(2226), - [anon_sym_register] = ACTIONS(2226), - [anon_sym_hide] = ACTIONS(2226), - [anon_sym_hide_DASHenv] = ACTIONS(2226), - [anon_sym_overlay] = ACTIONS(2226), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_as] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), - [aux_sym__val_number_decimal_token1] = ACTIONS(2226), - [aux_sym__val_number_decimal_token2] = ACTIONS(2228), - [anon_sym_DOT2] = ACTIONS(2226), - [aux_sym__val_number_decimal_token3] = ACTIONS(2228), - [aux_sym__val_number_token1] = ACTIONS(2228), - [aux_sym__val_number_token2] = ACTIONS(2228), - [aux_sym__val_number_token3] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2228), - [sym__str_single_quotes] = ACTIONS(2228), - [sym__str_back_ticks] = ACTIONS(2228), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2228), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_alias] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_let_DASHenv] = ACTIONS(2437), + [anon_sym_mut] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [aux_sym_cmd_identifier_token1] = ACTIONS(2437), + [aux_sym_cmd_identifier_token2] = ACTIONS(2437), + [aux_sym_cmd_identifier_token3] = ACTIONS(2437), + [aux_sym_cmd_identifier_token4] = ACTIONS(2437), + [aux_sym_cmd_identifier_token5] = ACTIONS(2437), + [aux_sym_cmd_identifier_token6] = ACTIONS(2437), + [aux_sym_cmd_identifier_token7] = ACTIONS(2437), + [aux_sym_cmd_identifier_token8] = ACTIONS(2437), + [aux_sym_cmd_identifier_token9] = ACTIONS(2437), + [aux_sym_cmd_identifier_token10] = ACTIONS(2437), + [aux_sym_cmd_identifier_token11] = ACTIONS(2437), + [aux_sym_cmd_identifier_token12] = ACTIONS(2437), + [aux_sym_cmd_identifier_token13] = ACTIONS(2437), + [aux_sym_cmd_identifier_token14] = ACTIONS(2437), + [aux_sym_cmd_identifier_token15] = ACTIONS(2437), + [aux_sym_cmd_identifier_token16] = ACTIONS(2437), + [aux_sym_cmd_identifier_token17] = ACTIONS(2437), + [aux_sym_cmd_identifier_token18] = ACTIONS(2437), + [aux_sym_cmd_identifier_token19] = ACTIONS(2437), + [aux_sym_cmd_identifier_token20] = ACTIONS(2437), + [aux_sym_cmd_identifier_token21] = ACTIONS(2437), + [aux_sym_cmd_identifier_token22] = ACTIONS(2437), + [aux_sym_cmd_identifier_token23] = ACTIONS(2437), + [aux_sym_cmd_identifier_token24] = ACTIONS(2437), + [aux_sym_cmd_identifier_token25] = ACTIONS(2437), + [aux_sym_cmd_identifier_token26] = ACTIONS(2437), + [aux_sym_cmd_identifier_token27] = ACTIONS(2437), + [aux_sym_cmd_identifier_token28] = ACTIONS(2437), + [aux_sym_cmd_identifier_token29] = ACTIONS(2437), + [aux_sym_cmd_identifier_token30] = ACTIONS(2437), + [aux_sym_cmd_identifier_token31] = ACTIONS(2437), + [aux_sym_cmd_identifier_token32] = ACTIONS(2437), + [aux_sym_cmd_identifier_token33] = ACTIONS(2437), + [aux_sym_cmd_identifier_token34] = ACTIONS(2437), + [aux_sym_cmd_identifier_token35] = ACTIONS(2437), + [aux_sym_cmd_identifier_token36] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2439), + [anon_sym_false] = ACTIONS(2439), + [anon_sym_null] = ACTIONS(2439), + [aux_sym_cmd_identifier_token38] = ACTIONS(2437), + [aux_sym_cmd_identifier_token39] = ACTIONS(2439), + [aux_sym_cmd_identifier_token40] = ACTIONS(2439), + [anon_sym_def] = ACTIONS(2437), + [anon_sym_export_DASHenv] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2439), + [anon_sym_error] = ACTIONS(2437), + [anon_sym_list] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_in] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_make] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_catch] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_source] = ACTIONS(2437), + [anon_sym_source_DASHenv] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_hide] = ACTIONS(2437), + [anon_sym_hide_DASHenv] = ACTIONS(2437), + [anon_sym_overlay] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2439), + [aux_sym__val_number_decimal_token1] = ACTIONS(2437), + [aux_sym__val_number_decimal_token2] = ACTIONS(2439), + [aux_sym__val_number_decimal_token3] = ACTIONS(2439), + [aux_sym__val_number_decimal_token4] = ACTIONS(2439), + [aux_sym__val_number_token1] = ACTIONS(2439), + [aux_sym__val_number_token2] = ACTIONS(2439), + [aux_sym__val_number_token3] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym__str_single_quotes] = ACTIONS(2439), + [sym__str_back_ticks] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2439), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(247), }, [624] = { [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_alias] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_let_DASHenv] = ACTIONS(2394), - [anon_sym_mut] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [aux_sym_cmd_identifier_token1] = ACTIONS(2394), - [aux_sym_cmd_identifier_token2] = ACTIONS(2394), - [aux_sym_cmd_identifier_token3] = ACTIONS(2394), - [aux_sym_cmd_identifier_token4] = ACTIONS(2394), - [aux_sym_cmd_identifier_token5] = ACTIONS(2394), - [aux_sym_cmd_identifier_token6] = ACTIONS(2394), - [aux_sym_cmd_identifier_token7] = ACTIONS(2394), - [aux_sym_cmd_identifier_token8] = ACTIONS(2394), - [aux_sym_cmd_identifier_token9] = ACTIONS(2394), - [aux_sym_cmd_identifier_token10] = ACTIONS(2394), - [aux_sym_cmd_identifier_token11] = ACTIONS(2394), - [aux_sym_cmd_identifier_token12] = ACTIONS(2394), - [aux_sym_cmd_identifier_token13] = ACTIONS(2394), - [aux_sym_cmd_identifier_token14] = ACTIONS(2394), - [aux_sym_cmd_identifier_token15] = ACTIONS(2394), - [aux_sym_cmd_identifier_token16] = ACTIONS(2394), - [aux_sym_cmd_identifier_token17] = ACTIONS(2394), - [aux_sym_cmd_identifier_token18] = ACTIONS(2394), - [aux_sym_cmd_identifier_token19] = ACTIONS(2394), - [aux_sym_cmd_identifier_token20] = ACTIONS(2394), - [aux_sym_cmd_identifier_token21] = ACTIONS(2394), - [aux_sym_cmd_identifier_token22] = ACTIONS(2394), - [aux_sym_cmd_identifier_token23] = ACTIONS(2394), - [aux_sym_cmd_identifier_token24] = ACTIONS(2394), - [aux_sym_cmd_identifier_token25] = ACTIONS(2394), - [aux_sym_cmd_identifier_token26] = ACTIONS(2394), - [aux_sym_cmd_identifier_token27] = ACTIONS(2394), - [aux_sym_cmd_identifier_token28] = ACTIONS(2394), - [aux_sym_cmd_identifier_token29] = ACTIONS(2394), - [aux_sym_cmd_identifier_token30] = ACTIONS(2394), - [aux_sym_cmd_identifier_token31] = ACTIONS(2394), - [aux_sym_cmd_identifier_token32] = ACTIONS(2394), - [aux_sym_cmd_identifier_token33] = ACTIONS(2394), - [aux_sym_cmd_identifier_token34] = ACTIONS(2394), - [aux_sym_cmd_identifier_token35] = ACTIONS(2394), - [aux_sym_cmd_identifier_token36] = ACTIONS(2394), - [anon_sym_true] = ACTIONS(2396), - [anon_sym_false] = ACTIONS(2396), - [anon_sym_null] = ACTIONS(2396), - [aux_sym_cmd_identifier_token38] = ACTIONS(2394), - [aux_sym_cmd_identifier_token39] = ACTIONS(2396), - [aux_sym_cmd_identifier_token40] = ACTIONS(2396), - [anon_sym_def] = ACTIONS(2394), - [anon_sym_export_DASHenv] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_use] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2396), - [anon_sym_error] = ACTIONS(2394), - [anon_sym_list] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_in] = ACTIONS(2394), - [anon_sym_loop] = ACTIONS(2394), - [anon_sym_make] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_match] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_catch] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_source] = ACTIONS(2394), - [anon_sym_source_DASHenv] = ACTIONS(2394), - [anon_sym_register] = ACTIONS(2394), - [anon_sym_hide] = ACTIONS(2394), - [anon_sym_hide_DASHenv] = ACTIONS(2394), - [anon_sym_overlay] = ACTIONS(2394), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_as] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2396), - [aux_sym__val_number_decimal_token1] = ACTIONS(2394), - [aux_sym__val_number_decimal_token2] = ACTIONS(2396), - [anon_sym_DOT2] = ACTIONS(2394), - [aux_sym__val_number_decimal_token3] = ACTIONS(2396), - [aux_sym__val_number_token1] = ACTIONS(2396), - [aux_sym__val_number_token2] = ACTIONS(2396), - [aux_sym__val_number_token3] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2396), - [sym__str_single_quotes] = ACTIONS(2396), - [sym__str_back_ticks] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(1879), + [aux_sym_cmd_identifier_token3] = ACTIONS(1879), + [aux_sym_cmd_identifier_token4] = ACTIONS(1879), + [aux_sym_cmd_identifier_token5] = ACTIONS(1879), + [aux_sym_cmd_identifier_token6] = ACTIONS(1879), + [aux_sym_cmd_identifier_token7] = ACTIONS(1879), + [aux_sym_cmd_identifier_token8] = ACTIONS(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1879), + [aux_sym_cmd_identifier_token11] = ACTIONS(1879), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(1879), + [aux_sym_cmd_identifier_token17] = ACTIONS(1879), + [aux_sym_cmd_identifier_token18] = ACTIONS(1879), + [aux_sym_cmd_identifier_token19] = ACTIONS(1879), + [aux_sym_cmd_identifier_token20] = ACTIONS(1879), + [aux_sym_cmd_identifier_token21] = ACTIONS(1879), + [aux_sym_cmd_identifier_token22] = ACTIONS(1879), + [aux_sym_cmd_identifier_token23] = ACTIONS(1879), + [aux_sym_cmd_identifier_token24] = ACTIONS(1879), + [aux_sym_cmd_identifier_token25] = ACTIONS(1879), + [aux_sym_cmd_identifier_token26] = ACTIONS(1879), + [aux_sym_cmd_identifier_token27] = ACTIONS(1879), + [aux_sym_cmd_identifier_token28] = ACTIONS(1879), + [aux_sym_cmd_identifier_token29] = ACTIONS(1879), + [aux_sym_cmd_identifier_token30] = ACTIONS(1879), + [aux_sym_cmd_identifier_token31] = ACTIONS(1879), + [aux_sym_cmd_identifier_token32] = ACTIONS(1879), + [aux_sym_cmd_identifier_token33] = ACTIONS(1879), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1879), + [aux_sym_cmd_identifier_token36] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_list] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), }, [625] = { [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_alias] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_let_DASHenv] = ACTIONS(2188), - [anon_sym_mut] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [aux_sym_cmd_identifier_token1] = ACTIONS(2188), - [aux_sym_cmd_identifier_token2] = ACTIONS(2188), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), - [aux_sym_cmd_identifier_token6] = ACTIONS(2188), - [aux_sym_cmd_identifier_token7] = ACTIONS(2188), - [aux_sym_cmd_identifier_token8] = ACTIONS(2188), - [aux_sym_cmd_identifier_token9] = ACTIONS(2188), - [aux_sym_cmd_identifier_token10] = ACTIONS(2188), - [aux_sym_cmd_identifier_token11] = ACTIONS(2188), - [aux_sym_cmd_identifier_token12] = ACTIONS(2188), - [aux_sym_cmd_identifier_token13] = ACTIONS(2188), - [aux_sym_cmd_identifier_token14] = ACTIONS(2188), - [aux_sym_cmd_identifier_token15] = ACTIONS(2188), - [aux_sym_cmd_identifier_token16] = ACTIONS(2188), - [aux_sym_cmd_identifier_token17] = ACTIONS(2188), - [aux_sym_cmd_identifier_token18] = ACTIONS(2188), - [aux_sym_cmd_identifier_token19] = ACTIONS(2188), - [aux_sym_cmd_identifier_token20] = ACTIONS(2188), - [aux_sym_cmd_identifier_token21] = ACTIONS(2188), - [aux_sym_cmd_identifier_token22] = ACTIONS(2188), - [aux_sym_cmd_identifier_token23] = ACTIONS(2188), - [aux_sym_cmd_identifier_token24] = ACTIONS(2188), - [aux_sym_cmd_identifier_token25] = ACTIONS(2188), - [aux_sym_cmd_identifier_token26] = ACTIONS(2188), - [aux_sym_cmd_identifier_token27] = ACTIONS(2188), - [aux_sym_cmd_identifier_token28] = ACTIONS(2188), - [aux_sym_cmd_identifier_token29] = ACTIONS(2188), - [aux_sym_cmd_identifier_token30] = ACTIONS(2188), - [aux_sym_cmd_identifier_token31] = ACTIONS(2188), - [aux_sym_cmd_identifier_token32] = ACTIONS(2188), - [aux_sym_cmd_identifier_token33] = ACTIONS(2188), - [aux_sym_cmd_identifier_token34] = ACTIONS(2188), - [aux_sym_cmd_identifier_token35] = ACTIONS(2188), - [aux_sym_cmd_identifier_token36] = ACTIONS(2188), - [anon_sym_true] = ACTIONS(2190), - [anon_sym_false] = ACTIONS(2190), - [anon_sym_null] = ACTIONS(2190), - [aux_sym_cmd_identifier_token38] = ACTIONS(2188), - [aux_sym_cmd_identifier_token39] = ACTIONS(2190), - [aux_sym_cmd_identifier_token40] = ACTIONS(2190), - [anon_sym_def] = ACTIONS(2188), - [anon_sym_export_DASHenv] = ACTIONS(2188), - [anon_sym_extern] = ACTIONS(2188), - [anon_sym_module] = ACTIONS(2188), - [anon_sym_use] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_DOLLAR] = ACTIONS(2190), - [anon_sym_error] = ACTIONS(2188), - [anon_sym_list] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_in] = ACTIONS(2188), - [anon_sym_loop] = ACTIONS(2188), - [anon_sym_make] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_else] = ACTIONS(2188), - [anon_sym_match] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_catch] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_source] = ACTIONS(2188), - [anon_sym_source_DASHenv] = ACTIONS(2188), - [anon_sym_register] = ACTIONS(2188), - [anon_sym_hide] = ACTIONS(2188), - [anon_sym_hide_DASHenv] = ACTIONS(2188), - [anon_sym_overlay] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_as] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2190), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2190), - [aux_sym__val_number_decimal_token1] = ACTIONS(2188), - [aux_sym__val_number_decimal_token2] = ACTIONS(2190), - [anon_sym_DOT2] = ACTIONS(2188), - [aux_sym__val_number_decimal_token3] = ACTIONS(2190), - [aux_sym__val_number_token1] = ACTIONS(2190), - [aux_sym__val_number_token2] = ACTIONS(2190), - [aux_sym__val_number_token3] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [sym__str_single_quotes] = ACTIONS(2190), - [sym__str_back_ticks] = ACTIONS(2190), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_list] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_new] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [626] = { [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_alias] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_let_DASHenv] = ACTIONS(2216), - [anon_sym_mut] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [aux_sym_cmd_identifier_token1] = ACTIONS(2216), - [aux_sym_cmd_identifier_token2] = ACTIONS(2216), - [aux_sym_cmd_identifier_token3] = ACTIONS(2216), - [aux_sym_cmd_identifier_token4] = ACTIONS(2216), - [aux_sym_cmd_identifier_token5] = ACTIONS(2216), - [aux_sym_cmd_identifier_token6] = ACTIONS(2216), - [aux_sym_cmd_identifier_token7] = ACTIONS(2216), - [aux_sym_cmd_identifier_token8] = ACTIONS(2216), - [aux_sym_cmd_identifier_token9] = ACTIONS(2216), - [aux_sym_cmd_identifier_token10] = ACTIONS(2216), - [aux_sym_cmd_identifier_token11] = ACTIONS(2216), - [aux_sym_cmd_identifier_token12] = ACTIONS(2216), - [aux_sym_cmd_identifier_token13] = ACTIONS(2216), - [aux_sym_cmd_identifier_token14] = ACTIONS(2216), - [aux_sym_cmd_identifier_token15] = ACTIONS(2216), - [aux_sym_cmd_identifier_token16] = ACTIONS(2216), - [aux_sym_cmd_identifier_token17] = ACTIONS(2216), - [aux_sym_cmd_identifier_token18] = ACTIONS(2216), - [aux_sym_cmd_identifier_token19] = ACTIONS(2216), - [aux_sym_cmd_identifier_token20] = ACTIONS(2216), - [aux_sym_cmd_identifier_token21] = ACTIONS(2216), - [aux_sym_cmd_identifier_token22] = ACTIONS(2216), - [aux_sym_cmd_identifier_token23] = ACTIONS(2216), - [aux_sym_cmd_identifier_token24] = ACTIONS(2216), - [aux_sym_cmd_identifier_token25] = ACTIONS(2216), - [aux_sym_cmd_identifier_token26] = ACTIONS(2216), - [aux_sym_cmd_identifier_token27] = ACTIONS(2216), - [aux_sym_cmd_identifier_token28] = ACTIONS(2216), - [aux_sym_cmd_identifier_token29] = ACTIONS(2216), - [aux_sym_cmd_identifier_token30] = ACTIONS(2216), - [aux_sym_cmd_identifier_token31] = ACTIONS(2216), - [aux_sym_cmd_identifier_token32] = ACTIONS(2216), - [aux_sym_cmd_identifier_token33] = ACTIONS(2216), - [aux_sym_cmd_identifier_token34] = ACTIONS(2216), - [aux_sym_cmd_identifier_token35] = ACTIONS(2216), - [aux_sym_cmd_identifier_token36] = ACTIONS(2216), - [anon_sym_true] = ACTIONS(2218), - [anon_sym_false] = ACTIONS(2218), - [anon_sym_null] = ACTIONS(2218), - [aux_sym_cmd_identifier_token38] = ACTIONS(2216), - [aux_sym_cmd_identifier_token39] = ACTIONS(2218), - [aux_sym_cmd_identifier_token40] = ACTIONS(2218), - [anon_sym_def] = ACTIONS(2216), - [anon_sym_export_DASHenv] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2218), - [anon_sym_error] = ACTIONS(2216), - [anon_sym_list] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_loop] = ACTIONS(2216), - [anon_sym_make] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_match] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_catch] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_source] = ACTIONS(2216), - [anon_sym_source_DASHenv] = ACTIONS(2216), - [anon_sym_register] = ACTIONS(2216), - [anon_sym_hide] = ACTIONS(2216), - [anon_sym_hide_DASHenv] = ACTIONS(2216), - [anon_sym_overlay] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), - [aux_sym__val_number_decimal_token1] = ACTIONS(2216), - [aux_sym__val_number_decimal_token2] = ACTIONS(2218), - [anon_sym_DOT2] = ACTIONS(2216), - [aux_sym__val_number_decimal_token3] = ACTIONS(2218), - [aux_sym__val_number_token1] = ACTIONS(2218), - [aux_sym__val_number_token2] = ACTIONS(2218), - [aux_sym__val_number_token3] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_alias] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_let_DASHenv] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [aux_sym_cmd_identifier_token1] = ACTIONS(2441), + [aux_sym_cmd_identifier_token2] = ACTIONS(2441), + [aux_sym_cmd_identifier_token3] = ACTIONS(2441), + [aux_sym_cmd_identifier_token4] = ACTIONS(2441), + [aux_sym_cmd_identifier_token5] = ACTIONS(2441), + [aux_sym_cmd_identifier_token6] = ACTIONS(2441), + [aux_sym_cmd_identifier_token7] = ACTIONS(2441), + [aux_sym_cmd_identifier_token8] = ACTIONS(2441), + [aux_sym_cmd_identifier_token9] = ACTIONS(2441), + [aux_sym_cmd_identifier_token10] = ACTIONS(2441), + [aux_sym_cmd_identifier_token11] = ACTIONS(2441), + [aux_sym_cmd_identifier_token12] = ACTIONS(2441), + [aux_sym_cmd_identifier_token13] = ACTIONS(2441), + [aux_sym_cmd_identifier_token14] = ACTIONS(2441), + [aux_sym_cmd_identifier_token15] = ACTIONS(2441), + [aux_sym_cmd_identifier_token16] = ACTIONS(2441), + [aux_sym_cmd_identifier_token17] = ACTIONS(2441), + [aux_sym_cmd_identifier_token18] = ACTIONS(2441), + [aux_sym_cmd_identifier_token19] = ACTIONS(2441), + [aux_sym_cmd_identifier_token20] = ACTIONS(2441), + [aux_sym_cmd_identifier_token21] = ACTIONS(2441), + [aux_sym_cmd_identifier_token22] = ACTIONS(2441), + [aux_sym_cmd_identifier_token23] = ACTIONS(2441), + [aux_sym_cmd_identifier_token24] = ACTIONS(2441), + [aux_sym_cmd_identifier_token25] = ACTIONS(2441), + [aux_sym_cmd_identifier_token26] = ACTIONS(2441), + [aux_sym_cmd_identifier_token27] = ACTIONS(2441), + [aux_sym_cmd_identifier_token28] = ACTIONS(2441), + [aux_sym_cmd_identifier_token29] = ACTIONS(2441), + [aux_sym_cmd_identifier_token30] = ACTIONS(2441), + [aux_sym_cmd_identifier_token31] = ACTIONS(2441), + [aux_sym_cmd_identifier_token32] = ACTIONS(2441), + [aux_sym_cmd_identifier_token33] = ACTIONS(2441), + [aux_sym_cmd_identifier_token34] = ACTIONS(2441), + [aux_sym_cmd_identifier_token35] = ACTIONS(2441), + [aux_sym_cmd_identifier_token36] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2443), + [anon_sym_false] = ACTIONS(2443), + [anon_sym_null] = ACTIONS(2443), + [aux_sym_cmd_identifier_token38] = ACTIONS(2441), + [aux_sym_cmd_identifier_token39] = ACTIONS(2443), + [aux_sym_cmd_identifier_token40] = ACTIONS(2443), + [anon_sym_def] = ACTIONS(2441), + [anon_sym_export_DASHenv] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_DOLLAR] = ACTIONS(2443), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_list] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_make] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_catch] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_source] = ACTIONS(2441), + [anon_sym_source_DASHenv] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2443), + [aux_sym__val_number_decimal_token1] = ACTIONS(2441), + [aux_sym__val_number_decimal_token2] = ACTIONS(2443), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [aux_sym__val_number_token1] = ACTIONS(2443), + [aux_sym__val_number_token2] = ACTIONS(2443), + [aux_sym__val_number_token3] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym__str_single_quotes] = ACTIONS(2443), + [sym__str_back_ticks] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(247), }, [627] = { [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(2333), - [anon_sym_alias] = ACTIONS(2333), - [anon_sym_let] = ACTIONS(2333), - [anon_sym_let_DASHenv] = ACTIONS(2333), - [anon_sym_mut] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [aux_sym_cmd_identifier_token1] = ACTIONS(2333), - [aux_sym_cmd_identifier_token2] = ACTIONS(2333), - [aux_sym_cmd_identifier_token3] = ACTIONS(2333), - [aux_sym_cmd_identifier_token4] = ACTIONS(2333), - [aux_sym_cmd_identifier_token5] = ACTIONS(2333), - [aux_sym_cmd_identifier_token6] = ACTIONS(2333), - [aux_sym_cmd_identifier_token7] = ACTIONS(2333), - [aux_sym_cmd_identifier_token8] = ACTIONS(2333), - [aux_sym_cmd_identifier_token9] = ACTIONS(2333), - [aux_sym_cmd_identifier_token10] = ACTIONS(2333), - [aux_sym_cmd_identifier_token11] = ACTIONS(2333), - [aux_sym_cmd_identifier_token12] = ACTIONS(2333), - [aux_sym_cmd_identifier_token13] = ACTIONS(2333), - [aux_sym_cmd_identifier_token14] = ACTIONS(2333), - [aux_sym_cmd_identifier_token15] = ACTIONS(2333), - [aux_sym_cmd_identifier_token16] = ACTIONS(2333), - [aux_sym_cmd_identifier_token17] = ACTIONS(2333), - [aux_sym_cmd_identifier_token18] = ACTIONS(2333), - [aux_sym_cmd_identifier_token19] = ACTIONS(2333), - [aux_sym_cmd_identifier_token20] = ACTIONS(2333), - [aux_sym_cmd_identifier_token21] = ACTIONS(2333), - [aux_sym_cmd_identifier_token22] = ACTIONS(2333), - [aux_sym_cmd_identifier_token23] = ACTIONS(2333), - [aux_sym_cmd_identifier_token24] = ACTIONS(2333), - [aux_sym_cmd_identifier_token25] = ACTIONS(2333), - [aux_sym_cmd_identifier_token26] = ACTIONS(2333), - [aux_sym_cmd_identifier_token27] = ACTIONS(2333), - [aux_sym_cmd_identifier_token28] = ACTIONS(2333), - [aux_sym_cmd_identifier_token29] = ACTIONS(2333), - [aux_sym_cmd_identifier_token30] = ACTIONS(2333), - [aux_sym_cmd_identifier_token31] = ACTIONS(2333), - [aux_sym_cmd_identifier_token32] = ACTIONS(2333), - [aux_sym_cmd_identifier_token33] = ACTIONS(2333), - [aux_sym_cmd_identifier_token34] = ACTIONS(2333), - [aux_sym_cmd_identifier_token35] = ACTIONS(2333), - [aux_sym_cmd_identifier_token36] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2335), - [anon_sym_false] = ACTIONS(2335), - [anon_sym_null] = ACTIONS(2335), - [aux_sym_cmd_identifier_token38] = ACTIONS(2333), - [aux_sym_cmd_identifier_token39] = ACTIONS(2335), - [aux_sym_cmd_identifier_token40] = ACTIONS(2335), - [anon_sym_def] = ACTIONS(2333), - [anon_sym_export_DASHenv] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2333), - [anon_sym_module] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2335), - [anon_sym_error] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_in] = ACTIONS(2333), - [anon_sym_loop] = ACTIONS(2333), - [anon_sym_make] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_else] = ACTIONS(2333), - [anon_sym_match] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_catch] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_source] = ACTIONS(2333), - [anon_sym_source_DASHenv] = ACTIONS(2333), - [anon_sym_register] = ACTIONS(2333), - [anon_sym_hide] = ACTIONS(2333), - [anon_sym_hide_DASHenv] = ACTIONS(2333), - [anon_sym_overlay] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_as] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2335), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2335), - [aux_sym__val_number_decimal_token1] = ACTIONS(2333), - [aux_sym__val_number_decimal_token2] = ACTIONS(2335), - [anon_sym_DOT2] = ACTIONS(2333), - [aux_sym__val_number_decimal_token3] = ACTIONS(2335), - [aux_sym__val_number_token1] = ACTIONS(2335), - [aux_sym__val_number_token2] = ACTIONS(2335), - [aux_sym__val_number_token3] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym__str_single_quotes] = ACTIONS(2335), - [sym__str_back_ticks] = ACTIONS(2335), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2335), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2311), + [anon_sym_alias] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_let_DASHenv] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [aux_sym_cmd_identifier_token1] = ACTIONS(2311), + [aux_sym_cmd_identifier_token2] = ACTIONS(2311), + [aux_sym_cmd_identifier_token3] = ACTIONS(2311), + [aux_sym_cmd_identifier_token4] = ACTIONS(2311), + [aux_sym_cmd_identifier_token5] = ACTIONS(2311), + [aux_sym_cmd_identifier_token6] = ACTIONS(2311), + [aux_sym_cmd_identifier_token7] = ACTIONS(2311), + [aux_sym_cmd_identifier_token8] = ACTIONS(2311), + [aux_sym_cmd_identifier_token9] = ACTIONS(2311), + [aux_sym_cmd_identifier_token10] = ACTIONS(2311), + [aux_sym_cmd_identifier_token11] = ACTIONS(2311), + [aux_sym_cmd_identifier_token12] = ACTIONS(2311), + [aux_sym_cmd_identifier_token13] = ACTIONS(2311), + [aux_sym_cmd_identifier_token14] = ACTIONS(2311), + [aux_sym_cmd_identifier_token15] = ACTIONS(2311), + [aux_sym_cmd_identifier_token16] = ACTIONS(2311), + [aux_sym_cmd_identifier_token17] = ACTIONS(2311), + [aux_sym_cmd_identifier_token18] = ACTIONS(2311), + [aux_sym_cmd_identifier_token19] = ACTIONS(2311), + [aux_sym_cmd_identifier_token20] = ACTIONS(2311), + [aux_sym_cmd_identifier_token21] = ACTIONS(2311), + [aux_sym_cmd_identifier_token22] = ACTIONS(2311), + [aux_sym_cmd_identifier_token23] = ACTIONS(2311), + [aux_sym_cmd_identifier_token24] = ACTIONS(2311), + [aux_sym_cmd_identifier_token25] = ACTIONS(2311), + [aux_sym_cmd_identifier_token26] = ACTIONS(2311), + [aux_sym_cmd_identifier_token27] = ACTIONS(2311), + [aux_sym_cmd_identifier_token28] = ACTIONS(2311), + [aux_sym_cmd_identifier_token29] = ACTIONS(2311), + [aux_sym_cmd_identifier_token30] = ACTIONS(2311), + [aux_sym_cmd_identifier_token31] = ACTIONS(2311), + [aux_sym_cmd_identifier_token32] = ACTIONS(2311), + [aux_sym_cmd_identifier_token33] = ACTIONS(2311), + [aux_sym_cmd_identifier_token34] = ACTIONS(2311), + [aux_sym_cmd_identifier_token35] = ACTIONS(2311), + [aux_sym_cmd_identifier_token36] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2311), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_export_DASHenv] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_module] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_error] = ACTIONS(2311), + [anon_sym_list] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_make] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_do] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_source] = ACTIONS(2311), + [anon_sym_source_DASHenv] = ACTIONS(2311), + [anon_sym_register] = ACTIONS(2311), + [anon_sym_hide] = ACTIONS(2311), + [anon_sym_hide_DASHenv] = ACTIONS(2311), + [anon_sym_overlay] = ACTIONS(2311), + [anon_sym_new] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2311), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(247), }, [628] = { [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(1764), - [anon_sym_alias] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_let_DASHenv] = ACTIONS(1764), - [anon_sym_mut] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [aux_sym_cmd_identifier_token1] = ACTIONS(1764), - [aux_sym_cmd_identifier_token2] = ACTIONS(1764), - [aux_sym_cmd_identifier_token3] = ACTIONS(1764), - [aux_sym_cmd_identifier_token4] = ACTIONS(1764), - [aux_sym_cmd_identifier_token5] = ACTIONS(1764), - [aux_sym_cmd_identifier_token6] = ACTIONS(1764), - [aux_sym_cmd_identifier_token7] = ACTIONS(1764), - [aux_sym_cmd_identifier_token8] = ACTIONS(1764), - [aux_sym_cmd_identifier_token9] = ACTIONS(1764), - [aux_sym_cmd_identifier_token10] = ACTIONS(1764), - [aux_sym_cmd_identifier_token11] = ACTIONS(1764), - [aux_sym_cmd_identifier_token12] = ACTIONS(1764), - [aux_sym_cmd_identifier_token13] = ACTIONS(1764), - [aux_sym_cmd_identifier_token14] = ACTIONS(1764), - [aux_sym_cmd_identifier_token15] = ACTIONS(1764), - [aux_sym_cmd_identifier_token16] = ACTIONS(1764), - [aux_sym_cmd_identifier_token17] = ACTIONS(1764), - [aux_sym_cmd_identifier_token18] = ACTIONS(1764), - [aux_sym_cmd_identifier_token19] = ACTIONS(1764), - [aux_sym_cmd_identifier_token20] = ACTIONS(1764), - [aux_sym_cmd_identifier_token21] = ACTIONS(1764), - [aux_sym_cmd_identifier_token22] = ACTIONS(1764), - [aux_sym_cmd_identifier_token23] = ACTIONS(1764), - [aux_sym_cmd_identifier_token24] = ACTIONS(1764), - [aux_sym_cmd_identifier_token25] = ACTIONS(1764), - [aux_sym_cmd_identifier_token26] = ACTIONS(1764), - [aux_sym_cmd_identifier_token27] = ACTIONS(1764), - [aux_sym_cmd_identifier_token28] = ACTIONS(1764), - [aux_sym_cmd_identifier_token29] = ACTIONS(1764), - [aux_sym_cmd_identifier_token30] = ACTIONS(1764), - [aux_sym_cmd_identifier_token31] = ACTIONS(1764), - [aux_sym_cmd_identifier_token32] = ACTIONS(1764), - [aux_sym_cmd_identifier_token33] = ACTIONS(1764), - [aux_sym_cmd_identifier_token34] = ACTIONS(1764), - [aux_sym_cmd_identifier_token35] = ACTIONS(1764), - [aux_sym_cmd_identifier_token36] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1766), - [aux_sym_cmd_identifier_token38] = ACTIONS(1764), - [aux_sym_cmd_identifier_token39] = ACTIONS(1766), - [aux_sym_cmd_identifier_token40] = ACTIONS(1766), - [anon_sym_def] = ACTIONS(1764), - [anon_sym_export_DASHenv] = ACTIONS(1764), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_module] = ACTIONS(1764), - [anon_sym_use] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [anon_sym_error] = ACTIONS(1764), - [anon_sym_list] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [anon_sym_loop] = ACTIONS(1764), - [anon_sym_make] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_do] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_match] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_try] = ACTIONS(1764), - [anon_sym_catch] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_source] = ACTIONS(1764), - [anon_sym_source_DASHenv] = ACTIONS(1764), - [anon_sym_register] = ACTIONS(1764), - [anon_sym_hide] = ACTIONS(1764), - [anon_sym_hide_DASHenv] = ACTIONS(1764), - [anon_sym_overlay] = ACTIONS(1764), - [anon_sym_new] = ACTIONS(1764), - [anon_sym_as] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1766), - [aux_sym__val_number_decimal_token1] = ACTIONS(1764), - [aux_sym__val_number_decimal_token2] = ACTIONS(1766), - [anon_sym_DOT2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1766), - [aux_sym__val_number_token1] = ACTIONS(1766), - [aux_sym__val_number_token2] = ACTIONS(1766), - [aux_sym__val_number_token3] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym__str_single_quotes] = ACTIONS(1766), - [sym__str_back_ticks] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2311), + [anon_sym_alias] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_let_DASHenv] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [aux_sym_cmd_identifier_token1] = ACTIONS(2311), + [aux_sym_cmd_identifier_token2] = ACTIONS(2311), + [aux_sym_cmd_identifier_token3] = ACTIONS(2311), + [aux_sym_cmd_identifier_token4] = ACTIONS(2311), + [aux_sym_cmd_identifier_token5] = ACTIONS(2311), + [aux_sym_cmd_identifier_token6] = ACTIONS(2311), + [aux_sym_cmd_identifier_token7] = ACTIONS(2311), + [aux_sym_cmd_identifier_token8] = ACTIONS(2311), + [aux_sym_cmd_identifier_token9] = ACTIONS(2311), + [aux_sym_cmd_identifier_token10] = ACTIONS(2311), + [aux_sym_cmd_identifier_token11] = ACTIONS(2311), + [aux_sym_cmd_identifier_token12] = ACTIONS(2311), + [aux_sym_cmd_identifier_token13] = ACTIONS(2311), + [aux_sym_cmd_identifier_token14] = ACTIONS(2311), + [aux_sym_cmd_identifier_token15] = ACTIONS(2311), + [aux_sym_cmd_identifier_token16] = ACTIONS(2311), + [aux_sym_cmd_identifier_token17] = ACTIONS(2311), + [aux_sym_cmd_identifier_token18] = ACTIONS(2311), + [aux_sym_cmd_identifier_token19] = ACTIONS(2311), + [aux_sym_cmd_identifier_token20] = ACTIONS(2311), + [aux_sym_cmd_identifier_token21] = ACTIONS(2311), + [aux_sym_cmd_identifier_token22] = ACTIONS(2311), + [aux_sym_cmd_identifier_token23] = ACTIONS(2311), + [aux_sym_cmd_identifier_token24] = ACTIONS(2311), + [aux_sym_cmd_identifier_token25] = ACTIONS(2311), + [aux_sym_cmd_identifier_token26] = ACTIONS(2311), + [aux_sym_cmd_identifier_token27] = ACTIONS(2311), + [aux_sym_cmd_identifier_token28] = ACTIONS(2311), + [aux_sym_cmd_identifier_token29] = ACTIONS(2311), + [aux_sym_cmd_identifier_token30] = ACTIONS(2311), + [aux_sym_cmd_identifier_token31] = ACTIONS(2311), + [aux_sym_cmd_identifier_token32] = ACTIONS(2311), + [aux_sym_cmd_identifier_token33] = ACTIONS(2311), + [aux_sym_cmd_identifier_token34] = ACTIONS(2311), + [aux_sym_cmd_identifier_token35] = ACTIONS(2311), + [aux_sym_cmd_identifier_token36] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2311), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_export_DASHenv] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_module] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_error] = ACTIONS(2311), + [anon_sym_list] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_make] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_do] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_source] = ACTIONS(2311), + [anon_sym_source_DASHenv] = ACTIONS(2311), + [anon_sym_register] = ACTIONS(2311), + [anon_sym_hide] = ACTIONS(2311), + [anon_sym_hide_DASHenv] = ACTIONS(2311), + [anon_sym_overlay] = ACTIONS(2311), + [anon_sym_new] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2311), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(247), }, [629] = { [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_alias] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_let_DASHenv] = ACTIONS(2337), - [anon_sym_mut] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [aux_sym_cmd_identifier_token1] = ACTIONS(2337), - [aux_sym_cmd_identifier_token2] = ACTIONS(2337), - [aux_sym_cmd_identifier_token3] = ACTIONS(2337), - [aux_sym_cmd_identifier_token4] = ACTIONS(2337), - [aux_sym_cmd_identifier_token5] = ACTIONS(2337), - [aux_sym_cmd_identifier_token6] = ACTIONS(2337), - [aux_sym_cmd_identifier_token7] = ACTIONS(2337), - [aux_sym_cmd_identifier_token8] = ACTIONS(2337), - [aux_sym_cmd_identifier_token9] = ACTIONS(2337), - [aux_sym_cmd_identifier_token10] = ACTIONS(2337), - [aux_sym_cmd_identifier_token11] = ACTIONS(2337), - [aux_sym_cmd_identifier_token12] = ACTIONS(2337), - [aux_sym_cmd_identifier_token13] = ACTIONS(2337), - [aux_sym_cmd_identifier_token14] = ACTIONS(2337), - [aux_sym_cmd_identifier_token15] = ACTIONS(2337), - [aux_sym_cmd_identifier_token16] = ACTIONS(2337), - [aux_sym_cmd_identifier_token17] = ACTIONS(2337), - [aux_sym_cmd_identifier_token18] = ACTIONS(2337), - [aux_sym_cmd_identifier_token19] = ACTIONS(2337), - [aux_sym_cmd_identifier_token20] = ACTIONS(2337), - [aux_sym_cmd_identifier_token21] = ACTIONS(2337), - [aux_sym_cmd_identifier_token22] = ACTIONS(2337), - [aux_sym_cmd_identifier_token23] = ACTIONS(2337), - [aux_sym_cmd_identifier_token24] = ACTIONS(2337), - [aux_sym_cmd_identifier_token25] = ACTIONS(2337), - [aux_sym_cmd_identifier_token26] = ACTIONS(2337), - [aux_sym_cmd_identifier_token27] = ACTIONS(2337), - [aux_sym_cmd_identifier_token28] = ACTIONS(2337), - [aux_sym_cmd_identifier_token29] = ACTIONS(2337), - [aux_sym_cmd_identifier_token30] = ACTIONS(2337), - [aux_sym_cmd_identifier_token31] = ACTIONS(2337), - [aux_sym_cmd_identifier_token32] = ACTIONS(2337), - [aux_sym_cmd_identifier_token33] = ACTIONS(2337), - [aux_sym_cmd_identifier_token34] = ACTIONS(2337), - [aux_sym_cmd_identifier_token35] = ACTIONS(2337), - [aux_sym_cmd_identifier_token36] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2339), - [anon_sym_false] = ACTIONS(2339), - [anon_sym_null] = ACTIONS(2339), - [aux_sym_cmd_identifier_token38] = ACTIONS(2337), - [aux_sym_cmd_identifier_token39] = ACTIONS(2339), - [aux_sym_cmd_identifier_token40] = ACTIONS(2339), - [anon_sym_def] = ACTIONS(2337), - [anon_sym_export_DASHenv] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym_module] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_DOLLAR] = ACTIONS(2339), - [anon_sym_error] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_in] = ACTIONS(2337), - [anon_sym_loop] = ACTIONS(2337), - [anon_sym_make] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_source] = ACTIONS(2337), - [anon_sym_source_DASHenv] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_hide] = ACTIONS(2337), - [anon_sym_hide_DASHenv] = ACTIONS(2337), - [anon_sym_overlay] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_as] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2339), - [aux_sym__val_number_decimal_token1] = ACTIONS(2337), - [aux_sym__val_number_decimal_token2] = ACTIONS(2339), - [anon_sym_DOT2] = ACTIONS(2337), - [aux_sym__val_number_decimal_token3] = ACTIONS(2339), - [aux_sym__val_number_token1] = ACTIONS(2339), - [aux_sym__val_number_token2] = ACTIONS(2339), - [aux_sym__val_number_token3] = ACTIONS(2339), - [anon_sym_DQUOTE] = ACTIONS(2339), - [sym__str_single_quotes] = ACTIONS(2339), - [sym__str_back_ticks] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2339), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2451), + [anon_sym_alias] = ACTIONS(2451), + [anon_sym_let] = ACTIONS(2451), + [anon_sym_let_DASHenv] = ACTIONS(2451), + [anon_sym_mut] = ACTIONS(2451), + [anon_sym_const] = ACTIONS(2451), + [aux_sym_cmd_identifier_token1] = ACTIONS(2451), + [aux_sym_cmd_identifier_token2] = ACTIONS(2451), + [aux_sym_cmd_identifier_token3] = ACTIONS(2451), + [aux_sym_cmd_identifier_token4] = ACTIONS(2451), + [aux_sym_cmd_identifier_token5] = ACTIONS(2451), + [aux_sym_cmd_identifier_token6] = ACTIONS(2451), + [aux_sym_cmd_identifier_token7] = ACTIONS(2451), + [aux_sym_cmd_identifier_token8] = ACTIONS(2451), + [aux_sym_cmd_identifier_token9] = ACTIONS(2451), + [aux_sym_cmd_identifier_token10] = ACTIONS(2451), + [aux_sym_cmd_identifier_token11] = ACTIONS(2451), + [aux_sym_cmd_identifier_token12] = ACTIONS(2451), + [aux_sym_cmd_identifier_token13] = ACTIONS(2451), + [aux_sym_cmd_identifier_token14] = ACTIONS(2451), + [aux_sym_cmd_identifier_token15] = ACTIONS(2451), + [aux_sym_cmd_identifier_token16] = ACTIONS(2451), + [aux_sym_cmd_identifier_token17] = ACTIONS(2451), + [aux_sym_cmd_identifier_token18] = ACTIONS(2451), + [aux_sym_cmd_identifier_token19] = ACTIONS(2451), + [aux_sym_cmd_identifier_token20] = ACTIONS(2451), + [aux_sym_cmd_identifier_token21] = ACTIONS(2451), + [aux_sym_cmd_identifier_token22] = ACTIONS(2451), + [aux_sym_cmd_identifier_token23] = ACTIONS(2451), + [aux_sym_cmd_identifier_token24] = ACTIONS(2451), + [aux_sym_cmd_identifier_token25] = ACTIONS(2451), + [aux_sym_cmd_identifier_token26] = ACTIONS(2451), + [aux_sym_cmd_identifier_token27] = ACTIONS(2451), + [aux_sym_cmd_identifier_token28] = ACTIONS(2451), + [aux_sym_cmd_identifier_token29] = ACTIONS(2451), + [aux_sym_cmd_identifier_token30] = ACTIONS(2451), + [aux_sym_cmd_identifier_token31] = ACTIONS(2451), + [aux_sym_cmd_identifier_token32] = ACTIONS(2451), + [aux_sym_cmd_identifier_token33] = ACTIONS(2451), + [aux_sym_cmd_identifier_token34] = ACTIONS(2451), + [aux_sym_cmd_identifier_token35] = ACTIONS(2451), + [aux_sym_cmd_identifier_token36] = ACTIONS(2451), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_null] = ACTIONS(2453), + [aux_sym_cmd_identifier_token38] = ACTIONS(2451), + [aux_sym_cmd_identifier_token39] = ACTIONS(2453), + [aux_sym_cmd_identifier_token40] = ACTIONS(2453), + [anon_sym_def] = ACTIONS(2451), + [anon_sym_export_DASHenv] = ACTIONS(2451), + [anon_sym_extern] = ACTIONS(2451), + [anon_sym_module] = ACTIONS(2451), + [anon_sym_use] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_DOLLAR] = ACTIONS(2453), + [anon_sym_error] = ACTIONS(2451), + [anon_sym_list] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(2451), + [anon_sym_continue] = ACTIONS(2451), + [anon_sym_for] = ACTIONS(2451), + [anon_sym_in] = ACTIONS(2451), + [anon_sym_loop] = ACTIONS(2451), + [anon_sym_make] = ACTIONS(2451), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_do] = ACTIONS(2451), + [anon_sym_if] = ACTIONS(2451), + [anon_sym_else] = ACTIONS(2451), + [anon_sym_match] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2451), + [anon_sym_catch] = ACTIONS(2451), + [anon_sym_return] = ACTIONS(2451), + [anon_sym_source] = ACTIONS(2451), + [anon_sym_source_DASHenv] = ACTIONS(2451), + [anon_sym_register] = ACTIONS(2451), + [anon_sym_hide] = ACTIONS(2451), + [anon_sym_hide_DASHenv] = ACTIONS(2451), + [anon_sym_overlay] = ACTIONS(2451), + [anon_sym_new] = ACTIONS(2451), + [anon_sym_as] = ACTIONS(2451), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2453), + [aux_sym__val_number_decimal_token1] = ACTIONS(2451), + [aux_sym__val_number_decimal_token2] = ACTIONS(2453), + [aux_sym__val_number_decimal_token3] = ACTIONS(2453), + [aux_sym__val_number_decimal_token4] = ACTIONS(2453), + [aux_sym__val_number_token1] = ACTIONS(2453), + [aux_sym__val_number_token2] = ACTIONS(2453), + [aux_sym__val_number_token3] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [sym__str_single_quotes] = ACTIONS(2453), + [sym__str_back_ticks] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2451), + [anon_sym_POUND] = ACTIONS(247), }, [630] = { [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [aux_sym_cmd_identifier_token2] = ACTIONS(2341), - [aux_sym_cmd_identifier_token3] = ACTIONS(2341), - [aux_sym_cmd_identifier_token4] = ACTIONS(2341), - [aux_sym_cmd_identifier_token5] = ACTIONS(2341), - [aux_sym_cmd_identifier_token6] = ACTIONS(2341), - [aux_sym_cmd_identifier_token7] = ACTIONS(2341), - [aux_sym_cmd_identifier_token8] = ACTIONS(2341), - [aux_sym_cmd_identifier_token9] = ACTIONS(2341), - [aux_sym_cmd_identifier_token10] = ACTIONS(2341), - [aux_sym_cmd_identifier_token11] = ACTIONS(2341), - [aux_sym_cmd_identifier_token12] = ACTIONS(2341), - [aux_sym_cmd_identifier_token13] = ACTIONS(2341), - [aux_sym_cmd_identifier_token14] = ACTIONS(2341), - [aux_sym_cmd_identifier_token15] = ACTIONS(2341), - [aux_sym_cmd_identifier_token16] = ACTIONS(2341), - [aux_sym_cmd_identifier_token17] = ACTIONS(2341), - [aux_sym_cmd_identifier_token18] = ACTIONS(2341), - [aux_sym_cmd_identifier_token19] = ACTIONS(2341), - [aux_sym_cmd_identifier_token20] = ACTIONS(2341), - [aux_sym_cmd_identifier_token21] = ACTIONS(2341), - [aux_sym_cmd_identifier_token22] = ACTIONS(2341), - [aux_sym_cmd_identifier_token23] = ACTIONS(2341), - [aux_sym_cmd_identifier_token24] = ACTIONS(2341), - [aux_sym_cmd_identifier_token25] = ACTIONS(2341), - [aux_sym_cmd_identifier_token26] = ACTIONS(2341), - [aux_sym_cmd_identifier_token27] = ACTIONS(2341), - [aux_sym_cmd_identifier_token28] = ACTIONS(2341), - [aux_sym_cmd_identifier_token29] = ACTIONS(2341), - [aux_sym_cmd_identifier_token30] = ACTIONS(2341), - [aux_sym_cmd_identifier_token31] = ACTIONS(2341), - [aux_sym_cmd_identifier_token32] = ACTIONS(2341), - [aux_sym_cmd_identifier_token33] = ACTIONS(2341), - [aux_sym_cmd_identifier_token34] = ACTIONS(2341), - [aux_sym_cmd_identifier_token35] = ACTIONS(2341), - [aux_sym_cmd_identifier_token36] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2343), - [anon_sym_false] = ACTIONS(2343), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token38] = ACTIONS(2341), - [aux_sym_cmd_identifier_token39] = ACTIONS(2343), - [aux_sym_cmd_identifier_token40] = ACTIONS(2343), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_make] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_catch] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2343), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2343), - [aux_sym__val_number_decimal_token1] = ACTIONS(2341), - [aux_sym__val_number_decimal_token2] = ACTIONS(2343), - [anon_sym_DOT2] = ACTIONS(2341), - [aux_sym__val_number_decimal_token3] = ACTIONS(2343), - [aux_sym__val_number_token1] = ACTIONS(2343), - [aux_sym__val_number_token2] = ACTIONS(2343), - [aux_sym__val_number_token3] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [sym__str_single_quotes] = ACTIONS(2343), - [sym__str_back_ticks] = ACTIONS(2343), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2343), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_alias] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_let_DASHenv] = ACTIONS(2348), + [anon_sym_mut] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [aux_sym_cmd_identifier_token1] = ACTIONS(2348), + [aux_sym_cmd_identifier_token2] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2348), + [aux_sym_cmd_identifier_token4] = ACTIONS(2348), + [aux_sym_cmd_identifier_token5] = ACTIONS(2348), + [aux_sym_cmd_identifier_token6] = ACTIONS(2348), + [aux_sym_cmd_identifier_token7] = ACTIONS(2348), + [aux_sym_cmd_identifier_token8] = ACTIONS(2348), + [aux_sym_cmd_identifier_token9] = ACTIONS(2348), + [aux_sym_cmd_identifier_token10] = ACTIONS(2348), + [aux_sym_cmd_identifier_token11] = ACTIONS(2348), + [aux_sym_cmd_identifier_token12] = ACTIONS(2348), + [aux_sym_cmd_identifier_token13] = ACTIONS(2348), + [aux_sym_cmd_identifier_token14] = ACTIONS(2348), + [aux_sym_cmd_identifier_token15] = ACTIONS(2348), + [aux_sym_cmd_identifier_token16] = ACTIONS(2348), + [aux_sym_cmd_identifier_token17] = ACTIONS(2348), + [aux_sym_cmd_identifier_token18] = ACTIONS(2348), + [aux_sym_cmd_identifier_token19] = ACTIONS(2348), + [aux_sym_cmd_identifier_token20] = ACTIONS(2348), + [aux_sym_cmd_identifier_token21] = ACTIONS(2348), + [aux_sym_cmd_identifier_token22] = ACTIONS(2348), + [aux_sym_cmd_identifier_token23] = ACTIONS(2348), + [aux_sym_cmd_identifier_token24] = ACTIONS(2348), + [aux_sym_cmd_identifier_token25] = ACTIONS(2348), + [aux_sym_cmd_identifier_token26] = ACTIONS(2348), + [aux_sym_cmd_identifier_token27] = ACTIONS(2348), + [aux_sym_cmd_identifier_token28] = ACTIONS(2348), + [aux_sym_cmd_identifier_token29] = ACTIONS(2348), + [aux_sym_cmd_identifier_token30] = ACTIONS(2348), + [aux_sym_cmd_identifier_token31] = ACTIONS(2348), + [aux_sym_cmd_identifier_token32] = ACTIONS(2348), + [aux_sym_cmd_identifier_token33] = ACTIONS(2348), + [aux_sym_cmd_identifier_token34] = ACTIONS(2348), + [aux_sym_cmd_identifier_token35] = ACTIONS(2348), + [aux_sym_cmd_identifier_token36] = ACTIONS(2348), + [anon_sym_true] = ACTIONS(2350), + [anon_sym_false] = ACTIONS(2350), + [anon_sym_null] = ACTIONS(2350), + [aux_sym_cmd_identifier_token38] = ACTIONS(2348), + [aux_sym_cmd_identifier_token39] = ACTIONS(2350), + [aux_sym_cmd_identifier_token40] = ACTIONS(2350), + [anon_sym_def] = ACTIONS(2348), + [anon_sym_export_DASHenv] = ACTIONS(2348), + [anon_sym_extern] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_use] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_DOLLAR] = ACTIONS(2350), + [anon_sym_error] = ACTIONS(2348), + [anon_sym_list] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2348), + [anon_sym_loop] = ACTIONS(2348), + [anon_sym_make] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_match] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_catch] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_source] = ACTIONS(2348), + [anon_sym_source_DASHenv] = ACTIONS(2348), + [anon_sym_register] = ACTIONS(2348), + [anon_sym_hide] = ACTIONS(2348), + [anon_sym_hide_DASHenv] = ACTIONS(2348), + [anon_sym_overlay] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2350), + [aux_sym__val_number_decimal_token1] = ACTIONS(2348), + [aux_sym__val_number_decimal_token2] = ACTIONS(2350), + [aux_sym__val_number_decimal_token3] = ACTIONS(2350), + [aux_sym__val_number_decimal_token4] = ACTIONS(2350), + [aux_sym__val_number_token1] = ACTIONS(2350), + [aux_sym__val_number_token2] = ACTIONS(2350), + [aux_sym__val_number_token3] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2350), + [sym__str_single_quotes] = ACTIONS(2350), + [sym__str_back_ticks] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(247), }, [631] = { [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(1780), - [anon_sym_alias] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_let_DASHenv] = ACTIONS(1780), - [anon_sym_mut] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [aux_sym_cmd_identifier_token1] = ACTIONS(1780), - [aux_sym_cmd_identifier_token2] = ACTIONS(1780), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [aux_sym_cmd_identifier_token6] = ACTIONS(1780), - [aux_sym_cmd_identifier_token7] = ACTIONS(1780), - [aux_sym_cmd_identifier_token8] = ACTIONS(1780), - [aux_sym_cmd_identifier_token9] = ACTIONS(1780), - [aux_sym_cmd_identifier_token10] = ACTIONS(1780), - [aux_sym_cmd_identifier_token11] = ACTIONS(1780), - [aux_sym_cmd_identifier_token12] = ACTIONS(1780), - [aux_sym_cmd_identifier_token13] = ACTIONS(1780), - [aux_sym_cmd_identifier_token14] = ACTIONS(1780), - [aux_sym_cmd_identifier_token15] = ACTIONS(1780), - [aux_sym_cmd_identifier_token16] = ACTIONS(1780), - [aux_sym_cmd_identifier_token17] = ACTIONS(1780), - [aux_sym_cmd_identifier_token18] = ACTIONS(1780), - [aux_sym_cmd_identifier_token19] = ACTIONS(1780), - [aux_sym_cmd_identifier_token20] = ACTIONS(1780), - [aux_sym_cmd_identifier_token21] = ACTIONS(1780), - [aux_sym_cmd_identifier_token22] = ACTIONS(1780), - [aux_sym_cmd_identifier_token23] = ACTIONS(1780), - [aux_sym_cmd_identifier_token24] = ACTIONS(1780), - [aux_sym_cmd_identifier_token25] = ACTIONS(1780), - [aux_sym_cmd_identifier_token26] = ACTIONS(1780), - [aux_sym_cmd_identifier_token27] = ACTIONS(1780), - [aux_sym_cmd_identifier_token28] = ACTIONS(1780), - [aux_sym_cmd_identifier_token29] = ACTIONS(1780), - [aux_sym_cmd_identifier_token30] = ACTIONS(1780), - [aux_sym_cmd_identifier_token31] = ACTIONS(1780), - [aux_sym_cmd_identifier_token32] = ACTIONS(1780), - [aux_sym_cmd_identifier_token33] = ACTIONS(1780), - [aux_sym_cmd_identifier_token34] = ACTIONS(1780), - [aux_sym_cmd_identifier_token35] = ACTIONS(1780), - [aux_sym_cmd_identifier_token36] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token38] = ACTIONS(1780), - [aux_sym_cmd_identifier_token39] = ACTIONS(1782), - [aux_sym_cmd_identifier_token40] = ACTIONS(1782), - [anon_sym_def] = ACTIONS(1780), - [anon_sym_export_DASHenv] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_module] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(1782), - [anon_sym_error] = ACTIONS(1780), - [anon_sym_list] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_make] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_source] = ACTIONS(1780), - [anon_sym_source_DASHenv] = ACTIONS(1780), - [anon_sym_register] = ACTIONS(1780), - [anon_sym_hide] = ACTIONS(1780), - [anon_sym_hide_DASHenv] = ACTIONS(1780), - [anon_sym_overlay] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_as] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1782), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [anon_sym_DOT2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1782), - [aux_sym__val_number_token1] = ACTIONS(1782), - [aux_sym__val_number_token2] = ACTIONS(1782), - [aux_sym__val_number_token3] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym__str_single_quotes] = ACTIONS(1782), - [sym__str_back_ticks] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2352), + [anon_sym_alias] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2352), + [anon_sym_let_DASHenv] = ACTIONS(2352), + [anon_sym_mut] = ACTIONS(2352), + [anon_sym_const] = ACTIONS(2352), + [aux_sym_cmd_identifier_token1] = ACTIONS(2352), + [aux_sym_cmd_identifier_token2] = ACTIONS(2352), + [aux_sym_cmd_identifier_token3] = ACTIONS(2352), + [aux_sym_cmd_identifier_token4] = ACTIONS(2352), + [aux_sym_cmd_identifier_token5] = ACTIONS(2352), + [aux_sym_cmd_identifier_token6] = ACTIONS(2352), + [aux_sym_cmd_identifier_token7] = ACTIONS(2352), + [aux_sym_cmd_identifier_token8] = ACTIONS(2352), + [aux_sym_cmd_identifier_token9] = ACTIONS(2352), + [aux_sym_cmd_identifier_token10] = ACTIONS(2352), + [aux_sym_cmd_identifier_token11] = ACTIONS(2352), + [aux_sym_cmd_identifier_token12] = ACTIONS(2352), + [aux_sym_cmd_identifier_token13] = ACTIONS(2352), + [aux_sym_cmd_identifier_token14] = ACTIONS(2352), + [aux_sym_cmd_identifier_token15] = ACTIONS(2352), + [aux_sym_cmd_identifier_token16] = ACTIONS(2352), + [aux_sym_cmd_identifier_token17] = ACTIONS(2352), + [aux_sym_cmd_identifier_token18] = ACTIONS(2352), + [aux_sym_cmd_identifier_token19] = ACTIONS(2352), + [aux_sym_cmd_identifier_token20] = ACTIONS(2352), + [aux_sym_cmd_identifier_token21] = ACTIONS(2352), + [aux_sym_cmd_identifier_token22] = ACTIONS(2352), + [aux_sym_cmd_identifier_token23] = ACTIONS(2352), + [aux_sym_cmd_identifier_token24] = ACTIONS(2352), + [aux_sym_cmd_identifier_token25] = ACTIONS(2352), + [aux_sym_cmd_identifier_token26] = ACTIONS(2352), + [aux_sym_cmd_identifier_token27] = ACTIONS(2352), + [aux_sym_cmd_identifier_token28] = ACTIONS(2352), + [aux_sym_cmd_identifier_token29] = ACTIONS(2352), + [aux_sym_cmd_identifier_token30] = ACTIONS(2352), + [aux_sym_cmd_identifier_token31] = ACTIONS(2352), + [aux_sym_cmd_identifier_token32] = ACTIONS(2352), + [aux_sym_cmd_identifier_token33] = ACTIONS(2352), + [aux_sym_cmd_identifier_token34] = ACTIONS(2352), + [aux_sym_cmd_identifier_token35] = ACTIONS(2352), + [aux_sym_cmd_identifier_token36] = ACTIONS(2352), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2354), + [aux_sym_cmd_identifier_token38] = ACTIONS(2352), + [aux_sym_cmd_identifier_token39] = ACTIONS(2354), + [aux_sym_cmd_identifier_token40] = ACTIONS(2354), + [anon_sym_def] = ACTIONS(2352), + [anon_sym_export_DASHenv] = ACTIONS(2352), + [anon_sym_extern] = ACTIONS(2352), + [anon_sym_module] = ACTIONS(2352), + [anon_sym_use] = ACTIONS(2352), + [anon_sym_LPAREN] = ACTIONS(2354), + [anon_sym_DOLLAR] = ACTIONS(2354), + [anon_sym_error] = ACTIONS(2352), + [anon_sym_list] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_break] = ACTIONS(2352), + [anon_sym_continue] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_in] = ACTIONS(2352), + [anon_sym_loop] = ACTIONS(2352), + [anon_sym_make] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_match] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_try] = ACTIONS(2352), + [anon_sym_catch] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_source] = ACTIONS(2352), + [anon_sym_source_DASHenv] = ACTIONS(2352), + [anon_sym_register] = ACTIONS(2352), + [anon_sym_hide] = ACTIONS(2352), + [anon_sym_hide_DASHenv] = ACTIONS(2352), + [anon_sym_overlay] = ACTIONS(2352), + [anon_sym_new] = ACTIONS(2352), + [anon_sym_as] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2354), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2352), + [aux_sym__val_number_decimal_token2] = ACTIONS(2354), + [aux_sym__val_number_decimal_token3] = ACTIONS(2354), + [aux_sym__val_number_decimal_token4] = ACTIONS(2354), + [aux_sym__val_number_token1] = ACTIONS(2354), + [aux_sym__val_number_token2] = ACTIONS(2354), + [aux_sym__val_number_token3] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2354), + [sym__str_single_quotes] = ACTIONS(2354), + [sym__str_back_ticks] = ACTIONS(2354), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2354), + [anon_sym_PLUS] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(247), }, [632] = { [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_alias] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_let_DASHenv] = ACTIONS(1788), - [anon_sym_mut] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [aux_sym_cmd_identifier_token1] = ACTIONS(1788), - [aux_sym_cmd_identifier_token2] = ACTIONS(1788), - [aux_sym_cmd_identifier_token3] = ACTIONS(1788), - [aux_sym_cmd_identifier_token4] = ACTIONS(1788), - [aux_sym_cmd_identifier_token5] = ACTIONS(1788), - [aux_sym_cmd_identifier_token6] = ACTIONS(1788), - [aux_sym_cmd_identifier_token7] = ACTIONS(1788), - [aux_sym_cmd_identifier_token8] = ACTIONS(1788), - [aux_sym_cmd_identifier_token9] = ACTIONS(1788), - [aux_sym_cmd_identifier_token10] = ACTIONS(1788), - [aux_sym_cmd_identifier_token11] = ACTIONS(1788), - [aux_sym_cmd_identifier_token12] = ACTIONS(1788), - [aux_sym_cmd_identifier_token13] = ACTIONS(1788), - [aux_sym_cmd_identifier_token14] = ACTIONS(1788), - [aux_sym_cmd_identifier_token15] = ACTIONS(1788), - [aux_sym_cmd_identifier_token16] = ACTIONS(1788), - [aux_sym_cmd_identifier_token17] = ACTIONS(1788), - [aux_sym_cmd_identifier_token18] = ACTIONS(1788), - [aux_sym_cmd_identifier_token19] = ACTIONS(1788), - [aux_sym_cmd_identifier_token20] = ACTIONS(1788), - [aux_sym_cmd_identifier_token21] = ACTIONS(1788), - [aux_sym_cmd_identifier_token22] = ACTIONS(1788), - [aux_sym_cmd_identifier_token23] = ACTIONS(1788), - [aux_sym_cmd_identifier_token24] = ACTIONS(1788), - [aux_sym_cmd_identifier_token25] = ACTIONS(1788), - [aux_sym_cmd_identifier_token26] = ACTIONS(1788), - [aux_sym_cmd_identifier_token27] = ACTIONS(1788), - [aux_sym_cmd_identifier_token28] = ACTIONS(1788), - [aux_sym_cmd_identifier_token29] = ACTIONS(1788), - [aux_sym_cmd_identifier_token30] = ACTIONS(1788), - [aux_sym_cmd_identifier_token31] = ACTIONS(1788), - [aux_sym_cmd_identifier_token32] = ACTIONS(1788), - [aux_sym_cmd_identifier_token33] = ACTIONS(1788), - [aux_sym_cmd_identifier_token34] = ACTIONS(1788), - [aux_sym_cmd_identifier_token35] = ACTIONS(1788), - [aux_sym_cmd_identifier_token36] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [aux_sym_cmd_identifier_token38] = ACTIONS(1788), - [aux_sym_cmd_identifier_token39] = ACTIONS(1790), - [aux_sym_cmd_identifier_token40] = ACTIONS(1790), - [anon_sym_def] = ACTIONS(1788), - [anon_sym_export_DASHenv] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_error] = ACTIONS(1788), - [anon_sym_list] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_make] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_do] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_else] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1788), - [anon_sym_catch] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_source] = ACTIONS(1788), - [anon_sym_source_DASHenv] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_hide] = ACTIONS(1788), - [anon_sym_hide_DASHenv] = ACTIONS(1788), - [anon_sym_overlay] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_as] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1790), - [anon_sym_DOT2] = ACTIONS(1788), - [aux_sym__val_number_decimal_token3] = ACTIONS(1790), - [aux_sym__val_number_token1] = ACTIONS(1790), - [aux_sym__val_number_token2] = ACTIONS(1790), - [aux_sym__val_number_token3] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [sym__str_single_quotes] = ACTIONS(1790), - [sym__str_back_ticks] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_list] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [633] = { [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(2380), - [anon_sym_alias] = ACTIONS(2380), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_let_DASHenv] = ACTIONS(2380), - [anon_sym_mut] = ACTIONS(2380), - [anon_sym_const] = ACTIONS(2380), - [aux_sym_cmd_identifier_token1] = ACTIONS(2380), - [aux_sym_cmd_identifier_token2] = ACTIONS(2380), - [aux_sym_cmd_identifier_token3] = ACTIONS(2380), - [aux_sym_cmd_identifier_token4] = ACTIONS(2380), - [aux_sym_cmd_identifier_token5] = ACTIONS(2380), - [aux_sym_cmd_identifier_token6] = ACTIONS(2380), - [aux_sym_cmd_identifier_token7] = ACTIONS(2380), - [aux_sym_cmd_identifier_token8] = ACTIONS(2380), - [aux_sym_cmd_identifier_token9] = ACTIONS(2380), - [aux_sym_cmd_identifier_token10] = ACTIONS(2380), - [aux_sym_cmd_identifier_token11] = ACTIONS(2380), - [aux_sym_cmd_identifier_token12] = ACTIONS(2380), - [aux_sym_cmd_identifier_token13] = ACTIONS(2380), - [aux_sym_cmd_identifier_token14] = ACTIONS(2380), - [aux_sym_cmd_identifier_token15] = ACTIONS(2380), - [aux_sym_cmd_identifier_token16] = ACTIONS(2380), - [aux_sym_cmd_identifier_token17] = ACTIONS(2380), - [aux_sym_cmd_identifier_token18] = ACTIONS(2380), - [aux_sym_cmd_identifier_token19] = ACTIONS(2380), - [aux_sym_cmd_identifier_token20] = ACTIONS(2380), - [aux_sym_cmd_identifier_token21] = ACTIONS(2380), - [aux_sym_cmd_identifier_token22] = ACTIONS(2380), - [aux_sym_cmd_identifier_token23] = ACTIONS(2380), - [aux_sym_cmd_identifier_token24] = ACTIONS(2380), - [aux_sym_cmd_identifier_token25] = ACTIONS(2380), - [aux_sym_cmd_identifier_token26] = ACTIONS(2380), - [aux_sym_cmd_identifier_token27] = ACTIONS(2380), - [aux_sym_cmd_identifier_token28] = ACTIONS(2380), - [aux_sym_cmd_identifier_token29] = ACTIONS(2380), - [aux_sym_cmd_identifier_token30] = ACTIONS(2380), - [aux_sym_cmd_identifier_token31] = ACTIONS(2380), - [aux_sym_cmd_identifier_token32] = ACTIONS(2380), - [aux_sym_cmd_identifier_token33] = ACTIONS(2380), - [aux_sym_cmd_identifier_token34] = ACTIONS(2380), - [aux_sym_cmd_identifier_token35] = ACTIONS(2380), - [aux_sym_cmd_identifier_token36] = ACTIONS(2380), - [anon_sym_true] = ACTIONS(2382), - [anon_sym_false] = ACTIONS(2382), - [anon_sym_null] = ACTIONS(2382), - [aux_sym_cmd_identifier_token38] = ACTIONS(2380), - [aux_sym_cmd_identifier_token39] = ACTIONS(2382), - [aux_sym_cmd_identifier_token40] = ACTIONS(2382), - [anon_sym_def] = ACTIONS(2380), - [anon_sym_export_DASHenv] = ACTIONS(2380), - [anon_sym_extern] = ACTIONS(2380), - [anon_sym_module] = ACTIONS(2380), - [anon_sym_use] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_DOLLAR] = ACTIONS(2382), - [anon_sym_error] = ACTIONS(2380), - [anon_sym_list] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_break] = ACTIONS(2380), - [anon_sym_continue] = ACTIONS(2380), - [anon_sym_for] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_loop] = ACTIONS(2380), - [anon_sym_make] = ACTIONS(2380), - [anon_sym_while] = ACTIONS(2380), - [anon_sym_do] = ACTIONS(2380), - [anon_sym_if] = ACTIONS(2380), - [anon_sym_else] = ACTIONS(2380), - [anon_sym_match] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2380), - [anon_sym_catch] = ACTIONS(2380), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_source] = ACTIONS(2380), - [anon_sym_source_DASHenv] = ACTIONS(2380), - [anon_sym_register] = ACTIONS(2380), - [anon_sym_hide] = ACTIONS(2380), - [anon_sym_hide_DASHenv] = ACTIONS(2380), - [anon_sym_overlay] = ACTIONS(2380), - [anon_sym_new] = ACTIONS(2380), - [anon_sym_as] = ACTIONS(2380), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2382), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2382), - [aux_sym__val_number_decimal_token1] = ACTIONS(2380), - [aux_sym__val_number_decimal_token2] = ACTIONS(2382), - [anon_sym_DOT2] = ACTIONS(2380), - [aux_sym__val_number_decimal_token3] = ACTIONS(2382), - [aux_sym__val_number_token1] = ACTIONS(2382), - [aux_sym__val_number_token2] = ACTIONS(2382), - [aux_sym__val_number_token3] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2382), - [sym__str_single_quotes] = ACTIONS(2382), - [sym__str_back_ticks] = ACTIONS(2382), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2382), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2251), + [anon_sym_alias] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_let_DASHenv] = ACTIONS(2251), + [anon_sym_mut] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [aux_sym_cmd_identifier_token1] = ACTIONS(2251), + [aux_sym_cmd_identifier_token2] = ACTIONS(2251), + [aux_sym_cmd_identifier_token3] = ACTIONS(2251), + [aux_sym_cmd_identifier_token4] = ACTIONS(2251), + [aux_sym_cmd_identifier_token5] = ACTIONS(2251), + [aux_sym_cmd_identifier_token6] = ACTIONS(2251), + [aux_sym_cmd_identifier_token7] = ACTIONS(2251), + [aux_sym_cmd_identifier_token8] = ACTIONS(2251), + [aux_sym_cmd_identifier_token9] = ACTIONS(2251), + [aux_sym_cmd_identifier_token10] = ACTIONS(2251), + [aux_sym_cmd_identifier_token11] = ACTIONS(2251), + [aux_sym_cmd_identifier_token12] = ACTIONS(2251), + [aux_sym_cmd_identifier_token13] = ACTIONS(2251), + [aux_sym_cmd_identifier_token14] = ACTIONS(2251), + [aux_sym_cmd_identifier_token15] = ACTIONS(2251), + [aux_sym_cmd_identifier_token16] = ACTIONS(2251), + [aux_sym_cmd_identifier_token17] = ACTIONS(2251), + [aux_sym_cmd_identifier_token18] = ACTIONS(2251), + [aux_sym_cmd_identifier_token19] = ACTIONS(2251), + [aux_sym_cmd_identifier_token20] = ACTIONS(2251), + [aux_sym_cmd_identifier_token21] = ACTIONS(2251), + [aux_sym_cmd_identifier_token22] = ACTIONS(2251), + [aux_sym_cmd_identifier_token23] = ACTIONS(2251), + [aux_sym_cmd_identifier_token24] = ACTIONS(2251), + [aux_sym_cmd_identifier_token25] = ACTIONS(2251), + [aux_sym_cmd_identifier_token26] = ACTIONS(2251), + [aux_sym_cmd_identifier_token27] = ACTIONS(2251), + [aux_sym_cmd_identifier_token28] = ACTIONS(2251), + [aux_sym_cmd_identifier_token29] = ACTIONS(2251), + [aux_sym_cmd_identifier_token30] = ACTIONS(2251), + [aux_sym_cmd_identifier_token31] = ACTIONS(2251), + [aux_sym_cmd_identifier_token32] = ACTIONS(2251), + [aux_sym_cmd_identifier_token33] = ACTIONS(2251), + [aux_sym_cmd_identifier_token34] = ACTIONS(2251), + [aux_sym_cmd_identifier_token35] = ACTIONS(2251), + [aux_sym_cmd_identifier_token36] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_null] = ACTIONS(2253), + [aux_sym_cmd_identifier_token38] = ACTIONS(2251), + [aux_sym_cmd_identifier_token39] = ACTIONS(2253), + [aux_sym_cmd_identifier_token40] = ACTIONS(2253), + [anon_sym_def] = ACTIONS(2251), + [anon_sym_export_DASHenv] = ACTIONS(2251), + [anon_sym_extern] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2253), + [anon_sym_error] = ACTIONS(2251), + [anon_sym_list] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_in] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_make] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_do] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2251), + [anon_sym_catch] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_source] = ACTIONS(2251), + [anon_sym_source_DASHenv] = ACTIONS(2251), + [anon_sym_register] = ACTIONS(2251), + [anon_sym_hide] = ACTIONS(2251), + [anon_sym_hide_DASHenv] = ACTIONS(2251), + [anon_sym_overlay] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2253), + [aux_sym__val_number_decimal_token1] = ACTIONS(2251), + [aux_sym__val_number_decimal_token2] = ACTIONS(2253), + [aux_sym__val_number_decimal_token3] = ACTIONS(2253), + [aux_sym__val_number_decimal_token4] = ACTIONS(2253), + [aux_sym__val_number_token1] = ACTIONS(2253), + [aux_sym__val_number_token2] = ACTIONS(2253), + [aux_sym__val_number_token3] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(247), }, [634] = { [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(2384), - [anon_sym_alias] = ACTIONS(2384), - [anon_sym_let] = ACTIONS(2384), - [anon_sym_let_DASHenv] = ACTIONS(2384), - [anon_sym_mut] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [aux_sym_cmd_identifier_token1] = ACTIONS(2384), - [aux_sym_cmd_identifier_token2] = ACTIONS(2384), - [aux_sym_cmd_identifier_token3] = ACTIONS(2384), - [aux_sym_cmd_identifier_token4] = ACTIONS(2384), - [aux_sym_cmd_identifier_token5] = ACTIONS(2384), - [aux_sym_cmd_identifier_token6] = ACTIONS(2384), - [aux_sym_cmd_identifier_token7] = ACTIONS(2384), - [aux_sym_cmd_identifier_token8] = ACTIONS(2384), - [aux_sym_cmd_identifier_token9] = ACTIONS(2384), - [aux_sym_cmd_identifier_token10] = ACTIONS(2384), - [aux_sym_cmd_identifier_token11] = ACTIONS(2384), - [aux_sym_cmd_identifier_token12] = ACTIONS(2384), - [aux_sym_cmd_identifier_token13] = ACTIONS(2384), - [aux_sym_cmd_identifier_token14] = ACTIONS(2384), - [aux_sym_cmd_identifier_token15] = ACTIONS(2384), - [aux_sym_cmd_identifier_token16] = ACTIONS(2384), - [aux_sym_cmd_identifier_token17] = ACTIONS(2384), - [aux_sym_cmd_identifier_token18] = ACTIONS(2384), - [aux_sym_cmd_identifier_token19] = ACTIONS(2384), - [aux_sym_cmd_identifier_token20] = ACTIONS(2384), - [aux_sym_cmd_identifier_token21] = ACTIONS(2384), - [aux_sym_cmd_identifier_token22] = ACTIONS(2384), - [aux_sym_cmd_identifier_token23] = ACTIONS(2384), - [aux_sym_cmd_identifier_token24] = ACTIONS(2384), - [aux_sym_cmd_identifier_token25] = ACTIONS(2384), - [aux_sym_cmd_identifier_token26] = ACTIONS(2384), - [aux_sym_cmd_identifier_token27] = ACTIONS(2384), - [aux_sym_cmd_identifier_token28] = ACTIONS(2384), - [aux_sym_cmd_identifier_token29] = ACTIONS(2384), - [aux_sym_cmd_identifier_token30] = ACTIONS(2384), - [aux_sym_cmd_identifier_token31] = ACTIONS(2384), - [aux_sym_cmd_identifier_token32] = ACTIONS(2384), - [aux_sym_cmd_identifier_token33] = ACTIONS(2384), - [aux_sym_cmd_identifier_token34] = ACTIONS(2384), - [aux_sym_cmd_identifier_token35] = ACTIONS(2384), - [aux_sym_cmd_identifier_token36] = ACTIONS(2384), - [anon_sym_true] = ACTIONS(2386), - [anon_sym_false] = ACTIONS(2386), - [anon_sym_null] = ACTIONS(2386), - [aux_sym_cmd_identifier_token38] = ACTIONS(2384), - [aux_sym_cmd_identifier_token39] = ACTIONS(2386), - [aux_sym_cmd_identifier_token40] = ACTIONS(2386), - [anon_sym_def] = ACTIONS(2384), - [anon_sym_export_DASHenv] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym_module] = ACTIONS(2384), - [anon_sym_use] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2386), - [anon_sym_DOLLAR] = ACTIONS(2386), - [anon_sym_error] = ACTIONS(2384), - [anon_sym_list] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_in] = ACTIONS(2384), - [anon_sym_loop] = ACTIONS(2384), - [anon_sym_make] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_match] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_source] = ACTIONS(2384), - [anon_sym_source_DASHenv] = ACTIONS(2384), - [anon_sym_register] = ACTIONS(2384), - [anon_sym_hide] = ACTIONS(2384), - [anon_sym_hide_DASHenv] = ACTIONS(2384), - [anon_sym_overlay] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_as] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2386), - [aux_sym__val_number_decimal_token1] = ACTIONS(2384), - [aux_sym__val_number_decimal_token2] = ACTIONS(2386), - [anon_sym_DOT2] = ACTIONS(2384), - [aux_sym__val_number_decimal_token3] = ACTIONS(2386), - [aux_sym__val_number_token1] = ACTIONS(2386), - [aux_sym__val_number_token2] = ACTIONS(2386), - [aux_sym__val_number_token3] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym__str_single_quotes] = ACTIONS(2386), - [sym__str_back_ticks] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2386), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1905), + [anon_sym_alias] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_let_DASHenv] = ACTIONS(1905), + [anon_sym_mut] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [aux_sym_cmd_identifier_token1] = ACTIONS(1905), + [aux_sym_cmd_identifier_token2] = ACTIONS(1905), + [aux_sym_cmd_identifier_token3] = ACTIONS(1905), + [aux_sym_cmd_identifier_token4] = ACTIONS(1905), + [aux_sym_cmd_identifier_token5] = ACTIONS(1905), + [aux_sym_cmd_identifier_token6] = ACTIONS(1905), + [aux_sym_cmd_identifier_token7] = ACTIONS(1905), + [aux_sym_cmd_identifier_token8] = ACTIONS(1905), + [aux_sym_cmd_identifier_token9] = ACTIONS(1905), + [aux_sym_cmd_identifier_token10] = ACTIONS(1905), + [aux_sym_cmd_identifier_token11] = ACTIONS(1905), + [aux_sym_cmd_identifier_token12] = ACTIONS(1905), + [aux_sym_cmd_identifier_token13] = ACTIONS(1905), + [aux_sym_cmd_identifier_token14] = ACTIONS(1905), + [aux_sym_cmd_identifier_token15] = ACTIONS(1905), + [aux_sym_cmd_identifier_token16] = ACTIONS(1905), + [aux_sym_cmd_identifier_token17] = ACTIONS(1905), + [aux_sym_cmd_identifier_token18] = ACTIONS(1905), + [aux_sym_cmd_identifier_token19] = ACTIONS(1905), + [aux_sym_cmd_identifier_token20] = ACTIONS(1905), + [aux_sym_cmd_identifier_token21] = ACTIONS(1905), + [aux_sym_cmd_identifier_token22] = ACTIONS(1905), + [aux_sym_cmd_identifier_token23] = ACTIONS(1905), + [aux_sym_cmd_identifier_token24] = ACTIONS(1905), + [aux_sym_cmd_identifier_token25] = ACTIONS(1905), + [aux_sym_cmd_identifier_token26] = ACTIONS(1905), + [aux_sym_cmd_identifier_token27] = ACTIONS(1905), + [aux_sym_cmd_identifier_token28] = ACTIONS(1905), + [aux_sym_cmd_identifier_token29] = ACTIONS(1905), + [aux_sym_cmd_identifier_token30] = ACTIONS(1905), + [aux_sym_cmd_identifier_token31] = ACTIONS(1905), + [aux_sym_cmd_identifier_token32] = ACTIONS(1905), + [aux_sym_cmd_identifier_token33] = ACTIONS(1905), + [aux_sym_cmd_identifier_token34] = ACTIONS(1905), + [aux_sym_cmd_identifier_token35] = ACTIONS(1905), + [aux_sym_cmd_identifier_token36] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1905), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = ACTIONS(1911), + [anon_sym_def] = ACTIONS(1905), + [anon_sym_export_DASHenv] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_module] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_error] = ACTIONS(1905), + [anon_sym_list] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_in] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_make] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_do] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_else] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1905), + [anon_sym_catch] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_source] = ACTIONS(1905), + [anon_sym_source_DASHenv] = ACTIONS(1905), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_hide] = ACTIONS(1905), + [anon_sym_hide_DASHenv] = ACTIONS(1905), + [anon_sym_overlay] = ACTIONS(1905), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_as] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1905), + [aux_sym__val_number_decimal_token2] = ACTIONS(1911), + [aux_sym__val_number_decimal_token3] = ACTIONS(1911), + [aux_sym__val_number_decimal_token4] = ACTIONS(1911), + [aux_sym__val_number_token1] = ACTIONS(1911), + [aux_sym__val_number_token2] = ACTIONS(1911), + [aux_sym__val_number_token3] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(247), }, [635] = { [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(936), - [anon_sym_alias] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_let_DASHenv] = ACTIONS(936), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [aux_sym_cmd_identifier_token1] = ACTIONS(936), - [aux_sym_cmd_identifier_token2] = ACTIONS(936), - [aux_sym_cmd_identifier_token3] = ACTIONS(936), - [aux_sym_cmd_identifier_token4] = ACTIONS(936), - [aux_sym_cmd_identifier_token5] = ACTIONS(936), - [aux_sym_cmd_identifier_token6] = ACTIONS(936), - [aux_sym_cmd_identifier_token7] = ACTIONS(936), - [aux_sym_cmd_identifier_token8] = ACTIONS(936), - [aux_sym_cmd_identifier_token9] = ACTIONS(936), - [aux_sym_cmd_identifier_token10] = ACTIONS(936), - [aux_sym_cmd_identifier_token11] = ACTIONS(936), - [aux_sym_cmd_identifier_token12] = ACTIONS(936), - [aux_sym_cmd_identifier_token13] = ACTIONS(936), - [aux_sym_cmd_identifier_token14] = ACTIONS(936), - [aux_sym_cmd_identifier_token15] = ACTIONS(936), - [aux_sym_cmd_identifier_token16] = ACTIONS(936), - [aux_sym_cmd_identifier_token17] = ACTIONS(936), - [aux_sym_cmd_identifier_token18] = ACTIONS(936), - [aux_sym_cmd_identifier_token19] = ACTIONS(936), - [aux_sym_cmd_identifier_token20] = ACTIONS(936), - [aux_sym_cmd_identifier_token21] = ACTIONS(936), - [aux_sym_cmd_identifier_token22] = ACTIONS(936), - [aux_sym_cmd_identifier_token23] = ACTIONS(936), - [aux_sym_cmd_identifier_token24] = ACTIONS(936), - [aux_sym_cmd_identifier_token25] = ACTIONS(936), - [aux_sym_cmd_identifier_token26] = ACTIONS(936), - [aux_sym_cmd_identifier_token27] = ACTIONS(936), - [aux_sym_cmd_identifier_token28] = ACTIONS(936), - [aux_sym_cmd_identifier_token29] = ACTIONS(936), - [aux_sym_cmd_identifier_token30] = ACTIONS(936), - [aux_sym_cmd_identifier_token31] = ACTIONS(936), - [aux_sym_cmd_identifier_token32] = ACTIONS(936), - [aux_sym_cmd_identifier_token33] = ACTIONS(936), - [aux_sym_cmd_identifier_token34] = ACTIONS(936), - [aux_sym_cmd_identifier_token35] = ACTIONS(936), - [aux_sym_cmd_identifier_token36] = ACTIONS(936), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [anon_sym_null] = ACTIONS(938), - [aux_sym_cmd_identifier_token38] = ACTIONS(936), - [aux_sym_cmd_identifier_token39] = ACTIONS(938), - [aux_sym_cmd_identifier_token40] = ACTIONS(938), - [anon_sym_def] = ACTIONS(936), - [anon_sym_export_DASHenv] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_module] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_error] = ACTIONS(936), - [anon_sym_list] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_make] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_try] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(936), - [anon_sym_source_DASHenv] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_hide] = ACTIONS(936), - [anon_sym_hide_DASHenv] = ACTIONS(936), - [anon_sym_overlay] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1525), + [anon_sym_alias] = ACTIONS(1525), + [anon_sym_let] = ACTIONS(1525), + [anon_sym_let_DASHenv] = ACTIONS(1525), + [anon_sym_mut] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [aux_sym_cmd_identifier_token1] = ACTIONS(1525), + [aux_sym_cmd_identifier_token2] = ACTIONS(1525), + [aux_sym_cmd_identifier_token3] = ACTIONS(1525), + [aux_sym_cmd_identifier_token4] = ACTIONS(1525), + [aux_sym_cmd_identifier_token5] = ACTIONS(1525), + [aux_sym_cmd_identifier_token6] = ACTIONS(1525), + [aux_sym_cmd_identifier_token7] = ACTIONS(1525), + [aux_sym_cmd_identifier_token8] = ACTIONS(1525), + [aux_sym_cmd_identifier_token9] = ACTIONS(1525), + [aux_sym_cmd_identifier_token10] = ACTIONS(1525), + [aux_sym_cmd_identifier_token11] = ACTIONS(1525), + [aux_sym_cmd_identifier_token12] = ACTIONS(1525), + [aux_sym_cmd_identifier_token13] = ACTIONS(1525), + [aux_sym_cmd_identifier_token14] = ACTIONS(1525), + [aux_sym_cmd_identifier_token15] = ACTIONS(1525), + [aux_sym_cmd_identifier_token16] = ACTIONS(1525), + [aux_sym_cmd_identifier_token17] = ACTIONS(1525), + [aux_sym_cmd_identifier_token18] = ACTIONS(1525), + [aux_sym_cmd_identifier_token19] = ACTIONS(1525), + [aux_sym_cmd_identifier_token20] = ACTIONS(1525), + [aux_sym_cmd_identifier_token21] = ACTIONS(1525), + [aux_sym_cmd_identifier_token22] = ACTIONS(1525), + [aux_sym_cmd_identifier_token23] = ACTIONS(1525), + [aux_sym_cmd_identifier_token24] = ACTIONS(1525), + [aux_sym_cmd_identifier_token25] = ACTIONS(1525), + [aux_sym_cmd_identifier_token26] = ACTIONS(1525), + [aux_sym_cmd_identifier_token27] = ACTIONS(1525), + [aux_sym_cmd_identifier_token28] = ACTIONS(1525), + [aux_sym_cmd_identifier_token29] = ACTIONS(1525), + [aux_sym_cmd_identifier_token30] = ACTIONS(1525), + [aux_sym_cmd_identifier_token31] = ACTIONS(1525), + [aux_sym_cmd_identifier_token32] = ACTIONS(1525), + [aux_sym_cmd_identifier_token33] = ACTIONS(1525), + [aux_sym_cmd_identifier_token34] = ACTIONS(1525), + [aux_sym_cmd_identifier_token35] = ACTIONS(1525), + [aux_sym_cmd_identifier_token36] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [aux_sym_cmd_identifier_token38] = ACTIONS(1525), + [aux_sym_cmd_identifier_token39] = ACTIONS(1537), + [aux_sym_cmd_identifier_token40] = ACTIONS(1537), + [anon_sym_def] = ACTIONS(1525), + [anon_sym_export_DASHenv] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym_module] = ACTIONS(1525), + [anon_sym_use] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_error] = ACTIONS(1525), + [anon_sym_list] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [anon_sym_loop] = ACTIONS(1525), + [anon_sym_make] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_catch] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_source] = ACTIONS(1525), + [anon_sym_source_DASHenv] = ACTIONS(1525), + [anon_sym_register] = ACTIONS(1525), + [anon_sym_hide] = ACTIONS(1525), + [anon_sym_hide_DASHenv] = ACTIONS(1525), + [anon_sym_overlay] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1537), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), + [aux_sym__val_number_token1] = ACTIONS(1537), + [aux_sym__val_number_token2] = ACTIONS(1537), + [aux_sym__val_number_token3] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1537), + [sym__str_single_quotes] = ACTIONS(1537), + [sym__str_back_ticks] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(247), }, [636] = { [sym_comment] = STATE(636), - [anon_sym_export] = ACTIONS(1792), - [anon_sym_alias] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_let_DASHenv] = ACTIONS(1792), - [anon_sym_mut] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [aux_sym_cmd_identifier_token1] = ACTIONS(1792), - [aux_sym_cmd_identifier_token2] = ACTIONS(1792), - [aux_sym_cmd_identifier_token3] = ACTIONS(1792), - [aux_sym_cmd_identifier_token4] = ACTIONS(1792), - [aux_sym_cmd_identifier_token5] = ACTIONS(1792), - [aux_sym_cmd_identifier_token6] = ACTIONS(1792), - [aux_sym_cmd_identifier_token7] = ACTIONS(1792), - [aux_sym_cmd_identifier_token8] = ACTIONS(1792), - [aux_sym_cmd_identifier_token9] = ACTIONS(1792), - [aux_sym_cmd_identifier_token10] = ACTIONS(1792), - [aux_sym_cmd_identifier_token11] = ACTIONS(1792), - [aux_sym_cmd_identifier_token12] = ACTIONS(1792), - [aux_sym_cmd_identifier_token13] = ACTIONS(1792), - [aux_sym_cmd_identifier_token14] = ACTIONS(1792), - [aux_sym_cmd_identifier_token15] = ACTIONS(1792), - [aux_sym_cmd_identifier_token16] = ACTIONS(1792), - [aux_sym_cmd_identifier_token17] = ACTIONS(1792), - [aux_sym_cmd_identifier_token18] = ACTIONS(1792), - [aux_sym_cmd_identifier_token19] = ACTIONS(1792), - [aux_sym_cmd_identifier_token20] = ACTIONS(1792), - [aux_sym_cmd_identifier_token21] = ACTIONS(1792), - [aux_sym_cmd_identifier_token22] = ACTIONS(1792), - [aux_sym_cmd_identifier_token23] = ACTIONS(1792), - [aux_sym_cmd_identifier_token24] = ACTIONS(1792), - [aux_sym_cmd_identifier_token25] = ACTIONS(1792), - [aux_sym_cmd_identifier_token26] = ACTIONS(1792), - [aux_sym_cmd_identifier_token27] = ACTIONS(1792), - [aux_sym_cmd_identifier_token28] = ACTIONS(1792), - [aux_sym_cmd_identifier_token29] = ACTIONS(1792), - [aux_sym_cmd_identifier_token30] = ACTIONS(1792), - [aux_sym_cmd_identifier_token31] = ACTIONS(1792), - [aux_sym_cmd_identifier_token32] = ACTIONS(1792), - [aux_sym_cmd_identifier_token33] = ACTIONS(1792), - [aux_sym_cmd_identifier_token34] = ACTIONS(1792), - [aux_sym_cmd_identifier_token35] = ACTIONS(1792), - [aux_sym_cmd_identifier_token36] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1792), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [anon_sym_def] = ACTIONS(1792), - [anon_sym_export_DASHenv] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_module] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(1792), - [anon_sym_list] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_make] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_do] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_try] = ACTIONS(1792), - [anon_sym_catch] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_source] = ACTIONS(1792), - [anon_sym_source_DASHenv] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1792), - [anon_sym_hide] = ACTIONS(1792), - [anon_sym_hide_DASHenv] = ACTIONS(1792), - [anon_sym_overlay] = ACTIONS(1792), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1792), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [anon_sym_DOT2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(247), }, [637] = { [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(916), - [anon_sym_alias] = ACTIONS(916), - [anon_sym_let] = ACTIONS(916), - [anon_sym_let_DASHenv] = ACTIONS(916), - [anon_sym_mut] = ACTIONS(916), - [anon_sym_const] = ACTIONS(916), - [aux_sym_cmd_identifier_token1] = ACTIONS(916), - [aux_sym_cmd_identifier_token2] = ACTIONS(916), - [aux_sym_cmd_identifier_token3] = ACTIONS(916), - [aux_sym_cmd_identifier_token4] = ACTIONS(916), - [aux_sym_cmd_identifier_token5] = ACTIONS(916), - [aux_sym_cmd_identifier_token6] = ACTIONS(916), - [aux_sym_cmd_identifier_token7] = ACTIONS(916), - [aux_sym_cmd_identifier_token8] = ACTIONS(916), - [aux_sym_cmd_identifier_token9] = ACTIONS(916), - [aux_sym_cmd_identifier_token10] = ACTIONS(916), - [aux_sym_cmd_identifier_token11] = ACTIONS(916), - [aux_sym_cmd_identifier_token12] = ACTIONS(916), - [aux_sym_cmd_identifier_token13] = ACTIONS(916), - [aux_sym_cmd_identifier_token14] = ACTIONS(916), - [aux_sym_cmd_identifier_token15] = ACTIONS(916), - [aux_sym_cmd_identifier_token16] = ACTIONS(916), - [aux_sym_cmd_identifier_token17] = ACTIONS(916), - [aux_sym_cmd_identifier_token18] = ACTIONS(916), - [aux_sym_cmd_identifier_token19] = ACTIONS(916), - [aux_sym_cmd_identifier_token20] = ACTIONS(916), - [aux_sym_cmd_identifier_token21] = ACTIONS(916), - [aux_sym_cmd_identifier_token22] = ACTIONS(916), - [aux_sym_cmd_identifier_token23] = ACTIONS(916), - [aux_sym_cmd_identifier_token24] = ACTIONS(916), - [aux_sym_cmd_identifier_token25] = ACTIONS(916), - [aux_sym_cmd_identifier_token26] = ACTIONS(916), - [aux_sym_cmd_identifier_token27] = ACTIONS(916), - [aux_sym_cmd_identifier_token28] = ACTIONS(916), - [aux_sym_cmd_identifier_token29] = ACTIONS(916), - [aux_sym_cmd_identifier_token30] = ACTIONS(916), - [aux_sym_cmd_identifier_token31] = ACTIONS(916), - [aux_sym_cmd_identifier_token32] = ACTIONS(916), - [aux_sym_cmd_identifier_token33] = ACTIONS(916), - [aux_sym_cmd_identifier_token34] = ACTIONS(916), - [aux_sym_cmd_identifier_token35] = ACTIONS(916), - [aux_sym_cmd_identifier_token36] = ACTIONS(916), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(916), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [anon_sym_def] = ACTIONS(916), - [anon_sym_export_DASHenv] = ACTIONS(916), - [anon_sym_extern] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_use] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_error] = ACTIONS(916), - [anon_sym_list] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(916), - [anon_sym_for] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [anon_sym_loop] = ACTIONS(916), - [anon_sym_make] = ACTIONS(916), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(916), - [anon_sym_if] = ACTIONS(916), - [anon_sym_else] = ACTIONS(916), - [anon_sym_match] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_try] = ACTIONS(916), - [anon_sym_catch] = ACTIONS(916), - [anon_sym_return] = ACTIONS(916), - [anon_sym_source] = ACTIONS(916), - [anon_sym_source_DASHenv] = ACTIONS(916), - [anon_sym_register] = ACTIONS(916), - [anon_sym_hide] = ACTIONS(916), - [anon_sym_hide_DASHenv] = ACTIONS(916), - [anon_sym_overlay] = ACTIONS(916), - [anon_sym_new] = ACTIONS(916), - [anon_sym_as] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1747), + [anon_sym_alias] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_let_DASHenv] = ACTIONS(1747), + [anon_sym_mut] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [aux_sym_cmd_identifier_token1] = ACTIONS(1747), + [aux_sym_cmd_identifier_token2] = ACTIONS(1747), + [aux_sym_cmd_identifier_token3] = ACTIONS(1747), + [aux_sym_cmd_identifier_token4] = ACTIONS(1747), + [aux_sym_cmd_identifier_token5] = ACTIONS(1747), + [aux_sym_cmd_identifier_token6] = ACTIONS(1747), + [aux_sym_cmd_identifier_token7] = ACTIONS(1747), + [aux_sym_cmd_identifier_token8] = ACTIONS(1747), + [aux_sym_cmd_identifier_token9] = ACTIONS(1747), + [aux_sym_cmd_identifier_token10] = ACTIONS(1747), + [aux_sym_cmd_identifier_token11] = ACTIONS(1747), + [aux_sym_cmd_identifier_token12] = ACTIONS(1747), + [aux_sym_cmd_identifier_token13] = ACTIONS(1747), + [aux_sym_cmd_identifier_token14] = ACTIONS(1747), + [aux_sym_cmd_identifier_token15] = ACTIONS(1747), + [aux_sym_cmd_identifier_token16] = ACTIONS(1747), + [aux_sym_cmd_identifier_token17] = ACTIONS(1747), + [aux_sym_cmd_identifier_token18] = ACTIONS(1747), + [aux_sym_cmd_identifier_token19] = ACTIONS(1747), + [aux_sym_cmd_identifier_token20] = ACTIONS(1747), + [aux_sym_cmd_identifier_token21] = ACTIONS(1747), + [aux_sym_cmd_identifier_token22] = ACTIONS(1747), + [aux_sym_cmd_identifier_token23] = ACTIONS(1747), + [aux_sym_cmd_identifier_token24] = ACTIONS(1747), + [aux_sym_cmd_identifier_token25] = ACTIONS(1747), + [aux_sym_cmd_identifier_token26] = ACTIONS(1747), + [aux_sym_cmd_identifier_token27] = ACTIONS(1747), + [aux_sym_cmd_identifier_token28] = ACTIONS(1747), + [aux_sym_cmd_identifier_token29] = ACTIONS(1747), + [aux_sym_cmd_identifier_token30] = ACTIONS(1747), + [aux_sym_cmd_identifier_token31] = ACTIONS(1747), + [aux_sym_cmd_identifier_token32] = ACTIONS(1747), + [aux_sym_cmd_identifier_token33] = ACTIONS(1747), + [aux_sym_cmd_identifier_token34] = ACTIONS(1747), + [aux_sym_cmd_identifier_token35] = ACTIONS(1747), + [aux_sym_cmd_identifier_token36] = ACTIONS(1747), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [anon_sym_null] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1747), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1747), + [anon_sym_export_DASHenv] = ACTIONS(1747), + [anon_sym_extern] = ACTIONS(1747), + [anon_sym_module] = ACTIONS(1747), + [anon_sym_use] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1747), + [anon_sym_list] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_in] = ACTIONS(1747), + [anon_sym_loop] = ACTIONS(1747), + [anon_sym_make] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_do] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1747), + [anon_sym_match] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1747), + [anon_sym_catch] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_source] = ACTIONS(1747), + [anon_sym_source_DASHenv] = ACTIONS(1747), + [anon_sym_register] = ACTIONS(1747), + [anon_sym_hide] = ACTIONS(1747), + [anon_sym_hide_DASHenv] = ACTIONS(1747), + [anon_sym_overlay] = ACTIONS(1747), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_as] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(247), }, [638] = { [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(920), - [anon_sym_alias] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_let_DASHenv] = ACTIONS(920), - [anon_sym_mut] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [aux_sym_cmd_identifier_token1] = ACTIONS(920), - [aux_sym_cmd_identifier_token2] = ACTIONS(920), - [aux_sym_cmd_identifier_token3] = ACTIONS(920), - [aux_sym_cmd_identifier_token4] = ACTIONS(920), - [aux_sym_cmd_identifier_token5] = ACTIONS(920), - [aux_sym_cmd_identifier_token6] = ACTIONS(920), - [aux_sym_cmd_identifier_token7] = ACTIONS(920), - [aux_sym_cmd_identifier_token8] = ACTIONS(920), - [aux_sym_cmd_identifier_token9] = ACTIONS(920), - [aux_sym_cmd_identifier_token10] = ACTIONS(920), - [aux_sym_cmd_identifier_token11] = ACTIONS(920), - [aux_sym_cmd_identifier_token12] = ACTIONS(920), - [aux_sym_cmd_identifier_token13] = ACTIONS(920), - [aux_sym_cmd_identifier_token14] = ACTIONS(920), - [aux_sym_cmd_identifier_token15] = ACTIONS(920), - [aux_sym_cmd_identifier_token16] = ACTIONS(920), - [aux_sym_cmd_identifier_token17] = ACTIONS(920), - [aux_sym_cmd_identifier_token18] = ACTIONS(920), - [aux_sym_cmd_identifier_token19] = ACTIONS(920), - [aux_sym_cmd_identifier_token20] = ACTIONS(920), - [aux_sym_cmd_identifier_token21] = ACTIONS(920), - [aux_sym_cmd_identifier_token22] = ACTIONS(920), - [aux_sym_cmd_identifier_token23] = ACTIONS(920), - [aux_sym_cmd_identifier_token24] = ACTIONS(920), - [aux_sym_cmd_identifier_token25] = ACTIONS(920), - [aux_sym_cmd_identifier_token26] = ACTIONS(920), - [aux_sym_cmd_identifier_token27] = ACTIONS(920), - [aux_sym_cmd_identifier_token28] = ACTIONS(920), - [aux_sym_cmd_identifier_token29] = ACTIONS(920), - [aux_sym_cmd_identifier_token30] = ACTIONS(920), - [aux_sym_cmd_identifier_token31] = ACTIONS(920), - [aux_sym_cmd_identifier_token32] = ACTIONS(920), - [aux_sym_cmd_identifier_token33] = ACTIONS(920), - [aux_sym_cmd_identifier_token34] = ACTIONS(920), - [aux_sym_cmd_identifier_token35] = ACTIONS(920), - [aux_sym_cmd_identifier_token36] = ACTIONS(920), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(920), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [anon_sym_def] = ACTIONS(920), - [anon_sym_export_DASHenv] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_module] = ACTIONS(920), - [anon_sym_use] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_error] = ACTIONS(920), - [anon_sym_list] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_make] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_match] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_try] = ACTIONS(920), - [anon_sym_catch] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_source] = ACTIONS(920), - [anon_sym_source_DASHenv] = ACTIONS(920), - [anon_sym_register] = ACTIONS(920), - [anon_sym_hide] = ACTIONS(920), - [anon_sym_hide_DASHenv] = ACTIONS(920), - [anon_sym_overlay] = ACTIONS(920), - [anon_sym_new] = ACTIONS(920), - [anon_sym_as] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1855), + [anon_sym_alias] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_let_DASHenv] = ACTIONS(1855), + [anon_sym_mut] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [aux_sym_cmd_identifier_token1] = ACTIONS(1855), + [aux_sym_cmd_identifier_token2] = ACTIONS(1855), + [aux_sym_cmd_identifier_token3] = ACTIONS(1855), + [aux_sym_cmd_identifier_token4] = ACTIONS(1855), + [aux_sym_cmd_identifier_token5] = ACTIONS(1855), + [aux_sym_cmd_identifier_token6] = ACTIONS(1855), + [aux_sym_cmd_identifier_token7] = ACTIONS(1855), + [aux_sym_cmd_identifier_token8] = ACTIONS(1855), + [aux_sym_cmd_identifier_token9] = ACTIONS(1855), + [aux_sym_cmd_identifier_token10] = ACTIONS(1855), + [aux_sym_cmd_identifier_token11] = ACTIONS(1855), + [aux_sym_cmd_identifier_token12] = ACTIONS(1855), + [aux_sym_cmd_identifier_token13] = ACTIONS(1855), + [aux_sym_cmd_identifier_token14] = ACTIONS(1855), + [aux_sym_cmd_identifier_token15] = ACTIONS(1855), + [aux_sym_cmd_identifier_token16] = ACTIONS(1855), + [aux_sym_cmd_identifier_token17] = ACTIONS(1855), + [aux_sym_cmd_identifier_token18] = ACTIONS(1855), + [aux_sym_cmd_identifier_token19] = ACTIONS(1855), + [aux_sym_cmd_identifier_token20] = ACTIONS(1855), + [aux_sym_cmd_identifier_token21] = ACTIONS(1855), + [aux_sym_cmd_identifier_token22] = ACTIONS(1855), + [aux_sym_cmd_identifier_token23] = ACTIONS(1855), + [aux_sym_cmd_identifier_token24] = ACTIONS(1855), + [aux_sym_cmd_identifier_token25] = ACTIONS(1855), + [aux_sym_cmd_identifier_token26] = ACTIONS(1855), + [aux_sym_cmd_identifier_token27] = ACTIONS(1855), + [aux_sym_cmd_identifier_token28] = ACTIONS(1855), + [aux_sym_cmd_identifier_token29] = ACTIONS(1855), + [aux_sym_cmd_identifier_token30] = ACTIONS(1855), + [aux_sym_cmd_identifier_token31] = ACTIONS(1855), + [aux_sym_cmd_identifier_token32] = ACTIONS(1855), + [aux_sym_cmd_identifier_token33] = ACTIONS(1855), + [aux_sym_cmd_identifier_token34] = ACTIONS(1855), + [aux_sym_cmd_identifier_token35] = ACTIONS(1855), + [aux_sym_cmd_identifier_token36] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1857), + [aux_sym_cmd_identifier_token38] = ACTIONS(1855), + [aux_sym_cmd_identifier_token39] = ACTIONS(1857), + [aux_sym_cmd_identifier_token40] = ACTIONS(1857), + [anon_sym_def] = ACTIONS(1855), + [anon_sym_export_DASHenv] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1855), + [anon_sym_use] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1857), + [anon_sym_error] = ACTIONS(1855), + [anon_sym_list] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_loop] = ACTIONS(1855), + [anon_sym_make] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_catch] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_source] = ACTIONS(1855), + [anon_sym_source_DASHenv] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1855), + [anon_sym_hide] = ACTIONS(1855), + [anon_sym_hide_DASHenv] = ACTIONS(1855), + [anon_sym_overlay] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1857), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(247), }, [639] = { [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(912), - [anon_sym_alias] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_let_DASHenv] = ACTIONS(912), - [anon_sym_mut] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [aux_sym_cmd_identifier_token1] = ACTIONS(912), - [aux_sym_cmd_identifier_token2] = ACTIONS(912), - [aux_sym_cmd_identifier_token3] = ACTIONS(912), - [aux_sym_cmd_identifier_token4] = ACTIONS(912), - [aux_sym_cmd_identifier_token5] = ACTIONS(912), - [aux_sym_cmd_identifier_token6] = ACTIONS(912), - [aux_sym_cmd_identifier_token7] = ACTIONS(912), - [aux_sym_cmd_identifier_token8] = ACTIONS(912), - [aux_sym_cmd_identifier_token9] = ACTIONS(912), - [aux_sym_cmd_identifier_token10] = ACTIONS(912), - [aux_sym_cmd_identifier_token11] = ACTIONS(912), - [aux_sym_cmd_identifier_token12] = ACTIONS(912), - [aux_sym_cmd_identifier_token13] = ACTIONS(912), - [aux_sym_cmd_identifier_token14] = ACTIONS(912), - [aux_sym_cmd_identifier_token15] = ACTIONS(912), - [aux_sym_cmd_identifier_token16] = ACTIONS(912), - [aux_sym_cmd_identifier_token17] = ACTIONS(912), - [aux_sym_cmd_identifier_token18] = ACTIONS(912), - [aux_sym_cmd_identifier_token19] = ACTIONS(912), - [aux_sym_cmd_identifier_token20] = ACTIONS(912), - [aux_sym_cmd_identifier_token21] = ACTIONS(912), - [aux_sym_cmd_identifier_token22] = ACTIONS(912), - [aux_sym_cmd_identifier_token23] = ACTIONS(912), - [aux_sym_cmd_identifier_token24] = ACTIONS(912), - [aux_sym_cmd_identifier_token25] = ACTIONS(912), - [aux_sym_cmd_identifier_token26] = ACTIONS(912), - [aux_sym_cmd_identifier_token27] = ACTIONS(912), - [aux_sym_cmd_identifier_token28] = ACTIONS(912), - [aux_sym_cmd_identifier_token29] = ACTIONS(912), - [aux_sym_cmd_identifier_token30] = ACTIONS(912), - [aux_sym_cmd_identifier_token31] = ACTIONS(912), - [aux_sym_cmd_identifier_token32] = ACTIONS(912), - [aux_sym_cmd_identifier_token33] = ACTIONS(912), - [aux_sym_cmd_identifier_token34] = ACTIONS(912), - [aux_sym_cmd_identifier_token35] = ACTIONS(912), - [aux_sym_cmd_identifier_token36] = ACTIONS(912), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(912), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [anon_sym_def] = ACTIONS(912), - [anon_sym_export_DASHenv] = ACTIONS(912), - [anon_sym_extern] = ACTIONS(912), - [anon_sym_module] = ACTIONS(912), - [anon_sym_use] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_error] = ACTIONS(912), - [anon_sym_list] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [anon_sym_loop] = ACTIONS(912), - [anon_sym_make] = ACTIONS(912), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_match] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_try] = ACTIONS(912), - [anon_sym_catch] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_source] = ACTIONS(912), - [anon_sym_source_DASHenv] = ACTIONS(912), - [anon_sym_register] = ACTIONS(912), - [anon_sym_hide] = ACTIONS(912), - [anon_sym_hide_DASHenv] = ACTIONS(912), - [anon_sym_overlay] = ACTIONS(912), - [anon_sym_new] = ACTIONS(912), - [anon_sym_as] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [640] = { - [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(2345), - [anon_sym_alias] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_let_DASHenv] = ACTIONS(2345), - [anon_sym_mut] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [aux_sym_cmd_identifier_token1] = ACTIONS(2345), - [aux_sym_cmd_identifier_token2] = ACTIONS(2345), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), - [aux_sym_cmd_identifier_token6] = ACTIONS(2345), - [aux_sym_cmd_identifier_token7] = ACTIONS(2345), - [aux_sym_cmd_identifier_token8] = ACTIONS(2345), - [aux_sym_cmd_identifier_token9] = ACTIONS(2345), - [aux_sym_cmd_identifier_token10] = ACTIONS(2345), - [aux_sym_cmd_identifier_token11] = ACTIONS(2345), - [aux_sym_cmd_identifier_token12] = ACTIONS(2345), - [aux_sym_cmd_identifier_token13] = ACTIONS(2345), - [aux_sym_cmd_identifier_token14] = ACTIONS(2345), - [aux_sym_cmd_identifier_token15] = ACTIONS(2345), - [aux_sym_cmd_identifier_token16] = ACTIONS(2345), - [aux_sym_cmd_identifier_token17] = ACTIONS(2345), - [aux_sym_cmd_identifier_token18] = ACTIONS(2345), - [aux_sym_cmd_identifier_token19] = ACTIONS(2345), - [aux_sym_cmd_identifier_token20] = ACTIONS(2345), - [aux_sym_cmd_identifier_token21] = ACTIONS(2345), - [aux_sym_cmd_identifier_token22] = ACTIONS(2345), - [aux_sym_cmd_identifier_token23] = ACTIONS(2345), - [aux_sym_cmd_identifier_token24] = ACTIONS(2345), - [aux_sym_cmd_identifier_token25] = ACTIONS(2345), - [aux_sym_cmd_identifier_token26] = ACTIONS(2345), - [aux_sym_cmd_identifier_token27] = ACTIONS(2345), - [aux_sym_cmd_identifier_token28] = ACTIONS(2345), - [aux_sym_cmd_identifier_token29] = ACTIONS(2345), - [aux_sym_cmd_identifier_token30] = ACTIONS(2345), - [aux_sym_cmd_identifier_token31] = ACTIONS(2345), - [aux_sym_cmd_identifier_token32] = ACTIONS(2345), - [aux_sym_cmd_identifier_token33] = ACTIONS(2345), - [aux_sym_cmd_identifier_token34] = ACTIONS(2345), - [aux_sym_cmd_identifier_token35] = ACTIONS(2345), - [aux_sym_cmd_identifier_token36] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_null] = ACTIONS(2347), - [aux_sym_cmd_identifier_token38] = ACTIONS(2345), - [aux_sym_cmd_identifier_token39] = ACTIONS(2347), - [aux_sym_cmd_identifier_token40] = ACTIONS(2347), - [anon_sym_def] = ACTIONS(2345), - [anon_sym_export_DASHenv] = ACTIONS(2345), - [anon_sym_extern] = ACTIONS(2345), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2347), - [anon_sym_error] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_in] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_make] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_else] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_catch] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_source] = ACTIONS(2345), - [anon_sym_source_DASHenv] = ACTIONS(2345), - [anon_sym_register] = ACTIONS(2345), - [anon_sym_hide] = ACTIONS(2345), - [anon_sym_hide_DASHenv] = ACTIONS(2345), - [anon_sym_overlay] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2347), - [aux_sym__val_number_decimal_token1] = ACTIONS(2345), - [aux_sym__val_number_decimal_token2] = ACTIONS(2347), - [anon_sym_DOT2] = ACTIONS(2345), - [aux_sym__val_number_decimal_token3] = ACTIONS(2347), - [aux_sym__val_number_token1] = ACTIONS(2347), - [aux_sym__val_number_token2] = ACTIONS(2347), - [aux_sym__val_number_token3] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [sym__str_single_quotes] = ACTIONS(2347), - [sym__str_back_ticks] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2347), - [anon_sym_POUND] = ACTIONS(3), - }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(1804), - [anon_sym_alias] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_let_DASHenv] = ACTIONS(1804), - [anon_sym_mut] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [aux_sym_cmd_identifier_token1] = ACTIONS(1804), - [aux_sym_cmd_identifier_token2] = ACTIONS(1804), - [aux_sym_cmd_identifier_token3] = ACTIONS(1804), - [aux_sym_cmd_identifier_token4] = ACTIONS(1804), - [aux_sym_cmd_identifier_token5] = ACTIONS(1804), - [aux_sym_cmd_identifier_token6] = ACTIONS(1804), - [aux_sym_cmd_identifier_token7] = ACTIONS(1804), - [aux_sym_cmd_identifier_token8] = ACTIONS(1804), - [aux_sym_cmd_identifier_token9] = ACTIONS(1804), - [aux_sym_cmd_identifier_token10] = ACTIONS(1804), - [aux_sym_cmd_identifier_token11] = ACTIONS(1804), - [aux_sym_cmd_identifier_token12] = ACTIONS(1804), - [aux_sym_cmd_identifier_token13] = ACTIONS(1804), - [aux_sym_cmd_identifier_token14] = ACTIONS(1804), - [aux_sym_cmd_identifier_token15] = ACTIONS(1804), - [aux_sym_cmd_identifier_token16] = ACTIONS(1804), - [aux_sym_cmd_identifier_token17] = ACTIONS(1804), - [aux_sym_cmd_identifier_token18] = ACTIONS(1804), - [aux_sym_cmd_identifier_token19] = ACTIONS(1804), - [aux_sym_cmd_identifier_token20] = ACTIONS(1804), - [aux_sym_cmd_identifier_token21] = ACTIONS(1804), - [aux_sym_cmd_identifier_token22] = ACTIONS(1804), - [aux_sym_cmd_identifier_token23] = ACTIONS(1804), - [aux_sym_cmd_identifier_token24] = ACTIONS(1804), - [aux_sym_cmd_identifier_token25] = ACTIONS(1804), - [aux_sym_cmd_identifier_token26] = ACTIONS(1804), - [aux_sym_cmd_identifier_token27] = ACTIONS(1804), - [aux_sym_cmd_identifier_token28] = ACTIONS(1804), - [aux_sym_cmd_identifier_token29] = ACTIONS(1804), - [aux_sym_cmd_identifier_token30] = ACTIONS(1804), - [aux_sym_cmd_identifier_token31] = ACTIONS(1804), - [aux_sym_cmd_identifier_token32] = ACTIONS(1804), - [aux_sym_cmd_identifier_token33] = ACTIONS(1804), - [aux_sym_cmd_identifier_token34] = ACTIONS(1804), - [aux_sym_cmd_identifier_token35] = ACTIONS(1804), - [aux_sym_cmd_identifier_token36] = ACTIONS(1804), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [anon_sym_null] = ACTIONS(1806), - [aux_sym_cmd_identifier_token38] = ACTIONS(1804), - [aux_sym_cmd_identifier_token39] = ACTIONS(1806), - [aux_sym_cmd_identifier_token40] = ACTIONS(1806), - [anon_sym_def] = ACTIONS(1804), - [anon_sym_export_DASHenv] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_module] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_DOLLAR] = ACTIONS(1806), - [anon_sym_error] = ACTIONS(1804), - [anon_sym_list] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_in] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_make] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_else] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_try] = ACTIONS(1804), - [anon_sym_catch] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_source] = ACTIONS(1804), - [anon_sym_source_DASHenv] = ACTIONS(1804), - [anon_sym_register] = ACTIONS(1804), - [anon_sym_hide] = ACTIONS(1804), - [anon_sym_hide_DASHenv] = ACTIONS(1804), - [anon_sym_overlay] = ACTIONS(1804), - [anon_sym_new] = ACTIONS(1804), - [anon_sym_as] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1806), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1806), - [aux_sym__val_number_decimal_token1] = ACTIONS(1804), - [aux_sym__val_number_decimal_token2] = ACTIONS(1806), - [anon_sym_DOT2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1806), - [aux_sym__val_number_token1] = ACTIONS(1806), - [aux_sym__val_number_token2] = ACTIONS(1806), - [aux_sym__val_number_token3] = ACTIONS(1806), - [anon_sym_DQUOTE] = ACTIONS(1806), - [sym__str_single_quotes] = ACTIONS(1806), - [sym__str_back_ticks] = ACTIONS(1806), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(3), - }, - [642] = { - [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [aux_sym_cmd_identifier_token1] = ACTIONS(2349), - [aux_sym_cmd_identifier_token2] = ACTIONS(2349), - [aux_sym_cmd_identifier_token3] = ACTIONS(2349), - [aux_sym_cmd_identifier_token4] = ACTIONS(2349), - [aux_sym_cmd_identifier_token5] = ACTIONS(2349), - [aux_sym_cmd_identifier_token6] = ACTIONS(2349), - [aux_sym_cmd_identifier_token7] = ACTIONS(2349), - [aux_sym_cmd_identifier_token8] = ACTIONS(2349), - [aux_sym_cmd_identifier_token9] = ACTIONS(2349), - [aux_sym_cmd_identifier_token10] = ACTIONS(2349), - [aux_sym_cmd_identifier_token11] = ACTIONS(2349), - [aux_sym_cmd_identifier_token12] = ACTIONS(2349), - [aux_sym_cmd_identifier_token13] = ACTIONS(2349), - [aux_sym_cmd_identifier_token14] = ACTIONS(2349), - [aux_sym_cmd_identifier_token15] = ACTIONS(2349), - [aux_sym_cmd_identifier_token16] = ACTIONS(2349), - [aux_sym_cmd_identifier_token17] = ACTIONS(2349), - [aux_sym_cmd_identifier_token18] = ACTIONS(2349), - [aux_sym_cmd_identifier_token19] = ACTIONS(2349), - [aux_sym_cmd_identifier_token20] = ACTIONS(2349), - [aux_sym_cmd_identifier_token21] = ACTIONS(2349), - [aux_sym_cmd_identifier_token22] = ACTIONS(2349), - [aux_sym_cmd_identifier_token23] = ACTIONS(2349), - [aux_sym_cmd_identifier_token24] = ACTIONS(2349), - [aux_sym_cmd_identifier_token25] = ACTIONS(2349), - [aux_sym_cmd_identifier_token26] = ACTIONS(2349), - [aux_sym_cmd_identifier_token27] = ACTIONS(2349), - [aux_sym_cmd_identifier_token28] = ACTIONS(2349), - [aux_sym_cmd_identifier_token29] = ACTIONS(2349), - [aux_sym_cmd_identifier_token30] = ACTIONS(2349), - [aux_sym_cmd_identifier_token31] = ACTIONS(2349), - [aux_sym_cmd_identifier_token32] = ACTIONS(2349), - [aux_sym_cmd_identifier_token33] = ACTIONS(2349), - [aux_sym_cmd_identifier_token34] = ACTIONS(2349), - [aux_sym_cmd_identifier_token35] = ACTIONS(2349), - [aux_sym_cmd_identifier_token36] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2351), - [anon_sym_false] = ACTIONS(2351), - [anon_sym_null] = ACTIONS(2351), - [aux_sym_cmd_identifier_token38] = ACTIONS(2349), - [aux_sym_cmd_identifier_token39] = ACTIONS(2351), - [aux_sym_cmd_identifier_token40] = ACTIONS(2351), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2351), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_in] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_make] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_catch] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2351), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2351), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2351), - [anon_sym_DOT2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2351), - [aux_sym__val_number_token1] = ACTIONS(2351), - [aux_sym__val_number_token2] = ACTIONS(2351), - [aux_sym__val_number_token3] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym__str_single_quotes] = ACTIONS(2351), - [sym__str_back_ticks] = ACTIONS(2351), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2351), - [anon_sym_POUND] = ACTIONS(3), - }, - [643] = { - [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(2353), - [anon_sym_alias] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_let_DASHenv] = ACTIONS(2353), - [anon_sym_mut] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [aux_sym_cmd_identifier_token1] = ACTIONS(2353), - [aux_sym_cmd_identifier_token2] = ACTIONS(2353), - [aux_sym_cmd_identifier_token3] = ACTIONS(2353), - [aux_sym_cmd_identifier_token4] = ACTIONS(2353), - [aux_sym_cmd_identifier_token5] = ACTIONS(2353), - [aux_sym_cmd_identifier_token6] = ACTIONS(2353), - [aux_sym_cmd_identifier_token7] = ACTIONS(2353), - [aux_sym_cmd_identifier_token8] = ACTIONS(2353), - [aux_sym_cmd_identifier_token9] = ACTIONS(2353), - [aux_sym_cmd_identifier_token10] = ACTIONS(2353), - [aux_sym_cmd_identifier_token11] = ACTIONS(2353), - [aux_sym_cmd_identifier_token12] = ACTIONS(2353), - [aux_sym_cmd_identifier_token13] = ACTIONS(2353), - [aux_sym_cmd_identifier_token14] = ACTIONS(2353), - [aux_sym_cmd_identifier_token15] = ACTIONS(2353), - [aux_sym_cmd_identifier_token16] = ACTIONS(2353), - [aux_sym_cmd_identifier_token17] = ACTIONS(2353), - [aux_sym_cmd_identifier_token18] = ACTIONS(2353), - [aux_sym_cmd_identifier_token19] = ACTIONS(2353), - [aux_sym_cmd_identifier_token20] = ACTIONS(2353), - [aux_sym_cmd_identifier_token21] = ACTIONS(2353), - [aux_sym_cmd_identifier_token22] = ACTIONS(2353), - [aux_sym_cmd_identifier_token23] = ACTIONS(2353), - [aux_sym_cmd_identifier_token24] = ACTIONS(2353), - [aux_sym_cmd_identifier_token25] = ACTIONS(2353), - [aux_sym_cmd_identifier_token26] = ACTIONS(2353), - [aux_sym_cmd_identifier_token27] = ACTIONS(2353), - [aux_sym_cmd_identifier_token28] = ACTIONS(2353), - [aux_sym_cmd_identifier_token29] = ACTIONS(2353), - [aux_sym_cmd_identifier_token30] = ACTIONS(2353), - [aux_sym_cmd_identifier_token31] = ACTIONS(2353), - [aux_sym_cmd_identifier_token32] = ACTIONS(2353), - [aux_sym_cmd_identifier_token33] = ACTIONS(2353), - [aux_sym_cmd_identifier_token34] = ACTIONS(2353), - [aux_sym_cmd_identifier_token35] = ACTIONS(2353), - [aux_sym_cmd_identifier_token36] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_null] = ACTIONS(2355), - [aux_sym_cmd_identifier_token38] = ACTIONS(2353), - [aux_sym_cmd_identifier_token39] = ACTIONS(2355), - [aux_sym_cmd_identifier_token40] = ACTIONS(2355), - [anon_sym_def] = ACTIONS(2353), - [anon_sym_export_DASHenv] = ACTIONS(2353), - [anon_sym_extern] = ACTIONS(2353), - [anon_sym_module] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_error] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_in] = ACTIONS(2353), - [anon_sym_loop] = ACTIONS(2353), - [anon_sym_make] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_else] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_catch] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_source] = ACTIONS(2353), - [anon_sym_source_DASHenv] = ACTIONS(2353), - [anon_sym_register] = ACTIONS(2353), - [anon_sym_hide] = ACTIONS(2353), - [anon_sym_hide_DASHenv] = ACTIONS(2353), - [anon_sym_overlay] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2355), - [aux_sym__val_number_decimal_token1] = ACTIONS(2353), - [aux_sym__val_number_decimal_token2] = ACTIONS(2355), - [anon_sym_DOT2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_token1] = ACTIONS(2355), - [aux_sym__val_number_token2] = ACTIONS(2355), - [aux_sym__val_number_token3] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym__str_single_quotes] = ACTIONS(2355), - [sym__str_back_ticks] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2355), - [anon_sym_POUND] = ACTIONS(3), - }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(1808), - [anon_sym_alias] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_let_DASHenv] = ACTIONS(1808), - [anon_sym_mut] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [aux_sym_cmd_identifier_token1] = ACTIONS(1808), - [aux_sym_cmd_identifier_token2] = ACTIONS(1808), - [aux_sym_cmd_identifier_token3] = ACTIONS(1808), - [aux_sym_cmd_identifier_token4] = ACTIONS(1808), - [aux_sym_cmd_identifier_token5] = ACTIONS(1808), - [aux_sym_cmd_identifier_token6] = ACTIONS(1808), - [aux_sym_cmd_identifier_token7] = ACTIONS(1808), - [aux_sym_cmd_identifier_token8] = ACTIONS(1808), - [aux_sym_cmd_identifier_token9] = ACTIONS(1808), - [aux_sym_cmd_identifier_token10] = ACTIONS(1808), - [aux_sym_cmd_identifier_token11] = ACTIONS(1808), - [aux_sym_cmd_identifier_token12] = ACTIONS(1808), - [aux_sym_cmd_identifier_token13] = ACTIONS(1808), - [aux_sym_cmd_identifier_token14] = ACTIONS(1808), - [aux_sym_cmd_identifier_token15] = ACTIONS(1808), - [aux_sym_cmd_identifier_token16] = ACTIONS(1808), - [aux_sym_cmd_identifier_token17] = ACTIONS(1808), - [aux_sym_cmd_identifier_token18] = ACTIONS(1808), - [aux_sym_cmd_identifier_token19] = ACTIONS(1808), - [aux_sym_cmd_identifier_token20] = ACTIONS(1808), - [aux_sym_cmd_identifier_token21] = ACTIONS(1808), - [aux_sym_cmd_identifier_token22] = ACTIONS(1808), - [aux_sym_cmd_identifier_token23] = ACTIONS(1808), - [aux_sym_cmd_identifier_token24] = ACTIONS(1808), - [aux_sym_cmd_identifier_token25] = ACTIONS(1808), - [aux_sym_cmd_identifier_token26] = ACTIONS(1808), - [aux_sym_cmd_identifier_token27] = ACTIONS(1808), - [aux_sym_cmd_identifier_token28] = ACTIONS(1808), - [aux_sym_cmd_identifier_token29] = ACTIONS(1808), - [aux_sym_cmd_identifier_token30] = ACTIONS(1808), - [aux_sym_cmd_identifier_token31] = ACTIONS(1808), - [aux_sym_cmd_identifier_token32] = ACTIONS(1808), - [aux_sym_cmd_identifier_token33] = ACTIONS(1808), - [aux_sym_cmd_identifier_token34] = ACTIONS(1808), - [aux_sym_cmd_identifier_token35] = ACTIONS(1808), - [aux_sym_cmd_identifier_token36] = ACTIONS(1808), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1808), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [anon_sym_def] = ACTIONS(1808), - [anon_sym_export_DASHenv] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_module] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1810), - [anon_sym_error] = ACTIONS(1808), - [anon_sym_list] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_make] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_catch] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_source] = ACTIONS(1808), - [anon_sym_source_DASHenv] = ACTIONS(1808), - [anon_sym_register] = ACTIONS(1808), - [anon_sym_hide] = ACTIONS(1808), - [anon_sym_hide_DASHenv] = ACTIONS(1808), - [anon_sym_overlay] = ACTIONS(1808), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1810), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [anon_sym_DOT2] = ACTIONS(1808), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1796), + [anon_sym_alias] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_let_DASHenv] = ACTIONS(1796), + [anon_sym_mut] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [aux_sym_cmd_identifier_token1] = ACTIONS(1796), + [aux_sym_cmd_identifier_token2] = ACTIONS(1796), + [aux_sym_cmd_identifier_token3] = ACTIONS(1796), + [aux_sym_cmd_identifier_token4] = ACTIONS(1796), + [aux_sym_cmd_identifier_token5] = ACTIONS(1796), + [aux_sym_cmd_identifier_token6] = ACTIONS(1796), + [aux_sym_cmd_identifier_token7] = ACTIONS(1796), + [aux_sym_cmd_identifier_token8] = ACTIONS(1796), + [aux_sym_cmd_identifier_token9] = ACTIONS(1796), + [aux_sym_cmd_identifier_token10] = ACTIONS(1796), + [aux_sym_cmd_identifier_token11] = ACTIONS(1796), + [aux_sym_cmd_identifier_token12] = ACTIONS(1796), + [aux_sym_cmd_identifier_token13] = ACTIONS(1796), + [aux_sym_cmd_identifier_token14] = ACTIONS(1796), + [aux_sym_cmd_identifier_token15] = ACTIONS(1796), + [aux_sym_cmd_identifier_token16] = ACTIONS(1796), + [aux_sym_cmd_identifier_token17] = ACTIONS(1796), + [aux_sym_cmd_identifier_token18] = ACTIONS(1796), + [aux_sym_cmd_identifier_token19] = ACTIONS(1796), + [aux_sym_cmd_identifier_token20] = ACTIONS(1796), + [aux_sym_cmd_identifier_token21] = ACTIONS(1796), + [aux_sym_cmd_identifier_token22] = ACTIONS(1796), + [aux_sym_cmd_identifier_token23] = ACTIONS(1796), + [aux_sym_cmd_identifier_token24] = ACTIONS(1796), + [aux_sym_cmd_identifier_token25] = ACTIONS(1796), + [aux_sym_cmd_identifier_token26] = ACTIONS(1796), + [aux_sym_cmd_identifier_token27] = ACTIONS(1796), + [aux_sym_cmd_identifier_token28] = ACTIONS(1796), + [aux_sym_cmd_identifier_token29] = ACTIONS(1796), + [aux_sym_cmd_identifier_token30] = ACTIONS(1796), + [aux_sym_cmd_identifier_token31] = ACTIONS(1796), + [aux_sym_cmd_identifier_token32] = ACTIONS(1796), + [aux_sym_cmd_identifier_token33] = ACTIONS(1796), + [aux_sym_cmd_identifier_token34] = ACTIONS(1796), + [aux_sym_cmd_identifier_token35] = ACTIONS(1796), + [aux_sym_cmd_identifier_token36] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1798), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1798), + [aux_sym_cmd_identifier_token40] = ACTIONS(1798), + [anon_sym_def] = ACTIONS(1796), + [anon_sym_export_DASHenv] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_module] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_error] = ACTIONS(1796), + [anon_sym_list] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_make] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_catch] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_source] = ACTIONS(1796), + [anon_sym_source_DASHenv] = ACTIONS(1796), + [anon_sym_register] = ACTIONS(1796), + [anon_sym_hide] = ACTIONS(1796), + [anon_sym_hide_DASHenv] = ACTIONS(1796), + [anon_sym_overlay] = ACTIONS(1796), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1798), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1798), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(1798), + [aux_sym__val_number_token2] = ACTIONS(1798), + [aux_sym__val_number_token3] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [sym__str_single_quotes] = ACTIONS(1798), + [sym__str_back_ticks] = ACTIONS(1798), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_POUND] = ACTIONS(247), + }, + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_alias] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_let_DASHenv] = ACTIONS(2241), + [anon_sym_mut] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [aux_sym_cmd_identifier_token1] = ACTIONS(2241), + [aux_sym_cmd_identifier_token2] = ACTIONS(2241), + [aux_sym_cmd_identifier_token3] = ACTIONS(2241), + [aux_sym_cmd_identifier_token4] = ACTIONS(2241), + [aux_sym_cmd_identifier_token5] = ACTIONS(2241), + [aux_sym_cmd_identifier_token6] = ACTIONS(2241), + [aux_sym_cmd_identifier_token7] = ACTIONS(2241), + [aux_sym_cmd_identifier_token8] = ACTIONS(2241), + [aux_sym_cmd_identifier_token9] = ACTIONS(2241), + [aux_sym_cmd_identifier_token10] = ACTIONS(2241), + [aux_sym_cmd_identifier_token11] = ACTIONS(2241), + [aux_sym_cmd_identifier_token12] = ACTIONS(2241), + [aux_sym_cmd_identifier_token13] = ACTIONS(2241), + [aux_sym_cmd_identifier_token14] = ACTIONS(2241), + [aux_sym_cmd_identifier_token15] = ACTIONS(2241), + [aux_sym_cmd_identifier_token16] = ACTIONS(2241), + [aux_sym_cmd_identifier_token17] = ACTIONS(2241), + [aux_sym_cmd_identifier_token18] = ACTIONS(2241), + [aux_sym_cmd_identifier_token19] = ACTIONS(2241), + [aux_sym_cmd_identifier_token20] = ACTIONS(2241), + [aux_sym_cmd_identifier_token21] = ACTIONS(2241), + [aux_sym_cmd_identifier_token22] = ACTIONS(2241), + [aux_sym_cmd_identifier_token23] = ACTIONS(2241), + [aux_sym_cmd_identifier_token24] = ACTIONS(2241), + [aux_sym_cmd_identifier_token25] = ACTIONS(2241), + [aux_sym_cmd_identifier_token26] = ACTIONS(2241), + [aux_sym_cmd_identifier_token27] = ACTIONS(2241), + [aux_sym_cmd_identifier_token28] = ACTIONS(2241), + [aux_sym_cmd_identifier_token29] = ACTIONS(2241), + [aux_sym_cmd_identifier_token30] = ACTIONS(2241), + [aux_sym_cmd_identifier_token31] = ACTIONS(2241), + [aux_sym_cmd_identifier_token32] = ACTIONS(2241), + [aux_sym_cmd_identifier_token33] = ACTIONS(2241), + [aux_sym_cmd_identifier_token34] = ACTIONS(2241), + [aux_sym_cmd_identifier_token35] = ACTIONS(2241), + [aux_sym_cmd_identifier_token36] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2243), + [anon_sym_false] = ACTIONS(2243), + [anon_sym_null] = ACTIONS(2243), + [aux_sym_cmd_identifier_token38] = ACTIONS(2241), + [aux_sym_cmd_identifier_token39] = ACTIONS(2243), + [aux_sym_cmd_identifier_token40] = ACTIONS(2243), + [anon_sym_def] = ACTIONS(2241), + [anon_sym_export_DASHenv] = ACTIONS(2241), + [anon_sym_extern] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_error] = ACTIONS(2241), + [anon_sym_list] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_make] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_catch] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_source] = ACTIONS(2241), + [anon_sym_source_DASHenv] = ACTIONS(2241), + [anon_sym_register] = ACTIONS(2241), + [anon_sym_hide] = ACTIONS(2241), + [anon_sym_hide_DASHenv] = ACTIONS(2241), + [anon_sym_overlay] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2243), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2243), + [aux_sym__val_number_decimal_token1] = ACTIONS(2241), + [aux_sym__val_number_decimal_token2] = ACTIONS(2243), + [aux_sym__val_number_decimal_token3] = ACTIONS(2243), + [aux_sym__val_number_decimal_token4] = ACTIONS(2243), + [aux_sym__val_number_token1] = ACTIONS(2243), + [aux_sym__val_number_token2] = ACTIONS(2243), + [aux_sym__val_number_token3] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2243), + [sym__str_single_quotes] = ACTIONS(2243), + [sym__str_back_ticks] = ACTIONS(2243), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(247), + }, + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(1589), + [anon_sym_alias] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_let_DASHenv] = ACTIONS(1589), + [anon_sym_mut] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [aux_sym_cmd_identifier_token1] = ACTIONS(1589), + [aux_sym_cmd_identifier_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token3] = ACTIONS(1589), + [aux_sym_cmd_identifier_token4] = ACTIONS(1589), + [aux_sym_cmd_identifier_token5] = ACTIONS(1589), + [aux_sym_cmd_identifier_token6] = ACTIONS(1589), + [aux_sym_cmd_identifier_token7] = ACTIONS(1589), + [aux_sym_cmd_identifier_token8] = ACTIONS(1589), + [aux_sym_cmd_identifier_token9] = ACTIONS(1589), + [aux_sym_cmd_identifier_token10] = ACTIONS(1589), + [aux_sym_cmd_identifier_token11] = ACTIONS(1589), + [aux_sym_cmd_identifier_token12] = ACTIONS(1589), + [aux_sym_cmd_identifier_token13] = ACTIONS(1589), + [aux_sym_cmd_identifier_token14] = ACTIONS(1589), + [aux_sym_cmd_identifier_token15] = ACTIONS(1589), + [aux_sym_cmd_identifier_token16] = ACTIONS(1589), + [aux_sym_cmd_identifier_token17] = ACTIONS(1589), + [aux_sym_cmd_identifier_token18] = ACTIONS(1589), + [aux_sym_cmd_identifier_token19] = ACTIONS(1589), + [aux_sym_cmd_identifier_token20] = ACTIONS(1589), + [aux_sym_cmd_identifier_token21] = ACTIONS(1589), + [aux_sym_cmd_identifier_token22] = ACTIONS(1589), + [aux_sym_cmd_identifier_token23] = ACTIONS(1589), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), + [aux_sym_cmd_identifier_token34] = ACTIONS(1589), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1589), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_export_DASHenv] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_module] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1589), + [anon_sym_list] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_make] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_source] = ACTIONS(1589), + [anon_sym_source_DASHenv] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_hide] = ACTIONS(1589), + [anon_sym_hide_DASHenv] = ACTIONS(1589), + [anon_sym_overlay] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), + }, + [642] = { + [sym_comment] = STATE(642), + [anon_sym_export] = ACTIONS(2303), + [anon_sym_alias] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_let_DASHenv] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [aux_sym_cmd_identifier_token1] = ACTIONS(2303), + [aux_sym_cmd_identifier_token2] = ACTIONS(2303), + [aux_sym_cmd_identifier_token3] = ACTIONS(2303), + [aux_sym_cmd_identifier_token4] = ACTIONS(2303), + [aux_sym_cmd_identifier_token5] = ACTIONS(2303), + [aux_sym_cmd_identifier_token6] = ACTIONS(2303), + [aux_sym_cmd_identifier_token7] = ACTIONS(2303), + [aux_sym_cmd_identifier_token8] = ACTIONS(2303), + [aux_sym_cmd_identifier_token9] = ACTIONS(2303), + [aux_sym_cmd_identifier_token10] = ACTIONS(2303), + [aux_sym_cmd_identifier_token11] = ACTIONS(2303), + [aux_sym_cmd_identifier_token12] = ACTIONS(2303), + [aux_sym_cmd_identifier_token13] = ACTIONS(2303), + [aux_sym_cmd_identifier_token14] = ACTIONS(2303), + [aux_sym_cmd_identifier_token15] = ACTIONS(2303), + [aux_sym_cmd_identifier_token16] = ACTIONS(2303), + [aux_sym_cmd_identifier_token17] = ACTIONS(2303), + [aux_sym_cmd_identifier_token18] = ACTIONS(2303), + [aux_sym_cmd_identifier_token19] = ACTIONS(2303), + [aux_sym_cmd_identifier_token20] = ACTIONS(2303), + [aux_sym_cmd_identifier_token21] = ACTIONS(2303), + [aux_sym_cmd_identifier_token22] = ACTIONS(2303), + [aux_sym_cmd_identifier_token23] = ACTIONS(2303), + [aux_sym_cmd_identifier_token24] = ACTIONS(2303), + [aux_sym_cmd_identifier_token25] = ACTIONS(2303), + [aux_sym_cmd_identifier_token26] = ACTIONS(2303), + [aux_sym_cmd_identifier_token27] = ACTIONS(2303), + [aux_sym_cmd_identifier_token28] = ACTIONS(2303), + [aux_sym_cmd_identifier_token29] = ACTIONS(2303), + [aux_sym_cmd_identifier_token30] = ACTIONS(2303), + [aux_sym_cmd_identifier_token31] = ACTIONS(2303), + [aux_sym_cmd_identifier_token32] = ACTIONS(2303), + [aux_sym_cmd_identifier_token33] = ACTIONS(2303), + [aux_sym_cmd_identifier_token34] = ACTIONS(2303), + [aux_sym_cmd_identifier_token35] = ACTIONS(2303), + [aux_sym_cmd_identifier_token36] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_null] = ACTIONS(2305), + [aux_sym_cmd_identifier_token38] = ACTIONS(2303), + [aux_sym_cmd_identifier_token39] = ACTIONS(2305), + [aux_sym_cmd_identifier_token40] = ACTIONS(2305), + [anon_sym_def] = ACTIONS(2303), + [anon_sym_export_DASHenv] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2305), + [anon_sym_error] = ACTIONS(2303), + [anon_sym_list] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_make] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_do] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_else] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_catch] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_source] = ACTIONS(2303), + [anon_sym_source_DASHenv] = ACTIONS(2303), + [anon_sym_register] = ACTIONS(2303), + [anon_sym_hide] = ACTIONS(2303), + [anon_sym_hide_DASHenv] = ACTIONS(2303), + [anon_sym_overlay] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2305), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2305), + [aux_sym__val_number_decimal_token4] = ACTIONS(2305), + [aux_sym__val_number_token1] = ACTIONS(2305), + [aux_sym__val_number_token2] = ACTIONS(2305), + [aux_sym__val_number_token3] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym__str_single_quotes] = ACTIONS(2305), + [sym__str_back_ticks] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(247), + }, + [643] = { + [sym_comment] = STATE(643), + [anon_sym_export] = ACTIONS(2359), + [anon_sym_alias] = ACTIONS(2359), + [anon_sym_let] = ACTIONS(2359), + [anon_sym_let_DASHenv] = ACTIONS(2359), + [anon_sym_mut] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [aux_sym_cmd_identifier_token1] = ACTIONS(2359), + [aux_sym_cmd_identifier_token2] = ACTIONS(2359), + [aux_sym_cmd_identifier_token3] = ACTIONS(2359), + [aux_sym_cmd_identifier_token4] = ACTIONS(2359), + [aux_sym_cmd_identifier_token5] = ACTIONS(2359), + [aux_sym_cmd_identifier_token6] = ACTIONS(2359), + [aux_sym_cmd_identifier_token7] = ACTIONS(2359), + [aux_sym_cmd_identifier_token8] = ACTIONS(2359), + [aux_sym_cmd_identifier_token9] = ACTIONS(2359), + [aux_sym_cmd_identifier_token10] = ACTIONS(2359), + [aux_sym_cmd_identifier_token11] = ACTIONS(2359), + [aux_sym_cmd_identifier_token12] = ACTIONS(2359), + [aux_sym_cmd_identifier_token13] = ACTIONS(2359), + [aux_sym_cmd_identifier_token14] = ACTIONS(2359), + [aux_sym_cmd_identifier_token15] = ACTIONS(2359), + [aux_sym_cmd_identifier_token16] = ACTIONS(2359), + [aux_sym_cmd_identifier_token17] = ACTIONS(2359), + [aux_sym_cmd_identifier_token18] = ACTIONS(2359), + [aux_sym_cmd_identifier_token19] = ACTIONS(2359), + [aux_sym_cmd_identifier_token20] = ACTIONS(2359), + [aux_sym_cmd_identifier_token21] = ACTIONS(2359), + [aux_sym_cmd_identifier_token22] = ACTIONS(2359), + [aux_sym_cmd_identifier_token23] = ACTIONS(2359), + [aux_sym_cmd_identifier_token24] = ACTIONS(2359), + [aux_sym_cmd_identifier_token25] = ACTIONS(2359), + [aux_sym_cmd_identifier_token26] = ACTIONS(2359), + [aux_sym_cmd_identifier_token27] = ACTIONS(2359), + [aux_sym_cmd_identifier_token28] = ACTIONS(2359), + [aux_sym_cmd_identifier_token29] = ACTIONS(2359), + [aux_sym_cmd_identifier_token30] = ACTIONS(2359), + [aux_sym_cmd_identifier_token31] = ACTIONS(2359), + [aux_sym_cmd_identifier_token32] = ACTIONS(2359), + [aux_sym_cmd_identifier_token33] = ACTIONS(2359), + [aux_sym_cmd_identifier_token34] = ACTIONS(2359), + [aux_sym_cmd_identifier_token35] = ACTIONS(2359), + [aux_sym_cmd_identifier_token36] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2361), + [aux_sym_cmd_identifier_token38] = ACTIONS(2359), + [aux_sym_cmd_identifier_token39] = ACTIONS(2361), + [aux_sym_cmd_identifier_token40] = ACTIONS(2361), + [anon_sym_def] = ACTIONS(2359), + [anon_sym_export_DASHenv] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2359), + [anon_sym_use] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2361), + [anon_sym_error] = ACTIONS(2359), + [anon_sym_list] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_in] = ACTIONS(2359), + [anon_sym_loop] = ACTIONS(2359), + [anon_sym_make] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_do] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_source] = ACTIONS(2359), + [anon_sym_source_DASHenv] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_hide] = ACTIONS(2359), + [anon_sym_hide_DASHenv] = ACTIONS(2359), + [anon_sym_overlay] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_as] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), + [aux_sym__val_number_decimal_token1] = ACTIONS(2359), + [aux_sym__val_number_decimal_token2] = ACTIONS(2361), + [aux_sym__val_number_decimal_token3] = ACTIONS(2361), + [aux_sym__val_number_decimal_token4] = ACTIONS(2361), + [aux_sym__val_number_token1] = ACTIONS(2361), + [aux_sym__val_number_token2] = ACTIONS(2361), + [aux_sym__val_number_token3] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym__str_single_quotes] = ACTIONS(2361), + [sym__str_back_ticks] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_POUND] = ACTIONS(247), + }, + [644] = { + [sym_comment] = STATE(644), + [anon_sym_export] = ACTIONS(1741), + [anon_sym_alias] = ACTIONS(1741), + [anon_sym_let] = ACTIONS(1741), + [anon_sym_let_DASHenv] = ACTIONS(1741), + [anon_sym_mut] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1741), + [aux_sym_cmd_identifier_token1] = ACTIONS(1741), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1741), + [aux_sym_cmd_identifier_token9] = ACTIONS(1741), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1741), + [aux_sym_cmd_identifier_token13] = ACTIONS(1741), + [aux_sym_cmd_identifier_token14] = ACTIONS(1741), + [aux_sym_cmd_identifier_token15] = ACTIONS(1741), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1741), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1745), + [anon_sym_false] = ACTIONS(1745), + [anon_sym_null] = ACTIONS(1745), + [aux_sym_cmd_identifier_token38] = ACTIONS(1741), + [aux_sym_cmd_identifier_token39] = ACTIONS(1745), + [aux_sym_cmd_identifier_token40] = ACTIONS(1745), + [anon_sym_def] = ACTIONS(1741), + [anon_sym_export_DASHenv] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1741), + [anon_sym_module] = ACTIONS(1741), + [anon_sym_use] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_DOLLAR] = ACTIONS(1745), + [anon_sym_error] = ACTIONS(1741), + [anon_sym_list] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1741), + [anon_sym_continue] = ACTIONS(1741), + [anon_sym_for] = ACTIONS(1741), + [anon_sym_in] = ACTIONS(1741), + [anon_sym_loop] = ACTIONS(1741), + [anon_sym_make] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_do] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1741), + [anon_sym_else] = ACTIONS(1741), + [anon_sym_match] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_try] = ACTIONS(1741), + [anon_sym_catch] = ACTIONS(1741), + [anon_sym_return] = ACTIONS(1741), + [anon_sym_source] = ACTIONS(1741), + [anon_sym_source_DASHenv] = ACTIONS(1741), + [anon_sym_register] = ACTIONS(1741), + [anon_sym_hide] = ACTIONS(1741), + [anon_sym_hide_DASHenv] = ACTIONS(1741), + [anon_sym_overlay] = ACTIONS(1741), + [anon_sym_new] = ACTIONS(1741), + [anon_sym_as] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1745), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1745), + [aux_sym__val_number_decimal_token1] = ACTIONS(1741), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1745), + [aux_sym__val_number_decimal_token4] = ACTIONS(1745), + [aux_sym__val_number_token1] = ACTIONS(1745), + [aux_sym__val_number_token2] = ACTIONS(1745), + [aux_sym__val_number_token3] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym__str_single_quotes] = ACTIONS(1745), + [sym__str_back_ticks] = ACTIONS(1745), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), }, [645] = { [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1470), - [aux_sym_cmd_identifier_token4] = ACTIONS(1470), - [aux_sym_cmd_identifier_token5] = ACTIONS(1470), - [aux_sym_cmd_identifier_token6] = ACTIONS(1470), - [aux_sym_cmd_identifier_token7] = ACTIONS(1470), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1470), - [aux_sym_cmd_identifier_token11] = ACTIONS(1470), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1470), - [aux_sym_cmd_identifier_token17] = ACTIONS(1470), - [aux_sym_cmd_identifier_token18] = ACTIONS(1470), - [aux_sym_cmd_identifier_token19] = ACTIONS(1470), - [aux_sym_cmd_identifier_token20] = ACTIONS(1470), - [aux_sym_cmd_identifier_token21] = ACTIONS(1470), - [aux_sym_cmd_identifier_token22] = ACTIONS(1470), - [aux_sym_cmd_identifier_token23] = ACTIONS(1470), - [aux_sym_cmd_identifier_token24] = ACTIONS(1470), - [aux_sym_cmd_identifier_token25] = ACTIONS(1470), - [aux_sym_cmd_identifier_token26] = ACTIONS(1470), - [aux_sym_cmd_identifier_token27] = ACTIONS(1470), - [aux_sym_cmd_identifier_token28] = ACTIONS(1470), - [aux_sym_cmd_identifier_token29] = ACTIONS(1470), - [aux_sym_cmd_identifier_token30] = ACTIONS(1470), - [aux_sym_cmd_identifier_token31] = ACTIONS(1470), - [aux_sym_cmd_identifier_token32] = ACTIONS(1470), - [aux_sym_cmd_identifier_token33] = ACTIONS(1470), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1470), - [aux_sym_cmd_identifier_token36] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_list] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_make] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_else] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_catch] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2363), + [anon_sym_alias] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_DASHenv] = ACTIONS(2363), + [anon_sym_mut] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [aux_sym_cmd_identifier_token1] = ACTIONS(2363), + [aux_sym_cmd_identifier_token2] = ACTIONS(2363), + [aux_sym_cmd_identifier_token3] = ACTIONS(2363), + [aux_sym_cmd_identifier_token4] = ACTIONS(2363), + [aux_sym_cmd_identifier_token5] = ACTIONS(2363), + [aux_sym_cmd_identifier_token6] = ACTIONS(2363), + [aux_sym_cmd_identifier_token7] = ACTIONS(2363), + [aux_sym_cmd_identifier_token8] = ACTIONS(2363), + [aux_sym_cmd_identifier_token9] = ACTIONS(2363), + [aux_sym_cmd_identifier_token10] = ACTIONS(2363), + [aux_sym_cmd_identifier_token11] = ACTIONS(2363), + [aux_sym_cmd_identifier_token12] = ACTIONS(2363), + [aux_sym_cmd_identifier_token13] = ACTIONS(2363), + [aux_sym_cmd_identifier_token14] = ACTIONS(2363), + [aux_sym_cmd_identifier_token15] = ACTIONS(2363), + [aux_sym_cmd_identifier_token16] = ACTIONS(2363), + [aux_sym_cmd_identifier_token17] = ACTIONS(2363), + [aux_sym_cmd_identifier_token18] = ACTIONS(2363), + [aux_sym_cmd_identifier_token19] = ACTIONS(2363), + [aux_sym_cmd_identifier_token20] = ACTIONS(2363), + [aux_sym_cmd_identifier_token21] = ACTIONS(2363), + [aux_sym_cmd_identifier_token22] = ACTIONS(2363), + [aux_sym_cmd_identifier_token23] = ACTIONS(2363), + [aux_sym_cmd_identifier_token24] = ACTIONS(2363), + [aux_sym_cmd_identifier_token25] = ACTIONS(2363), + [aux_sym_cmd_identifier_token26] = ACTIONS(2363), + [aux_sym_cmd_identifier_token27] = ACTIONS(2363), + [aux_sym_cmd_identifier_token28] = ACTIONS(2363), + [aux_sym_cmd_identifier_token29] = ACTIONS(2363), + [aux_sym_cmd_identifier_token30] = ACTIONS(2363), + [aux_sym_cmd_identifier_token31] = ACTIONS(2363), + [aux_sym_cmd_identifier_token32] = ACTIONS(2363), + [aux_sym_cmd_identifier_token33] = ACTIONS(2363), + [aux_sym_cmd_identifier_token34] = ACTIONS(2363), + [aux_sym_cmd_identifier_token35] = ACTIONS(2363), + [aux_sym_cmd_identifier_token36] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_null] = ACTIONS(2365), + [aux_sym_cmd_identifier_token38] = ACTIONS(2363), + [aux_sym_cmd_identifier_token39] = ACTIONS(2365), + [aux_sym_cmd_identifier_token40] = ACTIONS(2365), + [anon_sym_def] = ACTIONS(2363), + [anon_sym_export_DASHenv] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2363), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_DOLLAR] = ACTIONS(2365), + [anon_sym_error] = ACTIONS(2363), + [anon_sym_list] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_in] = ACTIONS(2363), + [anon_sym_loop] = ACTIONS(2363), + [anon_sym_make] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_else] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_catch] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_source] = ACTIONS(2363), + [anon_sym_source_DASHenv] = ACTIONS(2363), + [anon_sym_register] = ACTIONS(2363), + [anon_sym_hide] = ACTIONS(2363), + [anon_sym_hide_DASHenv] = ACTIONS(2363), + [anon_sym_overlay] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2365), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2365), + [aux_sym__val_number_decimal_token1] = ACTIONS(2363), + [aux_sym__val_number_decimal_token2] = ACTIONS(2365), + [aux_sym__val_number_decimal_token3] = ACTIONS(2365), + [aux_sym__val_number_decimal_token4] = ACTIONS(2365), + [aux_sym__val_number_token1] = ACTIONS(2365), + [aux_sym__val_number_token2] = ACTIONS(2365), + [aux_sym__val_number_token3] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(2365), + [sym__str_single_quotes] = ACTIONS(2365), + [sym__str_back_ticks] = ACTIONS(2365), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_POUND] = ACTIONS(247), }, [646] = { [sym_comment] = STATE(646), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_alias] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_let_DASHenv] = ACTIONS(1535), - [anon_sym_mut] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [aux_sym_cmd_identifier_token1] = ACTIONS(1535), - [aux_sym_cmd_identifier_token2] = ACTIONS(1535), - [aux_sym_cmd_identifier_token3] = ACTIONS(1535), - [aux_sym_cmd_identifier_token4] = ACTIONS(1535), - [aux_sym_cmd_identifier_token5] = ACTIONS(1535), - [aux_sym_cmd_identifier_token6] = ACTIONS(1535), - [aux_sym_cmd_identifier_token7] = ACTIONS(1535), - [aux_sym_cmd_identifier_token8] = ACTIONS(1535), - [aux_sym_cmd_identifier_token9] = ACTIONS(1535), - [aux_sym_cmd_identifier_token10] = ACTIONS(1535), - [aux_sym_cmd_identifier_token11] = ACTIONS(1535), - [aux_sym_cmd_identifier_token12] = ACTIONS(1535), - [aux_sym_cmd_identifier_token13] = ACTIONS(1535), - [aux_sym_cmd_identifier_token14] = ACTIONS(1535), - [aux_sym_cmd_identifier_token15] = ACTIONS(1535), - [aux_sym_cmd_identifier_token16] = ACTIONS(1535), - [aux_sym_cmd_identifier_token17] = ACTIONS(1535), - [aux_sym_cmd_identifier_token18] = ACTIONS(1535), - [aux_sym_cmd_identifier_token19] = ACTIONS(1535), - [aux_sym_cmd_identifier_token20] = ACTIONS(1535), - [aux_sym_cmd_identifier_token21] = ACTIONS(1535), - [aux_sym_cmd_identifier_token22] = ACTIONS(1535), - [aux_sym_cmd_identifier_token23] = ACTIONS(1535), - [aux_sym_cmd_identifier_token24] = ACTIONS(1535), - [aux_sym_cmd_identifier_token25] = ACTIONS(1535), - [aux_sym_cmd_identifier_token26] = ACTIONS(1535), - [aux_sym_cmd_identifier_token27] = ACTIONS(1535), - [aux_sym_cmd_identifier_token28] = ACTIONS(1535), - [aux_sym_cmd_identifier_token29] = ACTIONS(1535), - [aux_sym_cmd_identifier_token30] = ACTIONS(1535), - [aux_sym_cmd_identifier_token31] = ACTIONS(1535), - [aux_sym_cmd_identifier_token32] = ACTIONS(1535), - [aux_sym_cmd_identifier_token33] = ACTIONS(1535), - [aux_sym_cmd_identifier_token34] = ACTIONS(1535), - [aux_sym_cmd_identifier_token35] = ACTIONS(1535), - [aux_sym_cmd_identifier_token36] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1535), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_export_DASHenv] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1535), - [anon_sym_list] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_make] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_catch] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_source] = ACTIONS(1535), - [anon_sym_source_DASHenv] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1535), - [anon_sym_hide] = ACTIONS(1535), - [anon_sym_hide_DASHenv] = ACTIONS(1535), - [anon_sym_overlay] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_alias] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_let_DASHenv] = ACTIONS(2263), + [anon_sym_mut] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [aux_sym_cmd_identifier_token1] = ACTIONS(2263), + [aux_sym_cmd_identifier_token2] = ACTIONS(2263), + [aux_sym_cmd_identifier_token3] = ACTIONS(2263), + [aux_sym_cmd_identifier_token4] = ACTIONS(2263), + [aux_sym_cmd_identifier_token5] = ACTIONS(2263), + [aux_sym_cmd_identifier_token6] = ACTIONS(2263), + [aux_sym_cmd_identifier_token7] = ACTIONS(2263), + [aux_sym_cmd_identifier_token8] = ACTIONS(2263), + [aux_sym_cmd_identifier_token9] = ACTIONS(2263), + [aux_sym_cmd_identifier_token10] = ACTIONS(2263), + [aux_sym_cmd_identifier_token11] = ACTIONS(2263), + [aux_sym_cmd_identifier_token12] = ACTIONS(2263), + [aux_sym_cmd_identifier_token13] = ACTIONS(2263), + [aux_sym_cmd_identifier_token14] = ACTIONS(2263), + [aux_sym_cmd_identifier_token15] = ACTIONS(2263), + [aux_sym_cmd_identifier_token16] = ACTIONS(2263), + [aux_sym_cmd_identifier_token17] = ACTIONS(2263), + [aux_sym_cmd_identifier_token18] = ACTIONS(2263), + [aux_sym_cmd_identifier_token19] = ACTIONS(2263), + [aux_sym_cmd_identifier_token20] = ACTIONS(2263), + [aux_sym_cmd_identifier_token21] = ACTIONS(2263), + [aux_sym_cmd_identifier_token22] = ACTIONS(2263), + [aux_sym_cmd_identifier_token23] = ACTIONS(2263), + [aux_sym_cmd_identifier_token24] = ACTIONS(2263), + [aux_sym_cmd_identifier_token25] = ACTIONS(2263), + [aux_sym_cmd_identifier_token26] = ACTIONS(2263), + [aux_sym_cmd_identifier_token27] = ACTIONS(2263), + [aux_sym_cmd_identifier_token28] = ACTIONS(2263), + [aux_sym_cmd_identifier_token29] = ACTIONS(2263), + [aux_sym_cmd_identifier_token30] = ACTIONS(2263), + [aux_sym_cmd_identifier_token31] = ACTIONS(2263), + [aux_sym_cmd_identifier_token32] = ACTIONS(2263), + [aux_sym_cmd_identifier_token33] = ACTIONS(2263), + [aux_sym_cmd_identifier_token34] = ACTIONS(2263), + [aux_sym_cmd_identifier_token35] = ACTIONS(2263), + [aux_sym_cmd_identifier_token36] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_null] = ACTIONS(2265), + [aux_sym_cmd_identifier_token38] = ACTIONS(2263), + [aux_sym_cmd_identifier_token39] = ACTIONS(2265), + [aux_sym_cmd_identifier_token40] = ACTIONS(2265), + [anon_sym_def] = ACTIONS(2263), + [anon_sym_export_DASHenv] = ACTIONS(2263), + [anon_sym_extern] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_use] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2265), + [anon_sym_error] = ACTIONS(2263), + [anon_sym_list] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(2263), + [anon_sym_loop] = ACTIONS(2263), + [anon_sym_make] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_else] = ACTIONS(2263), + [anon_sym_match] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_catch] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_source] = ACTIONS(2263), + [anon_sym_source_DASHenv] = ACTIONS(2263), + [anon_sym_register] = ACTIONS(2263), + [anon_sym_hide] = ACTIONS(2263), + [anon_sym_hide_DASHenv] = ACTIONS(2263), + [anon_sym_overlay] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_as] = ACTIONS(2263), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2265), + [aux_sym__val_number_decimal_token1] = ACTIONS(2263), + [aux_sym__val_number_decimal_token2] = ACTIONS(2265), + [aux_sym__val_number_decimal_token3] = ACTIONS(2265), + [aux_sym__val_number_decimal_token4] = ACTIONS(2265), + [aux_sym__val_number_token1] = ACTIONS(2265), + [aux_sym__val_number_token2] = ACTIONS(2265), + [aux_sym__val_number_token3] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2265), + [sym__str_single_quotes] = ACTIONS(2265), + [sym__str_back_ticks] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(247), }, [647] = { [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(1816), - [anon_sym_alias] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_let_DASHenv] = ACTIONS(1816), - [anon_sym_mut] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [aux_sym_cmd_identifier_token1] = ACTIONS(1816), - [aux_sym_cmd_identifier_token2] = ACTIONS(1816), - [aux_sym_cmd_identifier_token3] = ACTIONS(1816), - [aux_sym_cmd_identifier_token4] = ACTIONS(1816), - [aux_sym_cmd_identifier_token5] = ACTIONS(1816), - [aux_sym_cmd_identifier_token6] = ACTIONS(1816), - [aux_sym_cmd_identifier_token7] = ACTIONS(1816), - [aux_sym_cmd_identifier_token8] = ACTIONS(1816), - [aux_sym_cmd_identifier_token9] = ACTIONS(1816), - [aux_sym_cmd_identifier_token10] = ACTIONS(1816), - [aux_sym_cmd_identifier_token11] = ACTIONS(1816), - [aux_sym_cmd_identifier_token12] = ACTIONS(1816), - [aux_sym_cmd_identifier_token13] = ACTIONS(1816), - [aux_sym_cmd_identifier_token14] = ACTIONS(1816), - [aux_sym_cmd_identifier_token15] = ACTIONS(1816), - [aux_sym_cmd_identifier_token16] = ACTIONS(1816), - [aux_sym_cmd_identifier_token17] = ACTIONS(1816), - [aux_sym_cmd_identifier_token18] = ACTIONS(1816), - [aux_sym_cmd_identifier_token19] = ACTIONS(1816), - [aux_sym_cmd_identifier_token20] = ACTIONS(1816), - [aux_sym_cmd_identifier_token21] = ACTIONS(1816), - [aux_sym_cmd_identifier_token22] = ACTIONS(1816), - [aux_sym_cmd_identifier_token23] = ACTIONS(1816), - [aux_sym_cmd_identifier_token24] = ACTIONS(1816), - [aux_sym_cmd_identifier_token25] = ACTIONS(1816), - [aux_sym_cmd_identifier_token26] = ACTIONS(1816), - [aux_sym_cmd_identifier_token27] = ACTIONS(1816), - [aux_sym_cmd_identifier_token28] = ACTIONS(1816), - [aux_sym_cmd_identifier_token29] = ACTIONS(1816), - [aux_sym_cmd_identifier_token30] = ACTIONS(1816), - [aux_sym_cmd_identifier_token31] = ACTIONS(1816), - [aux_sym_cmd_identifier_token32] = ACTIONS(1816), - [aux_sym_cmd_identifier_token33] = ACTIONS(1816), - [aux_sym_cmd_identifier_token34] = ACTIONS(1816), - [aux_sym_cmd_identifier_token35] = ACTIONS(1816), - [aux_sym_cmd_identifier_token36] = ACTIONS(1816), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1818), - [aux_sym_cmd_identifier_token38] = ACTIONS(1816), - [aux_sym_cmd_identifier_token39] = ACTIONS(1818), - [aux_sym_cmd_identifier_token40] = ACTIONS(1818), - [anon_sym_def] = ACTIONS(1816), - [anon_sym_export_DASHenv] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_module] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_error] = ACTIONS(1816), - [anon_sym_list] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_make] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_do] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_catch] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_source] = ACTIONS(1816), - [anon_sym_source_DASHenv] = ACTIONS(1816), - [anon_sym_register] = ACTIONS(1816), - [anon_sym_hide] = ACTIONS(1816), - [anon_sym_hide_DASHenv] = ACTIONS(1816), - [anon_sym_overlay] = ACTIONS(1816), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1818), - [aux_sym__val_number_decimal_token1] = ACTIONS(1816), - [aux_sym__val_number_decimal_token2] = ACTIONS(1818), - [anon_sym_DOT2] = ACTIONS(1816), - [aux_sym__val_number_decimal_token3] = ACTIONS(1818), - [aux_sym__val_number_token1] = ACTIONS(1818), - [aux_sym__val_number_token2] = ACTIONS(1818), - [aux_sym__val_number_token3] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [sym__str_single_quotes] = ACTIONS(1818), - [sym__str_back_ticks] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1951), + [aux_sym_cmd_identifier_token40] = ACTIONS(1951), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1951), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_list] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1951), + [aux_sym__val_number_decimal_token3] = ACTIONS(1951), + [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__val_number_token1] = ACTIONS(1951), + [aux_sym__val_number_token2] = ACTIONS(1951), + [aux_sym__val_number_token3] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(247), }, [648] = { [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [aux_sym_cmd_identifier_token1] = ACTIONS(1608), - [aux_sym_cmd_identifier_token2] = ACTIONS(1608), - [aux_sym_cmd_identifier_token3] = ACTIONS(1608), - [aux_sym_cmd_identifier_token4] = ACTIONS(1608), - [aux_sym_cmd_identifier_token5] = ACTIONS(1608), - [aux_sym_cmd_identifier_token6] = ACTIONS(1608), - [aux_sym_cmd_identifier_token7] = ACTIONS(1608), - [aux_sym_cmd_identifier_token8] = ACTIONS(1608), - [aux_sym_cmd_identifier_token9] = ACTIONS(1608), - [aux_sym_cmd_identifier_token10] = ACTIONS(1608), - [aux_sym_cmd_identifier_token11] = ACTIONS(1608), - [aux_sym_cmd_identifier_token12] = ACTIONS(1608), - [aux_sym_cmd_identifier_token13] = ACTIONS(1608), - [aux_sym_cmd_identifier_token14] = ACTIONS(1608), - [aux_sym_cmd_identifier_token15] = ACTIONS(1608), - [aux_sym_cmd_identifier_token16] = ACTIONS(1608), - [aux_sym_cmd_identifier_token17] = ACTIONS(1608), - [aux_sym_cmd_identifier_token18] = ACTIONS(1608), - [aux_sym_cmd_identifier_token19] = ACTIONS(1608), - [aux_sym_cmd_identifier_token20] = ACTIONS(1608), - [aux_sym_cmd_identifier_token21] = ACTIONS(1608), - [aux_sym_cmd_identifier_token22] = ACTIONS(1608), - [aux_sym_cmd_identifier_token23] = ACTIONS(1608), - [aux_sym_cmd_identifier_token24] = ACTIONS(1608), - [aux_sym_cmd_identifier_token25] = ACTIONS(1608), - [aux_sym_cmd_identifier_token26] = ACTIONS(1608), - [aux_sym_cmd_identifier_token27] = ACTIONS(1608), - [aux_sym_cmd_identifier_token28] = ACTIONS(1608), - [aux_sym_cmd_identifier_token29] = ACTIONS(1608), - [aux_sym_cmd_identifier_token30] = ACTIONS(1608), - [aux_sym_cmd_identifier_token31] = ACTIONS(1608), - [aux_sym_cmd_identifier_token32] = ACTIONS(1608), - [aux_sym_cmd_identifier_token33] = ACTIONS(1608), - [aux_sym_cmd_identifier_token34] = ACTIONS(1608), - [aux_sym_cmd_identifier_token35] = ACTIONS(1608), - [aux_sym_cmd_identifier_token36] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1608), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1610), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1610), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1610), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_alias] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_let_DASHenv] = ACTIONS(1782), + [anon_sym_mut] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [aux_sym_cmd_identifier_token1] = ACTIONS(1782), + [aux_sym_cmd_identifier_token2] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1782), + [aux_sym_cmd_identifier_token4] = ACTIONS(1782), + [aux_sym_cmd_identifier_token5] = ACTIONS(1782), + [aux_sym_cmd_identifier_token6] = ACTIONS(1782), + [aux_sym_cmd_identifier_token7] = ACTIONS(1782), + [aux_sym_cmd_identifier_token8] = ACTIONS(1782), + [aux_sym_cmd_identifier_token9] = ACTIONS(1782), + [aux_sym_cmd_identifier_token10] = ACTIONS(1782), + [aux_sym_cmd_identifier_token11] = ACTIONS(1782), + [aux_sym_cmd_identifier_token12] = ACTIONS(1782), + [aux_sym_cmd_identifier_token13] = ACTIONS(1782), + [aux_sym_cmd_identifier_token14] = ACTIONS(1782), + [aux_sym_cmd_identifier_token15] = ACTIONS(1782), + [aux_sym_cmd_identifier_token16] = ACTIONS(1782), + [aux_sym_cmd_identifier_token17] = ACTIONS(1782), + [aux_sym_cmd_identifier_token18] = ACTIONS(1782), + [aux_sym_cmd_identifier_token19] = ACTIONS(1782), + [aux_sym_cmd_identifier_token20] = ACTIONS(1782), + [aux_sym_cmd_identifier_token21] = ACTIONS(1782), + [aux_sym_cmd_identifier_token22] = ACTIONS(1782), + [aux_sym_cmd_identifier_token23] = ACTIONS(1782), + [aux_sym_cmd_identifier_token24] = ACTIONS(1782), + [aux_sym_cmd_identifier_token25] = ACTIONS(1782), + [aux_sym_cmd_identifier_token26] = ACTIONS(1782), + [aux_sym_cmd_identifier_token27] = ACTIONS(1782), + [aux_sym_cmd_identifier_token28] = ACTIONS(1782), + [aux_sym_cmd_identifier_token29] = ACTIONS(1782), + [aux_sym_cmd_identifier_token30] = ACTIONS(1782), + [aux_sym_cmd_identifier_token31] = ACTIONS(1782), + [aux_sym_cmd_identifier_token32] = ACTIONS(1782), + [aux_sym_cmd_identifier_token33] = ACTIONS(1782), + [aux_sym_cmd_identifier_token34] = ACTIONS(1782), + [aux_sym_cmd_identifier_token35] = ACTIONS(1782), + [aux_sym_cmd_identifier_token36] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [anon_sym_null] = ACTIONS(1784), + [aux_sym_cmd_identifier_token38] = ACTIONS(1782), + [aux_sym_cmd_identifier_token39] = ACTIONS(1784), + [aux_sym_cmd_identifier_token40] = ACTIONS(1784), + [anon_sym_def] = ACTIONS(1782), + [anon_sym_export_DASHenv] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_error] = ACTIONS(1782), + [anon_sym_list] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_make] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_catch] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_source] = ACTIONS(1782), + [anon_sym_source_DASHenv] = ACTIONS(1782), + [anon_sym_register] = ACTIONS(1782), + [anon_sym_hide] = ACTIONS(1782), + [anon_sym_hide_DASHenv] = ACTIONS(1782), + [anon_sym_overlay] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1784), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(1784), + [aux_sym__val_number_token2] = ACTIONS(1784), + [aux_sym__val_number_token3] = ACTIONS(1784), + [anon_sym_DQUOTE] = ACTIONS(1784), + [sym__str_single_quotes] = ACTIONS(1784), + [sym__str_back_ticks] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(247), }, [649] = { [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_alias] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_let_DASHenv] = ACTIONS(2357), - [anon_sym_mut] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [aux_sym_cmd_identifier_token1] = ACTIONS(2357), - [aux_sym_cmd_identifier_token2] = ACTIONS(2357), - [aux_sym_cmd_identifier_token3] = ACTIONS(2357), - [aux_sym_cmd_identifier_token4] = ACTIONS(2357), - [aux_sym_cmd_identifier_token5] = ACTIONS(2357), - [aux_sym_cmd_identifier_token6] = ACTIONS(2357), - [aux_sym_cmd_identifier_token7] = ACTIONS(2357), - [aux_sym_cmd_identifier_token8] = ACTIONS(2357), - [aux_sym_cmd_identifier_token9] = ACTIONS(2357), - [aux_sym_cmd_identifier_token10] = ACTIONS(2357), - [aux_sym_cmd_identifier_token11] = ACTIONS(2357), - [aux_sym_cmd_identifier_token12] = ACTIONS(2357), - [aux_sym_cmd_identifier_token13] = ACTIONS(2357), - [aux_sym_cmd_identifier_token14] = ACTIONS(2357), - [aux_sym_cmd_identifier_token15] = ACTIONS(2357), - [aux_sym_cmd_identifier_token16] = ACTIONS(2357), - [aux_sym_cmd_identifier_token17] = ACTIONS(2357), - [aux_sym_cmd_identifier_token18] = ACTIONS(2357), - [aux_sym_cmd_identifier_token19] = ACTIONS(2357), - [aux_sym_cmd_identifier_token20] = ACTIONS(2357), - [aux_sym_cmd_identifier_token21] = ACTIONS(2357), - [aux_sym_cmd_identifier_token22] = ACTIONS(2357), - [aux_sym_cmd_identifier_token23] = ACTIONS(2357), - [aux_sym_cmd_identifier_token24] = ACTIONS(2357), - [aux_sym_cmd_identifier_token25] = ACTIONS(2357), - [aux_sym_cmd_identifier_token26] = ACTIONS(2357), - [aux_sym_cmd_identifier_token27] = ACTIONS(2357), - [aux_sym_cmd_identifier_token28] = ACTIONS(2357), - [aux_sym_cmd_identifier_token29] = ACTIONS(2357), - [aux_sym_cmd_identifier_token30] = ACTIONS(2357), - [aux_sym_cmd_identifier_token31] = ACTIONS(2357), - [aux_sym_cmd_identifier_token32] = ACTIONS(2357), - [aux_sym_cmd_identifier_token33] = ACTIONS(2357), - [aux_sym_cmd_identifier_token34] = ACTIONS(2357), - [aux_sym_cmd_identifier_token35] = ACTIONS(2357), - [aux_sym_cmd_identifier_token36] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [anon_sym_null] = ACTIONS(2359), - [aux_sym_cmd_identifier_token38] = ACTIONS(2357), - [aux_sym_cmd_identifier_token39] = ACTIONS(2359), - [aux_sym_cmd_identifier_token40] = ACTIONS(2359), - [anon_sym_def] = ACTIONS(2357), - [anon_sym_export_DASHenv] = ACTIONS(2357), - [anon_sym_extern] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_error] = ACTIONS(2357), - [anon_sym_list] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2357), - [anon_sym_loop] = ACTIONS(2357), - [anon_sym_make] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_match] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_catch] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_source] = ACTIONS(2357), - [anon_sym_source_DASHenv] = ACTIONS(2357), - [anon_sym_register] = ACTIONS(2357), - [anon_sym_hide] = ACTIONS(2357), - [anon_sym_hide_DASHenv] = ACTIONS(2357), - [anon_sym_overlay] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_as] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2357), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [anon_sym_DOT2] = ACTIONS(2357), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2359), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2367), + [anon_sym_alias] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_let_DASHenv] = ACTIONS(2367), + [anon_sym_mut] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [aux_sym_cmd_identifier_token1] = ACTIONS(2367), + [aux_sym_cmd_identifier_token2] = ACTIONS(2367), + [aux_sym_cmd_identifier_token3] = ACTIONS(2367), + [aux_sym_cmd_identifier_token4] = ACTIONS(2367), + [aux_sym_cmd_identifier_token5] = ACTIONS(2367), + [aux_sym_cmd_identifier_token6] = ACTIONS(2367), + [aux_sym_cmd_identifier_token7] = ACTIONS(2367), + [aux_sym_cmd_identifier_token8] = ACTIONS(2367), + [aux_sym_cmd_identifier_token9] = ACTIONS(2367), + [aux_sym_cmd_identifier_token10] = ACTIONS(2367), + [aux_sym_cmd_identifier_token11] = ACTIONS(2367), + [aux_sym_cmd_identifier_token12] = ACTIONS(2367), + [aux_sym_cmd_identifier_token13] = ACTIONS(2367), + [aux_sym_cmd_identifier_token14] = ACTIONS(2367), + [aux_sym_cmd_identifier_token15] = ACTIONS(2367), + [aux_sym_cmd_identifier_token16] = ACTIONS(2367), + [aux_sym_cmd_identifier_token17] = ACTIONS(2367), + [aux_sym_cmd_identifier_token18] = ACTIONS(2367), + [aux_sym_cmd_identifier_token19] = ACTIONS(2367), + [aux_sym_cmd_identifier_token20] = ACTIONS(2367), + [aux_sym_cmd_identifier_token21] = ACTIONS(2367), + [aux_sym_cmd_identifier_token22] = ACTIONS(2367), + [aux_sym_cmd_identifier_token23] = ACTIONS(2367), + [aux_sym_cmd_identifier_token24] = ACTIONS(2367), + [aux_sym_cmd_identifier_token25] = ACTIONS(2367), + [aux_sym_cmd_identifier_token26] = ACTIONS(2367), + [aux_sym_cmd_identifier_token27] = ACTIONS(2367), + [aux_sym_cmd_identifier_token28] = ACTIONS(2367), + [aux_sym_cmd_identifier_token29] = ACTIONS(2367), + [aux_sym_cmd_identifier_token30] = ACTIONS(2367), + [aux_sym_cmd_identifier_token31] = ACTIONS(2367), + [aux_sym_cmd_identifier_token32] = ACTIONS(2367), + [aux_sym_cmd_identifier_token33] = ACTIONS(2367), + [aux_sym_cmd_identifier_token34] = ACTIONS(2367), + [aux_sym_cmd_identifier_token35] = ACTIONS(2367), + [aux_sym_cmd_identifier_token36] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [anon_sym_null] = ACTIONS(2369), + [aux_sym_cmd_identifier_token38] = ACTIONS(2367), + [aux_sym_cmd_identifier_token39] = ACTIONS(2369), + [aux_sym_cmd_identifier_token40] = ACTIONS(2369), + [anon_sym_def] = ACTIONS(2367), + [anon_sym_export_DASHenv] = ACTIONS(2367), + [anon_sym_extern] = ACTIONS(2367), + [anon_sym_module] = ACTIONS(2367), + [anon_sym_use] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_error] = ACTIONS(2367), + [anon_sym_list] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_in] = ACTIONS(2367), + [anon_sym_loop] = ACTIONS(2367), + [anon_sym_make] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_do] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_else] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2367), + [anon_sym_catch] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_source] = ACTIONS(2367), + [anon_sym_source_DASHenv] = ACTIONS(2367), + [anon_sym_register] = ACTIONS(2367), + [anon_sym_hide] = ACTIONS(2367), + [anon_sym_hide_DASHenv] = ACTIONS(2367), + [anon_sym_overlay] = ACTIONS(2367), + [anon_sym_new] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), + [aux_sym__val_number_decimal_token1] = ACTIONS(2367), + [aux_sym__val_number_decimal_token2] = ACTIONS(2369), + [aux_sym__val_number_decimal_token3] = ACTIONS(2369), + [aux_sym__val_number_decimal_token4] = ACTIONS(2369), + [aux_sym__val_number_token1] = ACTIONS(2369), + [aux_sym__val_number_token2] = ACTIONS(2369), + [aux_sym__val_number_token3] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(2369), + [sym__str_single_quotes] = ACTIONS(2369), + [sym__str_back_ticks] = ACTIONS(2369), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(247), }, [650] = { [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(2277), - [anon_sym_alias] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_let_DASHenv] = ACTIONS(2277), - [anon_sym_mut] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [aux_sym_cmd_identifier_token1] = ACTIONS(2277), - [aux_sym_cmd_identifier_token2] = ACTIONS(2277), - [aux_sym_cmd_identifier_token3] = ACTIONS(2277), - [aux_sym_cmd_identifier_token4] = ACTIONS(2277), - [aux_sym_cmd_identifier_token5] = ACTIONS(2277), - [aux_sym_cmd_identifier_token6] = ACTIONS(2277), - [aux_sym_cmd_identifier_token7] = ACTIONS(2277), - [aux_sym_cmd_identifier_token8] = ACTIONS(2277), - [aux_sym_cmd_identifier_token9] = ACTIONS(2277), - [aux_sym_cmd_identifier_token10] = ACTIONS(2277), - [aux_sym_cmd_identifier_token11] = ACTIONS(2277), - [aux_sym_cmd_identifier_token12] = ACTIONS(2277), - [aux_sym_cmd_identifier_token13] = ACTIONS(2277), - [aux_sym_cmd_identifier_token14] = ACTIONS(2277), - [aux_sym_cmd_identifier_token15] = ACTIONS(2277), - [aux_sym_cmd_identifier_token16] = ACTIONS(2277), - [aux_sym_cmd_identifier_token17] = ACTIONS(2277), - [aux_sym_cmd_identifier_token18] = ACTIONS(2277), - [aux_sym_cmd_identifier_token19] = ACTIONS(2277), - [aux_sym_cmd_identifier_token20] = ACTIONS(2277), - [aux_sym_cmd_identifier_token21] = ACTIONS(2277), - [aux_sym_cmd_identifier_token22] = ACTIONS(2277), - [aux_sym_cmd_identifier_token23] = ACTIONS(2277), - [aux_sym_cmd_identifier_token24] = ACTIONS(2277), - [aux_sym_cmd_identifier_token25] = ACTIONS(2277), - [aux_sym_cmd_identifier_token26] = ACTIONS(2277), - [aux_sym_cmd_identifier_token27] = ACTIONS(2277), - [aux_sym_cmd_identifier_token28] = ACTIONS(2277), - [aux_sym_cmd_identifier_token29] = ACTIONS(2277), - [aux_sym_cmd_identifier_token30] = ACTIONS(2277), - [aux_sym_cmd_identifier_token31] = ACTIONS(2277), - [aux_sym_cmd_identifier_token32] = ACTIONS(2277), - [aux_sym_cmd_identifier_token33] = ACTIONS(2277), - [aux_sym_cmd_identifier_token34] = ACTIONS(2277), - [aux_sym_cmd_identifier_token35] = ACTIONS(2277), - [aux_sym_cmd_identifier_token36] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2279), - [anon_sym_false] = ACTIONS(2279), - [anon_sym_null] = ACTIONS(2279), - [aux_sym_cmd_identifier_token38] = ACTIONS(2277), - [aux_sym_cmd_identifier_token39] = ACTIONS(2279), - [aux_sym_cmd_identifier_token40] = ACTIONS(2279), - [anon_sym_def] = ACTIONS(2277), - [anon_sym_export_DASHenv] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_module] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2279), - [anon_sym_error] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_in] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_make] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_catch] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_source] = ACTIONS(2277), - [anon_sym_source_DASHenv] = ACTIONS(2277), - [anon_sym_register] = ACTIONS(2277), - [anon_sym_hide] = ACTIONS(2277), - [anon_sym_hide_DASHenv] = ACTIONS(2277), - [anon_sym_overlay] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2279), - [aux_sym__val_number_decimal_token1] = ACTIONS(2277), - [aux_sym__val_number_decimal_token2] = ACTIONS(2279), - [anon_sym_DOT2] = ACTIONS(2277), - [aux_sym__val_number_decimal_token3] = ACTIONS(2279), - [aux_sym__val_number_token1] = ACTIONS(2279), - [aux_sym__val_number_token2] = ACTIONS(2279), - [aux_sym__val_number_token3] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(2279), - [sym__str_single_quotes] = ACTIONS(2279), - [sym__str_back_ticks] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1899), + [anon_sym_alias] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_let_DASHenv] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [aux_sym_cmd_identifier_token1] = ACTIONS(1899), + [aux_sym_cmd_identifier_token2] = ACTIONS(1899), + [aux_sym_cmd_identifier_token3] = ACTIONS(1899), + [aux_sym_cmd_identifier_token4] = ACTIONS(1899), + [aux_sym_cmd_identifier_token5] = ACTIONS(1899), + [aux_sym_cmd_identifier_token6] = ACTIONS(1899), + [aux_sym_cmd_identifier_token7] = ACTIONS(1899), + [aux_sym_cmd_identifier_token8] = ACTIONS(1899), + [aux_sym_cmd_identifier_token9] = ACTIONS(1899), + [aux_sym_cmd_identifier_token10] = ACTIONS(1899), + [aux_sym_cmd_identifier_token11] = ACTIONS(1899), + [aux_sym_cmd_identifier_token12] = ACTIONS(1899), + [aux_sym_cmd_identifier_token13] = ACTIONS(1899), + [aux_sym_cmd_identifier_token14] = ACTIONS(1899), + [aux_sym_cmd_identifier_token15] = ACTIONS(1899), + [aux_sym_cmd_identifier_token16] = ACTIONS(1899), + [aux_sym_cmd_identifier_token17] = ACTIONS(1899), + [aux_sym_cmd_identifier_token18] = ACTIONS(1899), + [aux_sym_cmd_identifier_token19] = ACTIONS(1899), + [aux_sym_cmd_identifier_token20] = ACTIONS(1899), + [aux_sym_cmd_identifier_token21] = ACTIONS(1899), + [aux_sym_cmd_identifier_token22] = ACTIONS(1899), + [aux_sym_cmd_identifier_token23] = ACTIONS(1899), + [aux_sym_cmd_identifier_token24] = ACTIONS(1899), + [aux_sym_cmd_identifier_token25] = ACTIONS(1899), + [aux_sym_cmd_identifier_token26] = ACTIONS(1899), + [aux_sym_cmd_identifier_token27] = ACTIONS(1899), + [aux_sym_cmd_identifier_token28] = ACTIONS(1899), + [aux_sym_cmd_identifier_token29] = ACTIONS(1899), + [aux_sym_cmd_identifier_token30] = ACTIONS(1899), + [aux_sym_cmd_identifier_token31] = ACTIONS(1899), + [aux_sym_cmd_identifier_token32] = ACTIONS(1899), + [aux_sym_cmd_identifier_token33] = ACTIONS(1899), + [aux_sym_cmd_identifier_token34] = ACTIONS(1899), + [aux_sym_cmd_identifier_token35] = ACTIONS(1899), + [aux_sym_cmd_identifier_token36] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1899), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_export_DASHenv] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_module] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_error] = ACTIONS(1899), + [anon_sym_list] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_make] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_source] = ACTIONS(1899), + [anon_sym_source_DASHenv] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_hide] = ACTIONS(1899), + [anon_sym_hide_DASHenv] = ACTIONS(1899), + [anon_sym_overlay] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(247), }, [651] = { [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(1820), - [anon_sym_alias] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_let_DASHenv] = ACTIONS(1820), - [anon_sym_mut] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [aux_sym_cmd_identifier_token1] = ACTIONS(1820), - [aux_sym_cmd_identifier_token2] = ACTIONS(1820), - [aux_sym_cmd_identifier_token3] = ACTIONS(1820), - [aux_sym_cmd_identifier_token4] = ACTIONS(1820), - [aux_sym_cmd_identifier_token5] = ACTIONS(1820), - [aux_sym_cmd_identifier_token6] = ACTIONS(1820), - [aux_sym_cmd_identifier_token7] = ACTIONS(1820), - [aux_sym_cmd_identifier_token8] = ACTIONS(1820), - [aux_sym_cmd_identifier_token9] = ACTIONS(1820), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [aux_sym_cmd_identifier_token12] = ACTIONS(1820), - [aux_sym_cmd_identifier_token13] = ACTIONS(1820), - [aux_sym_cmd_identifier_token14] = ACTIONS(1820), - [aux_sym_cmd_identifier_token15] = ACTIONS(1820), - [aux_sym_cmd_identifier_token16] = ACTIONS(1820), - [aux_sym_cmd_identifier_token17] = ACTIONS(1820), - [aux_sym_cmd_identifier_token18] = ACTIONS(1820), - [aux_sym_cmd_identifier_token19] = ACTIONS(1820), - [aux_sym_cmd_identifier_token20] = ACTIONS(1820), - [aux_sym_cmd_identifier_token21] = ACTIONS(1820), - [aux_sym_cmd_identifier_token22] = ACTIONS(1820), - [aux_sym_cmd_identifier_token23] = ACTIONS(1820), - [aux_sym_cmd_identifier_token24] = ACTIONS(1820), - [aux_sym_cmd_identifier_token25] = ACTIONS(1820), - [aux_sym_cmd_identifier_token26] = ACTIONS(1820), - [aux_sym_cmd_identifier_token27] = ACTIONS(1820), - [aux_sym_cmd_identifier_token28] = ACTIONS(1820), - [aux_sym_cmd_identifier_token29] = ACTIONS(1820), - [aux_sym_cmd_identifier_token30] = ACTIONS(1820), - [aux_sym_cmd_identifier_token31] = ACTIONS(1820), - [aux_sym_cmd_identifier_token32] = ACTIONS(1820), - [aux_sym_cmd_identifier_token33] = ACTIONS(1820), - [aux_sym_cmd_identifier_token34] = ACTIONS(1820), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1822), - [aux_sym_cmd_identifier_token38] = ACTIONS(1820), - [aux_sym_cmd_identifier_token39] = ACTIONS(1822), - [aux_sym_cmd_identifier_token40] = ACTIONS(1822), - [anon_sym_def] = ACTIONS(1820), - [anon_sym_export_DASHenv] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_module] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_error] = ACTIONS(1820), - [anon_sym_list] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_make] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_do] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_else] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1820), - [anon_sym_catch] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_source] = ACTIONS(1820), - [anon_sym_source_DASHenv] = ACTIONS(1820), - [anon_sym_register] = ACTIONS(1820), - [anon_sym_hide] = ACTIONS(1820), - [anon_sym_hide_DASHenv] = ACTIONS(1820), - [anon_sym_overlay] = ACTIONS(1820), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_as] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1822), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [anon_sym_DOT2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1822), - [aux_sym__val_number_token1] = ACTIONS(1822), - [aux_sym__val_number_token2] = ACTIONS(1822), - [aux_sym__val_number_token3] = ACTIONS(1822), - [anon_sym_DQUOTE] = ACTIONS(1822), - [sym__str_single_quotes] = ACTIONS(1822), - [sym__str_back_ticks] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_alias] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_let_DASHenv] = ACTIONS(1835), + [anon_sym_mut] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [aux_sym_cmd_identifier_token1] = ACTIONS(1835), + [aux_sym_cmd_identifier_token2] = ACTIONS(1835), + [aux_sym_cmd_identifier_token3] = ACTIONS(1835), + [aux_sym_cmd_identifier_token4] = ACTIONS(1835), + [aux_sym_cmd_identifier_token5] = ACTIONS(1835), + [aux_sym_cmd_identifier_token6] = ACTIONS(1835), + [aux_sym_cmd_identifier_token7] = ACTIONS(1835), + [aux_sym_cmd_identifier_token8] = ACTIONS(1835), + [aux_sym_cmd_identifier_token9] = ACTIONS(1835), + [aux_sym_cmd_identifier_token10] = ACTIONS(1835), + [aux_sym_cmd_identifier_token11] = ACTIONS(1835), + [aux_sym_cmd_identifier_token12] = ACTIONS(1835), + [aux_sym_cmd_identifier_token13] = ACTIONS(1835), + [aux_sym_cmd_identifier_token14] = ACTIONS(1835), + [aux_sym_cmd_identifier_token15] = ACTIONS(1835), + [aux_sym_cmd_identifier_token16] = ACTIONS(1835), + [aux_sym_cmd_identifier_token17] = ACTIONS(1835), + [aux_sym_cmd_identifier_token18] = ACTIONS(1835), + [aux_sym_cmd_identifier_token19] = ACTIONS(1835), + [aux_sym_cmd_identifier_token20] = ACTIONS(1835), + [aux_sym_cmd_identifier_token21] = ACTIONS(1835), + [aux_sym_cmd_identifier_token22] = ACTIONS(1835), + [aux_sym_cmd_identifier_token23] = ACTIONS(1835), + [aux_sym_cmd_identifier_token24] = ACTIONS(1835), + [aux_sym_cmd_identifier_token25] = ACTIONS(1835), + [aux_sym_cmd_identifier_token26] = ACTIONS(1835), + [aux_sym_cmd_identifier_token27] = ACTIONS(1835), + [aux_sym_cmd_identifier_token28] = ACTIONS(1835), + [aux_sym_cmd_identifier_token29] = ACTIONS(1835), + [aux_sym_cmd_identifier_token30] = ACTIONS(1835), + [aux_sym_cmd_identifier_token31] = ACTIONS(1835), + [aux_sym_cmd_identifier_token32] = ACTIONS(1835), + [aux_sym_cmd_identifier_token33] = ACTIONS(1835), + [aux_sym_cmd_identifier_token34] = ACTIONS(1835), + [aux_sym_cmd_identifier_token35] = ACTIONS(1835), + [aux_sym_cmd_identifier_token36] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_null] = ACTIONS(1837), + [aux_sym_cmd_identifier_token38] = ACTIONS(1835), + [aux_sym_cmd_identifier_token39] = ACTIONS(1837), + [aux_sym_cmd_identifier_token40] = ACTIONS(1837), + [anon_sym_def] = ACTIONS(1835), + [anon_sym_export_DASHenv] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1837), + [anon_sym_error] = ACTIONS(1835), + [anon_sym_list] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_in] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_make] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_catch] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_source] = ACTIONS(1835), + [anon_sym_source_DASHenv] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1835), + [anon_sym_hide] = ACTIONS(1835), + [anon_sym_hide_DASHenv] = ACTIONS(1835), + [anon_sym_overlay] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_as] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(247), }, [652] = { [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(2361), - [anon_sym_alias] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_let_DASHenv] = ACTIONS(2361), - [anon_sym_mut] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [aux_sym_cmd_identifier_token1] = ACTIONS(2361), - [aux_sym_cmd_identifier_token2] = ACTIONS(2361), - [aux_sym_cmd_identifier_token3] = ACTIONS(2361), - [aux_sym_cmd_identifier_token4] = ACTIONS(2361), - [aux_sym_cmd_identifier_token5] = ACTIONS(2361), - [aux_sym_cmd_identifier_token6] = ACTIONS(2361), - [aux_sym_cmd_identifier_token7] = ACTIONS(2361), - [aux_sym_cmd_identifier_token8] = ACTIONS(2361), - [aux_sym_cmd_identifier_token9] = ACTIONS(2361), - [aux_sym_cmd_identifier_token10] = ACTIONS(2361), - [aux_sym_cmd_identifier_token11] = ACTIONS(2361), - [aux_sym_cmd_identifier_token12] = ACTIONS(2361), - [aux_sym_cmd_identifier_token13] = ACTIONS(2361), - [aux_sym_cmd_identifier_token14] = ACTIONS(2361), - [aux_sym_cmd_identifier_token15] = ACTIONS(2361), - [aux_sym_cmd_identifier_token16] = ACTIONS(2361), - [aux_sym_cmd_identifier_token17] = ACTIONS(2361), - [aux_sym_cmd_identifier_token18] = ACTIONS(2361), - [aux_sym_cmd_identifier_token19] = ACTIONS(2361), - [aux_sym_cmd_identifier_token20] = ACTIONS(2361), - [aux_sym_cmd_identifier_token21] = ACTIONS(2361), - [aux_sym_cmd_identifier_token22] = ACTIONS(2361), - [aux_sym_cmd_identifier_token23] = ACTIONS(2361), - [aux_sym_cmd_identifier_token24] = ACTIONS(2361), - [aux_sym_cmd_identifier_token25] = ACTIONS(2361), - [aux_sym_cmd_identifier_token26] = ACTIONS(2361), - [aux_sym_cmd_identifier_token27] = ACTIONS(2361), - [aux_sym_cmd_identifier_token28] = ACTIONS(2361), - [aux_sym_cmd_identifier_token29] = ACTIONS(2361), - [aux_sym_cmd_identifier_token30] = ACTIONS(2361), - [aux_sym_cmd_identifier_token31] = ACTIONS(2361), - [aux_sym_cmd_identifier_token32] = ACTIONS(2361), - [aux_sym_cmd_identifier_token33] = ACTIONS(2361), - [aux_sym_cmd_identifier_token34] = ACTIONS(2361), - [aux_sym_cmd_identifier_token35] = ACTIONS(2361), - [aux_sym_cmd_identifier_token36] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2363), - [anon_sym_false] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2363), - [aux_sym_cmd_identifier_token38] = ACTIONS(2361), - [aux_sym_cmd_identifier_token39] = ACTIONS(2363), - [aux_sym_cmd_identifier_token40] = ACTIONS(2363), - [anon_sym_def] = ACTIONS(2361), - [anon_sym_export_DASHenv] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym_module] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2363), - [anon_sym_error] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_in] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_make] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_catch] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_source] = ACTIONS(2361), - [anon_sym_source_DASHenv] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_hide] = ACTIONS(2361), - [anon_sym_hide_DASHenv] = ACTIONS(2361), - [anon_sym_overlay] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_as] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2363), - [aux_sym__val_number_decimal_token1] = ACTIONS(2361), - [aux_sym__val_number_decimal_token2] = ACTIONS(2363), - [anon_sym_DOT2] = ACTIONS(2361), - [aux_sym__val_number_decimal_token3] = ACTIONS(2363), - [aux_sym__val_number_token1] = ACTIONS(2363), - [aux_sym__val_number_token2] = ACTIONS(2363), - [aux_sym__val_number_token3] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym__str_single_quotes] = ACTIONS(2363), - [sym__str_back_ticks] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2363), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2295), + [anon_sym_alias] = ACTIONS(2295), + [anon_sym_let] = ACTIONS(2295), + [anon_sym_let_DASHenv] = ACTIONS(2295), + [anon_sym_mut] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [aux_sym_cmd_identifier_token1] = ACTIONS(2295), + [aux_sym_cmd_identifier_token2] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2295), + [aux_sym_cmd_identifier_token4] = ACTIONS(2295), + [aux_sym_cmd_identifier_token5] = ACTIONS(2295), + [aux_sym_cmd_identifier_token6] = ACTIONS(2295), + [aux_sym_cmd_identifier_token7] = ACTIONS(2295), + [aux_sym_cmd_identifier_token8] = ACTIONS(2295), + [aux_sym_cmd_identifier_token9] = ACTIONS(2295), + [aux_sym_cmd_identifier_token10] = ACTIONS(2295), + [aux_sym_cmd_identifier_token11] = ACTIONS(2295), + [aux_sym_cmd_identifier_token12] = ACTIONS(2295), + [aux_sym_cmd_identifier_token13] = ACTIONS(2295), + [aux_sym_cmd_identifier_token14] = ACTIONS(2295), + [aux_sym_cmd_identifier_token15] = ACTIONS(2295), + [aux_sym_cmd_identifier_token16] = ACTIONS(2295), + [aux_sym_cmd_identifier_token17] = ACTIONS(2295), + [aux_sym_cmd_identifier_token18] = ACTIONS(2295), + [aux_sym_cmd_identifier_token19] = ACTIONS(2295), + [aux_sym_cmd_identifier_token20] = ACTIONS(2295), + [aux_sym_cmd_identifier_token21] = ACTIONS(2295), + [aux_sym_cmd_identifier_token22] = ACTIONS(2295), + [aux_sym_cmd_identifier_token23] = ACTIONS(2295), + [aux_sym_cmd_identifier_token24] = ACTIONS(2295), + [aux_sym_cmd_identifier_token25] = ACTIONS(2295), + [aux_sym_cmd_identifier_token26] = ACTIONS(2295), + [aux_sym_cmd_identifier_token27] = ACTIONS(2295), + [aux_sym_cmd_identifier_token28] = ACTIONS(2295), + [aux_sym_cmd_identifier_token29] = ACTIONS(2295), + [aux_sym_cmd_identifier_token30] = ACTIONS(2295), + [aux_sym_cmd_identifier_token31] = ACTIONS(2295), + [aux_sym_cmd_identifier_token32] = ACTIONS(2295), + [aux_sym_cmd_identifier_token33] = ACTIONS(2295), + [aux_sym_cmd_identifier_token34] = ACTIONS(2295), + [aux_sym_cmd_identifier_token35] = ACTIONS(2295), + [aux_sym_cmd_identifier_token36] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_null] = ACTIONS(2297), + [aux_sym_cmd_identifier_token38] = ACTIONS(2295), + [aux_sym_cmd_identifier_token39] = ACTIONS(2297), + [aux_sym_cmd_identifier_token40] = ACTIONS(2297), + [anon_sym_def] = ACTIONS(2295), + [anon_sym_export_DASHenv] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym_module] = ACTIONS(2295), + [anon_sym_use] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2297), + [anon_sym_error] = ACTIONS(2295), + [anon_sym_list] = ACTIONS(2295), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_in] = ACTIONS(2295), + [anon_sym_loop] = ACTIONS(2295), + [anon_sym_make] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [anon_sym_do] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_else] = ACTIONS(2295), + [anon_sym_match] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2295), + [anon_sym_catch] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_source] = ACTIONS(2295), + [anon_sym_source_DASHenv] = ACTIONS(2295), + [anon_sym_register] = ACTIONS(2295), + [anon_sym_hide] = ACTIONS(2295), + [anon_sym_hide_DASHenv] = ACTIONS(2295), + [anon_sym_overlay] = ACTIONS(2295), + [anon_sym_new] = ACTIONS(2295), + [anon_sym_as] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2297), + [aux_sym__val_number_decimal_token1] = ACTIONS(2295), + [aux_sym__val_number_decimal_token2] = ACTIONS(2297), + [aux_sym__val_number_decimal_token3] = ACTIONS(2297), + [aux_sym__val_number_decimal_token4] = ACTIONS(2297), + [aux_sym__val_number_token1] = ACTIONS(2297), + [aux_sym__val_number_token2] = ACTIONS(2297), + [aux_sym__val_number_token3] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym__str_single_quotes] = ACTIONS(2297), + [sym__str_back_ticks] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2295), + [anon_sym_POUND] = ACTIONS(247), }, [653] = { [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(2365), - [anon_sym_alias] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_DASHenv] = ACTIONS(2365), - [anon_sym_mut] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [aux_sym_cmd_identifier_token1] = ACTIONS(2365), - [aux_sym_cmd_identifier_token2] = ACTIONS(2365), - [aux_sym_cmd_identifier_token3] = ACTIONS(2365), - [aux_sym_cmd_identifier_token4] = ACTIONS(2365), - [aux_sym_cmd_identifier_token5] = ACTIONS(2365), - [aux_sym_cmd_identifier_token6] = ACTIONS(2365), - [aux_sym_cmd_identifier_token7] = ACTIONS(2365), - [aux_sym_cmd_identifier_token8] = ACTIONS(2365), - [aux_sym_cmd_identifier_token9] = ACTIONS(2365), - [aux_sym_cmd_identifier_token10] = ACTIONS(2365), - [aux_sym_cmd_identifier_token11] = ACTIONS(2365), - [aux_sym_cmd_identifier_token12] = ACTIONS(2365), - [aux_sym_cmd_identifier_token13] = ACTIONS(2365), - [aux_sym_cmd_identifier_token14] = ACTIONS(2365), - [aux_sym_cmd_identifier_token15] = ACTIONS(2365), - [aux_sym_cmd_identifier_token16] = ACTIONS(2365), - [aux_sym_cmd_identifier_token17] = ACTIONS(2365), - [aux_sym_cmd_identifier_token18] = ACTIONS(2365), - [aux_sym_cmd_identifier_token19] = ACTIONS(2365), - [aux_sym_cmd_identifier_token20] = ACTIONS(2365), - [aux_sym_cmd_identifier_token21] = ACTIONS(2365), - [aux_sym_cmd_identifier_token22] = ACTIONS(2365), - [aux_sym_cmd_identifier_token23] = ACTIONS(2365), - [aux_sym_cmd_identifier_token24] = ACTIONS(2365), - [aux_sym_cmd_identifier_token25] = ACTIONS(2365), - [aux_sym_cmd_identifier_token26] = ACTIONS(2365), - [aux_sym_cmd_identifier_token27] = ACTIONS(2365), - [aux_sym_cmd_identifier_token28] = ACTIONS(2365), - [aux_sym_cmd_identifier_token29] = ACTIONS(2365), - [aux_sym_cmd_identifier_token30] = ACTIONS(2365), - [aux_sym_cmd_identifier_token31] = ACTIONS(2365), - [aux_sym_cmd_identifier_token32] = ACTIONS(2365), - [aux_sym_cmd_identifier_token33] = ACTIONS(2365), - [aux_sym_cmd_identifier_token34] = ACTIONS(2365), - [aux_sym_cmd_identifier_token35] = ACTIONS(2365), - [aux_sym_cmd_identifier_token36] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [anon_sym_null] = ACTIONS(2367), - [aux_sym_cmd_identifier_token38] = ACTIONS(2365), - [aux_sym_cmd_identifier_token39] = ACTIONS(2367), - [aux_sym_cmd_identifier_token40] = ACTIONS(2367), - [anon_sym_def] = ACTIONS(2365), - [anon_sym_export_DASHenv] = ACTIONS(2365), - [anon_sym_extern] = ACTIONS(2365), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_in] = ACTIONS(2365), - [anon_sym_loop] = ACTIONS(2365), - [anon_sym_make] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_catch] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_source] = ACTIONS(2365), - [anon_sym_source_DASHenv] = ACTIONS(2365), - [anon_sym_register] = ACTIONS(2365), - [anon_sym_hide] = ACTIONS(2365), - [anon_sym_hide_DASHenv] = ACTIONS(2365), - [anon_sym_overlay] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2367), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [aux_sym__val_number_decimal_token2] = ACTIONS(2367), - [anon_sym_DOT2] = ACTIONS(2365), - [aux_sym__val_number_decimal_token3] = ACTIONS(2367), - [aux_sym__val_number_token1] = ACTIONS(2367), - [aux_sym__val_number_token2] = ACTIONS(2367), - [aux_sym__val_number_token3] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(2367), - [sym__str_single_quotes] = ACTIONS(2367), - [sym__str_back_ticks] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2367), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_alias] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_let_DASHenv] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [aux_sym_cmd_identifier_token1] = ACTIONS(2371), + [aux_sym_cmd_identifier_token2] = ACTIONS(2371), + [aux_sym_cmd_identifier_token3] = ACTIONS(2371), + [aux_sym_cmd_identifier_token4] = ACTIONS(2371), + [aux_sym_cmd_identifier_token5] = ACTIONS(2371), + [aux_sym_cmd_identifier_token6] = ACTIONS(2371), + [aux_sym_cmd_identifier_token7] = ACTIONS(2371), + [aux_sym_cmd_identifier_token8] = ACTIONS(2371), + [aux_sym_cmd_identifier_token9] = ACTIONS(2371), + [aux_sym_cmd_identifier_token10] = ACTIONS(2371), + [aux_sym_cmd_identifier_token11] = ACTIONS(2371), + [aux_sym_cmd_identifier_token12] = ACTIONS(2371), + [aux_sym_cmd_identifier_token13] = ACTIONS(2371), + [aux_sym_cmd_identifier_token14] = ACTIONS(2371), + [aux_sym_cmd_identifier_token15] = ACTIONS(2371), + [aux_sym_cmd_identifier_token16] = ACTIONS(2371), + [aux_sym_cmd_identifier_token17] = ACTIONS(2371), + [aux_sym_cmd_identifier_token18] = ACTIONS(2371), + [aux_sym_cmd_identifier_token19] = ACTIONS(2371), + [aux_sym_cmd_identifier_token20] = ACTIONS(2371), + [aux_sym_cmd_identifier_token21] = ACTIONS(2371), + [aux_sym_cmd_identifier_token22] = ACTIONS(2371), + [aux_sym_cmd_identifier_token23] = ACTIONS(2371), + [aux_sym_cmd_identifier_token24] = ACTIONS(2371), + [aux_sym_cmd_identifier_token25] = ACTIONS(2371), + [aux_sym_cmd_identifier_token26] = ACTIONS(2371), + [aux_sym_cmd_identifier_token27] = ACTIONS(2371), + [aux_sym_cmd_identifier_token28] = ACTIONS(2371), + [aux_sym_cmd_identifier_token29] = ACTIONS(2371), + [aux_sym_cmd_identifier_token30] = ACTIONS(2371), + [aux_sym_cmd_identifier_token31] = ACTIONS(2371), + [aux_sym_cmd_identifier_token32] = ACTIONS(2371), + [aux_sym_cmd_identifier_token33] = ACTIONS(2371), + [aux_sym_cmd_identifier_token34] = ACTIONS(2371), + [aux_sym_cmd_identifier_token35] = ACTIONS(2371), + [aux_sym_cmd_identifier_token36] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2373), + [aux_sym_cmd_identifier_token38] = ACTIONS(2371), + [aux_sym_cmd_identifier_token39] = ACTIONS(2373), + [aux_sym_cmd_identifier_token40] = ACTIONS(2373), + [anon_sym_def] = ACTIONS(2371), + [anon_sym_export_DASHenv] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_error] = ACTIONS(2371), + [anon_sym_list] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_in] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_make] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_do] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_else] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2371), + [anon_sym_catch] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_source] = ACTIONS(2371), + [anon_sym_source_DASHenv] = ACTIONS(2371), + [anon_sym_register] = ACTIONS(2371), + [anon_sym_hide] = ACTIONS(2371), + [anon_sym_hide_DASHenv] = ACTIONS(2371), + [anon_sym_overlay] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), + [aux_sym__val_number_decimal_token1] = ACTIONS(2371), + [aux_sym__val_number_decimal_token2] = ACTIONS(2373), + [aux_sym__val_number_decimal_token3] = ACTIONS(2373), + [aux_sym__val_number_decimal_token4] = ACTIONS(2373), + [aux_sym__val_number_token1] = ACTIONS(2373), + [aux_sym__val_number_token2] = ACTIONS(2373), + [aux_sym__val_number_token3] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [sym__str_single_quotes] = ACTIONS(2373), + [sym__str_back_ticks] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(247), }, [654] = { [sym_comment] = STATE(654), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_list] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [anon_sym_DOT2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1953), + [anon_sym_alias] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_let_DASHenv] = ACTIONS(1953), + [anon_sym_mut] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [aux_sym_cmd_identifier_token1] = ACTIONS(1953), + [aux_sym_cmd_identifier_token2] = ACTIONS(1953), + [aux_sym_cmd_identifier_token3] = ACTIONS(1953), + [aux_sym_cmd_identifier_token4] = ACTIONS(1953), + [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [aux_sym_cmd_identifier_token6] = ACTIONS(1953), + [aux_sym_cmd_identifier_token7] = ACTIONS(1953), + [aux_sym_cmd_identifier_token8] = ACTIONS(1953), + [aux_sym_cmd_identifier_token9] = ACTIONS(1953), + [aux_sym_cmd_identifier_token10] = ACTIONS(1953), + [aux_sym_cmd_identifier_token11] = ACTIONS(1953), + [aux_sym_cmd_identifier_token12] = ACTIONS(1953), + [aux_sym_cmd_identifier_token13] = ACTIONS(1953), + [aux_sym_cmd_identifier_token14] = ACTIONS(1953), + [aux_sym_cmd_identifier_token15] = ACTIONS(1953), + [aux_sym_cmd_identifier_token16] = ACTIONS(1953), + [aux_sym_cmd_identifier_token17] = ACTIONS(1953), + [aux_sym_cmd_identifier_token18] = ACTIONS(1953), + [aux_sym_cmd_identifier_token19] = ACTIONS(1953), + [aux_sym_cmd_identifier_token20] = ACTIONS(1953), + [aux_sym_cmd_identifier_token21] = ACTIONS(1953), + [aux_sym_cmd_identifier_token22] = ACTIONS(1953), + [aux_sym_cmd_identifier_token23] = ACTIONS(1953), + [aux_sym_cmd_identifier_token24] = ACTIONS(1953), + [aux_sym_cmd_identifier_token25] = ACTIONS(1953), + [aux_sym_cmd_identifier_token26] = ACTIONS(1953), + [aux_sym_cmd_identifier_token27] = ACTIONS(1953), + [aux_sym_cmd_identifier_token28] = ACTIONS(1953), + [aux_sym_cmd_identifier_token29] = ACTIONS(1953), + [aux_sym_cmd_identifier_token30] = ACTIONS(1953), + [aux_sym_cmd_identifier_token31] = ACTIONS(1953), + [aux_sym_cmd_identifier_token32] = ACTIONS(1953), + [aux_sym_cmd_identifier_token33] = ACTIONS(1953), + [aux_sym_cmd_identifier_token34] = ACTIONS(1953), + [aux_sym_cmd_identifier_token35] = ACTIONS(1953), + [aux_sym_cmd_identifier_token36] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token38] = ACTIONS(1953), + [aux_sym_cmd_identifier_token39] = ACTIONS(1955), + [aux_sym_cmd_identifier_token40] = ACTIONS(1955), + [anon_sym_def] = ACTIONS(1953), + [anon_sym_export_DASHenv] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_module] = ACTIONS(1953), + [anon_sym_use] = ACTIONS(1953), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1955), + [anon_sym_error] = ACTIONS(1953), + [anon_sym_list] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_in] = ACTIONS(1953), + [anon_sym_loop] = ACTIONS(1953), + [anon_sym_make] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_do] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_else] = ACTIONS(1953), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_try] = ACTIONS(1953), + [anon_sym_catch] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_source] = ACTIONS(1953), + [anon_sym_source_DASHenv] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_hide] = ACTIONS(1953), + [anon_sym_hide_DASHenv] = ACTIONS(1953), + [anon_sym_overlay] = ACTIONS(1953), + [anon_sym_new] = ACTIONS(1953), + [anon_sym_as] = ACTIONS(1953), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), + [aux_sym__val_number_decimal_token1] = ACTIONS(1953), + [aux_sym__val_number_decimal_token2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token3] = ACTIONS(1955), + [aux_sym__val_number_decimal_token4] = ACTIONS(1955), + [aux_sym__val_number_token1] = ACTIONS(1955), + [aux_sym__val_number_token2] = ACTIONS(1955), + [aux_sym__val_number_token3] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym__str_single_quotes] = ACTIONS(1955), + [sym__str_back_ticks] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(247), }, [655] = { [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [anon_sym_DOT2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1943), + [anon_sym_alias] = ACTIONS(1943), + [anon_sym_let] = ACTIONS(1943), + [anon_sym_let_DASHenv] = ACTIONS(1943), + [anon_sym_mut] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [aux_sym_cmd_identifier_token1] = ACTIONS(1943), + [aux_sym_cmd_identifier_token2] = ACTIONS(1943), + [aux_sym_cmd_identifier_token3] = ACTIONS(1943), + [aux_sym_cmd_identifier_token4] = ACTIONS(1943), + [aux_sym_cmd_identifier_token5] = ACTIONS(1943), + [aux_sym_cmd_identifier_token6] = ACTIONS(1943), + [aux_sym_cmd_identifier_token7] = ACTIONS(1943), + [aux_sym_cmd_identifier_token8] = ACTIONS(1943), + [aux_sym_cmd_identifier_token9] = ACTIONS(1943), + [aux_sym_cmd_identifier_token10] = ACTIONS(1943), + [aux_sym_cmd_identifier_token11] = ACTIONS(1943), + [aux_sym_cmd_identifier_token12] = ACTIONS(1943), + [aux_sym_cmd_identifier_token13] = ACTIONS(1943), + [aux_sym_cmd_identifier_token14] = ACTIONS(1943), + [aux_sym_cmd_identifier_token15] = ACTIONS(1943), + [aux_sym_cmd_identifier_token16] = ACTIONS(1943), + [aux_sym_cmd_identifier_token17] = ACTIONS(1943), + [aux_sym_cmd_identifier_token18] = ACTIONS(1943), + [aux_sym_cmd_identifier_token19] = ACTIONS(1943), + [aux_sym_cmd_identifier_token20] = ACTIONS(1943), + [aux_sym_cmd_identifier_token21] = ACTIONS(1943), + [aux_sym_cmd_identifier_token22] = ACTIONS(1943), + [aux_sym_cmd_identifier_token23] = ACTIONS(1943), + [aux_sym_cmd_identifier_token24] = ACTIONS(1943), + [aux_sym_cmd_identifier_token25] = ACTIONS(1943), + [aux_sym_cmd_identifier_token26] = ACTIONS(1943), + [aux_sym_cmd_identifier_token27] = ACTIONS(1943), + [aux_sym_cmd_identifier_token28] = ACTIONS(1943), + [aux_sym_cmd_identifier_token29] = ACTIONS(1943), + [aux_sym_cmd_identifier_token30] = ACTIONS(1943), + [aux_sym_cmd_identifier_token31] = ACTIONS(1943), + [aux_sym_cmd_identifier_token32] = ACTIONS(1943), + [aux_sym_cmd_identifier_token33] = ACTIONS(1943), + [aux_sym_cmd_identifier_token34] = ACTIONS(1943), + [aux_sym_cmd_identifier_token35] = ACTIONS(1943), + [aux_sym_cmd_identifier_token36] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1945), + [aux_sym_cmd_identifier_token38] = ACTIONS(1943), + [aux_sym_cmd_identifier_token39] = ACTIONS(1945), + [aux_sym_cmd_identifier_token40] = ACTIONS(1945), + [anon_sym_def] = ACTIONS(1943), + [anon_sym_export_DASHenv] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym_module] = ACTIONS(1943), + [anon_sym_use] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_error] = ACTIONS(1943), + [anon_sym_list] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(1943), + [anon_sym_loop] = ACTIONS(1943), + [anon_sym_make] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_else] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_source] = ACTIONS(1943), + [anon_sym_source_DASHenv] = ACTIONS(1943), + [anon_sym_register] = ACTIONS(1943), + [anon_sym_hide] = ACTIONS(1943), + [anon_sym_hide_DASHenv] = ACTIONS(1943), + [anon_sym_overlay] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_as] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1945), + [aux_sym__val_number_decimal_token4] = ACTIONS(1945), + [aux_sym__val_number_token1] = ACTIONS(1945), + [aux_sym__val_number_token2] = ACTIONS(1945), + [aux_sym__val_number_token3] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym__str_single_quotes] = ACTIONS(1945), + [sym__str_back_ticks] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(247), }, [656] = { [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(1955), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_let_DASHenv] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1955), - [aux_sym_cmd_identifier_token2] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [aux_sym_cmd_identifier_token6] = ACTIONS(1955), - [aux_sym_cmd_identifier_token7] = ACTIONS(1955), - [aux_sym_cmd_identifier_token8] = ACTIONS(1955), - [aux_sym_cmd_identifier_token9] = ACTIONS(1955), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [aux_sym_cmd_identifier_token12] = ACTIONS(1955), - [aux_sym_cmd_identifier_token13] = ACTIONS(1955), - [aux_sym_cmd_identifier_token14] = ACTIONS(1955), - [aux_sym_cmd_identifier_token15] = ACTIONS(1955), - [aux_sym_cmd_identifier_token16] = ACTIONS(1955), - [aux_sym_cmd_identifier_token17] = ACTIONS(1955), - [aux_sym_cmd_identifier_token18] = ACTIONS(1955), - [aux_sym_cmd_identifier_token19] = ACTIONS(1955), - [aux_sym_cmd_identifier_token20] = ACTIONS(1955), - [aux_sym_cmd_identifier_token21] = ACTIONS(1955), - [aux_sym_cmd_identifier_token22] = ACTIONS(1955), - [aux_sym_cmd_identifier_token23] = ACTIONS(1955), - [aux_sym_cmd_identifier_token24] = ACTIONS(1955), - [aux_sym_cmd_identifier_token25] = ACTIONS(1955), - [aux_sym_cmd_identifier_token26] = ACTIONS(1955), - [aux_sym_cmd_identifier_token27] = ACTIONS(1955), - [aux_sym_cmd_identifier_token28] = ACTIONS(1955), - [aux_sym_cmd_identifier_token29] = ACTIONS(1955), - [aux_sym_cmd_identifier_token30] = ACTIONS(1955), - [aux_sym_cmd_identifier_token31] = ACTIONS(1955), - [aux_sym_cmd_identifier_token32] = ACTIONS(1955), - [aux_sym_cmd_identifier_token33] = ACTIONS(1955), - [aux_sym_cmd_identifier_token34] = ACTIONS(1955), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_null] = ACTIONS(1957), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1957), - [aux_sym_cmd_identifier_token40] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_list] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_make] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(1955), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [anon_sym_DOT2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1957), - [aux_sym__val_number_token1] = ACTIONS(1957), - [aux_sym__val_number_token2] = ACTIONS(1957), - [aux_sym__val_number_token3] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2379), + [anon_sym_alias] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_let_DASHenv] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [aux_sym_cmd_identifier_token1] = ACTIONS(2379), + [aux_sym_cmd_identifier_token2] = ACTIONS(2379), + [aux_sym_cmd_identifier_token3] = ACTIONS(2379), + [aux_sym_cmd_identifier_token4] = ACTIONS(2379), + [aux_sym_cmd_identifier_token5] = ACTIONS(2379), + [aux_sym_cmd_identifier_token6] = ACTIONS(2379), + [aux_sym_cmd_identifier_token7] = ACTIONS(2379), + [aux_sym_cmd_identifier_token8] = ACTIONS(2379), + [aux_sym_cmd_identifier_token9] = ACTIONS(2379), + [aux_sym_cmd_identifier_token10] = ACTIONS(2379), + [aux_sym_cmd_identifier_token11] = ACTIONS(2379), + [aux_sym_cmd_identifier_token12] = ACTIONS(2379), + [aux_sym_cmd_identifier_token13] = ACTIONS(2379), + [aux_sym_cmd_identifier_token14] = ACTIONS(2379), + [aux_sym_cmd_identifier_token15] = ACTIONS(2379), + [aux_sym_cmd_identifier_token16] = ACTIONS(2379), + [aux_sym_cmd_identifier_token17] = ACTIONS(2379), + [aux_sym_cmd_identifier_token18] = ACTIONS(2379), + [aux_sym_cmd_identifier_token19] = ACTIONS(2379), + [aux_sym_cmd_identifier_token20] = ACTIONS(2379), + [aux_sym_cmd_identifier_token21] = ACTIONS(2379), + [aux_sym_cmd_identifier_token22] = ACTIONS(2379), + [aux_sym_cmd_identifier_token23] = ACTIONS(2379), + [aux_sym_cmd_identifier_token24] = ACTIONS(2379), + [aux_sym_cmd_identifier_token25] = ACTIONS(2379), + [aux_sym_cmd_identifier_token26] = ACTIONS(2379), + [aux_sym_cmd_identifier_token27] = ACTIONS(2379), + [aux_sym_cmd_identifier_token28] = ACTIONS(2379), + [aux_sym_cmd_identifier_token29] = ACTIONS(2379), + [aux_sym_cmd_identifier_token30] = ACTIONS(2379), + [aux_sym_cmd_identifier_token31] = ACTIONS(2379), + [aux_sym_cmd_identifier_token32] = ACTIONS(2379), + [aux_sym_cmd_identifier_token33] = ACTIONS(2379), + [aux_sym_cmd_identifier_token34] = ACTIONS(2379), + [aux_sym_cmd_identifier_token35] = ACTIONS(2379), + [aux_sym_cmd_identifier_token36] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_null] = ACTIONS(2381), + [aux_sym_cmd_identifier_token38] = ACTIONS(2379), + [aux_sym_cmd_identifier_token39] = ACTIONS(2381), + [aux_sym_cmd_identifier_token40] = ACTIONS(2381), + [anon_sym_def] = ACTIONS(2379), + [anon_sym_export_DASHenv] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym_module] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_error] = ACTIONS(2379), + [anon_sym_list] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_in] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_make] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_catch] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_source] = ACTIONS(2379), + [anon_sym_source_DASHenv] = ACTIONS(2379), + [anon_sym_register] = ACTIONS(2379), + [anon_sym_hide] = ACTIONS(2379), + [anon_sym_hide_DASHenv] = ACTIONS(2379), + [anon_sym_overlay] = ACTIONS(2379), + [anon_sym_new] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2381), + [aux_sym__val_number_decimal_token1] = ACTIONS(2379), + [aux_sym__val_number_decimal_token2] = ACTIONS(2381), + [aux_sym__val_number_decimal_token3] = ACTIONS(2381), + [aux_sym__val_number_decimal_token4] = ACTIONS(2381), + [aux_sym__val_number_token1] = ACTIONS(2381), + [aux_sym__val_number_token2] = ACTIONS(2381), + [aux_sym__val_number_token3] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym__str_single_quotes] = ACTIONS(2381), + [sym__str_back_ticks] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(247), }, [657] = { [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(1429), - [anon_sym_alias] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_let_DASHenv] = ACTIONS(1429), - [anon_sym_mut] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [aux_sym_cmd_identifier_token1] = ACTIONS(1429), - [aux_sym_cmd_identifier_token2] = ACTIONS(1429), - [aux_sym_cmd_identifier_token3] = ACTIONS(1429), - [aux_sym_cmd_identifier_token4] = ACTIONS(1429), - [aux_sym_cmd_identifier_token5] = ACTIONS(1429), - [aux_sym_cmd_identifier_token6] = ACTIONS(1429), - [aux_sym_cmd_identifier_token7] = ACTIONS(1429), - [aux_sym_cmd_identifier_token8] = ACTIONS(1429), - [aux_sym_cmd_identifier_token9] = ACTIONS(1429), - [aux_sym_cmd_identifier_token10] = ACTIONS(1429), - [aux_sym_cmd_identifier_token11] = ACTIONS(1429), - [aux_sym_cmd_identifier_token12] = ACTIONS(1429), - [aux_sym_cmd_identifier_token13] = ACTIONS(1429), - [aux_sym_cmd_identifier_token14] = ACTIONS(1429), - [aux_sym_cmd_identifier_token15] = ACTIONS(1429), - [aux_sym_cmd_identifier_token16] = ACTIONS(1429), - [aux_sym_cmd_identifier_token17] = ACTIONS(1429), - [aux_sym_cmd_identifier_token18] = ACTIONS(1429), - [aux_sym_cmd_identifier_token19] = ACTIONS(1429), - [aux_sym_cmd_identifier_token20] = ACTIONS(1429), - [aux_sym_cmd_identifier_token21] = ACTIONS(1429), - [aux_sym_cmd_identifier_token22] = ACTIONS(1429), - [aux_sym_cmd_identifier_token23] = ACTIONS(1429), - [aux_sym_cmd_identifier_token24] = ACTIONS(1429), - [aux_sym_cmd_identifier_token25] = ACTIONS(1429), - [aux_sym_cmd_identifier_token26] = ACTIONS(1429), - [aux_sym_cmd_identifier_token27] = ACTIONS(1429), - [aux_sym_cmd_identifier_token28] = ACTIONS(1429), - [aux_sym_cmd_identifier_token29] = ACTIONS(1429), - [aux_sym_cmd_identifier_token30] = ACTIONS(1429), - [aux_sym_cmd_identifier_token31] = ACTIONS(1429), - [aux_sym_cmd_identifier_token32] = ACTIONS(1429), - [aux_sym_cmd_identifier_token33] = ACTIONS(1429), - [aux_sym_cmd_identifier_token34] = ACTIONS(1429), - [aux_sym_cmd_identifier_token35] = ACTIONS(1429), - [aux_sym_cmd_identifier_token36] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1429), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [anon_sym_def] = ACTIONS(1429), - [anon_sym_export_DASHenv] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_module] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_error] = ACTIONS(1429), - [anon_sym_list] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_make] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_try] = ACTIONS(1429), - [anon_sym_catch] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_source] = ACTIONS(1429), - [anon_sym_source_DASHenv] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_hide] = ACTIONS(1429), - [anon_sym_hide_DASHenv] = ACTIONS(1429), - [anon_sym_overlay] = ACTIONS(1429), - [anon_sym_new] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1441), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1441), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2393), + [anon_sym_alias] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_let_DASHenv] = ACTIONS(2393), + [anon_sym_mut] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [aux_sym_cmd_identifier_token1] = ACTIONS(2393), + [aux_sym_cmd_identifier_token2] = ACTIONS(2393), + [aux_sym_cmd_identifier_token3] = ACTIONS(2393), + [aux_sym_cmd_identifier_token4] = ACTIONS(2393), + [aux_sym_cmd_identifier_token5] = ACTIONS(2393), + [aux_sym_cmd_identifier_token6] = ACTIONS(2393), + [aux_sym_cmd_identifier_token7] = ACTIONS(2393), + [aux_sym_cmd_identifier_token8] = ACTIONS(2393), + [aux_sym_cmd_identifier_token9] = ACTIONS(2393), + [aux_sym_cmd_identifier_token10] = ACTIONS(2393), + [aux_sym_cmd_identifier_token11] = ACTIONS(2393), + [aux_sym_cmd_identifier_token12] = ACTIONS(2393), + [aux_sym_cmd_identifier_token13] = ACTIONS(2393), + [aux_sym_cmd_identifier_token14] = ACTIONS(2393), + [aux_sym_cmd_identifier_token15] = ACTIONS(2393), + [aux_sym_cmd_identifier_token16] = ACTIONS(2393), + [aux_sym_cmd_identifier_token17] = ACTIONS(2393), + [aux_sym_cmd_identifier_token18] = ACTIONS(2393), + [aux_sym_cmd_identifier_token19] = ACTIONS(2393), + [aux_sym_cmd_identifier_token20] = ACTIONS(2393), + [aux_sym_cmd_identifier_token21] = ACTIONS(2393), + [aux_sym_cmd_identifier_token22] = ACTIONS(2393), + [aux_sym_cmd_identifier_token23] = ACTIONS(2393), + [aux_sym_cmd_identifier_token24] = ACTIONS(2393), + [aux_sym_cmd_identifier_token25] = ACTIONS(2393), + [aux_sym_cmd_identifier_token26] = ACTIONS(2393), + [aux_sym_cmd_identifier_token27] = ACTIONS(2393), + [aux_sym_cmd_identifier_token28] = ACTIONS(2393), + [aux_sym_cmd_identifier_token29] = ACTIONS(2393), + [aux_sym_cmd_identifier_token30] = ACTIONS(2393), + [aux_sym_cmd_identifier_token31] = ACTIONS(2393), + [aux_sym_cmd_identifier_token32] = ACTIONS(2393), + [aux_sym_cmd_identifier_token33] = ACTIONS(2393), + [aux_sym_cmd_identifier_token34] = ACTIONS(2393), + [aux_sym_cmd_identifier_token35] = ACTIONS(2393), + [aux_sym_cmd_identifier_token36] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2395), + [anon_sym_false] = ACTIONS(2395), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token38] = ACTIONS(2393), + [aux_sym_cmd_identifier_token39] = ACTIONS(2395), + [aux_sym_cmd_identifier_token40] = ACTIONS(2395), + [anon_sym_def] = ACTIONS(2393), + [anon_sym_export_DASHenv] = ACTIONS(2393), + [anon_sym_extern] = ACTIONS(2393), + [anon_sym_module] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2395), + [anon_sym_error] = ACTIONS(2393), + [anon_sym_list] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_in] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_make] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_else] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2393), + [anon_sym_catch] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_source] = ACTIONS(2393), + [anon_sym_source_DASHenv] = ACTIONS(2393), + [anon_sym_register] = ACTIONS(2393), + [anon_sym_hide] = ACTIONS(2393), + [anon_sym_hide_DASHenv] = ACTIONS(2393), + [anon_sym_overlay] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2395), + [aux_sym__val_number_decimal_token1] = ACTIONS(2393), + [aux_sym__val_number_decimal_token2] = ACTIONS(2395), + [aux_sym__val_number_decimal_token3] = ACTIONS(2395), + [aux_sym__val_number_decimal_token4] = ACTIONS(2395), + [aux_sym__val_number_token1] = ACTIONS(2395), + [aux_sym__val_number_token2] = ACTIONS(2395), + [aux_sym__val_number_token3] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [sym__str_single_quotes] = ACTIONS(2395), + [sym__str_back_ticks] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(247), }, [658] = { [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(2373), - [anon_sym_alias] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_let_DASHenv] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [aux_sym_cmd_identifier_token1] = ACTIONS(2373), - [aux_sym_cmd_identifier_token2] = ACTIONS(2373), - [aux_sym_cmd_identifier_token3] = ACTIONS(2373), - [aux_sym_cmd_identifier_token4] = ACTIONS(2373), - [aux_sym_cmd_identifier_token5] = ACTIONS(2373), - [aux_sym_cmd_identifier_token6] = ACTIONS(2373), - [aux_sym_cmd_identifier_token7] = ACTIONS(2373), - [aux_sym_cmd_identifier_token8] = ACTIONS(2373), - [aux_sym_cmd_identifier_token9] = ACTIONS(2373), - [aux_sym_cmd_identifier_token10] = ACTIONS(2373), - [aux_sym_cmd_identifier_token11] = ACTIONS(2373), - [aux_sym_cmd_identifier_token12] = ACTIONS(2373), - [aux_sym_cmd_identifier_token13] = ACTIONS(2373), - [aux_sym_cmd_identifier_token14] = ACTIONS(2373), - [aux_sym_cmd_identifier_token15] = ACTIONS(2373), - [aux_sym_cmd_identifier_token16] = ACTIONS(2373), - [aux_sym_cmd_identifier_token17] = ACTIONS(2373), - [aux_sym_cmd_identifier_token18] = ACTIONS(2373), - [aux_sym_cmd_identifier_token19] = ACTIONS(2373), - [aux_sym_cmd_identifier_token20] = ACTIONS(2373), - [aux_sym_cmd_identifier_token21] = ACTIONS(2373), - [aux_sym_cmd_identifier_token22] = ACTIONS(2373), - [aux_sym_cmd_identifier_token23] = ACTIONS(2373), - [aux_sym_cmd_identifier_token24] = ACTIONS(2373), - [aux_sym_cmd_identifier_token25] = ACTIONS(2373), - [aux_sym_cmd_identifier_token26] = ACTIONS(2373), - [aux_sym_cmd_identifier_token27] = ACTIONS(2373), - [aux_sym_cmd_identifier_token28] = ACTIONS(2373), - [aux_sym_cmd_identifier_token29] = ACTIONS(2373), - [aux_sym_cmd_identifier_token30] = ACTIONS(2373), - [aux_sym_cmd_identifier_token31] = ACTIONS(2373), - [aux_sym_cmd_identifier_token32] = ACTIONS(2373), - [aux_sym_cmd_identifier_token33] = ACTIONS(2373), - [aux_sym_cmd_identifier_token34] = ACTIONS(2373), - [aux_sym_cmd_identifier_token35] = ACTIONS(2373), - [aux_sym_cmd_identifier_token36] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2375), - [anon_sym_false] = ACTIONS(2375), - [anon_sym_null] = ACTIONS(2375), - [aux_sym_cmd_identifier_token38] = ACTIONS(2373), - [aux_sym_cmd_identifier_token39] = ACTIONS(2375), - [aux_sym_cmd_identifier_token40] = ACTIONS(2375), - [anon_sym_def] = ACTIONS(2373), - [anon_sym_export_DASHenv] = ACTIONS(2373), - [anon_sym_extern] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_DOLLAR] = ACTIONS(2375), - [anon_sym_error] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(2373), - [anon_sym_loop] = ACTIONS(2373), - [anon_sym_make] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_catch] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_source] = ACTIONS(2373), - [anon_sym_source_DASHenv] = ACTIONS(2373), - [anon_sym_register] = ACTIONS(2373), - [anon_sym_hide] = ACTIONS(2373), - [anon_sym_hide_DASHenv] = ACTIONS(2373), - [anon_sym_overlay] = ACTIONS(2373), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2375), - [aux_sym__val_number_decimal_token1] = ACTIONS(2373), - [aux_sym__val_number_decimal_token2] = ACTIONS(2375), - [anon_sym_DOT2] = ACTIONS(2373), - [aux_sym__val_number_decimal_token3] = ACTIONS(2375), - [aux_sym__val_number_token1] = ACTIONS(2375), - [aux_sym__val_number_token2] = ACTIONS(2375), - [aux_sym__val_number_token3] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(2375), - [sym__str_single_quotes] = ACTIONS(2375), - [sym__str_back_ticks] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2375), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2375), + [anon_sym_alias] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_let_DASHenv] = ACTIONS(2375), + [anon_sym_mut] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [aux_sym_cmd_identifier_token1] = ACTIONS(2375), + [aux_sym_cmd_identifier_token2] = ACTIONS(2375), + [aux_sym_cmd_identifier_token3] = ACTIONS(2375), + [aux_sym_cmd_identifier_token4] = ACTIONS(2375), + [aux_sym_cmd_identifier_token5] = ACTIONS(2375), + [aux_sym_cmd_identifier_token6] = ACTIONS(2375), + [aux_sym_cmd_identifier_token7] = ACTIONS(2375), + [aux_sym_cmd_identifier_token8] = ACTIONS(2375), + [aux_sym_cmd_identifier_token9] = ACTIONS(2375), + [aux_sym_cmd_identifier_token10] = ACTIONS(2375), + [aux_sym_cmd_identifier_token11] = ACTIONS(2375), + [aux_sym_cmd_identifier_token12] = ACTIONS(2375), + [aux_sym_cmd_identifier_token13] = ACTIONS(2375), + [aux_sym_cmd_identifier_token14] = ACTIONS(2375), + [aux_sym_cmd_identifier_token15] = ACTIONS(2375), + [aux_sym_cmd_identifier_token16] = ACTIONS(2375), + [aux_sym_cmd_identifier_token17] = ACTIONS(2375), + [aux_sym_cmd_identifier_token18] = ACTIONS(2375), + [aux_sym_cmd_identifier_token19] = ACTIONS(2375), + [aux_sym_cmd_identifier_token20] = ACTIONS(2375), + [aux_sym_cmd_identifier_token21] = ACTIONS(2375), + [aux_sym_cmd_identifier_token22] = ACTIONS(2375), + [aux_sym_cmd_identifier_token23] = ACTIONS(2375), + [aux_sym_cmd_identifier_token24] = ACTIONS(2375), + [aux_sym_cmd_identifier_token25] = ACTIONS(2375), + [aux_sym_cmd_identifier_token26] = ACTIONS(2375), + [aux_sym_cmd_identifier_token27] = ACTIONS(2375), + [aux_sym_cmd_identifier_token28] = ACTIONS(2375), + [aux_sym_cmd_identifier_token29] = ACTIONS(2375), + [aux_sym_cmd_identifier_token30] = ACTIONS(2375), + [aux_sym_cmd_identifier_token31] = ACTIONS(2375), + [aux_sym_cmd_identifier_token32] = ACTIONS(2375), + [aux_sym_cmd_identifier_token33] = ACTIONS(2375), + [aux_sym_cmd_identifier_token34] = ACTIONS(2375), + [aux_sym_cmd_identifier_token35] = ACTIONS(2375), + [aux_sym_cmd_identifier_token36] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [anon_sym_null] = ACTIONS(2377), + [aux_sym_cmd_identifier_token38] = ACTIONS(2375), + [aux_sym_cmd_identifier_token39] = ACTIONS(2377), + [aux_sym_cmd_identifier_token40] = ACTIONS(2377), + [anon_sym_def] = ACTIONS(2375), + [anon_sym_export_DASHenv] = ACTIONS(2375), + [anon_sym_extern] = ACTIONS(2375), + [anon_sym_module] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2377), + [anon_sym_error] = ACTIONS(2375), + [anon_sym_list] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_in] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_make] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [anon_sym_do] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_else] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2375), + [anon_sym_catch] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_source] = ACTIONS(2375), + [anon_sym_source_DASHenv] = ACTIONS(2375), + [anon_sym_register] = ACTIONS(2375), + [anon_sym_hide] = ACTIONS(2375), + [anon_sym_hide_DASHenv] = ACTIONS(2375), + [anon_sym_overlay] = ACTIONS(2375), + [anon_sym_new] = ACTIONS(2375), + [anon_sym_as] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2377), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2377), + [aux_sym__val_number_decimal_token1] = ACTIONS(2375), + [aux_sym__val_number_decimal_token2] = ACTIONS(2377), + [aux_sym__val_number_decimal_token3] = ACTIONS(2377), + [aux_sym__val_number_decimal_token4] = ACTIONS(2377), + [aux_sym__val_number_token1] = ACTIONS(2377), + [aux_sym__val_number_token2] = ACTIONS(2377), + [aux_sym__val_number_token3] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [sym__str_single_quotes] = ACTIONS(2377), + [sym__str_back_ticks] = ACTIONS(2377), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_POUND] = ACTIONS(247), }, [659] = { [sym_comment] = STATE(659), - [anon_sym_export] = ACTIONS(2369), - [anon_sym_alias] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_let_DASHenv] = ACTIONS(2369), - [anon_sym_mut] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [aux_sym_cmd_identifier_token1] = ACTIONS(2369), - [aux_sym_cmd_identifier_token2] = ACTIONS(2369), - [aux_sym_cmd_identifier_token3] = ACTIONS(2369), - [aux_sym_cmd_identifier_token4] = ACTIONS(2369), - [aux_sym_cmd_identifier_token5] = ACTIONS(2369), - [aux_sym_cmd_identifier_token6] = ACTIONS(2369), - [aux_sym_cmd_identifier_token7] = ACTIONS(2369), - [aux_sym_cmd_identifier_token8] = ACTIONS(2369), - [aux_sym_cmd_identifier_token9] = ACTIONS(2369), - [aux_sym_cmd_identifier_token10] = ACTIONS(2369), - [aux_sym_cmd_identifier_token11] = ACTIONS(2369), - [aux_sym_cmd_identifier_token12] = ACTIONS(2369), - [aux_sym_cmd_identifier_token13] = ACTIONS(2369), - [aux_sym_cmd_identifier_token14] = ACTIONS(2369), - [aux_sym_cmd_identifier_token15] = ACTIONS(2369), - [aux_sym_cmd_identifier_token16] = ACTIONS(2369), - [aux_sym_cmd_identifier_token17] = ACTIONS(2369), - [aux_sym_cmd_identifier_token18] = ACTIONS(2369), - [aux_sym_cmd_identifier_token19] = ACTIONS(2369), - [aux_sym_cmd_identifier_token20] = ACTIONS(2369), - [aux_sym_cmd_identifier_token21] = ACTIONS(2369), - [aux_sym_cmd_identifier_token22] = ACTIONS(2369), - [aux_sym_cmd_identifier_token23] = ACTIONS(2369), - [aux_sym_cmd_identifier_token24] = ACTIONS(2369), - [aux_sym_cmd_identifier_token25] = ACTIONS(2369), - [aux_sym_cmd_identifier_token26] = ACTIONS(2369), - [aux_sym_cmd_identifier_token27] = ACTIONS(2369), - [aux_sym_cmd_identifier_token28] = ACTIONS(2369), - [aux_sym_cmd_identifier_token29] = ACTIONS(2369), - [aux_sym_cmd_identifier_token30] = ACTIONS(2369), - [aux_sym_cmd_identifier_token31] = ACTIONS(2369), - [aux_sym_cmd_identifier_token32] = ACTIONS(2369), - [aux_sym_cmd_identifier_token33] = ACTIONS(2369), - [aux_sym_cmd_identifier_token34] = ACTIONS(2369), - [aux_sym_cmd_identifier_token35] = ACTIONS(2369), - [aux_sym_cmd_identifier_token36] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [anon_sym_null] = ACTIONS(2371), - [aux_sym_cmd_identifier_token38] = ACTIONS(2369), - [aux_sym_cmd_identifier_token39] = ACTIONS(2371), - [aux_sym_cmd_identifier_token40] = ACTIONS(2371), - [anon_sym_def] = ACTIONS(2369), - [anon_sym_export_DASHenv] = ACTIONS(2369), - [anon_sym_extern] = ACTIONS(2369), - [anon_sym_module] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_error] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_in] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_make] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_catch] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_source] = ACTIONS(2369), - [anon_sym_source_DASHenv] = ACTIONS(2369), - [anon_sym_register] = ACTIONS(2369), - [anon_sym_hide] = ACTIONS(2369), - [anon_sym_hide_DASHenv] = ACTIONS(2369), - [anon_sym_overlay] = ACTIONS(2369), - [anon_sym_new] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2371), - [aux_sym__val_number_decimal_token1] = ACTIONS(2369), - [aux_sym__val_number_decimal_token2] = ACTIONS(2371), - [anon_sym_DOT2] = ACTIONS(2369), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_token1] = ACTIONS(2371), - [aux_sym__val_number_token2] = ACTIONS(2371), - [aux_sym__val_number_token3] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [sym__str_single_quotes] = ACTIONS(2371), - [sym__str_back_ticks] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2371), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_alias] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_let_DASHenv] = ACTIONS(1648), + [anon_sym_mut] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [aux_sym_cmd_identifier_token2] = ACTIONS(1648), + [aux_sym_cmd_identifier_token3] = ACTIONS(1648), + [aux_sym_cmd_identifier_token4] = ACTIONS(1648), + [aux_sym_cmd_identifier_token5] = ACTIONS(1648), + [aux_sym_cmd_identifier_token6] = ACTIONS(1648), + [aux_sym_cmd_identifier_token7] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1648), + [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token10] = ACTIONS(1648), + [aux_sym_cmd_identifier_token11] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1648), + [aux_sym_cmd_identifier_token13] = ACTIONS(1648), + [aux_sym_cmd_identifier_token14] = ACTIONS(1648), + [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token16] = ACTIONS(1648), + [aux_sym_cmd_identifier_token17] = ACTIONS(1648), + [aux_sym_cmd_identifier_token18] = ACTIONS(1648), + [aux_sym_cmd_identifier_token19] = ACTIONS(1648), + [aux_sym_cmd_identifier_token20] = ACTIONS(1648), + [aux_sym_cmd_identifier_token21] = ACTIONS(1648), + [aux_sym_cmd_identifier_token22] = ACTIONS(1648), + [aux_sym_cmd_identifier_token23] = ACTIONS(1648), + [aux_sym_cmd_identifier_token24] = ACTIONS(1648), + [aux_sym_cmd_identifier_token25] = ACTIONS(1648), + [aux_sym_cmd_identifier_token26] = ACTIONS(1648), + [aux_sym_cmd_identifier_token27] = ACTIONS(1648), + [aux_sym_cmd_identifier_token28] = ACTIONS(1648), + [aux_sym_cmd_identifier_token29] = ACTIONS(1648), + [aux_sym_cmd_identifier_token30] = ACTIONS(1648), + [aux_sym_cmd_identifier_token31] = ACTIONS(1648), + [aux_sym_cmd_identifier_token32] = ACTIONS(1648), + [aux_sym_cmd_identifier_token33] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token35] = ACTIONS(1648), + [aux_sym_cmd_identifier_token36] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [anon_sym_def] = ACTIONS(1648), + [anon_sym_export_DASHenv] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_error] = ACTIONS(1648), + [anon_sym_list] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_make] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_else] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(1648), + [anon_sym_catch] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_source] = ACTIONS(1648), + [anon_sym_source_DASHenv] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1648), + [anon_sym_hide] = ACTIONS(1648), + [anon_sym_hide_DASHenv] = ACTIONS(1648), + [anon_sym_overlay] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1648), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [660] = { [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_alias] = ACTIONS(1963), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_let_DASHenv] = ACTIONS(1963), - [anon_sym_mut] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [aux_sym_cmd_identifier_token1] = ACTIONS(1963), - [aux_sym_cmd_identifier_token2] = ACTIONS(1963), - [aux_sym_cmd_identifier_token3] = ACTIONS(1963), - [aux_sym_cmd_identifier_token4] = ACTIONS(1963), - [aux_sym_cmd_identifier_token5] = ACTIONS(1963), - [aux_sym_cmd_identifier_token6] = ACTIONS(1963), - [aux_sym_cmd_identifier_token7] = ACTIONS(1963), - [aux_sym_cmd_identifier_token8] = ACTIONS(1963), - [aux_sym_cmd_identifier_token9] = ACTIONS(1963), - [aux_sym_cmd_identifier_token10] = ACTIONS(1963), - [aux_sym_cmd_identifier_token11] = ACTIONS(1963), - [aux_sym_cmd_identifier_token12] = ACTIONS(1963), - [aux_sym_cmd_identifier_token13] = ACTIONS(1963), - [aux_sym_cmd_identifier_token14] = ACTIONS(1963), - [aux_sym_cmd_identifier_token15] = ACTIONS(1963), - [aux_sym_cmd_identifier_token16] = ACTIONS(1963), - [aux_sym_cmd_identifier_token17] = ACTIONS(1963), - [aux_sym_cmd_identifier_token18] = ACTIONS(1963), - [aux_sym_cmd_identifier_token19] = ACTIONS(1963), - [aux_sym_cmd_identifier_token20] = ACTIONS(1963), - [aux_sym_cmd_identifier_token21] = ACTIONS(1963), - [aux_sym_cmd_identifier_token22] = ACTIONS(1963), - [aux_sym_cmd_identifier_token23] = ACTIONS(1963), - [aux_sym_cmd_identifier_token24] = ACTIONS(1963), - [aux_sym_cmd_identifier_token25] = ACTIONS(1963), - [aux_sym_cmd_identifier_token26] = ACTIONS(1963), - [aux_sym_cmd_identifier_token27] = ACTIONS(1963), - [aux_sym_cmd_identifier_token28] = ACTIONS(1963), - [aux_sym_cmd_identifier_token29] = ACTIONS(1963), - [aux_sym_cmd_identifier_token30] = ACTIONS(1963), - [aux_sym_cmd_identifier_token31] = ACTIONS(1963), - [aux_sym_cmd_identifier_token32] = ACTIONS(1963), - [aux_sym_cmd_identifier_token33] = ACTIONS(1963), - [aux_sym_cmd_identifier_token34] = ACTIONS(1963), - [aux_sym_cmd_identifier_token35] = ACTIONS(1963), - [aux_sym_cmd_identifier_token36] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1965), - [anon_sym_false] = ACTIONS(1965), - [anon_sym_null] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1963), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_export_DASHenv] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_module] = ACTIONS(1963), - [anon_sym_use] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1963), - [anon_sym_list] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_in] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_make] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_source] = ACTIONS(1963), - [anon_sym_source_DASHenv] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_hide_DASHenv] = ACTIONS(1963), - [anon_sym_overlay] = ACTIONS(1963), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_as] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [anon_sym_DOT2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_list] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, [661] = { - [sym_expr_parenthesized] = STATE(1618), - [sym_val_range] = STATE(1973), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1973), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1973), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1721), - [sym__unquoted_with_expr] = STATE(1974), - [sym__unquoted_anonymous_prefix] = STATE(7283), [sym_comment] = STATE(661), - [aux_sym_shebang_repeat1] = STATE(952), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(669), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [sym__newline] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_err_GT_PIPE] = ACTIONS(2412), - [anon_sym_out_GT_PIPE] = ACTIONS(2412), - [anon_sym_e_GT_PIPE] = ACTIONS(2412), - [anon_sym_o_GT_PIPE] = ACTIONS(2412), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2412), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2412), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2412), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(2412), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2422), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_LT] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [anon_sym_DOT2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_alias] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_let_DASHenv] = ACTIONS(1839), + [anon_sym_mut] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [aux_sym_cmd_identifier_token1] = ACTIONS(1839), + [aux_sym_cmd_identifier_token2] = ACTIONS(1839), + [aux_sym_cmd_identifier_token3] = ACTIONS(1839), + [aux_sym_cmd_identifier_token4] = ACTIONS(1839), + [aux_sym_cmd_identifier_token5] = ACTIONS(1839), + [aux_sym_cmd_identifier_token6] = ACTIONS(1839), + [aux_sym_cmd_identifier_token7] = ACTIONS(1839), + [aux_sym_cmd_identifier_token8] = ACTIONS(1839), + [aux_sym_cmd_identifier_token9] = ACTIONS(1839), + [aux_sym_cmd_identifier_token10] = ACTIONS(1839), + [aux_sym_cmd_identifier_token11] = ACTIONS(1839), + [aux_sym_cmd_identifier_token12] = ACTIONS(1839), + [aux_sym_cmd_identifier_token13] = ACTIONS(1839), + [aux_sym_cmd_identifier_token14] = ACTIONS(1839), + [aux_sym_cmd_identifier_token15] = ACTIONS(1839), + [aux_sym_cmd_identifier_token16] = ACTIONS(1839), + [aux_sym_cmd_identifier_token17] = ACTIONS(1839), + [aux_sym_cmd_identifier_token18] = ACTIONS(1839), + [aux_sym_cmd_identifier_token19] = ACTIONS(1839), + [aux_sym_cmd_identifier_token20] = ACTIONS(1839), + [aux_sym_cmd_identifier_token21] = ACTIONS(1839), + [aux_sym_cmd_identifier_token22] = ACTIONS(1839), + [aux_sym_cmd_identifier_token23] = ACTIONS(1839), + [aux_sym_cmd_identifier_token24] = ACTIONS(1839), + [aux_sym_cmd_identifier_token25] = ACTIONS(1839), + [aux_sym_cmd_identifier_token26] = ACTIONS(1839), + [aux_sym_cmd_identifier_token27] = ACTIONS(1839), + [aux_sym_cmd_identifier_token28] = ACTIONS(1839), + [aux_sym_cmd_identifier_token29] = ACTIONS(1839), + [aux_sym_cmd_identifier_token30] = ACTIONS(1839), + [aux_sym_cmd_identifier_token31] = ACTIONS(1839), + [aux_sym_cmd_identifier_token32] = ACTIONS(1839), + [aux_sym_cmd_identifier_token33] = ACTIONS(1839), + [aux_sym_cmd_identifier_token34] = ACTIONS(1839), + [aux_sym_cmd_identifier_token35] = ACTIONS(1839), + [aux_sym_cmd_identifier_token36] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1839), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_export_DASHenv] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_list] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_in] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_make] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_else] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_catch] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_source] = ACTIONS(1839), + [anon_sym_source_DASHenv] = ACTIONS(1839), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_new] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(247), }, [662] = { - [sym_expr_parenthesized] = STATE(1561), - [sym_val_range] = STATE(1877), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1877), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1877), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1616), - [sym__unquoted_with_expr] = STATE(1883), - [sym__unquoted_anonymous_prefix] = STATE(7283), [sym_comment] = STATE(662), - [aux_sym_ctrl_do_repeat2] = STATE(666), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [sym__newline] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_err_GT_PIPE] = ACTIONS(2460), - [anon_sym_out_GT_PIPE] = ACTIONS(2460), - [anon_sym_e_GT_PIPE] = ACTIONS(2460), - [anon_sym_o_GT_PIPE] = ACTIONS(2460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2422), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_LT] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [anon_sym_DOT2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_list] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [663] = { - [sym_expr_parenthesized] = STATE(1561), - [sym_val_range] = STATE(1877), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1877), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1877), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1616), - [sym__unquoted_with_expr] = STATE(1883), - [sym__unquoted_anonymous_prefix] = STATE(7283), [sym_comment] = STATE(663), - [aux_sym_ctrl_do_repeat2] = STATE(665), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [sym__newline] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_err_GT_PIPE] = ACTIONS(2460), - [anon_sym_out_GT_PIPE] = ACTIONS(2460), - [anon_sym_e_GT_PIPE] = ACTIONS(2460), - [anon_sym_o_GT_PIPE] = ACTIONS(2460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2422), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_LT] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [anon_sym_DOT2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1770), + [anon_sym_alias] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1770), + [anon_sym_let_DASHenv] = ACTIONS(1770), + [anon_sym_mut] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [aux_sym_cmd_identifier_token1] = ACTIONS(1770), + [aux_sym_cmd_identifier_token2] = ACTIONS(1770), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [aux_sym_cmd_identifier_token6] = ACTIONS(1770), + [aux_sym_cmd_identifier_token7] = ACTIONS(1770), + [aux_sym_cmd_identifier_token8] = ACTIONS(1770), + [aux_sym_cmd_identifier_token9] = ACTIONS(1770), + [aux_sym_cmd_identifier_token10] = ACTIONS(1770), + [aux_sym_cmd_identifier_token11] = ACTIONS(1770), + [aux_sym_cmd_identifier_token12] = ACTIONS(1770), + [aux_sym_cmd_identifier_token13] = ACTIONS(1770), + [aux_sym_cmd_identifier_token14] = ACTIONS(1770), + [aux_sym_cmd_identifier_token15] = ACTIONS(1770), + [aux_sym_cmd_identifier_token16] = ACTIONS(1770), + [aux_sym_cmd_identifier_token17] = ACTIONS(1770), + [aux_sym_cmd_identifier_token18] = ACTIONS(1770), + [aux_sym_cmd_identifier_token19] = ACTIONS(1770), + [aux_sym_cmd_identifier_token20] = ACTIONS(1770), + [aux_sym_cmd_identifier_token21] = ACTIONS(1770), + [aux_sym_cmd_identifier_token22] = ACTIONS(1770), + [aux_sym_cmd_identifier_token23] = ACTIONS(1770), + [aux_sym_cmd_identifier_token24] = ACTIONS(1770), + [aux_sym_cmd_identifier_token25] = ACTIONS(1770), + [aux_sym_cmd_identifier_token26] = ACTIONS(1770), + [aux_sym_cmd_identifier_token27] = ACTIONS(1770), + [aux_sym_cmd_identifier_token28] = ACTIONS(1770), + [aux_sym_cmd_identifier_token29] = ACTIONS(1770), + [aux_sym_cmd_identifier_token30] = ACTIONS(1770), + [aux_sym_cmd_identifier_token31] = ACTIONS(1770), + [aux_sym_cmd_identifier_token32] = ACTIONS(1770), + [aux_sym_cmd_identifier_token33] = ACTIONS(1770), + [aux_sym_cmd_identifier_token34] = ACTIONS(1770), + [aux_sym_cmd_identifier_token35] = ACTIONS(1770), + [aux_sym_cmd_identifier_token36] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1770), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [anon_sym_def] = ACTIONS(1770), + [anon_sym_export_DASHenv] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_module] = ACTIONS(1770), + [anon_sym_use] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_error] = ACTIONS(1770), + [anon_sym_list] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_loop] = ACTIONS(1770), + [anon_sym_make] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_match] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1770), + [anon_sym_catch] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_source] = ACTIONS(1770), + [anon_sym_source_DASHenv] = ACTIONS(1770), + [anon_sym_register] = ACTIONS(1770), + [anon_sym_hide] = ACTIONS(1770), + [anon_sym_hide_DASHenv] = ACTIONS(1770), + [anon_sym_overlay] = ACTIONS(1770), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1770), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(247), }, [664] = { - [sym_expr_parenthesized] = STATE(1618), - [sym_val_range] = STATE(1973), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1973), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1973), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1721), - [sym__unquoted_with_expr] = STATE(1974), - [sym__unquoted_anonymous_prefix] = STATE(7283), [sym_comment] = STATE(664), - [aux_sym_shebang_repeat1] = STATE(952), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(661), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [sym__newline] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_err_GT_PIPE] = ACTIONS(2462), - [anon_sym_out_GT_PIPE] = ACTIONS(2462), - [anon_sym_e_GT_PIPE] = ACTIONS(2462), - [anon_sym_o_GT_PIPE] = ACTIONS(2462), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2462), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2462), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2462), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(2462), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2422), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_LT] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [anon_sym_DOT2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2383), + [anon_sym_alias] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_let_DASHenv] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [aux_sym_cmd_identifier_token1] = ACTIONS(2383), + [aux_sym_cmd_identifier_token2] = ACTIONS(2383), + [aux_sym_cmd_identifier_token3] = ACTIONS(2383), + [aux_sym_cmd_identifier_token4] = ACTIONS(2383), + [aux_sym_cmd_identifier_token5] = ACTIONS(2383), + [aux_sym_cmd_identifier_token6] = ACTIONS(2383), + [aux_sym_cmd_identifier_token7] = ACTIONS(2383), + [aux_sym_cmd_identifier_token8] = ACTIONS(2383), + [aux_sym_cmd_identifier_token9] = ACTIONS(2383), + [aux_sym_cmd_identifier_token10] = ACTIONS(2383), + [aux_sym_cmd_identifier_token11] = ACTIONS(2383), + [aux_sym_cmd_identifier_token12] = ACTIONS(2383), + [aux_sym_cmd_identifier_token13] = ACTIONS(2383), + [aux_sym_cmd_identifier_token14] = ACTIONS(2383), + [aux_sym_cmd_identifier_token15] = ACTIONS(2383), + [aux_sym_cmd_identifier_token16] = ACTIONS(2383), + [aux_sym_cmd_identifier_token17] = ACTIONS(2383), + [aux_sym_cmd_identifier_token18] = ACTIONS(2383), + [aux_sym_cmd_identifier_token19] = ACTIONS(2383), + [aux_sym_cmd_identifier_token20] = ACTIONS(2383), + [aux_sym_cmd_identifier_token21] = ACTIONS(2383), + [aux_sym_cmd_identifier_token22] = ACTIONS(2383), + [aux_sym_cmd_identifier_token23] = ACTIONS(2383), + [aux_sym_cmd_identifier_token24] = ACTIONS(2383), + [aux_sym_cmd_identifier_token25] = ACTIONS(2383), + [aux_sym_cmd_identifier_token26] = ACTIONS(2383), + [aux_sym_cmd_identifier_token27] = ACTIONS(2383), + [aux_sym_cmd_identifier_token28] = ACTIONS(2383), + [aux_sym_cmd_identifier_token29] = ACTIONS(2383), + [aux_sym_cmd_identifier_token30] = ACTIONS(2383), + [aux_sym_cmd_identifier_token31] = ACTIONS(2383), + [aux_sym_cmd_identifier_token32] = ACTIONS(2383), + [aux_sym_cmd_identifier_token33] = ACTIONS(2383), + [aux_sym_cmd_identifier_token34] = ACTIONS(2383), + [aux_sym_cmd_identifier_token35] = ACTIONS(2383), + [aux_sym_cmd_identifier_token36] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2385), + [aux_sym_cmd_identifier_token38] = ACTIONS(2383), + [aux_sym_cmd_identifier_token39] = ACTIONS(2385), + [aux_sym_cmd_identifier_token40] = ACTIONS(2385), + [anon_sym_def] = ACTIONS(2383), + [anon_sym_export_DASHenv] = ACTIONS(2383), + [anon_sym_extern] = ACTIONS(2383), + [anon_sym_module] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_error] = ACTIONS(2383), + [anon_sym_list] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_make] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [anon_sym_do] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_else] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2383), + [anon_sym_catch] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_source] = ACTIONS(2383), + [anon_sym_source_DASHenv] = ACTIONS(2383), + [anon_sym_register] = ACTIONS(2383), + [anon_sym_hide] = ACTIONS(2383), + [anon_sym_hide_DASHenv] = ACTIONS(2383), + [anon_sym_overlay] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2385), + [aux_sym__val_number_decimal_token1] = ACTIONS(2383), + [aux_sym__val_number_decimal_token2] = ACTIONS(2385), + [aux_sym__val_number_decimal_token3] = ACTIONS(2385), + [aux_sym__val_number_decimal_token4] = ACTIONS(2385), + [aux_sym__val_number_token1] = ACTIONS(2385), + [aux_sym__val_number_token2] = ACTIONS(2385), + [aux_sym__val_number_token3] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(2385), + [sym__str_single_quotes] = ACTIONS(2385), + [sym__str_back_ticks] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(247), }, [665] = { - [sym_expr_parenthesized] = STATE(1561), - [sym_val_range] = STATE(1877), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1877), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1877), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1616), - [sym__unquoted_with_expr] = STATE(1883), - [sym__unquoted_anonymous_prefix] = STATE(7283), [sym_comment] = STATE(665), - [aux_sym_ctrl_do_repeat2] = STATE(665), - [anon_sym_true] = ACTIONS(2464), - [anon_sym_false] = ACTIONS(2464), - [anon_sym_null] = ACTIONS(2467), - [aux_sym_cmd_identifier_token38] = ACTIONS(2470), - [aux_sym_cmd_identifier_token39] = ACTIONS(2470), - [aux_sym_cmd_identifier_token40] = ACTIONS(2470), - [sym__newline] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_err_GT_PIPE] = ACTIONS(2473), - [anon_sym_out_GT_PIPE] = ACTIONS(2473), - [anon_sym_e_GT_PIPE] = ACTIONS(2473), - [anon_sym_o_GT_PIPE] = ACTIONS(2473), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2473), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2473), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2473), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_DOLLAR] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2484), - [anon_sym_DASH] = ACTIONS(2487), - [aux_sym_ctrl_match_token1] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2496), - [anon_sym_DOT_DOT_LT] = ACTIONS(2496), - [aux_sym__val_number_decimal_token1] = ACTIONS(2499), - [aux_sym__val_number_decimal_token2] = ACTIONS(2502), - [anon_sym_DOT2] = ACTIONS(2505), - [aux_sym__val_number_decimal_token3] = ACTIONS(2508), - [aux_sym__val_number_token1] = ACTIONS(2511), - [aux_sym__val_number_token2] = ACTIONS(2511), - [aux_sym__val_number_token3] = ACTIONS(2511), - [anon_sym_0b] = ACTIONS(2514), - [anon_sym_0o] = ACTIONS(2517), - [anon_sym_0x] = ACTIONS(2517), - [sym_val_date] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2523), - [sym__str_single_quotes] = ACTIONS(2526), - [sym__str_back_ticks] = ACTIONS(2526), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2532), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2538), - [anon_sym_out_GT_GT] = ACTIONS(2538), - [anon_sym_e_GT_GT] = ACTIONS(2538), - [anon_sym_o_GT_GT] = ACTIONS(2538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2538), - [aux_sym_unquoted_token1] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2326), + [anon_sym_alias] = ACTIONS(2326), + [anon_sym_let] = ACTIONS(2326), + [anon_sym_let_DASHenv] = ACTIONS(2326), + [anon_sym_mut] = ACTIONS(2326), + [anon_sym_const] = ACTIONS(2326), + [aux_sym_cmd_identifier_token1] = ACTIONS(2326), + [aux_sym_cmd_identifier_token2] = ACTIONS(2326), + [aux_sym_cmd_identifier_token3] = ACTIONS(2326), + [aux_sym_cmd_identifier_token4] = ACTIONS(2326), + [aux_sym_cmd_identifier_token5] = ACTIONS(2326), + [aux_sym_cmd_identifier_token6] = ACTIONS(2326), + [aux_sym_cmd_identifier_token7] = ACTIONS(2326), + [aux_sym_cmd_identifier_token8] = ACTIONS(2326), + [aux_sym_cmd_identifier_token9] = ACTIONS(2326), + [aux_sym_cmd_identifier_token10] = ACTIONS(2326), + [aux_sym_cmd_identifier_token11] = ACTIONS(2326), + [aux_sym_cmd_identifier_token12] = ACTIONS(2326), + [aux_sym_cmd_identifier_token13] = ACTIONS(2326), + [aux_sym_cmd_identifier_token14] = ACTIONS(2326), + [aux_sym_cmd_identifier_token15] = ACTIONS(2326), + [aux_sym_cmd_identifier_token16] = ACTIONS(2326), + [aux_sym_cmd_identifier_token17] = ACTIONS(2326), + [aux_sym_cmd_identifier_token18] = ACTIONS(2326), + [aux_sym_cmd_identifier_token19] = ACTIONS(2326), + [aux_sym_cmd_identifier_token20] = ACTIONS(2326), + [aux_sym_cmd_identifier_token21] = ACTIONS(2326), + [aux_sym_cmd_identifier_token22] = ACTIONS(2326), + [aux_sym_cmd_identifier_token23] = ACTIONS(2326), + [aux_sym_cmd_identifier_token24] = ACTIONS(2326), + [aux_sym_cmd_identifier_token25] = ACTIONS(2326), + [aux_sym_cmd_identifier_token26] = ACTIONS(2326), + [aux_sym_cmd_identifier_token27] = ACTIONS(2326), + [aux_sym_cmd_identifier_token28] = ACTIONS(2326), + [aux_sym_cmd_identifier_token29] = ACTIONS(2326), + [aux_sym_cmd_identifier_token30] = ACTIONS(2326), + [aux_sym_cmd_identifier_token31] = ACTIONS(2326), + [aux_sym_cmd_identifier_token32] = ACTIONS(2326), + [aux_sym_cmd_identifier_token33] = ACTIONS(2326), + [aux_sym_cmd_identifier_token34] = ACTIONS(2326), + [aux_sym_cmd_identifier_token35] = ACTIONS(2326), + [aux_sym_cmd_identifier_token36] = ACTIONS(2326), + [anon_sym_true] = ACTIONS(2328), + [anon_sym_false] = ACTIONS(2328), + [anon_sym_null] = ACTIONS(2328), + [aux_sym_cmd_identifier_token38] = ACTIONS(2326), + [aux_sym_cmd_identifier_token39] = ACTIONS(2328), + [aux_sym_cmd_identifier_token40] = ACTIONS(2328), + [anon_sym_def] = ACTIONS(2326), + [anon_sym_export_DASHenv] = ACTIONS(2326), + [anon_sym_extern] = ACTIONS(2326), + [anon_sym_module] = ACTIONS(2326), + [anon_sym_use] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_DOLLAR] = ACTIONS(2328), + [anon_sym_error] = ACTIONS(2326), + [anon_sym_list] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2326), + [anon_sym_continue] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_in] = ACTIONS(2326), + [anon_sym_loop] = ACTIONS(2326), + [anon_sym_make] = ACTIONS(2326), + [anon_sym_while] = ACTIONS(2326), + [anon_sym_do] = ACTIONS(2326), + [anon_sym_if] = ACTIONS(2326), + [anon_sym_else] = ACTIONS(2326), + [anon_sym_match] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2326), + [anon_sym_catch] = ACTIONS(2326), + [anon_sym_return] = ACTIONS(2326), + [anon_sym_source] = ACTIONS(2326), + [anon_sym_source_DASHenv] = ACTIONS(2326), + [anon_sym_register] = ACTIONS(2326), + [anon_sym_hide] = ACTIONS(2326), + [anon_sym_hide_DASHenv] = ACTIONS(2326), + [anon_sym_overlay] = ACTIONS(2326), + [anon_sym_new] = ACTIONS(2326), + [anon_sym_as] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2328), + [aux_sym__val_number_decimal_token1] = ACTIONS(2326), + [aux_sym__val_number_decimal_token2] = ACTIONS(2328), + [aux_sym__val_number_decimal_token3] = ACTIONS(2328), + [aux_sym__val_number_decimal_token4] = ACTIONS(2328), + [aux_sym__val_number_token1] = ACTIONS(2328), + [aux_sym__val_number_token2] = ACTIONS(2328), + [aux_sym__val_number_token3] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym__str_single_quotes] = ACTIONS(2328), + [sym__str_back_ticks] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(247), }, [666] = { - [sym_expr_parenthesized] = STATE(1561), - [sym_val_range] = STATE(1877), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1877), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1877), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1616), - [sym__unquoted_with_expr] = STATE(1883), - [sym__unquoted_anonymous_prefix] = STATE(7283), [sym_comment] = STATE(666), - [aux_sym_ctrl_do_repeat2] = STATE(665), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [sym__newline] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_err_GT_PIPE] = ACTIONS(2544), - [anon_sym_out_GT_PIPE] = ACTIONS(2544), - [anon_sym_e_GT_PIPE] = ACTIONS(2544), - [anon_sym_o_GT_PIPE] = ACTIONS(2544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(2544), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2422), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_LT] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [anon_sym_DOT2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1006), + [aux_sym_cmd_identifier_token3] = ACTIONS(1006), + [aux_sym_cmd_identifier_token4] = ACTIONS(1006), + [aux_sym_cmd_identifier_token5] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1006), + [aux_sym_cmd_identifier_token7] = ACTIONS(1006), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1006), + [aux_sym_cmd_identifier_token17] = ACTIONS(1006), + [aux_sym_cmd_identifier_token18] = ACTIONS(1006), + [aux_sym_cmd_identifier_token19] = ACTIONS(1006), + [aux_sym_cmd_identifier_token20] = ACTIONS(1006), + [aux_sym_cmd_identifier_token21] = ACTIONS(1006), + [aux_sym_cmd_identifier_token22] = ACTIONS(1006), + [aux_sym_cmd_identifier_token23] = ACTIONS(1006), + [aux_sym_cmd_identifier_token24] = ACTIONS(1006), + [aux_sym_cmd_identifier_token25] = ACTIONS(1006), + [aux_sym_cmd_identifier_token26] = ACTIONS(1006), + [aux_sym_cmd_identifier_token27] = ACTIONS(1006), + [aux_sym_cmd_identifier_token28] = ACTIONS(1006), + [aux_sym_cmd_identifier_token29] = ACTIONS(1006), + [aux_sym_cmd_identifier_token30] = ACTIONS(1006), + [aux_sym_cmd_identifier_token31] = ACTIONS(1006), + [aux_sym_cmd_identifier_token32] = ACTIONS(1006), + [aux_sym_cmd_identifier_token33] = ACTIONS(1006), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1006), + [aux_sym_cmd_identifier_token36] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), }, [667] = { - [sym_expr_parenthesized] = STATE(1618), - [sym_val_range] = STATE(1973), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1973), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1973), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1721), - [sym__unquoted_with_expr] = STATE(1974), - [sym__unquoted_anonymous_prefix] = STATE(7283), [sym_comment] = STATE(667), - [aux_sym_shebang_repeat1] = STATE(952), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(669), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [sym__newline] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_err_GT_PIPE] = ACTIONS(2462), - [anon_sym_out_GT_PIPE] = ACTIONS(2462), - [anon_sym_e_GT_PIPE] = ACTIONS(2462), - [anon_sym_o_GT_PIPE] = ACTIONS(2462), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2462), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2462), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2462), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(2462), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2422), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_LT] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [anon_sym_DOT2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2271), + [anon_sym_alias] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_let_DASHenv] = ACTIONS(2271), + [anon_sym_mut] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [aux_sym_cmd_identifier_token1] = ACTIONS(2271), + [aux_sym_cmd_identifier_token2] = ACTIONS(2271), + [aux_sym_cmd_identifier_token3] = ACTIONS(2271), + [aux_sym_cmd_identifier_token4] = ACTIONS(2271), + [aux_sym_cmd_identifier_token5] = ACTIONS(2271), + [aux_sym_cmd_identifier_token6] = ACTIONS(2271), + [aux_sym_cmd_identifier_token7] = ACTIONS(2271), + [aux_sym_cmd_identifier_token8] = ACTIONS(2271), + [aux_sym_cmd_identifier_token9] = ACTIONS(2271), + [aux_sym_cmd_identifier_token10] = ACTIONS(2271), + [aux_sym_cmd_identifier_token11] = ACTIONS(2271), + [aux_sym_cmd_identifier_token12] = ACTIONS(2271), + [aux_sym_cmd_identifier_token13] = ACTIONS(2271), + [aux_sym_cmd_identifier_token14] = ACTIONS(2271), + [aux_sym_cmd_identifier_token15] = ACTIONS(2271), + [aux_sym_cmd_identifier_token16] = ACTIONS(2271), + [aux_sym_cmd_identifier_token17] = ACTIONS(2271), + [aux_sym_cmd_identifier_token18] = ACTIONS(2271), + [aux_sym_cmd_identifier_token19] = ACTIONS(2271), + [aux_sym_cmd_identifier_token20] = ACTIONS(2271), + [aux_sym_cmd_identifier_token21] = ACTIONS(2271), + [aux_sym_cmd_identifier_token22] = ACTIONS(2271), + [aux_sym_cmd_identifier_token23] = ACTIONS(2271), + [aux_sym_cmd_identifier_token24] = ACTIONS(2271), + [aux_sym_cmd_identifier_token25] = ACTIONS(2271), + [aux_sym_cmd_identifier_token26] = ACTIONS(2271), + [aux_sym_cmd_identifier_token27] = ACTIONS(2271), + [aux_sym_cmd_identifier_token28] = ACTIONS(2271), + [aux_sym_cmd_identifier_token29] = ACTIONS(2271), + [aux_sym_cmd_identifier_token30] = ACTIONS(2271), + [aux_sym_cmd_identifier_token31] = ACTIONS(2271), + [aux_sym_cmd_identifier_token32] = ACTIONS(2271), + [aux_sym_cmd_identifier_token33] = ACTIONS(2271), + [aux_sym_cmd_identifier_token34] = ACTIONS(2271), + [aux_sym_cmd_identifier_token35] = ACTIONS(2271), + [aux_sym_cmd_identifier_token36] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_null] = ACTIONS(2273), + [aux_sym_cmd_identifier_token38] = ACTIONS(2271), + [aux_sym_cmd_identifier_token39] = ACTIONS(2273), + [aux_sym_cmd_identifier_token40] = ACTIONS(2273), + [anon_sym_def] = ACTIONS(2271), + [anon_sym_export_DASHenv] = ACTIONS(2271), + [anon_sym_extern] = ACTIONS(2271), + [anon_sym_module] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_DOLLAR] = ACTIONS(2273), + [anon_sym_error] = ACTIONS(2271), + [anon_sym_list] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_in] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_make] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [anon_sym_do] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_else] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2271), + [anon_sym_catch] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_source] = ACTIONS(2271), + [anon_sym_source_DASHenv] = ACTIONS(2271), + [anon_sym_register] = ACTIONS(2271), + [anon_sym_hide] = ACTIONS(2271), + [anon_sym_hide_DASHenv] = ACTIONS(2271), + [anon_sym_overlay] = ACTIONS(2271), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2273), + [aux_sym__val_number_decimal_token1] = ACTIONS(2271), + [aux_sym__val_number_decimal_token2] = ACTIONS(2273), + [aux_sym__val_number_decimal_token3] = ACTIONS(2273), + [aux_sym__val_number_decimal_token4] = ACTIONS(2273), + [aux_sym__val_number_token1] = ACTIONS(2273), + [aux_sym__val_number_token2] = ACTIONS(2273), + [aux_sym__val_number_token3] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [sym__str_single_quotes] = ACTIONS(2273), + [sym__str_back_ticks] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_POUND] = ACTIONS(247), }, [668] = { - [sym_expr_parenthesized] = STATE(1561), - [sym_val_range] = STATE(1877), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1877), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1877), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1616), - [sym__unquoted_with_expr] = STATE(1883), - [sym__unquoted_anonymous_prefix] = STATE(7283), + [sym_expr_parenthesized] = STATE(1646), + [sym_val_range] = STATE(2010), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(2010), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(2010), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1694), + [sym__unquoted_with_expr] = STATE(2021), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(668), - [aux_sym_ctrl_do_repeat2] = STATE(663), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [sym__newline] = ACTIONS(2546), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_err_GT_PIPE] = ACTIONS(2546), - [anon_sym_out_GT_PIPE] = ACTIONS(2546), - [anon_sym_e_GT_PIPE] = ACTIONS(2546), - [anon_sym_o_GT_PIPE] = ACTIONS(2546), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2546), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2546), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2546), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(2546), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2422), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_LT] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [anon_sym_DOT2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(825), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(677), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2459), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [sym__newline] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_err_GT_PIPE] = ACTIONS(2463), + [anon_sym_out_GT_PIPE] = ACTIONS(2463), + [anon_sym_e_GT_PIPE] = ACTIONS(2463), + [anon_sym_o_GT_PIPE] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2473), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), + [anon_sym_DOT_DOT_LT] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(247), }, [669] = { - [sym_expr_parenthesized] = STATE(1618), - [sym_val_range] = STATE(1973), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1973), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1973), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1721), - [sym__unquoted_with_expr] = STATE(1974), - [sym__unquoted_anonymous_prefix] = STATE(7283), + [sym_expr_parenthesized] = STATE(1543), + [sym_val_range] = STATE(1909), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(1909), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(1909), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1670), + [sym__unquoted_with_expr] = STATE(1915), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(669), - [aux_sym_shebang_repeat1] = STATE(952), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(669), - [anon_sym_true] = ACTIONS(2548), - [anon_sym_false] = ACTIONS(2548), - [anon_sym_null] = ACTIONS(2551), - [aux_sym_cmd_identifier_token38] = ACTIONS(2554), - [aux_sym_cmd_identifier_token39] = ACTIONS(2554), - [aux_sym_cmd_identifier_token40] = ACTIONS(2554), - [sym__newline] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_err_GT_PIPE] = ACTIONS(2560), - [anon_sym_out_GT_PIPE] = ACTIONS(2560), - [anon_sym_e_GT_PIPE] = ACTIONS(2560), - [anon_sym_o_GT_PIPE] = ACTIONS(2560), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2560), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2560), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2560), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2565), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_DOLLAR] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2574), - [aux_sym_ctrl_match_token1] = ACTIONS(2577), - [anon_sym_DOT_DOT] = ACTIONS(2580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2583), - [anon_sym_DOT_DOT_LT] = ACTIONS(2583), - [aux_sym__val_number_decimal_token1] = ACTIONS(2586), - [aux_sym__val_number_decimal_token2] = ACTIONS(2589), - [anon_sym_DOT2] = ACTIONS(2592), - [aux_sym__val_number_decimal_token3] = ACTIONS(2595), - [aux_sym__val_number_token1] = ACTIONS(2598), - [aux_sym__val_number_token2] = ACTIONS(2598), - [aux_sym__val_number_token3] = ACTIONS(2598), - [anon_sym_0b] = ACTIONS(2601), - [anon_sym_0o] = ACTIONS(2604), - [anon_sym_0x] = ACTIONS(2604), - [sym_val_date] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(2610), - [sym__str_single_quotes] = ACTIONS(2613), - [sym__str_back_ticks] = ACTIONS(2613), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_err_GT] = ACTIONS(2622), - [anon_sym_out_GT] = ACTIONS(2622), - [anon_sym_e_GT] = ACTIONS(2622), - [anon_sym_o_GT] = ACTIONS(2622), - [anon_sym_err_PLUSout_GT] = ACTIONS(2622), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2622), - [anon_sym_o_PLUSe_GT] = ACTIONS(2622), - [anon_sym_e_PLUSo_GT] = ACTIONS(2622), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym_unquoted_token1] = ACTIONS(2628), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(669), + [anon_sym_true] = ACTIONS(2511), + [anon_sym_false] = ACTIONS(2511), + [anon_sym_null] = ACTIONS(2514), + [aux_sym_cmd_identifier_token38] = ACTIONS(2517), + [aux_sym_cmd_identifier_token39] = ACTIONS(2517), + [aux_sym_cmd_identifier_token40] = ACTIONS(2517), + [sym__newline] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_err_GT_PIPE] = ACTIONS(2520), + [anon_sym_out_GT_PIPE] = ACTIONS(2520), + [anon_sym_e_GT_PIPE] = ACTIONS(2520), + [anon_sym_o_GT_PIPE] = ACTIONS(2520), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2520), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2520), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2520), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_RPAREN] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2534), + [aux_sym_ctrl_match_token1] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_DOT_DOT] = ACTIONS(2540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2543), + [anon_sym_DOT_DOT_LT] = ACTIONS(2543), + [aux_sym__val_number_decimal_token1] = ACTIONS(2546), + [aux_sym__val_number_decimal_token2] = ACTIONS(2549), + [aux_sym__val_number_decimal_token3] = ACTIONS(2552), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2558), + [aux_sym__val_number_token2] = ACTIONS(2558), + [aux_sym__val_number_token3] = ACTIONS(2558), + [anon_sym_0b] = ACTIONS(2561), + [anon_sym_0o] = ACTIONS(2564), + [anon_sym_0x] = ACTIONS(2564), + [sym_val_date] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2570), + [sym__str_single_quotes] = ACTIONS(2573), + [sym__str_back_ticks] = ACTIONS(2573), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2576), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), + [anon_sym_err_GT] = ACTIONS(2582), + [anon_sym_out_GT] = ACTIONS(2582), + [anon_sym_e_GT] = ACTIONS(2582), + [anon_sym_o_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT] = ACTIONS(2582), + [anon_sym_err_GT_GT] = ACTIONS(2585), + [anon_sym_out_GT_GT] = ACTIONS(2585), + [anon_sym_e_GT_GT] = ACTIONS(2585), + [anon_sym_o_GT_GT] = ACTIONS(2585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2585), + [aux_sym_unquoted_token1] = ACTIONS(2588), + [anon_sym_POUND] = ACTIONS(247), }, [670] = { - [sym_expr_parenthesized] = STATE(1618), - [sym_val_range] = STATE(1973), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1973), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1973), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1721), - [sym__unquoted_with_expr] = STATE(1974), - [sym__unquoted_anonymous_prefix] = STATE(7283), + [sym_expr_parenthesized] = STATE(1646), + [sym_val_range] = STATE(2010), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(2010), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(2010), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1694), + [sym__unquoted_with_expr] = STATE(2021), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(670), - [aux_sym_shebang_repeat1] = STATE(952), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(667), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [sym__newline] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_err_GT_PIPE] = ACTIONS(2631), - [anon_sym_out_GT_PIPE] = ACTIONS(2631), - [anon_sym_e_GT_PIPE] = ACTIONS(2631), - [anon_sym_o_GT_PIPE] = ACTIONS(2631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(2631), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2422), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_LT] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [anon_sym_DOT2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(825), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(671), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2459), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2473), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), + [anon_sym_DOT_DOT_LT] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(247), }, [671] = { - [sym_expr_parenthesized] = STATE(1632), - [sym_val_range] = STATE(1970), - [sym__val_range] = STATE(7567), - [sym__val_range_with_end] = STATE(7584), - [sym__value] = STATE(1970), - [sym_val_nothing] = STATE(1933), - [sym_val_bool] = STATE(1706), - [sym_val_variable] = STATE(1640), - [sym_val_number] = STATE(1933), - [sym__val_number_decimal] = STATE(1285), - [sym__val_number] = STATE(2001), - [sym_val_duration] = STATE(1933), - [sym_val_filesize] = STATE(1933), - [sym_val_binary] = STATE(1933), - [sym_val_string] = STATE(1933), - [sym__str_double_quotes] = STATE(1936), - [sym_val_interpolated] = STATE(1933), - [sym__inter_single_quotes] = STATE(1924), - [sym__inter_double_quotes] = STATE(1925), - [sym_val_list] = STATE(1933), - [sym_val_record] = STATE(1933), - [sym_val_table] = STATE(1933), - [sym_val_closure] = STATE(1933), - [sym__flag] = STATE(1970), - [sym_short_flag] = STATE(2090), - [sym_long_flag] = STATE(2090), - [sym_unquoted] = STATE(1748), - [sym__unquoted_with_expr] = STATE(2017), - [sym__unquoted_anonymous_prefix] = STATE(7096), + [sym_expr_parenthesized] = STATE(1646), + [sym_val_range] = STATE(2010), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(2010), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(2010), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1694), + [sym__unquoted_with_expr] = STATE(2021), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(671), - [aux_sym_ctrl_do_repeat2] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_null] = ACTIONS(2635), - [aux_sym_cmd_identifier_token38] = ACTIONS(2637), - [aux_sym_cmd_identifier_token39] = ACTIONS(2637), - [aux_sym_cmd_identifier_token40] = ACTIONS(2637), - [sym__newline] = ACTIONS(2546), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_err_GT_PIPE] = ACTIONS(2546), - [anon_sym_out_GT_PIPE] = ACTIONS(2546), - [anon_sym_e_GT_PIPE] = ACTIONS(2546), - [anon_sym_o_GT_PIPE] = ACTIONS(2546), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2546), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2546), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2546), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2647), - [aux_sym_ctrl_match_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2653), - [anon_sym_DOT_DOT_LT] = ACTIONS(2653), - [aux_sym__val_number_decimal_token1] = ACTIONS(2655), - [aux_sym__val_number_decimal_token2] = ACTIONS(2657), - [anon_sym_DOT2] = ACTIONS(2659), - [aux_sym__val_number_decimal_token3] = ACTIONS(2661), - [aux_sym__val_number_token1] = ACTIONS(2663), - [aux_sym__val_number_token2] = ACTIONS(2663), - [aux_sym__val_number_token3] = ACTIONS(2663), - [anon_sym_0b] = ACTIONS(2665), - [anon_sym_0o] = ACTIONS(2667), - [anon_sym_0x] = ACTIONS(2667), - [sym_val_date] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym__str_single_quotes] = ACTIONS(2673), - [sym__str_back_ticks] = ACTIONS(2673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2679), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(825), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(677), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2459), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [sym__newline] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_PIPE] = ACTIONS(2593), + [anon_sym_err_GT_PIPE] = ACTIONS(2593), + [anon_sym_out_GT_PIPE] = ACTIONS(2593), + [anon_sym_e_GT_PIPE] = ACTIONS(2593), + [anon_sym_o_GT_PIPE] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2593), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2473), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), + [anon_sym_DOT_DOT_LT] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(247), }, [672] = { - [sym_expr_parenthesized] = STATE(1632), - [sym_val_range] = STATE(1970), - [sym__val_range] = STATE(7567), - [sym__val_range_with_end] = STATE(7584), - [sym__value] = STATE(1970), - [sym_val_nothing] = STATE(1933), - [sym_val_bool] = STATE(1706), - [sym_val_variable] = STATE(1640), - [sym_val_number] = STATE(1933), - [sym__val_number_decimal] = STATE(1285), - [sym__val_number] = STATE(2001), - [sym_val_duration] = STATE(1933), - [sym_val_filesize] = STATE(1933), - [sym_val_binary] = STATE(1933), - [sym_val_string] = STATE(1933), - [sym__str_double_quotes] = STATE(1936), - [sym_val_interpolated] = STATE(1933), - [sym__inter_single_quotes] = STATE(1924), - [sym__inter_double_quotes] = STATE(1925), - [sym_val_list] = STATE(1933), - [sym_val_record] = STATE(1933), - [sym_val_table] = STATE(1933), - [sym_val_closure] = STATE(1933), - [sym__flag] = STATE(1970), - [sym_short_flag] = STATE(2090), - [sym_long_flag] = STATE(2090), - [sym_unquoted] = STATE(1748), - [sym__unquoted_with_expr] = STATE(2017), - [sym__unquoted_anonymous_prefix] = STATE(7096), + [sym_expr_parenthesized] = STATE(1646), + [sym_val_range] = STATE(2010), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(2010), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(2010), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1694), + [sym__unquoted_with_expr] = STATE(2021), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(672), - [aux_sym_ctrl_do_repeat2] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2681), - [anon_sym_false] = ACTIONS(2681), - [anon_sym_null] = ACTIONS(2684), - [aux_sym_cmd_identifier_token38] = ACTIONS(2687), - [aux_sym_cmd_identifier_token39] = ACTIONS(2687), - [aux_sym_cmd_identifier_token40] = ACTIONS(2687), - [sym__newline] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_err_GT_PIPE] = ACTIONS(2473), - [anon_sym_out_GT_PIPE] = ACTIONS(2473), - [anon_sym_e_GT_PIPE] = ACTIONS(2473), - [anon_sym_o_GT_PIPE] = ACTIONS(2473), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2473), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2473), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2473), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_DOLLAR] = ACTIONS(2696), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [anon_sym_DASH] = ACTIONS(2702), - [aux_sym_ctrl_match_token1] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2708), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2711), - [anon_sym_DOT_DOT_LT] = ACTIONS(2711), - [aux_sym__val_number_decimal_token1] = ACTIONS(2714), - [aux_sym__val_number_decimal_token2] = ACTIONS(2717), - [anon_sym_DOT2] = ACTIONS(2720), - [aux_sym__val_number_decimal_token3] = ACTIONS(2723), - [aux_sym__val_number_token1] = ACTIONS(2726), - [aux_sym__val_number_token2] = ACTIONS(2726), - [aux_sym__val_number_token3] = ACTIONS(2726), - [anon_sym_0b] = ACTIONS(2729), - [anon_sym_0o] = ACTIONS(2732), - [anon_sym_0x] = ACTIONS(2732), - [sym_val_date] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2738), - [sym__str_single_quotes] = ACTIONS(2741), - [sym__str_back_ticks] = ACTIONS(2741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2744), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2747), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2538), - [anon_sym_out_GT_GT] = ACTIONS(2538), - [anon_sym_e_GT_GT] = ACTIONS(2538), - [anon_sym_o_GT_GT] = ACTIONS(2538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2538), - [aux_sym_unquoted_token1] = ACTIONS(2750), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(825), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(668), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2459), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [sym__newline] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_PIPE] = ACTIONS(2593), + [anon_sym_err_GT_PIPE] = ACTIONS(2593), + [anon_sym_out_GT_PIPE] = ACTIONS(2593), + [anon_sym_e_GT_PIPE] = ACTIONS(2593), + [anon_sym_o_GT_PIPE] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2593), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2473), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), + [anon_sym_DOT_DOT_LT] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(247), }, [673] = { - [sym__match_pattern_expression] = STATE(3197), - [sym__match_pattern_value] = STATE(3232), - [sym__match_pattern_list] = STATE(3235), - [sym__match_pattern_rest] = STATE(8026), - [sym__match_pattern_record] = STATE(3236), - [sym_expr_parenthesized] = STATE(2891), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(3159), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(3161), - [sym_val_bool] = STATE(3000), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(2894), - [sym_val_number] = STATE(3161), - [sym__val_number_decimal] = STATE(2527), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(3161), - [sym_val_filesize] = STATE(3161), - [sym_val_binary] = STATE(3161), - [sym_val_string] = STATE(3161), - [sym__str_double_quotes] = STATE(3163), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7367), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7767), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(3161), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(3002), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(1543), + [sym_val_range] = STATE(1909), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(1909), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(1909), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1670), + [sym__unquoted_with_expr] = STATE(1915), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(673), - [aux_sym_shebang_repeat1] = STATE(747), - [aux_sym__match_pattern_list_repeat1] = STATE(1311), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2753), - [anon_sym_false] = ACTIONS(2753), - [anon_sym_null] = ACTIONS(2755), - [aux_sym_cmd_identifier_token38] = ACTIONS(2757), - [aux_sym_cmd_identifier_token39] = ACTIONS(2757), - [aux_sym_cmd_identifier_token40] = ACTIONS(2757), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2761), - [anon_sym_RBRACK] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2767), - [aux_sym_ctrl_match_token1] = ACTIONS(2769), - [anon_sym_DOT_DOT] = ACTIONS(2771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2773), - [anon_sym_DOT_DOT_LT] = ACTIONS(2773), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2775), - [aux_sym__val_number_decimal_token2] = ACTIONS(2777), - [anon_sym_DOT2] = ACTIONS(2779), - [aux_sym__val_number_decimal_token3] = ACTIONS(2781), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym__str_single_quotes] = ACTIONS(2793), - [sym__str_back_ticks] = ACTIONS(2793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(675), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2459), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [sym__newline] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2595), + [anon_sym_err_GT_PIPE] = ACTIONS(2595), + [anon_sym_out_GT_PIPE] = ACTIONS(2595), + [anon_sym_e_GT_PIPE] = ACTIONS(2595), + [anon_sym_o_GT_PIPE] = ACTIONS(2595), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2595), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2595), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2595), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2595), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2473), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), + [anon_sym_DOT_DOT_LT] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(247), }, [674] = { - [sym_expr_parenthesized] = STATE(1632), - [sym_val_range] = STATE(1970), - [sym__val_range] = STATE(7567), - [sym__val_range_with_end] = STATE(7584), - [sym__value] = STATE(1970), - [sym_val_nothing] = STATE(1933), - [sym_val_bool] = STATE(1706), - [sym_val_variable] = STATE(1640), - [sym_val_number] = STATE(1933), - [sym__val_number_decimal] = STATE(1285), - [sym__val_number] = STATE(2001), - [sym_val_duration] = STATE(1933), - [sym_val_filesize] = STATE(1933), - [sym_val_binary] = STATE(1933), - [sym_val_string] = STATE(1933), - [sym__str_double_quotes] = STATE(1936), - [sym_val_interpolated] = STATE(1933), - [sym__inter_single_quotes] = STATE(1924), - [sym__inter_double_quotes] = STATE(1925), - [sym_val_list] = STATE(1933), - [sym_val_record] = STATE(1933), - [sym_val_table] = STATE(1933), - [sym_val_closure] = STATE(1933), - [sym__flag] = STATE(1970), - [sym_short_flag] = STATE(2090), - [sym_long_flag] = STATE(2090), - [sym_unquoted] = STATE(1748), - [sym__unquoted_with_expr] = STATE(2017), - [sym__unquoted_anonymous_prefix] = STATE(7096), + [sym_expr_parenthesized] = STATE(1543), + [sym_val_range] = STATE(1909), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(1909), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(1909), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1670), + [sym__unquoted_with_expr] = STATE(1915), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(674), - [aux_sym_ctrl_do_repeat2] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(2460), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_null] = ACTIONS(2635), - [aux_sym_cmd_identifier_token38] = ACTIONS(2637), - [aux_sym_cmd_identifier_token39] = ACTIONS(2637), - [aux_sym_cmd_identifier_token40] = ACTIONS(2637), - [sym__newline] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_err_GT_PIPE] = ACTIONS(2460), - [anon_sym_out_GT_PIPE] = ACTIONS(2460), - [anon_sym_e_GT_PIPE] = ACTIONS(2460), - [anon_sym_o_GT_PIPE] = ACTIONS(2460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2647), - [aux_sym_ctrl_match_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2653), - [anon_sym_DOT_DOT_LT] = ACTIONS(2653), - [aux_sym__val_number_decimal_token1] = ACTIONS(2655), - [aux_sym__val_number_decimal_token2] = ACTIONS(2657), - [anon_sym_DOT2] = ACTIONS(2659), - [aux_sym__val_number_decimal_token3] = ACTIONS(2661), - [aux_sym__val_number_token1] = ACTIONS(2663), - [aux_sym__val_number_token2] = ACTIONS(2663), - [aux_sym__val_number_token3] = ACTIONS(2663), - [anon_sym_0b] = ACTIONS(2665), - [anon_sym_0o] = ACTIONS(2667), - [anon_sym_0x] = ACTIONS(2667), - [sym_val_date] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym__str_single_quotes] = ACTIONS(2673), - [sym__str_back_ticks] = ACTIONS(2673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2679), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(676), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2459), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [sym__newline] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_PIPE] = ACTIONS(2597), + [anon_sym_err_GT_PIPE] = ACTIONS(2597), + [anon_sym_out_GT_PIPE] = ACTIONS(2597), + [anon_sym_e_GT_PIPE] = ACTIONS(2597), + [anon_sym_o_GT_PIPE] = ACTIONS(2597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2597), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2473), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), + [anon_sym_DOT_DOT_LT] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(247), }, [675] = { - [sym_expr_parenthesized] = STATE(1632), - [sym_val_range] = STATE(1970), - [sym__val_range] = STATE(7567), - [sym__val_range_with_end] = STATE(7584), - [sym__value] = STATE(1970), - [sym_val_nothing] = STATE(1933), - [sym_val_bool] = STATE(1706), - [sym_val_variable] = STATE(1640), - [sym_val_number] = STATE(1933), - [sym__val_number_decimal] = STATE(1285), - [sym__val_number] = STATE(2001), - [sym_val_duration] = STATE(1933), - [sym_val_filesize] = STATE(1933), - [sym_val_binary] = STATE(1933), - [sym_val_string] = STATE(1933), - [sym__str_double_quotes] = STATE(1936), - [sym_val_interpolated] = STATE(1933), - [sym__inter_single_quotes] = STATE(1924), - [sym__inter_double_quotes] = STATE(1925), - [sym_val_list] = STATE(1933), - [sym_val_record] = STATE(1933), - [sym_val_table] = STATE(1933), - [sym_val_closure] = STATE(1933), - [sym__flag] = STATE(1970), - [sym_short_flag] = STATE(2090), - [sym_long_flag] = STATE(2090), - [sym_unquoted] = STATE(1748), - [sym__unquoted_with_expr] = STATE(2017), - [sym__unquoted_anonymous_prefix] = STATE(7096), + [sym_expr_parenthesized] = STATE(1543), + [sym_val_range] = STATE(1909), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(1909), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(1909), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1670), + [sym__unquoted_with_expr] = STATE(1915), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(675), - [aux_sym_ctrl_do_repeat2] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(2460), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_null] = ACTIONS(2635), - [aux_sym_cmd_identifier_token38] = ACTIONS(2637), - [aux_sym_cmd_identifier_token39] = ACTIONS(2637), - [aux_sym_cmd_identifier_token40] = ACTIONS(2637), - [sym__newline] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_err_GT_PIPE] = ACTIONS(2460), - [anon_sym_out_GT_PIPE] = ACTIONS(2460), - [anon_sym_e_GT_PIPE] = ACTIONS(2460), - [anon_sym_o_GT_PIPE] = ACTIONS(2460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2647), - [aux_sym_ctrl_match_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2653), - [anon_sym_DOT_DOT_LT] = ACTIONS(2653), - [aux_sym__val_number_decimal_token1] = ACTIONS(2655), - [aux_sym__val_number_decimal_token2] = ACTIONS(2657), - [anon_sym_DOT2] = ACTIONS(2659), - [aux_sym__val_number_decimal_token3] = ACTIONS(2661), - [aux_sym__val_number_token1] = ACTIONS(2663), - [aux_sym__val_number_token2] = ACTIONS(2663), - [aux_sym__val_number_token3] = ACTIONS(2663), - [anon_sym_0b] = ACTIONS(2665), - [anon_sym_0o] = ACTIONS(2667), - [anon_sym_0x] = ACTIONS(2667), - [sym_val_date] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym__str_single_quotes] = ACTIONS(2673), - [sym__str_back_ticks] = ACTIONS(2673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2679), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(669), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2459), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [sym__newline] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_PIPE] = ACTIONS(2599), + [anon_sym_err_GT_PIPE] = ACTIONS(2599), + [anon_sym_out_GT_PIPE] = ACTIONS(2599), + [anon_sym_e_GT_PIPE] = ACTIONS(2599), + [anon_sym_o_GT_PIPE] = ACTIONS(2599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2473), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), + [anon_sym_DOT_DOT_LT] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(247), }, [676] = { - [sym_expr_parenthesized] = STATE(1632), - [sym_val_range] = STATE(1970), - [sym__val_range] = STATE(7567), - [sym__val_range_with_end] = STATE(7584), - [sym__value] = STATE(1970), - [sym_val_nothing] = STATE(1933), - [sym_val_bool] = STATE(1706), - [sym_val_variable] = STATE(1640), - [sym_val_number] = STATE(1933), - [sym__val_number_decimal] = STATE(1285), - [sym__val_number] = STATE(2001), - [sym_val_duration] = STATE(1933), - [sym_val_filesize] = STATE(1933), - [sym_val_binary] = STATE(1933), - [sym_val_string] = STATE(1933), - [sym__str_double_quotes] = STATE(1936), - [sym_val_interpolated] = STATE(1933), - [sym__inter_single_quotes] = STATE(1924), - [sym__inter_double_quotes] = STATE(1925), - [sym_val_list] = STATE(1933), - [sym_val_record] = STATE(1933), - [sym_val_table] = STATE(1933), - [sym_val_closure] = STATE(1933), - [sym__flag] = STATE(1970), - [sym_short_flag] = STATE(2090), - [sym_long_flag] = STATE(2090), - [sym_unquoted] = STATE(1748), - [sym__unquoted_with_expr] = STATE(2017), - [sym__unquoted_anonymous_prefix] = STATE(7096), + [sym_expr_parenthesized] = STATE(1543), + [sym_val_range] = STATE(1909), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(1909), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(1909), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1670), + [sym__unquoted_with_expr] = STATE(1915), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(676), - [aux_sym_ctrl_do_repeat2] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(2544), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_null] = ACTIONS(2635), - [aux_sym_cmd_identifier_token38] = ACTIONS(2637), - [aux_sym_cmd_identifier_token39] = ACTIONS(2637), - [aux_sym_cmd_identifier_token40] = ACTIONS(2637), - [sym__newline] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_err_GT_PIPE] = ACTIONS(2544), - [anon_sym_out_GT_PIPE] = ACTIONS(2544), - [anon_sym_e_GT_PIPE] = ACTIONS(2544), - [anon_sym_o_GT_PIPE] = ACTIONS(2544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2647), - [aux_sym_ctrl_match_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2653), - [anon_sym_DOT_DOT_LT] = ACTIONS(2653), - [aux_sym__val_number_decimal_token1] = ACTIONS(2655), - [aux_sym__val_number_decimal_token2] = ACTIONS(2657), - [anon_sym_DOT2] = ACTIONS(2659), - [aux_sym__val_number_decimal_token3] = ACTIONS(2661), - [aux_sym__val_number_token1] = ACTIONS(2663), - [aux_sym__val_number_token2] = ACTIONS(2663), - [aux_sym__val_number_token3] = ACTIONS(2663), - [anon_sym_0b] = ACTIONS(2665), - [anon_sym_0o] = ACTIONS(2667), - [anon_sym_0x] = ACTIONS(2667), - [sym_val_date] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym__str_single_quotes] = ACTIONS(2673), - [sym__str_back_ticks] = ACTIONS(2673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2679), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(669), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2459), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [sym__newline] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2595), + [anon_sym_err_GT_PIPE] = ACTIONS(2595), + [anon_sym_out_GT_PIPE] = ACTIONS(2595), + [anon_sym_e_GT_PIPE] = ACTIONS(2595), + [anon_sym_o_GT_PIPE] = ACTIONS(2595), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2595), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2595), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2595), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2595), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2473), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), + [anon_sym_DOT_DOT_LT] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(247), }, [677] = { - [sym__match_pattern_expression] = STATE(3197), - [sym__match_pattern_value] = STATE(3232), - [sym__match_pattern_list] = STATE(3235), - [sym__match_pattern_rest] = STATE(8026), - [sym__match_pattern_record] = STATE(3236), - [sym_expr_parenthesized] = STATE(2891), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(3159), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(3161), - [sym_val_bool] = STATE(3000), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(2894), - [sym_val_number] = STATE(3161), - [sym__val_number_decimal] = STATE(2527), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(3161), - [sym_val_filesize] = STATE(3161), - [sym_val_binary] = STATE(3161), - [sym_val_string] = STATE(3161), - [sym__str_double_quotes] = STATE(3163), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7394), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7691), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(3161), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(3002), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(1646), + [sym_val_range] = STATE(2010), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(2010), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(2010), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1694), + [sym__unquoted_with_expr] = STATE(2021), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(677), - [aux_sym_shebang_repeat1] = STATE(750), - [aux_sym__match_pattern_list_repeat1] = STATE(1311), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2753), - [anon_sym_false] = ACTIONS(2753), - [anon_sym_null] = ACTIONS(2755), - [aux_sym_cmd_identifier_token38] = ACTIONS(2757), - [aux_sym_cmd_identifier_token39] = ACTIONS(2757), - [aux_sym_cmd_identifier_token40] = ACTIONS(2757), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2761), - [anon_sym_RBRACK] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2767), - [aux_sym_ctrl_match_token1] = ACTIONS(2769), - [anon_sym_DOT_DOT] = ACTIONS(2771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2773), - [anon_sym_DOT_DOT_LT] = ACTIONS(2773), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2775), - [aux_sym__val_number_decimal_token2] = ACTIONS(2777), - [anon_sym_DOT2] = ACTIONS(2779), - [aux_sym__val_number_decimal_token3] = ACTIONS(2781), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym__str_single_quotes] = ACTIONS(2793), - [sym__str_back_ticks] = ACTIONS(2793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(825), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(677), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_null] = ACTIONS(2604), + [aux_sym_cmd_identifier_token38] = ACTIONS(2607), + [aux_sym_cmd_identifier_token39] = ACTIONS(2607), + [aux_sym_cmd_identifier_token40] = ACTIONS(2607), + [sym__newline] = ACTIONS(2610), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_PIPE] = ACTIONS(2613), + [anon_sym_err_GT_PIPE] = ACTIONS(2613), + [anon_sym_out_GT_PIPE] = ACTIONS(2613), + [anon_sym_e_GT_PIPE] = ACTIONS(2613), + [anon_sym_o_GT_PIPE] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2618), + [anon_sym_RPAREN] = ACTIONS(2613), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2627), + [aux_sym_ctrl_match_token1] = ACTIONS(2630), + [anon_sym_DOT_DOT] = ACTIONS(2633), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2636), + [anon_sym_DOT_DOT_LT] = ACTIONS(2636), + [aux_sym__val_number_decimal_token1] = ACTIONS(2639), + [aux_sym__val_number_decimal_token2] = ACTIONS(2642), + [aux_sym__val_number_decimal_token3] = ACTIONS(2645), + [aux_sym__val_number_decimal_token4] = ACTIONS(2648), + [aux_sym__val_number_token1] = ACTIONS(2651), + [aux_sym__val_number_token2] = ACTIONS(2651), + [aux_sym__val_number_token3] = ACTIONS(2651), + [anon_sym_0b] = ACTIONS(2654), + [anon_sym_0o] = ACTIONS(2657), + [anon_sym_0x] = ACTIONS(2657), + [sym_val_date] = ACTIONS(2660), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2678), + [anon_sym_out_GT_GT] = ACTIONS(2678), + [anon_sym_e_GT_GT] = ACTIONS(2678), + [anon_sym_o_GT_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2678), + [aux_sym_unquoted_token1] = ACTIONS(2681), + [anon_sym_POUND] = ACTIONS(247), }, [678] = { - [aux_sym__pipe_separator] = STATE(678), + [sym_expr_parenthesized] = STATE(1630), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(8051), + [sym__val_range_with_end] = STATE(7644), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2094), + [sym_val_bool] = STATE(1728), + [sym_val_variable] = STATE(1601), + [sym_val_number] = STATE(2094), + [sym__val_number_decimal] = STATE(1305), + [sym__val_number] = STATE(2080), + [sym_val_duration] = STATE(2094), + [sym_val_filesize] = STATE(2094), + [sym_val_binary] = STATE(2094), + [sym_val_string] = STATE(2094), + [sym__str_double_quotes] = STATE(2042), + [sym_val_interpolated] = STATE(2094), + [sym__inter_single_quotes] = STATE(1955), + [sym__inter_double_quotes] = STATE(2073), + [sym_val_list] = STATE(2094), + [sym_val_record] = STATE(2094), + [sym_val_table] = STATE(2094), + [sym_val_closure] = STATE(2094), + [sym__flag] = STATE(2014), + [sym_short_flag] = STATE(1993), + [sym_long_flag] = STATE(1993), + [sym_unquoted] = STATE(1776), + [sym__unquoted_with_expr] = STATE(2024), + [sym__unquoted_anonymous_prefix] = STATE(7474), [sym_comment] = STATE(678), - [aux_sym_shebang_repeat1] = STATE(5400), - [aux_sym_cmd_identifier_token1] = ACTIONS(2809), - [aux_sym_cmd_identifier_token2] = ACTIONS(2811), - [aux_sym_cmd_identifier_token3] = ACTIONS(2811), - [aux_sym_cmd_identifier_token4] = ACTIONS(2811), - [aux_sym_cmd_identifier_token5] = ACTIONS(2811), - [aux_sym_cmd_identifier_token6] = ACTIONS(2811), - [aux_sym_cmd_identifier_token7] = ACTIONS(2811), - [aux_sym_cmd_identifier_token8] = ACTIONS(2811), - [aux_sym_cmd_identifier_token9] = ACTIONS(2809), - [aux_sym_cmd_identifier_token10] = ACTIONS(2811), - [aux_sym_cmd_identifier_token11] = ACTIONS(2811), - [aux_sym_cmd_identifier_token12] = ACTIONS(2811), - [aux_sym_cmd_identifier_token13] = ACTIONS(2809), - [aux_sym_cmd_identifier_token14] = ACTIONS(2811), - [aux_sym_cmd_identifier_token15] = ACTIONS(2809), - [aux_sym_cmd_identifier_token16] = ACTIONS(2811), - [aux_sym_cmd_identifier_token17] = ACTIONS(2811), - [aux_sym_cmd_identifier_token18] = ACTIONS(2811), - [aux_sym_cmd_identifier_token19] = ACTIONS(2811), - [aux_sym_cmd_identifier_token20] = ACTIONS(2811), - [aux_sym_cmd_identifier_token21] = ACTIONS(2811), - [aux_sym_cmd_identifier_token22] = ACTIONS(2809), - [aux_sym_cmd_identifier_token23] = ACTIONS(2809), - [aux_sym_cmd_identifier_token24] = ACTIONS(2811), - [aux_sym_cmd_identifier_token25] = ACTIONS(2809), - [aux_sym_cmd_identifier_token26] = ACTIONS(2811), - [aux_sym_cmd_identifier_token27] = ACTIONS(2809), - [aux_sym_cmd_identifier_token28] = ACTIONS(2809), - [aux_sym_cmd_identifier_token29] = ACTIONS(2809), - [aux_sym_cmd_identifier_token30] = ACTIONS(2809), - [aux_sym_cmd_identifier_token31] = ACTIONS(2811), - [aux_sym_cmd_identifier_token32] = ACTIONS(2811), - [aux_sym_cmd_identifier_token33] = ACTIONS(2811), - [aux_sym_cmd_identifier_token34] = ACTIONS(2811), - [aux_sym_cmd_identifier_token35] = ACTIONS(2811), - [aux_sym_cmd_identifier_token36] = ACTIONS(2809), - [anon_sym_true] = ACTIONS(2811), - [anon_sym_false] = ACTIONS(2811), - [anon_sym_null] = ACTIONS(2811), - [aux_sym_cmd_identifier_token38] = ACTIONS(2809), - [aux_sym_cmd_identifier_token39] = ACTIONS(2811), - [aux_sym_cmd_identifier_token40] = ACTIONS(2811), - [sym__newline] = ACTIONS(2813), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_err_GT_PIPE] = ACTIONS(2816), - [anon_sym_out_GT_PIPE] = ACTIONS(2816), - [anon_sym_e_GT_PIPE] = ACTIONS(2816), - [anon_sym_o_GT_PIPE] = ACTIONS(2816), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2816), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2816), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2816), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_DOLLAR] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_do] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_match] = ACTIONS(2809), - [aux_sym_ctrl_match_token1] = ACTIONS(2811), - [anon_sym_DOT_DOT] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_where] = ACTIONS(2811), - [aux_sym_expr_unary_token1] = ACTIONS(2811), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2811), - [anon_sym_DOT_DOT_LT] = ACTIONS(2811), - [aux_sym__val_number_decimal_token1] = ACTIONS(2809), - [aux_sym__val_number_decimal_token2] = ACTIONS(2811), - [anon_sym_DOT2] = ACTIONS(2809), - [aux_sym__val_number_decimal_token3] = ACTIONS(2811), - [aux_sym__val_number_token1] = ACTIONS(2811), - [aux_sym__val_number_token2] = ACTIONS(2811), - [aux_sym__val_number_token3] = ACTIONS(2811), - [anon_sym_0b] = ACTIONS(2809), - [anon_sym_0o] = ACTIONS(2809), - [anon_sym_0x] = ACTIONS(2809), - [sym_val_date] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym__str_single_quotes] = ACTIONS(2811), - [sym__str_back_ticks] = ACTIONS(2811), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2811), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2811), - [anon_sym_CARET] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2684), + [anon_sym_false] = ACTIONS(2684), + [anon_sym_null] = ACTIONS(2686), + [aux_sym_cmd_identifier_token38] = ACTIONS(2688), + [aux_sym_cmd_identifier_token39] = ACTIONS(2688), + [aux_sym_cmd_identifier_token40] = ACTIONS(2688), + [sym__newline] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_PIPE] = ACTIONS(2599), + [anon_sym_err_GT_PIPE] = ACTIONS(2599), + [anon_sym_out_GT_PIPE] = ACTIONS(2599), + [anon_sym_e_GT_PIPE] = ACTIONS(2599), + [anon_sym_o_GT_PIPE] = ACTIONS(2599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2698), + [aux_sym_ctrl_match_token1] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(2702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), + [anon_sym_DOT_DOT_LT] = ACTIONS(2704), + [aux_sym__val_number_decimal_token1] = ACTIONS(2706), + [aux_sym__val_number_decimal_token2] = ACTIONS(2708), + [aux_sym__val_number_decimal_token3] = ACTIONS(2710), + [aux_sym__val_number_decimal_token4] = ACTIONS(2712), + [aux_sym__val_number_token1] = ACTIONS(2714), + [aux_sym__val_number_token2] = ACTIONS(2714), + [aux_sym__val_number_token3] = ACTIONS(2714), + [anon_sym_0b] = ACTIONS(2716), + [anon_sym_0o] = ACTIONS(2718), + [anon_sym_0x] = ACTIONS(2718), + [sym_val_date] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2722), + [sym__str_single_quotes] = ACTIONS(2724), + [sym__str_back_ticks] = ACTIONS(2724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(247), }, [679] = { - [aux_sym__pipe_separator] = STATE(678), + [sym_expr_parenthesized] = STATE(1630), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(8051), + [sym__val_range_with_end] = STATE(7644), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2094), + [sym_val_bool] = STATE(1728), + [sym_val_variable] = STATE(1601), + [sym_val_number] = STATE(2094), + [sym__val_number_decimal] = STATE(1305), + [sym__val_number] = STATE(2080), + [sym_val_duration] = STATE(2094), + [sym_val_filesize] = STATE(2094), + [sym_val_binary] = STATE(2094), + [sym_val_string] = STATE(2094), + [sym__str_double_quotes] = STATE(2042), + [sym_val_interpolated] = STATE(2094), + [sym__inter_single_quotes] = STATE(1955), + [sym__inter_double_quotes] = STATE(2073), + [sym_val_list] = STATE(2094), + [sym_val_record] = STATE(2094), + [sym_val_table] = STATE(2094), + [sym_val_closure] = STATE(2094), + [sym__flag] = STATE(2014), + [sym_short_flag] = STATE(1993), + [sym_long_flag] = STATE(1993), + [sym_unquoted] = STATE(1776), + [sym__unquoted_with_expr] = STATE(2024), + [sym__unquoted_anonymous_prefix] = STATE(7474), [sym_comment] = STATE(679), - [aux_sym_shebang_repeat1] = STATE(5400), - [aux_sym_cmd_identifier_token1] = ACTIONS(2819), - [aux_sym_cmd_identifier_token2] = ACTIONS(2821), - [aux_sym_cmd_identifier_token3] = ACTIONS(2821), - [aux_sym_cmd_identifier_token4] = ACTIONS(2821), - [aux_sym_cmd_identifier_token5] = ACTIONS(2821), - [aux_sym_cmd_identifier_token6] = ACTIONS(2821), - [aux_sym_cmd_identifier_token7] = ACTIONS(2821), - [aux_sym_cmd_identifier_token8] = ACTIONS(2821), - [aux_sym_cmd_identifier_token9] = ACTIONS(2819), - [aux_sym_cmd_identifier_token10] = ACTIONS(2821), - [aux_sym_cmd_identifier_token11] = ACTIONS(2821), - [aux_sym_cmd_identifier_token12] = ACTIONS(2821), - [aux_sym_cmd_identifier_token13] = ACTIONS(2819), - [aux_sym_cmd_identifier_token14] = ACTIONS(2821), - [aux_sym_cmd_identifier_token15] = ACTIONS(2819), - [aux_sym_cmd_identifier_token16] = ACTIONS(2821), - [aux_sym_cmd_identifier_token17] = ACTIONS(2821), - [aux_sym_cmd_identifier_token18] = ACTIONS(2821), - [aux_sym_cmd_identifier_token19] = ACTIONS(2821), - [aux_sym_cmd_identifier_token20] = ACTIONS(2821), - [aux_sym_cmd_identifier_token21] = ACTIONS(2821), - [aux_sym_cmd_identifier_token22] = ACTIONS(2819), - [aux_sym_cmd_identifier_token23] = ACTIONS(2819), - [aux_sym_cmd_identifier_token24] = ACTIONS(2821), - [aux_sym_cmd_identifier_token25] = ACTIONS(2819), - [aux_sym_cmd_identifier_token26] = ACTIONS(2821), - [aux_sym_cmd_identifier_token27] = ACTIONS(2819), - [aux_sym_cmd_identifier_token28] = ACTIONS(2819), - [aux_sym_cmd_identifier_token29] = ACTIONS(2819), - [aux_sym_cmd_identifier_token30] = ACTIONS(2819), - [aux_sym_cmd_identifier_token31] = ACTIONS(2821), - [aux_sym_cmd_identifier_token32] = ACTIONS(2821), - [aux_sym_cmd_identifier_token33] = ACTIONS(2821), - [aux_sym_cmd_identifier_token34] = ACTIONS(2821), - [aux_sym_cmd_identifier_token35] = ACTIONS(2821), - [aux_sym_cmd_identifier_token36] = ACTIONS(2819), - [anon_sym_true] = ACTIONS(2821), - [anon_sym_false] = ACTIONS(2821), - [anon_sym_null] = ACTIONS(2821), - [aux_sym_cmd_identifier_token38] = ACTIONS(2819), - [aux_sym_cmd_identifier_token39] = ACTIONS(2821), - [aux_sym_cmd_identifier_token40] = ACTIONS(2821), - [sym__newline] = ACTIONS(2823), - [anon_sym_PIPE] = ACTIONS(2825), - [anon_sym_err_GT_PIPE] = ACTIONS(2825), - [anon_sym_out_GT_PIPE] = ACTIONS(2825), - [anon_sym_e_GT_PIPE] = ACTIONS(2825), - [anon_sym_o_GT_PIPE] = ACTIONS(2825), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2825), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2825), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2825), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2825), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_DOLLAR] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_break] = ACTIONS(2819), - [anon_sym_continue] = ACTIONS(2819), - [anon_sym_do] = ACTIONS(2819), - [anon_sym_if] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2819), - [aux_sym_ctrl_match_token1] = ACTIONS(2821), - [anon_sym_DOT_DOT] = ACTIONS(2819), - [anon_sym_try] = ACTIONS(2819), - [anon_sym_return] = ACTIONS(2819), - [anon_sym_where] = ACTIONS(2821), - [aux_sym_expr_unary_token1] = ACTIONS(2821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2821), - [anon_sym_DOT_DOT_LT] = ACTIONS(2821), - [aux_sym__val_number_decimal_token1] = ACTIONS(2819), - [aux_sym__val_number_decimal_token2] = ACTIONS(2821), - [anon_sym_DOT2] = ACTIONS(2819), - [aux_sym__val_number_decimal_token3] = ACTIONS(2821), - [aux_sym__val_number_token1] = ACTIONS(2821), - [aux_sym__val_number_token2] = ACTIONS(2821), - [aux_sym__val_number_token3] = ACTIONS(2821), - [anon_sym_0b] = ACTIONS(2819), - [anon_sym_0o] = ACTIONS(2819), - [anon_sym_0x] = ACTIONS(2819), - [sym_val_date] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [sym__str_single_quotes] = ACTIONS(2821), - [sym__str_back_ticks] = ACTIONS(2821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2821), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2821), - [anon_sym_CARET] = ACTIONS(2821), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(678), + [ts_builtin_sym_end] = ACTIONS(2595), + [anon_sym_true] = ACTIONS(2684), + [anon_sym_false] = ACTIONS(2684), + [anon_sym_null] = ACTIONS(2686), + [aux_sym_cmd_identifier_token38] = ACTIONS(2688), + [aux_sym_cmd_identifier_token39] = ACTIONS(2688), + [aux_sym_cmd_identifier_token40] = ACTIONS(2688), + [sym__newline] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2595), + [anon_sym_err_GT_PIPE] = ACTIONS(2595), + [anon_sym_out_GT_PIPE] = ACTIONS(2595), + [anon_sym_e_GT_PIPE] = ACTIONS(2595), + [anon_sym_o_GT_PIPE] = ACTIONS(2595), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2595), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2595), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2595), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2698), + [aux_sym_ctrl_match_token1] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(2702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), + [anon_sym_DOT_DOT_LT] = ACTIONS(2704), + [aux_sym__val_number_decimal_token1] = ACTIONS(2706), + [aux_sym__val_number_decimal_token2] = ACTIONS(2708), + [aux_sym__val_number_decimal_token3] = ACTIONS(2710), + [aux_sym__val_number_decimal_token4] = ACTIONS(2712), + [aux_sym__val_number_token1] = ACTIONS(2714), + [aux_sym__val_number_token2] = ACTIONS(2714), + [aux_sym__val_number_token3] = ACTIONS(2714), + [anon_sym_0b] = ACTIONS(2716), + [anon_sym_0o] = ACTIONS(2718), + [anon_sym_0x] = ACTIONS(2718), + [sym_val_date] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2722), + [sym__str_single_quotes] = ACTIONS(2724), + [sym__str_back_ticks] = ACTIONS(2724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(247), }, [680] = { - [aux_sym__pipe_separator] = STATE(678), + [sym__match_pattern_expression] = STATE(3315), + [sym__match_pattern_value] = STATE(3273), + [sym__match_pattern_list] = STATE(3277), + [sym__match_pattern_rest] = STATE(7997), + [sym__match_pattern_record] = STATE(3287), + [sym_expr_parenthesized] = STATE(2920), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(3235), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(3238), + [sym_val_bool] = STATE(3064), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(2937), + [sym_val_number] = STATE(3238), + [sym__val_number_decimal] = STATE(2664), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(3238), + [sym_val_filesize] = STATE(3238), + [sym_val_binary] = STATE(3238), + [sym_val_string] = STATE(3238), + [sym__str_double_quotes] = STATE(3216), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7465), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7755), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(3238), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(3076), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(680), - [aux_sym_shebang_repeat1] = STATE(682), - [aux_sym_cmd_identifier_token1] = ACTIONS(2827), - [aux_sym_cmd_identifier_token2] = ACTIONS(2829), - [aux_sym_cmd_identifier_token3] = ACTIONS(2829), - [aux_sym_cmd_identifier_token4] = ACTIONS(2829), - [aux_sym_cmd_identifier_token5] = ACTIONS(2829), - [aux_sym_cmd_identifier_token6] = ACTIONS(2829), - [aux_sym_cmd_identifier_token7] = ACTIONS(2829), - [aux_sym_cmd_identifier_token8] = ACTIONS(2829), - [aux_sym_cmd_identifier_token9] = ACTIONS(2827), - [aux_sym_cmd_identifier_token10] = ACTIONS(2829), - [aux_sym_cmd_identifier_token11] = ACTIONS(2829), - [aux_sym_cmd_identifier_token12] = ACTIONS(2829), - [aux_sym_cmd_identifier_token13] = ACTIONS(2827), - [aux_sym_cmd_identifier_token14] = ACTIONS(2829), - [aux_sym_cmd_identifier_token15] = ACTIONS(2827), - [aux_sym_cmd_identifier_token16] = ACTIONS(2829), - [aux_sym_cmd_identifier_token17] = ACTIONS(2829), - [aux_sym_cmd_identifier_token18] = ACTIONS(2829), - [aux_sym_cmd_identifier_token19] = ACTIONS(2829), - [aux_sym_cmd_identifier_token20] = ACTIONS(2829), - [aux_sym_cmd_identifier_token21] = ACTIONS(2829), - [aux_sym_cmd_identifier_token22] = ACTIONS(2827), - [aux_sym_cmd_identifier_token23] = ACTIONS(2827), - [aux_sym_cmd_identifier_token24] = ACTIONS(2829), - [aux_sym_cmd_identifier_token25] = ACTIONS(2827), - [aux_sym_cmd_identifier_token26] = ACTIONS(2829), - [aux_sym_cmd_identifier_token27] = ACTIONS(2827), - [aux_sym_cmd_identifier_token28] = ACTIONS(2827), - [aux_sym_cmd_identifier_token29] = ACTIONS(2827), - [aux_sym_cmd_identifier_token30] = ACTIONS(2827), - [aux_sym_cmd_identifier_token31] = ACTIONS(2829), - [aux_sym_cmd_identifier_token32] = ACTIONS(2829), - [aux_sym_cmd_identifier_token33] = ACTIONS(2829), - [aux_sym_cmd_identifier_token34] = ACTIONS(2829), - [aux_sym_cmd_identifier_token35] = ACTIONS(2829), - [aux_sym_cmd_identifier_token36] = ACTIONS(2827), - [anon_sym_true] = ACTIONS(2829), - [anon_sym_false] = ACTIONS(2829), - [anon_sym_null] = ACTIONS(2829), - [aux_sym_cmd_identifier_token38] = ACTIONS(2827), - [aux_sym_cmd_identifier_token39] = ACTIONS(2829), - [aux_sym_cmd_identifier_token40] = ACTIONS(2829), - [sym__newline] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2825), - [anon_sym_err_GT_PIPE] = ACTIONS(2825), - [anon_sym_out_GT_PIPE] = ACTIONS(2825), - [anon_sym_e_GT_PIPE] = ACTIONS(2825), - [anon_sym_o_GT_PIPE] = ACTIONS(2825), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2825), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2825), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2825), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2825), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_DOLLAR] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_do] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_match] = ACTIONS(2827), - [aux_sym_ctrl_match_token1] = ACTIONS(2829), - [anon_sym_DOT_DOT] = ACTIONS(2827), - [anon_sym_try] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_where] = ACTIONS(2829), - [aux_sym_expr_unary_token1] = ACTIONS(2829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2829), - [anon_sym_DOT_DOT_LT] = ACTIONS(2829), - [aux_sym__val_number_decimal_token1] = ACTIONS(2827), - [aux_sym__val_number_decimal_token2] = ACTIONS(2829), - [anon_sym_DOT2] = ACTIONS(2827), - [aux_sym__val_number_decimal_token3] = ACTIONS(2829), - [aux_sym__val_number_token1] = ACTIONS(2829), - [aux_sym__val_number_token2] = ACTIONS(2829), - [aux_sym__val_number_token3] = ACTIONS(2829), - [anon_sym_0b] = ACTIONS(2827), - [anon_sym_0o] = ACTIONS(2827), - [anon_sym_0x] = ACTIONS(2827), - [sym_val_date] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym__str_single_quotes] = ACTIONS(2829), - [sym__str_back_ticks] = ACTIONS(2829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2829), - [anon_sym_CARET] = ACTIONS(2829), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(758), + [aux_sym__match_pattern_list_repeat1] = STATE(1306), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2732), + [anon_sym_false] = ACTIONS(2732), + [anon_sym_null] = ACTIONS(2734), + [aux_sym_cmd_identifier_token38] = ACTIONS(2736), + [aux_sym_cmd_identifier_token39] = ACTIONS(2736), + [aux_sym_cmd_identifier_token40] = ACTIONS(2736), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_RBRACK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2746), + [aux_sym_ctrl_match_token1] = ACTIONS(2748), + [anon_sym_DOT_DOT] = ACTIONS(2750), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_LT] = ACTIONS(2752), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2754), + [aux_sym__val_number_decimal_token2] = ACTIONS(2756), + [aux_sym__val_number_decimal_token3] = ACTIONS(2758), + [aux_sym__val_number_decimal_token4] = ACTIONS(2760), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2770), + [sym__str_single_quotes] = ACTIONS(2772), + [sym__str_back_ticks] = ACTIONS(2772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [681] = { + [sym_expr_parenthesized] = STATE(1630), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(8051), + [sym__val_range_with_end] = STATE(7644), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2094), + [sym_val_bool] = STATE(1728), + [sym_val_variable] = STATE(1601), + [sym_val_number] = STATE(2094), + [sym__val_number_decimal] = STATE(1305), + [sym__val_number] = STATE(2080), + [sym_val_duration] = STATE(2094), + [sym_val_filesize] = STATE(2094), + [sym_val_binary] = STATE(2094), + [sym_val_string] = STATE(2094), + [sym__str_double_quotes] = STATE(2042), + [sym_val_interpolated] = STATE(2094), + [sym__inter_single_quotes] = STATE(1955), + [sym__inter_double_quotes] = STATE(2073), + [sym_val_list] = STATE(2094), + [sym_val_record] = STATE(2094), + [sym_val_table] = STATE(2094), + [sym_val_closure] = STATE(2094), + [sym__flag] = STATE(2014), + [sym_short_flag] = STATE(1993), + [sym_long_flag] = STATE(1993), + [sym_unquoted] = STATE(1776), + [sym__unquoted_with_expr] = STATE(2024), + [sym__unquoted_anonymous_prefix] = STATE(7474), [sym_comment] = STATE(681), - [aux_sym_shebang_repeat1] = STATE(681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1856), - [aux_sym_cmd_identifier_token2] = ACTIONS(1858), - [aux_sym_cmd_identifier_token3] = ACTIONS(1858), - [aux_sym_cmd_identifier_token4] = ACTIONS(1858), - [aux_sym_cmd_identifier_token5] = ACTIONS(1858), - [aux_sym_cmd_identifier_token6] = ACTIONS(1858), - [aux_sym_cmd_identifier_token7] = ACTIONS(1858), - [aux_sym_cmd_identifier_token8] = ACTIONS(1858), - [aux_sym_cmd_identifier_token9] = ACTIONS(1856), - [aux_sym_cmd_identifier_token10] = ACTIONS(1858), - [aux_sym_cmd_identifier_token11] = ACTIONS(1858), - [aux_sym_cmd_identifier_token12] = ACTIONS(1858), - [aux_sym_cmd_identifier_token13] = ACTIONS(1856), - [aux_sym_cmd_identifier_token14] = ACTIONS(1858), - [aux_sym_cmd_identifier_token15] = ACTIONS(1856), - [aux_sym_cmd_identifier_token16] = ACTIONS(1858), - [aux_sym_cmd_identifier_token17] = ACTIONS(1858), - [aux_sym_cmd_identifier_token18] = ACTIONS(1858), - [aux_sym_cmd_identifier_token19] = ACTIONS(1858), - [aux_sym_cmd_identifier_token20] = ACTIONS(1858), - [aux_sym_cmd_identifier_token21] = ACTIONS(1858), - [aux_sym_cmd_identifier_token22] = ACTIONS(1856), - [aux_sym_cmd_identifier_token23] = ACTIONS(1856), - [aux_sym_cmd_identifier_token24] = ACTIONS(1858), - [aux_sym_cmd_identifier_token25] = ACTIONS(1856), - [aux_sym_cmd_identifier_token26] = ACTIONS(1858), - [aux_sym_cmd_identifier_token27] = ACTIONS(1856), - [aux_sym_cmd_identifier_token28] = ACTIONS(1856), - [aux_sym_cmd_identifier_token29] = ACTIONS(1856), - [aux_sym_cmd_identifier_token30] = ACTIONS(1856), - [aux_sym_cmd_identifier_token31] = ACTIONS(1858), - [aux_sym_cmd_identifier_token32] = ACTIONS(1858), - [aux_sym_cmd_identifier_token33] = ACTIONS(1858), - [aux_sym_cmd_identifier_token34] = ACTIONS(1858), - [aux_sym_cmd_identifier_token35] = ACTIONS(1858), - [aux_sym_cmd_identifier_token36] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1858), - [aux_sym_cmd_identifier_token38] = ACTIONS(1856), - [aux_sym_cmd_identifier_token39] = ACTIONS(1858), - [aux_sym_cmd_identifier_token40] = ACTIONS(1858), - [sym__newline] = ACTIONS(2833), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_DOLLAR] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_do] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [aux_sym_ctrl_match_token1] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_where] = ACTIONS(1858), - [aux_sym_expr_unary_token1] = ACTIONS(1858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1858), - [anon_sym_DOT_DOT_LT] = ACTIONS(1858), - [aux_sym__val_number_decimal_token1] = ACTIONS(1856), - [aux_sym__val_number_decimal_token2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), - [aux_sym__val_number_decimal_token3] = ACTIONS(1858), - [aux_sym__val_number_token1] = ACTIONS(1858), - [aux_sym__val_number_token2] = ACTIONS(1858), - [aux_sym__val_number_token3] = ACTIONS(1858), - [anon_sym_0b] = ACTIONS(1856), - [anon_sym_0o] = ACTIONS(1856), - [anon_sym_0x] = ACTIONS(1856), - [sym_val_date] = ACTIONS(1858), - [anon_sym_DQUOTE] = ACTIONS(1858), - [sym__str_single_quotes] = ACTIONS(1858), - [sym__str_back_ticks] = ACTIONS(1858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1858), - [anon_sym_CARET] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(2520), + [anon_sym_true] = ACTIONS(2786), + [anon_sym_false] = ACTIONS(2786), + [anon_sym_null] = ACTIONS(2789), + [aux_sym_cmd_identifier_token38] = ACTIONS(2792), + [aux_sym_cmd_identifier_token39] = ACTIONS(2792), + [aux_sym_cmd_identifier_token40] = ACTIONS(2792), + [sym__newline] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_err_GT_PIPE] = ACTIONS(2520), + [anon_sym_out_GT_PIPE] = ACTIONS(2520), + [anon_sym_e_GT_PIPE] = ACTIONS(2520), + [anon_sym_o_GT_PIPE] = ACTIONS(2520), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2520), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2520), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2520), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2807), + [aux_sym_ctrl_match_token1] = ACTIONS(2810), + [anon_sym_DOT_DOT] = ACTIONS(2813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2816), + [anon_sym_DOT_DOT_LT] = ACTIONS(2816), + [aux_sym__val_number_decimal_token1] = ACTIONS(2819), + [aux_sym__val_number_decimal_token2] = ACTIONS(2822), + [aux_sym__val_number_decimal_token3] = ACTIONS(2825), + [aux_sym__val_number_decimal_token4] = ACTIONS(2828), + [aux_sym__val_number_token1] = ACTIONS(2831), + [aux_sym__val_number_token2] = ACTIONS(2831), + [aux_sym__val_number_token3] = ACTIONS(2831), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2837), + [anon_sym_0x] = ACTIONS(2837), + [sym_val_date] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym__str_single_quotes] = ACTIONS(2846), + [sym__str_back_ticks] = ACTIONS(2846), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_err_GT] = ACTIONS(2582), + [anon_sym_out_GT] = ACTIONS(2582), + [anon_sym_e_GT] = ACTIONS(2582), + [anon_sym_o_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT] = ACTIONS(2582), + [anon_sym_err_GT_GT] = ACTIONS(2585), + [anon_sym_out_GT_GT] = ACTIONS(2585), + [anon_sym_e_GT_GT] = ACTIONS(2585), + [anon_sym_o_GT_GT] = ACTIONS(2585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2585), + [aux_sym_unquoted_token1] = ACTIONS(2855), + [anon_sym_POUND] = ACTIONS(247), }, [682] = { + [sym_expr_parenthesized] = STATE(1630), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(8051), + [sym__val_range_with_end] = STATE(7644), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2094), + [sym_val_bool] = STATE(1728), + [sym_val_variable] = STATE(1601), + [sym_val_number] = STATE(2094), + [sym__val_number_decimal] = STATE(1305), + [sym__val_number] = STATE(2080), + [sym_val_duration] = STATE(2094), + [sym_val_filesize] = STATE(2094), + [sym_val_binary] = STATE(2094), + [sym_val_string] = STATE(2094), + [sym__str_double_quotes] = STATE(2042), + [sym_val_interpolated] = STATE(2094), + [sym__inter_single_quotes] = STATE(1955), + [sym__inter_double_quotes] = STATE(2073), + [sym_val_list] = STATE(2094), + [sym_val_record] = STATE(2094), + [sym_val_table] = STATE(2094), + [sym_val_closure] = STATE(2094), + [sym__flag] = STATE(2014), + [sym_short_flag] = STATE(1993), + [sym_long_flag] = STATE(1993), + [sym_unquoted] = STATE(1776), + [sym__unquoted_with_expr] = STATE(2024), + [sym__unquoted_anonymous_prefix] = STATE(7474), [sym_comment] = STATE(682), - [aux_sym_shebang_repeat1] = STATE(681), - [aux_sym_cmd_identifier_token1] = ACTIONS(2836), - [aux_sym_cmd_identifier_token2] = ACTIONS(2838), - [aux_sym_cmd_identifier_token3] = ACTIONS(2838), - [aux_sym_cmd_identifier_token4] = ACTIONS(2838), - [aux_sym_cmd_identifier_token5] = ACTIONS(2838), - [aux_sym_cmd_identifier_token6] = ACTIONS(2838), - [aux_sym_cmd_identifier_token7] = ACTIONS(2838), - [aux_sym_cmd_identifier_token8] = ACTIONS(2838), - [aux_sym_cmd_identifier_token9] = ACTIONS(2836), - [aux_sym_cmd_identifier_token10] = ACTIONS(2838), - [aux_sym_cmd_identifier_token11] = ACTIONS(2838), - [aux_sym_cmd_identifier_token12] = ACTIONS(2838), - [aux_sym_cmd_identifier_token13] = ACTIONS(2836), - [aux_sym_cmd_identifier_token14] = ACTIONS(2838), - [aux_sym_cmd_identifier_token15] = ACTIONS(2836), - [aux_sym_cmd_identifier_token16] = ACTIONS(2838), - [aux_sym_cmd_identifier_token17] = ACTIONS(2838), - [aux_sym_cmd_identifier_token18] = ACTIONS(2838), - [aux_sym_cmd_identifier_token19] = ACTIONS(2838), - [aux_sym_cmd_identifier_token20] = ACTIONS(2838), - [aux_sym_cmd_identifier_token21] = ACTIONS(2838), - [aux_sym_cmd_identifier_token22] = ACTIONS(2836), - [aux_sym_cmd_identifier_token23] = ACTIONS(2836), - [aux_sym_cmd_identifier_token24] = ACTIONS(2838), - [aux_sym_cmd_identifier_token25] = ACTIONS(2836), - [aux_sym_cmd_identifier_token26] = ACTIONS(2838), - [aux_sym_cmd_identifier_token27] = ACTIONS(2836), - [aux_sym_cmd_identifier_token28] = ACTIONS(2836), - [aux_sym_cmd_identifier_token29] = ACTIONS(2836), - [aux_sym_cmd_identifier_token30] = ACTIONS(2836), - [aux_sym_cmd_identifier_token31] = ACTIONS(2838), - [aux_sym_cmd_identifier_token32] = ACTIONS(2838), - [aux_sym_cmd_identifier_token33] = ACTIONS(2838), - [aux_sym_cmd_identifier_token34] = ACTIONS(2838), - [aux_sym_cmd_identifier_token35] = ACTIONS(2838), - [aux_sym_cmd_identifier_token36] = ACTIONS(2836), - [anon_sym_true] = ACTIONS(2838), - [anon_sym_false] = ACTIONS(2838), - [anon_sym_null] = ACTIONS(2838), - [aux_sym_cmd_identifier_token38] = ACTIONS(2836), - [aux_sym_cmd_identifier_token39] = ACTIONS(2838), - [aux_sym_cmd_identifier_token40] = ACTIONS(2838), - [sym__newline] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_err_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_GT_PIPE] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_DOLLAR] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_do] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [aux_sym_ctrl_match_token1] = ACTIONS(2838), - [anon_sym_DOT_DOT] = ACTIONS(2836), - [anon_sym_try] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_where] = ACTIONS(2838), - [aux_sym_expr_unary_token1] = ACTIONS(2838), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2838), - [anon_sym_DOT_DOT_LT] = ACTIONS(2838), - [aux_sym__val_number_decimal_token1] = ACTIONS(2836), - [aux_sym__val_number_decimal_token2] = ACTIONS(2838), - [anon_sym_DOT2] = ACTIONS(2836), - [aux_sym__val_number_decimal_token3] = ACTIONS(2838), - [aux_sym__val_number_token1] = ACTIONS(2838), - [aux_sym__val_number_token2] = ACTIONS(2838), - [aux_sym__val_number_token3] = ACTIONS(2838), - [anon_sym_0b] = ACTIONS(2836), - [anon_sym_0o] = ACTIONS(2836), - [anon_sym_0x] = ACTIONS(2836), - [sym_val_date] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [sym__str_single_quotes] = ACTIONS(2838), - [sym__str_back_ticks] = ACTIONS(2838), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(2684), + [anon_sym_false] = ACTIONS(2684), + [anon_sym_null] = ACTIONS(2686), + [aux_sym_cmd_identifier_token38] = ACTIONS(2688), + [aux_sym_cmd_identifier_token39] = ACTIONS(2688), + [aux_sym_cmd_identifier_token40] = ACTIONS(2688), + [sym__newline] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_PIPE] = ACTIONS(2597), + [anon_sym_err_GT_PIPE] = ACTIONS(2597), + [anon_sym_out_GT_PIPE] = ACTIONS(2597), + [anon_sym_e_GT_PIPE] = ACTIONS(2597), + [anon_sym_o_GT_PIPE] = ACTIONS(2597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2698), + [aux_sym_ctrl_match_token1] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(2702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), + [anon_sym_DOT_DOT_LT] = ACTIONS(2704), + [aux_sym__val_number_decimal_token1] = ACTIONS(2706), + [aux_sym__val_number_decimal_token2] = ACTIONS(2708), + [aux_sym__val_number_decimal_token3] = ACTIONS(2710), + [aux_sym__val_number_decimal_token4] = ACTIONS(2712), + [aux_sym__val_number_token1] = ACTIONS(2714), + [aux_sym__val_number_token2] = ACTIONS(2714), + [aux_sym__val_number_token3] = ACTIONS(2714), + [anon_sym_0b] = ACTIONS(2716), + [anon_sym_0o] = ACTIONS(2718), + [anon_sym_0x] = ACTIONS(2718), + [sym_val_date] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2722), + [sym__str_single_quotes] = ACTIONS(2724), + [sym__str_back_ticks] = ACTIONS(2724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(247), }, [683] = { + [sym_expr_parenthesized] = STATE(1630), + [sym_val_range] = STATE(2014), + [sym__val_range] = STATE(8051), + [sym__val_range_with_end] = STATE(7644), + [sym__value] = STATE(2014), + [sym_val_nothing] = STATE(2094), + [sym_val_bool] = STATE(1728), + [sym_val_variable] = STATE(1601), + [sym_val_number] = STATE(2094), + [sym__val_number_decimal] = STATE(1305), + [sym__val_number] = STATE(2080), + [sym_val_duration] = STATE(2094), + [sym_val_filesize] = STATE(2094), + [sym_val_binary] = STATE(2094), + [sym_val_string] = STATE(2094), + [sym__str_double_quotes] = STATE(2042), + [sym_val_interpolated] = STATE(2094), + [sym__inter_single_quotes] = STATE(1955), + [sym__inter_double_quotes] = STATE(2073), + [sym_val_list] = STATE(2094), + [sym_val_record] = STATE(2094), + [sym_val_table] = STATE(2094), + [sym_val_closure] = STATE(2094), + [sym__flag] = STATE(2014), + [sym_short_flag] = STATE(1993), + [sym_long_flag] = STATE(1993), + [sym_unquoted] = STATE(1776), + [sym__unquoted_with_expr] = STATE(2024), + [sym__unquoted_anonymous_prefix] = STATE(7474), [sym_comment] = STATE(683), - [aux_sym_cmd_identifier_token1] = ACTIONS(2809), - [aux_sym_cmd_identifier_token2] = ACTIONS(2811), - [aux_sym_cmd_identifier_token3] = ACTIONS(2811), - [aux_sym_cmd_identifier_token4] = ACTIONS(2811), - [aux_sym_cmd_identifier_token5] = ACTIONS(2811), - [aux_sym_cmd_identifier_token6] = ACTIONS(2811), - [aux_sym_cmd_identifier_token7] = ACTIONS(2811), - [aux_sym_cmd_identifier_token8] = ACTIONS(2811), - [aux_sym_cmd_identifier_token9] = ACTIONS(2809), - [aux_sym_cmd_identifier_token10] = ACTIONS(2811), - [aux_sym_cmd_identifier_token11] = ACTIONS(2811), - [aux_sym_cmd_identifier_token12] = ACTIONS(2811), - [aux_sym_cmd_identifier_token13] = ACTIONS(2809), - [aux_sym_cmd_identifier_token14] = ACTIONS(2811), - [aux_sym_cmd_identifier_token15] = ACTIONS(2809), - [aux_sym_cmd_identifier_token16] = ACTIONS(2811), - [aux_sym_cmd_identifier_token17] = ACTIONS(2811), - [aux_sym_cmd_identifier_token18] = ACTIONS(2811), - [aux_sym_cmd_identifier_token19] = ACTIONS(2811), - [aux_sym_cmd_identifier_token20] = ACTIONS(2811), - [aux_sym_cmd_identifier_token21] = ACTIONS(2811), - [aux_sym_cmd_identifier_token22] = ACTIONS(2809), - [aux_sym_cmd_identifier_token23] = ACTIONS(2809), - [aux_sym_cmd_identifier_token24] = ACTIONS(2811), - [aux_sym_cmd_identifier_token25] = ACTIONS(2809), - [aux_sym_cmd_identifier_token26] = ACTIONS(2811), - [aux_sym_cmd_identifier_token27] = ACTIONS(2809), - [aux_sym_cmd_identifier_token28] = ACTIONS(2809), - [aux_sym_cmd_identifier_token29] = ACTIONS(2809), - [aux_sym_cmd_identifier_token30] = ACTIONS(2809), - [aux_sym_cmd_identifier_token31] = ACTIONS(2811), - [aux_sym_cmd_identifier_token32] = ACTIONS(2811), - [aux_sym_cmd_identifier_token33] = ACTIONS(2811), - [aux_sym_cmd_identifier_token34] = ACTIONS(2811), - [aux_sym_cmd_identifier_token35] = ACTIONS(2811), - [aux_sym_cmd_identifier_token36] = ACTIONS(2809), - [anon_sym_true] = ACTIONS(2811), - [anon_sym_false] = ACTIONS(2811), - [anon_sym_null] = ACTIONS(2811), - [aux_sym_cmd_identifier_token38] = ACTIONS(2809), - [aux_sym_cmd_identifier_token39] = ACTIONS(2811), - [aux_sym_cmd_identifier_token40] = ACTIONS(2811), - [sym__newline] = ACTIONS(2811), - [anon_sym_PIPE] = ACTIONS(2811), - [anon_sym_err_GT_PIPE] = ACTIONS(2811), - [anon_sym_out_GT_PIPE] = ACTIONS(2811), - [anon_sym_e_GT_PIPE] = ACTIONS(2811), - [anon_sym_o_GT_PIPE] = ACTIONS(2811), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2811), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2811), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2811), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_DOLLAR] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_do] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_match] = ACTIONS(2809), - [aux_sym_ctrl_match_token1] = ACTIONS(2811), - [anon_sym_DOT_DOT] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_where] = ACTIONS(2811), - [aux_sym_expr_unary_token1] = ACTIONS(2811), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2811), - [anon_sym_DOT_DOT_LT] = ACTIONS(2811), - [aux_sym__val_number_decimal_token1] = ACTIONS(2809), - [aux_sym__val_number_decimal_token2] = ACTIONS(2811), - [anon_sym_DOT2] = ACTIONS(2809), - [aux_sym__val_number_decimal_token3] = ACTIONS(2811), - [aux_sym__val_number_token1] = ACTIONS(2811), - [aux_sym__val_number_token2] = ACTIONS(2811), - [aux_sym__val_number_token3] = ACTIONS(2811), - [anon_sym_0b] = ACTIONS(2809), - [anon_sym_0o] = ACTIONS(2809), - [anon_sym_0x] = ACTIONS(2809), - [sym_val_date] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2811), - [sym__str_single_quotes] = ACTIONS(2811), - [sym__str_back_ticks] = ACTIONS(2811), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2811), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2811), - [anon_sym_CARET] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(2595), + [anon_sym_true] = ACTIONS(2684), + [anon_sym_false] = ACTIONS(2684), + [anon_sym_null] = ACTIONS(2686), + [aux_sym_cmd_identifier_token38] = ACTIONS(2688), + [aux_sym_cmd_identifier_token39] = ACTIONS(2688), + [aux_sym_cmd_identifier_token40] = ACTIONS(2688), + [sym__newline] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2595), + [anon_sym_err_GT_PIPE] = ACTIONS(2595), + [anon_sym_out_GT_PIPE] = ACTIONS(2595), + [anon_sym_e_GT_PIPE] = ACTIONS(2595), + [anon_sym_o_GT_PIPE] = ACTIONS(2595), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2595), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2595), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2595), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2698), + [aux_sym_ctrl_match_token1] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(2702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), + [anon_sym_DOT_DOT_LT] = ACTIONS(2704), + [aux_sym__val_number_decimal_token1] = ACTIONS(2706), + [aux_sym__val_number_decimal_token2] = ACTIONS(2708), + [aux_sym__val_number_decimal_token3] = ACTIONS(2710), + [aux_sym__val_number_decimal_token4] = ACTIONS(2712), + [aux_sym__val_number_token1] = ACTIONS(2714), + [aux_sym__val_number_token2] = ACTIONS(2714), + [aux_sym__val_number_token3] = ACTIONS(2714), + [anon_sym_0b] = ACTIONS(2716), + [anon_sym_0o] = ACTIONS(2718), + [anon_sym_0x] = ACTIONS(2718), + [sym_val_date] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2722), + [sym__str_single_quotes] = ACTIONS(2724), + [sym__str_back_ticks] = ACTIONS(2724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(247), }, [684] = { + [sym__match_pattern_expression] = STATE(3315), + [sym__match_pattern_value] = STATE(3273), + [sym__match_pattern_list] = STATE(3277), + [sym__match_pattern_rest] = STATE(7997), + [sym__match_pattern_record] = STATE(3287), + [sym_expr_parenthesized] = STATE(2920), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(3235), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(3238), + [sym_val_bool] = STATE(3064), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(2937), + [sym_val_number] = STATE(3238), + [sym__val_number_decimal] = STATE(2664), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(3238), + [sym_val_filesize] = STATE(3238), + [sym_val_binary] = STATE(3238), + [sym_val_string] = STATE(3238), + [sym__str_double_quotes] = STATE(3216), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7488), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7892), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(3238), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(3076), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(684), - [aux_sym_cmd_identifier_token1] = ACTIONS(1216), - [aux_sym_cmd_identifier_token2] = ACTIONS(1220), - [aux_sym_cmd_identifier_token3] = ACTIONS(1220), - [aux_sym_cmd_identifier_token4] = ACTIONS(1220), - [aux_sym_cmd_identifier_token5] = ACTIONS(1220), - [aux_sym_cmd_identifier_token6] = ACTIONS(1220), - [aux_sym_cmd_identifier_token7] = ACTIONS(1220), - [aux_sym_cmd_identifier_token8] = ACTIONS(1220), - [aux_sym_cmd_identifier_token9] = ACTIONS(1216), - [aux_sym_cmd_identifier_token10] = ACTIONS(1220), - [aux_sym_cmd_identifier_token11] = ACTIONS(1220), - [aux_sym_cmd_identifier_token12] = ACTIONS(1220), - [aux_sym_cmd_identifier_token13] = ACTIONS(1216), - [aux_sym_cmd_identifier_token14] = ACTIONS(1220), - [aux_sym_cmd_identifier_token15] = ACTIONS(1216), - [aux_sym_cmd_identifier_token16] = ACTIONS(1220), - [aux_sym_cmd_identifier_token17] = ACTIONS(1220), - [aux_sym_cmd_identifier_token18] = ACTIONS(1220), - [aux_sym_cmd_identifier_token19] = ACTIONS(1220), - [aux_sym_cmd_identifier_token20] = ACTIONS(1220), - [aux_sym_cmd_identifier_token21] = ACTIONS(1220), - [aux_sym_cmd_identifier_token22] = ACTIONS(1216), - [aux_sym_cmd_identifier_token23] = ACTIONS(1216), - [aux_sym_cmd_identifier_token24] = ACTIONS(1220), - [aux_sym_cmd_identifier_token25] = ACTIONS(1216), - [aux_sym_cmd_identifier_token26] = ACTIONS(1220), - [aux_sym_cmd_identifier_token27] = ACTIONS(1216), - [aux_sym_cmd_identifier_token28] = ACTIONS(1216), - [aux_sym_cmd_identifier_token29] = ACTIONS(1216), - [aux_sym_cmd_identifier_token30] = ACTIONS(1216), - [aux_sym_cmd_identifier_token31] = ACTIONS(1220), - [aux_sym_cmd_identifier_token32] = ACTIONS(1220), - [aux_sym_cmd_identifier_token33] = ACTIONS(1220), - [aux_sym_cmd_identifier_token34] = ACTIONS(1220), - [aux_sym_cmd_identifier_token35] = ACTIONS(1220), - [aux_sym_cmd_identifier_token36] = ACTIONS(1216), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), - [anon_sym_null] = ACTIONS(1220), - [aux_sym_cmd_identifier_token38] = ACTIONS(1216), - [aux_sym_cmd_identifier_token39] = ACTIONS(1220), - [aux_sym_cmd_identifier_token40] = ACTIONS(1220), - [sym__newline] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_err_GT_PIPE] = ACTIONS(1220), - [anon_sym_out_GT_PIPE] = ACTIONS(1220), - [anon_sym_e_GT_PIPE] = ACTIONS(1220), - [anon_sym_o_GT_PIPE] = ACTIONS(1220), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1220), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1220), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1220), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_DOLLAR] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_match] = ACTIONS(1216), - [aux_sym_ctrl_match_token1] = ACTIONS(1220), - [anon_sym_DOT_DOT] = ACTIONS(1216), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_where] = ACTIONS(1220), - [aux_sym_expr_unary_token1] = ACTIONS(1220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1220), - [anon_sym_DOT_DOT_LT] = ACTIONS(1220), - [aux_sym__val_number_decimal_token1] = ACTIONS(1216), - [aux_sym__val_number_decimal_token2] = ACTIONS(1220), - [anon_sym_DOT2] = ACTIONS(1216), - [aux_sym__val_number_decimal_token3] = ACTIONS(1220), - [aux_sym__val_number_token1] = ACTIONS(1220), - [aux_sym__val_number_token2] = ACTIONS(1220), - [aux_sym__val_number_token3] = ACTIONS(1220), - [anon_sym_0b] = ACTIONS(1216), - [anon_sym_0o] = ACTIONS(1216), - [anon_sym_0x] = ACTIONS(1216), - [sym_val_date] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym__str_single_quotes] = ACTIONS(1220), - [sym__str_back_ticks] = ACTIONS(1220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(739), + [aux_sym__match_pattern_list_repeat1] = STATE(1306), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2732), + [anon_sym_false] = ACTIONS(2732), + [anon_sym_null] = ACTIONS(2734), + [aux_sym_cmd_identifier_token38] = ACTIONS(2736), + [aux_sym_cmd_identifier_token39] = ACTIONS(2736), + [aux_sym_cmd_identifier_token40] = ACTIONS(2736), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_RBRACK] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2746), + [aux_sym_ctrl_match_token1] = ACTIONS(2748), + [anon_sym_DOT_DOT] = ACTIONS(2750), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_LT] = ACTIONS(2752), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2754), + [aux_sym__val_number_decimal_token2] = ACTIONS(2756), + [aux_sym__val_number_decimal_token3] = ACTIONS(2758), + [aux_sym__val_number_decimal_token4] = ACTIONS(2760), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2770), + [sym__str_single_quotes] = ACTIONS(2772), + [sym__str_back_ticks] = ACTIONS(2772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [685] = { + [aux_sym__pipe_separator] = STATE(686), [sym_comment] = STATE(685), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(2842), - [aux_sym__immediate_decimal_token2] = ACTIONS(2844), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(5418), + [aux_sym_cmd_identifier_token1] = ACTIONS(2860), + [aux_sym_cmd_identifier_token2] = ACTIONS(2862), + [aux_sym_cmd_identifier_token3] = ACTIONS(2862), + [aux_sym_cmd_identifier_token4] = ACTIONS(2862), + [aux_sym_cmd_identifier_token5] = ACTIONS(2862), + [aux_sym_cmd_identifier_token6] = ACTIONS(2862), + [aux_sym_cmd_identifier_token7] = ACTIONS(2862), + [aux_sym_cmd_identifier_token8] = ACTIONS(2862), + [aux_sym_cmd_identifier_token9] = ACTIONS(2860), + [aux_sym_cmd_identifier_token10] = ACTIONS(2862), + [aux_sym_cmd_identifier_token11] = ACTIONS(2862), + [aux_sym_cmd_identifier_token12] = ACTIONS(2862), + [aux_sym_cmd_identifier_token13] = ACTIONS(2860), + [aux_sym_cmd_identifier_token14] = ACTIONS(2862), + [aux_sym_cmd_identifier_token15] = ACTIONS(2860), + [aux_sym_cmd_identifier_token16] = ACTIONS(2862), + [aux_sym_cmd_identifier_token17] = ACTIONS(2862), + [aux_sym_cmd_identifier_token18] = ACTIONS(2862), + [aux_sym_cmd_identifier_token19] = ACTIONS(2862), + [aux_sym_cmd_identifier_token20] = ACTIONS(2862), + [aux_sym_cmd_identifier_token21] = ACTIONS(2862), + [aux_sym_cmd_identifier_token22] = ACTIONS(2860), + [aux_sym_cmd_identifier_token23] = ACTIONS(2860), + [aux_sym_cmd_identifier_token24] = ACTIONS(2862), + [aux_sym_cmd_identifier_token25] = ACTIONS(2860), + [aux_sym_cmd_identifier_token26] = ACTIONS(2862), + [aux_sym_cmd_identifier_token27] = ACTIONS(2860), + [aux_sym_cmd_identifier_token28] = ACTIONS(2860), + [aux_sym_cmd_identifier_token29] = ACTIONS(2860), + [aux_sym_cmd_identifier_token30] = ACTIONS(2860), + [aux_sym_cmd_identifier_token31] = ACTIONS(2862), + [aux_sym_cmd_identifier_token32] = ACTIONS(2862), + [aux_sym_cmd_identifier_token33] = ACTIONS(2862), + [aux_sym_cmd_identifier_token34] = ACTIONS(2862), + [aux_sym_cmd_identifier_token35] = ACTIONS(2862), + [aux_sym_cmd_identifier_token36] = ACTIONS(2860), + [anon_sym_true] = ACTIONS(2862), + [anon_sym_false] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2862), + [aux_sym_cmd_identifier_token38] = ACTIONS(2860), + [aux_sym_cmd_identifier_token39] = ACTIONS(2862), + [aux_sym_cmd_identifier_token40] = ACTIONS(2862), + [sym__newline] = ACTIONS(2864), + [anon_sym_PIPE] = ACTIONS(2866), + [anon_sym_err_GT_PIPE] = ACTIONS(2866), + [anon_sym_out_GT_PIPE] = ACTIONS(2866), + [anon_sym_e_GT_PIPE] = ACTIONS(2866), + [anon_sym_o_GT_PIPE] = ACTIONS(2866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2866), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [aux_sym_ctrl_match_token1] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [aux_sym_expr_unary_token1] = ACTIONS(2862), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2862), + [anon_sym_DOT_DOT_LT] = ACTIONS(2862), + [aux_sym__val_number_decimal_token1] = ACTIONS(2860), + [aux_sym__val_number_decimal_token2] = ACTIONS(2862), + [aux_sym__val_number_decimal_token3] = ACTIONS(2862), + [aux_sym__val_number_decimal_token4] = ACTIONS(2862), + [aux_sym__val_number_token1] = ACTIONS(2862), + [aux_sym__val_number_token2] = ACTIONS(2862), + [aux_sym__val_number_token3] = ACTIONS(2862), + [anon_sym_0b] = ACTIONS(2860), + [anon_sym_0o] = ACTIONS(2860), + [anon_sym_0x] = ACTIONS(2860), + [sym_val_date] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym__str_single_quotes] = ACTIONS(2862), + [sym__str_back_ticks] = ACTIONS(2862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), + [aux_sym_env_var_token1] = ACTIONS(2860), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_POUND] = ACTIONS(247), }, [686] = { + [aux_sym__pipe_separator] = STATE(686), [sym_comment] = STATE(686), - [aux_sym_cmd_identifier_token1] = ACTIONS(2846), - [aux_sym_cmd_identifier_token2] = ACTIONS(2848), - [aux_sym_cmd_identifier_token3] = ACTIONS(2848), - [aux_sym_cmd_identifier_token4] = ACTIONS(2848), - [aux_sym_cmd_identifier_token5] = ACTIONS(2848), - [aux_sym_cmd_identifier_token6] = ACTIONS(2848), - [aux_sym_cmd_identifier_token7] = ACTIONS(2848), - [aux_sym_cmd_identifier_token8] = ACTIONS(2848), - [aux_sym_cmd_identifier_token9] = ACTIONS(2846), - [aux_sym_cmd_identifier_token10] = ACTIONS(2848), - [aux_sym_cmd_identifier_token11] = ACTIONS(2848), - [aux_sym_cmd_identifier_token12] = ACTIONS(2848), - [aux_sym_cmd_identifier_token13] = ACTIONS(2846), - [aux_sym_cmd_identifier_token14] = ACTIONS(2848), - [aux_sym_cmd_identifier_token15] = ACTIONS(2846), - [aux_sym_cmd_identifier_token16] = ACTIONS(2848), - [aux_sym_cmd_identifier_token17] = ACTIONS(2848), - [aux_sym_cmd_identifier_token18] = ACTIONS(2848), - [aux_sym_cmd_identifier_token19] = ACTIONS(2848), - [aux_sym_cmd_identifier_token20] = ACTIONS(2848), - [aux_sym_cmd_identifier_token21] = ACTIONS(2848), - [aux_sym_cmd_identifier_token22] = ACTIONS(2846), - [aux_sym_cmd_identifier_token23] = ACTIONS(2846), - [aux_sym_cmd_identifier_token24] = ACTIONS(2848), - [aux_sym_cmd_identifier_token25] = ACTIONS(2846), - [aux_sym_cmd_identifier_token26] = ACTIONS(2848), - [aux_sym_cmd_identifier_token27] = ACTIONS(2846), - [aux_sym_cmd_identifier_token28] = ACTIONS(2846), - [aux_sym_cmd_identifier_token29] = ACTIONS(2846), - [aux_sym_cmd_identifier_token30] = ACTIONS(2846), - [aux_sym_cmd_identifier_token31] = ACTIONS(2848), - [aux_sym_cmd_identifier_token32] = ACTIONS(2848), - [aux_sym_cmd_identifier_token33] = ACTIONS(2848), - [aux_sym_cmd_identifier_token34] = ACTIONS(2848), - [aux_sym_cmd_identifier_token35] = ACTIONS(2848), - [aux_sym_cmd_identifier_token36] = ACTIONS(2846), - [anon_sym_true] = ACTIONS(2848), - [anon_sym_false] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2848), - [aux_sym_cmd_identifier_token38] = ACTIONS(2846), - [aux_sym_cmd_identifier_token39] = ACTIONS(2848), - [aux_sym_cmd_identifier_token40] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_err_GT_PIPE] = ACTIONS(2848), - [anon_sym_out_GT_PIPE] = ACTIONS(2848), - [anon_sym_e_GT_PIPE] = ACTIONS(2848), - [anon_sym_o_GT_PIPE] = ACTIONS(2848), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [aux_sym_ctrl_match_token1] = ACTIONS(2848), - [anon_sym_DOT_DOT] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_where] = ACTIONS(2848), - [aux_sym_expr_unary_token1] = ACTIONS(2848), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2848), - [anon_sym_DOT_DOT_LT] = ACTIONS(2848), - [aux_sym__val_number_decimal_token1] = ACTIONS(2846), - [aux_sym__val_number_decimal_token2] = ACTIONS(2848), - [anon_sym_DOT2] = ACTIONS(2846), - [aux_sym__val_number_decimal_token3] = ACTIONS(2848), - [aux_sym__val_number_token1] = ACTIONS(2848), - [aux_sym__val_number_token2] = ACTIONS(2848), - [aux_sym__val_number_token3] = ACTIONS(2848), - [anon_sym_0b] = ACTIONS(2846), - [anon_sym_0o] = ACTIONS(2846), - [anon_sym_0x] = ACTIONS(2846), - [sym_val_date] = ACTIONS(2848), - [anon_sym_DQUOTE] = ACTIONS(2848), - [sym__str_single_quotes] = ACTIONS(2848), - [sym__str_back_ticks] = ACTIONS(2848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2848), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(5418), + [aux_sym_cmd_identifier_token1] = ACTIONS(2868), + [aux_sym_cmd_identifier_token2] = ACTIONS(2870), + [aux_sym_cmd_identifier_token3] = ACTIONS(2870), + [aux_sym_cmd_identifier_token4] = ACTIONS(2870), + [aux_sym_cmd_identifier_token5] = ACTIONS(2870), + [aux_sym_cmd_identifier_token6] = ACTIONS(2870), + [aux_sym_cmd_identifier_token7] = ACTIONS(2870), + [aux_sym_cmd_identifier_token8] = ACTIONS(2870), + [aux_sym_cmd_identifier_token9] = ACTIONS(2868), + [aux_sym_cmd_identifier_token10] = ACTIONS(2870), + [aux_sym_cmd_identifier_token11] = ACTIONS(2870), + [aux_sym_cmd_identifier_token12] = ACTIONS(2870), + [aux_sym_cmd_identifier_token13] = ACTIONS(2868), + [aux_sym_cmd_identifier_token14] = ACTIONS(2870), + [aux_sym_cmd_identifier_token15] = ACTIONS(2868), + [aux_sym_cmd_identifier_token16] = ACTIONS(2870), + [aux_sym_cmd_identifier_token17] = ACTIONS(2870), + [aux_sym_cmd_identifier_token18] = ACTIONS(2870), + [aux_sym_cmd_identifier_token19] = ACTIONS(2870), + [aux_sym_cmd_identifier_token20] = ACTIONS(2870), + [aux_sym_cmd_identifier_token21] = ACTIONS(2870), + [aux_sym_cmd_identifier_token22] = ACTIONS(2868), + [aux_sym_cmd_identifier_token23] = ACTIONS(2868), + [aux_sym_cmd_identifier_token24] = ACTIONS(2870), + [aux_sym_cmd_identifier_token25] = ACTIONS(2868), + [aux_sym_cmd_identifier_token26] = ACTIONS(2870), + [aux_sym_cmd_identifier_token27] = ACTIONS(2868), + [aux_sym_cmd_identifier_token28] = ACTIONS(2868), + [aux_sym_cmd_identifier_token29] = ACTIONS(2868), + [aux_sym_cmd_identifier_token30] = ACTIONS(2868), + [aux_sym_cmd_identifier_token31] = ACTIONS(2870), + [aux_sym_cmd_identifier_token32] = ACTIONS(2870), + [aux_sym_cmd_identifier_token33] = ACTIONS(2870), + [aux_sym_cmd_identifier_token34] = ACTIONS(2870), + [aux_sym_cmd_identifier_token35] = ACTIONS(2870), + [aux_sym_cmd_identifier_token36] = ACTIONS(2868), + [anon_sym_true] = ACTIONS(2870), + [anon_sym_false] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2870), + [aux_sym_cmd_identifier_token38] = ACTIONS(2868), + [aux_sym_cmd_identifier_token39] = ACTIONS(2870), + [aux_sym_cmd_identifier_token40] = ACTIONS(2870), + [sym__newline] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2875), + [anon_sym_err_GT_PIPE] = ACTIONS(2875), + [anon_sym_out_GT_PIPE] = ACTIONS(2875), + [anon_sym_e_GT_PIPE] = ACTIONS(2875), + [anon_sym_o_GT_PIPE] = ACTIONS(2875), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2875), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2875), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2875), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [aux_sym_ctrl_match_token1] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_where] = ACTIONS(2870), + [aux_sym_expr_unary_token1] = ACTIONS(2870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2870), + [anon_sym_DOT_DOT_LT] = ACTIONS(2870), + [aux_sym__val_number_decimal_token1] = ACTIONS(2868), + [aux_sym__val_number_decimal_token2] = ACTIONS(2870), + [aux_sym__val_number_decimal_token3] = ACTIONS(2870), + [aux_sym__val_number_decimal_token4] = ACTIONS(2870), + [aux_sym__val_number_token1] = ACTIONS(2870), + [aux_sym__val_number_token2] = ACTIONS(2870), + [aux_sym__val_number_token3] = ACTIONS(2870), + [anon_sym_0b] = ACTIONS(2868), + [anon_sym_0o] = ACTIONS(2868), + [anon_sym_0x] = ACTIONS(2868), + [sym_val_date] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym__str_single_quotes] = ACTIONS(2870), + [sym__str_back_ticks] = ACTIONS(2870), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), + [aux_sym_env_var_token1] = ACTIONS(2868), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(247), }, [687] = { + [aux_sym__pipe_separator] = STATE(686), [sym_comment] = STATE(687), - [aux_sym_cmd_identifier_token1] = ACTIONS(2850), - [aux_sym_cmd_identifier_token2] = ACTIONS(2852), - [aux_sym_cmd_identifier_token3] = ACTIONS(2852), - [aux_sym_cmd_identifier_token4] = ACTIONS(2852), - [aux_sym_cmd_identifier_token5] = ACTIONS(2852), - [aux_sym_cmd_identifier_token6] = ACTIONS(2852), - [aux_sym_cmd_identifier_token7] = ACTIONS(2852), - [aux_sym_cmd_identifier_token8] = ACTIONS(2852), - [aux_sym_cmd_identifier_token9] = ACTIONS(2850), - [aux_sym_cmd_identifier_token10] = ACTIONS(2852), - [aux_sym_cmd_identifier_token11] = ACTIONS(2852), - [aux_sym_cmd_identifier_token12] = ACTIONS(2852), - [aux_sym_cmd_identifier_token13] = ACTIONS(2850), - [aux_sym_cmd_identifier_token14] = ACTIONS(2852), - [aux_sym_cmd_identifier_token15] = ACTIONS(2850), - [aux_sym_cmd_identifier_token16] = ACTIONS(2852), - [aux_sym_cmd_identifier_token17] = ACTIONS(2852), - [aux_sym_cmd_identifier_token18] = ACTIONS(2852), - [aux_sym_cmd_identifier_token19] = ACTIONS(2852), - [aux_sym_cmd_identifier_token20] = ACTIONS(2852), - [aux_sym_cmd_identifier_token21] = ACTIONS(2852), - [aux_sym_cmd_identifier_token22] = ACTIONS(2850), - [aux_sym_cmd_identifier_token23] = ACTIONS(2850), - [aux_sym_cmd_identifier_token24] = ACTIONS(2852), - [aux_sym_cmd_identifier_token25] = ACTIONS(2850), - [aux_sym_cmd_identifier_token26] = ACTIONS(2852), - [aux_sym_cmd_identifier_token27] = ACTIONS(2850), - [aux_sym_cmd_identifier_token28] = ACTIONS(2850), - [aux_sym_cmd_identifier_token29] = ACTIONS(2850), - [aux_sym_cmd_identifier_token30] = ACTIONS(2850), - [aux_sym_cmd_identifier_token31] = ACTIONS(2852), - [aux_sym_cmd_identifier_token32] = ACTIONS(2852), - [aux_sym_cmd_identifier_token33] = ACTIONS(2852), - [aux_sym_cmd_identifier_token34] = ACTIONS(2852), - [aux_sym_cmd_identifier_token35] = ACTIONS(2852), - [aux_sym_cmd_identifier_token36] = ACTIONS(2850), - [anon_sym_true] = ACTIONS(2852), - [anon_sym_false] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2852), - [aux_sym_cmd_identifier_token38] = ACTIONS(2850), - [aux_sym_cmd_identifier_token39] = ACTIONS(2852), - [aux_sym_cmd_identifier_token40] = ACTIONS(2852), - [sym__newline] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_err_GT_PIPE] = ACTIONS(1220), - [anon_sym_out_GT_PIPE] = ACTIONS(1220), - [anon_sym_e_GT_PIPE] = ACTIONS(1220), - [anon_sym_o_GT_PIPE] = ACTIONS(1220), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1220), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1220), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1220), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [aux_sym_ctrl_match_token1] = ACTIONS(2852), - [anon_sym_DOT_DOT] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_where] = ACTIONS(2852), - [aux_sym_expr_unary_token1] = ACTIONS(2852), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2852), - [anon_sym_DOT_DOT_LT] = ACTIONS(2852), - [aux_sym__val_number_decimal_token1] = ACTIONS(2850), - [aux_sym__val_number_decimal_token2] = ACTIONS(2852), - [anon_sym_DOT2] = ACTIONS(2850), - [aux_sym__val_number_decimal_token3] = ACTIONS(2852), - [aux_sym__val_number_token1] = ACTIONS(2852), - [aux_sym__val_number_token2] = ACTIONS(2852), - [aux_sym__val_number_token3] = ACTIONS(2852), - [anon_sym_0b] = ACTIONS(2850), - [anon_sym_0o] = ACTIONS(2850), - [anon_sym_0x] = ACTIONS(2850), - [sym_val_date] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [sym__str_single_quotes] = ACTIONS(2852), - [sym__str_back_ticks] = ACTIONS(2852), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2852), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(689), + [aux_sym_cmd_identifier_token1] = ACTIONS(2878), + [aux_sym_cmd_identifier_token2] = ACTIONS(2880), + [aux_sym_cmd_identifier_token3] = ACTIONS(2880), + [aux_sym_cmd_identifier_token4] = ACTIONS(2880), + [aux_sym_cmd_identifier_token5] = ACTIONS(2880), + [aux_sym_cmd_identifier_token6] = ACTIONS(2880), + [aux_sym_cmd_identifier_token7] = ACTIONS(2880), + [aux_sym_cmd_identifier_token8] = ACTIONS(2880), + [aux_sym_cmd_identifier_token9] = ACTIONS(2878), + [aux_sym_cmd_identifier_token10] = ACTIONS(2880), + [aux_sym_cmd_identifier_token11] = ACTIONS(2880), + [aux_sym_cmd_identifier_token12] = ACTIONS(2880), + [aux_sym_cmd_identifier_token13] = ACTIONS(2878), + [aux_sym_cmd_identifier_token14] = ACTIONS(2880), + [aux_sym_cmd_identifier_token15] = ACTIONS(2878), + [aux_sym_cmd_identifier_token16] = ACTIONS(2880), + [aux_sym_cmd_identifier_token17] = ACTIONS(2880), + [aux_sym_cmd_identifier_token18] = ACTIONS(2880), + [aux_sym_cmd_identifier_token19] = ACTIONS(2880), + [aux_sym_cmd_identifier_token20] = ACTIONS(2880), + [aux_sym_cmd_identifier_token21] = ACTIONS(2880), + [aux_sym_cmd_identifier_token22] = ACTIONS(2878), + [aux_sym_cmd_identifier_token23] = ACTIONS(2878), + [aux_sym_cmd_identifier_token24] = ACTIONS(2880), + [aux_sym_cmd_identifier_token25] = ACTIONS(2878), + [aux_sym_cmd_identifier_token26] = ACTIONS(2880), + [aux_sym_cmd_identifier_token27] = ACTIONS(2878), + [aux_sym_cmd_identifier_token28] = ACTIONS(2878), + [aux_sym_cmd_identifier_token29] = ACTIONS(2878), + [aux_sym_cmd_identifier_token30] = ACTIONS(2878), + [aux_sym_cmd_identifier_token31] = ACTIONS(2880), + [aux_sym_cmd_identifier_token32] = ACTIONS(2880), + [aux_sym_cmd_identifier_token33] = ACTIONS(2880), + [aux_sym_cmd_identifier_token34] = ACTIONS(2880), + [aux_sym_cmd_identifier_token35] = ACTIONS(2880), + [aux_sym_cmd_identifier_token36] = ACTIONS(2878), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [anon_sym_null] = ACTIONS(2880), + [aux_sym_cmd_identifier_token38] = ACTIONS(2878), + [aux_sym_cmd_identifier_token39] = ACTIONS(2880), + [aux_sym_cmd_identifier_token40] = ACTIONS(2880), + [sym__newline] = ACTIONS(2882), + [anon_sym_PIPE] = ACTIONS(2866), + [anon_sym_err_GT_PIPE] = ACTIONS(2866), + [anon_sym_out_GT_PIPE] = ACTIONS(2866), + [anon_sym_e_GT_PIPE] = ACTIONS(2866), + [anon_sym_o_GT_PIPE] = ACTIONS(2866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2866), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_DOLLAR] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2878), + [anon_sym_break] = ACTIONS(2878), + [anon_sym_continue] = ACTIONS(2878), + [anon_sym_do] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2878), + [aux_sym_ctrl_match_token1] = ACTIONS(2880), + [anon_sym_DOT_DOT] = ACTIONS(2878), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_return] = ACTIONS(2878), + [anon_sym_where] = ACTIONS(2880), + [aux_sym_expr_unary_token1] = ACTIONS(2880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2880), + [anon_sym_DOT_DOT_LT] = ACTIONS(2880), + [aux_sym__val_number_decimal_token1] = ACTIONS(2878), + [aux_sym__val_number_decimal_token2] = ACTIONS(2880), + [aux_sym__val_number_decimal_token3] = ACTIONS(2880), + [aux_sym__val_number_decimal_token4] = ACTIONS(2880), + [aux_sym__val_number_token1] = ACTIONS(2880), + [aux_sym__val_number_token2] = ACTIONS(2880), + [aux_sym__val_number_token3] = ACTIONS(2880), + [anon_sym_0b] = ACTIONS(2878), + [anon_sym_0o] = ACTIONS(2878), + [anon_sym_0x] = ACTIONS(2878), + [sym_val_date] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [sym__str_single_quotes] = ACTIONS(2880), + [sym__str_back_ticks] = ACTIONS(2880), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [aux_sym_env_var_token1] = ACTIONS(2878), + [anon_sym_CARET] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(247), }, [688] = { [sym_comment] = STATE(688), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_in] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym__] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(2854), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(688), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1757), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(1757), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1757), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1755), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1755), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1755), + [aux_sym_cmd_identifier_token28] = ACTIONS(1755), + [aux_sym_cmd_identifier_token29] = ACTIONS(1755), + [aux_sym_cmd_identifier_token30] = ACTIONS(1755), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1757), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [sym__newline] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_err_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_GT_PIPE] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [aux_sym_ctrl_match_token1] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_where] = ACTIONS(1757), + [aux_sym_expr_unary_token1] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [aux_sym_env_var_token1] = ACTIONS(1755), + [anon_sym_CARET] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(247), }, [689] = { - [sym__expr_parenthesized_immediate] = STATE(7559), [sym_comment] = STATE(689), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1441), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [sym__newline] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym__] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_and] = ACTIONS(1441), - [anon_sym_xor] = ACTIONS(1441), - [anon_sym_or] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1441), - [anon_sym_starts_DASHwith] = ACTIONS(1441), - [anon_sym_ends_DASHwith] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ_TILDE] = ACTIONS(1441), - [anon_sym_BANG_TILDE] = ACTIONS(1441), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_SLASH_SLASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_bit_DASHshl] = ACTIONS(1441), - [anon_sym_bit_DASHshr] = ACTIONS(1441), - [anon_sym_bit_DASHand] = ACTIONS(1441), - [anon_sym_bit_DASHxor] = ACTIONS(1441), - [anon_sym_bit_DASHor] = ACTIONS(1441), - [anon_sym_DOT_DOT2] = ACTIONS(2858), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), - [anon_sym_DOT_DOT_LT] = ACTIONS(1429), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2862), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1429), - [sym_filesize_unit] = ACTIONS(2864), - [sym_duration_unit] = ACTIONS(2866), - [anon_sym_0o] = ACTIONS(1429), - [anon_sym_0x] = ACTIONS(1429), - [sym_val_date] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1429), - [aux_sym_unquoted_token6] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(688), + [aux_sym_cmd_identifier_token1] = ACTIONS(2887), + [aux_sym_cmd_identifier_token2] = ACTIONS(2889), + [aux_sym_cmd_identifier_token3] = ACTIONS(2889), + [aux_sym_cmd_identifier_token4] = ACTIONS(2889), + [aux_sym_cmd_identifier_token5] = ACTIONS(2889), + [aux_sym_cmd_identifier_token6] = ACTIONS(2889), + [aux_sym_cmd_identifier_token7] = ACTIONS(2889), + [aux_sym_cmd_identifier_token8] = ACTIONS(2889), + [aux_sym_cmd_identifier_token9] = ACTIONS(2887), + [aux_sym_cmd_identifier_token10] = ACTIONS(2889), + [aux_sym_cmd_identifier_token11] = ACTIONS(2889), + [aux_sym_cmd_identifier_token12] = ACTIONS(2889), + [aux_sym_cmd_identifier_token13] = ACTIONS(2887), + [aux_sym_cmd_identifier_token14] = ACTIONS(2889), + [aux_sym_cmd_identifier_token15] = ACTIONS(2887), + [aux_sym_cmd_identifier_token16] = ACTIONS(2889), + [aux_sym_cmd_identifier_token17] = ACTIONS(2889), + [aux_sym_cmd_identifier_token18] = ACTIONS(2889), + [aux_sym_cmd_identifier_token19] = ACTIONS(2889), + [aux_sym_cmd_identifier_token20] = ACTIONS(2889), + [aux_sym_cmd_identifier_token21] = ACTIONS(2889), + [aux_sym_cmd_identifier_token22] = ACTIONS(2887), + [aux_sym_cmd_identifier_token23] = ACTIONS(2887), + [aux_sym_cmd_identifier_token24] = ACTIONS(2889), + [aux_sym_cmd_identifier_token25] = ACTIONS(2887), + [aux_sym_cmd_identifier_token26] = ACTIONS(2889), + [aux_sym_cmd_identifier_token27] = ACTIONS(2887), + [aux_sym_cmd_identifier_token28] = ACTIONS(2887), + [aux_sym_cmd_identifier_token29] = ACTIONS(2887), + [aux_sym_cmd_identifier_token30] = ACTIONS(2887), + [aux_sym_cmd_identifier_token31] = ACTIONS(2889), + [aux_sym_cmd_identifier_token32] = ACTIONS(2889), + [aux_sym_cmd_identifier_token33] = ACTIONS(2889), + [aux_sym_cmd_identifier_token34] = ACTIONS(2889), + [aux_sym_cmd_identifier_token35] = ACTIONS(2889), + [aux_sym_cmd_identifier_token36] = ACTIONS(2887), + [anon_sym_true] = ACTIONS(2889), + [anon_sym_false] = ACTIONS(2889), + [anon_sym_null] = ACTIONS(2889), + [aux_sym_cmd_identifier_token38] = ACTIONS(2887), + [aux_sym_cmd_identifier_token39] = ACTIONS(2889), + [aux_sym_cmd_identifier_token40] = ACTIONS(2889), + [sym__newline] = ACTIONS(2882), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_err_GT_PIPE] = ACTIONS(2891), + [anon_sym_out_GT_PIPE] = ACTIONS(2891), + [anon_sym_e_GT_PIPE] = ACTIONS(2891), + [anon_sym_o_GT_PIPE] = ACTIONS(2891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_DOLLAR] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [aux_sym_ctrl_match_token1] = ACTIONS(2889), + [anon_sym_DOT_DOT] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_where] = ACTIONS(2889), + [aux_sym_expr_unary_token1] = ACTIONS(2889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2889), + [anon_sym_DOT_DOT_LT] = ACTIONS(2889), + [aux_sym__val_number_decimal_token1] = ACTIONS(2887), + [aux_sym__val_number_decimal_token2] = ACTIONS(2889), + [aux_sym__val_number_decimal_token3] = ACTIONS(2889), + [aux_sym__val_number_decimal_token4] = ACTIONS(2889), + [aux_sym__val_number_token1] = ACTIONS(2889), + [aux_sym__val_number_token2] = ACTIONS(2889), + [aux_sym__val_number_token3] = ACTIONS(2889), + [anon_sym_0b] = ACTIONS(2887), + [anon_sym_0o] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2887), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym__str_single_quotes] = ACTIONS(2889), + [sym__str_back_ticks] = ACTIONS(2889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2889), + [aux_sym_env_var_token1] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2889), + [anon_sym_POUND] = ACTIONS(247), }, [690] = { [sym_comment] = STATE(690), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(2868), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token1] = ACTIONS(2868), + [aux_sym_cmd_identifier_token2] = ACTIONS(2870), + [aux_sym_cmd_identifier_token3] = ACTIONS(2870), + [aux_sym_cmd_identifier_token4] = ACTIONS(2870), + [aux_sym_cmd_identifier_token5] = ACTIONS(2870), + [aux_sym_cmd_identifier_token6] = ACTIONS(2870), + [aux_sym_cmd_identifier_token7] = ACTIONS(2870), + [aux_sym_cmd_identifier_token8] = ACTIONS(2870), + [aux_sym_cmd_identifier_token9] = ACTIONS(2868), + [aux_sym_cmd_identifier_token10] = ACTIONS(2870), + [aux_sym_cmd_identifier_token11] = ACTIONS(2870), + [aux_sym_cmd_identifier_token12] = ACTIONS(2870), + [aux_sym_cmd_identifier_token13] = ACTIONS(2868), + [aux_sym_cmd_identifier_token14] = ACTIONS(2870), + [aux_sym_cmd_identifier_token15] = ACTIONS(2868), + [aux_sym_cmd_identifier_token16] = ACTIONS(2870), + [aux_sym_cmd_identifier_token17] = ACTIONS(2870), + [aux_sym_cmd_identifier_token18] = ACTIONS(2870), + [aux_sym_cmd_identifier_token19] = ACTIONS(2870), + [aux_sym_cmd_identifier_token20] = ACTIONS(2870), + [aux_sym_cmd_identifier_token21] = ACTIONS(2870), + [aux_sym_cmd_identifier_token22] = ACTIONS(2868), + [aux_sym_cmd_identifier_token23] = ACTIONS(2868), + [aux_sym_cmd_identifier_token24] = ACTIONS(2870), + [aux_sym_cmd_identifier_token25] = ACTIONS(2868), + [aux_sym_cmd_identifier_token26] = ACTIONS(2870), + [aux_sym_cmd_identifier_token27] = ACTIONS(2868), + [aux_sym_cmd_identifier_token28] = ACTIONS(2868), + [aux_sym_cmd_identifier_token29] = ACTIONS(2868), + [aux_sym_cmd_identifier_token30] = ACTIONS(2868), + [aux_sym_cmd_identifier_token31] = ACTIONS(2870), + [aux_sym_cmd_identifier_token32] = ACTIONS(2870), + [aux_sym_cmd_identifier_token33] = ACTIONS(2870), + [aux_sym_cmd_identifier_token34] = ACTIONS(2870), + [aux_sym_cmd_identifier_token35] = ACTIONS(2870), + [aux_sym_cmd_identifier_token36] = ACTIONS(2868), + [anon_sym_true] = ACTIONS(2870), + [anon_sym_false] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2870), + [aux_sym_cmd_identifier_token38] = ACTIONS(2868), + [aux_sym_cmd_identifier_token39] = ACTIONS(2870), + [aux_sym_cmd_identifier_token40] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_err_GT_PIPE] = ACTIONS(2870), + [anon_sym_out_GT_PIPE] = ACTIONS(2870), + [anon_sym_e_GT_PIPE] = ACTIONS(2870), + [anon_sym_o_GT_PIPE] = ACTIONS(2870), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2870), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2870), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2870), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [aux_sym_ctrl_match_token1] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_where] = ACTIONS(2870), + [aux_sym_expr_unary_token1] = ACTIONS(2870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2870), + [anon_sym_DOT_DOT_LT] = ACTIONS(2870), + [aux_sym__val_number_decimal_token1] = ACTIONS(2868), + [aux_sym__val_number_decimal_token2] = ACTIONS(2870), + [aux_sym__val_number_decimal_token3] = ACTIONS(2870), + [aux_sym__val_number_decimal_token4] = ACTIONS(2870), + [aux_sym__val_number_token1] = ACTIONS(2870), + [aux_sym__val_number_token2] = ACTIONS(2870), + [aux_sym__val_number_token3] = ACTIONS(2870), + [anon_sym_0b] = ACTIONS(2868), + [anon_sym_0o] = ACTIONS(2868), + [anon_sym_0x] = ACTIONS(2868), + [sym_val_date] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym__str_single_quotes] = ACTIONS(2870), + [sym__str_back_ticks] = ACTIONS(2870), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), + [aux_sym_env_var_token1] = ACTIONS(2868), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(247), }, [691] = { [sym_comment] = STATE(691), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_in] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym__] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(2854), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token1] = ACTIONS(2893), + [aux_sym_cmd_identifier_token2] = ACTIONS(2895), + [aux_sym_cmd_identifier_token3] = ACTIONS(2895), + [aux_sym_cmd_identifier_token4] = ACTIONS(2895), + [aux_sym_cmd_identifier_token5] = ACTIONS(2895), + [aux_sym_cmd_identifier_token6] = ACTIONS(2895), + [aux_sym_cmd_identifier_token7] = ACTIONS(2895), + [aux_sym_cmd_identifier_token8] = ACTIONS(2895), + [aux_sym_cmd_identifier_token9] = ACTIONS(2893), + [aux_sym_cmd_identifier_token10] = ACTIONS(2895), + [aux_sym_cmd_identifier_token11] = ACTIONS(2895), + [aux_sym_cmd_identifier_token12] = ACTIONS(2895), + [aux_sym_cmd_identifier_token13] = ACTIONS(2893), + [aux_sym_cmd_identifier_token14] = ACTIONS(2895), + [aux_sym_cmd_identifier_token15] = ACTIONS(2893), + [aux_sym_cmd_identifier_token16] = ACTIONS(2895), + [aux_sym_cmd_identifier_token17] = ACTIONS(2895), + [aux_sym_cmd_identifier_token18] = ACTIONS(2895), + [aux_sym_cmd_identifier_token19] = ACTIONS(2895), + [aux_sym_cmd_identifier_token20] = ACTIONS(2895), + [aux_sym_cmd_identifier_token21] = ACTIONS(2895), + [aux_sym_cmd_identifier_token22] = ACTIONS(2893), + [aux_sym_cmd_identifier_token23] = ACTIONS(2893), + [aux_sym_cmd_identifier_token24] = ACTIONS(2895), + [aux_sym_cmd_identifier_token25] = ACTIONS(2893), + [aux_sym_cmd_identifier_token26] = ACTIONS(2895), + [aux_sym_cmd_identifier_token27] = ACTIONS(2893), + [aux_sym_cmd_identifier_token28] = ACTIONS(2893), + [aux_sym_cmd_identifier_token29] = ACTIONS(2893), + [aux_sym_cmd_identifier_token30] = ACTIONS(2893), + [aux_sym_cmd_identifier_token31] = ACTIONS(2895), + [aux_sym_cmd_identifier_token32] = ACTIONS(2895), + [aux_sym_cmd_identifier_token33] = ACTIONS(2895), + [aux_sym_cmd_identifier_token34] = ACTIONS(2895), + [aux_sym_cmd_identifier_token35] = ACTIONS(2895), + [aux_sym_cmd_identifier_token36] = ACTIONS(2893), + [anon_sym_true] = ACTIONS(2895), + [anon_sym_false] = ACTIONS(2895), + [anon_sym_null] = ACTIONS(2895), + [aux_sym_cmd_identifier_token38] = ACTIONS(2893), + [aux_sym_cmd_identifier_token39] = ACTIONS(2895), + [aux_sym_cmd_identifier_token40] = ACTIONS(2895), + [sym__newline] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2895), + [anon_sym_err_GT_PIPE] = ACTIONS(2895), + [anon_sym_out_GT_PIPE] = ACTIONS(2895), + [anon_sym_e_GT_PIPE] = ACTIONS(2895), + [anon_sym_o_GT_PIPE] = ACTIONS(2895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2895), + [anon_sym_DOLLAR] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_do] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_match] = ACTIONS(2893), + [aux_sym_ctrl_match_token1] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(2893), + [anon_sym_try] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_where] = ACTIONS(2895), + [aux_sym_expr_unary_token1] = ACTIONS(2895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2895), + [anon_sym_DOT_DOT_LT] = ACTIONS(2895), + [aux_sym__val_number_decimal_token1] = ACTIONS(2893), + [aux_sym__val_number_decimal_token2] = ACTIONS(2895), + [aux_sym__val_number_decimal_token3] = ACTIONS(2895), + [aux_sym__val_number_decimal_token4] = ACTIONS(2895), + [aux_sym__val_number_token1] = ACTIONS(2895), + [aux_sym__val_number_token2] = ACTIONS(2895), + [aux_sym__val_number_token3] = ACTIONS(2895), + [anon_sym_0b] = ACTIONS(2893), + [anon_sym_0o] = ACTIONS(2893), + [anon_sym_0x] = ACTIONS(2893), + [sym_val_date] = ACTIONS(2895), + [anon_sym_DQUOTE] = ACTIONS(2895), + [sym__str_single_quotes] = ACTIONS(2895), + [sym__str_back_ticks] = ACTIONS(2895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2895), + [aux_sym_env_var_token1] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2895), + [anon_sym_POUND] = ACTIONS(247), }, [692] = { [sym_comment] = STATE(692), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(2844), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token1] = ACTIONS(1273), + [aux_sym_cmd_identifier_token2] = ACTIONS(1277), + [aux_sym_cmd_identifier_token3] = ACTIONS(1277), + [aux_sym_cmd_identifier_token4] = ACTIONS(1277), + [aux_sym_cmd_identifier_token5] = ACTIONS(1277), + [aux_sym_cmd_identifier_token6] = ACTIONS(1277), + [aux_sym_cmd_identifier_token7] = ACTIONS(1277), + [aux_sym_cmd_identifier_token8] = ACTIONS(1277), + [aux_sym_cmd_identifier_token9] = ACTIONS(1273), + [aux_sym_cmd_identifier_token10] = ACTIONS(1277), + [aux_sym_cmd_identifier_token11] = ACTIONS(1277), + [aux_sym_cmd_identifier_token12] = ACTIONS(1277), + [aux_sym_cmd_identifier_token13] = ACTIONS(1273), + [aux_sym_cmd_identifier_token14] = ACTIONS(1277), + [aux_sym_cmd_identifier_token15] = ACTIONS(1273), + [aux_sym_cmd_identifier_token16] = ACTIONS(1277), + [aux_sym_cmd_identifier_token17] = ACTIONS(1277), + [aux_sym_cmd_identifier_token18] = ACTIONS(1277), + [aux_sym_cmd_identifier_token19] = ACTIONS(1277), + [aux_sym_cmd_identifier_token20] = ACTIONS(1277), + [aux_sym_cmd_identifier_token21] = ACTIONS(1277), + [aux_sym_cmd_identifier_token22] = ACTIONS(1273), + [aux_sym_cmd_identifier_token23] = ACTIONS(1273), + [aux_sym_cmd_identifier_token24] = ACTIONS(1277), + [aux_sym_cmd_identifier_token25] = ACTIONS(1273), + [aux_sym_cmd_identifier_token26] = ACTIONS(1277), + [aux_sym_cmd_identifier_token27] = ACTIONS(1273), + [aux_sym_cmd_identifier_token28] = ACTIONS(1273), + [aux_sym_cmd_identifier_token29] = ACTIONS(1273), + [aux_sym_cmd_identifier_token30] = ACTIONS(1273), + [aux_sym_cmd_identifier_token31] = ACTIONS(1277), + [aux_sym_cmd_identifier_token32] = ACTIONS(1277), + [aux_sym_cmd_identifier_token33] = ACTIONS(1277), + [aux_sym_cmd_identifier_token34] = ACTIONS(1277), + [aux_sym_cmd_identifier_token35] = ACTIONS(1277), + [aux_sym_cmd_identifier_token36] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_null] = ACTIONS(1277), + [aux_sym_cmd_identifier_token38] = ACTIONS(1273), + [aux_sym_cmd_identifier_token39] = ACTIONS(1277), + [aux_sym_cmd_identifier_token40] = ACTIONS(1277), + [sym__newline] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_err_GT_PIPE] = ACTIONS(1277), + [anon_sym_out_GT_PIPE] = ACTIONS(1277), + [anon_sym_e_GT_PIPE] = ACTIONS(1277), + [anon_sym_o_GT_PIPE] = ACTIONS(1277), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1277), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1277), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1277), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_match] = ACTIONS(1273), + [aux_sym_ctrl_match_token1] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_try] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_where] = ACTIONS(1277), + [aux_sym_expr_unary_token1] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_DOT_DOT_LT] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1273), + [aux_sym__val_number_decimal_token2] = ACTIONS(1277), + [aux_sym__val_number_decimal_token3] = ACTIONS(1277), + [aux_sym__val_number_decimal_token4] = ACTIONS(1277), + [aux_sym__val_number_token1] = ACTIONS(1277), + [aux_sym__val_number_token2] = ACTIONS(1277), + [aux_sym__val_number_token3] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1273), + [anon_sym_0o] = ACTIONS(1273), + [anon_sym_0x] = ACTIONS(1273), + [sym_val_date] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym__str_single_quotes] = ACTIONS(1277), + [sym__str_back_ticks] = ACTIONS(1277), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1277), + [aux_sym_env_var_token1] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(247), }, [693] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7745), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(693), - [aux_sym_shebang_repeat1] = STATE(753), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_RBRACK] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), + [aux_sym_cmd_identifier_token1] = ACTIONS(2897), + [aux_sym_cmd_identifier_token2] = ACTIONS(2899), + [aux_sym_cmd_identifier_token3] = ACTIONS(2899), + [aux_sym_cmd_identifier_token4] = ACTIONS(2899), + [aux_sym_cmd_identifier_token5] = ACTIONS(2899), + [aux_sym_cmd_identifier_token6] = ACTIONS(2899), + [aux_sym_cmd_identifier_token7] = ACTIONS(2899), + [aux_sym_cmd_identifier_token8] = ACTIONS(2899), + [aux_sym_cmd_identifier_token9] = ACTIONS(2897), + [aux_sym_cmd_identifier_token10] = ACTIONS(2899), + [aux_sym_cmd_identifier_token11] = ACTIONS(2899), + [aux_sym_cmd_identifier_token12] = ACTIONS(2899), + [aux_sym_cmd_identifier_token13] = ACTIONS(2897), + [aux_sym_cmd_identifier_token14] = ACTIONS(2899), + [aux_sym_cmd_identifier_token15] = ACTIONS(2897), + [aux_sym_cmd_identifier_token16] = ACTIONS(2899), + [aux_sym_cmd_identifier_token17] = ACTIONS(2899), + [aux_sym_cmd_identifier_token18] = ACTIONS(2899), + [aux_sym_cmd_identifier_token19] = ACTIONS(2899), + [aux_sym_cmd_identifier_token20] = ACTIONS(2899), + [aux_sym_cmd_identifier_token21] = ACTIONS(2899), + [aux_sym_cmd_identifier_token22] = ACTIONS(2897), + [aux_sym_cmd_identifier_token23] = ACTIONS(2897), + [aux_sym_cmd_identifier_token24] = ACTIONS(2899), + [aux_sym_cmd_identifier_token25] = ACTIONS(2897), + [aux_sym_cmd_identifier_token26] = ACTIONS(2899), + [aux_sym_cmd_identifier_token27] = ACTIONS(2897), + [aux_sym_cmd_identifier_token28] = ACTIONS(2897), + [aux_sym_cmd_identifier_token29] = ACTIONS(2897), + [aux_sym_cmd_identifier_token30] = ACTIONS(2897), + [aux_sym_cmd_identifier_token31] = ACTIONS(2899), + [aux_sym_cmd_identifier_token32] = ACTIONS(2899), + [aux_sym_cmd_identifier_token33] = ACTIONS(2899), + [aux_sym_cmd_identifier_token34] = ACTIONS(2899), + [aux_sym_cmd_identifier_token35] = ACTIONS(2899), + [aux_sym_cmd_identifier_token36] = ACTIONS(2897), + [anon_sym_true] = ACTIONS(2899), + [anon_sym_false] = ACTIONS(2899), + [anon_sym_null] = ACTIONS(2899), + [aux_sym_cmd_identifier_token38] = ACTIONS(2897), + [aux_sym_cmd_identifier_token39] = ACTIONS(2899), + [aux_sym_cmd_identifier_token40] = ACTIONS(2899), + [sym__newline] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_err_GT_PIPE] = ACTIONS(1277), + [anon_sym_out_GT_PIPE] = ACTIONS(1277), + [anon_sym_e_GT_PIPE] = ACTIONS(1277), + [anon_sym_o_GT_PIPE] = ACTIONS(1277), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1277), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1277), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1277), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym_DOLLAR] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_break] = ACTIONS(2897), + [anon_sym_continue] = ACTIONS(2897), + [anon_sym_do] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2897), + [anon_sym_match] = ACTIONS(2897), + [aux_sym_ctrl_match_token1] = ACTIONS(2899), + [anon_sym_DOT_DOT] = ACTIONS(2897), + [anon_sym_try] = ACTIONS(2897), + [anon_sym_return] = ACTIONS(2897), + [anon_sym_where] = ACTIONS(2899), + [aux_sym_expr_unary_token1] = ACTIONS(2899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2899), + [anon_sym_DOT_DOT_LT] = ACTIONS(2899), + [aux_sym__val_number_decimal_token1] = ACTIONS(2897), + [aux_sym__val_number_decimal_token2] = ACTIONS(2899), [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__val_number_decimal_token4] = ACTIONS(2899), + [aux_sym__val_number_token1] = ACTIONS(2899), + [aux_sym__val_number_token2] = ACTIONS(2899), + [aux_sym__val_number_token3] = ACTIONS(2899), + [anon_sym_0b] = ACTIONS(2897), + [anon_sym_0o] = ACTIONS(2897), + [anon_sym_0x] = ACTIONS(2897), + [sym_val_date] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(2899), + [sym__str_single_quotes] = ACTIONS(2899), + [sym__str_back_ticks] = ACTIONS(2899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2899), + [aux_sym_env_var_token1] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2899), + [anon_sym_POUND] = ACTIONS(247), }, [694] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7431), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(8023), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(694), - [aux_sym_shebang_repeat1] = STATE(737), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1483), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(2901), + [aux_sym__immediate_decimal_token2] = ACTIONS(2903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [695] = { [sym_comment] = STATE(695), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1475), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(2905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(2907), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [696] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7711), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7501), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7867), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(696), - [aux_sym_shebang_repeat1] = STATE(753), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(735), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [697] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(6952), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7804), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7520), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7728), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(697), - [aux_sym_shebang_repeat1] = STATE(729), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(737), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2943), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [698] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7411), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7949), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(698), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1506), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_in] = ACTIONS(1504), - [aux_sym_ctrl_match_token1] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1504), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_and] = ACTIONS(1506), - [anon_sym_xor] = ACTIONS(1506), - [anon_sym_or] = ACTIONS(1506), - [anon_sym_not_DASHin] = ACTIONS(1506), - [anon_sym_starts_DASHwith] = ACTIONS(1506), - [anon_sym_ends_DASHwith] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_TILDE] = ACTIONS(1506), - [anon_sym_BANG_TILDE] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_STAR_STAR] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_SLASH_SLASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_bit_DASHshl] = ACTIONS(1506), - [anon_sym_bit_DASHshr] = ACTIONS(1506), - [anon_sym_bit_DASHand] = ACTIONS(1506), - [anon_sym_bit_DASHxor] = ACTIONS(1506), - [anon_sym_bit_DASHor] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_DOT_DOT_LT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_0b] = ACTIONS(1504), - [sym_filesize_unit] = ACTIONS(1504), - [sym_duration_unit] = ACTIONS(1506), - [anon_sym_0o] = ACTIONS(1504), - [anon_sym_0x] = ACTIONS(1504), - [sym_val_date] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token1] = ACTIONS(1504), - [aux_sym_unquoted_token6] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(751), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [699] = { + [sym__expr_parenthesized_immediate] = STATE(7594), [sym_comment] = STATE(699), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [aux_sym_cmd_identifier_token38] = ACTIONS(1537), + [aux_sym_cmd_identifier_token39] = ACTIONS(1537), + [aux_sym_cmd_identifier_token40] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_COMMA] = ACTIONS(1537), + [anon_sym_DOLLAR] = ACTIONS(1537), + [aux_sym_ctrl_match_token1] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym__] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(1537), + [aux_sym_expr_binary_token2] = ACTIONS(1537), + [aux_sym_expr_binary_token3] = ACTIONS(1537), + [aux_sym_expr_binary_token4] = ACTIONS(1537), + [aux_sym_expr_binary_token5] = ACTIONS(1537), + [aux_sym_expr_binary_token6] = ACTIONS(1537), + [aux_sym_expr_binary_token7] = ACTIONS(1537), + [aux_sym_expr_binary_token8] = ACTIONS(1537), + [aux_sym_expr_binary_token9] = ACTIONS(1537), + [aux_sym_expr_binary_token10] = ACTIONS(1537), + [aux_sym_expr_binary_token11] = ACTIONS(1537), + [aux_sym_expr_binary_token12] = ACTIONS(1537), + [aux_sym_expr_binary_token13] = ACTIONS(1537), + [aux_sym_expr_binary_token14] = ACTIONS(1537), + [aux_sym_expr_binary_token15] = ACTIONS(1537), + [aux_sym_expr_binary_token16] = ACTIONS(1537), + [aux_sym_expr_binary_token17] = ACTIONS(1537), + [aux_sym_expr_binary_token18] = ACTIONS(1537), + [aux_sym_expr_binary_token19] = ACTIONS(1537), + [aux_sym_expr_binary_token20] = ACTIONS(1537), + [aux_sym_expr_binary_token21] = ACTIONS(1537), + [aux_sym_expr_binary_token22] = ACTIONS(1537), + [aux_sym_expr_binary_token23] = ACTIONS(1537), + [aux_sym_expr_binary_token24] = ACTIONS(1537), + [aux_sym_expr_binary_token25] = ACTIONS(1537), + [aux_sym_expr_binary_token26] = ACTIONS(1537), + [aux_sym_expr_binary_token27] = ACTIONS(1537), + [aux_sym_expr_binary_token28] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(2949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2951), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2951), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1537), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), + [aux_sym__val_number_token1] = ACTIONS(1537), + [aux_sym__val_number_token2] = ACTIONS(1537), + [aux_sym__val_number_token3] = ACTIONS(1537), + [anon_sym_0b] = ACTIONS(1525), + [sym_filesize_unit] = ACTIONS(2953), + [sym_duration_unit] = ACTIONS(2955), + [anon_sym_0o] = ACTIONS(1525), + [anon_sym_0x] = ACTIONS(1525), + [sym_val_date] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1537), + [sym__str_single_quotes] = ACTIONS(1537), + [sym__str_back_ticks] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [aux_sym_unquoted_token1] = ACTIONS(1525), + [aux_sym_unquoted_token2] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(247), }, [700] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7691), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7426), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7851), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(700), - [aux_sym_shebang_repeat1] = STATE(738), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(753), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [701] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7968), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7495), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7821), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(701), - [aux_sym_shebang_repeat1] = STATE(753), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(743), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [702] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7767), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(702), - [aux_sym_shebang_repeat1] = STATE(753), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_RBRACK] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1475), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(2907), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [703] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7285), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7710), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7434), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(8039), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(703), - [aux_sym_shebang_repeat1] = STATE(739), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(734), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [704] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7961), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7472), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(8017), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(704), - [aux_sym_shebang_repeat1] = STATE(753), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_RBRACK] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(759), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [705] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7711), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(8048), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(705), - [aux_sym_shebang_repeat1] = STATE(738), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(736), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_RBRACK] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [706] = { - [sym__immediate_decimal] = STATE(5940), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7443), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7779), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(706), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym__] = ACTIONS(2927), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_and] = ACTIONS(2925), - [anon_sym_xor] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2925), - [anon_sym_starts_DASHwith] = ACTIONS(2925), - [anon_sym_ends_DASHwith] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_EQ_TILDE] = ACTIONS(2925), - [anon_sym_BANG_TILDE] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_STAR_STAR] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_bit_DASHshl] = ACTIONS(2925), - [anon_sym_bit_DASHshr] = ACTIONS(2925), - [anon_sym_bit_DASHand] = ACTIONS(2925), - [anon_sym_bit_DASHxor] = ACTIONS(2925), - [anon_sym_bit_DASHor] = ACTIONS(2925), - [anon_sym_DOT] = ACTIONS(2929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(2931), - [aux_sym__immediate_decimal_token3] = ACTIONS(2933), - [aux_sym__immediate_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2927), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2927), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token4] = ACTIONS(2860), - [aux_sym_unquoted_token6] = ACTIONS(2937), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(755), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [707] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7301), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7819), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7373), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7936), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(707), - [aux_sym_shebang_repeat1] = STATE(740), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(746), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [708] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7310), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7714), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7755), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(708), - [aux_sym_shebang_repeat1] = STATE(741), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(736), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_RBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [709] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7318), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(8005), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7508), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7907), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(709), - [aux_sym_shebang_repeat1] = STATE(742), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(754), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [710] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7325), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(8001), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7450), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7895), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(710), - [aux_sym_shebang_repeat1] = STATE(743), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(756), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [711] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7332), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7914), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7282), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7892), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(711), - [aux_sym_shebang_repeat1] = STATE(727), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(744), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [712] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7340), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7883), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7396), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7827), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(712), - [aux_sym_shebang_repeat1] = STATE(744), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(749), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [713] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7350), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7860), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7380), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7751), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(713), - [aux_sym_shebang_repeat1] = STATE(745), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(747), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [714] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7358), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7985), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7388), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7988), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(714), - [aux_sym_shebang_repeat1] = STATE(746), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(748), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [715] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7376), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(8014), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7739), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(715), - [aux_sym_shebang_repeat1] = STATE(748), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(736), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_RBRACK] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [716] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7385), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7777), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(716), - [aux_sym_shebang_repeat1] = STATE(749), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1521), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym__] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(2991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [717] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7402), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7848), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(6947), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(8035), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(717), - [aux_sym_shebang_repeat1] = STATE(751), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(757), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [718] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7410), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7898), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7358), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7820), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(718), - [aux_sym_shebang_repeat1] = STATE(752), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(745), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [719] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7417), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7937), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7480), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7771), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(719), - [aux_sym_shebang_repeat1] = STATE(728), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(760), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [720] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7424), - [sym__spread_list] = STATE(7652), - [sym_list_body] = STATE(7971), - [sym_val_entry] = STATE(6971), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7419), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7935), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(720), - [aux_sym_shebang_repeat1] = STATE(736), - [aux_sym_list_body_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(752), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [721] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7404), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(8006), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(721), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(2967), - [aux_sym__immediate_decimal_token2] = ACTIONS(2969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(750), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [722] = { - [sym_cell_path] = STATE(927), - [sym_path] = STATE(789), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7750), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(722), - [aux_sym_cell_path_repeat1] = STATE(731), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_null] = ACTIONS(885), - [aux_sym_cmd_identifier_token38] = ACTIONS(885), - [aux_sym_cmd_identifier_token39] = ACTIONS(885), - [aux_sym_cmd_identifier_token40] = ACTIONS(885), - [sym__newline] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [aux_sym_ctrl_match_token1] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym__] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_and] = ACTIONS(885), - [anon_sym_xor] = ACTIONS(885), - [anon_sym_or] = ACTIONS(885), - [anon_sym_not_DASHin] = ACTIONS(885), - [anon_sym_starts_DASHwith] = ACTIONS(885), - [anon_sym_ends_DASHwith] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_EQ_TILDE] = ACTIONS(885), - [anon_sym_BANG_TILDE] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(885), - [anon_sym_SLASH_SLASH] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(885), - [anon_sym_bit_DASHshr] = ACTIONS(885), - [anon_sym_bit_DASHand] = ACTIONS(885), - [anon_sym_bit_DASHxor] = ACTIONS(885), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(2971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(883), - [anon_sym_DOT_DOT_LT] = ACTIONS(883), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(885), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(885), - [aux_sym__val_number_token1] = ACTIONS(885), - [aux_sym__val_number_token2] = ACTIONS(885), - [aux_sym__val_number_token3] = ACTIONS(885), - [anon_sym_0b] = ACTIONS(883), - [anon_sym_0o] = ACTIONS(883), - [anon_sym_0x] = ACTIONS(883), - [sym_val_date] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(885), - [sym__str_single_quotes] = ACTIONS(885), - [sym__str_back_ticks] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [aux_sym_unquoted_token1] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(736), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_RBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [723] = { - [sym__immediate_decimal] = STATE(7407), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7769), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(723), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym__] = ACTIONS(2927), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_and] = ACTIONS(2925), - [anon_sym_xor] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2925), - [anon_sym_starts_DASHwith] = ACTIONS(2925), - [anon_sym_ends_DASHwith] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_EQ_TILDE] = ACTIONS(2925), - [anon_sym_BANG_TILDE] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_STAR_STAR] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_bit_DASHshl] = ACTIONS(2925), - [anon_sym_bit_DASHshr] = ACTIONS(2925), - [anon_sym_bit_DASHand] = ACTIONS(2925), - [anon_sym_bit_DASHxor] = ACTIONS(2925), - [anon_sym_bit_DASHor] = ACTIONS(2925), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(2975), - [aux_sym__immediate_decimal_token3] = ACTIONS(2977), - [aux_sym__immediate_decimal_token4] = ACTIONS(2979), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2927), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2927), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token5] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(736), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_RBRACK] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [724] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7282), + [sym__spread_list] = STATE(7624), + [sym_list_body] = STATE(7750), + [sym_val_entry] = STATE(6977), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(724), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_in] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym__] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(2983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(744), + [aux_sym_list_body_repeat1] = STATE(779), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [725] = { + [sym_cell_path] = STATE(816), + [sym_path] = STATE(784), [sym_comment] = STATE(725), - [aux_sym_shebang_repeat1] = STATE(725), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1858), - [aux_sym_cmd_identifier_token38] = ACTIONS(1858), - [aux_sym_cmd_identifier_token39] = ACTIONS(1858), - [aux_sym_cmd_identifier_token40] = ACTIONS(1858), - [sym__newline] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_DOLLAR] = ACTIONS(1856), - [anon_sym_any] = ACTIONS(1858), - [anon_sym_binary] = ACTIONS(1858), - [anon_sym_block] = ACTIONS(1858), - [anon_sym_bool] = ACTIONS(1858), - [anon_sym_cell_DASHpath] = ACTIONS(1858), - [anon_sym_closure] = ACTIONS(1858), - [anon_sym_cond] = ACTIONS(1858), - [anon_sym_datetime] = ACTIONS(1858), - [anon_sym_directory] = ACTIONS(1858), - [anon_sym_duration] = ACTIONS(1858), - [anon_sym_error] = ACTIONS(1858), - [anon_sym_expr] = ACTIONS(1858), - [anon_sym_float] = ACTIONS(1858), - [anon_sym_decimal] = ACTIONS(1858), - [anon_sym_filesize] = ACTIONS(1858), - [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1858), - [anon_sym_glob] = ACTIONS(1858), - [anon_sym_int] = ACTIONS(1858), - [anon_sym_import_DASHpattern] = ACTIONS(1858), - [anon_sym_keyword] = ACTIONS(1858), - [anon_sym_math] = ACTIONS(1858), - [anon_sym_nothing] = ACTIONS(1858), - [anon_sym_number] = ACTIONS(1858), - [anon_sym_one_DASHof] = ACTIONS(1858), - [anon_sym_operator] = ACTIONS(1858), - [anon_sym_path] = ACTIONS(1858), - [anon_sym_range] = ACTIONS(1858), - [anon_sym_signature] = ACTIONS(1858), - [anon_sym_string] = ACTIONS(1858), - [anon_sym_table] = ACTIONS(1858), - [anon_sym_variable] = ACTIONS(1858), - [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1858), - [anon_sym_record] = ACTIONS(1858), - [anon_sym_list] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_else] = ACTIONS(1858), - [aux_sym_ctrl_match_token1] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1856), - [anon_sym_catch] = ACTIONS(1858), - [anon_sym_and] = ACTIONS(1858), - [anon_sym_xor] = ACTIONS(1858), - [anon_sym_or] = ACTIONS(1858), - [aux_sym_expr_unary_token1] = ACTIONS(1858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1858), - [anon_sym_DOT_DOT_LT] = ACTIONS(1858), - [aux_sym__val_number_decimal_token1] = ACTIONS(1856), - [aux_sym__val_number_decimal_token2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), - [aux_sym__val_number_decimal_token3] = ACTIONS(1858), - [aux_sym__val_number_token1] = ACTIONS(1858), - [aux_sym__val_number_token2] = ACTIONS(1858), - [aux_sym__val_number_token3] = ACTIONS(1858), - [anon_sym_0b] = ACTIONS(1856), - [anon_sym_0o] = ACTIONS(1856), - [anon_sym_0x] = ACTIONS(1856), - [sym_val_date] = ACTIONS(1858), - [anon_sym_DQUOTE] = ACTIONS(1858), - [sym__str_single_quotes] = ACTIONS(1858), - [sym__str_back_ticks] = ACTIONS(1858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(761), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [anon_sym_null] = ACTIONS(1603), + [aux_sym_cmd_identifier_token38] = ACTIONS(1603), + [aux_sym_cmd_identifier_token39] = ACTIONS(1603), + [aux_sym_cmd_identifier_token40] = ACTIONS(1603), + [sym__newline] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_COMMA] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(1603), + [aux_sym_ctrl_match_token1] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym__] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [aux_sym_expr_binary_token1] = ACTIONS(1603), + [aux_sym_expr_binary_token2] = ACTIONS(1603), + [aux_sym_expr_binary_token3] = ACTIONS(1603), + [aux_sym_expr_binary_token4] = ACTIONS(1603), + [aux_sym_expr_binary_token5] = ACTIONS(1603), + [aux_sym_expr_binary_token6] = ACTIONS(1603), + [aux_sym_expr_binary_token7] = ACTIONS(1603), + [aux_sym_expr_binary_token8] = ACTIONS(1603), + [aux_sym_expr_binary_token9] = ACTIONS(1603), + [aux_sym_expr_binary_token10] = ACTIONS(1603), + [aux_sym_expr_binary_token11] = ACTIONS(1603), + [aux_sym_expr_binary_token12] = ACTIONS(1603), + [aux_sym_expr_binary_token13] = ACTIONS(1603), + [aux_sym_expr_binary_token14] = ACTIONS(1603), + [aux_sym_expr_binary_token15] = ACTIONS(1603), + [aux_sym_expr_binary_token16] = ACTIONS(1603), + [aux_sym_expr_binary_token17] = ACTIONS(1603), + [aux_sym_expr_binary_token18] = ACTIONS(1603), + [aux_sym_expr_binary_token19] = ACTIONS(1603), + [aux_sym_expr_binary_token20] = ACTIONS(1603), + [aux_sym_expr_binary_token21] = ACTIONS(1603), + [aux_sym_expr_binary_token22] = ACTIONS(1603), + [aux_sym_expr_binary_token23] = ACTIONS(1603), + [aux_sym_expr_binary_token24] = ACTIONS(1603), + [aux_sym_expr_binary_token25] = ACTIONS(1603), + [aux_sym_expr_binary_token26] = ACTIONS(1603), + [aux_sym_expr_binary_token27] = ACTIONS(1603), + [aux_sym_expr_binary_token28] = ACTIONS(1603), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(3007), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1603), + [aux_sym__val_number_decimal_token3] = ACTIONS(1603), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(247), }, [726] = { - [sym_cell_path] = STATE(809), - [sym_path] = STATE(789), [sym_comment] = STATE(726), - [aux_sym_cell_path_repeat1] = STATE(731), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_null] = ACTIONS(1549), - [aux_sym_cmd_identifier_token38] = ACTIONS(1549), - [aux_sym_cmd_identifier_token39] = ACTIONS(1549), - [aux_sym_cmd_identifier_token40] = ACTIONS(1549), - [sym__newline] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_DOLLAR] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [aux_sym_ctrl_match_token1] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym__] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_and] = ACTIONS(1549), - [anon_sym_xor] = ACTIONS(1549), - [anon_sym_or] = ACTIONS(1549), - [anon_sym_not_DASHin] = ACTIONS(1549), - [anon_sym_starts_DASHwith] = ACTIONS(1549), - [anon_sym_ends_DASHwith] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1549), - [anon_sym_LT2] = ACTIONS(1545), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_EQ_TILDE] = ACTIONS(1549), - [anon_sym_BANG_TILDE] = ACTIONS(1549), - [anon_sym_STAR_STAR] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_mod] = ACTIONS(1549), - [anon_sym_SLASH_SLASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_bit_DASHshl] = ACTIONS(1549), - [anon_sym_bit_DASHshr] = ACTIONS(1549), - [anon_sym_bit_DASHand] = ACTIONS(1549), - [anon_sym_bit_DASHxor] = ACTIONS(1549), - [anon_sym_bit_DASHor] = ACTIONS(1549), - [anon_sym_DOT_DOT2] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(2971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT] = ACTIONS(1545), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [aux_sym__val_number_decimal_token1] = ACTIONS(1545), - [aux_sym__val_number_decimal_token2] = ACTIONS(1549), - [anon_sym_DOT2] = ACTIONS(1545), - [aux_sym__val_number_decimal_token3] = ACTIONS(1549), - [aux_sym__val_number_token1] = ACTIONS(1549), - [aux_sym__val_number_token2] = ACTIONS(1549), - [aux_sym__val_number_token3] = ACTIONS(1549), - [anon_sym_0b] = ACTIONS(1545), - [anon_sym_0o] = ACTIONS(1545), - [anon_sym_0x] = ACTIONS(1545), - [sym_val_date] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [sym__str_single_quotes] = ACTIONS(1549), - [sym__str_back_ticks] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1545), - [anon_sym_out_GT] = ACTIONS(1545), - [anon_sym_e_GT] = ACTIONS(1545), - [anon_sym_o_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT] = ACTIONS(1545), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [aux_sym_unquoted_token1] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1521), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym__] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [727] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7333), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(727), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1587), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym__] = ACTIONS(1585), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [aux_sym_expr_binary_token1] = ACTIONS(1587), + [aux_sym_expr_binary_token2] = ACTIONS(1587), + [aux_sym_expr_binary_token3] = ACTIONS(1587), + [aux_sym_expr_binary_token4] = ACTIONS(1587), + [aux_sym_expr_binary_token5] = ACTIONS(1587), + [aux_sym_expr_binary_token6] = ACTIONS(1587), + [aux_sym_expr_binary_token7] = ACTIONS(1587), + [aux_sym_expr_binary_token8] = ACTIONS(1587), + [aux_sym_expr_binary_token9] = ACTIONS(1587), + [aux_sym_expr_binary_token10] = ACTIONS(1587), + [aux_sym_expr_binary_token11] = ACTIONS(1587), + [aux_sym_expr_binary_token12] = ACTIONS(1587), + [aux_sym_expr_binary_token13] = ACTIONS(1587), + [aux_sym_expr_binary_token14] = ACTIONS(1587), + [aux_sym_expr_binary_token15] = ACTIONS(1587), + [aux_sym_expr_binary_token16] = ACTIONS(1587), + [aux_sym_expr_binary_token17] = ACTIONS(1587), + [aux_sym_expr_binary_token18] = ACTIONS(1587), + [aux_sym_expr_binary_token19] = ACTIONS(1587), + [aux_sym_expr_binary_token20] = ACTIONS(1587), + [aux_sym_expr_binary_token21] = ACTIONS(1587), + [aux_sym_expr_binary_token22] = ACTIONS(1587), + [aux_sym_expr_binary_token23] = ACTIONS(1587), + [aux_sym_expr_binary_token24] = ACTIONS(1587), + [aux_sym_expr_binary_token25] = ACTIONS(1587), + [aux_sym_expr_binary_token26] = ACTIONS(1587), + [aux_sym_expr_binary_token27] = ACTIONS(1587), + [aux_sym_expr_binary_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), }, [728] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7418), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(728), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(728), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [sym__newline] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_err_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_GT_PIPE] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_RPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_any] = ACTIONS(1757), + [anon_sym_binary] = ACTIONS(1757), + [anon_sym_block] = ACTIONS(1757), + [anon_sym_bool] = ACTIONS(1757), + [anon_sym_cell_DASHpath] = ACTIONS(1757), + [anon_sym_closure] = ACTIONS(1757), + [anon_sym_cond] = ACTIONS(1757), + [anon_sym_datetime] = ACTIONS(1757), + [anon_sym_directory] = ACTIONS(1757), + [anon_sym_duration] = ACTIONS(1757), + [anon_sym_error] = ACTIONS(1757), + [anon_sym_expr] = ACTIONS(1757), + [anon_sym_float] = ACTIONS(1757), + [anon_sym_decimal] = ACTIONS(1757), + [anon_sym_filesize] = ACTIONS(1757), + [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1757), + [anon_sym_glob] = ACTIONS(1757), + [anon_sym_int] = ACTIONS(1757), + [anon_sym_import_DASHpattern] = ACTIONS(1757), + [anon_sym_keyword] = ACTIONS(1757), + [anon_sym_math] = ACTIONS(1757), + [anon_sym_nothing] = ACTIONS(1757), + [anon_sym_number] = ACTIONS(1757), + [anon_sym_one_DASHof] = ACTIONS(1757), + [anon_sym_operator] = ACTIONS(1757), + [anon_sym_path] = ACTIONS(1757), + [anon_sym_range] = ACTIONS(1757), + [anon_sym_signature] = ACTIONS(1757), + [anon_sym_string] = ACTIONS(1757), + [anon_sym_table] = ACTIONS(1757), + [anon_sym_variable] = ACTIONS(1757), + [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1757), + [anon_sym_record] = ACTIONS(1757), + [anon_sym_list] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1757), + [aux_sym_ctrl_match_token1] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1757), + [anon_sym_and] = ACTIONS(1757), + [anon_sym_xor] = ACTIONS(1757), + [anon_sym_or] = ACTIONS(1757), + [aux_sym_expr_unary_token1] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(247), }, [729] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7458), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(729), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1483), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(3012), + [aux_sym__immediate_decimal_token2] = ACTIONS(3014), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [730] = { [sym_comment] = STATE(730), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), - [anon_sym_null] = ACTIONS(1220), - [aux_sym_cmd_identifier_token38] = ACTIONS(1220), - [aux_sym_cmd_identifier_token39] = ACTIONS(1220), - [aux_sym_cmd_identifier_token40] = ACTIONS(1220), - [sym__newline] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_err_GT_PIPE] = ACTIONS(1220), - [anon_sym_out_GT_PIPE] = ACTIONS(1220), - [anon_sym_e_GT_PIPE] = ACTIONS(1220), - [anon_sym_o_GT_PIPE] = ACTIONS(1220), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1220), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1220), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1220), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_DOLLAR] = ACTIONS(1216), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_binary] = ACTIONS(1220), - [anon_sym_block] = ACTIONS(1220), - [anon_sym_bool] = ACTIONS(1220), - [anon_sym_cell_DASHpath] = ACTIONS(1220), - [anon_sym_closure] = ACTIONS(1220), - [anon_sym_cond] = ACTIONS(1220), - [anon_sym_datetime] = ACTIONS(1220), - [anon_sym_directory] = ACTIONS(1220), - [anon_sym_duration] = ACTIONS(1220), - [anon_sym_error] = ACTIONS(1220), - [anon_sym_expr] = ACTIONS(1220), - [anon_sym_float] = ACTIONS(1220), - [anon_sym_decimal] = ACTIONS(1220), - [anon_sym_filesize] = ACTIONS(1220), - [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1220), - [anon_sym_glob] = ACTIONS(1220), - [anon_sym_int] = ACTIONS(1220), - [anon_sym_import_DASHpattern] = ACTIONS(1220), - [anon_sym_keyword] = ACTIONS(1220), - [anon_sym_math] = ACTIONS(1220), - [anon_sym_nothing] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_one_DASHof] = ACTIONS(1220), - [anon_sym_operator] = ACTIONS(1220), - [anon_sym_path] = ACTIONS(1220), - [anon_sym_range] = ACTIONS(1220), - [anon_sym_signature] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_table] = ACTIONS(1220), - [anon_sym_variable] = ACTIONS(1220), - [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1220), - [anon_sym_record] = ACTIONS(1220), - [anon_sym_list] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1220), - [aux_sym_ctrl_match_token1] = ACTIONS(1220), - [anon_sym_DOT_DOT] = ACTIONS(1216), - [anon_sym_catch] = ACTIONS(1220), - [anon_sym_and] = ACTIONS(1220), - [anon_sym_xor] = ACTIONS(1220), - [anon_sym_or] = ACTIONS(1220), - [aux_sym_expr_unary_token1] = ACTIONS(1220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1220), - [anon_sym_DOT_DOT_LT] = ACTIONS(1220), - [aux_sym__val_number_decimal_token1] = ACTIONS(1216), - [aux_sym__val_number_decimal_token2] = ACTIONS(1220), - [anon_sym_DOT2] = ACTIONS(1216), - [aux_sym__val_number_decimal_token3] = ACTIONS(1220), - [aux_sym__val_number_token1] = ACTIONS(1220), - [aux_sym__val_number_token2] = ACTIONS(1220), - [aux_sym__val_number_token3] = ACTIONS(1220), - [anon_sym_0b] = ACTIONS(1216), - [anon_sym_0o] = ACTIONS(1216), - [anon_sym_0x] = ACTIONS(1216), - [sym_val_date] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym__str_single_quotes] = ACTIONS(1220), - [sym__str_back_ticks] = ACTIONS(1220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1483), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [731] = { - [sym_path] = STATE(789), [sym_comment] = STATE(731), - [aux_sym_cell_path_repeat1] = STATE(732), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_null] = ACTIONS(891), - [aux_sym_cmd_identifier_token38] = ACTIONS(891), - [aux_sym_cmd_identifier_token39] = ACTIONS(891), - [aux_sym_cmd_identifier_token40] = ACTIONS(891), - [sym__newline] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [aux_sym_ctrl_match_token1] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym__] = ACTIONS(889), - [anon_sym_DOT_DOT] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(2971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(889), - [anon_sym_DOT_DOT_LT] = ACTIONS(889), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [aux_sym_unquoted_token1] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1475), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(3016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(3018), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [732] = { - [sym_path] = STATE(789), [sym_comment] = STATE(732), - [aux_sym_cell_path_repeat1] = STATE(732), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [anon_sym_null] = ACTIONS(895), - [aux_sym_cmd_identifier_token38] = ACTIONS(895), - [aux_sym_cmd_identifier_token39] = ACTIONS(895), - [aux_sym_cmd_identifier_token40] = ACTIONS(895), - [sym__newline] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_COMMA] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_in] = ACTIONS(893), - [aux_sym_ctrl_match_token1] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym__] = ACTIONS(893), - [anon_sym_DOT_DOT] = ACTIONS(893), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(893), - [anon_sym_DOT_DOT_LT] = ACTIONS(893), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(895), - [aux_sym__val_number_token1] = ACTIONS(895), - [aux_sym__val_number_token2] = ACTIONS(895), - [aux_sym__val_number_token3] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(893), - [anon_sym_0o] = ACTIONS(893), - [anon_sym_0x] = ACTIONS(893), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [aux_sym_unquoted_token1] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1475), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [733] = { + [sym_cell_path] = STATE(963), + [sym_path] = STATE(784), [sym_comment] = STATE(733), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_in] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym__] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(2983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(761), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_null] = ACTIONS(947), + [aux_sym_cmd_identifier_token38] = ACTIONS(947), + [aux_sym_cmd_identifier_token39] = ACTIONS(947), + [aux_sym_cmd_identifier_token40] = ACTIONS(947), + [sym__newline] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(947), + [aux_sym_ctrl_match_token1] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym__] = ACTIONS(945), + [anon_sym_DOT_DOT] = ACTIONS(945), + [aux_sym_expr_binary_token1] = ACTIONS(947), + [aux_sym_expr_binary_token2] = ACTIONS(947), + [aux_sym_expr_binary_token3] = ACTIONS(947), + [aux_sym_expr_binary_token4] = ACTIONS(947), + [aux_sym_expr_binary_token5] = ACTIONS(947), + [aux_sym_expr_binary_token6] = ACTIONS(947), + [aux_sym_expr_binary_token7] = ACTIONS(947), + [aux_sym_expr_binary_token8] = ACTIONS(947), + [aux_sym_expr_binary_token9] = ACTIONS(947), + [aux_sym_expr_binary_token10] = ACTIONS(947), + [aux_sym_expr_binary_token11] = ACTIONS(947), + [aux_sym_expr_binary_token12] = ACTIONS(947), + [aux_sym_expr_binary_token13] = ACTIONS(947), + [aux_sym_expr_binary_token14] = ACTIONS(947), + [aux_sym_expr_binary_token15] = ACTIONS(947), + [aux_sym_expr_binary_token16] = ACTIONS(947), + [aux_sym_expr_binary_token17] = ACTIONS(947), + [aux_sym_expr_binary_token18] = ACTIONS(947), + [aux_sym_expr_binary_token19] = ACTIONS(947), + [aux_sym_expr_binary_token20] = ACTIONS(947), + [aux_sym_expr_binary_token21] = ACTIONS(947), + [aux_sym_expr_binary_token22] = ACTIONS(947), + [aux_sym_expr_binary_token23] = ACTIONS(947), + [aux_sym_expr_binary_token24] = ACTIONS(947), + [aux_sym_expr_binary_token25] = ACTIONS(947), + [aux_sym_expr_binary_token26] = ACTIONS(947), + [aux_sym_expr_binary_token27] = ACTIONS(947), + [aux_sym_expr_binary_token28] = ACTIONS(947), + [anon_sym_DOT_DOT2] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(3007), + [anon_sym_DOT_DOT_EQ] = ACTIONS(945), + [anon_sym_DOT_DOT_LT] = ACTIONS(945), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(947), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(947), + [aux_sym__val_number_decimal_token3] = ACTIONS(947), + [aux_sym__val_number_decimal_token4] = ACTIONS(947), + [aux_sym__val_number_token1] = ACTIONS(947), + [aux_sym__val_number_token2] = ACTIONS(947), + [aux_sym__val_number_token3] = ACTIONS(947), + [anon_sym_0b] = ACTIONS(945), + [anon_sym_0o] = ACTIONS(945), + [anon_sym_0x] = ACTIONS(945), + [sym_val_date] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym__str_single_quotes] = ACTIONS(947), + [sym__str_back_ticks] = ACTIONS(947), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [aux_sym_unquoted_token1] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(247), }, [734] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7435), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(734), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(2969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [735] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7502), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(735), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(2991), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [736] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7425), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(736), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [737] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7432), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7014), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(737), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [738] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7256), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(738), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_null] = ACTIONS(1277), + [aux_sym_cmd_identifier_token38] = ACTIONS(1277), + [aux_sym_cmd_identifier_token39] = ACTIONS(1277), + [aux_sym_cmd_identifier_token40] = ACTIONS(1277), + [sym__newline] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_err_GT_PIPE] = ACTIONS(1277), + [anon_sym_out_GT_PIPE] = ACTIONS(1277), + [anon_sym_e_GT_PIPE] = ACTIONS(1277), + [anon_sym_o_GT_PIPE] = ACTIONS(1277), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1277), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1277), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1277), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_RPAREN] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1277), + [anon_sym_binary] = ACTIONS(1277), + [anon_sym_block] = ACTIONS(1277), + [anon_sym_bool] = ACTIONS(1277), + [anon_sym_cell_DASHpath] = ACTIONS(1277), + [anon_sym_closure] = ACTIONS(1277), + [anon_sym_cond] = ACTIONS(1277), + [anon_sym_datetime] = ACTIONS(1277), + [anon_sym_directory] = ACTIONS(1277), + [anon_sym_duration] = ACTIONS(1277), + [anon_sym_error] = ACTIONS(1277), + [anon_sym_expr] = ACTIONS(1277), + [anon_sym_float] = ACTIONS(1277), + [anon_sym_decimal] = ACTIONS(1277), + [anon_sym_filesize] = ACTIONS(1277), + [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1277), + [anon_sym_glob] = ACTIONS(1277), + [anon_sym_int] = ACTIONS(1277), + [anon_sym_import_DASHpattern] = ACTIONS(1277), + [anon_sym_keyword] = ACTIONS(1277), + [anon_sym_math] = ACTIONS(1277), + [anon_sym_nothing] = ACTIONS(1277), + [anon_sym_number] = ACTIONS(1277), + [anon_sym_one_DASHof] = ACTIONS(1277), + [anon_sym_operator] = ACTIONS(1277), + [anon_sym_path] = ACTIONS(1277), + [anon_sym_range] = ACTIONS(1277), + [anon_sym_signature] = ACTIONS(1277), + [anon_sym_string] = ACTIONS(1277), + [anon_sym_table] = ACTIONS(1277), + [anon_sym_variable] = ACTIONS(1277), + [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1277), + [anon_sym_record] = ACTIONS(1277), + [anon_sym_list] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1277), + [aux_sym_ctrl_match_token1] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_catch] = ACTIONS(1277), + [anon_sym_and] = ACTIONS(1277), + [anon_sym_xor] = ACTIONS(1277), + [anon_sym_or] = ACTIONS(1277), + [aux_sym_expr_unary_token1] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_DOT_DOT_LT] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1273), + [aux_sym__val_number_decimal_token2] = ACTIONS(1277), + [aux_sym__val_number_decimal_token3] = ACTIONS(1277), + [aux_sym__val_number_decimal_token4] = ACTIONS(1277), + [aux_sym__val_number_token1] = ACTIONS(1277), + [aux_sym__val_number_token2] = ACTIONS(1277), + [aux_sym__val_number_token3] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1273), + [anon_sym_0o] = ACTIONS(1273), + [anon_sym_0x] = ACTIONS(1273), + [sym_val_date] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym__str_single_quotes] = ACTIONS(1277), + [sym__str_back_ticks] = ACTIONS(1277), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(247), }, [739] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7288), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7489), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(739), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [740] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7303), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_path] = STATE(784), [sym_comment] = STATE(740), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(740), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_null] = ACTIONS(957), + [aux_sym_cmd_identifier_token38] = ACTIONS(957), + [aux_sym_cmd_identifier_token39] = ACTIONS(957), + [aux_sym_cmd_identifier_token40] = ACTIONS(957), + [sym__newline] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [aux_sym_ctrl_match_token1] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym__] = ACTIONS(955), + [anon_sym_DOT_DOT] = ACTIONS(955), + [aux_sym_expr_binary_token1] = ACTIONS(957), + [aux_sym_expr_binary_token2] = ACTIONS(957), + [aux_sym_expr_binary_token3] = ACTIONS(957), + [aux_sym_expr_binary_token4] = ACTIONS(957), + [aux_sym_expr_binary_token5] = ACTIONS(957), + [aux_sym_expr_binary_token6] = ACTIONS(957), + [aux_sym_expr_binary_token7] = ACTIONS(957), + [aux_sym_expr_binary_token8] = ACTIONS(957), + [aux_sym_expr_binary_token9] = ACTIONS(957), + [aux_sym_expr_binary_token10] = ACTIONS(957), + [aux_sym_expr_binary_token11] = ACTIONS(957), + [aux_sym_expr_binary_token12] = ACTIONS(957), + [aux_sym_expr_binary_token13] = ACTIONS(957), + [aux_sym_expr_binary_token14] = ACTIONS(957), + [aux_sym_expr_binary_token15] = ACTIONS(957), + [aux_sym_expr_binary_token16] = ACTIONS(957), + [aux_sym_expr_binary_token17] = ACTIONS(957), + [aux_sym_expr_binary_token18] = ACTIONS(957), + [aux_sym_expr_binary_token19] = ACTIONS(957), + [aux_sym_expr_binary_token20] = ACTIONS(957), + [aux_sym_expr_binary_token21] = ACTIONS(957), + [aux_sym_expr_binary_token22] = ACTIONS(957), + [aux_sym_expr_binary_token23] = ACTIONS(957), + [aux_sym_expr_binary_token24] = ACTIONS(957), + [aux_sym_expr_binary_token25] = ACTIONS(957), + [aux_sym_expr_binary_token26] = ACTIONS(957), + [aux_sym_expr_binary_token27] = ACTIONS(957), + [aux_sym_expr_binary_token28] = ACTIONS(957), + [anon_sym_DOT_DOT2] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(955), + [anon_sym_DOT_DOT_LT] = ACTIONS(955), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(957), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(957), + [aux_sym__val_number_decimal_token3] = ACTIONS(957), + [aux_sym__val_number_decimal_token4] = ACTIONS(957), + [aux_sym__val_number_token1] = ACTIONS(957), + [aux_sym__val_number_token2] = ACTIONS(957), + [aux_sym__val_number_token3] = ACTIONS(957), + [anon_sym_0b] = ACTIONS(955), + [anon_sym_0o] = ACTIONS(955), + [anon_sym_0x] = ACTIONS(955), + [sym_val_date] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__str_single_quotes] = ACTIONS(957), + [sym__str_back_ticks] = ACTIONS(957), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [aux_sym_unquoted_token1] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(247), }, [741] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7312), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(741), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1475), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(3018), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [742] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7320), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(742), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_COMMA] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1521), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym__] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(3023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [743] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7327), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7496), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(743), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [744] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7342), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7301), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(744), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [745] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7351), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7361), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(745), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [746] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7360), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7375), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(746), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [747] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7369), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7382), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(747), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [748] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7378), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7389), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(748), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [749] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7387), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7398), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(749), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [750] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7395), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7405), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(750), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [751] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7403), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7413), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(751), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [752] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(7411), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7421), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(752), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [753] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6901), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7428), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(753), - [aux_sym_shebang_repeat1] = STATE(2706), - [aux_sym_list_body_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [754] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7509), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(754), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(918), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [sym__newline] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [aux_sym_ctrl_match_token1] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym__] = ACTIONS(916), - [anon_sym_DOT_DOT] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_and] = ACTIONS(918), - [anon_sym_xor] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_not_DASHin] = ACTIONS(918), - [anon_sym_starts_DASHwith] = ACTIONS(918), - [anon_sym_ends_DASHwith] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT2] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_TILDE] = ACTIONS(918), - [anon_sym_BANG_TILDE] = ACTIONS(918), - [anon_sym_STAR_STAR] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(916), - [anon_sym_mod] = ACTIONS(918), - [anon_sym_SLASH_SLASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(918), - [anon_sym_bit_DASHshr] = ACTIONS(918), - [anon_sym_bit_DASHand] = ACTIONS(918), - [anon_sym_bit_DASHxor] = ACTIONS(918), - [anon_sym_bit_DASHor] = ACTIONS(918), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ] = ACTIONS(916), - [anon_sym_DOT_DOT_LT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_0b] = ACTIONS(916), - [anon_sym_0o] = ACTIONS(916), - [anon_sym_0x] = ACTIONS(916), - [sym_val_date] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [aux_sym_unquoted_token1] = ACTIONS(916), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [755] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7445), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(755), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [anon_sym_null] = ACTIONS(902), - [aux_sym_cmd_identifier_token38] = ACTIONS(902), - [aux_sym_cmd_identifier_token39] = ACTIONS(902), - [aux_sym_cmd_identifier_token40] = ACTIONS(902), - [sym__newline] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_in] = ACTIONS(900), - [aux_sym_ctrl_match_token1] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym__] = ACTIONS(900), - [anon_sym_DOT_DOT] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(2993), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT2] = ACTIONS(900), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_DOT_DOT2] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(900), - [anon_sym_DOT_DOT_LT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(902), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(902), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(902), - [aux_sym__val_number_token1] = ACTIONS(902), - [aux_sym__val_number_token2] = ACTIONS(902), - [aux_sym__val_number_token3] = ACTIONS(902), - [anon_sym_0b] = ACTIONS(900), - [anon_sym_0o] = ACTIONS(900), - [anon_sym_0x] = ACTIONS(900), - [sym_val_date] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym__str_single_quotes] = ACTIONS(902), - [sym__str_back_ticks] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [aux_sym_unquoted_token1] = ACTIONS(900), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [756] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7451), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(756), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [anon_sym_null] = ACTIONS(908), - [aux_sym_cmd_identifier_token38] = ACTIONS(908), - [aux_sym_cmd_identifier_token39] = ACTIONS(908), - [aux_sym_cmd_identifier_token40] = ACTIONS(908), - [sym__newline] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_in] = ACTIONS(906), - [aux_sym_ctrl_match_token1] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym__] = ACTIONS(906), - [anon_sym_DOT_DOT] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(2995), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_DOT_DOT2] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(906), - [anon_sym_DOT_DOT_LT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(908), - [anon_sym_DOT_DOT_LT2] = ACTIONS(908), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(908), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(908), - [aux_sym__val_number_token1] = ACTIONS(908), - [aux_sym__val_number_token2] = ACTIONS(908), - [aux_sym__val_number_token3] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(906), - [anon_sym_0o] = ACTIONS(906), - [anon_sym_0x] = ACTIONS(906), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [aux_sym_unquoted_token1] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [757] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7459), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(757), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [758] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7466), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(758), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1506), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_in] = ACTIONS(1504), - [aux_sym_ctrl_match_token1] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1504), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_and] = ACTIONS(1506), - [anon_sym_xor] = ACTIONS(1506), - [anon_sym_or] = ACTIONS(1506), - [anon_sym_not_DASHin] = ACTIONS(1506), - [anon_sym_starts_DASHwith] = ACTIONS(1506), - [anon_sym_ends_DASHwith] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_TILDE] = ACTIONS(1506), - [anon_sym_BANG_TILDE] = ACTIONS(1506), - [anon_sym_STAR_STAR] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_SLASH_SLASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_bit_DASHshl] = ACTIONS(1506), - [anon_sym_bit_DASHshr] = ACTIONS(1506), - [anon_sym_bit_DASHand] = ACTIONS(1506), - [anon_sym_bit_DASHxor] = ACTIONS(1506), - [anon_sym_bit_DASHor] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_DOT_DOT_LT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_0b] = ACTIONS(1504), - [sym_filesize_unit] = ACTIONS(1504), - [sym_duration_unit] = ACTIONS(1506), - [anon_sym_0o] = ACTIONS(1504), - [anon_sym_0x] = ACTIONS(1504), - [sym_val_date] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token1] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [759] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7473), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(759), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(922), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [sym__newline] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [aux_sym_ctrl_match_token1] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym__] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_and] = ACTIONS(922), - [anon_sym_xor] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_not_DASHin] = ACTIONS(922), - [anon_sym_starts_DASHwith] = ACTIONS(922), - [anon_sym_ends_DASHwith] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_BANG_TILDE] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(922), - [anon_sym_SLASH_SLASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(922), - [anon_sym_bit_DASHshr] = ACTIONS(922), - [anon_sym_bit_DASHand] = ACTIONS(922), - [anon_sym_bit_DASHxor] = ACTIONS(922), - [anon_sym_bit_DASHor] = ACTIONS(922), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(920), - [anon_sym_DOT_DOT_LT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [aux_sym_unquoted_token1] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [760] = { + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(7481), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(760), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1441), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [sym__newline] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym__] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_and] = ACTIONS(1441), - [anon_sym_xor] = ACTIONS(1441), - [anon_sym_or] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1441), - [anon_sym_starts_DASHwith] = ACTIONS(1441), - [anon_sym_ends_DASHwith] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ_TILDE] = ACTIONS(1441), - [anon_sym_BANG_TILDE] = ACTIONS(1441), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_SLASH_SLASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_bit_DASHshl] = ACTIONS(1441), - [anon_sym_bit_DASHshr] = ACTIONS(1441), - [anon_sym_bit_DASHand] = ACTIONS(1441), - [anon_sym_bit_DASHxor] = ACTIONS(1441), - [anon_sym_bit_DASHor] = ACTIONS(1441), - [anon_sym_DOT_DOT2] = ACTIONS(2997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), - [anon_sym_DOT_DOT_LT] = ACTIONS(1429), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2999), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1429), - [sym_filesize_unit] = ACTIONS(3001), - [sym_duration_unit] = ACTIONS(3003), - [anon_sym_0o] = ACTIONS(1429), - [anon_sym_0x] = ACTIONS(1429), - [sym_val_date] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2777), + [aux_sym_list_body_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [761] = { + [sym_path] = STATE(784), [sym_comment] = STATE(761), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(914), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [aux_sym_ctrl_match_token1] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym__] = ACTIONS(912), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(912), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ] = ACTIONS(912), - [anon_sym_DOT_DOT_LT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(912), - [anon_sym_0o] = ACTIONS(912), - [anon_sym_0x] = ACTIONS(912), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [aux_sym_unquoted_token1] = ACTIONS(912), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(740), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_null] = ACTIONS(953), + [aux_sym_cmd_identifier_token38] = ACTIONS(953), + [aux_sym_cmd_identifier_token39] = ACTIONS(953), + [aux_sym_cmd_identifier_token40] = ACTIONS(953), + [sym__newline] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [aux_sym_ctrl_match_token1] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym__] = ACTIONS(951), + [anon_sym_DOT_DOT] = ACTIONS(951), + [aux_sym_expr_binary_token1] = ACTIONS(953), + [aux_sym_expr_binary_token2] = ACTIONS(953), + [aux_sym_expr_binary_token3] = ACTIONS(953), + [aux_sym_expr_binary_token4] = ACTIONS(953), + [aux_sym_expr_binary_token5] = ACTIONS(953), + [aux_sym_expr_binary_token6] = ACTIONS(953), + [aux_sym_expr_binary_token7] = ACTIONS(953), + [aux_sym_expr_binary_token8] = ACTIONS(953), + [aux_sym_expr_binary_token9] = ACTIONS(953), + [aux_sym_expr_binary_token10] = ACTIONS(953), + [aux_sym_expr_binary_token11] = ACTIONS(953), + [aux_sym_expr_binary_token12] = ACTIONS(953), + [aux_sym_expr_binary_token13] = ACTIONS(953), + [aux_sym_expr_binary_token14] = ACTIONS(953), + [aux_sym_expr_binary_token15] = ACTIONS(953), + [aux_sym_expr_binary_token16] = ACTIONS(953), + [aux_sym_expr_binary_token17] = ACTIONS(953), + [aux_sym_expr_binary_token18] = ACTIONS(953), + [aux_sym_expr_binary_token19] = ACTIONS(953), + [aux_sym_expr_binary_token20] = ACTIONS(953), + [aux_sym_expr_binary_token21] = ACTIONS(953), + [aux_sym_expr_binary_token22] = ACTIONS(953), + [aux_sym_expr_binary_token23] = ACTIONS(953), + [aux_sym_expr_binary_token24] = ACTIONS(953), + [aux_sym_expr_binary_token25] = ACTIONS(953), + [aux_sym_expr_binary_token26] = ACTIONS(953), + [aux_sym_expr_binary_token27] = ACTIONS(953), + [aux_sym_expr_binary_token28] = ACTIONS(953), + [anon_sym_DOT_DOT2] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(3007), + [anon_sym_DOT_DOT_EQ] = ACTIONS(951), + [anon_sym_DOT_DOT_LT] = ACTIONS(951), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(953), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(953), + [aux_sym__val_number_decimal_token3] = ACTIONS(953), + [aux_sym__val_number_decimal_token4] = ACTIONS(953), + [aux_sym__val_number_token1] = ACTIONS(953), + [aux_sym__val_number_token2] = ACTIONS(953), + [aux_sym__val_number_token3] = ACTIONS(953), + [anon_sym_0b] = ACTIONS(951), + [anon_sym_0o] = ACTIONS(951), + [anon_sym_0x] = ACTIONS(951), + [sym_val_date] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym__str_single_quotes] = ACTIONS(953), + [sym__str_back_ticks] = ACTIONS(953), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [aux_sym_unquoted_token1] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(247), }, [762] = { [sym_comment] = STATE(762), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_in] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [aux_sym_cmd_identifier_token38] = ACTIONS(1537), + [aux_sym_cmd_identifier_token39] = ACTIONS(1537), + [aux_sym_cmd_identifier_token40] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_COMMA] = ACTIONS(1537), + [anon_sym_DOLLAR] = ACTIONS(1537), + [aux_sym_ctrl_match_token1] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym__] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [aux_sym_expr_binary_token1] = ACTIONS(1537), + [aux_sym_expr_binary_token2] = ACTIONS(1537), + [aux_sym_expr_binary_token3] = ACTIONS(1537), + [aux_sym_expr_binary_token4] = ACTIONS(1537), + [aux_sym_expr_binary_token5] = ACTIONS(1537), + [aux_sym_expr_binary_token6] = ACTIONS(1537), + [aux_sym_expr_binary_token7] = ACTIONS(1537), + [aux_sym_expr_binary_token8] = ACTIONS(1537), + [aux_sym_expr_binary_token9] = ACTIONS(1537), + [aux_sym_expr_binary_token10] = ACTIONS(1537), + [aux_sym_expr_binary_token11] = ACTIONS(1537), + [aux_sym_expr_binary_token12] = ACTIONS(1537), + [aux_sym_expr_binary_token13] = ACTIONS(1537), + [aux_sym_expr_binary_token14] = ACTIONS(1537), + [aux_sym_expr_binary_token15] = ACTIONS(1537), + [aux_sym_expr_binary_token16] = ACTIONS(1537), + [aux_sym_expr_binary_token17] = ACTIONS(1537), + [aux_sym_expr_binary_token18] = ACTIONS(1537), + [aux_sym_expr_binary_token19] = ACTIONS(1537), + [aux_sym_expr_binary_token20] = ACTIONS(1537), + [aux_sym_expr_binary_token21] = ACTIONS(1537), + [aux_sym_expr_binary_token22] = ACTIONS(1537), + [aux_sym_expr_binary_token23] = ACTIONS(1537), + [aux_sym_expr_binary_token24] = ACTIONS(1537), + [aux_sym_expr_binary_token25] = ACTIONS(1537), + [aux_sym_expr_binary_token26] = ACTIONS(1537), + [aux_sym_expr_binary_token27] = ACTIONS(1537), + [aux_sym_expr_binary_token28] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(3025), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3027), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3027), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1537), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), + [aux_sym__val_number_token1] = ACTIONS(1537), + [aux_sym__val_number_token2] = ACTIONS(1537), + [aux_sym__val_number_token3] = ACTIONS(1537), + [anon_sym_0b] = ACTIONS(1525), + [sym_filesize_unit] = ACTIONS(3029), + [sym_duration_unit] = ACTIONS(3031), + [anon_sym_0o] = ACTIONS(1525), + [anon_sym_0x] = ACTIONS(1525), + [sym_val_date] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1537), + [sym__str_single_quotes] = ACTIONS(1537), + [sym__str_back_ticks] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [aux_sym_unquoted_token1] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(247), }, [763] = { - [sym_cell_path] = STATE(1194), - [sym_path] = STATE(1020), [sym_comment] = STATE(763), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1802), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [aux_sym_ctrl_match_token1] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_and] = ACTIONS(1802), - [anon_sym_xor] = ACTIONS(1802), - [anon_sym_or] = ACTIONS(1802), - [anon_sym_not_DASHin] = ACTIONS(1802), - [anon_sym_starts_DASHwith] = ACTIONS(1802), - [anon_sym_ends_DASHwith] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1800), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_EQ_TILDE] = ACTIONS(1802), - [anon_sym_BANG_TILDE] = ACTIONS(1802), - [anon_sym_STAR_STAR] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1802), - [anon_sym_SLASH_SLASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_bit_DASHshl] = ACTIONS(1802), - [anon_sym_bit_DASHshr] = ACTIONS(1802), - [anon_sym_bit_DASHand] = ACTIONS(1802), - [anon_sym_bit_DASHxor] = ACTIONS(1802), - [anon_sym_bit_DASHor] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT] = ACTIONS(1802), - [aux_sym__val_number_decimal_token1] = ACTIONS(1800), - [aux_sym__val_number_decimal_token2] = ACTIONS(1802), - [anon_sym_DOT2] = ACTIONS(1800), - [aux_sym__val_number_decimal_token3] = ACTIONS(1802), - [aux_sym__val_number_token1] = ACTIONS(1802), - [aux_sym__val_number_token2] = ACTIONS(1802), - [aux_sym__val_number_token3] = ACTIONS(1802), - [anon_sym_0b] = ACTIONS(1800), - [anon_sym_0o] = ACTIONS(1800), - [anon_sym_0x] = ACTIONS(1800), - [sym_val_date] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1802), - [sym__str_single_quotes] = ACTIONS(1802), - [sym__str_back_ticks] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1800), - [anon_sym_out_GT] = ACTIONS(1800), - [anon_sym_e_GT] = ACTIONS(1800), - [anon_sym_o_GT] = ACTIONS(1800), - [anon_sym_err_PLUSout_GT] = ACTIONS(1800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1800), - [anon_sym_o_PLUSe_GT] = ACTIONS(1800), - [anon_sym_e_PLUSo_GT] = ACTIONS(1800), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [aux_sym_unquoted_token1] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_null] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [sym__newline] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [aux_sym_ctrl_match_token1] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym__] = ACTIONS(970), + [anon_sym_DOT_DOT] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(3033), + [aux_sym_expr_binary_token1] = ACTIONS(972), + [aux_sym_expr_binary_token2] = ACTIONS(972), + [aux_sym_expr_binary_token3] = ACTIONS(972), + [aux_sym_expr_binary_token4] = ACTIONS(972), + [aux_sym_expr_binary_token5] = ACTIONS(972), + [aux_sym_expr_binary_token6] = ACTIONS(972), + [aux_sym_expr_binary_token7] = ACTIONS(972), + [aux_sym_expr_binary_token8] = ACTIONS(972), + [aux_sym_expr_binary_token9] = ACTIONS(972), + [aux_sym_expr_binary_token10] = ACTIONS(972), + [aux_sym_expr_binary_token11] = ACTIONS(972), + [aux_sym_expr_binary_token12] = ACTIONS(972), + [aux_sym_expr_binary_token13] = ACTIONS(972), + [aux_sym_expr_binary_token14] = ACTIONS(972), + [aux_sym_expr_binary_token15] = ACTIONS(972), + [aux_sym_expr_binary_token16] = ACTIONS(972), + [aux_sym_expr_binary_token17] = ACTIONS(972), + [aux_sym_expr_binary_token18] = ACTIONS(972), + [aux_sym_expr_binary_token19] = ACTIONS(972), + [aux_sym_expr_binary_token20] = ACTIONS(972), + [aux_sym_expr_binary_token21] = ACTIONS(972), + [aux_sym_expr_binary_token22] = ACTIONS(972), + [aux_sym_expr_binary_token23] = ACTIONS(972), + [aux_sym_expr_binary_token24] = ACTIONS(972), + [aux_sym_expr_binary_token25] = ACTIONS(972), + [aux_sym_expr_binary_token26] = ACTIONS(972), + [aux_sym_expr_binary_token27] = ACTIONS(972), + [aux_sym_expr_binary_token28] = ACTIONS(972), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_DOT_DOT_LT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [anon_sym_0b] = ACTIONS(970), + [anon_sym_0o] = ACTIONS(970), + [anon_sym_0x] = ACTIONS(970), + [sym_val_date] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [aux_sym_unquoted_token1] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), }, [764] = { - [sym_cell_path] = STATE(1199), - [sym_path] = STATE(1020), [sym_comment] = STATE(764), - [aux_sym_cell_path_repeat1] = STATE(830), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [aux_sym_ctrl_match_token1] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(3035), + [aux_sym_expr_binary_token1] = ACTIONS(982), + [aux_sym_expr_binary_token2] = ACTIONS(982), + [aux_sym_expr_binary_token3] = ACTIONS(982), + [aux_sym_expr_binary_token4] = ACTIONS(982), + [aux_sym_expr_binary_token5] = ACTIONS(982), + [aux_sym_expr_binary_token6] = ACTIONS(982), + [aux_sym_expr_binary_token7] = ACTIONS(982), + [aux_sym_expr_binary_token8] = ACTIONS(982), + [aux_sym_expr_binary_token9] = ACTIONS(982), + [aux_sym_expr_binary_token10] = ACTIONS(982), + [aux_sym_expr_binary_token11] = ACTIONS(982), + [aux_sym_expr_binary_token12] = ACTIONS(982), + [aux_sym_expr_binary_token13] = ACTIONS(982), + [aux_sym_expr_binary_token14] = ACTIONS(982), + [aux_sym_expr_binary_token15] = ACTIONS(982), + [aux_sym_expr_binary_token16] = ACTIONS(982), + [aux_sym_expr_binary_token17] = ACTIONS(982), + [aux_sym_expr_binary_token18] = ACTIONS(982), + [aux_sym_expr_binary_token19] = ACTIONS(982), + [aux_sym_expr_binary_token20] = ACTIONS(982), + [aux_sym_expr_binary_token21] = ACTIONS(982), + [aux_sym_expr_binary_token22] = ACTIONS(982), + [aux_sym_expr_binary_token23] = ACTIONS(982), + [aux_sym_expr_binary_token24] = ACTIONS(982), + [aux_sym_expr_binary_token25] = ACTIONS(982), + [aux_sym_expr_binary_token26] = ACTIONS(982), + [aux_sym_expr_binary_token27] = ACTIONS(982), + [aux_sym_expr_binary_token28] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + }, + [765] = { + [sym_comment] = STATE(765), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1475), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), + }, + [766] = { + [sym_comment] = STATE(766), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1483), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), + }, + [767] = { + [sym_comment] = STATE(767), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_COMMA] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1521), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym__] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), + }, + [768] = { + [sym_comment] = STATE(768), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1587), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym__] = ACTIONS(1585), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [aux_sym_expr_binary_token1] = ACTIONS(1587), + [aux_sym_expr_binary_token2] = ACTIONS(1587), + [aux_sym_expr_binary_token3] = ACTIONS(1587), + [aux_sym_expr_binary_token4] = ACTIONS(1587), + [aux_sym_expr_binary_token5] = ACTIONS(1587), + [aux_sym_expr_binary_token6] = ACTIONS(1587), + [aux_sym_expr_binary_token7] = ACTIONS(1587), + [aux_sym_expr_binary_token8] = ACTIONS(1587), + [aux_sym_expr_binary_token9] = ACTIONS(1587), + [aux_sym_expr_binary_token10] = ACTIONS(1587), + [aux_sym_expr_binary_token11] = ACTIONS(1587), + [aux_sym_expr_binary_token12] = ACTIONS(1587), + [aux_sym_expr_binary_token13] = ACTIONS(1587), + [aux_sym_expr_binary_token14] = ACTIONS(1587), + [aux_sym_expr_binary_token15] = ACTIONS(1587), + [aux_sym_expr_binary_token16] = ACTIONS(1587), + [aux_sym_expr_binary_token17] = ACTIONS(1587), + [aux_sym_expr_binary_token18] = ACTIONS(1587), + [aux_sym_expr_binary_token19] = ACTIONS(1587), + [aux_sym_expr_binary_token20] = ACTIONS(1587), + [aux_sym_expr_binary_token21] = ACTIONS(1587), + [aux_sym_expr_binary_token22] = ACTIONS(1587), + [aux_sym_expr_binary_token23] = ACTIONS(1587), + [aux_sym_expr_binary_token24] = ACTIONS(1587), + [aux_sym_expr_binary_token25] = ACTIONS(1587), + [aux_sym_expr_binary_token26] = ACTIONS(1587), + [aux_sym_expr_binary_token27] = ACTIONS(1587), + [aux_sym_expr_binary_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + }, + [769] = { + [sym_comment] = STATE(769), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [aux_sym_ctrl_match_token1] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym__] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(968), + [aux_sym_expr_binary_token1] = ACTIONS(968), + [aux_sym_expr_binary_token2] = ACTIONS(968), + [aux_sym_expr_binary_token3] = ACTIONS(968), + [aux_sym_expr_binary_token4] = ACTIONS(968), + [aux_sym_expr_binary_token5] = ACTIONS(968), + [aux_sym_expr_binary_token6] = ACTIONS(968), + [aux_sym_expr_binary_token7] = ACTIONS(968), + [aux_sym_expr_binary_token8] = ACTIONS(968), + [aux_sym_expr_binary_token9] = ACTIONS(968), + [aux_sym_expr_binary_token10] = ACTIONS(968), + [aux_sym_expr_binary_token11] = ACTIONS(968), + [aux_sym_expr_binary_token12] = ACTIONS(968), + [aux_sym_expr_binary_token13] = ACTIONS(968), + [aux_sym_expr_binary_token14] = ACTIONS(968), + [aux_sym_expr_binary_token15] = ACTIONS(968), + [aux_sym_expr_binary_token16] = ACTIONS(968), + [aux_sym_expr_binary_token17] = ACTIONS(968), + [aux_sym_expr_binary_token18] = ACTIONS(968), + [aux_sym_expr_binary_token19] = ACTIONS(968), + [aux_sym_expr_binary_token20] = ACTIONS(968), + [aux_sym_expr_binary_token21] = ACTIONS(968), + [aux_sym_expr_binary_token22] = ACTIONS(968), + [aux_sym_expr_binary_token23] = ACTIONS(968), + [aux_sym_expr_binary_token24] = ACTIONS(968), + [aux_sym_expr_binary_token25] = ACTIONS(968), + [aux_sym_expr_binary_token26] = ACTIONS(968), + [aux_sym_expr_binary_token27] = ACTIONS(968), + [aux_sym_expr_binary_token28] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), + }, + [770] = { + [sym_comment] = STATE(770), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [aux_sym_ctrl_match_token1] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym__] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [aux_sym_expr_binary_token1] = ACTIONS(978), + [aux_sym_expr_binary_token2] = ACTIONS(978), + [aux_sym_expr_binary_token3] = ACTIONS(978), + [aux_sym_expr_binary_token4] = ACTIONS(978), + [aux_sym_expr_binary_token5] = ACTIONS(978), + [aux_sym_expr_binary_token6] = ACTIONS(978), + [aux_sym_expr_binary_token7] = ACTIONS(978), + [aux_sym_expr_binary_token8] = ACTIONS(978), + [aux_sym_expr_binary_token9] = ACTIONS(978), + [aux_sym_expr_binary_token10] = ACTIONS(978), + [aux_sym_expr_binary_token11] = ACTIONS(978), + [aux_sym_expr_binary_token12] = ACTIONS(978), + [aux_sym_expr_binary_token13] = ACTIONS(978), + [aux_sym_expr_binary_token14] = ACTIONS(978), + [aux_sym_expr_binary_token15] = ACTIONS(978), + [aux_sym_expr_binary_token16] = ACTIONS(978), + [aux_sym_expr_binary_token17] = ACTIONS(978), + [aux_sym_expr_binary_token18] = ACTIONS(978), + [aux_sym_expr_binary_token19] = ACTIONS(978), + [aux_sym_expr_binary_token20] = ACTIONS(978), + [aux_sym_expr_binary_token21] = ACTIONS(978), + [aux_sym_expr_binary_token22] = ACTIONS(978), + [aux_sym_expr_binary_token23] = ACTIONS(978), + [aux_sym_expr_binary_token24] = ACTIONS(978), + [aux_sym_expr_binary_token25] = ACTIONS(978), + [aux_sym_expr_binary_token26] = ACTIONS(978), + [aux_sym_expr_binary_token27] = ACTIONS(978), + [aux_sym_expr_binary_token28] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [anon_sym_DOT_DOT_LT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), + }, + [771] = { + [sym_comment] = STATE(771), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [aux_sym_ctrl_match_token1] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym__] = ACTIONS(962), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [aux_sym_expr_binary_token1] = ACTIONS(964), + [aux_sym_expr_binary_token2] = ACTIONS(964), + [aux_sym_expr_binary_token3] = ACTIONS(964), + [aux_sym_expr_binary_token4] = ACTIONS(964), + [aux_sym_expr_binary_token5] = ACTIONS(964), + [aux_sym_expr_binary_token6] = ACTIONS(964), + [aux_sym_expr_binary_token7] = ACTIONS(964), + [aux_sym_expr_binary_token8] = ACTIONS(964), + [aux_sym_expr_binary_token9] = ACTIONS(964), + [aux_sym_expr_binary_token10] = ACTIONS(964), + [aux_sym_expr_binary_token11] = ACTIONS(964), + [aux_sym_expr_binary_token12] = ACTIONS(964), + [aux_sym_expr_binary_token13] = ACTIONS(964), + [aux_sym_expr_binary_token14] = ACTIONS(964), + [aux_sym_expr_binary_token15] = ACTIONS(964), + [aux_sym_expr_binary_token16] = ACTIONS(964), + [aux_sym_expr_binary_token17] = ACTIONS(964), + [aux_sym_expr_binary_token18] = ACTIONS(964), + [aux_sym_expr_binary_token19] = ACTIONS(964), + [aux_sym_expr_binary_token20] = ACTIONS(964), + [aux_sym_expr_binary_token21] = ACTIONS(964), + [aux_sym_expr_binary_token22] = ACTIONS(964), + [aux_sym_expr_binary_token23] = ACTIONS(964), + [aux_sym_expr_binary_token24] = ACTIONS(964), + [aux_sym_expr_binary_token25] = ACTIONS(964), + [aux_sym_expr_binary_token26] = ACTIONS(964), + [aux_sym_expr_binary_token27] = ACTIONS(964), + [aux_sym_expr_binary_token28] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_DOT_DOT_LT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(962), + [anon_sym_0x] = ACTIONS(962), + [sym_val_date] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), + }, + [772] = { + [sym_cell_path] = STATE(1202), + [sym_path] = STATE(1014), + [sym_comment] = STATE(772), + [aux_sym_cell_path_repeat1] = STATE(806), [anon_sym_true] = ACTIONS(1822), [anon_sym_false] = ACTIONS(1822), [anon_sym_null] = ACTIONS(1822), @@ -153965,45 +160002,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1822), [anon_sym_COMMA] = ACTIONS(1822), [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(1820), [aux_sym_ctrl_match_token1] = ACTIONS(1822), [anon_sym_RBRACE] = ACTIONS(1822), [anon_sym__] = ACTIONS(1820), [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_and] = ACTIONS(1822), - [anon_sym_xor] = ACTIONS(1822), - [anon_sym_or] = ACTIONS(1822), - [anon_sym_not_DASHin] = ACTIONS(1822), - [anon_sym_starts_DASHwith] = ACTIONS(1822), - [anon_sym_ends_DASHwith] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_EQ_TILDE] = ACTIONS(1822), - [anon_sym_BANG_TILDE] = ACTIONS(1822), - [anon_sym_STAR_STAR] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1822), - [anon_sym_SLASH_SLASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_bit_DASHshl] = ACTIONS(1822), - [anon_sym_bit_DASHshr] = ACTIONS(1822), - [anon_sym_bit_DASHand] = ACTIONS(1822), - [anon_sym_bit_DASHxor] = ACTIONS(1822), - [anon_sym_bit_DASHor] = ACTIONS(1822), - [anon_sym_DOT] = ACTIONS(3005), + [aux_sym_expr_binary_token1] = ACTIONS(1822), + [aux_sym_expr_binary_token2] = ACTIONS(1822), + [aux_sym_expr_binary_token3] = ACTIONS(1822), + [aux_sym_expr_binary_token4] = ACTIONS(1822), + [aux_sym_expr_binary_token5] = ACTIONS(1822), + [aux_sym_expr_binary_token6] = ACTIONS(1822), + [aux_sym_expr_binary_token7] = ACTIONS(1822), + [aux_sym_expr_binary_token8] = ACTIONS(1822), + [aux_sym_expr_binary_token9] = ACTIONS(1822), + [aux_sym_expr_binary_token10] = ACTIONS(1822), + [aux_sym_expr_binary_token11] = ACTIONS(1822), + [aux_sym_expr_binary_token12] = ACTIONS(1822), + [aux_sym_expr_binary_token13] = ACTIONS(1822), + [aux_sym_expr_binary_token14] = ACTIONS(1822), + [aux_sym_expr_binary_token15] = ACTIONS(1822), + [aux_sym_expr_binary_token16] = ACTIONS(1822), + [aux_sym_expr_binary_token17] = ACTIONS(1822), + [aux_sym_expr_binary_token18] = ACTIONS(1822), + [aux_sym_expr_binary_token19] = ACTIONS(1822), + [aux_sym_expr_binary_token20] = ACTIONS(1822), + [aux_sym_expr_binary_token21] = ACTIONS(1822), + [aux_sym_expr_binary_token22] = ACTIONS(1822), + [aux_sym_expr_binary_token23] = ACTIONS(1822), + [aux_sym_expr_binary_token24] = ACTIONS(1822), + [aux_sym_expr_binary_token25] = ACTIONS(1822), + [aux_sym_expr_binary_token26] = ACTIONS(1822), + [aux_sym_expr_binary_token27] = ACTIONS(1822), + [aux_sym_expr_binary_token28] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(3037), [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), [anon_sym_DOT_DOT_LT] = ACTIONS(1822), [aux_sym__val_number_decimal_token1] = ACTIONS(1820), [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [anon_sym_DOT2] = ACTIONS(1820), [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), [aux_sym__val_number_token1] = ACTIONS(1822), [aux_sym__val_number_token2] = ACTIONS(1822), [aux_sym__val_number_token3] = ACTIONS(1822), @@ -154031,1609 +160068,1861 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), [aux_sym_unquoted_token1] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [765] = { - [sym_cell_path] = STATE(1196), - [sym_path] = STATE(1020), - [sym_comment] = STATE(765), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1810), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [sym__newline] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1810), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [aux_sym_ctrl_match_token1] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym__] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_xor] = ACTIONS(1810), - [anon_sym_or] = ACTIONS(1810), - [anon_sym_not_DASHin] = ACTIONS(1810), - [anon_sym_starts_DASHwith] = ACTIONS(1810), - [anon_sym_ends_DASHwith] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1810), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_EQ_TILDE] = ACTIONS(1810), - [anon_sym_BANG_TILDE] = ACTIONS(1810), - [anon_sym_STAR_STAR] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1810), - [anon_sym_SLASH_SLASH] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_bit_DASHshl] = ACTIONS(1810), - [anon_sym_bit_DASHshr] = ACTIONS(1810), - [anon_sym_bit_DASHand] = ACTIONS(1810), - [anon_sym_bit_DASHxor] = ACTIONS(1810), - [anon_sym_bit_DASHor] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [anon_sym_DOT2] = ACTIONS(1808), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1808), - [anon_sym_0o] = ACTIONS(1808), - [anon_sym_0x] = ACTIONS(1808), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(3), - }, - [766] = { - [sym_cell_path] = STATE(1198), - [sym_path] = STATE(1020), - [sym_comment] = STATE(766), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1818), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1818), - [aux_sym_cmd_identifier_token40] = ACTIONS(1818), - [sym__newline] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [aux_sym_ctrl_match_token1] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym__] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_and] = ACTIONS(1818), - [anon_sym_xor] = ACTIONS(1818), - [anon_sym_or] = ACTIONS(1818), - [anon_sym_not_DASHin] = ACTIONS(1818), - [anon_sym_starts_DASHwith] = ACTIONS(1818), - [anon_sym_ends_DASHwith] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_LT2] = ACTIONS(1816), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_EQ_TILDE] = ACTIONS(1818), - [anon_sym_BANG_TILDE] = ACTIONS(1818), - [anon_sym_STAR_STAR] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1818), - [anon_sym_SLASH_SLASH] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_bit_DASHshl] = ACTIONS(1818), - [anon_sym_bit_DASHshr] = ACTIONS(1818), - [anon_sym_bit_DASHand] = ACTIONS(1818), - [anon_sym_bit_DASHxor] = ACTIONS(1818), - [anon_sym_bit_DASHor] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [aux_sym__val_number_decimal_token1] = ACTIONS(1816), - [aux_sym__val_number_decimal_token2] = ACTIONS(1818), - [anon_sym_DOT2] = ACTIONS(1816), - [aux_sym__val_number_decimal_token3] = ACTIONS(1818), - [aux_sym__val_number_token1] = ACTIONS(1818), - [aux_sym__val_number_token2] = ACTIONS(1818), - [aux_sym__val_number_token3] = ACTIONS(1818), - [anon_sym_0b] = ACTIONS(1816), - [anon_sym_0o] = ACTIONS(1816), - [anon_sym_0x] = ACTIONS(1816), - [sym_val_date] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [sym__str_single_quotes] = ACTIONS(1818), - [sym__str_back_ticks] = ACTIONS(1818), - [anon_sym_err_GT] = ACTIONS(1816), - [anon_sym_out_GT] = ACTIONS(1816), - [anon_sym_e_GT] = ACTIONS(1816), - [anon_sym_o_GT] = ACTIONS(1816), - [anon_sym_err_PLUSout_GT] = ACTIONS(1816), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1816), - [anon_sym_o_PLUSe_GT] = ACTIONS(1816), - [anon_sym_e_PLUSo_GT] = ACTIONS(1816), - [anon_sym_err_GT_GT] = ACTIONS(1818), - [anon_sym_out_GT_GT] = ACTIONS(1818), - [anon_sym_e_GT_GT] = ACTIONS(1818), - [anon_sym_o_GT_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1818), - [aux_sym_unquoted_token1] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(3), - }, - [767] = { - [sym_cell_path] = STATE(1197), - [sym_path] = STATE(1020), - [sym_comment] = STATE(767), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1814), - [anon_sym_false] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1814), - [aux_sym_cmd_identifier_token38] = ACTIONS(1814), - [aux_sym_cmd_identifier_token39] = ACTIONS(1814), - [aux_sym_cmd_identifier_token40] = ACTIONS(1814), - [sym__newline] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_DOLLAR] = ACTIONS(1814), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_in] = ACTIONS(1812), - [aux_sym_ctrl_match_token1] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym__] = ACTIONS(1812), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_and] = ACTIONS(1814), - [anon_sym_xor] = ACTIONS(1814), - [anon_sym_or] = ACTIONS(1814), - [anon_sym_not_DASHin] = ACTIONS(1814), - [anon_sym_starts_DASHwith] = ACTIONS(1814), - [anon_sym_ends_DASHwith] = ACTIONS(1814), - [anon_sym_EQ_EQ] = ACTIONS(1814), - [anon_sym_BANG_EQ] = ACTIONS(1814), - [anon_sym_LT2] = ACTIONS(1812), - [anon_sym_LT_EQ] = ACTIONS(1814), - [anon_sym_GT_EQ] = ACTIONS(1814), - [anon_sym_EQ_TILDE] = ACTIONS(1814), - [anon_sym_BANG_TILDE] = ACTIONS(1814), - [anon_sym_STAR_STAR] = ACTIONS(1814), - [anon_sym_PLUS_PLUS] = ACTIONS(1814), - [anon_sym_SLASH] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1814), - [anon_sym_SLASH_SLASH] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_bit_DASHshl] = ACTIONS(1814), - [anon_sym_bit_DASHshr] = ACTIONS(1814), - [anon_sym_bit_DASHand] = ACTIONS(1814), - [anon_sym_bit_DASHxor] = ACTIONS(1814), - [anon_sym_bit_DASHor] = ACTIONS(1814), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1814), - [anon_sym_DOT_DOT_LT] = ACTIONS(1814), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = ACTIONS(1814), - [anon_sym_DOT2] = ACTIONS(1812), - [aux_sym__val_number_decimal_token3] = ACTIONS(1814), - [aux_sym__val_number_token1] = ACTIONS(1814), - [aux_sym__val_number_token2] = ACTIONS(1814), - [aux_sym__val_number_token3] = ACTIONS(1814), - [anon_sym_0b] = ACTIONS(1812), - [anon_sym_0o] = ACTIONS(1812), - [anon_sym_0x] = ACTIONS(1812), - [sym_val_date] = ACTIONS(1814), - [anon_sym_DQUOTE] = ACTIONS(1814), - [sym__str_single_quotes] = ACTIONS(1814), - [sym__str_back_ticks] = ACTIONS(1814), - [anon_sym_err_GT] = ACTIONS(1812), - [anon_sym_out_GT] = ACTIONS(1812), - [anon_sym_e_GT] = ACTIONS(1812), - [anon_sym_o_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT] = ACTIONS(1812), - [anon_sym_err_GT_GT] = ACTIONS(1814), - [anon_sym_out_GT_GT] = ACTIONS(1814), - [anon_sym_e_GT_GT] = ACTIONS(1814), - [anon_sym_o_GT_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1814), - [aux_sym_unquoted_token1] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(3), - }, - [768] = { - [sym_cell_path] = STATE(1154), - [sym_path] = STATE(1020), - [sym_comment] = STATE(768), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1742), - [anon_sym_false] = ACTIONS(1742), - [anon_sym_null] = ACTIONS(1742), - [aux_sym_cmd_identifier_token38] = ACTIONS(1742), - [aux_sym_cmd_identifier_token39] = ACTIONS(1742), - [aux_sym_cmd_identifier_token40] = ACTIONS(1742), - [sym__newline] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_COMMA] = ACTIONS(1742), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_in] = ACTIONS(1740), - [aux_sym_ctrl_match_token1] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym__] = ACTIONS(1740), - [anon_sym_DOT_DOT] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_and] = ACTIONS(1742), - [anon_sym_xor] = ACTIONS(1742), - [anon_sym_or] = ACTIONS(1742), - [anon_sym_not_DASHin] = ACTIONS(1742), - [anon_sym_starts_DASHwith] = ACTIONS(1742), - [anon_sym_ends_DASHwith] = ACTIONS(1742), - [anon_sym_EQ_EQ] = ACTIONS(1742), - [anon_sym_BANG_EQ] = ACTIONS(1742), - [anon_sym_LT2] = ACTIONS(1740), - [anon_sym_LT_EQ] = ACTIONS(1742), - [anon_sym_GT_EQ] = ACTIONS(1742), - [anon_sym_EQ_TILDE] = ACTIONS(1742), - [anon_sym_BANG_TILDE] = ACTIONS(1742), - [anon_sym_STAR_STAR] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_mod] = ACTIONS(1742), - [anon_sym_SLASH_SLASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_bit_DASHshl] = ACTIONS(1742), - [anon_sym_bit_DASHshr] = ACTIONS(1742), - [anon_sym_bit_DASHand] = ACTIONS(1742), - [anon_sym_bit_DASHxor] = ACTIONS(1742), - [anon_sym_bit_DASHor] = ACTIONS(1742), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), - [anon_sym_DOT_DOT_LT] = ACTIONS(1742), - [aux_sym__val_number_decimal_token1] = ACTIONS(1740), - [aux_sym__val_number_decimal_token2] = ACTIONS(1742), - [anon_sym_DOT2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1742), - [aux_sym__val_number_token1] = ACTIONS(1742), - [aux_sym__val_number_token2] = ACTIONS(1742), - [aux_sym__val_number_token3] = ACTIONS(1742), - [anon_sym_0b] = ACTIONS(1740), - [anon_sym_0o] = ACTIONS(1740), - [anon_sym_0x] = ACTIONS(1740), - [sym_val_date] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1742), - [sym__str_single_quotes] = ACTIONS(1742), - [sym__str_back_ticks] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1740), - [anon_sym_out_GT] = ACTIONS(1740), - [anon_sym_e_GT] = ACTIONS(1740), - [anon_sym_o_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT] = ACTIONS(1740), - [anon_sym_err_GT_GT] = ACTIONS(1742), - [anon_sym_out_GT_GT] = ACTIONS(1742), - [anon_sym_e_GT_GT] = ACTIONS(1742), - [anon_sym_o_GT_GT] = ACTIONS(1742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1742), - [aux_sym_unquoted_token1] = ACTIONS(1740), - [anon_sym_POUND] = ACTIONS(3), - }, - [769] = { - [sym_cell_path] = STATE(1170), - [sym_path] = STATE(1020), - [sym_comment] = STATE(769), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1746), - [aux_sym_cmd_identifier_token38] = ACTIONS(1746), - [aux_sym_cmd_identifier_token39] = ACTIONS(1746), - [aux_sym_cmd_identifier_token40] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [aux_sym_ctrl_match_token1] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT_DOT] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_and] = ACTIONS(1746), - [anon_sym_xor] = ACTIONS(1746), - [anon_sym_or] = ACTIONS(1746), - [anon_sym_not_DASHin] = ACTIONS(1746), - [anon_sym_starts_DASHwith] = ACTIONS(1746), - [anon_sym_ends_DASHwith] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1744), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_BANG_TILDE] = ACTIONS(1746), - [anon_sym_STAR_STAR] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1744), - [anon_sym_mod] = ACTIONS(1746), - [anon_sym_SLASH_SLASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_bit_DASHshl] = ACTIONS(1746), - [anon_sym_bit_DASHshr] = ACTIONS(1746), - [anon_sym_bit_DASHand] = ACTIONS(1746), - [anon_sym_bit_DASHxor] = ACTIONS(1746), - [anon_sym_bit_DASHor] = ACTIONS(1746), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1746), - [anon_sym_DOT_DOT_LT] = ACTIONS(1746), - [aux_sym__val_number_decimal_token1] = ACTIONS(1744), - [aux_sym__val_number_decimal_token2] = ACTIONS(1746), - [anon_sym_DOT2] = ACTIONS(1744), - [aux_sym__val_number_decimal_token3] = ACTIONS(1746), - [aux_sym__val_number_token1] = ACTIONS(1746), - [aux_sym__val_number_token2] = ACTIONS(1746), - [aux_sym__val_number_token3] = ACTIONS(1746), - [anon_sym_0b] = ACTIONS(1744), - [anon_sym_0o] = ACTIONS(1744), - [anon_sym_0x] = ACTIONS(1744), - [sym_val_date] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [sym__str_single_quotes] = ACTIONS(1746), - [sym__str_back_ticks] = ACTIONS(1746), - [anon_sym_err_GT] = ACTIONS(1744), - [anon_sym_out_GT] = ACTIONS(1744), - [anon_sym_e_GT] = ACTIONS(1744), - [anon_sym_o_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT] = ACTIONS(1744), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [aux_sym_unquoted_token1] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(3), - }, - [770] = { - [sym_cell_path] = STATE(1143), - [sym_path] = STATE(1020), - [sym_comment] = STATE(770), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [sym__newline] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_COMMA] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_in] = ACTIONS(1723), - [aux_sym_ctrl_match_token1] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym__] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_and] = ACTIONS(1725), - [anon_sym_xor] = ACTIONS(1725), - [anon_sym_or] = ACTIONS(1725), - [anon_sym_not_DASHin] = ACTIONS(1725), - [anon_sym_starts_DASHwith] = ACTIONS(1725), - [anon_sym_ends_DASHwith] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT2] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_EQ_TILDE] = ACTIONS(1725), - [anon_sym_BANG_TILDE] = ACTIONS(1725), - [anon_sym_STAR_STAR] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_mod] = ACTIONS(1725), - [anon_sym_SLASH_SLASH] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_bit_DASHand] = ACTIONS(1725), - [anon_sym_bit_DASHxor] = ACTIONS(1725), - [anon_sym_bit_DASHor] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1723), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [anon_sym_DOT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1723), - [anon_sym_0o] = ACTIONS(1723), - [anon_sym_0x] = ACTIONS(1723), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_err_GT] = ACTIONS(1723), - [anon_sym_out_GT] = ACTIONS(1723), - [anon_sym_e_GT] = ACTIONS(1723), - [anon_sym_o_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT] = ACTIONS(1723), - [anon_sym_err_GT_GT] = ACTIONS(1725), - [anon_sym_out_GT_GT] = ACTIONS(1725), - [anon_sym_e_GT_GT] = ACTIONS(1725), - [anon_sym_o_GT_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1725), - [aux_sym_unquoted_token1] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(3), - }, - [771] = { - [sym_cell_path] = STATE(1177), - [sym_path] = STATE(1020), - [sym_comment] = STATE(771), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token38] = ACTIONS(1754), - [aux_sym_cmd_identifier_token39] = ACTIONS(1754), - [aux_sym_cmd_identifier_token40] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [aux_sym_ctrl_match_token1] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym__] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_and] = ACTIONS(1754), - [anon_sym_xor] = ACTIONS(1754), - [anon_sym_or] = ACTIONS(1754), - [anon_sym_not_DASHin] = ACTIONS(1754), - [anon_sym_starts_DASHwith] = ACTIONS(1754), - [anon_sym_ends_DASHwith] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1752), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1754), - [anon_sym_BANG_TILDE] = ACTIONS(1754), - [anon_sym_STAR_STAR] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_mod] = ACTIONS(1754), - [anon_sym_SLASH_SLASH] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_bit_DASHshl] = ACTIONS(1754), - [anon_sym_bit_DASHshr] = ACTIONS(1754), - [anon_sym_bit_DASHand] = ACTIONS(1754), - [anon_sym_bit_DASHxor] = ACTIONS(1754), - [anon_sym_bit_DASHor] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_LT] = ACTIONS(1754), - [aux_sym__val_number_decimal_token1] = ACTIONS(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [anon_sym_DOT2] = ACTIONS(1752), - [aux_sym__val_number_decimal_token3] = ACTIONS(1754), - [aux_sym__val_number_token1] = ACTIONS(1754), - [aux_sym__val_number_token2] = ACTIONS(1754), - [aux_sym__val_number_token3] = ACTIONS(1754), - [anon_sym_0b] = ACTIONS(1752), - [anon_sym_0o] = ACTIONS(1752), - [anon_sym_0x] = ACTIONS(1752), - [sym_val_date] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [sym__str_single_quotes] = ACTIONS(1754), - [sym__str_back_ticks] = ACTIONS(1754), - [anon_sym_err_GT] = ACTIONS(1752), - [anon_sym_out_GT] = ACTIONS(1752), - [anon_sym_e_GT] = ACTIONS(1752), - [anon_sym_o_GT] = ACTIONS(1752), - [anon_sym_err_PLUSout_GT] = ACTIONS(1752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), - [anon_sym_o_PLUSe_GT] = ACTIONS(1752), - [anon_sym_e_PLUSo_GT] = ACTIONS(1752), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [aux_sym_unquoted_token1] = ACTIONS(1752), - [anon_sym_POUND] = ACTIONS(3), - }, - [772] = { - [sym_cell_path] = STATE(1179), - [sym_path] = STATE(1020), - [sym_comment] = STATE(772), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1758), - [anon_sym_false] = ACTIONS(1758), - [anon_sym_null] = ACTIONS(1758), - [aux_sym_cmd_identifier_token38] = ACTIONS(1758), - [aux_sym_cmd_identifier_token39] = ACTIONS(1758), - [aux_sym_cmd_identifier_token40] = ACTIONS(1758), - [sym__newline] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_COMMA] = ACTIONS(1758), - [anon_sym_DOLLAR] = ACTIONS(1758), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_in] = ACTIONS(1756), - [aux_sym_ctrl_match_token1] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym__] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_and] = ACTIONS(1758), - [anon_sym_xor] = ACTIONS(1758), - [anon_sym_or] = ACTIONS(1758), - [anon_sym_not_DASHin] = ACTIONS(1758), - [anon_sym_starts_DASHwith] = ACTIONS(1758), - [anon_sym_ends_DASHwith] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1758), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_EQ_TILDE] = ACTIONS(1758), - [anon_sym_BANG_TILDE] = ACTIONS(1758), - [anon_sym_STAR_STAR] = ACTIONS(1758), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_mod] = ACTIONS(1758), - [anon_sym_SLASH_SLASH] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_bit_DASHshl] = ACTIONS(1758), - [anon_sym_bit_DASHshr] = ACTIONS(1758), - [anon_sym_bit_DASHand] = ACTIONS(1758), - [anon_sym_bit_DASHxor] = ACTIONS(1758), - [anon_sym_bit_DASHor] = ACTIONS(1758), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_LT] = ACTIONS(1758), - [aux_sym__val_number_decimal_token1] = ACTIONS(1756), - [aux_sym__val_number_decimal_token2] = ACTIONS(1758), - [anon_sym_DOT2] = ACTIONS(1756), - [aux_sym__val_number_decimal_token3] = ACTIONS(1758), - [aux_sym__val_number_token1] = ACTIONS(1758), - [aux_sym__val_number_token2] = ACTIONS(1758), - [aux_sym__val_number_token3] = ACTIONS(1758), - [anon_sym_0b] = ACTIONS(1756), - [anon_sym_0o] = ACTIONS(1756), - [anon_sym_0x] = ACTIONS(1756), - [sym_val_date] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [sym__str_single_quotes] = ACTIONS(1758), - [sym__str_back_ticks] = ACTIONS(1758), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1758), - [anon_sym_out_GT_GT] = ACTIONS(1758), - [anon_sym_e_GT_GT] = ACTIONS(1758), - [anon_sym_o_GT_GT] = ACTIONS(1758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1758), - [aux_sym_unquoted_token1] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [773] = { - [sym_cell_path] = STATE(1180), - [sym_path] = STATE(1020), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7605), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(773), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1762), - [anon_sym_false] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1762), - [aux_sym_cmd_identifier_token38] = ACTIONS(1762), - [aux_sym_cmd_identifier_token39] = ACTIONS(1762), - [aux_sym_cmd_identifier_token40] = ACTIONS(1762), - [sym__newline] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1762), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_in] = ACTIONS(1760), - [aux_sym_ctrl_match_token1] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym__] = ACTIONS(1760), - [anon_sym_DOT_DOT] = ACTIONS(1760), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_and] = ACTIONS(1762), - [anon_sym_xor] = ACTIONS(1762), - [anon_sym_or] = ACTIONS(1762), - [anon_sym_not_DASHin] = ACTIONS(1762), - [anon_sym_starts_DASHwith] = ACTIONS(1762), - [anon_sym_ends_DASHwith] = ACTIONS(1762), - [anon_sym_EQ_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1762), - [anon_sym_LT2] = ACTIONS(1760), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_EQ_TILDE] = ACTIONS(1762), - [anon_sym_BANG_TILDE] = ACTIONS(1762), - [anon_sym_STAR_STAR] = ACTIONS(1762), - [anon_sym_PLUS_PLUS] = ACTIONS(1762), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_mod] = ACTIONS(1762), - [anon_sym_SLASH_SLASH] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_bit_DASHshl] = ACTIONS(1762), - [anon_sym_bit_DASHshr] = ACTIONS(1762), - [anon_sym_bit_DASHand] = ACTIONS(1762), - [anon_sym_bit_DASHxor] = ACTIONS(1762), - [anon_sym_bit_DASHor] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_LT] = ACTIONS(1762), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [anon_sym_DOT2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_token1] = ACTIONS(1762), - [aux_sym__val_number_token2] = ACTIONS(1762), - [aux_sym__val_number_token3] = ACTIONS(1762), - [anon_sym_0b] = ACTIONS(1760), - [anon_sym_0o] = ACTIONS(1760), - [anon_sym_0x] = ACTIONS(1760), - [sym_val_date] = ACTIONS(1762), - [anon_sym_DQUOTE] = ACTIONS(1762), - [sym__str_single_quotes] = ACTIONS(1762), - [sym__str_back_ticks] = ACTIONS(1762), - [anon_sym_err_GT] = ACTIONS(1760), - [anon_sym_out_GT] = ACTIONS(1760), - [anon_sym_e_GT] = ACTIONS(1760), - [anon_sym_o_GT] = ACTIONS(1760), - [anon_sym_err_PLUSout_GT] = ACTIONS(1760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), - [anon_sym_o_PLUSe_GT] = ACTIONS(1760), - [anon_sym_e_PLUSo_GT] = ACTIONS(1760), - [anon_sym_err_GT_GT] = ACTIONS(1762), - [anon_sym_out_GT_GT] = ACTIONS(1762), - [anon_sym_e_GT_GT] = ACTIONS(1762), - [anon_sym_o_GT_GT] = ACTIONS(1762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), - [aux_sym_unquoted_token1] = ACTIONS(1760), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(3039), + [anon_sym_false] = ACTIONS(3039), + [anon_sym_null] = ACTIONS(3042), + [aux_sym_cmd_identifier_token38] = ACTIONS(3045), + [aux_sym_cmd_identifier_token39] = ACTIONS(3045), + [aux_sym_cmd_identifier_token40] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3051), + [anon_sym_DOLLAR] = ACTIONS(3054), + [aux_sym_ctrl_match_token1] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3063), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3066), + [anon_sym_DOT_DOT_LT] = ACTIONS(3066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3069), + [aux_sym__val_number_decimal_token1] = ACTIONS(3072), + [aux_sym__val_number_decimal_token2] = ACTIONS(3075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3078), + [aux_sym__val_number_decimal_token4] = ACTIONS(3081), + [aux_sym__val_number_token1] = ACTIONS(3084), + [aux_sym__val_number_token2] = ACTIONS(3084), + [aux_sym__val_number_token3] = ACTIONS(3084), + [anon_sym_0b] = ACTIONS(3087), + [anon_sym_0o] = ACTIONS(3090), + [anon_sym_0x] = ACTIONS(3090), + [sym_val_date] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3096), + [sym__str_single_quotes] = ACTIONS(3099), + [sym__str_back_ticks] = ACTIONS(3099), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3102), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3108), + [anon_sym_err_GT] = ACTIONS(3111), + [anon_sym_out_GT] = ACTIONS(3111), + [anon_sym_e_GT] = ACTIONS(3111), + [anon_sym_o_GT] = ACTIONS(3111), + [anon_sym_err_PLUSout_GT] = ACTIONS(3111), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3111), + [anon_sym_o_PLUSe_GT] = ACTIONS(3111), + [anon_sym_e_PLUSo_GT] = ACTIONS(3111), + [anon_sym_err_GT_GT] = ACTIONS(3114), + [anon_sym_out_GT_GT] = ACTIONS(3114), + [anon_sym_e_GT_GT] = ACTIONS(3114), + [anon_sym_o_GT_GT] = ACTIONS(3114), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3114), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3114), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3114), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3114), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3117), + [anon_sym_POUND] = ACTIONS(247), }, [774] = { - [sym_cell_path] = STATE(1181), - [sym_path] = STATE(1020), + [sym_cell_path] = STATE(1146), + [sym_path] = STATE(1014), [sym_comment] = STATE(774), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1766), - [aux_sym_cmd_identifier_token38] = ACTIONS(1766), - [aux_sym_cmd_identifier_token39] = ACTIONS(1766), - [aux_sym_cmd_identifier_token40] = ACTIONS(1766), - [sym__newline] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [aux_sym_ctrl_match_token1] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym__] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_and] = ACTIONS(1766), - [anon_sym_xor] = ACTIONS(1766), - [anon_sym_or] = ACTIONS(1766), - [anon_sym_not_DASHin] = ACTIONS(1766), - [anon_sym_starts_DASHwith] = ACTIONS(1766), - [anon_sym_ends_DASHwith] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_EQ_TILDE] = ACTIONS(1766), - [anon_sym_BANG_TILDE] = ACTIONS(1766), - [anon_sym_STAR_STAR] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_mod] = ACTIONS(1766), - [anon_sym_SLASH_SLASH] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_bit_DASHshl] = ACTIONS(1766), - [anon_sym_bit_DASHshr] = ACTIONS(1766), - [anon_sym_bit_DASHand] = ACTIONS(1766), - [anon_sym_bit_DASHxor] = ACTIONS(1766), - [anon_sym_bit_DASHor] = ACTIONS(1766), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_LT] = ACTIONS(1766), - [aux_sym__val_number_decimal_token1] = ACTIONS(1764), - [aux_sym__val_number_decimal_token2] = ACTIONS(1766), - [anon_sym_DOT2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1766), - [aux_sym__val_number_token1] = ACTIONS(1766), - [aux_sym__val_number_token2] = ACTIONS(1766), - [aux_sym__val_number_token3] = ACTIONS(1766), - [anon_sym_0b] = ACTIONS(1764), - [anon_sym_0o] = ACTIONS(1764), - [anon_sym_0x] = ACTIONS(1764), - [sym_val_date] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym__str_single_quotes] = ACTIONS(1766), - [sym__str_back_ticks] = ACTIONS(1766), - [anon_sym_err_GT] = ACTIONS(1764), - [anon_sym_out_GT] = ACTIONS(1764), - [anon_sym_e_GT] = ACTIONS(1764), - [anon_sym_o_GT] = ACTIONS(1764), - [anon_sym_err_PLUSout_GT] = ACTIONS(1764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1764), - [anon_sym_o_PLUSe_GT] = ACTIONS(1764), - [anon_sym_e_PLUSo_GT] = ACTIONS(1764), - [anon_sym_err_GT_GT] = ACTIONS(1766), - [anon_sym_out_GT_GT] = ACTIONS(1766), - [anon_sym_e_GT_GT] = ACTIONS(1766), - [anon_sym_o_GT_GT] = ACTIONS(1766), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1766), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1766), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1766), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1766), - [aux_sym_unquoted_token1] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1764), + [anon_sym_false] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1764), + [aux_sym_cmd_identifier_token38] = ACTIONS(1764), + [aux_sym_cmd_identifier_token39] = ACTIONS(1764), + [aux_sym_cmd_identifier_token40] = ACTIONS(1764), + [sym__newline] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1764), + [aux_sym_ctrl_match_token1] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym__] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [aux_sym_expr_binary_token1] = ACTIONS(1764), + [aux_sym_expr_binary_token2] = ACTIONS(1764), + [aux_sym_expr_binary_token3] = ACTIONS(1764), + [aux_sym_expr_binary_token4] = ACTIONS(1764), + [aux_sym_expr_binary_token5] = ACTIONS(1764), + [aux_sym_expr_binary_token6] = ACTIONS(1764), + [aux_sym_expr_binary_token7] = ACTIONS(1764), + [aux_sym_expr_binary_token8] = ACTIONS(1764), + [aux_sym_expr_binary_token9] = ACTIONS(1764), + [aux_sym_expr_binary_token10] = ACTIONS(1764), + [aux_sym_expr_binary_token11] = ACTIONS(1764), + [aux_sym_expr_binary_token12] = ACTIONS(1764), + [aux_sym_expr_binary_token13] = ACTIONS(1764), + [aux_sym_expr_binary_token14] = ACTIONS(1764), + [aux_sym_expr_binary_token15] = ACTIONS(1764), + [aux_sym_expr_binary_token16] = ACTIONS(1764), + [aux_sym_expr_binary_token17] = ACTIONS(1764), + [aux_sym_expr_binary_token18] = ACTIONS(1764), + [aux_sym_expr_binary_token19] = ACTIONS(1764), + [aux_sym_expr_binary_token20] = ACTIONS(1764), + [aux_sym_expr_binary_token21] = ACTIONS(1764), + [aux_sym_expr_binary_token22] = ACTIONS(1764), + [aux_sym_expr_binary_token23] = ACTIONS(1764), + [aux_sym_expr_binary_token24] = ACTIONS(1764), + [aux_sym_expr_binary_token25] = ACTIONS(1764), + [aux_sym_expr_binary_token26] = ACTIONS(1764), + [aux_sym_expr_binary_token27] = ACTIONS(1764), + [aux_sym_expr_binary_token28] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1764), + [anon_sym_DOT_DOT_LT] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1762), + [aux_sym__val_number_decimal_token2] = ACTIONS(1764), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(1764), + [aux_sym__val_number_token2] = ACTIONS(1764), + [aux_sym__val_number_token3] = ACTIONS(1764), + [anon_sym_0b] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1762), + [anon_sym_0x] = ACTIONS(1762), + [sym_val_date] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [sym__str_single_quotes] = ACTIONS(1764), + [sym__str_back_ticks] = ACTIONS(1764), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1764), + [anon_sym_out_GT_GT] = ACTIONS(1764), + [anon_sym_e_GT_GT] = ACTIONS(1764), + [anon_sym_o_GT_GT] = ACTIONS(1764), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1764), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1764), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1764), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1764), + [aux_sym_unquoted_token1] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(247), }, [775] = { - [sym_cell_path] = STATE(1182), - [sym_path] = STATE(1020), + [sym_cell_path] = STATE(1135), + [sym_path] = STATE(1014), [sym_comment] = STATE(775), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), - [aux_sym_cmd_identifier_token38] = ACTIONS(1770), - [aux_sym_cmd_identifier_token39] = ACTIONS(1770), - [aux_sym_cmd_identifier_token40] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_in] = ACTIONS(1768), - [aux_sym_ctrl_match_token1] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym__] = ACTIONS(1768), - [anon_sym_DOT_DOT] = ACTIONS(1768), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_and] = ACTIONS(1770), - [anon_sym_xor] = ACTIONS(1770), - [anon_sym_or] = ACTIONS(1770), - [anon_sym_not_DASHin] = ACTIONS(1770), - [anon_sym_starts_DASHwith] = ACTIONS(1770), - [anon_sym_ends_DASHwith] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_LT2] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_EQ_TILDE] = ACTIONS(1770), - [anon_sym_BANG_TILDE] = ACTIONS(1770), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1770), - [anon_sym_SLASH_SLASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_bit_DASHshl] = ACTIONS(1770), - [anon_sym_bit_DASHshr] = ACTIONS(1770), - [anon_sym_bit_DASHand] = ACTIONS(1770), - [anon_sym_bit_DASHxor] = ACTIONS(1770), - [anon_sym_bit_DASHor] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_LT] = ACTIONS(1770), - [aux_sym__val_number_decimal_token1] = ACTIONS(1768), - [aux_sym__val_number_decimal_token2] = ACTIONS(1770), - [anon_sym_DOT2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_token1] = ACTIONS(1770), - [aux_sym__val_number_token2] = ACTIONS(1770), - [aux_sym__val_number_token3] = ACTIONS(1770), - [anon_sym_0b] = ACTIONS(1768), - [anon_sym_0o] = ACTIONS(1768), - [anon_sym_0x] = ACTIONS(1768), - [sym_val_date] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [sym__str_single_quotes] = ACTIONS(1770), - [sym__str_back_ticks] = ACTIONS(1770), - [anon_sym_err_GT] = ACTIONS(1768), - [anon_sym_out_GT] = ACTIONS(1768), - [anon_sym_e_GT] = ACTIONS(1768), - [anon_sym_o_GT] = ACTIONS(1768), - [anon_sym_err_PLUSout_GT] = ACTIONS(1768), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), - [anon_sym_o_PLUSe_GT] = ACTIONS(1768), - [anon_sym_e_PLUSo_GT] = ACTIONS(1768), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [aux_sym_unquoted_token1] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_null] = ACTIONS(947), + [aux_sym_cmd_identifier_token38] = ACTIONS(947), + [aux_sym_cmd_identifier_token39] = ACTIONS(947), + [aux_sym_cmd_identifier_token40] = ACTIONS(947), + [sym__newline] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(947), + [aux_sym_ctrl_match_token1] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym__] = ACTIONS(945), + [anon_sym_DOT_DOT] = ACTIONS(945), + [aux_sym_expr_binary_token1] = ACTIONS(947), + [aux_sym_expr_binary_token2] = ACTIONS(947), + [aux_sym_expr_binary_token3] = ACTIONS(947), + [aux_sym_expr_binary_token4] = ACTIONS(947), + [aux_sym_expr_binary_token5] = ACTIONS(947), + [aux_sym_expr_binary_token6] = ACTIONS(947), + [aux_sym_expr_binary_token7] = ACTIONS(947), + [aux_sym_expr_binary_token8] = ACTIONS(947), + [aux_sym_expr_binary_token9] = ACTIONS(947), + [aux_sym_expr_binary_token10] = ACTIONS(947), + [aux_sym_expr_binary_token11] = ACTIONS(947), + [aux_sym_expr_binary_token12] = ACTIONS(947), + [aux_sym_expr_binary_token13] = ACTIONS(947), + [aux_sym_expr_binary_token14] = ACTIONS(947), + [aux_sym_expr_binary_token15] = ACTIONS(947), + [aux_sym_expr_binary_token16] = ACTIONS(947), + [aux_sym_expr_binary_token17] = ACTIONS(947), + [aux_sym_expr_binary_token18] = ACTIONS(947), + [aux_sym_expr_binary_token19] = ACTIONS(947), + [aux_sym_expr_binary_token20] = ACTIONS(947), + [aux_sym_expr_binary_token21] = ACTIONS(947), + [aux_sym_expr_binary_token22] = ACTIONS(947), + [aux_sym_expr_binary_token23] = ACTIONS(947), + [aux_sym_expr_binary_token24] = ACTIONS(947), + [aux_sym_expr_binary_token25] = ACTIONS(947), + [aux_sym_expr_binary_token26] = ACTIONS(947), + [aux_sym_expr_binary_token27] = ACTIONS(947), + [aux_sym_expr_binary_token28] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(947), + [anon_sym_DOT_DOT_LT] = ACTIONS(947), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(947), + [aux_sym__val_number_decimal_token3] = ACTIONS(947), + [aux_sym__val_number_decimal_token4] = ACTIONS(947), + [aux_sym__val_number_token1] = ACTIONS(947), + [aux_sym__val_number_token2] = ACTIONS(947), + [aux_sym__val_number_token3] = ACTIONS(947), + [anon_sym_0b] = ACTIONS(945), + [anon_sym_0o] = ACTIONS(945), + [anon_sym_0x] = ACTIONS(945), + [sym_val_date] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym__str_single_quotes] = ACTIONS(947), + [sym__str_back_ticks] = ACTIONS(947), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [aux_sym_unquoted_token1] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(247), }, [776] = { - [sym_cell_path] = STATE(1183), - [sym_path] = STATE(1020), + [sym_cell_path] = STATE(1149), + [sym_path] = STATE(1014), [sym_comment] = STATE(776), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1774), - [anon_sym_false] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [aux_sym_cmd_identifier_token38] = ACTIONS(1774), - [aux_sym_cmd_identifier_token39] = ACTIONS(1774), - [aux_sym_cmd_identifier_token40] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_COMMA] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1772), - [aux_sym_ctrl_match_token1] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym__] = ACTIONS(1772), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_and] = ACTIONS(1774), - [anon_sym_xor] = ACTIONS(1774), - [anon_sym_or] = ACTIONS(1774), - [anon_sym_not_DASHin] = ACTIONS(1774), - [anon_sym_starts_DASHwith] = ACTIONS(1774), - [anon_sym_ends_DASHwith] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1774), - [anon_sym_BANG_EQ] = ACTIONS(1774), - [anon_sym_LT2] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1774), - [anon_sym_GT_EQ] = ACTIONS(1774), - [anon_sym_EQ_TILDE] = ACTIONS(1774), - [anon_sym_BANG_TILDE] = ACTIONS(1774), - [anon_sym_STAR_STAR] = ACTIONS(1774), - [anon_sym_PLUS_PLUS] = ACTIONS(1774), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_mod] = ACTIONS(1774), - [anon_sym_SLASH_SLASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_bit_DASHand] = ACTIONS(1774), - [anon_sym_bit_DASHxor] = ACTIONS(1774), - [anon_sym_bit_DASHor] = ACTIONS(1774), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1774), - [anon_sym_DOT_DOT_LT] = ACTIONS(1774), - [aux_sym__val_number_decimal_token1] = ACTIONS(1772), - [aux_sym__val_number_decimal_token2] = ACTIONS(1774), - [anon_sym_DOT2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1774), - [aux_sym__val_number_token1] = ACTIONS(1774), - [aux_sym__val_number_token2] = ACTIONS(1774), - [aux_sym__val_number_token3] = ACTIONS(1774), - [anon_sym_0b] = ACTIONS(1772), - [anon_sym_0o] = ACTIONS(1772), - [anon_sym_0x] = ACTIONS(1772), - [sym_val_date] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [sym__str_single_quotes] = ACTIONS(1774), - [sym__str_back_ticks] = ACTIONS(1774), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [aux_sym_unquoted_token1] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [sym__newline] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [aux_sym_ctrl_match_token1] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym__] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [aux_sym_expr_binary_token1] = ACTIONS(1772), + [aux_sym_expr_binary_token2] = ACTIONS(1772), + [aux_sym_expr_binary_token3] = ACTIONS(1772), + [aux_sym_expr_binary_token4] = ACTIONS(1772), + [aux_sym_expr_binary_token5] = ACTIONS(1772), + [aux_sym_expr_binary_token6] = ACTIONS(1772), + [aux_sym_expr_binary_token7] = ACTIONS(1772), + [aux_sym_expr_binary_token8] = ACTIONS(1772), + [aux_sym_expr_binary_token9] = ACTIONS(1772), + [aux_sym_expr_binary_token10] = ACTIONS(1772), + [aux_sym_expr_binary_token11] = ACTIONS(1772), + [aux_sym_expr_binary_token12] = ACTIONS(1772), + [aux_sym_expr_binary_token13] = ACTIONS(1772), + [aux_sym_expr_binary_token14] = ACTIONS(1772), + [aux_sym_expr_binary_token15] = ACTIONS(1772), + [aux_sym_expr_binary_token16] = ACTIONS(1772), + [aux_sym_expr_binary_token17] = ACTIONS(1772), + [aux_sym_expr_binary_token18] = ACTIONS(1772), + [aux_sym_expr_binary_token19] = ACTIONS(1772), + [aux_sym_expr_binary_token20] = ACTIONS(1772), + [aux_sym_expr_binary_token21] = ACTIONS(1772), + [aux_sym_expr_binary_token22] = ACTIONS(1772), + [aux_sym_expr_binary_token23] = ACTIONS(1772), + [aux_sym_expr_binary_token24] = ACTIONS(1772), + [aux_sym_expr_binary_token25] = ACTIONS(1772), + [aux_sym_expr_binary_token26] = ACTIONS(1772), + [aux_sym_expr_binary_token27] = ACTIONS(1772), + [aux_sym_expr_binary_token28] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1770), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [anon_sym_0b] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1770), + [anon_sym_0x] = ACTIONS(1770), + [sym_val_date] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_err_GT] = ACTIONS(1770), + [anon_sym_out_GT] = ACTIONS(1770), + [anon_sym_e_GT] = ACTIONS(1770), + [anon_sym_o_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT] = ACTIONS(1770), + [anon_sym_err_GT_GT] = ACTIONS(1772), + [anon_sym_out_GT_GT] = ACTIONS(1772), + [anon_sym_e_GT_GT] = ACTIONS(1772), + [anon_sym_o_GT_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1772), + [aux_sym_unquoted_token1] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(247), }, [777] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(6913), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_cell_path] = STATE(1151), + [sym_path] = STATE(1014), [sym_comment] = STATE(777), - [aux_sym_list_body_repeat1] = STATE(778), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), + [aux_sym_cmd_identifier_token38] = ACTIONS(1780), + [aux_sym_cmd_identifier_token39] = ACTIONS(1780), + [aux_sym_cmd_identifier_token40] = ACTIONS(1780), + [sym__newline] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_DOLLAR] = ACTIONS(1780), + [aux_sym_ctrl_match_token1] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym__] = ACTIONS(1778), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [aux_sym_expr_binary_token1] = ACTIONS(1780), + [aux_sym_expr_binary_token2] = ACTIONS(1780), + [aux_sym_expr_binary_token3] = ACTIONS(1780), + [aux_sym_expr_binary_token4] = ACTIONS(1780), + [aux_sym_expr_binary_token5] = ACTIONS(1780), + [aux_sym_expr_binary_token6] = ACTIONS(1780), + [aux_sym_expr_binary_token7] = ACTIONS(1780), + [aux_sym_expr_binary_token8] = ACTIONS(1780), + [aux_sym_expr_binary_token9] = ACTIONS(1780), + [aux_sym_expr_binary_token10] = ACTIONS(1780), + [aux_sym_expr_binary_token11] = ACTIONS(1780), + [aux_sym_expr_binary_token12] = ACTIONS(1780), + [aux_sym_expr_binary_token13] = ACTIONS(1780), + [aux_sym_expr_binary_token14] = ACTIONS(1780), + [aux_sym_expr_binary_token15] = ACTIONS(1780), + [aux_sym_expr_binary_token16] = ACTIONS(1780), + [aux_sym_expr_binary_token17] = ACTIONS(1780), + [aux_sym_expr_binary_token18] = ACTIONS(1780), + [aux_sym_expr_binary_token19] = ACTIONS(1780), + [aux_sym_expr_binary_token20] = ACTIONS(1780), + [aux_sym_expr_binary_token21] = ACTIONS(1780), + [aux_sym_expr_binary_token22] = ACTIONS(1780), + [aux_sym_expr_binary_token23] = ACTIONS(1780), + [aux_sym_expr_binary_token24] = ACTIONS(1780), + [aux_sym_expr_binary_token25] = ACTIONS(1780), + [aux_sym_expr_binary_token26] = ACTIONS(1780), + [aux_sym_expr_binary_token27] = ACTIONS(1780), + [aux_sym_expr_binary_token28] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_LT] = ACTIONS(1780), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1780), + [aux_sym__val_number_decimal_token3] = ACTIONS(1780), + [aux_sym__val_number_decimal_token4] = ACTIONS(1780), + [aux_sym__val_number_token1] = ACTIONS(1780), + [aux_sym__val_number_token2] = ACTIONS(1780), + [aux_sym__val_number_token3] = ACTIONS(1780), + [anon_sym_0b] = ACTIONS(1778), + [anon_sym_0o] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1778), + [sym_val_date] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [sym__str_single_quotes] = ACTIONS(1780), + [sym__str_back_ticks] = ACTIONS(1780), + [anon_sym_err_GT] = ACTIONS(1778), + [anon_sym_out_GT] = ACTIONS(1778), + [anon_sym_e_GT] = ACTIONS(1778), + [anon_sym_o_GT] = ACTIONS(1778), + [anon_sym_err_PLUSout_GT] = ACTIONS(1778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), + [anon_sym_o_PLUSe_GT] = ACTIONS(1778), + [anon_sym_e_PLUSo_GT] = ACTIONS(1778), + [anon_sym_err_GT_GT] = ACTIONS(1780), + [anon_sym_out_GT_GT] = ACTIONS(1780), + [anon_sym_e_GT_GT] = ACTIONS(1780), + [anon_sym_o_GT_GT] = ACTIONS(1780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1780), + [aux_sym_unquoted_token1] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(247), }, [778] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(7483), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), + [sym_cell_path] = STATE(1158), + [sym_path] = STATE(1014), [sym_comment] = STATE(778), - [aux_sym_list_body_repeat1] = STATE(778), - [anon_sym_true] = ACTIONS(3007), - [anon_sym_false] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3010), - [aux_sym_cmd_identifier_token38] = ACTIONS(3013), - [aux_sym_cmd_identifier_token39] = ACTIONS(3013), - [aux_sym_cmd_identifier_token40] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3022), - [aux_sym_ctrl_match_token1] = ACTIONS(3025), - [anon_sym_DOT_DOT] = ACTIONS(3028), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3034), - [anon_sym_DOT_DOT_LT] = ACTIONS(3034), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3037), - [aux_sym__val_number_decimal_token1] = ACTIONS(3040), - [aux_sym__val_number_decimal_token2] = ACTIONS(3043), - [anon_sym_DOT2] = ACTIONS(3046), - [aux_sym__val_number_decimal_token3] = ACTIONS(3049), - [aux_sym__val_number_token1] = ACTIONS(3052), - [aux_sym__val_number_token2] = ACTIONS(3052), - [aux_sym__val_number_token3] = ACTIONS(3052), - [anon_sym_0b] = ACTIONS(3055), - [anon_sym_0o] = ACTIONS(3058), - [anon_sym_0x] = ACTIONS(3058), - [sym_val_date] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3064), - [sym__str_single_quotes] = ACTIONS(3067), - [sym__str_back_ticks] = ACTIONS(3067), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3076), - [anon_sym_err_GT] = ACTIONS(3079), - [anon_sym_out_GT] = ACTIONS(3079), - [anon_sym_e_GT] = ACTIONS(3079), - [anon_sym_o_GT] = ACTIONS(3079), - [anon_sym_err_PLUSout_GT] = ACTIONS(3079), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3079), - [anon_sym_o_PLUSe_GT] = ACTIONS(3079), - [anon_sym_e_PLUSo_GT] = ACTIONS(3079), - [anon_sym_err_GT_GT] = ACTIONS(3082), - [anon_sym_out_GT_GT] = ACTIONS(3082), - [anon_sym_e_GT_GT] = ACTIONS(3082), - [anon_sym_o_GT_GT] = ACTIONS(3082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3082), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3085), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [anon_sym_null] = ACTIONS(1603), + [aux_sym_cmd_identifier_token38] = ACTIONS(1603), + [aux_sym_cmd_identifier_token39] = ACTIONS(1603), + [aux_sym_cmd_identifier_token40] = ACTIONS(1603), + [sym__newline] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_COMMA] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(1603), + [aux_sym_ctrl_match_token1] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym__] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [aux_sym_expr_binary_token1] = ACTIONS(1603), + [aux_sym_expr_binary_token2] = ACTIONS(1603), + [aux_sym_expr_binary_token3] = ACTIONS(1603), + [aux_sym_expr_binary_token4] = ACTIONS(1603), + [aux_sym_expr_binary_token5] = ACTIONS(1603), + [aux_sym_expr_binary_token6] = ACTIONS(1603), + [aux_sym_expr_binary_token7] = ACTIONS(1603), + [aux_sym_expr_binary_token8] = ACTIONS(1603), + [aux_sym_expr_binary_token9] = ACTIONS(1603), + [aux_sym_expr_binary_token10] = ACTIONS(1603), + [aux_sym_expr_binary_token11] = ACTIONS(1603), + [aux_sym_expr_binary_token12] = ACTIONS(1603), + [aux_sym_expr_binary_token13] = ACTIONS(1603), + [aux_sym_expr_binary_token14] = ACTIONS(1603), + [aux_sym_expr_binary_token15] = ACTIONS(1603), + [aux_sym_expr_binary_token16] = ACTIONS(1603), + [aux_sym_expr_binary_token17] = ACTIONS(1603), + [aux_sym_expr_binary_token18] = ACTIONS(1603), + [aux_sym_expr_binary_token19] = ACTIONS(1603), + [aux_sym_expr_binary_token20] = ACTIONS(1603), + [aux_sym_expr_binary_token21] = ACTIONS(1603), + [aux_sym_expr_binary_token22] = ACTIONS(1603), + [aux_sym_expr_binary_token23] = ACTIONS(1603), + [aux_sym_expr_binary_token24] = ACTIONS(1603), + [aux_sym_expr_binary_token25] = ACTIONS(1603), + [aux_sym_expr_binary_token26] = ACTIONS(1603), + [aux_sym_expr_binary_token27] = ACTIONS(1603), + [aux_sym_expr_binary_token28] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1603), + [aux_sym__val_number_decimal_token3] = ACTIONS(1603), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(247), }, [779] = { - [sym_cell_path] = STATE(1187), - [sym_path] = STATE(1020), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7055), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(779), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1778), - [aux_sym_cmd_identifier_token40] = ACTIONS(1778), - [sym__newline] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_in] = ACTIONS(1776), - [aux_sym_ctrl_match_token1] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym__] = ACTIONS(1776), - [anon_sym_DOT_DOT] = ACTIONS(1776), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_and] = ACTIONS(1778), - [anon_sym_xor] = ACTIONS(1778), - [anon_sym_or] = ACTIONS(1778), - [anon_sym_not_DASHin] = ACTIONS(1778), - [anon_sym_starts_DASHwith] = ACTIONS(1778), - [anon_sym_ends_DASHwith] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_LT2] = ACTIONS(1776), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_TILDE] = ACTIONS(1778), - [anon_sym_BANG_TILDE] = ACTIONS(1778), - [anon_sym_STAR_STAR] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_mod] = ACTIONS(1778), - [anon_sym_SLASH_SLASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_bit_DASHshl] = ACTIONS(1778), - [anon_sym_bit_DASHshr] = ACTIONS(1778), - [anon_sym_bit_DASHand] = ACTIONS(1778), - [anon_sym_bit_DASHxor] = ACTIONS(1778), - [anon_sym_bit_DASHor] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_LT] = ACTIONS(1778), - [aux_sym__val_number_decimal_token1] = ACTIONS(1776), - [aux_sym__val_number_decimal_token2] = ACTIONS(1778), - [anon_sym_DOT2] = ACTIONS(1776), - [aux_sym__val_number_decimal_token3] = ACTIONS(1778), - [aux_sym__val_number_token1] = ACTIONS(1778), - [aux_sym__val_number_token2] = ACTIONS(1778), - [aux_sym__val_number_token3] = ACTIONS(1778), - [anon_sym_0b] = ACTIONS(1776), - [anon_sym_0o] = ACTIONS(1776), - [anon_sym_0x] = ACTIONS(1776), - [sym_val_date] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1778), - [sym__str_single_quotes] = ACTIONS(1778), - [sym__str_back_ticks] = ACTIONS(1778), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1778), - [anon_sym_out_GT_GT] = ACTIONS(1778), - [anon_sym_e_GT_GT] = ACTIONS(1778), - [anon_sym_o_GT_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1778), - [aux_sym_unquoted_token1] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [780] = { - [sym_cell_path] = STATE(1189), - [sym_path] = STATE(1020), + [sym_cell_path] = STATE(1150), + [sym_path] = STATE(1014), [sym_comment] = STATE(780), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token38] = ACTIONS(1782), - [aux_sym_cmd_identifier_token39] = ACTIONS(1782), - [aux_sym_cmd_identifier_token40] = ACTIONS(1782), - [sym__newline] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [aux_sym_ctrl_match_token1] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_and] = ACTIONS(1782), - [anon_sym_xor] = ACTIONS(1782), - [anon_sym_or] = ACTIONS(1782), - [anon_sym_not_DASHin] = ACTIONS(1782), - [anon_sym_starts_DASHwith] = ACTIONS(1782), - [anon_sym_ends_DASHwith] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1782), - [anon_sym_LT2] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_TILDE] = ACTIONS(1782), - [anon_sym_BANG_TILDE] = ACTIONS(1782), - [anon_sym_STAR_STAR] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1782), - [anon_sym_SLASH_SLASH] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_bit_DASHshl] = ACTIONS(1782), - [anon_sym_bit_DASHshr] = ACTIONS(1782), - [anon_sym_bit_DASHand] = ACTIONS(1782), - [anon_sym_bit_DASHxor] = ACTIONS(1782), - [anon_sym_bit_DASHor] = ACTIONS(1782), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_LT] = ACTIONS(1782), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [anon_sym_DOT2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1782), - [aux_sym__val_number_token1] = ACTIONS(1782), - [aux_sym__val_number_token2] = ACTIONS(1782), - [aux_sym__val_number_token3] = ACTIONS(1782), - [anon_sym_0b] = ACTIONS(1780), - [anon_sym_0o] = ACTIONS(1780), - [anon_sym_0x] = ACTIONS(1780), - [sym_val_date] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym__str_single_quotes] = ACTIONS(1782), - [sym__str_back_ticks] = ACTIONS(1782), - [anon_sym_err_GT] = ACTIONS(1780), - [anon_sym_out_GT] = ACTIONS(1780), - [anon_sym_e_GT] = ACTIONS(1780), - [anon_sym_o_GT] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT] = ACTIONS(1780), - [anon_sym_err_GT_GT] = ACTIONS(1782), - [anon_sym_out_GT_GT] = ACTIONS(1782), - [anon_sym_e_GT_GT] = ACTIONS(1782), - [anon_sym_o_GT_GT] = ACTIONS(1782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1782), - [aux_sym_unquoted_token1] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1776), + [anon_sym_false] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1776), + [aux_sym_cmd_identifier_token38] = ACTIONS(1776), + [aux_sym_cmd_identifier_token39] = ACTIONS(1776), + [aux_sym_cmd_identifier_token40] = ACTIONS(1776), + [sym__newline] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1776), + [aux_sym_ctrl_match_token1] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym__] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1774), + [aux_sym_expr_binary_token1] = ACTIONS(1776), + [aux_sym_expr_binary_token2] = ACTIONS(1776), + [aux_sym_expr_binary_token3] = ACTIONS(1776), + [aux_sym_expr_binary_token4] = ACTIONS(1776), + [aux_sym_expr_binary_token5] = ACTIONS(1776), + [aux_sym_expr_binary_token6] = ACTIONS(1776), + [aux_sym_expr_binary_token7] = ACTIONS(1776), + [aux_sym_expr_binary_token8] = ACTIONS(1776), + [aux_sym_expr_binary_token9] = ACTIONS(1776), + [aux_sym_expr_binary_token10] = ACTIONS(1776), + [aux_sym_expr_binary_token11] = ACTIONS(1776), + [aux_sym_expr_binary_token12] = ACTIONS(1776), + [aux_sym_expr_binary_token13] = ACTIONS(1776), + [aux_sym_expr_binary_token14] = ACTIONS(1776), + [aux_sym_expr_binary_token15] = ACTIONS(1776), + [aux_sym_expr_binary_token16] = ACTIONS(1776), + [aux_sym_expr_binary_token17] = ACTIONS(1776), + [aux_sym_expr_binary_token18] = ACTIONS(1776), + [aux_sym_expr_binary_token19] = ACTIONS(1776), + [aux_sym_expr_binary_token20] = ACTIONS(1776), + [aux_sym_expr_binary_token21] = ACTIONS(1776), + [aux_sym_expr_binary_token22] = ACTIONS(1776), + [aux_sym_expr_binary_token23] = ACTIONS(1776), + [aux_sym_expr_binary_token24] = ACTIONS(1776), + [aux_sym_expr_binary_token25] = ACTIONS(1776), + [aux_sym_expr_binary_token26] = ACTIONS(1776), + [aux_sym_expr_binary_token27] = ACTIONS(1776), + [aux_sym_expr_binary_token28] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1776), + [anon_sym_DOT_DOT_LT] = ACTIONS(1776), + [aux_sym__val_number_decimal_token1] = ACTIONS(1774), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1776), + [aux_sym__val_number_token2] = ACTIONS(1776), + [aux_sym__val_number_token3] = ACTIONS(1776), + [anon_sym_0b] = ACTIONS(1774), + [anon_sym_0o] = ACTIONS(1774), + [anon_sym_0x] = ACTIONS(1774), + [sym_val_date] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1776), + [sym__str_single_quotes] = ACTIONS(1776), + [sym__str_back_ticks] = ACTIONS(1776), + [anon_sym_err_GT] = ACTIONS(1774), + [anon_sym_out_GT] = ACTIONS(1774), + [anon_sym_e_GT] = ACTIONS(1774), + [anon_sym_o_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT] = ACTIONS(1774), + [anon_sym_err_GT_GT] = ACTIONS(1776), + [anon_sym_out_GT_GT] = ACTIONS(1776), + [anon_sym_e_GT_GT] = ACTIONS(1776), + [anon_sym_o_GT_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1776), + [aux_sym_unquoted_token1] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(247), }, [781] = { - [sym_cell_path] = STATE(1190), - [sym_path] = STATE(1020), [sym_comment] = STATE(781), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [sym__newline] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_in] = ACTIONS(1784), - [aux_sym_ctrl_match_token1] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym__] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_and] = ACTIONS(1786), - [anon_sym_xor] = ACTIONS(1786), - [anon_sym_or] = ACTIONS(1786), - [anon_sym_not_DASHin] = ACTIONS(1786), - [anon_sym_starts_DASHwith] = ACTIONS(1786), - [anon_sym_ends_DASHwith] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1786), - [anon_sym_LT2] = ACTIONS(1784), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_EQ_TILDE] = ACTIONS(1786), - [anon_sym_BANG_TILDE] = ACTIONS(1786), - [anon_sym_STAR_STAR] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_mod] = ACTIONS(1786), - [anon_sym_SLASH_SLASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_bit_DASHshl] = ACTIONS(1786), - [anon_sym_bit_DASHshr] = ACTIONS(1786), - [anon_sym_bit_DASHand] = ACTIONS(1786), - [anon_sym_bit_DASHxor] = ACTIONS(1786), - [anon_sym_bit_DASHor] = ACTIONS(1786), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1784), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [anon_sym_DOT2] = ACTIONS(1784), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_0b] = ACTIONS(1784), - [anon_sym_0o] = ACTIONS(1784), - [anon_sym_0x] = ACTIONS(1784), - [sym_val_date] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_err_GT] = ACTIONS(1784), - [anon_sym_out_GT] = ACTIONS(1784), - [anon_sym_e_GT] = ACTIONS(1784), - [anon_sym_o_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT] = ACTIONS(1784), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token1] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [sym__newline] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [aux_sym_ctrl_match_token1] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym__] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(986), + [aux_sym_expr_binary_token1] = ACTIONS(988), + [aux_sym_expr_binary_token2] = ACTIONS(988), + [aux_sym_expr_binary_token3] = ACTIONS(988), + [aux_sym_expr_binary_token4] = ACTIONS(988), + [aux_sym_expr_binary_token5] = ACTIONS(988), + [aux_sym_expr_binary_token6] = ACTIONS(988), + [aux_sym_expr_binary_token7] = ACTIONS(988), + [aux_sym_expr_binary_token8] = ACTIONS(988), + [aux_sym_expr_binary_token9] = ACTIONS(988), + [aux_sym_expr_binary_token10] = ACTIONS(988), + [aux_sym_expr_binary_token11] = ACTIONS(988), + [aux_sym_expr_binary_token12] = ACTIONS(988), + [aux_sym_expr_binary_token13] = ACTIONS(988), + [aux_sym_expr_binary_token14] = ACTIONS(988), + [aux_sym_expr_binary_token15] = ACTIONS(988), + [aux_sym_expr_binary_token16] = ACTIONS(988), + [aux_sym_expr_binary_token17] = ACTIONS(988), + [aux_sym_expr_binary_token18] = ACTIONS(988), + [aux_sym_expr_binary_token19] = ACTIONS(988), + [aux_sym_expr_binary_token20] = ACTIONS(988), + [aux_sym_expr_binary_token21] = ACTIONS(988), + [aux_sym_expr_binary_token22] = ACTIONS(988), + [aux_sym_expr_binary_token23] = ACTIONS(988), + [aux_sym_expr_binary_token24] = ACTIONS(988), + [aux_sym_expr_binary_token25] = ACTIONS(988), + [aux_sym_expr_binary_token26] = ACTIONS(988), + [aux_sym_expr_binary_token27] = ACTIONS(988), + [aux_sym_expr_binary_token28] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_DOT_DOT_LT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(986), + [anon_sym_0o] = ACTIONS(986), + [anon_sym_0x] = ACTIONS(986), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [aux_sym_unquoted_token1] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), }, [782] = { - [sym_cell_path] = STATE(1191), - [sym_path] = STATE(1020), [sym_comment] = STATE(782), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1790), - [aux_sym_cmd_identifier_token40] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [aux_sym_ctrl_match_token1] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym__] = ACTIONS(1788), - [anon_sym_DOT_DOT] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_and] = ACTIONS(1790), - [anon_sym_xor] = ACTIONS(1790), - [anon_sym_or] = ACTIONS(1790), - [anon_sym_not_DASHin] = ACTIONS(1790), - [anon_sym_starts_DASHwith] = ACTIONS(1790), - [anon_sym_ends_DASHwith] = ACTIONS(1790), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1788), - [anon_sym_LT_EQ] = ACTIONS(1790), - [anon_sym_GT_EQ] = ACTIONS(1790), - [anon_sym_EQ_TILDE] = ACTIONS(1790), - [anon_sym_BANG_TILDE] = ACTIONS(1790), - [anon_sym_STAR_STAR] = ACTIONS(1790), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1790), - [anon_sym_SLASH_SLASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_bit_DASHshl] = ACTIONS(1790), - [anon_sym_bit_DASHshr] = ACTIONS(1790), - [anon_sym_bit_DASHand] = ACTIONS(1790), - [anon_sym_bit_DASHxor] = ACTIONS(1790), - [anon_sym_bit_DASHor] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT] = ACTIONS(1790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1790), - [anon_sym_DOT2] = ACTIONS(1788), - [aux_sym__val_number_decimal_token3] = ACTIONS(1790), - [aux_sym__val_number_token1] = ACTIONS(1790), - [aux_sym__val_number_token2] = ACTIONS(1790), - [aux_sym__val_number_token3] = ACTIONS(1790), - [anon_sym_0b] = ACTIONS(1788), - [anon_sym_0o] = ACTIONS(1788), - [anon_sym_0x] = ACTIONS(1788), - [sym_val_date] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [sym__str_single_quotes] = ACTIONS(1790), - [sym__str_back_ticks] = ACTIONS(1790), - [anon_sym_err_GT] = ACTIONS(1788), - [anon_sym_out_GT] = ACTIONS(1788), - [anon_sym_e_GT] = ACTIONS(1788), - [anon_sym_o_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT] = ACTIONS(1788), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(992), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [aux_sym_ctrl_match_token1] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym__] = ACTIONS(990), + [anon_sym_DOT_DOT] = ACTIONS(990), + [aux_sym_expr_binary_token1] = ACTIONS(992), + [aux_sym_expr_binary_token2] = ACTIONS(992), + [aux_sym_expr_binary_token3] = ACTIONS(992), + [aux_sym_expr_binary_token4] = ACTIONS(992), + [aux_sym_expr_binary_token5] = ACTIONS(992), + [aux_sym_expr_binary_token6] = ACTIONS(992), + [aux_sym_expr_binary_token7] = ACTIONS(992), + [aux_sym_expr_binary_token8] = ACTIONS(992), + [aux_sym_expr_binary_token9] = ACTIONS(992), + [aux_sym_expr_binary_token10] = ACTIONS(992), + [aux_sym_expr_binary_token11] = ACTIONS(992), + [aux_sym_expr_binary_token12] = ACTIONS(992), + [aux_sym_expr_binary_token13] = ACTIONS(992), + [aux_sym_expr_binary_token14] = ACTIONS(992), + [aux_sym_expr_binary_token15] = ACTIONS(992), + [aux_sym_expr_binary_token16] = ACTIONS(992), + [aux_sym_expr_binary_token17] = ACTIONS(992), + [aux_sym_expr_binary_token18] = ACTIONS(992), + [aux_sym_expr_binary_token19] = ACTIONS(992), + [aux_sym_expr_binary_token20] = ACTIONS(992), + [aux_sym_expr_binary_token21] = ACTIONS(992), + [aux_sym_expr_binary_token22] = ACTIONS(992), + [aux_sym_expr_binary_token23] = ACTIONS(992), + [aux_sym_expr_binary_token24] = ACTIONS(992), + [aux_sym_expr_binary_token25] = ACTIONS(992), + [aux_sym_expr_binary_token26] = ACTIONS(992), + [aux_sym_expr_binary_token27] = ACTIONS(992), + [aux_sym_expr_binary_token28] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_DOT_DOT_LT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), }, [783] = { - [sym_cell_path] = STATE(1192), - [sym_path] = STATE(1020), + [sym_cell_path] = STATE(1177), + [sym_path] = STATE(1014), [sym_comment] = STATE(783), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1794), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [sym__newline] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_COMMA] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1792), - [aux_sym_ctrl_match_token1] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym__] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_and] = ACTIONS(1794), - [anon_sym_xor] = ACTIONS(1794), - [anon_sym_or] = ACTIONS(1794), - [anon_sym_not_DASHin] = ACTIONS(1794), - [anon_sym_starts_DASHwith] = ACTIONS(1794), - [anon_sym_ends_DASHwith] = ACTIONS(1794), - [anon_sym_EQ_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1794), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_EQ_TILDE] = ACTIONS(1794), - [anon_sym_BANG_TILDE] = ACTIONS(1794), - [anon_sym_STAR_STAR] = ACTIONS(1794), - [anon_sym_PLUS_PLUS] = ACTIONS(1794), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1794), - [anon_sym_SLASH_SLASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_bit_DASHshl] = ACTIONS(1794), - [anon_sym_bit_DASHshr] = ACTIONS(1794), - [anon_sym_bit_DASHand] = ACTIONS(1794), - [anon_sym_bit_DASHxor] = ACTIONS(1794), - [anon_sym_bit_DASHor] = ACTIONS(1794), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_LT] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1792), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [anon_sym_DOT2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1792), - [anon_sym_0o] = ACTIONS(1792), - [anon_sym_0x] = ACTIONS(1792), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [aux_sym_cmd_identifier_token38] = ACTIONS(1849), + [aux_sym_cmd_identifier_token39] = ACTIONS(1849), + [aux_sym_cmd_identifier_token40] = ACTIONS(1849), + [sym__newline] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1849), + [aux_sym_ctrl_match_token1] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym__] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [aux_sym_expr_binary_token1] = ACTIONS(1849), + [aux_sym_expr_binary_token2] = ACTIONS(1849), + [aux_sym_expr_binary_token3] = ACTIONS(1849), + [aux_sym_expr_binary_token4] = ACTIONS(1849), + [aux_sym_expr_binary_token5] = ACTIONS(1849), + [aux_sym_expr_binary_token6] = ACTIONS(1849), + [aux_sym_expr_binary_token7] = ACTIONS(1849), + [aux_sym_expr_binary_token8] = ACTIONS(1849), + [aux_sym_expr_binary_token9] = ACTIONS(1849), + [aux_sym_expr_binary_token10] = ACTIONS(1849), + [aux_sym_expr_binary_token11] = ACTIONS(1849), + [aux_sym_expr_binary_token12] = ACTIONS(1849), + [aux_sym_expr_binary_token13] = ACTIONS(1849), + [aux_sym_expr_binary_token14] = ACTIONS(1849), + [aux_sym_expr_binary_token15] = ACTIONS(1849), + [aux_sym_expr_binary_token16] = ACTIONS(1849), + [aux_sym_expr_binary_token17] = ACTIONS(1849), + [aux_sym_expr_binary_token18] = ACTIONS(1849), + [aux_sym_expr_binary_token19] = ACTIONS(1849), + [aux_sym_expr_binary_token20] = ACTIONS(1849), + [aux_sym_expr_binary_token21] = ACTIONS(1849), + [aux_sym_expr_binary_token22] = ACTIONS(1849), + [aux_sym_expr_binary_token23] = ACTIONS(1849), + [aux_sym_expr_binary_token24] = ACTIONS(1849), + [aux_sym_expr_binary_token25] = ACTIONS(1849), + [aux_sym_expr_binary_token26] = ACTIONS(1849), + [aux_sym_expr_binary_token27] = ACTIONS(1849), + [aux_sym_expr_binary_token28] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_LT] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1847), + [anon_sym_0x] = ACTIONS(1847), + [sym_val_date] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1849), + [anon_sym_out_GT_GT] = ACTIONS(1849), + [anon_sym_e_GT_GT] = ACTIONS(1849), + [anon_sym_o_GT_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), + [aux_sym_unquoted_token1] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(247), }, [784] = { - [sym_cell_path] = STATE(1193), - [sym_path] = STATE(1020), [sym_comment] = STATE(784), - [aux_sym_cell_path_repeat1] = STATE(830), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(996), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [aux_sym_ctrl_match_token1] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym__] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [aux_sym_expr_binary_token1] = ACTIONS(996), + [aux_sym_expr_binary_token2] = ACTIONS(996), + [aux_sym_expr_binary_token3] = ACTIONS(996), + [aux_sym_expr_binary_token4] = ACTIONS(996), + [aux_sym_expr_binary_token5] = ACTIONS(996), + [aux_sym_expr_binary_token6] = ACTIONS(996), + [aux_sym_expr_binary_token7] = ACTIONS(996), + [aux_sym_expr_binary_token8] = ACTIONS(996), + [aux_sym_expr_binary_token9] = ACTIONS(996), + [aux_sym_expr_binary_token10] = ACTIONS(996), + [aux_sym_expr_binary_token11] = ACTIONS(996), + [aux_sym_expr_binary_token12] = ACTIONS(996), + [aux_sym_expr_binary_token13] = ACTIONS(996), + [aux_sym_expr_binary_token14] = ACTIONS(996), + [aux_sym_expr_binary_token15] = ACTIONS(996), + [aux_sym_expr_binary_token16] = ACTIONS(996), + [aux_sym_expr_binary_token17] = ACTIONS(996), + [aux_sym_expr_binary_token18] = ACTIONS(996), + [aux_sym_expr_binary_token19] = ACTIONS(996), + [aux_sym_expr_binary_token20] = ACTIONS(996), + [aux_sym_expr_binary_token21] = ACTIONS(996), + [aux_sym_expr_binary_token22] = ACTIONS(996), + [aux_sym_expr_binary_token23] = ACTIONS(996), + [aux_sym_expr_binary_token24] = ACTIONS(996), + [aux_sym_expr_binary_token25] = ACTIONS(996), + [aux_sym_expr_binary_token26] = ACTIONS(996), + [aux_sym_expr_binary_token27] = ACTIONS(996), + [aux_sym_expr_binary_token28] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + }, + [785] = { + [sym_cell_path] = STATE(1146), + [sym_path] = STATE(1014), + [sym_comment] = STATE(785), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_null] = ACTIONS(3120), + [aux_sym_cmd_identifier_token38] = ACTIONS(3120), + [aux_sym_cmd_identifier_token39] = ACTIONS(3120), + [aux_sym_cmd_identifier_token40] = ACTIONS(3120), + [sym__newline] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3120), + [aux_sym_ctrl_match_token1] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym__] = ACTIONS(3123), + [anon_sym_DOT_DOT] = ACTIONS(3123), + [aux_sym_expr_binary_token1] = ACTIONS(1764), + [aux_sym_expr_binary_token2] = ACTIONS(1764), + [aux_sym_expr_binary_token3] = ACTIONS(1764), + [aux_sym_expr_binary_token4] = ACTIONS(1764), + [aux_sym_expr_binary_token5] = ACTIONS(1764), + [aux_sym_expr_binary_token6] = ACTIONS(1764), + [aux_sym_expr_binary_token7] = ACTIONS(1764), + [aux_sym_expr_binary_token8] = ACTIONS(1764), + [aux_sym_expr_binary_token9] = ACTIONS(1764), + [aux_sym_expr_binary_token10] = ACTIONS(1764), + [aux_sym_expr_binary_token11] = ACTIONS(1764), + [aux_sym_expr_binary_token12] = ACTIONS(1764), + [aux_sym_expr_binary_token13] = ACTIONS(1764), + [aux_sym_expr_binary_token14] = ACTIONS(1764), + [aux_sym_expr_binary_token15] = ACTIONS(1764), + [aux_sym_expr_binary_token16] = ACTIONS(1764), + [aux_sym_expr_binary_token17] = ACTIONS(1764), + [aux_sym_expr_binary_token18] = ACTIONS(1764), + [aux_sym_expr_binary_token19] = ACTIONS(1764), + [aux_sym_expr_binary_token20] = ACTIONS(1764), + [aux_sym_expr_binary_token21] = ACTIONS(1764), + [aux_sym_expr_binary_token22] = ACTIONS(1764), + [aux_sym_expr_binary_token23] = ACTIONS(1764), + [aux_sym_expr_binary_token24] = ACTIONS(1764), + [aux_sym_expr_binary_token25] = ACTIONS(1764), + [aux_sym_expr_binary_token26] = ACTIONS(1764), + [aux_sym_expr_binary_token27] = ACTIONS(1764), + [aux_sym_expr_binary_token28] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3120), + [anon_sym_DOT_DOT_LT] = ACTIONS(3120), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3120), + [aux_sym__val_number_decimal_token3] = ACTIONS(3120), + [aux_sym__val_number_decimal_token4] = ACTIONS(3120), + [aux_sym__val_number_token1] = ACTIONS(3120), + [aux_sym__val_number_token2] = ACTIONS(3120), + [aux_sym__val_number_token3] = ACTIONS(3120), + [anon_sym_0b] = ACTIONS(3123), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_err_GT] = ACTIONS(3123), + [anon_sym_out_GT] = ACTIONS(3123), + [anon_sym_e_GT] = ACTIONS(3123), + [anon_sym_o_GT] = ACTIONS(3123), + [anon_sym_err_PLUSout_GT] = ACTIONS(3123), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3123), + [anon_sym_o_PLUSe_GT] = ACTIONS(3123), + [anon_sym_e_PLUSo_GT] = ACTIONS(3123), + [anon_sym_err_GT_GT] = ACTIONS(3120), + [anon_sym_out_GT_GT] = ACTIONS(3120), + [anon_sym_e_GT_GT] = ACTIONS(3120), + [anon_sym_o_GT_GT] = ACTIONS(3120), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3120), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3120), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3120), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3120), + [aux_sym_unquoted_token1] = ACTIONS(3123), + [anon_sym_POUND] = ACTIONS(247), + }, + [786] = { + [sym_cell_path] = STATE(1178), + [sym_path] = STATE(1014), + [sym_comment] = STATE(786), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1873), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [sym__newline] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1873), + [aux_sym_ctrl_match_token1] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym__] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [aux_sym_expr_binary_token1] = ACTIONS(1873), + [aux_sym_expr_binary_token2] = ACTIONS(1873), + [aux_sym_expr_binary_token3] = ACTIONS(1873), + [aux_sym_expr_binary_token4] = ACTIONS(1873), + [aux_sym_expr_binary_token5] = ACTIONS(1873), + [aux_sym_expr_binary_token6] = ACTIONS(1873), + [aux_sym_expr_binary_token7] = ACTIONS(1873), + [aux_sym_expr_binary_token8] = ACTIONS(1873), + [aux_sym_expr_binary_token9] = ACTIONS(1873), + [aux_sym_expr_binary_token10] = ACTIONS(1873), + [aux_sym_expr_binary_token11] = ACTIONS(1873), + [aux_sym_expr_binary_token12] = ACTIONS(1873), + [aux_sym_expr_binary_token13] = ACTIONS(1873), + [aux_sym_expr_binary_token14] = ACTIONS(1873), + [aux_sym_expr_binary_token15] = ACTIONS(1873), + [aux_sym_expr_binary_token16] = ACTIONS(1873), + [aux_sym_expr_binary_token17] = ACTIONS(1873), + [aux_sym_expr_binary_token18] = ACTIONS(1873), + [aux_sym_expr_binary_token19] = ACTIONS(1873), + [aux_sym_expr_binary_token20] = ACTIONS(1873), + [aux_sym_expr_binary_token21] = ACTIONS(1873), + [aux_sym_expr_binary_token22] = ACTIONS(1873), + [aux_sym_expr_binary_token23] = ACTIONS(1873), + [aux_sym_expr_binary_token24] = ACTIONS(1873), + [aux_sym_expr_binary_token25] = ACTIONS(1873), + [aux_sym_expr_binary_token26] = ACTIONS(1873), + [aux_sym_expr_binary_token27] = ACTIONS(1873), + [aux_sym_expr_binary_token28] = ACTIONS(1873), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [aux_sym_unquoted_token1] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(247), + }, + [787] = { + [sym_cell_path] = STATE(1188), + [sym_path] = STATE(1014), + [sym_comment] = STATE(787), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1877), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [sym__newline] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1877), + [aux_sym_ctrl_match_token1] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [aux_sym_expr_binary_token1] = ACTIONS(1877), + [aux_sym_expr_binary_token2] = ACTIONS(1877), + [aux_sym_expr_binary_token3] = ACTIONS(1877), + [aux_sym_expr_binary_token4] = ACTIONS(1877), + [aux_sym_expr_binary_token5] = ACTIONS(1877), + [aux_sym_expr_binary_token6] = ACTIONS(1877), + [aux_sym_expr_binary_token7] = ACTIONS(1877), + [aux_sym_expr_binary_token8] = ACTIONS(1877), + [aux_sym_expr_binary_token9] = ACTIONS(1877), + [aux_sym_expr_binary_token10] = ACTIONS(1877), + [aux_sym_expr_binary_token11] = ACTIONS(1877), + [aux_sym_expr_binary_token12] = ACTIONS(1877), + [aux_sym_expr_binary_token13] = ACTIONS(1877), + [aux_sym_expr_binary_token14] = ACTIONS(1877), + [aux_sym_expr_binary_token15] = ACTIONS(1877), + [aux_sym_expr_binary_token16] = ACTIONS(1877), + [aux_sym_expr_binary_token17] = ACTIONS(1877), + [aux_sym_expr_binary_token18] = ACTIONS(1877), + [aux_sym_expr_binary_token19] = ACTIONS(1877), + [aux_sym_expr_binary_token20] = ACTIONS(1877), + [aux_sym_expr_binary_token21] = ACTIONS(1877), + [aux_sym_expr_binary_token22] = ACTIONS(1877), + [aux_sym_expr_binary_token23] = ACTIONS(1877), + [aux_sym_expr_binary_token24] = ACTIONS(1877), + [aux_sym_expr_binary_token25] = ACTIONS(1877), + [aux_sym_expr_binary_token26] = ACTIONS(1877), + [aux_sym_expr_binary_token27] = ACTIONS(1877), + [aux_sym_expr_binary_token28] = ACTIONS(1877), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_LT] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [aux_sym_unquoted_token1] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(247), + }, + [788] = { + [sym_cell_path] = STATE(1189), + [sym_path] = STATE(1014), + [sym_comment] = STATE(788), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1881), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [sym__newline] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1881), + [aux_sym_ctrl_match_token1] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym__] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [aux_sym_expr_binary_token1] = ACTIONS(1881), + [aux_sym_expr_binary_token2] = ACTIONS(1881), + [aux_sym_expr_binary_token3] = ACTIONS(1881), + [aux_sym_expr_binary_token4] = ACTIONS(1881), + [aux_sym_expr_binary_token5] = ACTIONS(1881), + [aux_sym_expr_binary_token6] = ACTIONS(1881), + [aux_sym_expr_binary_token7] = ACTIONS(1881), + [aux_sym_expr_binary_token8] = ACTIONS(1881), + [aux_sym_expr_binary_token9] = ACTIONS(1881), + [aux_sym_expr_binary_token10] = ACTIONS(1881), + [aux_sym_expr_binary_token11] = ACTIONS(1881), + [aux_sym_expr_binary_token12] = ACTIONS(1881), + [aux_sym_expr_binary_token13] = ACTIONS(1881), + [aux_sym_expr_binary_token14] = ACTIONS(1881), + [aux_sym_expr_binary_token15] = ACTIONS(1881), + [aux_sym_expr_binary_token16] = ACTIONS(1881), + [aux_sym_expr_binary_token17] = ACTIONS(1881), + [aux_sym_expr_binary_token18] = ACTIONS(1881), + [aux_sym_expr_binary_token19] = ACTIONS(1881), + [aux_sym_expr_binary_token20] = ACTIONS(1881), + [aux_sym_expr_binary_token21] = ACTIONS(1881), + [aux_sym_expr_binary_token22] = ACTIONS(1881), + [aux_sym_expr_binary_token23] = ACTIONS(1881), + [aux_sym_expr_binary_token24] = ACTIONS(1881), + [aux_sym_expr_binary_token25] = ACTIONS(1881), + [aux_sym_expr_binary_token26] = ACTIONS(1881), + [aux_sym_expr_binary_token27] = ACTIONS(1881), + [aux_sym_expr_binary_token28] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), + }, + [789] = { + [sym_cell_path] = STATE(1195), + [sym_path] = STATE(1014), + [sym_comment] = STATE(789), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [anon_sym_null] = ACTIONS(1885), + [aux_sym_cmd_identifier_token38] = ACTIONS(1885), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [sym__newline] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_COMMA] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1885), + [aux_sym_ctrl_match_token1] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym__] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [aux_sym_expr_binary_token1] = ACTIONS(1885), + [aux_sym_expr_binary_token2] = ACTIONS(1885), + [aux_sym_expr_binary_token3] = ACTIONS(1885), + [aux_sym_expr_binary_token4] = ACTIONS(1885), + [aux_sym_expr_binary_token5] = ACTIONS(1885), + [aux_sym_expr_binary_token6] = ACTIONS(1885), + [aux_sym_expr_binary_token7] = ACTIONS(1885), + [aux_sym_expr_binary_token8] = ACTIONS(1885), + [aux_sym_expr_binary_token9] = ACTIONS(1885), + [aux_sym_expr_binary_token10] = ACTIONS(1885), + [aux_sym_expr_binary_token11] = ACTIONS(1885), + [aux_sym_expr_binary_token12] = ACTIONS(1885), + [aux_sym_expr_binary_token13] = ACTIONS(1885), + [aux_sym_expr_binary_token14] = ACTIONS(1885), + [aux_sym_expr_binary_token15] = ACTIONS(1885), + [aux_sym_expr_binary_token16] = ACTIONS(1885), + [aux_sym_expr_binary_token17] = ACTIONS(1885), + [aux_sym_expr_binary_token18] = ACTIONS(1885), + [aux_sym_expr_binary_token19] = ACTIONS(1885), + [aux_sym_expr_binary_token20] = ACTIONS(1885), + [aux_sym_expr_binary_token21] = ACTIONS(1885), + [aux_sym_expr_binary_token22] = ACTIONS(1885), + [aux_sym_expr_binary_token23] = ACTIONS(1885), + [aux_sym_expr_binary_token24] = ACTIONS(1885), + [aux_sym_expr_binary_token25] = ACTIONS(1885), + [aux_sym_expr_binary_token26] = ACTIONS(1885), + [aux_sym_expr_binary_token27] = ACTIONS(1885), + [aux_sym_expr_binary_token28] = ACTIONS(1885), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), + [anon_sym_DOT_DOT_LT] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [sym_val_date] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), + [aux_sym_unquoted_token1] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(247), + }, + [790] = { + [sym_cell_path] = STATE(1196), + [sym_path] = STATE(1014), + [sym_comment] = STATE(790), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [aux_sym_cmd_identifier_token38] = ACTIONS(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1893), + [aux_sym_cmd_identifier_token40] = ACTIONS(1893), + [sym__newline] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1893), + [aux_sym_ctrl_match_token1] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [aux_sym_expr_binary_token1] = ACTIONS(1893), + [aux_sym_expr_binary_token2] = ACTIONS(1893), + [aux_sym_expr_binary_token3] = ACTIONS(1893), + [aux_sym_expr_binary_token4] = ACTIONS(1893), + [aux_sym_expr_binary_token5] = ACTIONS(1893), + [aux_sym_expr_binary_token6] = ACTIONS(1893), + [aux_sym_expr_binary_token7] = ACTIONS(1893), + [aux_sym_expr_binary_token8] = ACTIONS(1893), + [aux_sym_expr_binary_token9] = ACTIONS(1893), + [aux_sym_expr_binary_token10] = ACTIONS(1893), + [aux_sym_expr_binary_token11] = ACTIONS(1893), + [aux_sym_expr_binary_token12] = ACTIONS(1893), + [aux_sym_expr_binary_token13] = ACTIONS(1893), + [aux_sym_expr_binary_token14] = ACTIONS(1893), + [aux_sym_expr_binary_token15] = ACTIONS(1893), + [aux_sym_expr_binary_token16] = ACTIONS(1893), + [aux_sym_expr_binary_token17] = ACTIONS(1893), + [aux_sym_expr_binary_token18] = ACTIONS(1893), + [aux_sym_expr_binary_token19] = ACTIONS(1893), + [aux_sym_expr_binary_token20] = ACTIONS(1893), + [aux_sym_expr_binary_token21] = ACTIONS(1893), + [aux_sym_expr_binary_token22] = ACTIONS(1893), + [aux_sym_expr_binary_token23] = ACTIONS(1893), + [aux_sym_expr_binary_token24] = ACTIONS(1893), + [aux_sym_expr_binary_token25] = ACTIONS(1893), + [aux_sym_expr_binary_token26] = ACTIONS(1893), + [aux_sym_expr_binary_token27] = ACTIONS(1893), + [aux_sym_expr_binary_token28] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), + [anon_sym_DOT_DOT_LT] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [anon_sym_0b] = ACTIONS(1891), + [anon_sym_0o] = ACTIONS(1891), + [anon_sym_0x] = ACTIONS(1891), + [sym_val_date] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [aux_sym_unquoted_token1] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(247), + }, + [791] = { + [sym_cell_path] = STATE(1197), + [sym_path] = STATE(1014), + [sym_comment] = STATE(791), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1897), + [aux_sym_cmd_identifier_token38] = ACTIONS(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [sym__newline] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [aux_sym_ctrl_match_token1] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym__] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [aux_sym_expr_binary_token1] = ACTIONS(1897), + [aux_sym_expr_binary_token2] = ACTIONS(1897), + [aux_sym_expr_binary_token3] = ACTIONS(1897), + [aux_sym_expr_binary_token4] = ACTIONS(1897), + [aux_sym_expr_binary_token5] = ACTIONS(1897), + [aux_sym_expr_binary_token6] = ACTIONS(1897), + [aux_sym_expr_binary_token7] = ACTIONS(1897), + [aux_sym_expr_binary_token8] = ACTIONS(1897), + [aux_sym_expr_binary_token9] = ACTIONS(1897), + [aux_sym_expr_binary_token10] = ACTIONS(1897), + [aux_sym_expr_binary_token11] = ACTIONS(1897), + [aux_sym_expr_binary_token12] = ACTIONS(1897), + [aux_sym_expr_binary_token13] = ACTIONS(1897), + [aux_sym_expr_binary_token14] = ACTIONS(1897), + [aux_sym_expr_binary_token15] = ACTIONS(1897), + [aux_sym_expr_binary_token16] = ACTIONS(1897), + [aux_sym_expr_binary_token17] = ACTIONS(1897), + [aux_sym_expr_binary_token18] = ACTIONS(1897), + [aux_sym_expr_binary_token19] = ACTIONS(1897), + [aux_sym_expr_binary_token20] = ACTIONS(1897), + [aux_sym_expr_binary_token21] = ACTIONS(1897), + [aux_sym_expr_binary_token22] = ACTIONS(1897), + [aux_sym_expr_binary_token23] = ACTIONS(1897), + [aux_sym_expr_binary_token24] = ACTIONS(1897), + [aux_sym_expr_binary_token25] = ACTIONS(1897), + [aux_sym_expr_binary_token26] = ACTIONS(1897), + [aux_sym_expr_binary_token27] = ACTIONS(1897), + [aux_sym_expr_binary_token28] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), + [anon_sym_DOT_DOT_LT] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [anon_sym_0b] = ACTIONS(1895), + [anon_sym_0o] = ACTIONS(1895), + [anon_sym_0x] = ACTIONS(1895), + [sym_val_date] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(247), + }, + [792] = { + [sym_cell_path] = STATE(1125), + [sym_path] = STATE(1014), + [sym_comment] = STATE(792), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [anon_sym_null] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [sym__newline] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [aux_sym_ctrl_match_token1] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym__] = ACTIONS(1747), + [anon_sym_DOT_DOT] = ACTIONS(1747), + [aux_sym_expr_binary_token1] = ACTIONS(1749), + [aux_sym_expr_binary_token2] = ACTIONS(1749), + [aux_sym_expr_binary_token3] = ACTIONS(1749), + [aux_sym_expr_binary_token4] = ACTIONS(1749), + [aux_sym_expr_binary_token5] = ACTIONS(1749), + [aux_sym_expr_binary_token6] = ACTIONS(1749), + [aux_sym_expr_binary_token7] = ACTIONS(1749), + [aux_sym_expr_binary_token8] = ACTIONS(1749), + [aux_sym_expr_binary_token9] = ACTIONS(1749), + [aux_sym_expr_binary_token10] = ACTIONS(1749), + [aux_sym_expr_binary_token11] = ACTIONS(1749), + [aux_sym_expr_binary_token12] = ACTIONS(1749), + [aux_sym_expr_binary_token13] = ACTIONS(1749), + [aux_sym_expr_binary_token14] = ACTIONS(1749), + [aux_sym_expr_binary_token15] = ACTIONS(1749), + [aux_sym_expr_binary_token16] = ACTIONS(1749), + [aux_sym_expr_binary_token17] = ACTIONS(1749), + [aux_sym_expr_binary_token18] = ACTIONS(1749), + [aux_sym_expr_binary_token19] = ACTIONS(1749), + [aux_sym_expr_binary_token20] = ACTIONS(1749), + [aux_sym_expr_binary_token21] = ACTIONS(1749), + [aux_sym_expr_binary_token22] = ACTIONS(1749), + [aux_sym_expr_binary_token23] = ACTIONS(1749), + [aux_sym_expr_binary_token24] = ACTIONS(1749), + [aux_sym_expr_binary_token25] = ACTIONS(1749), + [aux_sym_expr_binary_token26] = ACTIONS(1749), + [aux_sym_expr_binary_token27] = ACTIONS(1749), + [aux_sym_expr_binary_token28] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [anon_sym_0b] = ACTIONS(1747), + [anon_sym_0o] = ACTIONS(1747), + [anon_sym_0x] = ACTIONS(1747), + [sym_val_date] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_err_GT] = ACTIONS(1747), + [anon_sym_out_GT] = ACTIONS(1747), + [anon_sym_e_GT] = ACTIONS(1747), + [anon_sym_o_GT] = ACTIONS(1747), + [anon_sym_err_PLUSout_GT] = ACTIONS(1747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), + [anon_sym_o_PLUSe_GT] = ACTIONS(1747), + [anon_sym_e_PLUSo_GT] = ACTIONS(1747), + [anon_sym_err_GT_GT] = ACTIONS(1749), + [anon_sym_out_GT_GT] = ACTIONS(1749), + [anon_sym_e_GT_GT] = ACTIONS(1749), + [anon_sym_o_GT_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), + [aux_sym_unquoted_token1] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(247), + }, + [793] = { + [sym_cell_path] = STATE(1198), + [sym_path] = STATE(1014), + [sym_comment] = STATE(793), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [sym__newline] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_COMMA] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [aux_sym_ctrl_match_token1] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym__] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [aux_sym_expr_binary_token1] = ACTIONS(1826), + [aux_sym_expr_binary_token2] = ACTIONS(1826), + [aux_sym_expr_binary_token3] = ACTIONS(1826), + [aux_sym_expr_binary_token4] = ACTIONS(1826), + [aux_sym_expr_binary_token5] = ACTIONS(1826), + [aux_sym_expr_binary_token6] = ACTIONS(1826), + [aux_sym_expr_binary_token7] = ACTIONS(1826), + [aux_sym_expr_binary_token8] = ACTIONS(1826), + [aux_sym_expr_binary_token9] = ACTIONS(1826), + [aux_sym_expr_binary_token10] = ACTIONS(1826), + [aux_sym_expr_binary_token11] = ACTIONS(1826), + [aux_sym_expr_binary_token12] = ACTIONS(1826), + [aux_sym_expr_binary_token13] = ACTIONS(1826), + [aux_sym_expr_binary_token14] = ACTIONS(1826), + [aux_sym_expr_binary_token15] = ACTIONS(1826), + [aux_sym_expr_binary_token16] = ACTIONS(1826), + [aux_sym_expr_binary_token17] = ACTIONS(1826), + [aux_sym_expr_binary_token18] = ACTIONS(1826), + [aux_sym_expr_binary_token19] = ACTIONS(1826), + [aux_sym_expr_binary_token20] = ACTIONS(1826), + [aux_sym_expr_binary_token21] = ACTIONS(1826), + [aux_sym_expr_binary_token22] = ACTIONS(1826), + [aux_sym_expr_binary_token23] = ACTIONS(1826), + [aux_sym_expr_binary_token24] = ACTIONS(1826), + [aux_sym_expr_binary_token25] = ACTIONS(1826), + [aux_sym_expr_binary_token26] = ACTIONS(1826), + [aux_sym_expr_binary_token27] = ACTIONS(1826), + [aux_sym_expr_binary_token28] = ACTIONS(1826), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_LT] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1824), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_0b] = ACTIONS(1824), + [anon_sym_0o] = ACTIONS(1824), + [anon_sym_0x] = ACTIONS(1824), + [sym_val_date] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_err_GT] = ACTIONS(1824), + [anon_sym_out_GT] = ACTIONS(1824), + [anon_sym_e_GT] = ACTIONS(1824), + [anon_sym_o_GT] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT] = ACTIONS(1824), + [anon_sym_err_GT_GT] = ACTIONS(1826), + [anon_sym_out_GT_GT] = ACTIONS(1826), + [anon_sym_e_GT_GT] = ACTIONS(1826), + [anon_sym_o_GT_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), + [aux_sym_unquoted_token1] = ACTIONS(1824), + [anon_sym_POUND] = ACTIONS(247), + }, + [794] = { + [sym_cell_path] = STATE(1199), + [sym_path] = STATE(1014), + [sym_comment] = STATE(794), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1857), + [aux_sym_cmd_identifier_token38] = ACTIONS(1857), + [aux_sym_cmd_identifier_token39] = ACTIONS(1857), + [aux_sym_cmd_identifier_token40] = ACTIONS(1857), + [sym__newline] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1857), + [aux_sym_ctrl_match_token1] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym__] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [aux_sym_expr_binary_token1] = ACTIONS(1857), + [aux_sym_expr_binary_token2] = ACTIONS(1857), + [aux_sym_expr_binary_token3] = ACTIONS(1857), + [aux_sym_expr_binary_token4] = ACTIONS(1857), + [aux_sym_expr_binary_token5] = ACTIONS(1857), + [aux_sym_expr_binary_token6] = ACTIONS(1857), + [aux_sym_expr_binary_token7] = ACTIONS(1857), + [aux_sym_expr_binary_token8] = ACTIONS(1857), + [aux_sym_expr_binary_token9] = ACTIONS(1857), + [aux_sym_expr_binary_token10] = ACTIONS(1857), + [aux_sym_expr_binary_token11] = ACTIONS(1857), + [aux_sym_expr_binary_token12] = ACTIONS(1857), + [aux_sym_expr_binary_token13] = ACTIONS(1857), + [aux_sym_expr_binary_token14] = ACTIONS(1857), + [aux_sym_expr_binary_token15] = ACTIONS(1857), + [aux_sym_expr_binary_token16] = ACTIONS(1857), + [aux_sym_expr_binary_token17] = ACTIONS(1857), + [aux_sym_expr_binary_token18] = ACTIONS(1857), + [aux_sym_expr_binary_token19] = ACTIONS(1857), + [aux_sym_expr_binary_token20] = ACTIONS(1857), + [aux_sym_expr_binary_token21] = ACTIONS(1857), + [aux_sym_expr_binary_token22] = ACTIONS(1857), + [aux_sym_expr_binary_token23] = ACTIONS(1857), + [aux_sym_expr_binary_token24] = ACTIONS(1857), + [aux_sym_expr_binary_token25] = ACTIONS(1857), + [aux_sym_expr_binary_token26] = ACTIONS(1857), + [aux_sym_expr_binary_token27] = ACTIONS(1857), + [aux_sym_expr_binary_token28] = ACTIONS(1857), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), + [anon_sym_DOT_DOT_LT] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [anon_sym_0b] = ACTIONS(1855), + [anon_sym_0o] = ACTIONS(1855), + [anon_sym_0x] = ACTIONS(1855), + [sym_val_date] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_err_GT] = ACTIONS(1855), + [anon_sym_out_GT] = ACTIONS(1855), + [anon_sym_e_GT] = ACTIONS(1855), + [anon_sym_o_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT] = ACTIONS(1855), + [anon_sym_err_GT_GT] = ACTIONS(1857), + [anon_sym_out_GT_GT] = ACTIONS(1857), + [anon_sym_e_GT_GT] = ACTIONS(1857), + [anon_sym_o_GT_GT] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), + [aux_sym_unquoted_token1] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(247), + }, + [795] = { + [sym_cell_path] = STATE(1200), + [sym_path] = STATE(1014), + [sym_comment] = STATE(795), + [aux_sym_cell_path_repeat1] = STATE(806), [anon_sym_true] = ACTIONS(1798), [anon_sym_false] = ACTIONS(1798), [anon_sym_null] = ACTIONS(1798), @@ -155645,45 +161934,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_COMMA] = ACTIONS(1798), [anon_sym_DOLLAR] = ACTIONS(1798), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), [aux_sym_ctrl_match_token1] = ACTIONS(1798), [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym__] = ACTIONS(1796), [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_and] = ACTIONS(1798), - [anon_sym_xor] = ACTIONS(1798), - [anon_sym_or] = ACTIONS(1798), - [anon_sym_not_DASHin] = ACTIONS(1798), - [anon_sym_starts_DASHwith] = ACTIONS(1798), - [anon_sym_ends_DASHwith] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1798), - [anon_sym_LT2] = ACTIONS(1796), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_EQ_TILDE] = ACTIONS(1798), - [anon_sym_BANG_TILDE] = ACTIONS(1798), - [anon_sym_STAR_STAR] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_mod] = ACTIONS(1798), - [anon_sym_SLASH_SLASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_bit_DASHshl] = ACTIONS(1798), - [anon_sym_bit_DASHshr] = ACTIONS(1798), - [anon_sym_bit_DASHand] = ACTIONS(1798), - [anon_sym_bit_DASHxor] = ACTIONS(1798), - [anon_sym_bit_DASHor] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(3005), + [aux_sym_expr_binary_token1] = ACTIONS(1798), + [aux_sym_expr_binary_token2] = ACTIONS(1798), + [aux_sym_expr_binary_token3] = ACTIONS(1798), + [aux_sym_expr_binary_token4] = ACTIONS(1798), + [aux_sym_expr_binary_token5] = ACTIONS(1798), + [aux_sym_expr_binary_token6] = ACTIONS(1798), + [aux_sym_expr_binary_token7] = ACTIONS(1798), + [aux_sym_expr_binary_token8] = ACTIONS(1798), + [aux_sym_expr_binary_token9] = ACTIONS(1798), + [aux_sym_expr_binary_token10] = ACTIONS(1798), + [aux_sym_expr_binary_token11] = ACTIONS(1798), + [aux_sym_expr_binary_token12] = ACTIONS(1798), + [aux_sym_expr_binary_token13] = ACTIONS(1798), + [aux_sym_expr_binary_token14] = ACTIONS(1798), + [aux_sym_expr_binary_token15] = ACTIONS(1798), + [aux_sym_expr_binary_token16] = ACTIONS(1798), + [aux_sym_expr_binary_token17] = ACTIONS(1798), + [aux_sym_expr_binary_token18] = ACTIONS(1798), + [aux_sym_expr_binary_token19] = ACTIONS(1798), + [aux_sym_expr_binary_token20] = ACTIONS(1798), + [aux_sym_expr_binary_token21] = ACTIONS(1798), + [aux_sym_expr_binary_token22] = ACTIONS(1798), + [aux_sym_expr_binary_token23] = ACTIONS(1798), + [aux_sym_expr_binary_token24] = ACTIONS(1798), + [aux_sym_expr_binary_token25] = ACTIONS(1798), + [aux_sym_expr_binary_token26] = ACTIONS(1798), + [aux_sym_expr_binary_token27] = ACTIONS(1798), + [aux_sym_expr_binary_token28] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(3037), [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), [anon_sym_DOT_DOT_LT] = ACTIONS(1798), [aux_sym__val_number_decimal_token1] = ACTIONS(1796), [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [anon_sym_DOT2] = ACTIONS(1796), [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(1798), [aux_sym__val_number_token2] = ACTIONS(1798), [aux_sym__val_number_token3] = ACTIONS(1798), @@ -155711,17842 +162000,16780 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1798), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1798), [aux_sym_unquoted_token1] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(3), - }, - [785] = { - [sym_cell_path] = STATE(1195), - [sym_path] = STATE(1020), - [sym_comment] = STATE(785), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [anon_sym_null] = ACTIONS(1806), - [aux_sym_cmd_identifier_token38] = ACTIONS(1806), - [aux_sym_cmd_identifier_token39] = ACTIONS(1806), - [aux_sym_cmd_identifier_token40] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(1806), - [anon_sym_DOLLAR] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_in] = ACTIONS(1804), - [aux_sym_ctrl_match_token1] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym__] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_and] = ACTIONS(1806), - [anon_sym_xor] = ACTIONS(1806), - [anon_sym_or] = ACTIONS(1806), - [anon_sym_not_DASHin] = ACTIONS(1806), - [anon_sym_starts_DASHwith] = ACTIONS(1806), - [anon_sym_ends_DASHwith] = ACTIONS(1806), - [anon_sym_EQ_EQ] = ACTIONS(1806), - [anon_sym_BANG_EQ] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ] = ACTIONS(1806), - [anon_sym_GT_EQ] = ACTIONS(1806), - [anon_sym_EQ_TILDE] = ACTIONS(1806), - [anon_sym_BANG_TILDE] = ACTIONS(1806), - [anon_sym_STAR_STAR] = ACTIONS(1806), - [anon_sym_PLUS_PLUS] = ACTIONS(1806), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1806), - [anon_sym_SLASH_SLASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_bit_DASHshl] = ACTIONS(1806), - [anon_sym_bit_DASHshr] = ACTIONS(1806), - [anon_sym_bit_DASHand] = ACTIONS(1806), - [anon_sym_bit_DASHxor] = ACTIONS(1806), - [anon_sym_bit_DASHor] = ACTIONS(1806), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1806), - [anon_sym_DOT_DOT_LT] = ACTIONS(1806), - [aux_sym__val_number_decimal_token1] = ACTIONS(1804), - [aux_sym__val_number_decimal_token2] = ACTIONS(1806), - [anon_sym_DOT2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1806), - [aux_sym__val_number_token1] = ACTIONS(1806), - [aux_sym__val_number_token2] = ACTIONS(1806), - [aux_sym__val_number_token3] = ACTIONS(1806), - [anon_sym_0b] = ACTIONS(1804), - [anon_sym_0o] = ACTIONS(1804), - [anon_sym_0x] = ACTIONS(1804), - [sym_val_date] = ACTIONS(1806), - [anon_sym_DQUOTE] = ACTIONS(1806), - [sym__str_single_quotes] = ACTIONS(1806), - [sym__str_back_ticks] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [aux_sym_unquoted_token1] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [786] = { - [sym_cell_path] = STATE(1188), - [sym_path] = STATE(1020), - [sym_comment] = STATE(786), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_null] = ACTIONS(1549), - [aux_sym_cmd_identifier_token38] = ACTIONS(1549), - [aux_sym_cmd_identifier_token39] = ACTIONS(1549), - [aux_sym_cmd_identifier_token40] = ACTIONS(1549), - [sym__newline] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_DOLLAR] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [aux_sym_ctrl_match_token1] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym__] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_and] = ACTIONS(1549), - [anon_sym_xor] = ACTIONS(1549), - [anon_sym_or] = ACTIONS(1549), - [anon_sym_not_DASHin] = ACTIONS(1549), - [anon_sym_starts_DASHwith] = ACTIONS(1549), - [anon_sym_ends_DASHwith] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1549), - [anon_sym_LT2] = ACTIONS(1545), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_EQ_TILDE] = ACTIONS(1549), - [anon_sym_BANG_TILDE] = ACTIONS(1549), - [anon_sym_STAR_STAR] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_mod] = ACTIONS(1549), - [anon_sym_SLASH_SLASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_bit_DASHshl] = ACTIONS(1549), - [anon_sym_bit_DASHshr] = ACTIONS(1549), - [anon_sym_bit_DASHand] = ACTIONS(1549), - [anon_sym_bit_DASHxor] = ACTIONS(1549), - [anon_sym_bit_DASHor] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT] = ACTIONS(1549), - [aux_sym__val_number_decimal_token1] = ACTIONS(1545), - [aux_sym__val_number_decimal_token2] = ACTIONS(1549), - [anon_sym_DOT2] = ACTIONS(1545), - [aux_sym__val_number_decimal_token3] = ACTIONS(1549), - [aux_sym__val_number_token1] = ACTIONS(1549), - [aux_sym__val_number_token2] = ACTIONS(1549), - [aux_sym__val_number_token3] = ACTIONS(1549), - [anon_sym_0b] = ACTIONS(1545), - [anon_sym_0o] = ACTIONS(1545), - [anon_sym_0x] = ACTIONS(1545), - [sym_val_date] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [sym__str_single_quotes] = ACTIONS(1549), - [sym__str_back_ticks] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1545), - [anon_sym_out_GT] = ACTIONS(1545), - [anon_sym_e_GT] = ACTIONS(1545), - [anon_sym_o_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT] = ACTIONS(1545), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [aux_sym_unquoted_token1] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), - }, - [787] = { - [sym_cell_path] = STATE(1148), - [sym_path] = STATE(1020), - [sym_comment] = STATE(787), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [anon_sym_null] = ACTIONS(1735), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1735), - [aux_sym_cmd_identifier_token40] = ACTIONS(1735), - [sym__newline] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1733), - [aux_sym_ctrl_match_token1] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym__] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [anon_sym_DOT2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [anon_sym_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(3), - }, - [788] = { - [sym_cell_path] = STATE(1143), - [sym_path] = STATE(1020), - [sym_comment] = STATE(788), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_null] = ACTIONS(3088), - [aux_sym_cmd_identifier_token38] = ACTIONS(3088), - [aux_sym_cmd_identifier_token39] = ACTIONS(3088), - [aux_sym_cmd_identifier_token40] = ACTIONS(3088), - [sym__newline] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3088), - [anon_sym_DOLLAR] = ACTIONS(3088), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_in] = ACTIONS(1723), - [aux_sym_ctrl_match_token1] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(3088), - [anon_sym__] = ACTIONS(3091), - [anon_sym_DOT_DOT] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_and] = ACTIONS(1725), - [anon_sym_xor] = ACTIONS(1725), - [anon_sym_or] = ACTIONS(1725), - [anon_sym_not_DASHin] = ACTIONS(1725), - [anon_sym_starts_DASHwith] = ACTIONS(1725), - [anon_sym_ends_DASHwith] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT2] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_EQ_TILDE] = ACTIONS(1725), - [anon_sym_BANG_TILDE] = ACTIONS(1725), - [anon_sym_STAR_STAR] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_mod] = ACTIONS(1725), - [anon_sym_SLASH_SLASH] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_bit_DASHand] = ACTIONS(1725), - [anon_sym_bit_DASHxor] = ACTIONS(1725), - [anon_sym_bit_DASHor] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), - [anon_sym_DOT_DOT_LT] = ACTIONS(3088), - [aux_sym__val_number_decimal_token1] = ACTIONS(3091), - [aux_sym__val_number_decimal_token2] = ACTIONS(3088), - [anon_sym_DOT2] = ACTIONS(3091), - [aux_sym__val_number_decimal_token3] = ACTIONS(3088), - [aux_sym__val_number_token1] = ACTIONS(3088), - [aux_sym__val_number_token2] = ACTIONS(3088), - [aux_sym__val_number_token3] = ACTIONS(3088), - [anon_sym_0b] = ACTIONS(3091), - [anon_sym_0o] = ACTIONS(3091), - [anon_sym_0x] = ACTIONS(3091), - [sym_val_date] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [sym__str_single_quotes] = ACTIONS(3088), - [sym__str_back_ticks] = ACTIONS(3088), - [anon_sym_err_GT] = ACTIONS(3091), - [anon_sym_out_GT] = ACTIONS(3091), - [anon_sym_e_GT] = ACTIONS(3091), - [anon_sym_o_GT] = ACTIONS(3091), - [anon_sym_err_PLUSout_GT] = ACTIONS(3091), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3091), - [anon_sym_o_PLUSe_GT] = ACTIONS(3091), - [anon_sym_e_PLUSo_GT] = ACTIONS(3091), - [anon_sym_err_GT_GT] = ACTIONS(3088), - [anon_sym_out_GT_GT] = ACTIONS(3088), - [anon_sym_e_GT_GT] = ACTIONS(3088), - [anon_sym_o_GT_GT] = ACTIONS(3088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3088), - [aux_sym_unquoted_token1] = ACTIONS(3091), - [anon_sym_POUND] = ACTIONS(3), - }, - [789] = { - [sym_comment] = STATE(789), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [anon_sym_null] = ACTIONS(930), - [aux_sym_cmd_identifier_token38] = ACTIONS(930), - [aux_sym_cmd_identifier_token39] = ACTIONS(930), - [aux_sym_cmd_identifier_token40] = ACTIONS(930), - [sym__newline] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [aux_sym_ctrl_match_token1] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym__] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_and] = ACTIONS(930), - [anon_sym_xor] = ACTIONS(930), - [anon_sym_or] = ACTIONS(930), - [anon_sym_not_DASHin] = ACTIONS(930), - [anon_sym_starts_DASHwith] = ACTIONS(930), - [anon_sym_ends_DASHwith] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(930), - [anon_sym_BANG_EQ] = ACTIONS(930), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(930), - [anon_sym_GT_EQ] = ACTIONS(930), - [anon_sym_EQ_TILDE] = ACTIONS(930), - [anon_sym_BANG_TILDE] = ACTIONS(930), - [anon_sym_STAR_STAR] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(930), - [anon_sym_SLASH_SLASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(930), - [anon_sym_bit_DASHshr] = ACTIONS(930), - [anon_sym_bit_DASHand] = ACTIONS(930), - [anon_sym_bit_DASHxor] = ACTIONS(930), - [anon_sym_bit_DASHor] = ACTIONS(930), - [anon_sym_DOT_DOT2] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(930), - [aux_sym__val_number_decimal_token1] = ACTIONS(928), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [anon_sym_DOT2] = ACTIONS(928), - [aux_sym__val_number_decimal_token3] = ACTIONS(930), - [aux_sym__val_number_token1] = ACTIONS(930), - [aux_sym__val_number_token2] = ACTIONS(930), - [aux_sym__val_number_token3] = ACTIONS(930), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym__str_single_quotes] = ACTIONS(930), - [sym__str_back_ticks] = ACTIONS(930), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [anon_sym_err_GT_GT] = ACTIONS(930), - [anon_sym_out_GT_GT] = ACTIONS(930), - [anon_sym_e_GT_GT] = ACTIONS(930), - [anon_sym_o_GT_GT] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(930), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [790] = { - [sym_expr_parenthesized] = STATE(6358), - [sym__spread_parenthesized] = STATE(7652), - [sym_val_range] = STATE(7664), - [sym__val_range] = STATE(7678), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7664), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6424), - [sym__spread_variable] = STATE(7533), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym__spread_list] = STATE(7652), - [sym_val_entry] = STATE(7008), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_list] = STATE(6555), - [sym__unquoted_in_list_with_expr] = STATE(7664), - [sym__unquoted_anonymous_prefix] = STATE(6977), - [sym_comment] = STATE(790), - [aux_sym_list_body_repeat1] = STATE(778), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2877), - [aux_sym_cmd_identifier_token39] = ACTIONS(2877), - [aux_sym_cmd_identifier_token40] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_LT] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [anon_sym_DOT2] = ACTIONS(2897), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2799), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(3), - }, - [791] = { - [sym_comment] = STATE(791), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [anon_sym_null] = ACTIONS(926), - [aux_sym_cmd_identifier_token38] = ACTIONS(926), - [aux_sym_cmd_identifier_token39] = ACTIONS(926), - [aux_sym_cmd_identifier_token40] = ACTIONS(926), - [sym__newline] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [aux_sym_ctrl_match_token1] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym__] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_and] = ACTIONS(926), - [anon_sym_xor] = ACTIONS(926), - [anon_sym_or] = ACTIONS(926), - [anon_sym_not_DASHin] = ACTIONS(926), - [anon_sym_starts_DASHwith] = ACTIONS(926), - [anon_sym_ends_DASHwith] = ACTIONS(926), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_EQ_TILDE] = ACTIONS(926), - [anon_sym_BANG_TILDE] = ACTIONS(926), - [anon_sym_STAR_STAR] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(926), - [anon_sym_SLASH_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(926), - [anon_sym_bit_DASHshr] = ACTIONS(926), - [anon_sym_bit_DASHand] = ACTIONS(926), - [anon_sym_bit_DASHxor] = ACTIONS(926), - [anon_sym_bit_DASHor] = ACTIONS(926), - [anon_sym_DOT_DOT2] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(924), - [anon_sym_DOT_DOT_LT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(926), - [anon_sym_DOT_DOT_LT2] = ACTIONS(926), - [aux_sym__val_number_decimal_token1] = ACTIONS(924), - [aux_sym__val_number_decimal_token2] = ACTIONS(926), - [anon_sym_DOT2] = ACTIONS(924), - [aux_sym__val_number_decimal_token3] = ACTIONS(926), - [aux_sym__val_number_token1] = ACTIONS(926), - [aux_sym__val_number_token2] = ACTIONS(926), - [aux_sym__val_number_token3] = ACTIONS(926), - [anon_sym_0b] = ACTIONS(924), - [anon_sym_0o] = ACTIONS(924), - [anon_sym_0x] = ACTIONS(924), - [sym_val_date] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym__str_single_quotes] = ACTIONS(926), - [sym__str_back_ticks] = ACTIONS(926), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [anon_sym_err_GT_GT] = ACTIONS(926), - [anon_sym_out_GT_GT] = ACTIONS(926), - [anon_sym_e_GT_GT] = ACTIONS(926), - [anon_sym_o_GT_GT] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(926), - [aux_sym_unquoted_token1] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(3), - }, - [792] = { - [sym_comment] = STATE(792), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_null] = ACTIONS(934), - [aux_sym_cmd_identifier_token38] = ACTIONS(934), - [aux_sym_cmd_identifier_token39] = ACTIONS(934), - [aux_sym_cmd_identifier_token40] = ACTIONS(934), - [sym__newline] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [aux_sym_ctrl_match_token1] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym__] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_and] = ACTIONS(934), - [anon_sym_xor] = ACTIONS(934), - [anon_sym_or] = ACTIONS(934), - [anon_sym_not_DASHin] = ACTIONS(934), - [anon_sym_starts_DASHwith] = ACTIONS(934), - [anon_sym_ends_DASHwith] = ACTIONS(934), - [anon_sym_EQ_EQ] = ACTIONS(934), - [anon_sym_BANG_EQ] = ACTIONS(934), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(934), - [anon_sym_EQ_TILDE] = ACTIONS(934), - [anon_sym_BANG_TILDE] = ACTIONS(934), - [anon_sym_STAR_STAR] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(934), - [anon_sym_SLASH_SLASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(934), - [anon_sym_bit_DASHshr] = ACTIONS(934), - [anon_sym_bit_DASHand] = ACTIONS(934), - [anon_sym_bit_DASHxor] = ACTIONS(934), - [anon_sym_bit_DASHor] = ACTIONS(934), - [anon_sym_DOT_DOT2] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [anon_sym_DOT_DOT_LT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(934), - [aux_sym__val_number_decimal_token1] = ACTIONS(932), - [aux_sym__val_number_decimal_token2] = ACTIONS(934), - [anon_sym_DOT2] = ACTIONS(932), - [aux_sym__val_number_decimal_token3] = ACTIONS(934), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_0b] = ACTIONS(932), - [anon_sym_0o] = ACTIONS(932), - [anon_sym_0x] = ACTIONS(932), - [sym_val_date] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym__str_single_quotes] = ACTIONS(934), - [sym__str_back_ticks] = ACTIONS(934), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [anon_sym_err_GT_GT] = ACTIONS(934), - [anon_sym_out_GT_GT] = ACTIONS(934), - [anon_sym_e_GT_GT] = ACTIONS(934), - [anon_sym_o_GT_GT] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(934), - [aux_sym_unquoted_token1] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(3), - }, - [793] = { - [sym_cell_path] = STATE(1151), - [sym_path] = STATE(1020), - [sym_comment] = STATE(793), - [aux_sym_cell_path_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_null] = ACTIONS(885), - [aux_sym_cmd_identifier_token38] = ACTIONS(885), - [aux_sym_cmd_identifier_token39] = ACTIONS(885), - [aux_sym_cmd_identifier_token40] = ACTIONS(885), - [sym__newline] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [aux_sym_ctrl_match_token1] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym__] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_and] = ACTIONS(885), - [anon_sym_xor] = ACTIONS(885), - [anon_sym_or] = ACTIONS(885), - [anon_sym_not_DASHin] = ACTIONS(885), - [anon_sym_starts_DASHwith] = ACTIONS(885), - [anon_sym_ends_DASHwith] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_EQ_TILDE] = ACTIONS(885), - [anon_sym_BANG_TILDE] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(885), - [anon_sym_SLASH_SLASH] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(885), - [anon_sym_bit_DASHshr] = ACTIONS(885), - [anon_sym_bit_DASHand] = ACTIONS(885), - [anon_sym_bit_DASHxor] = ACTIONS(885), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(885), - [anon_sym_DOT_DOT_LT] = ACTIONS(885), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(885), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(885), - [aux_sym__val_number_token1] = ACTIONS(885), - [aux_sym__val_number_token2] = ACTIONS(885), - [aux_sym__val_number_token3] = ACTIONS(885), - [anon_sym_0b] = ACTIONS(883), - [anon_sym_0o] = ACTIONS(883), - [anon_sym_0x] = ACTIONS(883), - [sym_val_date] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(885), - [sym__str_single_quotes] = ACTIONS(885), - [sym__str_back_ticks] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [aux_sym_unquoted_token1] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(3), - }, - [794] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2247), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(794), - [aux_sym_shebang_repeat1] = STATE(804), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [795] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2401), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2105), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(795), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [796] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3938), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2240), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_cell_path] = STATE(1201), + [sym_path] = STATE(1014), [sym_comment] = STATE(796), - [aux_sym_shebang_repeat1] = STATE(801), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1810), + [aux_sym_cmd_identifier_token38] = ACTIONS(1810), + [aux_sym_cmd_identifier_token39] = ACTIONS(1810), + [aux_sym_cmd_identifier_token40] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_DOLLAR] = ACTIONS(1810), + [aux_sym_ctrl_match_token1] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym__] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [aux_sym_expr_binary_token1] = ACTIONS(1810), + [aux_sym_expr_binary_token2] = ACTIONS(1810), + [aux_sym_expr_binary_token3] = ACTIONS(1810), + [aux_sym_expr_binary_token4] = ACTIONS(1810), + [aux_sym_expr_binary_token5] = ACTIONS(1810), + [aux_sym_expr_binary_token6] = ACTIONS(1810), + [aux_sym_expr_binary_token7] = ACTIONS(1810), + [aux_sym_expr_binary_token8] = ACTIONS(1810), + [aux_sym_expr_binary_token9] = ACTIONS(1810), + [aux_sym_expr_binary_token10] = ACTIONS(1810), + [aux_sym_expr_binary_token11] = ACTIONS(1810), + [aux_sym_expr_binary_token12] = ACTIONS(1810), + [aux_sym_expr_binary_token13] = ACTIONS(1810), + [aux_sym_expr_binary_token14] = ACTIONS(1810), + [aux_sym_expr_binary_token15] = ACTIONS(1810), + [aux_sym_expr_binary_token16] = ACTIONS(1810), + [aux_sym_expr_binary_token17] = ACTIONS(1810), + [aux_sym_expr_binary_token18] = ACTIONS(1810), + [aux_sym_expr_binary_token19] = ACTIONS(1810), + [aux_sym_expr_binary_token20] = ACTIONS(1810), + [aux_sym_expr_binary_token21] = ACTIONS(1810), + [aux_sym_expr_binary_token22] = ACTIONS(1810), + [aux_sym_expr_binary_token23] = ACTIONS(1810), + [aux_sym_expr_binary_token24] = ACTIONS(1810), + [aux_sym_expr_binary_token25] = ACTIONS(1810), + [aux_sym_expr_binary_token26] = ACTIONS(1810), + [aux_sym_expr_binary_token27] = ACTIONS(1810), + [aux_sym_expr_binary_token28] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT] = ACTIONS(1810), + [aux_sym__val_number_decimal_token1] = ACTIONS(1808), + [aux_sym__val_number_decimal_token2] = ACTIONS(1810), + [aux_sym__val_number_decimal_token3] = ACTIONS(1810), + [aux_sym__val_number_decimal_token4] = ACTIONS(1810), + [aux_sym__val_number_token1] = ACTIONS(1810), + [aux_sym__val_number_token2] = ACTIONS(1810), + [aux_sym__val_number_token3] = ACTIONS(1810), + [anon_sym_0b] = ACTIONS(1808), + [anon_sym_0o] = ACTIONS(1808), + [anon_sym_0x] = ACTIONS(1808), + [sym_val_date] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym__str_single_quotes] = ACTIONS(1810), + [sym__str_back_ticks] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1808), + [anon_sym_out_GT] = ACTIONS(1808), + [anon_sym_e_GT] = ACTIONS(1808), + [anon_sym_o_GT] = ACTIONS(1808), + [anon_sym_err_PLUSout_GT] = ACTIONS(1808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), + [anon_sym_o_PLUSe_GT] = ACTIONS(1808), + [anon_sym_e_PLUSo_GT] = ACTIONS(1808), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [aux_sym_unquoted_token1] = ACTIONS(1808), + [anon_sym_POUND] = ACTIONS(247), }, [797] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2355), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_parenthesized] = STATE(6317), + [sym__spread_parenthesized] = STATE(7624), + [sym_val_range] = STATE(7629), + [sym__val_range] = STATE(7770), + [sym__val_range_with_end] = STATE(7652), + [sym__value] = STATE(7629), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6390), + [sym__spread_variable] = STATE(7673), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5489), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym__spread_list] = STATE(7624), + [sym_val_entry] = STATE(7303), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_list] = STATE(6388), + [sym__unquoted_in_list_with_expr] = STATE(7629), + [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(797), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_list_body_repeat1] = STATE(773), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [anon_sym_null] = ACTIONS(2911), + [aux_sym_cmd_identifier_token38] = ACTIONS(2913), + [aux_sym_cmd_identifier_token39] = ACTIONS(2913), + [aux_sym_cmd_identifier_token40] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2929), + [aux_sym__val_number_decimal_token2] = ACTIONS(2931), + [aux_sym__val_number_decimal_token3] = ACTIONS(2933), + [aux_sym__val_number_decimal_token4] = ACTIONS(2935), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(247), }, [798] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2408), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_cell_path] = STATE(1203), + [sym_path] = STATE(1014), [sym_comment] = STATE(798), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1745), + [anon_sym_false] = ACTIONS(1745), + [anon_sym_null] = ACTIONS(1745), + [aux_sym_cmd_identifier_token38] = ACTIONS(1745), + [aux_sym_cmd_identifier_token39] = ACTIONS(1745), + [aux_sym_cmd_identifier_token40] = ACTIONS(1745), + [sym__newline] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_COMMA] = ACTIONS(1745), + [anon_sym_DOLLAR] = ACTIONS(1745), + [aux_sym_ctrl_match_token1] = ACTIONS(1745), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym__] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1741), + [aux_sym_expr_binary_token1] = ACTIONS(1745), + [aux_sym_expr_binary_token2] = ACTIONS(1745), + [aux_sym_expr_binary_token3] = ACTIONS(1745), + [aux_sym_expr_binary_token4] = ACTIONS(1745), + [aux_sym_expr_binary_token5] = ACTIONS(1745), + [aux_sym_expr_binary_token6] = ACTIONS(1745), + [aux_sym_expr_binary_token7] = ACTIONS(1745), + [aux_sym_expr_binary_token8] = ACTIONS(1745), + [aux_sym_expr_binary_token9] = ACTIONS(1745), + [aux_sym_expr_binary_token10] = ACTIONS(1745), + [aux_sym_expr_binary_token11] = ACTIONS(1745), + [aux_sym_expr_binary_token12] = ACTIONS(1745), + [aux_sym_expr_binary_token13] = ACTIONS(1745), + [aux_sym_expr_binary_token14] = ACTIONS(1745), + [aux_sym_expr_binary_token15] = ACTIONS(1745), + [aux_sym_expr_binary_token16] = ACTIONS(1745), + [aux_sym_expr_binary_token17] = ACTIONS(1745), + [aux_sym_expr_binary_token18] = ACTIONS(1745), + [aux_sym_expr_binary_token19] = ACTIONS(1745), + [aux_sym_expr_binary_token20] = ACTIONS(1745), + [aux_sym_expr_binary_token21] = ACTIONS(1745), + [aux_sym_expr_binary_token22] = ACTIONS(1745), + [aux_sym_expr_binary_token23] = ACTIONS(1745), + [aux_sym_expr_binary_token24] = ACTIONS(1745), + [aux_sym_expr_binary_token25] = ACTIONS(1745), + [aux_sym_expr_binary_token26] = ACTIONS(1745), + [aux_sym_expr_binary_token27] = ACTIONS(1745), + [aux_sym_expr_binary_token28] = ACTIONS(1745), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), + [anon_sym_DOT_DOT_LT] = ACTIONS(1745), + [aux_sym__val_number_decimal_token1] = ACTIONS(1741), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1745), + [aux_sym__val_number_decimal_token4] = ACTIONS(1745), + [aux_sym__val_number_token1] = ACTIONS(1745), + [aux_sym__val_number_token2] = ACTIONS(1745), + [aux_sym__val_number_token3] = ACTIONS(1745), + [anon_sym_0b] = ACTIONS(1741), + [anon_sym_0o] = ACTIONS(1741), + [anon_sym_0x] = ACTIONS(1741), + [sym_val_date] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym__str_single_quotes] = ACTIONS(1745), + [sym__str_back_ticks] = ACTIONS(1745), + [anon_sym_err_GT] = ACTIONS(1741), + [anon_sym_out_GT] = ACTIONS(1741), + [anon_sym_e_GT] = ACTIONS(1741), + [anon_sym_o_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT] = ACTIONS(1741), + [anon_sym_err_GT_GT] = ACTIONS(1745), + [anon_sym_out_GT_GT] = ACTIONS(1745), + [anon_sym_e_GT_GT] = ACTIONS(1745), + [anon_sym_o_GT_GT] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [aux_sym_unquoted_token1] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), }, [799] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2412), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2016), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_cell_path] = STATE(1204), + [sym_path] = STATE(1014), [sym_comment] = STATE(799), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [sym__newline] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [aux_sym_ctrl_match_token1] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym__] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [aux_sym_expr_binary_token1] = ACTIONS(1901), + [aux_sym_expr_binary_token2] = ACTIONS(1901), + [aux_sym_expr_binary_token3] = ACTIONS(1901), + [aux_sym_expr_binary_token4] = ACTIONS(1901), + [aux_sym_expr_binary_token5] = ACTIONS(1901), + [aux_sym_expr_binary_token6] = ACTIONS(1901), + [aux_sym_expr_binary_token7] = ACTIONS(1901), + [aux_sym_expr_binary_token8] = ACTIONS(1901), + [aux_sym_expr_binary_token9] = ACTIONS(1901), + [aux_sym_expr_binary_token10] = ACTIONS(1901), + [aux_sym_expr_binary_token11] = ACTIONS(1901), + [aux_sym_expr_binary_token12] = ACTIONS(1901), + [aux_sym_expr_binary_token13] = ACTIONS(1901), + [aux_sym_expr_binary_token14] = ACTIONS(1901), + [aux_sym_expr_binary_token15] = ACTIONS(1901), + [aux_sym_expr_binary_token16] = ACTIONS(1901), + [aux_sym_expr_binary_token17] = ACTIONS(1901), + [aux_sym_expr_binary_token18] = ACTIONS(1901), + [aux_sym_expr_binary_token19] = ACTIONS(1901), + [aux_sym_expr_binary_token20] = ACTIONS(1901), + [aux_sym_expr_binary_token21] = ACTIONS(1901), + [aux_sym_expr_binary_token22] = ACTIONS(1901), + [aux_sym_expr_binary_token23] = ACTIONS(1901), + [aux_sym_expr_binary_token24] = ACTIONS(1901), + [aux_sym_expr_binary_token25] = ACTIONS(1901), + [aux_sym_expr_binary_token26] = ACTIONS(1901), + [aux_sym_expr_binary_token27] = ACTIONS(1901), + [aux_sym_expr_binary_token28] = ACTIONS(1901), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), + [anon_sym_DOT_DOT_LT] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [anon_sym_0b] = ACTIONS(1899), + [anon_sym_0o] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1899), + [sym_val_date] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_err_GT] = ACTIONS(1899), + [anon_sym_out_GT] = ACTIONS(1899), + [anon_sym_e_GT] = ACTIONS(1899), + [anon_sym_o_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT] = ACTIONS(1899), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), + [aux_sym_unquoted_token1] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(247), }, [800] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3840), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_cell_path] = STATE(1205), + [sym_path] = STATE(1014), [sym_comment] = STATE(800), - [aux_sym_shebang_repeat1] = STATE(802), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [sym__newline] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1833), + [aux_sym_ctrl_match_token1] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym__] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [aux_sym_expr_binary_token1] = ACTIONS(1833), + [aux_sym_expr_binary_token2] = ACTIONS(1833), + [aux_sym_expr_binary_token3] = ACTIONS(1833), + [aux_sym_expr_binary_token4] = ACTIONS(1833), + [aux_sym_expr_binary_token5] = ACTIONS(1833), + [aux_sym_expr_binary_token6] = ACTIONS(1833), + [aux_sym_expr_binary_token7] = ACTIONS(1833), + [aux_sym_expr_binary_token8] = ACTIONS(1833), + [aux_sym_expr_binary_token9] = ACTIONS(1833), + [aux_sym_expr_binary_token10] = ACTIONS(1833), + [aux_sym_expr_binary_token11] = ACTIONS(1833), + [aux_sym_expr_binary_token12] = ACTIONS(1833), + [aux_sym_expr_binary_token13] = ACTIONS(1833), + [aux_sym_expr_binary_token14] = ACTIONS(1833), + [aux_sym_expr_binary_token15] = ACTIONS(1833), + [aux_sym_expr_binary_token16] = ACTIONS(1833), + [aux_sym_expr_binary_token17] = ACTIONS(1833), + [aux_sym_expr_binary_token18] = ACTIONS(1833), + [aux_sym_expr_binary_token19] = ACTIONS(1833), + [aux_sym_expr_binary_token20] = ACTIONS(1833), + [aux_sym_expr_binary_token21] = ACTIONS(1833), + [aux_sym_expr_binary_token22] = ACTIONS(1833), + [aux_sym_expr_binary_token23] = ACTIONS(1833), + [aux_sym_expr_binary_token24] = ACTIONS(1833), + [aux_sym_expr_binary_token25] = ACTIONS(1833), + [aux_sym_expr_binary_token26] = ACTIONS(1833), + [aux_sym_expr_binary_token27] = ACTIONS(1833), + [aux_sym_expr_binary_token28] = ACTIONS(1833), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), + [anon_sym_DOT_DOT_LT] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1831), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [anon_sym_0b] = ACTIONS(1831), + [anon_sym_0o] = ACTIONS(1831), + [anon_sym_0x] = ACTIONS(1831), + [sym_val_date] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1833), + [sym__str_single_quotes] = ACTIONS(1833), + [sym__str_back_ticks] = ACTIONS(1833), + [anon_sym_err_GT] = ACTIONS(1831), + [anon_sym_out_GT] = ACTIONS(1831), + [anon_sym_e_GT] = ACTIONS(1831), + [anon_sym_o_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT] = ACTIONS(1831), + [anon_sym_err_GT_GT] = ACTIONS(1833), + [anon_sym_out_GT_GT] = ACTIONS(1833), + [anon_sym_e_GT_GT] = ACTIONS(1833), + [anon_sym_o_GT_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), + [aux_sym_unquoted_token1] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(247), }, [801] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3922), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2208), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_cell_path] = STATE(1206), + [sym_path] = STATE(1014), [sym_comment] = STATE(801), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_null] = ACTIONS(1837), + [aux_sym_cmd_identifier_token38] = ACTIONS(1837), + [aux_sym_cmd_identifier_token39] = ACTIONS(1837), + [aux_sym_cmd_identifier_token40] = ACTIONS(1837), + [sym__newline] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1837), + [aux_sym_ctrl_match_token1] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym__] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [aux_sym_expr_binary_token1] = ACTIONS(1837), + [aux_sym_expr_binary_token2] = ACTIONS(1837), + [aux_sym_expr_binary_token3] = ACTIONS(1837), + [aux_sym_expr_binary_token4] = ACTIONS(1837), + [aux_sym_expr_binary_token5] = ACTIONS(1837), + [aux_sym_expr_binary_token6] = ACTIONS(1837), + [aux_sym_expr_binary_token7] = ACTIONS(1837), + [aux_sym_expr_binary_token8] = ACTIONS(1837), + [aux_sym_expr_binary_token9] = ACTIONS(1837), + [aux_sym_expr_binary_token10] = ACTIONS(1837), + [aux_sym_expr_binary_token11] = ACTIONS(1837), + [aux_sym_expr_binary_token12] = ACTIONS(1837), + [aux_sym_expr_binary_token13] = ACTIONS(1837), + [aux_sym_expr_binary_token14] = ACTIONS(1837), + [aux_sym_expr_binary_token15] = ACTIONS(1837), + [aux_sym_expr_binary_token16] = ACTIONS(1837), + [aux_sym_expr_binary_token17] = ACTIONS(1837), + [aux_sym_expr_binary_token18] = ACTIONS(1837), + [aux_sym_expr_binary_token19] = ACTIONS(1837), + [aux_sym_expr_binary_token20] = ACTIONS(1837), + [aux_sym_expr_binary_token21] = ACTIONS(1837), + [aux_sym_expr_binary_token22] = ACTIONS(1837), + [aux_sym_expr_binary_token23] = ACTIONS(1837), + [aux_sym_expr_binary_token24] = ACTIONS(1837), + [aux_sym_expr_binary_token25] = ACTIONS(1837), + [aux_sym_expr_binary_token26] = ACTIONS(1837), + [aux_sym_expr_binary_token27] = ACTIONS(1837), + [aux_sym_expr_binary_token28] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_LT] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [anon_sym_0b] = ACTIONS(1835), + [anon_sym_0o] = ACTIONS(1835), + [anon_sym_0x] = ACTIONS(1835), + [sym_val_date] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_err_GT] = ACTIONS(1835), + [anon_sym_out_GT] = ACTIONS(1835), + [anon_sym_e_GT] = ACTIONS(1835), + [anon_sym_o_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT] = ACTIONS(1835), + [anon_sym_err_GT_GT] = ACTIONS(1837), + [anon_sym_out_GT_GT] = ACTIONS(1837), + [anon_sym_e_GT_GT] = ACTIONS(1837), + [anon_sym_o_GT_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), + [aux_sym_unquoted_token1] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(247), }, [802] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3928), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2003), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_cell_path] = STATE(1169), + [sym_path] = STATE(1014), [sym_comment] = STATE(802), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [sym__newline] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_COMMA] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [aux_sym_ctrl_match_token1] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [aux_sym_expr_binary_token1] = ACTIONS(1841), + [aux_sym_expr_binary_token2] = ACTIONS(1841), + [aux_sym_expr_binary_token3] = ACTIONS(1841), + [aux_sym_expr_binary_token4] = ACTIONS(1841), + [aux_sym_expr_binary_token5] = ACTIONS(1841), + [aux_sym_expr_binary_token6] = ACTIONS(1841), + [aux_sym_expr_binary_token7] = ACTIONS(1841), + [aux_sym_expr_binary_token8] = ACTIONS(1841), + [aux_sym_expr_binary_token9] = ACTIONS(1841), + [aux_sym_expr_binary_token10] = ACTIONS(1841), + [aux_sym_expr_binary_token11] = ACTIONS(1841), + [aux_sym_expr_binary_token12] = ACTIONS(1841), + [aux_sym_expr_binary_token13] = ACTIONS(1841), + [aux_sym_expr_binary_token14] = ACTIONS(1841), + [aux_sym_expr_binary_token15] = ACTIONS(1841), + [aux_sym_expr_binary_token16] = ACTIONS(1841), + [aux_sym_expr_binary_token17] = ACTIONS(1841), + [aux_sym_expr_binary_token18] = ACTIONS(1841), + [aux_sym_expr_binary_token19] = ACTIONS(1841), + [aux_sym_expr_binary_token20] = ACTIONS(1841), + [aux_sym_expr_binary_token21] = ACTIONS(1841), + [aux_sym_expr_binary_token22] = ACTIONS(1841), + [aux_sym_expr_binary_token23] = ACTIONS(1841), + [aux_sym_expr_binary_token24] = ACTIONS(1841), + [aux_sym_expr_binary_token25] = ACTIONS(1841), + [aux_sym_expr_binary_token26] = ACTIONS(1841), + [aux_sym_expr_binary_token27] = ACTIONS(1841), + [aux_sym_expr_binary_token28] = ACTIONS(1841), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_err_GT] = ACTIONS(1839), + [anon_sym_out_GT] = ACTIONS(1839), + [anon_sym_e_GT] = ACTIONS(1839), + [anon_sym_o_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT] = ACTIONS(1839), + [anon_sym_err_GT_GT] = ACTIONS(1841), + [anon_sym_out_GT_GT] = ACTIONS(1841), + [anon_sym_e_GT_GT] = ACTIONS(1841), + [anon_sym_o_GT_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), + [aux_sym_unquoted_token1] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(247), }, [803] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3932), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2018), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3808), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1974), + [sym__unquoted_with_expr] = STATE(2341), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(803), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [804] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3934), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2308), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2395), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2063), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(804), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(819), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [805] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3937), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2397), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2095), + [sym__unquoted_with_expr] = STATE(2285), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(805), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(820), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [806] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2375), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2235), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_path] = STATE(1014), [sym_comment] = STATE(806), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(807), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_null] = ACTIONS(953), + [aux_sym_cmd_identifier_token38] = ACTIONS(953), + [aux_sym_cmd_identifier_token39] = ACTIONS(953), + [aux_sym_cmd_identifier_token40] = ACTIONS(953), + [sym__newline] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [aux_sym_ctrl_match_token1] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym__] = ACTIONS(951), + [anon_sym_DOT_DOT] = ACTIONS(951), + [aux_sym_expr_binary_token1] = ACTIONS(953), + [aux_sym_expr_binary_token2] = ACTIONS(953), + [aux_sym_expr_binary_token3] = ACTIONS(953), + [aux_sym_expr_binary_token4] = ACTIONS(953), + [aux_sym_expr_binary_token5] = ACTIONS(953), + [aux_sym_expr_binary_token6] = ACTIONS(953), + [aux_sym_expr_binary_token7] = ACTIONS(953), + [aux_sym_expr_binary_token8] = ACTIONS(953), + [aux_sym_expr_binary_token9] = ACTIONS(953), + [aux_sym_expr_binary_token10] = ACTIONS(953), + [aux_sym_expr_binary_token11] = ACTIONS(953), + [aux_sym_expr_binary_token12] = ACTIONS(953), + [aux_sym_expr_binary_token13] = ACTIONS(953), + [aux_sym_expr_binary_token14] = ACTIONS(953), + [aux_sym_expr_binary_token15] = ACTIONS(953), + [aux_sym_expr_binary_token16] = ACTIONS(953), + [aux_sym_expr_binary_token17] = ACTIONS(953), + [aux_sym_expr_binary_token18] = ACTIONS(953), + [aux_sym_expr_binary_token19] = ACTIONS(953), + [aux_sym_expr_binary_token20] = ACTIONS(953), + [aux_sym_expr_binary_token21] = ACTIONS(953), + [aux_sym_expr_binary_token22] = ACTIONS(953), + [aux_sym_expr_binary_token23] = ACTIONS(953), + [aux_sym_expr_binary_token24] = ACTIONS(953), + [aux_sym_expr_binary_token25] = ACTIONS(953), + [aux_sym_expr_binary_token26] = ACTIONS(953), + [aux_sym_expr_binary_token27] = ACTIONS(953), + [aux_sym_expr_binary_token28] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(953), + [anon_sym_DOT_DOT_LT] = ACTIONS(953), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(953), + [aux_sym__val_number_decimal_token3] = ACTIONS(953), + [aux_sym__val_number_decimal_token4] = ACTIONS(953), + [aux_sym__val_number_token1] = ACTIONS(953), + [aux_sym__val_number_token2] = ACTIONS(953), + [aux_sym__val_number_token3] = ACTIONS(953), + [anon_sym_0b] = ACTIONS(951), + [anon_sym_0o] = ACTIONS(951), + [anon_sym_0x] = ACTIONS(951), + [sym_val_date] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym__str_single_quotes] = ACTIONS(953), + [sym__str_back_ticks] = ACTIONS(953), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [aux_sym_unquoted_token1] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(247), }, [807] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3768), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_path] = STATE(1014), [sym_comment] = STATE(807), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(807), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_null] = ACTIONS(957), + [aux_sym_cmd_identifier_token38] = ACTIONS(957), + [aux_sym_cmd_identifier_token39] = ACTIONS(957), + [aux_sym_cmd_identifier_token40] = ACTIONS(957), + [sym__newline] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(957), + [aux_sym_ctrl_match_token1] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym__] = ACTIONS(955), + [anon_sym_DOT_DOT] = ACTIONS(955), + [aux_sym_expr_binary_token1] = ACTIONS(957), + [aux_sym_expr_binary_token2] = ACTIONS(957), + [aux_sym_expr_binary_token3] = ACTIONS(957), + [aux_sym_expr_binary_token4] = ACTIONS(957), + [aux_sym_expr_binary_token5] = ACTIONS(957), + [aux_sym_expr_binary_token6] = ACTIONS(957), + [aux_sym_expr_binary_token7] = ACTIONS(957), + [aux_sym_expr_binary_token8] = ACTIONS(957), + [aux_sym_expr_binary_token9] = ACTIONS(957), + [aux_sym_expr_binary_token10] = ACTIONS(957), + [aux_sym_expr_binary_token11] = ACTIONS(957), + [aux_sym_expr_binary_token12] = ACTIONS(957), + [aux_sym_expr_binary_token13] = ACTIONS(957), + [aux_sym_expr_binary_token14] = ACTIONS(957), + [aux_sym_expr_binary_token15] = ACTIONS(957), + [aux_sym_expr_binary_token16] = ACTIONS(957), + [aux_sym_expr_binary_token17] = ACTIONS(957), + [aux_sym_expr_binary_token18] = ACTIONS(957), + [aux_sym_expr_binary_token19] = ACTIONS(957), + [aux_sym_expr_binary_token20] = ACTIONS(957), + [aux_sym_expr_binary_token21] = ACTIONS(957), + [aux_sym_expr_binary_token22] = ACTIONS(957), + [aux_sym_expr_binary_token23] = ACTIONS(957), + [aux_sym_expr_binary_token24] = ACTIONS(957), + [aux_sym_expr_binary_token25] = ACTIONS(957), + [aux_sym_expr_binary_token26] = ACTIONS(957), + [aux_sym_expr_binary_token27] = ACTIONS(957), + [aux_sym_expr_binary_token28] = ACTIONS(957), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(957), + [anon_sym_DOT_DOT_LT] = ACTIONS(957), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(957), + [aux_sym__val_number_decimal_token3] = ACTIONS(957), + [aux_sym__val_number_decimal_token4] = ACTIONS(957), + [aux_sym__val_number_token1] = ACTIONS(957), + [aux_sym__val_number_token2] = ACTIONS(957), + [aux_sym__val_number_token3] = ACTIONS(957), + [anon_sym_0b] = ACTIONS(955), + [anon_sym_0o] = ACTIONS(955), + [anon_sym_0x] = ACTIONS(955), + [sym_val_date] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__str_single_quotes] = ACTIONS(957), + [sym__str_back_ticks] = ACTIONS(957), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [aux_sym_unquoted_token1] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(247), }, [808] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3770), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2042), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2400), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2098), + [sym__unquoted_with_expr] = STATE(2286), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(808), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(821), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [809] = { + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2402), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2109), + [sym__unquoted_with_expr] = STATE(2287), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(809), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [aux_sym_cmd_identifier_token38] = ACTIONS(1915), - [aux_sym_cmd_identifier_token39] = ACTIONS(1915), - [aux_sym_cmd_identifier_token40] = ACTIONS(1915), - [sym__newline] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_GT] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [aux_sym_ctrl_match_token1] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym__] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_and] = ACTIONS(1915), - [anon_sym_xor] = ACTIONS(1915), - [anon_sym_or] = ACTIONS(1915), - [anon_sym_not_DASHin] = ACTIONS(1915), - [anon_sym_starts_DASHwith] = ACTIONS(1915), - [anon_sym_ends_DASHwith] = ACTIONS(1915), - [anon_sym_EQ_EQ] = ACTIONS(1915), - [anon_sym_BANG_EQ] = ACTIONS(1915), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1915), - [anon_sym_EQ_TILDE] = ACTIONS(1915), - [anon_sym_BANG_TILDE] = ACTIONS(1915), - [anon_sym_STAR_STAR] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_mod] = ACTIONS(1915), - [anon_sym_SLASH_SLASH] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_bit_DASHshl] = ACTIONS(1915), - [anon_sym_bit_DASHshr] = ACTIONS(1915), - [anon_sym_bit_DASHand] = ACTIONS(1915), - [anon_sym_bit_DASHxor] = ACTIONS(1915), - [anon_sym_bit_DASHor] = ACTIONS(1915), - [anon_sym_DOT_DOT2] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), - [anon_sym_DOT_DOT_LT] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [anon_sym_DOT2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [anon_sym_0b] = ACTIONS(1913), - [anon_sym_0o] = ACTIONS(1913), - [anon_sym_0x] = ACTIONS(1913), - [sym_val_date] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_err_GT] = ACTIONS(1913), - [anon_sym_out_GT] = ACTIONS(1913), - [anon_sym_e_GT] = ACTIONS(1913), - [anon_sym_o_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT] = ACTIONS(1913), - [anon_sym_err_GT_GT] = ACTIONS(1915), - [anon_sym_out_GT_GT] = ACTIONS(1915), - [anon_sym_e_GT_GT] = ACTIONS(1915), - [anon_sym_o_GT_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), - [aux_sym_unquoted_token1] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(824), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [810] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2387), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2223), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2404), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2066), + [sym__unquoted_with_expr] = STATE(2288), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(810), - [aux_sym_shebang_repeat1] = STATE(956), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(826), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [811] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3772), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2232), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2408), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2052), + [sym__unquoted_with_expr] = STATE(2289), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(811), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(827), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [812] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2237), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2264), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2410), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1971), + [sym__unquoted_with_expr] = STATE(2290), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(812), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(829), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [813] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3774), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2087), - [sym__unquoted_with_expr] = STATE(2277), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2412), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2291), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(813), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(830), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [814] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3776), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2091), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2415), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(814), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(831), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [815] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3778), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2099), - [sym__unquoted_with_expr] = STATE(2299), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2418), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1978), + [sym__unquoted_with_expr] = STATE(2293), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(815), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(832), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [816] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3780), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2100), - [sym__unquoted_with_expr] = STATE(2302), - [sym__unquoted_anonymous_prefix] = STATE(7221), [sym_comment] = STATE(816), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [anon_sym_null] = ACTIONS(1984), + [aux_sym_cmd_identifier_token38] = ACTIONS(1984), + [aux_sym_cmd_identifier_token39] = ACTIONS(1984), + [aux_sym_cmd_identifier_token40] = ACTIONS(1984), + [sym__newline] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_COMMA] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1984), + [aux_sym_ctrl_match_token1] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym__] = ACTIONS(1982), + [anon_sym_DOT_DOT] = ACTIONS(1982), + [aux_sym_expr_binary_token1] = ACTIONS(1984), + [aux_sym_expr_binary_token2] = ACTIONS(1984), + [aux_sym_expr_binary_token3] = ACTIONS(1984), + [aux_sym_expr_binary_token4] = ACTIONS(1984), + [aux_sym_expr_binary_token5] = ACTIONS(1984), + [aux_sym_expr_binary_token6] = ACTIONS(1984), + [aux_sym_expr_binary_token7] = ACTIONS(1984), + [aux_sym_expr_binary_token8] = ACTIONS(1984), + [aux_sym_expr_binary_token9] = ACTIONS(1984), + [aux_sym_expr_binary_token10] = ACTIONS(1984), + [aux_sym_expr_binary_token11] = ACTIONS(1984), + [aux_sym_expr_binary_token12] = ACTIONS(1984), + [aux_sym_expr_binary_token13] = ACTIONS(1984), + [aux_sym_expr_binary_token14] = ACTIONS(1984), + [aux_sym_expr_binary_token15] = ACTIONS(1984), + [aux_sym_expr_binary_token16] = ACTIONS(1984), + [aux_sym_expr_binary_token17] = ACTIONS(1984), + [aux_sym_expr_binary_token18] = ACTIONS(1984), + [aux_sym_expr_binary_token19] = ACTIONS(1984), + [aux_sym_expr_binary_token20] = ACTIONS(1984), + [aux_sym_expr_binary_token21] = ACTIONS(1984), + [aux_sym_expr_binary_token22] = ACTIONS(1984), + [aux_sym_expr_binary_token23] = ACTIONS(1984), + [aux_sym_expr_binary_token24] = ACTIONS(1984), + [aux_sym_expr_binary_token25] = ACTIONS(1984), + [aux_sym_expr_binary_token26] = ACTIONS(1984), + [aux_sym_expr_binary_token27] = ACTIONS(1984), + [aux_sym_expr_binary_token28] = ACTIONS(1984), + [anon_sym_DOT_DOT2] = ACTIONS(1982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1982), + [anon_sym_DOT_DOT_LT] = ACTIONS(1982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), + [aux_sym__val_number_decimal_token1] = ACTIONS(1982), + [aux_sym__val_number_decimal_token2] = ACTIONS(1984), + [aux_sym__val_number_decimal_token3] = ACTIONS(1984), + [aux_sym__val_number_decimal_token4] = ACTIONS(1984), + [aux_sym__val_number_token1] = ACTIONS(1984), + [aux_sym__val_number_token2] = ACTIONS(1984), + [aux_sym__val_number_token3] = ACTIONS(1984), + [anon_sym_0b] = ACTIONS(1982), + [anon_sym_0o] = ACTIONS(1982), + [anon_sym_0x] = ACTIONS(1982), + [sym_val_date] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1984), + [sym__str_single_quotes] = ACTIONS(1984), + [sym__str_back_ticks] = ACTIONS(1984), + [anon_sym_err_GT] = ACTIONS(1982), + [anon_sym_out_GT] = ACTIONS(1982), + [anon_sym_e_GT] = ACTIONS(1982), + [anon_sym_o_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT] = ACTIONS(1982), + [anon_sym_err_GT_GT] = ACTIONS(1984), + [anon_sym_out_GT_GT] = ACTIONS(1984), + [anon_sym_e_GT_GT] = ACTIONS(1984), + [anon_sym_o_GT_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1984), + [aux_sym_unquoted_token1] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(247), }, [817] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3781), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2102), - [sym__unquoted_with_expr] = STATE(2230), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2419), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(817), - [aux_sym_shebang_repeat1] = STATE(838), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(937), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [818] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3786), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1907), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2315), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2038), + [sym__unquoted_with_expr] = STATE(2316), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(818), - [aux_sym_shebang_repeat1] = STATE(879), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [819] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3788), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1909), - [sym__unquoted_with_expr] = STATE(2207), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2477), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2045), + [sym__unquoted_with_expr] = STATE(2318), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(819), - [aux_sym_shebang_repeat1] = STATE(892), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [820] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3790), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1910), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2480), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2320), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(820), - [aux_sym_shebang_repeat1] = STATE(894), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [821] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3792), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2197), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2484), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2076), + [sym__unquoted_with_expr] = STATE(2323), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(821), - [aux_sym_shebang_repeat1] = STATE(896), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [822] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3793), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1913), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2422), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2068), + [sym__unquoted_with_expr] = STATE(2295), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(822), - [aux_sym_shebang_repeat1] = STATE(897), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(938), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [823] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3794), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2211), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2421), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2107), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(823), - [aux_sym_shebang_repeat1] = STATE(898), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(960), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [824] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3796), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2228), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2489), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2105), + [sym__unquoted_with_expr] = STATE(2325), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(824), - [aux_sym_shebang_repeat1] = STATE(899), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [825] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2282), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_parenthesized] = STATE(1604), + [sym_val_range] = STATE(2020), + [sym__val_range] = STATE(7839), + [sym__val_range_with_end] = STATE(7660), + [sym__value] = STATE(2020), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1677), + [sym_val_variable] = STATE(1542), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1275), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym__flag] = STATE(2020), + [sym_short_flag] = STATE(1924), + [sym_long_flag] = STATE(1924), + [sym_unquoted] = STATE(1703), + [sym__unquoted_with_expr] = STATE(1975), + [sym__unquoted_anonymous_prefix] = STATE(7414), [sym_comment] = STATE(825), - [aux_sym_shebang_repeat1] = STATE(900), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2999), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2459), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [sym__newline] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2473), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), + [anon_sym_DOT_DOT_LT] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(247), }, [826] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3797), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2223), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2492), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2108), + [sym__unquoted_with_expr] = STATE(2328), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(826), - [aux_sym_shebang_repeat1] = STATE(901), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [827] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3799), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1926), - [sym__unquoted_with_expr] = STATE(2298), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2496), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2333), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(827), - [aux_sym_shebang_repeat1] = STATE(902), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [828] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3807), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1929), - [sym__unquoted_with_expr] = STATE(2164), - [sym__unquoted_anonymous_prefix] = STATE(7221), [sym_comment] = STATE(828), - [aux_sym_shebang_repeat1] = STATE(903), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3173), + [anon_sym_false] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3173), + [aux_sym_cmd_identifier_token38] = ACTIONS(3173), + [aux_sym_cmd_identifier_token39] = ACTIONS(3173), + [aux_sym_cmd_identifier_token40] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3173), + [aux_sym_ctrl_match_token1] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym__] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(3175), + [aux_sym_expr_binary_token1] = ACTIONS(3177), + [aux_sym_expr_binary_token2] = ACTIONS(3177), + [aux_sym_expr_binary_token3] = ACTIONS(3177), + [aux_sym_expr_binary_token4] = ACTIONS(3177), + [aux_sym_expr_binary_token5] = ACTIONS(3177), + [aux_sym_expr_binary_token6] = ACTIONS(3177), + [aux_sym_expr_binary_token7] = ACTIONS(3177), + [aux_sym_expr_binary_token8] = ACTIONS(3177), + [aux_sym_expr_binary_token9] = ACTIONS(3177), + [aux_sym_expr_binary_token10] = ACTIONS(3177), + [aux_sym_expr_binary_token11] = ACTIONS(3177), + [aux_sym_expr_binary_token12] = ACTIONS(3177), + [aux_sym_expr_binary_token13] = ACTIONS(3177), + [aux_sym_expr_binary_token14] = ACTIONS(3177), + [aux_sym_expr_binary_token15] = ACTIONS(3177), + [aux_sym_expr_binary_token16] = ACTIONS(3177), + [aux_sym_expr_binary_token17] = ACTIONS(3177), + [aux_sym_expr_binary_token18] = ACTIONS(3177), + [aux_sym_expr_binary_token19] = ACTIONS(3177), + [aux_sym_expr_binary_token20] = ACTIONS(3177), + [aux_sym_expr_binary_token21] = ACTIONS(3177), + [aux_sym_expr_binary_token22] = ACTIONS(3177), + [aux_sym_expr_binary_token23] = ACTIONS(3177), + [aux_sym_expr_binary_token24] = ACTIONS(3177), + [aux_sym_expr_binary_token25] = ACTIONS(3177), + [aux_sym_expr_binary_token26] = ACTIONS(3177), + [aux_sym_expr_binary_token27] = ACTIONS(3177), + [aux_sym_expr_binary_token28] = ACTIONS(3177), + [anon_sym_DOT_DOT2] = ACTIONS(3179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3175), + [anon_sym_DOT_DOT_LT] = ACTIONS(3175), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3181), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3181), + [aux_sym__val_number_decimal_token1] = ACTIONS(3175), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3173), + [aux_sym__val_number_token1] = ACTIONS(3173), + [aux_sym__val_number_token2] = ACTIONS(3173), + [aux_sym__val_number_token3] = ACTIONS(3173), + [anon_sym_0b] = ACTIONS(3175), + [anon_sym_0o] = ACTIONS(3175), + [anon_sym_0x] = ACTIONS(3175), + [sym_val_date] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym__str_single_quotes] = ACTIONS(3173), + [sym__str_back_ticks] = ACTIONS(3173), + [anon_sym_err_GT] = ACTIONS(3175), + [anon_sym_out_GT] = ACTIONS(3175), + [anon_sym_e_GT] = ACTIONS(3175), + [anon_sym_o_GT] = ACTIONS(3175), + [anon_sym_err_PLUSout_GT] = ACTIONS(3175), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3175), + [anon_sym_o_PLUSe_GT] = ACTIONS(3175), + [anon_sym_e_PLUSo_GT] = ACTIONS(3175), + [anon_sym_err_GT_GT] = ACTIONS(3173), + [anon_sym_out_GT_GT] = ACTIONS(3173), + [anon_sym_e_GT_GT] = ACTIONS(3173), + [anon_sym_o_GT_GT] = ACTIONS(3173), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3173), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3173), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3173), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3173), + [aux_sym_unquoted_token1] = ACTIONS(3175), + [anon_sym_POUND] = ACTIONS(247), }, [829] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3810), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1932), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2503), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2335), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(829), - [aux_sym_shebang_repeat1] = STATE(905), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [830] = { - [sym_path] = STATE(1020), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2510), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1964), + [sym__unquoted_with_expr] = STATE(2339), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(830), - [aux_sym_cell_path_repeat1] = STATE(947), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_null] = ACTIONS(891), - [aux_sym_cmd_identifier_token38] = ACTIONS(891), - [aux_sym_cmd_identifier_token39] = ACTIONS(891), - [aux_sym_cmd_identifier_token40] = ACTIONS(891), - [sym__newline] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_in] = ACTIONS(889), - [aux_sym_ctrl_match_token1] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym__] = ACTIONS(889), - [anon_sym_DOT_DOT] = ACTIONS(889), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(891), - [anon_sym_DOT_DOT_LT] = ACTIONS(891), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [aux_sym_unquoted_token1] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [831] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2437), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1932), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2515), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1974), + [sym__unquoted_with_expr] = STATE(2341), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(831), - [aux_sym_shebang_repeat1] = STATE(799), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [832] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3801), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2071), - [sym__unquoted_with_expr] = STATE(2245), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2518), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2343), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(832), - [aux_sym_shebang_repeat1] = STATE(803), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [833] = { + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2283), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(833), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(950), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [aux_sym_ctrl_match_token1] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym__] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(3142), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3144), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [aux_sym_unquoted_token1] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(846), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [834] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2409), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1926), - [sym__unquoted_with_expr] = STATE(2298), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3952), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2063), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(834), - [aux_sym_shebang_repeat1] = STATE(795), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(847), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [835] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2351), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3953), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2095), + [sym__unquoted_with_expr] = STATE(2285), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(835), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(848), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [836] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2378), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2239), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3954), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2098), + [sym__unquoted_with_expr] = STATE(2286), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(836), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(849), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [837] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2419), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1929), - [sym__unquoted_with_expr] = STATE(2164), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3955), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2109), + [sym__unquoted_with_expr] = STATE(2287), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(837), - [aux_sym_shebang_repeat1] = STATE(798), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(850), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [838] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3843), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3956), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2066), + [sym__unquoted_with_expr] = STATE(2288), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(838), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(851), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [839] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3326), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2240), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3957), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2052), + [sym__unquoted_with_expr] = STATE(2289), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(839), - [aux_sym_shebang_repeat1] = STATE(853), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(852), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [840] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3327), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3958), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1971), + [sym__unquoted_with_expr] = STATE(2290), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(840), - [aux_sym_shebang_repeat1] = STATE(854), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [841] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3328), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2071), - [sym__unquoted_with_expr] = STATE(2245), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(841), - [aux_sym_shebang_repeat1] = STATE(855), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(853), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), + }, + [841] = { + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3959), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2291), + [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_comment] = STATE(841), + [aux_sym_shebang_repeat1] = STATE(854), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [842] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3329), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2247), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3960), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(842), - [aux_sym_shebang_repeat1] = STATE(856), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(803), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [843] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3330), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2249), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3961), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1978), + [sym__unquoted_with_expr] = STATE(2293), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(843), - [aux_sym_shebang_repeat1] = STATE(857), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(856), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [844] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3331), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2074), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3962), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(844), - [aux_sym_shebang_repeat1] = STATE(858), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(857), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [845] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3332), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2254), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3965), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2068), + [sym__unquoted_with_expr] = STATE(2295), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(845), - [aux_sym_shebang_repeat1] = STATE(859), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(858), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [846] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3333), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2256), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2315), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2038), + [sym__unquoted_with_expr] = STATE(2316), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(860), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [847] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2258), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2260), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3792), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2045), + [sym__unquoted_with_expr] = STATE(2318), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(847), - [aux_sym_shebang_repeat1] = STATE(861), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [848] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3334), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2263), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2320), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(862), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [849] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3335), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2268), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3796), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2076), + [sym__unquoted_with_expr] = STATE(2323), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(863), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [850] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3336), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2083), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3798), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2105), + [sym__unquoted_with_expr] = STATE(2325), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(864), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [851] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3337), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2085), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3800), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2108), + [sym__unquoted_with_expr] = STATE(2328), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(865), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [852] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2249), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3802), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2333), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(805), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [853] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3340), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2208), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3804), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2335), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [854] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3342), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2003), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3806), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1964), + [sym__unquoted_with_expr] = STATE(2339), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(854), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [855] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3344), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2018), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2432), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2119), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(961), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [856] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3346), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2308), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3810), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2343), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(856), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [857] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3348), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3812), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2345), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(857), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [858] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3350), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3814), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2349), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [859] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3352), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2042), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2350), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2351), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(859), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(872), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [860] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3354), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2232), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3815), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1992), + [sym__unquoted_with_expr] = STATE(2352), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(873), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [861] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2237), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2264), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3816), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2353), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(861), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(874), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [862] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3356), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2087), - [sym__unquoted_with_expr] = STATE(2277), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3817), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(862), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(875), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [863] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3358), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2091), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3818), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2006), + [sym__unquoted_with_expr] = STATE(2282), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(965), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [864] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3360), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2099), - [sym__unquoted_with_expr] = STATE(2299), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3819), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2182), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(864), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(877), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [865] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3362), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2100), - [sym__unquoted_with_expr] = STATE(2302), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3820), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2016), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(865), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(878), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [866] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3363), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2102), - [sym__unquoted_with_expr] = STATE(2230), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3821), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2022), + [sym__unquoted_with_expr] = STATE(2184), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(866), - [aux_sym_shebang_repeat1] = STATE(880), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(879), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [867] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3364), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1907), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3822), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(867), - [aux_sym_shebang_repeat1] = STATE(881), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(880), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [868] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3365), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1909), - [sym__unquoted_with_expr] = STATE(2207), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3823), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2046), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(868), - [aux_sym_shebang_repeat1] = STATE(882), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(881), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [869] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3366), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1910), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3824), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2092), + [sym__unquoted_with_expr] = STATE(2187), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(869), - [aux_sym_shebang_repeat1] = STATE(957), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(882), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [870] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3367), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2197), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3825), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2107), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(870), [aux_sym_shebang_repeat1] = STATE(883), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [871] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3368), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1913), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3826), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2119), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(871), [aux_sym_shebang_repeat1] = STATE(884), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [872] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3369), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2211), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2217), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2218), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(885), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [873] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3428), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2228), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3840), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2015), + [sym__unquoted_with_expr] = STATE(2220), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(886), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [874] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2282), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3842), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2222), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(874), - [aux_sym_shebang_repeat1] = STATE(887), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [875] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3371), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2223), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3844), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2224), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(875), - [aux_sym_shebang_repeat1] = STATE(888), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [876] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3372), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1926), - [sym__unquoted_with_expr] = STATE(2298), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2393), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2046), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(876), - [aux_sym_shebang_repeat1] = STATE(889), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(958), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [877] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3373), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1929), - [sym__unquoted_with_expr] = STATE(2164), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3848), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2050), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(877), - [aux_sym_shebang_repeat1] = STATE(890), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [878] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3374), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1932), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3850), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2231), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(878), - [aux_sym_shebang_repeat1] = STATE(891), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [879] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3845), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3852), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2054), + [sym__unquoted_with_expr] = STATE(2233), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(879), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [880] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3387), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3854), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(880), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [881] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3389), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3856), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2081), + [sym__unquoted_with_expr] = STATE(2238), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(881), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [882] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3391), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2006), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3858), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2110), + [sym__unquoted_with_expr] = STATE(2240), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [883] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3395), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2122), + [sym__unquoted_with_expr] = STATE(2243), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [884] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3397), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2235), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3862), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2245), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(884), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [885] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3399), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2239), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2283), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(898), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [886] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3401), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2244), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3411), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2063), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(899), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [887] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2250), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2012), - [sym__unquoted_with_expr] = STATE(2255), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3413), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2095), + [sym__unquoted_with_expr] = STATE(2285), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(900), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [888] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3403), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3414), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2098), + [sym__unquoted_with_expr] = STATE(2286), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(888), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(901), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [889] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3405), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2105), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3415), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2109), + [sym__unquoted_with_expr] = STATE(2287), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(889), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(902), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [890] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3407), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3417), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2066), + [sym__unquoted_with_expr] = STATE(2288), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(903), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [891] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3409), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2016), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3418), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2052), + [sym__unquoted_with_expr] = STATE(2289), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(904), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [892] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3848), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2006), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3419), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1971), + [sym__unquoted_with_expr] = STATE(2290), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(905), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [893] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2386), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2240), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3420), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2291), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(893), - [aux_sym_shebang_repeat1] = STATE(911), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(906), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [894] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3851), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2007), - [sym__unquoted_with_expr] = STATE(2224), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3421), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(907), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [895] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2390), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3422), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1978), + [sym__unquoted_with_expr] = STATE(2293), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(912), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(908), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [896] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3853), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3424), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(909), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [897] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3857), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2235), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3425), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2068), + [sym__unquoted_with_expr] = STATE(2295), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(910), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [898] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3940), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2239), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2315), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2038), + [sym__unquoted_with_expr] = STATE(2316), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [899] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3861), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2244), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3428), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2045), + [sym__unquoted_with_expr] = STATE(2318), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [900] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2250), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2012), - [sym__unquoted_with_expr] = STATE(2255), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3430), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2320), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [901] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3863), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3432), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2076), + [sym__unquoted_with_expr] = STATE(2323), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [902] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3434), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), [sym_unquoted] = STATE(2105), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym__unquoted_with_expr] = STATE(2325), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(902), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [903] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3881), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3436), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2108), + [sym__unquoted_with_expr] = STATE(2328), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(903), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [904] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2392), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2071), - [sym__unquoted_with_expr] = STATE(2245), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3438), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2333), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(904), - [aux_sym_shebang_repeat1] = STATE(914), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [905] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3883), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2016), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3440), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2335), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(905), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [906] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2395), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2247), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3442), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1964), + [sym__unquoted_with_expr] = STATE(2339), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(906), - [aux_sym_shebang_repeat1] = STATE(915), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [907] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2397), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2249), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3444), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1974), + [sym__unquoted_with_expr] = STATE(2341), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(907), - [aux_sym_shebang_repeat1] = STATE(916), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [908] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2400), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2074), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3446), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2343), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(908), - [aux_sym_shebang_repeat1] = STATE(919), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [909] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2404), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2254), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3448), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2345), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(920), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [910] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2407), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2256), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3450), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2349), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(923), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [911] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2347), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2208), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2350), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2351), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(924), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [912] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2374), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2003), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3451), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1992), + [sym__unquoted_with_expr] = STATE(2352), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(912), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(925), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [913] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2258), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2260), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3452), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2353), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(925), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(926), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [914] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2388), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2018), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3453), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(927), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [915] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2428), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2308), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3454), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2006), + [sym__unquoted_with_expr] = STATE(2282), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(928), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [916] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2441), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3455), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2182), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(929), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [917] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2413), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2263), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3456), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2016), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(917), [aux_sym_shebang_repeat1] = STATE(930), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [918] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2422), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2268), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3457), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2022), + [sym__unquoted_with_expr] = STATE(2184), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(933), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(931), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [919] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2332), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3458), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(932), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [920] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2346), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2042), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3459), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2046), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(933), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [921] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2425), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2083), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3460), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2092), + [sym__unquoted_with_expr] = STATE(2187), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(921), [aux_sym_shebang_repeat1] = STATE(934), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [922] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2429), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2085), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3462), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2107), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(922), [aux_sym_shebang_repeat1] = STATE(935), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [923] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2360), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2232), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3464), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2119), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(923), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(936), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [924] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2371), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2217), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym__unquoted_with_expr] = STATE(2218), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [925] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2237), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2264), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3386), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2015), + [sym__unquoted_with_expr] = STATE(2220), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(925), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [926] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2383), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2244), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3480), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2222), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(926), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [927] = { + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3482), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2224), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(927), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [anon_sym_null] = ACTIONS(938), - [aux_sym_cmd_identifier_token38] = ACTIONS(938), - [aux_sym_cmd_identifier_token39] = ACTIONS(938), - [aux_sym_cmd_identifier_token40] = ACTIONS(938), - [sym__newline] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [aux_sym_ctrl_match_token1] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym__] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_DOT_DOT2] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [anon_sym_err_GT_GT] = ACTIONS(938), - [anon_sym_out_GT_GT] = ACTIONS(938), - [anon_sym_e_GT_GT] = ACTIONS(938), - [anon_sym_o_GT_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(938), - [aux_sym_unquoted_token1] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [928] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3813), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2074), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3484), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2033), + [sym__unquoted_with_expr] = STATE(2226), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(807), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [929] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3914), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2254), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3486), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2050), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(808), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [930] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2393), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2087), - [sym__unquoted_with_expr] = STATE(2277), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3488), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2231), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [931] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3915), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2256), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3490), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2054), + [sym__unquoted_with_expr] = STATE(2233), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(811), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [932] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2258), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2260), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3492), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(812), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [933] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2411), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2091), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3494), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2081), + [sym__unquoted_with_expr] = STATE(2238), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(933), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [934] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2438), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2099), - [sym__unquoted_with_expr] = STATE(2299), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3496), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2110), + [sym__unquoted_with_expr] = STATE(2240), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(934), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [935] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2315), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2100), - [sym__unquoted_with_expr] = STATE(2302), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3498), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2122), + [sym__unquoted_with_expr] = STATE(2243), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(935), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [936] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2328), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2102), - [sym__unquoted_with_expr] = STATE(2230), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3500), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3374), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3164), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2245), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(936), - [aux_sym_shebang_repeat1] = STATE(835), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3185), + [aux_sym_cmd_identifier_token38] = ACTIONS(3187), + [aux_sym_cmd_identifier_token39] = ACTIONS(3187), + [aux_sym_cmd_identifier_token40] = ACTIONS(3187), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3189), + [aux_sym__val_number_decimal_token2] = ACTIONS(3191), + [aux_sym__val_number_decimal_token3] = ACTIONS(3193), + [aux_sym__val_number_decimal_token4] = ACTIONS(3195), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [937] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2333), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1907), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2522), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2345), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(937), - [aux_sym_shebang_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [938] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2334), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1909), - [sym__unquoted_with_expr] = STATE(2207), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2527), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2349), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(938), - [aux_sym_shebang_repeat1] = STATE(948), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [939] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2340), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1910), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2350), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2351), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(939), [aux_sym_shebang_repeat1] = STATE(949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [940] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2343), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2197), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2529), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1992), + [sym__unquoted_with_expr] = STATE(2352), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(940), - [aux_sym_shebang_repeat1] = STATE(924), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(950), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [941] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2350), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1913), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7221), [sym_comment] = STATE(941), - [aux_sym_shebang_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1008), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [sym__newline] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [aux_sym_ctrl_match_token1] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [aux_sym_expr_binary_token1] = ACTIONS(1008), + [aux_sym_expr_binary_token2] = ACTIONS(1008), + [aux_sym_expr_binary_token3] = ACTIONS(1008), + [aux_sym_expr_binary_token4] = ACTIONS(1008), + [aux_sym_expr_binary_token5] = ACTIONS(1008), + [aux_sym_expr_binary_token6] = ACTIONS(1008), + [aux_sym_expr_binary_token7] = ACTIONS(1008), + [aux_sym_expr_binary_token8] = ACTIONS(1008), + [aux_sym_expr_binary_token9] = ACTIONS(1008), + [aux_sym_expr_binary_token10] = ACTIONS(1008), + [aux_sym_expr_binary_token11] = ACTIONS(1008), + [aux_sym_expr_binary_token12] = ACTIONS(1008), + [aux_sym_expr_binary_token13] = ACTIONS(1008), + [aux_sym_expr_binary_token14] = ACTIONS(1008), + [aux_sym_expr_binary_token15] = ACTIONS(1008), + [aux_sym_expr_binary_token16] = ACTIONS(1008), + [aux_sym_expr_binary_token17] = ACTIONS(1008), + [aux_sym_expr_binary_token18] = ACTIONS(1008), + [aux_sym_expr_binary_token19] = ACTIONS(1008), + [aux_sym_expr_binary_token20] = ACTIONS(1008), + [aux_sym_expr_binary_token21] = ACTIONS(1008), + [aux_sym_expr_binary_token22] = ACTIONS(1008), + [aux_sym_expr_binary_token23] = ACTIONS(1008), + [aux_sym_expr_binary_token24] = ACTIONS(1008), + [aux_sym_expr_binary_token25] = ACTIONS(1008), + [aux_sym_expr_binary_token26] = ACTIONS(1008), + [aux_sym_expr_binary_token27] = ACTIONS(1008), + [aux_sym_expr_binary_token28] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(3179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3181), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), }, [942] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2367), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2211), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2535), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2353), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(942), - [aux_sym_shebang_repeat1] = STATE(836), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(951), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [943] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2372), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2228), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2536), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(943), - [aux_sym_shebang_repeat1] = STATE(926), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(952), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [944] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2282), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2454), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2006), + [sym__unquoted_with_expr] = STATE(2282), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(944), - [aux_sym_shebang_repeat1] = STATE(955), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(953), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [945] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3935), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2263), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2507), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2182), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(945), - [aux_sym_shebang_repeat1] = STATE(813), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(954), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [946] = { + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2396), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2016), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(946), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [anon_sym_null] = ACTIONS(3166), - [aux_sym_cmd_identifier_token38] = ACTIONS(3166), - [aux_sym_cmd_identifier_token39] = ACTIONS(3166), - [aux_sym_cmd_identifier_token40] = ACTIONS(3166), - [sym__newline] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_COMMA] = ACTIONS(3166), - [anon_sym_DOLLAR] = ACTIONS(3166), - [anon_sym_GT] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3168), - [aux_sym_ctrl_match_token1] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym__] = ACTIONS(3170), - [anon_sym_DOT_DOT] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3168), - [anon_sym_and] = ACTIONS(3172), - [anon_sym_xor] = ACTIONS(3172), - [anon_sym_or] = ACTIONS(3172), - [anon_sym_not_DASHin] = ACTIONS(3172), - [anon_sym_starts_DASHwith] = ACTIONS(3172), - [anon_sym_ends_DASHwith] = ACTIONS(3172), - [anon_sym_EQ_EQ] = ACTIONS(3172), - [anon_sym_BANG_EQ] = ACTIONS(3172), - [anon_sym_LT2] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3172), - [anon_sym_EQ_TILDE] = ACTIONS(3172), - [anon_sym_BANG_TILDE] = ACTIONS(3172), - [anon_sym_STAR_STAR] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_mod] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_bit_DASHshl] = ACTIONS(3172), - [anon_sym_bit_DASHshr] = ACTIONS(3172), - [anon_sym_bit_DASHand] = ACTIONS(3172), - [anon_sym_bit_DASHxor] = ACTIONS(3172), - [anon_sym_bit_DASHor] = ACTIONS(3172), - [anon_sym_DOT_DOT2] = ACTIONS(3142), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3170), - [anon_sym_DOT_DOT_LT] = ACTIONS(3170), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3144), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token1] = ACTIONS(3170), - [aux_sym__val_number_decimal_token2] = ACTIONS(3166), - [anon_sym_DOT2] = ACTIONS(3170), - [aux_sym__val_number_decimal_token3] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(3166), - [aux_sym__val_number_token2] = ACTIONS(3166), - [aux_sym__val_number_token3] = ACTIONS(3166), - [anon_sym_0b] = ACTIONS(3170), - [anon_sym_0o] = ACTIONS(3170), - [anon_sym_0x] = ACTIONS(3170), - [sym_val_date] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [sym__str_single_quotes] = ACTIONS(3166), - [sym__str_back_ticks] = ACTIONS(3166), - [anon_sym_err_GT] = ACTIONS(3170), - [anon_sym_out_GT] = ACTIONS(3170), - [anon_sym_e_GT] = ACTIONS(3170), - [anon_sym_o_GT] = ACTIONS(3170), - [anon_sym_err_PLUSout_GT] = ACTIONS(3170), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3170), - [anon_sym_o_PLUSe_GT] = ACTIONS(3170), - [anon_sym_e_PLUSo_GT] = ACTIONS(3170), - [anon_sym_err_GT_GT] = ACTIONS(3166), - [anon_sym_out_GT_GT] = ACTIONS(3166), - [anon_sym_e_GT_GT] = ACTIONS(3166), - [anon_sym_o_GT_GT] = ACTIONS(3166), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3166), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3166), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3166), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3166), - [aux_sym_unquoted_token1] = ACTIONS(3170), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(955), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [947] = { - [sym_path] = STATE(1020), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2426), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2022), + [sym__unquoted_with_expr] = STATE(2184), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(947), - [aux_sym_cell_path_repeat1] = STATE(947), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [anon_sym_null] = ACTIONS(895), - [aux_sym_cmd_identifier_token38] = ACTIONS(895), - [aux_sym_cmd_identifier_token39] = ACTIONS(895), - [aux_sym_cmd_identifier_token40] = ACTIONS(895), - [sym__newline] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_COMMA] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_in] = ACTIONS(893), - [aux_sym_ctrl_match_token1] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym__] = ACTIONS(893), - [anon_sym_DOT_DOT] = ACTIONS(893), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_DOT] = ACTIONS(3174), - [anon_sym_DOT_DOT_EQ] = ACTIONS(895), - [anon_sym_DOT_DOT_LT] = ACTIONS(895), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(895), - [aux_sym__val_number_token1] = ACTIONS(895), - [aux_sym__val_number_token2] = ACTIONS(895), - [aux_sym__val_number_token3] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(893), - [anon_sym_0o] = ACTIONS(893), - [anon_sym_0x] = ACTIONS(893), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [aux_sym_unquoted_token1] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(956), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [948] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2357), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2006), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2519), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(948), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(957), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [949] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2365), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2007), - [sym__unquoted_with_expr] = STATE(2224), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2217), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2218), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(949), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [950] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3782), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2268), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2370), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2015), + [sym__unquoted_with_expr] = STATE(2220), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(950), - [aux_sym_shebang_repeat1] = STATE(814), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [951] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3802), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2083), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2376), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2222), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(951), - [aux_sym_shebang_repeat1] = STATE(815), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [952] = { - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(1960), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7603), - [sym__value] = STATE(1960), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1655), - [sym_val_variable] = STATE(1539), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym__flag] = STATE(1960), - [sym_short_flag] = STATE(1792), - [sym_long_flag] = STATE(1792), - [sym_unquoted] = STATE(1749), - [sym__unquoted_with_expr] = STATE(1966), - [sym__unquoted_anonymous_prefix] = STATE(7283), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2383), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2224), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(952), - [aux_sym_shebang_repeat1] = STATE(2911), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [sym__newline] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2422), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_LT] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [anon_sym_DOT2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [953] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3808), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2085), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2394), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2033), + [sym__unquoted_with_expr] = STATE(2226), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(953), - [aux_sym_shebang_repeat1] = STATE(816), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [954] = { + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2403), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2050), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(954), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym__] = ACTIONS(2927), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_and] = ACTIONS(2925), - [anon_sym_xor] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2925), - [anon_sym_starts_DASHwith] = ACTIONS(2925), - [anon_sym_ends_DASHwith] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_EQ_TILDE] = ACTIONS(2925), - [anon_sym_BANG_TILDE] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_STAR_STAR] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_bit_DASHshl] = ACTIONS(2925), - [anon_sym_bit_DASHshr] = ACTIONS(2925), - [anon_sym_bit_DASHand] = ACTIONS(2925), - [anon_sym_bit_DASHxor] = ACTIONS(2925), - [anon_sym_bit_DASHor] = ACTIONS(2925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(3177), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2925), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2925), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token2] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [955] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2250), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2012), - [sym__unquoted_with_expr] = STATE(2255), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2416), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2231), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(955), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [956] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(2394), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2428), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2054), + [sym__unquoted_with_expr] = STATE(2233), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(956), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [957] = { - [sym_expr_unary] = STATE(2385), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary_parenthesized] = STATE(2385), - [sym__expr_binary_expression_parenthesized] = STATE(3393), - [sym_expr_parenthesized] = STATE(2385), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2385), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2007), - [sym__unquoted_with_expr] = STATE(2224), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2455), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(957), - [aux_sym_shebang_repeat1] = STATE(2949), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [sym__newline] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [958] = { + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2460), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2081), + [sym__unquoted_with_expr] = STATE(2238), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(958), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [anon_sym_null] = ACTIONS(908), - [aux_sym_cmd_identifier_token38] = ACTIONS(908), - [aux_sym_cmd_identifier_token39] = ACTIONS(908), - [aux_sym_cmd_identifier_token40] = ACTIONS(908), - [sym__newline] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_in] = ACTIONS(906), - [aux_sym_ctrl_match_token1] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym__] = ACTIONS(906), - [anon_sym_DOT_DOT] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(3181), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(908), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(908), - [aux_sym__val_number_token1] = ACTIONS(908), - [aux_sym__val_number_token2] = ACTIONS(908), - [aux_sym__val_number_token3] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(906), - [anon_sym_0o] = ACTIONS(906), - [anon_sym_0x] = ACTIONS(906), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [aux_sym_unquoted_token1] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [959] = { - [sym_ctrl_do] = STATE(5031), - [sym_ctrl_if] = STATE(5031), - [sym_ctrl_match] = STATE(5031), - [sym_ctrl_try] = STATE(5031), - [sym__expression] = STATE(5031), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4050), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3155), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2473), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2110), + [sym__unquoted_with_expr] = STATE(2240), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(959), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(431), - [aux_sym_cmd_identifier_token39] = ACTIONS(431), - [aux_sym_cmd_identifier_token40] = ACTIONS(431), - [sym__newline] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_err_GT_PIPE] = ACTIONS(3189), - [anon_sym_out_GT_PIPE] = ACTIONS(3189), - [anon_sym_e_GT_PIPE] = ACTIONS(3189), - [anon_sym_o_GT_PIPE] = ACTIONS(3189), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3189), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3189), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3189), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3195), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3197), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [960] = { - [sym__expression] = STATE(7951), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4049), - [sym_expr_parenthesized] = STATE(3719), - [sym_val_range] = STATE(3670), - [sym__val_range] = STATE(7523), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(3742), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3557), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(7952), - [sym__unquoted_anonymous_prefix] = STATE(7978), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2479), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2122), + [sym__unquoted_with_expr] = STATE(2243), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(960), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3209), - [anon_sym_DOT_DOT_LT] = ACTIONS(3209), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3211), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3213), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [961] = { - [sym_ctrl_do] = STATE(5031), - [sym_ctrl_if] = STATE(5031), - [sym_ctrl_match] = STATE(5031), - [sym_ctrl_try] = STATE(5031), - [sym__expression] = STATE(5031), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4050), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3155), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2488), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2245), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(961), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(431), - [aux_sym_cmd_identifier_token39] = ACTIONS(431), - [aux_sym_cmd_identifier_token40] = ACTIONS(431), - [sym__newline] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_err_GT_PIPE] = ACTIONS(3189), - [anon_sym_out_GT_PIPE] = ACTIONS(3189), - [anon_sym_e_GT_PIPE] = ACTIONS(3189), - [anon_sym_o_GT_PIPE] = ACTIONS(3189), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3189), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3189), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3189), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3195), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3197), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3213), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [962] = { - [sym__expr_parenthesized_immediate] = STATE(7563), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2401), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2092), + [sym__unquoted_with_expr] = STATE(2187), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(962), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(959), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [963] = { - [sym__expr_parenthesized_immediate] = STATE(7563), [sym_comment] = STATE(963), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym__] = ACTIONS(1021), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_DOT_DOT_LT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(247), }, [964] = { - [sym__expr_parenthesized_immediate] = STATE(7563), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(2194), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(1555), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2283), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(964), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(818), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3156), + [aux_sym_cmd_identifier_token38] = ACTIONS(3158), + [aux_sym_cmd_identifier_token39] = ACTIONS(3158), + [aux_sym_cmd_identifier_token40] = ACTIONS(3158), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3160), + [aux_sym__val_number_decimal_token2] = ACTIONS(3162), + [aux_sym__val_number_decimal_token3] = ACTIONS(3164), + [aux_sym__val_number_decimal_token4] = ACTIONS(3166), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [965] = { - [sym_ctrl_do] = STATE(5031), - [sym_ctrl_if] = STATE(5031), - [sym_ctrl_match] = STATE(5031), - [sym_ctrl_try] = STATE(5031), - [sym__expression] = STATE(5031), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4050), - [sym_expr_parenthesized] = STATE(1890), - [sym_val_range] = STATE(3670), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(1906), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3155), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), + [sym_expr_unary] = STATE(2392), + [sym__expr_unary_minus] = STATE(2384), + [sym_expr_binary_parenthesized] = STATE(2392), + [sym__expr_binary_expression_parenthesized] = STATE(3846), + [sym_expr_parenthesized] = STATE(2392), + [sym__val_range] = STATE(8000), + [sym__val_range_with_end] = STATE(7653), + [sym__value] = STATE(2392), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3788), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(1851), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2033), + [sym__unquoted_with_expr] = STATE(2226), + [sym__unquoted_anonymous_prefix] = STATE(7269), [sym_comment] = STATE(965), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(431), - [aux_sym_cmd_identifier_token39] = ACTIONS(431), - [aux_sym_cmd_identifier_token40] = ACTIONS(431), - [sym__newline] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_err_GT_PIPE] = ACTIONS(3189), - [anon_sym_out_GT_PIPE] = ACTIONS(3189), - [anon_sym_e_GT_PIPE] = ACTIONS(3189), - [anon_sym_o_GT_PIPE] = ACTIONS(3189), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3189), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3189), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3189), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3195), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3197), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [anon_sym_DOT2] = ACTIONS(427), - [aux_sym__val_number_decimal_token3] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2975), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3130), + [aux_sym_cmd_identifier_token39] = ACTIONS(3130), + [aux_sym_cmd_identifier_token40] = ACTIONS(3130), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_DOLLAR] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(477), + [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), + [anon_sym_DOT_DOT_LT] = ACTIONS(3140), + [aux_sym__val_number_decimal_token1] = ACTIONS(3142), + [aux_sym__val_number_decimal_token2] = ACTIONS(3144), + [aux_sym__val_number_decimal_token3] = ACTIONS(3146), + [aux_sym__val_number_decimal_token4] = ACTIONS(3148), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [966] = { - [sym__expr_parenthesized_immediate] = STATE(7895), + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(966), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3221), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3221), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_in] = ACTIONS(3223), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym__] = ACTIONS(3223), - [anon_sym_DOT_DOT] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_and] = ACTIONS(3221), - [anon_sym_xor] = ACTIONS(3221), - [anon_sym_or] = ACTIONS(3221), - [anon_sym_not_DASHin] = ACTIONS(3221), - [anon_sym_starts_DASHwith] = ACTIONS(3221), - [anon_sym_ends_DASHwith] = ACTIONS(3221), - [anon_sym_EQ_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3221), - [anon_sym_LT2] = ACTIONS(3223), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_EQ_TILDE] = ACTIONS(3221), - [anon_sym_BANG_TILDE] = ACTIONS(3221), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_mod] = ACTIONS(3221), - [anon_sym_SLASH_SLASH] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_bit_DASHshl] = ACTIONS(3221), - [anon_sym_bit_DASHshr] = ACTIONS(3221), - [anon_sym_bit_DASHand] = ACTIONS(3221), - [anon_sym_bit_DASHxor] = ACTIONS(3221), - [anon_sym_bit_DASHor] = ACTIONS(3221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [aux_sym__val_number_decimal_token1] = ACTIONS(3223), - [aux_sym__val_number_decimal_token2] = ACTIONS(3221), - [anon_sym_DOT2] = ACTIONS(3223), - [aux_sym__val_number_decimal_token3] = ACTIONS(3221), - [aux_sym__val_number_token1] = ACTIONS(3221), - [aux_sym__val_number_token2] = ACTIONS(3221), - [aux_sym__val_number_token3] = ACTIONS(3221), - [anon_sym_0b] = ACTIONS(3223), - [anon_sym_0o] = ACTIONS(3223), - [anon_sym_0x] = ACTIONS(3223), - [sym_val_date] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym__str_single_quotes] = ACTIONS(3221), - [sym__str_back_ticks] = ACTIONS(3221), - [anon_sym_err_GT] = ACTIONS(3223), - [anon_sym_out_GT] = ACTIONS(3223), - [anon_sym_e_GT] = ACTIONS(3223), - [anon_sym_o_GT] = ACTIONS(3223), - [anon_sym_err_PLUSout_GT] = ACTIONS(3223), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3223), - [anon_sym_o_PLUSe_GT] = ACTIONS(3223), - [anon_sym_e_PLUSo_GT] = ACTIONS(3223), - [anon_sym_err_GT_GT] = ACTIONS(3221), - [anon_sym_out_GT_GT] = ACTIONS(3221), - [anon_sym_e_GT_GT] = ACTIONS(3221), - [anon_sym_o_GT_GT] = ACTIONS(3221), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3221), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3221), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3221), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3221), - [aux_sym_unquoted_token1] = ACTIONS(3223), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [967] = { - [sym__expr_parenthesized_immediate] = STATE(7563), [sym_comment] = STATE(967), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [aux_sym_ctrl_match_token1] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(3203), + [aux_sym_expr_binary_token1] = ACTIONS(982), + [aux_sym_expr_binary_token2] = ACTIONS(982), + [aux_sym_expr_binary_token3] = ACTIONS(982), + [aux_sym_expr_binary_token4] = ACTIONS(982), + [aux_sym_expr_binary_token5] = ACTIONS(982), + [aux_sym_expr_binary_token6] = ACTIONS(982), + [aux_sym_expr_binary_token7] = ACTIONS(982), + [aux_sym_expr_binary_token8] = ACTIONS(982), + [aux_sym_expr_binary_token9] = ACTIONS(982), + [aux_sym_expr_binary_token10] = ACTIONS(982), + [aux_sym_expr_binary_token11] = ACTIONS(982), + [aux_sym_expr_binary_token12] = ACTIONS(982), + [aux_sym_expr_binary_token13] = ACTIONS(982), + [aux_sym_expr_binary_token14] = ACTIONS(982), + [aux_sym_expr_binary_token15] = ACTIONS(982), + [aux_sym_expr_binary_token16] = ACTIONS(982), + [aux_sym_expr_binary_token17] = ACTIONS(982), + [aux_sym_expr_binary_token18] = ACTIONS(982), + [aux_sym_expr_binary_token19] = ACTIONS(982), + [aux_sym_expr_binary_token20] = ACTIONS(982), + [aux_sym_expr_binary_token21] = ACTIONS(982), + [aux_sym_expr_binary_token22] = ACTIONS(982), + [aux_sym_expr_binary_token23] = ACTIONS(982), + [aux_sym_expr_binary_token24] = ACTIONS(982), + [aux_sym_expr_binary_token25] = ACTIONS(982), + [aux_sym_expr_binary_token26] = ACTIONS(982), + [aux_sym_expr_binary_token27] = ACTIONS(982), + [aux_sym_expr_binary_token28] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_DOT_DOT_LT] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [968] = { - [sym__expr_parenthesized_immediate] = STATE(7895), + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(968), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [anon_sym_null] = ACTIONS(3225), - [aux_sym_cmd_identifier_token38] = ACTIONS(3225), - [aux_sym_cmd_identifier_token39] = ACTIONS(3225), - [aux_sym_cmd_identifier_token40] = ACTIONS(3225), - [sym__newline] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_DOLLAR] = ACTIONS(3225), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_in] = ACTIONS(3227), - [aux_sym_ctrl_match_token1] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym__] = ACTIONS(3227), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_and] = ACTIONS(3225), - [anon_sym_xor] = ACTIONS(3225), - [anon_sym_or] = ACTIONS(3225), - [anon_sym_not_DASHin] = ACTIONS(3225), - [anon_sym_starts_DASHwith] = ACTIONS(3225), - [anon_sym_ends_DASHwith] = ACTIONS(3225), - [anon_sym_EQ_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3225), - [anon_sym_LT2] = ACTIONS(3227), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_EQ_TILDE] = ACTIONS(3225), - [anon_sym_BANG_TILDE] = ACTIONS(3225), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_mod] = ACTIONS(3225), - [anon_sym_SLASH_SLASH] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_bit_DASHshl] = ACTIONS(3225), - [anon_sym_bit_DASHshr] = ACTIONS(3225), - [anon_sym_bit_DASHand] = ACTIONS(3225), - [anon_sym_bit_DASHxor] = ACTIONS(3225), - [anon_sym_bit_DASHor] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3225), - [anon_sym_DOT2] = ACTIONS(3227), - [aux_sym__val_number_decimal_token3] = ACTIONS(3225), - [aux_sym__val_number_token1] = ACTIONS(3225), - [aux_sym__val_number_token2] = ACTIONS(3225), - [aux_sym__val_number_token3] = ACTIONS(3225), - [anon_sym_0b] = ACTIONS(3227), - [anon_sym_0o] = ACTIONS(3227), - [anon_sym_0x] = ACTIONS(3227), - [sym_val_date] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym__str_single_quotes] = ACTIONS(3225), - [sym__str_back_ticks] = ACTIONS(3225), - [anon_sym_err_GT] = ACTIONS(3227), - [anon_sym_out_GT] = ACTIONS(3227), - [anon_sym_e_GT] = ACTIONS(3227), - [anon_sym_o_GT] = ACTIONS(3227), - [anon_sym_err_PLUSout_GT] = ACTIONS(3227), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3227), - [anon_sym_o_PLUSe_GT] = ACTIONS(3227), - [anon_sym_e_PLUSo_GT] = ACTIONS(3227), - [anon_sym_err_GT_GT] = ACTIONS(3225), - [anon_sym_out_GT_GT] = ACTIONS(3225), - [anon_sym_e_GT_GT] = ACTIONS(3225), - [anon_sym_o_GT_GT] = ACTIONS(3225), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3225), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3225), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3225), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3225), - [aux_sym_unquoted_token1] = ACTIONS(3227), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [anon_sym_null] = ACTIONS(3205), + [aux_sym_cmd_identifier_token38] = ACTIONS(3205), + [aux_sym_cmd_identifier_token39] = ACTIONS(3205), + [aux_sym_cmd_identifier_token40] = ACTIONS(3205), + [sym__newline] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_COMMA] = ACTIONS(3205), + [anon_sym_DOLLAR] = ACTIONS(3205), + [aux_sym_ctrl_match_token1] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym__] = ACTIONS(3207), + [anon_sym_DOT_DOT] = ACTIONS(3207), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3205), + [aux_sym_expr_binary_token2] = ACTIONS(3205), + [aux_sym_expr_binary_token3] = ACTIONS(3205), + [aux_sym_expr_binary_token4] = ACTIONS(3205), + [aux_sym_expr_binary_token5] = ACTIONS(3205), + [aux_sym_expr_binary_token6] = ACTIONS(3205), + [aux_sym_expr_binary_token7] = ACTIONS(3205), + [aux_sym_expr_binary_token8] = ACTIONS(3205), + [aux_sym_expr_binary_token9] = ACTIONS(3205), + [aux_sym_expr_binary_token10] = ACTIONS(3205), + [aux_sym_expr_binary_token11] = ACTIONS(3205), + [aux_sym_expr_binary_token12] = ACTIONS(3205), + [aux_sym_expr_binary_token13] = ACTIONS(3205), + [aux_sym_expr_binary_token14] = ACTIONS(3205), + [aux_sym_expr_binary_token15] = ACTIONS(3205), + [aux_sym_expr_binary_token16] = ACTIONS(3205), + [aux_sym_expr_binary_token17] = ACTIONS(3205), + [aux_sym_expr_binary_token18] = ACTIONS(3205), + [aux_sym_expr_binary_token19] = ACTIONS(3205), + [aux_sym_expr_binary_token20] = ACTIONS(3205), + [aux_sym_expr_binary_token21] = ACTIONS(3205), + [aux_sym_expr_binary_token22] = ACTIONS(3205), + [aux_sym_expr_binary_token23] = ACTIONS(3205), + [aux_sym_expr_binary_token24] = ACTIONS(3205), + [aux_sym_expr_binary_token25] = ACTIONS(3205), + [aux_sym_expr_binary_token26] = ACTIONS(3205), + [aux_sym_expr_binary_token27] = ACTIONS(3205), + [aux_sym_expr_binary_token28] = ACTIONS(3205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3205), + [anon_sym_DOT_DOT_LT] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3205), + [aux_sym__val_number_decimal_token4] = ACTIONS(3205), + [aux_sym__val_number_token1] = ACTIONS(3205), + [aux_sym__val_number_token2] = ACTIONS(3205), + [aux_sym__val_number_token3] = ACTIONS(3205), + [anon_sym_0b] = ACTIONS(3207), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [sym__str_single_quotes] = ACTIONS(3205), + [sym__str_back_ticks] = ACTIONS(3205), + [anon_sym_err_GT] = ACTIONS(3207), + [anon_sym_out_GT] = ACTIONS(3207), + [anon_sym_e_GT] = ACTIONS(3207), + [anon_sym_o_GT] = ACTIONS(3207), + [anon_sym_err_PLUSout_GT] = ACTIONS(3207), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3207), + [anon_sym_o_PLUSe_GT] = ACTIONS(3207), + [anon_sym_e_PLUSo_GT] = ACTIONS(3207), + [anon_sym_err_GT_GT] = ACTIONS(3205), + [anon_sym_out_GT_GT] = ACTIONS(3205), + [anon_sym_e_GT_GT] = ACTIONS(3205), + [anon_sym_o_GT_GT] = ACTIONS(3205), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3205), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3205), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3205), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3205), + [aux_sym_unquoted_token1] = ACTIONS(3207), + [anon_sym_POUND] = ACTIONS(247), }, [969] = { - [sym__expr_parenthesized_immediate] = STATE(7563), [sym_comment] = STATE(969), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [anon_sym_null] = ACTIONS(2131), + [aux_sym_cmd_identifier_token38] = ACTIONS(2131), + [aux_sym_cmd_identifier_token39] = ACTIONS(2131), + [aux_sym_cmd_identifier_token40] = ACTIONS(2131), + [sym__newline] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_COMMA] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2131), + [aux_sym_ctrl_match_token1] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym__] = ACTIONS(2131), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2133), + [aux_sym_expr_binary_token1] = ACTIONS(2133), + [aux_sym_expr_binary_token2] = ACTIONS(2133), + [aux_sym_expr_binary_token3] = ACTIONS(2133), + [aux_sym_expr_binary_token4] = ACTIONS(2133), + [aux_sym_expr_binary_token5] = ACTIONS(2133), + [aux_sym_expr_binary_token6] = ACTIONS(2133), + [aux_sym_expr_binary_token7] = ACTIONS(2133), + [aux_sym_expr_binary_token8] = ACTIONS(2133), + [aux_sym_expr_binary_token9] = ACTIONS(2133), + [aux_sym_expr_binary_token10] = ACTIONS(2133), + [aux_sym_expr_binary_token11] = ACTIONS(2133), + [aux_sym_expr_binary_token12] = ACTIONS(2133), + [aux_sym_expr_binary_token13] = ACTIONS(2133), + [aux_sym_expr_binary_token14] = ACTIONS(2133), + [aux_sym_expr_binary_token15] = ACTIONS(2133), + [aux_sym_expr_binary_token16] = ACTIONS(2133), + [aux_sym_expr_binary_token17] = ACTIONS(2133), + [aux_sym_expr_binary_token18] = ACTIONS(2133), + [aux_sym_expr_binary_token19] = ACTIONS(2133), + [aux_sym_expr_binary_token20] = ACTIONS(2133), + [aux_sym_expr_binary_token21] = ACTIONS(2133), + [aux_sym_expr_binary_token22] = ACTIONS(2133), + [aux_sym_expr_binary_token23] = ACTIONS(2133), + [aux_sym_expr_binary_token24] = ACTIONS(2133), + [aux_sym_expr_binary_token25] = ACTIONS(2133), + [aux_sym_expr_binary_token26] = ACTIONS(2133), + [aux_sym_expr_binary_token27] = ACTIONS(2133), + [aux_sym_expr_binary_token28] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), + [anon_sym_DOT_DOT_LT] = ACTIONS(2131), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2131), + [aux_sym__val_number_decimal_token4] = ACTIONS(2131), + [aux_sym__val_number_token1] = ACTIONS(2131), + [aux_sym__val_number_token2] = ACTIONS(2131), + [aux_sym__val_number_token3] = ACTIONS(2131), + [anon_sym_0b] = ACTIONS(2131), + [anon_sym_0o] = ACTIONS(2131), + [anon_sym_0x] = ACTIONS(2131), + [sym_val_date] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2133), + [sym__str_single_quotes] = ACTIONS(2133), + [sym__str_back_ticks] = ACTIONS(2133), + [anon_sym_err_GT] = ACTIONS(2131), + [anon_sym_out_GT] = ACTIONS(2131), + [anon_sym_e_GT] = ACTIONS(2131), + [anon_sym_o_GT] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT] = ACTIONS(2131), + [anon_sym_err_GT_GT] = ACTIONS(2131), + [anon_sym_out_GT_GT] = ACTIONS(2131), + [anon_sym_e_GT_GT] = ACTIONS(2131), + [anon_sym_o_GT_GT] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2131), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [aux_sym_unquoted_token4] = ACTIONS(2131), [anon_sym_POUND] = ACTIONS(3), }, [970] = { [sym_comment] = STATE(970), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2077), - [aux_sym_cmd_identifier_token38] = ACTIONS(2077), - [aux_sym_cmd_identifier_token39] = ACTIONS(2077), - [aux_sym_cmd_identifier_token40] = ACTIONS(2077), - [sym__newline] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2077), - [aux_sym_ctrl_match_token1] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym__] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_and] = ACTIONS(2077), - [anon_sym_xor] = ACTIONS(2077), - [anon_sym_or] = ACTIONS(2077), - [anon_sym_not_DASHin] = ACTIONS(2077), - [anon_sym_starts_DASHwith] = ACTIONS(2077), - [anon_sym_ends_DASHwith] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_LT2] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_EQ_TILDE] = ACTIONS(2077), - [anon_sym_BANG_TILDE] = ACTIONS(2077), - [anon_sym_LPAREN2] = ACTIONS(2079), - [anon_sym_STAR_STAR] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_mod] = ACTIONS(2077), - [anon_sym_SLASH_SLASH] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_bit_DASHshl] = ACTIONS(2077), - [anon_sym_bit_DASHshr] = ACTIONS(2077), - [anon_sym_bit_DASHand] = ACTIONS(2077), - [anon_sym_bit_DASHxor] = ACTIONS(2077), - [anon_sym_bit_DASHor] = ACTIONS(2077), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2077), - [anon_sym_DOT_DOT_LT] = ACTIONS(2077), - [aux_sym__val_number_decimal_token1] = ACTIONS(2077), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [anon_sym_DOT2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_token1] = ACTIONS(2077), - [aux_sym__val_number_token2] = ACTIONS(2077), - [aux_sym__val_number_token3] = ACTIONS(2077), - [anon_sym_0b] = ACTIONS(2077), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2081), - [sym__str_back_ticks] = ACTIONS(2081), - [anon_sym_err_GT] = ACTIONS(2077), - [anon_sym_out_GT] = ACTIONS(2077), - [anon_sym_e_GT] = ACTIONS(2077), - [anon_sym_o_GT] = ACTIONS(2077), - [anon_sym_err_PLUSout_GT] = ACTIONS(2077), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2077), - [anon_sym_o_PLUSe_GT] = ACTIONS(2077), - [anon_sym_e_PLUSo_GT] = ACTIONS(2077), - [anon_sym_err_GT_GT] = ACTIONS(2077), - [anon_sym_out_GT_GT] = ACTIONS(2077), - [anon_sym_e_GT_GT] = ACTIONS(2077), - [anon_sym_o_GT_GT] = ACTIONS(2077), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2077), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2077), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2077), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2077), - [aux_sym_unquoted_token1] = ACTIONS(2077), - [aux_sym_unquoted_token7] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [sym__newline] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_COMMA] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [aux_sym_ctrl_match_token1] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(2081), + [aux_sym_expr_binary_token1] = ACTIONS(1008), + [aux_sym_expr_binary_token2] = ACTIONS(1008), + [aux_sym_expr_binary_token3] = ACTIONS(1008), + [aux_sym_expr_binary_token4] = ACTIONS(1008), + [aux_sym_expr_binary_token5] = ACTIONS(1008), + [aux_sym_expr_binary_token6] = ACTIONS(1008), + [aux_sym_expr_binary_token7] = ACTIONS(1008), + [aux_sym_expr_binary_token8] = ACTIONS(1008), + [aux_sym_expr_binary_token9] = ACTIONS(1008), + [aux_sym_expr_binary_token10] = ACTIONS(1008), + [aux_sym_expr_binary_token11] = ACTIONS(1008), + [aux_sym_expr_binary_token12] = ACTIONS(1008), + [aux_sym_expr_binary_token13] = ACTIONS(1008), + [aux_sym_expr_binary_token14] = ACTIONS(1008), + [aux_sym_expr_binary_token15] = ACTIONS(1008), + [aux_sym_expr_binary_token16] = ACTIONS(1008), + [aux_sym_expr_binary_token17] = ACTIONS(1008), + [aux_sym_expr_binary_token18] = ACTIONS(1008), + [aux_sym_expr_binary_token19] = ACTIONS(1008), + [aux_sym_expr_binary_token20] = ACTIONS(1008), + [aux_sym_expr_binary_token21] = ACTIONS(1008), + [aux_sym_expr_binary_token22] = ACTIONS(1008), + [aux_sym_expr_binary_token23] = ACTIONS(1008), + [aux_sym_expr_binary_token24] = ACTIONS(1008), + [aux_sym_expr_binary_token25] = ACTIONS(1008), + [aux_sym_expr_binary_token26] = ACTIONS(1008), + [aux_sym_expr_binary_token27] = ACTIONS(1008), + [aux_sym_expr_binary_token28] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_decimal_token4] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1006), + [anon_sym_out_GT_GT] = ACTIONS(1006), + [anon_sym_e_GT_GT] = ACTIONS(1006), + [anon_sym_o_GT_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [aux_sym_unquoted_token4] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(3), }, [971] = { - [sym__expr_parenthesized_immediate] = STATE(7563), + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(971), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3209), + [anon_sym_false] = ACTIONS(3209), + [anon_sym_null] = ACTIONS(3209), + [aux_sym_cmd_identifier_token38] = ACTIONS(3209), + [aux_sym_cmd_identifier_token39] = ACTIONS(3209), + [aux_sym_cmd_identifier_token40] = ACTIONS(3209), + [sym__newline] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(3209), + [anon_sym_DOLLAR] = ACTIONS(3209), + [aux_sym_ctrl_match_token1] = ACTIONS(3209), + [anon_sym_RBRACE] = ACTIONS(3209), + [anon_sym__] = ACTIONS(3211), + [anon_sym_DOT_DOT] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3209), + [aux_sym_expr_binary_token2] = ACTIONS(3209), + [aux_sym_expr_binary_token3] = ACTIONS(3209), + [aux_sym_expr_binary_token4] = ACTIONS(3209), + [aux_sym_expr_binary_token5] = ACTIONS(3209), + [aux_sym_expr_binary_token6] = ACTIONS(3209), + [aux_sym_expr_binary_token7] = ACTIONS(3209), + [aux_sym_expr_binary_token8] = ACTIONS(3209), + [aux_sym_expr_binary_token9] = ACTIONS(3209), + [aux_sym_expr_binary_token10] = ACTIONS(3209), + [aux_sym_expr_binary_token11] = ACTIONS(3209), + [aux_sym_expr_binary_token12] = ACTIONS(3209), + [aux_sym_expr_binary_token13] = ACTIONS(3209), + [aux_sym_expr_binary_token14] = ACTIONS(3209), + [aux_sym_expr_binary_token15] = ACTIONS(3209), + [aux_sym_expr_binary_token16] = ACTIONS(3209), + [aux_sym_expr_binary_token17] = ACTIONS(3209), + [aux_sym_expr_binary_token18] = ACTIONS(3209), + [aux_sym_expr_binary_token19] = ACTIONS(3209), + [aux_sym_expr_binary_token20] = ACTIONS(3209), + [aux_sym_expr_binary_token21] = ACTIONS(3209), + [aux_sym_expr_binary_token22] = ACTIONS(3209), + [aux_sym_expr_binary_token23] = ACTIONS(3209), + [aux_sym_expr_binary_token24] = ACTIONS(3209), + [aux_sym_expr_binary_token25] = ACTIONS(3209), + [aux_sym_expr_binary_token26] = ACTIONS(3209), + [aux_sym_expr_binary_token27] = ACTIONS(3209), + [aux_sym_expr_binary_token28] = ACTIONS(3209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3209), + [anon_sym_DOT_DOT_LT] = ACTIONS(3209), + [aux_sym__val_number_decimal_token1] = ACTIONS(3211), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3209), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(3209), + [aux_sym__val_number_token2] = ACTIONS(3209), + [aux_sym__val_number_token3] = ACTIONS(3209), + [anon_sym_0b] = ACTIONS(3211), + [anon_sym_0o] = ACTIONS(3211), + [anon_sym_0x] = ACTIONS(3211), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym__str_single_quotes] = ACTIONS(3209), + [sym__str_back_ticks] = ACTIONS(3209), + [anon_sym_err_GT] = ACTIONS(3211), + [anon_sym_out_GT] = ACTIONS(3211), + [anon_sym_e_GT] = ACTIONS(3211), + [anon_sym_o_GT] = ACTIONS(3211), + [anon_sym_err_PLUSout_GT] = ACTIONS(3211), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3211), + [anon_sym_o_PLUSe_GT] = ACTIONS(3211), + [anon_sym_e_PLUSo_GT] = ACTIONS(3211), + [anon_sym_err_GT_GT] = ACTIONS(3209), + [anon_sym_out_GT_GT] = ACTIONS(3209), + [anon_sym_e_GT_GT] = ACTIONS(3209), + [anon_sym_o_GT_GT] = ACTIONS(3209), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3209), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3209), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3209), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3209), + [aux_sym_unquoted_token1] = ACTIONS(3211), + [anon_sym_POUND] = ACTIONS(247), }, [972] = { [sym_comment] = STATE(972), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [anon_sym_null] = ACTIONS(902), - [aux_sym_cmd_identifier_token38] = ACTIONS(902), - [aux_sym_cmd_identifier_token39] = ACTIONS(902), - [aux_sym_cmd_identifier_token40] = ACTIONS(902), - [sym__newline] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_in] = ACTIONS(900), - [aux_sym_ctrl_match_token1] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym__] = ACTIONS(900), - [anon_sym_DOT_DOT] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(3229), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT2] = ACTIONS(900), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(902), - [anon_sym_DOT_DOT_LT] = ACTIONS(902), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(902), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(902), - [aux_sym__val_number_token1] = ACTIONS(902), - [aux_sym__val_number_token2] = ACTIONS(902), - [aux_sym__val_number_token3] = ACTIONS(902), - [anon_sym_0b] = ACTIONS(900), - [anon_sym_0o] = ACTIONS(900), - [anon_sym_0x] = ACTIONS(900), - [sym_val_date] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym__str_single_quotes] = ACTIONS(902), - [sym__str_back_ticks] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [aux_sym_unquoted_token1] = ACTIONS(900), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [aux_sym_ctrl_match_token1] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym__] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(968), + [aux_sym_expr_binary_token1] = ACTIONS(968), + [aux_sym_expr_binary_token2] = ACTIONS(968), + [aux_sym_expr_binary_token3] = ACTIONS(968), + [aux_sym_expr_binary_token4] = ACTIONS(968), + [aux_sym_expr_binary_token5] = ACTIONS(968), + [aux_sym_expr_binary_token6] = ACTIONS(968), + [aux_sym_expr_binary_token7] = ACTIONS(968), + [aux_sym_expr_binary_token8] = ACTIONS(968), + [aux_sym_expr_binary_token9] = ACTIONS(968), + [aux_sym_expr_binary_token10] = ACTIONS(968), + [aux_sym_expr_binary_token11] = ACTIONS(968), + [aux_sym_expr_binary_token12] = ACTIONS(968), + [aux_sym_expr_binary_token13] = ACTIONS(968), + [aux_sym_expr_binary_token14] = ACTIONS(968), + [aux_sym_expr_binary_token15] = ACTIONS(968), + [aux_sym_expr_binary_token16] = ACTIONS(968), + [aux_sym_expr_binary_token17] = ACTIONS(968), + [aux_sym_expr_binary_token18] = ACTIONS(968), + [aux_sym_expr_binary_token19] = ACTIONS(968), + [aux_sym_expr_binary_token20] = ACTIONS(968), + [aux_sym_expr_binary_token21] = ACTIONS(968), + [aux_sym_expr_binary_token22] = ACTIONS(968), + [aux_sym_expr_binary_token23] = ACTIONS(968), + [aux_sym_expr_binary_token24] = ACTIONS(968), + [aux_sym_expr_binary_token25] = ACTIONS(968), + [aux_sym_expr_binary_token26] = ACTIONS(968), + [aux_sym_expr_binary_token27] = ACTIONS(968), + [aux_sym_expr_binary_token28] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [973] = { - [sym__expr_parenthesized_immediate] = STATE(7563), + [sym__expression] = STATE(7743), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4067), + [sym_expr_parenthesized] = STATE(3761), + [sym_val_range] = STATE(3727), + [sym__val_range] = STATE(8049), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(3758), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3697), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(7744), + [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(973), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), [aux_sym_cmd_identifier_token38] = ACTIONS(3217), [aux_sym_cmd_identifier_token39] = ACTIONS(3217), [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3223), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3227), + [anon_sym_DOT_DOT_LT] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_record_entry_token1] = ACTIONS(3239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(247), }, [974] = { - [sym__expr_parenthesized_immediate] = STATE(7895), + [sym_ctrl_do] = STATE(5042), + [sym_ctrl_if] = STATE(5042), + [sym_ctrl_match] = STATE(5042), + [sym_ctrl_try] = STATE(5042), + [sym__expression] = STATE(5042), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4073), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(2941), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), [sym_comment] = STATE(974), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_null] = ACTIONS(3231), - [aux_sym_cmd_identifier_token38] = ACTIONS(3231), - [aux_sym_cmd_identifier_token39] = ACTIONS(3231), - [aux_sym_cmd_identifier_token40] = ACTIONS(3231), - [sym__newline] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_in] = ACTIONS(3233), - [aux_sym_ctrl_match_token1] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym__] = ACTIONS(3233), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_and] = ACTIONS(3231), - [anon_sym_xor] = ACTIONS(3231), - [anon_sym_or] = ACTIONS(3231), - [anon_sym_not_DASHin] = ACTIONS(3231), - [anon_sym_starts_DASHwith] = ACTIONS(3231), - [anon_sym_ends_DASHwith] = ACTIONS(3231), - [anon_sym_EQ_EQ] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_LT2] = ACTIONS(3233), - [anon_sym_LT_EQ] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3231), - [anon_sym_EQ_TILDE] = ACTIONS(3231), - [anon_sym_BANG_TILDE] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_mod] = ACTIONS(3231), - [anon_sym_SLASH_SLASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_bit_DASHshl] = ACTIONS(3231), - [anon_sym_bit_DASHshr] = ACTIONS(3231), - [anon_sym_bit_DASHand] = ACTIONS(3231), - [anon_sym_bit_DASHxor] = ACTIONS(3231), - [anon_sym_bit_DASHor] = ACTIONS(3231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3231), - [anon_sym_DOT_DOT_LT] = ACTIONS(3231), - [aux_sym__val_number_decimal_token1] = ACTIONS(3233), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [anon_sym_DOT2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_token1] = ACTIONS(3231), - [aux_sym__val_number_token2] = ACTIONS(3231), - [aux_sym__val_number_token3] = ACTIONS(3231), - [anon_sym_0b] = ACTIONS(3233), - [anon_sym_0o] = ACTIONS(3233), - [anon_sym_0x] = ACTIONS(3233), - [sym_val_date] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [sym__str_single_quotes] = ACTIONS(3231), - [sym__str_back_ticks] = ACTIONS(3231), - [anon_sym_err_GT] = ACTIONS(3233), - [anon_sym_out_GT] = ACTIONS(3233), - [anon_sym_e_GT] = ACTIONS(3233), - [anon_sym_o_GT] = ACTIONS(3233), - [anon_sym_err_PLUSout_GT] = ACTIONS(3233), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3233), - [anon_sym_o_PLUSe_GT] = ACTIONS(3233), - [anon_sym_e_PLUSo_GT] = ACTIONS(3233), - [anon_sym_err_GT_GT] = ACTIONS(3231), - [anon_sym_out_GT_GT] = ACTIONS(3231), - [anon_sym_e_GT_GT] = ACTIONS(3231), - [anon_sym_o_GT_GT] = ACTIONS(3231), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3231), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3231), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3231), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3231), - [aux_sym_unquoted_token1] = ACTIONS(3233), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(439), + [aux_sym_cmd_identifier_token39] = ACTIONS(439), + [aux_sym_cmd_identifier_token40] = ACTIONS(439), + [sym__newline] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_err_GT_PIPE] = ACTIONS(3249), + [anon_sym_out_GT_PIPE] = ACTIONS(3249), + [anon_sym_e_GT_PIPE] = ACTIONS(3249), + [anon_sym_o_GT_PIPE] = ACTIONS(3249), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3249), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3249), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3249), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3255), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_record_entry_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(247), }, [975] = { - [sym__expr_parenthesized_immediate] = STATE(7563), + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(975), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [976] = { [sym_comment] = STATE(976), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [aux_sym_cmd_identifier_token38] = ACTIONS(2155), - [aux_sym_cmd_identifier_token39] = ACTIONS(2155), - [aux_sym_cmd_identifier_token40] = ACTIONS(2155), - [sym__newline] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_COMMA] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_GT] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_in] = ACTIONS(2155), - [aux_sym_ctrl_match_token1] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym__] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2155), - [anon_sym_and] = ACTIONS(2155), - [anon_sym_xor] = ACTIONS(2155), - [anon_sym_or] = ACTIONS(2155), - [anon_sym_not_DASHin] = ACTIONS(2155), - [anon_sym_starts_DASHwith] = ACTIONS(2155), - [anon_sym_ends_DASHwith] = ACTIONS(2155), - [anon_sym_EQ_EQ] = ACTIONS(2155), - [anon_sym_BANG_EQ] = ACTIONS(2155), - [anon_sym_LT2] = ACTIONS(2155), - [anon_sym_LT_EQ] = ACTIONS(2155), - [anon_sym_GT_EQ] = ACTIONS(2155), - [anon_sym_EQ_TILDE] = ACTIONS(2155), - [anon_sym_BANG_TILDE] = ACTIONS(2155), - [anon_sym_LPAREN2] = ACTIONS(2157), - [anon_sym_STAR_STAR] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(2155), - [anon_sym_SLASH] = ACTIONS(2155), - [anon_sym_mod] = ACTIONS(2155), - [anon_sym_SLASH_SLASH] = ACTIONS(2155), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_bit_DASHshl] = ACTIONS(2155), - [anon_sym_bit_DASHshr] = ACTIONS(2155), - [anon_sym_bit_DASHand] = ACTIONS(2155), - [anon_sym_bit_DASHxor] = ACTIONS(2155), - [anon_sym_bit_DASHor] = ACTIONS(2155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2155), - [anon_sym_DOT_DOT_LT] = ACTIONS(2155), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2155), - [anon_sym_DOT2] = ACTIONS(2155), - [aux_sym__val_number_decimal_token3] = ACTIONS(2155), - [aux_sym__val_number_token1] = ACTIONS(2155), - [aux_sym__val_number_token2] = ACTIONS(2155), - [aux_sym__val_number_token3] = ACTIONS(2155), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2155), - [anon_sym_0x] = ACTIONS(2155), - [sym_val_date] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym__str_single_quotes] = ACTIONS(2159), - [sym__str_back_ticks] = ACTIONS(2159), - [anon_sym_err_GT] = ACTIONS(2155), - [anon_sym_out_GT] = ACTIONS(2155), - [anon_sym_e_GT] = ACTIONS(2155), - [anon_sym_o_GT] = ACTIONS(2155), - [anon_sym_err_PLUSout_GT] = ACTIONS(2155), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2155), - [anon_sym_o_PLUSe_GT] = ACTIONS(2155), - [anon_sym_e_PLUSo_GT] = ACTIONS(2155), - [anon_sym_err_GT_GT] = ACTIONS(2155), - [anon_sym_out_GT_GT] = ACTIONS(2155), - [anon_sym_e_GT_GT] = ACTIONS(2155), - [anon_sym_o_GT_GT] = ACTIONS(2155), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2155), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2155), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2155), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2155), - [aux_sym_unquoted_token1] = ACTIONS(2155), - [aux_sym_unquoted_token7] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [aux_sym_cmd_identifier_token38] = ACTIONS(2089), + [aux_sym_cmd_identifier_token39] = ACTIONS(2089), + [aux_sym_cmd_identifier_token40] = ACTIONS(2089), + [sym__newline] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2089), + [anon_sym_DOLLAR] = ACTIONS(2089), + [aux_sym_ctrl_match_token1] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym__] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_LPAREN2] = ACTIONS(2091), + [aux_sym_expr_binary_token1] = ACTIONS(2093), + [aux_sym_expr_binary_token2] = ACTIONS(2093), + [aux_sym_expr_binary_token3] = ACTIONS(2093), + [aux_sym_expr_binary_token4] = ACTIONS(2093), + [aux_sym_expr_binary_token5] = ACTIONS(2093), + [aux_sym_expr_binary_token6] = ACTIONS(2093), + [aux_sym_expr_binary_token7] = ACTIONS(2093), + [aux_sym_expr_binary_token8] = ACTIONS(2093), + [aux_sym_expr_binary_token9] = ACTIONS(2093), + [aux_sym_expr_binary_token10] = ACTIONS(2093), + [aux_sym_expr_binary_token11] = ACTIONS(2093), + [aux_sym_expr_binary_token12] = ACTIONS(2093), + [aux_sym_expr_binary_token13] = ACTIONS(2093), + [aux_sym_expr_binary_token14] = ACTIONS(2093), + [aux_sym_expr_binary_token15] = ACTIONS(2093), + [aux_sym_expr_binary_token16] = ACTIONS(2093), + [aux_sym_expr_binary_token17] = ACTIONS(2093), + [aux_sym_expr_binary_token18] = ACTIONS(2093), + [aux_sym_expr_binary_token19] = ACTIONS(2093), + [aux_sym_expr_binary_token20] = ACTIONS(2093), + [aux_sym_expr_binary_token21] = ACTIONS(2093), + [aux_sym_expr_binary_token22] = ACTIONS(2093), + [aux_sym_expr_binary_token23] = ACTIONS(2093), + [aux_sym_expr_binary_token24] = ACTIONS(2093), + [aux_sym_expr_binary_token25] = ACTIONS(2093), + [aux_sym_expr_binary_token26] = ACTIONS(2093), + [aux_sym_expr_binary_token27] = ACTIONS(2093), + [aux_sym_expr_binary_token28] = ACTIONS(2093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), + [anon_sym_DOT_DOT_LT] = ACTIONS(2089), + [aux_sym__val_number_decimal_token1] = ACTIONS(2089), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2089), + [aux_sym__val_number_decimal_token4] = ACTIONS(2089), + [aux_sym__val_number_token1] = ACTIONS(2089), + [aux_sym__val_number_token2] = ACTIONS(2089), + [aux_sym__val_number_token3] = ACTIONS(2089), + [anon_sym_0b] = ACTIONS(2089), + [anon_sym_0o] = ACTIONS(2089), + [anon_sym_0x] = ACTIONS(2089), + [sym_val_date] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2093), + [sym__str_single_quotes] = ACTIONS(2093), + [sym__str_back_ticks] = ACTIONS(2093), + [anon_sym_err_GT] = ACTIONS(2089), + [anon_sym_out_GT] = ACTIONS(2089), + [anon_sym_e_GT] = ACTIONS(2089), + [anon_sym_o_GT] = ACTIONS(2089), + [anon_sym_err_PLUSout_GT] = ACTIONS(2089), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), + [anon_sym_o_PLUSe_GT] = ACTIONS(2089), + [anon_sym_e_PLUSo_GT] = ACTIONS(2089), + [anon_sym_err_GT_GT] = ACTIONS(2089), + [anon_sym_out_GT_GT] = ACTIONS(2089), + [anon_sym_e_GT_GT] = ACTIONS(2089), + [anon_sym_o_GT_GT] = ACTIONS(2089), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), + [aux_sym_unquoted_token1] = ACTIONS(2089), + [aux_sym_unquoted_token4] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(3), }, [977] = { + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(977), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_null] = ACTIONS(948), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(948), - [aux_sym_cmd_identifier_token40] = ACTIONS(948), - [sym__newline] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_COMMA] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [aux_sym_ctrl_match_token1] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym__] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_and] = ACTIONS(948), - [anon_sym_xor] = ACTIONS(948), - [anon_sym_or] = ACTIONS(948), - [anon_sym_not_DASHin] = ACTIONS(948), - [anon_sym_starts_DASHwith] = ACTIONS(948), - [anon_sym_ends_DASHwith] = ACTIONS(948), - [anon_sym_EQ_EQ] = ACTIONS(948), - [anon_sym_BANG_EQ] = ACTIONS(948), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(948), - [anon_sym_GT_EQ] = ACTIONS(948), - [anon_sym_EQ_TILDE] = ACTIONS(948), - [anon_sym_BANG_TILDE] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(2039), - [anon_sym_STAR_STAR] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(948), - [anon_sym_SLASH_SLASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(948), - [anon_sym_bit_DASHshr] = ACTIONS(948), - [anon_sym_bit_DASHand] = ACTIONS(948), - [anon_sym_bit_DASHxor] = ACTIONS(948), - [anon_sym_bit_DASHor] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(948), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(948), - [aux_sym__val_number_token1] = ACTIONS(948), - [aux_sym__val_number_token2] = ACTIONS(948), - [aux_sym__val_number_token3] = ACTIONS(948), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(948), - [anon_sym_out_GT_GT] = ACTIONS(948), - [anon_sym_e_GT_GT] = ACTIONS(948), - [anon_sym_o_GT_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), - [aux_sym_unquoted_token1] = ACTIONS(948), - [aux_sym_unquoted_token7] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [978] = { - [sym__expr_parenthesized_immediate] = STATE(7563), + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [979] = { + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(979), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [anon_sym_null] = ACTIONS(2163), - [aux_sym_cmd_identifier_token38] = ACTIONS(2163), - [aux_sym_cmd_identifier_token39] = ACTIONS(2163), - [aux_sym_cmd_identifier_token40] = ACTIONS(2163), - [sym__newline] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_COMMA] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [aux_sym_ctrl_match_token1] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym__] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_and] = ACTIONS(2163), - [anon_sym_xor] = ACTIONS(2163), - [anon_sym_or] = ACTIONS(2163), - [anon_sym_not_DASHin] = ACTIONS(2163), - [anon_sym_starts_DASHwith] = ACTIONS(2163), - [anon_sym_ends_DASHwith] = ACTIONS(2163), - [anon_sym_EQ_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_LT2] = ACTIONS(2163), - [anon_sym_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_EQ] = ACTIONS(2163), - [anon_sym_EQ_TILDE] = ACTIONS(2163), - [anon_sym_BANG_TILDE] = ACTIONS(2163), - [anon_sym_LPAREN2] = ACTIONS(2157), - [anon_sym_STAR_STAR] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_mod] = ACTIONS(2163), - [anon_sym_SLASH_SLASH] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_bit_DASHshl] = ACTIONS(2163), - [anon_sym_bit_DASHshr] = ACTIONS(2163), - [anon_sym_bit_DASHand] = ACTIONS(2163), - [anon_sym_bit_DASHxor] = ACTIONS(2163), - [anon_sym_bit_DASHor] = ACTIONS(2163), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2163), - [anon_sym_DOT_DOT_LT] = ACTIONS(2163), - [aux_sym__val_number_decimal_token1] = ACTIONS(2163), - [aux_sym__val_number_decimal_token2] = ACTIONS(2163), - [anon_sym_DOT2] = ACTIONS(2163), - [aux_sym__val_number_decimal_token3] = ACTIONS(2163), - [aux_sym__val_number_token1] = ACTIONS(2163), - [aux_sym__val_number_token2] = ACTIONS(2163), - [aux_sym__val_number_token3] = ACTIONS(2163), - [anon_sym_0b] = ACTIONS(2163), - [anon_sym_0o] = ACTIONS(2163), - [anon_sym_0x] = ACTIONS(2163), - [sym_val_date] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_err_GT] = ACTIONS(2163), - [anon_sym_out_GT] = ACTIONS(2163), - [anon_sym_e_GT] = ACTIONS(2163), - [anon_sym_o_GT] = ACTIONS(2163), - [anon_sym_err_PLUSout_GT] = ACTIONS(2163), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2163), - [anon_sym_o_PLUSe_GT] = ACTIONS(2163), - [anon_sym_e_PLUSo_GT] = ACTIONS(2163), - [anon_sym_err_GT_GT] = ACTIONS(2163), - [anon_sym_out_GT_GT] = ACTIONS(2163), - [anon_sym_e_GT_GT] = ACTIONS(2163), - [anon_sym_o_GT_GT] = ACTIONS(2163), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2163), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2163), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2163), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2163), - [aux_sym_unquoted_token1] = ACTIONS(2163), - [aux_sym_unquoted_token7] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [980] = { + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(980), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(918), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [sym__newline] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [aux_sym_ctrl_match_token1] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym__] = ACTIONS(916), - [anon_sym_DOT_DOT] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_and] = ACTIONS(918), - [anon_sym_xor] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_not_DASHin] = ACTIONS(918), - [anon_sym_starts_DASHwith] = ACTIONS(918), - [anon_sym_ends_DASHwith] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT2] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_TILDE] = ACTIONS(918), - [anon_sym_BANG_TILDE] = ACTIONS(918), - [anon_sym_STAR_STAR] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(916), - [anon_sym_mod] = ACTIONS(918), - [anon_sym_SLASH_SLASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(918), - [anon_sym_bit_DASHshr] = ACTIONS(918), - [anon_sym_bit_DASHand] = ACTIONS(918), - [anon_sym_bit_DASHxor] = ACTIONS(918), - [anon_sym_bit_DASHor] = ACTIONS(918), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ] = ACTIONS(918), - [anon_sym_DOT_DOT_LT] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_0b] = ACTIONS(916), - [anon_sym_0o] = ACTIONS(916), - [anon_sym_0x] = ACTIONS(916), - [sym_val_date] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [aux_sym_unquoted_token1] = ACTIONS(916), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [981] = { - [sym__expr_parenthesized_immediate] = STATE(7563), + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(981), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [982] = { + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(982), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(922), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [sym__newline] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [aux_sym_ctrl_match_token1] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym__] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_and] = ACTIONS(922), - [anon_sym_xor] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_not_DASHin] = ACTIONS(922), - [anon_sym_starts_DASHwith] = ACTIONS(922), - [anon_sym_ends_DASHwith] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_BANG_TILDE] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(922), - [anon_sym_SLASH_SLASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(922), - [anon_sym_bit_DASHshr] = ACTIONS(922), - [anon_sym_bit_DASHand] = ACTIONS(922), - [anon_sym_bit_DASHxor] = ACTIONS(922), - [anon_sym_bit_DASHor] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(922), - [anon_sym_DOT_DOT_LT] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [aux_sym_unquoted_token1] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [983] = { + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(983), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(914), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [aux_sym_ctrl_match_token1] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym__] = ACTIONS(912), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(912), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(912), - [anon_sym_0o] = ACTIONS(912), - [anon_sym_0x] = ACTIONS(912), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [aux_sym_unquoted_token1] = ACTIONS(912), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [984] = { - [sym__expr_parenthesized_immediate] = STATE(7563), + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(984), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [985] = { - [sym__expr_parenthesized_immediate] = STATE(7563), [sym_comment] = STATE(985), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [aux_sym_ctrl_match_token1] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym__] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [aux_sym_expr_binary_token1] = ACTIONS(978), + [aux_sym_expr_binary_token2] = ACTIONS(978), + [aux_sym_expr_binary_token3] = ACTIONS(978), + [aux_sym_expr_binary_token4] = ACTIONS(978), + [aux_sym_expr_binary_token5] = ACTIONS(978), + [aux_sym_expr_binary_token6] = ACTIONS(978), + [aux_sym_expr_binary_token7] = ACTIONS(978), + [aux_sym_expr_binary_token8] = ACTIONS(978), + [aux_sym_expr_binary_token9] = ACTIONS(978), + [aux_sym_expr_binary_token10] = ACTIONS(978), + [aux_sym_expr_binary_token11] = ACTIONS(978), + [aux_sym_expr_binary_token12] = ACTIONS(978), + [aux_sym_expr_binary_token13] = ACTIONS(978), + [aux_sym_expr_binary_token14] = ACTIONS(978), + [aux_sym_expr_binary_token15] = ACTIONS(978), + [aux_sym_expr_binary_token16] = ACTIONS(978), + [aux_sym_expr_binary_token17] = ACTIONS(978), + [aux_sym_expr_binary_token18] = ACTIONS(978), + [aux_sym_expr_binary_token19] = ACTIONS(978), + [aux_sym_expr_binary_token20] = ACTIONS(978), + [aux_sym_expr_binary_token21] = ACTIONS(978), + [aux_sym_expr_binary_token22] = ACTIONS(978), + [aux_sym_expr_binary_token23] = ACTIONS(978), + [aux_sym_expr_binary_token24] = ACTIONS(978), + [aux_sym_expr_binary_token25] = ACTIONS(978), + [aux_sym_expr_binary_token26] = ACTIONS(978), + [aux_sym_expr_binary_token27] = ACTIONS(978), + [aux_sym_expr_binary_token28] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [986] = { + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(986), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [aux_sym_cmd_identifier_token38] = ACTIONS(2073), - [aux_sym_cmd_identifier_token39] = ACTIONS(2073), - [aux_sym_cmd_identifier_token40] = ACTIONS(2073), - [sym__newline] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_GT] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_in] = ACTIONS(2073), - [aux_sym_ctrl_match_token1] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym__] = ACTIONS(2073), - [anon_sym_DOT_DOT] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2073), - [anon_sym_and] = ACTIONS(2073), - [anon_sym_xor] = ACTIONS(2073), - [anon_sym_or] = ACTIONS(2073), - [anon_sym_not_DASHin] = ACTIONS(2073), - [anon_sym_starts_DASHwith] = ACTIONS(2073), - [anon_sym_ends_DASHwith] = ACTIONS(2073), - [anon_sym_EQ_EQ] = ACTIONS(2073), - [anon_sym_BANG_EQ] = ACTIONS(2073), - [anon_sym_LT2] = ACTIONS(2073), - [anon_sym_LT_EQ] = ACTIONS(2073), - [anon_sym_GT_EQ] = ACTIONS(2073), - [anon_sym_EQ_TILDE] = ACTIONS(2073), - [anon_sym_BANG_TILDE] = ACTIONS(2073), - [anon_sym_LPAREN2] = ACTIONS(2075), - [anon_sym_STAR_STAR] = ACTIONS(2073), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_SLASH] = ACTIONS(2073), - [anon_sym_mod] = ACTIONS(2073), - [anon_sym_SLASH_SLASH] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_bit_DASHshl] = ACTIONS(2073), - [anon_sym_bit_DASHshr] = ACTIONS(2073), - [anon_sym_bit_DASHand] = ACTIONS(2073), - [anon_sym_bit_DASHxor] = ACTIONS(2073), - [anon_sym_bit_DASHor] = ACTIONS(2073), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2073), - [anon_sym_DOT2] = ACTIONS(2073), - [aux_sym__val_number_decimal_token3] = ACTIONS(2073), - [aux_sym__val_number_token1] = ACTIONS(2073), - [aux_sym__val_number_token2] = ACTIONS(2073), - [aux_sym__val_number_token3] = ACTIONS(2073), - [anon_sym_0b] = ACTIONS(2073), - [anon_sym_0o] = ACTIONS(2073), - [anon_sym_0x] = ACTIONS(2073), - [sym_val_date] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2075), - [sym__str_single_quotes] = ACTIONS(2075), - [sym__str_back_ticks] = ACTIONS(2075), - [anon_sym_err_GT] = ACTIONS(2073), - [anon_sym_out_GT] = ACTIONS(2073), - [anon_sym_e_GT] = ACTIONS(2073), - [anon_sym_o_GT] = ACTIONS(2073), - [anon_sym_err_PLUSout_GT] = ACTIONS(2073), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2073), - [anon_sym_o_PLUSe_GT] = ACTIONS(2073), - [anon_sym_e_PLUSo_GT] = ACTIONS(2073), - [anon_sym_err_GT_GT] = ACTIONS(2073), - [anon_sym_out_GT_GT] = ACTIONS(2073), - [anon_sym_e_GT_GT] = ACTIONS(2073), - [anon_sym_o_GT_GT] = ACTIONS(2073), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2073), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2073), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2073), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2073), - [aux_sym_unquoted_token1] = ACTIONS(2073), - [aux_sym_unquoted_token7] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3259), + [aux_sym_cmd_identifier_token38] = ACTIONS(3259), + [aux_sym_cmd_identifier_token39] = ACTIONS(3259), + [aux_sym_cmd_identifier_token40] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3259), + [aux_sym_ctrl_match_token1] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym__] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3259), + [aux_sym_expr_binary_token2] = ACTIONS(3259), + [aux_sym_expr_binary_token3] = ACTIONS(3259), + [aux_sym_expr_binary_token4] = ACTIONS(3259), + [aux_sym_expr_binary_token5] = ACTIONS(3259), + [aux_sym_expr_binary_token6] = ACTIONS(3259), + [aux_sym_expr_binary_token7] = ACTIONS(3259), + [aux_sym_expr_binary_token8] = ACTIONS(3259), + [aux_sym_expr_binary_token9] = ACTIONS(3259), + [aux_sym_expr_binary_token10] = ACTIONS(3259), + [aux_sym_expr_binary_token11] = ACTIONS(3259), + [aux_sym_expr_binary_token12] = ACTIONS(3259), + [aux_sym_expr_binary_token13] = ACTIONS(3259), + [aux_sym_expr_binary_token14] = ACTIONS(3259), + [aux_sym_expr_binary_token15] = ACTIONS(3259), + [aux_sym_expr_binary_token16] = ACTIONS(3259), + [aux_sym_expr_binary_token17] = ACTIONS(3259), + [aux_sym_expr_binary_token18] = ACTIONS(3259), + [aux_sym_expr_binary_token19] = ACTIONS(3259), + [aux_sym_expr_binary_token20] = ACTIONS(3259), + [aux_sym_expr_binary_token21] = ACTIONS(3259), + [aux_sym_expr_binary_token22] = ACTIONS(3259), + [aux_sym_expr_binary_token23] = ACTIONS(3259), + [aux_sym_expr_binary_token24] = ACTIONS(3259), + [aux_sym_expr_binary_token25] = ACTIONS(3259), + [aux_sym_expr_binary_token26] = ACTIONS(3259), + [aux_sym_expr_binary_token27] = ACTIONS(3259), + [aux_sym_expr_binary_token28] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3259), + [anon_sym_DOT_DOT_LT] = ACTIONS(3259), + [aux_sym__val_number_decimal_token1] = ACTIONS(3261), + [aux_sym__val_number_decimal_token2] = ACTIONS(3259), + [aux_sym__val_number_decimal_token3] = ACTIONS(3259), + [aux_sym__val_number_decimal_token4] = ACTIONS(3259), + [aux_sym__val_number_token1] = ACTIONS(3259), + [aux_sym__val_number_token2] = ACTIONS(3259), + [aux_sym__val_number_token3] = ACTIONS(3259), + [anon_sym_0b] = ACTIONS(3261), + [anon_sym_0o] = ACTIONS(3261), + [anon_sym_0x] = ACTIONS(3261), + [sym_val_date] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(3259), + [sym__str_single_quotes] = ACTIONS(3259), + [sym__str_back_ticks] = ACTIONS(3259), + [anon_sym_err_GT] = ACTIONS(3261), + [anon_sym_out_GT] = ACTIONS(3261), + [anon_sym_e_GT] = ACTIONS(3261), + [anon_sym_o_GT] = ACTIONS(3261), + [anon_sym_err_PLUSout_GT] = ACTIONS(3261), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3261), + [anon_sym_o_PLUSe_GT] = ACTIONS(3261), + [anon_sym_e_PLUSo_GT] = ACTIONS(3261), + [anon_sym_err_GT_GT] = ACTIONS(3259), + [anon_sym_out_GT_GT] = ACTIONS(3259), + [anon_sym_e_GT_GT] = ACTIONS(3259), + [anon_sym_o_GT_GT] = ACTIONS(3259), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3259), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3259), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3259), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3259), + [aux_sym_unquoted_token1] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(247), }, [987] = { - [sym__expression] = STATE(7951), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4049), - [sym_expr_parenthesized] = STATE(3719), - [sym_val_range] = STATE(3670), - [sym__val_range] = STATE(7523), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(3742), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3557), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(7952), - [sym__unquoted_anonymous_prefix] = STATE(7978), [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3209), - [anon_sym_DOT_DOT_LT] = ACTIONS(3209), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3211), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [aux_sym_ctrl_match_token1] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym__] = ACTIONS(962), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [aux_sym_expr_binary_token1] = ACTIONS(964), + [aux_sym_expr_binary_token2] = ACTIONS(964), + [aux_sym_expr_binary_token3] = ACTIONS(964), + [aux_sym_expr_binary_token4] = ACTIONS(964), + [aux_sym_expr_binary_token5] = ACTIONS(964), + [aux_sym_expr_binary_token6] = ACTIONS(964), + [aux_sym_expr_binary_token7] = ACTIONS(964), + [aux_sym_expr_binary_token8] = ACTIONS(964), + [aux_sym_expr_binary_token9] = ACTIONS(964), + [aux_sym_expr_binary_token10] = ACTIONS(964), + [aux_sym_expr_binary_token11] = ACTIONS(964), + [aux_sym_expr_binary_token12] = ACTIONS(964), + [aux_sym_expr_binary_token13] = ACTIONS(964), + [aux_sym_expr_binary_token14] = ACTIONS(964), + [aux_sym_expr_binary_token15] = ACTIONS(964), + [aux_sym_expr_binary_token16] = ACTIONS(964), + [aux_sym_expr_binary_token17] = ACTIONS(964), + [aux_sym_expr_binary_token18] = ACTIONS(964), + [aux_sym_expr_binary_token19] = ACTIONS(964), + [aux_sym_expr_binary_token20] = ACTIONS(964), + [aux_sym_expr_binary_token21] = ACTIONS(964), + [aux_sym_expr_binary_token22] = ACTIONS(964), + [aux_sym_expr_binary_token23] = ACTIONS(964), + [aux_sym_expr_binary_token24] = ACTIONS(964), + [aux_sym_expr_binary_token25] = ACTIONS(964), + [aux_sym_expr_binary_token26] = ACTIONS(964), + [aux_sym_expr_binary_token27] = ACTIONS(964), + [aux_sym_expr_binary_token28] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(962), + [anon_sym_0x] = ACTIONS(962), + [sym_val_date] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), }, [988] = { - [sym__expr_parenthesized_immediate] = STATE(7895), + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3235), - [aux_sym_cmd_identifier_token39] = ACTIONS(3235), - [aux_sym_cmd_identifier_token40] = ACTIONS(3235), - [sym__newline] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_COMMA] = ACTIONS(3235), - [anon_sym_DOLLAR] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_in] = ACTIONS(3237), - [aux_sym_ctrl_match_token1] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym__] = ACTIONS(3237), - [anon_sym_DOT_DOT] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_and] = ACTIONS(3235), - [anon_sym_xor] = ACTIONS(3235), - [anon_sym_or] = ACTIONS(3235), - [anon_sym_not_DASHin] = ACTIONS(3235), - [anon_sym_starts_DASHwith] = ACTIONS(3235), - [anon_sym_ends_DASHwith] = ACTIONS(3235), - [anon_sym_EQ_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_LT2] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3235), - [anon_sym_GT_EQ] = ACTIONS(3235), - [anon_sym_EQ_TILDE] = ACTIONS(3235), - [anon_sym_BANG_TILDE] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_mod] = ACTIONS(3235), - [anon_sym_SLASH_SLASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_bit_DASHshl] = ACTIONS(3235), - [anon_sym_bit_DASHshr] = ACTIONS(3235), - [anon_sym_bit_DASHand] = ACTIONS(3235), - [anon_sym_bit_DASHxor] = ACTIONS(3235), - [anon_sym_bit_DASHor] = ACTIONS(3235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3235), - [anon_sym_DOT_DOT_LT] = ACTIONS(3235), - [aux_sym__val_number_decimal_token1] = ACTIONS(3237), - [aux_sym__val_number_decimal_token2] = ACTIONS(3235), - [anon_sym_DOT2] = ACTIONS(3237), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(3235), - [aux_sym__val_number_token2] = ACTIONS(3235), - [aux_sym__val_number_token3] = ACTIONS(3235), - [anon_sym_0b] = ACTIONS(3237), - [anon_sym_0o] = ACTIONS(3237), - [anon_sym_0x] = ACTIONS(3237), - [sym_val_date] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [sym__str_single_quotes] = ACTIONS(3235), - [sym__str_back_ticks] = ACTIONS(3235), - [anon_sym_err_GT] = ACTIONS(3237), - [anon_sym_out_GT] = ACTIONS(3237), - [anon_sym_e_GT] = ACTIONS(3237), - [anon_sym_o_GT] = ACTIONS(3237), - [anon_sym_err_PLUSout_GT] = ACTIONS(3237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3237), - [anon_sym_o_PLUSe_GT] = ACTIONS(3237), - [anon_sym_e_PLUSo_GT] = ACTIONS(3237), - [anon_sym_err_GT_GT] = ACTIONS(3235), - [anon_sym_out_GT_GT] = ACTIONS(3235), - [anon_sym_e_GT_GT] = ACTIONS(3235), - [anon_sym_o_GT_GT] = ACTIONS(3235), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3235), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3235), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3235), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3235), - [aux_sym_unquoted_token1] = ACTIONS(3237), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3263), + [anon_sym_false] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3263), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [sym__newline] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_COMMA] = ACTIONS(3263), + [anon_sym_DOLLAR] = ACTIONS(3263), + [aux_sym_ctrl_match_token1] = ACTIONS(3263), + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym__] = ACTIONS(3265), + [anon_sym_DOT_DOT] = ACTIONS(3265), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3263), + [aux_sym_expr_binary_token2] = ACTIONS(3263), + [aux_sym_expr_binary_token3] = ACTIONS(3263), + [aux_sym_expr_binary_token4] = ACTIONS(3263), + [aux_sym_expr_binary_token5] = ACTIONS(3263), + [aux_sym_expr_binary_token6] = ACTIONS(3263), + [aux_sym_expr_binary_token7] = ACTIONS(3263), + [aux_sym_expr_binary_token8] = ACTIONS(3263), + [aux_sym_expr_binary_token9] = ACTIONS(3263), + [aux_sym_expr_binary_token10] = ACTIONS(3263), + [aux_sym_expr_binary_token11] = ACTIONS(3263), + [aux_sym_expr_binary_token12] = ACTIONS(3263), + [aux_sym_expr_binary_token13] = ACTIONS(3263), + [aux_sym_expr_binary_token14] = ACTIONS(3263), + [aux_sym_expr_binary_token15] = ACTIONS(3263), + [aux_sym_expr_binary_token16] = ACTIONS(3263), + [aux_sym_expr_binary_token17] = ACTIONS(3263), + [aux_sym_expr_binary_token18] = ACTIONS(3263), + [aux_sym_expr_binary_token19] = ACTIONS(3263), + [aux_sym_expr_binary_token20] = ACTIONS(3263), + [aux_sym_expr_binary_token21] = ACTIONS(3263), + [aux_sym_expr_binary_token22] = ACTIONS(3263), + [aux_sym_expr_binary_token23] = ACTIONS(3263), + [aux_sym_expr_binary_token24] = ACTIONS(3263), + [aux_sym_expr_binary_token25] = ACTIONS(3263), + [aux_sym_expr_binary_token26] = ACTIONS(3263), + [aux_sym_expr_binary_token27] = ACTIONS(3263), + [aux_sym_expr_binary_token28] = ACTIONS(3263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [aux_sym__val_number_decimal_token1] = ACTIONS(3265), + [aux_sym__val_number_decimal_token2] = ACTIONS(3263), + [aux_sym__val_number_decimal_token3] = ACTIONS(3263), + [aux_sym__val_number_decimal_token4] = ACTIONS(3263), + [aux_sym__val_number_token1] = ACTIONS(3263), + [aux_sym__val_number_token2] = ACTIONS(3263), + [aux_sym__val_number_token3] = ACTIONS(3263), + [anon_sym_0b] = ACTIONS(3265), + [anon_sym_0o] = ACTIONS(3265), + [anon_sym_0x] = ACTIONS(3265), + [sym_val_date] = ACTIONS(3263), + [anon_sym_DQUOTE] = ACTIONS(3263), + [sym__str_single_quotes] = ACTIONS(3263), + [sym__str_back_ticks] = ACTIONS(3263), + [anon_sym_err_GT] = ACTIONS(3265), + [anon_sym_out_GT] = ACTIONS(3265), + [anon_sym_e_GT] = ACTIONS(3265), + [anon_sym_o_GT] = ACTIONS(3265), + [anon_sym_err_PLUSout_GT] = ACTIONS(3265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3265), + [anon_sym_o_PLUSe_GT] = ACTIONS(3265), + [anon_sym_e_PLUSo_GT] = ACTIONS(3265), + [anon_sym_err_GT_GT] = ACTIONS(3263), + [anon_sym_out_GT_GT] = ACTIONS(3263), + [anon_sym_e_GT_GT] = ACTIONS(3263), + [anon_sym_o_GT_GT] = ACTIONS(3263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3263), + [aux_sym_unquoted_token1] = ACTIONS(3265), + [anon_sym_POUND] = ACTIONS(247), }, [989] = { [sym_comment] = STATE(989), - [anon_sym_true] = ACTIONS(3239), - [anon_sym_false] = ACTIONS(3239), - [anon_sym_null] = ACTIONS(3239), - [aux_sym_cmd_identifier_token38] = ACTIONS(3239), - [aux_sym_cmd_identifier_token39] = ACTIONS(3239), - [aux_sym_cmd_identifier_token40] = ACTIONS(3239), - [sym__newline] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_in] = ACTIONS(3239), - [aux_sym_ctrl_match_token1] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym__] = ACTIONS(3239), - [anon_sym_DOT_DOT] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_and] = ACTIONS(3239), - [anon_sym_xor] = ACTIONS(3239), - [anon_sym_or] = ACTIONS(3239), - [anon_sym_not_DASHin] = ACTIONS(3239), - [anon_sym_starts_DASHwith] = ACTIONS(3239), - [anon_sym_ends_DASHwith] = ACTIONS(3239), - [anon_sym_EQ_EQ] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_LT2] = ACTIONS(3239), - [anon_sym_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_EQ] = ACTIONS(3239), - [anon_sym_EQ_TILDE] = ACTIONS(3239), - [anon_sym_BANG_TILDE] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_STAR_STAR] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_mod] = ACTIONS(3239), - [anon_sym_SLASH_SLASH] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_bit_DASHshl] = ACTIONS(3239), - [anon_sym_bit_DASHshr] = ACTIONS(3239), - [anon_sym_bit_DASHand] = ACTIONS(3239), - [anon_sym_bit_DASHxor] = ACTIONS(3239), - [anon_sym_bit_DASHor] = ACTIONS(3239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3239), - [anon_sym_DOT_DOT_LT] = ACTIONS(3239), - [aux_sym__val_number_decimal_token1] = ACTIONS(3239), - [aux_sym__val_number_decimal_token2] = ACTIONS(3239), - [anon_sym_DOT2] = ACTIONS(3239), - [aux_sym__val_number_decimal_token3] = ACTIONS(3239), - [aux_sym__val_number_token1] = ACTIONS(3239), - [aux_sym__val_number_token2] = ACTIONS(3239), - [aux_sym__val_number_token3] = ACTIONS(3239), - [anon_sym_0b] = ACTIONS(3239), - [anon_sym_0o] = ACTIONS(3239), - [anon_sym_0x] = ACTIONS(3239), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [sym__str_single_quotes] = ACTIONS(3239), - [sym__str_back_ticks] = ACTIONS(3239), - [anon_sym_err_GT] = ACTIONS(3239), - [anon_sym_out_GT] = ACTIONS(3239), - [anon_sym_e_GT] = ACTIONS(3239), - [anon_sym_o_GT] = ACTIONS(3239), - [anon_sym_err_PLUSout_GT] = ACTIONS(3239), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3239), - [anon_sym_o_PLUSe_GT] = ACTIONS(3239), - [anon_sym_e_PLUSo_GT] = ACTIONS(3239), - [anon_sym_err_GT_GT] = ACTIONS(3239), - [anon_sym_out_GT_GT] = ACTIONS(3239), - [anon_sym_e_GT_GT] = ACTIONS(3239), - [anon_sym_o_GT_GT] = ACTIONS(3239), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3239), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3239), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3239), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3239), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [aux_sym_unquoted_token3] = ACTIONS(3243), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [aux_sym_cmd_identifier_token38] = ACTIONS(2097), + [aux_sym_cmd_identifier_token39] = ACTIONS(2097), + [aux_sym_cmd_identifier_token40] = ACTIONS(2097), + [sym__newline] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2097), + [aux_sym_ctrl_match_token1] = ACTIONS(2101), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym__] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_LPAREN2] = ACTIONS(2099), + [aux_sym_expr_binary_token1] = ACTIONS(2101), + [aux_sym_expr_binary_token2] = ACTIONS(2101), + [aux_sym_expr_binary_token3] = ACTIONS(2101), + [aux_sym_expr_binary_token4] = ACTIONS(2101), + [aux_sym_expr_binary_token5] = ACTIONS(2101), + [aux_sym_expr_binary_token6] = ACTIONS(2101), + [aux_sym_expr_binary_token7] = ACTIONS(2101), + [aux_sym_expr_binary_token8] = ACTIONS(2101), + [aux_sym_expr_binary_token9] = ACTIONS(2101), + [aux_sym_expr_binary_token10] = ACTIONS(2101), + [aux_sym_expr_binary_token11] = ACTIONS(2101), + [aux_sym_expr_binary_token12] = ACTIONS(2101), + [aux_sym_expr_binary_token13] = ACTIONS(2101), + [aux_sym_expr_binary_token14] = ACTIONS(2101), + [aux_sym_expr_binary_token15] = ACTIONS(2101), + [aux_sym_expr_binary_token16] = ACTIONS(2101), + [aux_sym_expr_binary_token17] = ACTIONS(2101), + [aux_sym_expr_binary_token18] = ACTIONS(2101), + [aux_sym_expr_binary_token19] = ACTIONS(2101), + [aux_sym_expr_binary_token20] = ACTIONS(2101), + [aux_sym_expr_binary_token21] = ACTIONS(2101), + [aux_sym_expr_binary_token22] = ACTIONS(2101), + [aux_sym_expr_binary_token23] = ACTIONS(2101), + [aux_sym_expr_binary_token24] = ACTIONS(2101), + [aux_sym_expr_binary_token25] = ACTIONS(2101), + [aux_sym_expr_binary_token26] = ACTIONS(2101), + [aux_sym_expr_binary_token27] = ACTIONS(2101), + [aux_sym_expr_binary_token28] = ACTIONS(2101), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), + [anon_sym_DOT_DOT_LT] = ACTIONS(2097), + [aux_sym__val_number_decimal_token1] = ACTIONS(2097), + [aux_sym__val_number_decimal_token2] = ACTIONS(2097), + [aux_sym__val_number_decimal_token3] = ACTIONS(2097), + [aux_sym__val_number_decimal_token4] = ACTIONS(2097), + [aux_sym__val_number_token1] = ACTIONS(2097), + [aux_sym__val_number_token2] = ACTIONS(2097), + [aux_sym__val_number_token3] = ACTIONS(2097), + [anon_sym_0b] = ACTIONS(2097), + [anon_sym_0o] = ACTIONS(2097), + [anon_sym_0x] = ACTIONS(2097), + [sym_val_date] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2101), + [sym__str_single_quotes] = ACTIONS(2101), + [sym__str_back_ticks] = ACTIONS(2101), + [anon_sym_err_GT] = ACTIONS(2097), + [anon_sym_out_GT] = ACTIONS(2097), + [anon_sym_e_GT] = ACTIONS(2097), + [anon_sym_o_GT] = ACTIONS(2097), + [anon_sym_err_PLUSout_GT] = ACTIONS(2097), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2097), + [anon_sym_o_PLUSe_GT] = ACTIONS(2097), + [anon_sym_e_PLUSo_GT] = ACTIONS(2097), + [anon_sym_err_GT_GT] = ACTIONS(2097), + [anon_sym_out_GT_GT] = ACTIONS(2097), + [anon_sym_e_GT_GT] = ACTIONS(2097), + [anon_sym_o_GT_GT] = ACTIONS(2097), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2097), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2097), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2097), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2097), + [aux_sym_unquoted_token1] = ACTIONS(2097), + [aux_sym_unquoted_token4] = ACTIONS(2103), + [anon_sym_POUND] = ACTIONS(3), }, [990] = { - [sym__expr_parenthesized_immediate] = STATE(7563), [sym_comment] = STATE(990), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [aux_sym_cmd_identifier_token38] = ACTIONS(2105), + [aux_sym_cmd_identifier_token39] = ACTIONS(2105), + [aux_sym_cmd_identifier_token40] = ACTIONS(2105), + [sym__newline] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2105), + [aux_sym_ctrl_match_token1] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym__] = ACTIONS(2105), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(2099), + [aux_sym_expr_binary_token1] = ACTIONS(2107), + [aux_sym_expr_binary_token2] = ACTIONS(2107), + [aux_sym_expr_binary_token3] = ACTIONS(2107), + [aux_sym_expr_binary_token4] = ACTIONS(2107), + [aux_sym_expr_binary_token5] = ACTIONS(2107), + [aux_sym_expr_binary_token6] = ACTIONS(2107), + [aux_sym_expr_binary_token7] = ACTIONS(2107), + [aux_sym_expr_binary_token8] = ACTIONS(2107), + [aux_sym_expr_binary_token9] = ACTIONS(2107), + [aux_sym_expr_binary_token10] = ACTIONS(2107), + [aux_sym_expr_binary_token11] = ACTIONS(2107), + [aux_sym_expr_binary_token12] = ACTIONS(2107), + [aux_sym_expr_binary_token13] = ACTIONS(2107), + [aux_sym_expr_binary_token14] = ACTIONS(2107), + [aux_sym_expr_binary_token15] = ACTIONS(2107), + [aux_sym_expr_binary_token16] = ACTIONS(2107), + [aux_sym_expr_binary_token17] = ACTIONS(2107), + [aux_sym_expr_binary_token18] = ACTIONS(2107), + [aux_sym_expr_binary_token19] = ACTIONS(2107), + [aux_sym_expr_binary_token20] = ACTIONS(2107), + [aux_sym_expr_binary_token21] = ACTIONS(2107), + [aux_sym_expr_binary_token22] = ACTIONS(2107), + [aux_sym_expr_binary_token23] = ACTIONS(2107), + [aux_sym_expr_binary_token24] = ACTIONS(2107), + [aux_sym_expr_binary_token25] = ACTIONS(2107), + [aux_sym_expr_binary_token26] = ACTIONS(2107), + [aux_sym_expr_binary_token27] = ACTIONS(2107), + [aux_sym_expr_binary_token28] = ACTIONS(2107), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), + [anon_sym_DOT_DOT_LT] = ACTIONS(2105), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2105), + [aux_sym__val_number_decimal_token3] = ACTIONS(2105), + [aux_sym__val_number_decimal_token4] = ACTIONS(2105), + [aux_sym__val_number_token1] = ACTIONS(2105), + [aux_sym__val_number_token2] = ACTIONS(2105), + [aux_sym__val_number_token3] = ACTIONS(2105), + [anon_sym_0b] = ACTIONS(2105), + [anon_sym_0o] = ACTIONS(2105), + [anon_sym_0x] = ACTIONS(2105), + [sym_val_date] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2107), + [sym__str_single_quotes] = ACTIONS(2107), + [sym__str_back_ticks] = ACTIONS(2107), + [anon_sym_err_GT] = ACTIONS(2105), + [anon_sym_out_GT] = ACTIONS(2105), + [anon_sym_e_GT] = ACTIONS(2105), + [anon_sym_o_GT] = ACTIONS(2105), + [anon_sym_err_PLUSout_GT] = ACTIONS(2105), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), + [anon_sym_o_PLUSe_GT] = ACTIONS(2105), + [anon_sym_e_PLUSo_GT] = ACTIONS(2105), + [anon_sym_err_GT_GT] = ACTIONS(2105), + [anon_sym_out_GT_GT] = ACTIONS(2105), + [anon_sym_e_GT_GT] = ACTIONS(2105), + [anon_sym_o_GT_GT] = ACTIONS(2105), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2105), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2105), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2105), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2105), + [aux_sym_unquoted_token1] = ACTIONS(2105), + [aux_sym_unquoted_token4] = ACTIONS(2103), [anon_sym_POUND] = ACTIONS(3), }, [991] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2469), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1699), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(7221), [sym_comment] = STATE(991), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_null] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [sym__newline] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [aux_sym_ctrl_match_token1] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym__] = ACTIONS(970), + [anon_sym_DOT_DOT] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(3267), + [aux_sym_expr_binary_token1] = ACTIONS(972), + [aux_sym_expr_binary_token2] = ACTIONS(972), + [aux_sym_expr_binary_token3] = ACTIONS(972), + [aux_sym_expr_binary_token4] = ACTIONS(972), + [aux_sym_expr_binary_token5] = ACTIONS(972), + [aux_sym_expr_binary_token6] = ACTIONS(972), + [aux_sym_expr_binary_token7] = ACTIONS(972), + [aux_sym_expr_binary_token8] = ACTIONS(972), + [aux_sym_expr_binary_token9] = ACTIONS(972), + [aux_sym_expr_binary_token10] = ACTIONS(972), + [aux_sym_expr_binary_token11] = ACTIONS(972), + [aux_sym_expr_binary_token12] = ACTIONS(972), + [aux_sym_expr_binary_token13] = ACTIONS(972), + [aux_sym_expr_binary_token14] = ACTIONS(972), + [aux_sym_expr_binary_token15] = ACTIONS(972), + [aux_sym_expr_binary_token16] = ACTIONS(972), + [aux_sym_expr_binary_token17] = ACTIONS(972), + [aux_sym_expr_binary_token18] = ACTIONS(972), + [aux_sym_expr_binary_token19] = ACTIONS(972), + [aux_sym_expr_binary_token20] = ACTIONS(972), + [aux_sym_expr_binary_token21] = ACTIONS(972), + [aux_sym_expr_binary_token22] = ACTIONS(972), + [aux_sym_expr_binary_token23] = ACTIONS(972), + [aux_sym_expr_binary_token24] = ACTIONS(972), + [aux_sym_expr_binary_token25] = ACTIONS(972), + [aux_sym_expr_binary_token26] = ACTIONS(972), + [aux_sym_expr_binary_token27] = ACTIONS(972), + [aux_sym_expr_binary_token28] = ACTIONS(972), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [anon_sym_DOT_DOT_LT] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [anon_sym_0b] = ACTIONS(970), + [anon_sym_0o] = ACTIONS(970), + [anon_sym_0x] = ACTIONS(970), + [sym_val_date] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [aux_sym_unquoted_token1] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), }, [992] = { - [sym__expression] = STATE(7699), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4049), - [sym_expr_parenthesized] = STATE(3719), - [sym_val_range] = STATE(3670), - [sym__val_range] = STATE(7523), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(3742), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3557), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(7881), - [sym__unquoted_anonymous_prefix] = STATE(7978), + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(992), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3209), - [anon_sym_DOT_DOT_LT] = ACTIONS(3209), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3211), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [993] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2555), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2179), - [sym__unquoted_with_expr] = STATE(2559), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym_ctrl_do] = STATE(5042), + [sym_ctrl_if] = STATE(5042), + [sym_ctrl_match] = STATE(5042), + [sym_ctrl_try] = STATE(5042), + [sym__expression] = STATE(5042), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4073), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(2941), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), [sym_comment] = STATE(993), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(439), + [aux_sym_cmd_identifier_token39] = ACTIONS(439), + [aux_sym_cmd_identifier_token40] = ACTIONS(439), + [sym__newline] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_err_GT_PIPE] = ACTIONS(3249), + [anon_sym_out_GT_PIPE] = ACTIONS(3249), + [anon_sym_e_GT_PIPE] = ACTIONS(3249), + [anon_sym_o_GT_PIPE] = ACTIONS(3249), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3249), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3249), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3249), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3255), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_record_entry_token1] = ACTIONS(3269), + [anon_sym_POUND] = ACTIONS(247), }, [994] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2562), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2181), - [sym__unquoted_with_expr] = STATE(2565), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(994), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [995] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3319), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1731), - [sym__unquoted_with_expr] = STATE(2057), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym__expression] = STATE(7743), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4067), + [sym_expr_parenthesized] = STATE(3761), + [sym_val_range] = STATE(3727), + [sym__val_range] = STATE(8049), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(3758), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3697), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(7744), + [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(995), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3217), + [aux_sym_cmd_identifier_token39] = ACTIONS(3217), + [aux_sym_cmd_identifier_token40] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3223), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3227), + [anon_sym_DOT_DOT_LT] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_record_entry_token1] = ACTIONS(3269), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(247), }, [996] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3320), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1734), - [sym__unquoted_with_expr] = STATE(2058), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_ctrl_do] = STATE(5042), + [sym_ctrl_if] = STATE(5042), + [sym_ctrl_match] = STATE(5042), + [sym_ctrl_try] = STATE(5042), + [sym__expression] = STATE(5042), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4073), + [sym_expr_parenthesized] = STATE(1540), + [sym_val_range] = STATE(3727), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(1734), + [sym_val_variable] = STATE(1541), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(2941), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), [sym_comment] = STATE(996), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(439), + [aux_sym_cmd_identifier_token39] = ACTIONS(439), + [aux_sym_cmd_identifier_token40] = ACTIONS(439), + [sym__newline] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_err_GT_PIPE] = ACTIONS(3249), + [anon_sym_out_GT_PIPE] = ACTIONS(3249), + [anon_sym_e_GT_PIPE] = ACTIONS(3249), + [anon_sym_o_GT_PIPE] = ACTIONS(3249), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3249), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3249), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3249), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3249), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(3249), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3255), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(431), + [aux_sym__val_number_decimal_token2] = ACTIONS(433), + [aux_sym__val_number_decimal_token3] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(437), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_POUND] = ACTIONS(247), }, [997] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2566), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2182), - [sym__unquoted_with_expr] = STATE(2569), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym__expr_parenthesized_immediate] = STATE(7597), [sym_comment] = STATE(997), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [998] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2570), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2183), - [sym__unquoted_with_expr] = STATE(2481), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(998), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), - }, - [999] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2482), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2186), - [sym__unquoted_with_expr] = STATE(2486), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(999), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), - }, - [1000] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3444), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2179), - [sym__unquoted_with_expr] = STATE(2559), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1000), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2629), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2257), + [sym__unquoted_with_expr] = STATE(2540), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(998), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -173554,161 +178781,1538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), + }, + [999] = { + [sym__expression] = STATE(7990), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4067), + [sym_expr_parenthesized] = STATE(3761), + [sym_val_range] = STATE(3727), + [sym__val_range] = STATE(8049), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(3758), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3697), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(7924), + [sym__unquoted_anonymous_prefix] = STATE(7765), + [sym_comment] = STATE(999), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3217), + [aux_sym_cmd_identifier_token39] = ACTIONS(3217), + [aux_sym_cmd_identifier_token40] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3223), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3227), + [anon_sym_DOT_DOT_LT] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(247), + }, + [1000] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(1748), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1749), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1000), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1001] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3445), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2181), - [sym__unquoted_with_expr] = STATE(2565), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4019), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1588), + [sym__unquoted_with_expr] = STATE(1772), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1001), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1002] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3446), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2182), - [sym__unquoted_with_expr] = STATE(2569), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4037), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1596), + [sym__unquoted_with_expr] = STATE(1773), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1002), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1003] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4039), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1535), + [sym__unquoted_with_expr] = STATE(1777), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1003), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1004] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4045), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1571), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1004), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1005] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4042), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1537), + [sym__unquoted_with_expr] = STATE(1803), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1005), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1006] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4031), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1595), + [sym__unquoted_with_expr] = STATE(1805), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1006), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1007] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4034), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1806), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1007), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1008] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4043), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1532), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1008), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1009] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4044), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1573), + [sym__unquoted_with_expr] = STATE(1811), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1009), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1010] = { + [sym_comment] = STATE(1010), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [aux_sym_cmd_identifier_token38] = ACTIONS(1537), + [aux_sym_cmd_identifier_token39] = ACTIONS(1537), + [aux_sym_cmd_identifier_token40] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_COMMA] = ACTIONS(1537), + [anon_sym_DOLLAR] = ACTIONS(1537), + [aux_sym_ctrl_match_token1] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym__] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [aux_sym_expr_binary_token1] = ACTIONS(1537), + [aux_sym_expr_binary_token2] = ACTIONS(1537), + [aux_sym_expr_binary_token3] = ACTIONS(1537), + [aux_sym_expr_binary_token4] = ACTIONS(1537), + [aux_sym_expr_binary_token5] = ACTIONS(1537), + [aux_sym_expr_binary_token6] = ACTIONS(1537), + [aux_sym_expr_binary_token7] = ACTIONS(1537), + [aux_sym_expr_binary_token8] = ACTIONS(1537), + [aux_sym_expr_binary_token9] = ACTIONS(1537), + [aux_sym_expr_binary_token10] = ACTIONS(1537), + [aux_sym_expr_binary_token11] = ACTIONS(1537), + [aux_sym_expr_binary_token12] = ACTIONS(1537), + [aux_sym_expr_binary_token13] = ACTIONS(1537), + [aux_sym_expr_binary_token14] = ACTIONS(1537), + [aux_sym_expr_binary_token15] = ACTIONS(1537), + [aux_sym_expr_binary_token16] = ACTIONS(1537), + [aux_sym_expr_binary_token17] = ACTIONS(1537), + [aux_sym_expr_binary_token18] = ACTIONS(1537), + [aux_sym_expr_binary_token19] = ACTIONS(1537), + [aux_sym_expr_binary_token20] = ACTIONS(1537), + [aux_sym_expr_binary_token21] = ACTIONS(1537), + [aux_sym_expr_binary_token22] = ACTIONS(1537), + [aux_sym_expr_binary_token23] = ACTIONS(1537), + [aux_sym_expr_binary_token24] = ACTIONS(1537), + [aux_sym_expr_binary_token25] = ACTIONS(1537), + [aux_sym_expr_binary_token26] = ACTIONS(1537), + [aux_sym_expr_binary_token27] = ACTIONS(1537), + [aux_sym_expr_binary_token28] = ACTIONS(1537), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), + [anon_sym_DOT_DOT_LT] = ACTIONS(1537), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1537), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), + [aux_sym__val_number_token1] = ACTIONS(1537), + [aux_sym__val_number_token2] = ACTIONS(1537), + [aux_sym__val_number_token3] = ACTIONS(1537), + [anon_sym_0b] = ACTIONS(1525), + [anon_sym_0o] = ACTIONS(1525), + [anon_sym_0x] = ACTIONS(1525), + [sym_val_date] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1537), + [sym__str_single_quotes] = ACTIONS(1537), + [sym__str_back_ticks] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [aux_sym_unquoted_token1] = ACTIONS(1525), + [aux_sym_unquoted_token2] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(247), + }, + [1011] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4018), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1516), + [sym__unquoted_with_expr] = STATE(1812), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1011), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1012] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4036), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1536), + [sym__unquoted_with_expr] = STATE(1794), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1012), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1013] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4032), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3643), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1545), + [sym__unquoted_with_expr] = STATE(1716), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1013), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3297), + [aux_sym_cmd_identifier_token39] = ACTIONS(3297), + [aux_sym_cmd_identifier_token40] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), + }, + [1014] = { + [sym_comment] = STATE(1014), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(996), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [aux_sym_ctrl_match_token1] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym__] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [aux_sym_expr_binary_token1] = ACTIONS(996), + [aux_sym_expr_binary_token2] = ACTIONS(996), + [aux_sym_expr_binary_token3] = ACTIONS(996), + [aux_sym_expr_binary_token4] = ACTIONS(996), + [aux_sym_expr_binary_token5] = ACTIONS(996), + [aux_sym_expr_binary_token6] = ACTIONS(996), + [aux_sym_expr_binary_token7] = ACTIONS(996), + [aux_sym_expr_binary_token8] = ACTIONS(996), + [aux_sym_expr_binary_token9] = ACTIONS(996), + [aux_sym_expr_binary_token10] = ACTIONS(996), + [aux_sym_expr_binary_token11] = ACTIONS(996), + [aux_sym_expr_binary_token12] = ACTIONS(996), + [aux_sym_expr_binary_token13] = ACTIONS(996), + [aux_sym_expr_binary_token14] = ACTIONS(996), + [aux_sym_expr_binary_token15] = ACTIONS(996), + [aux_sym_expr_binary_token16] = ACTIONS(996), + [aux_sym_expr_binary_token17] = ACTIONS(996), + [aux_sym_expr_binary_token18] = ACTIONS(996), + [aux_sym_expr_binary_token19] = ACTIONS(996), + [aux_sym_expr_binary_token20] = ACTIONS(996), + [aux_sym_expr_binary_token21] = ACTIONS(996), + [aux_sym_expr_binary_token22] = ACTIONS(996), + [aux_sym_expr_binary_token23] = ACTIONS(996), + [aux_sym_expr_binary_token24] = ACTIONS(996), + [aux_sym_expr_binary_token25] = ACTIONS(996), + [aux_sym_expr_binary_token26] = ACTIONS(996), + [aux_sym_expr_binary_token27] = ACTIONS(996), + [aux_sym_expr_binary_token28] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_DOT_DOT_LT] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + }, + [1015] = { + [sym_comment] = STATE(1015), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [sym__newline] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [aux_sym_ctrl_match_token1] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym__] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(986), + [aux_sym_expr_binary_token1] = ACTIONS(988), + [aux_sym_expr_binary_token2] = ACTIONS(988), + [aux_sym_expr_binary_token3] = ACTIONS(988), + [aux_sym_expr_binary_token4] = ACTIONS(988), + [aux_sym_expr_binary_token5] = ACTIONS(988), + [aux_sym_expr_binary_token6] = ACTIONS(988), + [aux_sym_expr_binary_token7] = ACTIONS(988), + [aux_sym_expr_binary_token8] = ACTIONS(988), + [aux_sym_expr_binary_token9] = ACTIONS(988), + [aux_sym_expr_binary_token10] = ACTIONS(988), + [aux_sym_expr_binary_token11] = ACTIONS(988), + [aux_sym_expr_binary_token12] = ACTIONS(988), + [aux_sym_expr_binary_token13] = ACTIONS(988), + [aux_sym_expr_binary_token14] = ACTIONS(988), + [aux_sym_expr_binary_token15] = ACTIONS(988), + [aux_sym_expr_binary_token16] = ACTIONS(988), + [aux_sym_expr_binary_token17] = ACTIONS(988), + [aux_sym_expr_binary_token18] = ACTIONS(988), + [aux_sym_expr_binary_token19] = ACTIONS(988), + [aux_sym_expr_binary_token20] = ACTIONS(988), + [aux_sym_expr_binary_token21] = ACTIONS(988), + [aux_sym_expr_binary_token22] = ACTIONS(988), + [aux_sym_expr_binary_token23] = ACTIONS(988), + [aux_sym_expr_binary_token24] = ACTIONS(988), + [aux_sym_expr_binary_token25] = ACTIONS(988), + [aux_sym_expr_binary_token26] = ACTIONS(988), + [aux_sym_expr_binary_token27] = ACTIONS(988), + [aux_sym_expr_binary_token28] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(986), + [anon_sym_0o] = ACTIONS(986), + [anon_sym_0x] = ACTIONS(986), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [aux_sym_unquoted_token1] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + }, + [1016] = { + [sym_comment] = STATE(1016), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(992), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [aux_sym_ctrl_match_token1] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym__] = ACTIONS(990), + [anon_sym_DOT_DOT] = ACTIONS(990), + [aux_sym_expr_binary_token1] = ACTIONS(992), + [aux_sym_expr_binary_token2] = ACTIONS(992), + [aux_sym_expr_binary_token3] = ACTIONS(992), + [aux_sym_expr_binary_token4] = ACTIONS(992), + [aux_sym_expr_binary_token5] = ACTIONS(992), + [aux_sym_expr_binary_token6] = ACTIONS(992), + [aux_sym_expr_binary_token7] = ACTIONS(992), + [aux_sym_expr_binary_token8] = ACTIONS(992), + [aux_sym_expr_binary_token9] = ACTIONS(992), + [aux_sym_expr_binary_token10] = ACTIONS(992), + [aux_sym_expr_binary_token11] = ACTIONS(992), + [aux_sym_expr_binary_token12] = ACTIONS(992), + [aux_sym_expr_binary_token13] = ACTIONS(992), + [aux_sym_expr_binary_token14] = ACTIONS(992), + [aux_sym_expr_binary_token15] = ACTIONS(992), + [aux_sym_expr_binary_token16] = ACTIONS(992), + [aux_sym_expr_binary_token17] = ACTIONS(992), + [aux_sym_expr_binary_token18] = ACTIONS(992), + [aux_sym_expr_binary_token19] = ACTIONS(992), + [aux_sym_expr_binary_token20] = ACTIONS(992), + [aux_sym_expr_binary_token21] = ACTIONS(992), + [aux_sym_expr_binary_token22] = ACTIONS(992), + [aux_sym_expr_binary_token23] = ACTIONS(992), + [aux_sym_expr_binary_token24] = ACTIONS(992), + [aux_sym_expr_binary_token25] = ACTIONS(992), + [aux_sym_expr_binary_token26] = ACTIONS(992), + [aux_sym_expr_binary_token27] = ACTIONS(992), + [aux_sym_expr_binary_token28] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), + }, + [1017] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2611), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2255), + [sym__unquoted_with_expr] = STATE(2621), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1017), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -173716,80 +180320,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1003] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3447), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2183), - [sym__unquoted_with_expr] = STATE(2481), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1003), + [1018] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2608), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2228), + [sym__unquoted_with_expr] = STATE(2574), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1018), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -173797,80 +180401,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1004] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3448), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2186), - [sym__unquoted_with_expr] = STATE(2486), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1004), + [1019] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2593), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2235), + [sym__unquoted_with_expr] = STATE(2548), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1019), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -173878,80 +180482,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1005] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3449), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2187), - [sym__unquoted_with_expr] = STATE(2488), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1005), + [1020] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2562), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2242), + [sym__unquoted_with_expr] = STATE(2579), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1020), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -173959,80 +180563,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1006] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3450), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2189), - [sym__unquoted_with_expr] = STATE(2492), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1006), + [1021] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2583), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2246), + [sym__unquoted_with_expr] = STATE(2586), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1021), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -174040,80 +180644,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1007] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3451), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2190), - [sym__unquoted_with_expr] = STATE(2495), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1007), + [1022] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2589), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2247), + [sym__unquoted_with_expr] = STATE(2600), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1022), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -174121,80 +180725,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1008] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2496), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2191), - [sym__unquoted_with_expr] = STATE(2498), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1008), + [1023] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2606), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2252), + [sym__unquoted_with_expr] = STATE(2612), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1023), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -174202,80 +180806,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1009] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3452), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2192), - [sym__unquoted_with_expr] = STATE(2501), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1009), + [1024] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2616), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2253), + [sym__unquoted_with_expr] = STATE(2545), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1024), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -174283,80 +180887,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1010] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3453), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2193), - [sym__unquoted_with_expr] = STATE(2504), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1010), + [1025] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2542), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2258), + [sym__unquoted_with_expr] = STATE(2550), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1025), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -174364,80 +180968,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1011] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3454), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2194), - [sym__unquoted_with_expr] = STATE(2508), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1011), + [1026] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2552), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2273), + [sym__unquoted_with_expr] = STATE(2554), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1026), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -174445,80 +181049,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1012] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(3455), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(3277), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3011), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2195), - [sym__unquoted_with_expr] = STATE(2511), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1012), + [1027] = { + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2558), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2274), + [sym__unquoted_with_expr] = STATE(2565), + [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_comment] = STATE(1027), [anon_sym_true] = ACTIONS(3271), [anon_sym_false] = ACTIONS(3271), [anon_sym_null] = ACTIONS(3273), @@ -174526,18924 +181130,18649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3275), [aux_sym_cmd_identifier_token40] = ACTIONS(3275), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3281), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [aux_sym__val_number_decimal_token1] = ACTIONS(3281), - [aux_sym__val_number_decimal_token2] = ACTIONS(3283), - [anon_sym_DOT2] = ACTIONS(3285), - [aux_sym__val_number_decimal_token3] = ACTIONS(3287), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3289), + [sym_val_date] = ACTIONS(3293), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), - }, - [1013] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3321), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1747), - [sym__unquoted_with_expr] = STATE(2059), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(1013), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [1014] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2060), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1755), - [sym__unquoted_with_expr] = STATE(2061), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(1014), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [1015] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3323), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1756), - [sym__unquoted_with_expr] = STATE(2062), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(1015), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [1016] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3324), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1728), - [sym__unquoted_with_expr] = STATE(2063), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(1016), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [1017] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3325), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(2064), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(1017), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [1018] = { - [sym_comment] = STATE(1018), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1441), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [sym__newline] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym__] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_and] = ACTIONS(1441), - [anon_sym_xor] = ACTIONS(1441), - [anon_sym_or] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1441), - [anon_sym_starts_DASHwith] = ACTIONS(1441), - [anon_sym_ends_DASHwith] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ_TILDE] = ACTIONS(1441), - [anon_sym_BANG_TILDE] = ACTIONS(1441), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_SLASH_SLASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_bit_DASHshl] = ACTIONS(1441), - [anon_sym_bit_DASHshr] = ACTIONS(1441), - [anon_sym_bit_DASHand] = ACTIONS(1441), - [anon_sym_bit_DASHxor] = ACTIONS(1441), - [anon_sym_bit_DASHor] = ACTIONS(1441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_DOT_DOT_LT] = ACTIONS(1441), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1429), - [anon_sym_0o] = ACTIONS(1429), - [anon_sym_0x] = ACTIONS(1429), - [sym_val_date] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1429), - [aux_sym_unquoted_token6] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(3), - }, - [1019] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3426), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1699), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(1019), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [1020] = { - [sym_comment] = STATE(1020), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [anon_sym_null] = ACTIONS(930), - [aux_sym_cmd_identifier_token38] = ACTIONS(930), - [aux_sym_cmd_identifier_token39] = ACTIONS(930), - [aux_sym_cmd_identifier_token40] = ACTIONS(930), - [sym__newline] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [aux_sym_ctrl_match_token1] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym__] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_and] = ACTIONS(930), - [anon_sym_xor] = ACTIONS(930), - [anon_sym_or] = ACTIONS(930), - [anon_sym_not_DASHin] = ACTIONS(930), - [anon_sym_starts_DASHwith] = ACTIONS(930), - [anon_sym_ends_DASHwith] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(930), - [anon_sym_BANG_EQ] = ACTIONS(930), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(930), - [anon_sym_GT_EQ] = ACTIONS(930), - [anon_sym_EQ_TILDE] = ACTIONS(930), - [anon_sym_BANG_TILDE] = ACTIONS(930), - [anon_sym_STAR_STAR] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(930), - [anon_sym_SLASH_SLASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(930), - [anon_sym_bit_DASHshr] = ACTIONS(930), - [anon_sym_bit_DASHand] = ACTIONS(930), - [anon_sym_bit_DASHxor] = ACTIONS(930), - [anon_sym_bit_DASHor] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(930), - [anon_sym_DOT_DOT_LT] = ACTIONS(930), - [aux_sym__val_number_decimal_token1] = ACTIONS(928), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [anon_sym_DOT2] = ACTIONS(928), - [aux_sym__val_number_decimal_token3] = ACTIONS(930), - [aux_sym__val_number_token1] = ACTIONS(930), - [aux_sym__val_number_token2] = ACTIONS(930), - [aux_sym__val_number_token3] = ACTIONS(930), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym__str_single_quotes] = ACTIONS(930), - [sym__str_back_ticks] = ACTIONS(930), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [anon_sym_err_GT_GT] = ACTIONS(930), - [anon_sym_out_GT_GT] = ACTIONS(930), - [anon_sym_e_GT_GT] = ACTIONS(930), - [anon_sym_o_GT_GT] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(930), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [1021] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3309), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1711), - [sym__unquoted_with_expr] = STATE(2051), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(1021), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [1022] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3313), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1715), - [sym__unquoted_with_expr] = STATE(2053), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(1022), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [1023] = { - [sym_comment] = STATE(1023), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [anon_sym_null] = ACTIONS(926), - [aux_sym_cmd_identifier_token38] = ACTIONS(926), - [aux_sym_cmd_identifier_token39] = ACTIONS(926), - [aux_sym_cmd_identifier_token40] = ACTIONS(926), - [sym__newline] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_in] = ACTIONS(924), - [aux_sym_ctrl_match_token1] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym__] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_and] = ACTIONS(926), - [anon_sym_xor] = ACTIONS(926), - [anon_sym_or] = ACTIONS(926), - [anon_sym_not_DASHin] = ACTIONS(926), - [anon_sym_starts_DASHwith] = ACTIONS(926), - [anon_sym_ends_DASHwith] = ACTIONS(926), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_EQ_TILDE] = ACTIONS(926), - [anon_sym_BANG_TILDE] = ACTIONS(926), - [anon_sym_STAR_STAR] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(926), - [anon_sym_SLASH_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(926), - [anon_sym_bit_DASHshr] = ACTIONS(926), - [anon_sym_bit_DASHand] = ACTIONS(926), - [anon_sym_bit_DASHxor] = ACTIONS(926), - [anon_sym_bit_DASHor] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(926), - [anon_sym_DOT_DOT_LT] = ACTIONS(926), - [aux_sym__val_number_decimal_token1] = ACTIONS(924), - [aux_sym__val_number_decimal_token2] = ACTIONS(926), - [anon_sym_DOT2] = ACTIONS(924), - [aux_sym__val_number_decimal_token3] = ACTIONS(926), - [aux_sym__val_number_token1] = ACTIONS(926), - [aux_sym__val_number_token2] = ACTIONS(926), - [aux_sym__val_number_token3] = ACTIONS(926), - [anon_sym_0b] = ACTIONS(924), - [anon_sym_0o] = ACTIONS(924), - [anon_sym_0x] = ACTIONS(924), - [sym_val_date] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym__str_single_quotes] = ACTIONS(926), - [sym__str_back_ticks] = ACTIONS(926), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [anon_sym_err_GT_GT] = ACTIONS(926), - [anon_sym_out_GT_GT] = ACTIONS(926), - [anon_sym_e_GT_GT] = ACTIONS(926), - [anon_sym_o_GT_GT] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(926), - [aux_sym_unquoted_token1] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(3), - }, - [1024] = { - [sym_comment] = STATE(1024), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_null] = ACTIONS(934), - [aux_sym_cmd_identifier_token38] = ACTIONS(934), - [aux_sym_cmd_identifier_token39] = ACTIONS(934), - [aux_sym_cmd_identifier_token40] = ACTIONS(934), - [sym__newline] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_in] = ACTIONS(932), - [aux_sym_ctrl_match_token1] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym__] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_and] = ACTIONS(934), - [anon_sym_xor] = ACTIONS(934), - [anon_sym_or] = ACTIONS(934), - [anon_sym_not_DASHin] = ACTIONS(934), - [anon_sym_starts_DASHwith] = ACTIONS(934), - [anon_sym_ends_DASHwith] = ACTIONS(934), - [anon_sym_EQ_EQ] = ACTIONS(934), - [anon_sym_BANG_EQ] = ACTIONS(934), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(934), - [anon_sym_EQ_TILDE] = ACTIONS(934), - [anon_sym_BANG_TILDE] = ACTIONS(934), - [anon_sym_STAR_STAR] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(934), - [anon_sym_SLASH_SLASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(934), - [anon_sym_bit_DASHshr] = ACTIONS(934), - [anon_sym_bit_DASHand] = ACTIONS(934), - [anon_sym_bit_DASHxor] = ACTIONS(934), - [anon_sym_bit_DASHor] = ACTIONS(934), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(934), - [anon_sym_DOT_DOT_LT] = ACTIONS(934), - [aux_sym__val_number_decimal_token1] = ACTIONS(932), - [aux_sym__val_number_decimal_token2] = ACTIONS(934), - [anon_sym_DOT2] = ACTIONS(932), - [aux_sym__val_number_decimal_token3] = ACTIONS(934), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_0b] = ACTIONS(932), - [anon_sym_0o] = ACTIONS(932), - [anon_sym_0x] = ACTIONS(932), - [sym_val_date] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym__str_single_quotes] = ACTIONS(934), - [sym__str_back_ticks] = ACTIONS(934), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [anon_sym_err_GT_GT] = ACTIONS(934), - [anon_sym_out_GT_GT] = ACTIONS(934), - [anon_sym_e_GT_GT] = ACTIONS(934), - [anon_sym_o_GT_GT] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(934), - [aux_sym_unquoted_token1] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, - [1025] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2493), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2190), - [sym__unquoted_with_expr] = STATE(2495), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1025), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), + [1028] = { + [sym_ctrl_do] = STATE(5373), + [sym_ctrl_if] = STATE(5373), + [sym_ctrl_match] = STATE(5373), + [sym_ctrl_try] = STATE(5373), + [sym__expression] = STATE(5373), + [sym_expr_unary] = STATE(2604), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2604), + [sym__expr_binary_expression] = STATE(4065), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(4062), + [sym__value] = STATE(2604), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2547), + [sym_val_variable] = STATE(2175), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3331), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_comment] = STATE(1028), + [ts_builtin_sym_end] = ACTIONS(3249), + [anon_sym_true] = ACTIONS(3309), + [anon_sym_false] = ACTIONS(3309), + [anon_sym_null] = ACTIONS(3311), + [aux_sym_cmd_identifier_token38] = ACTIONS(103), + [aux_sym_cmd_identifier_token39] = ACTIONS(103), + [aux_sym_cmd_identifier_token40] = ACTIONS(103), + [sym__newline] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_err_GT_PIPE] = ACTIONS(3249), + [anon_sym_out_GT_PIPE] = ACTIONS(3249), + [anon_sym_e_GT_PIPE] = ACTIONS(3249), + [anon_sym_o_GT_PIPE] = ACTIONS(3249), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3249), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3249), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3249), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3249), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(53), + [anon_sym_do] = ACTIONS(3313), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_match] = ACTIONS(3317), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(3319), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), + [sym_val_date] = ACTIONS(109), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [1026] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3314), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(2054), - [sym__unquoted_anonymous_prefix] = STATE(7221), - [sym_comment] = STATE(1026), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), + [1029] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(1748), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1749), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1029), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), - }, - [1027] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2572), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2187), - [sym__unquoted_with_expr] = STATE(2488), - [sym__unquoted_anonymous_prefix] = STATE(7067), - [sym_comment] = STATE(1027), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), - }, - [1028] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(4006), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3750), - [sym__unquoted_with_expr] = STATE(3982), - [sym__unquoted_anonymous_prefix] = STATE(6903), - [sym_comment] = STATE(1028), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), - }, - [1029] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(3944), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3716), - [sym__unquoted_with_expr] = STATE(3983), - [sym__unquoted_anonymous_prefix] = STATE(6903), - [sym_comment] = STATE(1029), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1030] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(3956), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3751), - [sym__unquoted_with_expr] = STATE(3984), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2439), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1588), + [sym__unquoted_with_expr] = STATE(1772), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1030), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1031] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4019), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1711), - [sym__unquoted_with_expr] = STATE(2051), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2440), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1596), + [sym__unquoted_with_expr] = STATE(1773), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1031), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1032] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4024), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1715), - [sym__unquoted_with_expr] = STATE(2053), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2441), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1535), + [sym__unquoted_with_expr] = STATE(1777), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1032), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1033] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4022), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(2054), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2442), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1571), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1033), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1034] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4034), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1725), - [sym__unquoted_with_expr] = STATE(2055), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1537), + [sym__unquoted_with_expr] = STATE(1803), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1034), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1035] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(3957), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3752), - [sym__unquoted_with_expr] = STATE(3986), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2444), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1595), + [sym__unquoted_with_expr] = STATE(1805), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1035), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1036] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(4004), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3753), - [sym__unquoted_with_expr] = STATE(3989), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2445), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1806), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1036), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1037] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4015), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1729), - [sym__unquoted_with_expr] = STATE(2056), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2446), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1532), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1037), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1038] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4014), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1731), - [sym__unquoted_with_expr] = STATE(2057), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2447), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1573), + [sym__unquoted_with_expr] = STATE(1811), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1038), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1039] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(3943), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3754), - [sym__unquoted_with_expr] = STATE(3991), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2448), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1516), + [sym__unquoted_with_expr] = STATE(1812), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1039), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1040] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4016), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1734), - [sym__unquoted_with_expr] = STATE(2058), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2449), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1536), + [sym__unquoted_with_expr] = STATE(1794), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1040), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1041] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4020), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1747), - [sym__unquoted_with_expr] = STATE(2059), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(2450), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(2178), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(1489), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1545), + [sym__unquoted_with_expr] = STATE(1716), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1041), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3321), + [anon_sym_false] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3323), + [aux_sym_cmd_identifier_token38] = ACTIONS(3325), + [aux_sym_cmd_identifier_token39] = ACTIONS(3325), + [aux_sym_cmd_identifier_token40] = ACTIONS(3325), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3331), + [aux_sym__val_number_decimal_token2] = ACTIONS(3333), + [aux_sym__val_number_decimal_token3] = ACTIONS(3335), + [aux_sym__val_number_decimal_token4] = ACTIONS(3337), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1042] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2060), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1755), - [sym__unquoted_with_expr] = STATE(2061), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2608), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2228), + [sym__unquoted_with_expr] = STATE(2574), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1042), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1043] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4025), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1756), - [sym__unquoted_with_expr] = STATE(2062), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3525), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2235), + [sym__unquoted_with_expr] = STATE(2548), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1043), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1044] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4026), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1728), - [sym__unquoted_with_expr] = STATE(2063), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3526), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2242), + [sym__unquoted_with_expr] = STATE(2579), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1044), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1045] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4027), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(2064), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3527), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2246), + [sym__unquoted_with_expr] = STATE(2586), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1045), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1046] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4029), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1711), - [sym__unquoted_with_expr] = STATE(2051), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3528), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2247), + [sym__unquoted_with_expr] = STATE(2600), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1046), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1047] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4031), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1715), - [sym__unquoted_with_expr] = STATE(2053), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3529), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2252), + [sym__unquoted_with_expr] = STATE(2612), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1047), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1048] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4032), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(2054), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3530), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2253), + [sym__unquoted_with_expr] = STATE(2545), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1048), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1049] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4033), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1725), - [sym__unquoted_with_expr] = STATE(2055), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3531), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2254), + [sym__unquoted_with_expr] = STATE(2596), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1049), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1050] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4038), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1729), - [sym__unquoted_with_expr] = STATE(2056), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3532), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2255), + [sym__unquoted_with_expr] = STATE(2621), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1050), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1051] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4013), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1731), - [sym__unquoted_with_expr] = STATE(2057), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3533), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2257), + [sym__unquoted_with_expr] = STATE(2540), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1051), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1052] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4011), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1734), - [sym__unquoted_with_expr] = STATE(2058), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3534), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2258), + [sym__unquoted_with_expr] = STATE(2550), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1052), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1053] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4028), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1747), - [sym__unquoted_with_expr] = STATE(2059), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3535), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2273), + [sym__unquoted_with_expr] = STATE(2554), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1053), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1054] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2060), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1755), - [sym__unquoted_with_expr] = STATE(2061), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(3536), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(3385), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2274), + [sym__unquoted_with_expr] = STATE(2565), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1054), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3341), + [anon_sym_false] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3343), + [aux_sym_cmd_identifier_token38] = ACTIONS(3345), + [aux_sym_cmd_identifier_token39] = ACTIONS(3345), + [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3347), + [aux_sym__val_number_decimal_token2] = ACTIONS(3349), + [aux_sym__val_number_decimal_token3] = ACTIONS(3351), + [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1055] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4012), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1756), - [sym__unquoted_with_expr] = STATE(2062), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(2564), + [sym__expr_unary_minus] = STATE(2610), + [sym_expr_binary] = STATE(2564), + [sym__expr_binary_expression] = STATE(2573), + [sym_expr_parenthesized] = STATE(2564), + [sym__val_range] = STATE(7911), + [sym__val_range_with_end] = STATE(7541), + [sym__value] = STATE(2564), + [sym_val_nothing] = STATE(2547), + [sym_val_bool] = STATE(2338), + [sym_val_variable] = STATE(2547), + [sym_val_number] = STATE(2547), + [sym__val_number_decimal] = STATE(1590), + [sym__val_number] = STATE(2603), + [sym_val_duration] = STATE(2547), + [sym_val_filesize] = STATE(2547), + [sym_val_binary] = STATE(2547), + [sym_val_string] = STATE(2547), + [sym__str_double_quotes] = STATE(2144), + [sym_val_interpolated] = STATE(2547), + [sym__inter_single_quotes] = STATE(2607), + [sym__inter_double_quotes] = STATE(2626), + [sym_val_list] = STATE(2547), + [sym_val_record] = STATE(2547), + [sym_val_table] = STATE(2547), + [sym_val_closure] = STATE(2547), + [sym_unquoted] = STATE(2254), + [sym__unquoted_with_expr] = STATE(2596), + [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1055), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3271), + [anon_sym_false] = ACTIONS(3271), + [anon_sym_null] = ACTIONS(3273), + [aux_sym_cmd_identifier_token38] = ACTIONS(3275), + [aux_sym_cmd_identifier_token39] = ACTIONS(3275), + [aux_sym_cmd_identifier_token40] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_LT] = ACTIONS(3283), + [aux_sym__val_number_decimal_token1] = ACTIONS(3285), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3289), + [aux_sym__val_number_decimal_token4] = ACTIONS(3291), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(247), }, [1056] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4017), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1728), - [sym__unquoted_with_expr] = STATE(2063), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(1748), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1749), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1056), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1057] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4021), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(2064), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3396), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1588), + [sym__unquoted_with_expr] = STATE(1772), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1057), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1058] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4023), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3833), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3523), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1699), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3397), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1596), + [sym__unquoted_with_expr] = STATE(1773), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1058), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_null] = ACTIONS(3341), - [aux_sym_cmd_identifier_token38] = ACTIONS(3343), - [aux_sym_cmd_identifier_token39] = ACTIONS(3343), - [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3345), + [anon_sym_DOT_DOT] = ACTIONS(3303), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_LT] = ACTIONS(3347), - [aux_sym__val_number_decimal_token1] = ACTIONS(3349), - [aux_sym__val_number_decimal_token2] = ACTIONS(3351), - [anon_sym_DOT2] = ACTIONS(3353), - [aux_sym__val_number_decimal_token3] = ACTIONS(3355), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1059] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1172), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(990), - [sym__unquoted_with_expr] = STATE(1161), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3398), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1535), + [sym__unquoted_with_expr] = STATE(1777), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1059), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1060] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1173), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(967), - [sym__unquoted_with_expr] = STATE(1140), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3399), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1571), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1060), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1061] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1174), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(975), - [sym__unquoted_with_expr] = STATE(1155), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3400), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1537), + [sym__unquoted_with_expr] = STATE(1803), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1061), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1062] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1175), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(985), - [sym__unquoted_with_expr] = STATE(1201), - [sym__unquoted_anonymous_prefix] = STATE(6927), [sym_comment] = STATE(1062), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_true] = ACTIONS(3373), + [anon_sym_false] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3373), + [aux_sym_cmd_identifier_token38] = ACTIONS(3373), + [aux_sym_cmd_identifier_token39] = ACTIONS(3373), + [aux_sym_cmd_identifier_token40] = ACTIONS(3373), + [sym__newline] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_COMMA] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3373), [aux_sym_ctrl_match_token1] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3375), [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3373), + [aux_sym_expr_binary_token1] = ACTIONS(3373), + [aux_sym_expr_binary_token2] = ACTIONS(3373), + [aux_sym_expr_binary_token3] = ACTIONS(3373), + [aux_sym_expr_binary_token4] = ACTIONS(3373), + [aux_sym_expr_binary_token5] = ACTIONS(3373), + [aux_sym_expr_binary_token6] = ACTIONS(3373), + [aux_sym_expr_binary_token7] = ACTIONS(3373), + [aux_sym_expr_binary_token8] = ACTIONS(3373), + [aux_sym_expr_binary_token9] = ACTIONS(3373), + [aux_sym_expr_binary_token10] = ACTIONS(3373), + [aux_sym_expr_binary_token11] = ACTIONS(3373), + [aux_sym_expr_binary_token12] = ACTIONS(3373), + [aux_sym_expr_binary_token13] = ACTIONS(3373), + [aux_sym_expr_binary_token14] = ACTIONS(3373), + [aux_sym_expr_binary_token15] = ACTIONS(3373), + [aux_sym_expr_binary_token16] = ACTIONS(3373), + [aux_sym_expr_binary_token17] = ACTIONS(3373), + [aux_sym_expr_binary_token18] = ACTIONS(3373), + [aux_sym_expr_binary_token19] = ACTIONS(3373), + [aux_sym_expr_binary_token20] = ACTIONS(3373), + [aux_sym_expr_binary_token21] = ACTIONS(3373), + [aux_sym_expr_binary_token22] = ACTIONS(3373), + [aux_sym_expr_binary_token23] = ACTIONS(3373), + [aux_sym_expr_binary_token24] = ACTIONS(3373), + [aux_sym_expr_binary_token25] = ACTIONS(3373), + [aux_sym_expr_binary_token26] = ACTIONS(3373), + [aux_sym_expr_binary_token27] = ACTIONS(3373), + [aux_sym_expr_binary_token28] = ACTIONS(3373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [aux_sym__val_number_decimal_token1] = ACTIONS(3375), + [aux_sym__val_number_decimal_token2] = ACTIONS(3373), + [aux_sym__val_number_decimal_token3] = ACTIONS(3373), + [aux_sym__val_number_decimal_token4] = ACTIONS(3373), + [aux_sym__val_number_token1] = ACTIONS(3373), + [aux_sym__val_number_token2] = ACTIONS(3373), + [aux_sym__val_number_token3] = ACTIONS(3373), + [anon_sym_0b] = ACTIONS(3375), + [anon_sym_0o] = ACTIONS(3375), + [anon_sym_0x] = ACTIONS(3375), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [sym__str_single_quotes] = ACTIONS(3373), + [sym__str_back_ticks] = ACTIONS(3373), + [anon_sym_err_GT] = ACTIONS(3375), + [anon_sym_out_GT] = ACTIONS(3375), + [anon_sym_e_GT] = ACTIONS(3375), + [anon_sym_o_GT] = ACTIONS(3375), + [anon_sym_err_PLUSout_GT] = ACTIONS(3375), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3375), + [anon_sym_o_PLUSe_GT] = ACTIONS(3375), + [anon_sym_e_PLUSo_GT] = ACTIONS(3375), + [anon_sym_err_GT_GT] = ACTIONS(3373), + [anon_sym_out_GT_GT] = ACTIONS(3373), + [anon_sym_e_GT_GT] = ACTIONS(3373), + [anon_sym_o_GT_GT] = ACTIONS(3373), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3373), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3373), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3373), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3373), + [aux_sym_unquoted_token1] = ACTIONS(3375), + [anon_sym_POUND] = ACTIONS(247), }, [1063] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1176), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(964), - [sym__unquoted_with_expr] = STATE(1149), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3402), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1806), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1063), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1064] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1178), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(971), - [sym__unquoted_with_expr] = STATE(1153), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3403), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1532), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1064), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1065] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1129), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(978), - [sym__unquoted_with_expr] = STATE(1119), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3404), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1573), + [sym__unquoted_with_expr] = STATE(1811), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1065), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1066] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1159), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(984), - [sym__unquoted_with_expr] = STATE(1160), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3405), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1516), + [sym__unquoted_with_expr] = STATE(1812), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1066), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1067] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1162), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(962), - [sym__unquoted_with_expr] = STATE(1164), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3406), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1536), + [sym__unquoted_with_expr] = STATE(1794), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1067), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1068] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1163), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(973), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3407), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1545), + [sym__unquoted_with_expr] = STATE(1716), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1068), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1069] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1185), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1124), - [sym__unquoted_anonymous_prefix] = STATE(6927), [sym_comment] = STATE(1069), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2239), + [anon_sym_false] = ACTIONS(2239), + [anon_sym_null] = ACTIONS(2239), + [aux_sym_cmd_identifier_token38] = ACTIONS(2239), + [aux_sym_cmd_identifier_token39] = ACTIONS(2239), + [aux_sym_cmd_identifier_token40] = ACTIONS(2239), + [sym__newline] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_DOLLAR] = ACTIONS(2239), + [aux_sym_ctrl_match_token1] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym__] = ACTIONS(2235), + [anon_sym_DOT_DOT] = ACTIONS(2235), + [aux_sym_expr_binary_token1] = ACTIONS(2239), + [aux_sym_expr_binary_token2] = ACTIONS(2239), + [aux_sym_expr_binary_token3] = ACTIONS(2239), + [aux_sym_expr_binary_token4] = ACTIONS(2239), + [aux_sym_expr_binary_token5] = ACTIONS(2239), + [aux_sym_expr_binary_token6] = ACTIONS(2239), + [aux_sym_expr_binary_token7] = ACTIONS(2239), + [aux_sym_expr_binary_token8] = ACTIONS(2239), + [aux_sym_expr_binary_token9] = ACTIONS(2239), + [aux_sym_expr_binary_token10] = ACTIONS(2239), + [aux_sym_expr_binary_token11] = ACTIONS(2239), + [aux_sym_expr_binary_token12] = ACTIONS(2239), + [aux_sym_expr_binary_token13] = ACTIONS(2239), + [aux_sym_expr_binary_token14] = ACTIONS(2239), + [aux_sym_expr_binary_token15] = ACTIONS(2239), + [aux_sym_expr_binary_token16] = ACTIONS(2239), + [aux_sym_expr_binary_token17] = ACTIONS(2239), + [aux_sym_expr_binary_token18] = ACTIONS(2239), + [aux_sym_expr_binary_token19] = ACTIONS(2239), + [aux_sym_expr_binary_token20] = ACTIONS(2239), + [aux_sym_expr_binary_token21] = ACTIONS(2239), + [aux_sym_expr_binary_token22] = ACTIONS(2239), + [aux_sym_expr_binary_token23] = ACTIONS(2239), + [aux_sym_expr_binary_token24] = ACTIONS(2239), + [aux_sym_expr_binary_token25] = ACTIONS(2239), + [aux_sym_expr_binary_token26] = ACTIONS(2239), + [aux_sym_expr_binary_token27] = ACTIONS(2239), + [aux_sym_expr_binary_token28] = ACTIONS(2239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2239), + [anon_sym_DOT_DOT_LT] = ACTIONS(2239), + [aux_sym__val_number_decimal_token1] = ACTIONS(2235), + [aux_sym__val_number_decimal_token2] = ACTIONS(2239), + [aux_sym__val_number_decimal_token3] = ACTIONS(2239), + [aux_sym__val_number_decimal_token4] = ACTIONS(2239), + [aux_sym__val_number_token1] = ACTIONS(2239), + [aux_sym__val_number_token2] = ACTIONS(2239), + [aux_sym__val_number_token3] = ACTIONS(2239), + [anon_sym_0b] = ACTIONS(2235), + [anon_sym_0o] = ACTIONS(2235), + [anon_sym_0x] = ACTIONS(2235), + [anon_sym_LBRACK2] = ACTIONS(3377), + [sym_val_date] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [sym__str_single_quotes] = ACTIONS(2239), + [sym__str_back_ticks] = ACTIONS(2239), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [anon_sym_err_GT_GT] = ACTIONS(2239), + [anon_sym_out_GT_GT] = ACTIONS(2239), + [anon_sym_e_GT_GT] = ACTIONS(2239), + [anon_sym_o_GT_GT] = ACTIONS(2239), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2239), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2239), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2239), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2239), + [aux_sym_unquoted_token1] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(247), }, [1070] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1127), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(963), - [sym__unquoted_with_expr] = STATE(1125), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(1748), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1749), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1070), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1071] = { - [sym_expr_unary] = STATE(1157), - [sym__expr_unary_minus] = STATE(1186), - [sym_expr_binary] = STATE(1157), - [sym__expr_binary_expression] = STATE(1128), - [sym_expr_parenthesized] = STATE(1157), - [sym__val_range] = STATE(7651), - [sym__val_range_with_end] = STATE(7617), - [sym__value] = STATE(1157), - [sym_val_nothing] = STATE(1136), - [sym_val_bool] = STATE(977), - [sym_val_variable] = STATE(1136), - [sym_val_number] = STATE(1136), - [sym__val_number_decimal] = STATE(689), - [sym__val_number] = STATE(1156), - [sym_val_duration] = STATE(1136), - [sym_val_filesize] = STATE(1136), - [sym_val_binary] = STATE(1136), - [sym_val_string] = STATE(1136), - [sym__str_double_quotes] = STATE(1131), - [sym_val_interpolated] = STATE(1136), - [sym__inter_single_quotes] = STATE(1146), - [sym__inter_double_quotes] = STATE(1150), - [sym_val_list] = STATE(1136), - [sym_val_record] = STATE(1136), - [sym_val_table] = STATE(1136), - [sym_val_closure] = STATE(1136), - [sym_unquoted] = STATE(969), - [sym__unquoted_with_expr] = STATE(1130), - [sym__unquoted_anonymous_prefix] = STATE(6927), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3921), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1588), + [sym__unquoted_with_expr] = STATE(1772), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1071), - [anon_sym_true] = ACTIONS(3359), - [anon_sym_false] = ACTIONS(3359), - [anon_sym_null] = ACTIONS(3361), - [aux_sym_cmd_identifier_token38] = ACTIONS(3363), - [aux_sym_cmd_identifier_token39] = ACTIONS(3363), - [aux_sym_cmd_identifier_token40] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3371), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [aux_sym__val_number_decimal_token1] = ACTIONS(3381), - [aux_sym__val_number_decimal_token2] = ACTIONS(3383), - [anon_sym_DOT2] = ACTIONS(3385), - [aux_sym__val_number_decimal_token3] = ACTIONS(3387), - [aux_sym__val_number_token1] = ACTIONS(3389), - [aux_sym__val_number_token2] = ACTIONS(3389), - [aux_sym__val_number_token3] = ACTIONS(3389), - [anon_sym_0b] = ACTIONS(3391), - [anon_sym_0o] = ACTIONS(3393), - [anon_sym_0x] = ACTIONS(3393), - [sym_val_date] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym__str_single_quotes] = ACTIONS(3399), - [sym__str_back_ticks] = ACTIONS(3399), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3401), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3403), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1072] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(4030), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3482), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1699), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3922), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1596), + [sym__unquoted_with_expr] = STATE(1773), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1072), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3098), - [aux_sym_cmd_identifier_token39] = ACTIONS(3098), - [aux_sym_cmd_identifier_token40] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3106), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3108), - [anon_sym_DOT_DOT_LT] = ACTIONS(3108), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3114), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1073] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(3945), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3755), - [sym__unquoted_with_expr] = STATE(3995), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3923), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1535), + [sym__unquoted_with_expr] = STATE(1777), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1073), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1074] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3900), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1711), - [sym__unquoted_with_expr] = STATE(2051), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3924), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1571), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1074), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1075] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3901), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1715), - [sym__unquoted_with_expr] = STATE(2053), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3925), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1537), + [sym__unquoted_with_expr] = STATE(1803), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1075), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1076] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3902), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(2054), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3926), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1595), + [sym__unquoted_with_expr] = STATE(1805), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1076), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1077] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3903), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1725), - [sym__unquoted_with_expr] = STATE(2055), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3927), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1806), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1077), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1078] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3904), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1729), - [sym__unquoted_with_expr] = STATE(2056), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3928), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1532), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1078), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1079] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3905), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1731), - [sym__unquoted_with_expr] = STATE(2057), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3929), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1573), + [sym__unquoted_with_expr] = STATE(1811), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1079), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1080] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3906), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1734), - [sym__unquoted_with_expr] = STATE(2058), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3930), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1516), + [sym__unquoted_with_expr] = STATE(1812), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1080), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1081] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3907), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1747), - [sym__unquoted_with_expr] = STATE(2059), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3931), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1536), + [sym__unquoted_with_expr] = STATE(1794), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1081), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1082] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2060), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1755), - [sym__unquoted_with_expr] = STATE(2061), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3932), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3751), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3561), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1545), + [sym__unquoted_with_expr] = STATE(1716), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1082), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [aux_sym_cmd_identifier_token38] = ACTIONS(3383), + [aux_sym_cmd_identifier_token39] = ACTIONS(3383), + [aux_sym_cmd_identifier_token40] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3389), + [aux_sym__val_number_decimal_token2] = ACTIONS(3391), + [aux_sym__val_number_decimal_token3] = ACTIONS(3393), + [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1083] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3908), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1756), - [sym__unquoted_with_expr] = STATE(2062), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(1748), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1749), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1083), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1084] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3909), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1728), - [sym__unquoted_with_expr] = STATE(2063), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4020), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1588), + [sym__unquoted_with_expr] = STATE(1772), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1084), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1085] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3910), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(2064), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4021), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1596), + [sym__unquoted_with_expr] = STATE(1773), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1085), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1086] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3911), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3706), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1699), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4022), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1535), + [sym__unquoted_with_expr] = STATE(1777), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1086), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [aux_sym_cmd_identifier_token38] = ACTIONS(3411), - [aux_sym_cmd_identifier_token39] = ACTIONS(3411), - [aux_sym_cmd_identifier_token40] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_LT] = ACTIONS(3415), - [aux_sym__val_number_decimal_token1] = ACTIONS(3417), - [aux_sym__val_number_decimal_token2] = ACTIONS(3419), - [anon_sym_DOT2] = ACTIONS(3421), - [aux_sym__val_number_decimal_token3] = ACTIONS(3423), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1087] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2496), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2191), - [sym__unquoted_with_expr] = STATE(2498), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4023), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1571), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1087), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1088] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(3948), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3756), - [sym__unquoted_with_expr] = STATE(3997), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4024), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1537), + [sym__unquoted_with_expr] = STATE(1803), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1088), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1089] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2499), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2192), - [sym__unquoted_with_expr] = STATE(2501), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4025), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1595), + [sym__unquoted_with_expr] = STATE(1805), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1089), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1090] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2502), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2193), - [sym__unquoted_with_expr] = STATE(2504), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4026), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1806), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1090), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1091] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(4001), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3760), - [sym__unquoted_with_expr] = STATE(4003), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4017), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1532), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1091), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1092] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(3950), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3761), - [sym__unquoted_with_expr] = STATE(4005), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4027), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1573), + [sym__unquoted_with_expr] = STATE(1811), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1092), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1093] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4028), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1516), + [sym__unquoted_with_expr] = STATE(1812), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1093), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym__] = ACTIONS(2927), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_and] = ACTIONS(2925), - [anon_sym_xor] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2925), - [anon_sym_starts_DASHwith] = ACTIONS(2925), - [anon_sym_ends_DASHwith] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_EQ_TILDE] = ACTIONS(2925), - [anon_sym_BANG_TILDE] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_STAR_STAR] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_bit_DASHshl] = ACTIONS(2925), - [anon_sym_bit_DASHshr] = ACTIONS(2925), - [anon_sym_bit_DASHand] = ACTIONS(2925), - [anon_sym_bit_DASHxor] = ACTIONS(2925), - [anon_sym_bit_DASHor] = ACTIONS(2925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2925), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2925), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1094] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2505), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2194), - [sym__unquoted_with_expr] = STATE(2508), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4029), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1536), + [sym__unquoted_with_expr] = STATE(1794), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1094), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1095] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2509), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2195), - [sym__unquoted_with_expr] = STATE(2511), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(4030), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3892), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3617), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1545), + [sym__unquoted_with_expr] = STATE(1716), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1095), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(3403), + [aux_sym_cmd_identifier_token39] = ACTIONS(3403), + [aux_sym_cmd_identifier_token40] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1096] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(3952), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3762), - [sym__unquoted_with_expr] = STATE(4007), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(1748), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1749), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1096), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1097] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3935), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1588), + [sym__unquoted_with_expr] = STATE(1772), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1097), - [anon_sym_true] = ACTIONS(2182), - [anon_sym_false] = ACTIONS(2182), - [anon_sym_null] = ACTIONS(2182), - [aux_sym_cmd_identifier_token38] = ACTIONS(2182), - [aux_sym_cmd_identifier_token39] = ACTIONS(2182), - [aux_sym_cmd_identifier_token40] = ACTIONS(2182), - [sym__newline] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_COMMA] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [aux_sym_ctrl_match_token1] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym__] = ACTIONS(2178), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_and] = ACTIONS(2182), - [anon_sym_xor] = ACTIONS(2182), - [anon_sym_or] = ACTIONS(2182), - [anon_sym_not_DASHin] = ACTIONS(2182), - [anon_sym_starts_DASHwith] = ACTIONS(2182), - [anon_sym_ends_DASHwith] = ACTIONS(2182), - [anon_sym_EQ_EQ] = ACTIONS(2182), - [anon_sym_BANG_EQ] = ACTIONS(2182), - [anon_sym_LT2] = ACTIONS(2178), - [anon_sym_LT_EQ] = ACTIONS(2182), - [anon_sym_GT_EQ] = ACTIONS(2182), - [anon_sym_EQ_TILDE] = ACTIONS(2182), - [anon_sym_BANG_TILDE] = ACTIONS(2182), - [anon_sym_STAR_STAR] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2178), - [anon_sym_mod] = ACTIONS(2182), - [anon_sym_SLASH_SLASH] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_bit_DASHshl] = ACTIONS(2182), - [anon_sym_bit_DASHshr] = ACTIONS(2182), - [anon_sym_bit_DASHand] = ACTIONS(2182), - [anon_sym_bit_DASHxor] = ACTIONS(2182), - [anon_sym_bit_DASHor] = ACTIONS(2182), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2178), - [aux_sym__val_number_decimal_token2] = ACTIONS(2182), - [anon_sym_DOT2] = ACTIONS(2178), - [aux_sym__val_number_decimal_token3] = ACTIONS(2182), - [aux_sym__val_number_token1] = ACTIONS(2182), - [aux_sym__val_number_token2] = ACTIONS(2182), - [aux_sym__val_number_token3] = ACTIONS(2182), - [anon_sym_0b] = ACTIONS(2178), - [anon_sym_0o] = ACTIONS(2178), - [anon_sym_0x] = ACTIONS(2178), - [anon_sym_LBRACK2] = ACTIONS(3427), - [sym_val_date] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [sym__str_single_quotes] = ACTIONS(2182), - [sym__str_back_ticks] = ACTIONS(2182), - [anon_sym_err_GT] = ACTIONS(2178), - [anon_sym_out_GT] = ACTIONS(2178), - [anon_sym_e_GT] = ACTIONS(2178), - [anon_sym_o_GT] = ACTIONS(2178), - [anon_sym_err_PLUSout_GT] = ACTIONS(2178), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2178), - [anon_sym_o_PLUSe_GT] = ACTIONS(2178), - [anon_sym_e_PLUSo_GT] = ACTIONS(2178), - [anon_sym_err_GT_GT] = ACTIONS(2182), - [anon_sym_out_GT_GT] = ACTIONS(2182), - [anon_sym_e_GT_GT] = ACTIONS(2182), - [anon_sym_o_GT_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2182), - [aux_sym_unquoted_token1] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1098] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3936), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1596), + [sym__unquoted_with_expr] = STATE(1773), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1098), - [anon_sym_true] = ACTIONS(3241), - [anon_sym_false] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3241), - [aux_sym_cmd_identifier_token38] = ACTIONS(3241), - [aux_sym_cmd_identifier_token39] = ACTIONS(3241), - [aux_sym_cmd_identifier_token40] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_in] = ACTIONS(3239), - [aux_sym_ctrl_match_token1] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym__] = ACTIONS(3239), - [anon_sym_DOT_DOT] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_and] = ACTIONS(3241), - [anon_sym_xor] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3241), - [anon_sym_not_DASHin] = ACTIONS(3241), - [anon_sym_starts_DASHwith] = ACTIONS(3241), - [anon_sym_ends_DASHwith] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT2] = ACTIONS(3239), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_EQ_TILDE] = ACTIONS(3241), - [anon_sym_BANG_TILDE] = ACTIONS(3241), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_STAR_STAR] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_mod] = ACTIONS(3241), - [anon_sym_SLASH_SLASH] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_bit_DASHshl] = ACTIONS(3241), - [anon_sym_bit_DASHshr] = ACTIONS(3241), - [anon_sym_bit_DASHand] = ACTIONS(3241), - [anon_sym_bit_DASHxor] = ACTIONS(3241), - [anon_sym_bit_DASHor] = ACTIONS(3241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3241), - [anon_sym_DOT_DOT_LT] = ACTIONS(3241), - [aux_sym__val_number_decimal_token1] = ACTIONS(3239), - [aux_sym__val_number_decimal_token2] = ACTIONS(3241), - [anon_sym_DOT2] = ACTIONS(3239), - [aux_sym__val_number_decimal_token3] = ACTIONS(3241), - [aux_sym__val_number_token1] = ACTIONS(3241), - [aux_sym__val_number_token2] = ACTIONS(3241), - [aux_sym__val_number_token3] = ACTIONS(3241), - [anon_sym_0b] = ACTIONS(3239), - [anon_sym_0o] = ACTIONS(3239), - [anon_sym_0x] = ACTIONS(3239), - [sym_val_date] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [sym__str_single_quotes] = ACTIONS(3241), - [sym__str_back_ticks] = ACTIONS(3241), - [anon_sym_err_GT] = ACTIONS(3239), - [anon_sym_out_GT] = ACTIONS(3239), - [anon_sym_e_GT] = ACTIONS(3239), - [anon_sym_o_GT] = ACTIONS(3239), - [anon_sym_err_PLUSout_GT] = ACTIONS(3239), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3239), - [anon_sym_o_PLUSe_GT] = ACTIONS(3239), - [anon_sym_e_PLUSo_GT] = ACTIONS(3239), - [anon_sym_err_GT_GT] = ACTIONS(3241), - [anon_sym_out_GT_GT] = ACTIONS(3241), - [anon_sym_e_GT_GT] = ACTIONS(3241), - [anon_sym_o_GT_GT] = ACTIONS(3241), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3241), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3241), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3241), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3241), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1099] = { - [sym_ctrl_do] = STATE(5294), - [sym_ctrl_if] = STATE(5294), - [sym_ctrl_match] = STATE(5294), - [sym_ctrl_try] = STATE(5294), - [sym__expression] = STATE(5294), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(4061), - [sym_expr_parenthesized] = STATE(2115), - [sym_val_range] = STATE(4048), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2541), - [sym_val_variable] = STATE(2119), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(3248), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_comment] = STATE(1099), - [ts_builtin_sym_end] = ACTIONS(3189), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [anon_sym_null] = ACTIONS(3431), - [aux_sym_cmd_identifier_token38] = ACTIONS(103), - [aux_sym_cmd_identifier_token39] = ACTIONS(103), - [aux_sym_cmd_identifier_token40] = ACTIONS(103), - [sym__newline] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_err_GT_PIPE] = ACTIONS(3189), - [anon_sym_out_GT_PIPE] = ACTIONS(3189), - [anon_sym_e_GT_PIPE] = ACTIONS(3189), - [anon_sym_o_GT_PIPE] = ACTIONS(3189), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3189), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3189), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3189), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3437), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(3439), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [anon_sym_DOT2] = ACTIONS(99), - [aux_sym__val_number_decimal_token3] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_POUND] = ACTIONS(3), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3937), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1535), + [sym__unquoted_with_expr] = STATE(1777), + [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_comment] = STATE(1099), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1100] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(3953), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3763), - [sym__unquoted_with_expr] = STATE(4008), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3938), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1571), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1100), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1101] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3939), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1537), + [sym__unquoted_with_expr] = STATE(1803), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1101), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3441), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_GT] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_in] = ACTIONS(3443), - [aux_sym_ctrl_match_token1] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym__] = ACTIONS(3443), - [anon_sym_DOT_DOT] = ACTIONS(3443), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_and] = ACTIONS(3441), - [anon_sym_xor] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_not_DASHin] = ACTIONS(3441), - [anon_sym_starts_DASHwith] = ACTIONS(3441), - [anon_sym_ends_DASHwith] = ACTIONS(3441), - [anon_sym_EQ_EQ] = ACTIONS(3441), - [anon_sym_BANG_EQ] = ACTIONS(3441), - [anon_sym_LT2] = ACTIONS(3443), - [anon_sym_LT_EQ] = ACTIONS(3441), - [anon_sym_GT_EQ] = ACTIONS(3441), - [anon_sym_EQ_TILDE] = ACTIONS(3441), - [anon_sym_BANG_TILDE] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_STAR_STAR] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3443), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_SLASH_SLASH] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_bit_DASHshl] = ACTIONS(3441), - [anon_sym_bit_DASHshr] = ACTIONS(3441), - [anon_sym_bit_DASHand] = ACTIONS(3441), - [anon_sym_bit_DASHxor] = ACTIONS(3441), - [anon_sym_bit_DASHor] = ACTIONS(3441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3441), - [anon_sym_DOT_DOT_LT] = ACTIONS(3441), - [aux_sym__val_number_decimal_token1] = ACTIONS(3443), - [aux_sym__val_number_decimal_token2] = ACTIONS(3441), - [anon_sym_DOT2] = ACTIONS(3443), - [aux_sym__val_number_decimal_token3] = ACTIONS(3441), - [aux_sym__val_number_token1] = ACTIONS(3441), - [aux_sym__val_number_token2] = ACTIONS(3441), - [aux_sym__val_number_token3] = ACTIONS(3441), - [anon_sym_0b] = ACTIONS(3443), - [anon_sym_0o] = ACTIONS(3443), - [anon_sym_0x] = ACTIONS(3443), - [sym_val_date] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [sym__str_single_quotes] = ACTIONS(3441), - [sym__str_back_ticks] = ACTIONS(3441), - [anon_sym_err_GT] = ACTIONS(3443), - [anon_sym_out_GT] = ACTIONS(3443), - [anon_sym_e_GT] = ACTIONS(3443), - [anon_sym_o_GT] = ACTIONS(3443), - [anon_sym_err_PLUSout_GT] = ACTIONS(3443), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3443), - [anon_sym_o_PLUSe_GT] = ACTIONS(3443), - [anon_sym_e_PLUSo_GT] = ACTIONS(3443), - [anon_sym_err_GT_GT] = ACTIONS(3441), - [anon_sym_out_GT_GT] = ACTIONS(3441), - [anon_sym_e_GT_GT] = ACTIONS(3441), - [anon_sym_o_GT_GT] = ACTIONS(3441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3441), - [aux_sym_unquoted_token1] = ACTIONS(3443), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1102] = { - [sym_expr_unary] = STATE(3980), - [sym__expr_unary_minus] = STATE(3968), - [sym_expr_binary] = STATE(3980), - [sym__expr_binary_expression] = STATE(3954), - [sym_expr_parenthesized] = STATE(3980), - [sym__val_range] = STATE(7637), - [sym__val_range_with_end] = STATE(7611), - [sym__value] = STATE(3980), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(3747), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(3764), - [sym__unquoted_with_expr] = STATE(3941), - [sym__unquoted_anonymous_prefix] = STATE(6903), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3940), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1595), + [sym__unquoted_with_expr] = STATE(1805), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1102), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3303), - [aux_sym_ctrl_match_token1] = ACTIONS(3305), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [aux_sym_expr_unary_token1] = ACTIONS(3309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_LT] = ACTIONS(3311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3313), - [aux_sym__val_number_decimal_token2] = ACTIONS(3315), - [anon_sym_DOT2] = ACTIONS(3317), - [aux_sym__val_number_decimal_token3] = ACTIONS(3319), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1103] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2443), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1711), - [sym__unquoted_with_expr] = STATE(2051), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3941), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1806), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1103), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1104] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2444), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1715), - [sym__unquoted_with_expr] = STATE(2053), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3942), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1532), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1104), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1105] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2445), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(2054), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3943), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1573), + [sym__unquoted_with_expr] = STATE(1811), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1105), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1106] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2446), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1725), - [sym__unquoted_with_expr] = STATE(2055), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3944), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1516), + [sym__unquoted_with_expr] = STATE(1812), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1106), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1107] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2447), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1729), - [sym__unquoted_with_expr] = STATE(2056), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3945), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1536), + [sym__unquoted_with_expr] = STATE(1794), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1107), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1108] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2450), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1731), - [sym__unquoted_with_expr] = STATE(2057), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3946), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3754), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3554), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1545), + [sym__unquoted_with_expr] = STATE(1716), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1108), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3417), + [aux_sym_cmd_identifier_token38] = ACTIONS(3419), + [aux_sym_cmd_identifier_token39] = ACTIONS(3419), + [aux_sym_cmd_identifier_token40] = ACTIONS(3419), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(397), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(3425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3427), + [aux_sym__val_number_decimal_token2] = ACTIONS(3429), + [aux_sym__val_number_decimal_token3] = ACTIONS(3431), + [aux_sym__val_number_decimal_token4] = ACTIONS(3433), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1109] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2453), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1734), - [sym__unquoted_with_expr] = STATE(2058), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1164), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(977), + [sym__unquoted_with_expr] = STATE(1165), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1109), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1110] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2465), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1747), - [sym__unquoted_with_expr] = STATE(2059), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1181), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(978), + [sym__unquoted_with_expr] = STATE(1166), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1110), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1111] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3315), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1725), - [sym__unquoted_with_expr] = STATE(2055), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1182), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(979), + [sym__unquoted_with_expr] = STATE(1167), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1111), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1112] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2060), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1755), - [sym__unquoted_with_expr] = STATE(2061), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1183), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(980), + [sym__unquoted_with_expr] = STATE(1168), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1112), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1113] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2311), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1756), - [sym__unquoted_with_expr] = STATE(2062), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1184), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(981), + [sym__unquoted_with_expr] = STATE(1207), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1113), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1114] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2467), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1728), - [sym__unquoted_with_expr] = STATE(2063), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1185), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(982), + [sym__unquoted_with_expr] = STATE(1170), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1114), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1115] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(2468), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(2107), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(1426), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(2064), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1186), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(983), + [sym__unquoted_with_expr] = STATE(1171), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1115), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [anon_sym_null] = ACTIONS(3124), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3126), - [aux_sym_cmd_identifier_token40] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_LT] = ACTIONS(3130), - [aux_sym__val_number_decimal_token1] = ACTIONS(3132), - [aux_sym__val_number_decimal_token2] = ACTIONS(3134), - [anon_sym_DOT2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1116] = { - [sym_expr_unary] = STATE(2554), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_binary] = STATE(2554), - [sym__expr_binary_expression] = STATE(2489), - [sym_expr_parenthesized] = STATE(2554), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(2554), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(2209), - [sym_val_variable] = STATE(2541), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(1496), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(2189), - [sym__unquoted_with_expr] = STATE(2492), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1187), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(984), + [sym__unquoted_with_expr] = STATE(1172), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1116), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_null] = ACTIONS(3247), - [aux_sym_cmd_identifier_token38] = ACTIONS(3249), - [aux_sym_cmd_identifier_token39] = ACTIONS(3249), - [aux_sym_cmd_identifier_token40] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3257), - [anon_sym_DOT_DOT_LT] = ACTIONS(3257), - [aux_sym__val_number_decimal_token1] = ACTIONS(3259), - [aux_sym__val_number_decimal_token2] = ACTIONS(3261), - [anon_sym_DOT2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3265), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1117] = { - [sym__expression] = STATE(7951), - [sym_expr_unary] = STATE(2036), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2036), - [sym__expr_binary_expression] = STATE(4049), - [sym_expr_parenthesized] = STATE(3719), - [sym_val_range] = STATE(3670), - [sym__val_range] = STATE(7523), - [sym__value] = STATE(2036), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3741), - [sym_val_variable] = STATE(3742), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(3557), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(7952), - [sym__unquoted_anonymous_prefix] = STATE(7978), + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1190), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(975), + [sym__unquoted_with_expr] = STATE(1130), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1117), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3096), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3209), - [anon_sym_DOT_DOT_LT] = ACTIONS(3209), - [aux_sym__val_number_decimal_token1] = ACTIONS(3110), - [aux_sym__val_number_decimal_token2] = ACTIONS(3112), - [anon_sym_DOT2] = ACTIONS(3211), - [aux_sym__val_number_decimal_token3] = ACTIONS(3116), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1118] = { - [sym_expr_unary] = STATE(2050), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_binary] = STATE(2050), - [sym__expr_binary_expression] = STATE(3317), - [sym_expr_parenthesized] = STATE(2050), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(2050), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(3274), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(2867), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(1729), - [sym__unquoted_with_expr] = STATE(2056), - [sym__unquoted_anonymous_prefix] = STATE(7221), + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1191), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(992), + [sym__unquoted_with_expr] = STATE(1133), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1118), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [anon_sym_null] = ACTIONS(3148), - [aux_sym_cmd_identifier_token38] = ACTIONS(3150), - [aux_sym_cmd_identifier_token39] = ACTIONS(3150), - [aux_sym_cmd_identifier_token40] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3152), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_LT] = ACTIONS(3154), - [aux_sym__val_number_decimal_token1] = ACTIONS(3156), - [aux_sym__val_number_decimal_token2] = ACTIONS(3158), - [anon_sym_DOT2] = ACTIONS(3160), - [aux_sym__val_number_decimal_token3] = ACTIONS(3162), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1119] = { + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1192), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(994), + [sym__unquoted_with_expr] = STATE(1142), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1119), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1120] = { + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1193), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(997), + [sym__unquoted_with_expr] = STATE(1143), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1120), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1121] = { + [sym_expr_unary] = STATE(1163), + [sym__expr_unary_minus] = STATE(1154), + [sym_expr_binary] = STATE(1163), + [sym__expr_binary_expression] = STATE(1194), + [sym_expr_parenthesized] = STATE(1163), + [sym__val_range] = STATE(8013), + [sym__val_range_with_end] = STATE(7672), + [sym__value] = STATE(1163), + [sym_val_nothing] = STATE(1145), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(1145), + [sym_val_number] = STATE(1145), + [sym__val_number_decimal] = STATE(699), + [sym__val_number] = STATE(1140), + [sym_val_duration] = STATE(1145), + [sym_val_filesize] = STATE(1145), + [sym_val_binary] = STATE(1145), + [sym_val_string] = STATE(1145), + [sym__str_double_quotes] = STATE(1126), + [sym_val_interpolated] = STATE(1145), + [sym__inter_single_quotes] = STATE(1152), + [sym__inter_double_quotes] = STATE(1153), + [sym_val_list] = STATE(1145), + [sym_val_record] = STATE(1145), + [sym_val_table] = STATE(1145), + [sym_val_closure] = STATE(1145), + [sym_unquoted] = STATE(966), + [sym__unquoted_with_expr] = STATE(1144), + [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1121), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3445), - [aux_sym_cmd_identifier_token38] = ACTIONS(3445), - [aux_sym_cmd_identifier_token39] = ACTIONS(3445), - [aux_sym_cmd_identifier_token40] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [anon_sym_null] = ACTIONS(3439), + [aux_sym_cmd_identifier_token38] = ACTIONS(3441), + [aux_sym_cmd_identifier_token39] = ACTIONS(3441), + [aux_sym_cmd_identifier_token40] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3443), [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3445), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [aux_sym_ctrl_match_token1] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym__] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_xor] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_not_DASHin] = ACTIONS(3445), - [anon_sym_starts_DASHwith] = ACTIONS(3445), - [anon_sym_ends_DASHwith] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_LT2] = ACTIONS(3447), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_EQ_TILDE] = ACTIONS(3445), - [anon_sym_BANG_TILDE] = ACTIONS(3445), - [anon_sym_STAR_STAR] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_mod] = ACTIONS(3445), - [anon_sym_SLASH_SLASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_bit_DASHshl] = ACTIONS(3445), - [anon_sym_bit_DASHshr] = ACTIONS(3445), - [anon_sym_bit_DASHand] = ACTIONS(3445), - [anon_sym_bit_DASHxor] = ACTIONS(3445), - [anon_sym_bit_DASHor] = ACTIONS(3445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3445), - [anon_sym_DOT_DOT_LT] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3445), - [anon_sym_DOT2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3445), - [aux_sym__val_number_token1] = ACTIONS(3445), - [aux_sym__val_number_token2] = ACTIONS(3445), - [aux_sym__val_number_token3] = ACTIONS(3445), - [anon_sym_0b] = ACTIONS(3447), - [anon_sym_0o] = ACTIONS(3447), - [anon_sym_0x] = ACTIONS(3447), - [sym_val_date] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [sym__str_single_quotes] = ACTIONS(3445), - [sym__str_back_ticks] = ACTIONS(3445), - [anon_sym_err_GT] = ACTIONS(3447), - [anon_sym_out_GT] = ACTIONS(3447), - [anon_sym_e_GT] = ACTIONS(3447), - [anon_sym_o_GT] = ACTIONS(3447), - [anon_sym_err_PLUSout_GT] = ACTIONS(3447), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3447), - [anon_sym_o_PLUSe_GT] = ACTIONS(3447), - [anon_sym_e_PLUSo_GT] = ACTIONS(3447), - [anon_sym_err_GT_GT] = ACTIONS(3445), - [anon_sym_out_GT_GT] = ACTIONS(3445), - [anon_sym_e_GT_GT] = ACTIONS(3445), - [anon_sym_o_GT_GT] = ACTIONS(3445), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3445), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3445), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3445), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3445), - [aux_sym_unquoted_token1] = ACTIONS(3447), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DOLLAR] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3449), + [aux_sym_ctrl_match_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [aux_sym_expr_unary_token1] = ACTIONS(3455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3469), + [anon_sym_0o] = ACTIONS(3471), + [anon_sym_0x] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym__str_single_quotes] = ACTIONS(3477), + [sym__str_back_ticks] = ACTIONS(3477), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_POUND] = ACTIONS(247), }, [1122] = { + [sym__expression] = STATE(7743), + [sym_expr_unary] = STATE(1690), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1690), + [sym__expr_binary_expression] = STATE(4067), + [sym_expr_parenthesized] = STATE(3761), + [sym_val_range] = STATE(3727), + [sym__val_range] = STATE(8049), + [sym__value] = STATE(1690), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(3758), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3697), + [sym__val_number] = STATE(1907), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1668), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(7744), + [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(1122), - [anon_sym_true] = ACTIONS(2075), - [anon_sym_false] = ACTIONS(2075), - [anon_sym_null] = ACTIONS(2075), - [aux_sym_cmd_identifier_token38] = ACTIONS(2075), - [aux_sym_cmd_identifier_token39] = ACTIONS(2075), - [aux_sym_cmd_identifier_token40] = ACTIONS(2075), - [sym__newline] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_COMMA] = ACTIONS(2075), - [anon_sym_DOLLAR] = ACTIONS(2075), - [anon_sym_GT] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_in] = ACTIONS(2073), - [aux_sym_ctrl_match_token1] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym__] = ACTIONS(2073), - [anon_sym_DOT_DOT] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2073), - [anon_sym_and] = ACTIONS(2075), - [anon_sym_xor] = ACTIONS(2075), - [anon_sym_or] = ACTIONS(2075), - [anon_sym_not_DASHin] = ACTIONS(2075), - [anon_sym_starts_DASHwith] = ACTIONS(2075), - [anon_sym_ends_DASHwith] = ACTIONS(2075), - [anon_sym_EQ_EQ] = ACTIONS(2075), - [anon_sym_BANG_EQ] = ACTIONS(2075), - [anon_sym_LT2] = ACTIONS(2073), - [anon_sym_LT_EQ] = ACTIONS(2075), - [anon_sym_GT_EQ] = ACTIONS(2075), - [anon_sym_EQ_TILDE] = ACTIONS(2075), - [anon_sym_BANG_TILDE] = ACTIONS(2075), - [anon_sym_STAR_STAR] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2075), - [anon_sym_SLASH] = ACTIONS(2073), - [anon_sym_mod] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(2075), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_bit_DASHshl] = ACTIONS(2075), - [anon_sym_bit_DASHshr] = ACTIONS(2075), - [anon_sym_bit_DASHand] = ACTIONS(2075), - [anon_sym_bit_DASHxor] = ACTIONS(2075), - [anon_sym_bit_DASHor] = ACTIONS(2075), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2075), - [anon_sym_DOT_DOT_LT] = ACTIONS(2075), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [anon_sym_DOT2] = ACTIONS(2073), - [aux_sym__val_number_decimal_token3] = ACTIONS(2075), - [aux_sym__val_number_token1] = ACTIONS(2075), - [aux_sym__val_number_token2] = ACTIONS(2075), - [aux_sym__val_number_token3] = ACTIONS(2075), - [anon_sym_0b] = ACTIONS(2073), - [anon_sym_0o] = ACTIONS(2073), - [anon_sym_0x] = ACTIONS(2073), - [sym_val_date] = ACTIONS(2075), - [anon_sym_DQUOTE] = ACTIONS(2075), - [sym__str_single_quotes] = ACTIONS(2075), - [sym__str_back_ticks] = ACTIONS(2075), - [anon_sym_err_GT] = ACTIONS(2073), - [anon_sym_out_GT] = ACTIONS(2073), - [anon_sym_e_GT] = ACTIONS(2073), - [anon_sym_o_GT] = ACTIONS(2073), - [anon_sym_err_PLUSout_GT] = ACTIONS(2073), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2073), - [anon_sym_o_PLUSe_GT] = ACTIONS(2073), - [anon_sym_e_PLUSo_GT] = ACTIONS(2073), - [anon_sym_err_GT_GT] = ACTIONS(2075), - [anon_sym_out_GT_GT] = ACTIONS(2075), - [anon_sym_e_GT_GT] = ACTIONS(2075), - [anon_sym_o_GT_GT] = ACTIONS(2075), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2075), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2075), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2075), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2075), - [aux_sym_unquoted_token1] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3217), + [aux_sym_cmd_identifier_token39] = ACTIONS(3217), + [aux_sym_cmd_identifier_token40] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3223), + [aux_sym_expr_unary_token1] = ACTIONS(3225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3227), + [anon_sym_DOT_DOT_LT] = ACTIONS(3227), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(247), }, [1123] = { [sym_comment] = STATE(1123), - [anon_sym_true] = ACTIONS(2186), - [anon_sym_false] = ACTIONS(2186), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token38] = ACTIONS(2186), - [aux_sym_cmd_identifier_token39] = ACTIONS(2186), - [aux_sym_cmd_identifier_token40] = ACTIONS(2186), - [sym__newline] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(2184), - [aux_sym_ctrl_match_token1] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym__] = ACTIONS(2184), - [anon_sym_DOT_DOT] = ACTIONS(2184), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_and] = ACTIONS(2186), - [anon_sym_xor] = ACTIONS(2186), - [anon_sym_or] = ACTIONS(2186), - [anon_sym_not_DASHin] = ACTIONS(2186), - [anon_sym_starts_DASHwith] = ACTIONS(2186), - [anon_sym_ends_DASHwith] = ACTIONS(2186), - [anon_sym_EQ_EQ] = ACTIONS(2186), - [anon_sym_BANG_EQ] = ACTIONS(2186), - [anon_sym_LT2] = ACTIONS(2184), - [anon_sym_LT_EQ] = ACTIONS(2186), - [anon_sym_GT_EQ] = ACTIONS(2186), - [anon_sym_EQ_TILDE] = ACTIONS(2186), - [anon_sym_BANG_TILDE] = ACTIONS(2186), - [anon_sym_STAR_STAR] = ACTIONS(2186), - [anon_sym_PLUS_PLUS] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_mod] = ACTIONS(2186), - [anon_sym_SLASH_SLASH] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_bit_DASHshl] = ACTIONS(2186), - [anon_sym_bit_DASHshr] = ACTIONS(2186), - [anon_sym_bit_DASHand] = ACTIONS(2186), - [anon_sym_bit_DASHxor] = ACTIONS(2186), - [anon_sym_bit_DASHor] = ACTIONS(2186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2186), - [anon_sym_DOT_DOT_LT] = ACTIONS(2186), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [anon_sym_DOT2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(2186), - [aux_sym__val_number_token2] = ACTIONS(2186), - [aux_sym__val_number_token3] = ACTIONS(2186), - [anon_sym_0b] = ACTIONS(2184), - [anon_sym_0o] = ACTIONS(2184), - [anon_sym_0x] = ACTIONS(2184), - [sym_val_date] = ACTIONS(2186), - [anon_sym_DQUOTE] = ACTIONS(2186), - [sym__str_single_quotes] = ACTIONS(2186), - [sym__str_back_ticks] = ACTIONS(2186), - [anon_sym_err_GT] = ACTIONS(2184), - [anon_sym_out_GT] = ACTIONS(2184), - [anon_sym_e_GT] = ACTIONS(2184), - [anon_sym_o_GT] = ACTIONS(2184), - [anon_sym_err_PLUSout_GT] = ACTIONS(2184), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2184), - [anon_sym_o_PLUSe_GT] = ACTIONS(2184), - [anon_sym_e_PLUSo_GT] = ACTIONS(2184), - [anon_sym_err_GT_GT] = ACTIONS(2186), - [anon_sym_out_GT_GT] = ACTIONS(2186), - [anon_sym_e_GT_GT] = ACTIONS(2186), - [anon_sym_o_GT_GT] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3485), + [anon_sym_false] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3485), + [aux_sym_cmd_identifier_token38] = ACTIONS(3485), + [aux_sym_cmd_identifier_token39] = ACTIONS(3485), + [aux_sym_cmd_identifier_token40] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3485), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3487), + [anon_sym_DOT_DOT] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(3485), + [aux_sym_expr_binary_token1] = ACTIONS(3485), + [aux_sym_expr_binary_token2] = ACTIONS(3485), + [aux_sym_expr_binary_token3] = ACTIONS(3485), + [aux_sym_expr_binary_token4] = ACTIONS(3485), + [aux_sym_expr_binary_token5] = ACTIONS(3485), + [aux_sym_expr_binary_token6] = ACTIONS(3485), + [aux_sym_expr_binary_token7] = ACTIONS(3485), + [aux_sym_expr_binary_token8] = ACTIONS(3485), + [aux_sym_expr_binary_token9] = ACTIONS(3485), + [aux_sym_expr_binary_token10] = ACTIONS(3485), + [aux_sym_expr_binary_token11] = ACTIONS(3485), + [aux_sym_expr_binary_token12] = ACTIONS(3485), + [aux_sym_expr_binary_token13] = ACTIONS(3485), + [aux_sym_expr_binary_token14] = ACTIONS(3485), + [aux_sym_expr_binary_token15] = ACTIONS(3485), + [aux_sym_expr_binary_token16] = ACTIONS(3485), + [aux_sym_expr_binary_token17] = ACTIONS(3485), + [aux_sym_expr_binary_token18] = ACTIONS(3485), + [aux_sym_expr_binary_token19] = ACTIONS(3485), + [aux_sym_expr_binary_token20] = ACTIONS(3485), + [aux_sym_expr_binary_token21] = ACTIONS(3485), + [aux_sym_expr_binary_token22] = ACTIONS(3485), + [aux_sym_expr_binary_token23] = ACTIONS(3485), + [aux_sym_expr_binary_token24] = ACTIONS(3485), + [aux_sym_expr_binary_token25] = ACTIONS(3485), + [aux_sym_expr_binary_token26] = ACTIONS(3485), + [aux_sym_expr_binary_token27] = ACTIONS(3485), + [aux_sym_expr_binary_token28] = ACTIONS(3485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3485), + [anon_sym_DOT_DOT_LT] = ACTIONS(3485), + [aux_sym__val_number_decimal_token1] = ACTIONS(3487), + [aux_sym__val_number_decimal_token2] = ACTIONS(3485), + [aux_sym__val_number_decimal_token3] = ACTIONS(3485), + [aux_sym__val_number_decimal_token4] = ACTIONS(3485), + [aux_sym__val_number_token1] = ACTIONS(3485), + [aux_sym__val_number_token2] = ACTIONS(3485), + [aux_sym__val_number_token3] = ACTIONS(3485), + [anon_sym_0b] = ACTIONS(3487), + [anon_sym_0o] = ACTIONS(3487), + [anon_sym_0x] = ACTIONS(3487), + [sym_val_date] = ACTIONS(3485), + [anon_sym_DQUOTE] = ACTIONS(3485), + [sym__str_single_quotes] = ACTIONS(3485), + [sym__str_back_ticks] = ACTIONS(3485), + [anon_sym_err_GT] = ACTIONS(3487), + [anon_sym_out_GT] = ACTIONS(3487), + [anon_sym_e_GT] = ACTIONS(3487), + [anon_sym_o_GT] = ACTIONS(3487), + [anon_sym_err_PLUSout_GT] = ACTIONS(3487), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3487), + [anon_sym_o_PLUSe_GT] = ACTIONS(3487), + [anon_sym_e_PLUSo_GT] = ACTIONS(3487), + [anon_sym_err_GT_GT] = ACTIONS(3485), + [anon_sym_out_GT_GT] = ACTIONS(3485), + [anon_sym_e_GT_GT] = ACTIONS(3485), + [anon_sym_o_GT_GT] = ACTIONS(3485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3485), + [aux_sym_unquoted_token1] = ACTIONS(3487), + [anon_sym_POUND] = ACTIONS(247), }, [1124] = { + [sym_expr_unary] = STATE(1747), + [sym__expr_unary_minus] = STATE(1709), + [sym_expr_binary] = STATE(1747), + [sym__expr_binary_expression] = STATE(3401), + [sym_expr_parenthesized] = STATE(1747), + [sym__val_range] = STATE(7890), + [sym__val_range_with_end] = STATE(7655), + [sym__value] = STATE(1747), + [sym_val_nothing] = STATE(1734), + [sym_val_bool] = STATE(3347), + [sym_val_variable] = STATE(1734), + [sym_val_number] = STATE(1734), + [sym__val_number_decimal] = STATE(3023), + [sym__val_number] = STATE(2278), + [sym_val_duration] = STATE(1734), + [sym_val_filesize] = STATE(1734), + [sym_val_binary] = STATE(1734), + [sym_val_string] = STATE(1734), + [sym__str_double_quotes] = STATE(1969), + [sym_val_interpolated] = STATE(1734), + [sym__inter_single_quotes] = STATE(1686), + [sym__inter_double_quotes] = STATE(1688), + [sym_val_list] = STATE(1734), + [sym_val_record] = STATE(1734), + [sym_val_table] = STATE(1734), + [sym_val_closure] = STATE(1734), + [sym_unquoted] = STATE(1595), + [sym__unquoted_with_expr] = STATE(1805), + [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1124), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [aux_sym_cmd_identifier_token38] = ACTIONS(3361), + [aux_sym_cmd_identifier_token39] = ACTIONS(3361), + [aux_sym_cmd_identifier_token40] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(397), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [aux_sym__val_number_decimal_token1] = ACTIONS(3363), + [aux_sym__val_number_decimal_token2] = ACTIONS(3365), + [aux_sym__val_number_decimal_token3] = ACTIONS(3367), + [aux_sym__val_number_decimal_token4] = ACTIONS(3369), + [aux_sym__val_number_token1] = ACTIONS(439), + [aux_sym__val_number_token2] = ACTIONS(439), + [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(441), + [sym__str_single_quotes] = ACTIONS(443), + [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(247), }, [1125] = { [sym_comment] = STATE(1125), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2361), + [aux_sym_cmd_identifier_token38] = ACTIONS(2361), + [aux_sym_cmd_identifier_token39] = ACTIONS(2361), + [aux_sym_cmd_identifier_token40] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2361), + [aux_sym_ctrl_match_token1] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym__] = ACTIONS(2359), + [anon_sym_DOT_DOT] = ACTIONS(2359), + [aux_sym_expr_binary_token1] = ACTIONS(2361), + [aux_sym_expr_binary_token2] = ACTIONS(2361), + [aux_sym_expr_binary_token3] = ACTIONS(2361), + [aux_sym_expr_binary_token4] = ACTIONS(2361), + [aux_sym_expr_binary_token5] = ACTIONS(2361), + [aux_sym_expr_binary_token6] = ACTIONS(2361), + [aux_sym_expr_binary_token7] = ACTIONS(2361), + [aux_sym_expr_binary_token8] = ACTIONS(2361), + [aux_sym_expr_binary_token9] = ACTIONS(2361), + [aux_sym_expr_binary_token10] = ACTIONS(2361), + [aux_sym_expr_binary_token11] = ACTIONS(2361), + [aux_sym_expr_binary_token12] = ACTIONS(2361), + [aux_sym_expr_binary_token13] = ACTIONS(2361), + [aux_sym_expr_binary_token14] = ACTIONS(2361), + [aux_sym_expr_binary_token15] = ACTIONS(2361), + [aux_sym_expr_binary_token16] = ACTIONS(2361), + [aux_sym_expr_binary_token17] = ACTIONS(2361), + [aux_sym_expr_binary_token18] = ACTIONS(2361), + [aux_sym_expr_binary_token19] = ACTIONS(2361), + [aux_sym_expr_binary_token20] = ACTIONS(2361), + [aux_sym_expr_binary_token21] = ACTIONS(2361), + [aux_sym_expr_binary_token22] = ACTIONS(2361), + [aux_sym_expr_binary_token23] = ACTIONS(2361), + [aux_sym_expr_binary_token24] = ACTIONS(2361), + [aux_sym_expr_binary_token25] = ACTIONS(2361), + [aux_sym_expr_binary_token26] = ACTIONS(2361), + [aux_sym_expr_binary_token27] = ACTIONS(2361), + [aux_sym_expr_binary_token28] = ACTIONS(2361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2361), + [anon_sym_DOT_DOT_LT] = ACTIONS(2361), + [aux_sym__val_number_decimal_token1] = ACTIONS(2359), + [aux_sym__val_number_decimal_token2] = ACTIONS(2361), + [aux_sym__val_number_decimal_token3] = ACTIONS(2361), + [aux_sym__val_number_decimal_token4] = ACTIONS(2361), + [aux_sym__val_number_token1] = ACTIONS(2361), + [aux_sym__val_number_token2] = ACTIONS(2361), + [aux_sym__val_number_token3] = ACTIONS(2361), + [anon_sym_0b] = ACTIONS(2359), + [anon_sym_0o] = ACTIONS(2359), + [anon_sym_0x] = ACTIONS(2359), + [sym_val_date] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym__str_single_quotes] = ACTIONS(2361), + [sym__str_back_ticks] = ACTIONS(2361), + [anon_sym_err_GT] = ACTIONS(2359), + [anon_sym_out_GT] = ACTIONS(2359), + [anon_sym_e_GT] = ACTIONS(2359), + [anon_sym_o_GT] = ACTIONS(2359), + [anon_sym_err_PLUSout_GT] = ACTIONS(2359), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2359), + [anon_sym_o_PLUSe_GT] = ACTIONS(2359), + [anon_sym_e_PLUSo_GT] = ACTIONS(2359), + [anon_sym_err_GT_GT] = ACTIONS(2361), + [anon_sym_out_GT_GT] = ACTIONS(2361), + [anon_sym_e_GT_GT] = ACTIONS(2361), + [anon_sym_o_GT_GT] = ACTIONS(2361), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2361), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2361), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2361), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2361), + [aux_sym_unquoted_token1] = ACTIONS(2359), + [anon_sym_POUND] = ACTIONS(247), }, [1126] = { [sym_comment] = STATE(1126), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [anon_sym_null] = ACTIONS(2202), - [aux_sym_cmd_identifier_token38] = ACTIONS(2202), - [aux_sym_cmd_identifier_token39] = ACTIONS(2202), - [aux_sym_cmd_identifier_token40] = ACTIONS(2202), - [sym__newline] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [aux_sym_ctrl_match_token1] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2200), - [anon_sym_DOT_DOT] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_and] = ACTIONS(2202), - [anon_sym_xor] = ACTIONS(2202), - [anon_sym_or] = ACTIONS(2202), - [anon_sym_not_DASHin] = ACTIONS(2202), - [anon_sym_starts_DASHwith] = ACTIONS(2202), - [anon_sym_ends_DASHwith] = ACTIONS(2202), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_GT_EQ] = ACTIONS(2202), - [anon_sym_EQ_TILDE] = ACTIONS(2202), - [anon_sym_BANG_TILDE] = ACTIONS(2202), - [anon_sym_STAR_STAR] = ACTIONS(2202), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_SLASH_SLASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_bit_DASHshl] = ACTIONS(2202), - [anon_sym_bit_DASHshr] = ACTIONS(2202), - [anon_sym_bit_DASHand] = ACTIONS(2202), - [anon_sym_bit_DASHxor] = ACTIONS(2202), - [anon_sym_bit_DASHor] = ACTIONS(2202), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2202), - [anon_sym_DOT_DOT_LT] = ACTIONS(2202), - [aux_sym__val_number_decimal_token1] = ACTIONS(2200), - [aux_sym__val_number_decimal_token2] = ACTIONS(2202), - [anon_sym_DOT2] = ACTIONS(2200), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [anon_sym_0b] = ACTIONS(2200), - [anon_sym_0o] = ACTIONS(2200), - [anon_sym_0x] = ACTIONS(2200), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2202), - [sym__str_single_quotes] = ACTIONS(2202), - [sym__str_back_ticks] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), - [aux_sym_unquoted_token1] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [aux_sym_ctrl_match_token1] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym__] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(966), + [aux_sym_expr_binary_token1] = ACTIONS(968), + [aux_sym_expr_binary_token2] = ACTIONS(968), + [aux_sym_expr_binary_token3] = ACTIONS(968), + [aux_sym_expr_binary_token4] = ACTIONS(968), + [aux_sym_expr_binary_token5] = ACTIONS(968), + [aux_sym_expr_binary_token6] = ACTIONS(968), + [aux_sym_expr_binary_token7] = ACTIONS(968), + [aux_sym_expr_binary_token8] = ACTIONS(968), + [aux_sym_expr_binary_token9] = ACTIONS(968), + [aux_sym_expr_binary_token10] = ACTIONS(968), + [aux_sym_expr_binary_token11] = ACTIONS(968), + [aux_sym_expr_binary_token12] = ACTIONS(968), + [aux_sym_expr_binary_token13] = ACTIONS(968), + [aux_sym_expr_binary_token14] = ACTIONS(968), + [aux_sym_expr_binary_token15] = ACTIONS(968), + [aux_sym_expr_binary_token16] = ACTIONS(968), + [aux_sym_expr_binary_token17] = ACTIONS(968), + [aux_sym_expr_binary_token18] = ACTIONS(968), + [aux_sym_expr_binary_token19] = ACTIONS(968), + [aux_sym_expr_binary_token20] = ACTIONS(968), + [aux_sym_expr_binary_token21] = ACTIONS(968), + [aux_sym_expr_binary_token22] = ACTIONS(968), + [aux_sym_expr_binary_token23] = ACTIONS(968), + [aux_sym_expr_binary_token24] = ACTIONS(968), + [aux_sym_expr_binary_token25] = ACTIONS(968), + [aux_sym_expr_binary_token26] = ACTIONS(968), + [aux_sym_expr_binary_token27] = ACTIONS(968), + [aux_sym_expr_binary_token28] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [1127] = { + [sym_expr_unary] = STATE(4683), + [sym__expr_unary_minus] = STATE(4680), + [sym_expr_parenthesized] = STATE(4296), + [sym_val_range] = STATE(4683), + [sym__val_range] = STATE(7776), + [sym__val_range_with_end] = STATE(7669), + [sym__value] = STATE(4683), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(4376), + [sym_val_variable] = STATE(4291), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(4110), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(4365), + [sym__unquoted_with_expr] = STATE(4710), + [sym__unquoted_anonymous_prefix] = STATE(6959), [sym_comment] = STATE(1127), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3455), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3461), - [anon_sym_starts_DASHwith] = ACTIONS(3461), - [anon_sym_ends_DASHwith] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_LT2] = ACTIONS(3451), - [anon_sym_LT_EQ] = ACTIONS(3463), - [anon_sym_GT_EQ] = ACTIONS(3463), - [anon_sym_EQ_TILDE] = ACTIONS(3465), - [anon_sym_BANG_TILDE] = ACTIONS(3465), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_bit_DASHshl] = ACTIONS(3471), - [anon_sym_bit_DASHshr] = ACTIONS(3471), - [anon_sym_bit_DASHand] = ACTIONS(3473), - [anon_sym_bit_DASHxor] = ACTIONS(3449), - [anon_sym_bit_DASHor] = ACTIONS(3449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3489), + [anon_sym_false] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3491), + [aux_sym_cmd_identifier_token38] = ACTIONS(3493), + [aux_sym_cmd_identifier_token39] = ACTIONS(3493), + [aux_sym_cmd_identifier_token40] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3501), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(3505), + [aux_sym_expr_unary_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3509), + [anon_sym_DOT_DOT_LT] = ACTIONS(3509), + [aux_sym__val_number_decimal_token1] = ACTIONS(3511), + [aux_sym__val_number_decimal_token2] = ACTIONS(3513), + [aux_sym__val_number_decimal_token3] = ACTIONS(3515), + [aux_sym__val_number_decimal_token4] = ACTIONS(3517), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1128] = { + [sym_expr_unary] = STATE(4625), + [sym__expr_unary_minus] = STATE(4680), + [sym_expr_parenthesized] = STATE(4300), + [sym_val_range] = STATE(4625), + [sym__val_range] = STATE(7776), + [sym__val_range_with_end] = STATE(7669), + [sym__value] = STATE(4625), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(4376), + [sym_val_variable] = STATE(4291), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(4110), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(4379), + [sym__unquoted_with_expr] = STATE(4611), + [sym__unquoted_anonymous_prefix] = STATE(6959), [sym_comment] = STATE(1128), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3455), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3461), - [anon_sym_starts_DASHwith] = ACTIONS(3461), - [anon_sym_ends_DASHwith] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_LT2] = ACTIONS(3451), - [anon_sym_LT_EQ] = ACTIONS(3463), - [anon_sym_GT_EQ] = ACTIONS(3463), - [anon_sym_EQ_TILDE] = ACTIONS(3465), - [anon_sym_BANG_TILDE] = ACTIONS(3465), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_bit_DASHshl] = ACTIONS(3471), - [anon_sym_bit_DASHshr] = ACTIONS(3471), - [anon_sym_bit_DASHand] = ACTIONS(3473), - [anon_sym_bit_DASHxor] = ACTIONS(3475), - [anon_sym_bit_DASHor] = ACTIONS(3449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3489), + [anon_sym_false] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3491), + [aux_sym_cmd_identifier_token38] = ACTIONS(3493), + [aux_sym_cmd_identifier_token39] = ACTIONS(3493), + [aux_sym_cmd_identifier_token40] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3501), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(3505), + [aux_sym_expr_unary_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3509), + [anon_sym_DOT_DOT_LT] = ACTIONS(3509), + [aux_sym__val_number_decimal_token1] = ACTIONS(3511), + [aux_sym__val_number_decimal_token2] = ACTIONS(3513), + [aux_sym__val_number_decimal_token3] = ACTIONS(3515), + [aux_sym__val_number_decimal_token4] = ACTIONS(3517), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1129] = { + [sym_expr_unary] = STATE(4603), + [sym__expr_unary_minus] = STATE(4680), + [sym_expr_parenthesized] = STATE(4304), + [sym_val_range] = STATE(4603), + [sym__val_range] = STATE(7776), + [sym__val_range_with_end] = STATE(7669), + [sym__value] = STATE(4603), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(4376), + [sym_val_variable] = STATE(4291), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(4110), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(4386), + [sym__unquoted_with_expr] = STATE(4527), + [sym__unquoted_anonymous_prefix] = STATE(6959), [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3455), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3477), - [anon_sym_xor] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3461), - [anon_sym_starts_DASHwith] = ACTIONS(3461), - [anon_sym_ends_DASHwith] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_LT2] = ACTIONS(3451), - [anon_sym_LT_EQ] = ACTIONS(3463), - [anon_sym_GT_EQ] = ACTIONS(3463), - [anon_sym_EQ_TILDE] = ACTIONS(3465), - [anon_sym_BANG_TILDE] = ACTIONS(3465), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_bit_DASHshl] = ACTIONS(3471), - [anon_sym_bit_DASHshr] = ACTIONS(3471), - [anon_sym_bit_DASHand] = ACTIONS(3473), - [anon_sym_bit_DASHxor] = ACTIONS(3475), - [anon_sym_bit_DASHor] = ACTIONS(3481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3489), + [anon_sym_false] = ACTIONS(3489), + [anon_sym_null] = ACTIONS(3491), + [aux_sym_cmd_identifier_token38] = ACTIONS(3493), + [aux_sym_cmd_identifier_token39] = ACTIONS(3493), + [aux_sym_cmd_identifier_token40] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3501), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(3505), + [aux_sym_expr_unary_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3509), + [anon_sym_DOT_DOT_LT] = ACTIONS(3509), + [aux_sym__val_number_decimal_token1] = ACTIONS(3511), + [aux_sym__val_number_decimal_token2] = ACTIONS(3513), + [aux_sym__val_number_decimal_token3] = ACTIONS(3515), + [aux_sym__val_number_decimal_token4] = ACTIONS(3517), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1130] = { [sym_comment] = STATE(1130), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1131] = { [sym_comment] = STATE(1131), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(918), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [sym__newline] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_in] = ACTIONS(916), - [aux_sym_ctrl_match_token1] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym__] = ACTIONS(916), - [anon_sym_DOT_DOT] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_and] = ACTIONS(918), - [anon_sym_xor] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_not_DASHin] = ACTIONS(918), - [anon_sym_starts_DASHwith] = ACTIONS(918), - [anon_sym_ends_DASHwith] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT2] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_TILDE] = ACTIONS(918), - [anon_sym_BANG_TILDE] = ACTIONS(918), - [anon_sym_STAR_STAR] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(916), - [anon_sym_mod] = ACTIONS(918), - [anon_sym_SLASH_SLASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(918), - [anon_sym_bit_DASHshr] = ACTIONS(918), - [anon_sym_bit_DASHand] = ACTIONS(918), - [anon_sym_bit_DASHxor] = ACTIONS(918), - [anon_sym_bit_DASHor] = ACTIONS(918), - [anon_sym_DOT_DOT_EQ] = ACTIONS(918), - [anon_sym_DOT_DOT_LT] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_0b] = ACTIONS(916), - [anon_sym_0o] = ACTIONS(916), - [anon_sym_0x] = ACTIONS(916), - [sym_val_date] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [aux_sym_unquoted_token1] = ACTIONS(916), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_null] = ACTIONS(2133), + [aux_sym_cmd_identifier_token38] = ACTIONS(2133), + [aux_sym_cmd_identifier_token39] = ACTIONS(2133), + [aux_sym_cmd_identifier_token40] = ACTIONS(2133), + [sym__newline] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_COMMA] = ACTIONS(2133), + [anon_sym_DOLLAR] = ACTIONS(2133), + [aux_sym_ctrl_match_token1] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym__] = ACTIONS(2131), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [aux_sym_expr_binary_token1] = ACTIONS(2133), + [aux_sym_expr_binary_token2] = ACTIONS(2133), + [aux_sym_expr_binary_token3] = ACTIONS(2133), + [aux_sym_expr_binary_token4] = ACTIONS(2133), + [aux_sym_expr_binary_token5] = ACTIONS(2133), + [aux_sym_expr_binary_token6] = ACTIONS(2133), + [aux_sym_expr_binary_token7] = ACTIONS(2133), + [aux_sym_expr_binary_token8] = ACTIONS(2133), + [aux_sym_expr_binary_token9] = ACTIONS(2133), + [aux_sym_expr_binary_token10] = ACTIONS(2133), + [aux_sym_expr_binary_token11] = ACTIONS(2133), + [aux_sym_expr_binary_token12] = ACTIONS(2133), + [aux_sym_expr_binary_token13] = ACTIONS(2133), + [aux_sym_expr_binary_token14] = ACTIONS(2133), + [aux_sym_expr_binary_token15] = ACTIONS(2133), + [aux_sym_expr_binary_token16] = ACTIONS(2133), + [aux_sym_expr_binary_token17] = ACTIONS(2133), + [aux_sym_expr_binary_token18] = ACTIONS(2133), + [aux_sym_expr_binary_token19] = ACTIONS(2133), + [aux_sym_expr_binary_token20] = ACTIONS(2133), + [aux_sym_expr_binary_token21] = ACTIONS(2133), + [aux_sym_expr_binary_token22] = ACTIONS(2133), + [aux_sym_expr_binary_token23] = ACTIONS(2133), + [aux_sym_expr_binary_token24] = ACTIONS(2133), + [aux_sym_expr_binary_token25] = ACTIONS(2133), + [aux_sym_expr_binary_token26] = ACTIONS(2133), + [aux_sym_expr_binary_token27] = ACTIONS(2133), + [aux_sym_expr_binary_token28] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2133), + [anon_sym_DOT_DOT_LT] = ACTIONS(2133), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2133), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), + [aux_sym__val_number_token1] = ACTIONS(2133), + [aux_sym__val_number_token2] = ACTIONS(2133), + [aux_sym__val_number_token3] = ACTIONS(2133), + [anon_sym_0b] = ACTIONS(2131), + [anon_sym_0o] = ACTIONS(2131), + [anon_sym_0x] = ACTIONS(2131), + [sym_val_date] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2133), + [sym__str_single_quotes] = ACTIONS(2133), + [sym__str_back_ticks] = ACTIONS(2133), + [anon_sym_err_GT] = ACTIONS(2131), + [anon_sym_out_GT] = ACTIONS(2131), + [anon_sym_e_GT] = ACTIONS(2131), + [anon_sym_o_GT] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT] = ACTIONS(2131), + [anon_sym_err_GT_GT] = ACTIONS(2133), + [anon_sym_out_GT_GT] = ACTIONS(2133), + [anon_sym_e_GT_GT] = ACTIONS(2133), + [anon_sym_o_GT_GT] = ACTIONS(2133), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2133), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2133), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2133), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2133), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(247), }, [1132] = { - [sym_expr_unary] = STATE(4644), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_parenthesized] = STATE(4321), - [sym_val_range] = STATE(4644), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(4644), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4273), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(4102), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(4376), - [sym__unquoted_with_expr] = STATE(4631), - [sym__unquoted_anonymous_prefix] = STATE(7067), [sym_comment] = STATE(1132), - [anon_sym_true] = ACTIONS(3483), - [anon_sym_false] = ACTIONS(3483), - [anon_sym_null] = ACTIONS(3485), - [aux_sym_cmd_identifier_token38] = ACTIONS(3487), - [aux_sym_cmd_identifier_token39] = ACTIONS(3487), - [aux_sym_cmd_identifier_token40] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [aux_sym_expr_unary_token1] = ACTIONS(3493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3495), - [anon_sym_DOT_DOT_LT] = ACTIONS(3495), - [aux_sym__val_number_decimal_token1] = ACTIONS(3497), - [aux_sym__val_number_decimal_token2] = ACTIONS(3499), - [anon_sym_DOT2] = ACTIONS(3501), - [aux_sym__val_number_decimal_token3] = ACTIONS(3503), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3537), + [anon_sym_false] = ACTIONS(3537), + [anon_sym_null] = ACTIONS(3537), + [aux_sym_cmd_identifier_token38] = ACTIONS(3537), + [aux_sym_cmd_identifier_token39] = ACTIONS(3537), + [aux_sym_cmd_identifier_token40] = ACTIONS(3537), + [sym__newline] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3537), + [anon_sym_LPAREN] = ACTIONS(3537), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3537), + [aux_sym_ctrl_match_token1] = ACTIONS(3537), + [anon_sym_RBRACE] = ACTIONS(3537), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3540), + [aux_sym_expr_binary_token1] = ACTIONS(2317), + [aux_sym_expr_binary_token2] = ACTIONS(2317), + [aux_sym_expr_binary_token3] = ACTIONS(2317), + [aux_sym_expr_binary_token4] = ACTIONS(2317), + [aux_sym_expr_binary_token5] = ACTIONS(2317), + [aux_sym_expr_binary_token6] = ACTIONS(2317), + [aux_sym_expr_binary_token7] = ACTIONS(2317), + [aux_sym_expr_binary_token8] = ACTIONS(2317), + [aux_sym_expr_binary_token9] = ACTIONS(2317), + [aux_sym_expr_binary_token10] = ACTIONS(2317), + [aux_sym_expr_binary_token11] = ACTIONS(2317), + [aux_sym_expr_binary_token12] = ACTIONS(2317), + [aux_sym_expr_binary_token13] = ACTIONS(2317), + [aux_sym_expr_binary_token14] = ACTIONS(2317), + [aux_sym_expr_binary_token15] = ACTIONS(2317), + [aux_sym_expr_binary_token16] = ACTIONS(2317), + [aux_sym_expr_binary_token17] = ACTIONS(2317), + [aux_sym_expr_binary_token18] = ACTIONS(2317), + [aux_sym_expr_binary_token19] = ACTIONS(2317), + [aux_sym_expr_binary_token20] = ACTIONS(2317), + [aux_sym_expr_binary_token21] = ACTIONS(2317), + [aux_sym_expr_binary_token22] = ACTIONS(2317), + [aux_sym_expr_binary_token23] = ACTIONS(2317), + [aux_sym_expr_binary_token24] = ACTIONS(2317), + [aux_sym_expr_binary_token25] = ACTIONS(2317), + [aux_sym_expr_binary_token26] = ACTIONS(2317), + [aux_sym_expr_binary_token27] = ACTIONS(2317), + [aux_sym_expr_binary_token28] = ACTIONS(2317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3537), + [anon_sym_DOT_DOT_LT] = ACTIONS(3537), + [aux_sym__val_number_decimal_token1] = ACTIONS(3540), + [aux_sym__val_number_decimal_token2] = ACTIONS(3537), + [aux_sym__val_number_decimal_token3] = ACTIONS(3537), + [aux_sym__val_number_decimal_token4] = ACTIONS(3537), + [aux_sym__val_number_token1] = ACTIONS(3537), + [aux_sym__val_number_token2] = ACTIONS(3537), + [aux_sym__val_number_token3] = ACTIONS(3537), + [anon_sym_0b] = ACTIONS(3540), + [anon_sym_0o] = ACTIONS(3540), + [anon_sym_0x] = ACTIONS(3540), + [sym_val_date] = ACTIONS(3537), + [anon_sym_DQUOTE] = ACTIONS(3537), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_err_GT] = ACTIONS(3540), + [anon_sym_out_GT] = ACTIONS(3540), + [anon_sym_e_GT] = ACTIONS(3540), + [anon_sym_o_GT] = ACTIONS(3540), + [anon_sym_err_PLUSout_GT] = ACTIONS(3540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3540), + [anon_sym_o_PLUSe_GT] = ACTIONS(3540), + [anon_sym_e_PLUSo_GT] = ACTIONS(3540), + [anon_sym_err_GT_GT] = ACTIONS(3537), + [anon_sym_out_GT_GT] = ACTIONS(3537), + [anon_sym_e_GT_GT] = ACTIONS(3537), + [anon_sym_o_GT_GT] = ACTIONS(3537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3537), + [aux_sym_unquoted_token1] = ACTIONS(3540), + [anon_sym_POUND] = ACTIONS(247), }, [1133] = { - [sym_expr_unary] = STATE(4657), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_parenthesized] = STATE(4261), - [sym_val_range] = STATE(4657), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(4657), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4273), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(4102), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(4372), - [sym__unquoted_with_expr] = STATE(4728), - [sym__unquoted_anonymous_prefix] = STATE(7067), [sym_comment] = STATE(1133), - [anon_sym_true] = ACTIONS(3483), - [anon_sym_false] = ACTIONS(3483), - [anon_sym_null] = ACTIONS(3485), - [aux_sym_cmd_identifier_token38] = ACTIONS(3487), - [aux_sym_cmd_identifier_token39] = ACTIONS(3487), - [aux_sym_cmd_identifier_token40] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [aux_sym_expr_unary_token1] = ACTIONS(3493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3495), - [anon_sym_DOT_DOT_LT] = ACTIONS(3495), - [aux_sym__val_number_decimal_token1] = ACTIONS(3497), - [aux_sym__val_number_decimal_token2] = ACTIONS(3499), - [anon_sym_DOT2] = ACTIONS(3501), - [aux_sym__val_number_decimal_token3] = ACTIONS(3503), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1134] = { - [sym_expr_unary] = STATE(4729), - [sym__expr_unary_minus] = STATE(2491), - [sym_expr_parenthesized] = STATE(4301), - [sym_val_range] = STATE(4729), - [sym__val_range] = STATE(7591), - [sym__val_range_with_end] = STATE(7571), - [sym__value] = STATE(4729), - [sym_val_nothing] = STATE(2541), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4273), - [sym_val_number] = STATE(2541), - [sym__val_number_decimal] = STATE(4102), - [sym__val_number] = STATE(2523), - [sym_val_duration] = STATE(2541), - [sym_val_filesize] = STATE(2541), - [sym_val_binary] = STATE(2541), - [sym_val_string] = STATE(2541), - [sym__str_double_quotes] = STATE(2116), - [sym_val_interpolated] = STATE(2541), - [sym__inter_single_quotes] = STATE(2524), - [sym__inter_double_quotes] = STATE(2526), - [sym_val_list] = STATE(2541), - [sym_val_record] = STATE(2541), - [sym_val_table] = STATE(2541), - [sym_val_closure] = STATE(2541), - [sym_unquoted] = STATE(4405), - [sym__unquoted_with_expr] = STATE(4732), - [sym__unquoted_anonymous_prefix] = STATE(7067), + [sym_expr_unary] = STATE(4850), + [sym__expr_unary_minus] = STATE(4797), + [sym_expr_parenthesized] = STATE(4405), + [sym_val_range] = STATE(4850), + [sym__val_range] = STATE(7957), + [sym__val_range_with_end] = STATE(7665), + [sym__value] = STATE(4850), + [sym_val_nothing] = STATE(4339), + [sym_val_bool] = STATE(4450), + [sym_val_variable] = STATE(4431), + [sym_val_number] = STATE(4339), + [sym__val_number_decimal] = STATE(4127), + [sym__val_number] = STATE(4400), + [sym_val_duration] = STATE(4339), + [sym_val_filesize] = STATE(4339), + [sym_val_binary] = STATE(4339), + [sym_val_string] = STATE(4339), + [sym__str_double_quotes] = STATE(3756), + [sym_val_interpolated] = STATE(4339), + [sym__inter_single_quotes] = STATE(4389), + [sym__inter_double_quotes] = STATE(4338), + [sym_val_list] = STATE(4339), + [sym_val_record] = STATE(4339), + [sym_val_table] = STATE(4339), + [sym_val_closure] = STATE(4339), + [sym_unquoted] = STATE(4487), + [sym__unquoted_with_expr] = STATE(4852), + [sym__unquoted_anonymous_prefix] = STATE(7523), [sym_comment] = STATE(1134), - [anon_sym_true] = ACTIONS(3483), - [anon_sym_false] = ACTIONS(3483), - [anon_sym_null] = ACTIONS(3485), - [aux_sym_cmd_identifier_token38] = ACTIONS(3487), - [aux_sym_cmd_identifier_token39] = ACTIONS(3487), - [aux_sym_cmd_identifier_token40] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [aux_sym_expr_unary_token1] = ACTIONS(3493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3495), - [anon_sym_DOT_DOT_LT] = ACTIONS(3495), - [aux_sym__val_number_decimal_token1] = ACTIONS(3497), - [aux_sym__val_number_decimal_token2] = ACTIONS(3499), - [anon_sym_DOT2] = ACTIONS(3501), - [aux_sym__val_number_decimal_token3] = ACTIONS(3503), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3543), + [anon_sym_false] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [aux_sym_cmd_identifier_token38] = ACTIONS(3547), + [aux_sym_cmd_identifier_token39] = ACTIONS(3547), + [aux_sym_cmd_identifier_token40] = ACTIONS(3547), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LPAREN] = ACTIONS(3551), + [anon_sym_DOLLAR] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3555), + [aux_sym_ctrl_match_token1] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3559), + [aux_sym_expr_unary_token1] = ACTIONS(3561), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3563), + [anon_sym_DOT_DOT_LT] = ACTIONS(3563), + [aux_sym__val_number_decimal_token1] = ACTIONS(3565), + [aux_sym__val_number_decimal_token2] = ACTIONS(3567), + [aux_sym__val_number_decimal_token3] = ACTIONS(3569), + [aux_sym__val_number_decimal_token4] = ACTIONS(3571), + [aux_sym__val_number_token1] = ACTIONS(3573), + [aux_sym__val_number_token2] = ACTIONS(3573), + [aux_sym__val_number_token3] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(3575), + [anon_sym_0o] = ACTIONS(3577), + [anon_sym_0x] = ACTIONS(3577), + [sym_val_date] = ACTIONS(3579), + [anon_sym_DQUOTE] = ACTIONS(3581), + [sym__str_single_quotes] = ACTIONS(3583), + [sym__str_back_ticks] = ACTIONS(3583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3589), + [anon_sym_POUND] = ACTIONS(247), }, [1135] = { [sym_comment] = STATE(1135), - [anon_sym_true] = ACTIONS(2159), - [anon_sym_false] = ACTIONS(2159), - [anon_sym_null] = ACTIONS(2159), - [aux_sym_cmd_identifier_token38] = ACTIONS(2159), - [aux_sym_cmd_identifier_token39] = ACTIONS(2159), - [aux_sym_cmd_identifier_token40] = ACTIONS(2159), - [sym__newline] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_in] = ACTIONS(2155), - [aux_sym_ctrl_match_token1] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym__] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2155), - [anon_sym_and] = ACTIONS(2159), - [anon_sym_xor] = ACTIONS(2159), - [anon_sym_or] = ACTIONS(2159), - [anon_sym_not_DASHin] = ACTIONS(2159), - [anon_sym_starts_DASHwith] = ACTIONS(2159), - [anon_sym_ends_DASHwith] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_LT2] = ACTIONS(2155), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_EQ_TILDE] = ACTIONS(2159), - [anon_sym_BANG_TILDE] = ACTIONS(2159), - [anon_sym_STAR_STAR] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2155), - [anon_sym_mod] = ACTIONS(2159), - [anon_sym_SLASH_SLASH] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_bit_DASHshl] = ACTIONS(2159), - [anon_sym_bit_DASHshr] = ACTIONS(2159), - [anon_sym_bit_DASHand] = ACTIONS(2159), - [anon_sym_bit_DASHxor] = ACTIONS(2159), - [anon_sym_bit_DASHor] = ACTIONS(2159), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2159), - [anon_sym_DOT_DOT_LT] = ACTIONS(2159), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2159), - [anon_sym_DOT2] = ACTIONS(2155), - [aux_sym__val_number_decimal_token3] = ACTIONS(2159), - [aux_sym__val_number_token1] = ACTIONS(2159), - [aux_sym__val_number_token2] = ACTIONS(2159), - [aux_sym__val_number_token3] = ACTIONS(2159), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2155), - [anon_sym_0x] = ACTIONS(2155), - [sym_val_date] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym__str_single_quotes] = ACTIONS(2159), - [sym__str_back_ticks] = ACTIONS(2159), - [anon_sym_err_GT] = ACTIONS(2155), - [anon_sym_out_GT] = ACTIONS(2155), - [anon_sym_e_GT] = ACTIONS(2155), - [anon_sym_o_GT] = ACTIONS(2155), - [anon_sym_err_PLUSout_GT] = ACTIONS(2155), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2155), - [anon_sym_o_PLUSe_GT] = ACTIONS(2155), - [anon_sym_e_PLUSo_GT] = ACTIONS(2155), - [anon_sym_err_GT_GT] = ACTIONS(2159), - [anon_sym_out_GT_GT] = ACTIONS(2159), - [anon_sym_e_GT_GT] = ACTIONS(2159), - [anon_sym_o_GT_GT] = ACTIONS(2159), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2159), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2159), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2159), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2159), - [aux_sym_unquoted_token1] = ACTIONS(2155), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym__] = ACTIONS(1021), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(247), }, [1136] = { + [sym_expr_unary] = STATE(4854), + [sym__expr_unary_minus] = STATE(4797), + [sym_expr_parenthesized] = STATE(4324), + [sym_val_range] = STATE(4854), + [sym__val_range] = STATE(7957), + [sym__val_range_with_end] = STATE(7665), + [sym__value] = STATE(4854), + [sym_val_nothing] = STATE(4339), + [sym_val_bool] = STATE(4450), + [sym_val_variable] = STATE(4431), + [sym_val_number] = STATE(4339), + [sym__val_number_decimal] = STATE(4127), + [sym__val_number] = STATE(4400), + [sym_val_duration] = STATE(4339), + [sym_val_filesize] = STATE(4339), + [sym_val_binary] = STATE(4339), + [sym_val_string] = STATE(4339), + [sym__str_double_quotes] = STATE(3756), + [sym_val_interpolated] = STATE(4339), + [sym__inter_single_quotes] = STATE(4389), + [sym__inter_double_quotes] = STATE(4338), + [sym_val_list] = STATE(4339), + [sym_val_record] = STATE(4339), + [sym_val_table] = STATE(4339), + [sym_val_closure] = STATE(4339), + [sym_unquoted] = STATE(4494), + [sym__unquoted_with_expr] = STATE(4724), + [sym__unquoted_anonymous_prefix] = STATE(7523), [sym_comment] = STATE(1136), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(950), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_in] = ACTIONS(948), - [aux_sym_ctrl_match_token1] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym__] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_DOT_DOT_EQ] = ACTIONS(950), - [anon_sym_DOT_DOT_LT] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [aux_sym_unquoted_token1] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3543), + [anon_sym_false] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [aux_sym_cmd_identifier_token38] = ACTIONS(3547), + [aux_sym_cmd_identifier_token39] = ACTIONS(3547), + [aux_sym_cmd_identifier_token40] = ACTIONS(3547), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LPAREN] = ACTIONS(3551), + [anon_sym_DOLLAR] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3555), + [aux_sym_ctrl_match_token1] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3559), + [aux_sym_expr_unary_token1] = ACTIONS(3561), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3563), + [anon_sym_DOT_DOT_LT] = ACTIONS(3563), + [aux_sym__val_number_decimal_token1] = ACTIONS(3565), + [aux_sym__val_number_decimal_token2] = ACTIONS(3567), + [aux_sym__val_number_decimal_token3] = ACTIONS(3569), + [aux_sym__val_number_decimal_token4] = ACTIONS(3571), + [aux_sym__val_number_token1] = ACTIONS(3573), + [aux_sym__val_number_token2] = ACTIONS(3573), + [aux_sym__val_number_token3] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(3575), + [anon_sym_0o] = ACTIONS(3577), + [anon_sym_0x] = ACTIONS(3577), + [sym_val_date] = ACTIONS(3579), + [anon_sym_DQUOTE] = ACTIONS(3581), + [sym__str_single_quotes] = ACTIONS(3583), + [sym__str_back_ticks] = ACTIONS(3583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3589), + [anon_sym_POUND] = ACTIONS(247), }, [1137] = { [sym_comment] = STATE(1137), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [anon_sym_null] = ACTIONS(2165), - [aux_sym_cmd_identifier_token38] = ACTIONS(2165), - [aux_sym_cmd_identifier_token39] = ACTIONS(2165), - [aux_sym_cmd_identifier_token40] = ACTIONS(2165), - [sym__newline] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_COMMA] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [aux_sym_ctrl_match_token1] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym__] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_and] = ACTIONS(2165), - [anon_sym_xor] = ACTIONS(2165), - [anon_sym_or] = ACTIONS(2165), - [anon_sym_not_DASHin] = ACTIONS(2165), - [anon_sym_starts_DASHwith] = ACTIONS(2165), - [anon_sym_ends_DASHwith] = ACTIONS(2165), - [anon_sym_EQ_EQ] = ACTIONS(2165), - [anon_sym_BANG_EQ] = ACTIONS(2165), - [anon_sym_LT2] = ACTIONS(2163), - [anon_sym_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_EQ] = ACTIONS(2165), - [anon_sym_EQ_TILDE] = ACTIONS(2165), - [anon_sym_BANG_TILDE] = ACTIONS(2165), - [anon_sym_STAR_STAR] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2165), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_mod] = ACTIONS(2165), - [anon_sym_SLASH_SLASH] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_bit_DASHshl] = ACTIONS(2165), - [anon_sym_bit_DASHshr] = ACTIONS(2165), - [anon_sym_bit_DASHand] = ACTIONS(2165), - [anon_sym_bit_DASHxor] = ACTIONS(2165), - [anon_sym_bit_DASHor] = ACTIONS(2165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2165), - [anon_sym_DOT_DOT_LT] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2163), - [aux_sym__val_number_decimal_token2] = ACTIONS(2165), - [anon_sym_DOT2] = ACTIONS(2163), - [aux_sym__val_number_decimal_token3] = ACTIONS(2165), - [aux_sym__val_number_token1] = ACTIONS(2165), - [aux_sym__val_number_token2] = ACTIONS(2165), - [aux_sym__val_number_token3] = ACTIONS(2165), - [anon_sym_0b] = ACTIONS(2163), - [anon_sym_0o] = ACTIONS(2163), - [anon_sym_0x] = ACTIONS(2163), - [sym_val_date] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_err_GT] = ACTIONS(2163), - [anon_sym_out_GT] = ACTIONS(2163), - [anon_sym_e_GT] = ACTIONS(2163), - [anon_sym_o_GT] = ACTIONS(2163), - [anon_sym_err_PLUSout_GT] = ACTIONS(2163), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2163), - [anon_sym_o_PLUSe_GT] = ACTIONS(2163), - [anon_sym_e_PLUSo_GT] = ACTIONS(2163), - [anon_sym_err_GT_GT] = ACTIONS(2165), - [anon_sym_out_GT_GT] = ACTIONS(2165), - [anon_sym_e_GT_GT] = ACTIONS(2165), - [anon_sym_o_GT_GT] = ACTIONS(2165), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2165), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2165), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2165), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2165), - [aux_sym_unquoted_token1] = ACTIONS(2163), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [aux_sym_ctrl_match_token1] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym__] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(976), + [aux_sym_expr_binary_token1] = ACTIONS(978), + [aux_sym_expr_binary_token2] = ACTIONS(978), + [aux_sym_expr_binary_token3] = ACTIONS(978), + [aux_sym_expr_binary_token4] = ACTIONS(978), + [aux_sym_expr_binary_token5] = ACTIONS(978), + [aux_sym_expr_binary_token6] = ACTIONS(978), + [aux_sym_expr_binary_token7] = ACTIONS(978), + [aux_sym_expr_binary_token8] = ACTIONS(978), + [aux_sym_expr_binary_token9] = ACTIONS(978), + [aux_sym_expr_binary_token10] = ACTIONS(978), + [aux_sym_expr_binary_token11] = ACTIONS(978), + [aux_sym_expr_binary_token12] = ACTIONS(978), + [aux_sym_expr_binary_token13] = ACTIONS(978), + [aux_sym_expr_binary_token14] = ACTIONS(978), + [aux_sym_expr_binary_token15] = ACTIONS(978), + [aux_sym_expr_binary_token16] = ACTIONS(978), + [aux_sym_expr_binary_token17] = ACTIONS(978), + [aux_sym_expr_binary_token18] = ACTIONS(978), + [aux_sym_expr_binary_token19] = ACTIONS(978), + [aux_sym_expr_binary_token20] = ACTIONS(978), + [aux_sym_expr_binary_token21] = ACTIONS(978), + [aux_sym_expr_binary_token22] = ACTIONS(978), + [aux_sym_expr_binary_token23] = ACTIONS(978), + [aux_sym_expr_binary_token24] = ACTIONS(978), + [aux_sym_expr_binary_token25] = ACTIONS(978), + [aux_sym_expr_binary_token26] = ACTIONS(978), + [aux_sym_expr_binary_token27] = ACTIONS(978), + [aux_sym_expr_binary_token28] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [1138] = { [sym_comment] = STATE(1138), - [anon_sym_true] = ACTIONS(3507), - [anon_sym_false] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3507), - [aux_sym_cmd_identifier_token38] = ACTIONS(3507), - [aux_sym_cmd_identifier_token39] = ACTIONS(3507), - [aux_sym_cmd_identifier_token40] = ACTIONS(3507), - [sym__newline] = ACTIONS(3507), - [anon_sym_LBRACK] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3507), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3507), - [anon_sym_GT] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3509), - [aux_sym_ctrl_match_token1] = ACTIONS(3507), - [anon_sym_RBRACE] = ACTIONS(3507), - [anon_sym__] = ACTIONS(3509), - [anon_sym_DOT_DOT] = ACTIONS(3509), - [anon_sym_STAR] = ACTIONS(3509), - [anon_sym_and] = ACTIONS(3507), - [anon_sym_xor] = ACTIONS(3507), - [anon_sym_or] = ACTIONS(3507), - [anon_sym_not_DASHin] = ACTIONS(3507), - [anon_sym_starts_DASHwith] = ACTIONS(3507), - [anon_sym_ends_DASHwith] = ACTIONS(3507), - [anon_sym_EQ_EQ] = ACTIONS(3507), - [anon_sym_BANG_EQ] = ACTIONS(3507), - [anon_sym_LT2] = ACTIONS(3509), - [anon_sym_LT_EQ] = ACTIONS(3507), - [anon_sym_GT_EQ] = ACTIONS(3507), - [anon_sym_EQ_TILDE] = ACTIONS(3507), - [anon_sym_BANG_TILDE] = ACTIONS(3507), - [anon_sym_STAR_STAR] = ACTIONS(3507), - [anon_sym_PLUS_PLUS] = ACTIONS(3507), - [anon_sym_SLASH] = ACTIONS(3509), - [anon_sym_mod] = ACTIONS(3507), - [anon_sym_SLASH_SLASH] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_bit_DASHshl] = ACTIONS(3507), - [anon_sym_bit_DASHshr] = ACTIONS(3507), - [anon_sym_bit_DASHand] = ACTIONS(3507), - [anon_sym_bit_DASHxor] = ACTIONS(3507), - [anon_sym_bit_DASHor] = ACTIONS(3507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3507), - [anon_sym_DOT_DOT_LT] = ACTIONS(3507), - [aux_sym__val_number_decimal_token1] = ACTIONS(3509), - [aux_sym__val_number_decimal_token2] = ACTIONS(3507), - [anon_sym_DOT2] = ACTIONS(3509), - [aux_sym__val_number_decimal_token3] = ACTIONS(3507), - [aux_sym__val_number_token1] = ACTIONS(3507), - [aux_sym__val_number_token2] = ACTIONS(3507), - [aux_sym__val_number_token3] = ACTIONS(3507), - [anon_sym_0b] = ACTIONS(3509), - [anon_sym_0o] = ACTIONS(3509), - [anon_sym_0x] = ACTIONS(3509), - [sym_val_date] = ACTIONS(3507), - [anon_sym_DQUOTE] = ACTIONS(3507), - [sym__str_single_quotes] = ACTIONS(3507), - [sym__str_back_ticks] = ACTIONS(3507), - [anon_sym_err_GT] = ACTIONS(3509), - [anon_sym_out_GT] = ACTIONS(3509), - [anon_sym_e_GT] = ACTIONS(3509), - [anon_sym_o_GT] = ACTIONS(3509), - [anon_sym_err_PLUSout_GT] = ACTIONS(3509), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3509), - [anon_sym_o_PLUSe_GT] = ACTIONS(3509), - [anon_sym_e_PLUSo_GT] = ACTIONS(3509), - [anon_sym_err_GT_GT] = ACTIONS(3507), - [anon_sym_out_GT_GT] = ACTIONS(3507), - [anon_sym_e_GT_GT] = ACTIONS(3507), - [anon_sym_o_GT_GT] = ACTIONS(3507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3507), - [aux_sym_unquoted_token1] = ACTIONS(3509), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3591), + [anon_sym_false] = ACTIONS(3591), + [anon_sym_null] = ACTIONS(3591), + [aux_sym_cmd_identifier_token38] = ACTIONS(3591), + [aux_sym_cmd_identifier_token39] = ACTIONS(3591), + [aux_sym_cmd_identifier_token40] = ACTIONS(3591), + [sym__newline] = ACTIONS(3591), + [anon_sym_LBRACK] = ACTIONS(3591), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_COMMA] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3591), + [aux_sym_ctrl_match_token1] = ACTIONS(3591), + [anon_sym_RBRACE] = ACTIONS(3591), + [anon_sym__] = ACTIONS(3593), + [anon_sym_DOT_DOT] = ACTIONS(3593), + [aux_sym_expr_binary_token1] = ACTIONS(3591), + [aux_sym_expr_binary_token2] = ACTIONS(3591), + [aux_sym_expr_binary_token3] = ACTIONS(3591), + [aux_sym_expr_binary_token4] = ACTIONS(3591), + [aux_sym_expr_binary_token5] = ACTIONS(3591), + [aux_sym_expr_binary_token6] = ACTIONS(3591), + [aux_sym_expr_binary_token7] = ACTIONS(3591), + [aux_sym_expr_binary_token8] = ACTIONS(3591), + [aux_sym_expr_binary_token9] = ACTIONS(3591), + [aux_sym_expr_binary_token10] = ACTIONS(3591), + [aux_sym_expr_binary_token11] = ACTIONS(3591), + [aux_sym_expr_binary_token12] = ACTIONS(3591), + [aux_sym_expr_binary_token13] = ACTIONS(3591), + [aux_sym_expr_binary_token14] = ACTIONS(3591), + [aux_sym_expr_binary_token15] = ACTIONS(3591), + [aux_sym_expr_binary_token16] = ACTIONS(3591), + [aux_sym_expr_binary_token17] = ACTIONS(3591), + [aux_sym_expr_binary_token18] = ACTIONS(3591), + [aux_sym_expr_binary_token19] = ACTIONS(3591), + [aux_sym_expr_binary_token20] = ACTIONS(3591), + [aux_sym_expr_binary_token21] = ACTIONS(3591), + [aux_sym_expr_binary_token22] = ACTIONS(3591), + [aux_sym_expr_binary_token23] = ACTIONS(3591), + [aux_sym_expr_binary_token24] = ACTIONS(3591), + [aux_sym_expr_binary_token25] = ACTIONS(3591), + [aux_sym_expr_binary_token26] = ACTIONS(3591), + [aux_sym_expr_binary_token27] = ACTIONS(3591), + [aux_sym_expr_binary_token28] = ACTIONS(3591), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3591), + [anon_sym_DOT_DOT_LT] = ACTIONS(3591), + [aux_sym__val_number_decimal_token1] = ACTIONS(3593), + [aux_sym__val_number_decimal_token2] = ACTIONS(3591), + [aux_sym__val_number_decimal_token3] = ACTIONS(3591), + [aux_sym__val_number_decimal_token4] = ACTIONS(3591), + [aux_sym__val_number_token1] = ACTIONS(3591), + [aux_sym__val_number_token2] = ACTIONS(3591), + [aux_sym__val_number_token3] = ACTIONS(3591), + [anon_sym_0b] = ACTIONS(3593), + [anon_sym_0o] = ACTIONS(3593), + [anon_sym_0x] = ACTIONS(3593), + [sym_val_date] = ACTIONS(3591), + [anon_sym_DQUOTE] = ACTIONS(3591), + [sym__str_single_quotes] = ACTIONS(3591), + [sym__str_back_ticks] = ACTIONS(3591), + [anon_sym_err_GT] = ACTIONS(3593), + [anon_sym_out_GT] = ACTIONS(3593), + [anon_sym_e_GT] = ACTIONS(3593), + [anon_sym_o_GT] = ACTIONS(3593), + [anon_sym_err_PLUSout_GT] = ACTIONS(3593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3593), + [anon_sym_o_PLUSe_GT] = ACTIONS(3593), + [anon_sym_e_PLUSo_GT] = ACTIONS(3593), + [anon_sym_err_GT_GT] = ACTIONS(3591), + [anon_sym_out_GT_GT] = ACTIONS(3591), + [anon_sym_e_GT_GT] = ACTIONS(3591), + [anon_sym_o_GT_GT] = ACTIONS(3591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3591), + [aux_sym_unquoted_token1] = ACTIONS(3593), + [anon_sym_POUND] = ACTIONS(247), }, [1139] = { [sym_comment] = STATE(1139), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(922), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [sym__newline] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_in] = ACTIONS(920), - [aux_sym_ctrl_match_token1] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym__] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_and] = ACTIONS(922), - [anon_sym_xor] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_not_DASHin] = ACTIONS(922), - [anon_sym_starts_DASHwith] = ACTIONS(922), - [anon_sym_ends_DASHwith] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_BANG_TILDE] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(922), - [anon_sym_SLASH_SLASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(922), - [anon_sym_bit_DASHshr] = ACTIONS(922), - [anon_sym_bit_DASHand] = ACTIONS(922), - [anon_sym_bit_DASHxor] = ACTIONS(922), - [anon_sym_bit_DASHor] = ACTIONS(922), - [anon_sym_DOT_DOT_EQ] = ACTIONS(922), - [anon_sym_DOT_DOT_LT] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [aux_sym_unquoted_token1] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [aux_sym_cmd_identifier_token38] = ACTIONS(1537), + [aux_sym_cmd_identifier_token39] = ACTIONS(1537), + [aux_sym_cmd_identifier_token40] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_COMMA] = ACTIONS(1537), + [anon_sym_DOLLAR] = ACTIONS(1537), + [aux_sym_ctrl_match_token1] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym__] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [aux_sym_expr_binary_token1] = ACTIONS(1537), + [aux_sym_expr_binary_token2] = ACTIONS(1537), + [aux_sym_expr_binary_token3] = ACTIONS(1537), + [aux_sym_expr_binary_token4] = ACTIONS(1537), + [aux_sym_expr_binary_token5] = ACTIONS(1537), + [aux_sym_expr_binary_token6] = ACTIONS(1537), + [aux_sym_expr_binary_token7] = ACTIONS(1537), + [aux_sym_expr_binary_token8] = ACTIONS(1537), + [aux_sym_expr_binary_token9] = ACTIONS(1537), + [aux_sym_expr_binary_token10] = ACTIONS(1537), + [aux_sym_expr_binary_token11] = ACTIONS(1537), + [aux_sym_expr_binary_token12] = ACTIONS(1537), + [aux_sym_expr_binary_token13] = ACTIONS(1537), + [aux_sym_expr_binary_token14] = ACTIONS(1537), + [aux_sym_expr_binary_token15] = ACTIONS(1537), + [aux_sym_expr_binary_token16] = ACTIONS(1537), + [aux_sym_expr_binary_token17] = ACTIONS(1537), + [aux_sym_expr_binary_token18] = ACTIONS(1537), + [aux_sym_expr_binary_token19] = ACTIONS(1537), + [aux_sym_expr_binary_token20] = ACTIONS(1537), + [aux_sym_expr_binary_token21] = ACTIONS(1537), + [aux_sym_expr_binary_token22] = ACTIONS(1537), + [aux_sym_expr_binary_token23] = ACTIONS(1537), + [aux_sym_expr_binary_token24] = ACTIONS(1537), + [aux_sym_expr_binary_token25] = ACTIONS(1537), + [aux_sym_expr_binary_token26] = ACTIONS(1537), + [aux_sym_expr_binary_token27] = ACTIONS(1537), + [aux_sym_expr_binary_token28] = ACTIONS(1537), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), + [anon_sym_DOT_DOT_LT] = ACTIONS(1537), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1537), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), + [aux_sym__val_number_token1] = ACTIONS(1537), + [aux_sym__val_number_token2] = ACTIONS(1537), + [aux_sym__val_number_token3] = ACTIONS(1537), + [anon_sym_0b] = ACTIONS(1525), + [anon_sym_0o] = ACTIONS(1525), + [anon_sym_0x] = ACTIONS(1525), + [sym_val_date] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1537), + [sym__str_single_quotes] = ACTIONS(1537), + [sym__str_back_ticks] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [aux_sym_unquoted_token1] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(247), }, [1140] = { [sym_comment] = STATE(1140), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [anon_sym_null] = ACTIONS(2391), + [aux_sym_cmd_identifier_token38] = ACTIONS(2391), + [aux_sym_cmd_identifier_token39] = ACTIONS(2391), + [aux_sym_cmd_identifier_token40] = ACTIONS(2391), + [sym__newline] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_COMMA] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2391), + [aux_sym_ctrl_match_token1] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym__] = ACTIONS(2389), + [anon_sym_DOT_DOT] = ACTIONS(2389), + [aux_sym_expr_binary_token1] = ACTIONS(2391), + [aux_sym_expr_binary_token2] = ACTIONS(2391), + [aux_sym_expr_binary_token3] = ACTIONS(2391), + [aux_sym_expr_binary_token4] = ACTIONS(2391), + [aux_sym_expr_binary_token5] = ACTIONS(2391), + [aux_sym_expr_binary_token6] = ACTIONS(2391), + [aux_sym_expr_binary_token7] = ACTIONS(2391), + [aux_sym_expr_binary_token8] = ACTIONS(2391), + [aux_sym_expr_binary_token9] = ACTIONS(2391), + [aux_sym_expr_binary_token10] = ACTIONS(2391), + [aux_sym_expr_binary_token11] = ACTIONS(2391), + [aux_sym_expr_binary_token12] = ACTIONS(2391), + [aux_sym_expr_binary_token13] = ACTIONS(2391), + [aux_sym_expr_binary_token14] = ACTIONS(2391), + [aux_sym_expr_binary_token15] = ACTIONS(2391), + [aux_sym_expr_binary_token16] = ACTIONS(2391), + [aux_sym_expr_binary_token17] = ACTIONS(2391), + [aux_sym_expr_binary_token18] = ACTIONS(2391), + [aux_sym_expr_binary_token19] = ACTIONS(2391), + [aux_sym_expr_binary_token20] = ACTIONS(2391), + [aux_sym_expr_binary_token21] = ACTIONS(2391), + [aux_sym_expr_binary_token22] = ACTIONS(2391), + [aux_sym_expr_binary_token23] = ACTIONS(2391), + [aux_sym_expr_binary_token24] = ACTIONS(2391), + [aux_sym_expr_binary_token25] = ACTIONS(2391), + [aux_sym_expr_binary_token26] = ACTIONS(2391), + [aux_sym_expr_binary_token27] = ACTIONS(2391), + [aux_sym_expr_binary_token28] = ACTIONS(2391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2391), + [anon_sym_DOT_DOT_LT] = ACTIONS(2391), + [aux_sym__val_number_decimal_token1] = ACTIONS(2389), + [aux_sym__val_number_decimal_token2] = ACTIONS(2391), + [aux_sym__val_number_decimal_token3] = ACTIONS(2391), + [aux_sym__val_number_decimal_token4] = ACTIONS(2391), + [aux_sym__val_number_token1] = ACTIONS(2391), + [aux_sym__val_number_token2] = ACTIONS(2391), + [aux_sym__val_number_token3] = ACTIONS(2391), + [anon_sym_0b] = ACTIONS(2389), + [anon_sym_0o] = ACTIONS(2389), + [anon_sym_0x] = ACTIONS(2389), + [sym_val_date] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym__str_single_quotes] = ACTIONS(2391), + [sym__str_back_ticks] = ACTIONS(2391), + [anon_sym_err_GT] = ACTIONS(2389), + [anon_sym_out_GT] = ACTIONS(2389), + [anon_sym_e_GT] = ACTIONS(2389), + [anon_sym_o_GT] = ACTIONS(2389), + [anon_sym_err_PLUSout_GT] = ACTIONS(2389), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2389), + [anon_sym_o_PLUSe_GT] = ACTIONS(2389), + [anon_sym_e_PLUSo_GT] = ACTIONS(2389), + [anon_sym_err_GT_GT] = ACTIONS(2391), + [anon_sym_out_GT_GT] = ACTIONS(2391), + [anon_sym_e_GT_GT] = ACTIONS(2391), + [anon_sym_o_GT_GT] = ACTIONS(2391), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2391), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2391), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2391), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2391), + [aux_sym_unquoted_token1] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(247), }, [1141] = { [sym_comment] = STATE(1141), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2250), - [aux_sym_cmd_identifier_token38] = ACTIONS(2250), - [aux_sym_cmd_identifier_token39] = ACTIONS(2250), - [aux_sym_cmd_identifier_token40] = ACTIONS(2250), - [sym__newline] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2250), - [anon_sym_DOLLAR] = ACTIONS(2250), - [anon_sym_GT] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_in] = ACTIONS(2248), - [aux_sym_ctrl_match_token1] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym__] = ACTIONS(2248), - [anon_sym_DOT_DOT] = ACTIONS(2248), - [anon_sym_STAR] = ACTIONS(2248), - [anon_sym_and] = ACTIONS(2250), - [anon_sym_xor] = ACTIONS(2250), - [anon_sym_or] = ACTIONS(2250), - [anon_sym_not_DASHin] = ACTIONS(2250), - [anon_sym_starts_DASHwith] = ACTIONS(2250), - [anon_sym_ends_DASHwith] = ACTIONS(2250), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT2] = ACTIONS(2248), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_EQ_TILDE] = ACTIONS(2250), - [anon_sym_BANG_TILDE] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2248), - [anon_sym_mod] = ACTIONS(2250), - [anon_sym_SLASH_SLASH] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2248), - [anon_sym_bit_DASHshl] = ACTIONS(2250), - [anon_sym_bit_DASHshr] = ACTIONS(2250), - [anon_sym_bit_DASHand] = ACTIONS(2250), - [anon_sym_bit_DASHxor] = ACTIONS(2250), - [anon_sym_bit_DASHor] = ACTIONS(2250), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2250), - [anon_sym_DOT_DOT_LT] = ACTIONS(2250), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [anon_sym_DOT2] = ACTIONS(2248), - [aux_sym__val_number_decimal_token3] = ACTIONS(2250), - [aux_sym__val_number_token1] = ACTIONS(2250), - [aux_sym__val_number_token2] = ACTIONS(2250), - [aux_sym__val_number_token3] = ACTIONS(2250), - [anon_sym_0b] = ACTIONS(2248), - [anon_sym_0o] = ACTIONS(2248), - [anon_sym_0x] = ACTIONS(2248), - [sym_val_date] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2248), - [anon_sym_out_GT] = ACTIONS(2248), - [anon_sym_e_GT] = ACTIONS(2248), - [anon_sym_o_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT] = ACTIONS(2248), - [anon_sym_err_GT_GT] = ACTIONS(2250), - [anon_sym_out_GT_GT] = ACTIONS(2250), - [anon_sym_e_GT_GT] = ACTIONS(2250), - [anon_sym_o_GT_GT] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2250), - [aux_sym_unquoted_token1] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [aux_sym_ctrl_match_token1] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym__] = ACTIONS(962), + [anon_sym_DOT_DOT] = ACTIONS(962), + [aux_sym_expr_binary_token1] = ACTIONS(964), + [aux_sym_expr_binary_token2] = ACTIONS(964), + [aux_sym_expr_binary_token3] = ACTIONS(964), + [aux_sym_expr_binary_token4] = ACTIONS(964), + [aux_sym_expr_binary_token5] = ACTIONS(964), + [aux_sym_expr_binary_token6] = ACTIONS(964), + [aux_sym_expr_binary_token7] = ACTIONS(964), + [aux_sym_expr_binary_token8] = ACTIONS(964), + [aux_sym_expr_binary_token9] = ACTIONS(964), + [aux_sym_expr_binary_token10] = ACTIONS(964), + [aux_sym_expr_binary_token11] = ACTIONS(964), + [aux_sym_expr_binary_token12] = ACTIONS(964), + [aux_sym_expr_binary_token13] = ACTIONS(964), + [aux_sym_expr_binary_token14] = ACTIONS(964), + [aux_sym_expr_binary_token15] = ACTIONS(964), + [aux_sym_expr_binary_token16] = ACTIONS(964), + [aux_sym_expr_binary_token17] = ACTIONS(964), + [aux_sym_expr_binary_token18] = ACTIONS(964), + [aux_sym_expr_binary_token19] = ACTIONS(964), + [aux_sym_expr_binary_token20] = ACTIONS(964), + [aux_sym_expr_binary_token21] = ACTIONS(964), + [aux_sym_expr_binary_token22] = ACTIONS(964), + [aux_sym_expr_binary_token23] = ACTIONS(964), + [aux_sym_expr_binary_token24] = ACTIONS(964), + [aux_sym_expr_binary_token25] = ACTIONS(964), + [aux_sym_expr_binary_token26] = ACTIONS(964), + [aux_sym_expr_binary_token27] = ACTIONS(964), + [aux_sym_expr_binary_token28] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(962), + [anon_sym_0x] = ACTIONS(962), + [sym_val_date] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), }, [1142] = { [sym_comment] = STATE(1142), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(914), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_in] = ACTIONS(912), - [aux_sym_ctrl_match_token1] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym__] = ACTIONS(912), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(912), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(912), - [anon_sym_0o] = ACTIONS(912), - [anon_sym_0x] = ACTIONS(912), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [aux_sym_unquoted_token1] = ACTIONS(912), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1143] = { [sym_comment] = STATE(1143), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [anon_sym_null] = ACTIONS(1735), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1735), - [aux_sym_cmd_identifier_token40] = ACTIONS(1735), - [sym__newline] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1733), - [aux_sym_ctrl_match_token1] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym__] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [anon_sym_DOT2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [anon_sym_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1144] = { [sym_comment] = STATE(1144), - [anon_sym_true] = ACTIONS(2210), - [anon_sym_false] = ACTIONS(2210), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token38] = ACTIONS(2210), - [aux_sym_cmd_identifier_token39] = ACTIONS(2210), - [aux_sym_cmd_identifier_token40] = ACTIONS(2210), - [sym__newline] = ACTIONS(2210), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_DOLLAR] = ACTIONS(2210), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2208), - [aux_sym_ctrl_match_token1] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym__] = ACTIONS(2208), - [anon_sym_DOT_DOT] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_and] = ACTIONS(2210), - [anon_sym_xor] = ACTIONS(2210), - [anon_sym_or] = ACTIONS(2210), - [anon_sym_not_DASHin] = ACTIONS(2210), - [anon_sym_starts_DASHwith] = ACTIONS(2210), - [anon_sym_ends_DASHwith] = ACTIONS(2210), - [anon_sym_EQ_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ] = ACTIONS(2210), - [anon_sym_LT2] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2210), - [anon_sym_GT_EQ] = ACTIONS(2210), - [anon_sym_EQ_TILDE] = ACTIONS(2210), - [anon_sym_BANG_TILDE] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_mod] = ACTIONS(2210), - [anon_sym_SLASH_SLASH] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_bit_DASHshl] = ACTIONS(2210), - [anon_sym_bit_DASHshr] = ACTIONS(2210), - [anon_sym_bit_DASHand] = ACTIONS(2210), - [anon_sym_bit_DASHxor] = ACTIONS(2210), - [anon_sym_bit_DASHor] = ACTIONS(2210), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2210), - [anon_sym_DOT_DOT_LT] = ACTIONS(2210), - [aux_sym__val_number_decimal_token1] = ACTIONS(2208), - [aux_sym__val_number_decimal_token2] = ACTIONS(2210), - [anon_sym_DOT2] = ACTIONS(2208), - [aux_sym__val_number_decimal_token3] = ACTIONS(2210), - [aux_sym__val_number_token1] = ACTIONS(2210), - [aux_sym__val_number_token2] = ACTIONS(2210), - [aux_sym__val_number_token3] = ACTIONS(2210), - [anon_sym_0b] = ACTIONS(2208), - [anon_sym_0o] = ACTIONS(2208), - [anon_sym_0x] = ACTIONS(2208), - [sym_val_date] = ACTIONS(2210), - [anon_sym_DQUOTE] = ACTIONS(2210), - [sym__str_single_quotes] = ACTIONS(2210), - [sym__str_back_ticks] = ACTIONS(2210), - [anon_sym_err_GT] = ACTIONS(2208), - [anon_sym_out_GT] = ACTIONS(2208), - [anon_sym_e_GT] = ACTIONS(2208), - [anon_sym_o_GT] = ACTIONS(2208), - [anon_sym_err_PLUSout_GT] = ACTIONS(2208), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2208), - [anon_sym_o_PLUSe_GT] = ACTIONS(2208), - [anon_sym_e_PLUSo_GT] = ACTIONS(2208), - [anon_sym_err_GT_GT] = ACTIONS(2210), - [anon_sym_out_GT_GT] = ACTIONS(2210), - [anon_sym_e_GT_GT] = ACTIONS(2210), - [anon_sym_o_GT_GT] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2210), - [aux_sym_unquoted_token1] = ACTIONS(2208), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1145] = { [sym_comment] = STATE(1145), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_null] = ACTIONS(2214), - [aux_sym_cmd_identifier_token38] = ACTIONS(2214), - [aux_sym_cmd_identifier_token39] = ACTIONS(2214), - [aux_sym_cmd_identifier_token40] = ACTIONS(2214), - [sym__newline] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_COMMA] = ACTIONS(2214), - [anon_sym_DOLLAR] = ACTIONS(2214), - [anon_sym_GT] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_in] = ACTIONS(2212), - [aux_sym_ctrl_match_token1] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym__] = ACTIONS(2212), - [anon_sym_DOT_DOT] = ACTIONS(2212), - [anon_sym_STAR] = ACTIONS(2212), - [anon_sym_and] = ACTIONS(2214), - [anon_sym_xor] = ACTIONS(2214), - [anon_sym_or] = ACTIONS(2214), - [anon_sym_not_DASHin] = ACTIONS(2214), - [anon_sym_starts_DASHwith] = ACTIONS(2214), - [anon_sym_ends_DASHwith] = ACTIONS(2214), - [anon_sym_EQ_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2212), - [anon_sym_LT_EQ] = ACTIONS(2214), - [anon_sym_GT_EQ] = ACTIONS(2214), - [anon_sym_EQ_TILDE] = ACTIONS(2214), - [anon_sym_BANG_TILDE] = ACTIONS(2214), - [anon_sym_STAR_STAR] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_mod] = ACTIONS(2214), - [anon_sym_SLASH_SLASH] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_bit_DASHshl] = ACTIONS(2214), - [anon_sym_bit_DASHshr] = ACTIONS(2214), - [anon_sym_bit_DASHand] = ACTIONS(2214), - [anon_sym_bit_DASHxor] = ACTIONS(2214), - [anon_sym_bit_DASHor] = ACTIONS(2214), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2214), - [anon_sym_DOT_DOT_LT] = ACTIONS(2214), - [aux_sym__val_number_decimal_token1] = ACTIONS(2212), - [aux_sym__val_number_decimal_token2] = ACTIONS(2214), - [anon_sym_DOT2] = ACTIONS(2212), - [aux_sym__val_number_decimal_token3] = ACTIONS(2214), - [aux_sym__val_number_token1] = ACTIONS(2214), - [aux_sym__val_number_token2] = ACTIONS(2214), - [aux_sym__val_number_token3] = ACTIONS(2214), - [anon_sym_0b] = ACTIONS(2212), - [anon_sym_0o] = ACTIONS(2212), - [anon_sym_0x] = ACTIONS(2212), - [sym_val_date] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym__str_single_quotes] = ACTIONS(2214), - [sym__str_back_ticks] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2212), - [anon_sym_out_GT] = ACTIONS(2212), - [anon_sym_e_GT] = ACTIONS(2212), - [anon_sym_o_GT] = ACTIONS(2212), - [anon_sym_err_PLUSout_GT] = ACTIONS(2212), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2212), - [anon_sym_o_PLUSe_GT] = ACTIONS(2212), - [anon_sym_e_PLUSo_GT] = ACTIONS(2212), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), - [aux_sym_unquoted_token1] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1008), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [sym__newline] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [aux_sym_ctrl_match_token1] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [aux_sym_expr_binary_token1] = ACTIONS(1008), + [aux_sym_expr_binary_token2] = ACTIONS(1008), + [aux_sym_expr_binary_token3] = ACTIONS(1008), + [aux_sym_expr_binary_token4] = ACTIONS(1008), + [aux_sym_expr_binary_token5] = ACTIONS(1008), + [aux_sym_expr_binary_token6] = ACTIONS(1008), + [aux_sym_expr_binary_token7] = ACTIONS(1008), + [aux_sym_expr_binary_token8] = ACTIONS(1008), + [aux_sym_expr_binary_token9] = ACTIONS(1008), + [aux_sym_expr_binary_token10] = ACTIONS(1008), + [aux_sym_expr_binary_token11] = ACTIONS(1008), + [aux_sym_expr_binary_token12] = ACTIONS(1008), + [aux_sym_expr_binary_token13] = ACTIONS(1008), + [aux_sym_expr_binary_token14] = ACTIONS(1008), + [aux_sym_expr_binary_token15] = ACTIONS(1008), + [aux_sym_expr_binary_token16] = ACTIONS(1008), + [aux_sym_expr_binary_token17] = ACTIONS(1008), + [aux_sym_expr_binary_token18] = ACTIONS(1008), + [aux_sym_expr_binary_token19] = ACTIONS(1008), + [aux_sym_expr_binary_token20] = ACTIONS(1008), + [aux_sym_expr_binary_token21] = ACTIONS(1008), + [aux_sym_expr_binary_token22] = ACTIONS(1008), + [aux_sym_expr_binary_token23] = ACTIONS(1008), + [aux_sym_expr_binary_token24] = ACTIONS(1008), + [aux_sym_expr_binary_token25] = ACTIONS(1008), + [aux_sym_expr_binary_token26] = ACTIONS(1008), + [aux_sym_expr_binary_token27] = ACTIONS(1008), + [aux_sym_expr_binary_token28] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), }, [1146] = { [sym_comment] = STATE(1146), - [anon_sym_true] = ACTIONS(2218), - [anon_sym_false] = ACTIONS(2218), - [anon_sym_null] = ACTIONS(2218), - [aux_sym_cmd_identifier_token38] = ACTIONS(2218), - [aux_sym_cmd_identifier_token39] = ACTIONS(2218), - [aux_sym_cmd_identifier_token40] = ACTIONS(2218), - [sym__newline] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_COMMA] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2218), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_in] = ACTIONS(2216), - [aux_sym_ctrl_match_token1] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym__] = ACTIONS(2216), - [anon_sym_DOT_DOT] = ACTIONS(2216), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_and] = ACTIONS(2218), - [anon_sym_xor] = ACTIONS(2218), - [anon_sym_or] = ACTIONS(2218), - [anon_sym_not_DASHin] = ACTIONS(2218), - [anon_sym_starts_DASHwith] = ACTIONS(2218), - [anon_sym_ends_DASHwith] = ACTIONS(2218), - [anon_sym_EQ_EQ] = ACTIONS(2218), - [anon_sym_BANG_EQ] = ACTIONS(2218), - [anon_sym_LT2] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(2218), - [anon_sym_GT_EQ] = ACTIONS(2218), - [anon_sym_EQ_TILDE] = ACTIONS(2218), - [anon_sym_BANG_TILDE] = ACTIONS(2218), - [anon_sym_STAR_STAR] = ACTIONS(2218), - [anon_sym_PLUS_PLUS] = ACTIONS(2218), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_mod] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(2218), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_bit_DASHshl] = ACTIONS(2218), - [anon_sym_bit_DASHshr] = ACTIONS(2218), - [anon_sym_bit_DASHand] = ACTIONS(2218), - [anon_sym_bit_DASHxor] = ACTIONS(2218), - [anon_sym_bit_DASHor] = ACTIONS(2218), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2218), - [anon_sym_DOT_DOT_LT] = ACTIONS(2218), - [aux_sym__val_number_decimal_token1] = ACTIONS(2216), - [aux_sym__val_number_decimal_token2] = ACTIONS(2218), - [anon_sym_DOT2] = ACTIONS(2216), - [aux_sym__val_number_decimal_token3] = ACTIONS(2218), - [aux_sym__val_number_token1] = ACTIONS(2218), - [aux_sym__val_number_token2] = ACTIONS(2218), - [aux_sym__val_number_token3] = ACTIONS(2218), - [anon_sym_0b] = ACTIONS(2216), - [anon_sym_0o] = ACTIONS(2216), - [anon_sym_0x] = ACTIONS(2216), - [sym_val_date] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_err_GT] = ACTIONS(2216), - [anon_sym_out_GT] = ACTIONS(2216), - [anon_sym_e_GT] = ACTIONS(2216), - [anon_sym_o_GT] = ACTIONS(2216), - [anon_sym_err_PLUSout_GT] = ACTIONS(2216), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2216), - [anon_sym_o_PLUSe_GT] = ACTIONS(2216), - [anon_sym_e_PLUSo_GT] = ACTIONS(2216), - [anon_sym_err_GT_GT] = ACTIONS(2218), - [anon_sym_out_GT_GT] = ACTIONS(2218), - [anon_sym_e_GT_GT] = ACTIONS(2218), - [anon_sym_o_GT_GT] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), - [aux_sym_unquoted_token1] = ACTIONS(2216), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [sym__newline] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [aux_sym_ctrl_match_token1] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym__] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [aux_sym_expr_binary_token1] = ACTIONS(1772), + [aux_sym_expr_binary_token2] = ACTIONS(1772), + [aux_sym_expr_binary_token3] = ACTIONS(1772), + [aux_sym_expr_binary_token4] = ACTIONS(1772), + [aux_sym_expr_binary_token5] = ACTIONS(1772), + [aux_sym_expr_binary_token6] = ACTIONS(1772), + [aux_sym_expr_binary_token7] = ACTIONS(1772), + [aux_sym_expr_binary_token8] = ACTIONS(1772), + [aux_sym_expr_binary_token9] = ACTIONS(1772), + [aux_sym_expr_binary_token10] = ACTIONS(1772), + [aux_sym_expr_binary_token11] = ACTIONS(1772), + [aux_sym_expr_binary_token12] = ACTIONS(1772), + [aux_sym_expr_binary_token13] = ACTIONS(1772), + [aux_sym_expr_binary_token14] = ACTIONS(1772), + [aux_sym_expr_binary_token15] = ACTIONS(1772), + [aux_sym_expr_binary_token16] = ACTIONS(1772), + [aux_sym_expr_binary_token17] = ACTIONS(1772), + [aux_sym_expr_binary_token18] = ACTIONS(1772), + [aux_sym_expr_binary_token19] = ACTIONS(1772), + [aux_sym_expr_binary_token20] = ACTIONS(1772), + [aux_sym_expr_binary_token21] = ACTIONS(1772), + [aux_sym_expr_binary_token22] = ACTIONS(1772), + [aux_sym_expr_binary_token23] = ACTIONS(1772), + [aux_sym_expr_binary_token24] = ACTIONS(1772), + [aux_sym_expr_binary_token25] = ACTIONS(1772), + [aux_sym_expr_binary_token26] = ACTIONS(1772), + [aux_sym_expr_binary_token27] = ACTIONS(1772), + [aux_sym_expr_binary_token28] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1770), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [anon_sym_0b] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1770), + [anon_sym_0x] = ACTIONS(1770), + [sym_val_date] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_err_GT] = ACTIONS(1770), + [anon_sym_out_GT] = ACTIONS(1770), + [anon_sym_e_GT] = ACTIONS(1770), + [anon_sym_o_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT] = ACTIONS(1770), + [anon_sym_err_GT_GT] = ACTIONS(1772), + [anon_sym_out_GT_GT] = ACTIONS(1772), + [anon_sym_e_GT_GT] = ACTIONS(1772), + [anon_sym_o_GT_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1772), + [aux_sym_unquoted_token1] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(247), }, [1147] = { [sym_comment] = STATE(1147), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [anon_sym_null] = ACTIONS(2275), - [aux_sym_cmd_identifier_token38] = ACTIONS(2275), - [aux_sym_cmd_identifier_token39] = ACTIONS(2275), - [aux_sym_cmd_identifier_token40] = ACTIONS(2275), - [sym__newline] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_COMMA] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_GT] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [aux_sym_ctrl_match_token1] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym__] = ACTIONS(2273), - [anon_sym_DOT_DOT] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_and] = ACTIONS(2275), - [anon_sym_xor] = ACTIONS(2275), - [anon_sym_or] = ACTIONS(2275), - [anon_sym_not_DASHin] = ACTIONS(2275), - [anon_sym_starts_DASHwith] = ACTIONS(2275), - [anon_sym_ends_DASHwith] = ACTIONS(2275), - [anon_sym_EQ_EQ] = ACTIONS(2275), - [anon_sym_BANG_EQ] = ACTIONS(2275), - [anon_sym_LT2] = ACTIONS(2273), - [anon_sym_LT_EQ] = ACTIONS(2275), - [anon_sym_GT_EQ] = ACTIONS(2275), - [anon_sym_EQ_TILDE] = ACTIONS(2275), - [anon_sym_BANG_TILDE] = ACTIONS(2275), - [anon_sym_STAR_STAR] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_mod] = ACTIONS(2275), - [anon_sym_SLASH_SLASH] = ACTIONS(2275), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_bit_DASHshl] = ACTIONS(2275), - [anon_sym_bit_DASHshr] = ACTIONS(2275), - [anon_sym_bit_DASHand] = ACTIONS(2275), - [anon_sym_bit_DASHxor] = ACTIONS(2275), - [anon_sym_bit_DASHor] = ACTIONS(2275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2275), - [anon_sym_DOT_DOT_LT] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = ACTIONS(2273), - [aux_sym__val_number_decimal_token2] = ACTIONS(2275), - [anon_sym_DOT2] = ACTIONS(2273), - [aux_sym__val_number_decimal_token3] = ACTIONS(2275), - [aux_sym__val_number_token1] = ACTIONS(2275), - [aux_sym__val_number_token2] = ACTIONS(2275), - [aux_sym__val_number_token3] = ACTIONS(2275), - [anon_sym_0b] = ACTIONS(2273), - [anon_sym_0o] = ACTIONS(2273), - [anon_sym_0x] = ACTIONS(2273), - [sym_val_date] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym__str_single_quotes] = ACTIONS(2275), - [sym__str_back_ticks] = ACTIONS(2275), - [anon_sym_err_GT] = ACTIONS(2273), - [anon_sym_out_GT] = ACTIONS(2273), - [anon_sym_e_GT] = ACTIONS(2273), - [anon_sym_o_GT] = ACTIONS(2273), - [anon_sym_err_PLUSout_GT] = ACTIONS(2273), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2273), - [anon_sym_o_PLUSe_GT] = ACTIONS(2273), - [anon_sym_e_PLUSo_GT] = ACTIONS(2273), - [anon_sym_err_GT_GT] = ACTIONS(2275), - [anon_sym_out_GT_GT] = ACTIONS(2275), - [anon_sym_e_GT_GT] = ACTIONS(2275), - [anon_sym_o_GT_GT] = ACTIONS(2275), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2275), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2275), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2275), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2275), - [aux_sym_unquoted_token1] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_null] = ACTIONS(2317), + [aux_sym_cmd_identifier_token38] = ACTIONS(2317), + [aux_sym_cmd_identifier_token39] = ACTIONS(2317), + [aux_sym_cmd_identifier_token40] = ACTIONS(2317), + [sym__newline] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2317), + [aux_sym_ctrl_match_token1] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym__] = ACTIONS(2315), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [aux_sym_expr_binary_token1] = ACTIONS(2317), + [aux_sym_expr_binary_token2] = ACTIONS(2317), + [aux_sym_expr_binary_token3] = ACTIONS(2317), + [aux_sym_expr_binary_token4] = ACTIONS(2317), + [aux_sym_expr_binary_token5] = ACTIONS(2317), + [aux_sym_expr_binary_token6] = ACTIONS(2317), + [aux_sym_expr_binary_token7] = ACTIONS(2317), + [aux_sym_expr_binary_token8] = ACTIONS(2317), + [aux_sym_expr_binary_token9] = ACTIONS(2317), + [aux_sym_expr_binary_token10] = ACTIONS(2317), + [aux_sym_expr_binary_token11] = ACTIONS(2317), + [aux_sym_expr_binary_token12] = ACTIONS(2317), + [aux_sym_expr_binary_token13] = ACTIONS(2317), + [aux_sym_expr_binary_token14] = ACTIONS(2317), + [aux_sym_expr_binary_token15] = ACTIONS(2317), + [aux_sym_expr_binary_token16] = ACTIONS(2317), + [aux_sym_expr_binary_token17] = ACTIONS(2317), + [aux_sym_expr_binary_token18] = ACTIONS(2317), + [aux_sym_expr_binary_token19] = ACTIONS(2317), + [aux_sym_expr_binary_token20] = ACTIONS(2317), + [aux_sym_expr_binary_token21] = ACTIONS(2317), + [aux_sym_expr_binary_token22] = ACTIONS(2317), + [aux_sym_expr_binary_token23] = ACTIONS(2317), + [aux_sym_expr_binary_token24] = ACTIONS(2317), + [aux_sym_expr_binary_token25] = ACTIONS(2317), + [aux_sym_expr_binary_token26] = ACTIONS(2317), + [aux_sym_expr_binary_token27] = ACTIONS(2317), + [aux_sym_expr_binary_token28] = ACTIONS(2317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2317), + [anon_sym_DOT_DOT_LT] = ACTIONS(2317), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2317), + [aux_sym__val_number_decimal_token3] = ACTIONS(2317), + [aux_sym__val_number_decimal_token4] = ACTIONS(2317), + [aux_sym__val_number_token1] = ACTIONS(2317), + [aux_sym__val_number_token2] = ACTIONS(2317), + [aux_sym__val_number_token3] = ACTIONS(2317), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0x] = ACTIONS(2315), + [sym_val_date] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [sym__str_single_quotes] = ACTIONS(2317), + [sym__str_back_ticks] = ACTIONS(2317), + [anon_sym_err_GT] = ACTIONS(2315), + [anon_sym_out_GT] = ACTIONS(2315), + [anon_sym_e_GT] = ACTIONS(2315), + [anon_sym_o_GT] = ACTIONS(2315), + [anon_sym_err_PLUSout_GT] = ACTIONS(2315), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), + [anon_sym_o_PLUSe_GT] = ACTIONS(2315), + [anon_sym_e_PLUSo_GT] = ACTIONS(2315), + [anon_sym_err_GT_GT] = ACTIONS(2317), + [anon_sym_out_GT_GT] = ACTIONS(2317), + [anon_sym_e_GT_GT] = ACTIONS(2317), + [anon_sym_o_GT_GT] = ACTIONS(2317), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2317), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2317), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2317), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2317), + [aux_sym_unquoted_token1] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(247), }, [1148] = { [sym_comment] = STATE(1148), - [anon_sym_true] = ACTIONS(2206), - [anon_sym_false] = ACTIONS(2206), - [anon_sym_null] = ACTIONS(2206), - [aux_sym_cmd_identifier_token38] = ACTIONS(2206), - [aux_sym_cmd_identifier_token39] = ACTIONS(2206), - [aux_sym_cmd_identifier_token40] = ACTIONS(2206), - [sym__newline] = ACTIONS(2206), - [anon_sym_LBRACK] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_COMMA] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2206), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2204), - [aux_sym_ctrl_match_token1] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym__] = ACTIONS(2204), - [anon_sym_DOT_DOT] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_and] = ACTIONS(2206), - [anon_sym_xor] = ACTIONS(2206), - [anon_sym_or] = ACTIONS(2206), - [anon_sym_not_DASHin] = ACTIONS(2206), - [anon_sym_starts_DASHwith] = ACTIONS(2206), - [anon_sym_ends_DASHwith] = ACTIONS(2206), - [anon_sym_EQ_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ] = ACTIONS(2206), - [anon_sym_LT2] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2206), - [anon_sym_GT_EQ] = ACTIONS(2206), - [anon_sym_EQ_TILDE] = ACTIONS(2206), - [anon_sym_BANG_TILDE] = ACTIONS(2206), - [anon_sym_STAR_STAR] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_mod] = ACTIONS(2206), - [anon_sym_SLASH_SLASH] = ACTIONS(2206), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_bit_DASHshl] = ACTIONS(2206), - [anon_sym_bit_DASHshr] = ACTIONS(2206), - [anon_sym_bit_DASHand] = ACTIONS(2206), - [anon_sym_bit_DASHxor] = ACTIONS(2206), - [anon_sym_bit_DASHor] = ACTIONS(2206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), - [anon_sym_DOT_DOT_LT] = ACTIONS(2206), - [aux_sym__val_number_decimal_token1] = ACTIONS(2204), - [aux_sym__val_number_decimal_token2] = ACTIONS(2206), - [anon_sym_DOT2] = ACTIONS(2204), - [aux_sym__val_number_decimal_token3] = ACTIONS(2206), - [aux_sym__val_number_token1] = ACTIONS(2206), - [aux_sym__val_number_token2] = ACTIONS(2206), - [aux_sym__val_number_token3] = ACTIONS(2206), - [anon_sym_0b] = ACTIONS(2204), - [anon_sym_0o] = ACTIONS(2204), - [anon_sym_0x] = ACTIONS(2204), - [sym_val_date] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2206), - [sym__str_single_quotes] = ACTIONS(2206), - [sym__str_back_ticks] = ACTIONS(2206), - [anon_sym_err_GT] = ACTIONS(2204), - [anon_sym_out_GT] = ACTIONS(2204), - [anon_sym_e_GT] = ACTIONS(2204), - [anon_sym_o_GT] = ACTIONS(2204), - [anon_sym_err_PLUSout_GT] = ACTIONS(2204), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2204), - [anon_sym_o_PLUSe_GT] = ACTIONS(2204), - [anon_sym_e_PLUSo_GT] = ACTIONS(2204), - [anon_sym_err_GT_GT] = ACTIONS(2206), - [anon_sym_out_GT_GT] = ACTIONS(2206), - [anon_sym_e_GT_GT] = ACTIONS(2206), - [anon_sym_o_GT_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), - [aux_sym_unquoted_token1] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_null] = ACTIONS(2253), + [aux_sym_cmd_identifier_token38] = ACTIONS(2253), + [aux_sym_cmd_identifier_token39] = ACTIONS(2253), + [aux_sym_cmd_identifier_token40] = ACTIONS(2253), + [sym__newline] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_COMMA] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2253), + [aux_sym_ctrl_match_token1] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym__] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2251), + [aux_sym_expr_binary_token1] = ACTIONS(2253), + [aux_sym_expr_binary_token2] = ACTIONS(2253), + [aux_sym_expr_binary_token3] = ACTIONS(2253), + [aux_sym_expr_binary_token4] = ACTIONS(2253), + [aux_sym_expr_binary_token5] = ACTIONS(2253), + [aux_sym_expr_binary_token6] = ACTIONS(2253), + [aux_sym_expr_binary_token7] = ACTIONS(2253), + [aux_sym_expr_binary_token8] = ACTIONS(2253), + [aux_sym_expr_binary_token9] = ACTIONS(2253), + [aux_sym_expr_binary_token10] = ACTIONS(2253), + [aux_sym_expr_binary_token11] = ACTIONS(2253), + [aux_sym_expr_binary_token12] = ACTIONS(2253), + [aux_sym_expr_binary_token13] = ACTIONS(2253), + [aux_sym_expr_binary_token14] = ACTIONS(2253), + [aux_sym_expr_binary_token15] = ACTIONS(2253), + [aux_sym_expr_binary_token16] = ACTIONS(2253), + [aux_sym_expr_binary_token17] = ACTIONS(2253), + [aux_sym_expr_binary_token18] = ACTIONS(2253), + [aux_sym_expr_binary_token19] = ACTIONS(2253), + [aux_sym_expr_binary_token20] = ACTIONS(2253), + [aux_sym_expr_binary_token21] = ACTIONS(2253), + [aux_sym_expr_binary_token22] = ACTIONS(2253), + [aux_sym_expr_binary_token23] = ACTIONS(2253), + [aux_sym_expr_binary_token24] = ACTIONS(2253), + [aux_sym_expr_binary_token25] = ACTIONS(2253), + [aux_sym_expr_binary_token26] = ACTIONS(2253), + [aux_sym_expr_binary_token27] = ACTIONS(2253), + [aux_sym_expr_binary_token28] = ACTIONS(2253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2253), + [anon_sym_DOT_DOT_LT] = ACTIONS(2253), + [aux_sym__val_number_decimal_token1] = ACTIONS(2251), + [aux_sym__val_number_decimal_token2] = ACTIONS(2253), + [aux_sym__val_number_decimal_token3] = ACTIONS(2253), + [aux_sym__val_number_decimal_token4] = ACTIONS(2253), + [aux_sym__val_number_token1] = ACTIONS(2253), + [aux_sym__val_number_token2] = ACTIONS(2253), + [aux_sym__val_number_token3] = ACTIONS(2253), + [anon_sym_0b] = ACTIONS(2251), + [anon_sym_0o] = ACTIONS(2251), + [anon_sym_0x] = ACTIONS(2251), + [sym_val_date] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_err_GT] = ACTIONS(2251), + [anon_sym_out_GT] = ACTIONS(2251), + [anon_sym_e_GT] = ACTIONS(2251), + [anon_sym_o_GT] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT] = ACTIONS(2251), + [anon_sym_err_GT_GT] = ACTIONS(2253), + [anon_sym_out_GT_GT] = ACTIONS(2253), + [anon_sym_e_GT_GT] = ACTIONS(2253), + [anon_sym_o_GT_GT] = ACTIONS(2253), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2253), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2253), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2253), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2253), + [aux_sym_unquoted_token1] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(247), }, [1149] = { [sym_comment] = STATE(1149), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_null] = ACTIONS(2305), + [aux_sym_cmd_identifier_token38] = ACTIONS(2305), + [aux_sym_cmd_identifier_token39] = ACTIONS(2305), + [aux_sym_cmd_identifier_token40] = ACTIONS(2305), + [sym__newline] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_COMMA] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2305), + [aux_sym_ctrl_match_token1] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym__] = ACTIONS(2303), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [aux_sym_expr_binary_token1] = ACTIONS(2305), + [aux_sym_expr_binary_token2] = ACTIONS(2305), + [aux_sym_expr_binary_token3] = ACTIONS(2305), + [aux_sym_expr_binary_token4] = ACTIONS(2305), + [aux_sym_expr_binary_token5] = ACTIONS(2305), + [aux_sym_expr_binary_token6] = ACTIONS(2305), + [aux_sym_expr_binary_token7] = ACTIONS(2305), + [aux_sym_expr_binary_token8] = ACTIONS(2305), + [aux_sym_expr_binary_token9] = ACTIONS(2305), + [aux_sym_expr_binary_token10] = ACTIONS(2305), + [aux_sym_expr_binary_token11] = ACTIONS(2305), + [aux_sym_expr_binary_token12] = ACTIONS(2305), + [aux_sym_expr_binary_token13] = ACTIONS(2305), + [aux_sym_expr_binary_token14] = ACTIONS(2305), + [aux_sym_expr_binary_token15] = ACTIONS(2305), + [aux_sym_expr_binary_token16] = ACTIONS(2305), + [aux_sym_expr_binary_token17] = ACTIONS(2305), + [aux_sym_expr_binary_token18] = ACTIONS(2305), + [aux_sym_expr_binary_token19] = ACTIONS(2305), + [aux_sym_expr_binary_token20] = ACTIONS(2305), + [aux_sym_expr_binary_token21] = ACTIONS(2305), + [aux_sym_expr_binary_token22] = ACTIONS(2305), + [aux_sym_expr_binary_token23] = ACTIONS(2305), + [aux_sym_expr_binary_token24] = ACTIONS(2305), + [aux_sym_expr_binary_token25] = ACTIONS(2305), + [aux_sym_expr_binary_token26] = ACTIONS(2305), + [aux_sym_expr_binary_token27] = ACTIONS(2305), + [aux_sym_expr_binary_token28] = ACTIONS(2305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2305), + [anon_sym_DOT_DOT_LT] = ACTIONS(2305), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2305), + [aux_sym__val_number_decimal_token4] = ACTIONS(2305), + [aux_sym__val_number_token1] = ACTIONS(2305), + [aux_sym__val_number_token2] = ACTIONS(2305), + [aux_sym__val_number_token3] = ACTIONS(2305), + [anon_sym_0b] = ACTIONS(2303), + [anon_sym_0o] = ACTIONS(2303), + [anon_sym_0x] = ACTIONS(2303), + [sym_val_date] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym__str_single_quotes] = ACTIONS(2305), + [sym__str_back_ticks] = ACTIONS(2305), + [anon_sym_err_GT] = ACTIONS(2303), + [anon_sym_out_GT] = ACTIONS(2303), + [anon_sym_e_GT] = ACTIONS(2303), + [anon_sym_o_GT] = ACTIONS(2303), + [anon_sym_err_PLUSout_GT] = ACTIONS(2303), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2303), + [anon_sym_o_PLUSe_GT] = ACTIONS(2303), + [anon_sym_e_PLUSo_GT] = ACTIONS(2303), + [anon_sym_err_GT_GT] = ACTIONS(2305), + [anon_sym_out_GT_GT] = ACTIONS(2305), + [anon_sym_e_GT_GT] = ACTIONS(2305), + [anon_sym_o_GT_GT] = ACTIONS(2305), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2305), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2305), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2305), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2305), + [aux_sym_unquoted_token1] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(247), }, [1150] = { [sym_comment] = STATE(1150), - [anon_sym_true] = ACTIONS(2218), - [anon_sym_false] = ACTIONS(2218), - [anon_sym_null] = ACTIONS(2218), - [aux_sym_cmd_identifier_token38] = ACTIONS(2218), - [aux_sym_cmd_identifier_token39] = ACTIONS(2218), - [aux_sym_cmd_identifier_token40] = ACTIONS(2218), - [sym__newline] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_COMMA] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2218), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_in] = ACTIONS(2216), - [aux_sym_ctrl_match_token1] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym__] = ACTIONS(2216), - [anon_sym_DOT_DOT] = ACTIONS(2216), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_and] = ACTIONS(2218), - [anon_sym_xor] = ACTIONS(2218), - [anon_sym_or] = ACTIONS(2218), - [anon_sym_not_DASHin] = ACTIONS(2218), - [anon_sym_starts_DASHwith] = ACTIONS(2218), - [anon_sym_ends_DASHwith] = ACTIONS(2218), - [anon_sym_EQ_EQ] = ACTIONS(2218), - [anon_sym_BANG_EQ] = ACTIONS(2218), - [anon_sym_LT2] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(2218), - [anon_sym_GT_EQ] = ACTIONS(2218), - [anon_sym_EQ_TILDE] = ACTIONS(2218), - [anon_sym_BANG_TILDE] = ACTIONS(2218), - [anon_sym_STAR_STAR] = ACTIONS(2218), - [anon_sym_PLUS_PLUS] = ACTIONS(2218), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_mod] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(2218), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_bit_DASHshl] = ACTIONS(2218), - [anon_sym_bit_DASHshr] = ACTIONS(2218), - [anon_sym_bit_DASHand] = ACTIONS(2218), - [anon_sym_bit_DASHxor] = ACTIONS(2218), - [anon_sym_bit_DASHor] = ACTIONS(2218), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2218), - [anon_sym_DOT_DOT_LT] = ACTIONS(2218), - [aux_sym__val_number_decimal_token1] = ACTIONS(2216), - [aux_sym__val_number_decimal_token2] = ACTIONS(2218), - [anon_sym_DOT2] = ACTIONS(2216), - [aux_sym__val_number_decimal_token3] = ACTIONS(2218), - [aux_sym__val_number_token1] = ACTIONS(2218), - [aux_sym__val_number_token2] = ACTIONS(2218), - [aux_sym__val_number_token3] = ACTIONS(2218), - [anon_sym_0b] = ACTIONS(2216), - [anon_sym_0o] = ACTIONS(2216), - [anon_sym_0x] = ACTIONS(2216), - [sym_val_date] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_err_GT] = ACTIONS(2216), - [anon_sym_out_GT] = ACTIONS(2216), - [anon_sym_e_GT] = ACTIONS(2216), - [anon_sym_o_GT] = ACTIONS(2216), - [anon_sym_err_PLUSout_GT] = ACTIONS(2216), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2216), - [anon_sym_o_PLUSe_GT] = ACTIONS(2216), - [anon_sym_e_PLUSo_GT] = ACTIONS(2216), - [anon_sym_err_GT_GT] = ACTIONS(2218), - [anon_sym_out_GT_GT] = ACTIONS(2218), - [anon_sym_e_GT_GT] = ACTIONS(2218), - [anon_sym_o_GT_GT] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), - [aux_sym_unquoted_token1] = ACTIONS(2216), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), + [aux_sym_cmd_identifier_token38] = ACTIONS(1780), + [aux_sym_cmd_identifier_token39] = ACTIONS(1780), + [aux_sym_cmd_identifier_token40] = ACTIONS(1780), + [sym__newline] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_DOLLAR] = ACTIONS(1780), + [aux_sym_ctrl_match_token1] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym__] = ACTIONS(1778), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [aux_sym_expr_binary_token1] = ACTIONS(1780), + [aux_sym_expr_binary_token2] = ACTIONS(1780), + [aux_sym_expr_binary_token3] = ACTIONS(1780), + [aux_sym_expr_binary_token4] = ACTIONS(1780), + [aux_sym_expr_binary_token5] = ACTIONS(1780), + [aux_sym_expr_binary_token6] = ACTIONS(1780), + [aux_sym_expr_binary_token7] = ACTIONS(1780), + [aux_sym_expr_binary_token8] = ACTIONS(1780), + [aux_sym_expr_binary_token9] = ACTIONS(1780), + [aux_sym_expr_binary_token10] = ACTIONS(1780), + [aux_sym_expr_binary_token11] = ACTIONS(1780), + [aux_sym_expr_binary_token12] = ACTIONS(1780), + [aux_sym_expr_binary_token13] = ACTIONS(1780), + [aux_sym_expr_binary_token14] = ACTIONS(1780), + [aux_sym_expr_binary_token15] = ACTIONS(1780), + [aux_sym_expr_binary_token16] = ACTIONS(1780), + [aux_sym_expr_binary_token17] = ACTIONS(1780), + [aux_sym_expr_binary_token18] = ACTIONS(1780), + [aux_sym_expr_binary_token19] = ACTIONS(1780), + [aux_sym_expr_binary_token20] = ACTIONS(1780), + [aux_sym_expr_binary_token21] = ACTIONS(1780), + [aux_sym_expr_binary_token22] = ACTIONS(1780), + [aux_sym_expr_binary_token23] = ACTIONS(1780), + [aux_sym_expr_binary_token24] = ACTIONS(1780), + [aux_sym_expr_binary_token25] = ACTIONS(1780), + [aux_sym_expr_binary_token26] = ACTIONS(1780), + [aux_sym_expr_binary_token27] = ACTIONS(1780), + [aux_sym_expr_binary_token28] = ACTIONS(1780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_LT] = ACTIONS(1780), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1780), + [aux_sym__val_number_decimal_token3] = ACTIONS(1780), + [aux_sym__val_number_decimal_token4] = ACTIONS(1780), + [aux_sym__val_number_token1] = ACTIONS(1780), + [aux_sym__val_number_token2] = ACTIONS(1780), + [aux_sym__val_number_token3] = ACTIONS(1780), + [anon_sym_0b] = ACTIONS(1778), + [anon_sym_0o] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1778), + [sym_val_date] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [sym__str_single_quotes] = ACTIONS(1780), + [sym__str_back_ticks] = ACTIONS(1780), + [anon_sym_err_GT] = ACTIONS(1778), + [anon_sym_out_GT] = ACTIONS(1778), + [anon_sym_e_GT] = ACTIONS(1778), + [anon_sym_o_GT] = ACTIONS(1778), + [anon_sym_err_PLUSout_GT] = ACTIONS(1778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), + [anon_sym_o_PLUSe_GT] = ACTIONS(1778), + [anon_sym_e_PLUSo_GT] = ACTIONS(1778), + [anon_sym_err_GT_GT] = ACTIONS(1780), + [anon_sym_out_GT_GT] = ACTIONS(1780), + [anon_sym_e_GT_GT] = ACTIONS(1780), + [anon_sym_o_GT_GT] = ACTIONS(1780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1780), + [aux_sym_unquoted_token1] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(247), }, [1151] = { [sym_comment] = STATE(1151), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [anon_sym_null] = ACTIONS(938), - [aux_sym_cmd_identifier_token38] = ACTIONS(938), - [aux_sym_cmd_identifier_token39] = ACTIONS(938), - [aux_sym_cmd_identifier_token40] = ACTIONS(938), - [sym__newline] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(936), - [aux_sym_ctrl_match_token1] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym__] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_DOT_DOT_LT] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [anon_sym_err_GT_GT] = ACTIONS(938), - [anon_sym_out_GT_GT] = ACTIONS(938), - [anon_sym_e_GT_GT] = ACTIONS(938), - [anon_sym_o_GT_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(938), - [aux_sym_unquoted_token1] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [aux_sym_cmd_identifier_token38] = ACTIONS(2257), + [aux_sym_cmd_identifier_token39] = ACTIONS(2257), + [aux_sym_cmd_identifier_token40] = ACTIONS(2257), + [sym__newline] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_COMMA] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2257), + [aux_sym_ctrl_match_token1] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym__] = ACTIONS(2255), + [anon_sym_DOT_DOT] = ACTIONS(2255), + [aux_sym_expr_binary_token1] = ACTIONS(2257), + [aux_sym_expr_binary_token2] = ACTIONS(2257), + [aux_sym_expr_binary_token3] = ACTIONS(2257), + [aux_sym_expr_binary_token4] = ACTIONS(2257), + [aux_sym_expr_binary_token5] = ACTIONS(2257), + [aux_sym_expr_binary_token6] = ACTIONS(2257), + [aux_sym_expr_binary_token7] = ACTIONS(2257), + [aux_sym_expr_binary_token8] = ACTIONS(2257), + [aux_sym_expr_binary_token9] = ACTIONS(2257), + [aux_sym_expr_binary_token10] = ACTIONS(2257), + [aux_sym_expr_binary_token11] = ACTIONS(2257), + [aux_sym_expr_binary_token12] = ACTIONS(2257), + [aux_sym_expr_binary_token13] = ACTIONS(2257), + [aux_sym_expr_binary_token14] = ACTIONS(2257), + [aux_sym_expr_binary_token15] = ACTIONS(2257), + [aux_sym_expr_binary_token16] = ACTIONS(2257), + [aux_sym_expr_binary_token17] = ACTIONS(2257), + [aux_sym_expr_binary_token18] = ACTIONS(2257), + [aux_sym_expr_binary_token19] = ACTIONS(2257), + [aux_sym_expr_binary_token20] = ACTIONS(2257), + [aux_sym_expr_binary_token21] = ACTIONS(2257), + [aux_sym_expr_binary_token22] = ACTIONS(2257), + [aux_sym_expr_binary_token23] = ACTIONS(2257), + [aux_sym_expr_binary_token24] = ACTIONS(2257), + [aux_sym_expr_binary_token25] = ACTIONS(2257), + [aux_sym_expr_binary_token26] = ACTIONS(2257), + [aux_sym_expr_binary_token27] = ACTIONS(2257), + [aux_sym_expr_binary_token28] = ACTIONS(2257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2257), + [anon_sym_DOT_DOT_LT] = ACTIONS(2257), + [aux_sym__val_number_decimal_token1] = ACTIONS(2255), + [aux_sym__val_number_decimal_token2] = ACTIONS(2257), + [aux_sym__val_number_decimal_token3] = ACTIONS(2257), + [aux_sym__val_number_decimal_token4] = ACTIONS(2257), + [aux_sym__val_number_token1] = ACTIONS(2257), + [aux_sym__val_number_token2] = ACTIONS(2257), + [aux_sym__val_number_token3] = ACTIONS(2257), + [anon_sym_0b] = ACTIONS(2255), + [anon_sym_0o] = ACTIONS(2255), + [anon_sym_0x] = ACTIONS(2255), + [sym_val_date] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [sym__str_single_quotes] = ACTIONS(2257), + [sym__str_back_ticks] = ACTIONS(2257), + [anon_sym_err_GT] = ACTIONS(2255), + [anon_sym_out_GT] = ACTIONS(2255), + [anon_sym_e_GT] = ACTIONS(2255), + [anon_sym_o_GT] = ACTIONS(2255), + [anon_sym_err_PLUSout_GT] = ACTIONS(2255), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2255), + [anon_sym_o_PLUSe_GT] = ACTIONS(2255), + [anon_sym_e_PLUSo_GT] = ACTIONS(2255), + [anon_sym_err_GT_GT] = ACTIONS(2257), + [anon_sym_out_GT_GT] = ACTIONS(2257), + [anon_sym_e_GT_GT] = ACTIONS(2257), + [anon_sym_o_GT_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2257), + [aux_sym_unquoted_token1] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(247), }, [1152] = { [sym_comment] = STATE(1152), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_null] = ACTIONS(2327), - [aux_sym_cmd_identifier_token38] = ACTIONS(2327), - [aux_sym_cmd_identifier_token39] = ACTIONS(2327), - [aux_sym_cmd_identifier_token40] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_in] = ACTIONS(2325), - [aux_sym_ctrl_match_token1] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym__] = ACTIONS(2325), - [anon_sym_DOT_DOT] = ACTIONS(2325), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_and] = ACTIONS(2327), - [anon_sym_xor] = ACTIONS(2327), - [anon_sym_or] = ACTIONS(2327), - [anon_sym_not_DASHin] = ACTIONS(2327), - [anon_sym_starts_DASHwith] = ACTIONS(2327), - [anon_sym_ends_DASHwith] = ACTIONS(2327), - [anon_sym_EQ_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2325), - [anon_sym_LT_EQ] = ACTIONS(2327), - [anon_sym_GT_EQ] = ACTIONS(2327), - [anon_sym_EQ_TILDE] = ACTIONS(2327), - [anon_sym_BANG_TILDE] = ACTIONS(2327), - [anon_sym_STAR_STAR] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2325), - [anon_sym_mod] = ACTIONS(2327), - [anon_sym_SLASH_SLASH] = ACTIONS(2327), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_bit_DASHshl] = ACTIONS(2327), - [anon_sym_bit_DASHshr] = ACTIONS(2327), - [anon_sym_bit_DASHand] = ACTIONS(2327), - [anon_sym_bit_DASHxor] = ACTIONS(2327), - [anon_sym_bit_DASHor] = ACTIONS(2327), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2327), - [anon_sym_DOT_DOT_LT] = ACTIONS(2327), - [aux_sym__val_number_decimal_token1] = ACTIONS(2325), - [aux_sym__val_number_decimal_token2] = ACTIONS(2327), - [anon_sym_DOT2] = ACTIONS(2325), - [aux_sym__val_number_decimal_token3] = ACTIONS(2327), - [aux_sym__val_number_token1] = ACTIONS(2327), - [aux_sym__val_number_token2] = ACTIONS(2327), - [aux_sym__val_number_token3] = ACTIONS(2327), - [anon_sym_0b] = ACTIONS(2325), - [anon_sym_0o] = ACTIONS(2325), - [anon_sym_0x] = ACTIONS(2325), - [sym_val_date] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym__str_single_quotes] = ACTIONS(2327), - [sym__str_back_ticks] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2325), - [anon_sym_out_GT] = ACTIONS(2325), - [anon_sym_e_GT] = ACTIONS(2325), - [anon_sym_o_GT] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT] = ACTIONS(2325), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [aux_sym_unquoted_token1] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2313), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [sym__newline] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_COMMA] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2313), + [aux_sym_ctrl_match_token1] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym__] = ACTIONS(2311), + [anon_sym_DOT_DOT] = ACTIONS(2311), + [aux_sym_expr_binary_token1] = ACTIONS(2313), + [aux_sym_expr_binary_token2] = ACTIONS(2313), + [aux_sym_expr_binary_token3] = ACTIONS(2313), + [aux_sym_expr_binary_token4] = ACTIONS(2313), + [aux_sym_expr_binary_token5] = ACTIONS(2313), + [aux_sym_expr_binary_token6] = ACTIONS(2313), + [aux_sym_expr_binary_token7] = ACTIONS(2313), + [aux_sym_expr_binary_token8] = ACTIONS(2313), + [aux_sym_expr_binary_token9] = ACTIONS(2313), + [aux_sym_expr_binary_token10] = ACTIONS(2313), + [aux_sym_expr_binary_token11] = ACTIONS(2313), + [aux_sym_expr_binary_token12] = ACTIONS(2313), + [aux_sym_expr_binary_token13] = ACTIONS(2313), + [aux_sym_expr_binary_token14] = ACTIONS(2313), + [aux_sym_expr_binary_token15] = ACTIONS(2313), + [aux_sym_expr_binary_token16] = ACTIONS(2313), + [aux_sym_expr_binary_token17] = ACTIONS(2313), + [aux_sym_expr_binary_token18] = ACTIONS(2313), + [aux_sym_expr_binary_token19] = ACTIONS(2313), + [aux_sym_expr_binary_token20] = ACTIONS(2313), + [aux_sym_expr_binary_token21] = ACTIONS(2313), + [aux_sym_expr_binary_token22] = ACTIONS(2313), + [aux_sym_expr_binary_token23] = ACTIONS(2313), + [aux_sym_expr_binary_token24] = ACTIONS(2313), + [aux_sym_expr_binary_token25] = ACTIONS(2313), + [aux_sym_expr_binary_token26] = ACTIONS(2313), + [aux_sym_expr_binary_token27] = ACTIONS(2313), + [aux_sym_expr_binary_token28] = ACTIONS(2313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2313), + [anon_sym_DOT_DOT_LT] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2311), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_0b] = ACTIONS(2311), + [anon_sym_0o] = ACTIONS(2311), + [anon_sym_0x] = ACTIONS(2311), + [sym_val_date] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_err_GT] = ACTIONS(2311), + [anon_sym_out_GT] = ACTIONS(2311), + [anon_sym_e_GT] = ACTIONS(2311), + [anon_sym_o_GT] = ACTIONS(2311), + [anon_sym_err_PLUSout_GT] = ACTIONS(2311), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), + [anon_sym_o_PLUSe_GT] = ACTIONS(2311), + [anon_sym_e_PLUSo_GT] = ACTIONS(2311), + [anon_sym_err_GT_GT] = ACTIONS(2313), + [anon_sym_out_GT_GT] = ACTIONS(2313), + [anon_sym_e_GT_GT] = ACTIONS(2313), + [anon_sym_o_GT_GT] = ACTIONS(2313), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [aux_sym_unquoted_token1] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(247), }, [1153] = { [sym_comment] = STATE(1153), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2313), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [sym__newline] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_COMMA] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2313), + [aux_sym_ctrl_match_token1] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym__] = ACTIONS(2311), + [anon_sym_DOT_DOT] = ACTIONS(2311), + [aux_sym_expr_binary_token1] = ACTIONS(2313), + [aux_sym_expr_binary_token2] = ACTIONS(2313), + [aux_sym_expr_binary_token3] = ACTIONS(2313), + [aux_sym_expr_binary_token4] = ACTIONS(2313), + [aux_sym_expr_binary_token5] = ACTIONS(2313), + [aux_sym_expr_binary_token6] = ACTIONS(2313), + [aux_sym_expr_binary_token7] = ACTIONS(2313), + [aux_sym_expr_binary_token8] = ACTIONS(2313), + [aux_sym_expr_binary_token9] = ACTIONS(2313), + [aux_sym_expr_binary_token10] = ACTIONS(2313), + [aux_sym_expr_binary_token11] = ACTIONS(2313), + [aux_sym_expr_binary_token12] = ACTIONS(2313), + [aux_sym_expr_binary_token13] = ACTIONS(2313), + [aux_sym_expr_binary_token14] = ACTIONS(2313), + [aux_sym_expr_binary_token15] = ACTIONS(2313), + [aux_sym_expr_binary_token16] = ACTIONS(2313), + [aux_sym_expr_binary_token17] = ACTIONS(2313), + [aux_sym_expr_binary_token18] = ACTIONS(2313), + [aux_sym_expr_binary_token19] = ACTIONS(2313), + [aux_sym_expr_binary_token20] = ACTIONS(2313), + [aux_sym_expr_binary_token21] = ACTIONS(2313), + [aux_sym_expr_binary_token22] = ACTIONS(2313), + [aux_sym_expr_binary_token23] = ACTIONS(2313), + [aux_sym_expr_binary_token24] = ACTIONS(2313), + [aux_sym_expr_binary_token25] = ACTIONS(2313), + [aux_sym_expr_binary_token26] = ACTIONS(2313), + [aux_sym_expr_binary_token27] = ACTIONS(2313), + [aux_sym_expr_binary_token28] = ACTIONS(2313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2313), + [anon_sym_DOT_DOT_LT] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2311), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_0b] = ACTIONS(2311), + [anon_sym_0o] = ACTIONS(2311), + [anon_sym_0x] = ACTIONS(2311), + [sym_val_date] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_err_GT] = ACTIONS(2311), + [anon_sym_out_GT] = ACTIONS(2311), + [anon_sym_e_GT] = ACTIONS(2311), + [anon_sym_o_GT] = ACTIONS(2311), + [anon_sym_err_PLUSout_GT] = ACTIONS(2311), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), + [anon_sym_o_PLUSe_GT] = ACTIONS(2311), + [anon_sym_e_PLUSo_GT] = ACTIONS(2311), + [anon_sym_err_GT_GT] = ACTIONS(2313), + [anon_sym_out_GT_GT] = ACTIONS(2313), + [anon_sym_e_GT_GT] = ACTIONS(2313), + [anon_sym_o_GT_GT] = ACTIONS(2313), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [aux_sym_unquoted_token1] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(247), }, [1154] = { [sym_comment] = STATE(1154), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1746), - [aux_sym_cmd_identifier_token38] = ACTIONS(1746), - [aux_sym_cmd_identifier_token39] = ACTIONS(1746), - [aux_sym_cmd_identifier_token40] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [aux_sym_ctrl_match_token1] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT_DOT] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_and] = ACTIONS(1746), - [anon_sym_xor] = ACTIONS(1746), - [anon_sym_or] = ACTIONS(1746), - [anon_sym_not_DASHin] = ACTIONS(1746), - [anon_sym_starts_DASHwith] = ACTIONS(1746), - [anon_sym_ends_DASHwith] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1744), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_BANG_TILDE] = ACTIONS(1746), - [anon_sym_STAR_STAR] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1744), - [anon_sym_mod] = ACTIONS(1746), - [anon_sym_SLASH_SLASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_bit_DASHshl] = ACTIONS(1746), - [anon_sym_bit_DASHshr] = ACTIONS(1746), - [anon_sym_bit_DASHand] = ACTIONS(1746), - [anon_sym_bit_DASHxor] = ACTIONS(1746), - [anon_sym_bit_DASHor] = ACTIONS(1746), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1746), - [anon_sym_DOT_DOT_LT] = ACTIONS(1746), - [aux_sym__val_number_decimal_token1] = ACTIONS(1744), - [aux_sym__val_number_decimal_token2] = ACTIONS(1746), - [anon_sym_DOT2] = ACTIONS(1744), - [aux_sym__val_number_decimal_token3] = ACTIONS(1746), - [aux_sym__val_number_token1] = ACTIONS(1746), - [aux_sym__val_number_token2] = ACTIONS(1746), - [aux_sym__val_number_token3] = ACTIONS(1746), - [anon_sym_0b] = ACTIONS(1744), - [anon_sym_0o] = ACTIONS(1744), - [anon_sym_0x] = ACTIONS(1744), - [sym_val_date] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [sym__str_single_quotes] = ACTIONS(1746), - [sym__str_back_ticks] = ACTIONS(1746), - [anon_sym_err_GT] = ACTIONS(1744), - [anon_sym_out_GT] = ACTIONS(1744), - [anon_sym_e_GT] = ACTIONS(1744), - [anon_sym_o_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT] = ACTIONS(1744), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [aux_sym_unquoted_token1] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3595), + [anon_sym_false] = ACTIONS(3595), + [anon_sym_null] = ACTIONS(3595), + [aux_sym_cmd_identifier_token38] = ACTIONS(3595), + [aux_sym_cmd_identifier_token39] = ACTIONS(3595), + [aux_sym_cmd_identifier_token40] = ACTIONS(3595), + [sym__newline] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(3595), + [anon_sym_LPAREN] = ACTIONS(3595), + [anon_sym_COMMA] = ACTIONS(3595), + [anon_sym_DOLLAR] = ACTIONS(3595), + [aux_sym_ctrl_match_token1] = ACTIONS(3595), + [anon_sym_RBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3597), + [aux_sym_expr_binary_token1] = ACTIONS(3595), + [aux_sym_expr_binary_token2] = ACTIONS(3595), + [aux_sym_expr_binary_token3] = ACTIONS(3595), + [aux_sym_expr_binary_token4] = ACTIONS(3595), + [aux_sym_expr_binary_token5] = ACTIONS(3595), + [aux_sym_expr_binary_token6] = ACTIONS(3595), + [aux_sym_expr_binary_token7] = ACTIONS(3595), + [aux_sym_expr_binary_token8] = ACTIONS(3595), + [aux_sym_expr_binary_token9] = ACTIONS(3595), + [aux_sym_expr_binary_token10] = ACTIONS(3595), + [aux_sym_expr_binary_token11] = ACTIONS(3595), + [aux_sym_expr_binary_token12] = ACTIONS(3595), + [aux_sym_expr_binary_token13] = ACTIONS(3595), + [aux_sym_expr_binary_token14] = ACTIONS(3595), + [aux_sym_expr_binary_token15] = ACTIONS(3595), + [aux_sym_expr_binary_token16] = ACTIONS(3595), + [aux_sym_expr_binary_token17] = ACTIONS(3595), + [aux_sym_expr_binary_token18] = ACTIONS(3595), + [aux_sym_expr_binary_token19] = ACTIONS(3595), + [aux_sym_expr_binary_token20] = ACTIONS(3595), + [aux_sym_expr_binary_token21] = ACTIONS(3595), + [aux_sym_expr_binary_token22] = ACTIONS(3595), + [aux_sym_expr_binary_token23] = ACTIONS(3595), + [aux_sym_expr_binary_token24] = ACTIONS(3595), + [aux_sym_expr_binary_token25] = ACTIONS(3595), + [aux_sym_expr_binary_token26] = ACTIONS(3595), + [aux_sym_expr_binary_token27] = ACTIONS(3595), + [aux_sym_expr_binary_token28] = ACTIONS(3595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3595), + [anon_sym_DOT_DOT_LT] = ACTIONS(3595), + [aux_sym__val_number_decimal_token1] = ACTIONS(3597), + [aux_sym__val_number_decimal_token2] = ACTIONS(3595), + [aux_sym__val_number_decimal_token3] = ACTIONS(3595), + [aux_sym__val_number_decimal_token4] = ACTIONS(3595), + [aux_sym__val_number_token1] = ACTIONS(3595), + [aux_sym__val_number_token2] = ACTIONS(3595), + [aux_sym__val_number_token3] = ACTIONS(3595), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3597), + [anon_sym_0x] = ACTIONS(3597), + [sym_val_date] = ACTIONS(3595), + [anon_sym_DQUOTE] = ACTIONS(3595), + [sym__str_single_quotes] = ACTIONS(3595), + [sym__str_back_ticks] = ACTIONS(3595), + [anon_sym_err_GT] = ACTIONS(3597), + [anon_sym_out_GT] = ACTIONS(3597), + [anon_sym_e_GT] = ACTIONS(3597), + [anon_sym_o_GT] = ACTIONS(3597), + [anon_sym_err_PLUSout_GT] = ACTIONS(3597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3597), + [anon_sym_o_PLUSe_GT] = ACTIONS(3597), + [anon_sym_e_PLUSo_GT] = ACTIONS(3597), + [anon_sym_err_GT_GT] = ACTIONS(3595), + [anon_sym_out_GT_GT] = ACTIONS(3595), + [anon_sym_e_GT_GT] = ACTIONS(3595), + [anon_sym_o_GT_GT] = ACTIONS(3595), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3595), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3595), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3595), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3595), + [aux_sym_unquoted_token1] = ACTIONS(3597), + [anon_sym_POUND] = ACTIONS(247), }, [1155] = { [sym_comment] = STATE(1155), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2334), + [anon_sym_false] = ACTIONS(2334), + [anon_sym_null] = ACTIONS(2334), + [aux_sym_cmd_identifier_token38] = ACTIONS(2334), + [aux_sym_cmd_identifier_token39] = ACTIONS(2334), + [aux_sym_cmd_identifier_token40] = ACTIONS(2334), + [sym__newline] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_DOLLAR] = ACTIONS(2334), + [aux_sym_ctrl_match_token1] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym__] = ACTIONS(2332), + [anon_sym_DOT_DOT] = ACTIONS(2332), + [aux_sym_expr_binary_token1] = ACTIONS(2334), + [aux_sym_expr_binary_token2] = ACTIONS(2334), + [aux_sym_expr_binary_token3] = ACTIONS(2334), + [aux_sym_expr_binary_token4] = ACTIONS(2334), + [aux_sym_expr_binary_token5] = ACTIONS(2334), + [aux_sym_expr_binary_token6] = ACTIONS(2334), + [aux_sym_expr_binary_token7] = ACTIONS(2334), + [aux_sym_expr_binary_token8] = ACTIONS(2334), + [aux_sym_expr_binary_token9] = ACTIONS(2334), + [aux_sym_expr_binary_token10] = ACTIONS(2334), + [aux_sym_expr_binary_token11] = ACTIONS(2334), + [aux_sym_expr_binary_token12] = ACTIONS(2334), + [aux_sym_expr_binary_token13] = ACTIONS(2334), + [aux_sym_expr_binary_token14] = ACTIONS(2334), + [aux_sym_expr_binary_token15] = ACTIONS(2334), + [aux_sym_expr_binary_token16] = ACTIONS(2334), + [aux_sym_expr_binary_token17] = ACTIONS(2334), + [aux_sym_expr_binary_token18] = ACTIONS(2334), + [aux_sym_expr_binary_token19] = ACTIONS(2334), + [aux_sym_expr_binary_token20] = ACTIONS(2334), + [aux_sym_expr_binary_token21] = ACTIONS(2334), + [aux_sym_expr_binary_token22] = ACTIONS(2334), + [aux_sym_expr_binary_token23] = ACTIONS(2334), + [aux_sym_expr_binary_token24] = ACTIONS(2334), + [aux_sym_expr_binary_token25] = ACTIONS(2334), + [aux_sym_expr_binary_token26] = ACTIONS(2334), + [aux_sym_expr_binary_token27] = ACTIONS(2334), + [aux_sym_expr_binary_token28] = ACTIONS(2334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2334), + [anon_sym_DOT_DOT_LT] = ACTIONS(2334), + [aux_sym__val_number_decimal_token1] = ACTIONS(2332), + [aux_sym__val_number_decimal_token2] = ACTIONS(2334), + [aux_sym__val_number_decimal_token3] = ACTIONS(2334), + [aux_sym__val_number_decimal_token4] = ACTIONS(2334), + [aux_sym__val_number_token1] = ACTIONS(2334), + [aux_sym__val_number_token2] = ACTIONS(2334), + [aux_sym__val_number_token3] = ACTIONS(2334), + [anon_sym_0b] = ACTIONS(2332), + [anon_sym_0o] = ACTIONS(2332), + [anon_sym_0x] = ACTIONS(2332), + [sym_val_date] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [sym__str_single_quotes] = ACTIONS(2334), + [sym__str_back_ticks] = ACTIONS(2334), + [anon_sym_err_GT] = ACTIONS(2332), + [anon_sym_out_GT] = ACTIONS(2332), + [anon_sym_e_GT] = ACTIONS(2332), + [anon_sym_o_GT] = ACTIONS(2332), + [anon_sym_err_PLUSout_GT] = ACTIONS(2332), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2332), + [anon_sym_o_PLUSe_GT] = ACTIONS(2332), + [anon_sym_e_PLUSo_GT] = ACTIONS(2332), + [anon_sym_err_GT_GT] = ACTIONS(2334), + [anon_sym_out_GT_GT] = ACTIONS(2334), + [anon_sym_e_GT_GT] = ACTIONS(2334), + [anon_sym_o_GT_GT] = ACTIONS(2334), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2334), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2334), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2334), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2334), + [aux_sym_unquoted_token1] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(247), }, [1156] = { [sym_comment] = STATE(1156), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [anon_sym_null] = ACTIONS(2371), - [aux_sym_cmd_identifier_token38] = ACTIONS(2371), - [aux_sym_cmd_identifier_token39] = ACTIONS(2371), - [aux_sym_cmd_identifier_token40] = ACTIONS(2371), - [sym__newline] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_COMMA] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_GT] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_in] = ACTIONS(2369), - [aux_sym_ctrl_match_token1] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym__] = ACTIONS(2369), - [anon_sym_DOT_DOT] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(2369), - [anon_sym_and] = ACTIONS(2371), - [anon_sym_xor] = ACTIONS(2371), - [anon_sym_or] = ACTIONS(2371), - [anon_sym_not_DASHin] = ACTIONS(2371), - [anon_sym_starts_DASHwith] = ACTIONS(2371), - [anon_sym_ends_DASHwith] = ACTIONS(2371), - [anon_sym_EQ_EQ] = ACTIONS(2371), - [anon_sym_BANG_EQ] = ACTIONS(2371), - [anon_sym_LT2] = ACTIONS(2369), - [anon_sym_LT_EQ] = ACTIONS(2371), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_EQ_TILDE] = ACTIONS(2371), - [anon_sym_BANG_TILDE] = ACTIONS(2371), - [anon_sym_STAR_STAR] = ACTIONS(2371), - [anon_sym_PLUS_PLUS] = ACTIONS(2371), - [anon_sym_SLASH] = ACTIONS(2369), - [anon_sym_mod] = ACTIONS(2371), - [anon_sym_SLASH_SLASH] = ACTIONS(2371), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_bit_DASHshl] = ACTIONS(2371), - [anon_sym_bit_DASHshr] = ACTIONS(2371), - [anon_sym_bit_DASHand] = ACTIONS(2371), - [anon_sym_bit_DASHxor] = ACTIONS(2371), - [anon_sym_bit_DASHor] = ACTIONS(2371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2371), - [anon_sym_DOT_DOT_LT] = ACTIONS(2371), - [aux_sym__val_number_decimal_token1] = ACTIONS(2369), - [aux_sym__val_number_decimal_token2] = ACTIONS(2371), - [anon_sym_DOT2] = ACTIONS(2369), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_token1] = ACTIONS(2371), - [aux_sym__val_number_token2] = ACTIONS(2371), - [aux_sym__val_number_token3] = ACTIONS(2371), - [anon_sym_0b] = ACTIONS(2369), - [anon_sym_0o] = ACTIONS(2369), - [anon_sym_0x] = ACTIONS(2369), - [sym_val_date] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [sym__str_single_quotes] = ACTIONS(2371), - [sym__str_back_ticks] = ACTIONS(2371), - [anon_sym_err_GT] = ACTIONS(2369), - [anon_sym_out_GT] = ACTIONS(2369), - [anon_sym_e_GT] = ACTIONS(2369), - [anon_sym_o_GT] = ACTIONS(2369), - [anon_sym_err_PLUSout_GT] = ACTIONS(2369), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2369), - [anon_sym_o_PLUSe_GT] = ACTIONS(2369), - [anon_sym_e_PLUSo_GT] = ACTIONS(2369), - [anon_sym_err_GT_GT] = ACTIONS(2371), - [anon_sym_out_GT_GT] = ACTIONS(2371), - [anon_sym_e_GT_GT] = ACTIONS(2371), - [anon_sym_o_GT_GT] = ACTIONS(2371), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2371), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2371), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2371), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2371), - [aux_sym_unquoted_token1] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_null] = ACTIONS(2273), + [aux_sym_cmd_identifier_token38] = ACTIONS(2273), + [aux_sym_cmd_identifier_token39] = ACTIONS(2273), + [aux_sym_cmd_identifier_token40] = ACTIONS(2273), + [sym__newline] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(2273), + [anon_sym_DOLLAR] = ACTIONS(2273), + [aux_sym_ctrl_match_token1] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym__] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2271), + [aux_sym_expr_binary_token1] = ACTIONS(2273), + [aux_sym_expr_binary_token2] = ACTIONS(2273), + [aux_sym_expr_binary_token3] = ACTIONS(2273), + [aux_sym_expr_binary_token4] = ACTIONS(2273), + [aux_sym_expr_binary_token5] = ACTIONS(2273), + [aux_sym_expr_binary_token6] = ACTIONS(2273), + [aux_sym_expr_binary_token7] = ACTIONS(2273), + [aux_sym_expr_binary_token8] = ACTIONS(2273), + [aux_sym_expr_binary_token9] = ACTIONS(2273), + [aux_sym_expr_binary_token10] = ACTIONS(2273), + [aux_sym_expr_binary_token11] = ACTIONS(2273), + [aux_sym_expr_binary_token12] = ACTIONS(2273), + [aux_sym_expr_binary_token13] = ACTIONS(2273), + [aux_sym_expr_binary_token14] = ACTIONS(2273), + [aux_sym_expr_binary_token15] = ACTIONS(2273), + [aux_sym_expr_binary_token16] = ACTIONS(2273), + [aux_sym_expr_binary_token17] = ACTIONS(2273), + [aux_sym_expr_binary_token18] = ACTIONS(2273), + [aux_sym_expr_binary_token19] = ACTIONS(2273), + [aux_sym_expr_binary_token20] = ACTIONS(2273), + [aux_sym_expr_binary_token21] = ACTIONS(2273), + [aux_sym_expr_binary_token22] = ACTIONS(2273), + [aux_sym_expr_binary_token23] = ACTIONS(2273), + [aux_sym_expr_binary_token24] = ACTIONS(2273), + [aux_sym_expr_binary_token25] = ACTIONS(2273), + [aux_sym_expr_binary_token26] = ACTIONS(2273), + [aux_sym_expr_binary_token27] = ACTIONS(2273), + [aux_sym_expr_binary_token28] = ACTIONS(2273), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2273), + [anon_sym_DOT_DOT_LT] = ACTIONS(2273), + [aux_sym__val_number_decimal_token1] = ACTIONS(2271), + [aux_sym__val_number_decimal_token2] = ACTIONS(2273), + [aux_sym__val_number_decimal_token3] = ACTIONS(2273), + [aux_sym__val_number_decimal_token4] = ACTIONS(2273), + [aux_sym__val_number_token1] = ACTIONS(2273), + [aux_sym__val_number_token2] = ACTIONS(2273), + [aux_sym__val_number_token3] = ACTIONS(2273), + [anon_sym_0b] = ACTIONS(2271), + [anon_sym_0o] = ACTIONS(2271), + [anon_sym_0x] = ACTIONS(2271), + [sym_val_date] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [sym__str_single_quotes] = ACTIONS(2273), + [sym__str_back_ticks] = ACTIONS(2273), + [anon_sym_err_GT] = ACTIONS(2271), + [anon_sym_out_GT] = ACTIONS(2271), + [anon_sym_e_GT] = ACTIONS(2271), + [anon_sym_o_GT] = ACTIONS(2271), + [anon_sym_err_PLUSout_GT] = ACTIONS(2271), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2271), + [anon_sym_o_PLUSe_GT] = ACTIONS(2271), + [anon_sym_e_PLUSo_GT] = ACTIONS(2271), + [anon_sym_err_GT_GT] = ACTIONS(2273), + [anon_sym_out_GT_GT] = ACTIONS(2273), + [anon_sym_e_GT_GT] = ACTIONS(2273), + [anon_sym_o_GT_GT] = ACTIONS(2273), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2273), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2273), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2273), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2273), + [aux_sym_unquoted_token1] = ACTIONS(2271), + [anon_sym_POUND] = ACTIONS(247), }, [1157] = { [sym_comment] = STATE(1157), - [anon_sym_true] = ACTIONS(3172), - [anon_sym_false] = ACTIONS(3172), - [anon_sym_null] = ACTIONS(3172), - [aux_sym_cmd_identifier_token38] = ACTIONS(3172), - [aux_sym_cmd_identifier_token39] = ACTIONS(3172), - [aux_sym_cmd_identifier_token40] = ACTIONS(3172), - [sym__newline] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3172), - [anon_sym_DOLLAR] = ACTIONS(3172), - [anon_sym_GT] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3168), - [aux_sym_ctrl_match_token1] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym__] = ACTIONS(3168), - [anon_sym_DOT_DOT] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3168), - [anon_sym_and] = ACTIONS(3172), - [anon_sym_xor] = ACTIONS(3172), - [anon_sym_or] = ACTIONS(3172), - [anon_sym_not_DASHin] = ACTIONS(3172), - [anon_sym_starts_DASHwith] = ACTIONS(3172), - [anon_sym_ends_DASHwith] = ACTIONS(3172), - [anon_sym_EQ_EQ] = ACTIONS(3172), - [anon_sym_BANG_EQ] = ACTIONS(3172), - [anon_sym_LT2] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3172), - [anon_sym_EQ_TILDE] = ACTIONS(3172), - [anon_sym_BANG_TILDE] = ACTIONS(3172), - [anon_sym_STAR_STAR] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_mod] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_bit_DASHshl] = ACTIONS(3172), - [anon_sym_bit_DASHshr] = ACTIONS(3172), - [anon_sym_bit_DASHand] = ACTIONS(3172), - [anon_sym_bit_DASHxor] = ACTIONS(3172), - [anon_sym_bit_DASHor] = ACTIONS(3172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3172), - [anon_sym_DOT_DOT_LT] = ACTIONS(3172), - [aux_sym__val_number_decimal_token1] = ACTIONS(3168), - [aux_sym__val_number_decimal_token2] = ACTIONS(3172), - [anon_sym_DOT2] = ACTIONS(3168), - [aux_sym__val_number_decimal_token3] = ACTIONS(3172), - [aux_sym__val_number_token1] = ACTIONS(3172), - [aux_sym__val_number_token2] = ACTIONS(3172), - [aux_sym__val_number_token3] = ACTIONS(3172), - [anon_sym_0b] = ACTIONS(3168), - [anon_sym_0o] = ACTIONS(3168), - [anon_sym_0x] = ACTIONS(3168), - [sym_val_date] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [sym__str_single_quotes] = ACTIONS(3172), - [sym__str_back_ticks] = ACTIONS(3172), - [anon_sym_err_GT] = ACTIONS(3168), - [anon_sym_out_GT] = ACTIONS(3168), - [anon_sym_e_GT] = ACTIONS(3168), - [anon_sym_o_GT] = ACTIONS(3168), - [anon_sym_err_PLUSout_GT] = ACTIONS(3168), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3168), - [anon_sym_o_PLUSe_GT] = ACTIONS(3168), - [anon_sym_e_PLUSo_GT] = ACTIONS(3168), - [anon_sym_err_GT_GT] = ACTIONS(3172), - [anon_sym_out_GT_GT] = ACTIONS(3172), - [anon_sym_e_GT_GT] = ACTIONS(3172), - [anon_sym_o_GT_GT] = ACTIONS(3172), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3172), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3172), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3172), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3172), - [aux_sym_unquoted_token1] = ACTIONS(3168), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2243), + [anon_sym_false] = ACTIONS(2243), + [anon_sym_null] = ACTIONS(2243), + [aux_sym_cmd_identifier_token38] = ACTIONS(2243), + [aux_sym_cmd_identifier_token39] = ACTIONS(2243), + [aux_sym_cmd_identifier_token40] = ACTIONS(2243), + [sym__newline] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_COMMA] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2243), + [aux_sym_ctrl_match_token1] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym__] = ACTIONS(2241), + [anon_sym_DOT_DOT] = ACTIONS(2241), + [aux_sym_expr_binary_token1] = ACTIONS(2243), + [aux_sym_expr_binary_token2] = ACTIONS(2243), + [aux_sym_expr_binary_token3] = ACTIONS(2243), + [aux_sym_expr_binary_token4] = ACTIONS(2243), + [aux_sym_expr_binary_token5] = ACTIONS(2243), + [aux_sym_expr_binary_token6] = ACTIONS(2243), + [aux_sym_expr_binary_token7] = ACTIONS(2243), + [aux_sym_expr_binary_token8] = ACTIONS(2243), + [aux_sym_expr_binary_token9] = ACTIONS(2243), + [aux_sym_expr_binary_token10] = ACTIONS(2243), + [aux_sym_expr_binary_token11] = ACTIONS(2243), + [aux_sym_expr_binary_token12] = ACTIONS(2243), + [aux_sym_expr_binary_token13] = ACTIONS(2243), + [aux_sym_expr_binary_token14] = ACTIONS(2243), + [aux_sym_expr_binary_token15] = ACTIONS(2243), + [aux_sym_expr_binary_token16] = ACTIONS(2243), + [aux_sym_expr_binary_token17] = ACTIONS(2243), + [aux_sym_expr_binary_token18] = ACTIONS(2243), + [aux_sym_expr_binary_token19] = ACTIONS(2243), + [aux_sym_expr_binary_token20] = ACTIONS(2243), + [aux_sym_expr_binary_token21] = ACTIONS(2243), + [aux_sym_expr_binary_token22] = ACTIONS(2243), + [aux_sym_expr_binary_token23] = ACTIONS(2243), + [aux_sym_expr_binary_token24] = ACTIONS(2243), + [aux_sym_expr_binary_token25] = ACTIONS(2243), + [aux_sym_expr_binary_token26] = ACTIONS(2243), + [aux_sym_expr_binary_token27] = ACTIONS(2243), + [aux_sym_expr_binary_token28] = ACTIONS(2243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2243), + [anon_sym_DOT_DOT_LT] = ACTIONS(2243), + [aux_sym__val_number_decimal_token1] = ACTIONS(2241), + [aux_sym__val_number_decimal_token2] = ACTIONS(2243), + [aux_sym__val_number_decimal_token3] = ACTIONS(2243), + [aux_sym__val_number_decimal_token4] = ACTIONS(2243), + [aux_sym__val_number_token1] = ACTIONS(2243), + [aux_sym__val_number_token2] = ACTIONS(2243), + [aux_sym__val_number_token3] = ACTIONS(2243), + [anon_sym_0b] = ACTIONS(2241), + [anon_sym_0o] = ACTIONS(2241), + [anon_sym_0x] = ACTIONS(2241), + [sym_val_date] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2243), + [sym__str_single_quotes] = ACTIONS(2243), + [sym__str_back_ticks] = ACTIONS(2243), + [anon_sym_err_GT] = ACTIONS(2241), + [anon_sym_out_GT] = ACTIONS(2241), + [anon_sym_e_GT] = ACTIONS(2241), + [anon_sym_o_GT] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT] = ACTIONS(2241), + [anon_sym_err_GT_GT] = ACTIONS(2243), + [anon_sym_out_GT_GT] = ACTIONS(2243), + [anon_sym_e_GT_GT] = ACTIONS(2243), + [anon_sym_o_GT_GT] = ACTIONS(2243), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2243), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2243), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2243), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2243), + [aux_sym_unquoted_token1] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(247), }, [1158] = { [sym_comment] = STATE(1158), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [anon_sym_null] = ACTIONS(2331), - [aux_sym_cmd_identifier_token38] = ACTIONS(2331), - [aux_sym_cmd_identifier_token39] = ACTIONS(2331), - [aux_sym_cmd_identifier_token40] = ACTIONS(2331), - [sym__newline] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_COMMA] = ACTIONS(2331), - [anon_sym_DOLLAR] = ACTIONS(2331), - [anon_sym_GT] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_in] = ACTIONS(2329), - [aux_sym_ctrl_match_token1] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym__] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(2329), - [anon_sym_STAR] = ACTIONS(2329), - [anon_sym_and] = ACTIONS(2331), - [anon_sym_xor] = ACTIONS(2331), - [anon_sym_or] = ACTIONS(2331), - [anon_sym_not_DASHin] = ACTIONS(2331), - [anon_sym_starts_DASHwith] = ACTIONS(2331), - [anon_sym_ends_DASHwith] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2331), - [anon_sym_BANG_EQ] = ACTIONS(2331), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_EQ] = ACTIONS(2331), - [anon_sym_EQ_TILDE] = ACTIONS(2331), - [anon_sym_BANG_TILDE] = ACTIONS(2331), - [anon_sym_STAR_STAR] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_SLASH] = ACTIONS(2329), - [anon_sym_mod] = ACTIONS(2331), - [anon_sym_SLASH_SLASH] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_bit_DASHshl] = ACTIONS(2331), - [anon_sym_bit_DASHshr] = ACTIONS(2331), - [anon_sym_bit_DASHand] = ACTIONS(2331), - [anon_sym_bit_DASHxor] = ACTIONS(2331), - [anon_sym_bit_DASHor] = ACTIONS(2331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2331), - [anon_sym_DOT_DOT_LT] = ACTIONS(2331), - [aux_sym__val_number_decimal_token1] = ACTIONS(2329), - [aux_sym__val_number_decimal_token2] = ACTIONS(2331), - [anon_sym_DOT2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_token1] = ACTIONS(2331), - [aux_sym__val_number_token2] = ACTIONS(2331), - [aux_sym__val_number_token3] = ACTIONS(2331), - [anon_sym_0b] = ACTIONS(2329), - [anon_sym_0o] = ACTIONS(2329), - [anon_sym_0x] = ACTIONS(2329), - [sym_val_date] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2331), - [sym__str_single_quotes] = ACTIONS(2331), - [sym__str_back_ticks] = ACTIONS(2331), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2331), - [anon_sym_out_GT_GT] = ACTIONS(2331), - [anon_sym_e_GT_GT] = ACTIONS(2331), - [anon_sym_o_GT_GT] = ACTIONS(2331), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2331), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2331), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2331), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2331), - [aux_sym_unquoted_token1] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [anon_sym_null] = ACTIONS(1984), + [aux_sym_cmd_identifier_token38] = ACTIONS(1984), + [aux_sym_cmd_identifier_token39] = ACTIONS(1984), + [aux_sym_cmd_identifier_token40] = ACTIONS(1984), + [sym__newline] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_COMMA] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1984), + [aux_sym_ctrl_match_token1] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym__] = ACTIONS(1982), + [anon_sym_DOT_DOT] = ACTIONS(1982), + [aux_sym_expr_binary_token1] = ACTIONS(1984), + [aux_sym_expr_binary_token2] = ACTIONS(1984), + [aux_sym_expr_binary_token3] = ACTIONS(1984), + [aux_sym_expr_binary_token4] = ACTIONS(1984), + [aux_sym_expr_binary_token5] = ACTIONS(1984), + [aux_sym_expr_binary_token6] = ACTIONS(1984), + [aux_sym_expr_binary_token7] = ACTIONS(1984), + [aux_sym_expr_binary_token8] = ACTIONS(1984), + [aux_sym_expr_binary_token9] = ACTIONS(1984), + [aux_sym_expr_binary_token10] = ACTIONS(1984), + [aux_sym_expr_binary_token11] = ACTIONS(1984), + [aux_sym_expr_binary_token12] = ACTIONS(1984), + [aux_sym_expr_binary_token13] = ACTIONS(1984), + [aux_sym_expr_binary_token14] = ACTIONS(1984), + [aux_sym_expr_binary_token15] = ACTIONS(1984), + [aux_sym_expr_binary_token16] = ACTIONS(1984), + [aux_sym_expr_binary_token17] = ACTIONS(1984), + [aux_sym_expr_binary_token18] = ACTIONS(1984), + [aux_sym_expr_binary_token19] = ACTIONS(1984), + [aux_sym_expr_binary_token20] = ACTIONS(1984), + [aux_sym_expr_binary_token21] = ACTIONS(1984), + [aux_sym_expr_binary_token22] = ACTIONS(1984), + [aux_sym_expr_binary_token23] = ACTIONS(1984), + [aux_sym_expr_binary_token24] = ACTIONS(1984), + [aux_sym_expr_binary_token25] = ACTIONS(1984), + [aux_sym_expr_binary_token26] = ACTIONS(1984), + [aux_sym_expr_binary_token27] = ACTIONS(1984), + [aux_sym_expr_binary_token28] = ACTIONS(1984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1984), + [anon_sym_DOT_DOT_LT] = ACTIONS(1984), + [aux_sym__val_number_decimal_token1] = ACTIONS(1982), + [aux_sym__val_number_decimal_token2] = ACTIONS(1984), + [aux_sym__val_number_decimal_token3] = ACTIONS(1984), + [aux_sym__val_number_decimal_token4] = ACTIONS(1984), + [aux_sym__val_number_token1] = ACTIONS(1984), + [aux_sym__val_number_token2] = ACTIONS(1984), + [aux_sym__val_number_token3] = ACTIONS(1984), + [anon_sym_0b] = ACTIONS(1982), + [anon_sym_0o] = ACTIONS(1982), + [anon_sym_0x] = ACTIONS(1982), + [sym_val_date] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1984), + [sym__str_single_quotes] = ACTIONS(1984), + [sym__str_back_ticks] = ACTIONS(1984), + [anon_sym_err_GT] = ACTIONS(1982), + [anon_sym_out_GT] = ACTIONS(1982), + [anon_sym_e_GT] = ACTIONS(1982), + [anon_sym_o_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT] = ACTIONS(1982), + [anon_sym_err_GT_GT] = ACTIONS(1984), + [anon_sym_out_GT_GT] = ACTIONS(1984), + [anon_sym_e_GT_GT] = ACTIONS(1984), + [anon_sym_o_GT_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1984), + [aux_sym_unquoted_token1] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(247), }, [1159] = { [sym_comment] = STATE(1159), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3455), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3461), - [anon_sym_starts_DASHwith] = ACTIONS(3461), - [anon_sym_ends_DASHwith] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_LT2] = ACTIONS(3451), - [anon_sym_LT_EQ] = ACTIONS(3463), - [anon_sym_GT_EQ] = ACTIONS(3463), - [anon_sym_EQ_TILDE] = ACTIONS(3449), - [anon_sym_BANG_TILDE] = ACTIONS(3449), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_bit_DASHshl] = ACTIONS(3471), - [anon_sym_bit_DASHshr] = ACTIONS(3471), - [anon_sym_bit_DASHand] = ACTIONS(3449), - [anon_sym_bit_DASHxor] = ACTIONS(3449), - [anon_sym_bit_DASHor] = ACTIONS(3449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3173), + [anon_sym_false] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3173), + [aux_sym_cmd_identifier_token38] = ACTIONS(3173), + [aux_sym_cmd_identifier_token39] = ACTIONS(3173), + [aux_sym_cmd_identifier_token40] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3173), + [aux_sym_ctrl_match_token1] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym__] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(3175), + [aux_sym_expr_binary_token1] = ACTIONS(3177), + [aux_sym_expr_binary_token2] = ACTIONS(3177), + [aux_sym_expr_binary_token3] = ACTIONS(3177), + [aux_sym_expr_binary_token4] = ACTIONS(3177), + [aux_sym_expr_binary_token5] = ACTIONS(3177), + [aux_sym_expr_binary_token6] = ACTIONS(3177), + [aux_sym_expr_binary_token7] = ACTIONS(3177), + [aux_sym_expr_binary_token8] = ACTIONS(3177), + [aux_sym_expr_binary_token9] = ACTIONS(3177), + [aux_sym_expr_binary_token10] = ACTIONS(3177), + [aux_sym_expr_binary_token11] = ACTIONS(3177), + [aux_sym_expr_binary_token12] = ACTIONS(3177), + [aux_sym_expr_binary_token13] = ACTIONS(3177), + [aux_sym_expr_binary_token14] = ACTIONS(3177), + [aux_sym_expr_binary_token15] = ACTIONS(3177), + [aux_sym_expr_binary_token16] = ACTIONS(3177), + [aux_sym_expr_binary_token17] = ACTIONS(3177), + [aux_sym_expr_binary_token18] = ACTIONS(3177), + [aux_sym_expr_binary_token19] = ACTIONS(3177), + [aux_sym_expr_binary_token20] = ACTIONS(3177), + [aux_sym_expr_binary_token21] = ACTIONS(3177), + [aux_sym_expr_binary_token22] = ACTIONS(3177), + [aux_sym_expr_binary_token23] = ACTIONS(3177), + [aux_sym_expr_binary_token24] = ACTIONS(3177), + [aux_sym_expr_binary_token25] = ACTIONS(3177), + [aux_sym_expr_binary_token26] = ACTIONS(3177), + [aux_sym_expr_binary_token27] = ACTIONS(3177), + [aux_sym_expr_binary_token28] = ACTIONS(3177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3173), + [anon_sym_DOT_DOT_LT] = ACTIONS(3173), + [aux_sym__val_number_decimal_token1] = ACTIONS(3175), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3173), + [aux_sym__val_number_decimal_token4] = ACTIONS(3173), + [aux_sym__val_number_token1] = ACTIONS(3173), + [aux_sym__val_number_token2] = ACTIONS(3173), + [aux_sym__val_number_token3] = ACTIONS(3173), + [anon_sym_0b] = ACTIONS(3175), + [anon_sym_0o] = ACTIONS(3175), + [anon_sym_0x] = ACTIONS(3175), + [sym_val_date] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym__str_single_quotes] = ACTIONS(3173), + [sym__str_back_ticks] = ACTIONS(3173), + [anon_sym_err_GT] = ACTIONS(3175), + [anon_sym_out_GT] = ACTIONS(3175), + [anon_sym_e_GT] = ACTIONS(3175), + [anon_sym_o_GT] = ACTIONS(3175), + [anon_sym_err_PLUSout_GT] = ACTIONS(3175), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3175), + [anon_sym_o_PLUSe_GT] = ACTIONS(3175), + [anon_sym_e_PLUSo_GT] = ACTIONS(3175), + [anon_sym_err_GT_GT] = ACTIONS(3173), + [anon_sym_out_GT_GT] = ACTIONS(3173), + [anon_sym_e_GT_GT] = ACTIONS(3173), + [anon_sym_o_GT_GT] = ACTIONS(3173), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3173), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3173), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3173), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3173), + [aux_sym_unquoted_token1] = ACTIONS(3175), + [anon_sym_POUND] = ACTIONS(247), }, [1160] = { [sym_comment] = STATE(1160), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2338), + [anon_sym_false] = ACTIONS(2338), + [anon_sym_null] = ACTIONS(2338), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2338), + [aux_sym_cmd_identifier_token40] = ACTIONS(2338), + [sym__newline] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2338), + [anon_sym_DOLLAR] = ACTIONS(2338), + [aux_sym_ctrl_match_token1] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym__] = ACTIONS(2336), + [anon_sym_DOT_DOT] = ACTIONS(2336), + [aux_sym_expr_binary_token1] = ACTIONS(2338), + [aux_sym_expr_binary_token2] = ACTIONS(2338), + [aux_sym_expr_binary_token3] = ACTIONS(2338), + [aux_sym_expr_binary_token4] = ACTIONS(2338), + [aux_sym_expr_binary_token5] = ACTIONS(2338), + [aux_sym_expr_binary_token6] = ACTIONS(2338), + [aux_sym_expr_binary_token7] = ACTIONS(2338), + [aux_sym_expr_binary_token8] = ACTIONS(2338), + [aux_sym_expr_binary_token9] = ACTIONS(2338), + [aux_sym_expr_binary_token10] = ACTIONS(2338), + [aux_sym_expr_binary_token11] = ACTIONS(2338), + [aux_sym_expr_binary_token12] = ACTIONS(2338), + [aux_sym_expr_binary_token13] = ACTIONS(2338), + [aux_sym_expr_binary_token14] = ACTIONS(2338), + [aux_sym_expr_binary_token15] = ACTIONS(2338), + [aux_sym_expr_binary_token16] = ACTIONS(2338), + [aux_sym_expr_binary_token17] = ACTIONS(2338), + [aux_sym_expr_binary_token18] = ACTIONS(2338), + [aux_sym_expr_binary_token19] = ACTIONS(2338), + [aux_sym_expr_binary_token20] = ACTIONS(2338), + [aux_sym_expr_binary_token21] = ACTIONS(2338), + [aux_sym_expr_binary_token22] = ACTIONS(2338), + [aux_sym_expr_binary_token23] = ACTIONS(2338), + [aux_sym_expr_binary_token24] = ACTIONS(2338), + [aux_sym_expr_binary_token25] = ACTIONS(2338), + [aux_sym_expr_binary_token26] = ACTIONS(2338), + [aux_sym_expr_binary_token27] = ACTIONS(2338), + [aux_sym_expr_binary_token28] = ACTIONS(2338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2338), + [anon_sym_DOT_DOT_LT] = ACTIONS(2338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2336), + [aux_sym__val_number_decimal_token2] = ACTIONS(2338), + [aux_sym__val_number_decimal_token3] = ACTIONS(2338), + [aux_sym__val_number_decimal_token4] = ACTIONS(2338), + [aux_sym__val_number_token1] = ACTIONS(2338), + [aux_sym__val_number_token2] = ACTIONS(2338), + [aux_sym__val_number_token3] = ACTIONS(2338), + [anon_sym_0b] = ACTIONS(2336), + [anon_sym_0o] = ACTIONS(2336), + [anon_sym_0x] = ACTIONS(2336), + [sym_val_date] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [sym__str_single_quotes] = ACTIONS(2338), + [sym__str_back_ticks] = ACTIONS(2338), + [anon_sym_err_GT] = ACTIONS(2336), + [anon_sym_out_GT] = ACTIONS(2336), + [anon_sym_e_GT] = ACTIONS(2336), + [anon_sym_o_GT] = ACTIONS(2336), + [anon_sym_err_PLUSout_GT] = ACTIONS(2336), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2336), + [anon_sym_o_PLUSe_GT] = ACTIONS(2336), + [anon_sym_e_PLUSo_GT] = ACTIONS(2336), + [anon_sym_err_GT_GT] = ACTIONS(2338), + [anon_sym_out_GT_GT] = ACTIONS(2338), + [anon_sym_e_GT_GT] = ACTIONS(2338), + [anon_sym_o_GT_GT] = ACTIONS(2338), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2338), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2338), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2338), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2338), + [aux_sym_unquoted_token1] = ACTIONS(2336), + [anon_sym_POUND] = ACTIONS(247), }, [1161] = { [sym_comment] = STATE(1161), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_null] = ACTIONS(2265), + [aux_sym_cmd_identifier_token38] = ACTIONS(2265), + [aux_sym_cmd_identifier_token39] = ACTIONS(2265), + [aux_sym_cmd_identifier_token40] = ACTIONS(2265), + [sym__newline] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_COMMA] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2265), + [aux_sym_ctrl_match_token1] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym__] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2263), + [aux_sym_expr_binary_token1] = ACTIONS(2265), + [aux_sym_expr_binary_token2] = ACTIONS(2265), + [aux_sym_expr_binary_token3] = ACTIONS(2265), + [aux_sym_expr_binary_token4] = ACTIONS(2265), + [aux_sym_expr_binary_token5] = ACTIONS(2265), + [aux_sym_expr_binary_token6] = ACTIONS(2265), + [aux_sym_expr_binary_token7] = ACTIONS(2265), + [aux_sym_expr_binary_token8] = ACTIONS(2265), + [aux_sym_expr_binary_token9] = ACTIONS(2265), + [aux_sym_expr_binary_token10] = ACTIONS(2265), + [aux_sym_expr_binary_token11] = ACTIONS(2265), + [aux_sym_expr_binary_token12] = ACTIONS(2265), + [aux_sym_expr_binary_token13] = ACTIONS(2265), + [aux_sym_expr_binary_token14] = ACTIONS(2265), + [aux_sym_expr_binary_token15] = ACTIONS(2265), + [aux_sym_expr_binary_token16] = ACTIONS(2265), + [aux_sym_expr_binary_token17] = ACTIONS(2265), + [aux_sym_expr_binary_token18] = ACTIONS(2265), + [aux_sym_expr_binary_token19] = ACTIONS(2265), + [aux_sym_expr_binary_token20] = ACTIONS(2265), + [aux_sym_expr_binary_token21] = ACTIONS(2265), + [aux_sym_expr_binary_token22] = ACTIONS(2265), + [aux_sym_expr_binary_token23] = ACTIONS(2265), + [aux_sym_expr_binary_token24] = ACTIONS(2265), + [aux_sym_expr_binary_token25] = ACTIONS(2265), + [aux_sym_expr_binary_token26] = ACTIONS(2265), + [aux_sym_expr_binary_token27] = ACTIONS(2265), + [aux_sym_expr_binary_token28] = ACTIONS(2265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2265), + [anon_sym_DOT_DOT_LT] = ACTIONS(2265), + [aux_sym__val_number_decimal_token1] = ACTIONS(2263), + [aux_sym__val_number_decimal_token2] = ACTIONS(2265), + [aux_sym__val_number_decimal_token3] = ACTIONS(2265), + [aux_sym__val_number_decimal_token4] = ACTIONS(2265), + [aux_sym__val_number_token1] = ACTIONS(2265), + [aux_sym__val_number_token2] = ACTIONS(2265), + [aux_sym__val_number_token3] = ACTIONS(2265), + [anon_sym_0b] = ACTIONS(2263), + [anon_sym_0o] = ACTIONS(2263), + [anon_sym_0x] = ACTIONS(2263), + [sym_val_date] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2265), + [sym__str_single_quotes] = ACTIONS(2265), + [sym__str_back_ticks] = ACTIONS(2265), + [anon_sym_err_GT] = ACTIONS(2263), + [anon_sym_out_GT] = ACTIONS(2263), + [anon_sym_e_GT] = ACTIONS(2263), + [anon_sym_o_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT] = ACTIONS(2263), + [anon_sym_err_GT_GT] = ACTIONS(2265), + [anon_sym_out_GT_GT] = ACTIONS(2265), + [anon_sym_e_GT_GT] = ACTIONS(2265), + [anon_sym_o_GT_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), + [aux_sym_unquoted_token1] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(247), }, [1162] = { [sym_comment] = STATE(1162), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_in] = ACTIONS(3457), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3457), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3449), - [anon_sym_starts_DASHwith] = ACTIONS(3449), - [anon_sym_ends_DASHwith] = ACTIONS(3449), - [anon_sym_EQ_EQ] = ACTIONS(3449), - [anon_sym_BANG_EQ] = ACTIONS(3449), - [anon_sym_LT2] = ACTIONS(3457), - [anon_sym_LT_EQ] = ACTIONS(3449), - [anon_sym_GT_EQ] = ACTIONS(3449), - [anon_sym_EQ_TILDE] = ACTIONS(3449), - [anon_sym_BANG_TILDE] = ACTIONS(3449), - [anon_sym_STAR_STAR] = ACTIONS(3449), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(3457), - [anon_sym_mod] = ACTIONS(3449), - [anon_sym_SLASH_SLASH] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_bit_DASHshl] = ACTIONS(3449), - [anon_sym_bit_DASHshr] = ACTIONS(3449), - [anon_sym_bit_DASHand] = ACTIONS(3449), - [anon_sym_bit_DASHxor] = ACTIONS(3449), - [anon_sym_bit_DASHor] = ACTIONS(3449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_null] = ACTIONS(2297), + [aux_sym_cmd_identifier_token38] = ACTIONS(2297), + [aux_sym_cmd_identifier_token39] = ACTIONS(2297), + [aux_sym_cmd_identifier_token40] = ACTIONS(2297), + [sym__newline] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_COMMA] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2297), + [aux_sym_ctrl_match_token1] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym__] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2295), + [aux_sym_expr_binary_token1] = ACTIONS(2297), + [aux_sym_expr_binary_token2] = ACTIONS(2297), + [aux_sym_expr_binary_token3] = ACTIONS(2297), + [aux_sym_expr_binary_token4] = ACTIONS(2297), + [aux_sym_expr_binary_token5] = ACTIONS(2297), + [aux_sym_expr_binary_token6] = ACTIONS(2297), + [aux_sym_expr_binary_token7] = ACTIONS(2297), + [aux_sym_expr_binary_token8] = ACTIONS(2297), + [aux_sym_expr_binary_token9] = ACTIONS(2297), + [aux_sym_expr_binary_token10] = ACTIONS(2297), + [aux_sym_expr_binary_token11] = ACTIONS(2297), + [aux_sym_expr_binary_token12] = ACTIONS(2297), + [aux_sym_expr_binary_token13] = ACTIONS(2297), + [aux_sym_expr_binary_token14] = ACTIONS(2297), + [aux_sym_expr_binary_token15] = ACTIONS(2297), + [aux_sym_expr_binary_token16] = ACTIONS(2297), + [aux_sym_expr_binary_token17] = ACTIONS(2297), + [aux_sym_expr_binary_token18] = ACTIONS(2297), + [aux_sym_expr_binary_token19] = ACTIONS(2297), + [aux_sym_expr_binary_token20] = ACTIONS(2297), + [aux_sym_expr_binary_token21] = ACTIONS(2297), + [aux_sym_expr_binary_token22] = ACTIONS(2297), + [aux_sym_expr_binary_token23] = ACTIONS(2297), + [aux_sym_expr_binary_token24] = ACTIONS(2297), + [aux_sym_expr_binary_token25] = ACTIONS(2297), + [aux_sym_expr_binary_token26] = ACTIONS(2297), + [aux_sym_expr_binary_token27] = ACTIONS(2297), + [aux_sym_expr_binary_token28] = ACTIONS(2297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2297), + [anon_sym_DOT_DOT_LT] = ACTIONS(2297), + [aux_sym__val_number_decimal_token1] = ACTIONS(2295), + [aux_sym__val_number_decimal_token2] = ACTIONS(2297), + [aux_sym__val_number_decimal_token3] = ACTIONS(2297), + [aux_sym__val_number_decimal_token4] = ACTIONS(2297), + [aux_sym__val_number_token1] = ACTIONS(2297), + [aux_sym__val_number_token2] = ACTIONS(2297), + [aux_sym__val_number_token3] = ACTIONS(2297), + [anon_sym_0b] = ACTIONS(2295), + [anon_sym_0o] = ACTIONS(2295), + [anon_sym_0x] = ACTIONS(2295), + [sym_val_date] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym__str_single_quotes] = ACTIONS(2297), + [sym__str_back_ticks] = ACTIONS(2297), + [anon_sym_err_GT] = ACTIONS(2295), + [anon_sym_out_GT] = ACTIONS(2295), + [anon_sym_e_GT] = ACTIONS(2295), + [anon_sym_o_GT] = ACTIONS(2295), + [anon_sym_err_PLUSout_GT] = ACTIONS(2295), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2295), + [anon_sym_o_PLUSe_GT] = ACTIONS(2295), + [anon_sym_e_PLUSo_GT] = ACTIONS(2295), + [anon_sym_err_GT_GT] = ACTIONS(2297), + [anon_sym_out_GT_GT] = ACTIONS(2297), + [anon_sym_e_GT_GT] = ACTIONS(2297), + [anon_sym_o_GT_GT] = ACTIONS(2297), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2297), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2297), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2297), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2297), + [aux_sym_unquoted_token1] = ACTIONS(2295), + [anon_sym_POUND] = ACTIONS(247), }, [1163] = { [sym_comment] = STATE(1163), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3457), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3449), - [anon_sym_starts_DASHwith] = ACTIONS(3449), - [anon_sym_ends_DASHwith] = ACTIONS(3449), - [anon_sym_EQ_EQ] = ACTIONS(3449), - [anon_sym_BANG_EQ] = ACTIONS(3449), - [anon_sym_LT2] = ACTIONS(3457), - [anon_sym_LT_EQ] = ACTIONS(3449), - [anon_sym_GT_EQ] = ACTIONS(3449), - [anon_sym_EQ_TILDE] = ACTIONS(3449), - [anon_sym_BANG_TILDE] = ACTIONS(3449), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_bit_DASHshl] = ACTIONS(3449), - [anon_sym_bit_DASHshr] = ACTIONS(3449), - [anon_sym_bit_DASHand] = ACTIONS(3449), - [anon_sym_bit_DASHxor] = ACTIONS(3449), - [anon_sym_bit_DASHor] = ACTIONS(3449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3177), + [anon_sym_false] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3177), + [aux_sym_cmd_identifier_token38] = ACTIONS(3177), + [aux_sym_cmd_identifier_token39] = ACTIONS(3177), + [aux_sym_cmd_identifier_token40] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3177), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3177), + [aux_sym_ctrl_match_token1] = ACTIONS(3177), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [aux_sym_expr_binary_token1] = ACTIONS(3177), + [aux_sym_expr_binary_token2] = ACTIONS(3177), + [aux_sym_expr_binary_token3] = ACTIONS(3177), + [aux_sym_expr_binary_token4] = ACTIONS(3177), + [aux_sym_expr_binary_token5] = ACTIONS(3177), + [aux_sym_expr_binary_token6] = ACTIONS(3177), + [aux_sym_expr_binary_token7] = ACTIONS(3177), + [aux_sym_expr_binary_token8] = ACTIONS(3177), + [aux_sym_expr_binary_token9] = ACTIONS(3177), + [aux_sym_expr_binary_token10] = ACTIONS(3177), + [aux_sym_expr_binary_token11] = ACTIONS(3177), + [aux_sym_expr_binary_token12] = ACTIONS(3177), + [aux_sym_expr_binary_token13] = ACTIONS(3177), + [aux_sym_expr_binary_token14] = ACTIONS(3177), + [aux_sym_expr_binary_token15] = ACTIONS(3177), + [aux_sym_expr_binary_token16] = ACTIONS(3177), + [aux_sym_expr_binary_token17] = ACTIONS(3177), + [aux_sym_expr_binary_token18] = ACTIONS(3177), + [aux_sym_expr_binary_token19] = ACTIONS(3177), + [aux_sym_expr_binary_token20] = ACTIONS(3177), + [aux_sym_expr_binary_token21] = ACTIONS(3177), + [aux_sym_expr_binary_token22] = ACTIONS(3177), + [aux_sym_expr_binary_token23] = ACTIONS(3177), + [aux_sym_expr_binary_token24] = ACTIONS(3177), + [aux_sym_expr_binary_token25] = ACTIONS(3177), + [aux_sym_expr_binary_token26] = ACTIONS(3177), + [aux_sym_expr_binary_token27] = ACTIONS(3177), + [aux_sym_expr_binary_token28] = ACTIONS(3177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3177), + [anon_sym_DOT_DOT_LT] = ACTIONS(3177), + [aux_sym__val_number_decimal_token1] = ACTIONS(3599), + [aux_sym__val_number_decimal_token2] = ACTIONS(3177), + [aux_sym__val_number_decimal_token3] = ACTIONS(3177), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(3177), + [aux_sym__val_number_token2] = ACTIONS(3177), + [aux_sym__val_number_token3] = ACTIONS(3177), + [anon_sym_0b] = ACTIONS(3599), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym__str_single_quotes] = ACTIONS(3177), + [sym__str_back_ticks] = ACTIONS(3177), + [anon_sym_err_GT] = ACTIONS(3599), + [anon_sym_out_GT] = ACTIONS(3599), + [anon_sym_e_GT] = ACTIONS(3599), + [anon_sym_o_GT] = ACTIONS(3599), + [anon_sym_err_PLUSout_GT] = ACTIONS(3599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3599), + [anon_sym_o_PLUSe_GT] = ACTIONS(3599), + [anon_sym_e_PLUSo_GT] = ACTIONS(3599), + [anon_sym_err_GT_GT] = ACTIONS(3177), + [anon_sym_out_GT_GT] = ACTIONS(3177), + [anon_sym_e_GT_GT] = ACTIONS(3177), + [anon_sym_o_GT_GT] = ACTIONS(3177), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3177), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3177), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3177), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3177), + [aux_sym_unquoted_token1] = ACTIONS(3599), + [anon_sym_POUND] = ACTIONS(247), }, [1164] = { [sym_comment] = STATE(1164), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3601), + [aux_sym_expr_binary_token2] = ACTIONS(3601), + [aux_sym_expr_binary_token3] = ACTIONS(3601), + [aux_sym_expr_binary_token4] = ACTIONS(3601), + [aux_sym_expr_binary_token5] = ACTIONS(3601), + [aux_sym_expr_binary_token6] = ACTIONS(3601), + [aux_sym_expr_binary_token7] = ACTIONS(3601), + [aux_sym_expr_binary_token8] = ACTIONS(3601), + [aux_sym_expr_binary_token9] = ACTIONS(3601), + [aux_sym_expr_binary_token10] = ACTIONS(3601), + [aux_sym_expr_binary_token11] = ACTIONS(3601), + [aux_sym_expr_binary_token12] = ACTIONS(3601), + [aux_sym_expr_binary_token13] = ACTIONS(3601), + [aux_sym_expr_binary_token14] = ACTIONS(3601), + [aux_sym_expr_binary_token15] = ACTIONS(3601), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3601), + [aux_sym_expr_binary_token20] = ACTIONS(3601), + [aux_sym_expr_binary_token21] = ACTIONS(3601), + [aux_sym_expr_binary_token22] = ACTIONS(3601), + [aux_sym_expr_binary_token23] = ACTIONS(3601), + [aux_sym_expr_binary_token24] = ACTIONS(3601), + [aux_sym_expr_binary_token25] = ACTIONS(3601), + [aux_sym_expr_binary_token26] = ACTIONS(3601), + [aux_sym_expr_binary_token27] = ACTIONS(3601), + [aux_sym_expr_binary_token28] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1165] = { [sym_comment] = STATE(1165), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_null] = ACTIONS(2081), - [aux_sym_cmd_identifier_token38] = ACTIONS(2081), - [aux_sym_cmd_identifier_token39] = ACTIONS(2081), - [aux_sym_cmd_identifier_token40] = ACTIONS(2081), - [sym__newline] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_COMMA] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2081), - [anon_sym_GT] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2077), - [aux_sym_ctrl_match_token1] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym__] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_and] = ACTIONS(2081), - [anon_sym_xor] = ACTIONS(2081), - [anon_sym_or] = ACTIONS(2081), - [anon_sym_not_DASHin] = ACTIONS(2081), - [anon_sym_starts_DASHwith] = ACTIONS(2081), - [anon_sym_ends_DASHwith] = ACTIONS(2081), - [anon_sym_EQ_EQ] = ACTIONS(2081), - [anon_sym_BANG_EQ] = ACTIONS(2081), - [anon_sym_LT2] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2081), - [anon_sym_GT_EQ] = ACTIONS(2081), - [anon_sym_EQ_TILDE] = ACTIONS(2081), - [anon_sym_BANG_TILDE] = ACTIONS(2081), - [anon_sym_STAR_STAR] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_SLASH_SLASH] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_bit_DASHshl] = ACTIONS(2081), - [anon_sym_bit_DASHshr] = ACTIONS(2081), - [anon_sym_bit_DASHand] = ACTIONS(2081), - [anon_sym_bit_DASHxor] = ACTIONS(2081), - [anon_sym_bit_DASHor] = ACTIONS(2081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2081), - [anon_sym_DOT_DOT_LT] = ACTIONS(2081), - [aux_sym__val_number_decimal_token1] = ACTIONS(2077), - [aux_sym__val_number_decimal_token2] = ACTIONS(2081), - [anon_sym_DOT2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2081), - [aux_sym__val_number_token1] = ACTIONS(2081), - [aux_sym__val_number_token2] = ACTIONS(2081), - [aux_sym__val_number_token3] = ACTIONS(2081), - [anon_sym_0b] = ACTIONS(2077), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2081), - [sym__str_back_ticks] = ACTIONS(2081), - [anon_sym_err_GT] = ACTIONS(2077), - [anon_sym_out_GT] = ACTIONS(2077), - [anon_sym_e_GT] = ACTIONS(2077), - [anon_sym_o_GT] = ACTIONS(2077), - [anon_sym_err_PLUSout_GT] = ACTIONS(2077), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2077), - [anon_sym_o_PLUSe_GT] = ACTIONS(2077), - [anon_sym_e_PLUSo_GT] = ACTIONS(2077), - [anon_sym_err_GT_GT] = ACTIONS(2081), - [anon_sym_out_GT_GT] = ACTIONS(2081), - [anon_sym_e_GT_GT] = ACTIONS(2081), - [anon_sym_o_GT_GT] = ACTIONS(2081), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2081), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2081), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2081), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2081), - [aux_sym_unquoted_token1] = ACTIONS(2077), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1166] = { [sym_comment] = STATE(1166), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_null] = ACTIONS(3511), - [aux_sym_cmd_identifier_token38] = ACTIONS(3511), - [aux_sym_cmd_identifier_token39] = ACTIONS(3511), - [aux_sym_cmd_identifier_token40] = ACTIONS(3511), - [sym__newline] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3511), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3511), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_GT] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_in] = ACTIONS(2248), - [aux_sym_ctrl_match_token1] = ACTIONS(3511), - [anon_sym_RBRACE] = ACTIONS(3511), - [anon_sym__] = ACTIONS(3514), - [anon_sym_DOT_DOT] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(2248), - [anon_sym_and] = ACTIONS(2250), - [anon_sym_xor] = ACTIONS(2250), - [anon_sym_or] = ACTIONS(2250), - [anon_sym_not_DASHin] = ACTIONS(2250), - [anon_sym_starts_DASHwith] = ACTIONS(2250), - [anon_sym_ends_DASHwith] = ACTIONS(2250), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT2] = ACTIONS(2248), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_EQ_TILDE] = ACTIONS(2250), - [anon_sym_BANG_TILDE] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2248), - [anon_sym_mod] = ACTIONS(2250), - [anon_sym_SLASH_SLASH] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2248), - [anon_sym_bit_DASHshl] = ACTIONS(2250), - [anon_sym_bit_DASHshr] = ACTIONS(2250), - [anon_sym_bit_DASHand] = ACTIONS(2250), - [anon_sym_bit_DASHxor] = ACTIONS(2250), - [anon_sym_bit_DASHor] = ACTIONS(2250), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), - [anon_sym_DOT_DOT_LT] = ACTIONS(3511), - [aux_sym__val_number_decimal_token1] = ACTIONS(3514), - [aux_sym__val_number_decimal_token2] = ACTIONS(3511), - [anon_sym_DOT2] = ACTIONS(3514), - [aux_sym__val_number_decimal_token3] = ACTIONS(3511), - [aux_sym__val_number_token1] = ACTIONS(3511), - [aux_sym__val_number_token2] = ACTIONS(3511), - [aux_sym__val_number_token3] = ACTIONS(3511), - [anon_sym_0b] = ACTIONS(3514), - [anon_sym_0o] = ACTIONS(3514), - [anon_sym_0x] = ACTIONS(3514), - [sym_val_date] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [sym__str_single_quotes] = ACTIONS(3511), - [sym__str_back_ticks] = ACTIONS(3511), - [anon_sym_err_GT] = ACTIONS(3514), - [anon_sym_out_GT] = ACTIONS(3514), - [anon_sym_e_GT] = ACTIONS(3514), - [anon_sym_o_GT] = ACTIONS(3514), - [anon_sym_err_PLUSout_GT] = ACTIONS(3514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3514), - [anon_sym_o_PLUSe_GT] = ACTIONS(3514), - [anon_sym_e_PLUSo_GT] = ACTIONS(3514), - [anon_sym_err_GT_GT] = ACTIONS(3511), - [anon_sym_out_GT_GT] = ACTIONS(3511), - [anon_sym_e_GT_GT] = ACTIONS(3511), - [anon_sym_o_GT_GT] = ACTIONS(3511), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3511), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3511), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3511), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3511), - [aux_sym_unquoted_token1] = ACTIONS(3514), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1167] = { - [sym_expr_unary] = STATE(4494), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_parenthesized] = STATE(4214), - [sym_val_range] = STATE(4494), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(4494), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(4277), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(4082), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(4276), - [sym__unquoted_with_expr] = STATE(4419), - [sym__unquoted_anonymous_prefix] = STATE(7221), [sym_comment] = STATE(1167), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [anon_sym_null] = ACTIONS(3519), - [aux_sym_cmd_identifier_token38] = ACTIONS(3521), - [aux_sym_cmd_identifier_token39] = ACTIONS(3521), - [aux_sym_cmd_identifier_token40] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_DOLLAR] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3527), - [aux_sym_expr_unary_token1] = ACTIONS(3529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3531), - [anon_sym_DOT_DOT_LT] = ACTIONS(3531), - [aux_sym__val_number_decimal_token1] = ACTIONS(3533), - [aux_sym__val_number_decimal_token2] = ACTIONS(3535), - [anon_sym_DOT2] = ACTIONS(3537), - [aux_sym__val_number_decimal_token3] = ACTIONS(3539), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1168] = { - [sym_expr_unary] = STATE(4501), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_parenthesized] = STATE(4215), - [sym_val_range] = STATE(4501), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(4501), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(4277), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(4082), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(4296), - [sym__unquoted_with_expr] = STATE(4507), - [sym__unquoted_anonymous_prefix] = STATE(7221), [sym_comment] = STATE(1168), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [anon_sym_null] = ACTIONS(3519), - [aux_sym_cmd_identifier_token38] = ACTIONS(3521), - [aux_sym_cmd_identifier_token39] = ACTIONS(3521), - [aux_sym_cmd_identifier_token40] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_DOLLAR] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3527), - [aux_sym_expr_unary_token1] = ACTIONS(3529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3531), - [anon_sym_DOT_DOT_LT] = ACTIONS(3531), - [aux_sym__val_number_decimal_token1] = ACTIONS(3533), - [aux_sym__val_number_decimal_token2] = ACTIONS(3535), - [anon_sym_DOT2] = ACTIONS(3537), - [aux_sym__val_number_decimal_token3] = ACTIONS(3539), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1169] = { - [sym_expr_unary] = STATE(4509), - [sym__expr_unary_minus] = STATE(2037), - [sym_expr_parenthesized] = STATE(4216), - [sym_val_range] = STATE(4509), - [sym__val_range] = STATE(7616), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(4509), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(4277), - [sym_val_variable] = STATE(1891), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(4082), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(4304), - [sym__unquoted_with_expr] = STATE(4514), - [sym__unquoted_anonymous_prefix] = STATE(7221), [sym_comment] = STATE(1169), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [anon_sym_null] = ACTIONS(3519), - [aux_sym_cmd_identifier_token38] = ACTIONS(3521), - [aux_sym_cmd_identifier_token39] = ACTIONS(3521), - [aux_sym_cmd_identifier_token40] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_DOLLAR] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(389), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3527), - [aux_sym_expr_unary_token1] = ACTIONS(3529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3531), - [anon_sym_DOT_DOT_LT] = ACTIONS(3531), - [aux_sym__val_number_decimal_token1] = ACTIONS(3533), - [aux_sym__val_number_decimal_token2] = ACTIONS(3535), - [anon_sym_DOT2] = ACTIONS(3537), - [aux_sym__val_number_decimal_token3] = ACTIONS(3539), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2328), + [anon_sym_false] = ACTIONS(2328), + [anon_sym_null] = ACTIONS(2328), + [aux_sym_cmd_identifier_token38] = ACTIONS(2328), + [aux_sym_cmd_identifier_token39] = ACTIONS(2328), + [aux_sym_cmd_identifier_token40] = ACTIONS(2328), + [sym__newline] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2328), + [anon_sym_DOLLAR] = ACTIONS(2328), + [aux_sym_ctrl_match_token1] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym__] = ACTIONS(2326), + [anon_sym_DOT_DOT] = ACTIONS(2326), + [aux_sym_expr_binary_token1] = ACTIONS(2328), + [aux_sym_expr_binary_token2] = ACTIONS(2328), + [aux_sym_expr_binary_token3] = ACTIONS(2328), + [aux_sym_expr_binary_token4] = ACTIONS(2328), + [aux_sym_expr_binary_token5] = ACTIONS(2328), + [aux_sym_expr_binary_token6] = ACTIONS(2328), + [aux_sym_expr_binary_token7] = ACTIONS(2328), + [aux_sym_expr_binary_token8] = ACTIONS(2328), + [aux_sym_expr_binary_token9] = ACTIONS(2328), + [aux_sym_expr_binary_token10] = ACTIONS(2328), + [aux_sym_expr_binary_token11] = ACTIONS(2328), + [aux_sym_expr_binary_token12] = ACTIONS(2328), + [aux_sym_expr_binary_token13] = ACTIONS(2328), + [aux_sym_expr_binary_token14] = ACTIONS(2328), + [aux_sym_expr_binary_token15] = ACTIONS(2328), + [aux_sym_expr_binary_token16] = ACTIONS(2328), + [aux_sym_expr_binary_token17] = ACTIONS(2328), + [aux_sym_expr_binary_token18] = ACTIONS(2328), + [aux_sym_expr_binary_token19] = ACTIONS(2328), + [aux_sym_expr_binary_token20] = ACTIONS(2328), + [aux_sym_expr_binary_token21] = ACTIONS(2328), + [aux_sym_expr_binary_token22] = ACTIONS(2328), + [aux_sym_expr_binary_token23] = ACTIONS(2328), + [aux_sym_expr_binary_token24] = ACTIONS(2328), + [aux_sym_expr_binary_token25] = ACTIONS(2328), + [aux_sym_expr_binary_token26] = ACTIONS(2328), + [aux_sym_expr_binary_token27] = ACTIONS(2328), + [aux_sym_expr_binary_token28] = ACTIONS(2328), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2328), + [anon_sym_DOT_DOT_LT] = ACTIONS(2328), + [aux_sym__val_number_decimal_token1] = ACTIONS(2326), + [aux_sym__val_number_decimal_token2] = ACTIONS(2328), + [aux_sym__val_number_decimal_token3] = ACTIONS(2328), + [aux_sym__val_number_decimal_token4] = ACTIONS(2328), + [aux_sym__val_number_token1] = ACTIONS(2328), + [aux_sym__val_number_token2] = ACTIONS(2328), + [aux_sym__val_number_token3] = ACTIONS(2328), + [anon_sym_0b] = ACTIONS(2326), + [anon_sym_0o] = ACTIONS(2326), + [anon_sym_0x] = ACTIONS(2326), + [sym_val_date] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym__str_single_quotes] = ACTIONS(2328), + [sym__str_back_ticks] = ACTIONS(2328), + [anon_sym_err_GT] = ACTIONS(2326), + [anon_sym_out_GT] = ACTIONS(2326), + [anon_sym_e_GT] = ACTIONS(2326), + [anon_sym_o_GT] = ACTIONS(2326), + [anon_sym_err_PLUSout_GT] = ACTIONS(2326), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2326), + [anon_sym_o_PLUSe_GT] = ACTIONS(2326), + [anon_sym_e_PLUSo_GT] = ACTIONS(2326), + [anon_sym_err_GT_GT] = ACTIONS(2328), + [anon_sym_out_GT_GT] = ACTIONS(2328), + [anon_sym_e_GT_GT] = ACTIONS(2328), + [anon_sym_o_GT_GT] = ACTIONS(2328), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2328), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2328), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2328), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2328), + [aux_sym_unquoted_token1] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(247), }, [1170] = { [sym_comment] = STATE(1170), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_null] = ACTIONS(2228), - [aux_sym_cmd_identifier_token38] = ACTIONS(2228), - [aux_sym_cmd_identifier_token39] = ACTIONS(2228), - [aux_sym_cmd_identifier_token40] = ACTIONS(2228), - [sym__newline] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_GT] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2226), - [aux_sym_ctrl_match_token1] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym__] = ACTIONS(2226), - [anon_sym_DOT_DOT] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_and] = ACTIONS(2228), - [anon_sym_xor] = ACTIONS(2228), - [anon_sym_or] = ACTIONS(2228), - [anon_sym_not_DASHin] = ACTIONS(2228), - [anon_sym_starts_DASHwith] = ACTIONS(2228), - [anon_sym_ends_DASHwith] = ACTIONS(2228), - [anon_sym_EQ_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ] = ACTIONS(2228), - [anon_sym_LT2] = ACTIONS(2226), - [anon_sym_LT_EQ] = ACTIONS(2228), - [anon_sym_GT_EQ] = ACTIONS(2228), - [anon_sym_EQ_TILDE] = ACTIONS(2228), - [anon_sym_BANG_TILDE] = ACTIONS(2228), - [anon_sym_STAR_STAR] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_mod] = ACTIONS(2228), - [anon_sym_SLASH_SLASH] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_bit_DASHshl] = ACTIONS(2228), - [anon_sym_bit_DASHshr] = ACTIONS(2228), - [anon_sym_bit_DASHand] = ACTIONS(2228), - [anon_sym_bit_DASHxor] = ACTIONS(2228), - [anon_sym_bit_DASHor] = ACTIONS(2228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2228), - [anon_sym_DOT_DOT_LT] = ACTIONS(2228), - [aux_sym__val_number_decimal_token1] = ACTIONS(2226), - [aux_sym__val_number_decimal_token2] = ACTIONS(2228), - [anon_sym_DOT2] = ACTIONS(2226), - [aux_sym__val_number_decimal_token3] = ACTIONS(2228), - [aux_sym__val_number_token1] = ACTIONS(2228), - [aux_sym__val_number_token2] = ACTIONS(2228), - [aux_sym__val_number_token3] = ACTIONS(2228), - [anon_sym_0b] = ACTIONS(2226), - [anon_sym_0o] = ACTIONS(2226), - [anon_sym_0x] = ACTIONS(2226), - [sym_val_date] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2228), - [sym__str_single_quotes] = ACTIONS(2228), - [sym__str_back_ticks] = ACTIONS(2228), - [anon_sym_err_GT] = ACTIONS(2226), - [anon_sym_out_GT] = ACTIONS(2226), - [anon_sym_e_GT] = ACTIONS(2226), - [anon_sym_o_GT] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT] = ACTIONS(2226), - [anon_sym_err_GT_GT] = ACTIONS(2228), - [anon_sym_out_GT_GT] = ACTIONS(2228), - [anon_sym_e_GT_GT] = ACTIONS(2228), - [anon_sym_o_GT_GT] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), - [aux_sym_unquoted_token1] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1171] = { [sym_comment] = STATE(1171), - [anon_sym_true] = ACTIONS(2396), - [anon_sym_false] = ACTIONS(2396), - [anon_sym_null] = ACTIONS(2396), - [aux_sym_cmd_identifier_token38] = ACTIONS(2396), - [aux_sym_cmd_identifier_token39] = ACTIONS(2396), - [aux_sym_cmd_identifier_token40] = ACTIONS(2396), - [sym__newline] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_COMMA] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2396), - [anon_sym_GT] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_in] = ACTIONS(2394), - [aux_sym_ctrl_match_token1] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym__] = ACTIONS(2394), - [anon_sym_DOT_DOT] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2394), - [anon_sym_and] = ACTIONS(2396), - [anon_sym_xor] = ACTIONS(2396), - [anon_sym_or] = ACTIONS(2396), - [anon_sym_not_DASHin] = ACTIONS(2396), - [anon_sym_starts_DASHwith] = ACTIONS(2396), - [anon_sym_ends_DASHwith] = ACTIONS(2396), - [anon_sym_EQ_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ] = ACTIONS(2396), - [anon_sym_LT2] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2396), - [anon_sym_EQ_TILDE] = ACTIONS(2396), - [anon_sym_BANG_TILDE] = ACTIONS(2396), - [anon_sym_STAR_STAR] = ACTIONS(2396), - [anon_sym_PLUS_PLUS] = ACTIONS(2396), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_mod] = ACTIONS(2396), - [anon_sym_SLASH_SLASH] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_bit_DASHshl] = ACTIONS(2396), - [anon_sym_bit_DASHshr] = ACTIONS(2396), - [anon_sym_bit_DASHand] = ACTIONS(2396), - [anon_sym_bit_DASHxor] = ACTIONS(2396), - [anon_sym_bit_DASHor] = ACTIONS(2396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2396), - [anon_sym_DOT_DOT_LT] = ACTIONS(2396), - [aux_sym__val_number_decimal_token1] = ACTIONS(2394), - [aux_sym__val_number_decimal_token2] = ACTIONS(2396), - [anon_sym_DOT2] = ACTIONS(2394), - [aux_sym__val_number_decimal_token3] = ACTIONS(2396), - [aux_sym__val_number_token1] = ACTIONS(2396), - [aux_sym__val_number_token2] = ACTIONS(2396), - [aux_sym__val_number_token3] = ACTIONS(2396), - [anon_sym_0b] = ACTIONS(2394), - [anon_sym_0o] = ACTIONS(2394), - [anon_sym_0x] = ACTIONS(2394), - [sym_val_date] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2396), - [sym__str_single_quotes] = ACTIONS(2396), - [sym__str_back_ticks] = ACTIONS(2396), - [anon_sym_err_GT] = ACTIONS(2394), - [anon_sym_out_GT] = ACTIONS(2394), - [anon_sym_e_GT] = ACTIONS(2394), - [anon_sym_o_GT] = ACTIONS(2394), - [anon_sym_err_PLUSout_GT] = ACTIONS(2394), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2394), - [anon_sym_o_PLUSe_GT] = ACTIONS(2394), - [anon_sym_e_PLUSo_GT] = ACTIONS(2394), - [anon_sym_err_GT_GT] = ACTIONS(2396), - [anon_sym_out_GT_GT] = ACTIONS(2396), - [anon_sym_e_GT_GT] = ACTIONS(2396), - [anon_sym_o_GT_GT] = ACTIONS(2396), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2396), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2396), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2396), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2396), - [aux_sym_unquoted_token1] = ACTIONS(2394), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1172] = { [sym_comment] = STATE(1172), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3457), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3449), - [anon_sym_starts_DASHwith] = ACTIONS(3449), - [anon_sym_ends_DASHwith] = ACTIONS(3449), - [anon_sym_EQ_EQ] = ACTIONS(3449), - [anon_sym_BANG_EQ] = ACTIONS(3449), - [anon_sym_LT2] = ACTIONS(3457), - [anon_sym_LT_EQ] = ACTIONS(3449), - [anon_sym_GT_EQ] = ACTIONS(3449), - [anon_sym_EQ_TILDE] = ACTIONS(3449), - [anon_sym_BANG_TILDE] = ACTIONS(3449), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_bit_DASHshl] = ACTIONS(3471), - [anon_sym_bit_DASHshr] = ACTIONS(3471), - [anon_sym_bit_DASHand] = ACTIONS(3449), - [anon_sym_bit_DASHxor] = ACTIONS(3449), - [anon_sym_bit_DASHor] = ACTIONS(3449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1173] = { + [sym_expr_unary] = STATE(4845), + [sym__expr_unary_minus] = STATE(4797), + [sym_expr_parenthesized] = STATE(4384), + [sym_val_range] = STATE(4845), + [sym__val_range] = STATE(7957), + [sym__val_range_with_end] = STATE(7665), + [sym__value] = STATE(4845), + [sym_val_nothing] = STATE(4339), + [sym_val_bool] = STATE(4450), + [sym_val_variable] = STATE(4431), + [sym_val_number] = STATE(4339), + [sym__val_number_decimal] = STATE(4127), + [sym__val_number] = STATE(4400), + [sym_val_duration] = STATE(4339), + [sym_val_filesize] = STATE(4339), + [sym_val_binary] = STATE(4339), + [sym_val_string] = STATE(4339), + [sym__str_double_quotes] = STATE(3756), + [sym_val_interpolated] = STATE(4339), + [sym__inter_single_quotes] = STATE(4389), + [sym__inter_double_quotes] = STATE(4338), + [sym_val_list] = STATE(4339), + [sym_val_record] = STATE(4339), + [sym_val_table] = STATE(4339), + [sym_val_closure] = STATE(4339), + [sym_unquoted] = STATE(4483), + [sym__unquoted_with_expr] = STATE(4849), + [sym__unquoted_anonymous_prefix] = STATE(7523), [sym_comment] = STATE(1173), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_in] = ACTIONS(3457), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3449), - [anon_sym_starts_DASHwith] = ACTIONS(3449), - [anon_sym_ends_DASHwith] = ACTIONS(3449), - [anon_sym_EQ_EQ] = ACTIONS(3449), - [anon_sym_BANG_EQ] = ACTIONS(3449), - [anon_sym_LT2] = ACTIONS(3457), - [anon_sym_LT_EQ] = ACTIONS(3449), - [anon_sym_GT_EQ] = ACTIONS(3449), - [anon_sym_EQ_TILDE] = ACTIONS(3449), - [anon_sym_BANG_TILDE] = ACTIONS(3449), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_bit_DASHshl] = ACTIONS(3449), - [anon_sym_bit_DASHshr] = ACTIONS(3449), - [anon_sym_bit_DASHand] = ACTIONS(3449), - [anon_sym_bit_DASHxor] = ACTIONS(3449), - [anon_sym_bit_DASHor] = ACTIONS(3449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3543), + [anon_sym_false] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3545), + [aux_sym_cmd_identifier_token38] = ACTIONS(3547), + [aux_sym_cmd_identifier_token39] = ACTIONS(3547), + [aux_sym_cmd_identifier_token40] = ACTIONS(3547), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LPAREN] = ACTIONS(3551), + [anon_sym_DOLLAR] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3555), + [aux_sym_ctrl_match_token1] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3559), + [aux_sym_expr_unary_token1] = ACTIONS(3561), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3563), + [anon_sym_DOT_DOT_LT] = ACTIONS(3563), + [aux_sym__val_number_decimal_token1] = ACTIONS(3565), + [aux_sym__val_number_decimal_token2] = ACTIONS(3567), + [aux_sym__val_number_decimal_token3] = ACTIONS(3569), + [aux_sym__val_number_decimal_token4] = ACTIONS(3571), + [aux_sym__val_number_token1] = ACTIONS(3573), + [aux_sym__val_number_token2] = ACTIONS(3573), + [aux_sym__val_number_token3] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(3575), + [anon_sym_0o] = ACTIONS(3577), + [anon_sym_0x] = ACTIONS(3577), + [sym_val_date] = ACTIONS(3579), + [anon_sym_DQUOTE] = ACTIONS(3581), + [sym__str_single_quotes] = ACTIONS(3583), + [sym__str_back_ticks] = ACTIONS(3583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3589), + [anon_sym_POUND] = ACTIONS(247), }, [1174] = { [sym_comment] = STATE(1174), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3457), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3449), - [anon_sym_starts_DASHwith] = ACTIONS(3449), - [anon_sym_ends_DASHwith] = ACTIONS(3449), - [anon_sym_EQ_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_LT2] = ACTIONS(3451), - [anon_sym_LT_EQ] = ACTIONS(3463), - [anon_sym_GT_EQ] = ACTIONS(3463), - [anon_sym_EQ_TILDE] = ACTIONS(3449), - [anon_sym_BANG_TILDE] = ACTIONS(3449), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_bit_DASHshl] = ACTIONS(3471), - [anon_sym_bit_DASHshr] = ACTIONS(3471), - [anon_sym_bit_DASHand] = ACTIONS(3449), - [anon_sym_bit_DASHxor] = ACTIONS(3449), - [anon_sym_bit_DASHor] = ACTIONS(3449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [aux_sym_cmd_identifier_token38] = ACTIONS(2093), + [aux_sym_cmd_identifier_token39] = ACTIONS(2093), + [aux_sym_cmd_identifier_token40] = ACTIONS(2093), + [sym__newline] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_COMMA] = ACTIONS(2093), + [anon_sym_DOLLAR] = ACTIONS(2093), + [aux_sym_ctrl_match_token1] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym__] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2089), + [aux_sym_expr_binary_token1] = ACTIONS(2093), + [aux_sym_expr_binary_token2] = ACTIONS(2093), + [aux_sym_expr_binary_token3] = ACTIONS(2093), + [aux_sym_expr_binary_token4] = ACTIONS(2093), + [aux_sym_expr_binary_token5] = ACTIONS(2093), + [aux_sym_expr_binary_token6] = ACTIONS(2093), + [aux_sym_expr_binary_token7] = ACTIONS(2093), + [aux_sym_expr_binary_token8] = ACTIONS(2093), + [aux_sym_expr_binary_token9] = ACTIONS(2093), + [aux_sym_expr_binary_token10] = ACTIONS(2093), + [aux_sym_expr_binary_token11] = ACTIONS(2093), + [aux_sym_expr_binary_token12] = ACTIONS(2093), + [aux_sym_expr_binary_token13] = ACTIONS(2093), + [aux_sym_expr_binary_token14] = ACTIONS(2093), + [aux_sym_expr_binary_token15] = ACTIONS(2093), + [aux_sym_expr_binary_token16] = ACTIONS(2093), + [aux_sym_expr_binary_token17] = ACTIONS(2093), + [aux_sym_expr_binary_token18] = ACTIONS(2093), + [aux_sym_expr_binary_token19] = ACTIONS(2093), + [aux_sym_expr_binary_token20] = ACTIONS(2093), + [aux_sym_expr_binary_token21] = ACTIONS(2093), + [aux_sym_expr_binary_token22] = ACTIONS(2093), + [aux_sym_expr_binary_token23] = ACTIONS(2093), + [aux_sym_expr_binary_token24] = ACTIONS(2093), + [aux_sym_expr_binary_token25] = ACTIONS(2093), + [aux_sym_expr_binary_token26] = ACTIONS(2093), + [aux_sym_expr_binary_token27] = ACTIONS(2093), + [aux_sym_expr_binary_token28] = ACTIONS(2093), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2093), + [anon_sym_DOT_DOT_LT] = ACTIONS(2093), + [aux_sym__val_number_decimal_token1] = ACTIONS(2089), + [aux_sym__val_number_decimal_token2] = ACTIONS(2093), + [aux_sym__val_number_decimal_token3] = ACTIONS(2093), + [aux_sym__val_number_decimal_token4] = ACTIONS(2093), + [aux_sym__val_number_token1] = ACTIONS(2093), + [aux_sym__val_number_token2] = ACTIONS(2093), + [aux_sym__val_number_token3] = ACTIONS(2093), + [anon_sym_0b] = ACTIONS(2089), + [anon_sym_0o] = ACTIONS(2089), + [anon_sym_0x] = ACTIONS(2089), + [sym_val_date] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2093), + [sym__str_single_quotes] = ACTIONS(2093), + [sym__str_back_ticks] = ACTIONS(2093), + [anon_sym_err_GT] = ACTIONS(2089), + [anon_sym_out_GT] = ACTIONS(2089), + [anon_sym_e_GT] = ACTIONS(2089), + [anon_sym_o_GT] = ACTIONS(2089), + [anon_sym_err_PLUSout_GT] = ACTIONS(2089), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), + [anon_sym_o_PLUSe_GT] = ACTIONS(2089), + [anon_sym_e_PLUSo_GT] = ACTIONS(2089), + [anon_sym_err_GT_GT] = ACTIONS(2093), + [anon_sym_out_GT_GT] = ACTIONS(2093), + [anon_sym_e_GT_GT] = ACTIONS(2093), + [anon_sym_o_GT_GT] = ACTIONS(2093), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2093), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2093), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2093), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2093), + [aux_sym_unquoted_token1] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(247), }, [1175] = { [sym_comment] = STATE(1175), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_in] = ACTIONS(3457), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3457), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3449), - [anon_sym_starts_DASHwith] = ACTIONS(3449), - [anon_sym_ends_DASHwith] = ACTIONS(3449), - [anon_sym_EQ_EQ] = ACTIONS(3449), - [anon_sym_BANG_EQ] = ACTIONS(3449), - [anon_sym_LT2] = ACTIONS(3457), - [anon_sym_LT_EQ] = ACTIONS(3449), - [anon_sym_GT_EQ] = ACTIONS(3449), - [anon_sym_EQ_TILDE] = ACTIONS(3449), - [anon_sym_BANG_TILDE] = ACTIONS(3449), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3457), - [anon_sym_mod] = ACTIONS(3449), - [anon_sym_SLASH_SLASH] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_bit_DASHshl] = ACTIONS(3449), - [anon_sym_bit_DASHshr] = ACTIONS(3449), - [anon_sym_bit_DASHand] = ACTIONS(3449), - [anon_sym_bit_DASHxor] = ACTIONS(3449), - [anon_sym_bit_DASHor] = ACTIONS(3449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3605), + [anon_sym_false] = ACTIONS(3605), + [anon_sym_null] = ACTIONS(3605), + [aux_sym_cmd_identifier_token38] = ACTIONS(3605), + [aux_sym_cmd_identifier_token39] = ACTIONS(3605), + [aux_sym_cmd_identifier_token40] = ACTIONS(3605), + [sym__newline] = ACTIONS(3605), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_COMMA] = ACTIONS(3605), + [anon_sym_DOLLAR] = ACTIONS(3605), + [aux_sym_ctrl_match_token1] = ACTIONS(3605), + [anon_sym_RBRACE] = ACTIONS(3605), + [anon_sym__] = ACTIONS(3607), + [anon_sym_DOT_DOT] = ACTIONS(3607), + [aux_sym_expr_binary_token1] = ACTIONS(3605), + [aux_sym_expr_binary_token2] = ACTIONS(3605), + [aux_sym_expr_binary_token3] = ACTIONS(3605), + [aux_sym_expr_binary_token4] = ACTIONS(3605), + [aux_sym_expr_binary_token5] = ACTIONS(3605), + [aux_sym_expr_binary_token6] = ACTIONS(3605), + [aux_sym_expr_binary_token7] = ACTIONS(3605), + [aux_sym_expr_binary_token8] = ACTIONS(3605), + [aux_sym_expr_binary_token9] = ACTIONS(3605), + [aux_sym_expr_binary_token10] = ACTIONS(3605), + [aux_sym_expr_binary_token11] = ACTIONS(3605), + [aux_sym_expr_binary_token12] = ACTIONS(3605), + [aux_sym_expr_binary_token13] = ACTIONS(3605), + [aux_sym_expr_binary_token14] = ACTIONS(3605), + [aux_sym_expr_binary_token15] = ACTIONS(3605), + [aux_sym_expr_binary_token16] = ACTIONS(3605), + [aux_sym_expr_binary_token17] = ACTIONS(3605), + [aux_sym_expr_binary_token18] = ACTIONS(3605), + [aux_sym_expr_binary_token19] = ACTIONS(3605), + [aux_sym_expr_binary_token20] = ACTIONS(3605), + [aux_sym_expr_binary_token21] = ACTIONS(3605), + [aux_sym_expr_binary_token22] = ACTIONS(3605), + [aux_sym_expr_binary_token23] = ACTIONS(3605), + [aux_sym_expr_binary_token24] = ACTIONS(3605), + [aux_sym_expr_binary_token25] = ACTIONS(3605), + [aux_sym_expr_binary_token26] = ACTIONS(3605), + [aux_sym_expr_binary_token27] = ACTIONS(3605), + [aux_sym_expr_binary_token28] = ACTIONS(3605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3605), + [anon_sym_DOT_DOT_LT] = ACTIONS(3605), + [aux_sym__val_number_decimal_token1] = ACTIONS(3607), + [aux_sym__val_number_decimal_token2] = ACTIONS(3605), + [aux_sym__val_number_decimal_token3] = ACTIONS(3605), + [aux_sym__val_number_decimal_token4] = ACTIONS(3605), + [aux_sym__val_number_token1] = ACTIONS(3605), + [aux_sym__val_number_token2] = ACTIONS(3605), + [aux_sym__val_number_token3] = ACTIONS(3605), + [anon_sym_0b] = ACTIONS(3607), + [anon_sym_0o] = ACTIONS(3607), + [anon_sym_0x] = ACTIONS(3607), + [sym_val_date] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [sym__str_single_quotes] = ACTIONS(3605), + [sym__str_back_ticks] = ACTIONS(3605), + [anon_sym_err_GT] = ACTIONS(3607), + [anon_sym_out_GT] = ACTIONS(3607), + [anon_sym_e_GT] = ACTIONS(3607), + [anon_sym_o_GT] = ACTIONS(3607), + [anon_sym_err_PLUSout_GT] = ACTIONS(3607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), + [anon_sym_o_PLUSe_GT] = ACTIONS(3607), + [anon_sym_e_PLUSo_GT] = ACTIONS(3607), + [anon_sym_err_GT_GT] = ACTIONS(3605), + [anon_sym_out_GT_GT] = ACTIONS(3605), + [anon_sym_e_GT_GT] = ACTIONS(3605), + [anon_sym_o_GT_GT] = ACTIONS(3605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3605), + [aux_sym_unquoted_token1] = ACTIONS(3607), + [anon_sym_POUND] = ACTIONS(247), }, [1176] = { [sym_comment] = STATE(1176), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3455), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3461), - [anon_sym_starts_DASHwith] = ACTIONS(3461), - [anon_sym_ends_DASHwith] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_LT2] = ACTIONS(3451), - [anon_sym_LT_EQ] = ACTIONS(3463), - [anon_sym_GT_EQ] = ACTIONS(3463), - [anon_sym_EQ_TILDE] = ACTIONS(3465), - [anon_sym_BANG_TILDE] = ACTIONS(3465), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_bit_DASHshl] = ACTIONS(3471), - [anon_sym_bit_DASHshr] = ACTIONS(3471), - [anon_sym_bit_DASHand] = ACTIONS(3473), - [anon_sym_bit_DASHxor] = ACTIONS(3475), - [anon_sym_bit_DASHor] = ACTIONS(3481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2342), + [anon_sym_false] = ACTIONS(2342), + [anon_sym_null] = ACTIONS(2342), + [aux_sym_cmd_identifier_token38] = ACTIONS(2342), + [aux_sym_cmd_identifier_token39] = ACTIONS(2342), + [aux_sym_cmd_identifier_token40] = ACTIONS(2342), + [sym__newline] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_DOLLAR] = ACTIONS(2342), + [aux_sym_ctrl_match_token1] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym__] = ACTIONS(2340), + [anon_sym_DOT_DOT] = ACTIONS(2340), + [aux_sym_expr_binary_token1] = ACTIONS(2342), + [aux_sym_expr_binary_token2] = ACTIONS(2342), + [aux_sym_expr_binary_token3] = ACTIONS(2342), + [aux_sym_expr_binary_token4] = ACTIONS(2342), + [aux_sym_expr_binary_token5] = ACTIONS(2342), + [aux_sym_expr_binary_token6] = ACTIONS(2342), + [aux_sym_expr_binary_token7] = ACTIONS(2342), + [aux_sym_expr_binary_token8] = ACTIONS(2342), + [aux_sym_expr_binary_token9] = ACTIONS(2342), + [aux_sym_expr_binary_token10] = ACTIONS(2342), + [aux_sym_expr_binary_token11] = ACTIONS(2342), + [aux_sym_expr_binary_token12] = ACTIONS(2342), + [aux_sym_expr_binary_token13] = ACTIONS(2342), + [aux_sym_expr_binary_token14] = ACTIONS(2342), + [aux_sym_expr_binary_token15] = ACTIONS(2342), + [aux_sym_expr_binary_token16] = ACTIONS(2342), + [aux_sym_expr_binary_token17] = ACTIONS(2342), + [aux_sym_expr_binary_token18] = ACTIONS(2342), + [aux_sym_expr_binary_token19] = ACTIONS(2342), + [aux_sym_expr_binary_token20] = ACTIONS(2342), + [aux_sym_expr_binary_token21] = ACTIONS(2342), + [aux_sym_expr_binary_token22] = ACTIONS(2342), + [aux_sym_expr_binary_token23] = ACTIONS(2342), + [aux_sym_expr_binary_token24] = ACTIONS(2342), + [aux_sym_expr_binary_token25] = ACTIONS(2342), + [aux_sym_expr_binary_token26] = ACTIONS(2342), + [aux_sym_expr_binary_token27] = ACTIONS(2342), + [aux_sym_expr_binary_token28] = ACTIONS(2342), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2342), + [anon_sym_DOT_DOT_LT] = ACTIONS(2342), + [aux_sym__val_number_decimal_token1] = ACTIONS(2340), + [aux_sym__val_number_decimal_token2] = ACTIONS(2342), + [aux_sym__val_number_decimal_token3] = ACTIONS(2342), + [aux_sym__val_number_decimal_token4] = ACTIONS(2342), + [aux_sym__val_number_token1] = ACTIONS(2342), + [aux_sym__val_number_token2] = ACTIONS(2342), + [aux_sym__val_number_token3] = ACTIONS(2342), + [anon_sym_0b] = ACTIONS(2340), + [anon_sym_0o] = ACTIONS(2340), + [anon_sym_0x] = ACTIONS(2340), + [sym_val_date] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [sym__str_single_quotes] = ACTIONS(2342), + [sym__str_back_ticks] = ACTIONS(2342), + [anon_sym_err_GT] = ACTIONS(2340), + [anon_sym_out_GT] = ACTIONS(2340), + [anon_sym_e_GT] = ACTIONS(2340), + [anon_sym_o_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT] = ACTIONS(2340), + [anon_sym_err_GT_GT] = ACTIONS(2342), + [anon_sym_out_GT_GT] = ACTIONS(2342), + [anon_sym_e_GT_GT] = ACTIONS(2342), + [anon_sym_o_GT_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2342), + [aux_sym_unquoted_token1] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(247), }, [1177] = { [sym_comment] = STATE(1177), - [anon_sym_true] = ACTIONS(2335), - [anon_sym_false] = ACTIONS(2335), - [anon_sym_null] = ACTIONS(2335), - [aux_sym_cmd_identifier_token38] = ACTIONS(2335), - [aux_sym_cmd_identifier_token39] = ACTIONS(2335), - [aux_sym_cmd_identifier_token40] = ACTIONS(2335), - [sym__newline] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_in] = ACTIONS(2333), - [aux_sym_ctrl_match_token1] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym__] = ACTIONS(2333), - [anon_sym_DOT_DOT] = ACTIONS(2333), - [anon_sym_STAR] = ACTIONS(2333), - [anon_sym_and] = ACTIONS(2335), - [anon_sym_xor] = ACTIONS(2335), - [anon_sym_or] = ACTIONS(2335), - [anon_sym_not_DASHin] = ACTIONS(2335), - [anon_sym_starts_DASHwith] = ACTIONS(2335), - [anon_sym_ends_DASHwith] = ACTIONS(2335), - [anon_sym_EQ_EQ] = ACTIONS(2335), - [anon_sym_BANG_EQ] = ACTIONS(2335), - [anon_sym_LT2] = ACTIONS(2333), - [anon_sym_LT_EQ] = ACTIONS(2335), - [anon_sym_GT_EQ] = ACTIONS(2335), - [anon_sym_EQ_TILDE] = ACTIONS(2335), - [anon_sym_BANG_TILDE] = ACTIONS(2335), - [anon_sym_STAR_STAR] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_SLASH] = ACTIONS(2333), - [anon_sym_mod] = ACTIONS(2335), - [anon_sym_SLASH_SLASH] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_bit_DASHshl] = ACTIONS(2335), - [anon_sym_bit_DASHshr] = ACTIONS(2335), - [anon_sym_bit_DASHand] = ACTIONS(2335), - [anon_sym_bit_DASHxor] = ACTIONS(2335), - [anon_sym_bit_DASHor] = ACTIONS(2335), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2335), - [anon_sym_DOT_DOT_LT] = ACTIONS(2335), - [aux_sym__val_number_decimal_token1] = ACTIONS(2333), - [aux_sym__val_number_decimal_token2] = ACTIONS(2335), - [anon_sym_DOT2] = ACTIONS(2333), - [aux_sym__val_number_decimal_token3] = ACTIONS(2335), - [aux_sym__val_number_token1] = ACTIONS(2335), - [aux_sym__val_number_token2] = ACTIONS(2335), - [aux_sym__val_number_token3] = ACTIONS(2335), - [anon_sym_0b] = ACTIONS(2333), - [anon_sym_0o] = ACTIONS(2333), - [anon_sym_0x] = ACTIONS(2333), - [sym_val_date] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym__str_single_quotes] = ACTIONS(2335), - [sym__str_back_ticks] = ACTIONS(2335), - [anon_sym_err_GT] = ACTIONS(2333), - [anon_sym_out_GT] = ACTIONS(2333), - [anon_sym_e_GT] = ACTIONS(2333), - [anon_sym_o_GT] = ACTIONS(2333), - [anon_sym_err_PLUSout_GT] = ACTIONS(2333), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2333), - [anon_sym_o_PLUSe_GT] = ACTIONS(2333), - [anon_sym_e_PLUSo_GT] = ACTIONS(2333), - [anon_sym_err_GT_GT] = ACTIONS(2335), - [anon_sym_out_GT_GT] = ACTIONS(2335), - [anon_sym_e_GT_GT] = ACTIONS(2335), - [anon_sym_o_GT_GT] = ACTIONS(2335), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2335), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2335), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2335), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2335), - [aux_sym_unquoted_token1] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2346), + [aux_sym_cmd_identifier_token38] = ACTIONS(2346), + [aux_sym_cmd_identifier_token39] = ACTIONS(2346), + [aux_sym_cmd_identifier_token40] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_COMMA] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2346), + [aux_sym_ctrl_match_token1] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym__] = ACTIONS(2344), + [anon_sym_DOT_DOT] = ACTIONS(2344), + [aux_sym_expr_binary_token1] = ACTIONS(2346), + [aux_sym_expr_binary_token2] = ACTIONS(2346), + [aux_sym_expr_binary_token3] = ACTIONS(2346), + [aux_sym_expr_binary_token4] = ACTIONS(2346), + [aux_sym_expr_binary_token5] = ACTIONS(2346), + [aux_sym_expr_binary_token6] = ACTIONS(2346), + [aux_sym_expr_binary_token7] = ACTIONS(2346), + [aux_sym_expr_binary_token8] = ACTIONS(2346), + [aux_sym_expr_binary_token9] = ACTIONS(2346), + [aux_sym_expr_binary_token10] = ACTIONS(2346), + [aux_sym_expr_binary_token11] = ACTIONS(2346), + [aux_sym_expr_binary_token12] = ACTIONS(2346), + [aux_sym_expr_binary_token13] = ACTIONS(2346), + [aux_sym_expr_binary_token14] = ACTIONS(2346), + [aux_sym_expr_binary_token15] = ACTIONS(2346), + [aux_sym_expr_binary_token16] = ACTIONS(2346), + [aux_sym_expr_binary_token17] = ACTIONS(2346), + [aux_sym_expr_binary_token18] = ACTIONS(2346), + [aux_sym_expr_binary_token19] = ACTIONS(2346), + [aux_sym_expr_binary_token20] = ACTIONS(2346), + [aux_sym_expr_binary_token21] = ACTIONS(2346), + [aux_sym_expr_binary_token22] = ACTIONS(2346), + [aux_sym_expr_binary_token23] = ACTIONS(2346), + [aux_sym_expr_binary_token24] = ACTIONS(2346), + [aux_sym_expr_binary_token25] = ACTIONS(2346), + [aux_sym_expr_binary_token26] = ACTIONS(2346), + [aux_sym_expr_binary_token27] = ACTIONS(2346), + [aux_sym_expr_binary_token28] = ACTIONS(2346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2346), + [anon_sym_DOT_DOT_LT] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2344), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [anon_sym_0b] = ACTIONS(2344), + [anon_sym_0o] = ACTIONS(2344), + [anon_sym_0x] = ACTIONS(2344), + [sym_val_date] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [sym__str_single_quotes] = ACTIONS(2346), + [sym__str_back_ticks] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2344), + [anon_sym_out_GT] = ACTIONS(2344), + [anon_sym_e_GT] = ACTIONS(2344), + [anon_sym_o_GT] = ACTIONS(2344), + [anon_sym_err_PLUSout_GT] = ACTIONS(2344), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2344), + [anon_sym_o_PLUSe_GT] = ACTIONS(2344), + [anon_sym_e_PLUSo_GT] = ACTIONS(2344), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [aux_sym_unquoted_token1] = ACTIONS(2344), + [anon_sym_POUND] = ACTIONS(247), }, [1178] = { [sym_comment] = STATE(1178), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3455), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3477), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3461), - [anon_sym_starts_DASHwith] = ACTIONS(3461), - [anon_sym_ends_DASHwith] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_LT2] = ACTIONS(3451), - [anon_sym_LT_EQ] = ACTIONS(3463), - [anon_sym_GT_EQ] = ACTIONS(3463), - [anon_sym_EQ_TILDE] = ACTIONS(3465), - [anon_sym_BANG_TILDE] = ACTIONS(3465), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_bit_DASHshl] = ACTIONS(3471), - [anon_sym_bit_DASHshr] = ACTIONS(3471), - [anon_sym_bit_DASHand] = ACTIONS(3473), - [anon_sym_bit_DASHxor] = ACTIONS(3475), - [anon_sym_bit_DASHor] = ACTIONS(3481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1881), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [sym__newline] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1881), + [aux_sym_ctrl_match_token1] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym__] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [aux_sym_expr_binary_token1] = ACTIONS(1881), + [aux_sym_expr_binary_token2] = ACTIONS(1881), + [aux_sym_expr_binary_token3] = ACTIONS(1881), + [aux_sym_expr_binary_token4] = ACTIONS(1881), + [aux_sym_expr_binary_token5] = ACTIONS(1881), + [aux_sym_expr_binary_token6] = ACTIONS(1881), + [aux_sym_expr_binary_token7] = ACTIONS(1881), + [aux_sym_expr_binary_token8] = ACTIONS(1881), + [aux_sym_expr_binary_token9] = ACTIONS(1881), + [aux_sym_expr_binary_token10] = ACTIONS(1881), + [aux_sym_expr_binary_token11] = ACTIONS(1881), + [aux_sym_expr_binary_token12] = ACTIONS(1881), + [aux_sym_expr_binary_token13] = ACTIONS(1881), + [aux_sym_expr_binary_token14] = ACTIONS(1881), + [aux_sym_expr_binary_token15] = ACTIONS(1881), + [aux_sym_expr_binary_token16] = ACTIONS(1881), + [aux_sym_expr_binary_token17] = ACTIONS(1881), + [aux_sym_expr_binary_token18] = ACTIONS(1881), + [aux_sym_expr_binary_token19] = ACTIONS(1881), + [aux_sym_expr_binary_token20] = ACTIONS(1881), + [aux_sym_expr_binary_token21] = ACTIONS(1881), + [aux_sym_expr_binary_token22] = ACTIONS(1881), + [aux_sym_expr_binary_token23] = ACTIONS(1881), + [aux_sym_expr_binary_token24] = ACTIONS(1881), + [aux_sym_expr_binary_token25] = ACTIONS(1881), + [aux_sym_expr_binary_token26] = ACTIONS(1881), + [aux_sym_expr_binary_token27] = ACTIONS(1881), + [aux_sym_expr_binary_token28] = ACTIONS(1881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), }, [1179] = { [sym_comment] = STATE(1179), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1766), - [aux_sym_cmd_identifier_token38] = ACTIONS(1766), - [aux_sym_cmd_identifier_token39] = ACTIONS(1766), - [aux_sym_cmd_identifier_token40] = ACTIONS(1766), - [sym__newline] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_in] = ACTIONS(1764), - [aux_sym_ctrl_match_token1] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym__] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_and] = ACTIONS(1766), - [anon_sym_xor] = ACTIONS(1766), - [anon_sym_or] = ACTIONS(1766), - [anon_sym_not_DASHin] = ACTIONS(1766), - [anon_sym_starts_DASHwith] = ACTIONS(1766), - [anon_sym_ends_DASHwith] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_EQ_TILDE] = ACTIONS(1766), - [anon_sym_BANG_TILDE] = ACTIONS(1766), - [anon_sym_STAR_STAR] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_mod] = ACTIONS(1766), - [anon_sym_SLASH_SLASH] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_bit_DASHshl] = ACTIONS(1766), - [anon_sym_bit_DASHshr] = ACTIONS(1766), - [anon_sym_bit_DASHand] = ACTIONS(1766), - [anon_sym_bit_DASHxor] = ACTIONS(1766), - [anon_sym_bit_DASHor] = ACTIONS(1766), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_LT] = ACTIONS(1766), - [aux_sym__val_number_decimal_token1] = ACTIONS(1764), - [aux_sym__val_number_decimal_token2] = ACTIONS(1766), - [anon_sym_DOT2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1766), - [aux_sym__val_number_token1] = ACTIONS(1766), - [aux_sym__val_number_token2] = ACTIONS(1766), - [aux_sym__val_number_token3] = ACTIONS(1766), - [anon_sym_0b] = ACTIONS(1764), - [anon_sym_0o] = ACTIONS(1764), - [anon_sym_0x] = ACTIONS(1764), - [sym_val_date] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym__str_single_quotes] = ACTIONS(1766), - [sym__str_back_ticks] = ACTIONS(1766), - [anon_sym_err_GT] = ACTIONS(1764), - [anon_sym_out_GT] = ACTIONS(1764), - [anon_sym_e_GT] = ACTIONS(1764), - [anon_sym_o_GT] = ACTIONS(1764), - [anon_sym_err_PLUSout_GT] = ACTIONS(1764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1764), - [anon_sym_o_PLUSe_GT] = ACTIONS(1764), - [anon_sym_e_PLUSo_GT] = ACTIONS(1764), - [anon_sym_err_GT_GT] = ACTIONS(1766), - [anon_sym_out_GT_GT] = ACTIONS(1766), - [anon_sym_e_GT_GT] = ACTIONS(1766), - [anon_sym_o_GT_GT] = ACTIONS(1766), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1766), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1766), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1766), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1766), - [aux_sym_unquoted_token1] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_null] = ACTIONS(2101), + [aux_sym_cmd_identifier_token38] = ACTIONS(2101), + [aux_sym_cmd_identifier_token39] = ACTIONS(2101), + [aux_sym_cmd_identifier_token40] = ACTIONS(2101), + [sym__newline] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_COMMA] = ACTIONS(2101), + [anon_sym_DOLLAR] = ACTIONS(2101), + [aux_sym_ctrl_match_token1] = ACTIONS(2101), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym__] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [aux_sym_expr_binary_token1] = ACTIONS(2101), + [aux_sym_expr_binary_token2] = ACTIONS(2101), + [aux_sym_expr_binary_token3] = ACTIONS(2101), + [aux_sym_expr_binary_token4] = ACTIONS(2101), + [aux_sym_expr_binary_token5] = ACTIONS(2101), + [aux_sym_expr_binary_token6] = ACTIONS(2101), + [aux_sym_expr_binary_token7] = ACTIONS(2101), + [aux_sym_expr_binary_token8] = ACTIONS(2101), + [aux_sym_expr_binary_token9] = ACTIONS(2101), + [aux_sym_expr_binary_token10] = ACTIONS(2101), + [aux_sym_expr_binary_token11] = ACTIONS(2101), + [aux_sym_expr_binary_token12] = ACTIONS(2101), + [aux_sym_expr_binary_token13] = ACTIONS(2101), + [aux_sym_expr_binary_token14] = ACTIONS(2101), + [aux_sym_expr_binary_token15] = ACTIONS(2101), + [aux_sym_expr_binary_token16] = ACTIONS(2101), + [aux_sym_expr_binary_token17] = ACTIONS(2101), + [aux_sym_expr_binary_token18] = ACTIONS(2101), + [aux_sym_expr_binary_token19] = ACTIONS(2101), + [aux_sym_expr_binary_token20] = ACTIONS(2101), + [aux_sym_expr_binary_token21] = ACTIONS(2101), + [aux_sym_expr_binary_token22] = ACTIONS(2101), + [aux_sym_expr_binary_token23] = ACTIONS(2101), + [aux_sym_expr_binary_token24] = ACTIONS(2101), + [aux_sym_expr_binary_token25] = ACTIONS(2101), + [aux_sym_expr_binary_token26] = ACTIONS(2101), + [aux_sym_expr_binary_token27] = ACTIONS(2101), + [aux_sym_expr_binary_token28] = ACTIONS(2101), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), + [anon_sym_DOT_DOT_LT] = ACTIONS(2101), + [aux_sym__val_number_decimal_token1] = ACTIONS(2097), + [aux_sym__val_number_decimal_token2] = ACTIONS(2101), + [aux_sym__val_number_decimal_token3] = ACTIONS(2101), + [aux_sym__val_number_decimal_token4] = ACTIONS(2101), + [aux_sym__val_number_token1] = ACTIONS(2101), + [aux_sym__val_number_token2] = ACTIONS(2101), + [aux_sym__val_number_token3] = ACTIONS(2101), + [anon_sym_0b] = ACTIONS(2097), + [anon_sym_0o] = ACTIONS(2097), + [anon_sym_0x] = ACTIONS(2097), + [sym_val_date] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(2101), + [sym__str_single_quotes] = ACTIONS(2101), + [sym__str_back_ticks] = ACTIONS(2101), + [anon_sym_err_GT] = ACTIONS(2097), + [anon_sym_out_GT] = ACTIONS(2097), + [anon_sym_e_GT] = ACTIONS(2097), + [anon_sym_o_GT] = ACTIONS(2097), + [anon_sym_err_PLUSout_GT] = ACTIONS(2097), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2097), + [anon_sym_o_PLUSe_GT] = ACTIONS(2097), + [anon_sym_e_PLUSo_GT] = ACTIONS(2097), + [anon_sym_err_GT_GT] = ACTIONS(2101), + [anon_sym_out_GT_GT] = ACTIONS(2101), + [anon_sym_e_GT_GT] = ACTIONS(2101), + [anon_sym_o_GT_GT] = ACTIONS(2101), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2101), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2101), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2101), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2101), + [aux_sym_unquoted_token1] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(247), }, [1180] = { [sym_comment] = STATE(1180), - [anon_sym_true] = ACTIONS(2339), - [anon_sym_false] = ACTIONS(2339), - [anon_sym_null] = ACTIONS(2339), - [aux_sym_cmd_identifier_token38] = ACTIONS(2339), - [aux_sym_cmd_identifier_token39] = ACTIONS(2339), - [aux_sym_cmd_identifier_token40] = ACTIONS(2339), - [sym__newline] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_COMMA] = ACTIONS(2339), - [anon_sym_DOLLAR] = ACTIONS(2339), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_in] = ACTIONS(2337), - [aux_sym_ctrl_match_token1] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym__] = ACTIONS(2337), - [anon_sym_DOT_DOT] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_and] = ACTIONS(2339), - [anon_sym_xor] = ACTIONS(2339), - [anon_sym_or] = ACTIONS(2339), - [anon_sym_not_DASHin] = ACTIONS(2339), - [anon_sym_starts_DASHwith] = ACTIONS(2339), - [anon_sym_ends_DASHwith] = ACTIONS(2339), - [anon_sym_EQ_EQ] = ACTIONS(2339), - [anon_sym_BANG_EQ] = ACTIONS(2339), - [anon_sym_LT2] = ACTIONS(2337), - [anon_sym_LT_EQ] = ACTIONS(2339), - [anon_sym_GT_EQ] = ACTIONS(2339), - [anon_sym_EQ_TILDE] = ACTIONS(2339), - [anon_sym_BANG_TILDE] = ACTIONS(2339), - [anon_sym_STAR_STAR] = ACTIONS(2339), - [anon_sym_PLUS_PLUS] = ACTIONS(2339), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_mod] = ACTIONS(2339), - [anon_sym_SLASH_SLASH] = ACTIONS(2339), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_bit_DASHshl] = ACTIONS(2339), - [anon_sym_bit_DASHshr] = ACTIONS(2339), - [anon_sym_bit_DASHand] = ACTIONS(2339), - [anon_sym_bit_DASHxor] = ACTIONS(2339), - [anon_sym_bit_DASHor] = ACTIONS(2339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2339), - [anon_sym_DOT_DOT_LT] = ACTIONS(2339), - [aux_sym__val_number_decimal_token1] = ACTIONS(2337), - [aux_sym__val_number_decimal_token2] = ACTIONS(2339), - [anon_sym_DOT2] = ACTIONS(2337), - [aux_sym__val_number_decimal_token3] = ACTIONS(2339), - [aux_sym__val_number_token1] = ACTIONS(2339), - [aux_sym__val_number_token2] = ACTIONS(2339), - [aux_sym__val_number_token3] = ACTIONS(2339), - [anon_sym_0b] = ACTIONS(2337), - [anon_sym_0o] = ACTIONS(2337), - [anon_sym_0x] = ACTIONS(2337), - [sym_val_date] = ACTIONS(2339), - [anon_sym_DQUOTE] = ACTIONS(2339), - [sym__str_single_quotes] = ACTIONS(2339), - [sym__str_back_ticks] = ACTIONS(2339), - [anon_sym_err_GT] = ACTIONS(2337), - [anon_sym_out_GT] = ACTIONS(2337), - [anon_sym_e_GT] = ACTIONS(2337), - [anon_sym_o_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT] = ACTIONS(2337), - [anon_sym_err_GT_GT] = ACTIONS(2339), - [anon_sym_out_GT_GT] = ACTIONS(2339), - [anon_sym_e_GT_GT] = ACTIONS(2339), - [anon_sym_o_GT_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2339), - [aux_sym_unquoted_token1] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2107), + [anon_sym_false] = ACTIONS(2107), + [anon_sym_null] = ACTIONS(2107), + [aux_sym_cmd_identifier_token38] = ACTIONS(2107), + [aux_sym_cmd_identifier_token39] = ACTIONS(2107), + [aux_sym_cmd_identifier_token40] = ACTIONS(2107), + [sym__newline] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_COMMA] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2107), + [aux_sym_ctrl_match_token1] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym__] = ACTIONS(2105), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [aux_sym_expr_binary_token1] = ACTIONS(2107), + [aux_sym_expr_binary_token2] = ACTIONS(2107), + [aux_sym_expr_binary_token3] = ACTIONS(2107), + [aux_sym_expr_binary_token4] = ACTIONS(2107), + [aux_sym_expr_binary_token5] = ACTIONS(2107), + [aux_sym_expr_binary_token6] = ACTIONS(2107), + [aux_sym_expr_binary_token7] = ACTIONS(2107), + [aux_sym_expr_binary_token8] = ACTIONS(2107), + [aux_sym_expr_binary_token9] = ACTIONS(2107), + [aux_sym_expr_binary_token10] = ACTIONS(2107), + [aux_sym_expr_binary_token11] = ACTIONS(2107), + [aux_sym_expr_binary_token12] = ACTIONS(2107), + [aux_sym_expr_binary_token13] = ACTIONS(2107), + [aux_sym_expr_binary_token14] = ACTIONS(2107), + [aux_sym_expr_binary_token15] = ACTIONS(2107), + [aux_sym_expr_binary_token16] = ACTIONS(2107), + [aux_sym_expr_binary_token17] = ACTIONS(2107), + [aux_sym_expr_binary_token18] = ACTIONS(2107), + [aux_sym_expr_binary_token19] = ACTIONS(2107), + [aux_sym_expr_binary_token20] = ACTIONS(2107), + [aux_sym_expr_binary_token21] = ACTIONS(2107), + [aux_sym_expr_binary_token22] = ACTIONS(2107), + [aux_sym_expr_binary_token23] = ACTIONS(2107), + [aux_sym_expr_binary_token24] = ACTIONS(2107), + [aux_sym_expr_binary_token25] = ACTIONS(2107), + [aux_sym_expr_binary_token26] = ACTIONS(2107), + [aux_sym_expr_binary_token27] = ACTIONS(2107), + [aux_sym_expr_binary_token28] = ACTIONS(2107), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2107), + [anon_sym_DOT_DOT_LT] = ACTIONS(2107), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2107), + [aux_sym__val_number_decimal_token3] = ACTIONS(2107), + [aux_sym__val_number_decimal_token4] = ACTIONS(2107), + [aux_sym__val_number_token1] = ACTIONS(2107), + [aux_sym__val_number_token2] = ACTIONS(2107), + [aux_sym__val_number_token3] = ACTIONS(2107), + [anon_sym_0b] = ACTIONS(2105), + [anon_sym_0o] = ACTIONS(2105), + [anon_sym_0x] = ACTIONS(2105), + [sym_val_date] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [sym__str_single_quotes] = ACTIONS(2107), + [sym__str_back_ticks] = ACTIONS(2107), + [anon_sym_err_GT] = ACTIONS(2105), + [anon_sym_out_GT] = ACTIONS(2105), + [anon_sym_e_GT] = ACTIONS(2105), + [anon_sym_o_GT] = ACTIONS(2105), + [anon_sym_err_PLUSout_GT] = ACTIONS(2105), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), + [anon_sym_o_PLUSe_GT] = ACTIONS(2105), + [anon_sym_e_PLUSo_GT] = ACTIONS(2105), + [anon_sym_err_GT_GT] = ACTIONS(2107), + [anon_sym_out_GT_GT] = ACTIONS(2107), + [anon_sym_e_GT_GT] = ACTIONS(2107), + [anon_sym_o_GT_GT] = ACTIONS(2107), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2107), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2107), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2107), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2107), + [aux_sym_unquoted_token1] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(247), }, [1181] = { [sym_comment] = STATE(1181), - [anon_sym_true] = ACTIONS(2343), - [anon_sym_false] = ACTIONS(2343), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token38] = ACTIONS(2343), - [aux_sym_cmd_identifier_token39] = ACTIONS(2343), - [aux_sym_cmd_identifier_token40] = ACTIONS(2343), - [sym__newline] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_GT] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(2341), - [aux_sym_ctrl_match_token1] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym__] = ACTIONS(2341), - [anon_sym_DOT_DOT] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_and] = ACTIONS(2343), - [anon_sym_xor] = ACTIONS(2343), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_not_DASHin] = ACTIONS(2343), - [anon_sym_starts_DASHwith] = ACTIONS(2343), - [anon_sym_ends_DASHwith] = ACTIONS(2343), - [anon_sym_EQ_EQ] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2343), - [anon_sym_LT2] = ACTIONS(2341), - [anon_sym_LT_EQ] = ACTIONS(2343), - [anon_sym_GT_EQ] = ACTIONS(2343), - [anon_sym_EQ_TILDE] = ACTIONS(2343), - [anon_sym_BANG_TILDE] = ACTIONS(2343), - [anon_sym_STAR_STAR] = ACTIONS(2343), - [anon_sym_PLUS_PLUS] = ACTIONS(2343), - [anon_sym_SLASH] = ACTIONS(2341), - [anon_sym_mod] = ACTIONS(2343), - [anon_sym_SLASH_SLASH] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_bit_DASHshl] = ACTIONS(2343), - [anon_sym_bit_DASHshr] = ACTIONS(2343), - [anon_sym_bit_DASHand] = ACTIONS(2343), - [anon_sym_bit_DASHxor] = ACTIONS(2343), - [anon_sym_bit_DASHor] = ACTIONS(2343), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2343), - [anon_sym_DOT_DOT_LT] = ACTIONS(2343), - [aux_sym__val_number_decimal_token1] = ACTIONS(2341), - [aux_sym__val_number_decimal_token2] = ACTIONS(2343), - [anon_sym_DOT2] = ACTIONS(2341), - [aux_sym__val_number_decimal_token3] = ACTIONS(2343), - [aux_sym__val_number_token1] = ACTIONS(2343), - [aux_sym__val_number_token2] = ACTIONS(2343), - [aux_sym__val_number_token3] = ACTIONS(2343), - [anon_sym_0b] = ACTIONS(2341), - [anon_sym_0o] = ACTIONS(2341), - [anon_sym_0x] = ACTIONS(2341), - [sym_val_date] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [sym__str_single_quotes] = ACTIONS(2343), - [sym__str_back_ticks] = ACTIONS(2343), - [anon_sym_err_GT] = ACTIONS(2341), - [anon_sym_out_GT] = ACTIONS(2341), - [anon_sym_e_GT] = ACTIONS(2341), - [anon_sym_o_GT] = ACTIONS(2341), - [anon_sym_err_PLUSout_GT] = ACTIONS(2341), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2341), - [anon_sym_o_PLUSe_GT] = ACTIONS(2341), - [anon_sym_e_PLUSo_GT] = ACTIONS(2341), - [anon_sym_err_GT_GT] = ACTIONS(2343), - [anon_sym_out_GT_GT] = ACTIONS(2343), - [anon_sym_e_GT_GT] = ACTIONS(2343), - [anon_sym_o_GT_GT] = ACTIONS(2343), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2343), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2343), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2343), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2343), - [aux_sym_unquoted_token1] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3601), + [aux_sym_expr_binary_token4] = ACTIONS(3601), + [aux_sym_expr_binary_token5] = ACTIONS(3601), + [aux_sym_expr_binary_token6] = ACTIONS(3601), + [aux_sym_expr_binary_token7] = ACTIONS(3601), + [aux_sym_expr_binary_token8] = ACTIONS(3601), + [aux_sym_expr_binary_token9] = ACTIONS(3601), + [aux_sym_expr_binary_token10] = ACTIONS(3601), + [aux_sym_expr_binary_token11] = ACTIONS(3601), + [aux_sym_expr_binary_token12] = ACTIONS(3601), + [aux_sym_expr_binary_token13] = ACTIONS(3601), + [aux_sym_expr_binary_token14] = ACTIONS(3601), + [aux_sym_expr_binary_token15] = ACTIONS(3601), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3601), + [aux_sym_expr_binary_token20] = ACTIONS(3601), + [aux_sym_expr_binary_token21] = ACTIONS(3601), + [aux_sym_expr_binary_token22] = ACTIONS(3601), + [aux_sym_expr_binary_token23] = ACTIONS(3601), + [aux_sym_expr_binary_token24] = ACTIONS(3601), + [aux_sym_expr_binary_token25] = ACTIONS(3601), + [aux_sym_expr_binary_token26] = ACTIONS(3601), + [aux_sym_expr_binary_token27] = ACTIONS(3601), + [aux_sym_expr_binary_token28] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1182] = { [sym_comment] = STATE(1182), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token38] = ACTIONS(1782), - [aux_sym_cmd_identifier_token39] = ACTIONS(1782), - [aux_sym_cmd_identifier_token40] = ACTIONS(1782), - [sym__newline] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1780), - [aux_sym_ctrl_match_token1] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_and] = ACTIONS(1782), - [anon_sym_xor] = ACTIONS(1782), - [anon_sym_or] = ACTIONS(1782), - [anon_sym_not_DASHin] = ACTIONS(1782), - [anon_sym_starts_DASHwith] = ACTIONS(1782), - [anon_sym_ends_DASHwith] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1782), - [anon_sym_LT2] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_TILDE] = ACTIONS(1782), - [anon_sym_BANG_TILDE] = ACTIONS(1782), - [anon_sym_STAR_STAR] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1782), - [anon_sym_SLASH_SLASH] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_bit_DASHshl] = ACTIONS(1782), - [anon_sym_bit_DASHshr] = ACTIONS(1782), - [anon_sym_bit_DASHand] = ACTIONS(1782), - [anon_sym_bit_DASHxor] = ACTIONS(1782), - [anon_sym_bit_DASHor] = ACTIONS(1782), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_LT] = ACTIONS(1782), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [anon_sym_DOT2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1782), - [aux_sym__val_number_token1] = ACTIONS(1782), - [aux_sym__val_number_token2] = ACTIONS(1782), - [aux_sym__val_number_token3] = ACTIONS(1782), - [anon_sym_0b] = ACTIONS(1780), - [anon_sym_0o] = ACTIONS(1780), - [anon_sym_0x] = ACTIONS(1780), - [sym_val_date] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym__str_single_quotes] = ACTIONS(1782), - [sym__str_back_ticks] = ACTIONS(1782), - [anon_sym_err_GT] = ACTIONS(1780), - [anon_sym_out_GT] = ACTIONS(1780), - [anon_sym_e_GT] = ACTIONS(1780), - [anon_sym_o_GT] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT] = ACTIONS(1780), - [anon_sym_err_GT_GT] = ACTIONS(1782), - [anon_sym_out_GT_GT] = ACTIONS(1782), - [anon_sym_e_GT_GT] = ACTIONS(1782), - [anon_sym_o_GT_GT] = ACTIONS(1782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1782), - [aux_sym_unquoted_token1] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3601), + [aux_sym_expr_binary_token8] = ACTIONS(3601), + [aux_sym_expr_binary_token9] = ACTIONS(3601), + [aux_sym_expr_binary_token10] = ACTIONS(3601), + [aux_sym_expr_binary_token11] = ACTIONS(3601), + [aux_sym_expr_binary_token12] = ACTIONS(3601), + [aux_sym_expr_binary_token13] = ACTIONS(3601), + [aux_sym_expr_binary_token14] = ACTIONS(3601), + [aux_sym_expr_binary_token15] = ACTIONS(3601), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3601), + [aux_sym_expr_binary_token20] = ACTIONS(3601), + [aux_sym_expr_binary_token21] = ACTIONS(3601), + [aux_sym_expr_binary_token22] = ACTIONS(3601), + [aux_sym_expr_binary_token23] = ACTIONS(3601), + [aux_sym_expr_binary_token24] = ACTIONS(3601), + [aux_sym_expr_binary_token25] = ACTIONS(3601), + [aux_sym_expr_binary_token26] = ACTIONS(3601), + [aux_sym_expr_binary_token27] = ACTIONS(3601), + [aux_sym_expr_binary_token28] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1183] = { [sym_comment] = STATE(1183), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1790), - [aux_sym_cmd_identifier_token40] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [aux_sym_ctrl_match_token1] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym__] = ACTIONS(1788), - [anon_sym_DOT_DOT] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_and] = ACTIONS(1790), - [anon_sym_xor] = ACTIONS(1790), - [anon_sym_or] = ACTIONS(1790), - [anon_sym_not_DASHin] = ACTIONS(1790), - [anon_sym_starts_DASHwith] = ACTIONS(1790), - [anon_sym_ends_DASHwith] = ACTIONS(1790), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1788), - [anon_sym_LT_EQ] = ACTIONS(1790), - [anon_sym_GT_EQ] = ACTIONS(1790), - [anon_sym_EQ_TILDE] = ACTIONS(1790), - [anon_sym_BANG_TILDE] = ACTIONS(1790), - [anon_sym_STAR_STAR] = ACTIONS(1790), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1790), - [anon_sym_SLASH_SLASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_bit_DASHshl] = ACTIONS(1790), - [anon_sym_bit_DASHshr] = ACTIONS(1790), - [anon_sym_bit_DASHand] = ACTIONS(1790), - [anon_sym_bit_DASHxor] = ACTIONS(1790), - [anon_sym_bit_DASHor] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT] = ACTIONS(1790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1790), - [anon_sym_DOT2] = ACTIONS(1788), - [aux_sym__val_number_decimal_token3] = ACTIONS(1790), - [aux_sym__val_number_token1] = ACTIONS(1790), - [aux_sym__val_number_token2] = ACTIONS(1790), - [aux_sym__val_number_token3] = ACTIONS(1790), - [anon_sym_0b] = ACTIONS(1788), - [anon_sym_0o] = ACTIONS(1788), - [anon_sym_0x] = ACTIONS(1788), - [sym_val_date] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [sym__str_single_quotes] = ACTIONS(1790), - [sym__str_back_ticks] = ACTIONS(1790), - [anon_sym_err_GT] = ACTIONS(1788), - [anon_sym_out_GT] = ACTIONS(1788), - [anon_sym_e_GT] = ACTIONS(1788), - [anon_sym_o_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT] = ACTIONS(1788), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3613), + [aux_sym_expr_binary_token8] = ACTIONS(3613), + [aux_sym_expr_binary_token9] = ACTIONS(3601), + [aux_sym_expr_binary_token10] = ACTIONS(3601), + [aux_sym_expr_binary_token11] = ACTIONS(3601), + [aux_sym_expr_binary_token12] = ACTIONS(3601), + [aux_sym_expr_binary_token13] = ACTIONS(3601), + [aux_sym_expr_binary_token14] = ACTIONS(3601), + [aux_sym_expr_binary_token15] = ACTIONS(3601), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3601), + [aux_sym_expr_binary_token20] = ACTIONS(3601), + [aux_sym_expr_binary_token21] = ACTIONS(3601), + [aux_sym_expr_binary_token22] = ACTIONS(3601), + [aux_sym_expr_binary_token23] = ACTIONS(3601), + [aux_sym_expr_binary_token24] = ACTIONS(3601), + [aux_sym_expr_binary_token25] = ACTIONS(3601), + [aux_sym_expr_binary_token26] = ACTIONS(3601), + [aux_sym_expr_binary_token27] = ACTIONS(3601), + [aux_sym_expr_binary_token28] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1184] = { [sym_comment] = STATE(1184), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [anon_sym_null] = ACTIONS(3166), - [aux_sym_cmd_identifier_token38] = ACTIONS(3166), - [aux_sym_cmd_identifier_token39] = ACTIONS(3166), - [aux_sym_cmd_identifier_token40] = ACTIONS(3166), - [sym__newline] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_COMMA] = ACTIONS(3166), - [anon_sym_DOLLAR] = ACTIONS(3166), - [anon_sym_GT] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_in] = ACTIONS(3168), - [aux_sym_ctrl_match_token1] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym__] = ACTIONS(3170), - [anon_sym_DOT_DOT] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3168), - [anon_sym_and] = ACTIONS(3172), - [anon_sym_xor] = ACTIONS(3172), - [anon_sym_or] = ACTIONS(3172), - [anon_sym_not_DASHin] = ACTIONS(3172), - [anon_sym_starts_DASHwith] = ACTIONS(3172), - [anon_sym_ends_DASHwith] = ACTIONS(3172), - [anon_sym_EQ_EQ] = ACTIONS(3172), - [anon_sym_BANG_EQ] = ACTIONS(3172), - [anon_sym_LT2] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3172), - [anon_sym_GT_EQ] = ACTIONS(3172), - [anon_sym_EQ_TILDE] = ACTIONS(3172), - [anon_sym_BANG_TILDE] = ACTIONS(3172), - [anon_sym_STAR_STAR] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_mod] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_bit_DASHshl] = ACTIONS(3172), - [anon_sym_bit_DASHshr] = ACTIONS(3172), - [anon_sym_bit_DASHand] = ACTIONS(3172), - [anon_sym_bit_DASHxor] = ACTIONS(3172), - [anon_sym_bit_DASHor] = ACTIONS(3172), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3166), - [anon_sym_DOT_DOT_LT] = ACTIONS(3166), - [aux_sym__val_number_decimal_token1] = ACTIONS(3170), - [aux_sym__val_number_decimal_token2] = ACTIONS(3166), - [anon_sym_DOT2] = ACTIONS(3170), - [aux_sym__val_number_decimal_token3] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(3166), - [aux_sym__val_number_token2] = ACTIONS(3166), - [aux_sym__val_number_token3] = ACTIONS(3166), - [anon_sym_0b] = ACTIONS(3170), - [anon_sym_0o] = ACTIONS(3170), - [anon_sym_0x] = ACTIONS(3170), - [sym_val_date] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [sym__str_single_quotes] = ACTIONS(3166), - [sym__str_back_ticks] = ACTIONS(3166), - [anon_sym_err_GT] = ACTIONS(3170), - [anon_sym_out_GT] = ACTIONS(3170), - [anon_sym_e_GT] = ACTIONS(3170), - [anon_sym_o_GT] = ACTIONS(3170), - [anon_sym_err_PLUSout_GT] = ACTIONS(3170), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3170), - [anon_sym_o_PLUSe_GT] = ACTIONS(3170), - [anon_sym_e_PLUSo_GT] = ACTIONS(3170), - [anon_sym_err_GT_GT] = ACTIONS(3166), - [anon_sym_out_GT_GT] = ACTIONS(3166), - [anon_sym_e_GT_GT] = ACTIONS(3166), - [anon_sym_o_GT_GT] = ACTIONS(3166), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3166), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3166), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3166), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3166), - [aux_sym_unquoted_token1] = ACTIONS(3170), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3613), + [aux_sym_expr_binary_token8] = ACTIONS(3613), + [aux_sym_expr_binary_token9] = ACTIONS(3615), + [aux_sym_expr_binary_token10] = ACTIONS(3615), + [aux_sym_expr_binary_token11] = ACTIONS(3601), + [aux_sym_expr_binary_token12] = ACTIONS(3601), + [aux_sym_expr_binary_token13] = ACTIONS(3601), + [aux_sym_expr_binary_token14] = ACTIONS(3601), + [aux_sym_expr_binary_token15] = ACTIONS(3601), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3617), + [aux_sym_expr_binary_token20] = ACTIONS(3617), + [aux_sym_expr_binary_token21] = ACTIONS(3617), + [aux_sym_expr_binary_token22] = ACTIONS(3617), + [aux_sym_expr_binary_token23] = ACTIONS(3619), + [aux_sym_expr_binary_token24] = ACTIONS(3619), + [aux_sym_expr_binary_token25] = ACTIONS(3619), + [aux_sym_expr_binary_token26] = ACTIONS(3619), + [aux_sym_expr_binary_token27] = ACTIONS(3619), + [aux_sym_expr_binary_token28] = ACTIONS(3619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1185] = { [sym_comment] = STATE(1185), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3449), - [aux_sym_cmd_identifier_token38] = ACTIONS(3449), - [aux_sym_cmd_identifier_token39] = ACTIONS(3449), - [aux_sym_cmd_identifier_token40] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3455), - [aux_sym_ctrl_match_token1] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym__] = ACTIONS(3457), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_xor] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_not_DASHin] = ACTIONS(3461), - [anon_sym_starts_DASHwith] = ACTIONS(3461), - [anon_sym_ends_DASHwith] = ACTIONS(3461), - [anon_sym_EQ_EQ] = ACTIONS(3463), - [anon_sym_BANG_EQ] = ACTIONS(3463), - [anon_sym_LT2] = ACTIONS(3451), - [anon_sym_LT_EQ] = ACTIONS(3463), - [anon_sym_GT_EQ] = ACTIONS(3463), - [anon_sym_EQ_TILDE] = ACTIONS(3465), - [anon_sym_BANG_TILDE] = ACTIONS(3465), - [anon_sym_STAR_STAR] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_SLASH_SLASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_bit_DASHshl] = ACTIONS(3471), - [anon_sym_bit_DASHshr] = ACTIONS(3471), - [anon_sym_bit_DASHand] = ACTIONS(3449), - [anon_sym_bit_DASHxor] = ACTIONS(3449), - [anon_sym_bit_DASHor] = ACTIONS(3449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3449), - [anon_sym_DOT_DOT_LT] = ACTIONS(3449), - [aux_sym__val_number_decimal_token1] = ACTIONS(3457), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [anon_sym_DOT2] = ACTIONS(3457), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_token1] = ACTIONS(3449), - [aux_sym__val_number_token2] = ACTIONS(3449), - [aux_sym__val_number_token3] = ACTIONS(3449), - [anon_sym_0b] = ACTIONS(3457), - [anon_sym_0o] = ACTIONS(3457), - [anon_sym_0x] = ACTIONS(3457), - [sym_val_date] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym__str_single_quotes] = ACTIONS(3449), - [sym__str_back_ticks] = ACTIONS(3449), - [anon_sym_err_GT] = ACTIONS(3457), - [anon_sym_out_GT] = ACTIONS(3457), - [anon_sym_e_GT] = ACTIONS(3457), - [anon_sym_o_GT] = ACTIONS(3457), - [anon_sym_err_PLUSout_GT] = ACTIONS(3457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3457), - [anon_sym_o_PLUSe_GT] = ACTIONS(3457), - [anon_sym_e_PLUSo_GT] = ACTIONS(3457), - [anon_sym_err_GT_GT] = ACTIONS(3449), - [anon_sym_out_GT_GT] = ACTIONS(3449), - [anon_sym_e_GT_GT] = ACTIONS(3449), - [anon_sym_o_GT_GT] = ACTIONS(3449), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3449), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3449), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3449), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3449), - [aux_sym_unquoted_token1] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3613), + [aux_sym_expr_binary_token8] = ACTIONS(3613), + [aux_sym_expr_binary_token9] = ACTIONS(3615), + [aux_sym_expr_binary_token10] = ACTIONS(3615), + [aux_sym_expr_binary_token11] = ACTIONS(3621), + [aux_sym_expr_binary_token12] = ACTIONS(3621), + [aux_sym_expr_binary_token13] = ACTIONS(3601), + [aux_sym_expr_binary_token14] = ACTIONS(3601), + [aux_sym_expr_binary_token15] = ACTIONS(3601), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3617), + [aux_sym_expr_binary_token20] = ACTIONS(3617), + [aux_sym_expr_binary_token21] = ACTIONS(3617), + [aux_sym_expr_binary_token22] = ACTIONS(3617), + [aux_sym_expr_binary_token23] = ACTIONS(3619), + [aux_sym_expr_binary_token24] = ACTIONS(3619), + [aux_sym_expr_binary_token25] = ACTIONS(3619), + [aux_sym_expr_binary_token26] = ACTIONS(3619), + [aux_sym_expr_binary_token27] = ACTIONS(3619), + [aux_sym_expr_binary_token28] = ACTIONS(3619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1186] = { [sym_comment] = STATE(1186), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3543), - [aux_sym_cmd_identifier_token38] = ACTIONS(3543), - [aux_sym_cmd_identifier_token39] = ACTIONS(3543), - [aux_sym_cmd_identifier_token40] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_GT] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_in] = ACTIONS(3545), - [aux_sym_ctrl_match_token1] = ACTIONS(3543), - [anon_sym_RBRACE] = ACTIONS(3543), - [anon_sym__] = ACTIONS(3545), - [anon_sym_DOT_DOT] = ACTIONS(3545), - [anon_sym_STAR] = ACTIONS(3545), - [anon_sym_and] = ACTIONS(3543), - [anon_sym_xor] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [anon_sym_not_DASHin] = ACTIONS(3543), - [anon_sym_starts_DASHwith] = ACTIONS(3543), - [anon_sym_ends_DASHwith] = ACTIONS(3543), - [anon_sym_EQ_EQ] = ACTIONS(3543), - [anon_sym_BANG_EQ] = ACTIONS(3543), - [anon_sym_LT2] = ACTIONS(3545), - [anon_sym_LT_EQ] = ACTIONS(3543), - [anon_sym_GT_EQ] = ACTIONS(3543), - [anon_sym_EQ_TILDE] = ACTIONS(3543), - [anon_sym_BANG_TILDE] = ACTIONS(3543), - [anon_sym_STAR_STAR] = ACTIONS(3543), - [anon_sym_PLUS_PLUS] = ACTIONS(3543), - [anon_sym_SLASH] = ACTIONS(3545), - [anon_sym_mod] = ACTIONS(3543), - [anon_sym_SLASH_SLASH] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_bit_DASHshl] = ACTIONS(3543), - [anon_sym_bit_DASHshr] = ACTIONS(3543), - [anon_sym_bit_DASHand] = ACTIONS(3543), - [anon_sym_bit_DASHxor] = ACTIONS(3543), - [anon_sym_bit_DASHor] = ACTIONS(3543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3543), - [anon_sym_DOT_DOT_LT] = ACTIONS(3543), - [aux_sym__val_number_decimal_token1] = ACTIONS(3545), - [aux_sym__val_number_decimal_token2] = ACTIONS(3543), - [anon_sym_DOT2] = ACTIONS(3545), - [aux_sym__val_number_decimal_token3] = ACTIONS(3543), - [aux_sym__val_number_token1] = ACTIONS(3543), - [aux_sym__val_number_token2] = ACTIONS(3543), - [aux_sym__val_number_token3] = ACTIONS(3543), - [anon_sym_0b] = ACTIONS(3545), - [anon_sym_0o] = ACTIONS(3545), - [anon_sym_0x] = ACTIONS(3545), - [sym_val_date] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [sym__str_single_quotes] = ACTIONS(3543), - [sym__str_back_ticks] = ACTIONS(3543), - [anon_sym_err_GT] = ACTIONS(3545), - [anon_sym_out_GT] = ACTIONS(3545), - [anon_sym_e_GT] = ACTIONS(3545), - [anon_sym_o_GT] = ACTIONS(3545), - [anon_sym_err_PLUSout_GT] = ACTIONS(3545), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3545), - [anon_sym_o_PLUSe_GT] = ACTIONS(3545), - [anon_sym_e_PLUSo_GT] = ACTIONS(3545), - [anon_sym_err_GT_GT] = ACTIONS(3543), - [anon_sym_out_GT_GT] = ACTIONS(3543), - [anon_sym_e_GT_GT] = ACTIONS(3543), - [anon_sym_o_GT_GT] = ACTIONS(3543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3543), - [aux_sym_unquoted_token1] = ACTIONS(3545), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3613), + [aux_sym_expr_binary_token8] = ACTIONS(3613), + [aux_sym_expr_binary_token9] = ACTIONS(3615), + [aux_sym_expr_binary_token10] = ACTIONS(3615), + [aux_sym_expr_binary_token11] = ACTIONS(3621), + [aux_sym_expr_binary_token12] = ACTIONS(3621), + [aux_sym_expr_binary_token13] = ACTIONS(3623), + [aux_sym_expr_binary_token14] = ACTIONS(3601), + [aux_sym_expr_binary_token15] = ACTIONS(3601), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3617), + [aux_sym_expr_binary_token20] = ACTIONS(3617), + [aux_sym_expr_binary_token21] = ACTIONS(3617), + [aux_sym_expr_binary_token22] = ACTIONS(3617), + [aux_sym_expr_binary_token23] = ACTIONS(3619), + [aux_sym_expr_binary_token24] = ACTIONS(3619), + [aux_sym_expr_binary_token25] = ACTIONS(3619), + [aux_sym_expr_binary_token26] = ACTIONS(3619), + [aux_sym_expr_binary_token27] = ACTIONS(3619), + [aux_sym_expr_binary_token28] = ACTIONS(3619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1187] = { [sym_comment] = STATE(1187), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1794), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [sym__newline] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_COMMA] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1792), - [aux_sym_ctrl_match_token1] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym__] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_and] = ACTIONS(1794), - [anon_sym_xor] = ACTIONS(1794), - [anon_sym_or] = ACTIONS(1794), - [anon_sym_not_DASHin] = ACTIONS(1794), - [anon_sym_starts_DASHwith] = ACTIONS(1794), - [anon_sym_ends_DASHwith] = ACTIONS(1794), - [anon_sym_EQ_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1794), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_EQ_TILDE] = ACTIONS(1794), - [anon_sym_BANG_TILDE] = ACTIONS(1794), - [anon_sym_STAR_STAR] = ACTIONS(1794), - [anon_sym_PLUS_PLUS] = ACTIONS(1794), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1794), - [anon_sym_SLASH_SLASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_bit_DASHshl] = ACTIONS(1794), - [anon_sym_bit_DASHshr] = ACTIONS(1794), - [anon_sym_bit_DASHand] = ACTIONS(1794), - [anon_sym_bit_DASHxor] = ACTIONS(1794), - [anon_sym_bit_DASHor] = ACTIONS(1794), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_LT] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1792), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [anon_sym_DOT2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1792), - [anon_sym_0o] = ACTIONS(1792), - [anon_sym_0x] = ACTIONS(1792), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3613), + [aux_sym_expr_binary_token8] = ACTIONS(3613), + [aux_sym_expr_binary_token9] = ACTIONS(3615), + [aux_sym_expr_binary_token10] = ACTIONS(3615), + [aux_sym_expr_binary_token11] = ACTIONS(3621), + [aux_sym_expr_binary_token12] = ACTIONS(3621), + [aux_sym_expr_binary_token13] = ACTIONS(3623), + [aux_sym_expr_binary_token14] = ACTIONS(3625), + [aux_sym_expr_binary_token15] = ACTIONS(3601), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3617), + [aux_sym_expr_binary_token20] = ACTIONS(3617), + [aux_sym_expr_binary_token21] = ACTIONS(3617), + [aux_sym_expr_binary_token22] = ACTIONS(3617), + [aux_sym_expr_binary_token23] = ACTIONS(3619), + [aux_sym_expr_binary_token24] = ACTIONS(3619), + [aux_sym_expr_binary_token25] = ACTIONS(3619), + [aux_sym_expr_binary_token26] = ACTIONS(3619), + [aux_sym_expr_binary_token27] = ACTIONS(3619), + [aux_sym_expr_binary_token28] = ACTIONS(3619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1188] = { [sym_comment] = STATE(1188), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [aux_sym_cmd_identifier_token38] = ACTIONS(1915), - [aux_sym_cmd_identifier_token39] = ACTIONS(1915), - [aux_sym_cmd_identifier_token40] = ACTIONS(1915), - [sym__newline] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_GT] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [aux_sym_ctrl_match_token1] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym__] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_and] = ACTIONS(1915), - [anon_sym_xor] = ACTIONS(1915), - [anon_sym_or] = ACTIONS(1915), - [anon_sym_not_DASHin] = ACTIONS(1915), - [anon_sym_starts_DASHwith] = ACTIONS(1915), - [anon_sym_ends_DASHwith] = ACTIONS(1915), - [anon_sym_EQ_EQ] = ACTIONS(1915), - [anon_sym_BANG_EQ] = ACTIONS(1915), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1915), - [anon_sym_EQ_TILDE] = ACTIONS(1915), - [anon_sym_BANG_TILDE] = ACTIONS(1915), - [anon_sym_STAR_STAR] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_mod] = ACTIONS(1915), - [anon_sym_SLASH_SLASH] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_bit_DASHshl] = ACTIONS(1915), - [anon_sym_bit_DASHshr] = ACTIONS(1915), - [anon_sym_bit_DASHand] = ACTIONS(1915), - [anon_sym_bit_DASHxor] = ACTIONS(1915), - [anon_sym_bit_DASHor] = ACTIONS(1915), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [anon_sym_DOT2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [anon_sym_0b] = ACTIONS(1913), - [anon_sym_0o] = ACTIONS(1913), - [anon_sym_0x] = ACTIONS(1913), - [sym_val_date] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_err_GT] = ACTIONS(1913), - [anon_sym_out_GT] = ACTIONS(1913), - [anon_sym_e_GT] = ACTIONS(1913), - [anon_sym_o_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT] = ACTIONS(1913), - [anon_sym_err_GT_GT] = ACTIONS(1915), - [anon_sym_out_GT_GT] = ACTIONS(1915), - [anon_sym_e_GT_GT] = ACTIONS(1915), - [anon_sym_o_GT_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), - [aux_sym_unquoted_token1] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2350), + [anon_sym_false] = ACTIONS(2350), + [anon_sym_null] = ACTIONS(2350), + [aux_sym_cmd_identifier_token38] = ACTIONS(2350), + [aux_sym_cmd_identifier_token39] = ACTIONS(2350), + [aux_sym_cmd_identifier_token40] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_DOLLAR] = ACTIONS(2350), + [aux_sym_ctrl_match_token1] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2348), + [anon_sym_DOT_DOT] = ACTIONS(2348), + [aux_sym_expr_binary_token1] = ACTIONS(2350), + [aux_sym_expr_binary_token2] = ACTIONS(2350), + [aux_sym_expr_binary_token3] = ACTIONS(2350), + [aux_sym_expr_binary_token4] = ACTIONS(2350), + [aux_sym_expr_binary_token5] = ACTIONS(2350), + [aux_sym_expr_binary_token6] = ACTIONS(2350), + [aux_sym_expr_binary_token7] = ACTIONS(2350), + [aux_sym_expr_binary_token8] = ACTIONS(2350), + [aux_sym_expr_binary_token9] = ACTIONS(2350), + [aux_sym_expr_binary_token10] = ACTIONS(2350), + [aux_sym_expr_binary_token11] = ACTIONS(2350), + [aux_sym_expr_binary_token12] = ACTIONS(2350), + [aux_sym_expr_binary_token13] = ACTIONS(2350), + [aux_sym_expr_binary_token14] = ACTIONS(2350), + [aux_sym_expr_binary_token15] = ACTIONS(2350), + [aux_sym_expr_binary_token16] = ACTIONS(2350), + [aux_sym_expr_binary_token17] = ACTIONS(2350), + [aux_sym_expr_binary_token18] = ACTIONS(2350), + [aux_sym_expr_binary_token19] = ACTIONS(2350), + [aux_sym_expr_binary_token20] = ACTIONS(2350), + [aux_sym_expr_binary_token21] = ACTIONS(2350), + [aux_sym_expr_binary_token22] = ACTIONS(2350), + [aux_sym_expr_binary_token23] = ACTIONS(2350), + [aux_sym_expr_binary_token24] = ACTIONS(2350), + [aux_sym_expr_binary_token25] = ACTIONS(2350), + [aux_sym_expr_binary_token26] = ACTIONS(2350), + [aux_sym_expr_binary_token27] = ACTIONS(2350), + [aux_sym_expr_binary_token28] = ACTIONS(2350), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2350), + [anon_sym_DOT_DOT_LT] = ACTIONS(2350), + [aux_sym__val_number_decimal_token1] = ACTIONS(2348), + [aux_sym__val_number_decimal_token2] = ACTIONS(2350), + [aux_sym__val_number_decimal_token3] = ACTIONS(2350), + [aux_sym__val_number_decimal_token4] = ACTIONS(2350), + [aux_sym__val_number_token1] = ACTIONS(2350), + [aux_sym__val_number_token2] = ACTIONS(2350), + [aux_sym__val_number_token3] = ACTIONS(2350), + [anon_sym_0b] = ACTIONS(2348), + [anon_sym_0o] = ACTIONS(2348), + [anon_sym_0x] = ACTIONS(2348), + [sym_val_date] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2350), + [sym__str_single_quotes] = ACTIONS(2350), + [sym__str_back_ticks] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [aux_sym_unquoted_token1] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(247), }, [1189] = { [sym_comment] = STATE(1189), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_null] = ACTIONS(2347), - [aux_sym_cmd_identifier_token38] = ACTIONS(2347), - [aux_sym_cmd_identifier_token39] = ACTIONS(2347), - [aux_sym_cmd_identifier_token40] = ACTIONS(2347), - [sym__newline] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_COMMA] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_in] = ACTIONS(2345), - [aux_sym_ctrl_match_token1] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym__] = ACTIONS(2345), - [anon_sym_DOT_DOT] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2345), - [anon_sym_and] = ACTIONS(2347), - [anon_sym_xor] = ACTIONS(2347), - [anon_sym_or] = ACTIONS(2347), - [anon_sym_not_DASHin] = ACTIONS(2347), - [anon_sym_starts_DASHwith] = ACTIONS(2347), - [anon_sym_ends_DASHwith] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_LT2] = ACTIONS(2345), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_EQ_TILDE] = ACTIONS(2347), - [anon_sym_BANG_TILDE] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2345), - [anon_sym_mod] = ACTIONS(2347), - [anon_sym_SLASH_SLASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_bit_DASHshl] = ACTIONS(2347), - [anon_sym_bit_DASHshr] = ACTIONS(2347), - [anon_sym_bit_DASHand] = ACTIONS(2347), - [anon_sym_bit_DASHxor] = ACTIONS(2347), - [anon_sym_bit_DASHor] = ACTIONS(2347), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2347), - [anon_sym_DOT_DOT_LT] = ACTIONS(2347), - [aux_sym__val_number_decimal_token1] = ACTIONS(2345), - [aux_sym__val_number_decimal_token2] = ACTIONS(2347), - [anon_sym_DOT2] = ACTIONS(2345), - [aux_sym__val_number_decimal_token3] = ACTIONS(2347), - [aux_sym__val_number_token1] = ACTIONS(2347), - [aux_sym__val_number_token2] = ACTIONS(2347), - [aux_sym__val_number_token3] = ACTIONS(2347), - [anon_sym_0b] = ACTIONS(2345), - [anon_sym_0o] = ACTIONS(2345), - [anon_sym_0x] = ACTIONS(2345), - [sym_val_date] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [sym__str_single_quotes] = ACTIONS(2347), - [sym__str_back_ticks] = ACTIONS(2347), - [anon_sym_err_GT] = ACTIONS(2345), - [anon_sym_out_GT] = ACTIONS(2345), - [anon_sym_e_GT] = ACTIONS(2345), - [anon_sym_o_GT] = ACTIONS(2345), - [anon_sym_err_PLUSout_GT] = ACTIONS(2345), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2345), - [anon_sym_o_PLUSe_GT] = ACTIONS(2345), - [anon_sym_e_PLUSo_GT] = ACTIONS(2345), - [anon_sym_err_GT_GT] = ACTIONS(2347), - [anon_sym_out_GT_GT] = ACTIONS(2347), - [anon_sym_e_GT_GT] = ACTIONS(2347), - [anon_sym_o_GT_GT] = ACTIONS(2347), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2347), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2347), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2347), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2347), - [aux_sym_unquoted_token1] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2354), + [aux_sym_cmd_identifier_token38] = ACTIONS(2354), + [aux_sym_cmd_identifier_token39] = ACTIONS(2354), + [aux_sym_cmd_identifier_token40] = ACTIONS(2354), + [sym__newline] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(2354), + [anon_sym_LPAREN] = ACTIONS(2354), + [anon_sym_COMMA] = ACTIONS(2354), + [anon_sym_DOLLAR] = ACTIONS(2354), + [aux_sym_ctrl_match_token1] = ACTIONS(2354), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym__] = ACTIONS(2352), + [anon_sym_DOT_DOT] = ACTIONS(2352), + [aux_sym_expr_binary_token1] = ACTIONS(2354), + [aux_sym_expr_binary_token2] = ACTIONS(2354), + [aux_sym_expr_binary_token3] = ACTIONS(2354), + [aux_sym_expr_binary_token4] = ACTIONS(2354), + [aux_sym_expr_binary_token5] = ACTIONS(2354), + [aux_sym_expr_binary_token6] = ACTIONS(2354), + [aux_sym_expr_binary_token7] = ACTIONS(2354), + [aux_sym_expr_binary_token8] = ACTIONS(2354), + [aux_sym_expr_binary_token9] = ACTIONS(2354), + [aux_sym_expr_binary_token10] = ACTIONS(2354), + [aux_sym_expr_binary_token11] = ACTIONS(2354), + [aux_sym_expr_binary_token12] = ACTIONS(2354), + [aux_sym_expr_binary_token13] = ACTIONS(2354), + [aux_sym_expr_binary_token14] = ACTIONS(2354), + [aux_sym_expr_binary_token15] = ACTIONS(2354), + [aux_sym_expr_binary_token16] = ACTIONS(2354), + [aux_sym_expr_binary_token17] = ACTIONS(2354), + [aux_sym_expr_binary_token18] = ACTIONS(2354), + [aux_sym_expr_binary_token19] = ACTIONS(2354), + [aux_sym_expr_binary_token20] = ACTIONS(2354), + [aux_sym_expr_binary_token21] = ACTIONS(2354), + [aux_sym_expr_binary_token22] = ACTIONS(2354), + [aux_sym_expr_binary_token23] = ACTIONS(2354), + [aux_sym_expr_binary_token24] = ACTIONS(2354), + [aux_sym_expr_binary_token25] = ACTIONS(2354), + [aux_sym_expr_binary_token26] = ACTIONS(2354), + [aux_sym_expr_binary_token27] = ACTIONS(2354), + [aux_sym_expr_binary_token28] = ACTIONS(2354), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2352), + [aux_sym__val_number_decimal_token2] = ACTIONS(2354), + [aux_sym__val_number_decimal_token3] = ACTIONS(2354), + [aux_sym__val_number_decimal_token4] = ACTIONS(2354), + [aux_sym__val_number_token1] = ACTIONS(2354), + [aux_sym__val_number_token2] = ACTIONS(2354), + [aux_sym__val_number_token3] = ACTIONS(2354), + [anon_sym_0b] = ACTIONS(2352), + [anon_sym_0o] = ACTIONS(2352), + [anon_sym_0x] = ACTIONS(2352), + [sym_val_date] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2354), + [sym__str_single_quotes] = ACTIONS(2354), + [sym__str_back_ticks] = ACTIONS(2354), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2354), + [anon_sym_out_GT_GT] = ACTIONS(2354), + [anon_sym_e_GT_GT] = ACTIONS(2354), + [anon_sym_o_GT_GT] = ACTIONS(2354), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2354), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2354), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2354), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2354), + [aux_sym_unquoted_token1] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(247), }, [1190] = { [sym_comment] = STATE(1190), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [anon_sym_null] = ACTIONS(1806), - [aux_sym_cmd_identifier_token38] = ACTIONS(1806), - [aux_sym_cmd_identifier_token39] = ACTIONS(1806), - [aux_sym_cmd_identifier_token40] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(1806), - [anon_sym_DOLLAR] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_in] = ACTIONS(1804), - [aux_sym_ctrl_match_token1] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym__] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_and] = ACTIONS(1806), - [anon_sym_xor] = ACTIONS(1806), - [anon_sym_or] = ACTIONS(1806), - [anon_sym_not_DASHin] = ACTIONS(1806), - [anon_sym_starts_DASHwith] = ACTIONS(1806), - [anon_sym_ends_DASHwith] = ACTIONS(1806), - [anon_sym_EQ_EQ] = ACTIONS(1806), - [anon_sym_BANG_EQ] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ] = ACTIONS(1806), - [anon_sym_GT_EQ] = ACTIONS(1806), - [anon_sym_EQ_TILDE] = ACTIONS(1806), - [anon_sym_BANG_TILDE] = ACTIONS(1806), - [anon_sym_STAR_STAR] = ACTIONS(1806), - [anon_sym_PLUS_PLUS] = ACTIONS(1806), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1806), - [anon_sym_SLASH_SLASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_bit_DASHshl] = ACTIONS(1806), - [anon_sym_bit_DASHshr] = ACTIONS(1806), - [anon_sym_bit_DASHand] = ACTIONS(1806), - [anon_sym_bit_DASHxor] = ACTIONS(1806), - [anon_sym_bit_DASHor] = ACTIONS(1806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1806), - [anon_sym_DOT_DOT_LT] = ACTIONS(1806), - [aux_sym__val_number_decimal_token1] = ACTIONS(1804), - [aux_sym__val_number_decimal_token2] = ACTIONS(1806), - [anon_sym_DOT2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1806), - [aux_sym__val_number_token1] = ACTIONS(1806), - [aux_sym__val_number_token2] = ACTIONS(1806), - [aux_sym__val_number_token3] = ACTIONS(1806), - [anon_sym_0b] = ACTIONS(1804), - [anon_sym_0o] = ACTIONS(1804), - [anon_sym_0x] = ACTIONS(1804), - [sym_val_date] = ACTIONS(1806), - [anon_sym_DQUOTE] = ACTIONS(1806), - [sym__str_single_quotes] = ACTIONS(1806), - [sym__str_back_ticks] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [aux_sym_unquoted_token1] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3613), + [aux_sym_expr_binary_token8] = ACTIONS(3613), + [aux_sym_expr_binary_token9] = ACTIONS(3615), + [aux_sym_expr_binary_token10] = ACTIONS(3615), + [aux_sym_expr_binary_token11] = ACTIONS(3621), + [aux_sym_expr_binary_token12] = ACTIONS(3621), + [aux_sym_expr_binary_token13] = ACTIONS(3623), + [aux_sym_expr_binary_token14] = ACTIONS(3625), + [aux_sym_expr_binary_token15] = ACTIONS(3627), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3617), + [aux_sym_expr_binary_token20] = ACTIONS(3617), + [aux_sym_expr_binary_token21] = ACTIONS(3617), + [aux_sym_expr_binary_token22] = ACTIONS(3617), + [aux_sym_expr_binary_token23] = ACTIONS(3619), + [aux_sym_expr_binary_token24] = ACTIONS(3619), + [aux_sym_expr_binary_token25] = ACTIONS(3619), + [aux_sym_expr_binary_token26] = ACTIONS(3619), + [aux_sym_expr_binary_token27] = ACTIONS(3619), + [aux_sym_expr_binary_token28] = ACTIONS(3619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1191] = { [sym_comment] = STATE(1191), - [anon_sym_true] = ACTIONS(2351), - [anon_sym_false] = ACTIONS(2351), - [anon_sym_null] = ACTIONS(2351), - [aux_sym_cmd_identifier_token38] = ACTIONS(2351), - [aux_sym_cmd_identifier_token39] = ACTIONS(2351), - [aux_sym_cmd_identifier_token40] = ACTIONS(2351), - [sym__newline] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2351), - [anon_sym_GT] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_in] = ACTIONS(2349), - [aux_sym_ctrl_match_token1] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym__] = ACTIONS(2349), - [anon_sym_DOT_DOT] = ACTIONS(2349), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_and] = ACTIONS(2351), - [anon_sym_xor] = ACTIONS(2351), - [anon_sym_or] = ACTIONS(2351), - [anon_sym_not_DASHin] = ACTIONS(2351), - [anon_sym_starts_DASHwith] = ACTIONS(2351), - [anon_sym_ends_DASHwith] = ACTIONS(2351), - [anon_sym_EQ_EQ] = ACTIONS(2351), - [anon_sym_BANG_EQ] = ACTIONS(2351), - [anon_sym_LT2] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2351), - [anon_sym_GT_EQ] = ACTIONS(2351), - [anon_sym_EQ_TILDE] = ACTIONS(2351), - [anon_sym_BANG_TILDE] = ACTIONS(2351), - [anon_sym_STAR_STAR] = ACTIONS(2351), - [anon_sym_PLUS_PLUS] = ACTIONS(2351), - [anon_sym_SLASH] = ACTIONS(2349), - [anon_sym_mod] = ACTIONS(2351), - [anon_sym_SLASH_SLASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_bit_DASHshl] = ACTIONS(2351), - [anon_sym_bit_DASHshr] = ACTIONS(2351), - [anon_sym_bit_DASHand] = ACTIONS(2351), - [anon_sym_bit_DASHxor] = ACTIONS(2351), - [anon_sym_bit_DASHor] = ACTIONS(2351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2351), - [anon_sym_DOT_DOT_LT] = ACTIONS(2351), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2351), - [anon_sym_DOT2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2351), - [aux_sym__val_number_token1] = ACTIONS(2351), - [aux_sym__val_number_token2] = ACTIONS(2351), - [aux_sym__val_number_token3] = ACTIONS(2351), - [anon_sym_0b] = ACTIONS(2349), - [anon_sym_0o] = ACTIONS(2349), - [anon_sym_0x] = ACTIONS(2349), - [sym_val_date] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym__str_single_quotes] = ACTIONS(2351), - [sym__str_back_ticks] = ACTIONS(2351), - [anon_sym_err_GT] = ACTIONS(2349), - [anon_sym_out_GT] = ACTIONS(2349), - [anon_sym_e_GT] = ACTIONS(2349), - [anon_sym_o_GT] = ACTIONS(2349), - [anon_sym_err_PLUSout_GT] = ACTIONS(2349), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2349), - [anon_sym_o_PLUSe_GT] = ACTIONS(2349), - [anon_sym_e_PLUSo_GT] = ACTIONS(2349), - [anon_sym_err_GT_GT] = ACTIONS(2351), - [anon_sym_out_GT_GT] = ACTIONS(2351), - [anon_sym_e_GT_GT] = ACTIONS(2351), - [anon_sym_o_GT_GT] = ACTIONS(2351), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2351), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2351), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2351), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2351), - [aux_sym_unquoted_token1] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3613), + [aux_sym_expr_binary_token8] = ACTIONS(3613), + [aux_sym_expr_binary_token9] = ACTIONS(3615), + [aux_sym_expr_binary_token10] = ACTIONS(3615), + [aux_sym_expr_binary_token11] = ACTIONS(3621), + [aux_sym_expr_binary_token12] = ACTIONS(3621), + [aux_sym_expr_binary_token13] = ACTIONS(3623), + [aux_sym_expr_binary_token14] = ACTIONS(3625), + [aux_sym_expr_binary_token15] = ACTIONS(3627), + [aux_sym_expr_binary_token16] = ACTIONS(3629), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3617), + [aux_sym_expr_binary_token20] = ACTIONS(3617), + [aux_sym_expr_binary_token21] = ACTIONS(3617), + [aux_sym_expr_binary_token22] = ACTIONS(3617), + [aux_sym_expr_binary_token23] = ACTIONS(3619), + [aux_sym_expr_binary_token24] = ACTIONS(3619), + [aux_sym_expr_binary_token25] = ACTIONS(3619), + [aux_sym_expr_binary_token26] = ACTIONS(3619), + [aux_sym_expr_binary_token27] = ACTIONS(3619), + [aux_sym_expr_binary_token28] = ACTIONS(3619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1192] = { [sym_comment] = STATE(1192), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_null] = ACTIONS(2355), - [aux_sym_cmd_identifier_token38] = ACTIONS(2355), - [aux_sym_cmd_identifier_token39] = ACTIONS(2355), - [aux_sym_cmd_identifier_token40] = ACTIONS(2355), - [sym__newline] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2355), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_in] = ACTIONS(2353), - [aux_sym_ctrl_match_token1] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym__] = ACTIONS(2353), - [anon_sym_DOT_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_and] = ACTIONS(2355), - [anon_sym_xor] = ACTIONS(2355), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_not_DASHin] = ACTIONS(2355), - [anon_sym_starts_DASHwith] = ACTIONS(2355), - [anon_sym_ends_DASHwith] = ACTIONS(2355), - [anon_sym_EQ_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_LT2] = ACTIONS(2353), - [anon_sym_LT_EQ] = ACTIONS(2355), - [anon_sym_GT_EQ] = ACTIONS(2355), - [anon_sym_EQ_TILDE] = ACTIONS(2355), - [anon_sym_BANG_TILDE] = ACTIONS(2355), - [anon_sym_STAR_STAR] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2353), - [anon_sym_mod] = ACTIONS(2355), - [anon_sym_SLASH_SLASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_bit_DASHshl] = ACTIONS(2355), - [anon_sym_bit_DASHshr] = ACTIONS(2355), - [anon_sym_bit_DASHand] = ACTIONS(2355), - [anon_sym_bit_DASHxor] = ACTIONS(2355), - [anon_sym_bit_DASHor] = ACTIONS(2355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2355), - [anon_sym_DOT_DOT_LT] = ACTIONS(2355), - [aux_sym__val_number_decimal_token1] = ACTIONS(2353), - [aux_sym__val_number_decimal_token2] = ACTIONS(2355), - [anon_sym_DOT2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_token1] = ACTIONS(2355), - [aux_sym__val_number_token2] = ACTIONS(2355), - [aux_sym__val_number_token3] = ACTIONS(2355), - [anon_sym_0b] = ACTIONS(2353), - [anon_sym_0o] = ACTIONS(2353), - [anon_sym_0x] = ACTIONS(2353), - [sym_val_date] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym__str_single_quotes] = ACTIONS(2355), - [sym__str_back_ticks] = ACTIONS(2355), - [anon_sym_err_GT] = ACTIONS(2353), - [anon_sym_out_GT] = ACTIONS(2353), - [anon_sym_e_GT] = ACTIONS(2353), - [anon_sym_o_GT] = ACTIONS(2353), - [anon_sym_err_PLUSout_GT] = ACTIONS(2353), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2353), - [anon_sym_o_PLUSe_GT] = ACTIONS(2353), - [anon_sym_e_PLUSo_GT] = ACTIONS(2353), - [anon_sym_err_GT_GT] = ACTIONS(2355), - [anon_sym_out_GT_GT] = ACTIONS(2355), - [anon_sym_e_GT_GT] = ACTIONS(2355), - [anon_sym_o_GT_GT] = ACTIONS(2355), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), - [aux_sym_unquoted_token1] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3613), + [aux_sym_expr_binary_token8] = ACTIONS(3613), + [aux_sym_expr_binary_token9] = ACTIONS(3615), + [aux_sym_expr_binary_token10] = ACTIONS(3615), + [aux_sym_expr_binary_token11] = ACTIONS(3621), + [aux_sym_expr_binary_token12] = ACTIONS(3621), + [aux_sym_expr_binary_token13] = ACTIONS(3623), + [aux_sym_expr_binary_token14] = ACTIONS(3625), + [aux_sym_expr_binary_token15] = ACTIONS(3627), + [aux_sym_expr_binary_token16] = ACTIONS(3629), + [aux_sym_expr_binary_token17] = ACTIONS(3631), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3617), + [aux_sym_expr_binary_token20] = ACTIONS(3617), + [aux_sym_expr_binary_token21] = ACTIONS(3617), + [aux_sym_expr_binary_token22] = ACTIONS(3617), + [aux_sym_expr_binary_token23] = ACTIONS(3619), + [aux_sym_expr_binary_token24] = ACTIONS(3619), + [aux_sym_expr_binary_token25] = ACTIONS(3619), + [aux_sym_expr_binary_token26] = ACTIONS(3619), + [aux_sym_expr_binary_token27] = ACTIONS(3619), + [aux_sym_expr_binary_token28] = ACTIONS(3619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1193] = { [sym_comment] = STATE(1193), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1810), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [sym__newline] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1810), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [aux_sym_ctrl_match_token1] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym__] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_xor] = ACTIONS(1810), - [anon_sym_or] = ACTIONS(1810), - [anon_sym_not_DASHin] = ACTIONS(1810), - [anon_sym_starts_DASHwith] = ACTIONS(1810), - [anon_sym_ends_DASHwith] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1810), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_EQ_TILDE] = ACTIONS(1810), - [anon_sym_BANG_TILDE] = ACTIONS(1810), - [anon_sym_STAR_STAR] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1810), - [anon_sym_SLASH_SLASH] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_bit_DASHshl] = ACTIONS(1810), - [anon_sym_bit_DASHshr] = ACTIONS(1810), - [anon_sym_bit_DASHand] = ACTIONS(1810), - [anon_sym_bit_DASHxor] = ACTIONS(1810), - [anon_sym_bit_DASHor] = ACTIONS(1810), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [anon_sym_DOT2] = ACTIONS(1808), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1808), - [anon_sym_0o] = ACTIONS(1808), - [anon_sym_0x] = ACTIONS(1808), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3613), + [aux_sym_expr_binary_token8] = ACTIONS(3613), + [aux_sym_expr_binary_token9] = ACTIONS(3615), + [aux_sym_expr_binary_token10] = ACTIONS(3615), + [aux_sym_expr_binary_token11] = ACTIONS(3601), + [aux_sym_expr_binary_token12] = ACTIONS(3601), + [aux_sym_expr_binary_token13] = ACTIONS(3601), + [aux_sym_expr_binary_token14] = ACTIONS(3601), + [aux_sym_expr_binary_token15] = ACTIONS(3601), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3601), + [aux_sym_expr_binary_token20] = ACTIONS(3601), + [aux_sym_expr_binary_token21] = ACTIONS(3601), + [aux_sym_expr_binary_token22] = ACTIONS(3601), + [aux_sym_expr_binary_token23] = ACTIONS(3619), + [aux_sym_expr_binary_token24] = ACTIONS(3619), + [aux_sym_expr_binary_token25] = ACTIONS(3619), + [aux_sym_expr_binary_token26] = ACTIONS(3619), + [aux_sym_expr_binary_token27] = ACTIONS(3619), + [aux_sym_expr_binary_token28] = ACTIONS(3619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1194] = { [sym_comment] = STATE(1194), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1818), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1818), - [aux_sym_cmd_identifier_token40] = ACTIONS(1818), - [sym__newline] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [aux_sym_ctrl_match_token1] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym__] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_and] = ACTIONS(1818), - [anon_sym_xor] = ACTIONS(1818), - [anon_sym_or] = ACTIONS(1818), - [anon_sym_not_DASHin] = ACTIONS(1818), - [anon_sym_starts_DASHwith] = ACTIONS(1818), - [anon_sym_ends_DASHwith] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_LT2] = ACTIONS(1816), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_EQ_TILDE] = ACTIONS(1818), - [anon_sym_BANG_TILDE] = ACTIONS(1818), - [anon_sym_STAR_STAR] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1818), - [anon_sym_SLASH_SLASH] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_bit_DASHshl] = ACTIONS(1818), - [anon_sym_bit_DASHshr] = ACTIONS(1818), - [anon_sym_bit_DASHand] = ACTIONS(1818), - [anon_sym_bit_DASHxor] = ACTIONS(1818), - [anon_sym_bit_DASHor] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [aux_sym__val_number_decimal_token1] = ACTIONS(1816), - [aux_sym__val_number_decimal_token2] = ACTIONS(1818), - [anon_sym_DOT2] = ACTIONS(1816), - [aux_sym__val_number_decimal_token3] = ACTIONS(1818), - [aux_sym__val_number_token1] = ACTIONS(1818), - [aux_sym__val_number_token2] = ACTIONS(1818), - [aux_sym__val_number_token3] = ACTIONS(1818), - [anon_sym_0b] = ACTIONS(1816), - [anon_sym_0o] = ACTIONS(1816), - [anon_sym_0x] = ACTIONS(1816), - [sym_val_date] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [sym__str_single_quotes] = ACTIONS(1818), - [sym__str_back_ticks] = ACTIONS(1818), - [anon_sym_err_GT] = ACTIONS(1816), - [anon_sym_out_GT] = ACTIONS(1816), - [anon_sym_e_GT] = ACTIONS(1816), - [anon_sym_o_GT] = ACTIONS(1816), - [anon_sym_err_PLUSout_GT] = ACTIONS(1816), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1816), - [anon_sym_o_PLUSe_GT] = ACTIONS(1816), - [anon_sym_e_PLUSo_GT] = ACTIONS(1816), - [anon_sym_err_GT_GT] = ACTIONS(1818), - [anon_sym_out_GT_GT] = ACTIONS(1818), - [anon_sym_e_GT_GT] = ACTIONS(1818), - [anon_sym_o_GT_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1818), - [aux_sym_unquoted_token1] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3601), + [anon_sym_false] = ACTIONS(3601), + [anon_sym_null] = ACTIONS(3601), + [aux_sym_cmd_identifier_token38] = ACTIONS(3601), + [aux_sym_cmd_identifier_token39] = ACTIONS(3601), + [aux_sym_cmd_identifier_token40] = ACTIONS(3601), + [sym__newline] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_COMMA] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [aux_sym_ctrl_match_token1] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym__] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3603), + [aux_sym_expr_binary_token1] = ACTIONS(3609), + [aux_sym_expr_binary_token2] = ACTIONS(3609), + [aux_sym_expr_binary_token3] = ACTIONS(3611), + [aux_sym_expr_binary_token4] = ACTIONS(3611), + [aux_sym_expr_binary_token5] = ACTIONS(3611), + [aux_sym_expr_binary_token6] = ACTIONS(3611), + [aux_sym_expr_binary_token7] = ACTIONS(3613), + [aux_sym_expr_binary_token8] = ACTIONS(3613), + [aux_sym_expr_binary_token9] = ACTIONS(3615), + [aux_sym_expr_binary_token10] = ACTIONS(3615), + [aux_sym_expr_binary_token11] = ACTIONS(3601), + [aux_sym_expr_binary_token12] = ACTIONS(3601), + [aux_sym_expr_binary_token13] = ACTIONS(3601), + [aux_sym_expr_binary_token14] = ACTIONS(3601), + [aux_sym_expr_binary_token15] = ACTIONS(3601), + [aux_sym_expr_binary_token16] = ACTIONS(3601), + [aux_sym_expr_binary_token17] = ACTIONS(3601), + [aux_sym_expr_binary_token18] = ACTIONS(3601), + [aux_sym_expr_binary_token19] = ACTIONS(3601), + [aux_sym_expr_binary_token20] = ACTIONS(3601), + [aux_sym_expr_binary_token21] = ACTIONS(3601), + [aux_sym_expr_binary_token22] = ACTIONS(3601), + [aux_sym_expr_binary_token23] = ACTIONS(3601), + [aux_sym_expr_binary_token24] = ACTIONS(3601), + [aux_sym_expr_binary_token25] = ACTIONS(3601), + [aux_sym_expr_binary_token26] = ACTIONS(3601), + [aux_sym_expr_binary_token27] = ACTIONS(3601), + [aux_sym_expr_binary_token28] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), + [anon_sym_DOT_DOT_LT] = ACTIONS(3601), + [aux_sym__val_number_decimal_token1] = ACTIONS(3603), + [aux_sym__val_number_decimal_token2] = ACTIONS(3601), + [aux_sym__val_number_decimal_token3] = ACTIONS(3601), + [aux_sym__val_number_decimal_token4] = ACTIONS(3601), + [aux_sym__val_number_token1] = ACTIONS(3601), + [aux_sym__val_number_token2] = ACTIONS(3601), + [aux_sym__val_number_token3] = ACTIONS(3601), + [anon_sym_0b] = ACTIONS(3603), + [anon_sym_0o] = ACTIONS(3603), + [anon_sym_0x] = ACTIONS(3603), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_err_GT] = ACTIONS(3603), + [anon_sym_out_GT] = ACTIONS(3603), + [anon_sym_e_GT] = ACTIONS(3603), + [anon_sym_o_GT] = ACTIONS(3603), + [anon_sym_err_PLUSout_GT] = ACTIONS(3603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), + [anon_sym_o_PLUSe_GT] = ACTIONS(3603), + [anon_sym_e_PLUSo_GT] = ACTIONS(3603), + [anon_sym_err_GT_GT] = ACTIONS(3601), + [anon_sym_out_GT_GT] = ACTIONS(3601), + [anon_sym_e_GT_GT] = ACTIONS(3601), + [anon_sym_o_GT_GT] = ACTIONS(3601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), + [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_POUND] = ACTIONS(247), }, [1195] = { [sym_comment] = STATE(1195), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [anon_sym_null] = ACTIONS(2359), - [aux_sym_cmd_identifier_token38] = ACTIONS(2359), - [aux_sym_cmd_identifier_token39] = ACTIONS(2359), - [aux_sym_cmd_identifier_token40] = ACTIONS(2359), - [sym__newline] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_GT] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2357), - [aux_sym_ctrl_match_token1] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym__] = ACTIONS(2357), - [anon_sym_DOT_DOT] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_and] = ACTIONS(2359), - [anon_sym_xor] = ACTIONS(2359), - [anon_sym_or] = ACTIONS(2359), - [anon_sym_not_DASHin] = ACTIONS(2359), - [anon_sym_starts_DASHwith] = ACTIONS(2359), - [anon_sym_ends_DASHwith] = ACTIONS(2359), - [anon_sym_EQ_EQ] = ACTIONS(2359), - [anon_sym_BANG_EQ] = ACTIONS(2359), - [anon_sym_LT2] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2359), - [anon_sym_GT_EQ] = ACTIONS(2359), - [anon_sym_EQ_TILDE] = ACTIONS(2359), - [anon_sym_BANG_TILDE] = ACTIONS(2359), - [anon_sym_STAR_STAR] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_SLASH] = ACTIONS(2357), - [anon_sym_mod] = ACTIONS(2359), - [anon_sym_SLASH_SLASH] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_bit_DASHshl] = ACTIONS(2359), - [anon_sym_bit_DASHshr] = ACTIONS(2359), - [anon_sym_bit_DASHand] = ACTIONS(2359), - [anon_sym_bit_DASHxor] = ACTIONS(2359), - [anon_sym_bit_DASHor] = ACTIONS(2359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2359), - [anon_sym_DOT_DOT_LT] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2357), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [anon_sym_DOT2] = ACTIONS(2357), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [anon_sym_0b] = ACTIONS(2357), - [anon_sym_0o] = ACTIONS(2357), - [anon_sym_0x] = ACTIONS(2357), - [sym_val_date] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_err_GT] = ACTIONS(2357), - [anon_sym_out_GT] = ACTIONS(2357), - [anon_sym_e_GT] = ACTIONS(2357), - [anon_sym_o_GT] = ACTIONS(2357), - [anon_sym_err_PLUSout_GT] = ACTIONS(2357), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), - [anon_sym_o_PLUSe_GT] = ACTIONS(2357), - [anon_sym_e_PLUSo_GT] = ACTIONS(2357), - [anon_sym_err_GT_GT] = ACTIONS(2359), - [anon_sym_out_GT_GT] = ACTIONS(2359), - [anon_sym_e_GT_GT] = ACTIONS(2359), - [anon_sym_o_GT_GT] = ACTIONS(2359), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2359), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2359), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2359), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2359), - [aux_sym_unquoted_token1] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [anon_sym_null] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [sym__newline] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [aux_sym_ctrl_match_token1] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym__] = ACTIONS(1747), + [anon_sym_DOT_DOT] = ACTIONS(1747), + [aux_sym_expr_binary_token1] = ACTIONS(1749), + [aux_sym_expr_binary_token2] = ACTIONS(1749), + [aux_sym_expr_binary_token3] = ACTIONS(1749), + [aux_sym_expr_binary_token4] = ACTIONS(1749), + [aux_sym_expr_binary_token5] = ACTIONS(1749), + [aux_sym_expr_binary_token6] = ACTIONS(1749), + [aux_sym_expr_binary_token7] = ACTIONS(1749), + [aux_sym_expr_binary_token8] = ACTIONS(1749), + [aux_sym_expr_binary_token9] = ACTIONS(1749), + [aux_sym_expr_binary_token10] = ACTIONS(1749), + [aux_sym_expr_binary_token11] = ACTIONS(1749), + [aux_sym_expr_binary_token12] = ACTIONS(1749), + [aux_sym_expr_binary_token13] = ACTIONS(1749), + [aux_sym_expr_binary_token14] = ACTIONS(1749), + [aux_sym_expr_binary_token15] = ACTIONS(1749), + [aux_sym_expr_binary_token16] = ACTIONS(1749), + [aux_sym_expr_binary_token17] = ACTIONS(1749), + [aux_sym_expr_binary_token18] = ACTIONS(1749), + [aux_sym_expr_binary_token19] = ACTIONS(1749), + [aux_sym_expr_binary_token20] = ACTIONS(1749), + [aux_sym_expr_binary_token21] = ACTIONS(1749), + [aux_sym_expr_binary_token22] = ACTIONS(1749), + [aux_sym_expr_binary_token23] = ACTIONS(1749), + [aux_sym_expr_binary_token24] = ACTIONS(1749), + [aux_sym_expr_binary_token25] = ACTIONS(1749), + [aux_sym_expr_binary_token26] = ACTIONS(1749), + [aux_sym_expr_binary_token27] = ACTIONS(1749), + [aux_sym_expr_binary_token28] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [anon_sym_0b] = ACTIONS(1747), + [anon_sym_0o] = ACTIONS(1747), + [anon_sym_0x] = ACTIONS(1747), + [sym_val_date] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_err_GT] = ACTIONS(1747), + [anon_sym_out_GT] = ACTIONS(1747), + [anon_sym_e_GT] = ACTIONS(1747), + [anon_sym_o_GT] = ACTIONS(1747), + [anon_sym_err_PLUSout_GT] = ACTIONS(1747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), + [anon_sym_o_PLUSe_GT] = ACTIONS(1747), + [anon_sym_e_PLUSo_GT] = ACTIONS(1747), + [anon_sym_err_GT_GT] = ACTIONS(1749), + [anon_sym_out_GT_GT] = ACTIONS(1749), + [anon_sym_e_GT_GT] = ACTIONS(1749), + [anon_sym_o_GT_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), + [aux_sym_unquoted_token1] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(247), }, [1196] = { [sym_comment] = STATE(1196), - [anon_sym_true] = ACTIONS(2279), - [anon_sym_false] = ACTIONS(2279), - [anon_sym_null] = ACTIONS(2279), - [aux_sym_cmd_identifier_token38] = ACTIONS(2279), - [aux_sym_cmd_identifier_token39] = ACTIONS(2279), - [aux_sym_cmd_identifier_token40] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_COMMA] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2279), - [anon_sym_GT] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_in] = ACTIONS(2277), - [aux_sym_ctrl_match_token1] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym__] = ACTIONS(2277), - [anon_sym_DOT_DOT] = ACTIONS(2277), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_and] = ACTIONS(2279), - [anon_sym_xor] = ACTIONS(2279), - [anon_sym_or] = ACTIONS(2279), - [anon_sym_not_DASHin] = ACTIONS(2279), - [anon_sym_starts_DASHwith] = ACTIONS(2279), - [anon_sym_ends_DASHwith] = ACTIONS(2279), - [anon_sym_EQ_EQ] = ACTIONS(2279), - [anon_sym_BANG_EQ] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2277), - [anon_sym_LT_EQ] = ACTIONS(2279), - [anon_sym_GT_EQ] = ACTIONS(2279), - [anon_sym_EQ_TILDE] = ACTIONS(2279), - [anon_sym_BANG_TILDE] = ACTIONS(2279), - [anon_sym_STAR_STAR] = ACTIONS(2279), - [anon_sym_PLUS_PLUS] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2277), - [anon_sym_mod] = ACTIONS(2279), - [anon_sym_SLASH_SLASH] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_bit_DASHshl] = ACTIONS(2279), - [anon_sym_bit_DASHshr] = ACTIONS(2279), - [anon_sym_bit_DASHand] = ACTIONS(2279), - [anon_sym_bit_DASHxor] = ACTIONS(2279), - [anon_sym_bit_DASHor] = ACTIONS(2279), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), - [anon_sym_DOT_DOT_LT] = ACTIONS(2279), - [aux_sym__val_number_decimal_token1] = ACTIONS(2277), - [aux_sym__val_number_decimal_token2] = ACTIONS(2279), - [anon_sym_DOT2] = ACTIONS(2277), - [aux_sym__val_number_decimal_token3] = ACTIONS(2279), - [aux_sym__val_number_token1] = ACTIONS(2279), - [aux_sym__val_number_token2] = ACTIONS(2279), - [aux_sym__val_number_token3] = ACTIONS(2279), - [anon_sym_0b] = ACTIONS(2277), - [anon_sym_0o] = ACTIONS(2277), - [anon_sym_0x] = ACTIONS(2277), - [sym_val_date] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(2279), - [sym__str_single_quotes] = ACTIONS(2279), - [sym__str_back_ticks] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2277), - [anon_sym_out_GT] = ACTIONS(2277), - [anon_sym_e_GT] = ACTIONS(2277), - [anon_sym_o_GT] = ACTIONS(2277), - [anon_sym_err_PLUSout_GT] = ACTIONS(2277), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2277), - [anon_sym_o_PLUSe_GT] = ACTIONS(2277), - [anon_sym_e_PLUSo_GT] = ACTIONS(2277), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [aux_sym_unquoted_token1] = ACTIONS(2277), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1857), + [aux_sym_cmd_identifier_token38] = ACTIONS(1857), + [aux_sym_cmd_identifier_token39] = ACTIONS(1857), + [aux_sym_cmd_identifier_token40] = ACTIONS(1857), + [sym__newline] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1857), + [aux_sym_ctrl_match_token1] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym__] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [aux_sym_expr_binary_token1] = ACTIONS(1857), + [aux_sym_expr_binary_token2] = ACTIONS(1857), + [aux_sym_expr_binary_token3] = ACTIONS(1857), + [aux_sym_expr_binary_token4] = ACTIONS(1857), + [aux_sym_expr_binary_token5] = ACTIONS(1857), + [aux_sym_expr_binary_token6] = ACTIONS(1857), + [aux_sym_expr_binary_token7] = ACTIONS(1857), + [aux_sym_expr_binary_token8] = ACTIONS(1857), + [aux_sym_expr_binary_token9] = ACTIONS(1857), + [aux_sym_expr_binary_token10] = ACTIONS(1857), + [aux_sym_expr_binary_token11] = ACTIONS(1857), + [aux_sym_expr_binary_token12] = ACTIONS(1857), + [aux_sym_expr_binary_token13] = ACTIONS(1857), + [aux_sym_expr_binary_token14] = ACTIONS(1857), + [aux_sym_expr_binary_token15] = ACTIONS(1857), + [aux_sym_expr_binary_token16] = ACTIONS(1857), + [aux_sym_expr_binary_token17] = ACTIONS(1857), + [aux_sym_expr_binary_token18] = ACTIONS(1857), + [aux_sym_expr_binary_token19] = ACTIONS(1857), + [aux_sym_expr_binary_token20] = ACTIONS(1857), + [aux_sym_expr_binary_token21] = ACTIONS(1857), + [aux_sym_expr_binary_token22] = ACTIONS(1857), + [aux_sym_expr_binary_token23] = ACTIONS(1857), + [aux_sym_expr_binary_token24] = ACTIONS(1857), + [aux_sym_expr_binary_token25] = ACTIONS(1857), + [aux_sym_expr_binary_token26] = ACTIONS(1857), + [aux_sym_expr_binary_token27] = ACTIONS(1857), + [aux_sym_expr_binary_token28] = ACTIONS(1857), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), + [anon_sym_DOT_DOT_LT] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [anon_sym_0b] = ACTIONS(1855), + [anon_sym_0o] = ACTIONS(1855), + [anon_sym_0x] = ACTIONS(1855), + [sym_val_date] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_err_GT] = ACTIONS(1855), + [anon_sym_out_GT] = ACTIONS(1855), + [anon_sym_e_GT] = ACTIONS(1855), + [anon_sym_o_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT] = ACTIONS(1855), + [anon_sym_err_GT_GT] = ACTIONS(1857), + [anon_sym_out_GT_GT] = ACTIONS(1857), + [anon_sym_e_GT_GT] = ACTIONS(1857), + [anon_sym_o_GT_GT] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), + [aux_sym_unquoted_token1] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(247), }, [1197] = { [sym_comment] = STATE(1197), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1822), - [aux_sym_cmd_identifier_token38] = ACTIONS(1822), - [aux_sym_cmd_identifier_token39] = ACTIONS(1822), - [aux_sym_cmd_identifier_token40] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_COMMA] = ACTIONS(1822), - [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(1820), - [aux_sym_ctrl_match_token1] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym__] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_and] = ACTIONS(1822), - [anon_sym_xor] = ACTIONS(1822), - [anon_sym_or] = ACTIONS(1822), - [anon_sym_not_DASHin] = ACTIONS(1822), - [anon_sym_starts_DASHwith] = ACTIONS(1822), - [anon_sym_ends_DASHwith] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_EQ_TILDE] = ACTIONS(1822), - [anon_sym_BANG_TILDE] = ACTIONS(1822), - [anon_sym_STAR_STAR] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1822), - [anon_sym_SLASH_SLASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_bit_DASHshl] = ACTIONS(1822), - [anon_sym_bit_DASHshr] = ACTIONS(1822), - [anon_sym_bit_DASHand] = ACTIONS(1822), - [anon_sym_bit_DASHxor] = ACTIONS(1822), - [anon_sym_bit_DASHor] = ACTIONS(1822), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT] = ACTIONS(1822), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [anon_sym_DOT2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1822), - [aux_sym__val_number_token1] = ACTIONS(1822), - [aux_sym__val_number_token2] = ACTIONS(1822), - [aux_sym__val_number_token3] = ACTIONS(1822), - [anon_sym_0b] = ACTIONS(1820), - [anon_sym_0o] = ACTIONS(1820), - [anon_sym_0x] = ACTIONS(1820), - [sym_val_date] = ACTIONS(1822), - [anon_sym_DQUOTE] = ACTIONS(1822), - [sym__str_single_quotes] = ACTIONS(1822), - [sym__str_back_ticks] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1820), - [anon_sym_out_GT] = ACTIONS(1820), - [anon_sym_e_GT] = ACTIONS(1820), - [anon_sym_o_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT] = ACTIONS(1820), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [aux_sym_unquoted_token1] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1798), + [aux_sym_cmd_identifier_token38] = ACTIONS(1798), + [aux_sym_cmd_identifier_token39] = ACTIONS(1798), + [aux_sym_cmd_identifier_token40] = ACTIONS(1798), + [sym__newline] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1798), + [aux_sym_ctrl_match_token1] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym__] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [aux_sym_expr_binary_token1] = ACTIONS(1798), + [aux_sym_expr_binary_token2] = ACTIONS(1798), + [aux_sym_expr_binary_token3] = ACTIONS(1798), + [aux_sym_expr_binary_token4] = ACTIONS(1798), + [aux_sym_expr_binary_token5] = ACTIONS(1798), + [aux_sym_expr_binary_token6] = ACTIONS(1798), + [aux_sym_expr_binary_token7] = ACTIONS(1798), + [aux_sym_expr_binary_token8] = ACTIONS(1798), + [aux_sym_expr_binary_token9] = ACTIONS(1798), + [aux_sym_expr_binary_token10] = ACTIONS(1798), + [aux_sym_expr_binary_token11] = ACTIONS(1798), + [aux_sym_expr_binary_token12] = ACTIONS(1798), + [aux_sym_expr_binary_token13] = ACTIONS(1798), + [aux_sym_expr_binary_token14] = ACTIONS(1798), + [aux_sym_expr_binary_token15] = ACTIONS(1798), + [aux_sym_expr_binary_token16] = ACTIONS(1798), + [aux_sym_expr_binary_token17] = ACTIONS(1798), + [aux_sym_expr_binary_token18] = ACTIONS(1798), + [aux_sym_expr_binary_token19] = ACTIONS(1798), + [aux_sym_expr_binary_token20] = ACTIONS(1798), + [aux_sym_expr_binary_token21] = ACTIONS(1798), + [aux_sym_expr_binary_token22] = ACTIONS(1798), + [aux_sym_expr_binary_token23] = ACTIONS(1798), + [aux_sym_expr_binary_token24] = ACTIONS(1798), + [aux_sym_expr_binary_token25] = ACTIONS(1798), + [aux_sym_expr_binary_token26] = ACTIONS(1798), + [aux_sym_expr_binary_token27] = ACTIONS(1798), + [aux_sym_expr_binary_token28] = ACTIONS(1798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), + [anon_sym_DOT_DOT_LT] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1798), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(1798), + [aux_sym__val_number_token2] = ACTIONS(1798), + [aux_sym__val_number_token3] = ACTIONS(1798), + [anon_sym_0b] = ACTIONS(1796), + [anon_sym_0o] = ACTIONS(1796), + [anon_sym_0x] = ACTIONS(1796), + [sym_val_date] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [sym__str_single_quotes] = ACTIONS(1798), + [sym__str_back_ticks] = ACTIONS(1798), + [anon_sym_err_GT] = ACTIONS(1796), + [anon_sym_out_GT] = ACTIONS(1796), + [anon_sym_e_GT] = ACTIONS(1796), + [anon_sym_o_GT] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT] = ACTIONS(1796), + [anon_sym_err_GT_GT] = ACTIONS(1798), + [anon_sym_out_GT_GT] = ACTIONS(1798), + [anon_sym_e_GT_GT] = ACTIONS(1798), + [anon_sym_o_GT_GT] = ACTIONS(1798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1798), + [aux_sym_unquoted_token1] = ACTIONS(1796), + [anon_sym_POUND] = ACTIONS(247), }, [1198] = { [sym_comment] = STATE(1198), - [anon_sym_true] = ACTIONS(2363), - [anon_sym_false] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2363), - [aux_sym_cmd_identifier_token38] = ACTIONS(2363), - [aux_sym_cmd_identifier_token39] = ACTIONS(2363), - [aux_sym_cmd_identifier_token40] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_COMMA] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2363), - [anon_sym_GT] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_in] = ACTIONS(2361), - [aux_sym_ctrl_match_token1] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym__] = ACTIONS(2361), - [anon_sym_DOT_DOT] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2361), - [anon_sym_and] = ACTIONS(2363), - [anon_sym_xor] = ACTIONS(2363), - [anon_sym_or] = ACTIONS(2363), - [anon_sym_not_DASHin] = ACTIONS(2363), - [anon_sym_starts_DASHwith] = ACTIONS(2363), - [anon_sym_ends_DASHwith] = ACTIONS(2363), - [anon_sym_EQ_EQ] = ACTIONS(2363), - [anon_sym_BANG_EQ] = ACTIONS(2363), - [anon_sym_LT2] = ACTIONS(2361), - [anon_sym_LT_EQ] = ACTIONS(2363), - [anon_sym_GT_EQ] = ACTIONS(2363), - [anon_sym_EQ_TILDE] = ACTIONS(2363), - [anon_sym_BANG_TILDE] = ACTIONS(2363), - [anon_sym_STAR_STAR] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_SLASH] = ACTIONS(2361), - [anon_sym_mod] = ACTIONS(2363), - [anon_sym_SLASH_SLASH] = ACTIONS(2363), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_bit_DASHshl] = ACTIONS(2363), - [anon_sym_bit_DASHshr] = ACTIONS(2363), - [anon_sym_bit_DASHand] = ACTIONS(2363), - [anon_sym_bit_DASHxor] = ACTIONS(2363), - [anon_sym_bit_DASHor] = ACTIONS(2363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2363), - [anon_sym_DOT_DOT_LT] = ACTIONS(2363), - [aux_sym__val_number_decimal_token1] = ACTIONS(2361), - [aux_sym__val_number_decimal_token2] = ACTIONS(2363), - [anon_sym_DOT2] = ACTIONS(2361), - [aux_sym__val_number_decimal_token3] = ACTIONS(2363), - [aux_sym__val_number_token1] = ACTIONS(2363), - [aux_sym__val_number_token2] = ACTIONS(2363), - [aux_sym__val_number_token3] = ACTIONS(2363), - [anon_sym_0b] = ACTIONS(2361), - [anon_sym_0o] = ACTIONS(2361), - [anon_sym_0x] = ACTIONS(2361), - [sym_val_date] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym__str_single_quotes] = ACTIONS(2363), - [sym__str_back_ticks] = ACTIONS(2363), - [anon_sym_err_GT] = ACTIONS(2361), - [anon_sym_out_GT] = ACTIONS(2361), - [anon_sym_e_GT] = ACTIONS(2361), - [anon_sym_o_GT] = ACTIONS(2361), - [anon_sym_err_PLUSout_GT] = ACTIONS(2361), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2361), - [anon_sym_o_PLUSe_GT] = ACTIONS(2361), - [anon_sym_e_PLUSo_GT] = ACTIONS(2361), - [anon_sym_err_GT_GT] = ACTIONS(2363), - [anon_sym_out_GT_GT] = ACTIONS(2363), - [anon_sym_e_GT_GT] = ACTIONS(2363), - [anon_sym_o_GT_GT] = ACTIONS(2363), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2363), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2363), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2363), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2363), - [aux_sym_unquoted_token1] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1745), + [anon_sym_false] = ACTIONS(1745), + [anon_sym_null] = ACTIONS(1745), + [aux_sym_cmd_identifier_token38] = ACTIONS(1745), + [aux_sym_cmd_identifier_token39] = ACTIONS(1745), + [aux_sym_cmd_identifier_token40] = ACTIONS(1745), + [sym__newline] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_COMMA] = ACTIONS(1745), + [anon_sym_DOLLAR] = ACTIONS(1745), + [aux_sym_ctrl_match_token1] = ACTIONS(1745), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym__] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1741), + [aux_sym_expr_binary_token1] = ACTIONS(1745), + [aux_sym_expr_binary_token2] = ACTIONS(1745), + [aux_sym_expr_binary_token3] = ACTIONS(1745), + [aux_sym_expr_binary_token4] = ACTIONS(1745), + [aux_sym_expr_binary_token5] = ACTIONS(1745), + [aux_sym_expr_binary_token6] = ACTIONS(1745), + [aux_sym_expr_binary_token7] = ACTIONS(1745), + [aux_sym_expr_binary_token8] = ACTIONS(1745), + [aux_sym_expr_binary_token9] = ACTIONS(1745), + [aux_sym_expr_binary_token10] = ACTIONS(1745), + [aux_sym_expr_binary_token11] = ACTIONS(1745), + [aux_sym_expr_binary_token12] = ACTIONS(1745), + [aux_sym_expr_binary_token13] = ACTIONS(1745), + [aux_sym_expr_binary_token14] = ACTIONS(1745), + [aux_sym_expr_binary_token15] = ACTIONS(1745), + [aux_sym_expr_binary_token16] = ACTIONS(1745), + [aux_sym_expr_binary_token17] = ACTIONS(1745), + [aux_sym_expr_binary_token18] = ACTIONS(1745), + [aux_sym_expr_binary_token19] = ACTIONS(1745), + [aux_sym_expr_binary_token20] = ACTIONS(1745), + [aux_sym_expr_binary_token21] = ACTIONS(1745), + [aux_sym_expr_binary_token22] = ACTIONS(1745), + [aux_sym_expr_binary_token23] = ACTIONS(1745), + [aux_sym_expr_binary_token24] = ACTIONS(1745), + [aux_sym_expr_binary_token25] = ACTIONS(1745), + [aux_sym_expr_binary_token26] = ACTIONS(1745), + [aux_sym_expr_binary_token27] = ACTIONS(1745), + [aux_sym_expr_binary_token28] = ACTIONS(1745), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), + [anon_sym_DOT_DOT_LT] = ACTIONS(1745), + [aux_sym__val_number_decimal_token1] = ACTIONS(1741), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1745), + [aux_sym__val_number_decimal_token4] = ACTIONS(1745), + [aux_sym__val_number_token1] = ACTIONS(1745), + [aux_sym__val_number_token2] = ACTIONS(1745), + [aux_sym__val_number_token3] = ACTIONS(1745), + [anon_sym_0b] = ACTIONS(1741), + [anon_sym_0o] = ACTIONS(1741), + [anon_sym_0x] = ACTIONS(1741), + [sym_val_date] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym__str_single_quotes] = ACTIONS(1745), + [sym__str_back_ticks] = ACTIONS(1745), + [anon_sym_err_GT] = ACTIONS(1741), + [anon_sym_out_GT] = ACTIONS(1741), + [anon_sym_e_GT] = ACTIONS(1741), + [anon_sym_o_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT] = ACTIONS(1741), + [anon_sym_err_GT_GT] = ACTIONS(1745), + [anon_sym_out_GT_GT] = ACTIONS(1745), + [anon_sym_e_GT_GT] = ACTIONS(1745), + [anon_sym_o_GT_GT] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [aux_sym_unquoted_token1] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), }, [1199] = { [sym_comment] = STATE(1199), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [anon_sym_null] = ACTIONS(2367), - [aux_sym_cmd_identifier_token38] = ACTIONS(2367), - [aux_sym_cmd_identifier_token39] = ACTIONS(2367), - [aux_sym_cmd_identifier_token40] = ACTIONS(2367), - [sym__newline] = ACTIONS(2367), - [anon_sym_LBRACK] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_GT] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_in] = ACTIONS(2365), - [aux_sym_ctrl_match_token1] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym__] = ACTIONS(2365), - [anon_sym_DOT_DOT] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(2365), - [anon_sym_and] = ACTIONS(2367), - [anon_sym_xor] = ACTIONS(2367), - [anon_sym_or] = ACTIONS(2367), - [anon_sym_not_DASHin] = ACTIONS(2367), - [anon_sym_starts_DASHwith] = ACTIONS(2367), - [anon_sym_ends_DASHwith] = ACTIONS(2367), - [anon_sym_EQ_EQ] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(2367), - [anon_sym_LT2] = ACTIONS(2365), - [anon_sym_LT_EQ] = ACTIONS(2367), - [anon_sym_GT_EQ] = ACTIONS(2367), - [anon_sym_EQ_TILDE] = ACTIONS(2367), - [anon_sym_BANG_TILDE] = ACTIONS(2367), - [anon_sym_STAR_STAR] = ACTIONS(2367), - [anon_sym_PLUS_PLUS] = ACTIONS(2367), - [anon_sym_SLASH] = ACTIONS(2365), - [anon_sym_mod] = ACTIONS(2367), - [anon_sym_SLASH_SLASH] = ACTIONS(2367), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_bit_DASHshl] = ACTIONS(2367), - [anon_sym_bit_DASHshr] = ACTIONS(2367), - [anon_sym_bit_DASHand] = ACTIONS(2367), - [anon_sym_bit_DASHxor] = ACTIONS(2367), - [anon_sym_bit_DASHor] = ACTIONS(2367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2367), - [anon_sym_DOT_DOT_LT] = ACTIONS(2367), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [aux_sym__val_number_decimal_token2] = ACTIONS(2367), - [anon_sym_DOT2] = ACTIONS(2365), - [aux_sym__val_number_decimal_token3] = ACTIONS(2367), - [aux_sym__val_number_token1] = ACTIONS(2367), - [aux_sym__val_number_token2] = ACTIONS(2367), - [aux_sym__val_number_token3] = ACTIONS(2367), - [anon_sym_0b] = ACTIONS(2365), - [anon_sym_0o] = ACTIONS(2365), - [anon_sym_0x] = ACTIONS(2365), - [sym_val_date] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(2367), - [sym__str_single_quotes] = ACTIONS(2367), - [sym__str_back_ticks] = ACTIONS(2367), - [anon_sym_err_GT] = ACTIONS(2365), - [anon_sym_out_GT] = ACTIONS(2365), - [anon_sym_e_GT] = ACTIONS(2365), - [anon_sym_o_GT] = ACTIONS(2365), - [anon_sym_err_PLUSout_GT] = ACTIONS(2365), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2365), - [anon_sym_o_PLUSe_GT] = ACTIONS(2365), - [anon_sym_e_PLUSo_GT] = ACTIONS(2365), - [anon_sym_err_GT_GT] = ACTIONS(2367), - [anon_sym_out_GT_GT] = ACTIONS(2367), - [anon_sym_e_GT_GT] = ACTIONS(2367), - [anon_sym_o_GT_GT] = ACTIONS(2367), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2367), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2367), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2367), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2367), - [aux_sym_unquoted_token1] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_null] = ACTIONS(2365), + [aux_sym_cmd_identifier_token38] = ACTIONS(2365), + [aux_sym_cmd_identifier_token39] = ACTIONS(2365), + [aux_sym_cmd_identifier_token40] = ACTIONS(2365), + [sym__newline] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_COMMA] = ACTIONS(2365), + [anon_sym_DOLLAR] = ACTIONS(2365), + [aux_sym_ctrl_match_token1] = ACTIONS(2365), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym__] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2363), + [aux_sym_expr_binary_token1] = ACTIONS(2365), + [aux_sym_expr_binary_token2] = ACTIONS(2365), + [aux_sym_expr_binary_token3] = ACTIONS(2365), + [aux_sym_expr_binary_token4] = ACTIONS(2365), + [aux_sym_expr_binary_token5] = ACTIONS(2365), + [aux_sym_expr_binary_token6] = ACTIONS(2365), + [aux_sym_expr_binary_token7] = ACTIONS(2365), + [aux_sym_expr_binary_token8] = ACTIONS(2365), + [aux_sym_expr_binary_token9] = ACTIONS(2365), + [aux_sym_expr_binary_token10] = ACTIONS(2365), + [aux_sym_expr_binary_token11] = ACTIONS(2365), + [aux_sym_expr_binary_token12] = ACTIONS(2365), + [aux_sym_expr_binary_token13] = ACTIONS(2365), + [aux_sym_expr_binary_token14] = ACTIONS(2365), + [aux_sym_expr_binary_token15] = ACTIONS(2365), + [aux_sym_expr_binary_token16] = ACTIONS(2365), + [aux_sym_expr_binary_token17] = ACTIONS(2365), + [aux_sym_expr_binary_token18] = ACTIONS(2365), + [aux_sym_expr_binary_token19] = ACTIONS(2365), + [aux_sym_expr_binary_token20] = ACTIONS(2365), + [aux_sym_expr_binary_token21] = ACTIONS(2365), + [aux_sym_expr_binary_token22] = ACTIONS(2365), + [aux_sym_expr_binary_token23] = ACTIONS(2365), + [aux_sym_expr_binary_token24] = ACTIONS(2365), + [aux_sym_expr_binary_token25] = ACTIONS(2365), + [aux_sym_expr_binary_token26] = ACTIONS(2365), + [aux_sym_expr_binary_token27] = ACTIONS(2365), + [aux_sym_expr_binary_token28] = ACTIONS(2365), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2365), + [anon_sym_DOT_DOT_LT] = ACTIONS(2365), + [aux_sym__val_number_decimal_token1] = ACTIONS(2363), + [aux_sym__val_number_decimal_token2] = ACTIONS(2365), + [aux_sym__val_number_decimal_token3] = ACTIONS(2365), + [aux_sym__val_number_decimal_token4] = ACTIONS(2365), + [aux_sym__val_number_token1] = ACTIONS(2365), + [aux_sym__val_number_token2] = ACTIONS(2365), + [aux_sym__val_number_token3] = ACTIONS(2365), + [anon_sym_0b] = ACTIONS(2363), + [anon_sym_0o] = ACTIONS(2363), + [anon_sym_0x] = ACTIONS(2363), + [sym_val_date] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(2365), + [sym__str_single_quotes] = ACTIONS(2365), + [sym__str_back_ticks] = ACTIONS(2365), + [anon_sym_err_GT] = ACTIONS(2363), + [anon_sym_out_GT] = ACTIONS(2363), + [anon_sym_e_GT] = ACTIONS(2363), + [anon_sym_o_GT] = ACTIONS(2363), + [anon_sym_err_PLUSout_GT] = ACTIONS(2363), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2363), + [anon_sym_o_PLUSe_GT] = ACTIONS(2363), + [anon_sym_e_PLUSo_GT] = ACTIONS(2363), + [anon_sym_err_GT_GT] = ACTIONS(2365), + [anon_sym_out_GT_GT] = ACTIONS(2365), + [anon_sym_e_GT_GT] = ACTIONS(2365), + [anon_sym_o_GT_GT] = ACTIONS(2365), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2365), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2365), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2365), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2365), + [aux_sym_unquoted_token1] = ACTIONS(2363), + [anon_sym_POUND] = ACTIONS(247), }, [1200] = { [sym_comment] = STATE(1200), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1441), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [sym__newline] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym__] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_and] = ACTIONS(1441), - [anon_sym_xor] = ACTIONS(1441), - [anon_sym_or] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1441), - [anon_sym_starts_DASHwith] = ACTIONS(1441), - [anon_sym_ends_DASHwith] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ_TILDE] = ACTIONS(1441), - [anon_sym_BANG_TILDE] = ACTIONS(1441), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_SLASH_SLASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_bit_DASHshl] = ACTIONS(1441), - [anon_sym_bit_DASHshr] = ACTIONS(1441), - [anon_sym_bit_DASHand] = ACTIONS(1441), - [anon_sym_bit_DASHxor] = ACTIONS(1441), - [anon_sym_bit_DASHor] = ACTIONS(1441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_DOT_DOT_LT] = ACTIONS(1441), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1429), - [anon_sym_0o] = ACTIONS(1429), - [anon_sym_0x] = ACTIONS(1429), - [sym_val_date] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [anon_sym_null] = ACTIONS(2369), + [aux_sym_cmd_identifier_token38] = ACTIONS(2369), + [aux_sym_cmd_identifier_token39] = ACTIONS(2369), + [aux_sym_cmd_identifier_token40] = ACTIONS(2369), + [sym__newline] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_COMMA] = ACTIONS(2369), + [anon_sym_DOLLAR] = ACTIONS(2369), + [aux_sym_ctrl_match_token1] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym__] = ACTIONS(2367), + [anon_sym_DOT_DOT] = ACTIONS(2367), + [aux_sym_expr_binary_token1] = ACTIONS(2369), + [aux_sym_expr_binary_token2] = ACTIONS(2369), + [aux_sym_expr_binary_token3] = ACTIONS(2369), + [aux_sym_expr_binary_token4] = ACTIONS(2369), + [aux_sym_expr_binary_token5] = ACTIONS(2369), + [aux_sym_expr_binary_token6] = ACTIONS(2369), + [aux_sym_expr_binary_token7] = ACTIONS(2369), + [aux_sym_expr_binary_token8] = ACTIONS(2369), + [aux_sym_expr_binary_token9] = ACTIONS(2369), + [aux_sym_expr_binary_token10] = ACTIONS(2369), + [aux_sym_expr_binary_token11] = ACTIONS(2369), + [aux_sym_expr_binary_token12] = ACTIONS(2369), + [aux_sym_expr_binary_token13] = ACTIONS(2369), + [aux_sym_expr_binary_token14] = ACTIONS(2369), + [aux_sym_expr_binary_token15] = ACTIONS(2369), + [aux_sym_expr_binary_token16] = ACTIONS(2369), + [aux_sym_expr_binary_token17] = ACTIONS(2369), + [aux_sym_expr_binary_token18] = ACTIONS(2369), + [aux_sym_expr_binary_token19] = ACTIONS(2369), + [aux_sym_expr_binary_token20] = ACTIONS(2369), + [aux_sym_expr_binary_token21] = ACTIONS(2369), + [aux_sym_expr_binary_token22] = ACTIONS(2369), + [aux_sym_expr_binary_token23] = ACTIONS(2369), + [aux_sym_expr_binary_token24] = ACTIONS(2369), + [aux_sym_expr_binary_token25] = ACTIONS(2369), + [aux_sym_expr_binary_token26] = ACTIONS(2369), + [aux_sym_expr_binary_token27] = ACTIONS(2369), + [aux_sym_expr_binary_token28] = ACTIONS(2369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2369), + [anon_sym_DOT_DOT_LT] = ACTIONS(2369), + [aux_sym__val_number_decimal_token1] = ACTIONS(2367), + [aux_sym__val_number_decimal_token2] = ACTIONS(2369), + [aux_sym__val_number_decimal_token3] = ACTIONS(2369), + [aux_sym__val_number_decimal_token4] = ACTIONS(2369), + [aux_sym__val_number_token1] = ACTIONS(2369), + [aux_sym__val_number_token2] = ACTIONS(2369), + [aux_sym__val_number_token3] = ACTIONS(2369), + [anon_sym_0b] = ACTIONS(2367), + [anon_sym_0o] = ACTIONS(2367), + [anon_sym_0x] = ACTIONS(2367), + [sym_val_date] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(2369), + [sym__str_single_quotes] = ACTIONS(2369), + [sym__str_back_ticks] = ACTIONS(2369), + [anon_sym_err_GT] = ACTIONS(2367), + [anon_sym_out_GT] = ACTIONS(2367), + [anon_sym_e_GT] = ACTIONS(2367), + [anon_sym_o_GT] = ACTIONS(2367), + [anon_sym_err_PLUSout_GT] = ACTIONS(2367), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2367), + [anon_sym_o_PLUSe_GT] = ACTIONS(2367), + [anon_sym_e_PLUSo_GT] = ACTIONS(2367), + [anon_sym_err_GT_GT] = ACTIONS(2369), + [anon_sym_out_GT_GT] = ACTIONS(2369), + [anon_sym_e_GT_GT] = ACTIONS(2369), + [anon_sym_o_GT_GT] = ACTIONS(2369), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2369), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2369), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2369), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2369), + [aux_sym_unquoted_token1] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(247), }, [1201] = { [sym_comment] = STATE(1201), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_null] = ACTIONS(3217), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(3217), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [aux_sym_ctrl_match_token1] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym__] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_and] = ACTIONS(3217), - [anon_sym_xor] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3217), - [anon_sym_not_DASHin] = ACTIONS(3217), - [anon_sym_starts_DASHwith] = ACTIONS(3217), - [anon_sym_ends_DASHwith] = ACTIONS(3217), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT2] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_EQ_TILDE] = ACTIONS(3217), - [anon_sym_BANG_TILDE] = ACTIONS(3217), - [anon_sym_STAR_STAR] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_mod] = ACTIONS(3217), - [anon_sym_SLASH_SLASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_bit_DASHshl] = ACTIONS(3217), - [anon_sym_bit_DASHshr] = ACTIONS(3217), - [anon_sym_bit_DASHand] = ACTIONS(3217), - [anon_sym_bit_DASHxor] = ACTIONS(3217), - [anon_sym_bit_DASHor] = ACTIONS(3217), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3217), - [anon_sym_DOT_DOT_LT] = ACTIONS(3217), - [aux_sym__val_number_decimal_token1] = ACTIONS(3219), - [aux_sym__val_number_decimal_token2] = ACTIONS(3217), - [anon_sym_DOT2] = ACTIONS(3219), - [aux_sym__val_number_decimal_token3] = ACTIONS(3217), - [aux_sym__val_number_token1] = ACTIONS(3217), - [aux_sym__val_number_token2] = ACTIONS(3217), - [aux_sym__val_number_token3] = ACTIONS(3217), - [anon_sym_0b] = ACTIONS(3219), - [anon_sym_0o] = ACTIONS(3219), - [anon_sym_0x] = ACTIONS(3219), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [sym__str_single_quotes] = ACTIONS(3217), - [sym__str_back_ticks] = ACTIONS(3217), - [anon_sym_err_GT] = ACTIONS(3219), - [anon_sym_out_GT] = ACTIONS(3219), - [anon_sym_e_GT] = ACTIONS(3219), - [anon_sym_o_GT] = ACTIONS(3219), - [anon_sym_err_PLUSout_GT] = ACTIONS(3219), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3219), - [anon_sym_o_PLUSe_GT] = ACTIONS(3219), - [anon_sym_e_PLUSo_GT] = ACTIONS(3219), - [anon_sym_err_GT_GT] = ACTIONS(3217), - [anon_sym_out_GT_GT] = ACTIONS(3217), - [anon_sym_e_GT_GT] = ACTIONS(3217), - [anon_sym_o_GT_GT] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3217), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [sym__newline] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [aux_sym_ctrl_match_token1] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym__] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [aux_sym_expr_binary_token1] = ACTIONS(1901), + [aux_sym_expr_binary_token2] = ACTIONS(1901), + [aux_sym_expr_binary_token3] = ACTIONS(1901), + [aux_sym_expr_binary_token4] = ACTIONS(1901), + [aux_sym_expr_binary_token5] = ACTIONS(1901), + [aux_sym_expr_binary_token6] = ACTIONS(1901), + [aux_sym_expr_binary_token7] = ACTIONS(1901), + [aux_sym_expr_binary_token8] = ACTIONS(1901), + [aux_sym_expr_binary_token9] = ACTIONS(1901), + [aux_sym_expr_binary_token10] = ACTIONS(1901), + [aux_sym_expr_binary_token11] = ACTIONS(1901), + [aux_sym_expr_binary_token12] = ACTIONS(1901), + [aux_sym_expr_binary_token13] = ACTIONS(1901), + [aux_sym_expr_binary_token14] = ACTIONS(1901), + [aux_sym_expr_binary_token15] = ACTIONS(1901), + [aux_sym_expr_binary_token16] = ACTIONS(1901), + [aux_sym_expr_binary_token17] = ACTIONS(1901), + [aux_sym_expr_binary_token18] = ACTIONS(1901), + [aux_sym_expr_binary_token19] = ACTIONS(1901), + [aux_sym_expr_binary_token20] = ACTIONS(1901), + [aux_sym_expr_binary_token21] = ACTIONS(1901), + [aux_sym_expr_binary_token22] = ACTIONS(1901), + [aux_sym_expr_binary_token23] = ACTIONS(1901), + [aux_sym_expr_binary_token24] = ACTIONS(1901), + [aux_sym_expr_binary_token25] = ACTIONS(1901), + [aux_sym_expr_binary_token26] = ACTIONS(1901), + [aux_sym_expr_binary_token27] = ACTIONS(1901), + [aux_sym_expr_binary_token28] = ACTIONS(1901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), + [anon_sym_DOT_DOT_LT] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [anon_sym_0b] = ACTIONS(1899), + [anon_sym_0o] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1899), + [sym_val_date] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_err_GT] = ACTIONS(1899), + [anon_sym_out_GT] = ACTIONS(1899), + [anon_sym_e_GT] = ACTIONS(1899), + [anon_sym_o_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT] = ACTIONS(1899), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), + [aux_sym_unquoted_token1] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(247), }, [1202] = { - [sym_expr_parenthesized] = STATE(4806), - [sym_val_range] = STATE(5328), - [sym__val_range] = STATE(7568), - [sym__val_range_with_end] = STATE(7526), - [sym__value] = STATE(5328), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(5234), - [sym_val_variable] = STATE(4846), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(4244), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4836), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym__unquoted_in_list] = STATE(4999), - [sym__unquoted_in_list_with_expr] = STATE(5328), - [sym__unquoted_anonymous_prefix] = STATE(7068), [sym_comment] = STATE(1202), - [aux_sym_shebang_repeat1] = STATE(3057), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3549), - [aux_sym_cmd_identifier_token38] = ACTIONS(3551), - [aux_sym_cmd_identifier_token39] = ACTIONS(3551), - [aux_sym_cmd_identifier_token40] = ACTIONS(3551), - [sym__newline] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_DOLLAR] = ACTIONS(3559), - [aux_sym_ctrl_match_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT] = ACTIONS(3563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3565), - [anon_sym_DOT_DOT_LT] = ACTIONS(3565), - [aux_sym__val_number_decimal_token1] = ACTIONS(3567), - [aux_sym__val_number_decimal_token2] = ACTIONS(3569), - [anon_sym_DOT2] = ACTIONS(3571), - [aux_sym__val_number_decimal_token3] = ACTIONS(3573), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3583), - [sym__str_single_quotes] = ACTIONS(3585), - [sym__str_back_ticks] = ACTIONS(3585), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3591), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_null] = ACTIONS(1837), + [aux_sym_cmd_identifier_token38] = ACTIONS(1837), + [aux_sym_cmd_identifier_token39] = ACTIONS(1837), + [aux_sym_cmd_identifier_token40] = ACTIONS(1837), + [sym__newline] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1837), + [aux_sym_ctrl_match_token1] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym__] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [aux_sym_expr_binary_token1] = ACTIONS(1837), + [aux_sym_expr_binary_token2] = ACTIONS(1837), + [aux_sym_expr_binary_token3] = ACTIONS(1837), + [aux_sym_expr_binary_token4] = ACTIONS(1837), + [aux_sym_expr_binary_token5] = ACTIONS(1837), + [aux_sym_expr_binary_token6] = ACTIONS(1837), + [aux_sym_expr_binary_token7] = ACTIONS(1837), + [aux_sym_expr_binary_token8] = ACTIONS(1837), + [aux_sym_expr_binary_token9] = ACTIONS(1837), + [aux_sym_expr_binary_token10] = ACTIONS(1837), + [aux_sym_expr_binary_token11] = ACTIONS(1837), + [aux_sym_expr_binary_token12] = ACTIONS(1837), + [aux_sym_expr_binary_token13] = ACTIONS(1837), + [aux_sym_expr_binary_token14] = ACTIONS(1837), + [aux_sym_expr_binary_token15] = ACTIONS(1837), + [aux_sym_expr_binary_token16] = ACTIONS(1837), + [aux_sym_expr_binary_token17] = ACTIONS(1837), + [aux_sym_expr_binary_token18] = ACTIONS(1837), + [aux_sym_expr_binary_token19] = ACTIONS(1837), + [aux_sym_expr_binary_token20] = ACTIONS(1837), + [aux_sym_expr_binary_token21] = ACTIONS(1837), + [aux_sym_expr_binary_token22] = ACTIONS(1837), + [aux_sym_expr_binary_token23] = ACTIONS(1837), + [aux_sym_expr_binary_token24] = ACTIONS(1837), + [aux_sym_expr_binary_token25] = ACTIONS(1837), + [aux_sym_expr_binary_token26] = ACTIONS(1837), + [aux_sym_expr_binary_token27] = ACTIONS(1837), + [aux_sym_expr_binary_token28] = ACTIONS(1837), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_LT] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [anon_sym_0b] = ACTIONS(1835), + [anon_sym_0o] = ACTIONS(1835), + [anon_sym_0x] = ACTIONS(1835), + [sym_val_date] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_err_GT] = ACTIONS(1835), + [anon_sym_out_GT] = ACTIONS(1835), + [anon_sym_e_GT] = ACTIONS(1835), + [anon_sym_o_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT] = ACTIONS(1835), + [anon_sym_err_GT_GT] = ACTIONS(1837), + [anon_sym_out_GT_GT] = ACTIONS(1837), + [anon_sym_e_GT_GT] = ACTIONS(1837), + [anon_sym_o_GT_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), + [aux_sym_unquoted_token1] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(247), }, [1203] = { - [sym_match_arm] = STATE(3162), - [sym_default_arm] = STATE(7461), - [sym_match_pattern] = STATE(7966), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), [sym_comment] = STATE(1203), - [aux_sym_shebang_repeat1] = STATE(1235), - [aux_sym_ctrl_match_repeat1] = STATE(1218), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3607), - [anon_sym__] = ACTIONS(3609), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2373), + [aux_sym_cmd_identifier_token38] = ACTIONS(2373), + [aux_sym_cmd_identifier_token39] = ACTIONS(2373), + [aux_sym_cmd_identifier_token40] = ACTIONS(2373), + [sym__newline] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2373), + [aux_sym_ctrl_match_token1] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym__] = ACTIONS(2371), + [anon_sym_DOT_DOT] = ACTIONS(2371), + [aux_sym_expr_binary_token1] = ACTIONS(2373), + [aux_sym_expr_binary_token2] = ACTIONS(2373), + [aux_sym_expr_binary_token3] = ACTIONS(2373), + [aux_sym_expr_binary_token4] = ACTIONS(2373), + [aux_sym_expr_binary_token5] = ACTIONS(2373), + [aux_sym_expr_binary_token6] = ACTIONS(2373), + [aux_sym_expr_binary_token7] = ACTIONS(2373), + [aux_sym_expr_binary_token8] = ACTIONS(2373), + [aux_sym_expr_binary_token9] = ACTIONS(2373), + [aux_sym_expr_binary_token10] = ACTIONS(2373), + [aux_sym_expr_binary_token11] = ACTIONS(2373), + [aux_sym_expr_binary_token12] = ACTIONS(2373), + [aux_sym_expr_binary_token13] = ACTIONS(2373), + [aux_sym_expr_binary_token14] = ACTIONS(2373), + [aux_sym_expr_binary_token15] = ACTIONS(2373), + [aux_sym_expr_binary_token16] = ACTIONS(2373), + [aux_sym_expr_binary_token17] = ACTIONS(2373), + [aux_sym_expr_binary_token18] = ACTIONS(2373), + [aux_sym_expr_binary_token19] = ACTIONS(2373), + [aux_sym_expr_binary_token20] = ACTIONS(2373), + [aux_sym_expr_binary_token21] = ACTIONS(2373), + [aux_sym_expr_binary_token22] = ACTIONS(2373), + [aux_sym_expr_binary_token23] = ACTIONS(2373), + [aux_sym_expr_binary_token24] = ACTIONS(2373), + [aux_sym_expr_binary_token25] = ACTIONS(2373), + [aux_sym_expr_binary_token26] = ACTIONS(2373), + [aux_sym_expr_binary_token27] = ACTIONS(2373), + [aux_sym_expr_binary_token28] = ACTIONS(2373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2373), + [anon_sym_DOT_DOT_LT] = ACTIONS(2373), + [aux_sym__val_number_decimal_token1] = ACTIONS(2371), + [aux_sym__val_number_decimal_token2] = ACTIONS(2373), + [aux_sym__val_number_decimal_token3] = ACTIONS(2373), + [aux_sym__val_number_decimal_token4] = ACTIONS(2373), + [aux_sym__val_number_token1] = ACTIONS(2373), + [aux_sym__val_number_token2] = ACTIONS(2373), + [aux_sym__val_number_token3] = ACTIONS(2373), + [anon_sym_0b] = ACTIONS(2371), + [anon_sym_0o] = ACTIONS(2371), + [anon_sym_0x] = ACTIONS(2371), + [sym_val_date] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [sym__str_single_quotes] = ACTIONS(2373), + [sym__str_back_ticks] = ACTIONS(2373), + [anon_sym_err_GT] = ACTIONS(2371), + [anon_sym_out_GT] = ACTIONS(2371), + [anon_sym_e_GT] = ACTIONS(2371), + [anon_sym_o_GT] = ACTIONS(2371), + [anon_sym_err_PLUSout_GT] = ACTIONS(2371), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2371), + [anon_sym_o_PLUSe_GT] = ACTIONS(2371), + [anon_sym_e_PLUSo_GT] = ACTIONS(2371), + [anon_sym_err_GT_GT] = ACTIONS(2373), + [anon_sym_out_GT_GT] = ACTIONS(2373), + [anon_sym_e_GT_GT] = ACTIONS(2373), + [anon_sym_o_GT_GT] = ACTIONS(2373), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2373), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2373), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2373), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2373), + [aux_sym_unquoted_token1] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(247), }, [1204] = { - [sym_match_arm] = STATE(3162), - [sym_default_arm] = STATE(7101), - [sym_match_pattern] = STATE(7966), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), [sym_comment] = STATE(1204), - [aux_sym_shebang_repeat1] = STATE(1227), - [aux_sym_ctrl_match_repeat1] = STATE(1218), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3625), - [anon_sym__] = ACTIONS(3609), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_null] = ACTIONS(2381), + [aux_sym_cmd_identifier_token38] = ACTIONS(2381), + [aux_sym_cmd_identifier_token39] = ACTIONS(2381), + [aux_sym_cmd_identifier_token40] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_COMMA] = ACTIONS(2381), + [anon_sym_DOLLAR] = ACTIONS(2381), + [aux_sym_ctrl_match_token1] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym__] = ACTIONS(2379), + [anon_sym_DOT_DOT] = ACTIONS(2379), + [aux_sym_expr_binary_token1] = ACTIONS(2381), + [aux_sym_expr_binary_token2] = ACTIONS(2381), + [aux_sym_expr_binary_token3] = ACTIONS(2381), + [aux_sym_expr_binary_token4] = ACTIONS(2381), + [aux_sym_expr_binary_token5] = ACTIONS(2381), + [aux_sym_expr_binary_token6] = ACTIONS(2381), + [aux_sym_expr_binary_token7] = ACTIONS(2381), + [aux_sym_expr_binary_token8] = ACTIONS(2381), + [aux_sym_expr_binary_token9] = ACTIONS(2381), + [aux_sym_expr_binary_token10] = ACTIONS(2381), + [aux_sym_expr_binary_token11] = ACTIONS(2381), + [aux_sym_expr_binary_token12] = ACTIONS(2381), + [aux_sym_expr_binary_token13] = ACTIONS(2381), + [aux_sym_expr_binary_token14] = ACTIONS(2381), + [aux_sym_expr_binary_token15] = ACTIONS(2381), + [aux_sym_expr_binary_token16] = ACTIONS(2381), + [aux_sym_expr_binary_token17] = ACTIONS(2381), + [aux_sym_expr_binary_token18] = ACTIONS(2381), + [aux_sym_expr_binary_token19] = ACTIONS(2381), + [aux_sym_expr_binary_token20] = ACTIONS(2381), + [aux_sym_expr_binary_token21] = ACTIONS(2381), + [aux_sym_expr_binary_token22] = ACTIONS(2381), + [aux_sym_expr_binary_token23] = ACTIONS(2381), + [aux_sym_expr_binary_token24] = ACTIONS(2381), + [aux_sym_expr_binary_token25] = ACTIONS(2381), + [aux_sym_expr_binary_token26] = ACTIONS(2381), + [aux_sym_expr_binary_token27] = ACTIONS(2381), + [aux_sym_expr_binary_token28] = ACTIONS(2381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2381), + [anon_sym_DOT_DOT_LT] = ACTIONS(2381), + [aux_sym__val_number_decimal_token1] = ACTIONS(2379), + [aux_sym__val_number_decimal_token2] = ACTIONS(2381), + [aux_sym__val_number_decimal_token3] = ACTIONS(2381), + [aux_sym__val_number_decimal_token4] = ACTIONS(2381), + [aux_sym__val_number_token1] = ACTIONS(2381), + [aux_sym__val_number_token2] = ACTIONS(2381), + [aux_sym__val_number_token3] = ACTIONS(2381), + [anon_sym_0b] = ACTIONS(2379), + [anon_sym_0o] = ACTIONS(2379), + [anon_sym_0x] = ACTIONS(2379), + [sym_val_date] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym__str_single_quotes] = ACTIONS(2381), + [sym__str_back_ticks] = ACTIONS(2381), + [anon_sym_err_GT] = ACTIONS(2379), + [anon_sym_out_GT] = ACTIONS(2379), + [anon_sym_e_GT] = ACTIONS(2379), + [anon_sym_o_GT] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT] = ACTIONS(2379), + [anon_sym_err_GT_GT] = ACTIONS(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [aux_sym_unquoted_token1] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(247), }, [1205] = { - [sym_match_arm] = STATE(3162), - [sym_default_arm] = STATE(7457), - [sym_match_pattern] = STATE(7966), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), [sym_comment] = STATE(1205), - [aux_sym_shebang_repeat1] = STATE(1232), - [aux_sym_ctrl_match_repeat1] = STATE(1218), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym__] = ACTIONS(3609), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [sym__newline] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_COMMA] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [aux_sym_ctrl_match_token1] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [aux_sym_expr_binary_token1] = ACTIONS(1841), + [aux_sym_expr_binary_token2] = ACTIONS(1841), + [aux_sym_expr_binary_token3] = ACTIONS(1841), + [aux_sym_expr_binary_token4] = ACTIONS(1841), + [aux_sym_expr_binary_token5] = ACTIONS(1841), + [aux_sym_expr_binary_token6] = ACTIONS(1841), + [aux_sym_expr_binary_token7] = ACTIONS(1841), + [aux_sym_expr_binary_token8] = ACTIONS(1841), + [aux_sym_expr_binary_token9] = ACTIONS(1841), + [aux_sym_expr_binary_token10] = ACTIONS(1841), + [aux_sym_expr_binary_token11] = ACTIONS(1841), + [aux_sym_expr_binary_token12] = ACTIONS(1841), + [aux_sym_expr_binary_token13] = ACTIONS(1841), + [aux_sym_expr_binary_token14] = ACTIONS(1841), + [aux_sym_expr_binary_token15] = ACTIONS(1841), + [aux_sym_expr_binary_token16] = ACTIONS(1841), + [aux_sym_expr_binary_token17] = ACTIONS(1841), + [aux_sym_expr_binary_token18] = ACTIONS(1841), + [aux_sym_expr_binary_token19] = ACTIONS(1841), + [aux_sym_expr_binary_token20] = ACTIONS(1841), + [aux_sym_expr_binary_token21] = ACTIONS(1841), + [aux_sym_expr_binary_token22] = ACTIONS(1841), + [aux_sym_expr_binary_token23] = ACTIONS(1841), + [aux_sym_expr_binary_token24] = ACTIONS(1841), + [aux_sym_expr_binary_token25] = ACTIONS(1841), + [aux_sym_expr_binary_token26] = ACTIONS(1841), + [aux_sym_expr_binary_token27] = ACTIONS(1841), + [aux_sym_expr_binary_token28] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_err_GT] = ACTIONS(1839), + [anon_sym_out_GT] = ACTIONS(1839), + [anon_sym_e_GT] = ACTIONS(1839), + [anon_sym_o_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT] = ACTIONS(1839), + [anon_sym_err_GT_GT] = ACTIONS(1841), + [anon_sym_out_GT_GT] = ACTIONS(1841), + [anon_sym_e_GT_GT] = ACTIONS(1841), + [anon_sym_o_GT_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), + [aux_sym_unquoted_token1] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(247), }, [1206] = { - [sym_expr_parenthesized] = STATE(4830), - [sym_val_range] = STATE(5378), - [sym__val_range] = STATE(7568), - [sym__val_range_with_end] = STATE(7526), - [sym__value] = STATE(5378), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(5234), - [sym_val_variable] = STATE(4846), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(4244), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4836), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym__unquoted_in_list] = STATE(4975), - [sym__unquoted_in_list_with_expr] = STATE(5378), - [sym__unquoted_anonymous_prefix] = STATE(7068), [sym_comment] = STATE(1206), - [aux_sym_shebang_repeat1] = STATE(1202), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3549), - [aux_sym_cmd_identifier_token38] = ACTIONS(3551), - [aux_sym_cmd_identifier_token39] = ACTIONS(3551), - [aux_sym_cmd_identifier_token40] = ACTIONS(3551), - [sym__newline] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_DOLLAR] = ACTIONS(3559), - [aux_sym_ctrl_match_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT] = ACTIONS(3563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3565), - [anon_sym_DOT_DOT_LT] = ACTIONS(3565), - [aux_sym__val_number_decimal_token1] = ACTIONS(3567), - [aux_sym__val_number_decimal_token2] = ACTIONS(3569), - [anon_sym_DOT2] = ACTIONS(3571), - [aux_sym__val_number_decimal_token3] = ACTIONS(3573), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3583), - [sym__str_single_quotes] = ACTIONS(3585), - [sym__str_back_ticks] = ACTIONS(3585), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3591), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2385), + [aux_sym_cmd_identifier_token38] = ACTIONS(2385), + [aux_sym_cmd_identifier_token39] = ACTIONS(2385), + [aux_sym_cmd_identifier_token40] = ACTIONS(2385), + [sym__newline] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_COMMA] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2385), + [aux_sym_ctrl_match_token1] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym__] = ACTIONS(2383), + [anon_sym_DOT_DOT] = ACTIONS(2383), + [aux_sym_expr_binary_token1] = ACTIONS(2385), + [aux_sym_expr_binary_token2] = ACTIONS(2385), + [aux_sym_expr_binary_token3] = ACTIONS(2385), + [aux_sym_expr_binary_token4] = ACTIONS(2385), + [aux_sym_expr_binary_token5] = ACTIONS(2385), + [aux_sym_expr_binary_token6] = ACTIONS(2385), + [aux_sym_expr_binary_token7] = ACTIONS(2385), + [aux_sym_expr_binary_token8] = ACTIONS(2385), + [aux_sym_expr_binary_token9] = ACTIONS(2385), + [aux_sym_expr_binary_token10] = ACTIONS(2385), + [aux_sym_expr_binary_token11] = ACTIONS(2385), + [aux_sym_expr_binary_token12] = ACTIONS(2385), + [aux_sym_expr_binary_token13] = ACTIONS(2385), + [aux_sym_expr_binary_token14] = ACTIONS(2385), + [aux_sym_expr_binary_token15] = ACTIONS(2385), + [aux_sym_expr_binary_token16] = ACTIONS(2385), + [aux_sym_expr_binary_token17] = ACTIONS(2385), + [aux_sym_expr_binary_token18] = ACTIONS(2385), + [aux_sym_expr_binary_token19] = ACTIONS(2385), + [aux_sym_expr_binary_token20] = ACTIONS(2385), + [aux_sym_expr_binary_token21] = ACTIONS(2385), + [aux_sym_expr_binary_token22] = ACTIONS(2385), + [aux_sym_expr_binary_token23] = ACTIONS(2385), + [aux_sym_expr_binary_token24] = ACTIONS(2385), + [aux_sym_expr_binary_token25] = ACTIONS(2385), + [aux_sym_expr_binary_token26] = ACTIONS(2385), + [aux_sym_expr_binary_token27] = ACTIONS(2385), + [aux_sym_expr_binary_token28] = ACTIONS(2385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2385), + [anon_sym_DOT_DOT_LT] = ACTIONS(2385), + [aux_sym__val_number_decimal_token1] = ACTIONS(2383), + [aux_sym__val_number_decimal_token2] = ACTIONS(2385), + [aux_sym__val_number_decimal_token3] = ACTIONS(2385), + [aux_sym__val_number_decimal_token4] = ACTIONS(2385), + [aux_sym__val_number_token1] = ACTIONS(2385), + [aux_sym__val_number_token2] = ACTIONS(2385), + [aux_sym__val_number_token3] = ACTIONS(2385), + [anon_sym_0b] = ACTIONS(2383), + [anon_sym_0o] = ACTIONS(2383), + [anon_sym_0x] = ACTIONS(2383), + [sym_val_date] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(2385), + [sym__str_single_quotes] = ACTIONS(2385), + [sym__str_back_ticks] = ACTIONS(2385), + [anon_sym_err_GT] = ACTIONS(2383), + [anon_sym_out_GT] = ACTIONS(2383), + [anon_sym_e_GT] = ACTIONS(2383), + [anon_sym_o_GT] = ACTIONS(2383), + [anon_sym_err_PLUSout_GT] = ACTIONS(2383), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2383), + [anon_sym_o_PLUSe_GT] = ACTIONS(2383), + [anon_sym_e_PLUSo_GT] = ACTIONS(2383), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [aux_sym_unquoted_token1] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(247), }, [1207] = { - [sym_expr_parenthesized] = STATE(4870), - [sym_val_range] = STATE(5397), - [sym__val_range] = STATE(7568), - [sym__val_range_with_end] = STATE(7526), - [sym__value] = STATE(5397), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(5234), - [sym_val_variable] = STATE(4846), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(4244), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4836), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym__unquoted_in_list] = STATE(5071), - [sym__unquoted_in_list_with_expr] = STATE(5397), - [sym__unquoted_anonymous_prefix] = STATE(7068), [sym_comment] = STATE(1207), - [aux_sym_shebang_repeat1] = STATE(1208), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3549), - [aux_sym_cmd_identifier_token38] = ACTIONS(3551), - [aux_sym_cmd_identifier_token39] = ACTIONS(3551), - [aux_sym_cmd_identifier_token40] = ACTIONS(3551), - [sym__newline] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_DOLLAR] = ACTIONS(3559), - [aux_sym_ctrl_match_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT] = ACTIONS(3563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3565), - [anon_sym_DOT_DOT_LT] = ACTIONS(3565), - [aux_sym__val_number_decimal_token1] = ACTIONS(3567), - [aux_sym__val_number_decimal_token2] = ACTIONS(3569), - [anon_sym_DOT2] = ACTIONS(3571), - [aux_sym__val_number_decimal_token3] = ACTIONS(3573), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3583), - [sym__str_single_quotes] = ACTIONS(3585), - [sym__str_back_ticks] = ACTIONS(3585), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3591), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(3199), + [aux_sym_cmd_identifier_token39] = ACTIONS(3199), + [aux_sym_cmd_identifier_token40] = ACTIONS(3199), + [sym__newline] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DOLLAR] = ACTIONS(3199), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym__] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_LT] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3201), + [aux_sym__val_number_decimal_token2] = ACTIONS(3199), + [aux_sym__val_number_decimal_token3] = ACTIONS(3199), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3199), + [aux_sym__val_number_token2] = ACTIONS(3199), + [aux_sym__val_number_token3] = ACTIONS(3199), + [anon_sym_0b] = ACTIONS(3201), + [anon_sym_0o] = ACTIONS(3201), + [anon_sym_0x] = ACTIONS(3201), + [sym_val_date] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__str_single_quotes] = ACTIONS(3199), + [sym__str_back_ticks] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(247), }, [1208] = { - [sym_expr_parenthesized] = STATE(4830), - [sym_val_range] = STATE(5378), - [sym__val_range] = STATE(7568), - [sym__val_range_with_end] = STATE(7526), - [sym__value] = STATE(5378), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(5234), - [sym_val_variable] = STATE(4846), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(4244), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4836), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym__unquoted_in_list] = STATE(4975), - [sym__unquoted_in_list_with_expr] = STATE(5378), - [sym__unquoted_anonymous_prefix] = STATE(7068), + [sym_match_arm] = STATE(3233), + [sym_default_arm] = STATE(7512), + [sym_match_pattern] = STATE(8003), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1208), - [aux_sym_shebang_repeat1] = STATE(3057), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3549), - [aux_sym_cmd_identifier_token38] = ACTIONS(3551), - [aux_sym_cmd_identifier_token39] = ACTIONS(3551), - [aux_sym_cmd_identifier_token40] = ACTIONS(3551), - [sym__newline] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_DOLLAR] = ACTIONS(3559), - [aux_sym_ctrl_match_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT] = ACTIONS(3563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3565), - [anon_sym_DOT_DOT_LT] = ACTIONS(3565), - [aux_sym__val_number_decimal_token1] = ACTIONS(3567), - [aux_sym__val_number_decimal_token2] = ACTIONS(3569), - [anon_sym_DOT2] = ACTIONS(3571), - [aux_sym__val_number_decimal_token3] = ACTIONS(3573), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3583), - [sym__str_single_quotes] = ACTIONS(3585), - [sym__str_back_ticks] = ACTIONS(3585), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3591), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1246), + [aux_sym_ctrl_match_repeat1] = STATE(1222), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3649), + [anon_sym__] = ACTIONS(3651), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1209] = { - [sym_match_arm] = STATE(3162), - [sym_default_arm] = STATE(7297), - [sym_match_pattern] = STATE(7966), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym_match_arm] = STATE(3233), + [sym_default_arm] = STATE(7152), + [sym_match_pattern] = STATE(8003), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1209), - [aux_sym_shebang_repeat1] = STATE(1226), - [aux_sym_ctrl_match_repeat1] = STATE(1205), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3629), - [anon_sym__] = ACTIONS(3609), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1238), + [aux_sym_ctrl_match_repeat1] = STATE(1224), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3667), + [anon_sym__] = ACTIONS(3651), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1210] = { - [sym_expr_parenthesized] = STATE(4830), - [sym_val_range] = STATE(5378), - [sym__val_range] = STATE(7568), - [sym__val_range_with_end] = STATE(7526), - [sym__value] = STATE(5378), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(4934), - [sym_val_variable] = STATE(4846), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(4206), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4836), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym__unquoted_in_list] = STATE(4975), - [sym__unquoted_in_list_with_expr] = STATE(5378), - [sym__unquoted_anonymous_prefix] = STATE(7068), + [sym_expr_parenthesized] = STATE(4931), + [sym_val_range] = STATE(5405), + [sym__val_range] = STATE(7788), + [sym__val_range_with_end] = STATE(7565), + [sym__value] = STATE(5405), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(5055), + [sym_val_variable] = STATE(4939), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(4297), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4919), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym__unquoted_in_list] = STATE(5175), + [sym__unquoted_in_list_with_expr] = STATE(5405), + [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1210), - [aux_sym_shebang_repeat1] = STATE(3057), - [anon_sym_true] = ACTIONS(3631), - [anon_sym_false] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [aux_sym_cmd_identifier_token38] = ACTIONS(3635), - [aux_sym_cmd_identifier_token39] = ACTIONS(3635), - [aux_sym_cmd_identifier_token40] = ACTIONS(3635), - [sym__newline] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_DOLLAR] = ACTIONS(3559), - [aux_sym_ctrl_match_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT] = ACTIONS(3637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3639), - [anon_sym_DOT_DOT_LT] = ACTIONS(3639), - [aux_sym__val_number_decimal_token1] = ACTIONS(3641), - [aux_sym__val_number_decimal_token2] = ACTIONS(3643), - [anon_sym_DOT2] = ACTIONS(3645), - [aux_sym__val_number_decimal_token3] = ACTIONS(3647), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(3649), - [anon_sym_DQUOTE] = ACTIONS(3583), - [sym__str_single_quotes] = ACTIONS(3585), - [sym__str_back_ticks] = ACTIONS(3585), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3591), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1215), + [anon_sym_true] = ACTIONS(3669), + [anon_sym_false] = ACTIONS(3669), + [anon_sym_null] = ACTIONS(3671), + [aux_sym_cmd_identifier_token38] = ACTIONS(3673), + [aux_sym_cmd_identifier_token39] = ACTIONS(3673), + [aux_sym_cmd_identifier_token40] = ACTIONS(3673), + [sym__newline] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_DOLLAR] = ACTIONS(3681), + [aux_sym_ctrl_match_token1] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), + [anon_sym_DOT_DOT_LT] = ACTIONS(3687), + [aux_sym__val_number_decimal_token1] = ACTIONS(3689), + [aux_sym__val_number_decimal_token2] = ACTIONS(3691), + [aux_sym__val_number_decimal_token3] = ACTIONS(3693), + [aux_sym__val_number_decimal_token4] = ACTIONS(3695), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(3703), + [anon_sym_DQUOTE] = ACTIONS(3705), + [sym__str_single_quotes] = ACTIONS(3707), + [sym__str_back_ticks] = ACTIONS(3707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_POUND] = ACTIONS(247), }, [1211] = { - [sym_expr_parenthesized] = STATE(4830), - [sym_val_range] = STATE(5378), - [sym__val_range] = STATE(7568), - [sym__val_range_with_end] = STATE(7526), - [sym__value] = STATE(5378), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(4934), - [sym_val_variable] = STATE(4846), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(4206), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4836), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym__unquoted_in_list] = STATE(4975), - [sym__unquoted_in_list_with_expr] = STATE(5378), - [sym__unquoted_anonymous_prefix] = STATE(7068), + [sym_match_arm] = STATE(3233), + [sym_default_arm] = STATE(7072), + [sym_match_pattern] = STATE(8003), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1211), - [aux_sym_shebang_repeat1] = STATE(1214), - [anon_sym_true] = ACTIONS(3631), - [anon_sym_false] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [aux_sym_cmd_identifier_token38] = ACTIONS(3635), - [aux_sym_cmd_identifier_token39] = ACTIONS(3635), - [aux_sym_cmd_identifier_token40] = ACTIONS(3635), - [sym__newline] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_DOLLAR] = ACTIONS(3559), - [aux_sym_ctrl_match_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT] = ACTIONS(3637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3639), - [anon_sym_DOT_DOT_LT] = ACTIONS(3639), - [aux_sym__val_number_decimal_token1] = ACTIONS(3641), - [aux_sym__val_number_decimal_token2] = ACTIONS(3643), - [anon_sym_DOT2] = ACTIONS(3645), - [aux_sym__val_number_decimal_token3] = ACTIONS(3647), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(3649), - [anon_sym_DQUOTE] = ACTIONS(3583), - [sym__str_single_quotes] = ACTIONS(3585), - [sym__str_back_ticks] = ACTIONS(3585), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3591), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1248), + [aux_sym_ctrl_match_repeat1] = STATE(1223), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3715), + [anon_sym__] = ACTIONS(3651), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1212] = { - [sym_match_arm] = STATE(3162), - [sym_default_arm] = STATE(7300), - [sym_match_pattern] = STATE(7966), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym_match_arm] = STATE(3233), + [sym_default_arm] = STATE(7144), + [sym_match_pattern] = STATE(8003), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1212), - [aux_sym_shebang_repeat1] = STATE(1236), - [aux_sym_ctrl_match_repeat1] = STATE(1203), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3609), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1237), + [aux_sym_ctrl_match_repeat1] = STATE(1224), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3651), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1213] = { - [sym_expr_parenthesized] = STATE(4870), - [sym_val_range] = STATE(5397), - [sym__val_range] = STATE(7568), - [sym__val_range_with_end] = STATE(7526), - [sym__value] = STATE(5397), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(4934), - [sym_val_variable] = STATE(4846), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(4206), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4836), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym__unquoted_in_list] = STATE(5071), - [sym__unquoted_in_list_with_expr] = STATE(5397), - [sym__unquoted_anonymous_prefix] = STATE(7068), + [sym_expr_parenthesized] = STATE(4931), + [sym_val_range] = STATE(5405), + [sym__val_range] = STATE(7788), + [sym__val_range_with_end] = STATE(7565), + [sym__value] = STATE(5405), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(5288), + [sym_val_variable] = STATE(4939), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(4385), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4919), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym__unquoted_in_list] = STATE(5175), + [sym__unquoted_in_list_with_expr] = STATE(5405), + [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1213), - [aux_sym_shebang_repeat1] = STATE(1210), - [anon_sym_true] = ACTIONS(3631), - [anon_sym_false] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [aux_sym_cmd_identifier_token38] = ACTIONS(3635), - [aux_sym_cmd_identifier_token39] = ACTIONS(3635), - [aux_sym_cmd_identifier_token40] = ACTIONS(3635), - [sym__newline] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_DOLLAR] = ACTIONS(3559), - [aux_sym_ctrl_match_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT] = ACTIONS(3637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3639), - [anon_sym_DOT_DOT_LT] = ACTIONS(3639), - [aux_sym__val_number_decimal_token1] = ACTIONS(3641), - [aux_sym__val_number_decimal_token2] = ACTIONS(3643), - [anon_sym_DOT2] = ACTIONS(3645), - [aux_sym__val_number_decimal_token3] = ACTIONS(3647), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(3649), - [anon_sym_DQUOTE] = ACTIONS(3583), - [sym__str_single_quotes] = ACTIONS(3585), - [sym__str_back_ticks] = ACTIONS(3585), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3591), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1219), + [anon_sym_true] = ACTIONS(3719), + [anon_sym_false] = ACTIONS(3719), + [anon_sym_null] = ACTIONS(3721), + [aux_sym_cmd_identifier_token38] = ACTIONS(3723), + [aux_sym_cmd_identifier_token39] = ACTIONS(3723), + [aux_sym_cmd_identifier_token40] = ACTIONS(3723), + [sym__newline] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_DOLLAR] = ACTIONS(3681), + [aux_sym_ctrl_match_token1] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), + [anon_sym_DOT_DOT_LT] = ACTIONS(3727), + [aux_sym__val_number_decimal_token1] = ACTIONS(3729), + [aux_sym__val_number_decimal_token2] = ACTIONS(3731), + [aux_sym__val_number_decimal_token3] = ACTIONS(3733), + [aux_sym__val_number_decimal_token4] = ACTIONS(3735), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(3737), + [anon_sym_DQUOTE] = ACTIONS(3705), + [sym__str_single_quotes] = ACTIONS(3707), + [sym__str_back_ticks] = ACTIONS(3707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_POUND] = ACTIONS(247), }, [1214] = { - [sym_expr_parenthesized] = STATE(4806), - [sym_val_range] = STATE(5328), - [sym__val_range] = STATE(7568), - [sym__val_range_with_end] = STATE(7526), - [sym__value] = STATE(5328), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(4934), - [sym_val_variable] = STATE(4846), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(4206), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4836), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym__unquoted_in_list] = STATE(4999), - [sym__unquoted_in_list_with_expr] = STATE(5328), - [sym__unquoted_anonymous_prefix] = STATE(7068), + [sym_match_arm] = STATE(3233), + [sym_default_arm] = STATE(7004), + [sym_match_pattern] = STATE(8003), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1214), - [aux_sym_shebang_repeat1] = STATE(3057), - [anon_sym_true] = ACTIONS(3631), - [anon_sym_false] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [aux_sym_cmd_identifier_token38] = ACTIONS(3635), - [aux_sym_cmd_identifier_token39] = ACTIONS(3635), - [aux_sym_cmd_identifier_token40] = ACTIONS(3635), - [sym__newline] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_DOLLAR] = ACTIONS(3559), - [aux_sym_ctrl_match_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT] = ACTIONS(3637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3639), - [anon_sym_DOT_DOT_LT] = ACTIONS(3639), - [aux_sym__val_number_decimal_token1] = ACTIONS(3641), - [aux_sym__val_number_decimal_token2] = ACTIONS(3643), - [anon_sym_DOT2] = ACTIONS(3645), - [aux_sym__val_number_decimal_token3] = ACTIONS(3647), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(3649), - [anon_sym_DQUOTE] = ACTIONS(3583), - [sym__str_single_quotes] = ACTIONS(3585), - [sym__str_back_ticks] = ACTIONS(3585), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3591), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1240), + [aux_sym_ctrl_match_repeat1] = STATE(1212), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3739), + [anon_sym__] = ACTIONS(3651), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1215] = { - [sym_match_arm] = STATE(3162), - [sym_default_arm] = STATE(7253), - [sym_match_pattern] = STATE(7966), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym_expr_parenthesized] = STATE(4955), + [sym_val_range] = STATE(5448), + [sym__val_range] = STATE(7788), + [sym__val_range_with_end] = STATE(7565), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(5055), + [sym_val_variable] = STATE(4939), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(4297), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4919), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym__unquoted_in_list] = STATE(5147), + [sym__unquoted_in_list_with_expr] = STATE(5448), + [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1215), - [aux_sym_shebang_repeat1] = STATE(1234), - [aux_sym_ctrl_match_repeat1] = STATE(1218), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3609), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3101), + [anon_sym_true] = ACTIONS(3669), + [anon_sym_false] = ACTIONS(3669), + [anon_sym_null] = ACTIONS(3671), + [aux_sym_cmd_identifier_token38] = ACTIONS(3673), + [aux_sym_cmd_identifier_token39] = ACTIONS(3673), + [aux_sym_cmd_identifier_token40] = ACTIONS(3673), + [sym__newline] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_DOLLAR] = ACTIONS(3681), + [aux_sym_ctrl_match_token1] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), + [anon_sym_DOT_DOT_LT] = ACTIONS(3687), + [aux_sym__val_number_decimal_token1] = ACTIONS(3689), + [aux_sym__val_number_decimal_token2] = ACTIONS(3691), + [aux_sym__val_number_decimal_token3] = ACTIONS(3693), + [aux_sym__val_number_decimal_token4] = ACTIONS(3695), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(3703), + [anon_sym_DQUOTE] = ACTIONS(3705), + [sym__str_single_quotes] = ACTIONS(3707), + [sym__str_back_ticks] = ACTIONS(3707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_POUND] = ACTIONS(247), }, [1216] = { - [sym_match_arm] = STATE(3162), - [sym_default_arm] = STATE(7138), - [sym_match_pattern] = STATE(7966), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym_expr_parenthesized] = STATE(4955), + [sym_val_range] = STATE(5448), + [sym__val_range] = STATE(7788), + [sym__val_range_with_end] = STATE(7565), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(5055), + [sym_val_variable] = STATE(4939), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(4297), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4919), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym__unquoted_in_list] = STATE(5147), + [sym__unquoted_in_list_with_expr] = STATE(5448), + [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1216), - [aux_sym_shebang_repeat1] = STATE(1228), - [aux_sym_ctrl_match_repeat1] = STATE(1204), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3655), - [anon_sym__] = ACTIONS(3609), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1218), + [anon_sym_true] = ACTIONS(3669), + [anon_sym_false] = ACTIONS(3669), + [anon_sym_null] = ACTIONS(3671), + [aux_sym_cmd_identifier_token38] = ACTIONS(3673), + [aux_sym_cmd_identifier_token39] = ACTIONS(3673), + [aux_sym_cmd_identifier_token40] = ACTIONS(3673), + [sym__newline] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_DOLLAR] = ACTIONS(3681), + [aux_sym_ctrl_match_token1] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), + [anon_sym_DOT_DOT_LT] = ACTIONS(3687), + [aux_sym__val_number_decimal_token1] = ACTIONS(3689), + [aux_sym__val_number_decimal_token2] = ACTIONS(3691), + [aux_sym__val_number_decimal_token3] = ACTIONS(3693), + [aux_sym__val_number_decimal_token4] = ACTIONS(3695), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(3703), + [anon_sym_DQUOTE] = ACTIONS(3705), + [sym__str_single_quotes] = ACTIONS(3707), + [sym__str_back_ticks] = ACTIONS(3707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_POUND] = ACTIONS(247), }, [1217] = { - [sym_match_arm] = STATE(3162), - [sym_default_arm] = STATE(7299), - [sym_match_pattern] = STATE(7966), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym_match_arm] = STATE(3233), + [sym_default_arm] = STATE(7007), + [sym_match_pattern] = STATE(8003), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1217), - [aux_sym_shebang_repeat1] = STATE(1239), - [aux_sym_ctrl_match_repeat1] = STATE(1215), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3657), - [anon_sym__] = ACTIONS(3609), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1247), + [aux_sym_ctrl_match_repeat1] = STATE(1209), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3741), + [anon_sym__] = ACTIONS(3651), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1218] = { - [sym_match_arm] = STATE(3162), - [sym_match_pattern] = STATE(7966), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym_expr_parenthesized] = STATE(4938), + [sym_val_range] = STATE(5426), + [sym__val_range] = STATE(7788), + [sym__val_range_with_end] = STATE(7565), + [sym__value] = STATE(5426), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(5055), + [sym_val_variable] = STATE(4939), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(4297), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4919), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym__unquoted_in_list] = STATE(5192), + [sym__unquoted_in_list_with_expr] = STATE(5426), + [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1218), - [aux_sym_shebang_repeat1] = STATE(1254), - [aux_sym_ctrl_match_repeat1] = STATE(1218), - [anon_sym_true] = ACTIONS(3659), - [anon_sym_false] = ACTIONS(3659), - [anon_sym_null] = ACTIONS(3662), - [aux_sym_cmd_identifier_token38] = ACTIONS(3665), - [aux_sym_cmd_identifier_token39] = ACTIONS(3665), - [aux_sym_cmd_identifier_token40] = ACTIONS(3665), - [sym__newline] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_DOLLAR] = ACTIONS(3677), - [aux_sym_ctrl_match_token1] = ACTIONS(3680), - [anon_sym_RBRACE] = ACTIONS(3683), - [anon_sym__] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3691), - [anon_sym_DOT_DOT_LT] = ACTIONS(3691), - [aux_sym__val_number_decimal_token1] = ACTIONS(3694), - [aux_sym__val_number_decimal_token2] = ACTIONS(3697), - [anon_sym_DOT2] = ACTIONS(3700), - [aux_sym__val_number_decimal_token3] = ACTIONS(3703), - [aux_sym__val_number_token1] = ACTIONS(3706), - [aux_sym__val_number_token2] = ACTIONS(3706), - [aux_sym__val_number_token3] = ACTIONS(3706), - [anon_sym_0b] = ACTIONS(3709), - [anon_sym_0o] = ACTIONS(3712), - [anon_sym_0x] = ACTIONS(3712), - [sym_val_date] = ACTIONS(3715), - [anon_sym_DQUOTE] = ACTIONS(3718), - [sym__str_single_quotes] = ACTIONS(3721), - [sym__str_back_ticks] = ACTIONS(3721), - [anon_sym_err_GT] = ACTIONS(3724), - [anon_sym_out_GT] = ACTIONS(3724), - [anon_sym_e_GT] = ACTIONS(3724), - [anon_sym_o_GT] = ACTIONS(3724), - [anon_sym_err_PLUSout_GT] = ACTIONS(3724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3724), - [anon_sym_o_PLUSe_GT] = ACTIONS(3724), - [anon_sym_e_PLUSo_GT] = ACTIONS(3724), - [anon_sym_err_GT_GT] = ACTIONS(3727), - [anon_sym_out_GT_GT] = ACTIONS(3727), - [anon_sym_e_GT_GT] = ACTIONS(3727), - [anon_sym_o_GT_GT] = ACTIONS(3727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3727), - [aux_sym_unquoted_token1] = ACTIONS(3730), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3101), + [anon_sym_true] = ACTIONS(3669), + [anon_sym_false] = ACTIONS(3669), + [anon_sym_null] = ACTIONS(3671), + [aux_sym_cmd_identifier_token38] = ACTIONS(3673), + [aux_sym_cmd_identifier_token39] = ACTIONS(3673), + [aux_sym_cmd_identifier_token40] = ACTIONS(3673), + [sym__newline] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_DOLLAR] = ACTIONS(3681), + [aux_sym_ctrl_match_token1] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), + [anon_sym_DOT_DOT_LT] = ACTIONS(3687), + [aux_sym__val_number_decimal_token1] = ACTIONS(3689), + [aux_sym__val_number_decimal_token2] = ACTIONS(3691), + [aux_sym__val_number_decimal_token3] = ACTIONS(3693), + [aux_sym__val_number_decimal_token4] = ACTIONS(3695), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(3703), + [anon_sym_DQUOTE] = ACTIONS(3705), + [sym__str_single_quotes] = ACTIONS(3707), + [sym__str_back_ticks] = ACTIONS(3707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_POUND] = ACTIONS(247), }, [1219] = { - [sym_expr_parenthesized] = STATE(6210), - [sym_val_range] = STATE(539), - [sym__val_range] = STATE(7624), - [sym__val_range_with_end] = STATE(7486), - [sym__value] = STATE(539), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6469), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5329), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_record] = STATE(467), - [sym__unquoted_in_record_with_expr] = STATE(539), - [sym__unquoted_anonymous_prefix] = STATE(6944), + [sym_expr_parenthesized] = STATE(4955), + [sym_val_range] = STATE(5448), + [sym__val_range] = STATE(7788), + [sym__val_range_with_end] = STATE(7565), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(5288), + [sym_val_variable] = STATE(4939), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(4385), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4919), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym__unquoted_in_list] = STATE(5147), + [sym__unquoted_in_list_with_expr] = STATE(5448), + [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1219), - [anon_sym_true] = ACTIONS(3733), - [anon_sym_false] = ACTIONS(3733), - [anon_sym_null] = ACTIONS(3735), - [aux_sym_cmd_identifier_token38] = ACTIONS(3737), - [aux_sym_cmd_identifier_token39] = ACTIONS(3737), - [aux_sym_cmd_identifier_token40] = ACTIONS(3737), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(3739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3741), - [anon_sym_DOT_DOT_LT] = ACTIONS(3741), - [aux_sym__val_number_decimal_token1] = ACTIONS(3743), - [aux_sym__val_number_decimal_token2] = ACTIONS(3745), - [anon_sym_DOT2] = ACTIONS(3747), - [aux_sym__val_number_decimal_token3] = ACTIONS(3749), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(3751), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_err_GT] = ACTIONS(3753), - [anon_sym_out_GT] = ACTIONS(3753), - [anon_sym_e_GT] = ACTIONS(3753), - [anon_sym_o_GT] = ACTIONS(3753), - [anon_sym_err_PLUSout_GT] = ACTIONS(3753), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3753), - [anon_sym_o_PLUSe_GT] = ACTIONS(3753), - [anon_sym_e_PLUSo_GT] = ACTIONS(3753), - [anon_sym_err_GT_GT] = ACTIONS(3755), - [anon_sym_out_GT_GT] = ACTIONS(3755), - [anon_sym_e_GT_GT] = ACTIONS(3755), - [anon_sym_o_GT_GT] = ACTIONS(3755), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3755), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3755), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3755), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3755), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3757), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3101), + [anon_sym_true] = ACTIONS(3719), + [anon_sym_false] = ACTIONS(3719), + [anon_sym_null] = ACTIONS(3721), + [aux_sym_cmd_identifier_token38] = ACTIONS(3723), + [aux_sym_cmd_identifier_token39] = ACTIONS(3723), + [aux_sym_cmd_identifier_token40] = ACTIONS(3723), + [sym__newline] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_DOLLAR] = ACTIONS(3681), + [aux_sym_ctrl_match_token1] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), + [anon_sym_DOT_DOT_LT] = ACTIONS(3727), + [aux_sym__val_number_decimal_token1] = ACTIONS(3729), + [aux_sym__val_number_decimal_token2] = ACTIONS(3731), + [aux_sym__val_number_decimal_token3] = ACTIONS(3733), + [aux_sym__val_number_decimal_token4] = ACTIONS(3735), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(3737), + [anon_sym_DQUOTE] = ACTIONS(3705), + [sym__str_single_quotes] = ACTIONS(3707), + [sym__str_back_ticks] = ACTIONS(3707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_POUND] = ACTIONS(247), }, [1220] = { - [sym_expr_parenthesized] = STATE(395), - [sym_val_range] = STATE(539), - [sym__val_range] = STATE(7624), - [sym__val_range_with_end] = STATE(7486), - [sym__value] = STATE(539), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(424), - [sym_val_variable] = STATE(408), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(186), - [sym__val_number] = STATE(564), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(577), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_record] = STATE(467), - [sym__unquoted_in_record_with_expr] = STATE(539), - [sym__unquoted_anonymous_prefix] = STATE(6944), + [sym_expr_parenthesized] = STATE(4955), + [sym_val_range] = STATE(5448), + [sym__val_range] = STATE(7788), + [sym__val_range_with_end] = STATE(7565), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(5288), + [sym_val_variable] = STATE(4939), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(4385), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4919), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym__unquoted_in_list] = STATE(5147), + [sym__unquoted_in_list_with_expr] = STATE(5448), + [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1220), - [anon_sym_true] = ACTIONS(3759), - [anon_sym_false] = ACTIONS(3759), - [anon_sym_null] = ACTIONS(3761), - [aux_sym_cmd_identifier_token38] = ACTIONS(3763), - [aux_sym_cmd_identifier_token39] = ACTIONS(3763), - [aux_sym_cmd_identifier_token40] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(3765), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_DOLLAR] = ACTIONS(1352), - [aux_sym_ctrl_match_token1] = ACTIONS(3769), - [anon_sym_DOT_DOT] = ACTIONS(3771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3773), - [anon_sym_DOT_DOT_LT] = ACTIONS(3773), - [aux_sym__val_number_decimal_token1] = ACTIONS(3775), - [aux_sym__val_number_decimal_token2] = ACTIONS(3777), - [anon_sym_DOT2] = ACTIONS(3779), - [aux_sym__val_number_decimal_token3] = ACTIONS(3781), - [aux_sym__val_number_token1] = ACTIONS(3783), - [aux_sym__val_number_token2] = ACTIONS(3783), - [aux_sym__val_number_token3] = ACTIONS(3783), - [anon_sym_0b] = ACTIONS(3785), - [anon_sym_0o] = ACTIONS(3787), - [anon_sym_0x] = ACTIONS(3787), - [sym_val_date] = ACTIONS(3789), - [anon_sym_DQUOTE] = ACTIONS(3791), - [sym__str_single_quotes] = ACTIONS(3793), - [sym__str_back_ticks] = ACTIONS(3793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_err_GT] = ACTIONS(3753), - [anon_sym_out_GT] = ACTIONS(3753), - [anon_sym_e_GT] = ACTIONS(3753), - [anon_sym_o_GT] = ACTIONS(3753), - [anon_sym_err_PLUSout_GT] = ACTIONS(3753), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3753), - [anon_sym_o_PLUSe_GT] = ACTIONS(3753), - [anon_sym_e_PLUSo_GT] = ACTIONS(3753), - [anon_sym_err_GT_GT] = ACTIONS(3755), - [anon_sym_out_GT_GT] = ACTIONS(3755), - [anon_sym_e_GT_GT] = ACTIONS(3755), - [anon_sym_o_GT_GT] = ACTIONS(3755), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3755), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3755), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3755), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3755), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3757), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1221), + [anon_sym_true] = ACTIONS(3719), + [anon_sym_false] = ACTIONS(3719), + [anon_sym_null] = ACTIONS(3721), + [aux_sym_cmd_identifier_token38] = ACTIONS(3723), + [aux_sym_cmd_identifier_token39] = ACTIONS(3723), + [aux_sym_cmd_identifier_token40] = ACTIONS(3723), + [sym__newline] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_DOLLAR] = ACTIONS(3681), + [aux_sym_ctrl_match_token1] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), + [anon_sym_DOT_DOT_LT] = ACTIONS(3727), + [aux_sym__val_number_decimal_token1] = ACTIONS(3729), + [aux_sym__val_number_decimal_token2] = ACTIONS(3731), + [aux_sym__val_number_decimal_token3] = ACTIONS(3733), + [aux_sym__val_number_decimal_token4] = ACTIONS(3735), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(3737), + [anon_sym_DQUOTE] = ACTIONS(3705), + [sym__str_single_quotes] = ACTIONS(3707), + [sym__str_back_ticks] = ACTIONS(3707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_POUND] = ACTIONS(247), }, [1221] = { - [sym_expr_parenthesized] = STATE(400), - [sym_val_range] = STATE(541), - [sym__val_range] = STATE(7624), - [sym__val_range_with_end] = STATE(7486), - [sym__value] = STATE(541), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(424), - [sym_val_variable] = STATE(408), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(186), - [sym__val_number] = STATE(564), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(577), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_record] = STATE(445), - [sym__unquoted_in_record_with_expr] = STATE(541), - [sym__unquoted_anonymous_prefix] = STATE(6944), + [sym_expr_parenthesized] = STATE(4938), + [sym_val_range] = STATE(5426), + [sym__val_range] = STATE(7788), + [sym__val_range_with_end] = STATE(7565), + [sym__value] = STATE(5426), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(5288), + [sym_val_variable] = STATE(4939), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(4385), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4919), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym__unquoted_in_list] = STATE(5192), + [sym__unquoted_in_list_with_expr] = STATE(5426), + [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1221), - [anon_sym_true] = ACTIONS(3759), - [anon_sym_false] = ACTIONS(3759), - [anon_sym_null] = ACTIONS(3761), - [aux_sym_cmd_identifier_token38] = ACTIONS(3763), - [aux_sym_cmd_identifier_token39] = ACTIONS(3763), - [aux_sym_cmd_identifier_token40] = ACTIONS(3763), - [anon_sym_LBRACK] = ACTIONS(3765), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_DOLLAR] = ACTIONS(1352), - [aux_sym_ctrl_match_token1] = ACTIONS(3769), - [anon_sym_DOT_DOT] = ACTIONS(3771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3773), - [anon_sym_DOT_DOT_LT] = ACTIONS(3773), - [aux_sym__val_number_decimal_token1] = ACTIONS(3775), - [aux_sym__val_number_decimal_token2] = ACTIONS(3777), - [anon_sym_DOT2] = ACTIONS(3779), - [aux_sym__val_number_decimal_token3] = ACTIONS(3781), - [aux_sym__val_number_token1] = ACTIONS(3783), - [aux_sym__val_number_token2] = ACTIONS(3783), - [aux_sym__val_number_token3] = ACTIONS(3783), - [anon_sym_0b] = ACTIONS(3785), - [anon_sym_0o] = ACTIONS(3787), - [anon_sym_0x] = ACTIONS(3787), - [sym_val_date] = ACTIONS(3789), - [anon_sym_DQUOTE] = ACTIONS(3791), - [sym__str_single_quotes] = ACTIONS(3793), - [sym__str_back_ticks] = ACTIONS(3793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_err_GT] = ACTIONS(3753), - [anon_sym_out_GT] = ACTIONS(3753), - [anon_sym_e_GT] = ACTIONS(3753), - [anon_sym_o_GT] = ACTIONS(3753), - [anon_sym_err_PLUSout_GT] = ACTIONS(3753), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3753), - [anon_sym_o_PLUSe_GT] = ACTIONS(3753), - [anon_sym_e_PLUSo_GT] = ACTIONS(3753), - [anon_sym_err_GT_GT] = ACTIONS(3755), - [anon_sym_out_GT_GT] = ACTIONS(3755), - [anon_sym_e_GT_GT] = ACTIONS(3755), - [anon_sym_o_GT_GT] = ACTIONS(3755), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3755), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3755), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3755), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3755), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3757), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3101), + [anon_sym_true] = ACTIONS(3719), + [anon_sym_false] = ACTIONS(3719), + [anon_sym_null] = ACTIONS(3721), + [aux_sym_cmd_identifier_token38] = ACTIONS(3723), + [aux_sym_cmd_identifier_token39] = ACTIONS(3723), + [aux_sym_cmd_identifier_token40] = ACTIONS(3723), + [sym__newline] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_DOLLAR] = ACTIONS(3681), + [aux_sym_ctrl_match_token1] = ACTIONS(3683), + [anon_sym_DOT_DOT] = ACTIONS(3725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), + [anon_sym_DOT_DOT_LT] = ACTIONS(3727), + [aux_sym__val_number_decimal_token1] = ACTIONS(3729), + [aux_sym__val_number_decimal_token2] = ACTIONS(3731), + [aux_sym__val_number_decimal_token3] = ACTIONS(3733), + [aux_sym__val_number_decimal_token4] = ACTIONS(3735), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(3737), + [anon_sym_DQUOTE] = ACTIONS(3705), + [sym__str_single_quotes] = ACTIONS(3707), + [sym__str_back_ticks] = ACTIONS(3707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_POUND] = ACTIONS(247), }, [1222] = { - [sym_expr_parenthesized] = STATE(463), - [sym_val_range] = STATE(654), - [sym__val_range] = STATE(7545), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(654), - [sym_val_nothing] = STATE(614), - [sym_val_bool] = STATE(521), - [sym_val_variable] = STATE(427), - [sym_val_number] = STATE(614), - [sym__val_number_decimal] = STATE(203), - [sym__val_number] = STATE(659), - [sym_val_duration] = STATE(614), - [sym_val_filesize] = STATE(614), - [sym_val_binary] = STATE(614), - [sym_val_string] = STATE(614), - [sym__str_double_quotes] = STATE(637), - [sym_val_interpolated] = STATE(614), - [sym__inter_single_quotes] = STATE(626), - [sym__inter_double_quotes] = STATE(591), - [sym_val_list] = STATE(614), - [sym_val_record] = STATE(614), - [sym_val_table] = STATE(614), - [sym_val_closure] = STATE(614), - [sym__unquoted_in_record] = STATE(518), - [sym__unquoted_in_record_with_expr] = STATE(654), - [sym__unquoted_anonymous_prefix] = STATE(7304), + [sym_match_arm] = STATE(3233), + [sym_default_arm] = STATE(7159), + [sym_match_pattern] = STATE(8003), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1222), - [anon_sym_true] = ACTIONS(3795), - [anon_sym_false] = ACTIONS(3795), - [anon_sym_null] = ACTIONS(3797), - [aux_sym_cmd_identifier_token38] = ACTIONS(3799), - [aux_sym_cmd_identifier_token39] = ACTIONS(3799), - [aux_sym_cmd_identifier_token40] = ACTIONS(3799), - [anon_sym_LBRACK] = ACTIONS(3801), - [anon_sym_LPAREN] = ACTIONS(3803), - [anon_sym_DOLLAR] = ACTIONS(3805), - [aux_sym_ctrl_match_token1] = ACTIONS(3807), - [anon_sym_DOT_DOT] = ACTIONS(3809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3811), - [anon_sym_DOT_DOT_LT] = ACTIONS(3811), - [aux_sym__val_number_decimal_token1] = ACTIONS(3813), - [aux_sym__val_number_decimal_token2] = ACTIONS(3815), - [anon_sym_DOT2] = ACTIONS(3817), - [aux_sym__val_number_decimal_token3] = ACTIONS(3819), - [aux_sym__val_number_token1] = ACTIONS(3821), - [aux_sym__val_number_token2] = ACTIONS(3821), - [aux_sym__val_number_token3] = ACTIONS(3821), - [anon_sym_0b] = ACTIONS(3823), - [anon_sym_0o] = ACTIONS(3825), - [anon_sym_0x] = ACTIONS(3825), - [sym_val_date] = ACTIONS(3827), - [anon_sym_DQUOTE] = ACTIONS(3829), - [sym__str_single_quotes] = ACTIONS(3831), - [sym__str_back_ticks] = ACTIONS(3831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3835), - [anon_sym_err_GT] = ACTIONS(3753), - [anon_sym_out_GT] = ACTIONS(3753), - [anon_sym_e_GT] = ACTIONS(3753), - [anon_sym_o_GT] = ACTIONS(3753), - [anon_sym_err_PLUSout_GT] = ACTIONS(3753), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3753), - [anon_sym_o_PLUSe_GT] = ACTIONS(3753), - [anon_sym_e_PLUSo_GT] = ACTIONS(3753), - [anon_sym_err_GT_GT] = ACTIONS(3755), - [anon_sym_out_GT_GT] = ACTIONS(3755), - [anon_sym_e_GT_GT] = ACTIONS(3755), - [anon_sym_o_GT_GT] = ACTIONS(3755), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3755), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3755), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3755), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3755), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3837), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1233), + [aux_sym_ctrl_match_repeat1] = STATE(1224), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3743), + [anon_sym__] = ACTIONS(3651), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1223] = { - [sym_expr_parenthesized] = STATE(6209), - [sym_val_range] = STATE(541), - [sym__val_range] = STATE(7624), - [sym__val_range_with_end] = STATE(7486), - [sym__value] = STATE(541), - [sym_val_nothing] = STATE(493), - [sym_val_bool] = STATE(6469), - [sym_val_variable] = STATE(5959), - [sym_val_number] = STATE(493), - [sym__val_number_decimal] = STATE(5329), - [sym__val_number] = STATE(3121), - [sym_val_duration] = STATE(493), - [sym_val_filesize] = STATE(493), - [sym_val_binary] = STATE(493), - [sym_val_string] = STATE(493), - [sym__str_double_quotes] = STATE(5676), - [sym_val_interpolated] = STATE(493), - [sym__inter_single_quotes] = STATE(488), - [sym__inter_double_quotes] = STATE(489), - [sym_val_list] = STATE(493), - [sym_val_record] = STATE(493), - [sym_val_table] = STATE(493), - [sym_val_closure] = STATE(493), - [sym__unquoted_in_record] = STATE(445), - [sym__unquoted_in_record_with_expr] = STATE(541), - [sym__unquoted_anonymous_prefix] = STATE(6944), + [sym_match_arm] = STATE(3233), + [sym_default_arm] = STATE(7300), + [sym_match_pattern] = STATE(8003), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1223), - [anon_sym_true] = ACTIONS(3733), - [anon_sym_false] = ACTIONS(3733), - [anon_sym_null] = ACTIONS(3735), - [aux_sym_cmd_identifier_token38] = ACTIONS(3737), - [aux_sym_cmd_identifier_token39] = ACTIONS(3737), - [aux_sym_cmd_identifier_token40] = ACTIONS(3737), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_DOLLAR] = ACTIONS(2885), - [aux_sym_ctrl_match_token1] = ACTIONS(2887), - [anon_sym_DOT_DOT] = ACTIONS(3739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3741), - [anon_sym_DOT_DOT_LT] = ACTIONS(3741), - [aux_sym__val_number_decimal_token1] = ACTIONS(3743), - [aux_sym__val_number_decimal_token2] = ACTIONS(3745), - [anon_sym_DOT2] = ACTIONS(3747), - [aux_sym__val_number_decimal_token3] = ACTIONS(3749), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [anon_sym_0b] = ACTIONS(2785), - [anon_sym_0o] = ACTIONS(2787), - [anon_sym_0x] = ACTIONS(2787), - [sym_val_date] = ACTIONS(3751), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2797), - [anon_sym_err_GT] = ACTIONS(3753), - [anon_sym_out_GT] = ACTIONS(3753), - [anon_sym_e_GT] = ACTIONS(3753), - [anon_sym_o_GT] = ACTIONS(3753), - [anon_sym_err_PLUSout_GT] = ACTIONS(3753), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3753), - [anon_sym_o_PLUSe_GT] = ACTIONS(3753), - [anon_sym_e_PLUSo_GT] = ACTIONS(3753), - [anon_sym_err_GT_GT] = ACTIONS(3755), - [anon_sym_out_GT_GT] = ACTIONS(3755), - [anon_sym_e_GT_GT] = ACTIONS(3755), - [anon_sym_o_GT_GT] = ACTIONS(3755), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3755), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3755), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3755), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3755), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3757), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1245), + [aux_sym_ctrl_match_repeat1] = STATE(1224), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3745), + [anon_sym__] = ACTIONS(3651), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1224] = { - [sym_expr_parenthesized] = STATE(466), - [sym_val_range] = STATE(656), - [sym__val_range] = STATE(7545), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(656), - [sym_val_nothing] = STATE(614), - [sym_val_bool] = STATE(521), - [sym_val_variable] = STATE(427), - [sym_val_number] = STATE(614), - [sym__val_number_decimal] = STATE(203), - [sym__val_number] = STATE(659), - [sym_val_duration] = STATE(614), - [sym_val_filesize] = STATE(614), - [sym_val_binary] = STATE(614), - [sym_val_string] = STATE(614), - [sym__str_double_quotes] = STATE(637), - [sym_val_interpolated] = STATE(614), - [sym__inter_single_quotes] = STATE(626), - [sym__inter_double_quotes] = STATE(591), - [sym_val_list] = STATE(614), - [sym_val_record] = STATE(614), - [sym_val_table] = STATE(614), - [sym_val_closure] = STATE(614), - [sym__unquoted_in_record] = STATE(492), - [sym__unquoted_in_record_with_expr] = STATE(656), - [sym__unquoted_anonymous_prefix] = STATE(7304), + [sym_match_arm] = STATE(3233), + [sym_match_pattern] = STATE(8003), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1224), - [anon_sym_true] = ACTIONS(3795), - [anon_sym_false] = ACTIONS(3795), - [anon_sym_null] = ACTIONS(3797), - [aux_sym_cmd_identifier_token38] = ACTIONS(3799), - [aux_sym_cmd_identifier_token39] = ACTIONS(3799), - [aux_sym_cmd_identifier_token40] = ACTIONS(3799), - [anon_sym_LBRACK] = ACTIONS(3801), - [anon_sym_LPAREN] = ACTIONS(3803), - [anon_sym_DOLLAR] = ACTIONS(3805), - [aux_sym_ctrl_match_token1] = ACTIONS(3807), - [anon_sym_DOT_DOT] = ACTIONS(3809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3811), - [anon_sym_DOT_DOT_LT] = ACTIONS(3811), - [aux_sym__val_number_decimal_token1] = ACTIONS(3813), - [aux_sym__val_number_decimal_token2] = ACTIONS(3815), - [anon_sym_DOT2] = ACTIONS(3817), - [aux_sym__val_number_decimal_token3] = ACTIONS(3819), - [aux_sym__val_number_token1] = ACTIONS(3821), - [aux_sym__val_number_token2] = ACTIONS(3821), - [aux_sym__val_number_token3] = ACTIONS(3821), - [anon_sym_0b] = ACTIONS(3823), - [anon_sym_0o] = ACTIONS(3825), - [anon_sym_0x] = ACTIONS(3825), - [sym_val_date] = ACTIONS(3827), - [anon_sym_DQUOTE] = ACTIONS(3829), - [sym__str_single_quotes] = ACTIONS(3831), - [sym__str_back_ticks] = ACTIONS(3831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3835), - [anon_sym_err_GT] = ACTIONS(3753), - [anon_sym_out_GT] = ACTIONS(3753), - [anon_sym_e_GT] = ACTIONS(3753), - [anon_sym_o_GT] = ACTIONS(3753), - [anon_sym_err_PLUSout_GT] = ACTIONS(3753), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3753), - [anon_sym_o_PLUSe_GT] = ACTIONS(3753), - [anon_sym_e_PLUSo_GT] = ACTIONS(3753), - [anon_sym_err_GT_GT] = ACTIONS(3755), - [anon_sym_out_GT_GT] = ACTIONS(3755), - [anon_sym_e_GT_GT] = ACTIONS(3755), - [anon_sym_o_GT_GT] = ACTIONS(3755), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3755), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3755), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3755), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3755), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3837), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1252), + [aux_sym_ctrl_match_repeat1] = STATE(1224), + [anon_sym_true] = ACTIONS(3747), + [anon_sym_false] = ACTIONS(3747), + [anon_sym_null] = ACTIONS(3750), + [aux_sym_cmd_identifier_token38] = ACTIONS(3753), + [aux_sym_cmd_identifier_token39] = ACTIONS(3753), + [aux_sym_cmd_identifier_token40] = ACTIONS(3753), + [sym__newline] = ACTIONS(3756), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_DOLLAR] = ACTIONS(3765), + [aux_sym_ctrl_match_token1] = ACTIONS(3768), + [anon_sym_RBRACE] = ACTIONS(3771), + [anon_sym__] = ACTIONS(3773), + [anon_sym_DOT_DOT] = ACTIONS(3776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3779), + [anon_sym_DOT_DOT_LT] = ACTIONS(3779), + [aux_sym__val_number_decimal_token1] = ACTIONS(3782), + [aux_sym__val_number_decimal_token2] = ACTIONS(3785), + [aux_sym__val_number_decimal_token3] = ACTIONS(3788), + [aux_sym__val_number_decimal_token4] = ACTIONS(3791), + [aux_sym__val_number_token1] = ACTIONS(3794), + [aux_sym__val_number_token2] = ACTIONS(3794), + [aux_sym__val_number_token3] = ACTIONS(3794), + [anon_sym_0b] = ACTIONS(3797), + [anon_sym_0o] = ACTIONS(3800), + [anon_sym_0x] = ACTIONS(3800), + [sym_val_date] = ACTIONS(3803), + [anon_sym_DQUOTE] = ACTIONS(3806), + [sym__str_single_quotes] = ACTIONS(3809), + [sym__str_back_ticks] = ACTIONS(3809), + [anon_sym_err_GT] = ACTIONS(3812), + [anon_sym_out_GT] = ACTIONS(3812), + [anon_sym_e_GT] = ACTIONS(3812), + [anon_sym_o_GT] = ACTIONS(3812), + [anon_sym_err_PLUSout_GT] = ACTIONS(3812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3812), + [anon_sym_o_PLUSe_GT] = ACTIONS(3812), + [anon_sym_e_PLUSo_GT] = ACTIONS(3812), + [anon_sym_err_GT_GT] = ACTIONS(3815), + [anon_sym_out_GT_GT] = ACTIONS(3815), + [anon_sym_e_GT_GT] = ACTIONS(3815), + [anon_sym_o_GT_GT] = ACTIONS(3815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3815), + [aux_sym_unquoted_token1] = ACTIONS(3818), + [anon_sym_POUND] = ACTIONS(247), }, [1225] = { - [sym_path] = STATE(1261), + [sym_expr_parenthesized] = STATE(6273), + [sym_val_range] = STATE(566), + [sym__val_range] = STATE(7803), + [sym__val_range_with_end] = STATE(7592), + [sym__value] = STATE(566), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6463), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5530), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_record] = STATE(457), + [sym__unquoted_in_record_with_expr] = STATE(566), + [sym__unquoted_anonymous_prefix] = STATE(7315), [sym_comment] = STATE(1225), - [aux_sym_cell_path_repeat1] = STATE(1225), - [anon_sym_EQ] = ACTIONS(893), - [anon_sym_PLUS_EQ] = ACTIONS(895), - [anon_sym_DASH_EQ] = ACTIONS(895), - [anon_sym_STAR_EQ] = ACTIONS(895), - [anon_sym_SLASH_EQ] = ACTIONS(895), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(895), - [sym__newline] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_COMMA] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_in] = ACTIONS(895), - [aux_sym_ctrl_match_token1] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(893), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(3839), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3821), + [anon_sym_false] = ACTIONS(3821), + [anon_sym_null] = ACTIONS(3823), + [aux_sym_cmd_identifier_token38] = ACTIONS(3825), + [aux_sym_cmd_identifier_token39] = ACTIONS(3825), + [aux_sym_cmd_identifier_token40] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(3827), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3829), + [anon_sym_DOT_DOT_LT] = ACTIONS(3829), + [aux_sym__val_number_decimal_token1] = ACTIONS(3831), + [aux_sym__val_number_decimal_token2] = ACTIONS(3833), + [aux_sym__val_number_decimal_token3] = ACTIONS(3835), + [aux_sym__val_number_decimal_token4] = ACTIONS(3837), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(3839), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(3841), + [anon_sym_out_GT] = ACTIONS(3841), + [anon_sym_e_GT] = ACTIONS(3841), + [anon_sym_o_GT] = ACTIONS(3841), + [anon_sym_err_PLUSout_GT] = ACTIONS(3841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), + [anon_sym_o_PLUSe_GT] = ACTIONS(3841), + [anon_sym_e_PLUSo_GT] = ACTIONS(3841), + [anon_sym_err_GT_GT] = ACTIONS(3843), + [anon_sym_out_GT_GT] = ACTIONS(3843), + [anon_sym_e_GT_GT] = ACTIONS(3843), + [anon_sym_o_GT_GT] = ACTIONS(3843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3845), + [anon_sym_POUND] = ACTIONS(247), }, [1226] = { - [sym_match_pattern] = STATE(7697), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym_expr_parenthesized] = STATE(448), + [sym_val_range] = STATE(647), + [sym__val_range] = STATE(7891), + [sym__val_range_with_end] = STATE(7596), + [sym__value] = STATE(647), + [sym_val_nothing] = STATE(666), + [sym_val_bool] = STATE(473), + [sym_val_variable] = STATE(440), + [sym_val_number] = STATE(666), + [sym__val_number_decimal] = STATE(209), + [sym__val_number] = STATE(611), + [sym_val_duration] = STATE(666), + [sym_val_filesize] = STATE(666), + [sym_val_binary] = STATE(666), + [sym_val_string] = STATE(666), + [sym__str_double_quotes] = STATE(662), + [sym_val_interpolated] = STATE(666), + [sym__inter_single_quotes] = STATE(627), + [sym__inter_double_quotes] = STATE(628), + [sym_val_list] = STATE(666), + [sym_val_record] = STATE(666), + [sym_val_table] = STATE(666), + [sym_val_closure] = STATE(666), + [sym__unquoted_in_record] = STATE(471), + [sym__unquoted_in_record_with_expr] = STATE(647), + [sym__unquoted_anonymous_prefix] = STATE(7018), [sym_comment] = STATE(1226), - [aux_sym_shebang_repeat1] = STATE(3058), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym__] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3847), + [anon_sym_false] = ACTIONS(3847), + [anon_sym_null] = ACTIONS(3849), + [aux_sym_cmd_identifier_token38] = ACTIONS(3851), + [aux_sym_cmd_identifier_token39] = ACTIONS(3851), + [aux_sym_cmd_identifier_token40] = ACTIONS(3851), + [anon_sym_LBRACK] = ACTIONS(3853), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_DOLLAR] = ACTIONS(3857), + [aux_sym_ctrl_match_token1] = ACTIONS(3859), + [anon_sym_DOT_DOT] = ACTIONS(3861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3863), + [anon_sym_DOT_DOT_LT] = ACTIONS(3863), + [aux_sym__val_number_decimal_token1] = ACTIONS(3865), + [aux_sym__val_number_decimal_token2] = ACTIONS(3867), + [aux_sym__val_number_decimal_token3] = ACTIONS(3869), + [aux_sym__val_number_decimal_token4] = ACTIONS(3871), + [aux_sym__val_number_token1] = ACTIONS(3873), + [aux_sym__val_number_token2] = ACTIONS(3873), + [aux_sym__val_number_token3] = ACTIONS(3873), + [anon_sym_0b] = ACTIONS(3875), + [anon_sym_0o] = ACTIONS(3877), + [anon_sym_0x] = ACTIONS(3877), + [sym_val_date] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3881), + [sym__str_single_quotes] = ACTIONS(3883), + [sym__str_back_ticks] = ACTIONS(3883), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3887), + [anon_sym_err_GT] = ACTIONS(3841), + [anon_sym_out_GT] = ACTIONS(3841), + [anon_sym_e_GT] = ACTIONS(3841), + [anon_sym_o_GT] = ACTIONS(3841), + [anon_sym_err_PLUSout_GT] = ACTIONS(3841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), + [anon_sym_o_PLUSe_GT] = ACTIONS(3841), + [anon_sym_e_PLUSo_GT] = ACTIONS(3841), + [anon_sym_err_GT_GT] = ACTIONS(3843), + [anon_sym_out_GT_GT] = ACTIONS(3843), + [anon_sym_e_GT_GT] = ACTIONS(3843), + [anon_sym_o_GT_GT] = ACTIONS(3843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3889), + [anon_sym_POUND] = ACTIONS(247), }, [1227] = { - [sym_match_pattern] = STATE(7697), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), [sym_comment] = STATE(1227), - [aux_sym_shebang_repeat1] = STATE(3058), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym__] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1232), + [aux_sym_cmd_identifier_token1] = ACTIONS(3891), + [aux_sym_cmd_identifier_token2] = ACTIONS(3891), + [aux_sym_cmd_identifier_token3] = ACTIONS(3891), + [aux_sym_cmd_identifier_token4] = ACTIONS(3891), + [aux_sym_cmd_identifier_token5] = ACTIONS(3891), + [aux_sym_cmd_identifier_token6] = ACTIONS(3891), + [aux_sym_cmd_identifier_token7] = ACTIONS(3891), + [aux_sym_cmd_identifier_token8] = ACTIONS(3891), + [aux_sym_cmd_identifier_token9] = ACTIONS(3891), + [aux_sym_cmd_identifier_token10] = ACTIONS(3891), + [aux_sym_cmd_identifier_token11] = ACTIONS(3891), + [aux_sym_cmd_identifier_token12] = ACTIONS(3891), + [aux_sym_cmd_identifier_token13] = ACTIONS(3891), + [aux_sym_cmd_identifier_token14] = ACTIONS(3891), + [aux_sym_cmd_identifier_token15] = ACTIONS(3891), + [aux_sym_cmd_identifier_token16] = ACTIONS(3891), + [aux_sym_cmd_identifier_token17] = ACTIONS(3891), + [aux_sym_cmd_identifier_token18] = ACTIONS(3891), + [aux_sym_cmd_identifier_token19] = ACTIONS(3891), + [aux_sym_cmd_identifier_token20] = ACTIONS(3891), + [aux_sym_cmd_identifier_token21] = ACTIONS(3891), + [aux_sym_cmd_identifier_token22] = ACTIONS(3891), + [aux_sym_cmd_identifier_token23] = ACTIONS(3891), + [aux_sym_cmd_identifier_token24] = ACTIONS(3891), + [aux_sym_cmd_identifier_token25] = ACTIONS(3891), + [aux_sym_cmd_identifier_token26] = ACTIONS(3891), + [aux_sym_cmd_identifier_token27] = ACTIONS(3891), + [aux_sym_cmd_identifier_token28] = ACTIONS(3891), + [aux_sym_cmd_identifier_token29] = ACTIONS(3891), + [aux_sym_cmd_identifier_token30] = ACTIONS(3891), + [aux_sym_cmd_identifier_token31] = ACTIONS(3891), + [aux_sym_cmd_identifier_token32] = ACTIONS(3891), + [aux_sym_cmd_identifier_token33] = ACTIONS(3891), + [aux_sym_cmd_identifier_token34] = ACTIONS(3891), + [aux_sym_cmd_identifier_token35] = ACTIONS(3891), + [aux_sym_cmd_identifier_token36] = ACTIONS(3891), + [anon_sym_true] = ACTIONS(3891), + [anon_sym_false] = ACTIONS(3891), + [anon_sym_null] = ACTIONS(3891), + [aux_sym_cmd_identifier_token38] = ACTIONS(3891), + [aux_sym_cmd_identifier_token39] = ACTIONS(3891), + [aux_sym_cmd_identifier_token40] = ACTIONS(3891), + [sym__newline] = ACTIONS(3893), + [sym__space] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3891), + [anon_sym_DOLLAR] = ACTIONS(3891), + [anon_sym_DASH] = ACTIONS(3891), + [aux_sym_ctrl_match_token1] = ACTIONS(3891), + [anon_sym_DOT_DOT] = ACTIONS(3891), + [aux_sym_expr_unary_token1] = ACTIONS(3891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3891), + [anon_sym_DOT_DOT_LT] = ACTIONS(3891), + [aux_sym__val_number_decimal_token1] = ACTIONS(3891), + [aux_sym__val_number_decimal_token2] = ACTIONS(3891), + [aux_sym__val_number_decimal_token3] = ACTIONS(3891), + [aux_sym__val_number_decimal_token4] = ACTIONS(3891), + [aux_sym__val_number_token1] = ACTIONS(3891), + [aux_sym__val_number_token2] = ACTIONS(3891), + [aux_sym__val_number_token3] = ACTIONS(3891), + [anon_sym_0b] = ACTIONS(3891), + [anon_sym_0o] = ACTIONS(3891), + [anon_sym_0x] = ACTIONS(3891), + [sym_val_date] = ACTIONS(3891), + [anon_sym_DQUOTE] = ACTIONS(3891), + [sym__str_single_quotes] = ACTIONS(3891), + [sym__str_back_ticks] = ACTIONS(3891), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3891), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3891), + [aux_sym_env_var_token1] = ACTIONS(3891), + [anon_sym_CARET] = ACTIONS(3891), [anon_sym_POUND] = ACTIONS(3), }, [1228] = { - [sym_match_pattern] = STATE(7697), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym_expr_parenthesized] = STATE(6249), + [sym_val_range] = STATE(568), + [sym__val_range] = STATE(7803), + [sym__val_range_with_end] = STATE(7592), + [sym__value] = STATE(568), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(6463), + [sym_val_variable] = STATE(6175), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(5530), + [sym__val_number] = STATE(3131), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(5801), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_record] = STATE(458), + [sym__unquoted_in_record_with_expr] = STATE(568), + [sym__unquoted_anonymous_prefix] = STATE(7315), [sym_comment] = STATE(1228), - [aux_sym_shebang_repeat1] = STATE(3058), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3625), - [anon_sym__] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3821), + [anon_sym_false] = ACTIONS(3821), + [anon_sym_null] = ACTIONS(3823), + [aux_sym_cmd_identifier_token38] = ACTIONS(3825), + [aux_sym_cmd_identifier_token39] = ACTIONS(3825), + [aux_sym_cmd_identifier_token40] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_DOLLAR] = ACTIONS(2921), + [aux_sym_ctrl_match_token1] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(3827), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3829), + [anon_sym_DOT_DOT_LT] = ACTIONS(3829), + [aux_sym__val_number_decimal_token1] = ACTIONS(3831), + [aux_sym__val_number_decimal_token2] = ACTIONS(3833), + [aux_sym__val_number_decimal_token3] = ACTIONS(3835), + [aux_sym__val_number_decimal_token4] = ACTIONS(3837), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2764), + [anon_sym_0o] = ACTIONS(2766), + [anon_sym_0x] = ACTIONS(2766), + [sym_val_date] = ACTIONS(3839), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym__str_single_quotes] = ACTIONS(2941), + [sym__str_back_ticks] = ACTIONS(2941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(3841), + [anon_sym_out_GT] = ACTIONS(3841), + [anon_sym_e_GT] = ACTIONS(3841), + [anon_sym_o_GT] = ACTIONS(3841), + [anon_sym_err_PLUSout_GT] = ACTIONS(3841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), + [anon_sym_o_PLUSe_GT] = ACTIONS(3841), + [anon_sym_e_PLUSo_GT] = ACTIONS(3841), + [anon_sym_err_GT_GT] = ACTIONS(3843), + [anon_sym_out_GT_GT] = ACTIONS(3843), + [anon_sym_e_GT_GT] = ACTIONS(3843), + [anon_sym_o_GT_GT] = ACTIONS(3843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3845), + [anon_sym_POUND] = ACTIONS(247), }, [1229] = { - [sym__match_pattern_expression] = STATE(3197), - [sym__match_pattern_value] = STATE(3232), - [sym__match_pattern_list] = STATE(3235), - [sym__match_pattern_rest] = STATE(8026), - [sym__match_pattern_record] = STATE(3236), - [sym_expr_parenthesized] = STATE(2991), - [sym_val_range] = STATE(3232), - [sym__val_range] = STATE(7525), - [sym_val_nothing] = STATE(3191), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(2993), - [sym_val_number] = STATE(3191), - [sym__val_number_decimal] = STATE(2714), - [sym__val_number] = STATE(3210), - [sym_val_duration] = STATE(3191), - [sym_val_filesize] = STATE(3191), - [sym_val_binary] = STATE(3191), - [sym_val_string] = STATE(3191), - [sym__str_double_quotes] = STATE(3219), - [sym_val_list] = STATE(7719), - [sym_val_table] = STATE(3191), - [sym__unquoted_in_list] = STATE(3197), - [sym__unquoted_anonymous_prefix] = STATE(7761), + [sym_expr_parenthesized] = STATE(380), + [sym_val_range] = STATE(566), + [sym__val_range] = STATE(7803), + [sym__val_range_with_end] = STATE(7592), + [sym__value] = STATE(566), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(427), + [sym_val_variable] = STATE(390), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(204), + [sym__val_number] = STATE(561), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(594), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_record] = STATE(457), + [sym__unquoted_in_record_with_expr] = STATE(566), + [sym__unquoted_anonymous_prefix] = STATE(7315), [sym_comment] = STATE(1229), - [aux_sym_shebang_repeat1] = STATE(6886), - [aux_sym__match_pattern_list_repeat1] = STATE(1311), - [anon_sym_true] = ACTIONS(3846), - [anon_sym_false] = ACTIONS(3846), - [anon_sym_null] = ACTIONS(3848), - [aux_sym_cmd_identifier_token38] = ACTIONS(3850), - [aux_sym_cmd_identifier_token39] = ACTIONS(3850), - [aux_sym_cmd_identifier_token40] = ACTIONS(3850), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(3852), - [anon_sym_RBRACK] = ACTIONS(3854), - [anon_sym_LPAREN] = ACTIONS(3856), - [anon_sym_DOLLAR] = ACTIONS(3858), - [aux_sym_ctrl_match_token1] = ACTIONS(3860), - [anon_sym_DOT_DOT] = ACTIONS(3862), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3864), - [anon_sym_DOT_DOT_LT] = ACTIONS(3864), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3868), - [anon_sym_DOT2] = ACTIONS(3870), - [aux_sym__val_number_decimal_token3] = ACTIONS(3872), - [aux_sym__val_number_token1] = ACTIONS(3874), - [aux_sym__val_number_token2] = ACTIONS(3874), - [aux_sym__val_number_token3] = ACTIONS(3874), - [anon_sym_0b] = ACTIONS(3876), - [anon_sym_0o] = ACTIONS(3878), - [anon_sym_0x] = ACTIONS(3878), - [sym_val_date] = ACTIONS(3880), - [anon_sym_DQUOTE] = ACTIONS(3882), - [sym__str_single_quotes] = ACTIONS(3884), - [sym__str_back_ticks] = ACTIONS(3884), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3886), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3897), + [anon_sym_false] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3899), + [aux_sym_cmd_identifier_token38] = ACTIONS(3901), + [aux_sym_cmd_identifier_token39] = ACTIONS(3901), + [aux_sym_cmd_identifier_token40] = ACTIONS(3901), + [anon_sym_LBRACK] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(1415), + [aux_sym_ctrl_match_token1] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3911), + [anon_sym_DOT_DOT_LT] = ACTIONS(3911), + [aux_sym__val_number_decimal_token1] = ACTIONS(3913), + [aux_sym__val_number_decimal_token2] = ACTIONS(3915), + [aux_sym__val_number_decimal_token3] = ACTIONS(3917), + [aux_sym__val_number_decimal_token4] = ACTIONS(3919), + [aux_sym__val_number_token1] = ACTIONS(3921), + [aux_sym__val_number_token2] = ACTIONS(3921), + [aux_sym__val_number_token3] = ACTIONS(3921), + [anon_sym_0b] = ACTIONS(3923), + [anon_sym_0o] = ACTIONS(3925), + [anon_sym_0x] = ACTIONS(3925), + [sym_val_date] = ACTIONS(3927), + [anon_sym_DQUOTE] = ACTIONS(3929), + [sym__str_single_quotes] = ACTIONS(3931), + [sym__str_back_ticks] = ACTIONS(3931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(3841), + [anon_sym_out_GT] = ACTIONS(3841), + [anon_sym_e_GT] = ACTIONS(3841), + [anon_sym_o_GT] = ACTIONS(3841), + [anon_sym_err_PLUSout_GT] = ACTIONS(3841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), + [anon_sym_o_PLUSe_GT] = ACTIONS(3841), + [anon_sym_e_PLUSo_GT] = ACTIONS(3841), + [anon_sym_err_GT_GT] = ACTIONS(3843), + [anon_sym_out_GT_GT] = ACTIONS(3843), + [anon_sym_e_GT_GT] = ACTIONS(3843), + [anon_sym_o_GT_GT] = ACTIONS(3843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3845), + [anon_sym_POUND] = ACTIONS(247), }, [1230] = { + [sym_expr_parenthesized] = STATE(354), + [sym_val_range] = STATE(568), + [sym__val_range] = STATE(7803), + [sym__val_range_with_end] = STATE(7592), + [sym__value] = STATE(568), + [sym_val_nothing] = STATE(517), + [sym_val_bool] = STATE(427), + [sym_val_variable] = STATE(390), + [sym_val_number] = STATE(517), + [sym__val_number_decimal] = STATE(204), + [sym__val_number] = STATE(561), + [sym_val_duration] = STATE(517), + [sym_val_filesize] = STATE(517), + [sym_val_binary] = STATE(517), + [sym_val_string] = STATE(517), + [sym__str_double_quotes] = STATE(594), + [sym_val_interpolated] = STATE(517), + [sym__inter_single_quotes] = STATE(519), + [sym__inter_double_quotes] = STATE(522), + [sym_val_list] = STATE(517), + [sym_val_record] = STATE(517), + [sym_val_table] = STATE(517), + [sym_val_closure] = STATE(517), + [sym__unquoted_in_record] = STATE(458), + [sym__unquoted_in_record_with_expr] = STATE(568), + [sym__unquoted_anonymous_prefix] = STATE(7315), [sym_comment] = STATE(1230), - [aux_sym_shebang_repeat1] = STATE(1230), - [aux_sym_cmd_identifier_token1] = ACTIONS(1856), - [aux_sym_cmd_identifier_token2] = ACTIONS(1858), - [aux_sym_cmd_identifier_token3] = ACTIONS(1858), - [aux_sym_cmd_identifier_token4] = ACTIONS(1858), - [aux_sym_cmd_identifier_token5] = ACTIONS(1858), - [aux_sym_cmd_identifier_token6] = ACTIONS(1858), - [aux_sym_cmd_identifier_token7] = ACTIONS(1858), - [aux_sym_cmd_identifier_token8] = ACTIONS(1858), - [aux_sym_cmd_identifier_token9] = ACTIONS(1856), - [aux_sym_cmd_identifier_token10] = ACTIONS(1858), - [aux_sym_cmd_identifier_token11] = ACTIONS(1858), - [aux_sym_cmd_identifier_token12] = ACTIONS(1858), - [aux_sym_cmd_identifier_token13] = ACTIONS(1856), - [aux_sym_cmd_identifier_token14] = ACTIONS(1858), - [aux_sym_cmd_identifier_token15] = ACTIONS(1856), - [aux_sym_cmd_identifier_token16] = ACTIONS(1858), - [aux_sym_cmd_identifier_token17] = ACTIONS(1858), - [aux_sym_cmd_identifier_token18] = ACTIONS(1858), - [aux_sym_cmd_identifier_token19] = ACTIONS(1858), - [aux_sym_cmd_identifier_token20] = ACTIONS(1858), - [aux_sym_cmd_identifier_token21] = ACTIONS(1858), - [aux_sym_cmd_identifier_token22] = ACTIONS(1858), - [aux_sym_cmd_identifier_token23] = ACTIONS(1856), - [aux_sym_cmd_identifier_token24] = ACTIONS(1858), - [aux_sym_cmd_identifier_token25] = ACTIONS(1858), - [aux_sym_cmd_identifier_token26] = ACTIONS(1858), - [aux_sym_cmd_identifier_token27] = ACTIONS(1858), - [aux_sym_cmd_identifier_token28] = ACTIONS(1858), - [aux_sym_cmd_identifier_token29] = ACTIONS(1858), - [aux_sym_cmd_identifier_token30] = ACTIONS(1858), - [aux_sym_cmd_identifier_token31] = ACTIONS(1858), - [aux_sym_cmd_identifier_token32] = ACTIONS(1858), - [aux_sym_cmd_identifier_token33] = ACTIONS(1858), - [aux_sym_cmd_identifier_token34] = ACTIONS(1858), - [aux_sym_cmd_identifier_token35] = ACTIONS(1858), - [aux_sym_cmd_identifier_token36] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1858), - [aux_sym_cmd_identifier_token38] = ACTIONS(1856), - [aux_sym_cmd_identifier_token39] = ACTIONS(1858), - [aux_sym_cmd_identifier_token40] = ACTIONS(1858), - [sym__newline] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_DOLLAR] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [aux_sym_ctrl_match_token1] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1856), - [aux_sym_expr_unary_token1] = ACTIONS(1858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1858), - [anon_sym_DOT_DOT_LT] = ACTIONS(1858), - [aux_sym__val_number_decimal_token1] = ACTIONS(1856), - [aux_sym__val_number_decimal_token2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), - [aux_sym__val_number_decimal_token3] = ACTIONS(1858), - [aux_sym__val_number_token1] = ACTIONS(1858), - [aux_sym__val_number_token2] = ACTIONS(1858), - [aux_sym__val_number_token3] = ACTIONS(1858), - [anon_sym_0b] = ACTIONS(1856), - [anon_sym_0o] = ACTIONS(1856), - [anon_sym_0x] = ACTIONS(1856), - [sym_val_date] = ACTIONS(1858), - [anon_sym_DQUOTE] = ACTIONS(1858), - [sym__str_single_quotes] = ACTIONS(1858), - [sym__str_back_ticks] = ACTIONS(1858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1858), - [anon_sym_CARET] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3897), + [anon_sym_false] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3899), + [aux_sym_cmd_identifier_token38] = ACTIONS(3901), + [aux_sym_cmd_identifier_token39] = ACTIONS(3901), + [aux_sym_cmd_identifier_token40] = ACTIONS(3901), + [anon_sym_LBRACK] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(1415), + [aux_sym_ctrl_match_token1] = ACTIONS(3907), + [anon_sym_DOT_DOT] = ACTIONS(3909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3911), + [anon_sym_DOT_DOT_LT] = ACTIONS(3911), + [aux_sym__val_number_decimal_token1] = ACTIONS(3913), + [aux_sym__val_number_decimal_token2] = ACTIONS(3915), + [aux_sym__val_number_decimal_token3] = ACTIONS(3917), + [aux_sym__val_number_decimal_token4] = ACTIONS(3919), + [aux_sym__val_number_token1] = ACTIONS(3921), + [aux_sym__val_number_token2] = ACTIONS(3921), + [aux_sym__val_number_token3] = ACTIONS(3921), + [anon_sym_0b] = ACTIONS(3923), + [anon_sym_0o] = ACTIONS(3925), + [anon_sym_0x] = ACTIONS(3925), + [sym_val_date] = ACTIONS(3927), + [anon_sym_DQUOTE] = ACTIONS(3929), + [sym__str_single_quotes] = ACTIONS(3931), + [sym__str_back_ticks] = ACTIONS(3931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(3841), + [anon_sym_out_GT] = ACTIONS(3841), + [anon_sym_e_GT] = ACTIONS(3841), + [anon_sym_o_GT] = ACTIONS(3841), + [anon_sym_err_PLUSout_GT] = ACTIONS(3841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), + [anon_sym_o_PLUSe_GT] = ACTIONS(3841), + [anon_sym_e_PLUSo_GT] = ACTIONS(3841), + [anon_sym_err_GT_GT] = ACTIONS(3843), + [anon_sym_out_GT_GT] = ACTIONS(3843), + [anon_sym_e_GT_GT] = ACTIONS(3843), + [anon_sym_o_GT_GT] = ACTIONS(3843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3845), + [anon_sym_POUND] = ACTIONS(247), }, [1231] = { - [sym_path] = STATE(1261), + [sym_expr_parenthesized] = STATE(435), + [sym_val_range] = STATE(634), + [sym__val_range] = STATE(7891), + [sym__val_range_with_end] = STATE(7596), + [sym__value] = STATE(634), + [sym_val_nothing] = STATE(666), + [sym_val_bool] = STATE(473), + [sym_val_variable] = STATE(440), + [sym_val_number] = STATE(666), + [sym__val_number_decimal] = STATE(209), + [sym__val_number] = STATE(611), + [sym_val_duration] = STATE(666), + [sym_val_filesize] = STATE(666), + [sym_val_binary] = STATE(666), + [sym_val_string] = STATE(666), + [sym__str_double_quotes] = STATE(662), + [sym_val_interpolated] = STATE(666), + [sym__inter_single_quotes] = STATE(627), + [sym__inter_double_quotes] = STATE(628), + [sym_val_list] = STATE(666), + [sym_val_record] = STATE(666), + [sym_val_table] = STATE(666), + [sym_val_closure] = STATE(666), + [sym__unquoted_in_record] = STATE(506), + [sym__unquoted_in_record_with_expr] = STATE(634), + [sym__unquoted_anonymous_prefix] = STATE(7018), [sym_comment] = STATE(1231), - [aux_sym_cell_path_repeat1] = STATE(1225), - [anon_sym_EQ] = ACTIONS(889), - [anon_sym_PLUS_EQ] = ACTIONS(891), - [anon_sym_DASH_EQ] = ACTIONS(891), - [anon_sym_STAR_EQ] = ACTIONS(891), - [anon_sym_SLASH_EQ] = ACTIONS(891), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(891), - [sym__newline] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_in] = ACTIONS(891), - [aux_sym_ctrl_match_token1] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(3891), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3847), + [anon_sym_false] = ACTIONS(3847), + [anon_sym_null] = ACTIONS(3849), + [aux_sym_cmd_identifier_token38] = ACTIONS(3851), + [aux_sym_cmd_identifier_token39] = ACTIONS(3851), + [aux_sym_cmd_identifier_token40] = ACTIONS(3851), + [anon_sym_LBRACK] = ACTIONS(3853), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_DOLLAR] = ACTIONS(3857), + [aux_sym_ctrl_match_token1] = ACTIONS(3859), + [anon_sym_DOT_DOT] = ACTIONS(3861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3863), + [anon_sym_DOT_DOT_LT] = ACTIONS(3863), + [aux_sym__val_number_decimal_token1] = ACTIONS(3865), + [aux_sym__val_number_decimal_token2] = ACTIONS(3867), + [aux_sym__val_number_decimal_token3] = ACTIONS(3869), + [aux_sym__val_number_decimal_token4] = ACTIONS(3871), + [aux_sym__val_number_token1] = ACTIONS(3873), + [aux_sym__val_number_token2] = ACTIONS(3873), + [aux_sym__val_number_token3] = ACTIONS(3873), + [anon_sym_0b] = ACTIONS(3875), + [anon_sym_0o] = ACTIONS(3877), + [anon_sym_0x] = ACTIONS(3877), + [sym_val_date] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3881), + [sym__str_single_quotes] = ACTIONS(3883), + [sym__str_back_ticks] = ACTIONS(3883), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3887), + [anon_sym_err_GT] = ACTIONS(3841), + [anon_sym_out_GT] = ACTIONS(3841), + [anon_sym_e_GT] = ACTIONS(3841), + [anon_sym_o_GT] = ACTIONS(3841), + [anon_sym_err_PLUSout_GT] = ACTIONS(3841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), + [anon_sym_o_PLUSe_GT] = ACTIONS(3841), + [anon_sym_e_PLUSo_GT] = ACTIONS(3841), + [anon_sym_err_GT_GT] = ACTIONS(3843), + [anon_sym_out_GT_GT] = ACTIONS(3843), + [anon_sym_e_GT_GT] = ACTIONS(3843), + [anon_sym_o_GT_GT] = ACTIONS(3843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3889), + [anon_sym_POUND] = ACTIONS(247), }, [1232] = { - [sym_match_pattern] = STATE(7697), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), [sym_comment] = STATE(1232), - [aux_sym_shebang_repeat1] = STATE(3058), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3893), - [anon_sym__] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1232), + [aux_sym_cmd_identifier_token1] = ACTIONS(3933), + [aux_sym_cmd_identifier_token2] = ACTIONS(3933), + [aux_sym_cmd_identifier_token3] = ACTIONS(3933), + [aux_sym_cmd_identifier_token4] = ACTIONS(3933), + [aux_sym_cmd_identifier_token5] = ACTIONS(3933), + [aux_sym_cmd_identifier_token6] = ACTIONS(3933), + [aux_sym_cmd_identifier_token7] = ACTIONS(3933), + [aux_sym_cmd_identifier_token8] = ACTIONS(3933), + [aux_sym_cmd_identifier_token9] = ACTIONS(3933), + [aux_sym_cmd_identifier_token10] = ACTIONS(3933), + [aux_sym_cmd_identifier_token11] = ACTIONS(3933), + [aux_sym_cmd_identifier_token12] = ACTIONS(3933), + [aux_sym_cmd_identifier_token13] = ACTIONS(3933), + [aux_sym_cmd_identifier_token14] = ACTIONS(3933), + [aux_sym_cmd_identifier_token15] = ACTIONS(3933), + [aux_sym_cmd_identifier_token16] = ACTIONS(3933), + [aux_sym_cmd_identifier_token17] = ACTIONS(3933), + [aux_sym_cmd_identifier_token18] = ACTIONS(3933), + [aux_sym_cmd_identifier_token19] = ACTIONS(3933), + [aux_sym_cmd_identifier_token20] = ACTIONS(3933), + [aux_sym_cmd_identifier_token21] = ACTIONS(3933), + [aux_sym_cmd_identifier_token22] = ACTIONS(3933), + [aux_sym_cmd_identifier_token23] = ACTIONS(3933), + [aux_sym_cmd_identifier_token24] = ACTIONS(3933), + [aux_sym_cmd_identifier_token25] = ACTIONS(3933), + [aux_sym_cmd_identifier_token26] = ACTIONS(3933), + [aux_sym_cmd_identifier_token27] = ACTIONS(3933), + [aux_sym_cmd_identifier_token28] = ACTIONS(3933), + [aux_sym_cmd_identifier_token29] = ACTIONS(3933), + [aux_sym_cmd_identifier_token30] = ACTIONS(3933), + [aux_sym_cmd_identifier_token31] = ACTIONS(3933), + [aux_sym_cmd_identifier_token32] = ACTIONS(3933), + [aux_sym_cmd_identifier_token33] = ACTIONS(3933), + [aux_sym_cmd_identifier_token34] = ACTIONS(3933), + [aux_sym_cmd_identifier_token35] = ACTIONS(3933), + [aux_sym_cmd_identifier_token36] = ACTIONS(3933), + [anon_sym_true] = ACTIONS(3933), + [anon_sym_false] = ACTIONS(3933), + [anon_sym_null] = ACTIONS(3933), + [aux_sym_cmd_identifier_token38] = ACTIONS(3933), + [aux_sym_cmd_identifier_token39] = ACTIONS(3933), + [aux_sym_cmd_identifier_token40] = ACTIONS(3933), + [sym__newline] = ACTIONS(3935), + [sym__space] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [aux_sym_ctrl_match_token1] = ACTIONS(3933), + [anon_sym_DOT_DOT] = ACTIONS(3933), + [aux_sym_expr_unary_token1] = ACTIONS(3933), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3933), + [anon_sym_DOT_DOT_LT] = ACTIONS(3933), + [aux_sym__val_number_decimal_token1] = ACTIONS(3933), + [aux_sym__val_number_decimal_token2] = ACTIONS(3933), + [aux_sym__val_number_decimal_token3] = ACTIONS(3933), + [aux_sym__val_number_decimal_token4] = ACTIONS(3933), + [aux_sym__val_number_token1] = ACTIONS(3933), + [aux_sym__val_number_token2] = ACTIONS(3933), + [aux_sym__val_number_token3] = ACTIONS(3933), + [anon_sym_0b] = ACTIONS(3933), + [anon_sym_0o] = ACTIONS(3933), + [anon_sym_0x] = ACTIONS(3933), + [sym_val_date] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [sym__str_single_quotes] = ACTIONS(3933), + [sym__str_back_ticks] = ACTIONS(3933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [aux_sym_env_var_token1] = ACTIONS(3933), + [anon_sym_CARET] = ACTIONS(3933), [anon_sym_POUND] = ACTIONS(3), }, [1233] = { + [sym_match_pattern] = STATE(7745), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1233), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(3895), - [aux_sym__immediate_decimal_token2] = ACTIONS(3897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3108), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3941), + [anon_sym__] = ACTIONS(3943), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1234] = { - [sym_match_pattern] = STATE(7697), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym_env_var] = STATE(7550), [sym_comment] = STATE(1234), - [aux_sym_shebang_repeat1] = STATE(3058), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3899), - [anon_sym__] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_pipe_element_repeat2] = STATE(1234), + [aux_sym_cmd_identifier_token1] = ACTIONS(3945), + [aux_sym_cmd_identifier_token2] = ACTIONS(3947), + [aux_sym_cmd_identifier_token3] = ACTIONS(3947), + [aux_sym_cmd_identifier_token4] = ACTIONS(3947), + [aux_sym_cmd_identifier_token5] = ACTIONS(3947), + [aux_sym_cmd_identifier_token6] = ACTIONS(3947), + [aux_sym_cmd_identifier_token7] = ACTIONS(3947), + [aux_sym_cmd_identifier_token8] = ACTIONS(3947), + [aux_sym_cmd_identifier_token9] = ACTIONS(3945), + [aux_sym_cmd_identifier_token10] = ACTIONS(3947), + [aux_sym_cmd_identifier_token11] = ACTIONS(3947), + [aux_sym_cmd_identifier_token12] = ACTIONS(3947), + [aux_sym_cmd_identifier_token13] = ACTIONS(3945), + [aux_sym_cmd_identifier_token14] = ACTIONS(3947), + [aux_sym_cmd_identifier_token15] = ACTIONS(3945), + [aux_sym_cmd_identifier_token16] = ACTIONS(3947), + [aux_sym_cmd_identifier_token17] = ACTIONS(3947), + [aux_sym_cmd_identifier_token18] = ACTIONS(3947), + [aux_sym_cmd_identifier_token19] = ACTIONS(3947), + [aux_sym_cmd_identifier_token20] = ACTIONS(3947), + [aux_sym_cmd_identifier_token21] = ACTIONS(3947), + [aux_sym_cmd_identifier_token22] = ACTIONS(3947), + [aux_sym_cmd_identifier_token23] = ACTIONS(3947), + [aux_sym_cmd_identifier_token24] = ACTIONS(3947), + [aux_sym_cmd_identifier_token25] = ACTIONS(3947), + [aux_sym_cmd_identifier_token26] = ACTIONS(3947), + [aux_sym_cmd_identifier_token27] = ACTIONS(3947), + [aux_sym_cmd_identifier_token28] = ACTIONS(3947), + [aux_sym_cmd_identifier_token29] = ACTIONS(3947), + [aux_sym_cmd_identifier_token30] = ACTIONS(3947), + [aux_sym_cmd_identifier_token31] = ACTIONS(3947), + [aux_sym_cmd_identifier_token32] = ACTIONS(3947), + [aux_sym_cmd_identifier_token33] = ACTIONS(3947), + [aux_sym_cmd_identifier_token34] = ACTIONS(3947), + [aux_sym_cmd_identifier_token35] = ACTIONS(3947), + [aux_sym_cmd_identifier_token36] = ACTIONS(3945), + [anon_sym_true] = ACTIONS(3947), + [anon_sym_false] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3947), + [aux_sym_cmd_identifier_token38] = ACTIONS(3945), + [aux_sym_cmd_identifier_token39] = ACTIONS(3947), + [aux_sym_cmd_identifier_token40] = ACTIONS(3947), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [aux_sym_ctrl_match_token1] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3945), + [aux_sym_expr_unary_token1] = ACTIONS(3947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3947), + [anon_sym_DOT_DOT_LT] = ACTIONS(3947), + [aux_sym__val_number_decimal_token1] = ACTIONS(3945), + [aux_sym__val_number_decimal_token2] = ACTIONS(3947), + [aux_sym__val_number_decimal_token3] = ACTIONS(3947), + [aux_sym__val_number_decimal_token4] = ACTIONS(3947), + [aux_sym__val_number_token1] = ACTIONS(3947), + [aux_sym__val_number_token2] = ACTIONS(3947), + [aux_sym__val_number_token3] = ACTIONS(3947), + [anon_sym_0b] = ACTIONS(3945), + [anon_sym_0o] = ACTIONS(3945), + [anon_sym_0x] = ACTIONS(3945), + [sym_val_date] = ACTIONS(3947), + [anon_sym_DQUOTE] = ACTIONS(3947), + [sym__str_single_quotes] = ACTIONS(3947), + [sym__str_back_ticks] = ACTIONS(3947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3947), + [aux_sym_env_var_token1] = ACTIONS(3949), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_POUND] = ACTIONS(247), }, [1235] = { - [sym_match_pattern] = STATE(7697), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), [sym_comment] = STATE(1235), - [aux_sym_shebang_repeat1] = STATE(3058), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3901), - [anon_sym__] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), + [aux_sym_cmd_identifier_token1] = ACTIONS(3952), + [aux_sym_cmd_identifier_token2] = ACTIONS(3952), + [aux_sym_cmd_identifier_token3] = ACTIONS(3952), + [aux_sym_cmd_identifier_token4] = ACTIONS(3952), + [aux_sym_cmd_identifier_token5] = ACTIONS(3952), + [aux_sym_cmd_identifier_token6] = ACTIONS(3952), + [aux_sym_cmd_identifier_token7] = ACTIONS(3952), + [aux_sym_cmd_identifier_token8] = ACTIONS(3952), + [aux_sym_cmd_identifier_token9] = ACTIONS(3952), + [aux_sym_cmd_identifier_token10] = ACTIONS(3952), + [aux_sym_cmd_identifier_token11] = ACTIONS(3952), + [aux_sym_cmd_identifier_token12] = ACTIONS(3952), + [aux_sym_cmd_identifier_token13] = ACTIONS(3952), + [aux_sym_cmd_identifier_token14] = ACTIONS(3952), + [aux_sym_cmd_identifier_token15] = ACTIONS(3952), + [aux_sym_cmd_identifier_token16] = ACTIONS(3952), + [aux_sym_cmd_identifier_token17] = ACTIONS(3952), + [aux_sym_cmd_identifier_token18] = ACTIONS(3952), + [aux_sym_cmd_identifier_token19] = ACTIONS(3952), + [aux_sym_cmd_identifier_token20] = ACTIONS(3952), + [aux_sym_cmd_identifier_token21] = ACTIONS(3952), + [aux_sym_cmd_identifier_token22] = ACTIONS(3952), + [aux_sym_cmd_identifier_token23] = ACTIONS(3952), + [aux_sym_cmd_identifier_token24] = ACTIONS(3952), + [aux_sym_cmd_identifier_token25] = ACTIONS(3952), + [aux_sym_cmd_identifier_token26] = ACTIONS(3952), + [aux_sym_cmd_identifier_token27] = ACTIONS(3952), + [aux_sym_cmd_identifier_token28] = ACTIONS(3952), + [aux_sym_cmd_identifier_token29] = ACTIONS(3952), + [aux_sym_cmd_identifier_token30] = ACTIONS(3952), + [aux_sym_cmd_identifier_token31] = ACTIONS(3952), + [aux_sym_cmd_identifier_token32] = ACTIONS(3952), + [aux_sym_cmd_identifier_token33] = ACTIONS(3952), + [aux_sym_cmd_identifier_token34] = ACTIONS(3952), + [aux_sym_cmd_identifier_token35] = ACTIONS(3952), + [aux_sym_cmd_identifier_token36] = ACTIONS(3952), + [anon_sym_true] = ACTIONS(3952), + [anon_sym_false] = ACTIONS(3952), + [anon_sym_null] = ACTIONS(3952), + [aux_sym_cmd_identifier_token38] = ACTIONS(3952), + [aux_sym_cmd_identifier_token39] = ACTIONS(3952), + [aux_sym_cmd_identifier_token40] = ACTIONS(3952), + [sym__newline] = ACTIONS(3952), + [sym__space] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_DOLLAR] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3952), + [aux_sym_ctrl_match_token1] = ACTIONS(3952), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [aux_sym_expr_unary_token1] = ACTIONS(3952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3952), + [anon_sym_DOT_DOT_LT] = ACTIONS(3952), + [aux_sym__val_number_decimal_token1] = ACTIONS(3952), + [aux_sym__val_number_decimal_token2] = ACTIONS(3952), + [aux_sym__val_number_decimal_token3] = ACTIONS(3952), + [aux_sym__val_number_decimal_token4] = ACTIONS(3952), + [aux_sym__val_number_token1] = ACTIONS(3952), + [aux_sym__val_number_token2] = ACTIONS(3952), + [aux_sym__val_number_token3] = ACTIONS(3952), + [anon_sym_0b] = ACTIONS(3952), + [anon_sym_0o] = ACTIONS(3952), + [anon_sym_0x] = ACTIONS(3952), + [sym_val_date] = ACTIONS(3952), + [anon_sym_DQUOTE] = ACTIONS(3952), + [sym__str_single_quotes] = ACTIONS(3952), + [sym__str_back_ticks] = ACTIONS(3952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3952), + [aux_sym_env_var_token1] = ACTIONS(3952), + [anon_sym_CARET] = ACTIONS(3952), [anon_sym_POUND] = ACTIONS(3), }, [1236] = { - [sym_match_pattern] = STATE(7697), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym__match_pattern_expression] = STATE(3315), + [sym__match_pattern_value] = STATE(3273), + [sym__match_pattern_list] = STATE(3277), + [sym__match_pattern_rest] = STATE(7997), + [sym__match_pattern_record] = STATE(3287), + [sym_expr_parenthesized] = STATE(3033), + [sym_val_range] = STATE(3273), + [sym__val_range] = STATE(7882), + [sym_val_nothing] = STATE(3288), + [sym_val_bool] = STATE(3213), + [sym_val_variable] = STATE(3034), + [sym_val_number] = STATE(3288), + [sym__val_number_decimal] = STATE(2800), + [sym__val_number] = STATE(3291), + [sym_val_duration] = STATE(3288), + [sym_val_filesize] = STATE(3288), + [sym_val_binary] = STATE(3288), + [sym_val_string] = STATE(3288), + [sym__str_double_quotes] = STATE(3297), + [sym_val_list] = STATE(7918), + [sym_val_table] = STATE(3288), + [sym__unquoted_in_list] = STATE(3315), + [sym__unquoted_anonymous_prefix] = STATE(7802), [sym_comment] = STATE(1236), - [aux_sym_shebang_repeat1] = STATE(3058), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3607), - [anon_sym__] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(6912), + [aux_sym__match_pattern_list_repeat1] = STATE(1306), + [anon_sym_true] = ACTIONS(3956), + [anon_sym_false] = ACTIONS(3956), + [anon_sym_null] = ACTIONS(3958), + [aux_sym_cmd_identifier_token38] = ACTIONS(3960), + [aux_sym_cmd_identifier_token39] = ACTIONS(3960), + [aux_sym_cmd_identifier_token40] = ACTIONS(3960), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_RBRACK] = ACTIONS(3964), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_DOLLAR] = ACTIONS(3968), + [aux_sym_ctrl_match_token1] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3974), + [anon_sym_DOT_DOT_LT] = ACTIONS(3974), + [aux_sym__val_number_decimal_token1] = ACTIONS(3976), + [aux_sym__val_number_decimal_token2] = ACTIONS(3978), + [aux_sym__val_number_decimal_token3] = ACTIONS(3980), + [aux_sym__val_number_decimal_token4] = ACTIONS(3982), + [aux_sym__val_number_token1] = ACTIONS(3984), + [aux_sym__val_number_token2] = ACTIONS(3984), + [aux_sym__val_number_token3] = ACTIONS(3984), + [anon_sym_0b] = ACTIONS(3986), + [anon_sym_0o] = ACTIONS(3988), + [anon_sym_0x] = ACTIONS(3988), + [sym_val_date] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3992), + [sym__str_single_quotes] = ACTIONS(3994), + [sym__str_back_ticks] = ACTIONS(3994), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3996), + [anon_sym_POUND] = ACTIONS(247), }, [1237] = { - [sym__match_pattern_expression] = STATE(3197), - [sym__match_pattern_value] = STATE(3232), - [sym__match_pattern_list] = STATE(3235), - [sym__match_pattern_rest] = STATE(8022), - [sym__match_pattern_record] = STATE(3236), - [sym_expr_parenthesized] = STATE(2991), - [sym_val_range] = STATE(3232), - [sym__val_range] = STATE(7525), - [sym_val_nothing] = STATE(3191), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(2993), - [sym_val_number] = STATE(3191), - [sym__val_number_decimal] = STATE(2714), - [sym__val_number] = STATE(3210), - [sym_val_duration] = STATE(3191), - [sym_val_filesize] = STATE(3191), - [sym_val_binary] = STATE(3191), - [sym_val_string] = STATE(3191), - [sym__str_double_quotes] = STATE(3219), - [sym_val_list] = STATE(7701), - [sym_val_table] = STATE(3191), - [sym__unquoted_in_list] = STATE(3197), - [sym__unquoted_anonymous_prefix] = STATE(7761), + [sym_match_pattern] = STATE(7745), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1237), - [aux_sym_shebang_repeat1] = STATE(6514), - [aux_sym__match_pattern_list_repeat1] = STATE(1304), - [anon_sym_true] = ACTIONS(3846), - [anon_sym_false] = ACTIONS(3846), - [anon_sym_null] = ACTIONS(3848), - [aux_sym_cmd_identifier_token38] = ACTIONS(3850), - [aux_sym_cmd_identifier_token39] = ACTIONS(3850), - [aux_sym_cmd_identifier_token40] = ACTIONS(3850), - [sym__newline] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(3852), - [anon_sym_RBRACK] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3856), - [anon_sym_DOLLAR] = ACTIONS(3858), - [aux_sym_ctrl_match_token1] = ACTIONS(3860), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3864), - [anon_sym_DOT_DOT_LT] = ACTIONS(3864), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3868), - [anon_sym_DOT2] = ACTIONS(3870), - [aux_sym__val_number_decimal_token3] = ACTIONS(3872), - [aux_sym__val_number_token1] = ACTIONS(3874), - [aux_sym__val_number_token2] = ACTIONS(3874), - [aux_sym__val_number_token3] = ACTIONS(3874), - [anon_sym_0b] = ACTIONS(3876), - [anon_sym_0o] = ACTIONS(3878), - [anon_sym_0x] = ACTIONS(3878), - [sym_val_date] = ACTIONS(3880), - [anon_sym_DQUOTE] = ACTIONS(3882), - [sym__str_single_quotes] = ACTIONS(3884), - [sym__str_back_ticks] = ACTIONS(3884), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3886), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3108), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym__] = ACTIONS(3943), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1238] = { - [sym__expr_parenthesized_immediate] = STATE(1542), - [sym__immediate_decimal] = STATE(1411), - [sym_val_variable] = STATE(1542), + [sym_match_pattern] = STATE(7745), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1238), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(3911), - [aux_sym__immediate_decimal_token3] = ACTIONS(3913), - [aux_sym__immediate_decimal_token4] = ACTIONS(3915), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2927), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2927), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token4] = ACTIONS(3917), - [aux_sym_unquoted_token6] = ACTIONS(3919), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3108), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym__] = ACTIONS(3943), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1239] = { - [sym_match_pattern] = STATE(7697), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym__expr_parenthesized_immediate] = STATE(1512), + [sym__immediate_decimal] = STATE(1422), + [sym_val_variable] = STATE(1512), [sym_comment] = STATE(1239), - [aux_sym_shebang_repeat1] = STATE(3058), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3653), - [anon_sym__] = ACTIONS(3842), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [aux_sym_cmd_identifier_token38] = ACTIONS(1427), + [aux_sym_cmd_identifier_token39] = ACTIONS(1427), + [aux_sym_cmd_identifier_token40] = ACTIONS(1427), + [sym__newline] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_err_GT_PIPE] = ACTIONS(1427), + [anon_sym_out_GT_PIPE] = ACTIONS(1427), + [anon_sym_e_GT_PIPE] = ACTIONS(1427), + [anon_sym_o_GT_PIPE] = ACTIONS(1427), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1427), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1427), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1427), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1413), + [aux_sym_ctrl_match_token1] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_LPAREN2] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), + [anon_sym_DOT_DOT_LT] = ACTIONS(1427), + [aux_sym__immediate_decimal_token1] = ACTIONS(4006), + [aux_sym__immediate_decimal_token3] = ACTIONS(4008), + [aux_sym__immediate_decimal_token4] = ACTIONS(4010), + [aux_sym__immediate_decimal_token5] = ACTIONS(4012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1413), + [aux_sym__val_number_decimal_token2] = ACTIONS(1413), + [aux_sym__val_number_decimal_token3] = ACTIONS(1413), + [aux_sym__val_number_decimal_token4] = ACTIONS(1413), + [aux_sym__val_number_token1] = ACTIONS(1427), + [aux_sym__val_number_token2] = ACTIONS(1427), + [aux_sym__val_number_token3] = ACTIONS(1427), + [anon_sym_0b] = ACTIONS(1413), + [anon_sym_0o] = ACTIONS(1413), + [anon_sym_0x] = ACTIONS(1413), + [sym_val_date] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym__str_single_quotes] = ACTIONS(1427), + [sym__str_back_ticks] = ACTIONS(1427), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1427), + [anon_sym_err_GT] = ACTIONS(1413), + [anon_sym_out_GT] = ACTIONS(1413), + [anon_sym_e_GT] = ACTIONS(1413), + [anon_sym_o_GT] = ACTIONS(1413), + [anon_sym_err_PLUSout_GT] = ACTIONS(1413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1413), + [anon_sym_o_PLUSe_GT] = ACTIONS(1413), + [anon_sym_e_PLUSo_GT] = ACTIONS(1413), + [anon_sym_err_GT_GT] = ACTIONS(1427), + [anon_sym_out_GT_GT] = ACTIONS(1427), + [anon_sym_e_GT_GT] = ACTIONS(1427), + [anon_sym_o_GT_GT] = ACTIONS(1427), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1427), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1427), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1427), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1427), + [aux_sym_unquoted_token1] = ACTIONS(1413), + [aux_sym_unquoted_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), }, [1240] = { - [sym__expr_parenthesized_immediate] = STATE(1600), - [sym__immediate_decimal] = STATE(1387), - [sym_val_variable] = STATE(1600), + [sym_match_pattern] = STATE(7745), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1240), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1416), - [aux_sym_cmd_identifier_token38] = ACTIONS(1416), - [aux_sym_cmd_identifier_token39] = ACTIONS(1416), - [aux_sym_cmd_identifier_token40] = ACTIONS(1416), - [sym__newline] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_err_GT_PIPE] = ACTIONS(1416), - [anon_sym_out_GT_PIPE] = ACTIONS(1416), - [anon_sym_e_GT_PIPE] = ACTIONS(1416), - [anon_sym_o_GT_PIPE] = ACTIONS(1416), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1416), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1416), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1416), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1404), - [aux_sym_ctrl_match_token1] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(3921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1416), - [anon_sym_DOT_DOT_LT] = ACTIONS(1416), - [aux_sym__immediate_decimal_token1] = ACTIONS(3911), - [aux_sym__immediate_decimal_token3] = ACTIONS(3913), - [aux_sym__immediate_decimal_token4] = ACTIONS(3915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1404), - [aux_sym__val_number_decimal_token2] = ACTIONS(1404), - [anon_sym_DOT2] = ACTIONS(1404), - [aux_sym__val_number_decimal_token3] = ACTIONS(1404), - [aux_sym__val_number_token1] = ACTIONS(1416), - [aux_sym__val_number_token2] = ACTIONS(1416), - [aux_sym__val_number_token3] = ACTIONS(1416), - [anon_sym_0b] = ACTIONS(1404), - [anon_sym_0o] = ACTIONS(1404), - [anon_sym_0x] = ACTIONS(1404), - [sym_val_date] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym__str_single_quotes] = ACTIONS(1416), - [sym__str_back_ticks] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), - [anon_sym_err_GT] = ACTIONS(1404), - [anon_sym_out_GT] = ACTIONS(1404), - [anon_sym_e_GT] = ACTIONS(1404), - [anon_sym_o_GT] = ACTIONS(1404), - [anon_sym_err_PLUSout_GT] = ACTIONS(1404), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1404), - [anon_sym_o_PLUSe_GT] = ACTIONS(1404), - [anon_sym_e_PLUSo_GT] = ACTIONS(1404), - [anon_sym_err_GT_GT] = ACTIONS(1416), - [anon_sym_out_GT_GT] = ACTIONS(1416), - [anon_sym_e_GT_GT] = ACTIONS(1416), - [anon_sym_o_GT_GT] = ACTIONS(1416), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1416), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1416), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1416), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1416), - [aux_sym_unquoted_token1] = ACTIONS(1404), - [aux_sym_unquoted_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3108), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3943), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1241] = { + [sym_cell_path] = STATE(1385), + [sym_path] = STATE(1328), [sym_comment] = STATE(1241), - [aux_sym_cmd_identifier_token1] = ACTIONS(1216), - [aux_sym_cmd_identifier_token2] = ACTIONS(1220), - [aux_sym_cmd_identifier_token3] = ACTIONS(1220), - [aux_sym_cmd_identifier_token4] = ACTIONS(1220), - [aux_sym_cmd_identifier_token5] = ACTIONS(1220), - [aux_sym_cmd_identifier_token6] = ACTIONS(1220), - [aux_sym_cmd_identifier_token7] = ACTIONS(1220), - [aux_sym_cmd_identifier_token8] = ACTIONS(1220), - [aux_sym_cmd_identifier_token9] = ACTIONS(1216), - [aux_sym_cmd_identifier_token10] = ACTIONS(1220), - [aux_sym_cmd_identifier_token11] = ACTIONS(1220), - [aux_sym_cmd_identifier_token12] = ACTIONS(1220), - [aux_sym_cmd_identifier_token13] = ACTIONS(1216), - [aux_sym_cmd_identifier_token14] = ACTIONS(1220), - [aux_sym_cmd_identifier_token15] = ACTIONS(1216), - [aux_sym_cmd_identifier_token16] = ACTIONS(1220), - [aux_sym_cmd_identifier_token17] = ACTIONS(1220), - [aux_sym_cmd_identifier_token18] = ACTIONS(1220), - [aux_sym_cmd_identifier_token19] = ACTIONS(1220), - [aux_sym_cmd_identifier_token20] = ACTIONS(1220), - [aux_sym_cmd_identifier_token21] = ACTIONS(1220), - [aux_sym_cmd_identifier_token22] = ACTIONS(1220), - [aux_sym_cmd_identifier_token23] = ACTIONS(1216), - [aux_sym_cmd_identifier_token24] = ACTIONS(1220), - [aux_sym_cmd_identifier_token25] = ACTIONS(1220), - [aux_sym_cmd_identifier_token26] = ACTIONS(1220), - [aux_sym_cmd_identifier_token27] = ACTIONS(1220), - [aux_sym_cmd_identifier_token28] = ACTIONS(1220), - [aux_sym_cmd_identifier_token29] = ACTIONS(1220), - [aux_sym_cmd_identifier_token30] = ACTIONS(1220), - [aux_sym_cmd_identifier_token31] = ACTIONS(1220), - [aux_sym_cmd_identifier_token32] = ACTIONS(1220), - [aux_sym_cmd_identifier_token33] = ACTIONS(1220), - [aux_sym_cmd_identifier_token34] = ACTIONS(1220), - [aux_sym_cmd_identifier_token35] = ACTIONS(1220), - [aux_sym_cmd_identifier_token36] = ACTIONS(1216), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), - [anon_sym_null] = ACTIONS(1220), - [aux_sym_cmd_identifier_token38] = ACTIONS(1216), - [aux_sym_cmd_identifier_token39] = ACTIONS(1220), - [aux_sym_cmd_identifier_token40] = ACTIONS(1220), - [sym__newline] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_DOLLAR] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [aux_sym_ctrl_match_token1] = ACTIONS(1220), - [anon_sym_DOT_DOT] = ACTIONS(1216), - [aux_sym_expr_unary_token1] = ACTIONS(1220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1220), - [anon_sym_DOT_DOT_LT] = ACTIONS(1220), - [aux_sym__val_number_decimal_token1] = ACTIONS(1216), - [aux_sym__val_number_decimal_token2] = ACTIONS(1220), - [anon_sym_DOT2] = ACTIONS(1216), - [aux_sym__val_number_decimal_token3] = ACTIONS(1220), - [aux_sym__val_number_token1] = ACTIONS(1220), - [aux_sym__val_number_token2] = ACTIONS(1220), - [aux_sym__val_number_token3] = ACTIONS(1220), - [anon_sym_0b] = ACTIONS(1216), - [anon_sym_0o] = ACTIONS(1216), - [anon_sym_0x] = ACTIONS(1216), - [sym_val_date] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym__str_single_quotes] = ACTIONS(1220), - [sym__str_back_ticks] = ACTIONS(1220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1255), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(947), + [sym__newline] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_err_GT_PIPE] = ACTIONS(947), + [anon_sym_out_GT_PIPE] = ACTIONS(947), + [anon_sym_e_GT_PIPE] = ACTIONS(947), + [anon_sym_o_GT_PIPE] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [aux_sym_expr_binary_token1] = ACTIONS(947), + [aux_sym_expr_binary_token2] = ACTIONS(947), + [aux_sym_expr_binary_token3] = ACTIONS(947), + [aux_sym_expr_binary_token4] = ACTIONS(947), + [aux_sym_expr_binary_token5] = ACTIONS(947), + [aux_sym_expr_binary_token6] = ACTIONS(947), + [aux_sym_expr_binary_token7] = ACTIONS(947), + [aux_sym_expr_binary_token8] = ACTIONS(947), + [aux_sym_expr_binary_token9] = ACTIONS(947), + [aux_sym_expr_binary_token10] = ACTIONS(947), + [aux_sym_expr_binary_token11] = ACTIONS(947), + [aux_sym_expr_binary_token12] = ACTIONS(947), + [aux_sym_expr_binary_token13] = ACTIONS(947), + [aux_sym_expr_binary_token14] = ACTIONS(947), + [aux_sym_expr_binary_token15] = ACTIONS(947), + [aux_sym_expr_binary_token16] = ACTIONS(947), + [aux_sym_expr_binary_token17] = ACTIONS(947), + [aux_sym_expr_binary_token18] = ACTIONS(947), + [aux_sym_expr_binary_token19] = ACTIONS(947), + [aux_sym_expr_binary_token20] = ACTIONS(947), + [aux_sym_expr_binary_token21] = ACTIONS(947), + [aux_sym_expr_binary_token22] = ACTIONS(947), + [aux_sym_expr_binary_token23] = ACTIONS(947), + [aux_sym_expr_binary_token24] = ACTIONS(947), + [aux_sym_expr_binary_token25] = ACTIONS(947), + [aux_sym_expr_binary_token26] = ACTIONS(947), + [aux_sym_expr_binary_token27] = ACTIONS(947), + [aux_sym_expr_binary_token28] = ACTIONS(947), + [anon_sym_DOT_DOT2] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(4014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(947), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(247), }, [1242] = { - [sym__expr_parenthesized_immediate] = STATE(1860), - [sym__immediate_decimal] = STATE(1540), - [sym_val_variable] = STATE(1860), + [sym_env_var] = STATE(7227), [sym_comment] = STATE(1242), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_null] = ACTIONS(1425), - [aux_sym_cmd_identifier_token38] = ACTIONS(1425), - [aux_sym_cmd_identifier_token39] = ACTIONS(1425), - [aux_sym_cmd_identifier_token40] = ACTIONS(1425), - [sym__newline] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_err_GT_PIPE] = ACTIONS(1425), - [anon_sym_out_GT_PIPE] = ACTIONS(1425), - [anon_sym_e_GT_PIPE] = ACTIONS(1425), - [anon_sym_o_GT_PIPE] = ACTIONS(1425), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1425), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1425), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1425), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_RPAREN] = ACTIONS(1425), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1423), - [aux_sym_ctrl_match_token1] = ACTIONS(1425), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1425), - [anon_sym_DOT_DOT_LT] = ACTIONS(1425), - [aux_sym__immediate_decimal_token1] = ACTIONS(3929), - [aux_sym__immediate_decimal_token3] = ACTIONS(3931), - [aux_sym__immediate_decimal_token4] = ACTIONS(3933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1423), - [aux_sym__val_number_decimal_token2] = ACTIONS(1423), - [anon_sym_DOT2] = ACTIONS(1423), - [aux_sym__val_number_decimal_token3] = ACTIONS(1423), - [aux_sym__val_number_token1] = ACTIONS(1425), - [aux_sym__val_number_token2] = ACTIONS(1425), - [aux_sym__val_number_token3] = ACTIONS(1425), - [anon_sym_0b] = ACTIONS(1423), - [anon_sym_0o] = ACTIONS(1423), - [anon_sym_0x] = ACTIONS(1423), - [sym_val_date] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym__str_single_quotes] = ACTIONS(1425), - [sym__str_back_ticks] = ACTIONS(1425), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), - [anon_sym_err_GT] = ACTIONS(1423), - [anon_sym_out_GT] = ACTIONS(1423), - [anon_sym_e_GT] = ACTIONS(1423), - [anon_sym_o_GT] = ACTIONS(1423), - [anon_sym_err_PLUSout_GT] = ACTIONS(1423), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1423), - [anon_sym_o_PLUSe_GT] = ACTIONS(1423), - [anon_sym_e_PLUSo_GT] = ACTIONS(1423), - [anon_sym_err_GT_GT] = ACTIONS(1425), - [anon_sym_out_GT_GT] = ACTIONS(1425), - [anon_sym_e_GT_GT] = ACTIONS(1425), - [anon_sym_o_GT_GT] = ACTIONS(1425), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1425), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1425), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1425), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1425), - [aux_sym_unquoted_token1] = ACTIONS(1423), - [aux_sym_unquoted_token2] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1242), + [aux_sym_cmd_identifier_token1] = ACTIONS(3891), + [aux_sym_cmd_identifier_token2] = ACTIONS(4016), + [aux_sym_cmd_identifier_token3] = ACTIONS(4016), + [aux_sym_cmd_identifier_token4] = ACTIONS(4016), + [aux_sym_cmd_identifier_token5] = ACTIONS(4016), + [aux_sym_cmd_identifier_token6] = ACTIONS(4016), + [aux_sym_cmd_identifier_token7] = ACTIONS(4016), + [aux_sym_cmd_identifier_token8] = ACTIONS(4016), + [aux_sym_cmd_identifier_token9] = ACTIONS(3891), + [aux_sym_cmd_identifier_token10] = ACTIONS(4016), + [aux_sym_cmd_identifier_token11] = ACTIONS(4016), + [aux_sym_cmd_identifier_token12] = ACTIONS(4016), + [aux_sym_cmd_identifier_token13] = ACTIONS(3891), + [aux_sym_cmd_identifier_token14] = ACTIONS(4016), + [aux_sym_cmd_identifier_token15] = ACTIONS(3891), + [aux_sym_cmd_identifier_token16] = ACTIONS(4016), + [aux_sym_cmd_identifier_token17] = ACTIONS(4016), + [aux_sym_cmd_identifier_token18] = ACTIONS(4016), + [aux_sym_cmd_identifier_token19] = ACTIONS(4016), + [aux_sym_cmd_identifier_token20] = ACTIONS(4016), + [aux_sym_cmd_identifier_token21] = ACTIONS(4016), + [aux_sym_cmd_identifier_token22] = ACTIONS(4016), + [aux_sym_cmd_identifier_token23] = ACTIONS(4016), + [aux_sym_cmd_identifier_token24] = ACTIONS(4016), + [aux_sym_cmd_identifier_token25] = ACTIONS(4016), + [aux_sym_cmd_identifier_token26] = ACTIONS(4016), + [aux_sym_cmd_identifier_token27] = ACTIONS(4016), + [aux_sym_cmd_identifier_token28] = ACTIONS(4016), + [aux_sym_cmd_identifier_token29] = ACTIONS(4016), + [aux_sym_cmd_identifier_token30] = ACTIONS(4016), + [aux_sym_cmd_identifier_token31] = ACTIONS(4016), + [aux_sym_cmd_identifier_token32] = ACTIONS(4016), + [aux_sym_cmd_identifier_token33] = ACTIONS(4016), + [aux_sym_cmd_identifier_token34] = ACTIONS(4016), + [aux_sym_cmd_identifier_token35] = ACTIONS(4016), + [aux_sym_cmd_identifier_token36] = ACTIONS(3891), + [anon_sym_true] = ACTIONS(4016), + [anon_sym_false] = ACTIONS(4016), + [anon_sym_null] = ACTIONS(4016), + [aux_sym_cmd_identifier_token38] = ACTIONS(3891), + [aux_sym_cmd_identifier_token39] = ACTIONS(4016), + [aux_sym_cmd_identifier_token40] = ACTIONS(4016), + [anon_sym_LBRACK] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(3891), + [anon_sym_DASH] = ACTIONS(3891), + [aux_sym_ctrl_match_token1] = ACTIONS(4016), + [anon_sym_DOT_DOT] = ACTIONS(3891), + [aux_sym_expr_unary_token1] = ACTIONS(4016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4016), + [anon_sym_DOT_DOT_LT] = ACTIONS(4016), + [aux_sym__val_number_decimal_token1] = ACTIONS(3891), + [aux_sym__val_number_decimal_token2] = ACTIONS(4016), + [aux_sym__val_number_decimal_token3] = ACTIONS(4016), + [aux_sym__val_number_decimal_token4] = ACTIONS(4016), + [aux_sym__val_number_token1] = ACTIONS(4016), + [aux_sym__val_number_token2] = ACTIONS(4016), + [aux_sym__val_number_token3] = ACTIONS(4016), + [anon_sym_0b] = ACTIONS(3891), + [anon_sym_0o] = ACTIONS(3891), + [anon_sym_0x] = ACTIONS(3891), + [sym_val_date] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4016), + [sym__str_single_quotes] = ACTIONS(4016), + [sym__str_back_ticks] = ACTIONS(4016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4016), + [aux_sym_env_var_token1] = ACTIONS(4018), + [anon_sym_CARET] = ACTIONS(4016), + [anon_sym_POUND] = ACTIONS(247), }, [1243] = { - [sym_cell_path] = STATE(1445), - [sym_path] = STATE(1409), + [sym_cell_path] = STATE(1409), + [sym_path] = STATE(1299), [sym_comment] = STATE(1243), - [aux_sym_cell_path_repeat1] = STATE(1289), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_PLUS_EQ] = ACTIONS(885), - [anon_sym_DASH_EQ] = ACTIONS(885), - [anon_sym_STAR_EQ] = ACTIONS(885), - [anon_sym_SLASH_EQ] = ACTIONS(885), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(885), - [sym__newline] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_in] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_and] = ACTIONS(885), - [anon_sym_xor] = ACTIONS(885), - [anon_sym_or] = ACTIONS(885), - [anon_sym_not_DASHin] = ACTIONS(885), - [anon_sym_starts_DASHwith] = ACTIONS(885), - [anon_sym_ends_DASHwith] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_EQ_TILDE] = ACTIONS(885), - [anon_sym_BANG_TILDE] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(885), - [anon_sym_SLASH_SLASH] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(885), - [anon_sym_bit_DASHshr] = ACTIONS(885), - [anon_sym_bit_DASHand] = ACTIONS(885), - [anon_sym_bit_DASHxor] = ACTIONS(885), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [aux_sym_record_entry_token1] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1259), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(947), + [sym__newline] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_err_GT_PIPE] = ACTIONS(947), + [anon_sym_out_GT_PIPE] = ACTIONS(947), + [anon_sym_e_GT_PIPE] = ACTIONS(947), + [anon_sym_o_GT_PIPE] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), + [aux_sym_ctrl_match_token1] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [aux_sym_expr_binary_token1] = ACTIONS(947), + [aux_sym_expr_binary_token2] = ACTIONS(947), + [aux_sym_expr_binary_token3] = ACTIONS(947), + [aux_sym_expr_binary_token4] = ACTIONS(947), + [aux_sym_expr_binary_token5] = ACTIONS(947), + [aux_sym_expr_binary_token6] = ACTIONS(947), + [aux_sym_expr_binary_token7] = ACTIONS(947), + [aux_sym_expr_binary_token8] = ACTIONS(947), + [aux_sym_expr_binary_token9] = ACTIONS(947), + [aux_sym_expr_binary_token10] = ACTIONS(947), + [aux_sym_expr_binary_token11] = ACTIONS(947), + [aux_sym_expr_binary_token12] = ACTIONS(947), + [aux_sym_expr_binary_token13] = ACTIONS(947), + [aux_sym_expr_binary_token14] = ACTIONS(947), + [aux_sym_expr_binary_token15] = ACTIONS(947), + [aux_sym_expr_binary_token16] = ACTIONS(947), + [aux_sym_expr_binary_token17] = ACTIONS(947), + [aux_sym_expr_binary_token18] = ACTIONS(947), + [aux_sym_expr_binary_token19] = ACTIONS(947), + [aux_sym_expr_binary_token20] = ACTIONS(947), + [aux_sym_expr_binary_token21] = ACTIONS(947), + [aux_sym_expr_binary_token22] = ACTIONS(947), + [aux_sym_expr_binary_token23] = ACTIONS(947), + [aux_sym_expr_binary_token24] = ACTIONS(947), + [aux_sym_expr_binary_token25] = ACTIONS(947), + [aux_sym_expr_binary_token26] = ACTIONS(947), + [aux_sym_expr_binary_token27] = ACTIONS(947), + [aux_sym_expr_binary_token28] = ACTIONS(947), + [anon_sym_DOT_DOT2] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(947), + [aux_sym_record_entry_token1] = ACTIONS(947), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(247), }, [1244] = { + [sym__match_pattern_expression] = STATE(3315), + [sym__match_pattern_value] = STATE(3273), + [sym__match_pattern_list] = STATE(3277), + [sym__match_pattern_rest] = STATE(7871), + [sym__match_pattern_record] = STATE(3287), + [sym_expr_parenthesized] = STATE(3033), + [sym_val_range] = STATE(3273), + [sym__val_range] = STATE(7882), + [sym_val_nothing] = STATE(3288), + [sym_val_bool] = STATE(3213), + [sym_val_variable] = STATE(3034), + [sym_val_number] = STATE(3288), + [sym__val_number_decimal] = STATE(2800), + [sym__val_number] = STATE(3291), + [sym_val_duration] = STATE(3288), + [sym_val_filesize] = STATE(3288), + [sym_val_binary] = STATE(3288), + [sym_val_string] = STATE(3288), + [sym__str_double_quotes] = STATE(3297), + [sym_val_list] = STATE(8054), + [sym_val_table] = STATE(3288), + [sym__unquoted_in_list] = STATE(3315), + [sym__unquoted_anonymous_prefix] = STATE(7802), [sym_comment] = STATE(1244), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(3937), - [aux_sym__immediate_decimal_token2] = ACTIONS(3939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(6865), + [aux_sym__match_pattern_list_repeat1] = STATE(1317), + [anon_sym_true] = ACTIONS(3956), + [anon_sym_false] = ACTIONS(3956), + [anon_sym_null] = ACTIONS(3958), + [aux_sym_cmd_identifier_token38] = ACTIONS(3960), + [aux_sym_cmd_identifier_token39] = ACTIONS(3960), + [aux_sym_cmd_identifier_token40] = ACTIONS(3960), + [sym__newline] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_RBRACK] = ACTIONS(4023), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_DOLLAR] = ACTIONS(3968), + [aux_sym_ctrl_match_token1] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(4025), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3974), + [anon_sym_DOT_DOT_LT] = ACTIONS(3974), + [aux_sym__val_number_decimal_token1] = ACTIONS(3976), + [aux_sym__val_number_decimal_token2] = ACTIONS(3978), + [aux_sym__val_number_decimal_token3] = ACTIONS(3980), + [aux_sym__val_number_decimal_token4] = ACTIONS(3982), + [aux_sym__val_number_token1] = ACTIONS(3984), + [aux_sym__val_number_token2] = ACTIONS(3984), + [aux_sym__val_number_token3] = ACTIONS(3984), + [anon_sym_0b] = ACTIONS(3986), + [anon_sym_0o] = ACTIONS(3988), + [anon_sym_0x] = ACTIONS(3988), + [sym_val_date] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3992), + [sym__str_single_quotes] = ACTIONS(3994), + [sym__str_back_ticks] = ACTIONS(3994), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3996), + [anon_sym_POUND] = ACTIONS(247), }, [1245] = { + [sym_match_pattern] = STATE(7745), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1245), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_PLUS_EQ] = ACTIONS(918), - [anon_sym_DASH_EQ] = ACTIONS(918), - [anon_sym_STAR_EQ] = ACTIONS(918), - [anon_sym_SLASH_EQ] = ACTIONS(918), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(918), - [sym__newline] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_err_GT_PIPE] = ACTIONS(918), - [anon_sym_out_GT_PIPE] = ACTIONS(918), - [anon_sym_e_GT_PIPE] = ACTIONS(918), - [anon_sym_o_GT_PIPE] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_in] = ACTIONS(918), - [aux_sym_ctrl_match_token1] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_and] = ACTIONS(918), - [anon_sym_xor] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_not_DASHin] = ACTIONS(918), - [anon_sym_starts_DASHwith] = ACTIONS(918), - [anon_sym_ends_DASHwith] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT2] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_TILDE] = ACTIONS(918), - [anon_sym_BANG_TILDE] = ACTIONS(918), - [anon_sym_STAR_STAR] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_SLASH] = ACTIONS(916), - [anon_sym_mod] = ACTIONS(918), - [anon_sym_SLASH_SLASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(918), - [anon_sym_bit_DASHshr] = ACTIONS(918), - [anon_sym_bit_DASHand] = ACTIONS(918), - [anon_sym_bit_DASHxor] = ACTIONS(918), - [anon_sym_bit_DASHor] = ACTIONS(918), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3108), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym__] = ACTIONS(3943), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1246] = { - [sym_cell_path] = STATE(1434), - [sym_path] = STATE(1261), + [sym_match_pattern] = STATE(7745), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1246), - [aux_sym_cell_path_repeat1] = STATE(1231), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_PLUS_EQ] = ACTIONS(885), - [anon_sym_DASH_EQ] = ACTIONS(885), - [anon_sym_STAR_EQ] = ACTIONS(885), - [anon_sym_SLASH_EQ] = ACTIONS(885), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(885), - [sym__newline] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_in] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_and] = ACTIONS(885), - [anon_sym_xor] = ACTIONS(885), - [anon_sym_or] = ACTIONS(885), - [anon_sym_not_DASHin] = ACTIONS(885), - [anon_sym_starts_DASHwith] = ACTIONS(885), - [anon_sym_ends_DASHwith] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_EQ_TILDE] = ACTIONS(885), - [anon_sym_BANG_TILDE] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(885), - [anon_sym_SLASH_SLASH] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(885), - [anon_sym_bit_DASHshr] = ACTIONS(885), - [anon_sym_bit_DASHand] = ACTIONS(885), - [anon_sym_bit_DASHxor] = ACTIONS(885), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(3891), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3108), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3743), + [anon_sym__] = ACTIONS(3943), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1247] = { + [sym_match_pattern] = STATE(7745), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1247), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_PLUS_EQ] = ACTIONS(922), - [anon_sym_DASH_EQ] = ACTIONS(922), - [anon_sym_STAR_EQ] = ACTIONS(922), - [anon_sym_SLASH_EQ] = ACTIONS(922), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(922), - [sym__newline] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_err_GT_PIPE] = ACTIONS(922), - [anon_sym_out_GT_PIPE] = ACTIONS(922), - [anon_sym_e_GT_PIPE] = ACTIONS(922), - [anon_sym_o_GT_PIPE] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_in] = ACTIONS(922), - [aux_sym_ctrl_match_token1] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_and] = ACTIONS(922), - [anon_sym_xor] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_not_DASHin] = ACTIONS(922), - [anon_sym_starts_DASHwith] = ACTIONS(922), - [anon_sym_ends_DASHwith] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_BANG_TILDE] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(922), - [anon_sym_SLASH_SLASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(922), - [anon_sym_bit_DASHshr] = ACTIONS(922), - [anon_sym_bit_DASHand] = ACTIONS(922), - [anon_sym_bit_DASHxor] = ACTIONS(922), - [anon_sym_bit_DASHor] = ACTIONS(922), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3108), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3667), + [anon_sym__] = ACTIONS(3943), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1248] = { + [sym_match_pattern] = STATE(7745), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1248), - [anon_sym_EQ] = ACTIONS(912), - [anon_sym_PLUS_EQ] = ACTIONS(914), - [anon_sym_DASH_EQ] = ACTIONS(914), - [anon_sym_STAR_EQ] = ACTIONS(914), - [anon_sym_SLASH_EQ] = ACTIONS(914), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_in] = ACTIONS(914), - [aux_sym_ctrl_match_token1] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(912), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3108), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(3745), + [anon_sym__] = ACTIONS(3943), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), }, [1249] = { [sym_comment] = STATE(1249), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(3941), - [aux_sym__immediate_decimal_token2] = ACTIONS(3943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), + [aux_sym_pipe_element_repeat1] = STATE(1249), + [aux_sym_cmd_identifier_token1] = ACTIONS(4029), + [aux_sym_cmd_identifier_token2] = ACTIONS(4029), + [aux_sym_cmd_identifier_token3] = ACTIONS(4029), + [aux_sym_cmd_identifier_token4] = ACTIONS(4029), + [aux_sym_cmd_identifier_token5] = ACTIONS(4029), + [aux_sym_cmd_identifier_token6] = ACTIONS(4029), + [aux_sym_cmd_identifier_token7] = ACTIONS(4029), + [aux_sym_cmd_identifier_token8] = ACTIONS(4029), + [aux_sym_cmd_identifier_token9] = ACTIONS(4029), + [aux_sym_cmd_identifier_token10] = ACTIONS(4029), + [aux_sym_cmd_identifier_token11] = ACTIONS(4029), + [aux_sym_cmd_identifier_token12] = ACTIONS(4029), + [aux_sym_cmd_identifier_token13] = ACTIONS(4029), + [aux_sym_cmd_identifier_token14] = ACTIONS(4029), + [aux_sym_cmd_identifier_token15] = ACTIONS(4029), + [aux_sym_cmd_identifier_token16] = ACTIONS(4029), + [aux_sym_cmd_identifier_token17] = ACTIONS(4029), + [aux_sym_cmd_identifier_token18] = ACTIONS(4029), + [aux_sym_cmd_identifier_token19] = ACTIONS(4029), + [aux_sym_cmd_identifier_token20] = ACTIONS(4029), + [aux_sym_cmd_identifier_token21] = ACTIONS(4029), + [aux_sym_cmd_identifier_token22] = ACTIONS(4029), + [aux_sym_cmd_identifier_token23] = ACTIONS(4029), + [aux_sym_cmd_identifier_token24] = ACTIONS(4029), + [aux_sym_cmd_identifier_token25] = ACTIONS(4029), + [aux_sym_cmd_identifier_token26] = ACTIONS(4029), + [aux_sym_cmd_identifier_token27] = ACTIONS(4029), + [aux_sym_cmd_identifier_token28] = ACTIONS(4029), + [aux_sym_cmd_identifier_token29] = ACTIONS(4029), + [aux_sym_cmd_identifier_token30] = ACTIONS(4029), + [aux_sym_cmd_identifier_token31] = ACTIONS(4029), + [aux_sym_cmd_identifier_token32] = ACTIONS(4029), + [aux_sym_cmd_identifier_token33] = ACTIONS(4029), + [aux_sym_cmd_identifier_token34] = ACTIONS(4029), + [aux_sym_cmd_identifier_token35] = ACTIONS(4029), + [aux_sym_cmd_identifier_token36] = ACTIONS(4029), + [anon_sym_true] = ACTIONS(4029), + [anon_sym_false] = ACTIONS(4029), + [anon_sym_null] = ACTIONS(4029), + [aux_sym_cmd_identifier_token38] = ACTIONS(4029), + [aux_sym_cmd_identifier_token39] = ACTIONS(4029), + [aux_sym_cmd_identifier_token40] = ACTIONS(4029), + [sym__space] = ACTIONS(4031), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4029), + [anon_sym_DASH] = ACTIONS(4029), + [aux_sym_ctrl_match_token1] = ACTIONS(4029), + [anon_sym_DOT_DOT] = ACTIONS(4029), + [aux_sym_expr_unary_token1] = ACTIONS(4029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4029), + [anon_sym_DOT_DOT_LT] = ACTIONS(4029), + [aux_sym__val_number_decimal_token1] = ACTIONS(4029), + [aux_sym__val_number_decimal_token2] = ACTIONS(4029), + [aux_sym__val_number_decimal_token3] = ACTIONS(4029), + [aux_sym__val_number_decimal_token4] = ACTIONS(4029), + [aux_sym__val_number_token1] = ACTIONS(4029), + [aux_sym__val_number_token2] = ACTIONS(4029), + [aux_sym__val_number_token3] = ACTIONS(4029), + [anon_sym_0b] = ACTIONS(4029), + [anon_sym_0o] = ACTIONS(4029), + [anon_sym_0x] = ACTIONS(4029), + [sym_val_date] = ACTIONS(4029), + [anon_sym_DQUOTE] = ACTIONS(4029), + [sym__str_single_quotes] = ACTIONS(4029), + [sym__str_back_ticks] = ACTIONS(4029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4029), + [aux_sym_env_var_token1] = ACTIONS(4029), + [anon_sym_CARET] = ACTIONS(4029), [anon_sym_POUND] = ACTIONS(3), }, [1250] = { - [sym__expr_parenthesized_immediate] = STATE(7585), [sym_comment] = STATE(1250), + [aux_sym_shebang_repeat1] = STATE(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1757), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(1757), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1757), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1757), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [sym__newline] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [aux_sym_ctrl_match_token1] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [aux_sym_expr_unary_token1] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_CARET] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(247), + }, + [1251] = { + [sym_comment] = STATE(1251), + [aux_sym_pipe_element_repeat1] = STATE(1249), + [aux_sym_cmd_identifier_token1] = ACTIONS(3945), + [aux_sym_cmd_identifier_token2] = ACTIONS(3945), + [aux_sym_cmd_identifier_token3] = ACTIONS(3945), + [aux_sym_cmd_identifier_token4] = ACTIONS(3945), + [aux_sym_cmd_identifier_token5] = ACTIONS(3945), + [aux_sym_cmd_identifier_token6] = ACTIONS(3945), + [aux_sym_cmd_identifier_token7] = ACTIONS(3945), + [aux_sym_cmd_identifier_token8] = ACTIONS(3945), + [aux_sym_cmd_identifier_token9] = ACTIONS(3945), + [aux_sym_cmd_identifier_token10] = ACTIONS(3945), + [aux_sym_cmd_identifier_token11] = ACTIONS(3945), + [aux_sym_cmd_identifier_token12] = ACTIONS(3945), + [aux_sym_cmd_identifier_token13] = ACTIONS(3945), + [aux_sym_cmd_identifier_token14] = ACTIONS(3945), + [aux_sym_cmd_identifier_token15] = ACTIONS(3945), + [aux_sym_cmd_identifier_token16] = ACTIONS(3945), + [aux_sym_cmd_identifier_token17] = ACTIONS(3945), + [aux_sym_cmd_identifier_token18] = ACTIONS(3945), + [aux_sym_cmd_identifier_token19] = ACTIONS(3945), + [aux_sym_cmd_identifier_token20] = ACTIONS(3945), + [aux_sym_cmd_identifier_token21] = ACTIONS(3945), + [aux_sym_cmd_identifier_token22] = ACTIONS(3945), + [aux_sym_cmd_identifier_token23] = ACTIONS(3945), + [aux_sym_cmd_identifier_token24] = ACTIONS(3945), + [aux_sym_cmd_identifier_token25] = ACTIONS(3945), + [aux_sym_cmd_identifier_token26] = ACTIONS(3945), + [aux_sym_cmd_identifier_token27] = ACTIONS(3945), + [aux_sym_cmd_identifier_token28] = ACTIONS(3945), + [aux_sym_cmd_identifier_token29] = ACTIONS(3945), + [aux_sym_cmd_identifier_token30] = ACTIONS(3945), + [aux_sym_cmd_identifier_token31] = ACTIONS(3945), + [aux_sym_cmd_identifier_token32] = ACTIONS(3945), + [aux_sym_cmd_identifier_token33] = ACTIONS(3945), + [aux_sym_cmd_identifier_token34] = ACTIONS(3945), + [aux_sym_cmd_identifier_token35] = ACTIONS(3945), + [aux_sym_cmd_identifier_token36] = ACTIONS(3945), + [anon_sym_true] = ACTIONS(3945), + [anon_sym_false] = ACTIONS(3945), + [anon_sym_null] = ACTIONS(3945), + [aux_sym_cmd_identifier_token38] = ACTIONS(3945), + [aux_sym_cmd_identifier_token39] = ACTIONS(3945), + [aux_sym_cmd_identifier_token40] = ACTIONS(3945), + [sym__space] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [aux_sym_ctrl_match_token1] = ACTIONS(3945), + [anon_sym_DOT_DOT] = ACTIONS(3945), + [aux_sym_expr_unary_token1] = ACTIONS(3945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3945), + [anon_sym_DOT_DOT_LT] = ACTIONS(3945), + [aux_sym__val_number_decimal_token1] = ACTIONS(3945), + [aux_sym__val_number_decimal_token2] = ACTIONS(3945), + [aux_sym__val_number_decimal_token3] = ACTIONS(3945), + [aux_sym__val_number_decimal_token4] = ACTIONS(3945), + [aux_sym__val_number_token1] = ACTIONS(3945), + [aux_sym__val_number_token2] = ACTIONS(3945), + [aux_sym__val_number_token3] = ACTIONS(3945), + [anon_sym_0b] = ACTIONS(3945), + [anon_sym_0o] = ACTIONS(3945), + [anon_sym_0x] = ACTIONS(3945), + [sym_val_date] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [sym__str_single_quotes] = ACTIONS(3945), + [sym__str_back_ticks] = ACTIONS(3945), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3945), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [aux_sym_env_var_token1] = ACTIONS(3945), + [anon_sym_CARET] = ACTIONS(3945), + [anon_sym_POUND] = ACTIONS(3), + }, + [1252] = { + [sym_match_pattern] = STATE(7745), + [sym__match_pattern] = STATE(6318), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8000), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(6785), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5584), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7741), + [sym_comment] = STATE(1252), + [aux_sym_shebang_repeat1] = STATE(3108), + [anon_sym_true] = ACTIONS(3633), + [anon_sym_false] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [aux_sym_cmd_identifier_token38] = ACTIONS(3637), + [aux_sym_cmd_identifier_token39] = ACTIONS(3637), + [aux_sym_cmd_identifier_token40] = ACTIONS(3637), + [sym__newline] = ACTIONS(3639), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym__] = ACTIONS(4039), + [anon_sym_DOT_DOT] = ACTIONS(3653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3657), + [aux_sym__val_number_decimal_token2] = ACTIONS(3659), + [aux_sym__val_number_decimal_token3] = ACTIONS(3661), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(247), + }, + [1253] = { + [sym_comment] = STATE(1253), + [aux_sym_cmd_identifier_token1] = ACTIONS(1273), + [aux_sym_cmd_identifier_token2] = ACTIONS(1277), + [aux_sym_cmd_identifier_token3] = ACTIONS(1277), + [aux_sym_cmd_identifier_token4] = ACTIONS(1277), + [aux_sym_cmd_identifier_token5] = ACTIONS(1277), + [aux_sym_cmd_identifier_token6] = ACTIONS(1277), + [aux_sym_cmd_identifier_token7] = ACTIONS(1277), + [aux_sym_cmd_identifier_token8] = ACTIONS(1277), + [aux_sym_cmd_identifier_token9] = ACTIONS(1273), + [aux_sym_cmd_identifier_token10] = ACTIONS(1277), + [aux_sym_cmd_identifier_token11] = ACTIONS(1277), + [aux_sym_cmd_identifier_token12] = ACTIONS(1277), + [aux_sym_cmd_identifier_token13] = ACTIONS(1273), + [aux_sym_cmd_identifier_token14] = ACTIONS(1277), + [aux_sym_cmd_identifier_token15] = ACTIONS(1273), + [aux_sym_cmd_identifier_token16] = ACTIONS(1277), + [aux_sym_cmd_identifier_token17] = ACTIONS(1277), + [aux_sym_cmd_identifier_token18] = ACTIONS(1277), + [aux_sym_cmd_identifier_token19] = ACTIONS(1277), + [aux_sym_cmd_identifier_token20] = ACTIONS(1277), + [aux_sym_cmd_identifier_token21] = ACTIONS(1277), + [aux_sym_cmd_identifier_token22] = ACTIONS(1277), + [aux_sym_cmd_identifier_token23] = ACTIONS(1273), + [aux_sym_cmd_identifier_token24] = ACTIONS(1277), + [aux_sym_cmd_identifier_token25] = ACTIONS(1277), + [aux_sym_cmd_identifier_token26] = ACTIONS(1277), + [aux_sym_cmd_identifier_token27] = ACTIONS(1277), + [aux_sym_cmd_identifier_token28] = ACTIONS(1277), + [aux_sym_cmd_identifier_token29] = ACTIONS(1277), + [aux_sym_cmd_identifier_token30] = ACTIONS(1277), + [aux_sym_cmd_identifier_token31] = ACTIONS(1277), + [aux_sym_cmd_identifier_token32] = ACTIONS(1277), + [aux_sym_cmd_identifier_token33] = ACTIONS(1277), + [aux_sym_cmd_identifier_token34] = ACTIONS(1277), + [aux_sym_cmd_identifier_token35] = ACTIONS(1277), + [aux_sym_cmd_identifier_token36] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_null] = ACTIONS(1277), + [aux_sym_cmd_identifier_token38] = ACTIONS(1273), + [aux_sym_cmd_identifier_token39] = ACTIONS(1277), + [aux_sym_cmd_identifier_token40] = ACTIONS(1277), + [sym__newline] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [aux_sym_ctrl_match_token1] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [aux_sym_expr_unary_token1] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_DOT_DOT_LT] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1273), + [aux_sym__val_number_decimal_token2] = ACTIONS(1277), + [aux_sym__val_number_decimal_token3] = ACTIONS(1277), + [aux_sym__val_number_decimal_token4] = ACTIONS(1277), + [aux_sym__val_number_token1] = ACTIONS(1277), + [aux_sym__val_number_token2] = ACTIONS(1277), + [aux_sym__val_number_token3] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1273), + [anon_sym_0o] = ACTIONS(1273), + [anon_sym_0x] = ACTIONS(1273), + [sym_val_date] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym__str_single_quotes] = ACTIONS(1277), + [sym__str_back_ticks] = ACTIONS(1277), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1277), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1277), + [anon_sym_CARET] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(247), + }, + [1254] = { + [sym__expr_parenthesized_immediate] = STATE(1673), + [sym__immediate_decimal] = STATE(1477), + [sym_val_variable] = STATE(1673), + [sym_comment] = STATE(1254), + [ts_builtin_sym_end] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [aux_sym_cmd_identifier_token38] = ACTIONS(1427), + [aux_sym_cmd_identifier_token39] = ACTIONS(1427), + [aux_sym_cmd_identifier_token40] = ACTIONS(1427), + [sym__newline] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_err_GT_PIPE] = ACTIONS(1427), + [anon_sym_out_GT_PIPE] = ACTIONS(1427), + [anon_sym_e_GT_PIPE] = ACTIONS(1427), + [anon_sym_o_GT_PIPE] = ACTIONS(1427), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1427), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1427), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1427), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1413), + [aux_sym_ctrl_match_token1] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_LPAREN2] = ACTIONS(4041), + [anon_sym_DOT] = ACTIONS(4043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), + [anon_sym_DOT_DOT_LT] = ACTIONS(1427), + [aux_sym__immediate_decimal_token1] = ACTIONS(4045), + [aux_sym__immediate_decimal_token3] = ACTIONS(4047), + [aux_sym__immediate_decimal_token4] = ACTIONS(4049), + [aux_sym__immediate_decimal_token5] = ACTIONS(4051), + [aux_sym__val_number_decimal_token1] = ACTIONS(1413), + [aux_sym__val_number_decimal_token2] = ACTIONS(1413), + [aux_sym__val_number_decimal_token3] = ACTIONS(1413), + [aux_sym__val_number_decimal_token4] = ACTIONS(1413), + [aux_sym__val_number_token1] = ACTIONS(1427), + [aux_sym__val_number_token2] = ACTIONS(1427), + [aux_sym__val_number_token3] = ACTIONS(1427), + [anon_sym_0b] = ACTIONS(1413), + [anon_sym_0o] = ACTIONS(1413), + [anon_sym_0x] = ACTIONS(1413), + [sym_val_date] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym__str_single_quotes] = ACTIONS(1427), + [sym__str_back_ticks] = ACTIONS(1427), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1427), + [anon_sym_err_GT] = ACTIONS(1413), + [anon_sym_out_GT] = ACTIONS(1413), + [anon_sym_e_GT] = ACTIONS(1413), + [anon_sym_o_GT] = ACTIONS(1413), + [anon_sym_err_PLUSout_GT] = ACTIONS(1413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1413), + [anon_sym_o_PLUSe_GT] = ACTIONS(1413), + [anon_sym_e_PLUSo_GT] = ACTIONS(1413), + [anon_sym_err_GT_GT] = ACTIONS(1427), + [anon_sym_out_GT_GT] = ACTIONS(1427), + [anon_sym_e_GT_GT] = ACTIONS(1427), + [anon_sym_o_GT_GT] = ACTIONS(1427), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1427), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1427), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1427), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1427), + [aux_sym_unquoted_token1] = ACTIONS(1413), + [aux_sym_unquoted_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), + }, + [1255] = { + [sym_path] = STATE(1328), + [sym_comment] = STATE(1255), + [aux_sym_cell_path_repeat1] = STATE(1260), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(953), + [sym__newline] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_err_GT_PIPE] = ACTIONS(953), + [anon_sym_out_GT_PIPE] = ACTIONS(953), + [anon_sym_e_GT_PIPE] = ACTIONS(953), + [anon_sym_o_GT_PIPE] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [aux_sym_expr_binary_token1] = ACTIONS(953), + [aux_sym_expr_binary_token2] = ACTIONS(953), + [aux_sym_expr_binary_token3] = ACTIONS(953), + [aux_sym_expr_binary_token4] = ACTIONS(953), + [aux_sym_expr_binary_token5] = ACTIONS(953), + [aux_sym_expr_binary_token6] = ACTIONS(953), + [aux_sym_expr_binary_token7] = ACTIONS(953), + [aux_sym_expr_binary_token8] = ACTIONS(953), + [aux_sym_expr_binary_token9] = ACTIONS(953), + [aux_sym_expr_binary_token10] = ACTIONS(953), + [aux_sym_expr_binary_token11] = ACTIONS(953), + [aux_sym_expr_binary_token12] = ACTIONS(953), + [aux_sym_expr_binary_token13] = ACTIONS(953), + [aux_sym_expr_binary_token14] = ACTIONS(953), + [aux_sym_expr_binary_token15] = ACTIONS(953), + [aux_sym_expr_binary_token16] = ACTIONS(953), + [aux_sym_expr_binary_token17] = ACTIONS(953), + [aux_sym_expr_binary_token18] = ACTIONS(953), + [aux_sym_expr_binary_token19] = ACTIONS(953), + [aux_sym_expr_binary_token20] = ACTIONS(953), + [aux_sym_expr_binary_token21] = ACTIONS(953), + [aux_sym_expr_binary_token22] = ACTIONS(953), + [aux_sym_expr_binary_token23] = ACTIONS(953), + [aux_sym_expr_binary_token24] = ACTIONS(953), + [aux_sym_expr_binary_token25] = ACTIONS(953), + [aux_sym_expr_binary_token26] = ACTIONS(953), + [aux_sym_expr_binary_token27] = ACTIONS(953), + [aux_sym_expr_binary_token28] = ACTIONS(953), + [anon_sym_DOT_DOT2] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(4014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(953), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(247), + }, + [1256] = { + [sym_path] = STATE(1299), + [sym_comment] = STATE(1256), + [aux_sym_cell_path_repeat1] = STATE(1256), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_PLUS_EQ] = ACTIONS(957), + [anon_sym_DASH_EQ] = ACTIONS(957), + [anon_sym_STAR_EQ] = ACTIONS(957), + [anon_sym_SLASH_EQ] = ACTIONS(957), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(957), + [sym__newline] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_err_GT_PIPE] = ACTIONS(957), + [anon_sym_out_GT_PIPE] = ACTIONS(957), + [anon_sym_e_GT_PIPE] = ACTIONS(957), + [anon_sym_o_GT_PIPE] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), + [aux_sym_ctrl_match_token1] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [aux_sym_expr_binary_token1] = ACTIONS(957), + [aux_sym_expr_binary_token2] = ACTIONS(957), + [aux_sym_expr_binary_token3] = ACTIONS(957), + [aux_sym_expr_binary_token4] = ACTIONS(957), + [aux_sym_expr_binary_token5] = ACTIONS(957), + [aux_sym_expr_binary_token6] = ACTIONS(957), + [aux_sym_expr_binary_token7] = ACTIONS(957), + [aux_sym_expr_binary_token8] = ACTIONS(957), + [aux_sym_expr_binary_token9] = ACTIONS(957), + [aux_sym_expr_binary_token10] = ACTIONS(957), + [aux_sym_expr_binary_token11] = ACTIONS(957), + [aux_sym_expr_binary_token12] = ACTIONS(957), + [aux_sym_expr_binary_token13] = ACTIONS(957), + [aux_sym_expr_binary_token14] = ACTIONS(957), + [aux_sym_expr_binary_token15] = ACTIONS(957), + [aux_sym_expr_binary_token16] = ACTIONS(957), + [aux_sym_expr_binary_token17] = ACTIONS(957), + [aux_sym_expr_binary_token18] = ACTIONS(957), + [aux_sym_expr_binary_token19] = ACTIONS(957), + [aux_sym_expr_binary_token20] = ACTIONS(957), + [aux_sym_expr_binary_token21] = ACTIONS(957), + [aux_sym_expr_binary_token22] = ACTIONS(957), + [aux_sym_expr_binary_token23] = ACTIONS(957), + [aux_sym_expr_binary_token24] = ACTIONS(957), + [aux_sym_expr_binary_token25] = ACTIONS(957), + [aux_sym_expr_binary_token26] = ACTIONS(957), + [aux_sym_expr_binary_token27] = ACTIONS(957), + [aux_sym_expr_binary_token28] = ACTIONS(957), + [anon_sym_DOT_DOT2] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(4053), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(957), + [aux_sym_record_entry_token1] = ACTIONS(957), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [anon_sym_POUND] = ACTIONS(247), + }, + [1257] = { + [sym_comment] = STATE(1257), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1481), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4056), + [aux_sym__immediate_decimal_token2] = ACTIONS(4058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), + }, + [1258] = { + [sym__expr_parenthesized_immediate] = STATE(1863), + [sym__immediate_decimal] = STATE(1613), + [sym_val_variable] = STATE(1863), + [sym_comment] = STATE(1258), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1455), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_err_GT_PIPE] = ACTIONS(1455), + [anon_sym_out_GT_PIPE] = ACTIONS(1455), + [anon_sym_e_GT_PIPE] = ACTIONS(1455), + [anon_sym_o_GT_PIPE] = ACTIONS(1455), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1455), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1455), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1455), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1443), + [aux_sym_ctrl_match_token1] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(4064), + [aux_sym__immediate_decimal_token3] = ACTIONS(4066), + [aux_sym__immediate_decimal_token4] = ACTIONS(4068), + [aux_sym__immediate_decimal_token5] = ACTIONS(4070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1443), + [aux_sym__val_number_decimal_token2] = ACTIONS(1443), + [aux_sym__val_number_decimal_token3] = ACTIONS(1443), + [aux_sym__val_number_decimal_token4] = ACTIONS(1443), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [anon_sym_0b] = ACTIONS(1443), + [anon_sym_0o] = ACTIONS(1443), + [anon_sym_0x] = ACTIONS(1443), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [anon_sym_err_GT] = ACTIONS(1443), + [anon_sym_out_GT] = ACTIONS(1443), + [anon_sym_e_GT] = ACTIONS(1443), + [anon_sym_o_GT] = ACTIONS(1443), + [anon_sym_err_PLUSout_GT] = ACTIONS(1443), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1443), + [anon_sym_o_PLUSe_GT] = ACTIONS(1443), + [anon_sym_e_PLUSo_GT] = ACTIONS(1443), + [anon_sym_err_GT_GT] = ACTIONS(1455), + [anon_sym_out_GT_GT] = ACTIONS(1455), + [anon_sym_e_GT_GT] = ACTIONS(1455), + [anon_sym_o_GT_GT] = ACTIONS(1455), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1455), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1455), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1455), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1455), + [aux_sym_unquoted_token1] = ACTIONS(1443), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), + }, + [1259] = { + [sym_path] = STATE(1299), + [sym_comment] = STATE(1259), + [aux_sym_cell_path_repeat1] = STATE(1256), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(953), + [sym__newline] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_err_GT_PIPE] = ACTIONS(953), + [anon_sym_out_GT_PIPE] = ACTIONS(953), + [anon_sym_e_GT_PIPE] = ACTIONS(953), + [anon_sym_o_GT_PIPE] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), + [aux_sym_ctrl_match_token1] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [aux_sym_expr_binary_token1] = ACTIONS(953), + [aux_sym_expr_binary_token2] = ACTIONS(953), + [aux_sym_expr_binary_token3] = ACTIONS(953), + [aux_sym_expr_binary_token4] = ACTIONS(953), + [aux_sym_expr_binary_token5] = ACTIONS(953), + [aux_sym_expr_binary_token6] = ACTIONS(953), + [aux_sym_expr_binary_token7] = ACTIONS(953), + [aux_sym_expr_binary_token8] = ACTIONS(953), + [aux_sym_expr_binary_token9] = ACTIONS(953), + [aux_sym_expr_binary_token10] = ACTIONS(953), + [aux_sym_expr_binary_token11] = ACTIONS(953), + [aux_sym_expr_binary_token12] = ACTIONS(953), + [aux_sym_expr_binary_token13] = ACTIONS(953), + [aux_sym_expr_binary_token14] = ACTIONS(953), + [aux_sym_expr_binary_token15] = ACTIONS(953), + [aux_sym_expr_binary_token16] = ACTIONS(953), + [aux_sym_expr_binary_token17] = ACTIONS(953), + [aux_sym_expr_binary_token18] = ACTIONS(953), + [aux_sym_expr_binary_token19] = ACTIONS(953), + [aux_sym_expr_binary_token20] = ACTIONS(953), + [aux_sym_expr_binary_token21] = ACTIONS(953), + [aux_sym_expr_binary_token22] = ACTIONS(953), + [aux_sym_expr_binary_token23] = ACTIONS(953), + [aux_sym_expr_binary_token24] = ACTIONS(953), + [aux_sym_expr_binary_token25] = ACTIONS(953), + [aux_sym_expr_binary_token26] = ACTIONS(953), + [aux_sym_expr_binary_token27] = ACTIONS(953), + [aux_sym_expr_binary_token28] = ACTIONS(953), + [anon_sym_DOT_DOT2] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(953), + [aux_sym_record_entry_token1] = ACTIONS(953), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(247), + }, + [1260] = { + [sym_path] = STATE(1328), + [sym_comment] = STATE(1260), + [aux_sym_cell_path_repeat1] = STATE(1260), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_PLUS_EQ] = ACTIONS(957), + [anon_sym_DASH_EQ] = ACTIONS(957), + [anon_sym_STAR_EQ] = ACTIONS(957), + [anon_sym_SLASH_EQ] = ACTIONS(957), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(957), + [sym__newline] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_err_GT_PIPE] = ACTIONS(957), + [anon_sym_out_GT_PIPE] = ACTIONS(957), + [anon_sym_e_GT_PIPE] = ACTIONS(957), + [anon_sym_o_GT_PIPE] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [aux_sym_expr_binary_token1] = ACTIONS(957), + [aux_sym_expr_binary_token2] = ACTIONS(957), + [aux_sym_expr_binary_token3] = ACTIONS(957), + [aux_sym_expr_binary_token4] = ACTIONS(957), + [aux_sym_expr_binary_token5] = ACTIONS(957), + [aux_sym_expr_binary_token6] = ACTIONS(957), + [aux_sym_expr_binary_token7] = ACTIONS(957), + [aux_sym_expr_binary_token8] = ACTIONS(957), + [aux_sym_expr_binary_token9] = ACTIONS(957), + [aux_sym_expr_binary_token10] = ACTIONS(957), + [aux_sym_expr_binary_token11] = ACTIONS(957), + [aux_sym_expr_binary_token12] = ACTIONS(957), + [aux_sym_expr_binary_token13] = ACTIONS(957), + [aux_sym_expr_binary_token14] = ACTIONS(957), + [aux_sym_expr_binary_token15] = ACTIONS(957), + [aux_sym_expr_binary_token16] = ACTIONS(957), + [aux_sym_expr_binary_token17] = ACTIONS(957), + [aux_sym_expr_binary_token18] = ACTIONS(957), + [aux_sym_expr_binary_token19] = ACTIONS(957), + [aux_sym_expr_binary_token20] = ACTIONS(957), + [aux_sym_expr_binary_token21] = ACTIONS(957), + [aux_sym_expr_binary_token22] = ACTIONS(957), + [aux_sym_expr_binary_token23] = ACTIONS(957), + [aux_sym_expr_binary_token24] = ACTIONS(957), + [aux_sym_expr_binary_token25] = ACTIONS(957), + [aux_sym_expr_binary_token26] = ACTIONS(957), + [aux_sym_expr_binary_token27] = ACTIONS(957), + [aux_sym_expr_binary_token28] = ACTIONS(957), + [anon_sym_DOT_DOT2] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(957), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [anon_sym_POUND] = ACTIONS(247), + }, + [1261] = { + [sym_cell_path] = STATE(1420), + [sym_path] = STATE(1399), + [sym_comment] = STATE(1261), + [aux_sym_cell_path_repeat1] = STATE(1288), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(947), + [sym__newline] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_err_GT_PIPE] = ACTIONS(947), + [anon_sym_out_GT_PIPE] = ACTIONS(947), + [anon_sym_e_GT_PIPE] = ACTIONS(947), + [anon_sym_o_GT_PIPE] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [aux_sym_ctrl_match_token1] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(947), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(947), + [anon_sym_DOT_DOT2] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(4075), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(947), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(247), + }, + [1262] = { + [sym__expr_parenthesized_immediate] = STATE(1539), + [sym__immediate_decimal] = STATE(1531), + [sym_val_variable] = STATE(1539), + [sym_comment] = STATE(1262), [anon_sym_true] = ACTIONS(1441), [anon_sym_false] = ACTIONS(1441), [anon_sym_null] = ACTIONS(1441), @@ -193462,47 +199791,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1431), [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(2469), [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1431), [aux_sym_ctrl_match_token1] = ACTIONS(1441), [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_DOT_DOT2] = ACTIONS(3945), - [anon_sym_DOT] = ACTIONS(3917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), - [anon_sym_DOT_DOT_LT] = ACTIONS(1429), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_DOT_DOT_LT] = ACTIONS(1441), + [aux_sym__immediate_decimal_token1] = ACTIONS(4079), + [aux_sym__immediate_decimal_token3] = ACTIONS(4081), + [aux_sym__immediate_decimal_token4] = ACTIONS(4083), + [aux_sym__immediate_decimal_token5] = ACTIONS(4085), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), [aux_sym__val_number_token1] = ACTIONS(1441), [aux_sym__val_number_token2] = ACTIONS(1441), [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1429), - [sym_filesize_unit] = ACTIONS(3949), - [sym_duration_unit] = ACTIONS(3951), - [anon_sym_0o] = ACTIONS(1429), - [anon_sym_0x] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), [sym_val_date] = ACTIONS(1441), [anon_sym_DQUOTE] = ACTIONS(1441), [sym__str_single_quotes] = ACTIONS(1441), [sym__str_back_ticks] = ACTIONS(1441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), [anon_sym_err_GT_GT] = ACTIONS(1441), [anon_sym_out_GT_GT] = ACTIONS(1441), [anon_sym_e_GT_GT] = ACTIONS(1441), @@ -193511,2506 +199839,1404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1429), - [aux_sym_unquoted_token6] = ACTIONS(3917), - [anon_sym_POUND] = ACTIONS(3), - }, - [1251] = { - [sym_comment] = STATE(1251), - [anon_sym_EQ] = ACTIONS(900), - [anon_sym_PLUS_EQ] = ACTIONS(902), - [anon_sym_DASH_EQ] = ACTIONS(902), - [anon_sym_STAR_EQ] = ACTIONS(902), - [anon_sym_SLASH_EQ] = ACTIONS(902), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(902), - [sym__newline] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_err_GT_PIPE] = ACTIONS(902), - [anon_sym_out_GT_PIPE] = ACTIONS(902), - [anon_sym_e_GT_PIPE] = ACTIONS(902), - [anon_sym_o_GT_PIPE] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_in] = ACTIONS(902), - [aux_sym_ctrl_match_token1] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(3953), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT2] = ACTIONS(900), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_DOT_DOT2] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(3), - }, - [1252] = { - [sym_comment] = STATE(1252), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_PLUS_EQ] = ACTIONS(908), - [anon_sym_DASH_EQ] = ACTIONS(908), - [anon_sym_STAR_EQ] = ACTIONS(908), - [anon_sym_SLASH_EQ] = ACTIONS(908), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(908), - [sym__newline] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_err_GT_PIPE] = ACTIONS(908), - [anon_sym_out_GT_PIPE] = ACTIONS(908), - [anon_sym_e_GT_PIPE] = ACTIONS(908), - [anon_sym_o_GT_PIPE] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_in] = ACTIONS(908), - [aux_sym_ctrl_match_token1] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(3955), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_DOT_DOT2] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(908), - [anon_sym_DOT_DOT_LT2] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), - }, - [1253] = { - [sym__expr_parenthesized_immediate] = STATE(1836), - [sym__immediate_decimal] = STATE(1614), - [sym_val_variable] = STATE(1836), - [sym_comment] = STATE(1253), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(3929), - [aux_sym__immediate_decimal_token3] = ACTIONS(3931), - [aux_sym__immediate_decimal_token4] = ACTIONS(3933), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2927), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2927), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token5] = ACTIONS(3917), - [anon_sym_POUND] = ACTIONS(3), - }, - [1254] = { - [sym_match_pattern] = STATE(7697), - [sym__match_pattern] = STATE(6234), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7616), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(6445), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5466), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7812), - [sym_comment] = STATE(1254), - [aux_sym_shebang_repeat1] = STATE(3058), - [anon_sym_true] = ACTIONS(3593), - [anon_sym_false] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3597), - [aux_sym_cmd_identifier_token39] = ACTIONS(3597), - [aux_sym_cmd_identifier_token40] = ACTIONS(3597), - [sym__newline] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym__] = ACTIONS(3957), - [anon_sym_DOT_DOT] = ACTIONS(3611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3613), - [aux_sym__val_number_decimal_token1] = ACTIONS(3615), - [aux_sym__val_number_decimal_token2] = ACTIONS(3617), - [anon_sym_DOT2] = ACTIONS(3619), - [aux_sym__val_number_decimal_token3] = ACTIONS(3621), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3623), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token1] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(247), }, - [1255] = { - [sym_comment] = STATE(1255), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(3962), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1400), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), - }, - [1256] = { - [sym_comment] = STATE(1256), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(3962), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1400), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), - }, - [1257] = { - [sym_comment] = STATE(1257), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(3897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [1258] = { - [sym_comment] = STATE(1258), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(3964), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1378), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [1259] = { - [sym__expr_parenthesized_immediate] = STATE(1637), - [sym__immediate_decimal] = STATE(1433), - [sym_val_variable] = STATE(1637), - [sym_comment] = STATE(1259), - [ts_builtin_sym_end] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(3966), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(3970), - [aux_sym__immediate_decimal_token3] = ACTIONS(3972), - [aux_sym__immediate_decimal_token4] = ACTIONS(3974), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2927), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2927), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token4] = ACTIONS(3976), - [aux_sym_unquoted_token6] = ACTIONS(3978), - [anon_sym_POUND] = ACTIONS(3), - }, - [1260] = { + [1263] = { [sym__expr_parenthesized_immediate] = STATE(1847), - [sym__immediate_decimal] = STATE(1572), + [sym__immediate_decimal] = STATE(1611), [sym_val_variable] = STATE(1847), - [sym_comment] = STATE(1260), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1416), - [aux_sym_cmd_identifier_token38] = ACTIONS(1416), - [aux_sym_cmd_identifier_token39] = ACTIONS(1416), - [aux_sym_cmd_identifier_token40] = ACTIONS(1416), - [sym__newline] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_err_GT_PIPE] = ACTIONS(1416), - [anon_sym_out_GT_PIPE] = ACTIONS(1416), - [anon_sym_e_GT_PIPE] = ACTIONS(1416), - [anon_sym_o_GT_PIPE] = ACTIONS(1416), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1416), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1416), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1416), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1404), - [aux_sym_ctrl_match_token1] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1416), - [anon_sym_DOT_DOT_LT] = ACTIONS(1416), - [aux_sym__immediate_decimal_token1] = ACTIONS(3929), - [aux_sym__immediate_decimal_token3] = ACTIONS(3931), - [aux_sym__immediate_decimal_token4] = ACTIONS(3933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1404), - [aux_sym__val_number_decimal_token2] = ACTIONS(1404), - [anon_sym_DOT2] = ACTIONS(1404), - [aux_sym__val_number_decimal_token3] = ACTIONS(1404), - [aux_sym__val_number_token1] = ACTIONS(1416), - [aux_sym__val_number_token2] = ACTIONS(1416), - [aux_sym__val_number_token3] = ACTIONS(1416), - [anon_sym_0b] = ACTIONS(1404), - [anon_sym_0o] = ACTIONS(1404), - [anon_sym_0x] = ACTIONS(1404), - [sym_val_date] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym__str_single_quotes] = ACTIONS(1416), - [sym__str_back_ticks] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), - [anon_sym_err_GT] = ACTIONS(1404), - [anon_sym_out_GT] = ACTIONS(1404), - [anon_sym_e_GT] = ACTIONS(1404), - [anon_sym_o_GT] = ACTIONS(1404), - [anon_sym_err_PLUSout_GT] = ACTIONS(1404), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1404), - [anon_sym_o_PLUSe_GT] = ACTIONS(1404), - [anon_sym_e_PLUSo_GT] = ACTIONS(1404), - [anon_sym_err_GT_GT] = ACTIONS(1416), - [anon_sym_out_GT_GT] = ACTIONS(1416), - [anon_sym_e_GT_GT] = ACTIONS(1416), - [anon_sym_o_GT_GT] = ACTIONS(1416), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1416), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1416), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1416), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1416), - [aux_sym_unquoted_token1] = ACTIONS(1404), - [aux_sym_unquoted_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), - }, - [1261] = { - [sym_comment] = STATE(1261), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_PLUS_EQ] = ACTIONS(930), - [anon_sym_DASH_EQ] = ACTIONS(930), - [anon_sym_STAR_EQ] = ACTIONS(930), - [anon_sym_SLASH_EQ] = ACTIONS(930), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(930), - [sym__newline] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_err_GT_PIPE] = ACTIONS(930), - [anon_sym_out_GT_PIPE] = ACTIONS(930), - [anon_sym_e_GT_PIPE] = ACTIONS(930), - [anon_sym_o_GT_PIPE] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_in] = ACTIONS(930), - [aux_sym_ctrl_match_token1] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_and] = ACTIONS(930), - [anon_sym_xor] = ACTIONS(930), - [anon_sym_or] = ACTIONS(930), - [anon_sym_not_DASHin] = ACTIONS(930), - [anon_sym_starts_DASHwith] = ACTIONS(930), - [anon_sym_ends_DASHwith] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(930), - [anon_sym_BANG_EQ] = ACTIONS(930), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(930), - [anon_sym_GT_EQ] = ACTIONS(930), - [anon_sym_EQ_TILDE] = ACTIONS(930), - [anon_sym_BANG_TILDE] = ACTIONS(930), - [anon_sym_STAR_STAR] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(930), - [anon_sym_SLASH_SLASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(930), - [anon_sym_bit_DASHshr] = ACTIONS(930), - [anon_sym_bit_DASHand] = ACTIONS(930), - [anon_sym_bit_DASHxor] = ACTIONS(930), - [anon_sym_bit_DASHor] = ACTIONS(930), - [anon_sym_DOT_DOT2] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(930), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [anon_sym_err_GT_GT] = ACTIONS(930), - [anon_sym_out_GT_GT] = ACTIONS(930), - [anon_sym_e_GT_GT] = ACTIONS(930), - [anon_sym_o_GT_GT] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(3), - }, - [1262] = { - [sym_path] = STATE(1409), - [sym_comment] = STATE(1262), - [aux_sym_cell_path_repeat1] = STATE(1262), - [anon_sym_EQ] = ACTIONS(893), - [anon_sym_PLUS_EQ] = ACTIONS(895), - [anon_sym_DASH_EQ] = ACTIONS(895), - [anon_sym_STAR_EQ] = ACTIONS(895), - [anon_sym_SLASH_EQ] = ACTIONS(895), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(895), - [sym__newline] = ACTIONS(893), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_in] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(893), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [aux_sym_record_entry_token1] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), - }, - [1263] = { - [sym__expr_parenthesized_immediate] = STATE(2049), - [sym__immediate_decimal] = STATE(1666), - [sym_val_variable] = STATE(2049), [sym_comment] = STATE(1263), - [ts_builtin_sym_end] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1416), - [aux_sym_cmd_identifier_token38] = ACTIONS(1416), - [aux_sym_cmd_identifier_token39] = ACTIONS(1416), - [aux_sym_cmd_identifier_token40] = ACTIONS(1416), - [sym__newline] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_err_GT_PIPE] = ACTIONS(1416), - [anon_sym_out_GT_PIPE] = ACTIONS(1416), - [anon_sym_e_GT_PIPE] = ACTIONS(1416), - [anon_sym_o_GT_PIPE] = ACTIONS(1416), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1416), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1416), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1416), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1404), - [aux_sym_ctrl_match_token1] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(3985), - [anon_sym_DOT] = ACTIONS(3987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1416), - [anon_sym_DOT_DOT_LT] = ACTIONS(1416), - [aux_sym__immediate_decimal_token1] = ACTIONS(3989), - [aux_sym__immediate_decimal_token3] = ACTIONS(3991), - [aux_sym__immediate_decimal_token4] = ACTIONS(3993), - [aux_sym__val_number_decimal_token1] = ACTIONS(1404), - [aux_sym__val_number_decimal_token2] = ACTIONS(1404), - [anon_sym_DOT2] = ACTIONS(1404), - [aux_sym__val_number_decimal_token3] = ACTIONS(1404), - [aux_sym__val_number_token1] = ACTIONS(1416), - [aux_sym__val_number_token2] = ACTIONS(1416), - [aux_sym__val_number_token3] = ACTIONS(1416), - [anon_sym_0b] = ACTIONS(1404), - [anon_sym_0o] = ACTIONS(1404), - [anon_sym_0x] = ACTIONS(1404), - [sym_val_date] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym__str_single_quotes] = ACTIONS(1416), - [sym__str_back_ticks] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), - [anon_sym_err_GT] = ACTIONS(1404), - [anon_sym_out_GT] = ACTIONS(1404), - [anon_sym_e_GT] = ACTIONS(1404), - [anon_sym_o_GT] = ACTIONS(1404), - [anon_sym_err_PLUSout_GT] = ACTIONS(1404), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1404), - [anon_sym_o_PLUSe_GT] = ACTIONS(1404), - [anon_sym_e_PLUSo_GT] = ACTIONS(1404), - [anon_sym_err_GT_GT] = ACTIONS(1416), - [anon_sym_out_GT_GT] = ACTIONS(1416), - [anon_sym_e_GT_GT] = ACTIONS(1416), - [anon_sym_o_GT_GT] = ACTIONS(1416), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1416), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1416), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1416), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1416), - [aux_sym_unquoted_token1] = ACTIONS(1404), - [aux_sym_unquoted_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [aux_sym_cmd_identifier_token38] = ACTIONS(1427), + [aux_sym_cmd_identifier_token39] = ACTIONS(1427), + [aux_sym_cmd_identifier_token40] = ACTIONS(1427), + [sym__newline] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_err_GT_PIPE] = ACTIONS(1427), + [anon_sym_out_GT_PIPE] = ACTIONS(1427), + [anon_sym_e_GT_PIPE] = ACTIONS(1427), + [anon_sym_o_GT_PIPE] = ACTIONS(1427), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1427), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1427), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1427), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1413), + [aux_sym_ctrl_match_token1] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), + [anon_sym_DOT_DOT_LT] = ACTIONS(1427), + [aux_sym__immediate_decimal_token1] = ACTIONS(4064), + [aux_sym__immediate_decimal_token3] = ACTIONS(4066), + [aux_sym__immediate_decimal_token4] = ACTIONS(4068), + [aux_sym__immediate_decimal_token5] = ACTIONS(4070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1413), + [aux_sym__val_number_decimal_token2] = ACTIONS(1413), + [aux_sym__val_number_decimal_token3] = ACTIONS(1413), + [aux_sym__val_number_decimal_token4] = ACTIONS(1413), + [aux_sym__val_number_token1] = ACTIONS(1427), + [aux_sym__val_number_token2] = ACTIONS(1427), + [aux_sym__val_number_token3] = ACTIONS(1427), + [anon_sym_0b] = ACTIONS(1413), + [anon_sym_0o] = ACTIONS(1413), + [anon_sym_0x] = ACTIONS(1413), + [sym_val_date] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym__str_single_quotes] = ACTIONS(1427), + [sym__str_back_ticks] = ACTIONS(1427), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1427), + [anon_sym_err_GT] = ACTIONS(1413), + [anon_sym_out_GT] = ACTIONS(1413), + [anon_sym_e_GT] = ACTIONS(1413), + [anon_sym_o_GT] = ACTIONS(1413), + [anon_sym_err_PLUSout_GT] = ACTIONS(1413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1413), + [anon_sym_o_PLUSe_GT] = ACTIONS(1413), + [anon_sym_e_PLUSo_GT] = ACTIONS(1413), + [anon_sym_err_GT_GT] = ACTIONS(1427), + [anon_sym_out_GT_GT] = ACTIONS(1427), + [anon_sym_e_GT_GT] = ACTIONS(1427), + [anon_sym_o_GT_GT] = ACTIONS(1427), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1427), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1427), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1427), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1427), + [aux_sym_unquoted_token1] = ACTIONS(1413), + [aux_sym_unquoted_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), }, [1264] = { [sym_comment] = STATE(1264), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(3943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), + [aux_sym_cmd_identifier_token1] = ACTIONS(4087), + [aux_sym_cmd_identifier_token2] = ACTIONS(4087), + [aux_sym_cmd_identifier_token3] = ACTIONS(4087), + [aux_sym_cmd_identifier_token4] = ACTIONS(4087), + [aux_sym_cmd_identifier_token5] = ACTIONS(4087), + [aux_sym_cmd_identifier_token6] = ACTIONS(4087), + [aux_sym_cmd_identifier_token7] = ACTIONS(4087), + [aux_sym_cmd_identifier_token8] = ACTIONS(4087), + [aux_sym_cmd_identifier_token9] = ACTIONS(4087), + [aux_sym_cmd_identifier_token10] = ACTIONS(4087), + [aux_sym_cmd_identifier_token11] = ACTIONS(4087), + [aux_sym_cmd_identifier_token12] = ACTIONS(4087), + [aux_sym_cmd_identifier_token13] = ACTIONS(4087), + [aux_sym_cmd_identifier_token14] = ACTIONS(4087), + [aux_sym_cmd_identifier_token15] = ACTIONS(4087), + [aux_sym_cmd_identifier_token16] = ACTIONS(4087), + [aux_sym_cmd_identifier_token17] = ACTIONS(4087), + [aux_sym_cmd_identifier_token18] = ACTIONS(4087), + [aux_sym_cmd_identifier_token19] = ACTIONS(4087), + [aux_sym_cmd_identifier_token20] = ACTIONS(4087), + [aux_sym_cmd_identifier_token21] = ACTIONS(4087), + [aux_sym_cmd_identifier_token22] = ACTIONS(4087), + [aux_sym_cmd_identifier_token23] = ACTIONS(4087), + [aux_sym_cmd_identifier_token24] = ACTIONS(4087), + [aux_sym_cmd_identifier_token25] = ACTIONS(4087), + [aux_sym_cmd_identifier_token26] = ACTIONS(4087), + [aux_sym_cmd_identifier_token27] = ACTIONS(4087), + [aux_sym_cmd_identifier_token28] = ACTIONS(4087), + [aux_sym_cmd_identifier_token29] = ACTIONS(4087), + [aux_sym_cmd_identifier_token30] = ACTIONS(4087), + [aux_sym_cmd_identifier_token31] = ACTIONS(4087), + [aux_sym_cmd_identifier_token32] = ACTIONS(4087), + [aux_sym_cmd_identifier_token33] = ACTIONS(4087), + [aux_sym_cmd_identifier_token34] = ACTIONS(4087), + [aux_sym_cmd_identifier_token35] = ACTIONS(4087), + [aux_sym_cmd_identifier_token36] = ACTIONS(4087), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_null] = ACTIONS(4087), + [aux_sym_cmd_identifier_token38] = ACTIONS(4087), + [aux_sym_cmd_identifier_token39] = ACTIONS(4087), + [aux_sym_cmd_identifier_token40] = ACTIONS(4087), + [sym__space] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4087), + [anon_sym_LPAREN] = ACTIONS(4087), + [anon_sym_DOLLAR] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [aux_sym_ctrl_match_token1] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4087), + [aux_sym_expr_unary_token1] = ACTIONS(4087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4087), + [anon_sym_DOT_DOT_LT] = ACTIONS(4087), + [aux_sym__val_number_decimal_token1] = ACTIONS(4087), + [aux_sym__val_number_decimal_token2] = ACTIONS(4087), + [aux_sym__val_number_decimal_token3] = ACTIONS(4087), + [aux_sym__val_number_decimal_token4] = ACTIONS(4087), + [aux_sym__val_number_token1] = ACTIONS(4087), + [aux_sym__val_number_token2] = ACTIONS(4087), + [aux_sym__val_number_token3] = ACTIONS(4087), + [anon_sym_0b] = ACTIONS(4087), + [anon_sym_0o] = ACTIONS(4087), + [anon_sym_0x] = ACTIONS(4087), + [sym_val_date] = ACTIONS(4087), + [anon_sym_DQUOTE] = ACTIONS(4087), + [sym__str_single_quotes] = ACTIONS(4087), + [sym__str_back_ticks] = ACTIONS(4087), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4087), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4087), + [aux_sym_env_var_token1] = ACTIONS(4087), + [anon_sym_CARET] = ACTIONS(4087), [anon_sym_POUND] = ACTIONS(3), }, [1265] = { - [sym_cell_path] = STATE(1423), - [sym_path] = STATE(1447), [sym_comment] = STATE(1265), - [aux_sym_cell_path_repeat1] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(885), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_PLUS_EQ] = ACTIONS(885), - [anon_sym_DASH_EQ] = ACTIONS(885), - [anon_sym_STAR_EQ] = ACTIONS(885), - [anon_sym_SLASH_EQ] = ACTIONS(885), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(885), - [sym__newline] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_in] = ACTIONS(885), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_and] = ACTIONS(885), - [anon_sym_xor] = ACTIONS(885), - [anon_sym_or] = ACTIONS(885), - [anon_sym_not_DASHin] = ACTIONS(885), - [anon_sym_starts_DASHwith] = ACTIONS(885), - [anon_sym_ends_DASHwith] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_EQ_TILDE] = ACTIONS(885), - [anon_sym_BANG_TILDE] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(885), - [anon_sym_SLASH_SLASH] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(885), - [anon_sym_bit_DASHshr] = ACTIONS(885), - [anon_sym_bit_DASHand] = ACTIONS(885), - [anon_sym_bit_DASHxor] = ACTIONS(885), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1266] = { [sym_comment] = STATE(1266), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(3997), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1378), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(970), + [anon_sym_PLUS_EQ] = ACTIONS(972), + [anon_sym_DASH_EQ] = ACTIONS(972), + [anon_sym_STAR_EQ] = ACTIONS(972), + [anon_sym_SLASH_EQ] = ACTIONS(972), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), + [sym__newline] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_err_GT_PIPE] = ACTIONS(972), + [anon_sym_out_GT_PIPE] = ACTIONS(972), + [anon_sym_e_GT_PIPE] = ACTIONS(972), + [anon_sym_o_GT_PIPE] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(4095), + [aux_sym_expr_binary_token1] = ACTIONS(972), + [aux_sym_expr_binary_token2] = ACTIONS(972), + [aux_sym_expr_binary_token3] = ACTIONS(972), + [aux_sym_expr_binary_token4] = ACTIONS(972), + [aux_sym_expr_binary_token5] = ACTIONS(972), + [aux_sym_expr_binary_token6] = ACTIONS(972), + [aux_sym_expr_binary_token7] = ACTIONS(972), + [aux_sym_expr_binary_token8] = ACTIONS(972), + [aux_sym_expr_binary_token9] = ACTIONS(972), + [aux_sym_expr_binary_token10] = ACTIONS(972), + [aux_sym_expr_binary_token11] = ACTIONS(972), + [aux_sym_expr_binary_token12] = ACTIONS(972), + [aux_sym_expr_binary_token13] = ACTIONS(972), + [aux_sym_expr_binary_token14] = ACTIONS(972), + [aux_sym_expr_binary_token15] = ACTIONS(972), + [aux_sym_expr_binary_token16] = ACTIONS(972), + [aux_sym_expr_binary_token17] = ACTIONS(972), + [aux_sym_expr_binary_token18] = ACTIONS(972), + [aux_sym_expr_binary_token19] = ACTIONS(972), + [aux_sym_expr_binary_token20] = ACTIONS(972), + [aux_sym_expr_binary_token21] = ACTIONS(972), + [aux_sym_expr_binary_token22] = ACTIONS(972), + [aux_sym_expr_binary_token23] = ACTIONS(972), + [aux_sym_expr_binary_token24] = ACTIONS(972), + [aux_sym_expr_binary_token25] = ACTIONS(972), + [aux_sym_expr_binary_token26] = ACTIONS(972), + [aux_sym_expr_binary_token27] = ACTIONS(972), + [aux_sym_expr_binary_token28] = ACTIONS(972), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(247), }, [1267] = { [sym_comment] = STATE(1267), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(3939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [aux_sym_ctrl_match_token1] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_QMARK2] = ACTIONS(4097), + [aux_sym_expr_binary_token1] = ACTIONS(982), + [aux_sym_expr_binary_token2] = ACTIONS(982), + [aux_sym_expr_binary_token3] = ACTIONS(982), + [aux_sym_expr_binary_token4] = ACTIONS(982), + [aux_sym_expr_binary_token5] = ACTIONS(982), + [aux_sym_expr_binary_token6] = ACTIONS(982), + [aux_sym_expr_binary_token7] = ACTIONS(982), + [aux_sym_expr_binary_token8] = ACTIONS(982), + [aux_sym_expr_binary_token9] = ACTIONS(982), + [aux_sym_expr_binary_token10] = ACTIONS(982), + [aux_sym_expr_binary_token11] = ACTIONS(982), + [aux_sym_expr_binary_token12] = ACTIONS(982), + [aux_sym_expr_binary_token13] = ACTIONS(982), + [aux_sym_expr_binary_token14] = ACTIONS(982), + [aux_sym_expr_binary_token15] = ACTIONS(982), + [aux_sym_expr_binary_token16] = ACTIONS(982), + [aux_sym_expr_binary_token17] = ACTIONS(982), + [aux_sym_expr_binary_token18] = ACTIONS(982), + [aux_sym_expr_binary_token19] = ACTIONS(982), + [aux_sym_expr_binary_token20] = ACTIONS(982), + [aux_sym_expr_binary_token21] = ACTIONS(982), + [aux_sym_expr_binary_token22] = ACTIONS(982), + [aux_sym_expr_binary_token23] = ACTIONS(982), + [aux_sym_expr_binary_token24] = ACTIONS(982), + [aux_sym_expr_binary_token25] = ACTIONS(982), + [aux_sym_expr_binary_token26] = ACTIONS(982), + [aux_sym_expr_binary_token27] = ACTIONS(982), + [aux_sym_expr_binary_token28] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [aux_sym_record_entry_token1] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), }, [1268] = { + [sym__expr_parenthesized_immediate] = STATE(1671), + [sym__immediate_decimal] = STATE(1672), + [sym_val_variable] = STATE(1671), [sym_comment] = STATE(1268), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_RPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1378), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [aux_sym_cmd_identifier_token38] = ACTIONS(1441), + [aux_sym_cmd_identifier_token39] = ACTIONS(1441), + [aux_sym_cmd_identifier_token40] = ACTIONS(1441), + [sym__newline] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_err_GT_PIPE] = ACTIONS(1441), + [anon_sym_out_GT_PIPE] = ACTIONS(1441), + [anon_sym_e_GT_PIPE] = ACTIONS(1441), + [anon_sym_o_GT_PIPE] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1431), + [aux_sym_ctrl_match_token1] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(4041), + [anon_sym_DOT] = ACTIONS(4099), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_DOT_DOT_LT] = ACTIONS(1441), + [aux_sym__immediate_decimal_token1] = ACTIONS(4101), + [aux_sym__immediate_decimal_token3] = ACTIONS(4103), + [aux_sym__immediate_decimal_token4] = ACTIONS(4105), + [aux_sym__immediate_decimal_token5] = ACTIONS(4107), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1441), + [aux_sym__val_number_token2] = ACTIONS(1441), + [aux_sym__val_number_token3] = ACTIONS(1441), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), + [sym_val_date] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), + [anon_sym_err_GT_GT] = ACTIONS(1441), + [anon_sym_out_GT_GT] = ACTIONS(1441), + [anon_sym_e_GT_GT] = ACTIONS(1441), + [anon_sym_o_GT_GT] = ACTIONS(1441), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), + [aux_sym_unquoted_token1] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(247), }, [1269] = { [sym_comment] = STATE(1269), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1400), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(978), + [aux_sym_expr_binary_token1] = ACTIONS(978), + [aux_sym_expr_binary_token2] = ACTIONS(978), + [aux_sym_expr_binary_token3] = ACTIONS(978), + [aux_sym_expr_binary_token4] = ACTIONS(978), + [aux_sym_expr_binary_token5] = ACTIONS(978), + [aux_sym_expr_binary_token6] = ACTIONS(978), + [aux_sym_expr_binary_token7] = ACTIONS(978), + [aux_sym_expr_binary_token8] = ACTIONS(978), + [aux_sym_expr_binary_token9] = ACTIONS(978), + [aux_sym_expr_binary_token10] = ACTIONS(978), + [aux_sym_expr_binary_token11] = ACTIONS(978), + [aux_sym_expr_binary_token12] = ACTIONS(978), + [aux_sym_expr_binary_token13] = ACTIONS(978), + [aux_sym_expr_binary_token14] = ACTIONS(978), + [aux_sym_expr_binary_token15] = ACTIONS(978), + [aux_sym_expr_binary_token16] = ACTIONS(978), + [aux_sym_expr_binary_token17] = ACTIONS(978), + [aux_sym_expr_binary_token18] = ACTIONS(978), + [aux_sym_expr_binary_token19] = ACTIONS(978), + [aux_sym_expr_binary_token20] = ACTIONS(978), + [aux_sym_expr_binary_token21] = ACTIONS(978), + [aux_sym_expr_binary_token22] = ACTIONS(978), + [aux_sym_expr_binary_token23] = ACTIONS(978), + [aux_sym_expr_binary_token24] = ACTIONS(978), + [aux_sym_expr_binary_token25] = ACTIONS(978), + [aux_sym_expr_binary_token26] = ACTIONS(978), + [aux_sym_expr_binary_token27] = ACTIONS(978), + [aux_sym_expr_binary_token28] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), }, [1270] = { [sym_comment] = STATE(1270), - [anon_sym_EQ] = ACTIONS(924), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(926), - [sym__newline] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_err_GT_PIPE] = ACTIONS(926), - [anon_sym_out_GT_PIPE] = ACTIONS(926), - [anon_sym_e_GT_PIPE] = ACTIONS(926), - [anon_sym_o_GT_PIPE] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_in] = ACTIONS(926), - [aux_sym_ctrl_match_token1] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_and] = ACTIONS(926), - [anon_sym_xor] = ACTIONS(926), - [anon_sym_or] = ACTIONS(926), - [anon_sym_not_DASHin] = ACTIONS(926), - [anon_sym_starts_DASHwith] = ACTIONS(926), - [anon_sym_ends_DASHwith] = ACTIONS(926), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_EQ_TILDE] = ACTIONS(926), - [anon_sym_BANG_TILDE] = ACTIONS(926), - [anon_sym_STAR_STAR] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(926), - [anon_sym_SLASH_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(926), - [anon_sym_bit_DASHshr] = ACTIONS(926), - [anon_sym_bit_DASHand] = ACTIONS(926), - [anon_sym_bit_DASHxor] = ACTIONS(926), - [anon_sym_bit_DASHor] = ACTIONS(926), - [anon_sym_DOT_DOT2] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(926), - [anon_sym_DOT_DOT_LT2] = ACTIONS(926), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [anon_sym_err_GT_GT] = ACTIONS(926), - [anon_sym_out_GT_GT] = ACTIONS(926), - [anon_sym_e_GT_GT] = ACTIONS(926), - [anon_sym_o_GT_GT] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(964), + [aux_sym_expr_binary_token1] = ACTIONS(964), + [aux_sym_expr_binary_token2] = ACTIONS(964), + [aux_sym_expr_binary_token3] = ACTIONS(964), + [aux_sym_expr_binary_token4] = ACTIONS(964), + [aux_sym_expr_binary_token5] = ACTIONS(964), + [aux_sym_expr_binary_token6] = ACTIONS(964), + [aux_sym_expr_binary_token7] = ACTIONS(964), + [aux_sym_expr_binary_token8] = ACTIONS(964), + [aux_sym_expr_binary_token9] = ACTIONS(964), + [aux_sym_expr_binary_token10] = ACTIONS(964), + [aux_sym_expr_binary_token11] = ACTIONS(964), + [aux_sym_expr_binary_token12] = ACTIONS(964), + [aux_sym_expr_binary_token13] = ACTIONS(964), + [aux_sym_expr_binary_token14] = ACTIONS(964), + [aux_sym_expr_binary_token15] = ACTIONS(964), + [aux_sym_expr_binary_token16] = ACTIONS(964), + [aux_sym_expr_binary_token17] = ACTIONS(964), + [aux_sym_expr_binary_token18] = ACTIONS(964), + [aux_sym_expr_binary_token19] = ACTIONS(964), + [aux_sym_expr_binary_token20] = ACTIONS(964), + [aux_sym_expr_binary_token21] = ACTIONS(964), + [aux_sym_expr_binary_token22] = ACTIONS(964), + [aux_sym_expr_binary_token23] = ACTIONS(964), + [aux_sym_expr_binary_token24] = ACTIONS(964), + [aux_sym_expr_binary_token25] = ACTIONS(964), + [aux_sym_expr_binary_token26] = ACTIONS(964), + [aux_sym_expr_binary_token27] = ACTIONS(964), + [aux_sym_expr_binary_token28] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), }, [1271] = { + [sym_path] = STATE(1399), [sym_comment] = STATE(1271), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_PLUS_EQ] = ACTIONS(934), - [anon_sym_DASH_EQ] = ACTIONS(934), - [anon_sym_STAR_EQ] = ACTIONS(934), - [anon_sym_SLASH_EQ] = ACTIONS(934), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(934), - [sym__newline] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_err_GT_PIPE] = ACTIONS(934), - [anon_sym_out_GT_PIPE] = ACTIONS(934), - [anon_sym_e_GT_PIPE] = ACTIONS(934), - [anon_sym_o_GT_PIPE] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_in] = ACTIONS(934), - [aux_sym_ctrl_match_token1] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_and] = ACTIONS(934), - [anon_sym_xor] = ACTIONS(934), - [anon_sym_or] = ACTIONS(934), - [anon_sym_not_DASHin] = ACTIONS(934), - [anon_sym_starts_DASHwith] = ACTIONS(934), - [anon_sym_ends_DASHwith] = ACTIONS(934), - [anon_sym_EQ_EQ] = ACTIONS(934), - [anon_sym_BANG_EQ] = ACTIONS(934), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(934), - [anon_sym_EQ_TILDE] = ACTIONS(934), - [anon_sym_BANG_TILDE] = ACTIONS(934), - [anon_sym_STAR_STAR] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(934), - [anon_sym_SLASH_SLASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(934), - [anon_sym_bit_DASHshr] = ACTIONS(934), - [anon_sym_bit_DASHand] = ACTIONS(934), - [anon_sym_bit_DASHxor] = ACTIONS(934), - [anon_sym_bit_DASHor] = ACTIONS(934), - [anon_sym_DOT_DOT2] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(934), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [anon_sym_err_GT_GT] = ACTIONS(934), - [anon_sym_out_GT_GT] = ACTIONS(934), - [anon_sym_e_GT_GT] = ACTIONS(934), - [anon_sym_o_GT_GT] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1271), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_PLUS_EQ] = ACTIONS(957), + [anon_sym_DASH_EQ] = ACTIONS(957), + [anon_sym_STAR_EQ] = ACTIONS(957), + [anon_sym_SLASH_EQ] = ACTIONS(957), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(957), + [sym__newline] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_err_GT_PIPE] = ACTIONS(957), + [anon_sym_out_GT_PIPE] = ACTIONS(957), + [anon_sym_e_GT_PIPE] = ACTIONS(957), + [anon_sym_o_GT_PIPE] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [aux_sym_ctrl_match_token1] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(957), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(957), + [anon_sym_DOT_DOT2] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(4109), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(957), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [anon_sym_POUND] = ACTIONS(247), }, [1272] = { - [sym__expr_parenthesized_immediate] = STATE(1854), - [sym__immediate_decimal] = STATE(1855), - [sym_val_variable] = STATE(1854), [sym_comment] = STATE(1272), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token38] = ACTIONS(1484), - [aux_sym_cmd_identifier_token39] = ACTIONS(1484), - [aux_sym_cmd_identifier_token40] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1482), - [aux_sym_ctrl_match_token1] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT] = ACTIONS(4006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_LT] = ACTIONS(1484), - [aux_sym__immediate_decimal_token1] = ACTIONS(4008), - [aux_sym__immediate_decimal_token3] = ACTIONS(4010), - [aux_sym__immediate_decimal_token4] = ACTIONS(4012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1482), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [anon_sym_DOT2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(1484), - [aux_sym__val_number_token2] = ACTIONS(1484), - [aux_sym__val_number_token3] = ACTIONS(1484), - [anon_sym_0b] = ACTIONS(1482), - [anon_sym_0o] = ACTIONS(1482), - [anon_sym_0x] = ACTIONS(1482), - [sym_val_date] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym__str_single_quotes] = ACTIONS(1484), - [sym__str_back_ticks] = ACTIONS(1484), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1484), - [anon_sym_err_GT] = ACTIONS(1482), - [anon_sym_out_GT] = ACTIONS(1482), - [anon_sym_e_GT] = ACTIONS(1482), - [anon_sym_o_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT] = ACTIONS(1482), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), - [aux_sym_unquoted_token1] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4093), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1273] = { - [sym__expr_parenthesized_immediate] = STATE(1947), - [sym__immediate_decimal] = STATE(1672), - [sym_val_variable] = STATE(1947), [sym_comment] = STATE(1273), - [ts_builtin_sym_end] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_null] = ACTIONS(1425), - [aux_sym_cmd_identifier_token38] = ACTIONS(1425), - [aux_sym_cmd_identifier_token39] = ACTIONS(1425), - [aux_sym_cmd_identifier_token40] = ACTIONS(1425), - [sym__newline] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_err_GT_PIPE] = ACTIONS(1425), - [anon_sym_out_GT_PIPE] = ACTIONS(1425), - [anon_sym_e_GT_PIPE] = ACTIONS(1425), - [anon_sym_o_GT_PIPE] = ACTIONS(1425), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1425), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1425), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1425), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_DOLLAR] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1423), - [aux_sym_ctrl_match_token1] = ACTIONS(1425), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_LPAREN2] = ACTIONS(3985), - [anon_sym_DOT] = ACTIONS(3987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1425), - [anon_sym_DOT_DOT_LT] = ACTIONS(1425), - [aux_sym__immediate_decimal_token1] = ACTIONS(3989), - [aux_sym__immediate_decimal_token3] = ACTIONS(3991), - [aux_sym__immediate_decimal_token4] = ACTIONS(3993), - [aux_sym__val_number_decimal_token1] = ACTIONS(1423), - [aux_sym__val_number_decimal_token2] = ACTIONS(1423), - [anon_sym_DOT2] = ACTIONS(1423), - [aux_sym__val_number_decimal_token3] = ACTIONS(1423), - [aux_sym__val_number_token1] = ACTIONS(1425), - [aux_sym__val_number_token2] = ACTIONS(1425), - [aux_sym__val_number_token3] = ACTIONS(1425), - [anon_sym_0b] = ACTIONS(1423), - [anon_sym_0o] = ACTIONS(1423), - [anon_sym_0x] = ACTIONS(1423), - [sym_val_date] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym__str_single_quotes] = ACTIONS(1425), - [sym__str_back_ticks] = ACTIONS(1425), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), - [anon_sym_err_GT] = ACTIONS(1423), - [anon_sym_out_GT] = ACTIONS(1423), - [anon_sym_e_GT] = ACTIONS(1423), - [anon_sym_o_GT] = ACTIONS(1423), - [anon_sym_err_PLUSout_GT] = ACTIONS(1423), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1423), - [anon_sym_o_PLUSe_GT] = ACTIONS(1423), - [anon_sym_e_PLUSo_GT] = ACTIONS(1423), - [anon_sym_err_GT_GT] = ACTIONS(1425), - [anon_sym_out_GT_GT] = ACTIONS(1425), - [anon_sym_e_GT_GT] = ACTIONS(1425), - [anon_sym_o_GT_GT] = ACTIONS(1425), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1425), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1425), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1425), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1425), - [aux_sym_unquoted_token1] = ACTIONS(1423), - [aux_sym_unquoted_token2] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [aux_sym_ctrl_match_token1] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(968), + [aux_sym_expr_binary_token1] = ACTIONS(968), + [aux_sym_expr_binary_token2] = ACTIONS(968), + [aux_sym_expr_binary_token3] = ACTIONS(968), + [aux_sym_expr_binary_token4] = ACTIONS(968), + [aux_sym_expr_binary_token5] = ACTIONS(968), + [aux_sym_expr_binary_token6] = ACTIONS(968), + [aux_sym_expr_binary_token7] = ACTIONS(968), + [aux_sym_expr_binary_token8] = ACTIONS(968), + [aux_sym_expr_binary_token9] = ACTIONS(968), + [aux_sym_expr_binary_token10] = ACTIONS(968), + [aux_sym_expr_binary_token11] = ACTIONS(968), + [aux_sym_expr_binary_token12] = ACTIONS(968), + [aux_sym_expr_binary_token13] = ACTIONS(968), + [aux_sym_expr_binary_token14] = ACTIONS(968), + [aux_sym_expr_binary_token15] = ACTIONS(968), + [aux_sym_expr_binary_token16] = ACTIONS(968), + [aux_sym_expr_binary_token17] = ACTIONS(968), + [aux_sym_expr_binary_token18] = ACTIONS(968), + [aux_sym_expr_binary_token19] = ACTIONS(968), + [aux_sym_expr_binary_token20] = ACTIONS(968), + [aux_sym_expr_binary_token21] = ACTIONS(968), + [aux_sym_expr_binary_token22] = ACTIONS(968), + [aux_sym_expr_binary_token23] = ACTIONS(968), + [aux_sym_expr_binary_token24] = ACTIONS(968), + [aux_sym_expr_binary_token25] = ACTIONS(968), + [aux_sym_expr_binary_token26] = ACTIONS(968), + [aux_sym_expr_binary_token27] = ACTIONS(968), + [aux_sym_expr_binary_token28] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [aux_sym_record_entry_token1] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), }, [1274] = { - [sym__expr_parenthesized_immediate] = STATE(1856), - [sym__immediate_decimal] = STATE(1857), - [sym_val_variable] = STATE(1856), [sym_comment] = STATE(1274), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1480), - [aux_sym_cmd_identifier_token38] = ACTIONS(1480), - [aux_sym_cmd_identifier_token39] = ACTIONS(1480), - [aux_sym_cmd_identifier_token40] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1478), - [aux_sym_ctrl_match_token1] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT] = ACTIONS(4006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT] = ACTIONS(1480), - [aux_sym__immediate_decimal_token1] = ACTIONS(4008), - [aux_sym__immediate_decimal_token3] = ACTIONS(4010), - [aux_sym__immediate_decimal_token4] = ACTIONS(4012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1480), - [aux_sym__val_number_token2] = ACTIONS(1480), - [aux_sym__val_number_token3] = ACTIONS(1480), - [anon_sym_0b] = ACTIONS(1478), - [anon_sym_0o] = ACTIONS(1478), - [anon_sym_0x] = ACTIONS(1478), - [sym_val_date] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [sym__str_single_quotes] = ACTIONS(1480), - [sym__str_back_ticks] = ACTIONS(1480), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1480), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1480), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [aux_sym_unquoted_token1] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_QMARK2] = ACTIONS(4112), + [aux_sym_expr_binary_token1] = ACTIONS(982), + [aux_sym_expr_binary_token2] = ACTIONS(982), + [aux_sym_expr_binary_token3] = ACTIONS(982), + [aux_sym_expr_binary_token4] = ACTIONS(982), + [aux_sym_expr_binary_token5] = ACTIONS(982), + [aux_sym_expr_binary_token6] = ACTIONS(982), + [aux_sym_expr_binary_token7] = ACTIONS(982), + [aux_sym_expr_binary_token8] = ACTIONS(982), + [aux_sym_expr_binary_token9] = ACTIONS(982), + [aux_sym_expr_binary_token10] = ACTIONS(982), + [aux_sym_expr_binary_token11] = ACTIONS(982), + [aux_sym_expr_binary_token12] = ACTIONS(982), + [aux_sym_expr_binary_token13] = ACTIONS(982), + [aux_sym_expr_binary_token14] = ACTIONS(982), + [aux_sym_expr_binary_token15] = ACTIONS(982), + [aux_sym_expr_binary_token16] = ACTIONS(982), + [aux_sym_expr_binary_token17] = ACTIONS(982), + [aux_sym_expr_binary_token18] = ACTIONS(982), + [aux_sym_expr_binary_token19] = ACTIONS(982), + [aux_sym_expr_binary_token20] = ACTIONS(982), + [aux_sym_expr_binary_token21] = ACTIONS(982), + [aux_sym_expr_binary_token22] = ACTIONS(982), + [aux_sym_expr_binary_token23] = ACTIONS(982), + [aux_sym_expr_binary_token24] = ACTIONS(982), + [aux_sym_expr_binary_token25] = ACTIONS(982), + [aux_sym_expr_binary_token26] = ACTIONS(982), + [aux_sym_expr_binary_token27] = ACTIONS(982), + [aux_sym_expr_binary_token28] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), }, [1275] = { + [sym__expr_parenthesized_immediate] = STATE(7677), [sym_comment] = STATE(1275), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(4014), - [aux_sym__immediate_decimal_token2] = ACTIONS(4016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [aux_sym_cmd_identifier_token38] = ACTIONS(1537), + [aux_sym_cmd_identifier_token39] = ACTIONS(1537), + [aux_sym_cmd_identifier_token40] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_err_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_GT_PIPE] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(1537), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1525), + [aux_sym_ctrl_match_token1] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_DOT_DOT2] = ACTIONS(4114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4116), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4116), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1537), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), + [aux_sym__val_number_token1] = ACTIONS(1537), + [aux_sym__val_number_token2] = ACTIONS(1537), + [aux_sym__val_number_token3] = ACTIONS(1537), + [anon_sym_0b] = ACTIONS(1525), + [sym_filesize_unit] = ACTIONS(4118), + [sym_duration_unit] = ACTIONS(4120), + [anon_sym_0o] = ACTIONS(1525), + [anon_sym_0x] = ACTIONS(1525), + [sym_val_date] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1537), + [sym__str_single_quotes] = ACTIONS(1537), + [sym__str_back_ticks] = ACTIONS(1537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [aux_sym_unquoted_token1] = ACTIONS(1525), + [aux_sym_unquoted_token2] = ACTIONS(4122), + [anon_sym_POUND] = ACTIONS(247), }, [1276] = { - [sym__expr_parenthesized_immediate] = STATE(1858), - [sym__immediate_decimal] = STATE(1859), - [sym_val_variable] = STATE(1858), + [sym__expr_parenthesized_immediate] = STATE(1984), + [sym__immediate_decimal] = STATE(1741), + [sym_val_variable] = STATE(1984), [sym_comment] = STATE(1276), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [anon_sym_null] = ACTIONS(1488), - [aux_sym_cmd_identifier_token38] = ACTIONS(1488), - [aux_sym_cmd_identifier_token39] = ACTIONS(1488), - [aux_sym_cmd_identifier_token40] = ACTIONS(1488), - [sym__newline] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_err_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_GT_PIPE] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1486), - [aux_sym_ctrl_match_token1] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT] = ACTIONS(4006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_DOT_DOT_LT] = ACTIONS(1488), - [aux_sym__immediate_decimal_token1] = ACTIONS(4008), - [aux_sym__immediate_decimal_token3] = ACTIONS(4010), - [aux_sym__immediate_decimal_token4] = ACTIONS(4012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1486), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [anon_sym_DOT2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1488), - [aux_sym__val_number_token2] = ACTIONS(1488), - [aux_sym__val_number_token3] = ACTIONS(1488), - [anon_sym_0b] = ACTIONS(1486), - [anon_sym_0o] = ACTIONS(1486), - [anon_sym_0x] = ACTIONS(1486), - [sym_val_date] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym__str_single_quotes] = ACTIONS(1488), - [sym__str_back_ticks] = ACTIONS(1488), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1488), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1488), - [anon_sym_err_GT] = ACTIONS(1486), - [anon_sym_out_GT] = ACTIONS(1486), - [anon_sym_e_GT] = ACTIONS(1486), - [anon_sym_o_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT] = ACTIONS(1486), - [anon_sym_err_GT_GT] = ACTIONS(1488), - [anon_sym_out_GT_GT] = ACTIONS(1488), - [anon_sym_e_GT_GT] = ACTIONS(1488), - [anon_sym_o_GT_GT] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1488), - [aux_sym_unquoted_token1] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [aux_sym_cmd_identifier_token38] = ACTIONS(1427), + [aux_sym_cmd_identifier_token39] = ACTIONS(1427), + [aux_sym_cmd_identifier_token40] = ACTIONS(1427), + [sym__newline] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_err_GT_PIPE] = ACTIONS(1427), + [anon_sym_out_GT_PIPE] = ACTIONS(1427), + [anon_sym_e_GT_PIPE] = ACTIONS(1427), + [anon_sym_o_GT_PIPE] = ACTIONS(1427), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1427), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1427), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1427), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_DOLLAR] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1413), + [aux_sym_ctrl_match_token1] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), + [anon_sym_DOT_DOT_LT] = ACTIONS(1427), + [aux_sym__immediate_decimal_token1] = ACTIONS(4128), + [aux_sym__immediate_decimal_token3] = ACTIONS(4130), + [aux_sym__immediate_decimal_token4] = ACTIONS(4132), + [aux_sym__immediate_decimal_token5] = ACTIONS(4134), + [aux_sym__val_number_decimal_token1] = ACTIONS(1413), + [aux_sym__val_number_decimal_token2] = ACTIONS(1413), + [aux_sym__val_number_decimal_token3] = ACTIONS(1413), + [aux_sym__val_number_decimal_token4] = ACTIONS(1413), + [aux_sym__val_number_token1] = ACTIONS(1427), + [aux_sym__val_number_token2] = ACTIONS(1427), + [aux_sym__val_number_token3] = ACTIONS(1427), + [anon_sym_0b] = ACTIONS(1413), + [anon_sym_0o] = ACTIONS(1413), + [anon_sym_0x] = ACTIONS(1413), + [sym_val_date] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym__str_single_quotes] = ACTIONS(1427), + [sym__str_back_ticks] = ACTIONS(1427), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1427), + [anon_sym_err_GT] = ACTIONS(1413), + [anon_sym_out_GT] = ACTIONS(1413), + [anon_sym_e_GT] = ACTIONS(1413), + [anon_sym_o_GT] = ACTIONS(1413), + [anon_sym_err_PLUSout_GT] = ACTIONS(1413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1413), + [anon_sym_o_PLUSe_GT] = ACTIONS(1413), + [anon_sym_e_PLUSo_GT] = ACTIONS(1413), + [anon_sym_err_GT_GT] = ACTIONS(1427), + [anon_sym_out_GT_GT] = ACTIONS(1427), + [anon_sym_e_GT_GT] = ACTIONS(1427), + [anon_sym_o_GT_GT] = ACTIONS(1427), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1427), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1427), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1427), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1427), + [aux_sym_unquoted_token1] = ACTIONS(1413), + [aux_sym_unquoted_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), }, [1277] = { - [sym__expr_parenthesized_immediate] = STATE(1633), - [sym__immediate_decimal] = STATE(1446), - [sym_val_variable] = STATE(1633), [sym_comment] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1416), - [aux_sym_cmd_identifier_token38] = ACTIONS(1416), - [aux_sym_cmd_identifier_token39] = ACTIONS(1416), - [aux_sym_cmd_identifier_token40] = ACTIONS(1416), - [sym__newline] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_err_GT_PIPE] = ACTIONS(1416), - [anon_sym_out_GT_PIPE] = ACTIONS(1416), - [anon_sym_e_GT_PIPE] = ACTIONS(1416), - [anon_sym_o_GT_PIPE] = ACTIONS(1416), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1416), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1416), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1416), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1404), - [aux_sym_ctrl_match_token1] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_LPAREN2] = ACTIONS(3966), - [anon_sym_DOT] = ACTIONS(4018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1416), - [anon_sym_DOT_DOT_LT] = ACTIONS(1416), - [aux_sym__immediate_decimal_token1] = ACTIONS(3970), - [aux_sym__immediate_decimal_token3] = ACTIONS(3972), - [aux_sym__immediate_decimal_token4] = ACTIONS(3974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1404), - [aux_sym__val_number_decimal_token2] = ACTIONS(1404), - [anon_sym_DOT2] = ACTIONS(1404), - [aux_sym__val_number_decimal_token3] = ACTIONS(1404), - [aux_sym__val_number_token1] = ACTIONS(1416), - [aux_sym__val_number_token2] = ACTIONS(1416), - [aux_sym__val_number_token3] = ACTIONS(1416), - [anon_sym_0b] = ACTIONS(1404), - [anon_sym_0o] = ACTIONS(1404), - [anon_sym_0x] = ACTIONS(1404), - [sym_val_date] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym__str_single_quotes] = ACTIONS(1416), - [sym__str_back_ticks] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), - [anon_sym_err_GT] = ACTIONS(1404), - [anon_sym_out_GT] = ACTIONS(1404), - [anon_sym_e_GT] = ACTIONS(1404), - [anon_sym_o_GT] = ACTIONS(1404), - [anon_sym_err_PLUSout_GT] = ACTIONS(1404), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1404), - [anon_sym_o_PLUSe_GT] = ACTIONS(1404), - [anon_sym_e_PLUSo_GT] = ACTIONS(1404), - [anon_sym_err_GT_GT] = ACTIONS(1416), - [anon_sym_out_GT_GT] = ACTIONS(1416), - [anon_sym_e_GT_GT] = ACTIONS(1416), - [anon_sym_o_GT_GT] = ACTIONS(1416), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1416), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1416), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1416), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1416), - [aux_sym_unquoted_token1] = ACTIONS(1404), - [aux_sym_unquoted_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [aux_sym_ctrl_match_token1] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(978), + [aux_sym_expr_binary_token1] = ACTIONS(978), + [aux_sym_expr_binary_token2] = ACTIONS(978), + [aux_sym_expr_binary_token3] = ACTIONS(978), + [aux_sym_expr_binary_token4] = ACTIONS(978), + [aux_sym_expr_binary_token5] = ACTIONS(978), + [aux_sym_expr_binary_token6] = ACTIONS(978), + [aux_sym_expr_binary_token7] = ACTIONS(978), + [aux_sym_expr_binary_token8] = ACTIONS(978), + [aux_sym_expr_binary_token9] = ACTIONS(978), + [aux_sym_expr_binary_token10] = ACTIONS(978), + [aux_sym_expr_binary_token11] = ACTIONS(978), + [aux_sym_expr_binary_token12] = ACTIONS(978), + [aux_sym_expr_binary_token13] = ACTIONS(978), + [aux_sym_expr_binary_token14] = ACTIONS(978), + [aux_sym_expr_binary_token15] = ACTIONS(978), + [aux_sym_expr_binary_token16] = ACTIONS(978), + [aux_sym_expr_binary_token17] = ACTIONS(978), + [aux_sym_expr_binary_token18] = ACTIONS(978), + [aux_sym_expr_binary_token19] = ACTIONS(978), + [aux_sym_expr_binary_token20] = ACTIONS(978), + [aux_sym_expr_binary_token21] = ACTIONS(978), + [aux_sym_expr_binary_token22] = ACTIONS(978), + [aux_sym_expr_binary_token23] = ACTIONS(978), + [aux_sym_expr_binary_token24] = ACTIONS(978), + [aux_sym_expr_binary_token25] = ACTIONS(978), + [aux_sym_expr_binary_token26] = ACTIONS(978), + [aux_sym_expr_binary_token27] = ACTIONS(978), + [aux_sym_expr_binary_token28] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [aux_sym_record_entry_token1] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), }, [1278] = { [sym_comment] = STATE(1278), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), + [sym__newline] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [aux_sym_ctrl_match_token1] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(964), + [aux_sym_expr_binary_token1] = ACTIONS(964), + [aux_sym_expr_binary_token2] = ACTIONS(964), + [aux_sym_expr_binary_token3] = ACTIONS(964), + [aux_sym_expr_binary_token4] = ACTIONS(964), + [aux_sym_expr_binary_token5] = ACTIONS(964), + [aux_sym_expr_binary_token6] = ACTIONS(964), + [aux_sym_expr_binary_token7] = ACTIONS(964), + [aux_sym_expr_binary_token8] = ACTIONS(964), + [aux_sym_expr_binary_token9] = ACTIONS(964), + [aux_sym_expr_binary_token10] = ACTIONS(964), + [aux_sym_expr_binary_token11] = ACTIONS(964), + [aux_sym_expr_binary_token12] = ACTIONS(964), + [aux_sym_expr_binary_token13] = ACTIONS(964), + [aux_sym_expr_binary_token14] = ACTIONS(964), + [aux_sym_expr_binary_token15] = ACTIONS(964), + [aux_sym_expr_binary_token16] = ACTIONS(964), + [aux_sym_expr_binary_token17] = ACTIONS(964), + [aux_sym_expr_binary_token18] = ACTIONS(964), + [aux_sym_expr_binary_token19] = ACTIONS(964), + [aux_sym_expr_binary_token20] = ACTIONS(964), + [aux_sym_expr_binary_token21] = ACTIONS(964), + [aux_sym_expr_binary_token22] = ACTIONS(964), + [aux_sym_expr_binary_token23] = ACTIONS(964), + [aux_sym_expr_binary_token24] = ACTIONS(964), + [aux_sym_expr_binary_token25] = ACTIONS(964), + [aux_sym_expr_binary_token26] = ACTIONS(964), + [aux_sym_expr_binary_token27] = ACTIONS(964), + [aux_sym_expr_binary_token28] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [aux_sym_record_entry_token1] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), }, [1279] = { - [sym__expr_parenthesized_immediate] = STATE(1595), - [sym__immediate_decimal] = STATE(1598), - [sym_val_variable] = STATE(1595), [sym_comment] = STATE(1279), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1457), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_err_GT_PIPE] = ACTIONS(1457), - [anon_sym_out_GT_PIPE] = ACTIONS(1457), - [anon_sym_e_GT_PIPE] = ACTIONS(1457), - [anon_sym_o_GT_PIPE] = ACTIONS(1457), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1457), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1457), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1457), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_RPAREN] = ACTIONS(1457), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1449), - [aux_sym_ctrl_match_token1] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(4020), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [aux_sym__immediate_decimal_token1] = ACTIONS(4022), - [aux_sym__immediate_decimal_token3] = ACTIONS(4024), - [aux_sym__immediate_decimal_token4] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(1449), - [aux_sym__val_number_decimal_token2] = ACTIONS(1449), - [anon_sym_DOT2] = ACTIONS(1449), - [aux_sym__val_number_decimal_token3] = ACTIONS(1449), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [anon_sym_0b] = ACTIONS(1449), - [anon_sym_0o] = ACTIONS(1449), - [anon_sym_0x] = ACTIONS(1449), - [sym_val_date] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [sym__str_single_quotes] = ACTIONS(1457), - [sym__str_back_ticks] = ACTIONS(1457), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1457), - [anon_sym_err_GT] = ACTIONS(1449), - [anon_sym_out_GT] = ACTIONS(1449), - [anon_sym_e_GT] = ACTIONS(1449), - [anon_sym_o_GT] = ACTIONS(1449), - [anon_sym_err_PLUSout_GT] = ACTIONS(1449), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1449), - [anon_sym_o_PLUSe_GT] = ACTIONS(1449), - [anon_sym_e_PLUSo_GT] = ACTIONS(1449), - [anon_sym_err_GT_GT] = ACTIONS(1457), - [anon_sym_out_GT_GT] = ACTIONS(1457), - [anon_sym_e_GT_GT] = ACTIONS(1457), - [anon_sym_o_GT_GT] = ACTIONS(1457), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1457), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1457), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1457), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1457), - [aux_sym_unquoted_token1] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1519), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4136), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1280] = { - [sym__expr_parenthesized_immediate] = STATE(1845), - [sym__immediate_decimal] = STATE(1846), - [sym_val_variable] = STATE(1845), + [sym_cell_path] = STATE(1446), + [sym_path] = STATE(1426), [sym_comment] = STATE(1280), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1457), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_err_GT_PIPE] = ACTIONS(1457), - [anon_sym_out_GT_PIPE] = ACTIONS(1457), - [anon_sym_e_GT_PIPE] = ACTIONS(1457), - [anon_sym_o_GT_PIPE] = ACTIONS(1457), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1457), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1457), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1457), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_RPAREN] = ACTIONS(1457), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1449), - [aux_sym_ctrl_match_token1] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT] = ACTIONS(4006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [aux_sym__immediate_decimal_token1] = ACTIONS(4008), - [aux_sym__immediate_decimal_token3] = ACTIONS(4010), - [aux_sym__immediate_decimal_token4] = ACTIONS(4012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1449), - [aux_sym__val_number_decimal_token2] = ACTIONS(1449), - [anon_sym_DOT2] = ACTIONS(1449), - [aux_sym__val_number_decimal_token3] = ACTIONS(1449), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [anon_sym_0b] = ACTIONS(1449), - [anon_sym_0o] = ACTIONS(1449), - [anon_sym_0x] = ACTIONS(1449), - [sym_val_date] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [sym__str_single_quotes] = ACTIONS(1457), - [sym__str_back_ticks] = ACTIONS(1457), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1457), - [anon_sym_err_GT] = ACTIONS(1449), - [anon_sym_out_GT] = ACTIONS(1449), - [anon_sym_e_GT] = ACTIONS(1449), - [anon_sym_o_GT] = ACTIONS(1449), - [anon_sym_err_PLUSout_GT] = ACTIONS(1449), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1449), - [anon_sym_o_PLUSe_GT] = ACTIONS(1449), - [anon_sym_e_PLUSo_GT] = ACTIONS(1449), - [anon_sym_err_GT_GT] = ACTIONS(1457), - [anon_sym_out_GT_GT] = ACTIONS(1457), - [anon_sym_e_GT_GT] = ACTIONS(1457), - [anon_sym_o_GT_GT] = ACTIONS(1457), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1457), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1457), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1457), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1457), - [aux_sym_unquoted_token1] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1297), + [ts_builtin_sym_end] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(947), + [sym__newline] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_err_GT_PIPE] = ACTIONS(947), + [anon_sym_out_GT_PIPE] = ACTIONS(947), + [anon_sym_e_GT_PIPE] = ACTIONS(947), + [anon_sym_o_GT_PIPE] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), + [aux_sym_expr_binary_token1] = ACTIONS(947), + [aux_sym_expr_binary_token2] = ACTIONS(947), + [aux_sym_expr_binary_token3] = ACTIONS(947), + [aux_sym_expr_binary_token4] = ACTIONS(947), + [aux_sym_expr_binary_token5] = ACTIONS(947), + [aux_sym_expr_binary_token6] = ACTIONS(947), + [aux_sym_expr_binary_token7] = ACTIONS(947), + [aux_sym_expr_binary_token8] = ACTIONS(947), + [aux_sym_expr_binary_token9] = ACTIONS(947), + [aux_sym_expr_binary_token10] = ACTIONS(947), + [aux_sym_expr_binary_token11] = ACTIONS(947), + [aux_sym_expr_binary_token12] = ACTIONS(947), + [aux_sym_expr_binary_token13] = ACTIONS(947), + [aux_sym_expr_binary_token14] = ACTIONS(947), + [aux_sym_expr_binary_token15] = ACTIONS(947), + [aux_sym_expr_binary_token16] = ACTIONS(947), + [aux_sym_expr_binary_token17] = ACTIONS(947), + [aux_sym_expr_binary_token18] = ACTIONS(947), + [aux_sym_expr_binary_token19] = ACTIONS(947), + [aux_sym_expr_binary_token20] = ACTIONS(947), + [aux_sym_expr_binary_token21] = ACTIONS(947), + [aux_sym_expr_binary_token22] = ACTIONS(947), + [aux_sym_expr_binary_token23] = ACTIONS(947), + [aux_sym_expr_binary_token24] = ACTIONS(947), + [aux_sym_expr_binary_token25] = ACTIONS(947), + [aux_sym_expr_binary_token26] = ACTIONS(947), + [aux_sym_expr_binary_token27] = ACTIONS(947), + [aux_sym_expr_binary_token28] = ACTIONS(947), + [anon_sym_DOT_DOT2] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(4138), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(947), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(247), }, [1281] = { [sym_comment] = STATE(1281), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1378), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4142), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1282] = { + [sym__expr_parenthesized_immediate] = STATE(1845), + [sym__immediate_decimal] = STATE(1846), + [sym_val_variable] = STATE(1845), [sym_comment] = STATE(1282), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1506), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [aux_sym_ctrl_match_token1] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_DOT_DOT_LT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_0b] = ACTIONS(1504), - [sym_filesize_unit] = ACTIONS(1506), - [sym_duration_unit] = ACTIONS(1506), - [anon_sym_0o] = ACTIONS(1504), - [anon_sym_0x] = ACTIONS(1504), - [sym_val_date] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token1] = ACTIONS(1504), - [aux_sym_unquoted_token6] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(3), - }, - [1283] = { - [sym_comment] = STATE(1283), - [ts_builtin_sym_end] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(4028), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4031), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1400), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), - }, - [1284] = { - [sym__expr_parenthesized_immediate] = STATE(2052), - [sym__immediate_decimal] = STATE(1635), - [sym_val_variable] = STATE(2052), - [sym_comment] = STATE(1284), - [ts_builtin_sym_end] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_DOLLAR] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(3985), - [anon_sym_DOT] = ACTIONS(3987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(3989), - [aux_sym__immediate_decimal_token3] = ACTIONS(3991), - [aux_sym__immediate_decimal_token4] = ACTIONS(3993), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2927), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2927), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token5] = ACTIONS(3976), - [anon_sym_POUND] = ACTIONS(3), - }, - [1285] = { - [sym__expr_parenthesized_immediate] = STATE(7497), - [sym_comment] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(1441), [anon_sym_true] = ACTIONS(1441), [anon_sym_false] = ACTIONS(1441), [anon_sym_null] = ACTIONS(1441), @@ -196029,45 +201255,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(4060), [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1431), [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_DOT_DOT2] = ACTIONS(4033), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), - [anon_sym_DOT_DOT_LT] = ACTIONS(1429), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4035), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4035), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_DOT_DOT_LT] = ACTIONS(1441), + [aux_sym__immediate_decimal_token1] = ACTIONS(4144), + [aux_sym__immediate_decimal_token3] = ACTIONS(4146), + [aux_sym__immediate_decimal_token4] = ACTIONS(4148), + [aux_sym__immediate_decimal_token5] = ACTIONS(4150), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), [aux_sym__val_number_token1] = ACTIONS(1441), [aux_sym__val_number_token2] = ACTIONS(1441), [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1429), - [sym_filesize_unit] = ACTIONS(4037), - [sym_duration_unit] = ACTIONS(4039), - [anon_sym_0o] = ACTIONS(1429), - [anon_sym_0x] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), [sym_val_date] = ACTIONS(1441), [anon_sym_DQUOTE] = ACTIONS(1441), [sym__str_single_quotes] = ACTIONS(1441), [sym__str_back_ticks] = ACTIONS(1441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), [anon_sym_err_GT_GT] = ACTIONS(1441), [anon_sym_out_GT_GT] = ACTIONS(1441), [anon_sym_e_GT_GT] = ACTIONS(1441), @@ -196076,520 +201302,817 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1429), - [aux_sym_unquoted_token6] = ACTIONS(3976), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token1] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(247), + }, + [1283] = { + [sym__expr_parenthesized_immediate] = STATE(1857), + [sym__immediate_decimal] = STATE(1858), + [sym_val_variable] = STATE(1857), + [sym_comment] = STATE(1283), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [aux_sym_cmd_identifier_token38] = ACTIONS(1553), + [aux_sym_cmd_identifier_token39] = ACTIONS(1553), + [aux_sym_cmd_identifier_token40] = ACTIONS(1553), + [sym__newline] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_err_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_GT_PIPE] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_DOLLAR] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1551), + [aux_sym_ctrl_match_token1] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT] = ACTIONS(1553), + [aux_sym__immediate_decimal_token1] = ACTIONS(4144), + [aux_sym__immediate_decimal_token3] = ACTIONS(4146), + [aux_sym__immediate_decimal_token4] = ACTIONS(4148), + [aux_sym__immediate_decimal_token5] = ACTIONS(4150), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_decimal_token2] = ACTIONS(1551), + [aux_sym__val_number_decimal_token3] = ACTIONS(1551), + [aux_sym__val_number_decimal_token4] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1553), + [aux_sym__val_number_token2] = ACTIONS(1553), + [aux_sym__val_number_token3] = ACTIONS(1553), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1553), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [anon_sym_err_GT_GT] = ACTIONS(1553), + [anon_sym_out_GT_GT] = ACTIONS(1553), + [anon_sym_e_GT_GT] = ACTIONS(1553), + [anon_sym_o_GT_GT] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), + [aux_sym_unquoted_token1] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(247), + }, + [1284] = { + [sym__expr_parenthesized_immediate] = STATE(1859), + [sym__immediate_decimal] = STATE(1860), + [sym_val_variable] = STATE(1859), + [sym_comment] = STATE(1284), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [aux_sym_cmd_identifier_token38] = ACTIONS(1557), + [aux_sym_cmd_identifier_token39] = ACTIONS(1557), + [aux_sym_cmd_identifier_token40] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1555), + [aux_sym_ctrl_match_token1] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4144), + [aux_sym__immediate_decimal_token3] = ACTIONS(4146), + [aux_sym__immediate_decimal_token4] = ACTIONS(4148), + [aux_sym__immediate_decimal_token5] = ACTIONS(4150), + [aux_sym__val_number_decimal_token1] = ACTIONS(1555), + [aux_sym__val_number_decimal_token2] = ACTIONS(1555), + [aux_sym__val_number_decimal_token3] = ACTIONS(1555), + [aux_sym__val_number_decimal_token4] = ACTIONS(1555), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [anon_sym_0b] = ACTIONS(1555), + [anon_sym_0o] = ACTIONS(1555), + [anon_sym_0x] = ACTIONS(1555), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [anon_sym_err_GT] = ACTIONS(1555), + [anon_sym_out_GT] = ACTIONS(1555), + [anon_sym_e_GT] = ACTIONS(1555), + [anon_sym_o_GT] = ACTIONS(1555), + [anon_sym_err_PLUSout_GT] = ACTIONS(1555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), + [anon_sym_o_PLUSe_GT] = ACTIONS(1555), + [anon_sym_e_PLUSo_GT] = ACTIONS(1555), + [anon_sym_err_GT_GT] = ACTIONS(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [aux_sym_unquoted_token1] = ACTIONS(1555), + [anon_sym_POUND] = ACTIONS(247), + }, + [1285] = { + [sym__expr_parenthesized_immediate] = STATE(1861), + [sym__immediate_decimal] = STATE(1862), + [sym_val_variable] = STATE(1861), + [sym_comment] = STATE(1285), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [aux_sym_cmd_identifier_token38] = ACTIONS(1509), + [aux_sym_cmd_identifier_token39] = ACTIONS(1509), + [aux_sym_cmd_identifier_token40] = ACTIONS(1509), + [sym__newline] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_err_GT_PIPE] = ACTIONS(1509), + [anon_sym_out_GT_PIPE] = ACTIONS(1509), + [anon_sym_e_GT_PIPE] = ACTIONS(1509), + [anon_sym_o_GT_PIPE] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1501), + [aux_sym_ctrl_match_token1] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_DOT_DOT_LT] = ACTIONS(1509), + [aux_sym__immediate_decimal_token1] = ACTIONS(4144), + [aux_sym__immediate_decimal_token3] = ACTIONS(4146), + [aux_sym__immediate_decimal_token4] = ACTIONS(4148), + [aux_sym__immediate_decimal_token5] = ACTIONS(4150), + [aux_sym__val_number_decimal_token1] = ACTIONS(1501), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [anon_sym_0b] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1501), + [anon_sym_0x] = ACTIONS(1501), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1501), + [anon_sym_out_GT] = ACTIONS(1501), + [anon_sym_e_GT] = ACTIONS(1501), + [anon_sym_o_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT] = ACTIONS(1501), + [anon_sym_err_GT_GT] = ACTIONS(1509), + [anon_sym_out_GT_GT] = ACTIONS(1509), + [anon_sym_e_GT_GT] = ACTIONS(1509), + [anon_sym_o_GT_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1509), + [aux_sym_unquoted_token1] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(247), }, [1286] = { + [sym__expr_parenthesized_immediate] = STATE(2088), + [sym__immediate_decimal] = STATE(1696), + [sym_val_variable] = STATE(2088), [sym_comment] = STATE(1286), - [ts_builtin_sym_end] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4031), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1400), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1455), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_err_GT_PIPE] = ACTIONS(1455), + [anon_sym_out_GT_PIPE] = ACTIONS(1455), + [anon_sym_e_GT_PIPE] = ACTIONS(1455), + [anon_sym_o_GT_PIPE] = ACTIONS(1455), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1455), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1455), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1455), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1443), + [aux_sym_ctrl_match_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [aux_sym__immediate_decimal_token1] = ACTIONS(4128), + [aux_sym__immediate_decimal_token3] = ACTIONS(4130), + [aux_sym__immediate_decimal_token4] = ACTIONS(4132), + [aux_sym__immediate_decimal_token5] = ACTIONS(4134), + [aux_sym__val_number_decimal_token1] = ACTIONS(1443), + [aux_sym__val_number_decimal_token2] = ACTIONS(1443), + [aux_sym__val_number_decimal_token3] = ACTIONS(1443), + [aux_sym__val_number_decimal_token4] = ACTIONS(1443), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [anon_sym_0b] = ACTIONS(1443), + [anon_sym_0o] = ACTIONS(1443), + [anon_sym_0x] = ACTIONS(1443), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [anon_sym_err_GT] = ACTIONS(1443), + [anon_sym_out_GT] = ACTIONS(1443), + [anon_sym_e_GT] = ACTIONS(1443), + [anon_sym_o_GT] = ACTIONS(1443), + [anon_sym_err_PLUSout_GT] = ACTIONS(1443), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1443), + [anon_sym_o_PLUSe_GT] = ACTIONS(1443), + [anon_sym_e_PLUSo_GT] = ACTIONS(1443), + [anon_sym_err_GT_GT] = ACTIONS(1455), + [anon_sym_out_GT_GT] = ACTIONS(1455), + [anon_sym_e_GT_GT] = ACTIONS(1455), + [anon_sym_o_GT_GT] = ACTIONS(1455), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1455), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1455), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1455), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1455), + [aux_sym_unquoted_token1] = ACTIONS(1443), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), }, [1287] = { [sym_comment] = STATE(1287), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1400), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4154), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1288] = { + [sym_path] = STATE(1399), [sym_comment] = STATE(1288), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(4041), - [aux_sym__immediate_decimal_token2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1271), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(953), + [sym__newline] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_err_GT_PIPE] = ACTIONS(953), + [anon_sym_out_GT_PIPE] = ACTIONS(953), + [anon_sym_e_GT_PIPE] = ACTIONS(953), + [anon_sym_o_GT_PIPE] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [aux_sym_ctrl_match_token1] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(953), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(953), + [anon_sym_DOT_DOT2] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(4075), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(953), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(247), }, [1289] = { - [sym_path] = STATE(1409), [sym_comment] = STATE(1289), - [aux_sym_cell_path_repeat1] = STATE(1262), - [anon_sym_EQ] = ACTIONS(889), - [anon_sym_PLUS_EQ] = ACTIONS(891), - [anon_sym_DASH_EQ] = ACTIONS(891), - [anon_sym_STAR_EQ] = ACTIONS(891), - [anon_sym_SLASH_EQ] = ACTIONS(891), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(891), - [sym__newline] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_in] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [aux_sym_record_entry_token1] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(970), + [anon_sym_PLUS_EQ] = ACTIONS(972), + [anon_sym_DASH_EQ] = ACTIONS(972), + [anon_sym_STAR_EQ] = ACTIONS(972), + [anon_sym_SLASH_EQ] = ACTIONS(972), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_err_GT_PIPE] = ACTIONS(972), + [anon_sym_out_GT_PIPE] = ACTIONS(972), + [anon_sym_e_GT_PIPE] = ACTIONS(972), + [anon_sym_o_GT_PIPE] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), + [aux_sym_ctrl_match_token1] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(4156), + [aux_sym_expr_binary_token1] = ACTIONS(972), + [aux_sym_expr_binary_token2] = ACTIONS(972), + [aux_sym_expr_binary_token3] = ACTIONS(972), + [aux_sym_expr_binary_token4] = ACTIONS(972), + [aux_sym_expr_binary_token5] = ACTIONS(972), + [aux_sym_expr_binary_token6] = ACTIONS(972), + [aux_sym_expr_binary_token7] = ACTIONS(972), + [aux_sym_expr_binary_token8] = ACTIONS(972), + [aux_sym_expr_binary_token9] = ACTIONS(972), + [aux_sym_expr_binary_token10] = ACTIONS(972), + [aux_sym_expr_binary_token11] = ACTIONS(972), + [aux_sym_expr_binary_token12] = ACTIONS(972), + [aux_sym_expr_binary_token13] = ACTIONS(972), + [aux_sym_expr_binary_token14] = ACTIONS(972), + [aux_sym_expr_binary_token15] = ACTIONS(972), + [aux_sym_expr_binary_token16] = ACTIONS(972), + [aux_sym_expr_binary_token17] = ACTIONS(972), + [aux_sym_expr_binary_token18] = ACTIONS(972), + [aux_sym_expr_binary_token19] = ACTIONS(972), + [aux_sym_expr_binary_token20] = ACTIONS(972), + [aux_sym_expr_binary_token21] = ACTIONS(972), + [aux_sym_expr_binary_token22] = ACTIONS(972), + [aux_sym_expr_binary_token23] = ACTIONS(972), + [aux_sym_expr_binary_token24] = ACTIONS(972), + [aux_sym_expr_binary_token25] = ACTIONS(972), + [aux_sym_expr_binary_token26] = ACTIONS(972), + [aux_sym_expr_binary_token27] = ACTIONS(972), + [aux_sym_expr_binary_token28] = ACTIONS(972), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [aux_sym_record_entry_token1] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(247), }, [1290] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6309), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6077), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5311), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6293), - [sym__unquoted_anonymous_prefix] = STATE(7887), [sym_comment] = STATE(1290), - [anon_sym_true] = ACTIONS(4045), - [anon_sym_false] = ACTIONS(4045), - [anon_sym_null] = ACTIONS(4047), - [aux_sym_cmd_identifier_token38] = ACTIONS(4049), - [aux_sym_cmd_identifier_token39] = ACTIONS(4049), - [aux_sym_cmd_identifier_token40] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4055), - [aux_sym_ctrl_match_token1] = ACTIONS(4057), - [anon_sym_DOT_DOT] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4061), - [anon_sym_DOT_DOT_LT] = ACTIONS(4061), - [aux_sym__val_number_decimal_token1] = ACTIONS(4063), - [aux_sym__val_number_decimal_token2] = ACTIONS(4065), - [anon_sym_DOT2] = ACTIONS(4067), - [aux_sym__val_number_decimal_token3] = ACTIONS(4069), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4071), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1483), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1481), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4158), + [aux_sym__immediate_decimal_token2] = ACTIONS(4160), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1291] = { [sym_comment] = STATE(1291), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1481), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4162), + [aux_sym__immediate_decimal_token2] = ACTIONS(4164), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1292] = { [sym_comment] = STATE(1292), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1378), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(968), + [aux_sym_expr_binary_token1] = ACTIONS(968), + [aux_sym_expr_binary_token2] = ACTIONS(968), + [aux_sym_expr_binary_token3] = ACTIONS(968), + [aux_sym_expr_binary_token4] = ACTIONS(968), + [aux_sym_expr_binary_token5] = ACTIONS(968), + [aux_sym_expr_binary_token6] = ACTIONS(968), + [aux_sym_expr_binary_token7] = ACTIONS(968), + [aux_sym_expr_binary_token8] = ACTIONS(968), + [aux_sym_expr_binary_token9] = ACTIONS(968), + [aux_sym_expr_binary_token10] = ACTIONS(968), + [aux_sym_expr_binary_token11] = ACTIONS(968), + [aux_sym_expr_binary_token12] = ACTIONS(968), + [aux_sym_expr_binary_token13] = ACTIONS(968), + [aux_sym_expr_binary_token14] = ACTIONS(968), + [aux_sym_expr_binary_token15] = ACTIONS(968), + [aux_sym_expr_binary_token16] = ACTIONS(968), + [aux_sym_expr_binary_token17] = ACTIONS(968), + [aux_sym_expr_binary_token18] = ACTIONS(968), + [aux_sym_expr_binary_token19] = ACTIONS(968), + [aux_sym_expr_binary_token20] = ACTIONS(968), + [aux_sym_expr_binary_token21] = ACTIONS(968), + [aux_sym_expr_binary_token22] = ACTIONS(968), + [aux_sym_expr_binary_token23] = ACTIONS(968), + [aux_sym_expr_binary_token24] = ACTIONS(968), + [aux_sym_expr_binary_token25] = ACTIONS(968), + [aux_sym_expr_binary_token26] = ACTIONS(968), + [aux_sym_expr_binary_token27] = ACTIONS(968), + [aux_sym_expr_binary_token28] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), }, [1293] = { + [sym__val_range] = STATE(7981), + [sym__value] = STATE(2892), + [sym_val_nothing] = STATE(2982), + [sym_val_bool] = STATE(2863), + [sym_val_variable] = STATE(2982), + [sym_val_number] = STATE(2982), + [sym__val_number_decimal] = STATE(2598), + [sym__val_number] = STATE(2929), + [sym_val_duration] = STATE(2982), + [sym_val_filesize] = STATE(2982), + [sym_val_binary] = STATE(2982), + [sym_val_string] = STATE(2982), + [sym__str_double_quotes] = STATE(2993), + [sym_val_interpolated] = STATE(2982), + [sym__inter_single_quotes] = STATE(2995), + [sym__inter_double_quotes] = STATE(2992), + [sym_val_list] = STATE(2982), + [sym_val_record] = STATE(2982), + [sym_val_table] = STATE(2982), + [sym_val_closure] = STATE(2982), + [sym_unquoted] = STATE(2894), + [sym__unquoted_anonymous_prefix] = STATE(8059), [sym_comment] = STATE(1293), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4168), + [aux_sym_cmd_identifier_token38] = ACTIONS(4170), + [aux_sym_cmd_identifier_token39] = ACTIONS(4170), + [aux_sym_cmd_identifier_token40] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4176), + [aux_sym_ctrl_match_token1] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4182), + [anon_sym_DOT_DOT_LT] = ACTIONS(4182), + [aux_sym__val_number_decimal_token1] = ACTIONS(4184), + [aux_sym__val_number_decimal_token2] = ACTIONS(4186), + [aux_sym__val_number_decimal_token3] = ACTIONS(4188), + [aux_sym__val_number_decimal_token4] = ACTIONS(4190), + [aux_sym__val_number_token1] = ACTIONS(4192), + [aux_sym__val_number_token2] = ACTIONS(4192), + [aux_sym__val_number_token3] = ACTIONS(4192), + [anon_sym_0b] = ACTIONS(4194), + [anon_sym_0o] = ACTIONS(4196), + [anon_sym_0x] = ACTIONS(4196), + [sym_val_date] = ACTIONS(4198), + [anon_sym_DQUOTE] = ACTIONS(4200), + [sym__str_single_quotes] = ACTIONS(4202), + [sym__str_back_ticks] = ACTIONS(4202), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4206), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4208), + [anon_sym_POUND] = ACTIONS(247), + }, + [1294] = { + [sym__expr_parenthesized_immediate] = STATE(1982), + [sym__immediate_decimal] = STATE(1983), + [sym_val_variable] = STATE(1982), + [sym_comment] = STATE(1294), + [ts_builtin_sym_end] = ACTIONS(1441), [anon_sym_true] = ACTIONS(1441), [anon_sym_false] = ACTIONS(1441), [anon_sym_null] = ACTIONS(1441), @@ -196608,46 +202131,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(4124), [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1431), [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT2] = ACTIONS(4075), - [anon_sym_DOT] = ACTIONS(4077), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), - [anon_sym_DOT_DOT_LT] = ACTIONS(1429), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4079), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4079), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_DOT_DOT_LT] = ACTIONS(1441), + [aux_sym__immediate_decimal_token1] = ACTIONS(4210), + [aux_sym__immediate_decimal_token3] = ACTIONS(4212), + [aux_sym__immediate_decimal_token4] = ACTIONS(4214), + [aux_sym__immediate_decimal_token5] = ACTIONS(4216), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), [aux_sym__val_number_token1] = ACTIONS(1441), [aux_sym__val_number_token2] = ACTIONS(1441), [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1429), - [sym_filesize_unit] = ACTIONS(4081), - [sym_duration_unit] = ACTIONS(4083), - [anon_sym_0o] = ACTIONS(1429), - [anon_sym_0x] = ACTIONS(1429), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), [sym_val_date] = ACTIONS(1441), [anon_sym_DQUOTE] = ACTIONS(1441), [sym__str_single_quotes] = ACTIONS(1441), [sym__str_back_ticks] = ACTIONS(1441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), [anon_sym_err_GT_GT] = ACTIONS(1441), [anon_sym_out_GT_GT] = ACTIONS(1441), [anon_sym_e_GT_GT] = ACTIONS(1441), @@ -196656,7412 +202176,8053 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1429), - [aux_sym_unquoted_token6] = ACTIONS(4077), - [anon_sym_POUND] = ACTIONS(3), - }, - [1294] = { - [sym_comment] = STATE(1294), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_RPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1378), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token1] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(247), }, [1295] = { + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6238), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6000), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5498), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6265), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1295), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1506), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [aux_sym_ctrl_match_token1] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_DOT_DOT_LT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_0b] = ACTIONS(1504), - [sym_filesize_unit] = ACTIONS(1506), - [sym_duration_unit] = ACTIONS(1506), - [anon_sym_0o] = ACTIONS(1504), - [anon_sym_0x] = ACTIONS(1504), - [sym_val_date] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token1] = ACTIONS(1504), - [aux_sym_unquoted_token6] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4220), + [aux_sym_cmd_identifier_token38] = ACTIONS(4222), + [aux_sym_cmd_identifier_token39] = ACTIONS(4222), + [aux_sym_cmd_identifier_token40] = ACTIONS(4222), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4236), + [aux_sym__val_number_decimal_token2] = ACTIONS(4238), + [aux_sym__val_number_decimal_token3] = ACTIONS(4240), + [aux_sym__val_number_decimal_token4] = ACTIONS(4242), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4244), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1296] = { - [sym__val_range] = STATE(7523), - [sym__value] = STATE(6347), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(7661), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(5752), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(2137), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(6348), - [sym__unquoted_anonymous_prefix] = STATE(7978), + [sym__val_range] = STATE(8049), + [sym__value] = STATE(2892), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(5842), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(2158), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2894), + [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(1296), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_null] = ACTIONS(4087), - [aux_sym_cmd_identifier_token38] = ACTIONS(4089), - [aux_sym_cmd_identifier_token39] = ACTIONS(4089), - [aux_sym_cmd_identifier_token40] = ACTIONS(4089), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(4095), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4097), - [anon_sym_DOT_DOT_LT] = ACTIONS(4097), - [aux_sym__val_number_decimal_token1] = ACTIONS(4099), - [aux_sym__val_number_decimal_token2] = ACTIONS(4101), - [anon_sym_DOT2] = ACTIONS(4103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4105), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3217), + [aux_sym_cmd_identifier_token39] = ACTIONS(3217), + [aux_sym_cmd_identifier_token40] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_DOLLAR] = ACTIONS(4252), + [aux_sym_ctrl_match_token1] = ACTIONS(4254), + [anon_sym_DOT_DOT] = ACTIONS(4256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4258), + [anon_sym_DOT_DOT_LT] = ACTIONS(4258), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(4260), + [sym__str_single_quotes] = ACTIONS(4262), + [sym__str_back_ticks] = ACTIONS(4262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(247), }, [1297] = { + [sym_path] = STATE(1426), [sym_comment] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1506), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_DOLLAR] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [aux_sym_ctrl_match_token1] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_DOT_DOT_LT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_0b] = ACTIONS(1504), - [sym_filesize_unit] = ACTIONS(1506), - [sym_duration_unit] = ACTIONS(1506), - [anon_sym_0o] = ACTIONS(1504), - [anon_sym_0x] = ACTIONS(1504), - [sym_val_date] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token1] = ACTIONS(1504), - [aux_sym_unquoted_token6] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1325), + [ts_builtin_sym_end] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(953), + [sym__newline] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_err_GT_PIPE] = ACTIONS(953), + [anon_sym_out_GT_PIPE] = ACTIONS(953), + [anon_sym_e_GT_PIPE] = ACTIONS(953), + [anon_sym_o_GT_PIPE] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), + [aux_sym_expr_binary_token1] = ACTIONS(953), + [aux_sym_expr_binary_token2] = ACTIONS(953), + [aux_sym_expr_binary_token3] = ACTIONS(953), + [aux_sym_expr_binary_token4] = ACTIONS(953), + [aux_sym_expr_binary_token5] = ACTIONS(953), + [aux_sym_expr_binary_token6] = ACTIONS(953), + [aux_sym_expr_binary_token7] = ACTIONS(953), + [aux_sym_expr_binary_token8] = ACTIONS(953), + [aux_sym_expr_binary_token9] = ACTIONS(953), + [aux_sym_expr_binary_token10] = ACTIONS(953), + [aux_sym_expr_binary_token11] = ACTIONS(953), + [aux_sym_expr_binary_token12] = ACTIONS(953), + [aux_sym_expr_binary_token13] = ACTIONS(953), + [aux_sym_expr_binary_token14] = ACTIONS(953), + [aux_sym_expr_binary_token15] = ACTIONS(953), + [aux_sym_expr_binary_token16] = ACTIONS(953), + [aux_sym_expr_binary_token17] = ACTIONS(953), + [aux_sym_expr_binary_token18] = ACTIONS(953), + [aux_sym_expr_binary_token19] = ACTIONS(953), + [aux_sym_expr_binary_token20] = ACTIONS(953), + [aux_sym_expr_binary_token21] = ACTIONS(953), + [aux_sym_expr_binary_token22] = ACTIONS(953), + [aux_sym_expr_binary_token23] = ACTIONS(953), + [aux_sym_expr_binary_token24] = ACTIONS(953), + [aux_sym_expr_binary_token25] = ACTIONS(953), + [aux_sym_expr_binary_token26] = ACTIONS(953), + [aux_sym_expr_binary_token27] = ACTIONS(953), + [aux_sym_expr_binary_token28] = ACTIONS(953), + [anon_sym_DOT_DOT2] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(4138), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(953), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(247), }, [1298] = { - [sym__val_range] = STATE(7600), - [sym__value] = STATE(2820), - [sym_val_nothing] = STATE(2893), - [sym_val_bool] = STATE(2818), - [sym_val_variable] = STATE(2893), - [sym_val_number] = STATE(2893), - [sym__val_number_decimal] = STATE(2366), - [sym__val_number] = STATE(2889), - [sym_val_duration] = STATE(2893), - [sym_val_filesize] = STATE(2893), - [sym_val_binary] = STATE(2893), - [sym_val_string] = STATE(2893), - [sym__str_double_quotes] = STATE(2890), - [sym_val_interpolated] = STATE(2893), - [sym__inter_single_quotes] = STATE(2935), - [sym__inter_double_quotes] = STATE(2939), - [sym_val_list] = STATE(2893), - [sym_val_record] = STATE(2893), - [sym_val_table] = STATE(2893), - [sym_val_closure] = STATE(2893), - [sym_unquoted] = STATE(2842), - [sym__unquoted_anonymous_prefix] = STATE(7810), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6291), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(7285), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5793), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6292), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1298), - [anon_sym_true] = ACTIONS(4113), - [anon_sym_false] = ACTIONS(4113), - [anon_sym_null] = ACTIONS(4115), - [aux_sym_cmd_identifier_token38] = ACTIONS(4117), - [aux_sym_cmd_identifier_token39] = ACTIONS(4117), - [aux_sym_cmd_identifier_token40] = ACTIONS(4117), - [anon_sym_LBRACK] = ACTIONS(4119), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_DOLLAR] = ACTIONS(4123), - [aux_sym_ctrl_match_token1] = ACTIONS(4125), - [anon_sym_DOT_DOT] = ACTIONS(4127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4129), - [anon_sym_DOT_DOT_LT] = ACTIONS(4129), - [aux_sym__val_number_decimal_token1] = ACTIONS(4131), - [aux_sym__val_number_decimal_token2] = ACTIONS(4133), - [anon_sym_DOT2] = ACTIONS(4135), - [aux_sym__val_number_decimal_token3] = ACTIONS(4137), - [aux_sym__val_number_token1] = ACTIONS(4139), - [aux_sym__val_number_token2] = ACTIONS(4139), - [aux_sym__val_number_token3] = ACTIONS(4139), - [anon_sym_0b] = ACTIONS(4141), - [anon_sym_0o] = ACTIONS(4143), - [anon_sym_0x] = ACTIONS(4143), - [sym_val_date] = ACTIONS(4145), - [anon_sym_DQUOTE] = ACTIONS(4147), - [sym__str_single_quotes] = ACTIONS(4149), - [sym__str_back_ticks] = ACTIONS(4149), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4151), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4153), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4155), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4264), + [anon_sym_false] = ACTIONS(4264), + [anon_sym_null] = ACTIONS(4266), + [aux_sym_cmd_identifier_token38] = ACTIONS(4268), + [aux_sym_cmd_identifier_token39] = ACTIONS(4268), + [aux_sym_cmd_identifier_token40] = ACTIONS(4268), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4276), + [aux_sym__val_number_decimal_token2] = ACTIONS(4278), + [aux_sym__val_number_decimal_token3] = ACTIONS(4280), + [aux_sym__val_number_decimal_token4] = ACTIONS(4282), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1299] = { [sym_comment] = STATE(1299), - [anon_sym_EQ] = ACTIONS(900), - [anon_sym_PLUS_EQ] = ACTIONS(902), - [anon_sym_DASH_EQ] = ACTIONS(902), - [anon_sym_STAR_EQ] = ACTIONS(902), - [anon_sym_SLASH_EQ] = ACTIONS(902), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(902), - [sym__newline] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_err_GT_PIPE] = ACTIONS(902), - [anon_sym_out_GT_PIPE] = ACTIONS(902), - [anon_sym_e_GT_PIPE] = ACTIONS(902), - [anon_sym_o_GT_PIPE] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_in] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(4157), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT2] = ACTIONS(900), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_DOT_DOT2] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(902), - [aux_sym_record_entry_token1] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(994), + [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_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [aux_sym_ctrl_match_token1] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [aux_sym_expr_binary_token1] = ACTIONS(996), + [aux_sym_expr_binary_token2] = ACTIONS(996), + [aux_sym_expr_binary_token3] = ACTIONS(996), + [aux_sym_expr_binary_token4] = ACTIONS(996), + [aux_sym_expr_binary_token5] = ACTIONS(996), + [aux_sym_expr_binary_token6] = ACTIONS(996), + [aux_sym_expr_binary_token7] = ACTIONS(996), + [aux_sym_expr_binary_token8] = ACTIONS(996), + [aux_sym_expr_binary_token9] = ACTIONS(996), + [aux_sym_expr_binary_token10] = ACTIONS(996), + [aux_sym_expr_binary_token11] = ACTIONS(996), + [aux_sym_expr_binary_token12] = ACTIONS(996), + [aux_sym_expr_binary_token13] = ACTIONS(996), + [aux_sym_expr_binary_token14] = ACTIONS(996), + [aux_sym_expr_binary_token15] = ACTIONS(996), + [aux_sym_expr_binary_token16] = ACTIONS(996), + [aux_sym_expr_binary_token17] = ACTIONS(996), + [aux_sym_expr_binary_token18] = ACTIONS(996), + [aux_sym_expr_binary_token19] = ACTIONS(996), + [aux_sym_expr_binary_token20] = ACTIONS(996), + [aux_sym_expr_binary_token21] = ACTIONS(996), + [aux_sym_expr_binary_token22] = ACTIONS(996), + [aux_sym_expr_binary_token23] = ACTIONS(996), + [aux_sym_expr_binary_token24] = ACTIONS(996), + [aux_sym_expr_binary_token25] = ACTIONS(996), + [aux_sym_expr_binary_token26] = ACTIONS(996), + [aux_sym_expr_binary_token27] = ACTIONS(996), + [aux_sym_expr_binary_token28] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [aux_sym_record_entry_token1] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), }, [1300] = { + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6272), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6000), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5498), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6274), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1300), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(4159), - [aux_sym__immediate_decimal_token2] = ACTIONS(4161), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4220), + [aux_sym_cmd_identifier_token38] = ACTIONS(4222), + [aux_sym_cmd_identifier_token39] = ACTIONS(4222), + [aux_sym_cmd_identifier_token40] = ACTIONS(4222), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4236), + [aux_sym__val_number_decimal_token2] = ACTIONS(4238), + [aux_sym__val_number_decimal_token3] = ACTIONS(4240), + [aux_sym__val_number_decimal_token4] = ACTIONS(4242), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4244), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1301] = { - [sym__expr_parenthesized_immediate] = STATE(1665), - [sym__immediate_decimal] = STATE(1630), - [sym_val_variable] = STATE(1665), [sym_comment] = STATE(1301), - [ts_builtin_sym_end] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1457), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_err_GT_PIPE] = ACTIONS(1457), - [anon_sym_out_GT_PIPE] = ACTIONS(1457), - [anon_sym_e_GT_PIPE] = ACTIONS(1457), - [anon_sym_o_GT_PIPE] = ACTIONS(1457), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1457), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1457), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1457), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1449), - [aux_sym_ctrl_match_token1] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(3966), - [anon_sym_DOT] = ACTIONS(4163), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [aux_sym__immediate_decimal_token1] = ACTIONS(4165), - [aux_sym__immediate_decimal_token3] = ACTIONS(4167), - [aux_sym__immediate_decimal_token4] = ACTIONS(4169), - [aux_sym__val_number_decimal_token1] = ACTIONS(1449), - [aux_sym__val_number_decimal_token2] = ACTIONS(1449), - [anon_sym_DOT2] = ACTIONS(1449), - [aux_sym__val_number_decimal_token3] = ACTIONS(1449), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [anon_sym_0b] = ACTIONS(1449), - [anon_sym_0o] = ACTIONS(1449), - [anon_sym_0x] = ACTIONS(1449), - [sym_val_date] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [sym__str_single_quotes] = ACTIONS(1457), - [sym__str_back_ticks] = ACTIONS(1457), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1457), - [anon_sym_err_GT] = ACTIONS(1449), - [anon_sym_out_GT] = ACTIONS(1449), - [anon_sym_e_GT] = ACTIONS(1449), - [anon_sym_o_GT] = ACTIONS(1449), - [anon_sym_err_PLUSout_GT] = ACTIONS(1449), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1449), - [anon_sym_o_PLUSe_GT] = ACTIONS(1449), - [anon_sym_e_PLUSo_GT] = ACTIONS(1449), - [anon_sym_err_GT_GT] = ACTIONS(1457), - [anon_sym_out_GT_GT] = ACTIONS(1457), - [anon_sym_e_GT_GT] = ACTIONS(1457), - [anon_sym_o_GT_GT] = ACTIONS(1457), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1457), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1457), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1457), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1457), - [aux_sym_unquoted_token1] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(4290), + [aux_sym__immediate_decimal_token2] = ACTIONS(4292), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [1302] = { - [sym__expr_parenthesized_immediate] = STATE(2044), - [sym__immediate_decimal] = STATE(2047), - [sym_val_variable] = STATE(2044), [sym_comment] = STATE(1302), - [ts_builtin_sym_end] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1457), - [aux_sym_cmd_identifier_token38] = ACTIONS(1457), - [aux_sym_cmd_identifier_token39] = ACTIONS(1457), - [aux_sym_cmd_identifier_token40] = ACTIONS(1457), - [sym__newline] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_err_GT_PIPE] = ACTIONS(1457), - [anon_sym_out_GT_PIPE] = ACTIONS(1457), - [anon_sym_e_GT_PIPE] = ACTIONS(1457), - [anon_sym_o_GT_PIPE] = ACTIONS(1457), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1457), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1457), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1457), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_DOLLAR] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1449), - [aux_sym_ctrl_match_token1] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(3985), - [anon_sym_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_DOT_DOT_LT] = ACTIONS(1457), - [aux_sym__immediate_decimal_token1] = ACTIONS(4173), - [aux_sym__immediate_decimal_token3] = ACTIONS(4175), - [aux_sym__immediate_decimal_token4] = ACTIONS(4177), - [aux_sym__val_number_decimal_token1] = ACTIONS(1449), - [aux_sym__val_number_decimal_token2] = ACTIONS(1449), - [anon_sym_DOT2] = ACTIONS(1449), - [aux_sym__val_number_decimal_token3] = ACTIONS(1449), - [aux_sym__val_number_token1] = ACTIONS(1457), - [aux_sym__val_number_token2] = ACTIONS(1457), - [aux_sym__val_number_token3] = ACTIONS(1457), - [anon_sym_0b] = ACTIONS(1449), - [anon_sym_0o] = ACTIONS(1449), - [anon_sym_0x] = ACTIONS(1449), - [sym_val_date] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [sym__str_single_quotes] = ACTIONS(1457), - [sym__str_back_ticks] = ACTIONS(1457), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1457), - [anon_sym_err_GT] = ACTIONS(1449), - [anon_sym_out_GT] = ACTIONS(1449), - [anon_sym_e_GT] = ACTIONS(1449), - [anon_sym_o_GT] = ACTIONS(1449), - [anon_sym_err_PLUSout_GT] = ACTIONS(1449), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1449), - [anon_sym_o_PLUSe_GT] = ACTIONS(1449), - [anon_sym_e_PLUSo_GT] = ACTIONS(1449), - [anon_sym_err_GT_GT] = ACTIONS(1457), - [anon_sym_out_GT_GT] = ACTIONS(1457), - [anon_sym_e_GT_GT] = ACTIONS(1457), - [anon_sym_o_GT_GT] = ACTIONS(1457), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1457), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1457), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1457), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1457), - [aux_sym_unquoted_token1] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(986), + [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_PLUS_PLUS_EQ] = ACTIONS(988), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [aux_sym_ctrl_match_token1] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [aux_sym_expr_binary_token1] = ACTIONS(988), + [aux_sym_expr_binary_token2] = ACTIONS(988), + [aux_sym_expr_binary_token3] = ACTIONS(988), + [aux_sym_expr_binary_token4] = ACTIONS(988), + [aux_sym_expr_binary_token5] = ACTIONS(988), + [aux_sym_expr_binary_token6] = ACTIONS(988), + [aux_sym_expr_binary_token7] = ACTIONS(988), + [aux_sym_expr_binary_token8] = ACTIONS(988), + [aux_sym_expr_binary_token9] = ACTIONS(988), + [aux_sym_expr_binary_token10] = ACTIONS(988), + [aux_sym_expr_binary_token11] = ACTIONS(988), + [aux_sym_expr_binary_token12] = ACTIONS(988), + [aux_sym_expr_binary_token13] = ACTIONS(988), + [aux_sym_expr_binary_token14] = ACTIONS(988), + [aux_sym_expr_binary_token15] = ACTIONS(988), + [aux_sym_expr_binary_token16] = ACTIONS(988), + [aux_sym_expr_binary_token17] = ACTIONS(988), + [aux_sym_expr_binary_token18] = ACTIONS(988), + [aux_sym_expr_binary_token19] = ACTIONS(988), + [aux_sym_expr_binary_token20] = ACTIONS(988), + [aux_sym_expr_binary_token21] = ACTIONS(988), + [aux_sym_expr_binary_token22] = ACTIONS(988), + [aux_sym_expr_binary_token23] = ACTIONS(988), + [aux_sym_expr_binary_token24] = ACTIONS(988), + [aux_sym_expr_binary_token25] = ACTIONS(988), + [aux_sym_expr_binary_token26] = ACTIONS(988), + [aux_sym_expr_binary_token27] = ACTIONS(988), + [aux_sym_expr_binary_token28] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [aux_sym_record_entry_token1] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(247), }, [1303] = { - [sym__immediate_decimal] = STATE(6258), [sym_comment] = STATE(1303), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(4179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(2931), - [aux_sym__immediate_decimal_token3] = ACTIONS(2933), - [aux_sym__immediate_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2927), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2927), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token4] = ACTIONS(4077), - [aux_sym_unquoted_token6] = ACTIONS(4181), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(990), + [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_PLUS_PLUS_EQ] = ACTIONS(992), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [aux_sym_ctrl_match_token1] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [aux_sym_expr_binary_token1] = ACTIONS(992), + [aux_sym_expr_binary_token2] = ACTIONS(992), + [aux_sym_expr_binary_token3] = ACTIONS(992), + [aux_sym_expr_binary_token4] = ACTIONS(992), + [aux_sym_expr_binary_token5] = ACTIONS(992), + [aux_sym_expr_binary_token6] = ACTIONS(992), + [aux_sym_expr_binary_token7] = ACTIONS(992), + [aux_sym_expr_binary_token8] = ACTIONS(992), + [aux_sym_expr_binary_token9] = ACTIONS(992), + [aux_sym_expr_binary_token10] = ACTIONS(992), + [aux_sym_expr_binary_token11] = ACTIONS(992), + [aux_sym_expr_binary_token12] = ACTIONS(992), + [aux_sym_expr_binary_token13] = ACTIONS(992), + [aux_sym_expr_binary_token14] = ACTIONS(992), + [aux_sym_expr_binary_token15] = ACTIONS(992), + [aux_sym_expr_binary_token16] = ACTIONS(992), + [aux_sym_expr_binary_token17] = ACTIONS(992), + [aux_sym_expr_binary_token18] = ACTIONS(992), + [aux_sym_expr_binary_token19] = ACTIONS(992), + [aux_sym_expr_binary_token20] = ACTIONS(992), + [aux_sym_expr_binary_token21] = ACTIONS(992), + [aux_sym_expr_binary_token22] = ACTIONS(992), + [aux_sym_expr_binary_token23] = ACTIONS(992), + [aux_sym_expr_binary_token24] = ACTIONS(992), + [aux_sym_expr_binary_token25] = ACTIONS(992), + [aux_sym_expr_binary_token26] = ACTIONS(992), + [aux_sym_expr_binary_token27] = ACTIONS(992), + [aux_sym_expr_binary_token28] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [aux_sym_record_entry_token1] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), }, [1304] = { - [sym__match_pattern_expression] = STATE(3197), - [sym__match_pattern_value] = STATE(3232), - [sym__match_pattern_list] = STATE(3235), - [sym__match_pattern_rest] = STATE(7836), - [sym__match_pattern_record] = STATE(3236), - [sym_expr_parenthesized] = STATE(2991), - [sym_val_range] = STATE(3232), - [sym__val_range] = STATE(7525), - [sym_val_nothing] = STATE(3191), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(2993), - [sym_val_number] = STATE(3191), - [sym__val_number_decimal] = STATE(2714), - [sym__val_number] = STATE(3210), - [sym_val_duration] = STATE(3191), - [sym_val_filesize] = STATE(3191), - [sym_val_binary] = STATE(3191), - [sym_val_string] = STATE(3191), - [sym__str_double_quotes] = STATE(3219), - [sym_val_table] = STATE(3191), - [sym__unquoted_in_list] = STATE(3197), - [sym__unquoted_anonymous_prefix] = STATE(7761), + [sym__expr_parenthesized_immediate] = STATE(2025), + [sym__immediate_decimal] = STATE(2040), + [sym_val_variable] = STATE(2025), [sym_comment] = STATE(1304), - [aux_sym__match_pattern_list_repeat1] = STATE(1382), - [anon_sym_true] = ACTIONS(3846), - [anon_sym_false] = ACTIONS(3846), - [anon_sym_null] = ACTIONS(3848), - [aux_sym_cmd_identifier_token38] = ACTIONS(3850), - [aux_sym_cmd_identifier_token39] = ACTIONS(3850), - [aux_sym_cmd_identifier_token40] = ACTIONS(3850), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_RBRACK] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(3856), - [anon_sym_DOLLAR] = ACTIONS(3858), - [aux_sym_ctrl_match_token1] = ACTIONS(3860), - [anon_sym_DOT_DOT] = ACTIONS(4187), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3864), - [anon_sym_DOT_DOT_LT] = ACTIONS(3864), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3868), - [anon_sym_DOT2] = ACTIONS(3870), - [aux_sym__val_number_decimal_token3] = ACTIONS(3872), - [aux_sym__val_number_token1] = ACTIONS(3874), - [aux_sym__val_number_token2] = ACTIONS(3874), - [aux_sym__val_number_token3] = ACTIONS(3874), - [anon_sym_0b] = ACTIONS(3876), - [anon_sym_0o] = ACTIONS(3878), - [anon_sym_0x] = ACTIONS(3878), - [sym_val_date] = ACTIONS(3880), - [anon_sym_DQUOTE] = ACTIONS(3882), - [sym__str_single_quotes] = ACTIONS(3884), - [sym__str_back_ticks] = ACTIONS(3884), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3886), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [aux_sym_cmd_identifier_token38] = ACTIONS(1553), + [aux_sym_cmd_identifier_token39] = ACTIONS(1553), + [aux_sym_cmd_identifier_token40] = ACTIONS(1553), + [sym__newline] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_err_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_GT_PIPE] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1551), + [aux_sym_ctrl_match_token1] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT] = ACTIONS(1553), + [aux_sym__immediate_decimal_token1] = ACTIONS(4210), + [aux_sym__immediate_decimal_token3] = ACTIONS(4212), + [aux_sym__immediate_decimal_token4] = ACTIONS(4214), + [aux_sym__immediate_decimal_token5] = ACTIONS(4216), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_decimal_token2] = ACTIONS(1551), + [aux_sym__val_number_decimal_token3] = ACTIONS(1551), + [aux_sym__val_number_decimal_token4] = ACTIONS(1551), + [aux_sym__val_number_token1] = ACTIONS(1553), + [aux_sym__val_number_token2] = ACTIONS(1553), + [aux_sym__val_number_token3] = ACTIONS(1553), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1553), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1553), + [sym__str_back_ticks] = ACTIONS(1553), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [anon_sym_err_GT_GT] = ACTIONS(1553), + [anon_sym_out_GT_GT] = ACTIONS(1553), + [anon_sym_e_GT_GT] = ACTIONS(1553), + [anon_sym_o_GT_GT] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), + [aux_sym_unquoted_token1] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(247), }, [1305] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6309), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6976), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5542), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6293), - [sym__unquoted_anonymous_prefix] = STATE(7887), + [sym__expr_parenthesized_immediate] = STATE(7630), [sym_comment] = STATE(1305), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4191), - [aux_sym_cmd_identifier_token38] = ACTIONS(4193), - [aux_sym_cmd_identifier_token39] = ACTIONS(4193), - [aux_sym_cmd_identifier_token40] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4203), - [anon_sym_DOT_DOT_LT] = ACTIONS(4203), - [aux_sym__val_number_decimal_token1] = ACTIONS(4205), - [aux_sym__val_number_decimal_token2] = ACTIONS(4207), - [anon_sym_DOT2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4213), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [aux_sym_cmd_identifier_token38] = ACTIONS(1537), + [aux_sym_cmd_identifier_token39] = ACTIONS(1537), + [aux_sym_cmd_identifier_token40] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_err_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_GT_PIPE] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1525), + [aux_sym_ctrl_match_token1] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_DOT_DOT2] = ACTIONS(4294), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4296), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4296), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), + [aux_sym__val_number_decimal_token2] = ACTIONS(1537), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), + [aux_sym__val_number_token1] = ACTIONS(1537), + [aux_sym__val_number_token2] = ACTIONS(1537), + [aux_sym__val_number_token3] = ACTIONS(1537), + [anon_sym_0b] = ACTIONS(1525), + [sym_filesize_unit] = ACTIONS(4298), + [sym_duration_unit] = ACTIONS(4300), + [anon_sym_0o] = ACTIONS(1525), + [anon_sym_0x] = ACTIONS(1525), + [sym_val_date] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1537), + [sym__str_single_quotes] = ACTIONS(1537), + [sym__str_back_ticks] = ACTIONS(1537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [aux_sym_unquoted_token1] = ACTIONS(1525), + [aux_sym_unquoted_token2] = ACTIONS(4302), + [anon_sym_POUND] = ACTIONS(247), }, [1306] = { - [sym__val_range] = STATE(7600), - [sym__value] = STATE(2785), - [sym_val_nothing] = STATE(2893), - [sym_val_bool] = STATE(2818), - [sym_val_variable] = STATE(2893), - [sym_val_number] = STATE(2893), - [sym__val_number_decimal] = STATE(2366), - [sym__val_number] = STATE(2889), - [sym_val_duration] = STATE(2893), - [sym_val_filesize] = STATE(2893), - [sym_val_binary] = STATE(2893), - [sym_val_string] = STATE(2893), - [sym__str_double_quotes] = STATE(2890), - [sym_val_interpolated] = STATE(2893), - [sym__inter_single_quotes] = STATE(2935), - [sym__inter_double_quotes] = STATE(2939), - [sym_val_list] = STATE(2893), - [sym_val_record] = STATE(2893), - [sym_val_table] = STATE(2893), - [sym_val_closure] = STATE(2893), - [sym_unquoted] = STATE(2789), - [sym__unquoted_anonymous_prefix] = STATE(7810), + [sym__match_pattern_expression] = STATE(3315), + [sym__match_pattern_value] = STATE(3273), + [sym__match_pattern_list] = STATE(3277), + [sym__match_pattern_rest] = STATE(8041), + [sym__match_pattern_record] = STATE(3287), + [sym_expr_parenthesized] = STATE(3033), + [sym_val_range] = STATE(3273), + [sym__val_range] = STATE(7882), + [sym_val_nothing] = STATE(3288), + [sym_val_bool] = STATE(3213), + [sym_val_variable] = STATE(3034), + [sym_val_number] = STATE(3288), + [sym__val_number_decimal] = STATE(2800), + [sym__val_number] = STATE(3291), + [sym_val_duration] = STATE(3288), + [sym_val_filesize] = STATE(3288), + [sym_val_binary] = STATE(3288), + [sym_val_string] = STATE(3288), + [sym__str_double_quotes] = STATE(3297), + [sym_val_table] = STATE(3288), + [sym__unquoted_in_list] = STATE(3315), + [sym__unquoted_anonymous_prefix] = STATE(7802), [sym_comment] = STATE(1306), - [anon_sym_true] = ACTIONS(4113), - [anon_sym_false] = ACTIONS(4113), - [anon_sym_null] = ACTIONS(4115), - [aux_sym_cmd_identifier_token38] = ACTIONS(4117), - [aux_sym_cmd_identifier_token39] = ACTIONS(4117), - [aux_sym_cmd_identifier_token40] = ACTIONS(4117), - [anon_sym_LBRACK] = ACTIONS(4119), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_DOLLAR] = ACTIONS(4123), - [aux_sym_ctrl_match_token1] = ACTIONS(4125), - [anon_sym_DOT_DOT] = ACTIONS(4127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4129), - [anon_sym_DOT_DOT_LT] = ACTIONS(4129), - [aux_sym__val_number_decimal_token1] = ACTIONS(4131), - [aux_sym__val_number_decimal_token2] = ACTIONS(4133), - [anon_sym_DOT2] = ACTIONS(4135), - [aux_sym__val_number_decimal_token3] = ACTIONS(4137), - [aux_sym__val_number_token1] = ACTIONS(4139), - [aux_sym__val_number_token2] = ACTIONS(4139), - [aux_sym__val_number_token3] = ACTIONS(4139), - [anon_sym_0b] = ACTIONS(4141), - [anon_sym_0o] = ACTIONS(4143), - [anon_sym_0x] = ACTIONS(4143), - [sym_val_date] = ACTIONS(4145), - [anon_sym_DQUOTE] = ACTIONS(4147), - [sym__str_single_quotes] = ACTIONS(4149), - [sym__str_back_ticks] = ACTIONS(4149), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4151), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4153), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4155), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__match_pattern_list_repeat1] = STATE(1395), + [anon_sym_true] = ACTIONS(3956), + [anon_sym_false] = ACTIONS(3956), + [anon_sym_null] = ACTIONS(3958), + [aux_sym_cmd_identifier_token38] = ACTIONS(3960), + [aux_sym_cmd_identifier_token39] = ACTIONS(3960), + [aux_sym_cmd_identifier_token40] = ACTIONS(3960), + [anon_sym_LBRACK] = ACTIONS(4304), + [anon_sym_RBRACK] = ACTIONS(4306), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_DOLLAR] = ACTIONS(3968), + [aux_sym_ctrl_match_token1] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(4308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3974), + [anon_sym_DOT_DOT_LT] = ACTIONS(3974), + [aux_sym__val_number_decimal_token1] = ACTIONS(3976), + [aux_sym__val_number_decimal_token2] = ACTIONS(3978), + [aux_sym__val_number_decimal_token3] = ACTIONS(3980), + [aux_sym__val_number_decimal_token4] = ACTIONS(3982), + [aux_sym__val_number_token1] = ACTIONS(3984), + [aux_sym__val_number_token2] = ACTIONS(3984), + [aux_sym__val_number_token3] = ACTIONS(3984), + [anon_sym_0b] = ACTIONS(3986), + [anon_sym_0o] = ACTIONS(3988), + [anon_sym_0x] = ACTIONS(3988), + [sym_val_date] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3992), + [sym__str_single_quotes] = ACTIONS(3994), + [sym__str_back_ticks] = ACTIONS(3994), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3996), + [anon_sym_POUND] = ACTIONS(247), }, [1307] = { - [sym_cell_path] = STATE(1609), - [sym_path] = STATE(1477), + [sym__expr_parenthesized_immediate] = STATE(2048), + [sym__immediate_decimal] = STATE(2062), + [sym_val_variable] = STATE(2048), [sym_comment] = STATE(1307), - [aux_sym_cell_path_repeat1] = STATE(1398), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_null] = ACTIONS(1549), - [aux_sym_cmd_identifier_token38] = ACTIONS(1549), - [aux_sym_cmd_identifier_token39] = ACTIONS(1549), - [aux_sym_cmd_identifier_token40] = ACTIONS(1549), - [sym__newline] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_err_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_GT_PIPE] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_RPAREN] = ACTIONS(1549), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1545), - [aux_sym_ctrl_match_token1] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT] = ACTIONS(1545), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [aux_sym__val_number_decimal_token1] = ACTIONS(1545), - [aux_sym__val_number_decimal_token2] = ACTIONS(1549), - [anon_sym_DOT2] = ACTIONS(1545), - [aux_sym__val_number_decimal_token3] = ACTIONS(1549), - [aux_sym__val_number_token1] = ACTIONS(1549), - [aux_sym__val_number_token2] = ACTIONS(1549), - [aux_sym__val_number_token3] = ACTIONS(1549), - [anon_sym_0b] = ACTIONS(1545), - [anon_sym_0o] = ACTIONS(1545), - [anon_sym_0x] = ACTIONS(1545), - [sym_val_date] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [sym__str_single_quotes] = ACTIONS(1549), - [sym__str_back_ticks] = ACTIONS(1549), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1549), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1545), - [anon_sym_out_GT] = ACTIONS(1545), - [anon_sym_e_GT] = ACTIONS(1545), - [anon_sym_o_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT] = ACTIONS(1545), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [aux_sym_unquoted_token1] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [aux_sym_cmd_identifier_token38] = ACTIONS(1557), + [aux_sym_cmd_identifier_token39] = ACTIONS(1557), + [aux_sym_cmd_identifier_token40] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_DOLLAR] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1555), + [aux_sym_ctrl_match_token1] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4210), + [aux_sym__immediate_decimal_token3] = ACTIONS(4212), + [aux_sym__immediate_decimal_token4] = ACTIONS(4214), + [aux_sym__immediate_decimal_token5] = ACTIONS(4216), + [aux_sym__val_number_decimal_token1] = ACTIONS(1555), + [aux_sym__val_number_decimal_token2] = ACTIONS(1555), + [aux_sym__val_number_decimal_token3] = ACTIONS(1555), + [aux_sym__val_number_decimal_token4] = ACTIONS(1555), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [anon_sym_0b] = ACTIONS(1555), + [anon_sym_0o] = ACTIONS(1555), + [anon_sym_0x] = ACTIONS(1555), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [anon_sym_err_GT] = ACTIONS(1555), + [anon_sym_out_GT] = ACTIONS(1555), + [anon_sym_e_GT] = ACTIONS(1555), + [anon_sym_o_GT] = ACTIONS(1555), + [anon_sym_err_PLUSout_GT] = ACTIONS(1555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), + [anon_sym_o_PLUSe_GT] = ACTIONS(1555), + [anon_sym_e_PLUSo_GT] = ACTIONS(1555), + [anon_sym_err_GT_GT] = ACTIONS(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [aux_sym_unquoted_token1] = ACTIONS(1555), + [anon_sym_POUND] = ACTIONS(247), }, [1308] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6225), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6077), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5311), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6229), - [sym__unquoted_anonymous_prefix] = STATE(7887), [sym_comment] = STATE(1308), - [anon_sym_true] = ACTIONS(4045), - [anon_sym_false] = ACTIONS(4045), - [anon_sym_null] = ACTIONS(4047), - [aux_sym_cmd_identifier_token38] = ACTIONS(4049), - [aux_sym_cmd_identifier_token39] = ACTIONS(4049), - [aux_sym_cmd_identifier_token40] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4055), - [aux_sym_ctrl_match_token1] = ACTIONS(4057), - [anon_sym_DOT_DOT] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4061), - [anon_sym_DOT_DOT_LT] = ACTIONS(4061), - [aux_sym__val_number_decimal_token1] = ACTIONS(4063), - [aux_sym__val_number_decimal_token2] = ACTIONS(4065), - [anon_sym_DOT2] = ACTIONS(4067), - [aux_sym__val_number_decimal_token3] = ACTIONS(4069), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4071), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4154), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1309] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6221), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6976), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5542), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6361), - [sym__unquoted_anonymous_prefix] = STATE(7887), + [sym__val_range] = STATE(8049), + [sym__value] = STATE(6238), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(5842), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(2158), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(6265), + [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(1309), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4191), - [aux_sym_cmd_identifier_token38] = ACTIONS(4193), - [aux_sym_cmd_identifier_token39] = ACTIONS(4193), - [aux_sym_cmd_identifier_token40] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4203), - [anon_sym_DOT_DOT_LT] = ACTIONS(4203), - [aux_sym__val_number_decimal_token1] = ACTIONS(4205), - [aux_sym__val_number_decimal_token2] = ACTIONS(4207), - [anon_sym_DOT2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4213), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3217), + [aux_sym_cmd_identifier_token39] = ACTIONS(3217), + [aux_sym_cmd_identifier_token40] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_DOLLAR] = ACTIONS(4252), + [aux_sym_ctrl_match_token1] = ACTIONS(4254), + [anon_sym_DOT_DOT] = ACTIONS(4256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4258), + [anon_sym_DOT_DOT_LT] = ACTIONS(4258), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(4260), + [sym__str_single_quotes] = ACTIONS(4262), + [sym__str_back_ticks] = ACTIONS(4262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(247), }, [1310] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6347), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6077), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5311), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6348), - [sym__unquoted_anonymous_prefix] = STATE(7887), [sym_comment] = STATE(1310), - [anon_sym_true] = ACTIONS(4045), - [anon_sym_false] = ACTIONS(4045), - [anon_sym_null] = ACTIONS(4047), - [aux_sym_cmd_identifier_token38] = ACTIONS(4049), - [aux_sym_cmd_identifier_token39] = ACTIONS(4049), - [aux_sym_cmd_identifier_token40] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4055), - [aux_sym_ctrl_match_token1] = ACTIONS(4057), - [anon_sym_DOT_DOT] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4061), - [anon_sym_DOT_DOT_LT] = ACTIONS(4061), - [aux_sym__val_number_decimal_token1] = ACTIONS(4063), - [aux_sym__val_number_decimal_token2] = ACTIONS(4065), - [anon_sym_DOT2] = ACTIONS(4067), - [aux_sym__val_number_decimal_token3] = ACTIONS(4069), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4071), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1519), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4310), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1311] = { - [sym__match_pattern_expression] = STATE(3197), - [sym__match_pattern_value] = STATE(3232), - [sym__match_pattern_list] = STATE(3235), - [sym__match_pattern_rest] = STATE(7889), - [sym__match_pattern_record] = STATE(3236), - [sym_expr_parenthesized] = STATE(2991), - [sym_val_range] = STATE(3232), - [sym__val_range] = STATE(7525), - [sym_val_nothing] = STATE(3191), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(2993), - [sym_val_number] = STATE(3191), - [sym__val_number_decimal] = STATE(2714), - [sym__val_number] = STATE(3210), - [sym_val_duration] = STATE(3191), - [sym_val_filesize] = STATE(3191), - [sym_val_binary] = STATE(3191), - [sym_val_string] = STATE(3191), - [sym__str_double_quotes] = STATE(3219), - [sym_val_table] = STATE(3191), - [sym__unquoted_in_list] = STATE(3197), - [sym__unquoted_anonymous_prefix] = STATE(7761), + [sym__val_range] = STATE(7981), + [sym__value] = STATE(2856), + [sym_val_nothing] = STATE(2982), + [sym_val_bool] = STATE(2863), + [sym_val_variable] = STATE(2982), + [sym_val_number] = STATE(2982), + [sym__val_number_decimal] = STATE(2598), + [sym__val_number] = STATE(2929), + [sym_val_duration] = STATE(2982), + [sym_val_filesize] = STATE(2982), + [sym_val_binary] = STATE(2982), + [sym_val_string] = STATE(2982), + [sym__str_double_quotes] = STATE(2993), + [sym_val_interpolated] = STATE(2982), + [sym__inter_single_quotes] = STATE(2995), + [sym__inter_double_quotes] = STATE(2992), + [sym_val_list] = STATE(2982), + [sym_val_record] = STATE(2982), + [sym_val_table] = STATE(2982), + [sym_val_closure] = STATE(2982), + [sym_unquoted] = STATE(2857), + [sym__unquoted_anonymous_prefix] = STATE(8059), [sym_comment] = STATE(1311), - [aux_sym__match_pattern_list_repeat1] = STATE(1382), - [anon_sym_true] = ACTIONS(3846), - [anon_sym_false] = ACTIONS(3846), - [anon_sym_null] = ACTIONS(3848), - [aux_sym_cmd_identifier_token38] = ACTIONS(3850), - [aux_sym_cmd_identifier_token39] = ACTIONS(3850), - [aux_sym_cmd_identifier_token40] = ACTIONS(3850), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_RBRACK] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(3856), - [anon_sym_DOLLAR] = ACTIONS(3858), - [aux_sym_ctrl_match_token1] = ACTIONS(3860), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3864), - [anon_sym_DOT_DOT_LT] = ACTIONS(3864), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3868), - [anon_sym_DOT2] = ACTIONS(3870), - [aux_sym__val_number_decimal_token3] = ACTIONS(3872), - [aux_sym__val_number_token1] = ACTIONS(3874), - [aux_sym__val_number_token2] = ACTIONS(3874), - [aux_sym__val_number_token3] = ACTIONS(3874), - [anon_sym_0b] = ACTIONS(3876), - [anon_sym_0o] = ACTIONS(3878), - [anon_sym_0x] = ACTIONS(3878), - [sym_val_date] = ACTIONS(3880), - [anon_sym_DQUOTE] = ACTIONS(3882), - [sym__str_single_quotes] = ACTIONS(3884), - [sym__str_back_ticks] = ACTIONS(3884), - [anon_sym_err_GT] = ACTIONS(2801), - [anon_sym_out_GT] = ACTIONS(2801), - [anon_sym_e_GT] = ACTIONS(2801), - [anon_sym_o_GT] = ACTIONS(2801), - [anon_sym_err_PLUSout_GT] = ACTIONS(2801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2801), - [anon_sym_o_PLUSe_GT] = ACTIONS(2801), - [anon_sym_e_PLUSo_GT] = ACTIONS(2801), - [anon_sym_err_GT_GT] = ACTIONS(2803), - [anon_sym_out_GT_GT] = ACTIONS(2803), - [anon_sym_e_GT_GT] = ACTIONS(2803), - [anon_sym_o_GT_GT] = ACTIONS(2803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2803), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3886), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4166), + [anon_sym_false] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4168), + [aux_sym_cmd_identifier_token38] = ACTIONS(4170), + [aux_sym_cmd_identifier_token39] = ACTIONS(4170), + [aux_sym_cmd_identifier_token40] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4176), + [aux_sym_ctrl_match_token1] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4182), + [anon_sym_DOT_DOT_LT] = ACTIONS(4182), + [aux_sym__val_number_decimal_token1] = ACTIONS(4184), + [aux_sym__val_number_decimal_token2] = ACTIONS(4186), + [aux_sym__val_number_decimal_token3] = ACTIONS(4188), + [aux_sym__val_number_decimal_token4] = ACTIONS(4190), + [aux_sym__val_number_token1] = ACTIONS(4192), + [aux_sym__val_number_token2] = ACTIONS(4192), + [aux_sym__val_number_token3] = ACTIONS(4192), + [anon_sym_0b] = ACTIONS(4194), + [anon_sym_0o] = ACTIONS(4196), + [anon_sym_0x] = ACTIONS(4196), + [sym_val_date] = ACTIONS(4198), + [anon_sym_DQUOTE] = ACTIONS(4200), + [sym__str_single_quotes] = ACTIONS(4202), + [sym__str_back_ticks] = ACTIONS(4202), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4206), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4208), + [anon_sym_POUND] = ACTIONS(247), }, [1312] = { + [sym__expr_parenthesized_immediate] = STATE(2065), + [sym__immediate_decimal] = STATE(2074), + [sym_val_variable] = STATE(2065), [sym_comment] = STATE(1312), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_PLUS_EQ] = ACTIONS(918), - [anon_sym_DASH_EQ] = ACTIONS(918), - [anon_sym_STAR_EQ] = ACTIONS(918), - [anon_sym_SLASH_EQ] = ACTIONS(918), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(918), - [sym__newline] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_err_GT_PIPE] = ACTIONS(918), - [anon_sym_out_GT_PIPE] = ACTIONS(918), - [anon_sym_e_GT_PIPE] = ACTIONS(918), - [anon_sym_o_GT_PIPE] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_in] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_and] = ACTIONS(918), - [anon_sym_xor] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_not_DASHin] = ACTIONS(918), - [anon_sym_starts_DASHwith] = ACTIONS(918), - [anon_sym_ends_DASHwith] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT2] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_TILDE] = ACTIONS(918), - [anon_sym_BANG_TILDE] = ACTIONS(918), - [anon_sym_STAR_STAR] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_SLASH] = ACTIONS(916), - [anon_sym_mod] = ACTIONS(918), - [anon_sym_SLASH_SLASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(918), - [anon_sym_bit_DASHshr] = ACTIONS(918), - [anon_sym_bit_DASHand] = ACTIONS(918), - [anon_sym_bit_DASHxor] = ACTIONS(918), - [anon_sym_bit_DASHor] = ACTIONS(918), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [aux_sym_record_entry_token1] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [aux_sym_cmd_identifier_token38] = ACTIONS(1509), + [aux_sym_cmd_identifier_token39] = ACTIONS(1509), + [aux_sym_cmd_identifier_token40] = ACTIONS(1509), + [sym__newline] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_err_GT_PIPE] = ACTIONS(1509), + [anon_sym_out_GT_PIPE] = ACTIONS(1509), + [anon_sym_e_GT_PIPE] = ACTIONS(1509), + [anon_sym_o_GT_PIPE] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1501), + [aux_sym_ctrl_match_token1] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_DOT_DOT_LT] = ACTIONS(1509), + [aux_sym__immediate_decimal_token1] = ACTIONS(4210), + [aux_sym__immediate_decimal_token3] = ACTIONS(4212), + [aux_sym__immediate_decimal_token4] = ACTIONS(4214), + [aux_sym__immediate_decimal_token5] = ACTIONS(4216), + [aux_sym__val_number_decimal_token1] = ACTIONS(1501), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [anon_sym_0b] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1501), + [anon_sym_0x] = ACTIONS(1501), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1501), + [anon_sym_out_GT] = ACTIONS(1501), + [anon_sym_e_GT] = ACTIONS(1501), + [anon_sym_o_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT] = ACTIONS(1501), + [anon_sym_err_GT_GT] = ACTIONS(1509), + [anon_sym_out_GT_GT] = ACTIONS(1509), + [anon_sym_e_GT_GT] = ACTIONS(1509), + [anon_sym_o_GT_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1509), + [aux_sym_unquoted_token1] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(247), }, [1313] = { + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6208), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6000), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5498), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6209), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1313), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_PLUS_EQ] = ACTIONS(922), - [anon_sym_DASH_EQ] = ACTIONS(922), - [anon_sym_STAR_EQ] = ACTIONS(922), - [anon_sym_SLASH_EQ] = ACTIONS(922), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(922), - [sym__newline] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_err_GT_PIPE] = ACTIONS(922), - [anon_sym_out_GT_PIPE] = ACTIONS(922), - [anon_sym_e_GT_PIPE] = ACTIONS(922), - [anon_sym_o_GT_PIPE] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_in] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_and] = ACTIONS(922), - [anon_sym_xor] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_not_DASHin] = ACTIONS(922), - [anon_sym_starts_DASHwith] = ACTIONS(922), - [anon_sym_ends_DASHwith] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_BANG_TILDE] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(922), - [anon_sym_SLASH_SLASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(922), - [anon_sym_bit_DASHshr] = ACTIONS(922), - [anon_sym_bit_DASHand] = ACTIONS(922), - [anon_sym_bit_DASHxor] = ACTIONS(922), - [anon_sym_bit_DASHor] = ACTIONS(922), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [aux_sym_record_entry_token1] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4220), + [aux_sym_cmd_identifier_token38] = ACTIONS(4222), + [aux_sym_cmd_identifier_token39] = ACTIONS(4222), + [aux_sym_cmd_identifier_token40] = ACTIONS(4222), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4236), + [aux_sym__val_number_decimal_token2] = ACTIONS(4238), + [aux_sym__val_number_decimal_token3] = ACTIONS(4240), + [aux_sym__val_number_decimal_token4] = ACTIONS(4242), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4244), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1314] = { [sym_comment] = STATE(1314), - [anon_sym_EQ] = ACTIONS(912), - [anon_sym_PLUS_EQ] = ACTIONS(914), - [anon_sym_DASH_EQ] = ACTIONS(914), - [anon_sym_STAR_EQ] = ACTIONS(914), - [anon_sym_SLASH_EQ] = ACTIONS(914), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(914), - [sym__newline] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_in] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(912), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [aux_sym_record_entry_token1] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4142), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1315] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6347), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6976), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5542), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6348), - [sym__unquoted_anonymous_prefix] = STATE(7887), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6238), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6000), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5531), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6265), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1315), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4191), - [aux_sym_cmd_identifier_token38] = ACTIONS(4193), - [aux_sym_cmd_identifier_token39] = ACTIONS(4193), - [aux_sym_cmd_identifier_token40] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4203), - [anon_sym_DOT_DOT_LT] = ACTIONS(4203), - [aux_sym__val_number_decimal_token1] = ACTIONS(4205), - [aux_sym__val_number_decimal_token2] = ACTIONS(4207), - [anon_sym_DOT2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4213), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4220), + [aux_sym_cmd_identifier_token38] = ACTIONS(4312), + [aux_sym_cmd_identifier_token39] = ACTIONS(4312), + [aux_sym_cmd_identifier_token40] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [aux_sym__val_number_decimal_token3] = ACTIONS(4318), + [aux_sym__val_number_decimal_token4] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4244), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1316] = { - [sym__expr_parenthesized_immediate] = STATE(1941), - [sym__immediate_decimal] = STATE(1942), - [sym_val_variable] = STATE(1941), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6291), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6000), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5498), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6292), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1316), - [ts_builtin_sym_end] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token38] = ACTIONS(1484), - [aux_sym_cmd_identifier_token39] = ACTIONS(1484), - [aux_sym_cmd_identifier_token40] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1482), - [aux_sym_ctrl_match_token1] = ACTIONS(1484), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(3985), - [anon_sym_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_LT] = ACTIONS(1484), - [aux_sym__immediate_decimal_token1] = ACTIONS(4173), - [aux_sym__immediate_decimal_token3] = ACTIONS(4175), - [aux_sym__immediate_decimal_token4] = ACTIONS(4177), - [aux_sym__val_number_decimal_token1] = ACTIONS(1482), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [anon_sym_DOT2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(1484), - [aux_sym__val_number_token2] = ACTIONS(1484), - [aux_sym__val_number_token3] = ACTIONS(1484), - [anon_sym_0b] = ACTIONS(1482), - [anon_sym_0o] = ACTIONS(1482), - [anon_sym_0x] = ACTIONS(1482), - [sym_val_date] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym__str_single_quotes] = ACTIONS(1484), - [sym__str_back_ticks] = ACTIONS(1484), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1484), - [anon_sym_err_GT] = ACTIONS(1482), - [anon_sym_out_GT] = ACTIONS(1482), - [anon_sym_e_GT] = ACTIONS(1482), - [anon_sym_o_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT] = ACTIONS(1482), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), - [aux_sym_unquoted_token1] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4220), + [aux_sym_cmd_identifier_token38] = ACTIONS(4222), + [aux_sym_cmd_identifier_token39] = ACTIONS(4222), + [aux_sym_cmd_identifier_token40] = ACTIONS(4222), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4236), + [aux_sym__val_number_decimal_token2] = ACTIONS(4238), + [aux_sym__val_number_decimal_token3] = ACTIONS(4240), + [aux_sym__val_number_decimal_token4] = ACTIONS(4242), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4244), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1317] = { - [sym__expr_parenthesized_immediate] = STATE(1943), - [sym__immediate_decimal] = STATE(1944), - [sym_val_variable] = STATE(1943), + [sym__match_pattern_expression] = STATE(3315), + [sym__match_pattern_value] = STATE(3273), + [sym__match_pattern_list] = STATE(3277), + [sym__match_pattern_rest] = STATE(8014), + [sym__match_pattern_record] = STATE(3287), + [sym_expr_parenthesized] = STATE(3033), + [sym_val_range] = STATE(3273), + [sym__val_range] = STATE(7882), + [sym_val_nothing] = STATE(3288), + [sym_val_bool] = STATE(3213), + [sym_val_variable] = STATE(3034), + [sym_val_number] = STATE(3288), + [sym__val_number_decimal] = STATE(2800), + [sym__val_number] = STATE(3291), + [sym_val_duration] = STATE(3288), + [sym_val_filesize] = STATE(3288), + [sym_val_binary] = STATE(3288), + [sym_val_string] = STATE(3288), + [sym__str_double_quotes] = STATE(3297), + [sym_val_table] = STATE(3288), + [sym__unquoted_in_list] = STATE(3315), + [sym__unquoted_anonymous_prefix] = STATE(7802), [sym_comment] = STATE(1317), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1480), - [aux_sym_cmd_identifier_token38] = ACTIONS(1480), - [aux_sym_cmd_identifier_token39] = ACTIONS(1480), - [aux_sym_cmd_identifier_token40] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1478), - [aux_sym_ctrl_match_token1] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(3985), - [anon_sym_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT] = ACTIONS(1480), - [aux_sym__immediate_decimal_token1] = ACTIONS(4173), - [aux_sym__immediate_decimal_token3] = ACTIONS(4175), - [aux_sym__immediate_decimal_token4] = ACTIONS(4177), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1480), - [aux_sym__val_number_token2] = ACTIONS(1480), - [aux_sym__val_number_token3] = ACTIONS(1480), - [anon_sym_0b] = ACTIONS(1478), - [anon_sym_0o] = ACTIONS(1478), - [anon_sym_0x] = ACTIONS(1478), - [sym_val_date] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [sym__str_single_quotes] = ACTIONS(1480), - [sym__str_back_ticks] = ACTIONS(1480), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1480), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1480), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [aux_sym_unquoted_token1] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__match_pattern_list_repeat1] = STATE(1395), + [anon_sym_true] = ACTIONS(3956), + [anon_sym_false] = ACTIONS(3956), + [anon_sym_null] = ACTIONS(3958), + [aux_sym_cmd_identifier_token38] = ACTIONS(3960), + [aux_sym_cmd_identifier_token39] = ACTIONS(3960), + [aux_sym_cmd_identifier_token40] = ACTIONS(3960), + [anon_sym_LBRACK] = ACTIONS(4304), + [anon_sym_RBRACK] = ACTIONS(4322), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_DOLLAR] = ACTIONS(3968), + [aux_sym_ctrl_match_token1] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(4324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3974), + [anon_sym_DOT_DOT_LT] = ACTIONS(3974), + [aux_sym__val_number_decimal_token1] = ACTIONS(3976), + [aux_sym__val_number_decimal_token2] = ACTIONS(3978), + [aux_sym__val_number_decimal_token3] = ACTIONS(3980), + [aux_sym__val_number_decimal_token4] = ACTIONS(3982), + [aux_sym__val_number_token1] = ACTIONS(3984), + [aux_sym__val_number_token2] = ACTIONS(3984), + [aux_sym__val_number_token3] = ACTIONS(3984), + [anon_sym_0b] = ACTIONS(3986), + [anon_sym_0o] = ACTIONS(3988), + [anon_sym_0x] = ACTIONS(3988), + [sym_val_date] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3992), + [sym__str_single_quotes] = ACTIONS(3994), + [sym__str_back_ticks] = ACTIONS(3994), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3996), + [anon_sym_POUND] = ACTIONS(247), }, [1318] = { - [sym__expr_parenthesized_immediate] = STATE(1945), - [sym__immediate_decimal] = STATE(1946), - [sym_val_variable] = STATE(1945), [sym_comment] = STATE(1318), - [ts_builtin_sym_end] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [anon_sym_null] = ACTIONS(1488), - [aux_sym_cmd_identifier_token38] = ACTIONS(1488), - [aux_sym_cmd_identifier_token39] = ACTIONS(1488), - [aux_sym_cmd_identifier_token40] = ACTIONS(1488), - [sym__newline] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_err_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_GT_PIPE] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(3983), - [anon_sym_DASH_DASH] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1486), - [aux_sym_ctrl_match_token1] = ACTIONS(1488), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(3985), - [anon_sym_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_DOT_DOT_LT] = ACTIONS(1488), - [aux_sym__immediate_decimal_token1] = ACTIONS(4173), - [aux_sym__immediate_decimal_token3] = ACTIONS(4175), - [aux_sym__immediate_decimal_token4] = ACTIONS(4177), - [aux_sym__val_number_decimal_token1] = ACTIONS(1486), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [anon_sym_DOT2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1488), - [aux_sym__val_number_token2] = ACTIONS(1488), - [aux_sym__val_number_token3] = ACTIONS(1488), - [anon_sym_0b] = ACTIONS(1486), - [anon_sym_0o] = ACTIONS(1486), - [anon_sym_0x] = ACTIONS(1486), - [sym_val_date] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym__str_single_quotes] = ACTIONS(1488), - [sym__str_back_ticks] = ACTIONS(1488), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1488), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1488), - [anon_sym_err_GT] = ACTIONS(1486), - [anon_sym_out_GT] = ACTIONS(1486), - [anon_sym_e_GT] = ACTIONS(1486), - [anon_sym_o_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT] = ACTIONS(1486), - [anon_sym_err_GT_GT] = ACTIONS(1488), - [anon_sym_out_GT_GT] = ACTIONS(1488), - [anon_sym_e_GT_GT] = ACTIONS(1488), - [anon_sym_o_GT_GT] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1488), - [aux_sym_unquoted_token1] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1519), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4326), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1319] = { [sym_comment] = STATE(1319), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4225), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [aux_sym_ctrl_match_token1] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(968), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), }, [1320] = { + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6272), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6000), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5531), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6274), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1320), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(4016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4220), + [aux_sym_cmd_identifier_token38] = ACTIONS(4312), + [aux_sym_cmd_identifier_token39] = ACTIONS(4312), + [aux_sym_cmd_identifier_token40] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [aux_sym__val_number_decimal_token3] = ACTIONS(4318), + [aux_sym__val_number_decimal_token4] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4244), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1321] = { [sym_comment] = STATE(1321), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(4227), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [aux_sym_unquoted_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [aux_sym_ctrl_match_token1] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(978), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), }, [1322] = { - [sym__val_range] = STATE(7523), - [sym__value] = STATE(2820), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(7661), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(5752), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(2137), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2842), - [sym__unquoted_anonymous_prefix] = STATE(7978), [sym_comment] = STATE(1322), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_null] = ACTIONS(4087), - [aux_sym_cmd_identifier_token38] = ACTIONS(4089), - [aux_sym_cmd_identifier_token39] = ACTIONS(4089), - [aux_sym_cmd_identifier_token40] = ACTIONS(4089), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(4095), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4097), - [anon_sym_DOT_DOT_LT] = ACTIONS(4097), - [aux_sym__val_number_decimal_token1] = ACTIONS(4099), - [aux_sym__val_number_decimal_token2] = ACTIONS(4101), - [anon_sym_DOT2] = ACTIONS(4103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4105), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), + [sym__newline] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [aux_sym_ctrl_match_token1] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(964), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), }, [1323] = { - [sym_cell_path] = STATE(1536), - [sym_path] = STATE(1477), + [sym__val_range] = STATE(8049), + [sym__value] = STATE(2856), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(5842), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(2158), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(2857), + [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(1323), - [aux_sym_cell_path_repeat1] = STATE(1398), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_null] = ACTIONS(885), - [aux_sym_cmd_identifier_token38] = ACTIONS(885), - [aux_sym_cmd_identifier_token39] = ACTIONS(885), - [aux_sym_cmd_identifier_token40] = ACTIONS(885), - [sym__newline] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_DASH] = ACTIONS(883), - [aux_sym_ctrl_match_token1] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(883), - [anon_sym_DOT_DOT_LT] = ACTIONS(883), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(885), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(885), - [aux_sym__val_number_token1] = ACTIONS(885), - [aux_sym__val_number_token2] = ACTIONS(885), - [aux_sym__val_number_token3] = ACTIONS(885), - [anon_sym_0b] = ACTIONS(883), - [anon_sym_0o] = ACTIONS(883), - [anon_sym_0x] = ACTIONS(883), - [sym_val_date] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(885), - [sym__str_single_quotes] = ACTIONS(885), - [sym__str_back_ticks] = ACTIONS(885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [aux_sym_unquoted_token1] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3217), + [aux_sym_cmd_identifier_token39] = ACTIONS(3217), + [aux_sym_cmd_identifier_token40] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_DOLLAR] = ACTIONS(4252), + [aux_sym_ctrl_match_token1] = ACTIONS(4254), + [anon_sym_DOT_DOT] = ACTIONS(4256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4258), + [anon_sym_DOT_DOT_LT] = ACTIONS(4258), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(4260), + [sym__str_single_quotes] = ACTIONS(4262), + [sym__str_back_ticks] = ACTIONS(4262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(247), }, [1324] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6225), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6077), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5325), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6229), - [sym__unquoted_anonymous_prefix] = STATE(7887), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6272), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(7285), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5793), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6274), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1324), - [anon_sym_true] = ACTIONS(4045), - [anon_sym_false] = ACTIONS(4045), - [anon_sym_null] = ACTIONS(4047), - [aux_sym_cmd_identifier_token38] = ACTIONS(4229), - [aux_sym_cmd_identifier_token39] = ACTIONS(4229), - [aux_sym_cmd_identifier_token40] = ACTIONS(4229), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(4235), - [aux_sym__val_number_decimal_token2] = ACTIONS(4237), - [anon_sym_DOT2] = ACTIONS(4239), - [aux_sym__val_number_decimal_token3] = ACTIONS(4241), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4071), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4264), + [anon_sym_false] = ACTIONS(4264), + [anon_sym_null] = ACTIONS(4266), + [aux_sym_cmd_identifier_token38] = ACTIONS(4268), + [aux_sym_cmd_identifier_token39] = ACTIONS(4268), + [aux_sym_cmd_identifier_token40] = ACTIONS(4268), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4276), + [aux_sym__val_number_decimal_token2] = ACTIONS(4278), + [aux_sym__val_number_decimal_token3] = ACTIONS(4280), + [aux_sym__val_number_decimal_token4] = ACTIONS(4282), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1325] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6221), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6077), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5311), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(3639), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6361), - [sym__unquoted_anonymous_prefix] = STATE(7887), + [sym_path] = STATE(1426), [sym_comment] = STATE(1325), - [anon_sym_true] = ACTIONS(4045), - [anon_sym_false] = ACTIONS(4045), - [anon_sym_null] = ACTIONS(4047), - [aux_sym_cmd_identifier_token38] = ACTIONS(4049), - [aux_sym_cmd_identifier_token39] = ACTIONS(4049), - [aux_sym_cmd_identifier_token40] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4055), - [aux_sym_ctrl_match_token1] = ACTIONS(4057), - [anon_sym_DOT_DOT] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4061), - [anon_sym_DOT_DOT_LT] = ACTIONS(4061), - [aux_sym__val_number_decimal_token1] = ACTIONS(4063), - [aux_sym__val_number_decimal_token2] = ACTIONS(4065), - [anon_sym_DOT2] = ACTIONS(4067), - [aux_sym__val_number_decimal_token3] = ACTIONS(4069), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4071), - [anon_sym_DQUOTE] = ACTIONS(3329), - [sym__str_single_quotes] = ACTIONS(3331), - [sym__str_back_ticks] = ACTIONS(3331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1325), + [ts_builtin_sym_end] = ACTIONS(957), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_PLUS_EQ] = ACTIONS(957), + [anon_sym_DASH_EQ] = ACTIONS(957), + [anon_sym_STAR_EQ] = ACTIONS(957), + [anon_sym_SLASH_EQ] = ACTIONS(957), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(957), + [sym__newline] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_err_GT_PIPE] = ACTIONS(957), + [anon_sym_out_GT_PIPE] = ACTIONS(957), + [anon_sym_e_GT_PIPE] = ACTIONS(957), + [anon_sym_o_GT_PIPE] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), + [aux_sym_expr_binary_token1] = ACTIONS(957), + [aux_sym_expr_binary_token2] = ACTIONS(957), + [aux_sym_expr_binary_token3] = ACTIONS(957), + [aux_sym_expr_binary_token4] = ACTIONS(957), + [aux_sym_expr_binary_token5] = ACTIONS(957), + [aux_sym_expr_binary_token6] = ACTIONS(957), + [aux_sym_expr_binary_token7] = ACTIONS(957), + [aux_sym_expr_binary_token8] = ACTIONS(957), + [aux_sym_expr_binary_token9] = ACTIONS(957), + [aux_sym_expr_binary_token10] = ACTIONS(957), + [aux_sym_expr_binary_token11] = ACTIONS(957), + [aux_sym_expr_binary_token12] = ACTIONS(957), + [aux_sym_expr_binary_token13] = ACTIONS(957), + [aux_sym_expr_binary_token14] = ACTIONS(957), + [aux_sym_expr_binary_token15] = ACTIONS(957), + [aux_sym_expr_binary_token16] = ACTIONS(957), + [aux_sym_expr_binary_token17] = ACTIONS(957), + [aux_sym_expr_binary_token18] = ACTIONS(957), + [aux_sym_expr_binary_token19] = ACTIONS(957), + [aux_sym_expr_binary_token20] = ACTIONS(957), + [aux_sym_expr_binary_token21] = ACTIONS(957), + [aux_sym_expr_binary_token22] = ACTIONS(957), + [aux_sym_expr_binary_token23] = ACTIONS(957), + [aux_sym_expr_binary_token24] = ACTIONS(957), + [aux_sym_expr_binary_token25] = ACTIONS(957), + [aux_sym_expr_binary_token26] = ACTIONS(957), + [aux_sym_expr_binary_token27] = ACTIONS(957), + [aux_sym_expr_binary_token28] = ACTIONS(957), + [anon_sym_DOT_DOT2] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(4328), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(957), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [anon_sym_POUND] = ACTIONS(247), }, [1326] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6347), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6077), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5325), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6348), - [sym__unquoted_anonymous_prefix] = STATE(7887), + [sym__val_range] = STATE(8049), + [sym__value] = STATE(6272), + [sym_val_nothing] = STATE(2431), + [sym_val_bool] = STATE(3916), + [sym_val_variable] = STATE(2431), + [sym_val_number] = STATE(2431), + [sym__val_number_decimal] = STATE(5842), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(2431), + [sym_val_filesize] = STATE(2431), + [sym_val_binary] = STATE(2431), + [sym_val_string] = STATE(2431), + [sym__str_double_quotes] = STATE(2158), + [sym_val_interpolated] = STATE(2431), + [sym__inter_single_quotes] = STATE(2465), + [sym__inter_double_quotes] = STATE(2466), + [sym_val_list] = STATE(2431), + [sym_val_record] = STATE(2431), + [sym_val_table] = STATE(2431), + [sym_val_closure] = STATE(2431), + [sym_unquoted] = STATE(6274), + [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(1326), - [anon_sym_true] = ACTIONS(4045), - [anon_sym_false] = ACTIONS(4045), - [anon_sym_null] = ACTIONS(4047), - [aux_sym_cmd_identifier_token38] = ACTIONS(4229), - [aux_sym_cmd_identifier_token39] = ACTIONS(4229), - [aux_sym_cmd_identifier_token40] = ACTIONS(4229), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(4235), - [aux_sym__val_number_decimal_token2] = ACTIONS(4237), - [anon_sym_DOT2] = ACTIONS(4239), - [aux_sym__val_number_decimal_token3] = ACTIONS(4241), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4071), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3213), + [anon_sym_false] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3215), + [aux_sym_cmd_identifier_token38] = ACTIONS(3217), + [aux_sym_cmd_identifier_token39] = ACTIONS(3217), + [aux_sym_cmd_identifier_token40] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_DOLLAR] = ACTIONS(4252), + [aux_sym_ctrl_match_token1] = ACTIONS(4254), + [anon_sym_DOT_DOT] = ACTIONS(4256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4258), + [anon_sym_DOT_DOT_LT] = ACTIONS(4258), + [aux_sym__val_number_decimal_token1] = ACTIONS(3229), + [aux_sym__val_number_decimal_token2] = ACTIONS(3231), + [aux_sym__val_number_decimal_token3] = ACTIONS(3233), + [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(4260), + [sym__str_single_quotes] = ACTIONS(4262), + [sym__str_back_ticks] = ACTIONS(4262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(247), }, [1327] = { - [sym_path] = STATE(1447), [sym_comment] = STATE(1327), - [aux_sym_cell_path_repeat1] = STATE(1327), - [ts_builtin_sym_end] = ACTIONS(895), - [anon_sym_EQ] = ACTIONS(893), - [anon_sym_PLUS_EQ] = ACTIONS(895), - [anon_sym_DASH_EQ] = ACTIONS(895), - [anon_sym_STAR_EQ] = ACTIONS(895), - [anon_sym_SLASH_EQ] = ACTIONS(895), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(895), - [sym__newline] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_in] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(893), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(4243), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1328] = { [sym_comment] = STATE(1328), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_PLUS_EQ] = ACTIONS(908), - [anon_sym_DASH_EQ] = ACTIONS(908), - [anon_sym_STAR_EQ] = ACTIONS(908), - [anon_sym_SLASH_EQ] = ACTIONS(908), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(908), - [sym__newline] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_err_GT_PIPE] = ACTIONS(908), - [anon_sym_out_GT_PIPE] = ACTIONS(908), - [anon_sym_e_GT_PIPE] = ACTIONS(908), - [anon_sym_o_GT_PIPE] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_in] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_DOT_DOT2] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(908), - [anon_sym_DOT_DOT_LT2] = ACTIONS(908), - [aux_sym_record_entry_token1] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(994), + [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_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [aux_sym_expr_binary_token1] = ACTIONS(996), + [aux_sym_expr_binary_token2] = ACTIONS(996), + [aux_sym_expr_binary_token3] = ACTIONS(996), + [aux_sym_expr_binary_token4] = ACTIONS(996), + [aux_sym_expr_binary_token5] = ACTIONS(996), + [aux_sym_expr_binary_token6] = ACTIONS(996), + [aux_sym_expr_binary_token7] = ACTIONS(996), + [aux_sym_expr_binary_token8] = ACTIONS(996), + [aux_sym_expr_binary_token9] = ACTIONS(996), + [aux_sym_expr_binary_token10] = ACTIONS(996), + [aux_sym_expr_binary_token11] = ACTIONS(996), + [aux_sym_expr_binary_token12] = ACTIONS(996), + [aux_sym_expr_binary_token13] = ACTIONS(996), + [aux_sym_expr_binary_token14] = ACTIONS(996), + [aux_sym_expr_binary_token15] = ACTIONS(996), + [aux_sym_expr_binary_token16] = ACTIONS(996), + [aux_sym_expr_binary_token17] = ACTIONS(996), + [aux_sym_expr_binary_token18] = ACTIONS(996), + [aux_sym_expr_binary_token19] = ACTIONS(996), + [aux_sym_expr_binary_token20] = ACTIONS(996), + [aux_sym_expr_binary_token21] = ACTIONS(996), + [aux_sym_expr_binary_token22] = ACTIONS(996), + [aux_sym_expr_binary_token23] = ACTIONS(996), + [aux_sym_expr_binary_token24] = ACTIONS(996), + [aux_sym_expr_binary_token25] = ACTIONS(996), + [aux_sym_expr_binary_token26] = ACTIONS(996), + [aux_sym_expr_binary_token27] = ACTIONS(996), + [aux_sym_expr_binary_token28] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), }, [1329] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6309), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6077), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5325), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6293), - [sym__unquoted_anonymous_prefix] = STATE(7887), [sym_comment] = STATE(1329), - [anon_sym_true] = ACTIONS(4045), - [anon_sym_false] = ACTIONS(4045), - [anon_sym_null] = ACTIONS(4047), - [aux_sym_cmd_identifier_token38] = ACTIONS(4229), - [aux_sym_cmd_identifier_token39] = ACTIONS(4229), - [aux_sym_cmd_identifier_token40] = ACTIONS(4229), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(4235), - [aux_sym__val_number_decimal_token2] = ACTIONS(4237), - [anon_sym_DOT2] = ACTIONS(4239), - [aux_sym__val_number_decimal_token3] = ACTIONS(4241), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4071), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1481), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1330] = { - [sym__val_range] = STATE(7616), - [sym__value] = STATE(5741), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(7646), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(5785), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(5742), - [sym__unquoted_anonymous_prefix] = STATE(7812), [sym_comment] = STATE(1330), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_null] = ACTIONS(4250), - [aux_sym_cmd_identifier_token38] = ACTIONS(4252), - [aux_sym_cmd_identifier_token39] = ACTIONS(4252), - [aux_sym_cmd_identifier_token40] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(4254), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4256), - [anon_sym_DOT_DOT_LT] = ACTIONS(4256), - [aux_sym__val_number_decimal_token1] = ACTIONS(4258), - [aux_sym__val_number_decimal_token2] = ACTIONS(4260), - [anon_sym_DOT2] = ACTIONS(4262), - [aux_sym__val_number_decimal_token3] = ACTIONS(4264), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4266), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1519), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1331] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6221), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6077), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5325), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6361), - [sym__unquoted_anonymous_prefix] = STATE(7887), [sym_comment] = STATE(1331), - [anon_sym_true] = ACTIONS(4045), - [anon_sym_false] = ACTIONS(4045), - [anon_sym_null] = ACTIONS(4047), - [aux_sym_cmd_identifier_token38] = ACTIONS(4229), - [aux_sym_cmd_identifier_token39] = ACTIONS(4229), - [aux_sym_cmd_identifier_token40] = ACTIONS(4229), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(4235), - [aux_sym__val_number_decimal_token2] = ACTIONS(4237), - [anon_sym_DOT2] = ACTIONS(4239), - [aux_sym__val_number_decimal_token3] = ACTIONS(4241), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4071), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1585), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), }, [1332] = { - [sym__val_range] = STATE(7616), - [sym__value] = STATE(5707), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(7646), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(5785), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(5708), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6208), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6000), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5531), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6209), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1332), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_null] = ACTIONS(4250), - [aux_sym_cmd_identifier_token38] = ACTIONS(4252), - [aux_sym_cmd_identifier_token39] = ACTIONS(4252), - [aux_sym_cmd_identifier_token40] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(4254), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4256), - [anon_sym_DOT_DOT_LT] = ACTIONS(4256), - [aux_sym__val_number_decimal_token1] = ACTIONS(4258), - [aux_sym__val_number_decimal_token2] = ACTIONS(4260), - [anon_sym_DOT2] = ACTIONS(4262), - [aux_sym__val_number_decimal_token3] = ACTIONS(4264), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4266), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4220), + [aux_sym_cmd_identifier_token38] = ACTIONS(4312), + [aux_sym_cmd_identifier_token39] = ACTIONS(4312), + [aux_sym_cmd_identifier_token40] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [aux_sym__val_number_decimal_token3] = ACTIONS(4318), + [aux_sym__val_number_decimal_token4] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4244), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1333] = { - [sym__val_range] = STATE(7616), - [sym__value] = STATE(5781), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(7646), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(5785), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(5673), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym__val_range] = STATE(7776), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(7560), + [sym_val_variable] = STATE(4250), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(5887), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(5795), + [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1333), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_null] = ACTIONS(4250), - [aux_sym_cmd_identifier_token38] = ACTIONS(4252), - [aux_sym_cmd_identifier_token39] = ACTIONS(4252), - [aux_sym_cmd_identifier_token40] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(4254), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4256), - [anon_sym_DOT_DOT_LT] = ACTIONS(4256), - [aux_sym__val_number_decimal_token1] = ACTIONS(4258), - [aux_sym__val_number_decimal_token2] = ACTIONS(4260), - [anon_sym_DOT2] = ACTIONS(4262), - [aux_sym__val_number_decimal_token3] = ACTIONS(4264), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4266), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4333), + [aux_sym_cmd_identifier_token38] = ACTIONS(4335), + [aux_sym_cmd_identifier_token39] = ACTIONS(4335), + [aux_sym_cmd_identifier_token40] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4343), + [aux_sym__val_number_decimal_token2] = ACTIONS(4345), + [aux_sym__val_number_decimal_token3] = ACTIONS(4347), + [aux_sym__val_number_decimal_token4] = ACTIONS(4349), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(4351), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1334] = { - [sym__val_range] = STATE(7630), - [sym__value] = STATE(2104), - [sym_val_nothing] = STATE(1933), - [sym_val_bool] = STATE(1868), - [sym_val_variable] = STATE(1933), - [sym_val_number] = STATE(1933), - [sym__val_number_decimal] = STATE(1384), - [sym__val_number] = STATE(2001), - [sym_val_duration] = STATE(1933), - [sym_val_filesize] = STATE(1933), - [sym_val_binary] = STATE(1933), - [sym_val_string] = STATE(1933), - [sym__str_double_quotes] = STATE(1936), - [sym_val_interpolated] = STATE(1933), - [sym__inter_single_quotes] = STATE(1924), - [sym__inter_double_quotes] = STATE(1925), - [sym_val_list] = STATE(1933), - [sym_val_record] = STATE(1933), - [sym_val_table] = STATE(1933), - [sym_val_closure] = STATE(1933), - [sym_unquoted] = STATE(2014), - [sym__unquoted_anonymous_prefix] = STATE(7712), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6291), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6000), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5531), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6292), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1334), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4270), - [aux_sym_cmd_identifier_token38] = ACTIONS(4272), - [aux_sym_cmd_identifier_token39] = ACTIONS(4272), - [aux_sym_cmd_identifier_token40] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_DOLLAR] = ACTIONS(3983), - [aux_sym_ctrl_match_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(4276), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4278), - [anon_sym_DOT_DOT_LT] = ACTIONS(4278), - [aux_sym__val_number_decimal_token1] = ACTIONS(4280), - [aux_sym__val_number_decimal_token2] = ACTIONS(4282), - [anon_sym_DOT2] = ACTIONS(4284), - [aux_sym__val_number_decimal_token3] = ACTIONS(4286), - [aux_sym__val_number_token1] = ACTIONS(2663), - [aux_sym__val_number_token2] = ACTIONS(2663), - [aux_sym__val_number_token3] = ACTIONS(2663), - [anon_sym_0b] = ACTIONS(2665), - [anon_sym_0o] = ACTIONS(2667), - [anon_sym_0x] = ACTIONS(2667), - [sym_val_date] = ACTIONS(4288), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym__str_single_quotes] = ACTIONS(2673), - [sym__str_back_ticks] = ACTIONS(2673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4290), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_null] = ACTIONS(4220), + [aux_sym_cmd_identifier_token38] = ACTIONS(4312), + [aux_sym_cmd_identifier_token39] = ACTIONS(4312), + [aux_sym_cmd_identifier_token40] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4314), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [aux_sym__val_number_decimal_token3] = ACTIONS(4318), + [aux_sym__val_number_decimal_token4] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4244), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1335] = { - [sym__val_range] = STATE(7616), - [sym__value] = STATE(5669), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(7646), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(5785), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(1682), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(5670), - [sym__unquoted_anonymous_prefix] = STATE(7812), + [sym__val_range] = STATE(7776), + [sym__value] = STATE(5821), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(7560), + [sym_val_variable] = STATE(4250), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(5887), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(5822), + [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1335), - [anon_sym_true] = ACTIONS(4248), - [anon_sym_false] = ACTIONS(4248), - [anon_sym_null] = ACTIONS(4250), - [aux_sym_cmd_identifier_token38] = ACTIONS(4252), - [aux_sym_cmd_identifier_token39] = ACTIONS(4252), - [aux_sym_cmd_identifier_token40] = ACTIONS(4252), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(4254), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4256), - [anon_sym_DOT_DOT_LT] = ACTIONS(4256), - [aux_sym__val_number_decimal_token1] = ACTIONS(4258), - [aux_sym__val_number_decimal_token2] = ACTIONS(4260), - [anon_sym_DOT2] = ACTIONS(4262), - [aux_sym__val_number_decimal_token3] = ACTIONS(4264), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4266), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4333), + [aux_sym_cmd_identifier_token38] = ACTIONS(4335), + [aux_sym_cmd_identifier_token39] = ACTIONS(4335), + [aux_sym_cmd_identifier_token40] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4343), + [aux_sym__val_number_decimal_token2] = ACTIONS(4345), + [aux_sym__val_number_decimal_token3] = ACTIONS(4347), + [aux_sym__val_number_decimal_token4] = ACTIONS(4349), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(4351), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1336] = { - [sym__val_range] = STATE(7630), - [sym__value] = STATE(1958), - [sym_val_nothing] = STATE(1933), - [sym_val_bool] = STATE(1868), - [sym_val_variable] = STATE(1933), - [sym_val_number] = STATE(1933), - [sym__val_number_decimal] = STATE(1384), - [sym__val_number] = STATE(2001), - [sym_val_duration] = STATE(1933), - [sym_val_filesize] = STATE(1933), - [sym_val_binary] = STATE(1933), - [sym_val_string] = STATE(1933), - [sym__str_double_quotes] = STATE(1936), - [sym_val_interpolated] = STATE(1933), - [sym__inter_single_quotes] = STATE(1924), - [sym__inter_double_quotes] = STATE(1925), - [sym_val_list] = STATE(1933), - [sym_val_record] = STATE(1933), - [sym_val_table] = STATE(1933), - [sym_val_closure] = STATE(1933), - [sym_unquoted] = STATE(2048), - [sym__unquoted_anonymous_prefix] = STATE(7712), [sym_comment] = STATE(1336), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4270), - [aux_sym_cmd_identifier_token38] = ACTIONS(4272), - [aux_sym_cmd_identifier_token39] = ACTIONS(4272), - [aux_sym_cmd_identifier_token40] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_DOLLAR] = ACTIONS(3983), - [aux_sym_ctrl_match_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(4276), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4278), - [anon_sym_DOT_DOT_LT] = ACTIONS(4278), - [aux_sym__val_number_decimal_token1] = ACTIONS(4280), - [aux_sym__val_number_decimal_token2] = ACTIONS(4282), - [anon_sym_DOT2] = ACTIONS(4284), - [aux_sym__val_number_decimal_token3] = ACTIONS(4286), - [aux_sym__val_number_token1] = ACTIONS(2663), - [aux_sym__val_number_token2] = ACTIONS(2663), - [aux_sym__val_number_token3] = ACTIONS(2663), - [anon_sym_0b] = ACTIONS(2665), - [anon_sym_0o] = ACTIONS(2667), - [anon_sym_0x] = ACTIONS(2667), - [sym_val_date] = ACTIONS(4288), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym__str_single_quotes] = ACTIONS(2673), - [sym__str_back_ticks] = ACTIONS(2673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4290), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(986), + [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_PLUS_PLUS_EQ] = ACTIONS(988), + [sym__newline] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [aux_sym_expr_binary_token1] = ACTIONS(988), + [aux_sym_expr_binary_token2] = ACTIONS(988), + [aux_sym_expr_binary_token3] = ACTIONS(988), + [aux_sym_expr_binary_token4] = ACTIONS(988), + [aux_sym_expr_binary_token5] = ACTIONS(988), + [aux_sym_expr_binary_token6] = ACTIONS(988), + [aux_sym_expr_binary_token7] = ACTIONS(988), + [aux_sym_expr_binary_token8] = ACTIONS(988), + [aux_sym_expr_binary_token9] = ACTIONS(988), + [aux_sym_expr_binary_token10] = ACTIONS(988), + [aux_sym_expr_binary_token11] = ACTIONS(988), + [aux_sym_expr_binary_token12] = ACTIONS(988), + [aux_sym_expr_binary_token13] = ACTIONS(988), + [aux_sym_expr_binary_token14] = ACTIONS(988), + [aux_sym_expr_binary_token15] = ACTIONS(988), + [aux_sym_expr_binary_token16] = ACTIONS(988), + [aux_sym_expr_binary_token17] = ACTIONS(988), + [aux_sym_expr_binary_token18] = ACTIONS(988), + [aux_sym_expr_binary_token19] = ACTIONS(988), + [aux_sym_expr_binary_token20] = ACTIONS(988), + [aux_sym_expr_binary_token21] = ACTIONS(988), + [aux_sym_expr_binary_token22] = ACTIONS(988), + [aux_sym_expr_binary_token23] = ACTIONS(988), + [aux_sym_expr_binary_token24] = ACTIONS(988), + [aux_sym_expr_binary_token25] = ACTIONS(988), + [aux_sym_expr_binary_token26] = ACTIONS(988), + [aux_sym_expr_binary_token27] = ACTIONS(988), + [aux_sym_expr_binary_token28] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(247), }, [1337] = { - [sym__val_range] = STATE(7630), - [sym__value] = STATE(1975), - [sym_val_nothing] = STATE(1933), - [sym_val_bool] = STATE(1868), - [sym_val_variable] = STATE(1933), - [sym_val_number] = STATE(1933), - [sym__val_number_decimal] = STATE(1384), - [sym__val_number] = STATE(2001), - [sym_val_duration] = STATE(1933), - [sym_val_filesize] = STATE(1933), - [sym_val_binary] = STATE(1933), - [sym_val_string] = STATE(1933), - [sym__str_double_quotes] = STATE(1936), - [sym_val_interpolated] = STATE(1933), - [sym__inter_single_quotes] = STATE(1924), - [sym__inter_double_quotes] = STATE(1925), - [sym_val_list] = STATE(1933), - [sym_val_record] = STATE(1933), - [sym_val_table] = STATE(1933), - [sym_val_closure] = STATE(1933), - [sym_unquoted] = STATE(1976), - [sym__unquoted_anonymous_prefix] = STATE(7712), [sym_comment] = STATE(1337), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4270), - [aux_sym_cmd_identifier_token38] = ACTIONS(4272), - [aux_sym_cmd_identifier_token39] = ACTIONS(4272), - [aux_sym_cmd_identifier_token40] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_DOLLAR] = ACTIONS(3983), - [aux_sym_ctrl_match_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(4276), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4278), - [anon_sym_DOT_DOT_LT] = ACTIONS(4278), - [aux_sym__val_number_decimal_token1] = ACTIONS(4280), - [aux_sym__val_number_decimal_token2] = ACTIONS(4282), - [anon_sym_DOT2] = ACTIONS(4284), - [aux_sym__val_number_decimal_token3] = ACTIONS(4286), - [aux_sym__val_number_token1] = ACTIONS(2663), - [aux_sym__val_number_token2] = ACTIONS(2663), - [aux_sym__val_number_token3] = ACTIONS(2663), - [anon_sym_0b] = ACTIONS(2665), - [anon_sym_0o] = ACTIONS(2667), - [anon_sym_0x] = ACTIONS(2667), - [sym_val_date] = ACTIONS(4288), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym__str_single_quotes] = ACTIONS(2673), - [sym__str_back_ticks] = ACTIONS(2673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4290), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(990), + [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_PLUS_PLUS_EQ] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [aux_sym_expr_binary_token1] = ACTIONS(992), + [aux_sym_expr_binary_token2] = ACTIONS(992), + [aux_sym_expr_binary_token3] = ACTIONS(992), + [aux_sym_expr_binary_token4] = ACTIONS(992), + [aux_sym_expr_binary_token5] = ACTIONS(992), + [aux_sym_expr_binary_token6] = ACTIONS(992), + [aux_sym_expr_binary_token7] = ACTIONS(992), + [aux_sym_expr_binary_token8] = ACTIONS(992), + [aux_sym_expr_binary_token9] = ACTIONS(992), + [aux_sym_expr_binary_token10] = ACTIONS(992), + [aux_sym_expr_binary_token11] = ACTIONS(992), + [aux_sym_expr_binary_token12] = ACTIONS(992), + [aux_sym_expr_binary_token13] = ACTIONS(992), + [aux_sym_expr_binary_token14] = ACTIONS(992), + [aux_sym_expr_binary_token15] = ACTIONS(992), + [aux_sym_expr_binary_token16] = ACTIONS(992), + [aux_sym_expr_binary_token17] = ACTIONS(992), + [aux_sym_expr_binary_token18] = ACTIONS(992), + [aux_sym_expr_binary_token19] = ACTIONS(992), + [aux_sym_expr_binary_token20] = ACTIONS(992), + [aux_sym_expr_binary_token21] = ACTIONS(992), + [aux_sym_expr_binary_token22] = ACTIONS(992), + [aux_sym_expr_binary_token23] = ACTIONS(992), + [aux_sym_expr_binary_token24] = ACTIONS(992), + [aux_sym_expr_binary_token25] = ACTIONS(992), + [aux_sym_expr_binary_token26] = ACTIONS(992), + [aux_sym_expr_binary_token27] = ACTIONS(992), + [aux_sym_expr_binary_token28] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), }, [1338] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6225), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6601), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5506), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6229), - [sym__unquoted_anonymous_prefix] = STATE(7887), + [sym__val_range] = STATE(7776), + [sym__value] = STATE(5708), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(7560), + [sym_val_variable] = STATE(4250), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(5887), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(5713), + [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1338), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_null] = ACTIONS(4294), - [aux_sym_cmd_identifier_token38] = ACTIONS(4296), - [aux_sym_cmd_identifier_token39] = ACTIONS(4296), - [aux_sym_cmd_identifier_token40] = ACTIONS(4296), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(4300), - [aux_sym__val_number_decimal_token2] = ACTIONS(4302), - [anon_sym_DOT2] = ACTIONS(4304), - [aux_sym__val_number_decimal_token3] = ACTIONS(4306), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4308), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4333), + [aux_sym_cmd_identifier_token38] = ACTIONS(4335), + [aux_sym_cmd_identifier_token39] = ACTIONS(4335), + [aux_sym_cmd_identifier_token40] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4343), + [aux_sym__val_number_decimal_token2] = ACTIONS(4345), + [aux_sym__val_number_decimal_token3] = ACTIONS(4347), + [aux_sym__val_number_decimal_token4] = ACTIONS(4349), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(4351), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1339] = { - [sym__val_range] = STATE(7630), - [sym__value] = STATE(1980), - [sym_val_nothing] = STATE(1933), - [sym_val_bool] = STATE(1868), - [sym_val_variable] = STATE(1933), - [sym_val_number] = STATE(1933), - [sym__val_number_decimal] = STATE(1384), - [sym__val_number] = STATE(2001), - [sym_val_duration] = STATE(1933), - [sym_val_filesize] = STATE(1933), - [sym_val_binary] = STATE(1933), - [sym_val_string] = STATE(1933), - [sym__str_double_quotes] = STATE(1936), - [sym_val_interpolated] = STATE(1933), - [sym__inter_single_quotes] = STATE(1924), - [sym__inter_double_quotes] = STATE(1925), - [sym_val_list] = STATE(1933), - [sym_val_record] = STATE(1933), - [sym_val_table] = STATE(1933), - [sym_val_closure] = STATE(1933), - [sym_unquoted] = STATE(1981), - [sym__unquoted_anonymous_prefix] = STATE(7712), + [sym__val_range] = STATE(7894), + [sym__value] = STATE(2083), + [sym_val_nothing] = STATE(2094), + [sym_val_bool] = STATE(1825), + [sym_val_variable] = STATE(2094), + [sym_val_number] = STATE(2094), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(2080), + [sym_val_duration] = STATE(2094), + [sym_val_filesize] = STATE(2094), + [sym_val_binary] = STATE(2094), + [sym_val_string] = STATE(2094), + [sym__str_double_quotes] = STATE(2042), + [sym_val_interpolated] = STATE(2094), + [sym__inter_single_quotes] = STATE(1955), + [sym__inter_double_quotes] = STATE(2073), + [sym_val_list] = STATE(2094), + [sym_val_record] = STATE(2094), + [sym_val_table] = STATE(2094), + [sym_val_closure] = STATE(2094), + [sym_unquoted] = STATE(2084), + [sym__unquoted_anonymous_prefix] = STATE(7825), [sym_comment] = STATE(1339), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_null] = ACTIONS(4270), - [aux_sym_cmd_identifier_token38] = ACTIONS(4272), - [aux_sym_cmd_identifier_token39] = ACTIONS(4272), - [aux_sym_cmd_identifier_token40] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_DOLLAR] = ACTIONS(3983), - [aux_sym_ctrl_match_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(4276), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4278), - [anon_sym_DOT_DOT_LT] = ACTIONS(4278), - [aux_sym__val_number_decimal_token1] = ACTIONS(4280), - [aux_sym__val_number_decimal_token2] = ACTIONS(4282), - [anon_sym_DOT2] = ACTIONS(4284), - [aux_sym__val_number_decimal_token3] = ACTIONS(4286), - [aux_sym__val_number_token1] = ACTIONS(2663), - [aux_sym__val_number_token2] = ACTIONS(2663), - [aux_sym__val_number_token3] = ACTIONS(2663), - [anon_sym_0b] = ACTIONS(2665), - [anon_sym_0o] = ACTIONS(2667), - [anon_sym_0x] = ACTIONS(2667), - [sym_val_date] = ACTIONS(4288), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym__str_single_quotes] = ACTIONS(2673), - [sym__str_back_ticks] = ACTIONS(2673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4290), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_null] = ACTIONS(4355), + [aux_sym_cmd_identifier_token38] = ACTIONS(4357), + [aux_sym_cmd_identifier_token39] = ACTIONS(4357), + [aux_sym_cmd_identifier_token40] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(4359), + [anon_sym_DOLLAR] = ACTIONS(4124), + [aux_sym_ctrl_match_token1] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), + [anon_sym_DOT_DOT_LT] = ACTIONS(4363), + [aux_sym__val_number_decimal_token1] = ACTIONS(4365), + [aux_sym__val_number_decimal_token2] = ACTIONS(4367), + [aux_sym__val_number_decimal_token3] = ACTIONS(4369), + [aux_sym__val_number_decimal_token4] = ACTIONS(4371), + [aux_sym__val_number_token1] = ACTIONS(2714), + [aux_sym__val_number_token2] = ACTIONS(2714), + [aux_sym__val_number_token3] = ACTIONS(2714), + [anon_sym_0b] = ACTIONS(2716), + [anon_sym_0o] = ACTIONS(2718), + [anon_sym_0x] = ACTIONS(2718), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(2722), + [sym__str_single_quotes] = ACTIONS(2724), + [sym__str_back_ticks] = ACTIONS(2724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4375), + [anon_sym_POUND] = ACTIONS(247), }, [1340] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6347), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6601), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5506), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6348), - [sym__unquoted_anonymous_prefix] = STATE(7887), + [sym__val_range] = STATE(7776), + [sym__value] = STATE(5770), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(7560), + [sym_val_variable] = STATE(4250), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(5887), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(5772), + [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1340), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_null] = ACTIONS(4294), - [aux_sym_cmd_identifier_token38] = ACTIONS(4296), - [aux_sym_cmd_identifier_token39] = ACTIONS(4296), - [aux_sym_cmd_identifier_token40] = ACTIONS(4296), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(4300), - [aux_sym__val_number_decimal_token2] = ACTIONS(4302), - [anon_sym_DOT2] = ACTIONS(4304), - [aux_sym__val_number_decimal_token3] = ACTIONS(4306), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4308), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4333), + [aux_sym_cmd_identifier_token38] = ACTIONS(4335), + [aux_sym_cmd_identifier_token39] = ACTIONS(4335), + [aux_sym_cmd_identifier_token40] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4343), + [aux_sym__val_number_decimal_token2] = ACTIONS(4345), + [aux_sym__val_number_decimal_token3] = ACTIONS(4347), + [aux_sym__val_number_decimal_token4] = ACTIONS(4349), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(4351), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1341] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6309), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6601), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5506), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6293), - [sym__unquoted_anonymous_prefix] = STATE(7887), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6208), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(7285), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5793), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6209), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1341), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_null] = ACTIONS(4294), - [aux_sym_cmd_identifier_token38] = ACTIONS(4296), - [aux_sym_cmd_identifier_token39] = ACTIONS(4296), - [aux_sym_cmd_identifier_token40] = ACTIONS(4296), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(4300), - [aux_sym__val_number_decimal_token2] = ACTIONS(4302), - [anon_sym_DOT2] = ACTIONS(4304), - [aux_sym__val_number_decimal_token3] = ACTIONS(4306), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4308), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4264), + [anon_sym_false] = ACTIONS(4264), + [anon_sym_null] = ACTIONS(4266), + [aux_sym_cmd_identifier_token38] = ACTIONS(4268), + [aux_sym_cmd_identifier_token39] = ACTIONS(4268), + [aux_sym_cmd_identifier_token40] = ACTIONS(4268), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4276), + [aux_sym__val_number_decimal_token2] = ACTIONS(4278), + [aux_sym__val_number_decimal_token3] = ACTIONS(4280), + [aux_sym__val_number_decimal_token4] = ACTIONS(4282), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1342] = { - [sym__val_range] = STATE(7583), - [sym__value] = STATE(5026), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4649), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4203), - [sym__val_number] = STATE(5016), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__str_double_quotes] = STATE(4635), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(5044), - [sym__inter_double_quotes] = STATE(5045), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(5027), - [sym__unquoted_anonymous_prefix] = STATE(8037), + [sym_cell_path] = STATE(1592), + [sym_path] = STATE(1465), [sym_comment] = STATE(1342), - [anon_sym_true] = ACTIONS(4310), - [anon_sym_false] = ACTIONS(4310), - [anon_sym_null] = ACTIONS(4312), - [aux_sym_cmd_identifier_token38] = ACTIONS(4314), - [aux_sym_cmd_identifier_token39] = ACTIONS(4314), - [aux_sym_cmd_identifier_token40] = ACTIONS(4314), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_DOLLAR] = ACTIONS(4320), - [aux_sym_ctrl_match_token1] = ACTIONS(4322), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4326), - [anon_sym_DOT_DOT_LT] = ACTIONS(4326), - [aux_sym__val_number_decimal_token1] = ACTIONS(2127), - [aux_sym__val_number_decimal_token2] = ACTIONS(4328), - [anon_sym_DOT2] = ACTIONS(4330), - [aux_sym__val_number_decimal_token3] = ACTIONS(4332), - [aux_sym__val_number_token1] = ACTIONS(4334), - [aux_sym__val_number_token2] = ACTIONS(4334), - [aux_sym__val_number_token3] = ACTIONS(4334), - [anon_sym_0b] = ACTIONS(2135), - [anon_sym_0o] = ACTIONS(2137), - [anon_sym_0x] = ACTIONS(2137), - [sym_val_date] = ACTIONS(4336), - [anon_sym_DQUOTE] = ACTIONS(4338), - [sym__str_single_quotes] = ACTIONS(4340), - [sym__str_back_ticks] = ACTIONS(4340), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4344), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1398), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_null] = ACTIONS(947), + [aux_sym_cmd_identifier_token38] = ACTIONS(947), + [aux_sym_cmd_identifier_token39] = ACTIONS(947), + [aux_sym_cmd_identifier_token40] = ACTIONS(947), + [sym__newline] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_err_GT_PIPE] = ACTIONS(947), + [anon_sym_out_GT_PIPE] = ACTIONS(947), + [anon_sym_e_GT_PIPE] = ACTIONS(947), + [anon_sym_o_GT_PIPE] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(945), + [aux_sym_ctrl_match_token1] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT2] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(4377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(945), + [anon_sym_DOT_DOT_LT] = ACTIONS(945), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(947), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(947), + [aux_sym__val_number_decimal_token3] = ACTIONS(947), + [aux_sym__val_number_decimal_token4] = ACTIONS(947), + [aux_sym__val_number_token1] = ACTIONS(947), + [aux_sym__val_number_token2] = ACTIONS(947), + [aux_sym__val_number_token3] = ACTIONS(947), + [anon_sym_0b] = ACTIONS(945), + [anon_sym_0o] = ACTIONS(945), + [anon_sym_0x] = ACTIONS(945), + [sym_val_date] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym__str_single_quotes] = ACTIONS(947), + [sym__str_back_ticks] = ACTIONS(947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(947), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [aux_sym_unquoted_token1] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(247), }, [1343] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6221), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6601), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5506), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6361), - [sym__unquoted_anonymous_prefix] = STATE(7887), [sym_comment] = STATE(1343), - [anon_sym_true] = ACTIONS(4292), - [anon_sym_false] = ACTIONS(4292), - [anon_sym_null] = ACTIONS(4294), - [aux_sym_cmd_identifier_token38] = ACTIONS(4296), - [aux_sym_cmd_identifier_token39] = ACTIONS(4296), - [aux_sym_cmd_identifier_token40] = ACTIONS(4296), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), - [anon_sym_DOT_DOT_LT] = ACTIONS(4233), - [aux_sym__val_number_decimal_token1] = ACTIONS(4300), - [aux_sym__val_number_decimal_token2] = ACTIONS(4302), - [anon_sym_DOT2] = ACTIONS(4304), - [aux_sym__val_number_decimal_token3] = ACTIONS(4306), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4308), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1344] = { - [sym__val_range] = STATE(7583), - [sym__value] = STATE(5032), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4649), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4203), - [sym__val_number] = STATE(5016), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__str_double_quotes] = STATE(4635), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(5044), - [sym__inter_double_quotes] = STATE(5045), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(5033), - [sym__unquoted_anonymous_prefix] = STATE(8037), + [sym__val_range] = STATE(7894), + [sym__value] = STATE(2078), + [sym_val_nothing] = STATE(2094), + [sym_val_bool] = STATE(1825), + [sym_val_variable] = STATE(2094), + [sym_val_number] = STATE(2094), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(2080), + [sym_val_duration] = STATE(2094), + [sym_val_filesize] = STATE(2094), + [sym_val_binary] = STATE(2094), + [sym_val_string] = STATE(2094), + [sym__str_double_quotes] = STATE(2042), + [sym_val_interpolated] = STATE(2094), + [sym__inter_single_quotes] = STATE(1955), + [sym__inter_double_quotes] = STATE(2073), + [sym_val_list] = STATE(2094), + [sym_val_record] = STATE(2094), + [sym_val_table] = STATE(2094), + [sym_val_closure] = STATE(2094), + [sym_unquoted] = STATE(2079), + [sym__unquoted_anonymous_prefix] = STATE(7825), [sym_comment] = STATE(1344), - [anon_sym_true] = ACTIONS(4310), - [anon_sym_false] = ACTIONS(4310), - [anon_sym_null] = ACTIONS(4312), - [aux_sym_cmd_identifier_token38] = ACTIONS(4314), - [aux_sym_cmd_identifier_token39] = ACTIONS(4314), - [aux_sym_cmd_identifier_token40] = ACTIONS(4314), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_DOLLAR] = ACTIONS(4320), - [aux_sym_ctrl_match_token1] = ACTIONS(4322), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4326), - [anon_sym_DOT_DOT_LT] = ACTIONS(4326), - [aux_sym__val_number_decimal_token1] = ACTIONS(2127), - [aux_sym__val_number_decimal_token2] = ACTIONS(4328), - [anon_sym_DOT2] = ACTIONS(4330), - [aux_sym__val_number_decimal_token3] = ACTIONS(4332), - [aux_sym__val_number_token1] = ACTIONS(4334), - [aux_sym__val_number_token2] = ACTIONS(4334), - [aux_sym__val_number_token3] = ACTIONS(4334), - [anon_sym_0b] = ACTIONS(2135), - [anon_sym_0o] = ACTIONS(2137), - [anon_sym_0x] = ACTIONS(2137), - [sym_val_date] = ACTIONS(4336), - [anon_sym_DQUOTE] = ACTIONS(4338), - [sym__str_single_quotes] = ACTIONS(4340), - [sym__str_back_ticks] = ACTIONS(4340), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4344), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_null] = ACTIONS(4355), + [aux_sym_cmd_identifier_token38] = ACTIONS(4357), + [aux_sym_cmd_identifier_token39] = ACTIONS(4357), + [aux_sym_cmd_identifier_token40] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(4359), + [anon_sym_DOLLAR] = ACTIONS(4124), + [aux_sym_ctrl_match_token1] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), + [anon_sym_DOT_DOT_LT] = ACTIONS(4363), + [aux_sym__val_number_decimal_token1] = ACTIONS(4365), + [aux_sym__val_number_decimal_token2] = ACTIONS(4367), + [aux_sym__val_number_decimal_token3] = ACTIONS(4369), + [aux_sym__val_number_decimal_token4] = ACTIONS(4371), + [aux_sym__val_number_token1] = ACTIONS(2714), + [aux_sym__val_number_token2] = ACTIONS(2714), + [aux_sym__val_number_token3] = ACTIONS(2714), + [anon_sym_0b] = ACTIONS(2716), + [anon_sym_0o] = ACTIONS(2718), + [anon_sym_0x] = ACTIONS(2718), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(2722), + [sym__str_single_quotes] = ACTIONS(2724), + [sym__str_back_ticks] = ACTIONS(2724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4375), + [anon_sym_POUND] = ACTIONS(247), }, [1345] = { - [sym__val_range] = STATE(7583), - [sym__value] = STATE(5059), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4649), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4203), - [sym__val_number] = STATE(5016), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__str_double_quotes] = STATE(4635), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(5044), - [sym__inter_double_quotes] = STATE(5045), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(5060), - [sym__unquoted_anonymous_prefix] = STATE(8037), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6238), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6781), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5651), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6265), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1345), - [anon_sym_true] = ACTIONS(4310), - [anon_sym_false] = ACTIONS(4310), - [anon_sym_null] = ACTIONS(4312), - [aux_sym_cmd_identifier_token38] = ACTIONS(4314), - [aux_sym_cmd_identifier_token39] = ACTIONS(4314), - [aux_sym_cmd_identifier_token40] = ACTIONS(4314), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_DOLLAR] = ACTIONS(4320), - [aux_sym_ctrl_match_token1] = ACTIONS(4322), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4326), - [anon_sym_DOT_DOT_LT] = ACTIONS(4326), - [aux_sym__val_number_decimal_token1] = ACTIONS(2127), - [aux_sym__val_number_decimal_token2] = ACTIONS(4328), - [anon_sym_DOT2] = ACTIONS(4330), - [aux_sym__val_number_decimal_token3] = ACTIONS(4332), - [aux_sym__val_number_token1] = ACTIONS(4334), - [aux_sym__val_number_token2] = ACTIONS(4334), - [aux_sym__val_number_token3] = ACTIONS(4334), - [anon_sym_0b] = ACTIONS(2135), - [anon_sym_0o] = ACTIONS(2137), - [anon_sym_0x] = ACTIONS(2137), - [sym_val_date] = ACTIONS(4336), - [anon_sym_DQUOTE] = ACTIONS(4338), - [sym__str_single_quotes] = ACTIONS(4340), - [sym__str_back_ticks] = ACTIONS(4340), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4344), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4383), + [anon_sym_false] = ACTIONS(4383), + [anon_sym_null] = ACTIONS(4385), + [aux_sym_cmd_identifier_token38] = ACTIONS(4387), + [aux_sym_cmd_identifier_token39] = ACTIONS(4387), + [aux_sym_cmd_identifier_token40] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4389), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1346] = { - [sym__val_range] = STATE(7607), - [sym__value] = STATE(4907), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(7287), - [sym_val_variable] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(5657), - [sym__val_number] = STATE(4817), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__str_double_quotes] = STATE(4505), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4757), - [sym__inter_double_quotes] = STATE(4767), - [sym_val_list] = STATE(4862), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym_unquoted] = STATE(4913), - [sym__unquoted_anonymous_prefix] = STATE(7963), + [sym__val_range] = STATE(7894), + [sym__value] = STATE(2086), + [sym_val_nothing] = STATE(2094), + [sym_val_bool] = STATE(1825), + [sym_val_variable] = STATE(2094), + [sym_val_number] = STATE(2094), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(2080), + [sym_val_duration] = STATE(2094), + [sym_val_filesize] = STATE(2094), + [sym_val_binary] = STATE(2094), + [sym_val_string] = STATE(2094), + [sym__str_double_quotes] = STATE(2042), + [sym_val_interpolated] = STATE(2094), + [sym__inter_single_quotes] = STATE(1955), + [sym__inter_double_quotes] = STATE(2073), + [sym_val_list] = STATE(2094), + [sym_val_record] = STATE(2094), + [sym_val_table] = STATE(2094), + [sym_val_closure] = STATE(2094), + [sym_unquoted] = STATE(2087), + [sym__unquoted_anonymous_prefix] = STATE(7825), [sym_comment] = STATE(1346), - [anon_sym_true] = ACTIONS(4346), - [anon_sym_false] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4348), - [aux_sym_cmd_identifier_token38] = ACTIONS(4350), - [aux_sym_cmd_identifier_token39] = ACTIONS(4350), - [aux_sym_cmd_identifier_token40] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [aux_sym_ctrl_match_token1] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), - [anon_sym_DOT_DOT_LT] = ACTIONS(4362), - [aux_sym__val_number_decimal_token1] = ACTIONS(4364), - [aux_sym__val_number_decimal_token2] = ACTIONS(4366), - [anon_sym_DOT2] = ACTIONS(4368), - [aux_sym__val_number_decimal_token3] = ACTIONS(4370), - [aux_sym__val_number_token1] = ACTIONS(4372), - [aux_sym__val_number_token2] = ACTIONS(4372), - [aux_sym__val_number_token3] = ACTIONS(4372), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(4374), - [anon_sym_DQUOTE] = ACTIONS(4376), - [sym__str_single_quotes] = ACTIONS(4378), - [sym__str_back_ticks] = ACTIONS(4378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_null] = ACTIONS(4355), + [aux_sym_cmd_identifier_token38] = ACTIONS(4357), + [aux_sym_cmd_identifier_token39] = ACTIONS(4357), + [aux_sym_cmd_identifier_token40] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(4359), + [anon_sym_DOLLAR] = ACTIONS(4124), + [aux_sym_ctrl_match_token1] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), + [anon_sym_DOT_DOT_LT] = ACTIONS(4363), + [aux_sym__val_number_decimal_token1] = ACTIONS(4365), + [aux_sym__val_number_decimal_token2] = ACTIONS(4367), + [aux_sym__val_number_decimal_token3] = ACTIONS(4369), + [aux_sym__val_number_decimal_token4] = ACTIONS(4371), + [aux_sym__val_number_token1] = ACTIONS(2714), + [aux_sym__val_number_token2] = ACTIONS(2714), + [aux_sym__val_number_token3] = ACTIONS(2714), + [anon_sym_0b] = ACTIONS(2716), + [anon_sym_0o] = ACTIONS(2718), + [anon_sym_0x] = ACTIONS(2718), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(2722), + [sym__str_single_quotes] = ACTIONS(2724), + [sym__str_back_ticks] = ACTIONS(2724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4375), + [anon_sym_POUND] = ACTIONS(247), }, [1347] = { - [sym__val_range] = STATE(7583), - [sym__value] = STATE(5067), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4649), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4203), - [sym__val_number] = STATE(5016), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__str_double_quotes] = STATE(4635), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(5044), - [sym__inter_double_quotes] = STATE(5045), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(5068), - [sym__unquoted_anonymous_prefix] = STATE(8037), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6272), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6781), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5651), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6274), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1347), - [anon_sym_true] = ACTIONS(4310), - [anon_sym_false] = ACTIONS(4310), - [anon_sym_null] = ACTIONS(4312), - [aux_sym_cmd_identifier_token38] = ACTIONS(4314), - [aux_sym_cmd_identifier_token39] = ACTIONS(4314), - [aux_sym_cmd_identifier_token40] = ACTIONS(4314), - [anon_sym_LBRACK] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_DOLLAR] = ACTIONS(4320), - [aux_sym_ctrl_match_token1] = ACTIONS(4322), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4326), - [anon_sym_DOT_DOT_LT] = ACTIONS(4326), - [aux_sym__val_number_decimal_token1] = ACTIONS(2127), - [aux_sym__val_number_decimal_token2] = ACTIONS(4328), - [anon_sym_DOT2] = ACTIONS(4330), - [aux_sym__val_number_decimal_token3] = ACTIONS(4332), - [aux_sym__val_number_token1] = ACTIONS(4334), - [aux_sym__val_number_token2] = ACTIONS(4334), - [aux_sym__val_number_token3] = ACTIONS(4334), - [anon_sym_0b] = ACTIONS(2135), - [anon_sym_0o] = ACTIONS(2137), - [anon_sym_0x] = ACTIONS(2137), - [sym_val_date] = ACTIONS(4336), - [anon_sym_DQUOTE] = ACTIONS(4338), - [sym__str_single_quotes] = ACTIONS(4340), - [sym__str_back_ticks] = ACTIONS(4340), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4344), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4383), + [anon_sym_false] = ACTIONS(4383), + [anon_sym_null] = ACTIONS(4385), + [aux_sym_cmd_identifier_token38] = ACTIONS(4387), + [aux_sym_cmd_identifier_token39] = ACTIONS(4387), + [aux_sym_cmd_identifier_token40] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4389), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1348] = { - [sym__val_range] = STATE(7607), - [sym__value] = STATE(4843), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(7287), - [sym_val_variable] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(5657), - [sym__val_number] = STATE(4817), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__str_double_quotes] = STATE(4505), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4757), - [sym__inter_double_quotes] = STATE(4767), - [sym_val_list] = STATE(4862), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym_unquoted] = STATE(4844), - [sym__unquoted_anonymous_prefix] = STATE(7963), [sym_comment] = STATE(1348), - [anon_sym_true] = ACTIONS(4346), - [anon_sym_false] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4348), - [aux_sym_cmd_identifier_token38] = ACTIONS(4350), - [aux_sym_cmd_identifier_token39] = ACTIONS(4350), - [aux_sym_cmd_identifier_token40] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [aux_sym_ctrl_match_token1] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), - [anon_sym_DOT_DOT_LT] = ACTIONS(4362), - [aux_sym__val_number_decimal_token1] = ACTIONS(4364), - [aux_sym__val_number_decimal_token2] = ACTIONS(4366), - [anon_sym_DOT2] = ACTIONS(4368), - [aux_sym__val_number_decimal_token3] = ACTIONS(4370), - [aux_sym__val_number_token1] = ACTIONS(4372), - [aux_sym__val_number_token2] = ACTIONS(4372), - [aux_sym__val_number_token3] = ACTIONS(4372), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(4374), - [anon_sym_DQUOTE] = ACTIONS(4376), - [sym__str_single_quotes] = ACTIONS(4378), - [sym__str_back_ticks] = ACTIONS(4378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4401), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1349] = { - [sym__val_range] = STATE(7607), - [sym__value] = STATE(4912), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(7287), - [sym_val_variable] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(5657), - [sym__val_number] = STATE(4817), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__str_double_quotes] = STATE(4505), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4757), - [sym__inter_double_quotes] = STATE(4767), - [sym_val_list] = STATE(4862), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym_unquoted] = STATE(4750), - [sym__unquoted_anonymous_prefix] = STATE(7963), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6208), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6781), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5651), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6209), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1349), - [anon_sym_true] = ACTIONS(4346), - [anon_sym_false] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4348), - [aux_sym_cmd_identifier_token38] = ACTIONS(4350), - [aux_sym_cmd_identifier_token39] = ACTIONS(4350), - [aux_sym_cmd_identifier_token40] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [aux_sym_ctrl_match_token1] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), - [anon_sym_DOT_DOT_LT] = ACTIONS(4362), - [aux_sym__val_number_decimal_token1] = ACTIONS(4364), - [aux_sym__val_number_decimal_token2] = ACTIONS(4366), - [anon_sym_DOT2] = ACTIONS(4368), - [aux_sym__val_number_decimal_token3] = ACTIONS(4370), - [aux_sym__val_number_token1] = ACTIONS(4372), - [aux_sym__val_number_token2] = ACTIONS(4372), - [aux_sym__val_number_token3] = ACTIONS(4372), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(4374), - [anon_sym_DQUOTE] = ACTIONS(4376), - [sym__str_single_quotes] = ACTIONS(4378), - [sym__str_back_ticks] = ACTIONS(4378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4383), + [anon_sym_false] = ACTIONS(4383), + [anon_sym_null] = ACTIONS(4385), + [aux_sym_cmd_identifier_token38] = ACTIONS(4387), + [aux_sym_cmd_identifier_token39] = ACTIONS(4387), + [aux_sym_cmd_identifier_token40] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4389), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1350] = { - [sym__val_range] = STATE(7607), - [sym__value] = STATE(4907), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4503), - [sym_val_variable] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(4161), - [sym__val_number] = STATE(4817), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__str_double_quotes] = STATE(4505), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4757), - [sym__inter_double_quotes] = STATE(4767), - [sym_val_list] = STATE(4862), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym_unquoted] = STATE(4913), - [sym__unquoted_anonymous_prefix] = STATE(7963), + [sym__val_range] = STATE(7916), + [sym__value] = STATE(5112), + [sym_val_nothing] = STATE(5122), + [sym_val_bool] = STATE(4803), + [sym_val_variable] = STATE(5122), + [sym_val_number] = STATE(5122), + [sym__val_number_decimal] = STATE(4301), + [sym__val_number] = STATE(5127), + [sym_val_duration] = STATE(5122), + [sym_val_filesize] = STATE(5122), + [sym_val_binary] = STATE(5122), + [sym_val_string] = STATE(5122), + [sym__str_double_quotes] = STATE(4755), + [sym_val_interpolated] = STATE(5122), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5023), + [sym_val_list] = STATE(5122), + [sym_val_record] = STATE(5122), + [sym_val_table] = STATE(5122), + [sym_val_closure] = STATE(5122), + [sym_unquoted] = STATE(5113), + [sym__unquoted_anonymous_prefix] = STATE(8005), [sym_comment] = STATE(1350), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_null] = ACTIONS(4386), - [aux_sym_cmd_identifier_token38] = ACTIONS(4388), - [aux_sym_cmd_identifier_token39] = ACTIONS(4388), - [aux_sym_cmd_identifier_token40] = ACTIONS(4388), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [aux_sym_ctrl_match_token1] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), - [anon_sym_DOT_DOT_LT] = ACTIONS(4392), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(4394), - [anon_sym_DOT2] = ACTIONS(4396), - [aux_sym__val_number_decimal_token3] = ACTIONS(4398), - [aux_sym__val_number_token1] = ACTIONS(4372), - [aux_sym__val_number_token2] = ACTIONS(4372), - [aux_sym__val_number_token3] = ACTIONS(4372), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(4400), - [anon_sym_DQUOTE] = ACTIONS(4376), - [sym__str_single_quotes] = ACTIONS(4378), - [sym__str_back_ticks] = ACTIONS(4378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_null] = ACTIONS(4405), + [aux_sym_cmd_identifier_token38] = ACTIONS(4407), + [aux_sym_cmd_identifier_token39] = ACTIONS(4407), + [aux_sym_cmd_identifier_token40] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_DOLLAR] = ACTIONS(4413), + [aux_sym_ctrl_match_token1] = ACTIONS(4415), + [anon_sym_DOT_DOT] = ACTIONS(4417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4419), + [anon_sym_DOT_DOT_LT] = ACTIONS(4419), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(4421), + [aux_sym__val_number_decimal_token3] = ACTIONS(4423), + [aux_sym__val_number_decimal_token4] = ACTIONS(4425), + [aux_sym__val_number_token1] = ACTIONS(4427), + [aux_sym__val_number_token2] = ACTIONS(4427), + [aux_sym__val_number_token3] = ACTIONS(4427), + [anon_sym_0b] = ACTIONS(2183), + [anon_sym_0o] = ACTIONS(2185), + [anon_sym_0x] = ACTIONS(2185), + [sym_val_date] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4431), + [sym__str_single_quotes] = ACTIONS(4433), + [sym__str_back_ticks] = ACTIONS(4433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4437), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(247), }, [1351] = { - [sym__val_range] = STATE(7607), - [sym__value] = STATE(4880), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(7287), - [sym_val_variable] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(5657), - [sym__val_number] = STATE(4817), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__str_double_quotes] = STATE(4505), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4757), - [sym__inter_double_quotes] = STATE(4767), - [sym_val_list] = STATE(4862), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym_unquoted] = STATE(4889), - [sym__unquoted_anonymous_prefix] = STATE(7963), + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6291), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(6781), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5651), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6292), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1351), - [anon_sym_true] = ACTIONS(4346), - [anon_sym_false] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4348), - [aux_sym_cmd_identifier_token38] = ACTIONS(4350), - [aux_sym_cmd_identifier_token39] = ACTIONS(4350), - [aux_sym_cmd_identifier_token40] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [aux_sym_ctrl_match_token1] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), - [anon_sym_DOT_DOT_LT] = ACTIONS(4362), - [aux_sym__val_number_decimal_token1] = ACTIONS(4364), - [aux_sym__val_number_decimal_token2] = ACTIONS(4366), - [anon_sym_DOT2] = ACTIONS(4368), - [aux_sym__val_number_decimal_token3] = ACTIONS(4370), - [aux_sym__val_number_token1] = ACTIONS(4372), - [aux_sym__val_number_token2] = ACTIONS(4372), - [aux_sym__val_number_token3] = ACTIONS(4372), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(4374), - [anon_sym_DQUOTE] = ACTIONS(4376), - [sym__str_single_quotes] = ACTIONS(4378), - [sym__str_back_ticks] = ACTIONS(4378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4383), + [anon_sym_false] = ACTIONS(4383), + [anon_sym_null] = ACTIONS(4385), + [aux_sym_cmd_identifier_token38] = ACTIONS(4387), + [aux_sym_cmd_identifier_token39] = ACTIONS(4387), + [aux_sym_cmd_identifier_token40] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4389), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1352] = { - [sym__val_range] = STATE(7607), - [sym__value] = STATE(4843), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4503), - [sym_val_variable] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(4161), - [sym__val_number] = STATE(4817), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__str_double_quotes] = STATE(4505), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4757), - [sym__inter_double_quotes] = STATE(4767), - [sym_val_list] = STATE(4862), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym_unquoted] = STATE(4844), - [sym__unquoted_anonymous_prefix] = STATE(7963), + [sym__val_range] = STATE(7916), + [sym__value] = STATE(5124), + [sym_val_nothing] = STATE(5122), + [sym_val_bool] = STATE(4803), + [sym_val_variable] = STATE(5122), + [sym_val_number] = STATE(5122), + [sym__val_number_decimal] = STATE(4301), + [sym__val_number] = STATE(5127), + [sym_val_duration] = STATE(5122), + [sym_val_filesize] = STATE(5122), + [sym_val_binary] = STATE(5122), + [sym_val_string] = STATE(5122), + [sym__str_double_quotes] = STATE(4755), + [sym_val_interpolated] = STATE(5122), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5023), + [sym_val_list] = STATE(5122), + [sym_val_record] = STATE(5122), + [sym_val_table] = STATE(5122), + [sym_val_closure] = STATE(5122), + [sym_unquoted] = STATE(5125), + [sym__unquoted_anonymous_prefix] = STATE(8005), [sym_comment] = STATE(1352), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_null] = ACTIONS(4386), - [aux_sym_cmd_identifier_token38] = ACTIONS(4388), - [aux_sym_cmd_identifier_token39] = ACTIONS(4388), - [aux_sym_cmd_identifier_token40] = ACTIONS(4388), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [aux_sym_ctrl_match_token1] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), - [anon_sym_DOT_DOT_LT] = ACTIONS(4392), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(4394), - [anon_sym_DOT2] = ACTIONS(4396), - [aux_sym__val_number_decimal_token3] = ACTIONS(4398), - [aux_sym__val_number_token1] = ACTIONS(4372), - [aux_sym__val_number_token2] = ACTIONS(4372), - [aux_sym__val_number_token3] = ACTIONS(4372), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(4400), - [anon_sym_DQUOTE] = ACTIONS(4376), - [sym__str_single_quotes] = ACTIONS(4378), - [sym__str_back_ticks] = ACTIONS(4378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_null] = ACTIONS(4405), + [aux_sym_cmd_identifier_token38] = ACTIONS(4407), + [aux_sym_cmd_identifier_token39] = ACTIONS(4407), + [aux_sym_cmd_identifier_token40] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_DOLLAR] = ACTIONS(4413), + [aux_sym_ctrl_match_token1] = ACTIONS(4415), + [anon_sym_DOT_DOT] = ACTIONS(4417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4419), + [anon_sym_DOT_DOT_LT] = ACTIONS(4419), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(4421), + [aux_sym__val_number_decimal_token3] = ACTIONS(4423), + [aux_sym__val_number_decimal_token4] = ACTIONS(4425), + [aux_sym__val_number_token1] = ACTIONS(4427), + [aux_sym__val_number_token2] = ACTIONS(4427), + [aux_sym__val_number_token3] = ACTIONS(4427), + [anon_sym_0b] = ACTIONS(2183), + [anon_sym_0o] = ACTIONS(2185), + [anon_sym_0x] = ACTIONS(2185), + [sym_val_date] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4431), + [sym__str_single_quotes] = ACTIONS(4433), + [sym__str_back_ticks] = ACTIONS(4433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4437), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(247), }, [1353] = { - [sym__val_range] = STATE(7623), - [sym__value] = STATE(6225), - [sym_val_nothing] = STATE(5258), - [sym_val_bool] = STATE(6976), - [sym_val_variable] = STATE(5258), - [sym_val_number] = STATE(5258), - [sym__val_number_decimal] = STATE(5542), - [sym__val_number] = STATE(5117), - [sym_val_duration] = STATE(5258), - [sym_val_filesize] = STATE(5258), - [sym_val_binary] = STATE(5258), - [sym_val_string] = STATE(5258), - [sym__str_double_quotes] = STATE(4973), - [sym_val_interpolated] = STATE(5258), - [sym__inter_single_quotes] = STATE(5138), - [sym__inter_double_quotes] = STATE(5139), - [sym_val_list] = STATE(5258), - [sym_val_record] = STATE(5258), - [sym_val_table] = STATE(5258), - [sym_val_closure] = STATE(5258), - [sym_unquoted] = STATE(6229), - [sym__unquoted_anonymous_prefix] = STATE(7887), + [sym__val_range] = STATE(7916), + [sym__value] = STATE(5189), + [sym_val_nothing] = STATE(5122), + [sym_val_bool] = STATE(4803), + [sym_val_variable] = STATE(5122), + [sym_val_number] = STATE(5122), + [sym__val_number_decimal] = STATE(4301), + [sym__val_number] = STATE(5127), + [sym_val_duration] = STATE(5122), + [sym_val_filesize] = STATE(5122), + [sym_val_binary] = STATE(5122), + [sym_val_string] = STATE(5122), + [sym__str_double_quotes] = STATE(4755), + [sym_val_interpolated] = STATE(5122), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5023), + [sym_val_list] = STATE(5122), + [sym_val_record] = STATE(5122), + [sym_val_table] = STATE(5122), + [sym_val_closure] = STATE(5122), + [sym_unquoted] = STATE(5191), + [sym__unquoted_anonymous_prefix] = STATE(8005), [sym_comment] = STATE(1353), - [anon_sym_true] = ACTIONS(4189), - [anon_sym_false] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4191), - [aux_sym_cmd_identifier_token38] = ACTIONS(4193), - [aux_sym_cmd_identifier_token39] = ACTIONS(4193), - [aux_sym_cmd_identifier_token40] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4195), - [anon_sym_LPAREN] = ACTIONS(4053), - [anon_sym_DOLLAR] = ACTIONS(4197), - [aux_sym_ctrl_match_token1] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4203), - [anon_sym_DOT_DOT_LT] = ACTIONS(4203), - [aux_sym__val_number_decimal_token1] = ACTIONS(4205), - [aux_sym__val_number_decimal_token2] = ACTIONS(4207), - [anon_sym_DOT2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [anon_sym_0b] = ACTIONS(3577), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(4213), - [anon_sym_DQUOTE] = ACTIONS(4215), - [sym__str_single_quotes] = ACTIONS(4217), - [sym__str_back_ticks] = ACTIONS(4217), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4073), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_null] = ACTIONS(4405), + [aux_sym_cmd_identifier_token38] = ACTIONS(4407), + [aux_sym_cmd_identifier_token39] = ACTIONS(4407), + [aux_sym_cmd_identifier_token40] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_DOLLAR] = ACTIONS(4413), + [aux_sym_ctrl_match_token1] = ACTIONS(4415), + [anon_sym_DOT_DOT] = ACTIONS(4417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4419), + [anon_sym_DOT_DOT_LT] = ACTIONS(4419), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(4421), + [aux_sym__val_number_decimal_token3] = ACTIONS(4423), + [aux_sym__val_number_decimal_token4] = ACTIONS(4425), + [aux_sym__val_number_token1] = ACTIONS(4427), + [aux_sym__val_number_token2] = ACTIONS(4427), + [aux_sym__val_number_token3] = ACTIONS(4427), + [anon_sym_0b] = ACTIONS(2183), + [anon_sym_0o] = ACTIONS(2185), + [anon_sym_0x] = ACTIONS(2185), + [sym_val_date] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4431), + [sym__str_single_quotes] = ACTIONS(4433), + [sym__str_back_ticks] = ACTIONS(4433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4437), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(247), }, [1354] = { - [sym__val_range] = STATE(7607), - [sym__value] = STATE(4912), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4503), - [sym_val_variable] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(4161), - [sym__val_number] = STATE(4817), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__str_double_quotes] = STATE(4505), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4757), - [sym__inter_double_quotes] = STATE(4767), - [sym_val_list] = STATE(4862), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym_unquoted] = STATE(4750), - [sym__unquoted_anonymous_prefix] = STATE(7963), + [sym__val_range] = STATE(7816), + [sym__value] = STATE(5010), + [sym_val_nothing] = STATE(4994), + [sym_val_bool] = STATE(6973), + [sym_val_variable] = STATE(4994), + [sym_val_number] = STATE(4994), + [sym__val_number_decimal] = STATE(5721), + [sym__val_number] = STATE(4878), + [sym_val_duration] = STATE(4994), + [sym_val_filesize] = STATE(4994), + [sym_val_binary] = STATE(4994), + [sym_val_string] = STATE(4994), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4994), + [sym__inter_single_quotes] = STATE(4902), + [sym__inter_double_quotes] = STATE(4928), + [sym_val_list] = STATE(4994), + [sym_val_record] = STATE(4994), + [sym_val_table] = STATE(4994), + [sym_val_closure] = STATE(4994), + [sym_unquoted] = STATE(5011), + [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1354), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_null] = ACTIONS(4386), - [aux_sym_cmd_identifier_token38] = ACTIONS(4388), - [aux_sym_cmd_identifier_token39] = ACTIONS(4388), - [aux_sym_cmd_identifier_token40] = ACTIONS(4388), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [aux_sym_ctrl_match_token1] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), - [anon_sym_DOT_DOT_LT] = ACTIONS(4392), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(4394), - [anon_sym_DOT2] = ACTIONS(4396), - [aux_sym__val_number_decimal_token3] = ACTIONS(4398), - [aux_sym__val_number_token1] = ACTIONS(4372), - [aux_sym__val_number_token2] = ACTIONS(4372), - [aux_sym__val_number_token3] = ACTIONS(4372), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(4400), - [anon_sym_DQUOTE] = ACTIONS(4376), - [sym__str_single_quotes] = ACTIONS(4378), - [sym__str_back_ticks] = ACTIONS(4378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_null] = ACTIONS(4441), + [aux_sym_cmd_identifier_token38] = ACTIONS(4443), + [aux_sym_cmd_identifier_token39] = ACTIONS(4443), + [aux_sym_cmd_identifier_token40] = ACTIONS(4443), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4447), + [anon_sym_DOLLAR] = ACTIONS(4449), + [aux_sym_ctrl_match_token1] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), + [aux_sym__val_number_decimal_token1] = ACTIONS(4457), + [aux_sym__val_number_decimal_token2] = ACTIONS(4459), + [aux_sym__val_number_decimal_token3] = ACTIONS(4461), + [aux_sym__val_number_decimal_token4] = ACTIONS(4463), + [aux_sym__val_number_token1] = ACTIONS(4465), + [aux_sym__val_number_token2] = ACTIONS(4465), + [aux_sym__val_number_token3] = ACTIONS(4465), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [sym__str_single_quotes] = ACTIONS(4471), + [sym__str_back_ticks] = ACTIONS(4471), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), }, [1355] = { - [sym__val_range] = STATE(7634), - [sym__value] = STATE(3787), - [sym_val_nothing] = STATE(3812), - [sym_val_bool] = STATE(3743), - [sym_val_variable] = STATE(3812), - [sym_val_number] = STATE(3812), - [sym__val_number_decimal] = STATE(3492), - [sym__val_number] = STATE(3798), - [sym_val_duration] = STATE(3812), - [sym_val_filesize] = STATE(3812), - [sym_val_binary] = STATE(3812), - [sym_val_string] = STATE(3812), - [sym__str_double_quotes] = STATE(3899), - [sym_val_interpolated] = STATE(3812), - [sym__inter_single_quotes] = STATE(3804), - [sym__inter_double_quotes] = STATE(3805), - [sym_val_list] = STATE(3812), - [sym_val_record] = STATE(3812), - [sym_val_table] = STATE(3812), - [sym_val_closure] = STATE(3812), - [sym_unquoted] = STATE(3800), - [sym__unquoted_anonymous_prefix] = STATE(7911), + [sym__val_range] = STATE(7916), + [sym__value] = STATE(5136), + [sym_val_nothing] = STATE(5122), + [sym_val_bool] = STATE(4803), + [sym_val_variable] = STATE(5122), + [sym_val_number] = STATE(5122), + [sym__val_number_decimal] = STATE(4301), + [sym__val_number] = STATE(5127), + [sym_val_duration] = STATE(5122), + [sym_val_filesize] = STATE(5122), + [sym_val_binary] = STATE(5122), + [sym_val_string] = STATE(5122), + [sym__str_double_quotes] = STATE(4755), + [sym_val_interpolated] = STATE(5122), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5023), + [sym_val_list] = STATE(5122), + [sym_val_record] = STATE(5122), + [sym_val_table] = STATE(5122), + [sym_val_closure] = STATE(5122), + [sym_unquoted] = STATE(5185), + [sym__unquoted_anonymous_prefix] = STATE(8005), [sym_comment] = STATE(1355), - [anon_sym_true] = ACTIONS(4402), - [anon_sym_false] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4404), - [aux_sym_cmd_identifier_token38] = ACTIONS(4406), - [aux_sym_cmd_identifier_token39] = ACTIONS(4406), - [aux_sym_cmd_identifier_token40] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4408), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_DOLLAR] = ACTIONS(4412), - [aux_sym_ctrl_match_token1] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4418), - [anon_sym_DOT_DOT_LT] = ACTIONS(4418), - [aux_sym__val_number_decimal_token1] = ACTIONS(4420), - [aux_sym__val_number_decimal_token2] = ACTIONS(4422), - [anon_sym_DOT2] = ACTIONS(4424), - [aux_sym__val_number_decimal_token3] = ACTIONS(4426), - [aux_sym__val_number_token1] = ACTIONS(4428), - [aux_sym__val_number_token2] = ACTIONS(4428), - [aux_sym__val_number_token3] = ACTIONS(4428), - [anon_sym_0b] = ACTIONS(4430), - [anon_sym_0o] = ACTIONS(4432), - [anon_sym_0x] = ACTIONS(4432), - [sym_val_date] = ACTIONS(4434), - [anon_sym_DQUOTE] = ACTIONS(4436), - [sym__str_single_quotes] = ACTIONS(4438), - [sym__str_back_ticks] = ACTIONS(4438), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4442), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4444), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_null] = ACTIONS(4405), + [aux_sym_cmd_identifier_token38] = ACTIONS(4407), + [aux_sym_cmd_identifier_token39] = ACTIONS(4407), + [aux_sym_cmd_identifier_token40] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_DOLLAR] = ACTIONS(4413), + [aux_sym_ctrl_match_token1] = ACTIONS(4415), + [anon_sym_DOT_DOT] = ACTIONS(4417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4419), + [anon_sym_DOT_DOT_LT] = ACTIONS(4419), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(4421), + [aux_sym__val_number_decimal_token3] = ACTIONS(4423), + [aux_sym__val_number_decimal_token4] = ACTIONS(4425), + [aux_sym__val_number_token1] = ACTIONS(4427), + [aux_sym__val_number_token2] = ACTIONS(4427), + [aux_sym__val_number_token3] = ACTIONS(4427), + [anon_sym_0b] = ACTIONS(2183), + [anon_sym_0o] = ACTIONS(2185), + [anon_sym_0x] = ACTIONS(2185), + [sym_val_date] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4431), + [sym__str_single_quotes] = ACTIONS(4433), + [sym__str_back_ticks] = ACTIONS(4433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4437), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(247), }, [1356] = { - [sym__val_range] = STATE(7607), - [sym__value] = STATE(4880), - [sym_val_nothing] = STATE(4862), - [sym_val_bool] = STATE(4503), - [sym_val_variable] = STATE(4862), - [sym_val_number] = STATE(4862), - [sym__val_number_decimal] = STATE(4161), - [sym__val_number] = STATE(4817), - [sym_val_duration] = STATE(4862), - [sym_val_filesize] = STATE(4862), - [sym_val_binary] = STATE(4862), - [sym_val_string] = STATE(4862), - [sym__str_double_quotes] = STATE(4505), - [sym_val_interpolated] = STATE(4862), - [sym__inter_single_quotes] = STATE(4757), - [sym__inter_double_quotes] = STATE(4767), - [sym_val_list] = STATE(4862), - [sym_val_record] = STATE(4862), - [sym_val_table] = STATE(4862), - [sym_val_closure] = STATE(4862), - [sym_unquoted] = STATE(4889), - [sym__unquoted_anonymous_prefix] = STATE(7963), + [sym__val_range] = STATE(7816), + [sym__value] = STATE(4946), + [sym_val_nothing] = STATE(4994), + [sym_val_bool] = STATE(6973), + [sym_val_variable] = STATE(4994), + [sym_val_number] = STATE(4994), + [sym__val_number_decimal] = STATE(5721), + [sym__val_number] = STATE(4878), + [sym_val_duration] = STATE(4994), + [sym_val_filesize] = STATE(4994), + [sym_val_binary] = STATE(4994), + [sym_val_string] = STATE(4994), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4994), + [sym__inter_single_quotes] = STATE(4902), + [sym__inter_double_quotes] = STATE(4928), + [sym_val_list] = STATE(4994), + [sym_val_record] = STATE(4994), + [sym_val_table] = STATE(4994), + [sym_val_closure] = STATE(4994), + [sym_unquoted] = STATE(4947), + [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1356), - [anon_sym_true] = ACTIONS(4384), - [anon_sym_false] = ACTIONS(4384), - [anon_sym_null] = ACTIONS(4386), - [aux_sym_cmd_identifier_token38] = ACTIONS(4388), - [aux_sym_cmd_identifier_token39] = ACTIONS(4388), - [aux_sym_cmd_identifier_token40] = ACTIONS(4388), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [aux_sym_ctrl_match_token1] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4392), - [anon_sym_DOT_DOT_LT] = ACTIONS(4392), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(4394), - [anon_sym_DOT2] = ACTIONS(4396), - [aux_sym__val_number_decimal_token3] = ACTIONS(4398), - [aux_sym__val_number_token1] = ACTIONS(4372), - [aux_sym__val_number_token2] = ACTIONS(4372), - [aux_sym__val_number_token3] = ACTIONS(4372), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(4400), - [anon_sym_DQUOTE] = ACTIONS(4376), - [sym__str_single_quotes] = ACTIONS(4378), - [sym__str_back_ticks] = ACTIONS(4378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_null] = ACTIONS(4441), + [aux_sym_cmd_identifier_token38] = ACTIONS(4443), + [aux_sym_cmd_identifier_token39] = ACTIONS(4443), + [aux_sym_cmd_identifier_token40] = ACTIONS(4443), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4447), + [anon_sym_DOLLAR] = ACTIONS(4449), + [aux_sym_ctrl_match_token1] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), + [aux_sym__val_number_decimal_token1] = ACTIONS(4457), + [aux_sym__val_number_decimal_token2] = ACTIONS(4459), + [aux_sym__val_number_decimal_token3] = ACTIONS(4461), + [aux_sym__val_number_decimal_token4] = ACTIONS(4463), + [aux_sym__val_number_token1] = ACTIONS(4465), + [aux_sym__val_number_token2] = ACTIONS(4465), + [aux_sym__val_number_token3] = ACTIONS(4465), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [sym__str_single_quotes] = ACTIONS(4471), + [sym__str_back_ticks] = ACTIONS(4471), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), }, [1357] = { - [sym__val_range] = STATE(7634), - [sym__value] = STATE(3834), - [sym_val_nothing] = STATE(3812), - [sym_val_bool] = STATE(3743), - [sym_val_variable] = STATE(3812), - [sym_val_number] = STATE(3812), - [sym__val_number_decimal] = STATE(3492), - [sym__val_number] = STATE(3798), - [sym_val_duration] = STATE(3812), - [sym_val_filesize] = STATE(3812), - [sym_val_binary] = STATE(3812), - [sym_val_string] = STATE(3812), - [sym__str_double_quotes] = STATE(3899), - [sym_val_interpolated] = STATE(3812), - [sym__inter_single_quotes] = STATE(3804), - [sym__inter_double_quotes] = STATE(3805), - [sym_val_list] = STATE(3812), - [sym_val_record] = STATE(3812), - [sym_val_table] = STATE(3812), - [sym_val_closure] = STATE(3812), - [sym_unquoted] = STATE(3836), - [sym__unquoted_anonymous_prefix] = STATE(7911), + [sym__val_range] = STATE(7816), + [sym__value] = STATE(4932), + [sym_val_nothing] = STATE(4994), + [sym_val_bool] = STATE(6973), + [sym_val_variable] = STATE(4994), + [sym_val_number] = STATE(4994), + [sym__val_number_decimal] = STATE(5721), + [sym__val_number] = STATE(4878), + [sym_val_duration] = STATE(4994), + [sym_val_filesize] = STATE(4994), + [sym_val_binary] = STATE(4994), + [sym_val_string] = STATE(4994), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4994), + [sym__inter_single_quotes] = STATE(4902), + [sym__inter_double_quotes] = STATE(4928), + [sym_val_list] = STATE(4994), + [sym_val_record] = STATE(4994), + [sym_val_table] = STATE(4994), + [sym_val_closure] = STATE(4994), + [sym_unquoted] = STATE(4933), + [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1357), - [anon_sym_true] = ACTIONS(4402), - [anon_sym_false] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4404), - [aux_sym_cmd_identifier_token38] = ACTIONS(4406), - [aux_sym_cmd_identifier_token39] = ACTIONS(4406), - [aux_sym_cmd_identifier_token40] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4408), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_DOLLAR] = ACTIONS(4412), - [aux_sym_ctrl_match_token1] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4418), - [anon_sym_DOT_DOT_LT] = ACTIONS(4418), - [aux_sym__val_number_decimal_token1] = ACTIONS(4420), - [aux_sym__val_number_decimal_token2] = ACTIONS(4422), - [anon_sym_DOT2] = ACTIONS(4424), - [aux_sym__val_number_decimal_token3] = ACTIONS(4426), - [aux_sym__val_number_token1] = ACTIONS(4428), - [aux_sym__val_number_token2] = ACTIONS(4428), - [aux_sym__val_number_token3] = ACTIONS(4428), - [anon_sym_0b] = ACTIONS(4430), - [anon_sym_0o] = ACTIONS(4432), - [anon_sym_0x] = ACTIONS(4432), - [sym_val_date] = ACTIONS(4434), - [anon_sym_DQUOTE] = ACTIONS(4436), - [sym__str_single_quotes] = ACTIONS(4438), - [sym__str_back_ticks] = ACTIONS(4438), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4442), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4444), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_null] = ACTIONS(4441), + [aux_sym_cmd_identifier_token38] = ACTIONS(4443), + [aux_sym_cmd_identifier_token39] = ACTIONS(4443), + [aux_sym_cmd_identifier_token40] = ACTIONS(4443), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4447), + [anon_sym_DOLLAR] = ACTIONS(4449), + [aux_sym_ctrl_match_token1] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), + [aux_sym__val_number_decimal_token1] = ACTIONS(4457), + [aux_sym__val_number_decimal_token2] = ACTIONS(4459), + [aux_sym__val_number_decimal_token3] = ACTIONS(4461), + [aux_sym__val_number_decimal_token4] = ACTIONS(4463), + [aux_sym__val_number_token1] = ACTIONS(4465), + [aux_sym__val_number_token2] = ACTIONS(4465), + [aux_sym__val_number_token3] = ACTIONS(4465), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [sym__str_single_quotes] = ACTIONS(4471), + [sym__str_back_ticks] = ACTIONS(4471), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), }, [1358] = { - [sym__val_range] = STATE(7634), - [sym__value] = STATE(3832), - [sym_val_nothing] = STATE(3812), - [sym_val_bool] = STATE(3743), - [sym_val_variable] = STATE(3812), - [sym_val_number] = STATE(3812), - [sym__val_number_decimal] = STATE(3492), - [sym__val_number] = STATE(3798), - [sym_val_duration] = STATE(3812), - [sym_val_filesize] = STATE(3812), - [sym_val_binary] = STATE(3812), - [sym_val_string] = STATE(3812), - [sym__str_double_quotes] = STATE(3899), - [sym_val_interpolated] = STATE(3812), - [sym__inter_single_quotes] = STATE(3804), - [sym__inter_double_quotes] = STATE(3805), - [sym_val_list] = STATE(3812), - [sym_val_record] = STATE(3812), - [sym_val_table] = STATE(3812), - [sym_val_closure] = STATE(3812), - [sym_unquoted] = STATE(3837), - [sym__unquoted_anonymous_prefix] = STATE(7911), + [sym__val_range] = STATE(7816), + [sym__value] = STATE(5010), + [sym_val_nothing] = STATE(4994), + [sym_val_bool] = STATE(4669), + [sym_val_variable] = STATE(4994), + [sym_val_number] = STATE(4994), + [sym__val_number_decimal] = STATE(4225), + [sym__val_number] = STATE(4878), + [sym_val_duration] = STATE(4994), + [sym_val_filesize] = STATE(4994), + [sym_val_binary] = STATE(4994), + [sym_val_string] = STATE(4994), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4994), + [sym__inter_single_quotes] = STATE(4902), + [sym__inter_double_quotes] = STATE(4928), + [sym_val_list] = STATE(4994), + [sym_val_record] = STATE(4994), + [sym_val_table] = STATE(4994), + [sym_val_closure] = STATE(4994), + [sym_unquoted] = STATE(5011), + [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1358), - [anon_sym_true] = ACTIONS(4402), - [anon_sym_false] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4404), - [aux_sym_cmd_identifier_token38] = ACTIONS(4406), - [aux_sym_cmd_identifier_token39] = ACTIONS(4406), - [aux_sym_cmd_identifier_token40] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4408), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_DOLLAR] = ACTIONS(4412), - [aux_sym_ctrl_match_token1] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4418), - [anon_sym_DOT_DOT_LT] = ACTIONS(4418), - [aux_sym__val_number_decimal_token1] = ACTIONS(4420), - [aux_sym__val_number_decimal_token2] = ACTIONS(4422), - [anon_sym_DOT2] = ACTIONS(4424), - [aux_sym__val_number_decimal_token3] = ACTIONS(4426), - [aux_sym__val_number_token1] = ACTIONS(4428), - [aux_sym__val_number_token2] = ACTIONS(4428), - [aux_sym__val_number_token3] = ACTIONS(4428), - [anon_sym_0b] = ACTIONS(4430), - [anon_sym_0o] = ACTIONS(4432), - [anon_sym_0x] = ACTIONS(4432), - [sym_val_date] = ACTIONS(4434), - [anon_sym_DQUOTE] = ACTIONS(4436), - [sym__str_single_quotes] = ACTIONS(4438), - [sym__str_back_ticks] = ACTIONS(4438), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4442), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4444), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_null] = ACTIONS(4479), + [aux_sym_cmd_identifier_token38] = ACTIONS(4481), + [aux_sym_cmd_identifier_token39] = ACTIONS(4481), + [aux_sym_cmd_identifier_token40] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4447), + [anon_sym_DOLLAR] = ACTIONS(4449), + [aux_sym_ctrl_match_token1] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(4483), + [aux_sym__val_number_decimal_token3] = ACTIONS(4485), + [aux_sym__val_number_decimal_token4] = ACTIONS(4487), + [aux_sym__val_number_token1] = ACTIONS(4465), + [aux_sym__val_number_token2] = ACTIONS(4465), + [aux_sym__val_number_token3] = ACTIONS(4465), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4489), + [anon_sym_DQUOTE] = ACTIONS(4469), + [sym__str_single_quotes] = ACTIONS(4471), + [sym__str_back_ticks] = ACTIONS(4471), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), }, [1359] = { - [sym__val_range] = STATE(7641), - [sym__value] = STATE(1793), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1701), - [sym_val_variable] = STATE(1802), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym_unquoted] = STATE(1794), - [sym__unquoted_anonymous_prefix] = STATE(7882), + [sym__val_range] = STATE(7816), + [sym__value] = STATE(4991), + [sym_val_nothing] = STATE(4994), + [sym_val_bool] = STATE(6973), + [sym_val_variable] = STATE(4994), + [sym_val_number] = STATE(4994), + [sym__val_number_decimal] = STATE(5721), + [sym__val_number] = STATE(4878), + [sym_val_duration] = STATE(4994), + [sym_val_filesize] = STATE(4994), + [sym_val_binary] = STATE(4994), + [sym_val_string] = STATE(4994), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4994), + [sym__inter_single_quotes] = STATE(4902), + [sym__inter_double_quotes] = STATE(4928), + [sym_val_list] = STATE(4994), + [sym_val_record] = STATE(4994), + [sym_val_table] = STATE(4994), + [sym_val_closure] = STATE(4994), + [sym_unquoted] = STATE(4992), + [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1359), - [anon_sym_true] = ACTIONS(4446), - [anon_sym_false] = ACTIONS(4446), - [anon_sym_null] = ACTIONS(4448), - [aux_sym_cmd_identifier_token38] = ACTIONS(4450), - [aux_sym_cmd_identifier_token39] = ACTIONS(4450), - [aux_sym_cmd_identifier_token40] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(4452), - [anon_sym_DOLLAR] = ACTIONS(3923), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), - [anon_sym_DOT_DOT_LT] = ACTIONS(4456), - [aux_sym__val_number_decimal_token1] = ACTIONS(4458), - [aux_sym__val_number_decimal_token2] = ACTIONS(4460), - [anon_sym_DOT2] = ACTIONS(4462), - [aux_sym__val_number_decimal_token3] = ACTIONS(4464), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(4466), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4468), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_null] = ACTIONS(4441), + [aux_sym_cmd_identifier_token38] = ACTIONS(4443), + [aux_sym_cmd_identifier_token39] = ACTIONS(4443), + [aux_sym_cmd_identifier_token40] = ACTIONS(4443), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4447), + [anon_sym_DOLLAR] = ACTIONS(4449), + [aux_sym_ctrl_match_token1] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), + [aux_sym__val_number_decimal_token1] = ACTIONS(4457), + [aux_sym__val_number_decimal_token2] = ACTIONS(4459), + [aux_sym__val_number_decimal_token3] = ACTIONS(4461), + [aux_sym__val_number_decimal_token4] = ACTIONS(4463), + [aux_sym__val_number_token1] = ACTIONS(4465), + [aux_sym__val_number_token2] = ACTIONS(4465), + [aux_sym__val_number_token3] = ACTIONS(4465), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [sym__str_single_quotes] = ACTIONS(4471), + [sym__str_back_ticks] = ACTIONS(4471), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), }, [1360] = { - [sym__val_range] = STATE(7634), - [sym__value] = STATE(3814), - [sym_val_nothing] = STATE(3812), - [sym_val_bool] = STATE(3743), - [sym_val_variable] = STATE(3812), - [sym_val_number] = STATE(3812), - [sym__val_number_decimal] = STATE(3492), - [sym__val_number] = STATE(3798), - [sym_val_duration] = STATE(3812), - [sym_val_filesize] = STATE(3812), - [sym_val_binary] = STATE(3812), - [sym_val_string] = STATE(3812), - [sym__str_double_quotes] = STATE(3899), - [sym_val_interpolated] = STATE(3812), - [sym__inter_single_quotes] = STATE(3804), - [sym__inter_double_quotes] = STATE(3805), - [sym_val_list] = STATE(3812), - [sym_val_record] = STATE(3812), - [sym_val_table] = STATE(3812), - [sym_val_closure] = STATE(3812), - [sym_unquoted] = STATE(3815), - [sym__unquoted_anonymous_prefix] = STATE(7911), + [sym__val_range] = STATE(7816), + [sym__value] = STATE(4946), + [sym_val_nothing] = STATE(4994), + [sym_val_bool] = STATE(4669), + [sym_val_variable] = STATE(4994), + [sym_val_number] = STATE(4994), + [sym__val_number_decimal] = STATE(4225), + [sym__val_number] = STATE(4878), + [sym_val_duration] = STATE(4994), + [sym_val_filesize] = STATE(4994), + [sym_val_binary] = STATE(4994), + [sym_val_string] = STATE(4994), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4994), + [sym__inter_single_quotes] = STATE(4902), + [sym__inter_double_quotes] = STATE(4928), + [sym_val_list] = STATE(4994), + [sym_val_record] = STATE(4994), + [sym_val_table] = STATE(4994), + [sym_val_closure] = STATE(4994), + [sym_unquoted] = STATE(4947), + [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1360), - [anon_sym_true] = ACTIONS(4402), - [anon_sym_false] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4404), - [aux_sym_cmd_identifier_token38] = ACTIONS(4406), - [aux_sym_cmd_identifier_token39] = ACTIONS(4406), - [aux_sym_cmd_identifier_token40] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4408), - [anon_sym_LPAREN] = ACTIONS(4410), - [anon_sym_DOLLAR] = ACTIONS(4412), - [aux_sym_ctrl_match_token1] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4418), - [anon_sym_DOT_DOT_LT] = ACTIONS(4418), - [aux_sym__val_number_decimal_token1] = ACTIONS(4420), - [aux_sym__val_number_decimal_token2] = ACTIONS(4422), - [anon_sym_DOT2] = ACTIONS(4424), - [aux_sym__val_number_decimal_token3] = ACTIONS(4426), - [aux_sym__val_number_token1] = ACTIONS(4428), - [aux_sym__val_number_token2] = ACTIONS(4428), - [aux_sym__val_number_token3] = ACTIONS(4428), - [anon_sym_0b] = ACTIONS(4430), - [anon_sym_0o] = ACTIONS(4432), - [anon_sym_0x] = ACTIONS(4432), - [sym_val_date] = ACTIONS(4434), - [anon_sym_DQUOTE] = ACTIONS(4436), - [sym__str_single_quotes] = ACTIONS(4438), - [sym__str_back_ticks] = ACTIONS(4438), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4440), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4442), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4444), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_null] = ACTIONS(4479), + [aux_sym_cmd_identifier_token38] = ACTIONS(4481), + [aux_sym_cmd_identifier_token39] = ACTIONS(4481), + [aux_sym_cmd_identifier_token40] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4447), + [anon_sym_DOLLAR] = ACTIONS(4449), + [aux_sym_ctrl_match_token1] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(4483), + [aux_sym__val_number_decimal_token3] = ACTIONS(4485), + [aux_sym__val_number_decimal_token4] = ACTIONS(4487), + [aux_sym__val_number_token1] = ACTIONS(4465), + [aux_sym__val_number_token2] = ACTIONS(4465), + [aux_sym__val_number_token3] = ACTIONS(4465), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4489), + [anon_sym_DQUOTE] = ACTIONS(4469), + [sym__str_single_quotes] = ACTIONS(4471), + [sym__str_back_ticks] = ACTIONS(4471), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), }, [1361] = { - [sym__val_range] = STATE(7641), - [sym__value] = STATE(1795), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1701), - [sym_val_variable] = STATE(1802), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym_unquoted] = STATE(1796), - [sym__unquoted_anonymous_prefix] = STATE(7882), + [sym__val_range] = STATE(7816), + [sym__value] = STATE(4932), + [sym_val_nothing] = STATE(4994), + [sym_val_bool] = STATE(4669), + [sym_val_variable] = STATE(4994), + [sym_val_number] = STATE(4994), + [sym__val_number_decimal] = STATE(4225), + [sym__val_number] = STATE(4878), + [sym_val_duration] = STATE(4994), + [sym_val_filesize] = STATE(4994), + [sym_val_binary] = STATE(4994), + [sym_val_string] = STATE(4994), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4994), + [sym__inter_single_quotes] = STATE(4902), + [sym__inter_double_quotes] = STATE(4928), + [sym_val_list] = STATE(4994), + [sym_val_record] = STATE(4994), + [sym_val_table] = STATE(4994), + [sym_val_closure] = STATE(4994), + [sym_unquoted] = STATE(4933), + [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1361), - [anon_sym_true] = ACTIONS(4446), - [anon_sym_false] = ACTIONS(4446), - [anon_sym_null] = ACTIONS(4448), - [aux_sym_cmd_identifier_token38] = ACTIONS(4450), - [aux_sym_cmd_identifier_token39] = ACTIONS(4450), - [aux_sym_cmd_identifier_token40] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(4452), - [anon_sym_DOLLAR] = ACTIONS(3923), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), - [anon_sym_DOT_DOT_LT] = ACTIONS(4456), - [aux_sym__val_number_decimal_token1] = ACTIONS(4458), - [aux_sym__val_number_decimal_token2] = ACTIONS(4460), - [anon_sym_DOT2] = ACTIONS(4462), - [aux_sym__val_number_decimal_token3] = ACTIONS(4464), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(4466), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4468), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_null] = ACTIONS(4479), + [aux_sym_cmd_identifier_token38] = ACTIONS(4481), + [aux_sym_cmd_identifier_token39] = ACTIONS(4481), + [aux_sym_cmd_identifier_token40] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4447), + [anon_sym_DOLLAR] = ACTIONS(4449), + [aux_sym_ctrl_match_token1] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(4483), + [aux_sym__val_number_decimal_token3] = ACTIONS(4485), + [aux_sym__val_number_decimal_token4] = ACTIONS(4487), + [aux_sym__val_number_token1] = ACTIONS(4465), + [aux_sym__val_number_token2] = ACTIONS(4465), + [aux_sym__val_number_token3] = ACTIONS(4465), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4489), + [anon_sym_DQUOTE] = ACTIONS(4469), + [sym__str_single_quotes] = ACTIONS(4471), + [sym__str_back_ticks] = ACTIONS(4471), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), }, [1362] = { - [sym__val_range] = STATE(7641), - [sym__value] = STATE(1797), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1701), - [sym_val_variable] = STATE(1802), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym_unquoted] = STATE(1798), - [sym__unquoted_anonymous_prefix] = STATE(7882), + [sym__val_range] = STATE(8032), + [sym__value] = STATE(3967), + [sym_val_nothing] = STATE(3906), + [sym_val_bool] = STATE(3772), + [sym_val_variable] = STATE(3906), + [sym_val_number] = STATE(3906), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(3888), + [sym_val_duration] = STATE(3906), + [sym_val_filesize] = STATE(3906), + [sym_val_binary] = STATE(3906), + [sym_val_string] = STATE(3906), + [sym__str_double_quotes] = STATE(3735), + [sym_val_interpolated] = STATE(3906), + [sym__inter_single_quotes] = STATE(3896), + [sym__inter_double_quotes] = STATE(3897), + [sym_val_list] = STATE(3906), + [sym_val_record] = STATE(3906), + [sym_val_table] = STATE(3906), + [sym_val_closure] = STATE(3906), + [sym_unquoted] = STATE(3971), + [sym__unquoted_anonymous_prefix] = STATE(7930), [sym_comment] = STATE(1362), - [anon_sym_true] = ACTIONS(4446), - [anon_sym_false] = ACTIONS(4446), - [anon_sym_null] = ACTIONS(4448), - [aux_sym_cmd_identifier_token38] = ACTIONS(4450), - [aux_sym_cmd_identifier_token39] = ACTIONS(4450), - [aux_sym_cmd_identifier_token40] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(4452), - [anon_sym_DOLLAR] = ACTIONS(3923), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), - [anon_sym_DOT_DOT_LT] = ACTIONS(4456), - [aux_sym__val_number_decimal_token1] = ACTIONS(4458), - [aux_sym__val_number_decimal_token2] = ACTIONS(4460), - [anon_sym_DOT2] = ACTIONS(4462), - [aux_sym__val_number_decimal_token3] = ACTIONS(4464), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(4466), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4468), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4491), + [anon_sym_false] = ACTIONS(4491), + [anon_sym_null] = ACTIONS(4493), + [aux_sym_cmd_identifier_token38] = ACTIONS(4495), + [aux_sym_cmd_identifier_token39] = ACTIONS(4495), + [aux_sym_cmd_identifier_token40] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4501), + [aux_sym_ctrl_match_token1] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4507), + [anon_sym_DOT_DOT_LT] = ACTIONS(4507), + [aux_sym__val_number_decimal_token1] = ACTIONS(4509), + [aux_sym__val_number_decimal_token2] = ACTIONS(4511), + [aux_sym__val_number_decimal_token3] = ACTIONS(4513), + [aux_sym__val_number_decimal_token4] = ACTIONS(4515), + [aux_sym__val_number_token1] = ACTIONS(4517), + [aux_sym__val_number_token2] = ACTIONS(4517), + [aux_sym__val_number_token3] = ACTIONS(4517), + [anon_sym_0b] = ACTIONS(4519), + [anon_sym_0o] = ACTIONS(4521), + [anon_sym_0x] = ACTIONS(4521), + [sym_val_date] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4525), + [sym__str_single_quotes] = ACTIONS(4527), + [sym__str_back_ticks] = ACTIONS(4527), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4531), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4533), + [anon_sym_POUND] = ACTIONS(247), }, [1363] = { - [sym__val_range] = STATE(7647), - [sym__value] = STATE(5910), - [sym_val_nothing] = STATE(6119), - [sym_val_bool] = STATE(5832), - [sym_val_variable] = STATE(6119), - [sym_val_number] = STATE(6119), - [sym__val_number_decimal] = STATE(5050), - [sym__val_number] = STATE(5949), - [sym_val_duration] = STATE(6119), - [sym_val_filesize] = STATE(6119), - [sym_val_binary] = STATE(6119), - [sym_val_string] = STATE(6119), - [sym__str_double_quotes] = STATE(5780), - [sym_val_interpolated] = STATE(6119), - [sym__inter_single_quotes] = STATE(5951), - [sym__inter_double_quotes] = STATE(5953), - [sym_val_list] = STATE(6119), - [sym_val_record] = STATE(6119), - [sym_val_table] = STATE(6119), - [sym_val_closure] = STATE(6119), - [sym_unquoted] = STATE(5955), - [sym__unquoted_anonymous_prefix] = STATE(7858), + [sym__val_range] = STATE(7816), + [sym__value] = STATE(4991), + [sym_val_nothing] = STATE(4994), + [sym_val_bool] = STATE(4669), + [sym_val_variable] = STATE(4994), + [sym_val_number] = STATE(4994), + [sym__val_number_decimal] = STATE(4225), + [sym__val_number] = STATE(4878), + [sym_val_duration] = STATE(4994), + [sym_val_filesize] = STATE(4994), + [sym_val_binary] = STATE(4994), + [sym_val_string] = STATE(4994), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4994), + [sym__inter_single_quotes] = STATE(4902), + [sym__inter_double_quotes] = STATE(4928), + [sym_val_list] = STATE(4994), + [sym_val_record] = STATE(4994), + [sym_val_table] = STATE(4994), + [sym_val_closure] = STATE(4994), + [sym_unquoted] = STATE(4992), + [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1363), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4472), - [aux_sym_cmd_identifier_token38] = ACTIONS(4474), - [aux_sym_cmd_identifier_token39] = ACTIONS(4474), - [aux_sym_cmd_identifier_token40] = ACTIONS(4474), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4478), - [anon_sym_DOLLAR] = ACTIONS(4480), - [aux_sym_ctrl_match_token1] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4486), - [anon_sym_DOT_DOT_LT] = ACTIONS(4486), - [aux_sym__val_number_decimal_token1] = ACTIONS(4488), - [aux_sym__val_number_decimal_token2] = ACTIONS(4490), - [anon_sym_DOT2] = ACTIONS(4492), - [aux_sym__val_number_decimal_token3] = ACTIONS(4494), - [aux_sym__val_number_token1] = ACTIONS(4496), - [aux_sym__val_number_token2] = ACTIONS(4496), - [aux_sym__val_number_token3] = ACTIONS(4496), - [anon_sym_0b] = ACTIONS(4498), - [anon_sym_0o] = ACTIONS(4500), - [anon_sym_0x] = ACTIONS(4500), - [sym_val_date] = ACTIONS(4502), - [anon_sym_DQUOTE] = ACTIONS(4504), - [sym__str_single_quotes] = ACTIONS(4506), - [sym__str_back_ticks] = ACTIONS(4506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4508), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4510), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4512), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [anon_sym_null] = ACTIONS(4479), + [aux_sym_cmd_identifier_token38] = ACTIONS(4481), + [aux_sym_cmd_identifier_token39] = ACTIONS(4481), + [aux_sym_cmd_identifier_token40] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4447), + [anon_sym_DOLLAR] = ACTIONS(4449), + [aux_sym_ctrl_match_token1] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(4483), + [aux_sym__val_number_decimal_token3] = ACTIONS(4485), + [aux_sym__val_number_decimal_token4] = ACTIONS(4487), + [aux_sym__val_number_token1] = ACTIONS(4465), + [aux_sym__val_number_token2] = ACTIONS(4465), + [aux_sym__val_number_token3] = ACTIONS(4465), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4489), + [anon_sym_DQUOTE] = ACTIONS(4469), + [sym__str_single_quotes] = ACTIONS(4471), + [sym__str_back_ticks] = ACTIONS(4471), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), }, [1364] = { - [sym__val_range] = STATE(7641), - [sym__value] = STATE(1800), - [sym_val_nothing] = STATE(1802), - [sym_val_bool] = STATE(1701), - [sym_val_variable] = STATE(1802), - [sym_val_number] = STATE(1802), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1830), - [sym_val_duration] = STATE(1802), - [sym_val_filesize] = STATE(1802), - [sym_val_binary] = STATE(1802), - [sym_val_string] = STATE(1802), - [sym__str_double_quotes] = STATE(1833), - [sym_val_interpolated] = STATE(1802), - [sym__inter_single_quotes] = STATE(1834), - [sym__inter_double_quotes] = STATE(1835), - [sym_val_list] = STATE(1802), - [sym_val_record] = STATE(1802), - [sym_val_table] = STATE(1802), - [sym_val_closure] = STATE(1802), - [sym_unquoted] = STATE(1801), - [sym__unquoted_anonymous_prefix] = STATE(7882), + [sym__val_range] = STATE(8032), + [sym__value] = STATE(3894), + [sym_val_nothing] = STATE(3906), + [sym_val_bool] = STATE(3772), + [sym_val_variable] = STATE(3906), + [sym_val_number] = STATE(3906), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(3888), + [sym_val_duration] = STATE(3906), + [sym_val_filesize] = STATE(3906), + [sym_val_binary] = STATE(3906), + [sym_val_string] = STATE(3906), + [sym__str_double_quotes] = STATE(3735), + [sym_val_interpolated] = STATE(3906), + [sym__inter_single_quotes] = STATE(3896), + [sym__inter_double_quotes] = STATE(3897), + [sym_val_list] = STATE(3906), + [sym_val_record] = STATE(3906), + [sym_val_table] = STATE(3906), + [sym_val_closure] = STATE(3906), + [sym_unquoted] = STATE(3895), + [sym__unquoted_anonymous_prefix] = STATE(7930), [sym_comment] = STATE(1364), - [anon_sym_true] = ACTIONS(4446), - [anon_sym_false] = ACTIONS(4446), - [anon_sym_null] = ACTIONS(4448), - [aux_sym_cmd_identifier_token38] = ACTIONS(4450), - [aux_sym_cmd_identifier_token39] = ACTIONS(4450), - [aux_sym_cmd_identifier_token40] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(4452), - [anon_sym_DOLLAR] = ACTIONS(3923), - [aux_sym_ctrl_match_token1] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(4454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4456), - [anon_sym_DOT_DOT_LT] = ACTIONS(4456), - [aux_sym__val_number_decimal_token1] = ACTIONS(4458), - [aux_sym__val_number_decimal_token2] = ACTIONS(4460), - [anon_sym_DOT2] = ACTIONS(4462), - [aux_sym__val_number_decimal_token3] = ACTIONS(4464), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [anon_sym_0b] = ACTIONS(2440), - [anon_sym_0o] = ACTIONS(2442), - [anon_sym_0x] = ACTIONS(2442), - [sym_val_date] = ACTIONS(4466), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2450), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2452), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4468), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4491), + [anon_sym_false] = ACTIONS(4491), + [anon_sym_null] = ACTIONS(4493), + [aux_sym_cmd_identifier_token38] = ACTIONS(4495), + [aux_sym_cmd_identifier_token39] = ACTIONS(4495), + [aux_sym_cmd_identifier_token40] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4501), + [aux_sym_ctrl_match_token1] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4507), + [anon_sym_DOT_DOT_LT] = ACTIONS(4507), + [aux_sym__val_number_decimal_token1] = ACTIONS(4509), + [aux_sym__val_number_decimal_token2] = ACTIONS(4511), + [aux_sym__val_number_decimal_token3] = ACTIONS(4513), + [aux_sym__val_number_decimal_token4] = ACTIONS(4515), + [aux_sym__val_number_token1] = ACTIONS(4517), + [aux_sym__val_number_token2] = ACTIONS(4517), + [aux_sym__val_number_token3] = ACTIONS(4517), + [anon_sym_0b] = ACTIONS(4519), + [anon_sym_0o] = ACTIONS(4521), + [anon_sym_0x] = ACTIONS(4521), + [sym_val_date] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4525), + [sym__str_single_quotes] = ACTIONS(4527), + [sym__str_back_ticks] = ACTIONS(4527), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4531), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4533), + [anon_sym_POUND] = ACTIONS(247), }, [1365] = { - [sym__val_range] = STATE(7647), - [sym__value] = STATE(6004), - [sym_val_nothing] = STATE(6119), - [sym_val_bool] = STATE(5832), - [sym_val_variable] = STATE(6119), - [sym_val_number] = STATE(6119), - [sym__val_number_decimal] = STATE(5050), - [sym__val_number] = STATE(5949), - [sym_val_duration] = STATE(6119), - [sym_val_filesize] = STATE(6119), - [sym_val_binary] = STATE(6119), - [sym_val_string] = STATE(6119), - [sym__str_double_quotes] = STATE(5780), - [sym_val_interpolated] = STATE(6119), - [sym__inter_single_quotes] = STATE(5951), - [sym__inter_double_quotes] = STATE(5953), - [sym_val_list] = STATE(6119), - [sym_val_record] = STATE(6119), - [sym_val_table] = STATE(6119), - [sym_val_closure] = STATE(6119), - [sym_unquoted] = STATE(6062), - [sym__unquoted_anonymous_prefix] = STATE(7858), + [sym__val_range] = STATE(8032), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3906), + [sym_val_bool] = STATE(3772), + [sym_val_variable] = STATE(3906), + [sym_val_number] = STATE(3906), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(3888), + [sym_val_duration] = STATE(3906), + [sym_val_filesize] = STATE(3906), + [sym_val_binary] = STATE(3906), + [sym_val_string] = STATE(3906), + [sym__str_double_quotes] = STATE(3735), + [sym_val_interpolated] = STATE(3906), + [sym__inter_single_quotes] = STATE(3896), + [sym__inter_double_quotes] = STATE(3897), + [sym_val_list] = STATE(3906), + [sym_val_record] = STATE(3906), + [sym_val_table] = STATE(3906), + [sym_val_closure] = STATE(3906), + [sym_unquoted] = STATE(3933), + [sym__unquoted_anonymous_prefix] = STATE(7930), [sym_comment] = STATE(1365), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4472), - [aux_sym_cmd_identifier_token38] = ACTIONS(4474), - [aux_sym_cmd_identifier_token39] = ACTIONS(4474), - [aux_sym_cmd_identifier_token40] = ACTIONS(4474), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4478), - [anon_sym_DOLLAR] = ACTIONS(4480), - [aux_sym_ctrl_match_token1] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4486), - [anon_sym_DOT_DOT_LT] = ACTIONS(4486), - [aux_sym__val_number_decimal_token1] = ACTIONS(4488), - [aux_sym__val_number_decimal_token2] = ACTIONS(4490), - [anon_sym_DOT2] = ACTIONS(4492), - [aux_sym__val_number_decimal_token3] = ACTIONS(4494), - [aux_sym__val_number_token1] = ACTIONS(4496), - [aux_sym__val_number_token2] = ACTIONS(4496), - [aux_sym__val_number_token3] = ACTIONS(4496), - [anon_sym_0b] = ACTIONS(4498), - [anon_sym_0o] = ACTIONS(4500), - [anon_sym_0x] = ACTIONS(4500), - [sym_val_date] = ACTIONS(4502), - [anon_sym_DQUOTE] = ACTIONS(4504), - [sym__str_single_quotes] = ACTIONS(4506), - [sym__str_back_ticks] = ACTIONS(4506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4508), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4510), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4512), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4491), + [anon_sym_false] = ACTIONS(4491), + [anon_sym_null] = ACTIONS(4493), + [aux_sym_cmd_identifier_token38] = ACTIONS(4495), + [aux_sym_cmd_identifier_token39] = ACTIONS(4495), + [aux_sym_cmd_identifier_token40] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4501), + [aux_sym_ctrl_match_token1] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4507), + [anon_sym_DOT_DOT_LT] = ACTIONS(4507), + [aux_sym__val_number_decimal_token1] = ACTIONS(4509), + [aux_sym__val_number_decimal_token2] = ACTIONS(4511), + [aux_sym__val_number_decimal_token3] = ACTIONS(4513), + [aux_sym__val_number_decimal_token4] = ACTIONS(4515), + [aux_sym__val_number_token1] = ACTIONS(4517), + [aux_sym__val_number_token2] = ACTIONS(4517), + [aux_sym__val_number_token3] = ACTIONS(4517), + [anon_sym_0b] = ACTIONS(4519), + [anon_sym_0o] = ACTIONS(4521), + [anon_sym_0x] = ACTIONS(4521), + [sym_val_date] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4525), + [sym__str_single_quotes] = ACTIONS(4527), + [sym__str_back_ticks] = ACTIONS(4527), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4531), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4533), + [anon_sym_POUND] = ACTIONS(247), }, [1366] = { - [sym__val_range] = STATE(7647), - [sym__value] = STATE(6113), - [sym_val_nothing] = STATE(6119), - [sym_val_bool] = STATE(5832), - [sym_val_variable] = STATE(6119), - [sym_val_number] = STATE(6119), - [sym__val_number_decimal] = STATE(5050), - [sym__val_number] = STATE(5949), - [sym_val_duration] = STATE(6119), - [sym_val_filesize] = STATE(6119), - [sym_val_binary] = STATE(6119), - [sym_val_string] = STATE(6119), - [sym__str_double_quotes] = STATE(5780), - [sym_val_interpolated] = STATE(6119), - [sym__inter_single_quotes] = STATE(5951), - [sym__inter_double_quotes] = STATE(5953), - [sym_val_list] = STATE(6119), - [sym_val_record] = STATE(6119), - [sym_val_table] = STATE(6119), - [sym_val_closure] = STATE(6119), - [sym_unquoted] = STATE(6122), - [sym__unquoted_anonymous_prefix] = STATE(7858), + [sym__val_range] = STATE(7753), + [sym__value] = STATE(1940), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1700), + [sym_val_variable] = STATE(1867), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym_unquoted] = STATE(1943), + [sym__unquoted_anonymous_prefix] = STATE(7850), [sym_comment] = STATE(1366), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4472), - [aux_sym_cmd_identifier_token38] = ACTIONS(4474), - [aux_sym_cmd_identifier_token39] = ACTIONS(4474), - [aux_sym_cmd_identifier_token40] = ACTIONS(4474), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4478), - [anon_sym_DOLLAR] = ACTIONS(4480), - [aux_sym_ctrl_match_token1] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4486), - [anon_sym_DOT_DOT_LT] = ACTIONS(4486), - [aux_sym__val_number_decimal_token1] = ACTIONS(4488), - [aux_sym__val_number_decimal_token2] = ACTIONS(4490), - [anon_sym_DOT2] = ACTIONS(4492), - [aux_sym__val_number_decimal_token3] = ACTIONS(4494), - [aux_sym__val_number_token1] = ACTIONS(4496), - [aux_sym__val_number_token2] = ACTIONS(4496), - [aux_sym__val_number_token3] = ACTIONS(4496), - [anon_sym_0b] = ACTIONS(4498), - [anon_sym_0o] = ACTIONS(4500), - [anon_sym_0x] = ACTIONS(4500), - [sym_val_date] = ACTIONS(4502), - [anon_sym_DQUOTE] = ACTIONS(4504), - [sym__str_single_quotes] = ACTIONS(4506), - [sym__str_back_ticks] = ACTIONS(4506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4508), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4510), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4512), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4535), + [anon_sym_false] = ACTIONS(4535), + [anon_sym_null] = ACTIONS(4537), + [aux_sym_cmd_identifier_token38] = ACTIONS(4539), + [aux_sym_cmd_identifier_token39] = ACTIONS(4539), + [aux_sym_cmd_identifier_token40] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_DOLLAR] = ACTIONS(4060), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), + [anon_sym_DOT_DOT_LT] = ACTIONS(4545), + [aux_sym__val_number_decimal_token1] = ACTIONS(4547), + [aux_sym__val_number_decimal_token2] = ACTIONS(4549), + [aux_sym__val_number_decimal_token3] = ACTIONS(4551), + [aux_sym__val_number_decimal_token4] = ACTIONS(4553), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(4555), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4557), + [anon_sym_POUND] = ACTIONS(247), }, [1367] = { - [sym__val_range] = STATE(7637), - [sym__value] = STATE(5741), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(5774), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(4845), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3441), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(5742), - [sym__unquoted_anonymous_prefix] = STATE(7984), + [sym__val_range] = STATE(8032), + [sym__value] = STATE(3966), + [sym_val_nothing] = STATE(3906), + [sym_val_bool] = STATE(3772), + [sym_val_variable] = STATE(3906), + [sym_val_number] = STATE(3906), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(3888), + [sym_val_duration] = STATE(3906), + [sym_val_filesize] = STATE(3906), + [sym_val_binary] = STATE(3906), + [sym_val_string] = STATE(3906), + [sym__str_double_quotes] = STATE(3735), + [sym_val_interpolated] = STATE(3906), + [sym__inter_single_quotes] = STATE(3896), + [sym__inter_double_quotes] = STATE(3897), + [sym_val_list] = STATE(3906), + [sym_val_record] = STATE(3906), + [sym_val_table] = STATE(3906), + [sym_val_closure] = STATE(3906), + [sym_unquoted] = STATE(3970), + [sym__unquoted_anonymous_prefix] = STATE(7930), [sym_comment] = STATE(1367), - [anon_sym_true] = ACTIONS(4514), - [anon_sym_false] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4516), - [aux_sym_cmd_identifier_token38] = ACTIONS(4518), - [aux_sym_cmd_identifier_token39] = ACTIONS(4518), - [aux_sym_cmd_identifier_token40] = ACTIONS(4518), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_DOLLAR] = ACTIONS(4524), - [aux_sym_ctrl_match_token1] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4530), - [anon_sym_DOT_DOT_LT] = ACTIONS(4530), - [aux_sym__val_number_decimal_token1] = ACTIONS(4532), - [aux_sym__val_number_decimal_token2] = ACTIONS(4534), - [anon_sym_DOT2] = ACTIONS(4536), - [aux_sym__val_number_decimal_token3] = ACTIONS(4538), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(4540), - [anon_sym_DQUOTE] = ACTIONS(4542), - [sym__str_single_quotes] = ACTIONS(4544), - [sym__str_back_ticks] = ACTIONS(4544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4491), + [anon_sym_false] = ACTIONS(4491), + [anon_sym_null] = ACTIONS(4493), + [aux_sym_cmd_identifier_token38] = ACTIONS(4495), + [aux_sym_cmd_identifier_token39] = ACTIONS(4495), + [aux_sym_cmd_identifier_token40] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4501), + [aux_sym_ctrl_match_token1] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4507), + [anon_sym_DOT_DOT_LT] = ACTIONS(4507), + [aux_sym__val_number_decimal_token1] = ACTIONS(4509), + [aux_sym__val_number_decimal_token2] = ACTIONS(4511), + [aux_sym__val_number_decimal_token3] = ACTIONS(4513), + [aux_sym__val_number_decimal_token4] = ACTIONS(4515), + [aux_sym__val_number_token1] = ACTIONS(4517), + [aux_sym__val_number_token2] = ACTIONS(4517), + [aux_sym__val_number_token3] = ACTIONS(4517), + [anon_sym_0b] = ACTIONS(4519), + [anon_sym_0o] = ACTIONS(4521), + [anon_sym_0x] = ACTIONS(4521), + [sym_val_date] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4525), + [sym__str_single_quotes] = ACTIONS(4527), + [sym__str_back_ticks] = ACTIONS(4527), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4531), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4533), + [anon_sym_POUND] = ACTIONS(247), }, [1368] = { - [sym__val_range] = STATE(7647), - [sym__value] = STATE(6025), - [sym_val_nothing] = STATE(6119), - [sym_val_bool] = STATE(5832), - [sym_val_variable] = STATE(6119), - [sym_val_number] = STATE(6119), - [sym__val_number_decimal] = STATE(5050), - [sym__val_number] = STATE(5949), - [sym_val_duration] = STATE(6119), - [sym_val_filesize] = STATE(6119), - [sym_val_binary] = STATE(6119), - [sym_val_string] = STATE(6119), - [sym__str_double_quotes] = STATE(5780), - [sym_val_interpolated] = STATE(6119), - [sym__inter_single_quotes] = STATE(5951), - [sym__inter_double_quotes] = STATE(5953), - [sym_val_list] = STATE(6119), - [sym_val_record] = STATE(6119), - [sym_val_table] = STATE(6119), - [sym_val_closure] = STATE(6119), - [sym_unquoted] = STATE(6053), - [sym__unquoted_anonymous_prefix] = STATE(7858), + [sym__val_range] = STATE(7753), + [sym__value] = STATE(1946), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1700), + [sym_val_variable] = STATE(1867), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym_unquoted] = STATE(1947), + [sym__unquoted_anonymous_prefix] = STATE(7850), [sym_comment] = STATE(1368), - [anon_sym_true] = ACTIONS(4470), - [anon_sym_false] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4472), - [aux_sym_cmd_identifier_token38] = ACTIONS(4474), - [aux_sym_cmd_identifier_token39] = ACTIONS(4474), - [aux_sym_cmd_identifier_token40] = ACTIONS(4474), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_LPAREN] = ACTIONS(4478), - [anon_sym_DOLLAR] = ACTIONS(4480), - [aux_sym_ctrl_match_token1] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4486), - [anon_sym_DOT_DOT_LT] = ACTIONS(4486), - [aux_sym__val_number_decimal_token1] = ACTIONS(4488), - [aux_sym__val_number_decimal_token2] = ACTIONS(4490), - [anon_sym_DOT2] = ACTIONS(4492), - [aux_sym__val_number_decimal_token3] = ACTIONS(4494), - [aux_sym__val_number_token1] = ACTIONS(4496), - [aux_sym__val_number_token2] = ACTIONS(4496), - [aux_sym__val_number_token3] = ACTIONS(4496), - [anon_sym_0b] = ACTIONS(4498), - [anon_sym_0o] = ACTIONS(4500), - [anon_sym_0x] = ACTIONS(4500), - [sym_val_date] = ACTIONS(4502), - [anon_sym_DQUOTE] = ACTIONS(4504), - [sym__str_single_quotes] = ACTIONS(4506), - [sym__str_back_ticks] = ACTIONS(4506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4508), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4510), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(4512), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4535), + [anon_sym_false] = ACTIONS(4535), + [anon_sym_null] = ACTIONS(4537), + [aux_sym_cmd_identifier_token38] = ACTIONS(4539), + [aux_sym_cmd_identifier_token39] = ACTIONS(4539), + [aux_sym_cmd_identifier_token40] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_DOLLAR] = ACTIONS(4060), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), + [anon_sym_DOT_DOT_LT] = ACTIONS(4545), + [aux_sym__val_number_decimal_token1] = ACTIONS(4547), + [aux_sym__val_number_decimal_token2] = ACTIONS(4549), + [aux_sym__val_number_decimal_token3] = ACTIONS(4551), + [aux_sym__val_number_decimal_token4] = ACTIONS(4553), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(4555), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4557), + [anon_sym_POUND] = ACTIONS(247), }, [1369] = { - [sym__val_range] = STATE(7637), - [sym__value] = STATE(5707), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(5774), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(4845), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3441), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(5708), - [sym__unquoted_anonymous_prefix] = STATE(7984), + [sym__val_range] = STATE(7753), + [sym__value] = STATE(1880), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1700), + [sym_val_variable] = STATE(1867), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym_unquoted] = STATE(1883), + [sym__unquoted_anonymous_prefix] = STATE(7850), [sym_comment] = STATE(1369), - [anon_sym_true] = ACTIONS(4514), - [anon_sym_false] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4516), - [aux_sym_cmd_identifier_token38] = ACTIONS(4518), - [aux_sym_cmd_identifier_token39] = ACTIONS(4518), - [aux_sym_cmd_identifier_token40] = ACTIONS(4518), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_DOLLAR] = ACTIONS(4524), - [aux_sym_ctrl_match_token1] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4530), - [anon_sym_DOT_DOT_LT] = ACTIONS(4530), - [aux_sym__val_number_decimal_token1] = ACTIONS(4532), - [aux_sym__val_number_decimal_token2] = ACTIONS(4534), - [anon_sym_DOT2] = ACTIONS(4536), - [aux_sym__val_number_decimal_token3] = ACTIONS(4538), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(4540), - [anon_sym_DQUOTE] = ACTIONS(4542), - [sym__str_single_quotes] = ACTIONS(4544), - [sym__str_back_ticks] = ACTIONS(4544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4535), + [anon_sym_false] = ACTIONS(4535), + [anon_sym_null] = ACTIONS(4537), + [aux_sym_cmd_identifier_token38] = ACTIONS(4539), + [aux_sym_cmd_identifier_token39] = ACTIONS(4539), + [aux_sym_cmd_identifier_token40] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_DOLLAR] = ACTIONS(4060), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), + [anon_sym_DOT_DOT_LT] = ACTIONS(4545), + [aux_sym__val_number_decimal_token1] = ACTIONS(4547), + [aux_sym__val_number_decimal_token2] = ACTIONS(4549), + [aux_sym__val_number_decimal_token3] = ACTIONS(4551), + [aux_sym__val_number_decimal_token4] = ACTIONS(4553), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(4555), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4557), + [anon_sym_POUND] = ACTIONS(247), }, [1370] = { + [sym__val_range] = STATE(7957), + [sym__value] = STATE(6052), + [sym_val_nothing] = STATE(4339), + [sym_val_bool] = STATE(5838), + [sym_val_variable] = STATE(4339), + [sym_val_number] = STATE(4339), + [sym__val_number_decimal] = STATE(5380), + [sym__val_number] = STATE(4400), + [sym_val_duration] = STATE(4339), + [sym_val_filesize] = STATE(4339), + [sym_val_binary] = STATE(4339), + [sym_val_string] = STATE(4339), + [sym__str_double_quotes] = STATE(3756), + [sym_val_interpolated] = STATE(4339), + [sym__inter_single_quotes] = STATE(4389), + [sym__inter_double_quotes] = STATE(4338), + [sym_val_list] = STATE(4339), + [sym_val_record] = STATE(4339), + [sym_val_table] = STATE(4339), + [sym_val_closure] = STATE(4339), + [sym_unquoted] = STATE(6056), + [sym__unquoted_anonymous_prefix] = STATE(8024), [sym_comment] = STATE(1370), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4225), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4559), + [anon_sym_false] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [aux_sym_cmd_identifier_token38] = ACTIONS(4563), + [aux_sym_cmd_identifier_token39] = ACTIONS(4563), + [aux_sym_cmd_identifier_token40] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_DOLLAR] = ACTIONS(4567), + [aux_sym_ctrl_match_token1] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4571), + [anon_sym_DOT_DOT_LT] = ACTIONS(4571), + [aux_sym__val_number_decimal_token1] = ACTIONS(4573), + [aux_sym__val_number_decimal_token2] = ACTIONS(4575), + [aux_sym__val_number_decimal_token3] = ACTIONS(4577), + [aux_sym__val_number_decimal_token4] = ACTIONS(4579), + [aux_sym__val_number_token1] = ACTIONS(3573), + [aux_sym__val_number_token2] = ACTIONS(3573), + [aux_sym__val_number_token3] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(3575), + [anon_sym_0o] = ACTIONS(3577), + [anon_sym_0x] = ACTIONS(3577), + [sym_val_date] = ACTIONS(4581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [sym__str_single_quotes] = ACTIONS(3583), + [sym__str_back_ticks] = ACTIONS(3583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3589), + [anon_sym_POUND] = ACTIONS(247), }, [1371] = { - [sym__val_range] = STATE(7637), - [sym__value] = STATE(5781), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(5774), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(4845), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3441), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(5673), - [sym__unquoted_anonymous_prefix] = STATE(7984), + [sym__val_range] = STATE(7753), + [sym__value] = STATE(1899), + [sym_val_nothing] = STATE(1867), + [sym_val_bool] = STATE(1700), + [sym_val_variable] = STATE(1867), + [sym_val_number] = STATE(1867), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(1945), + [sym_val_duration] = STATE(1867), + [sym_val_filesize] = STATE(1867), + [sym_val_binary] = STATE(1867), + [sym_val_string] = STATE(1867), + [sym__str_double_quotes] = STATE(1954), + [sym_val_interpolated] = STATE(1867), + [sym__inter_single_quotes] = STATE(1824), + [sym__inter_double_quotes] = STATE(1826), + [sym_val_list] = STATE(1867), + [sym_val_record] = STATE(1867), + [sym_val_table] = STATE(1867), + [sym_val_closure] = STATE(1867), + [sym_unquoted] = STATE(1904), + [sym__unquoted_anonymous_prefix] = STATE(7850), [sym_comment] = STATE(1371), - [anon_sym_true] = ACTIONS(4514), - [anon_sym_false] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4516), - [aux_sym_cmd_identifier_token38] = ACTIONS(4518), - [aux_sym_cmd_identifier_token39] = ACTIONS(4518), - [aux_sym_cmd_identifier_token40] = ACTIONS(4518), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_DOLLAR] = ACTIONS(4524), - [aux_sym_ctrl_match_token1] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4530), - [anon_sym_DOT_DOT_LT] = ACTIONS(4530), - [aux_sym__val_number_decimal_token1] = ACTIONS(4532), - [aux_sym__val_number_decimal_token2] = ACTIONS(4534), - [anon_sym_DOT2] = ACTIONS(4536), - [aux_sym__val_number_decimal_token3] = ACTIONS(4538), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(4540), - [anon_sym_DQUOTE] = ACTIONS(4542), - [sym__str_single_quotes] = ACTIONS(4544), - [sym__str_back_ticks] = ACTIONS(4544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4535), + [anon_sym_false] = ACTIONS(4535), + [anon_sym_null] = ACTIONS(4537), + [aux_sym_cmd_identifier_token38] = ACTIONS(4539), + [aux_sym_cmd_identifier_token39] = ACTIONS(4539), + [aux_sym_cmd_identifier_token40] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_DOLLAR] = ACTIONS(4060), + [aux_sym_ctrl_match_token1] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), + [anon_sym_DOT_DOT_LT] = ACTIONS(4545), + [aux_sym__val_number_decimal_token1] = ACTIONS(4547), + [aux_sym__val_number_decimal_token2] = ACTIONS(4549), + [aux_sym__val_number_decimal_token3] = ACTIONS(4551), + [aux_sym__val_number_decimal_token4] = ACTIONS(4553), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_0b] = ACTIONS(2491), + [anon_sym_0o] = ACTIONS(2493), + [anon_sym_0x] = ACTIONS(2493), + [sym_val_date] = ACTIONS(4555), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4557), + [anon_sym_POUND] = ACTIONS(247), }, [1372] = { - [sym__val_range] = STATE(7637), - [sym__value] = STATE(5669), - [sym_val_nothing] = STATE(3635), - [sym_val_bool] = STATE(5774), - [sym_val_variable] = STATE(3635), - [sym_val_number] = STATE(3635), - [sym__val_number_decimal] = STATE(4845), - [sym__val_number] = STATE(3638), - [sym_val_duration] = STATE(3635), - [sym_val_filesize] = STATE(3635), - [sym_val_binary] = STATE(3635), - [sym_val_string] = STATE(3635), - [sym__str_double_quotes] = STATE(3441), - [sym_val_interpolated] = STATE(3635), - [sym__inter_single_quotes] = STATE(3641), - [sym__inter_double_quotes] = STATE(3643), - [sym_val_list] = STATE(3635), - [sym_val_record] = STATE(3635), - [sym_val_table] = STATE(3635), - [sym_val_closure] = STATE(3635), - [sym_unquoted] = STATE(5670), - [sym__unquoted_anonymous_prefix] = STATE(7984), + [sym__val_range] = STATE(7957), + [sym__value] = STATE(5979), + [sym_val_nothing] = STATE(4339), + [sym_val_bool] = STATE(5838), + [sym_val_variable] = STATE(4339), + [sym_val_number] = STATE(4339), + [sym__val_number_decimal] = STATE(5380), + [sym__val_number] = STATE(4400), + [sym_val_duration] = STATE(4339), + [sym_val_filesize] = STATE(4339), + [sym_val_binary] = STATE(4339), + [sym_val_string] = STATE(4339), + [sym__str_double_quotes] = STATE(3756), + [sym_val_interpolated] = STATE(4339), + [sym__inter_single_quotes] = STATE(4389), + [sym__inter_double_quotes] = STATE(4338), + [sym_val_list] = STATE(4339), + [sym_val_record] = STATE(4339), + [sym_val_table] = STATE(4339), + [sym_val_closure] = STATE(4339), + [sym_unquoted] = STATE(6128), + [sym__unquoted_anonymous_prefix] = STATE(8024), [sym_comment] = STATE(1372), - [anon_sym_true] = ACTIONS(4514), - [anon_sym_false] = ACTIONS(4514), - [anon_sym_null] = ACTIONS(4516), - [aux_sym_cmd_identifier_token38] = ACTIONS(4518), - [aux_sym_cmd_identifier_token39] = ACTIONS(4518), - [aux_sym_cmd_identifier_token40] = ACTIONS(4518), - [anon_sym_LBRACK] = ACTIONS(4520), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_DOLLAR] = ACTIONS(4524), - [aux_sym_ctrl_match_token1] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4530), - [anon_sym_DOT_DOT_LT] = ACTIONS(4530), - [aux_sym__val_number_decimal_token1] = ACTIONS(4532), - [aux_sym__val_number_decimal_token2] = ACTIONS(4534), - [anon_sym_DOT2] = ACTIONS(4536), - [aux_sym__val_number_decimal_token3] = ACTIONS(4538), - [aux_sym__val_number_token1] = ACTIONS(3321), - [aux_sym__val_number_token2] = ACTIONS(3321), - [aux_sym__val_number_token3] = ACTIONS(3321), - [anon_sym_0b] = ACTIONS(3323), - [anon_sym_0o] = ACTIONS(3325), - [anon_sym_0x] = ACTIONS(3325), - [sym_val_date] = ACTIONS(4540), - [anon_sym_DQUOTE] = ACTIONS(4542), - [sym__str_single_quotes] = ACTIONS(4544), - [sym__str_back_ticks] = ACTIONS(4544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3335), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4559), + [anon_sym_false] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [aux_sym_cmd_identifier_token38] = ACTIONS(4563), + [aux_sym_cmd_identifier_token39] = ACTIONS(4563), + [aux_sym_cmd_identifier_token40] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_DOLLAR] = ACTIONS(4567), + [aux_sym_ctrl_match_token1] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4571), + [anon_sym_DOT_DOT_LT] = ACTIONS(4571), + [aux_sym__val_number_decimal_token1] = ACTIONS(4573), + [aux_sym__val_number_decimal_token2] = ACTIONS(4575), + [aux_sym__val_number_decimal_token3] = ACTIONS(4577), + [aux_sym__val_number_decimal_token4] = ACTIONS(4579), + [aux_sym__val_number_token1] = ACTIONS(3573), + [aux_sym__val_number_token2] = ACTIONS(3573), + [aux_sym__val_number_token3] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(3575), + [anon_sym_0o] = ACTIONS(3577), + [anon_sym_0x] = ACTIONS(3577), + [sym_val_date] = ACTIONS(4581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [sym__str_single_quotes] = ACTIONS(3583), + [sym__str_back_ticks] = ACTIONS(3583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3589), + [anon_sym_POUND] = ACTIONS(247), }, [1373] = { - [sym__val_range] = STATE(7523), - [sym__value] = STATE(6225), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(7661), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(5752), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(2137), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(6229), - [sym__unquoted_anonymous_prefix] = STATE(7978), + [sym__val_range] = STATE(7957), + [sym__value] = STATE(5974), + [sym_val_nothing] = STATE(4339), + [sym_val_bool] = STATE(5838), + [sym_val_variable] = STATE(4339), + [sym_val_number] = STATE(4339), + [sym__val_number_decimal] = STATE(5380), + [sym__val_number] = STATE(4400), + [sym_val_duration] = STATE(4339), + [sym_val_filesize] = STATE(4339), + [sym_val_binary] = STATE(4339), + [sym_val_string] = STATE(4339), + [sym__str_double_quotes] = STATE(3756), + [sym_val_interpolated] = STATE(4339), + [sym__inter_single_quotes] = STATE(4389), + [sym__inter_double_quotes] = STATE(4338), + [sym_val_list] = STATE(4339), + [sym_val_record] = STATE(4339), + [sym_val_table] = STATE(4339), + [sym_val_closure] = STATE(4339), + [sym_unquoted] = STATE(5995), + [sym__unquoted_anonymous_prefix] = STATE(8024), [sym_comment] = STATE(1373), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_null] = ACTIONS(4087), - [aux_sym_cmd_identifier_token38] = ACTIONS(4089), - [aux_sym_cmd_identifier_token39] = ACTIONS(4089), - [aux_sym_cmd_identifier_token40] = ACTIONS(4089), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(4095), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4097), - [anon_sym_DOT_DOT_LT] = ACTIONS(4097), - [aux_sym__val_number_decimal_token1] = ACTIONS(4099), - [aux_sym__val_number_decimal_token2] = ACTIONS(4101), - [anon_sym_DOT2] = ACTIONS(4103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4105), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4559), + [anon_sym_false] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [aux_sym_cmd_identifier_token38] = ACTIONS(4563), + [aux_sym_cmd_identifier_token39] = ACTIONS(4563), + [aux_sym_cmd_identifier_token40] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_DOLLAR] = ACTIONS(4567), + [aux_sym_ctrl_match_token1] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4571), + [anon_sym_DOT_DOT_LT] = ACTIONS(4571), + [aux_sym__val_number_decimal_token1] = ACTIONS(4573), + [aux_sym__val_number_decimal_token2] = ACTIONS(4575), + [aux_sym__val_number_decimal_token3] = ACTIONS(4577), + [aux_sym__val_number_decimal_token4] = ACTIONS(4579), + [aux_sym__val_number_token1] = ACTIONS(3573), + [aux_sym__val_number_token2] = ACTIONS(3573), + [aux_sym__val_number_token3] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(3575), + [anon_sym_0o] = ACTIONS(3577), + [anon_sym_0x] = ACTIONS(3577), + [sym_val_date] = ACTIONS(4581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [sym__str_single_quotes] = ACTIONS(3583), + [sym__str_back_ticks] = ACTIONS(3583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3589), + [anon_sym_POUND] = ACTIONS(247), }, [1374] = { + [sym__val_range] = STATE(7776), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(5790), + [sym_val_variable] = STATE(4250), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(5173), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(5795), + [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1374), - [ts_builtin_sym_end] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1400), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4583), + [anon_sym_false] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(4585), + [aux_sym_cmd_identifier_token38] = ACTIONS(4587), + [aux_sym_cmd_identifier_token39] = ACTIONS(4587), + [aux_sym_cmd_identifier_token40] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4589), + [aux_sym__val_number_decimal_token2] = ACTIONS(4591), + [aux_sym__val_number_decimal_token3] = ACTIONS(4593), + [aux_sym__val_number_decimal_token4] = ACTIONS(4595), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(4597), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1375] = { + [sym__val_range] = STATE(7957), + [sym__value] = STATE(6039), + [sym_val_nothing] = STATE(4339), + [sym_val_bool] = STATE(5838), + [sym_val_variable] = STATE(4339), + [sym_val_number] = STATE(4339), + [sym__val_number_decimal] = STATE(5380), + [sym__val_number] = STATE(4400), + [sym_val_duration] = STATE(4339), + [sym_val_filesize] = STATE(4339), + [sym_val_binary] = STATE(4339), + [sym_val_string] = STATE(4339), + [sym__str_double_quotes] = STATE(3756), + [sym_val_interpolated] = STATE(4339), + [sym__inter_single_quotes] = STATE(4389), + [sym__inter_double_quotes] = STATE(4338), + [sym_val_list] = STATE(4339), + [sym_val_record] = STATE(4339), + [sym_val_table] = STATE(4339), + [sym_val_closure] = STATE(4339), + [sym_unquoted] = STATE(6044), + [sym__unquoted_anonymous_prefix] = STATE(8024), [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1400), - [aux_sym_cmd_identifier_token38] = ACTIONS(1400), - [aux_sym_cmd_identifier_token39] = ACTIONS(1400), - [aux_sym_cmd_identifier_token40] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [anon_sym_DOT2] = ACTIONS(1398), - [aux_sym__val_number_decimal_token3] = ACTIONS(1400), - [aux_sym__val_number_token1] = ACTIONS(1400), - [aux_sym__val_number_token2] = ACTIONS(1400), - [aux_sym__val_number_token3] = ACTIONS(1400), - [anon_sym_0b] = ACTIONS(1398), - [sym_filesize_unit] = ACTIONS(1400), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_0o] = ACTIONS(1398), - [anon_sym_0x] = ACTIONS(1398), - [sym_val_date] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym__str_single_quotes] = ACTIONS(1400), - [sym__str_back_ticks] = ACTIONS(1400), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token1] = ACTIONS(1398), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4559), + [anon_sym_false] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(4561), + [aux_sym_cmd_identifier_token38] = ACTIONS(4563), + [aux_sym_cmd_identifier_token39] = ACTIONS(4563), + [aux_sym_cmd_identifier_token40] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_DOLLAR] = ACTIONS(4567), + [aux_sym_ctrl_match_token1] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4571), + [anon_sym_DOT_DOT_LT] = ACTIONS(4571), + [aux_sym__val_number_decimal_token1] = ACTIONS(4573), + [aux_sym__val_number_decimal_token2] = ACTIONS(4575), + [aux_sym__val_number_decimal_token3] = ACTIONS(4577), + [aux_sym__val_number_decimal_token4] = ACTIONS(4579), + [aux_sym__val_number_token1] = ACTIONS(3573), + [aux_sym__val_number_token2] = ACTIONS(3573), + [aux_sym__val_number_token3] = ACTIONS(3573), + [anon_sym_0b] = ACTIONS(3575), + [anon_sym_0o] = ACTIONS(3577), + [anon_sym_0x] = ACTIONS(3577), + [sym_val_date] = ACTIONS(4581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [sym__str_single_quotes] = ACTIONS(3583), + [sym__str_back_ticks] = ACTIONS(3583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3589), + [anon_sym_POUND] = ACTIONS(247), }, [1376] = { + [sym__val_range] = STATE(7776), + [sym__value] = STATE(5821), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(5790), + [sym_val_variable] = STATE(4250), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(5173), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(5822), + [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(4043), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4583), + [anon_sym_false] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(4585), + [aux_sym_cmd_identifier_token38] = ACTIONS(4587), + [aux_sym_cmd_identifier_token39] = ACTIONS(4587), + [aux_sym_cmd_identifier_token40] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4589), + [aux_sym__val_number_decimal_token2] = ACTIONS(4591), + [aux_sym__val_number_decimal_token3] = ACTIONS(4593), + [aux_sym__val_number_decimal_token4] = ACTIONS(4595), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(4597), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1377] = { + [sym__val_range] = STATE(7776), + [sym__value] = STATE(5708), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(5790), + [sym_val_variable] = STATE(4250), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(5173), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(5713), + [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(4554), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1378), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4583), + [anon_sym_false] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(4585), + [aux_sym_cmd_identifier_token38] = ACTIONS(4587), + [aux_sym_cmd_identifier_token39] = ACTIONS(4587), + [aux_sym_cmd_identifier_token40] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4589), + [aux_sym__val_number_decimal_token2] = ACTIONS(4591), + [aux_sym__val_number_decimal_token3] = ACTIONS(4593), + [aux_sym__val_number_decimal_token4] = ACTIONS(4595), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(4597), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1378] = { + [sym__val_range] = STATE(7776), + [sym__value] = STATE(5770), + [sym_val_nothing] = STATE(4250), + [sym_val_bool] = STATE(5790), + [sym_val_variable] = STATE(4250), + [sym_val_number] = STATE(4250), + [sym__val_number_decimal] = STATE(5173), + [sym__val_number] = STATE(3713), + [sym_val_duration] = STATE(4250), + [sym_val_filesize] = STATE(4250), + [sym_val_binary] = STATE(4250), + [sym_val_string] = STATE(4250), + [sym__str_double_quotes] = STATE(2802), + [sym_val_interpolated] = STATE(4250), + [sym__inter_single_quotes] = STATE(4209), + [sym__inter_double_quotes] = STATE(4211), + [sym_val_list] = STATE(4250), + [sym_val_record] = STATE(4250), + [sym_val_table] = STATE(4250), + [sym_val_closure] = STATE(4250), + [sym_unquoted] = STATE(5772), + [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1378), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4583), + [anon_sym_false] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(4585), + [aux_sym_cmd_identifier_token38] = ACTIONS(4587), + [aux_sym_cmd_identifier_token39] = ACTIONS(4587), + [aux_sym_cmd_identifier_token40] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4228), + [aux_sym_ctrl_match_token1] = ACTIONS(3503), + [anon_sym_DOT_DOT] = ACTIONS(4339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), + [anon_sym_DOT_DOT_LT] = ACTIONS(4341), + [aux_sym__val_number_decimal_token1] = ACTIONS(4589), + [aux_sym__val_number_decimal_token2] = ACTIONS(4591), + [aux_sym__val_number_decimal_token3] = ACTIONS(4593), + [aux_sym__val_number_decimal_token4] = ACTIONS(4595), + [aux_sym__val_number_token1] = ACTIONS(3519), + [aux_sym__val_number_token2] = ACTIONS(3519), + [aux_sym__val_number_token3] = ACTIONS(3519), + [anon_sym_0b] = ACTIONS(3521), + [anon_sym_0o] = ACTIONS(3523), + [anon_sym_0x] = ACTIONS(3523), + [sym_val_date] = ACTIONS(4597), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym__str_single_quotes] = ACTIONS(3529), + [sym__str_back_ticks] = ACTIONS(3529), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_POUND] = ACTIONS(247), }, [1379] = { - [sym__val_range] = STATE(7523), - [sym__value] = STATE(2785), - [sym_val_nothing] = STATE(1906), - [sym_val_bool] = STATE(7661), - [sym_val_variable] = STATE(1906), - [sym_val_number] = STATE(1906), - [sym__val_number_decimal] = STATE(5752), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(1906), - [sym_val_filesize] = STATE(1906), - [sym_val_binary] = STATE(1906), - [sym_val_string] = STATE(1906), - [sym__str_double_quotes] = STATE(2137), - [sym_val_interpolated] = STATE(1906), - [sym__inter_single_quotes] = STATE(1934), - [sym__inter_double_quotes] = STATE(1935), - [sym_val_list] = STATE(1906), - [sym_val_record] = STATE(1906), - [sym_val_table] = STATE(1906), - [sym_val_closure] = STATE(1906), - [sym_unquoted] = STATE(2789), - [sym__unquoted_anonymous_prefix] = STATE(7978), [sym_comment] = STATE(1379), - [anon_sym_true] = ACTIONS(4085), - [anon_sym_false] = ACTIONS(4085), - [anon_sym_null] = ACTIONS(4087), - [aux_sym_cmd_identifier_token38] = ACTIONS(4089), - [aux_sym_cmd_identifier_token39] = ACTIONS(4089), - [aux_sym_cmd_identifier_token40] = ACTIONS(4089), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(4095), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4097), - [anon_sym_DOT_DOT_LT] = ACTIONS(4097), - [aux_sym__val_number_decimal_token1] = ACTIONS(4099), - [aux_sym__val_number_decimal_token2] = ACTIONS(4101), - [anon_sym_DOT2] = ACTIONS(4103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4105), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1483), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1481), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4599), + [aux_sym__immediate_decimal_token2] = ACTIONS(4601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1380] = { - [sym_path] = STATE(1447), [sym_comment] = STATE(1380), - [aux_sym_cell_path_repeat1] = STATE(1327), - [ts_builtin_sym_end] = ACTIONS(891), - [anon_sym_EQ] = ACTIONS(889), - [anon_sym_PLUS_EQ] = ACTIONS(891), - [anon_sym_DASH_EQ] = ACTIONS(891), - [anon_sym_STAR_EQ] = ACTIONS(891), - [anon_sym_SLASH_EQ] = ACTIONS(891), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(891), - [sym__newline] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_in] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(970), + [anon_sym_PLUS_EQ] = ACTIONS(972), + [anon_sym_DASH_EQ] = ACTIONS(972), + [anon_sym_STAR_EQ] = ACTIONS(972), + [anon_sym_SLASH_EQ] = ACTIONS(972), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_err_GT_PIPE] = ACTIONS(972), + [anon_sym_out_GT_PIPE] = ACTIONS(972), + [anon_sym_e_GT_PIPE] = ACTIONS(972), + [anon_sym_o_GT_PIPE] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [aux_sym_ctrl_match_token1] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(4603), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(972), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(972), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(247), }, [1381] = { [sym_comment] = STATE(1381), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(4556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4558), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [aux_sym_ctrl_match_token1] = ACTIONS(982), + [anon_sym_QMARK2] = ACTIONS(4605), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(982), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), }, [1382] = { - [sym__match_pattern_expression] = STATE(3197), - [sym__match_pattern_value] = STATE(3232), - [sym__match_pattern_list] = STATE(3235), - [sym__match_pattern_record] = STATE(3236), - [sym_expr_parenthesized] = STATE(2991), - [sym_val_range] = STATE(3232), - [sym__val_range] = STATE(7525), - [sym_val_nothing] = STATE(3191), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(2993), - [sym_val_number] = STATE(3191), - [sym__val_number_decimal] = STATE(2714), - [sym__val_number] = STATE(3210), - [sym_val_duration] = STATE(3191), - [sym_val_filesize] = STATE(3191), - [sym_val_binary] = STATE(3191), - [sym_val_string] = STATE(3191), - [sym__str_double_quotes] = STATE(3219), - [sym_val_table] = STATE(3191), - [sym__unquoted_in_list] = STATE(3197), - [sym__unquoted_anonymous_prefix] = STATE(7761), + [sym_cell_path] = STATE(1520), + [sym_path] = STATE(1465), [sym_comment] = STATE(1382), - [aux_sym__match_pattern_list_repeat1] = STATE(1382), - [anon_sym_true] = ACTIONS(4560), - [anon_sym_false] = ACTIONS(4560), - [anon_sym_null] = ACTIONS(4563), - [aux_sym_cmd_identifier_token38] = ACTIONS(4566), - [aux_sym_cmd_identifier_token39] = ACTIONS(4566), - [aux_sym_cmd_identifier_token40] = ACTIONS(4566), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_RBRACK] = ACTIONS(4572), - [anon_sym_LPAREN] = ACTIONS(4574), - [anon_sym_DOLLAR] = ACTIONS(4577), - [aux_sym_ctrl_match_token1] = ACTIONS(4580), - [anon_sym_DOT_DOT] = ACTIONS(4583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4586), - [anon_sym_DOT_DOT_LT] = ACTIONS(4586), - [aux_sym__val_number_decimal_token1] = ACTIONS(4589), - [aux_sym__val_number_decimal_token2] = ACTIONS(4592), - [anon_sym_DOT2] = ACTIONS(4595), - [aux_sym__val_number_decimal_token3] = ACTIONS(4598), - [aux_sym__val_number_token1] = ACTIONS(4601), - [aux_sym__val_number_token2] = ACTIONS(4601), - [aux_sym__val_number_token3] = ACTIONS(4601), - [anon_sym_0b] = ACTIONS(4604), - [anon_sym_0o] = ACTIONS(4607), - [anon_sym_0x] = ACTIONS(4607), - [sym_val_date] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(4613), - [sym__str_single_quotes] = ACTIONS(4616), - [sym__str_back_ticks] = ACTIONS(4616), - [anon_sym_err_GT] = ACTIONS(4619), - [anon_sym_out_GT] = ACTIONS(4619), - [anon_sym_e_GT] = ACTIONS(4619), - [anon_sym_o_GT] = ACTIONS(4619), - [anon_sym_err_PLUSout_GT] = ACTIONS(4619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4619), - [anon_sym_o_PLUSe_GT] = ACTIONS(4619), - [anon_sym_e_PLUSo_GT] = ACTIONS(4619), - [anon_sym_err_GT_GT] = ACTIONS(4622), - [anon_sym_out_GT_GT] = ACTIONS(4622), - [anon_sym_e_GT_GT] = ACTIONS(4622), - [anon_sym_o_GT_GT] = ACTIONS(4622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4622), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1398), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [anon_sym_null] = ACTIONS(1603), + [aux_sym_cmd_identifier_token38] = ACTIONS(1603), + [aux_sym_cmd_identifier_token39] = ACTIONS(1603), + [aux_sym_cmd_identifier_token40] = ACTIONS(1603), + [sym__newline] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_err_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_GT_PIPE] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1599), + [aux_sym_ctrl_match_token1] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1603), + [aux_sym__val_number_decimal_token3] = ACTIONS(1603), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(247), }, [1383] = { + [sym__val_range] = STATE(7865), + [sym__value] = STATE(6238), + [sym_val_nothing] = STATE(5312), + [sym_val_bool] = STATE(7285), + [sym_val_variable] = STATE(5312), + [sym_val_number] = STATE(5312), + [sym__val_number_decimal] = STATE(5793), + [sym__val_number] = STATE(5409), + [sym_val_duration] = STATE(5312), + [sym_val_filesize] = STATE(5312), + [sym_val_binary] = STATE(5312), + [sym_val_string] = STATE(5312), + [sym__str_double_quotes] = STATE(4863), + [sym_val_interpolated] = STATE(5312), + [sym__inter_single_quotes] = STATE(5273), + [sym__inter_double_quotes] = STATE(5275), + [sym_val_list] = STATE(5312), + [sym_val_record] = STATE(5312), + [sym_val_table] = STATE(5312), + [sym_val_closure] = STATE(5312), + [sym_unquoted] = STATE(6265), + [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1383), - [aux_sym_cmd_identifier_token41] = ACTIONS(1398), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_EQ_GT] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(4628), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4630), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4264), + [anon_sym_false] = ACTIONS(4264), + [anon_sym_null] = ACTIONS(4266), + [aux_sym_cmd_identifier_token38] = ACTIONS(4268), + [aux_sym_cmd_identifier_token39] = ACTIONS(4268), + [aux_sym_cmd_identifier_token40] = ACTIONS(4268), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_DOLLAR] = ACTIONS(4272), + [aux_sym_ctrl_match_token1] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), + [anon_sym_DOT_DOT_LT] = ACTIONS(4234), + [aux_sym__val_number_decimal_token1] = ACTIONS(4276), + [aux_sym__val_number_decimal_token2] = ACTIONS(4278), + [aux_sym__val_number_decimal_token3] = ACTIONS(4280), + [aux_sym__val_number_decimal_token4] = ACTIONS(4282), + [aux_sym__val_number_token1] = ACTIONS(3697), + [aux_sym__val_number_token2] = ACTIONS(3697), + [aux_sym__val_number_token3] = ACTIONS(3697), + [anon_sym_0b] = ACTIONS(3699), + [anon_sym_0o] = ACTIONS(3701), + [anon_sym_0x] = ACTIONS(3701), + [sym_val_date] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym__str_single_quotes] = ACTIONS(4288), + [sym__str_back_ticks] = ACTIONS(4288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(247), }, [1384] = { + [sym__val_range] = STATE(7894), + [sym__value] = STATE(1956), + [sym_val_nothing] = STATE(2094), + [sym_val_bool] = STATE(1825), + [sym_val_variable] = STATE(2094), + [sym_val_number] = STATE(2094), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(2080), + [sym_val_duration] = STATE(2094), + [sym_val_filesize] = STATE(2094), + [sym_val_binary] = STATE(2094), + [sym_val_string] = STATE(2094), + [sym__str_double_quotes] = STATE(2042), + [sym_val_interpolated] = STATE(2094), + [sym__inter_single_quotes] = STATE(1955), + [sym__inter_double_quotes] = STATE(2073), + [sym_val_list] = STATE(2094), + [sym_val_record] = STATE(2094), + [sym_val_table] = STATE(2094), + [sym_val_closure] = STATE(2094), + [sym_unquoted] = STATE(1957), + [sym__unquoted_anonymous_prefix] = STATE(7825), [sym_comment] = STATE(1384), - [ts_builtin_sym_end] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1441), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [sym__newline] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_err_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_GT_PIPE] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1429), - [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT2] = ACTIONS(4075), - [anon_sym_DOT] = ACTIONS(4632), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), - [anon_sym_DOT_DOT_LT] = ACTIONS(1429), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4079), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4079), - [aux_sym__val_number_decimal_token1] = ACTIONS(1429), - [aux_sym__val_number_decimal_token2] = ACTIONS(1441), - [anon_sym_DOT2] = ACTIONS(1429), - [aux_sym__val_number_decimal_token3] = ACTIONS(1441), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1429), - [sym_filesize_unit] = ACTIONS(4634), - [sym_duration_unit] = ACTIONS(4636), - [anon_sym_0o] = ACTIONS(1429), - [anon_sym_0x] = ACTIONS(1429), - [sym_val_date] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1429), - [aux_sym_unquoted_token6] = ACTIONS(4632), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_null] = ACTIONS(4355), + [aux_sym_cmd_identifier_token38] = ACTIONS(4357), + [aux_sym_cmd_identifier_token39] = ACTIONS(4357), + [aux_sym_cmd_identifier_token40] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(4359), + [anon_sym_DOLLAR] = ACTIONS(4124), + [aux_sym_ctrl_match_token1] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), + [anon_sym_DOT_DOT_LT] = ACTIONS(4363), + [aux_sym__val_number_decimal_token1] = ACTIONS(4365), + [aux_sym__val_number_decimal_token2] = ACTIONS(4367), + [aux_sym__val_number_decimal_token3] = ACTIONS(4369), + [aux_sym__val_number_decimal_token4] = ACTIONS(4371), + [aux_sym__val_number_token1] = ACTIONS(2714), + [aux_sym__val_number_token2] = ACTIONS(2714), + [aux_sym__val_number_token3] = ACTIONS(2714), + [anon_sym_0b] = ACTIONS(2716), + [anon_sym_0o] = ACTIONS(2718), + [anon_sym_0x] = ACTIONS(2718), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(2722), + [sym__str_single_quotes] = ACTIONS(2724), + [sym__str_back_ticks] = ACTIONS(2724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(4375), + [anon_sym_POUND] = ACTIONS(247), }, [1385] = { [sym_comment] = STATE(1385), - [ts_builtin_sym_end] = ACTIONS(908), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_PLUS_EQ] = ACTIONS(908), - [anon_sym_DASH_EQ] = ACTIONS(908), - [anon_sym_STAR_EQ] = ACTIONS(908), - [anon_sym_SLASH_EQ] = ACTIONS(908), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(908), - [sym__newline] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_err_GT_PIPE] = ACTIONS(908), - [anon_sym_out_GT_PIPE] = ACTIONS(908), - [anon_sym_e_GT_PIPE] = ACTIONS(908), - [anon_sym_o_GT_PIPE] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_in] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(4638), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_DOT_DOT2] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(908), - [anon_sym_DOT_DOT_LT2] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(247), }, [1386] = { [sym_comment] = STATE(1386), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_PLUS_EQ] = ACTIONS(934), - [anon_sym_DASH_EQ] = ACTIONS(934), - [anon_sym_STAR_EQ] = ACTIONS(934), - [anon_sym_SLASH_EQ] = ACTIONS(934), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(934), - [sym__newline] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_err_GT_PIPE] = ACTIONS(934), - [anon_sym_out_GT_PIPE] = ACTIONS(934), - [anon_sym_e_GT_PIPE] = ACTIONS(934), - [anon_sym_o_GT_PIPE] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(934), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_in] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_and] = ACTIONS(934), - [anon_sym_xor] = ACTIONS(934), - [anon_sym_or] = ACTIONS(934), - [anon_sym_not_DASHin] = ACTIONS(934), - [anon_sym_starts_DASHwith] = ACTIONS(934), - [anon_sym_ends_DASHwith] = ACTIONS(934), - [anon_sym_EQ_EQ] = ACTIONS(934), - [anon_sym_BANG_EQ] = ACTIONS(934), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(934), - [anon_sym_EQ_TILDE] = ACTIONS(934), - [anon_sym_BANG_TILDE] = ACTIONS(934), - [anon_sym_STAR_STAR] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(934), - [anon_sym_SLASH_SLASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(934), - [anon_sym_bit_DASHshr] = ACTIONS(934), - [anon_sym_bit_DASHand] = ACTIONS(934), - [anon_sym_bit_DASHxor] = ACTIONS(934), - [anon_sym_bit_DASHor] = ACTIONS(934), - [anon_sym_DOT_DOT2] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(934), - [aux_sym_record_entry_token1] = ACTIONS(934), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [anon_sym_err_GT_GT] = ACTIONS(934), - [anon_sym_out_GT_GT] = ACTIONS(934), - [anon_sym_e_GT_GT] = ACTIONS(934), - [anon_sym_o_GT_GT] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(4607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [1387] = { [sym_comment] = STATE(1387), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [aux_sym_cmd_identifier_token38] = ACTIONS(1580), - [aux_sym_cmd_identifier_token39] = ACTIONS(1580), - [aux_sym_cmd_identifier_token40] = ACTIONS(1580), - [sym__newline] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_err_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_GT_PIPE] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1570), - [aux_sym_ctrl_match_token1] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_DOT_DOT] = ACTIONS(1570), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_DOT_DOT2] = ACTIONS(4640), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1570), - [anon_sym_DOT_DOT_LT] = ACTIONS(1570), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4642), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4642), - [aux_sym__val_number_decimal_token1] = ACTIONS(1570), - [aux_sym__val_number_decimal_token2] = ACTIONS(1580), - [anon_sym_DOT2] = ACTIONS(1570), - [aux_sym__val_number_decimal_token3] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1580), - [aux_sym__val_number_token2] = ACTIONS(1580), - [aux_sym__val_number_token3] = ACTIONS(1580), - [anon_sym_0b] = ACTIONS(1570), - [anon_sym_0o] = ACTIONS(1570), - [anon_sym_0x] = ACTIONS(1570), - [sym_val_date] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1580), - [sym__str_single_quotes] = ACTIONS(1580), - [sym__str_back_ticks] = ACTIONS(1580), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1580), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1570), - [anon_sym_out_GT] = ACTIONS(1570), - [anon_sym_e_GT] = ACTIONS(1570), - [anon_sym_o_GT] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT] = ACTIONS(1570), - [anon_sym_err_GT_GT] = ACTIONS(1580), - [anon_sym_out_GT_GT] = ACTIONS(1580), - [anon_sym_e_GT_GT] = ACTIONS(1580), - [anon_sym_o_GT_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), - [aux_sym_unquoted_token1] = ACTIONS(1570), - [aux_sym_unquoted_token2] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1388] = { - [sym_cell_path] = STATE(1643), - [sym_path] = STATE(1569), [sym_comment] = STATE(1388), - [aux_sym_cell_path_repeat1] = STATE(1422), - [ts_builtin_sym_end] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_null] = ACTIONS(1549), - [aux_sym_cmd_identifier_token38] = ACTIONS(1549), - [aux_sym_cmd_identifier_token39] = ACTIONS(1549), - [aux_sym_cmd_identifier_token40] = ACTIONS(1549), - [sym__newline] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_err_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_GT_PIPE] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1545), - [aux_sym_ctrl_match_token1] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(4644), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT] = ACTIONS(1545), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [aux_sym__val_number_decimal_token1] = ACTIONS(1545), - [aux_sym__val_number_decimal_token2] = ACTIONS(1549), - [anon_sym_DOT2] = ACTIONS(1545), - [aux_sym__val_number_decimal_token3] = ACTIONS(1549), - [aux_sym__val_number_token1] = ACTIONS(1549), - [aux_sym__val_number_token2] = ACTIONS(1549), - [aux_sym__val_number_token3] = ACTIONS(1549), - [anon_sym_0b] = ACTIONS(1545), - [anon_sym_0o] = ACTIONS(1545), - [anon_sym_0x] = ACTIONS(1545), - [sym_val_date] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [sym__str_single_quotes] = ACTIONS(1549), - [sym__str_back_ticks] = ACTIONS(1549), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1549), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1545), - [anon_sym_out_GT] = ACTIONS(1545), - [anon_sym_e_GT] = ACTIONS(1545), - [anon_sym_o_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT] = ACTIONS(1545), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [aux_sym_unquoted_token1] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1481), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1389] = { [sym_comment] = STATE(1389), - [ts_builtin_sym_end] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(912), - [anon_sym_PLUS_EQ] = ACTIONS(914), - [anon_sym_DASH_EQ] = ACTIONS(914), - [anon_sym_STAR_EQ] = ACTIONS(914), - [anon_sym_SLASH_EQ] = ACTIONS(914), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_in] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(912), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1519), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1390] = { - [sym__immediate_decimal] = STATE(7521), [sym_comment] = STATE(1390), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(2975), - [aux_sym__immediate_decimal_token3] = ACTIONS(2977), - [aux_sym__immediate_decimal_token4] = ACTIONS(2979), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2927), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2927), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token5] = ACTIONS(4077), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1585), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), }, [1391] = { [sym_comment] = STATE(1391), - [aux_sym_cmd_identifier_token41] = ACTIONS(1368), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(4646), - [aux_sym__immediate_decimal_token2] = ACTIONS(4648), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4613), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1392] = { [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(4161), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(970), + [anon_sym_PLUS_EQ] = ACTIONS(972), + [anon_sym_DASH_EQ] = ACTIONS(972), + [anon_sym_STAR_EQ] = ACTIONS(972), + [anon_sym_SLASH_EQ] = ACTIONS(972), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), + [sym__newline] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_err_GT_PIPE] = ACTIONS(972), + [anon_sym_out_GT_PIPE] = ACTIONS(972), + [anon_sym_e_GT_PIPE] = ACTIONS(972), + [anon_sym_o_GT_PIPE] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(4615), + [aux_sym_expr_binary_token1] = ACTIONS(972), + [aux_sym_expr_binary_token2] = ACTIONS(972), + [aux_sym_expr_binary_token3] = ACTIONS(972), + [aux_sym_expr_binary_token4] = ACTIONS(972), + [aux_sym_expr_binary_token5] = ACTIONS(972), + [aux_sym_expr_binary_token6] = ACTIONS(972), + [aux_sym_expr_binary_token7] = ACTIONS(972), + [aux_sym_expr_binary_token8] = ACTIONS(972), + [aux_sym_expr_binary_token9] = ACTIONS(972), + [aux_sym_expr_binary_token10] = ACTIONS(972), + [aux_sym_expr_binary_token11] = ACTIONS(972), + [aux_sym_expr_binary_token12] = ACTIONS(972), + [aux_sym_expr_binary_token13] = ACTIONS(972), + [aux_sym_expr_binary_token14] = ACTIONS(972), + [aux_sym_expr_binary_token15] = ACTIONS(972), + [aux_sym_expr_binary_token16] = ACTIONS(972), + [aux_sym_expr_binary_token17] = ACTIONS(972), + [aux_sym_expr_binary_token18] = ACTIONS(972), + [aux_sym_expr_binary_token19] = ACTIONS(972), + [aux_sym_expr_binary_token20] = ACTIONS(972), + [aux_sym_expr_binary_token21] = ACTIONS(972), + [aux_sym_expr_binary_token22] = ACTIONS(972), + [aux_sym_expr_binary_token23] = ACTIONS(972), + [aux_sym_expr_binary_token24] = ACTIONS(972), + [aux_sym_expr_binary_token25] = ACTIONS(972), + [aux_sym_expr_binary_token26] = ACTIONS(972), + [aux_sym_expr_binary_token27] = ACTIONS(972), + [aux_sym_expr_binary_token28] = ACTIONS(972), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(247), }, [1393] = { - [sym_cell_path] = STATE(1649), - [sym_path] = STATE(1569), + [sym_cell_path] = STATE(1627), + [sym_path] = STATE(1597), [sym_comment] = STATE(1393), - [aux_sym_cell_path_repeat1] = STATE(1422), - [ts_builtin_sym_end] = ACTIONS(885), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_null] = ACTIONS(885), - [aux_sym_cmd_identifier_token38] = ACTIONS(885), - [aux_sym_cmd_identifier_token39] = ACTIONS(885), - [aux_sym_cmd_identifier_token40] = ACTIONS(885), - [sym__newline] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_DASH] = ACTIONS(883), - [aux_sym_ctrl_match_token1] = ACTIONS(885), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(4644), - [anon_sym_DOT_DOT_EQ] = ACTIONS(883), - [anon_sym_DOT_DOT_LT] = ACTIONS(883), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(885), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(885), - [aux_sym__val_number_token1] = ACTIONS(885), - [aux_sym__val_number_token2] = ACTIONS(885), - [aux_sym__val_number_token3] = ACTIONS(885), - [anon_sym_0b] = ACTIONS(883), - [anon_sym_0o] = ACTIONS(883), - [anon_sym_0x] = ACTIONS(883), - [sym_val_date] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(885), - [sym__str_single_quotes] = ACTIONS(885), - [sym__str_back_ticks] = ACTIONS(885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [aux_sym_unquoted_token1] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(947), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_null] = ACTIONS(947), + [aux_sym_cmd_identifier_token38] = ACTIONS(947), + [aux_sym_cmd_identifier_token39] = ACTIONS(947), + [aux_sym_cmd_identifier_token40] = ACTIONS(947), + [sym__newline] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_err_GT_PIPE] = ACTIONS(947), + [anon_sym_out_GT_PIPE] = ACTIONS(947), + [anon_sym_e_GT_PIPE] = ACTIONS(947), + [anon_sym_o_GT_PIPE] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(945), + [aux_sym_ctrl_match_token1] = ACTIONS(947), + [anon_sym_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT2] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_DOT_DOT_EQ] = ACTIONS(945), + [anon_sym_DOT_DOT_LT] = ACTIONS(945), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(947), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(947), + [aux_sym__val_number_decimal_token3] = ACTIONS(947), + [aux_sym__val_number_decimal_token4] = ACTIONS(947), + [aux_sym__val_number_token1] = ACTIONS(947), + [aux_sym__val_number_token2] = ACTIONS(947), + [aux_sym__val_number_token3] = ACTIONS(947), + [anon_sym_0b] = ACTIONS(945), + [anon_sym_0o] = ACTIONS(945), + [anon_sym_0x] = ACTIONS(945), + [sym_val_date] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym__str_single_quotes] = ACTIONS(947), + [sym__str_back_ticks] = ACTIONS(947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(947), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [aux_sym_unquoted_token1] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(247), }, [1394] = { [sym_comment] = STATE(1394), - [ts_builtin_sym_end] = ACTIONS(918), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_PLUS_EQ] = ACTIONS(918), - [anon_sym_DASH_EQ] = ACTIONS(918), - [anon_sym_STAR_EQ] = ACTIONS(918), - [anon_sym_SLASH_EQ] = ACTIONS(918), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(918), - [sym__newline] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_err_GT_PIPE] = ACTIONS(918), - [anon_sym_out_GT_PIPE] = ACTIONS(918), - [anon_sym_e_GT_PIPE] = ACTIONS(918), - [anon_sym_o_GT_PIPE] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_in] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_and] = ACTIONS(918), - [anon_sym_xor] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_not_DASHin] = ACTIONS(918), - [anon_sym_starts_DASHwith] = ACTIONS(918), - [anon_sym_ends_DASHwith] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT2] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_TILDE] = ACTIONS(918), - [anon_sym_BANG_TILDE] = ACTIONS(918), - [anon_sym_STAR_STAR] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_SLASH] = ACTIONS(916), - [anon_sym_mod] = ACTIONS(918), - [anon_sym_SLASH_SLASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(918), - [anon_sym_bit_DASHshr] = ACTIONS(918), - [anon_sym_bit_DASHand] = ACTIONS(918), - [anon_sym_bit_DASHxor] = ACTIONS(918), - [anon_sym_bit_DASHor] = ACTIONS(918), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_QMARK2] = ACTIONS(4619), + [aux_sym_expr_binary_token1] = ACTIONS(982), + [aux_sym_expr_binary_token2] = ACTIONS(982), + [aux_sym_expr_binary_token3] = ACTIONS(982), + [aux_sym_expr_binary_token4] = ACTIONS(982), + [aux_sym_expr_binary_token5] = ACTIONS(982), + [aux_sym_expr_binary_token6] = ACTIONS(982), + [aux_sym_expr_binary_token7] = ACTIONS(982), + [aux_sym_expr_binary_token8] = ACTIONS(982), + [aux_sym_expr_binary_token9] = ACTIONS(982), + [aux_sym_expr_binary_token10] = ACTIONS(982), + [aux_sym_expr_binary_token11] = ACTIONS(982), + [aux_sym_expr_binary_token12] = ACTIONS(982), + [aux_sym_expr_binary_token13] = ACTIONS(982), + [aux_sym_expr_binary_token14] = ACTIONS(982), + [aux_sym_expr_binary_token15] = ACTIONS(982), + [aux_sym_expr_binary_token16] = ACTIONS(982), + [aux_sym_expr_binary_token17] = ACTIONS(982), + [aux_sym_expr_binary_token18] = ACTIONS(982), + [aux_sym_expr_binary_token19] = ACTIONS(982), + [aux_sym_expr_binary_token20] = ACTIONS(982), + [aux_sym_expr_binary_token21] = ACTIONS(982), + [aux_sym_expr_binary_token22] = ACTIONS(982), + [aux_sym_expr_binary_token23] = ACTIONS(982), + [aux_sym_expr_binary_token24] = ACTIONS(982), + [aux_sym_expr_binary_token25] = ACTIONS(982), + [aux_sym_expr_binary_token26] = ACTIONS(982), + [aux_sym_expr_binary_token27] = ACTIONS(982), + [aux_sym_expr_binary_token28] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), }, [1395] = { + [sym__match_pattern_expression] = STATE(3315), + [sym__match_pattern_value] = STATE(3273), + [sym__match_pattern_list] = STATE(3277), + [sym__match_pattern_record] = STATE(3287), + [sym_expr_parenthesized] = STATE(3033), + [sym_val_range] = STATE(3273), + [sym__val_range] = STATE(7882), + [sym_val_nothing] = STATE(3288), + [sym_val_bool] = STATE(3213), + [sym_val_variable] = STATE(3034), + [sym_val_number] = STATE(3288), + [sym__val_number_decimal] = STATE(2800), + [sym__val_number] = STATE(3291), + [sym_val_duration] = STATE(3288), + [sym_val_filesize] = STATE(3288), + [sym_val_binary] = STATE(3288), + [sym_val_string] = STATE(3288), + [sym__str_double_quotes] = STATE(3297), + [sym_val_table] = STATE(3288), + [sym__unquoted_in_list] = STATE(3315), + [sym__unquoted_anonymous_prefix] = STATE(7802), [sym_comment] = STATE(1395), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(4650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [aux_sym_unquoted_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__match_pattern_list_repeat1] = STATE(1395), + [anon_sym_true] = ACTIONS(4621), + [anon_sym_false] = ACTIONS(4621), + [anon_sym_null] = ACTIONS(4624), + [aux_sym_cmd_identifier_token38] = ACTIONS(4627), + [aux_sym_cmd_identifier_token39] = ACTIONS(4627), + [aux_sym_cmd_identifier_token40] = ACTIONS(4627), + [anon_sym_LBRACK] = ACTIONS(4630), + [anon_sym_RBRACK] = ACTIONS(4633), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4638), + [aux_sym_ctrl_match_token1] = ACTIONS(4641), + [anon_sym_DOT_DOT] = ACTIONS(4644), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4647), + [anon_sym_DOT_DOT_LT] = ACTIONS(4647), + [aux_sym__val_number_decimal_token1] = ACTIONS(4650), + [aux_sym__val_number_decimal_token2] = ACTIONS(4653), + [aux_sym__val_number_decimal_token3] = ACTIONS(4656), + [aux_sym__val_number_decimal_token4] = ACTIONS(4659), + [aux_sym__val_number_token1] = ACTIONS(4662), + [aux_sym__val_number_token2] = ACTIONS(4662), + [aux_sym__val_number_token3] = ACTIONS(4662), + [anon_sym_0b] = ACTIONS(4665), + [anon_sym_0o] = ACTIONS(4668), + [anon_sym_0x] = ACTIONS(4668), + [sym_val_date] = ACTIONS(4671), + [anon_sym_DQUOTE] = ACTIONS(4674), + [sym__str_single_quotes] = ACTIONS(4677), + [sym__str_back_ticks] = ACTIONS(4677), + [anon_sym_err_GT] = ACTIONS(4680), + [anon_sym_out_GT] = ACTIONS(4680), + [anon_sym_e_GT] = ACTIONS(4680), + [anon_sym_o_GT] = ACTIONS(4680), + [anon_sym_err_PLUSout_GT] = ACTIONS(4680), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4680), + [anon_sym_o_PLUSe_GT] = ACTIONS(4680), + [anon_sym_e_PLUSo_GT] = ACTIONS(4680), + [anon_sym_err_GT_GT] = ACTIONS(4683), + [anon_sym_out_GT_GT] = ACTIONS(4683), + [anon_sym_e_GT_GT] = ACTIONS(4683), + [anon_sym_o_GT_GT] = ACTIONS(4683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4683), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4686), + [anon_sym_POUND] = ACTIONS(247), }, [1396] = { [sym_comment] = STATE(1396), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1397] = { [sym_comment] = STATE(1397), + [ts_builtin_sym_end] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1585), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + }, + [1398] = { + [sym_path] = STATE(1465), + [sym_comment] = STATE(1398), + [aux_sym_cell_path_repeat1] = STATE(1400), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_null] = ACTIONS(953), + [aux_sym_cmd_identifier_token38] = ACTIONS(953), + [aux_sym_cmd_identifier_token39] = ACTIONS(953), + [aux_sym_cmd_identifier_token40] = ACTIONS(953), + [sym__newline] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_err_GT_PIPE] = ACTIONS(953), + [anon_sym_out_GT_PIPE] = ACTIONS(953), + [anon_sym_e_GT_PIPE] = ACTIONS(953), + [anon_sym_o_GT_PIPE] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(951), + [aux_sym_ctrl_match_token1] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT2] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(4377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(951), + [anon_sym_DOT_DOT_LT] = ACTIONS(951), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(953), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(953), + [aux_sym__val_number_decimal_token3] = ACTIONS(953), + [aux_sym__val_number_decimal_token4] = ACTIONS(953), + [aux_sym__val_number_token1] = ACTIONS(953), + [aux_sym__val_number_token2] = ACTIONS(953), + [aux_sym__val_number_token3] = ACTIONS(953), + [anon_sym_0b] = ACTIONS(951), + [anon_sym_0o] = ACTIONS(951), + [anon_sym_0x] = ACTIONS(951), + [sym_val_date] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym__str_single_quotes] = ACTIONS(953), + [sym__str_back_ticks] = ACTIONS(953), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(953), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(953), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [aux_sym_unquoted_token1] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(247), + }, + [1399] = { + [sym_comment] = STATE(1399), + [anon_sym_EQ] = ACTIONS(994), + [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_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [aux_sym_ctrl_match_token1] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(996), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + }, + [1400] = { + [sym_path] = STATE(1465), + [sym_comment] = STATE(1400), + [aux_sym_cell_path_repeat1] = STATE(1400), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_null] = ACTIONS(957), + [aux_sym_cmd_identifier_token38] = ACTIONS(957), + [aux_sym_cmd_identifier_token39] = ACTIONS(957), + [aux_sym_cmd_identifier_token40] = ACTIONS(957), + [sym__newline] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_err_GT_PIPE] = ACTIONS(957), + [anon_sym_out_GT_PIPE] = ACTIONS(957), + [anon_sym_e_GT_PIPE] = ACTIONS(957), + [anon_sym_o_GT_PIPE] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(955), + [aux_sym_ctrl_match_token1] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_DOT_DOT] = ACTIONS(955), + [anon_sym_DOT_DOT2] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(4689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(955), + [anon_sym_DOT_DOT_LT] = ACTIONS(955), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(957), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(957), + [aux_sym__val_number_decimal_token3] = ACTIONS(957), + [aux_sym__val_number_decimal_token4] = ACTIONS(957), + [aux_sym__val_number_token1] = ACTIONS(957), + [aux_sym__val_number_token2] = ACTIONS(957), + [aux_sym__val_number_token3] = ACTIONS(957), + [anon_sym_0b] = ACTIONS(955), + [anon_sym_0o] = ACTIONS(955), + [anon_sym_0x] = ACTIONS(955), + [sym_val_date] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__str_single_quotes] = ACTIONS(957), + [sym__str_back_ticks] = ACTIONS(957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(957), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [aux_sym_unquoted_token1] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(247), + }, + [1401] = { + [sym_comment] = STATE(1401), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(968), + [aux_sym_expr_binary_token1] = ACTIONS(968), + [aux_sym_expr_binary_token2] = ACTIONS(968), + [aux_sym_expr_binary_token3] = ACTIONS(968), + [aux_sym_expr_binary_token4] = ACTIONS(968), + [aux_sym_expr_binary_token5] = ACTIONS(968), + [aux_sym_expr_binary_token6] = ACTIONS(968), + [aux_sym_expr_binary_token7] = ACTIONS(968), + [aux_sym_expr_binary_token8] = ACTIONS(968), + [aux_sym_expr_binary_token9] = ACTIONS(968), + [aux_sym_expr_binary_token10] = ACTIONS(968), + [aux_sym_expr_binary_token11] = ACTIONS(968), + [aux_sym_expr_binary_token12] = ACTIONS(968), + [aux_sym_expr_binary_token13] = ACTIONS(968), + [aux_sym_expr_binary_token14] = ACTIONS(968), + [aux_sym_expr_binary_token15] = ACTIONS(968), + [aux_sym_expr_binary_token16] = ACTIONS(968), + [aux_sym_expr_binary_token17] = ACTIONS(968), + [aux_sym_expr_binary_token18] = ACTIONS(968), + [aux_sym_expr_binary_token19] = ACTIONS(968), + [aux_sym_expr_binary_token20] = ACTIONS(968), + [aux_sym_expr_binary_token21] = ACTIONS(968), + [aux_sym_expr_binary_token22] = ACTIONS(968), + [aux_sym_expr_binary_token23] = ACTIONS(968), + [aux_sym_expr_binary_token24] = ACTIONS(968), + [aux_sym_expr_binary_token25] = ACTIONS(968), + [aux_sym_expr_binary_token26] = ACTIONS(968), + [aux_sym_expr_binary_token27] = ACTIONS(968), + [aux_sym_expr_binary_token28] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), + }, + [1402] = { + [sym_comment] = STATE(1402), + [ts_builtin_sym_end] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(978), + [aux_sym_expr_binary_token1] = ACTIONS(978), + [aux_sym_expr_binary_token2] = ACTIONS(978), + [aux_sym_expr_binary_token3] = ACTIONS(978), + [aux_sym_expr_binary_token4] = ACTIONS(978), + [aux_sym_expr_binary_token5] = ACTIONS(978), + [aux_sym_expr_binary_token6] = ACTIONS(978), + [aux_sym_expr_binary_token7] = ACTIONS(978), + [aux_sym_expr_binary_token8] = ACTIONS(978), + [aux_sym_expr_binary_token9] = ACTIONS(978), + [aux_sym_expr_binary_token10] = ACTIONS(978), + [aux_sym_expr_binary_token11] = ACTIONS(978), + [aux_sym_expr_binary_token12] = ACTIONS(978), + [aux_sym_expr_binary_token13] = ACTIONS(978), + [aux_sym_expr_binary_token14] = ACTIONS(978), + [aux_sym_expr_binary_token15] = ACTIONS(978), + [aux_sym_expr_binary_token16] = ACTIONS(978), + [aux_sym_expr_binary_token17] = ACTIONS(978), + [aux_sym_expr_binary_token18] = ACTIONS(978), + [aux_sym_expr_binary_token19] = ACTIONS(978), + [aux_sym_expr_binary_token20] = ACTIONS(978), + [aux_sym_expr_binary_token21] = ACTIONS(978), + [aux_sym_expr_binary_token22] = ACTIONS(978), + [aux_sym_expr_binary_token23] = ACTIONS(978), + [aux_sym_expr_binary_token24] = ACTIONS(978), + [aux_sym_expr_binary_token25] = ACTIONS(978), + [aux_sym_expr_binary_token26] = ACTIONS(978), + [aux_sym_expr_binary_token27] = ACTIONS(978), + [aux_sym_expr_binary_token28] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + }, + [1403] = { + [sym_comment] = STATE(1403), + [ts_builtin_sym_end] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(964), + [aux_sym_expr_binary_token1] = ACTIONS(964), + [aux_sym_expr_binary_token2] = ACTIONS(964), + [aux_sym_expr_binary_token3] = ACTIONS(964), + [aux_sym_expr_binary_token4] = ACTIONS(964), + [aux_sym_expr_binary_token5] = ACTIONS(964), + [aux_sym_expr_binary_token6] = ACTIONS(964), + [aux_sym_expr_binary_token7] = ACTIONS(964), + [aux_sym_expr_binary_token8] = ACTIONS(964), + [aux_sym_expr_binary_token9] = ACTIONS(964), + [aux_sym_expr_binary_token10] = ACTIONS(964), + [aux_sym_expr_binary_token11] = ACTIONS(964), + [aux_sym_expr_binary_token12] = ACTIONS(964), + [aux_sym_expr_binary_token13] = ACTIONS(964), + [aux_sym_expr_binary_token14] = ACTIONS(964), + [aux_sym_expr_binary_token15] = ACTIONS(964), + [aux_sym_expr_binary_token16] = ACTIONS(964), + [aux_sym_expr_binary_token17] = ACTIONS(964), + [aux_sym_expr_binary_token18] = ACTIONS(964), + [aux_sym_expr_binary_token19] = ACTIONS(964), + [aux_sym_expr_binary_token20] = ACTIONS(964), + [aux_sym_expr_binary_token21] = ACTIONS(964), + [aux_sym_expr_binary_token22] = ACTIONS(964), + [aux_sym_expr_binary_token23] = ACTIONS(964), + [aux_sym_expr_binary_token24] = ACTIONS(964), + [aux_sym_expr_binary_token25] = ACTIONS(964), + [aux_sym_expr_binary_token26] = ACTIONS(964), + [aux_sym_expr_binary_token27] = ACTIONS(964), + [aux_sym_expr_binary_token28] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), + }, + [1404] = { + [sym_comment] = STATE(1404), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), + [anon_sym_DOT_DOT_LT] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(4692), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [aux_sym_unquoted_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), + }, + [1405] = { + [sym_comment] = STATE(1405), + [ts_builtin_sym_end] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4401), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), + }, + [1406] = { + [sym_cell_path] = STATE(1634), + [sym_path] = STATE(1597), + [sym_comment] = STATE(1406), + [aux_sym_cell_path_repeat1] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [anon_sym_null] = ACTIONS(1603), + [aux_sym_cmd_identifier_token38] = ACTIONS(1603), + [aux_sym_cmd_identifier_token39] = ACTIONS(1603), + [aux_sym_cmd_identifier_token40] = ACTIONS(1603), + [sym__newline] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_err_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_GT_PIPE] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1599), + [aux_sym_ctrl_match_token1] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1603), + [aux_sym__val_number_decimal_token3] = ACTIONS(1603), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(247), + }, + [1407] = { + [sym_comment] = STATE(1407), [anon_sym_true] = ACTIONS(1537), [anon_sym_false] = ACTIONS(1537), [anon_sym_null] = ACTIONS(1537), @@ -204080,45 +210241,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1537), [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1535), + [anon_sym_DOLLAR] = ACTIONS(1525), [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1525), [aux_sym_ctrl_match_token1] = ACTIONS(1537), [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(4694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4696), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4696), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), [aux_sym__val_number_token1] = ACTIONS(1537), [aux_sym__val_number_token2] = ACTIONS(1537), [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), + [anon_sym_0b] = ACTIONS(1525), + [sym_filesize_unit] = ACTIONS(4698), + [sym_duration_unit] = ACTIONS(4700), + [anon_sym_0o] = ACTIONS(1525), + [anon_sym_0x] = ACTIONS(1525), [sym_val_date] = ACTIONS(1537), [anon_sym_DQUOTE] = ACTIONS(1537), [sym__str_single_quotes] = ACTIONS(1537), [sym__str_back_ticks] = ACTIONS(1537), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), [anon_sym_err_GT_GT] = ACTIONS(1537), [anon_sym_out_GT_GT] = ACTIONS(1537), [anon_sym_e_GT_GT] = ACTIONS(1537), @@ -204127,1216 +210288,789 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [aux_sym_unquoted_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), - }, - [1398] = { - [sym_path] = STATE(1477), - [sym_comment] = STATE(1398), - [aux_sym_cell_path_repeat1] = STATE(1410), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_null] = ACTIONS(891), - [aux_sym_cmd_identifier_token38] = ACTIONS(891), - [aux_sym_cmd_identifier_token39] = ACTIONS(891), - [aux_sym_cmd_identifier_token40] = ACTIONS(891), - [sym__newline] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(889), - [aux_sym_ctrl_match_token1] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(889), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(889), - [anon_sym_DOT_DOT_LT] = ACTIONS(889), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [aux_sym_unquoted_token1] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(3), - }, - [1399] = { - [sym__immediate_decimal] = STATE(6258), - [sym_comment] = STATE(1399), - [ts_builtin_sym_end] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(4652), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(2931), - [aux_sym__immediate_decimal_token3] = ACTIONS(2933), - [aux_sym__immediate_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2927), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2927), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token4] = ACTIONS(4632), - [aux_sym_unquoted_token6] = ACTIONS(4654), - [anon_sym_POUND] = ACTIONS(3), - }, - [1400] = { - [sym_comment] = STATE(1400), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4656), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), - }, - [1401] = { - [sym_comment] = STATE(1401), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1610), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [sym__newline] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_err_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_GT_PIPE] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1608), - [aux_sym_ctrl_match_token1] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_DOT_DOT2] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1608), - [anon_sym_DOT_DOT_LT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1610), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1610), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1608), - [anon_sym_out_GT] = ACTIONS(1608), - [anon_sym_e_GT] = ACTIONS(1608), - [anon_sym_o_GT] = ACTIONS(1608), - [anon_sym_err_PLUSout_GT] = ACTIONS(1608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), - [anon_sym_o_PLUSe_GT] = ACTIONS(1608), - [anon_sym_e_PLUSo_GT] = ACTIONS(1608), - [anon_sym_err_GT_GT] = ACTIONS(1610), - [anon_sym_out_GT_GT] = ACTIONS(1610), - [anon_sym_e_GT_GT] = ACTIONS(1610), - [anon_sym_o_GT_GT] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), - [aux_sym_unquoted_token1] = ACTIONS(1608), - [aux_sym_unquoted_token2] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(3), - }, - [1402] = { - [sym_comment] = STATE(1402), - [anon_sym_EQ] = ACTIONS(924), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(926), - [sym__newline] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_err_GT_PIPE] = ACTIONS(926), - [anon_sym_out_GT_PIPE] = ACTIONS(926), - [anon_sym_e_GT_PIPE] = ACTIONS(926), - [anon_sym_o_GT_PIPE] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_in] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_and] = ACTIONS(926), - [anon_sym_xor] = ACTIONS(926), - [anon_sym_or] = ACTIONS(926), - [anon_sym_not_DASHin] = ACTIONS(926), - [anon_sym_starts_DASHwith] = ACTIONS(926), - [anon_sym_ends_DASHwith] = ACTIONS(926), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_EQ_TILDE] = ACTIONS(926), - [anon_sym_BANG_TILDE] = ACTIONS(926), - [anon_sym_STAR_STAR] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(926), - [anon_sym_SLASH_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(926), - [anon_sym_bit_DASHshr] = ACTIONS(926), - [anon_sym_bit_DASHand] = ACTIONS(926), - [anon_sym_bit_DASHxor] = ACTIONS(926), - [anon_sym_bit_DASHor] = ACTIONS(926), - [anon_sym_DOT_DOT2] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(926), - [anon_sym_DOT_DOT_LT2] = ACTIONS(926), - [aux_sym_record_entry_token1] = ACTIONS(926), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [anon_sym_err_GT_GT] = ACTIONS(926), - [anon_sym_out_GT_GT] = ACTIONS(926), - [anon_sym_e_GT_GT] = ACTIONS(926), - [anon_sym_o_GT_GT] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(3), - }, - [1403] = { - [sym_comment] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), - }, - [1404] = { - [sym_comment] = STATE(1404), - [ts_builtin_sym_end] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1370), - [aux_sym_cmd_identifier_token39] = ACTIONS(1370), - [aux_sym_cmd_identifier_token40] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_DOT_DOT_LT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__val_number_decimal_token1] = ACTIONS(1368), - [aux_sym__val_number_decimal_token2] = ACTIONS(1370), - [anon_sym_DOT2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1370), - [aux_sym__val_number_token1] = ACTIONS(1370), - [aux_sym__val_number_token2] = ACTIONS(1370), - [aux_sym__val_number_token3] = ACTIONS(1370), - [anon_sym_0b] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_0o] = ACTIONS(1368), - [anon_sym_0x] = ACTIONS(1368), - [sym_val_date] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym__str_single_quotes] = ACTIONS(1370), - [sym__str_back_ticks] = ACTIONS(1370), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token1] = ACTIONS(1368), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [1405] = { - [sym_comment] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_EQ] = ACTIONS(920), - [anon_sym_PLUS_EQ] = ACTIONS(922), - [anon_sym_DASH_EQ] = ACTIONS(922), - [anon_sym_STAR_EQ] = ACTIONS(922), - [anon_sym_SLASH_EQ] = ACTIONS(922), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(922), - [sym__newline] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_err_GT_PIPE] = ACTIONS(922), - [anon_sym_out_GT_PIPE] = ACTIONS(922), - [anon_sym_e_GT_PIPE] = ACTIONS(922), - [anon_sym_o_GT_PIPE] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_in] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_and] = ACTIONS(922), - [anon_sym_xor] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_not_DASHin] = ACTIONS(922), - [anon_sym_starts_DASHwith] = ACTIONS(922), - [anon_sym_ends_DASHwith] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_BANG_TILDE] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(922), - [anon_sym_SLASH_SLASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(922), - [anon_sym_bit_DASHshr] = ACTIONS(922), - [anon_sym_bit_DASHand] = ACTIONS(922), - [anon_sym_bit_DASHxor] = ACTIONS(922), - [anon_sym_bit_DASHor] = ACTIONS(922), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), - }, - [1406] = { - [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(900), - [anon_sym_PLUS_EQ] = ACTIONS(902), - [anon_sym_DASH_EQ] = ACTIONS(902), - [anon_sym_STAR_EQ] = ACTIONS(902), - [anon_sym_SLASH_EQ] = ACTIONS(902), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(902), - [sym__newline] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_err_GT_PIPE] = ACTIONS(902), - [anon_sym_out_GT_PIPE] = ACTIONS(902), - [anon_sym_e_GT_PIPE] = ACTIONS(902), - [anon_sym_o_GT_PIPE] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_in] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(4661), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT2] = ACTIONS(900), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_DOT_DOT2] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(3), - }, - [1407] = { - [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1378), - [aux_sym_cmd_identifier_token38] = ACTIONS(1378), - [aux_sym_cmd_identifier_token39] = ACTIONS(1378), - [aux_sym_cmd_identifier_token40] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_DOT_DOT_LT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__val_number_decimal_token1] = ACTIONS(1376), - [aux_sym__val_number_decimal_token2] = ACTIONS(1378), - [anon_sym_DOT2] = ACTIONS(1376), - [aux_sym__val_number_decimal_token3] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1378), - [aux_sym__val_number_token2] = ACTIONS(1378), - [aux_sym__val_number_token3] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1376), - [sym_filesize_unit] = ACTIONS(1378), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_0o] = ACTIONS(1376), - [anon_sym_0x] = ACTIONS(1376), - [sym_val_date] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym__str_single_quotes] = ACTIONS(1378), - [sym__str_back_ticks] = ACTIONS(1378), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token1] = ACTIONS(1376), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token1] = ACTIONS(1525), + [aux_sym_unquoted_token2] = ACTIONS(4702), + [anon_sym_POUND] = ACTIONS(247), }, [1408] = { [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1506), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [aux_sym_ctrl_match_token1] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_DOT_DOT_LT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [aux_sym__val_number_decimal_token1] = ACTIONS(1504), - [aux_sym__val_number_decimal_token2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_0b] = ACTIONS(1504), - [sym_filesize_unit] = ACTIONS(1506), - [sym_duration_unit] = ACTIONS(1506), - [anon_sym_0o] = ACTIONS(1504), - [anon_sym_0x] = ACTIONS(1504), - [sym_val_date] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token1] = ACTIONS(1504), - [aux_sym_unquoted_token6] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1409] = { [sym_comment] = STATE(1409), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_PLUS_EQ] = ACTIONS(930), - [anon_sym_DASH_EQ] = ACTIONS(930), - [anon_sym_STAR_EQ] = ACTIONS(930), - [anon_sym_SLASH_EQ] = ACTIONS(930), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(930), - [sym__newline] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_err_GT_PIPE] = ACTIONS(930), - [anon_sym_out_GT_PIPE] = ACTIONS(930), - [anon_sym_e_GT_PIPE] = ACTIONS(930), - [anon_sym_o_GT_PIPE] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_in] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_and] = ACTIONS(930), - [anon_sym_xor] = ACTIONS(930), - [anon_sym_or] = ACTIONS(930), - [anon_sym_not_DASHin] = ACTIONS(930), - [anon_sym_starts_DASHwith] = ACTIONS(930), - [anon_sym_ends_DASHwith] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(930), - [anon_sym_BANG_EQ] = ACTIONS(930), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(930), - [anon_sym_GT_EQ] = ACTIONS(930), - [anon_sym_EQ_TILDE] = ACTIONS(930), - [anon_sym_BANG_TILDE] = ACTIONS(930), - [anon_sym_STAR_STAR] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(930), - [anon_sym_SLASH_SLASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(930), - [anon_sym_bit_DASHshr] = ACTIONS(930), - [anon_sym_bit_DASHand] = ACTIONS(930), - [anon_sym_bit_DASHxor] = ACTIONS(930), - [anon_sym_bit_DASHor] = ACTIONS(930), - [anon_sym_DOT_DOT2] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(930), - [aux_sym_record_entry_token1] = ACTIONS(930), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [anon_sym_err_GT_GT] = ACTIONS(930), - [anon_sym_out_GT_GT] = ACTIONS(930), - [anon_sym_e_GT_GT] = ACTIONS(930), - [anon_sym_o_GT_GT] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [aux_sym_record_entry_token1] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(247), }, [1410] = { - [sym_path] = STATE(1477), [sym_comment] = STATE(1410), - [aux_sym_cell_path_repeat1] = STATE(1410), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [anon_sym_null] = ACTIONS(895), - [aux_sym_cmd_identifier_token38] = ACTIONS(895), - [aux_sym_cmd_identifier_token39] = ACTIONS(895), - [aux_sym_cmd_identifier_token40] = ACTIONS(895), - [sym__newline] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(893), - [aux_sym_ctrl_match_token1] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(893), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(893), - [anon_sym_DOT_DOT_LT] = ACTIONS(893), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(895), - [aux_sym__val_number_token1] = ACTIONS(895), - [aux_sym__val_number_token2] = ACTIONS(895), - [aux_sym__val_number_token3] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(893), - [anon_sym_0o] = ACTIONS(893), - [anon_sym_0x] = ACTIONS(893), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [aux_sym_unquoted_token1] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1483), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1481), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1411] = { [sym_comment] = STATE(1411), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [aux_sym_cmd_identifier_token38] = ACTIONS(1595), - [aux_sym_cmd_identifier_token39] = ACTIONS(1595), - [aux_sym_cmd_identifier_token40] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1587), - [aux_sym_ctrl_match_token1] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(4666), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1595), - [anon_sym_DOT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1595), - [aux_sym__val_number_token1] = ACTIONS(1595), - [aux_sym__val_number_token2] = ACTIONS(1595), - [aux_sym__val_number_token3] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym__str_single_quotes] = ACTIONS(1595), - [sym__str_back_ticks] = ACTIONS(1595), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1595), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1595), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1519), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1412] = { [sym_comment] = STATE(1412), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4670), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1519), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4704), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1413] = { [sym_comment] = STATE(1413), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4670), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(986), + [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_PLUS_PLUS_EQ] = ACTIONS(988), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [aux_sym_ctrl_match_token1] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(988), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(247), }, [1414] = { - [sym__immediate_decimal] = STATE(7521), [sym_comment] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(2975), - [aux_sym__immediate_decimal_token3] = ACTIONS(2977), - [aux_sym__immediate_decimal_token4] = ACTIONS(2979), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2927), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2927), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token5] = ACTIONS(4632), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(990), + [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_PLUS_PLUS_EQ] = ACTIONS(992), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [aux_sym_ctrl_match_token1] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(992), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), }, [1415] = { [sym_comment] = STATE(1415), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), + }, + [1416] = { + [sym_comment] = STATE(1416), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4708), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), + }, + [1417] = { + [sym_comment] = STATE(1417), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4712), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), + }, + [1418] = { + [sym_comment] = STATE(1418), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_LPAREN2] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4714), + [aux_sym__immediate_decimal_token2] = ACTIONS(4716), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), + }, + [1419] = { + [sym_comment] = STATE(1419), [ts_builtin_sym_end] = ACTIONS(1537), [anon_sym_true] = ACTIONS(1537), [anon_sym_false] = ACTIONS(1537), @@ -205356,43 +211090,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_DOLLAR] = ACTIONS(1525), [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1525), [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(4694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4696), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4696), + [aux_sym__val_number_decimal_token1] = ACTIONS(1525), [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1537), [aux_sym__val_number_token1] = ACTIONS(1537), [aux_sym__val_number_token2] = ACTIONS(1537), [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), + [anon_sym_0b] = ACTIONS(1525), + [sym_filesize_unit] = ACTIONS(4718), + [sym_duration_unit] = ACTIONS(4720), + [anon_sym_0o] = ACTIONS(1525), + [anon_sym_0x] = ACTIONS(1525), [sym_val_date] = ACTIONS(1537), [anon_sym_DQUOTE] = ACTIONS(1537), [sym__str_single_quotes] = ACTIONS(1537), [sym__str_back_ticks] = ACTIONS(1537), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), [anon_sym_err_GT_GT] = ACTIONS(1537), [anon_sym_out_GT_GT] = ACTIONS(1537), [anon_sym_e_GT_GT] = ACTIONS(1537), @@ -205401,3085 +211135,3908 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [aux_sym_unquoted_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), - }, - [1416] = { - [sym_comment] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_PLUS_EQ] = ACTIONS(934), - [anon_sym_DASH_EQ] = ACTIONS(934), - [anon_sym_STAR_EQ] = ACTIONS(934), - [anon_sym_SLASH_EQ] = ACTIONS(934), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(934), - [sym__newline] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_err_GT_PIPE] = ACTIONS(934), - [anon_sym_out_GT_PIPE] = ACTIONS(934), - [anon_sym_e_GT_PIPE] = ACTIONS(934), - [anon_sym_o_GT_PIPE] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(934), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_in] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_and] = ACTIONS(934), - [anon_sym_xor] = ACTIONS(934), - [anon_sym_or] = ACTIONS(934), - [anon_sym_not_DASHin] = ACTIONS(934), - [anon_sym_starts_DASHwith] = ACTIONS(934), - [anon_sym_ends_DASHwith] = ACTIONS(934), - [anon_sym_EQ_EQ] = ACTIONS(934), - [anon_sym_BANG_EQ] = ACTIONS(934), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(934), - [anon_sym_EQ_TILDE] = ACTIONS(934), - [anon_sym_BANG_TILDE] = ACTIONS(934), - [anon_sym_STAR_STAR] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(934), - [anon_sym_SLASH_SLASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(934), - [anon_sym_bit_DASHshr] = ACTIONS(934), - [anon_sym_bit_DASHand] = ACTIONS(934), - [anon_sym_bit_DASHxor] = ACTIONS(934), - [anon_sym_bit_DASHor] = ACTIONS(934), - [anon_sym_DOT_DOT2] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(934), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [anon_sym_err_GT_GT] = ACTIONS(934), - [anon_sym_out_GT_GT] = ACTIONS(934), - [anon_sym_e_GT_GT] = ACTIONS(934), - [anon_sym_o_GT_GT] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(3), - }, - [1417] = { - [sym_comment] = STATE(1417), - [aux_sym_cmd_identifier_token41] = ACTIONS(1398), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [aux_sym_ctrl_match_token1] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_EQ_GT] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4630), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(3), - }, - [1418] = { - [sym_comment] = STATE(1418), - [ts_builtin_sym_end] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1610), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [sym__newline] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_err_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_GT_PIPE] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1608), - [aux_sym_ctrl_match_token1] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_DOT_DOT2] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1608), - [anon_sym_DOT_DOT_LT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1610), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1610), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1608), - [anon_sym_out_GT] = ACTIONS(1608), - [anon_sym_e_GT] = ACTIONS(1608), - [anon_sym_o_GT] = ACTIONS(1608), - [anon_sym_err_PLUSout_GT] = ACTIONS(1608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), - [anon_sym_o_PLUSe_GT] = ACTIONS(1608), - [anon_sym_e_PLUSo_GT] = ACTIONS(1608), - [anon_sym_err_GT_GT] = ACTIONS(1610), - [anon_sym_out_GT_GT] = ACTIONS(1610), - [anon_sym_e_GT_GT] = ACTIONS(1610), - [anon_sym_o_GT_GT] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), - [aux_sym_unquoted_token1] = ACTIONS(1608), - [aux_sym_unquoted_token2] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(3), - }, - [1419] = { - [sym_comment] = STATE(1419), - [anon_sym_EQ] = ACTIONS(942), - [anon_sym_PLUS_EQ] = ACTIONS(944), - [anon_sym_DASH_EQ] = ACTIONS(944), - [anon_sym_STAR_EQ] = ACTIONS(944), - [anon_sym_SLASH_EQ] = ACTIONS(944), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(944), - [sym__newline] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_in] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), - [anon_sym_DOT_DOT_LT2] = ACTIONS(962), - [aux_sym_record_entry_token1] = ACTIONS(4675), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token1] = ACTIONS(1525), + [aux_sym_unquoted_token2] = ACTIONS(4722), + [anon_sym_POUND] = ACTIONS(247), }, [1420] = { [sym_comment] = STATE(1420), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(4677), - [aux_sym__immediate_decimal_token2] = ACTIONS(4679), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(247), }, [1421] = { [sym_comment] = STATE(1421), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_RPAREN] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(4681), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1475), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1422] = { - [sym_path] = STATE(1569), [sym_comment] = STATE(1422), - [aux_sym_cell_path_repeat1] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(891), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_null] = ACTIONS(891), - [aux_sym_cmd_identifier_token38] = ACTIONS(891), - [aux_sym_cmd_identifier_token39] = ACTIONS(891), - [aux_sym_cmd_identifier_token40] = ACTIONS(891), - [sym__newline] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(889), - [aux_sym_ctrl_match_token1] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(889), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(4644), - [anon_sym_DOT_DOT_EQ] = ACTIONS(889), - [anon_sym_DOT_DOT_LT] = ACTIONS(889), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [aux_sym_unquoted_token1] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1709), + [aux_sym_ctrl_match_token1] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(4724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4726), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4726), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1709), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(247), }, [1423] = { [sym_comment] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_PLUS_EQ] = ACTIONS(938), - [anon_sym_DASH_EQ] = ACTIONS(938), - [anon_sym_STAR_EQ] = ACTIONS(938), - [anon_sym_SLASH_EQ] = ACTIONS(938), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(938), - [sym__newline] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_err_GT_PIPE] = ACTIONS(938), - [anon_sym_out_GT_PIPE] = ACTIONS(938), - [anon_sym_e_GT_PIPE] = ACTIONS(938), - [anon_sym_o_GT_PIPE] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(938), - [aux_sym_ctrl_match_token1] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_DOT_DOT2] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [anon_sym_err_GT_GT] = ACTIONS(938), - [anon_sym_out_GT_GT] = ACTIONS(938), - [anon_sym_e_GT_GT] = ACTIONS(938), - [anon_sym_o_GT_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_PLUS_EQ] = ACTIONS(1002), + [anon_sym_DASH_EQ] = ACTIONS(1002), + [anon_sym_STAR_EQ] = ACTIONS(1002), + [anon_sym_SLASH_EQ] = ACTIONS(1002), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [aux_sym_expr_binary_token1] = ACTIONS(1008), + [aux_sym_expr_binary_token2] = ACTIONS(1008), + [aux_sym_expr_binary_token3] = ACTIONS(1008), + [aux_sym_expr_binary_token4] = ACTIONS(1008), + [aux_sym_expr_binary_token5] = ACTIONS(1008), + [aux_sym_expr_binary_token6] = ACTIONS(1008), + [aux_sym_expr_binary_token7] = ACTIONS(1008), + [aux_sym_expr_binary_token8] = ACTIONS(1008), + [aux_sym_expr_binary_token9] = ACTIONS(1008), + [aux_sym_expr_binary_token10] = ACTIONS(1008), + [aux_sym_expr_binary_token11] = ACTIONS(1008), + [aux_sym_expr_binary_token12] = ACTIONS(1008), + [aux_sym_expr_binary_token13] = ACTIONS(1008), + [aux_sym_expr_binary_token14] = ACTIONS(1008), + [aux_sym_expr_binary_token15] = ACTIONS(1008), + [aux_sym_expr_binary_token16] = ACTIONS(1008), + [aux_sym_expr_binary_token17] = ACTIONS(1008), + [aux_sym_expr_binary_token18] = ACTIONS(1008), + [aux_sym_expr_binary_token19] = ACTIONS(1008), + [aux_sym_expr_binary_token20] = ACTIONS(1008), + [aux_sym_expr_binary_token21] = ACTIONS(1008), + [aux_sym_expr_binary_token22] = ACTIONS(1008), + [aux_sym_expr_binary_token23] = ACTIONS(1008), + [aux_sym_expr_binary_token24] = ACTIONS(1008), + [aux_sym_expr_binary_token25] = ACTIONS(1008), + [aux_sym_expr_binary_token26] = ACTIONS(1008), + [aux_sym_expr_binary_token27] = ACTIONS(1008), + [aux_sym_expr_binary_token28] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), }, [1424] = { [sym_comment] = STATE(1424), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [anon_sym_null] = ACTIONS(902), - [aux_sym_cmd_identifier_token38] = ACTIONS(902), - [aux_sym_cmd_identifier_token39] = ACTIONS(902), - [aux_sym_cmd_identifier_token40] = ACTIONS(902), - [sym__newline] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_err_GT_PIPE] = ACTIONS(902), - [anon_sym_out_GT_PIPE] = ACTIONS(902), - [anon_sym_e_GT_PIPE] = ACTIONS(902), - [anon_sym_o_GT_PIPE] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [aux_sym_ctrl_match_token1] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_DOT_DOT] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(4683), - [anon_sym_DOT_DOT2] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(900), - [anon_sym_DOT_DOT_LT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(902), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(902), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(902), - [aux_sym__val_number_token1] = ACTIONS(902), - [aux_sym__val_number_token2] = ACTIONS(902), - [aux_sym__val_number_token3] = ACTIONS(902), - [anon_sym_0b] = ACTIONS(900), - [anon_sym_0o] = ACTIONS(900), - [anon_sym_0x] = ACTIONS(900), - [sym_val_date] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym__str_single_quotes] = ACTIONS(902), - [sym__str_back_ticks] = ACTIONS(902), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [aux_sym_unquoted_token1] = ACTIONS(900), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(988), + [anon_sym_EQ] = ACTIONS(986), + [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_PLUS_PLUS_EQ] = ACTIONS(988), + [sym__newline] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [aux_sym_expr_binary_token1] = ACTIONS(988), + [aux_sym_expr_binary_token2] = ACTIONS(988), + [aux_sym_expr_binary_token3] = ACTIONS(988), + [aux_sym_expr_binary_token4] = ACTIONS(988), + [aux_sym_expr_binary_token5] = ACTIONS(988), + [aux_sym_expr_binary_token6] = ACTIONS(988), + [aux_sym_expr_binary_token7] = ACTIONS(988), + [aux_sym_expr_binary_token8] = ACTIONS(988), + [aux_sym_expr_binary_token9] = ACTIONS(988), + [aux_sym_expr_binary_token10] = ACTIONS(988), + [aux_sym_expr_binary_token11] = ACTIONS(988), + [aux_sym_expr_binary_token12] = ACTIONS(988), + [aux_sym_expr_binary_token13] = ACTIONS(988), + [aux_sym_expr_binary_token14] = ACTIONS(988), + [aux_sym_expr_binary_token15] = ACTIONS(988), + [aux_sym_expr_binary_token16] = ACTIONS(988), + [aux_sym_expr_binary_token17] = ACTIONS(988), + [aux_sym_expr_binary_token18] = ACTIONS(988), + [aux_sym_expr_binary_token19] = ACTIONS(988), + [aux_sym_expr_binary_token20] = ACTIONS(988), + [aux_sym_expr_binary_token21] = ACTIONS(988), + [aux_sym_expr_binary_token22] = ACTIONS(988), + [aux_sym_expr_binary_token23] = ACTIONS(988), + [aux_sym_expr_binary_token24] = ACTIONS(988), + [aux_sym_expr_binary_token25] = ACTIONS(988), + [aux_sym_expr_binary_token26] = ACTIONS(988), + [aux_sym_expr_binary_token27] = ACTIONS(988), + [aux_sym_expr_binary_token28] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(247), }, [1425] = { [sym_comment] = STATE(1425), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [anon_sym_null] = ACTIONS(908), - [aux_sym_cmd_identifier_token38] = ACTIONS(908), - [aux_sym_cmd_identifier_token39] = ACTIONS(908), - [aux_sym_cmd_identifier_token40] = ACTIONS(908), - [sym__newline] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_err_GT_PIPE] = ACTIONS(908), - [anon_sym_out_GT_PIPE] = ACTIONS(908), - [anon_sym_e_GT_PIPE] = ACTIONS(908), - [anon_sym_o_GT_PIPE] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [aux_sym_ctrl_match_token1] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(4685), - [anon_sym_DOT_DOT2] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(906), - [anon_sym_DOT_DOT_LT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(908), - [anon_sym_DOT_DOT_LT2] = ACTIONS(908), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(908), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(908), - [aux_sym__val_number_token1] = ACTIONS(908), - [aux_sym__val_number_token2] = ACTIONS(908), - [aux_sym__val_number_token3] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(906), - [anon_sym_0o] = ACTIONS(906), - [anon_sym_0x] = ACTIONS(906), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [aux_sym_unquoted_token1] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), + [anon_sym_DOT_DOT_LT] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [aux_sym_unquoted_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [1426] = { - [sym__expr_parenthesized_immediate] = STATE(7514), [sym_comment] = STATE(1426), - [sym__newline] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_err_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_GT_PIPE] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_in] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_and] = ACTIONS(1441), - [anon_sym_xor] = ACTIONS(1441), - [anon_sym_or] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1441), - [anon_sym_starts_DASHwith] = ACTIONS(1441), - [anon_sym_ends_DASHwith] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ_TILDE] = ACTIONS(1441), - [anon_sym_BANG_TILDE] = ACTIONS(1441), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_SLASH_SLASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_bit_DASHshl] = ACTIONS(1441), - [anon_sym_bit_DASHshr] = ACTIONS(1441), - [anon_sym_bit_DASHand] = ACTIONS(1441), - [anon_sym_bit_DASHxor] = ACTIONS(1441), - [anon_sym_bit_DASHor] = ACTIONS(1441), - [anon_sym_DOT_DOT2] = ACTIONS(2858), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2862), - [sym_filesize_unit] = ACTIONS(4689), - [sym_duration_unit] = ACTIONS(4691), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token6] = ACTIONS(4687), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(994), + [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_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [aux_sym_expr_binary_token1] = ACTIONS(996), + [aux_sym_expr_binary_token2] = ACTIONS(996), + [aux_sym_expr_binary_token3] = ACTIONS(996), + [aux_sym_expr_binary_token4] = ACTIONS(996), + [aux_sym_expr_binary_token5] = ACTIONS(996), + [aux_sym_expr_binary_token6] = ACTIONS(996), + [aux_sym_expr_binary_token7] = ACTIONS(996), + [aux_sym_expr_binary_token8] = ACTIONS(996), + [aux_sym_expr_binary_token9] = ACTIONS(996), + [aux_sym_expr_binary_token10] = ACTIONS(996), + [aux_sym_expr_binary_token11] = ACTIONS(996), + [aux_sym_expr_binary_token12] = ACTIONS(996), + [aux_sym_expr_binary_token13] = ACTIONS(996), + [aux_sym_expr_binary_token14] = ACTIONS(996), + [aux_sym_expr_binary_token15] = ACTIONS(996), + [aux_sym_expr_binary_token16] = ACTIONS(996), + [aux_sym_expr_binary_token17] = ACTIONS(996), + [aux_sym_expr_binary_token18] = ACTIONS(996), + [aux_sym_expr_binary_token19] = ACTIONS(996), + [aux_sym_expr_binary_token20] = ACTIONS(996), + [aux_sym_expr_binary_token21] = ACTIONS(996), + [aux_sym_expr_binary_token22] = ACTIONS(996), + [aux_sym_expr_binary_token23] = ACTIONS(996), + [aux_sym_expr_binary_token24] = ACTIONS(996), + [aux_sym_expr_binary_token25] = ACTIONS(996), + [aux_sym_expr_binary_token26] = ACTIONS(996), + [aux_sym_expr_binary_token27] = ACTIONS(996), + [aux_sym_expr_binary_token28] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), }, [1427] = { - [sym_path] = STATE(1569), [sym_comment] = STATE(1427), - [aux_sym_cell_path_repeat1] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(895), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [anon_sym_null] = ACTIONS(895), - [aux_sym_cmd_identifier_token38] = ACTIONS(895), - [aux_sym_cmd_identifier_token39] = ACTIONS(895), - [aux_sym_cmd_identifier_token40] = ACTIONS(895), - [sym__newline] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(893), - [aux_sym_ctrl_match_token1] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(893), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(4693), - [anon_sym_DOT_DOT_EQ] = ACTIONS(893), - [anon_sym_DOT_DOT_LT] = ACTIONS(893), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(895), - [aux_sym__val_number_token1] = ACTIONS(895), - [aux_sym__val_number_token2] = ACTIONS(895), - [aux_sym__val_number_token3] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(893), - [anon_sym_0o] = ACTIONS(893), - [anon_sym_0x] = ACTIONS(893), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [aux_sym_unquoted_token1] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [aux_sym_ctrl_match_token1] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, [1428] = { - [sym__match_pattern] = STATE(7508), - [sym__match_pattern_expression] = STATE(7165), - [sym__match_pattern_value] = STATE(7166), - [sym__match_pattern_list] = STATE(7167), - [sym__match_pattern_record] = STATE(7206), - [sym_expr_parenthesized] = STATE(6020), - [sym_val_range] = STATE(7166), - [sym__val_range] = STATE(7523), - [sym_val_nothing] = STATE(7223), - [sym_val_bool] = STATE(7176), - [sym_val_variable] = STATE(6058), - [sym_val_number] = STATE(7223), - [sym__val_number_decimal] = STATE(5666), - [sym__val_number] = STATE(1624), - [sym_val_duration] = STATE(7223), - [sym_val_filesize] = STATE(7223), - [sym_val_binary] = STATE(7223), - [sym_val_string] = STATE(7223), - [sym__str_double_quotes] = STATE(1682), - [sym_val_table] = STATE(7223), - [sym_unquoted] = STATE(7226), - [sym__unquoted_anonymous_prefix] = STATE(7978), [sym_comment] = STATE(1428), - [anon_sym_true] = ACTIONS(4696), - [anon_sym_false] = ACTIONS(4696), - [anon_sym_null] = ACTIONS(4698), - [aux_sym_cmd_identifier_token38] = ACTIONS(4700), - [aux_sym_cmd_identifier_token39] = ACTIONS(4700), - [aux_sym_cmd_identifier_token40] = ACTIONS(4700), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_DOLLAR] = ACTIONS(3603), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4704), - [anon_sym_DOT_DOT_LT] = ACTIONS(4704), - [aux_sym__val_number_decimal_token1] = ACTIONS(4706), - [aux_sym__val_number_decimal_token2] = ACTIONS(4708), - [anon_sym_DOT2] = ACTIONS(4710), - [aux_sym__val_number_decimal_token3] = ACTIONS(4712), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(433), - [sym__str_single_quotes] = ACTIONS(435), - [sym__str_back_ticks] = ACTIONS(435), - [anon_sym_err_GT] = ACTIONS(2454), - [anon_sym_out_GT] = ACTIONS(2454), - [anon_sym_e_GT] = ACTIONS(2454), - [anon_sym_o_GT] = ACTIONS(2454), - [anon_sym_err_PLUSout_GT] = ACTIONS(2454), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2454), - [anon_sym_o_PLUSe_GT] = ACTIONS(2454), - [anon_sym_e_PLUSo_GT] = ACTIONS(2454), - [anon_sym_err_GT_GT] = ACTIONS(2456), - [anon_sym_out_GT_GT] = ACTIONS(2456), - [anon_sym_e_GT_GT] = ACTIONS(2456), - [anon_sym_o_GT_GT] = ACTIONS(2456), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), - [aux_sym_unquoted_token1] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_PLUS_EQ] = ACTIONS(1002), + [anon_sym_DASH_EQ] = ACTIONS(1002), + [anon_sym_STAR_EQ] = ACTIONS(1002), + [anon_sym_SLASH_EQ] = ACTIONS(1002), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), + [sym__newline] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [aux_sym_expr_binary_token1] = ACTIONS(1008), + [aux_sym_expr_binary_token2] = ACTIONS(1008), + [aux_sym_expr_binary_token3] = ACTIONS(1008), + [aux_sym_expr_binary_token4] = ACTIONS(1008), + [aux_sym_expr_binary_token5] = ACTIONS(1008), + [aux_sym_expr_binary_token6] = ACTIONS(1008), + [aux_sym_expr_binary_token7] = ACTIONS(1008), + [aux_sym_expr_binary_token8] = ACTIONS(1008), + [aux_sym_expr_binary_token9] = ACTIONS(1008), + [aux_sym_expr_binary_token10] = ACTIONS(1008), + [aux_sym_expr_binary_token11] = ACTIONS(1008), + [aux_sym_expr_binary_token12] = ACTIONS(1008), + [aux_sym_expr_binary_token13] = ACTIONS(1008), + [aux_sym_expr_binary_token14] = ACTIONS(1008), + [aux_sym_expr_binary_token15] = ACTIONS(1008), + [aux_sym_expr_binary_token16] = ACTIONS(1008), + [aux_sym_expr_binary_token17] = ACTIONS(1008), + [aux_sym_expr_binary_token18] = ACTIONS(1008), + [aux_sym_expr_binary_token19] = ACTIONS(1008), + [aux_sym_expr_binary_token20] = ACTIONS(1008), + [aux_sym_expr_binary_token21] = ACTIONS(1008), + [aux_sym_expr_binary_token22] = ACTIONS(1008), + [aux_sym_expr_binary_token23] = ACTIONS(1008), + [aux_sym_expr_binary_token24] = ACTIONS(1008), + [aux_sym_expr_binary_token25] = ACTIONS(1008), + [aux_sym_expr_binary_token26] = ACTIONS(1008), + [aux_sym_expr_binary_token27] = ACTIONS(1008), + [aux_sym_expr_binary_token28] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [aux_sym_record_entry_token1] = ACTIONS(4728), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), }, [1429] = { [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(4716), - [aux_sym__immediate_decimal_token2] = ACTIONS(4718), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(992), + [anon_sym_EQ] = ACTIONS(990), + [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_PLUS_PLUS_EQ] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [aux_sym_expr_binary_token1] = ACTIONS(992), + [aux_sym_expr_binary_token2] = ACTIONS(992), + [aux_sym_expr_binary_token3] = ACTIONS(992), + [aux_sym_expr_binary_token4] = ACTIONS(992), + [aux_sym_expr_binary_token5] = ACTIONS(992), + [aux_sym_expr_binary_token6] = ACTIONS(992), + [aux_sym_expr_binary_token7] = ACTIONS(992), + [aux_sym_expr_binary_token8] = ACTIONS(992), + [aux_sym_expr_binary_token9] = ACTIONS(992), + [aux_sym_expr_binary_token10] = ACTIONS(992), + [aux_sym_expr_binary_token11] = ACTIONS(992), + [aux_sym_expr_binary_token12] = ACTIONS(992), + [aux_sym_expr_binary_token13] = ACTIONS(992), + [aux_sym_expr_binary_token14] = ACTIONS(992), + [aux_sym_expr_binary_token15] = ACTIONS(992), + [aux_sym_expr_binary_token16] = ACTIONS(992), + [aux_sym_expr_binary_token17] = ACTIONS(992), + [aux_sym_expr_binary_token18] = ACTIONS(992), + [aux_sym_expr_binary_token19] = ACTIONS(992), + [aux_sym_expr_binary_token20] = ACTIONS(992), + [aux_sym_expr_binary_token21] = ACTIONS(992), + [aux_sym_expr_binary_token22] = ACTIONS(992), + [aux_sym_expr_binary_token23] = ACTIONS(992), + [aux_sym_expr_binary_token24] = ACTIONS(992), + [aux_sym_expr_binary_token25] = ACTIONS(992), + [aux_sym_expr_binary_token26] = ACTIONS(992), + [aux_sym_expr_binary_token27] = ACTIONS(992), + [aux_sym_expr_binary_token28] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), }, [1430] = { + [sym__match_pattern] = STATE(7563), + [sym__match_pattern_expression] = STATE(7519), + [sym__match_pattern_value] = STATE(6950), + [sym__match_pattern_list] = STATE(6957), + [sym__match_pattern_record] = STATE(6958), + [sym_expr_parenthesized] = STATE(6007), + [sym_val_range] = STATE(6950), + [sym__val_range] = STATE(8049), + [sym_val_nothing] = STATE(6978), + [sym_val_bool] = STATE(7008), + [sym_val_variable] = STATE(6011), + [sym_val_number] = STATE(6978), + [sym__val_number_decimal] = STATE(5802), + [sym__val_number] = STATE(2137), + [sym_val_duration] = STATE(6978), + [sym_val_filesize] = STATE(6978), + [sym_val_binary] = STATE(6978), + [sym_val_string] = STATE(6978), + [sym__str_double_quotes] = STATE(1851), + [sym_val_table] = STATE(6978), + [sym_unquoted] = STATE(7006), + [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(1430), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(918), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [sym__newline] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_err_GT_PIPE] = ACTIONS(918), - [anon_sym_out_GT_PIPE] = ACTIONS(918), - [anon_sym_e_GT_PIPE] = ACTIONS(918), - [anon_sym_o_GT_PIPE] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(916), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(916), - [aux_sym_ctrl_match_token1] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_DOT_DOT] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ] = ACTIONS(916), - [anon_sym_DOT_DOT_LT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_0b] = ACTIONS(916), - [anon_sym_0o] = ACTIONS(916), - [anon_sym_0x] = ACTIONS(916), - [sym_val_date] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [aux_sym_unquoted_token1] = ACTIONS(916), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3401), + [aux_sym_cmd_identifier_token38] = ACTIONS(4730), + [aux_sym_cmd_identifier_token39] = ACTIONS(4730), + [aux_sym_cmd_identifier_token40] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(3643), + [anon_sym_DOLLAR] = ACTIONS(3645), + [aux_sym_ctrl_match_token1] = ACTIONS(3647), + [anon_sym_DOT_DOT] = ACTIONS(4732), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4734), + [anon_sym_DOT_DOT_LT] = ACTIONS(4734), + [aux_sym__val_number_decimal_token1] = ACTIONS(3405), + [aux_sym__val_number_decimal_token2] = ACTIONS(3407), + [aux_sym__val_number_decimal_token3] = ACTIONS(3409), + [aux_sym__val_number_decimal_token4] = ACTIONS(3411), + [aux_sym__val_number_token1] = ACTIONS(503), + [aux_sym__val_number_token2] = ACTIONS(503), + [aux_sym__val_number_token3] = ACTIONS(503), + [anon_sym_0b] = ACTIONS(505), + [anon_sym_0o] = ACTIONS(507), + [anon_sym_0x] = ACTIONS(507), + [sym_val_date] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__str_single_quotes] = ACTIONS(513), + [sym__str_back_ticks] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2507), + [anon_sym_out_GT_GT] = ACTIONS(2507), + [anon_sym_e_GT_GT] = ACTIONS(2507), + [anon_sym_o_GT_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), + [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(247), }, [1431] = { [sym_comment] = STATE(1431), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(922), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [sym__newline] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_err_GT_PIPE] = ACTIONS(922), - [anon_sym_out_GT_PIPE] = ACTIONS(922), - [anon_sym_e_GT_PIPE] = ACTIONS(922), - [anon_sym_o_GT_PIPE] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [aux_sym_ctrl_match_token1] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(920), - [anon_sym_DOT_DOT_LT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [aux_sym_unquoted_token1] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1432] = { [sym_comment] = STATE(1432), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4722), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [aux_sym_ctrl_match_token1] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(4738), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [1433] = { [sym_comment] = STATE(1433), - [ts_builtin_sym_end] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [aux_sym_cmd_identifier_token38] = ACTIONS(1595), - [aux_sym_cmd_identifier_token39] = ACTIONS(1595), - [aux_sym_cmd_identifier_token40] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1587), - [aux_sym_ctrl_match_token1] = ACTIONS(1595), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(4724), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4726), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1595), - [anon_sym_DOT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1595), - [aux_sym__val_number_token1] = ACTIONS(1595), - [aux_sym__val_number_token2] = ACTIONS(1595), - [aux_sym__val_number_token3] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym__str_single_quotes] = ACTIONS(1595), - [sym__str_back_ticks] = ACTIONS(1595), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1595), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1595), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1483), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_null] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1481), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token1] = ACTIONS(1481), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [anon_sym_0b] = ACTIONS(1481), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1481), + [anon_sym_0x] = ACTIONS(1481), + [sym_val_date] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1434] = { [sym_comment] = STATE(1434), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_PLUS_EQ] = ACTIONS(938), - [anon_sym_DASH_EQ] = ACTIONS(938), - [anon_sym_STAR_EQ] = ACTIONS(938), - [anon_sym_SLASH_EQ] = ACTIONS(938), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(938), - [sym__newline] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_err_GT_PIPE] = ACTIONS(938), - [anon_sym_out_GT_PIPE] = ACTIONS(938), - [anon_sym_e_GT_PIPE] = ACTIONS(938), - [anon_sym_o_GT_PIPE] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(938), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_DOT_DOT2] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [anon_sym_err_GT_GT] = ACTIONS(938), - [anon_sym_out_GT_GT] = ACTIONS(938), - [anon_sym_e_GT_GT] = ACTIONS(938), - [anon_sym_o_GT_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(966), + [aux_sym_ctrl_match_token1] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [1435] = { [sym_comment] = STATE(1435), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(914), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(912), - [aux_sym_ctrl_match_token1] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ] = ACTIONS(912), - [anon_sym_DOT_DOT_LT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(912), - [anon_sym_0o] = ACTIONS(912), - [anon_sym_0x] = ACTIONS(912), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [aux_sym_unquoted_token1] = ACTIONS(912), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1650), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), + [anon_sym_DOT_DOT_LT] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(4740), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [aux_sym_unquoted_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [1436] = { [sym_comment] = STATE(1436), - [sym__newline] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_err_GT_PIPE] = ACTIONS(902), - [anon_sym_out_GT_PIPE] = ACTIONS(902), - [anon_sym_e_GT_PIPE] = ACTIONS(902), - [anon_sym_o_GT_PIPE] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_in] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [aux_sym_ctrl_match_token1] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_EQ_GT] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(4728), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT2] = ACTIONS(900), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_DOT_DOT2] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_EQ_GT] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4742), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4744), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [aux_sym_record_entry_token1] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), }, [1437] = { [sym_comment] = STATE(1437), - [sym__newline] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_err_GT_PIPE] = ACTIONS(908), - [anon_sym_out_GT_PIPE] = ACTIONS(908), - [anon_sym_e_GT_PIPE] = ACTIONS(908), - [anon_sym_o_GT_PIPE] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_in] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [aux_sym_ctrl_match_token1] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(4730), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_DOT_DOT2] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(908), - [anon_sym_DOT_DOT_LT2] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1521), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1519), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1519), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [anon_sym_0b] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_0o] = ACTIONS(1519), + [anon_sym_0x] = ACTIONS(1519), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1438] = { [sym_comment] = STATE(1438), - [aux_sym_cmd_identifier_token41] = ACTIONS(1376), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_RPAREN] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1378), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_EQ_GT] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(4732), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1585), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), }, [1439] = { [sym_comment] = STATE(1439), - [aux_sym_cmd_identifier_token41] = ACTIONS(1368), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(4648), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4613), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1440] = { - [sym_cell_path] = STATE(1552), - [sym_path] = STATE(1472), + [sym_path] = STATE(1597), [sym_comment] = STATE(1440), - [aux_sym_cell_path_repeat1] = STATE(1503), - [sym__newline] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_err_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_GT_PIPE] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), - [anon_sym_RPAREN] = ACTIONS(1549), - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [aux_sym_ctrl_match_token1] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_and] = ACTIONS(1549), - [anon_sym_xor] = ACTIONS(1549), - [anon_sym_or] = ACTIONS(1549), - [anon_sym_not_DASHin] = ACTIONS(1549), - [anon_sym_starts_DASHwith] = ACTIONS(1549), - [anon_sym_ends_DASHwith] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1549), - [anon_sym_LT2] = ACTIONS(1545), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_EQ_TILDE] = ACTIONS(1549), - [anon_sym_BANG_TILDE] = ACTIONS(1549), - [anon_sym_STAR_STAR] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_mod] = ACTIONS(1549), - [anon_sym_SLASH_SLASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_bit_DASHshl] = ACTIONS(1549), - [anon_sym_bit_DASHshr] = ACTIONS(1549), - [anon_sym_bit_DASHand] = ACTIONS(1549), - [anon_sym_bit_DASHxor] = ACTIONS(1549), - [anon_sym_bit_DASHor] = ACTIONS(1549), - [anon_sym_DOT_DOT2] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(4734), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1545), - [anon_sym_out_GT] = ACTIONS(1545), - [anon_sym_e_GT] = ACTIONS(1545), - [anon_sym_o_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT] = ACTIONS(1545), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1441), + [ts_builtin_sym_end] = ACTIONS(953), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_null] = ACTIONS(953), + [aux_sym_cmd_identifier_token38] = ACTIONS(953), + [aux_sym_cmd_identifier_token39] = ACTIONS(953), + [aux_sym_cmd_identifier_token40] = ACTIONS(953), + [sym__newline] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_err_GT_PIPE] = ACTIONS(953), + [anon_sym_out_GT_PIPE] = ACTIONS(953), + [anon_sym_e_GT_PIPE] = ACTIONS(953), + [anon_sym_o_GT_PIPE] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(951), + [aux_sym_ctrl_match_token1] = ACTIONS(953), + [anon_sym_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT2] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_DOT_DOT_EQ] = ACTIONS(951), + [anon_sym_DOT_DOT_LT] = ACTIONS(951), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(953), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(953), + [aux_sym__val_number_decimal_token3] = ACTIONS(953), + [aux_sym__val_number_decimal_token4] = ACTIONS(953), + [aux_sym__val_number_token1] = ACTIONS(953), + [aux_sym__val_number_token2] = ACTIONS(953), + [aux_sym__val_number_token3] = ACTIONS(953), + [anon_sym_0b] = ACTIONS(951), + [anon_sym_0o] = ACTIONS(951), + [anon_sym_0x] = ACTIONS(951), + [sym_val_date] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym__str_single_quotes] = ACTIONS(953), + [sym__str_back_ticks] = ACTIONS(953), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(953), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(953), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [aux_sym_unquoted_token1] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(247), }, [1441] = { + [sym_path] = STATE(1597), [sym_comment] = STATE(1441), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(4558), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1441), + [ts_builtin_sym_end] = ACTIONS(957), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_null] = ACTIONS(957), + [aux_sym_cmd_identifier_token38] = ACTIONS(957), + [aux_sym_cmd_identifier_token39] = ACTIONS(957), + [aux_sym_cmd_identifier_token40] = ACTIONS(957), + [sym__newline] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_err_GT_PIPE] = ACTIONS(957), + [anon_sym_out_GT_PIPE] = ACTIONS(957), + [anon_sym_e_GT_PIPE] = ACTIONS(957), + [anon_sym_o_GT_PIPE] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(955), + [aux_sym_ctrl_match_token1] = ACTIONS(957), + [anon_sym_DOT_DOT] = ACTIONS(955), + [anon_sym_DOT_DOT2] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_DOT_DOT_EQ] = ACTIONS(955), + [anon_sym_DOT_DOT_LT] = ACTIONS(955), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(957), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(957), + [aux_sym__val_number_decimal_token3] = ACTIONS(957), + [aux_sym__val_number_decimal_token4] = ACTIONS(957), + [aux_sym__val_number_token1] = ACTIONS(957), + [aux_sym__val_number_token2] = ACTIONS(957), + [aux_sym__val_number_token3] = ACTIONS(957), + [anon_sym_0b] = ACTIONS(955), + [anon_sym_0o] = ACTIONS(955), + [anon_sym_0x] = ACTIONS(955), + [sym_val_date] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__str_single_quotes] = ACTIONS(957), + [sym__str_back_ticks] = ACTIONS(957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(957), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [aux_sym_unquoted_token1] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(247), }, [1442] = { [sym_comment] = STATE(1442), - [anon_sym_EQ] = ACTIONS(942), - [anon_sym_PLUS_EQ] = ACTIONS(944), - [anon_sym_DASH_EQ] = ACTIONS(944), - [anon_sym_STAR_EQ] = ACTIONS(944), - [anon_sym_SLASH_EQ] = ACTIONS(944), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(944), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_in] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), - [anon_sym_DOT_DOT_LT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(962), + [aux_sym_ctrl_match_token1] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_DOT_DOT_LT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(962), + [anon_sym_0x] = ACTIONS(962), + [sym_val_date] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), }, [1443] = { - [sym_cell_path] = STATE(1577), - [sym_path] = STATE(1472), [sym_comment] = STATE(1443), - [aux_sym_cell_path_repeat1] = STATE(1503), - [sym__newline] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(885), - [anon_sym_in] = ACTIONS(885), - [aux_sym_ctrl_match_token1] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_and] = ACTIONS(885), - [anon_sym_xor] = ACTIONS(885), - [anon_sym_or] = ACTIONS(885), - [anon_sym_not_DASHin] = ACTIONS(885), - [anon_sym_starts_DASHwith] = ACTIONS(885), - [anon_sym_ends_DASHwith] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_EQ_TILDE] = ACTIONS(885), - [anon_sym_BANG_TILDE] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(885), - [anon_sym_SLASH_SLASH] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(885), - [anon_sym_bit_DASHshr] = ACTIONS(885), - [anon_sym_bit_DASHand] = ACTIONS(885), - [anon_sym_bit_DASHxor] = ACTIONS(885), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(4734), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1698), + [anon_sym_false] = ACTIONS(1698), + [anon_sym_null] = ACTIONS(1698), + [aux_sym_cmd_identifier_token38] = ACTIONS(1698), + [aux_sym_cmd_identifier_token39] = ACTIONS(1698), + [aux_sym_cmd_identifier_token40] = ACTIONS(1698), + [sym__newline] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_err_GT_PIPE] = ACTIONS(1698), + [anon_sym_out_GT_PIPE] = ACTIONS(1698), + [anon_sym_e_GT_PIPE] = ACTIONS(1698), + [anon_sym_o_GT_PIPE] = ACTIONS(1698), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1698), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1698), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1698), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_RPAREN] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1690), + [aux_sym_ctrl_match_token1] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_DOT_DOT] = ACTIONS(1690), + [anon_sym_LPAREN2] = ACTIONS(1692), + [anon_sym_DOT_DOT2] = ACTIONS(4749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1690), + [anon_sym_DOT_DOT_LT] = ACTIONS(1690), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1690), + [aux_sym__val_number_decimal_token2] = ACTIONS(1698), + [aux_sym__val_number_decimal_token3] = ACTIONS(1698), + [aux_sym__val_number_decimal_token4] = ACTIONS(1698), + [aux_sym__val_number_token1] = ACTIONS(1698), + [aux_sym__val_number_token2] = ACTIONS(1698), + [aux_sym__val_number_token3] = ACTIONS(1698), + [anon_sym_0b] = ACTIONS(1690), + [anon_sym_0o] = ACTIONS(1690), + [anon_sym_0x] = ACTIONS(1690), + [sym_val_date] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym__str_single_quotes] = ACTIONS(1698), + [sym__str_back_ticks] = ACTIONS(1698), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1698), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1698), + [anon_sym_err_GT] = ACTIONS(1690), + [anon_sym_out_GT] = ACTIONS(1690), + [anon_sym_e_GT] = ACTIONS(1690), + [anon_sym_o_GT] = ACTIONS(1690), + [anon_sym_err_PLUSout_GT] = ACTIONS(1690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1690), + [anon_sym_o_PLUSe_GT] = ACTIONS(1690), + [anon_sym_e_PLUSo_GT] = ACTIONS(1690), + [anon_sym_err_GT_GT] = ACTIONS(1698), + [anon_sym_out_GT_GT] = ACTIONS(1698), + [anon_sym_e_GT_GT] = ACTIONS(1698), + [anon_sym_o_GT_GT] = ACTIONS(1698), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1698), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1698), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1698), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1698), + [aux_sym_unquoted_token1] = ACTIONS(1690), + [aux_sym_unquoted_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), }, [1444] = { [sym_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(4753), + [aux_sym__immediate_decimal_token2] = ACTIONS(4755), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [1445] = { [sym_comment] = STATE(1445), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_PLUS_EQ] = ACTIONS(938), - [anon_sym_DASH_EQ] = ACTIONS(938), - [anon_sym_STAR_EQ] = ACTIONS(938), - [anon_sym_SLASH_EQ] = ACTIONS(938), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(938), - [sym__newline] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_err_GT_PIPE] = ACTIONS(938), - [anon_sym_out_GT_PIPE] = ACTIONS(938), - [anon_sym_e_GT_PIPE] = ACTIONS(938), - [anon_sym_o_GT_PIPE] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_in] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_DOT_DOT2] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(938), - [aux_sym_record_entry_token1] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [anon_sym_err_GT_GT] = ACTIONS(938), - [anon_sym_out_GT_GT] = ACTIONS(938), - [anon_sym_e_GT_GT] = ACTIONS(938), - [anon_sym_o_GT_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [aux_sym_ctrl_match_token1] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [anon_sym_DOT_DOT_LT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [1446] = { [sym_comment] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [aux_sym_cmd_identifier_token38] = ACTIONS(1580), - [aux_sym_cmd_identifier_token39] = ACTIONS(1580), - [aux_sym_cmd_identifier_token40] = ACTIONS(1580), - [sym__newline] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_err_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_GT_PIPE] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1570), - [aux_sym_ctrl_match_token1] = ACTIONS(1580), - [anon_sym_DOT_DOT] = ACTIONS(1570), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_DOT_DOT2] = ACTIONS(4736), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1570), - [anon_sym_DOT_DOT_LT] = ACTIONS(1570), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4738), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4738), - [aux_sym__val_number_decimal_token1] = ACTIONS(1570), - [aux_sym__val_number_decimal_token2] = ACTIONS(1580), - [anon_sym_DOT2] = ACTIONS(1570), - [aux_sym__val_number_decimal_token3] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1580), - [aux_sym__val_number_token2] = ACTIONS(1580), - [aux_sym__val_number_token3] = ACTIONS(1580), - [anon_sym_0b] = ACTIONS(1570), - [anon_sym_0o] = ACTIONS(1570), - [anon_sym_0x] = ACTIONS(1570), - [sym_val_date] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1580), - [sym__str_single_quotes] = ACTIONS(1580), - [sym__str_back_ticks] = ACTIONS(1580), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1580), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1570), - [anon_sym_out_GT] = ACTIONS(1570), - [anon_sym_e_GT] = ACTIONS(1570), - [anon_sym_o_GT] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT] = ACTIONS(1570), - [anon_sym_err_GT_GT] = ACTIONS(1580), - [anon_sym_out_GT_GT] = ACTIONS(1580), - [anon_sym_e_GT_GT] = ACTIONS(1580), - [anon_sym_o_GT_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), - [aux_sym_unquoted_token1] = ACTIONS(1570), - [aux_sym_unquoted_token2] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1023), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(247), }, [1447] = { [sym_comment] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_PLUS_EQ] = ACTIONS(930), - [anon_sym_DASH_EQ] = ACTIONS(930), - [anon_sym_STAR_EQ] = ACTIONS(930), - [anon_sym_SLASH_EQ] = ACTIONS(930), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(930), - [sym__newline] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_err_GT_PIPE] = ACTIONS(930), - [anon_sym_out_GT_PIPE] = ACTIONS(930), - [anon_sym_e_GT_PIPE] = ACTIONS(930), - [anon_sym_o_GT_PIPE] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_in] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_and] = ACTIONS(930), - [anon_sym_xor] = ACTIONS(930), - [anon_sym_or] = ACTIONS(930), - [anon_sym_not_DASHin] = ACTIONS(930), - [anon_sym_starts_DASHwith] = ACTIONS(930), - [anon_sym_ends_DASHwith] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(930), - [anon_sym_BANG_EQ] = ACTIONS(930), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(930), - [anon_sym_GT_EQ] = ACTIONS(930), - [anon_sym_EQ_TILDE] = ACTIONS(930), - [anon_sym_BANG_TILDE] = ACTIONS(930), - [anon_sym_STAR_STAR] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(930), - [anon_sym_SLASH_SLASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(930), - [anon_sym_bit_DASHshr] = ACTIONS(930), - [anon_sym_bit_DASHand] = ACTIONS(930), - [anon_sym_bit_DASHxor] = ACTIONS(930), - [anon_sym_bit_DASHor] = ACTIONS(930), - [anon_sym_DOT_DOT2] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(930), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [anon_sym_err_GT_GT] = ACTIONS(930), - [anon_sym_out_GT_GT] = ACTIONS(930), - [anon_sym_e_GT_GT] = ACTIONS(930), - [anon_sym_o_GT_GT] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1481), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_EQ_GT] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4757), + [aux_sym__immediate_decimal_token2] = ACTIONS(4759), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [aux_sym_record_entry_token1] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(247), }, [1448] = { [sym_comment] = STATE(1448), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(4740), - [aux_sym__immediate_decimal_token2] = ACTIONS(4742), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_null] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [sym__newline] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_err_GT_PIPE] = ACTIONS(972), + [anon_sym_out_GT_PIPE] = ACTIONS(972), + [anon_sym_e_GT_PIPE] = ACTIONS(972), + [anon_sym_o_GT_PIPE] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(970), + [aux_sym_ctrl_match_token1] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(4761), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_DOT_DOT_LT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [anon_sym_0b] = ACTIONS(970), + [anon_sym_0o] = ACTIONS(970), + [anon_sym_0x] = ACTIONS(970), + [sym_val_date] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(972), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [aux_sym_unquoted_token1] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), }, [1449] = { + [sym_cell_path] = STATE(1931), + [sym_path] = STATE(1715), [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(924), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(926), - [sym__newline] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_err_GT_PIPE] = ACTIONS(926), - [anon_sym_out_GT_PIPE] = ACTIONS(926), - [anon_sym_e_GT_PIPE] = ACTIONS(926), - [anon_sym_o_GT_PIPE] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_in] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_and] = ACTIONS(926), - [anon_sym_xor] = ACTIONS(926), - [anon_sym_or] = ACTIONS(926), - [anon_sym_not_DASHin] = ACTIONS(926), - [anon_sym_starts_DASHwith] = ACTIONS(926), - [anon_sym_ends_DASHwith] = ACTIONS(926), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_EQ_TILDE] = ACTIONS(926), - [anon_sym_BANG_TILDE] = ACTIONS(926), - [anon_sym_STAR_STAR] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(926), - [anon_sym_SLASH_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(926), - [anon_sym_bit_DASHshr] = ACTIONS(926), - [anon_sym_bit_DASHand] = ACTIONS(926), - [anon_sym_bit_DASHxor] = ACTIONS(926), - [anon_sym_bit_DASHor] = ACTIONS(926), - [anon_sym_DOT_DOT2] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(926), - [anon_sym_DOT_DOT_LT2] = ACTIONS(926), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [anon_sym_err_GT_GT] = ACTIONS(926), - [anon_sym_out_GT_GT] = ACTIONS(926), - [anon_sym_e_GT_GT] = ACTIONS(926), - [anon_sym_o_GT_GT] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1857), + [aux_sym_cmd_identifier_token38] = ACTIONS(1857), + [aux_sym_cmd_identifier_token39] = ACTIONS(1857), + [aux_sym_cmd_identifier_token40] = ACTIONS(1857), + [sym__newline] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_err_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_GT_PIPE] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1855), + [aux_sym_ctrl_match_token1] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), + [anon_sym_DOT_DOT_LT] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [anon_sym_0b] = ACTIONS(1855), + [anon_sym_0o] = ACTIONS(1855), + [anon_sym_0x] = ACTIONS(1855), + [sym_val_date] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), + [anon_sym_err_GT] = ACTIONS(1855), + [anon_sym_out_GT] = ACTIONS(1855), + [anon_sym_e_GT] = ACTIONS(1855), + [anon_sym_o_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT] = ACTIONS(1855), + [anon_sym_err_GT_GT] = ACTIONS(1857), + [anon_sym_out_GT_GT] = ACTIONS(1857), + [anon_sym_e_GT_GT] = ACTIONS(1857), + [anon_sym_o_GT_GT] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), + [aux_sym_unquoted_token1] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(247), }, [1450] = { - [sym__immediate_decimal] = STATE(5940), [sym_comment] = STATE(1450), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_and] = ACTIONS(2925), - [anon_sym_xor] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2925), - [anon_sym_starts_DASHwith] = ACTIONS(2925), - [anon_sym_ends_DASHwith] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_EQ_TILDE] = ACTIONS(2925), - [anon_sym_BANG_TILDE] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_STAR_STAR] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_bit_DASHshl] = ACTIONS(2925), - [anon_sym_bit_DASHshr] = ACTIONS(2925), - [anon_sym_bit_DASHand] = ACTIONS(2925), - [anon_sym_bit_DASHxor] = ACTIONS(2925), - [anon_sym_bit_DASHor] = ACTIONS(2925), - [anon_sym_DOT] = ACTIONS(4744), - [aux_sym__immediate_decimal_token1] = ACTIONS(2933), - [aux_sym__immediate_decimal_token3] = ACTIONS(2933), - [aux_sym__immediate_decimal_token4] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token4] = ACTIONS(4687), - [aux_sym_unquoted_token6] = ACTIONS(4746), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(4765), + [anon_sym_PLUS_EQ] = ACTIONS(4767), + [anon_sym_DASH_EQ] = ACTIONS(4767), + [anon_sym_STAR_EQ] = ACTIONS(4767), + [anon_sym_SLASH_EQ] = ACTIONS(4767), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4767), + [sym__newline] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1008), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), }, [1451] = { [sym_comment] = STATE(1451), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(4679), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(972), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_null] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [sym__newline] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_err_GT_PIPE] = ACTIONS(972), + [anon_sym_out_GT_PIPE] = ACTIONS(972), + [anon_sym_e_GT_PIPE] = ACTIONS(972), + [anon_sym_o_GT_PIPE] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(970), + [aux_sym_ctrl_match_token1] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(4769), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_DOT_DOT_LT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [anon_sym_0b] = ACTIONS(970), + [anon_sym_0o] = ACTIONS(970), + [anon_sym_0x] = ACTIONS(970), + [sym_val_date] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(972), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [aux_sym_unquoted_token1] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), }, [1452] = { [sym_comment] = STATE(1452), - [sym__newline] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_err_GT_PIPE] = ACTIONS(918), - [anon_sym_out_GT_PIPE] = ACTIONS(918), - [anon_sym_e_GT_PIPE] = ACTIONS(918), - [anon_sym_o_GT_PIPE] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_in] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [aux_sym_ctrl_match_token1] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_EQ_GT] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_and] = ACTIONS(918), - [anon_sym_xor] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_not_DASHin] = ACTIONS(918), - [anon_sym_starts_DASHwith] = ACTIONS(918), - [anon_sym_ends_DASHwith] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT2] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_TILDE] = ACTIONS(918), - [anon_sym_BANG_TILDE] = ACTIONS(918), - [anon_sym_STAR_STAR] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(916), - [anon_sym_mod] = ACTIONS(918), - [anon_sym_SLASH_SLASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(918), - [anon_sym_bit_DASHshr] = ACTIONS(918), - [anon_sym_bit_DASHand] = ACTIONS(918), - [anon_sym_bit_DASHxor] = ACTIONS(918), - [anon_sym_bit_DASHor] = ACTIONS(918), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [aux_sym_record_entry_token1] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(982), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [aux_sym_ctrl_match_token1] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(4771), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [1453] = { [sym_comment] = STATE(1453), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [anon_sym_null] = ACTIONS(926), - [aux_sym_cmd_identifier_token38] = ACTIONS(926), - [aux_sym_cmd_identifier_token39] = ACTIONS(926), - [aux_sym_cmd_identifier_token40] = ACTIONS(926), - [sym__newline] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_err_GT_PIPE] = ACTIONS(926), - [anon_sym_out_GT_PIPE] = ACTIONS(926), - [anon_sym_e_GT_PIPE] = ACTIONS(926), - [anon_sym_o_GT_PIPE] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [aux_sym_ctrl_match_token1] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT2] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(924), - [anon_sym_DOT_DOT_LT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(926), - [anon_sym_DOT_DOT_LT2] = ACTIONS(926), - [aux_sym__val_number_decimal_token1] = ACTIONS(924), - [aux_sym__val_number_decimal_token2] = ACTIONS(926), - [anon_sym_DOT2] = ACTIONS(924), - [aux_sym__val_number_decimal_token3] = ACTIONS(926), - [aux_sym__val_number_token1] = ACTIONS(926), - [aux_sym__val_number_token2] = ACTIONS(926), - [aux_sym__val_number_token3] = ACTIONS(926), - [anon_sym_0b] = ACTIONS(924), - [anon_sym_0o] = ACTIONS(924), - [anon_sym_0x] = ACTIONS(924), - [sym_val_date] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym__str_single_quotes] = ACTIONS(926), - [sym__str_back_ticks] = ACTIONS(926), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [anon_sym_err_GT_GT] = ACTIONS(926), - [anon_sym_out_GT_GT] = ACTIONS(926), - [anon_sym_e_GT_GT] = ACTIONS(926), - [anon_sym_o_GT_GT] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(926), - [aux_sym_unquoted_token1] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_LPAREN2] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4773), + [aux_sym__immediate_decimal_token2] = ACTIONS(4775), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1454] = { [sym_comment] = STATE(1454), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(4748), - [aux_sym__immediate_decimal_token2] = ACTIONS(4750), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(4777), + [aux_sym__immediate_decimal_token2] = ACTIONS(4779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [1455] = { - [sym_cell_path] = STATE(1820), - [sym_path] = STATE(1726), + [sym_cell_path] = STATE(1929), + [sym_path] = STATE(1715), [sym_comment] = STATE(1455), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1784), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1784), - [aux_sym_ctrl_match_token1] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1784), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [anon_sym_DOT2] = ACTIONS(1784), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_0b] = ACTIONS(1784), - [anon_sym_0o] = ACTIONS(1784), - [anon_sym_0x] = ACTIONS(1784), - [sym_val_date] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_err_GT] = ACTIONS(1784), - [anon_sym_out_GT] = ACTIONS(1784), - [anon_sym_e_GT] = ACTIONS(1784), - [anon_sym_o_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT] = ACTIONS(1784), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token1] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [anon_sym_null] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [sym__newline] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_err_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_GT_PIPE] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1747), + [aux_sym_ctrl_match_token1] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [anon_sym_0b] = ACTIONS(1747), + [anon_sym_0o] = ACTIONS(1747), + [anon_sym_0x] = ACTIONS(1747), + [sym_val_date] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1749), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1749), + [anon_sym_err_GT] = ACTIONS(1747), + [anon_sym_out_GT] = ACTIONS(1747), + [anon_sym_e_GT] = ACTIONS(1747), + [anon_sym_o_GT] = ACTIONS(1747), + [anon_sym_err_PLUSout_GT] = ACTIONS(1747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), + [anon_sym_o_PLUSe_GT] = ACTIONS(1747), + [anon_sym_e_PLUSo_GT] = ACTIONS(1747), + [anon_sym_err_GT_GT] = ACTIONS(1749), + [anon_sym_out_GT_GT] = ACTIONS(1749), + [anon_sym_e_GT_GT] = ACTIONS(1749), + [anon_sym_o_GT_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), + [aux_sym_unquoted_token1] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(247), }, [1456] = { [sym_comment] = STATE(1456), - [aux_sym_cmd_identifier_token41] = ACTIONS(1368), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [aux_sym_ctrl_match_token1] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4712), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), + }, + [1457] = { + [sym_comment] = STATE(1457), + [ts_builtin_sym_end] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), + }, + [1458] = { + [sym_cell_path] = STATE(1937), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1458), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1745), + [anon_sym_false] = ACTIONS(1745), + [anon_sym_null] = ACTIONS(1745), + [aux_sym_cmd_identifier_token38] = ACTIONS(1745), + [aux_sym_cmd_identifier_token39] = ACTIONS(1745), + [aux_sym_cmd_identifier_token40] = ACTIONS(1745), + [sym__newline] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_PIPE] = ACTIONS(1745), + [anon_sym_err_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_GT_PIPE] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_RPAREN] = ACTIONS(1745), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1741), + [aux_sym_ctrl_match_token1] = ACTIONS(1745), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_DOT_DOT] = ACTIONS(1741), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), + [anon_sym_DOT_DOT_LT] = ACTIONS(1745), + [aux_sym__val_number_decimal_token1] = ACTIONS(1741), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1745), + [aux_sym__val_number_decimal_token4] = ACTIONS(1745), + [aux_sym__val_number_token1] = ACTIONS(1745), + [aux_sym__val_number_token2] = ACTIONS(1745), + [aux_sym__val_number_token3] = ACTIONS(1745), + [anon_sym_0b] = ACTIONS(1741), + [anon_sym_0o] = ACTIONS(1741), + [anon_sym_0x] = ACTIONS(1741), + [sym_val_date] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym__str_single_quotes] = ACTIONS(1745), + [sym__str_back_ticks] = ACTIONS(1745), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), + [anon_sym_err_GT] = ACTIONS(1741), + [anon_sym_out_GT] = ACTIONS(1741), + [anon_sym_e_GT] = ACTIONS(1741), + [anon_sym_o_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT] = ACTIONS(1741), + [anon_sym_err_GT_GT] = ACTIONS(1745), + [anon_sym_out_GT_GT] = ACTIONS(1745), + [anon_sym_e_GT_GT] = ACTIONS(1745), + [anon_sym_o_GT_GT] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [aux_sym_unquoted_token1] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), + }, + [1459] = { + [sym_comment] = STATE(1459), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_LPAREN2] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4781), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), + }, + [1460] = { + [sym_cell_path] = STATE(1938), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1460), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [sym__newline] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_err_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_GT_PIPE] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_RPAREN] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1899), + [aux_sym_ctrl_match_token1] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), + [anon_sym_DOT_DOT_LT] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [anon_sym_0b] = ACTIONS(1899), + [anon_sym_0o] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1899), + [sym_val_date] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1901), + [anon_sym_err_GT] = ACTIONS(1899), + [anon_sym_out_GT] = ACTIONS(1899), + [anon_sym_e_GT] = ACTIONS(1899), + [anon_sym_o_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT] = ACTIONS(1899), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), + [aux_sym_unquoted_token1] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(247), + }, + [1461] = { + [sym_comment] = STATE(1461), + [ts_builtin_sym_end] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [aux_sym_ctrl_match_token1] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), + }, + [1462] = { + [sym_comment] = STATE(1462), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4785), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), + }, + [1463] = { + [sym_cell_path] = STATE(1930), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1463), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [sym__newline] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_err_GT_PIPE] = ACTIONS(1826), + [anon_sym_out_GT_PIPE] = ACTIONS(1826), + [anon_sym_e_GT_PIPE] = ACTIONS(1826), + [anon_sym_o_GT_PIPE] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1824), + [aux_sym_ctrl_match_token1] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_LT] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1824), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_0b] = ACTIONS(1824), + [anon_sym_0o] = ACTIONS(1824), + [anon_sym_0x] = ACTIONS(1824), + [sym_val_date] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), + [anon_sym_err_GT] = ACTIONS(1824), + [anon_sym_out_GT] = ACTIONS(1824), + [anon_sym_e_GT] = ACTIONS(1824), + [anon_sym_o_GT] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT] = ACTIONS(1824), + [anon_sym_err_GT_GT] = ACTIONS(1826), + [anon_sym_out_GT_GT] = ACTIONS(1826), + [anon_sym_e_GT_GT] = ACTIONS(1826), + [anon_sym_o_GT_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), + [aux_sym_unquoted_token1] = ACTIONS(1824), + [anon_sym_POUND] = ACTIONS(247), + }, + [1464] = { + [sym_cell_path] = STATE(1939), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1464), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [sym__newline] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_err_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_GT_PIPE] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_RPAREN] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1831), + [aux_sym_ctrl_match_token1] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), + [anon_sym_DOT_DOT_LT] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1831), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [anon_sym_0b] = ACTIONS(1831), + [anon_sym_0o] = ACTIONS(1831), + [anon_sym_0x] = ACTIONS(1831), + [sym_val_date] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1833), + [sym__str_single_quotes] = ACTIONS(1833), + [sym__str_back_ticks] = ACTIONS(1833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), + [anon_sym_err_GT] = ACTIONS(1831), + [anon_sym_out_GT] = ACTIONS(1831), + [anon_sym_e_GT] = ACTIONS(1831), + [anon_sym_o_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT] = ACTIONS(1831), + [anon_sym_err_GT_GT] = ACTIONS(1833), + [anon_sym_out_GT_GT] = ACTIONS(1833), + [anon_sym_e_GT_GT] = ACTIONS(1833), + [anon_sym_o_GT_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), + [aux_sym_unquoted_token1] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(247), + }, + [1465] = { + [sym_comment] = STATE(1465), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(996), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(994), + [aux_sym_ctrl_match_token1] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + }, + [1466] = { + [sym_cell_path] = STATE(1896), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1466), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1764), + [anon_sym_false] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1764), + [aux_sym_cmd_identifier_token38] = ACTIONS(1764), + [aux_sym_cmd_identifier_token39] = ACTIONS(1764), + [aux_sym_cmd_identifier_token40] = ACTIONS(1764), + [sym__newline] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_err_GT_PIPE] = ACTIONS(1764), + [anon_sym_out_GT_PIPE] = ACTIONS(1764), + [anon_sym_e_GT_PIPE] = ACTIONS(1764), + [anon_sym_o_GT_PIPE] = ACTIONS(1764), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1764), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1764), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1764), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_DASH] = ACTIONS(1762), + [aux_sym_ctrl_match_token1] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1764), + [anon_sym_DOT_DOT_LT] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1762), + [aux_sym__val_number_decimal_token2] = ACTIONS(1764), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(1764), + [aux_sym__val_number_token2] = ACTIONS(1764), + [aux_sym__val_number_token3] = ACTIONS(1764), + [anon_sym_0b] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1762), + [anon_sym_0x] = ACTIONS(1762), + [sym_val_date] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [sym__str_single_quotes] = ACTIONS(1764), + [sym__str_back_ticks] = ACTIONS(1764), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1764), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1764), + [anon_sym_out_GT_GT] = ACTIONS(1764), + [anon_sym_e_GT_GT] = ACTIONS(1764), + [anon_sym_o_GT_GT] = ACTIONS(1764), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1764), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1764), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1764), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1764), + [aux_sym_unquoted_token1] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(247), + }, + [1467] = { + [sym_cell_path] = STATE(1925), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1467), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1881), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1879), + [aux_sym_ctrl_match_token1] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), + }, + [1468] = { + [sym_comment] = STATE(1468), + [aux_sym_cmd_identifier_token41] = ACTIONS(1481), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4787), + [aux_sym__immediate_decimal_token2] = ACTIONS(4789), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(247), + }, + [1469] = { + [sym_cell_path] = STATE(1941), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1469), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_null] = ACTIONS(1837), + [aux_sym_cmd_identifier_token38] = ACTIONS(1837), + [aux_sym_cmd_identifier_token39] = ACTIONS(1837), + [aux_sym_cmd_identifier_token40] = ACTIONS(1837), + [sym__newline] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_err_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_GT_PIPE] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1835), + [aux_sym_ctrl_match_token1] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_LT] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [anon_sym_0b] = ACTIONS(1835), + [anon_sym_0o] = ACTIONS(1835), + [anon_sym_0x] = ACTIONS(1835), + [sym_val_date] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), + [anon_sym_err_GT] = ACTIONS(1835), + [anon_sym_out_GT] = ACTIONS(1835), + [anon_sym_e_GT] = ACTIONS(1835), + [anon_sym_o_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT] = ACTIONS(1835), + [anon_sym_err_GT_GT] = ACTIONS(1837), + [anon_sym_out_GT_GT] = ACTIONS(1837), + [anon_sym_e_GT_GT] = ACTIONS(1837), + [anon_sym_o_GT_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), + [aux_sym_unquoted_token1] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(247), + }, + [1470] = { + [sym_comment] = STATE(1470), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [sym__newline] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(986), + [aux_sym_ctrl_match_token1] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_DOT_DOT_LT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(986), + [anon_sym_0o] = ACTIONS(986), + [anon_sym_0x] = ACTIONS(986), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [aux_sym_unquoted_token1] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + }, + [1471] = { + [sym_comment] = STATE(1471), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(992), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(990), + [aux_sym_ctrl_match_token1] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_DOT_DOT_LT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), }, - [1457] = { - [sym_cell_path] = STATE(1821), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1457), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1790), - [aux_sym_cmd_identifier_token40] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1788), - [anon_sym_DASH_DASH] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1788), - [aux_sym_ctrl_match_token1] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT] = ACTIONS(1790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1790), - [anon_sym_DOT2] = ACTIONS(1788), - [aux_sym__val_number_decimal_token3] = ACTIONS(1790), - [aux_sym__val_number_token1] = ACTIONS(1790), - [aux_sym__val_number_token2] = ACTIONS(1790), - [aux_sym__val_number_token3] = ACTIONS(1790), - [anon_sym_0b] = ACTIONS(1788), - [anon_sym_0o] = ACTIONS(1788), - [anon_sym_0x] = ACTIONS(1788), - [sym_val_date] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [sym__str_single_quotes] = ACTIONS(1790), - [sym__str_back_ticks] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), - [anon_sym_err_GT] = ACTIONS(1788), - [anon_sym_out_GT] = ACTIONS(1788), - [anon_sym_e_GT] = ACTIONS(1788), - [anon_sym_o_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT] = ACTIONS(1788), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(3), + [1472] = { + [sym_comment] = STATE(1472), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(4791), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4793), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, - [1458] = { - [sym_comment] = STATE(1458), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_null] = ACTIONS(934), - [aux_sym_cmd_identifier_token38] = ACTIONS(934), - [aux_sym_cmd_identifier_token39] = ACTIONS(934), - [aux_sym_cmd_identifier_token40] = ACTIONS(934), - [sym__newline] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_err_GT_PIPE] = ACTIONS(934), - [anon_sym_out_GT_PIPE] = ACTIONS(934), - [anon_sym_e_GT_PIPE] = ACTIONS(934), - [anon_sym_o_GT_PIPE] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [aux_sym_ctrl_match_token1] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT2] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [anon_sym_DOT_DOT_LT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(934), - [aux_sym__val_number_decimal_token1] = ACTIONS(932), - [aux_sym__val_number_decimal_token2] = ACTIONS(934), - [anon_sym_DOT2] = ACTIONS(932), - [aux_sym__val_number_decimal_token3] = ACTIONS(934), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_0b] = ACTIONS(932), - [anon_sym_0o] = ACTIONS(932), - [anon_sym_0x] = ACTIONS(932), - [sym_val_date] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym__str_single_quotes] = ACTIONS(934), - [sym__str_back_ticks] = ACTIONS(934), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [anon_sym_err_GT_GT] = ACTIONS(934), - [anon_sym_out_GT_GT] = ACTIONS(934), - [anon_sym_e_GT_GT] = ACTIONS(934), - [anon_sym_o_GT_GT] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(934), - [aux_sym_unquoted_token1] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(3), + [1473] = { + [sym_cell_path] = STATE(1942), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1473), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [sym__newline] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_err_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_GT_PIPE] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1839), + [aux_sym_ctrl_match_token1] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), + [anon_sym_err_GT] = ACTIONS(1839), + [anon_sym_out_GT] = ACTIONS(1839), + [anon_sym_e_GT] = ACTIONS(1839), + [anon_sym_o_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT] = ACTIONS(1839), + [anon_sym_err_GT_GT] = ACTIONS(1841), + [anon_sym_out_GT_GT] = ACTIONS(1841), + [anon_sym_e_GT_GT] = ACTIONS(1841), + [anon_sym_o_GT_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), + [aux_sym_unquoted_token1] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(247), }, - [1459] = { - [sym_cell_path] = STATE(1822), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1459), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1794), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [sym__newline] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_err_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_GT_PIPE] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1792), - [aux_sym_ctrl_match_token1] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_LT] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1792), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [anon_sym_DOT2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1792), - [anon_sym_0o] = ACTIONS(1792), - [anon_sym_0x] = ACTIONS(1792), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(3), + [1474] = { + [sym_cell_path] = STATE(1528), + [sym_path] = STATE(1299), + [sym_comment] = STATE(1474), + [aux_sym_cell_path_repeat1] = STATE(1259), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_err_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_GT_PIPE] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), + [aux_sym_ctrl_match_token1] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [aux_sym_expr_binary_token1] = ACTIONS(1603), + [aux_sym_expr_binary_token2] = ACTIONS(1603), + [aux_sym_expr_binary_token3] = ACTIONS(1603), + [aux_sym_expr_binary_token4] = ACTIONS(1603), + [aux_sym_expr_binary_token5] = ACTIONS(1603), + [aux_sym_expr_binary_token6] = ACTIONS(1603), + [aux_sym_expr_binary_token7] = ACTIONS(1603), + [aux_sym_expr_binary_token8] = ACTIONS(1603), + [aux_sym_expr_binary_token9] = ACTIONS(1603), + [aux_sym_expr_binary_token10] = ACTIONS(1603), + [aux_sym_expr_binary_token11] = ACTIONS(1603), + [aux_sym_expr_binary_token12] = ACTIONS(1603), + [aux_sym_expr_binary_token13] = ACTIONS(1603), + [aux_sym_expr_binary_token14] = ACTIONS(1603), + [aux_sym_expr_binary_token15] = ACTIONS(1603), + [aux_sym_expr_binary_token16] = ACTIONS(1603), + [aux_sym_expr_binary_token17] = ACTIONS(1603), + [aux_sym_expr_binary_token18] = ACTIONS(1603), + [aux_sym_expr_binary_token19] = ACTIONS(1603), + [aux_sym_expr_binary_token20] = ACTIONS(1603), + [aux_sym_expr_binary_token21] = ACTIONS(1603), + [aux_sym_expr_binary_token22] = ACTIONS(1603), + [aux_sym_expr_binary_token23] = ACTIONS(1603), + [aux_sym_expr_binary_token24] = ACTIONS(1603), + [aux_sym_expr_binary_token25] = ACTIONS(1603), + [aux_sym_expr_binary_token26] = ACTIONS(1603), + [aux_sym_expr_binary_token27] = ACTIONS(1603), + [aux_sym_expr_binary_token28] = ACTIONS(1603), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), + [aux_sym_record_entry_token1] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(247), }, - [1460] = { - [sym_cell_path] = STATE(1823), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1460), - [aux_sym_cell_path_repeat1] = STATE(1599), + [1475] = { + [sym_cell_path] = STATE(1831), + [sym_path] = STATE(1328), + [sym_comment] = STATE(1475), + [aux_sym_cell_path_repeat1] = STATE(1255), + [sym__newline] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_err_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_GT_PIPE] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_COMMA] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [aux_sym_expr_binary_token1] = ACTIONS(1603), + [aux_sym_expr_binary_token2] = ACTIONS(1603), + [aux_sym_expr_binary_token3] = ACTIONS(1603), + [aux_sym_expr_binary_token4] = ACTIONS(1603), + [aux_sym_expr_binary_token5] = ACTIONS(1603), + [aux_sym_expr_binary_token6] = ACTIONS(1603), + [aux_sym_expr_binary_token7] = ACTIONS(1603), + [aux_sym_expr_binary_token8] = ACTIONS(1603), + [aux_sym_expr_binary_token9] = ACTIONS(1603), + [aux_sym_expr_binary_token10] = ACTIONS(1603), + [aux_sym_expr_binary_token11] = ACTIONS(1603), + [aux_sym_expr_binary_token12] = ACTIONS(1603), + [aux_sym_expr_binary_token13] = ACTIONS(1603), + [aux_sym_expr_binary_token14] = ACTIONS(1603), + [aux_sym_expr_binary_token15] = ACTIONS(1603), + [aux_sym_expr_binary_token16] = ACTIONS(1603), + [aux_sym_expr_binary_token17] = ACTIONS(1603), + [aux_sym_expr_binary_token18] = ACTIONS(1603), + [aux_sym_expr_binary_token19] = ACTIONS(1603), + [aux_sym_expr_binary_token20] = ACTIONS(1603), + [aux_sym_expr_binary_token21] = ACTIONS(1603), + [aux_sym_expr_binary_token22] = ACTIONS(1603), + [aux_sym_expr_binary_token23] = ACTIONS(1603), + [aux_sym_expr_binary_token24] = ACTIONS(1603), + [aux_sym_expr_binary_token25] = ACTIONS(1603), + [aux_sym_expr_binary_token26] = ACTIONS(1603), + [aux_sym_expr_binary_token27] = ACTIONS(1603), + [aux_sym_expr_binary_token28] = ACTIONS(1603), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(247), + }, + [1476] = { + [sym_cell_path] = STATE(1932), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1476), + [aux_sym_cell_path_repeat1] = STATE(1575), [anon_sym_true] = ACTIONS(1798), [anon_sym_false] = ACTIONS(1798), [anon_sym_null] = ACTIONS(1798), @@ -208506,13 +215063,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_ctrl_match_token1] = ACTIONS(1798), [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4763), [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), [anon_sym_DOT_DOT_LT] = ACTIONS(1798), [aux_sym__val_number_decimal_token1] = ACTIONS(1796), [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [anon_sym_DOT2] = ACTIONS(1796), [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(1798), [aux_sym__val_number_token2] = ACTIONS(1798), [aux_sym__val_number_token3] = ACTIONS(1798), @@ -208542,358 +215099,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1798), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1798), [aux_sym_unquoted_token1] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(3), - }, - [1461] = { - [sym_cell_path] = STATE(1824), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1461), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1802), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1800), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1800), - [aux_sym_ctrl_match_token1] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT] = ACTIONS(1802), - [aux_sym__val_number_decimal_token1] = ACTIONS(1800), - [aux_sym__val_number_decimal_token2] = ACTIONS(1802), - [anon_sym_DOT2] = ACTIONS(1800), - [aux_sym__val_number_decimal_token3] = ACTIONS(1802), - [aux_sym__val_number_token1] = ACTIONS(1802), - [aux_sym__val_number_token2] = ACTIONS(1802), - [aux_sym__val_number_token3] = ACTIONS(1802), - [anon_sym_0b] = ACTIONS(1800), - [anon_sym_0o] = ACTIONS(1800), - [anon_sym_0x] = ACTIONS(1800), - [sym_val_date] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1802), - [sym__str_single_quotes] = ACTIONS(1802), - [sym__str_back_ticks] = ACTIONS(1802), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1800), - [anon_sym_out_GT] = ACTIONS(1800), - [anon_sym_e_GT] = ACTIONS(1800), - [anon_sym_o_GT] = ACTIONS(1800), - [anon_sym_err_PLUSout_GT] = ACTIONS(1800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1800), - [anon_sym_o_PLUSe_GT] = ACTIONS(1800), - [anon_sym_e_PLUSo_GT] = ACTIONS(1800), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [aux_sym_unquoted_token1] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(3), - }, - [1462] = { - [sym_cell_path] = STATE(1825), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1462), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [anon_sym_null] = ACTIONS(1806), - [aux_sym_cmd_identifier_token38] = ACTIONS(1806), - [aux_sym_cmd_identifier_token39] = ACTIONS(1806), - [aux_sym_cmd_identifier_token40] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_RPAREN] = ACTIONS(1806), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_DASH_DASH] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1804), - [aux_sym_ctrl_match_token1] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1804), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1806), - [anon_sym_DOT_DOT_LT] = ACTIONS(1806), - [aux_sym__val_number_decimal_token1] = ACTIONS(1804), - [aux_sym__val_number_decimal_token2] = ACTIONS(1806), - [anon_sym_DOT2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1806), - [aux_sym__val_number_token1] = ACTIONS(1806), - [aux_sym__val_number_token2] = ACTIONS(1806), - [aux_sym__val_number_token3] = ACTIONS(1806), - [anon_sym_0b] = ACTIONS(1804), - [anon_sym_0o] = ACTIONS(1804), - [anon_sym_0x] = ACTIONS(1804), - [sym_val_date] = ACTIONS(1806), - [anon_sym_DQUOTE] = ACTIONS(1806), - [sym__str_single_quotes] = ACTIONS(1806), - [sym__str_back_ticks] = ACTIONS(1806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [aux_sym_unquoted_token1] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [1463] = { - [sym_cell_path] = STATE(1826), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1463), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1810), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [sym__newline] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_err_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_GT_PIPE] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1808), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1808), - [aux_sym_ctrl_match_token1] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [anon_sym_DOT2] = ACTIONS(1808), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1808), - [anon_sym_0o] = ACTIONS(1808), - [anon_sym_0x] = ACTIONS(1808), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [1464] = { - [sym_cell_path] = STATE(1767), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1464), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1814), - [anon_sym_false] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1814), - [aux_sym_cmd_identifier_token38] = ACTIONS(1814), - [aux_sym_cmd_identifier_token39] = ACTIONS(1814), - [aux_sym_cmd_identifier_token40] = ACTIONS(1814), - [sym__newline] = ACTIONS(1814), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_err_GT_PIPE] = ACTIONS(1814), - [anon_sym_out_GT_PIPE] = ACTIONS(1814), - [anon_sym_e_GT_PIPE] = ACTIONS(1814), - [anon_sym_o_GT_PIPE] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DASH_DASH] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1812), - [aux_sym_ctrl_match_token1] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1814), - [anon_sym_DOT_DOT_LT] = ACTIONS(1814), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = ACTIONS(1814), - [anon_sym_DOT2] = ACTIONS(1812), - [aux_sym__val_number_decimal_token3] = ACTIONS(1814), - [aux_sym__val_number_token1] = ACTIONS(1814), - [aux_sym__val_number_token2] = ACTIONS(1814), - [aux_sym__val_number_token3] = ACTIONS(1814), - [anon_sym_0b] = ACTIONS(1812), - [anon_sym_0o] = ACTIONS(1812), - [anon_sym_0x] = ACTIONS(1812), - [sym_val_date] = ACTIONS(1814), - [anon_sym_DQUOTE] = ACTIONS(1814), - [sym__str_single_quotes] = ACTIONS(1814), - [sym__str_back_ticks] = ACTIONS(1814), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1814), - [anon_sym_err_GT] = ACTIONS(1812), - [anon_sym_out_GT] = ACTIONS(1812), - [anon_sym_e_GT] = ACTIONS(1812), - [anon_sym_o_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT] = ACTIONS(1812), - [anon_sym_err_GT_GT] = ACTIONS(1814), - [anon_sym_out_GT_GT] = ACTIONS(1814), - [anon_sym_e_GT_GT] = ACTIONS(1814), - [anon_sym_o_GT_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1814), - [aux_sym_unquoted_token1] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(3), + [1477] = { + [sym_comment] = STATE(1477), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1709), + [aux_sym_ctrl_match_token1] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(4795), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4797), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4797), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1709), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(247), }, - [1465] = { - [sym_cell_path] = STATE(1827), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1465), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1818), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1818), - [aux_sym_cmd_identifier_token40] = ACTIONS(1818), - [sym__newline] = ACTIONS(1818), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_err_GT_PIPE] = ACTIONS(1818), - [anon_sym_out_GT_PIPE] = ACTIONS(1818), - [anon_sym_e_GT_PIPE] = ACTIONS(1818), - [anon_sym_o_GT_PIPE] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1816), - [aux_sym_ctrl_match_token1] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [aux_sym__val_number_decimal_token1] = ACTIONS(1816), - [aux_sym__val_number_decimal_token2] = ACTIONS(1818), - [anon_sym_DOT2] = ACTIONS(1816), - [aux_sym__val_number_decimal_token3] = ACTIONS(1818), - [aux_sym__val_number_token1] = ACTIONS(1818), - [aux_sym__val_number_token2] = ACTIONS(1818), - [aux_sym__val_number_token3] = ACTIONS(1818), - [anon_sym_0b] = ACTIONS(1816), - [anon_sym_0o] = ACTIONS(1816), - [anon_sym_0x] = ACTIONS(1816), - [sym_val_date] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [sym__str_single_quotes] = ACTIONS(1818), - [sym__str_back_ticks] = ACTIONS(1818), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1818), - [anon_sym_err_GT] = ACTIONS(1816), - [anon_sym_out_GT] = ACTIONS(1816), - [anon_sym_e_GT] = ACTIONS(1816), - [anon_sym_o_GT] = ACTIONS(1816), - [anon_sym_err_PLUSout_GT] = ACTIONS(1816), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1816), - [anon_sym_o_PLUSe_GT] = ACTIONS(1816), - [anon_sym_e_PLUSo_GT] = ACTIONS(1816), - [anon_sym_err_GT_GT] = ACTIONS(1818), - [anon_sym_out_GT_GT] = ACTIONS(1818), - [anon_sym_e_GT_GT] = ACTIONS(1818), - [anon_sym_o_GT_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1818), - [aux_sym_unquoted_token1] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(3), + [1478] = { + [sym_comment] = STATE(1478), + [ts_builtin_sym_end] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(4799), + [aux_sym__immediate_decimal_token2] = ACTIONS(4801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, - [1466] = { - [sym_cell_path] = STATE(1828), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1466), - [aux_sym_cell_path_repeat1] = STATE(1599), + [1479] = { + [sym_cell_path] = STATE(1936), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1479), + [aux_sym_cell_path_repeat1] = STATE(1575), [anon_sym_true] = ACTIONS(1822), [anon_sym_false] = ACTIONS(1822), [anon_sym_null] = ACTIONS(1822), @@ -208920,13 +215270,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_ctrl_match_token1] = ACTIONS(1822), [anon_sym_RBRACE] = ACTIONS(1822), [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4763), [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), [anon_sym_DOT_DOT_LT] = ACTIONS(1822), [aux_sym__val_number_decimal_token1] = ACTIONS(1820), [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [anon_sym_DOT2] = ACTIONS(1820), [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), [aux_sym__val_number_token1] = ACTIONS(1822), [aux_sym__val_number_token2] = ACTIONS(1822), [aux_sym__val_number_token3] = ACTIONS(1822), @@ -208956,1258 +215306,632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), [aux_sym_unquoted_token1] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [1467] = { - [sym_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4757), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), - }, - [1468] = { - [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(1400), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4757), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [aux_sym_unquoted_token6] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(3), - }, - [1469] = { - [sym_cell_path] = STATE(1831), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1469), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1742), - [anon_sym_false] = ACTIONS(1742), - [anon_sym_null] = ACTIONS(1742), - [aux_sym_cmd_identifier_token38] = ACTIONS(1742), - [aux_sym_cmd_identifier_token39] = ACTIONS(1742), - [aux_sym_cmd_identifier_token40] = ACTIONS(1742), - [sym__newline] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_err_GT_PIPE] = ACTIONS(1742), - [anon_sym_out_GT_PIPE] = ACTIONS(1742), - [anon_sym_e_GT_PIPE] = ACTIONS(1742), - [anon_sym_o_GT_PIPE] = ACTIONS(1742), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1742), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1742), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1742), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_RPAREN] = ACTIONS(1742), - [anon_sym_DOLLAR] = ACTIONS(1740), - [anon_sym_DASH_DASH] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1740), - [aux_sym_ctrl_match_token1] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_DOT_DOT] = ACTIONS(1740), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), - [anon_sym_DOT_DOT_LT] = ACTIONS(1742), - [aux_sym__val_number_decimal_token1] = ACTIONS(1740), - [aux_sym__val_number_decimal_token2] = ACTIONS(1742), - [anon_sym_DOT2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1742), - [aux_sym__val_number_token1] = ACTIONS(1742), - [aux_sym__val_number_token2] = ACTIONS(1742), - [aux_sym__val_number_token3] = ACTIONS(1742), - [anon_sym_0b] = ACTIONS(1740), - [anon_sym_0o] = ACTIONS(1740), - [anon_sym_0x] = ACTIONS(1740), - [sym_val_date] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1742), - [sym__str_single_quotes] = ACTIONS(1742), - [sym__str_back_ticks] = ACTIONS(1742), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1740), - [anon_sym_out_GT] = ACTIONS(1740), - [anon_sym_e_GT] = ACTIONS(1740), - [anon_sym_o_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT] = ACTIONS(1740), - [anon_sym_err_GT_GT] = ACTIONS(1742), - [anon_sym_out_GT_GT] = ACTIONS(1742), - [anon_sym_e_GT_GT] = ACTIONS(1742), - [anon_sym_o_GT_GT] = ACTIONS(1742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1742), - [aux_sym_unquoted_token1] = ACTIONS(1740), - [anon_sym_POUND] = ACTIONS(3), - }, - [1470] = { - [sym_cell_path] = STATE(1861), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1470), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_null] = ACTIONS(885), - [aux_sym_cmd_identifier_token38] = ACTIONS(885), - [aux_sym_cmd_identifier_token39] = ACTIONS(885), - [aux_sym_cmd_identifier_token40] = ACTIONS(885), - [sym__newline] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_DASH] = ACTIONS(883), - [aux_sym_ctrl_match_token1] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(885), - [anon_sym_DOT_DOT_LT] = ACTIONS(885), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(885), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(885), - [aux_sym__val_number_token1] = ACTIONS(885), - [aux_sym__val_number_token2] = ACTIONS(885), - [aux_sym__val_number_token3] = ACTIONS(885), - [anon_sym_0b] = ACTIONS(883), - [anon_sym_0o] = ACTIONS(883), - [anon_sym_0x] = ACTIONS(883), - [sym_val_date] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(885), - [sym__str_single_quotes] = ACTIONS(885), - [sym__str_back_ticks] = ACTIONS(885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [aux_sym_unquoted_token1] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(3), - }, - [1471] = { - [sym_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(4718), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), - }, - [1472] = { - [sym_comment] = STATE(1472), - [sym__newline] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_err_GT_PIPE] = ACTIONS(930), - [anon_sym_out_GT_PIPE] = ACTIONS(930), - [anon_sym_e_GT_PIPE] = ACTIONS(930), - [anon_sym_o_GT_PIPE] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_in] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [aux_sym_ctrl_match_token1] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_EQ_GT] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_and] = ACTIONS(930), - [anon_sym_xor] = ACTIONS(930), - [anon_sym_or] = ACTIONS(930), - [anon_sym_not_DASHin] = ACTIONS(930), - [anon_sym_starts_DASHwith] = ACTIONS(930), - [anon_sym_ends_DASHwith] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(930), - [anon_sym_BANG_EQ] = ACTIONS(930), - [anon_sym_LT2] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(930), - [anon_sym_GT_EQ] = ACTIONS(930), - [anon_sym_EQ_TILDE] = ACTIONS(930), - [anon_sym_BANG_TILDE] = ACTIONS(930), - [anon_sym_STAR_STAR] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_mod] = ACTIONS(930), - [anon_sym_SLASH_SLASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_bit_DASHshl] = ACTIONS(930), - [anon_sym_bit_DASHshr] = ACTIONS(930), - [anon_sym_bit_DASHand] = ACTIONS(930), - [anon_sym_bit_DASHxor] = ACTIONS(930), - [anon_sym_bit_DASHor] = ACTIONS(930), - [anon_sym_DOT_DOT2] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(930), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [anon_sym_err_GT_GT] = ACTIONS(930), - [anon_sym_out_GT_GT] = ACTIONS(930), - [anon_sym_e_GT_GT] = ACTIONS(930), - [anon_sym_o_GT_GT] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(3), - }, - [1473] = { - [sym_cell_path] = STATE(1832), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1473), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1746), - [aux_sym_cmd_identifier_token38] = ACTIONS(1746), - [aux_sym_cmd_identifier_token39] = ACTIONS(1746), - [aux_sym_cmd_identifier_token40] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1744), - [aux_sym_ctrl_match_token1] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_DOT_DOT] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1746), - [anon_sym_DOT_DOT_LT] = ACTIONS(1746), - [aux_sym__val_number_decimal_token1] = ACTIONS(1744), - [aux_sym__val_number_decimal_token2] = ACTIONS(1746), - [anon_sym_DOT2] = ACTIONS(1744), - [aux_sym__val_number_decimal_token3] = ACTIONS(1746), - [aux_sym__val_number_token1] = ACTIONS(1746), - [aux_sym__val_number_token2] = ACTIONS(1746), - [aux_sym__val_number_token3] = ACTIONS(1746), - [anon_sym_0b] = ACTIONS(1744), - [anon_sym_0o] = ACTIONS(1744), - [anon_sym_0x] = ACTIONS(1744), - [sym_val_date] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [sym__str_single_quotes] = ACTIONS(1746), - [sym__str_back_ticks] = ACTIONS(1746), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1746), - [anon_sym_err_GT] = ACTIONS(1744), - [anon_sym_out_GT] = ACTIONS(1744), - [anon_sym_e_GT] = ACTIONS(1744), - [anon_sym_o_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT] = ACTIONS(1744), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [aux_sym_unquoted_token1] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(3), - }, - [1474] = { - [sym_comment] = STATE(1474), - [ts_builtin_sym_end] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(4759), - [anon_sym_PLUS_EQ] = ACTIONS(4761), - [anon_sym_DASH_EQ] = ACTIONS(4761), - [anon_sym_STAR_EQ] = ACTIONS(4761), - [anon_sym_SLASH_EQ] = ACTIONS(4761), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4761), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_in] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4765), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(3), - }, - [1475] = { - [sym_comment] = STATE(1475), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(4767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [aux_sym_unquoted_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), - }, - [1476] = { - [sym_cell_path] = STATE(1812), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1476), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token38] = ACTIONS(1754), - [aux_sym_cmd_identifier_token39] = ACTIONS(1754), - [aux_sym_cmd_identifier_token40] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1752), - [aux_sym_ctrl_match_token1] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_LT] = ACTIONS(1754), - [aux_sym__val_number_decimal_token1] = ACTIONS(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [anon_sym_DOT2] = ACTIONS(1752), - [aux_sym__val_number_decimal_token3] = ACTIONS(1754), - [aux_sym__val_number_token1] = ACTIONS(1754), - [aux_sym__val_number_token2] = ACTIONS(1754), - [aux_sym__val_number_token3] = ACTIONS(1754), - [anon_sym_0b] = ACTIONS(1752), - [anon_sym_0o] = ACTIONS(1752), - [anon_sym_0x] = ACTIONS(1752), - [sym_val_date] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [sym__str_single_quotes] = ACTIONS(1754), - [sym__str_back_ticks] = ACTIONS(1754), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1754), - [anon_sym_err_GT] = ACTIONS(1752), - [anon_sym_out_GT] = ACTIONS(1752), - [anon_sym_e_GT] = ACTIONS(1752), - [anon_sym_o_GT] = ACTIONS(1752), - [anon_sym_err_PLUSout_GT] = ACTIONS(1752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), - [anon_sym_o_PLUSe_GT] = ACTIONS(1752), - [anon_sym_e_PLUSo_GT] = ACTIONS(1752), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [aux_sym_unquoted_token1] = ACTIONS(1752), - [anon_sym_POUND] = ACTIONS(3), - }, - [1477] = { - [sym_comment] = STATE(1477), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [anon_sym_null] = ACTIONS(930), - [aux_sym_cmd_identifier_token38] = ACTIONS(930), - [aux_sym_cmd_identifier_token39] = ACTIONS(930), - [aux_sym_cmd_identifier_token40] = ACTIONS(930), - [sym__newline] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_err_GT_PIPE] = ACTIONS(930), - [anon_sym_out_GT_PIPE] = ACTIONS(930), - [anon_sym_e_GT_PIPE] = ACTIONS(930), - [anon_sym_o_GT_PIPE] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [aux_sym_ctrl_match_token1] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT2] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(930), - [aux_sym__val_number_decimal_token1] = ACTIONS(928), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [anon_sym_DOT2] = ACTIONS(928), - [aux_sym__val_number_decimal_token3] = ACTIONS(930), - [aux_sym__val_number_token1] = ACTIONS(930), - [aux_sym__val_number_token2] = ACTIONS(930), - [aux_sym__val_number_token3] = ACTIONS(930), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym__str_single_quotes] = ACTIONS(930), - [sym__str_back_ticks] = ACTIONS(930), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(930), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [anon_sym_err_GT_GT] = ACTIONS(930), - [anon_sym_out_GT_GT] = ACTIONS(930), - [anon_sym_e_GT_GT] = ACTIONS(930), - [anon_sym_o_GT_GT] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(930), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), - }, - [1478] = { - [sym_comment] = STATE(1478), - [ts_builtin_sym_end] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(4769), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), - }, - [1479] = { - [sym_cell_path] = STATE(1813), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1479), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1758), - [anon_sym_false] = ACTIONS(1758), - [anon_sym_null] = ACTIONS(1758), - [aux_sym_cmd_identifier_token38] = ACTIONS(1758), - [aux_sym_cmd_identifier_token39] = ACTIONS(1758), - [aux_sym_cmd_identifier_token40] = ACTIONS(1758), - [sym__newline] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_err_GT_PIPE] = ACTIONS(1758), - [anon_sym_out_GT_PIPE] = ACTIONS(1758), - [anon_sym_e_GT_PIPE] = ACTIONS(1758), - [anon_sym_o_GT_PIPE] = ACTIONS(1758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1756), - [aux_sym_ctrl_match_token1] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_LT] = ACTIONS(1758), - [aux_sym__val_number_decimal_token1] = ACTIONS(1756), - [aux_sym__val_number_decimal_token2] = ACTIONS(1758), - [anon_sym_DOT2] = ACTIONS(1756), - [aux_sym__val_number_decimal_token3] = ACTIONS(1758), - [aux_sym__val_number_token1] = ACTIONS(1758), - [aux_sym__val_number_token2] = ACTIONS(1758), - [aux_sym__val_number_token3] = ACTIONS(1758), - [anon_sym_0b] = ACTIONS(1756), - [anon_sym_0o] = ACTIONS(1756), - [anon_sym_0x] = ACTIONS(1756), - [sym_val_date] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [sym__str_single_quotes] = ACTIONS(1758), - [sym__str_back_ticks] = ACTIONS(1758), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1758), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1758), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1758), - [anon_sym_out_GT_GT] = ACTIONS(1758), - [anon_sym_e_GT_GT] = ACTIONS(1758), - [anon_sym_o_GT_GT] = ACTIONS(1758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1758), - [aux_sym_unquoted_token1] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [1480] = { + [sym_cell_path] = STATE(1927), + [sym_path] = STATE(1715), [sym_comment] = STATE(1480), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [aux_sym_cmd_identifier_token38] = ACTIONS(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1893), + [aux_sym_cmd_identifier_token40] = ACTIONS(1893), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1891), + [aux_sym_ctrl_match_token1] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), + [anon_sym_DOT_DOT_LT] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [anon_sym_0b] = ACTIONS(1891), + [anon_sym_0o] = ACTIONS(1891), + [anon_sym_0x] = ACTIONS(1891), + [sym_val_date] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [aux_sym_unquoted_token1] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(247), }, [1481] = { - [sym_cell_path] = STATE(1814), - [sym_path] = STATE(1726), + [sym_cell_path] = STATE(1928), + [sym_path] = STATE(1715), [sym_comment] = STATE(1481), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1762), - [anon_sym_false] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1762), - [aux_sym_cmd_identifier_token38] = ACTIONS(1762), - [aux_sym_cmd_identifier_token39] = ACTIONS(1762), - [aux_sym_cmd_identifier_token40] = ACTIONS(1762), - [sym__newline] = ACTIONS(1762), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_err_GT_PIPE] = ACTIONS(1762), - [anon_sym_out_GT_PIPE] = ACTIONS(1762), - [anon_sym_e_GT_PIPE] = ACTIONS(1762), - [anon_sym_o_GT_PIPE] = ACTIONS(1762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_RPAREN] = ACTIONS(1762), - [anon_sym_DOLLAR] = ACTIONS(1760), - [anon_sym_DASH_DASH] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1760), - [aux_sym_ctrl_match_token1] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_DOT_DOT] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_LT] = ACTIONS(1762), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [anon_sym_DOT2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_token1] = ACTIONS(1762), - [aux_sym__val_number_token2] = ACTIONS(1762), - [aux_sym__val_number_token3] = ACTIONS(1762), - [anon_sym_0b] = ACTIONS(1760), - [anon_sym_0o] = ACTIONS(1760), - [anon_sym_0x] = ACTIONS(1760), - [sym_val_date] = ACTIONS(1762), - [anon_sym_DQUOTE] = ACTIONS(1762), - [sym__str_single_quotes] = ACTIONS(1762), - [sym__str_back_ticks] = ACTIONS(1762), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), - [anon_sym_err_GT] = ACTIONS(1760), - [anon_sym_out_GT] = ACTIONS(1760), - [anon_sym_e_GT] = ACTIONS(1760), - [anon_sym_o_GT] = ACTIONS(1760), - [anon_sym_err_PLUSout_GT] = ACTIONS(1760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), - [anon_sym_o_PLUSe_GT] = ACTIONS(1760), - [anon_sym_e_PLUSo_GT] = ACTIONS(1760), - [anon_sym_err_GT_GT] = ACTIONS(1762), - [anon_sym_out_GT_GT] = ACTIONS(1762), - [anon_sym_e_GT_GT] = ACTIONS(1762), - [anon_sym_o_GT_GT] = ACTIONS(1762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), - [aux_sym_unquoted_token1] = ACTIONS(1760), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1897), + [aux_sym_cmd_identifier_token38] = ACTIONS(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [sym__newline] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_err_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_GT_PIPE] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1895), + [aux_sym_ctrl_match_token1] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), + [anon_sym_DOT_DOT_LT] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [anon_sym_0b] = ACTIONS(1895), + [anon_sym_0o] = ACTIONS(1895), + [anon_sym_0x] = ACTIONS(1895), + [sym_val_date] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(247), }, [1482] = { - [sym_cell_path] = STATE(1810), - [sym_path] = STATE(1726), [sym_comment] = STATE(1482), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [anon_sym_null] = ACTIONS(1735), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1735), - [aux_sym_cmd_identifier_token40] = ACTIONS(1735), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1733), - [aux_sym_ctrl_match_token1] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [anon_sym_DOT2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [anon_sym_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4805), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1483] = { + [sym_cell_path] = STATE(1926), + [sym_path] = STATE(1715), [sym_comment] = STATE(1483), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_RPAREN] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [anon_sym_null] = ACTIONS(1885), + [aux_sym_cmd_identifier_token38] = ACTIONS(1885), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_RPAREN] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1883), + [aux_sym_ctrl_match_token1] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), + [anon_sym_DOT_DOT_LT] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [sym_val_date] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), + [aux_sym_unquoted_token1] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(247), }, [1484] = { [sym_comment] = STATE(1484), - [aux_sym_cmd_identifier_token41] = ACTIONS(1376), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_RPAREN] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1378), - [aux_sym_ctrl_match_token1] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_EQ_GT] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1650), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), + [anon_sym_DOT_DOT_LT] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [aux_sym_unquoted_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [1485] = { [sym_comment] = STATE(1485), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), + [ts_builtin_sym_end] = ACTIONS(1698), + [anon_sym_true] = ACTIONS(1698), + [anon_sym_false] = ACTIONS(1698), + [anon_sym_null] = ACTIONS(1698), + [aux_sym_cmd_identifier_token38] = ACTIONS(1698), + [aux_sym_cmd_identifier_token39] = ACTIONS(1698), + [aux_sym_cmd_identifier_token40] = ACTIONS(1698), + [sym__newline] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_err_GT_PIPE] = ACTIONS(1698), + [anon_sym_out_GT_PIPE] = ACTIONS(1698), + [anon_sym_e_GT_PIPE] = ACTIONS(1698), + [anon_sym_o_GT_PIPE] = ACTIONS(1698), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1698), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1698), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1698), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_DOLLAR] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1690), + [aux_sym_ctrl_match_token1] = ACTIONS(1698), + [anon_sym_DOT_DOT] = ACTIONS(1690), + [anon_sym_LPAREN2] = ACTIONS(1692), + [anon_sym_DOT_DOT2] = ACTIONS(4807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1690), + [anon_sym_DOT_DOT_LT] = ACTIONS(1690), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4809), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4809), + [aux_sym__val_number_decimal_token1] = ACTIONS(1690), + [aux_sym__val_number_decimal_token2] = ACTIONS(1698), + [aux_sym__val_number_decimal_token3] = ACTIONS(1698), + [aux_sym__val_number_decimal_token4] = ACTIONS(1698), + [aux_sym__val_number_token1] = ACTIONS(1698), + [aux_sym__val_number_token2] = ACTIONS(1698), + [aux_sym__val_number_token3] = ACTIONS(1698), + [anon_sym_0b] = ACTIONS(1690), + [anon_sym_0o] = ACTIONS(1690), + [anon_sym_0x] = ACTIONS(1690), + [sym_val_date] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym__str_single_quotes] = ACTIONS(1698), + [sym__str_back_ticks] = ACTIONS(1698), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1698), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1698), + [anon_sym_err_GT] = ACTIONS(1690), + [anon_sym_out_GT] = ACTIONS(1690), + [anon_sym_e_GT] = ACTIONS(1690), + [anon_sym_o_GT] = ACTIONS(1690), + [anon_sym_err_PLUSout_GT] = ACTIONS(1690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1690), + [anon_sym_o_PLUSe_GT] = ACTIONS(1690), + [anon_sym_e_PLUSo_GT] = ACTIONS(1690), + [anon_sym_err_GT_GT] = ACTIONS(1698), + [anon_sym_out_GT_GT] = ACTIONS(1698), + [anon_sym_e_GT_GT] = ACTIONS(1698), + [anon_sym_o_GT_GT] = ACTIONS(1698), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1698), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1698), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1698), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1698), + [aux_sym_unquoted_token1] = ACTIONS(1690), + [aux_sym_unquoted_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), + }, + [1486] = { + [sym_comment] = STATE(1486), + [aux_sym_cmd_identifier_token41] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_EQ_GT] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4811), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [aux_sym_record_entry_token1] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(247), + }, + [1487] = { + [sym_cell_path] = STATE(1908), + [sym_path] = STATE(1715), + [sym_comment] = STATE(1487), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [sym__newline] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_err_GT_PIPE] = ACTIONS(1772), + [anon_sym_out_GT_PIPE] = ACTIONS(1772), + [anon_sym_e_GT_PIPE] = ACTIONS(1772), + [anon_sym_o_GT_PIPE] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1770), + [aux_sym_ctrl_match_token1] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1770), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [anon_sym_0b] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1770), + [anon_sym_0x] = ACTIONS(1770), + [sym_val_date] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1772), + [anon_sym_err_GT] = ACTIONS(1770), + [anon_sym_out_GT] = ACTIONS(1770), + [anon_sym_e_GT] = ACTIONS(1770), + [anon_sym_o_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT] = ACTIONS(1770), + [anon_sym_err_GT_GT] = ACTIONS(1772), + [anon_sym_out_GT_GT] = ACTIONS(1772), + [anon_sym_e_GT_GT] = ACTIONS(1772), + [anon_sym_o_GT_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1772), + [aux_sym_unquoted_token1] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(247), + }, + [1488] = { + [sym_comment] = STATE(1488), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_EQ_GT] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4744), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [aux_sym_record_entry_token1] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), + }, + [1489] = { + [sym__expr_parenthesized_immediate] = STATE(7615), + [sym_comment] = STATE(1489), [sym__newline] = ACTIONS(1537), [anon_sym_SEMI] = ACTIONS(1537), [anon_sym_PIPE] = ACTIONS(1537), @@ -210219,45 +215943,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(4773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(1537), + [aux_sym_expr_binary_token2] = ACTIONS(1537), + [aux_sym_expr_binary_token3] = ACTIONS(1537), + [aux_sym_expr_binary_token4] = ACTIONS(1537), + [aux_sym_expr_binary_token5] = ACTIONS(1537), + [aux_sym_expr_binary_token6] = ACTIONS(1537), + [aux_sym_expr_binary_token7] = ACTIONS(1537), + [aux_sym_expr_binary_token8] = ACTIONS(1537), + [aux_sym_expr_binary_token9] = ACTIONS(1537), + [aux_sym_expr_binary_token10] = ACTIONS(1537), + [aux_sym_expr_binary_token11] = ACTIONS(1537), + [aux_sym_expr_binary_token12] = ACTIONS(1537), + [aux_sym_expr_binary_token13] = ACTIONS(1537), + [aux_sym_expr_binary_token14] = ACTIONS(1537), + [aux_sym_expr_binary_token15] = ACTIONS(1537), + [aux_sym_expr_binary_token16] = ACTIONS(1537), + [aux_sym_expr_binary_token17] = ACTIONS(1537), + [aux_sym_expr_binary_token18] = ACTIONS(1537), + [aux_sym_expr_binary_token19] = ACTIONS(1537), + [aux_sym_expr_binary_token20] = ACTIONS(1537), + [aux_sym_expr_binary_token21] = ACTIONS(1537), + [aux_sym_expr_binary_token22] = ACTIONS(1537), + [aux_sym_expr_binary_token23] = ACTIONS(1537), + [aux_sym_expr_binary_token24] = ACTIONS(1537), + [aux_sym_expr_binary_token25] = ACTIONS(1537), + [aux_sym_expr_binary_token26] = ACTIONS(1537), + [aux_sym_expr_binary_token27] = ACTIONS(1537), + [aux_sym_expr_binary_token28] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(2949), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2951), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2951), + [sym_filesize_unit] = ACTIONS(4813), + [sym_duration_unit] = ACTIONS(4815), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), [anon_sym_err_GT_GT] = ACTIONS(1537), [anon_sym_out_GT_GT] = ACTIONS(1537), [anon_sym_e_GT_GT] = ACTIONS(1537), @@ -210266,2360 +215995,2420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), - }, - [1486] = { - [sym_comment] = STATE(1486), - [sym__newline] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_err_GT_PIPE] = ACTIONS(926), - [anon_sym_out_GT_PIPE] = ACTIONS(926), - [anon_sym_e_GT_PIPE] = ACTIONS(926), - [anon_sym_o_GT_PIPE] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_in] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [aux_sym_ctrl_match_token1] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_and] = ACTIONS(926), - [anon_sym_xor] = ACTIONS(926), - [anon_sym_or] = ACTIONS(926), - [anon_sym_not_DASHin] = ACTIONS(926), - [anon_sym_starts_DASHwith] = ACTIONS(926), - [anon_sym_ends_DASHwith] = ACTIONS(926), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT2] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_EQ_TILDE] = ACTIONS(926), - [anon_sym_BANG_TILDE] = ACTIONS(926), - [anon_sym_STAR_STAR] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(926), - [anon_sym_SLASH_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_bit_DASHshl] = ACTIONS(926), - [anon_sym_bit_DASHshr] = ACTIONS(926), - [anon_sym_bit_DASHand] = ACTIONS(926), - [anon_sym_bit_DASHxor] = ACTIONS(926), - [anon_sym_bit_DASHor] = ACTIONS(926), - [anon_sym_DOT_DOT2] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(926), - [anon_sym_DOT_DOT_LT2] = ACTIONS(926), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [anon_sym_err_GT_GT] = ACTIONS(926), - [anon_sym_out_GT_GT] = ACTIONS(926), - [anon_sym_e_GT_GT] = ACTIONS(926), - [anon_sym_o_GT_GT] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(3), - }, - [1487] = { - [sym_comment] = STATE(1487), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1701), - [aux_sym_ctrl_match_token1] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(4775), - [aux_sym__val_number_decimal_token1] = ACTIONS(1701), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [anon_sym_DOT2] = ACTIONS(1701), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_0b] = ACTIONS(1701), - [anon_sym_0o] = ACTIONS(1701), - [anon_sym_0x] = ACTIONS(1701), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1701), - [anon_sym_out_GT] = ACTIONS(1701), - [anon_sym_e_GT] = ACTIONS(1701), - [anon_sym_o_GT] = ACTIONS(1701), - [anon_sym_err_PLUSout_GT] = ACTIONS(1701), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), - [anon_sym_o_PLUSe_GT] = ACTIONS(1701), - [anon_sym_e_PLUSo_GT] = ACTIONS(1701), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1701), - [aux_sym_unquoted_token2] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(3), - }, - [1488] = { - [sym_comment] = STATE(1488), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_and] = ACTIONS(1506), - [anon_sym_xor] = ACTIONS(1506), - [anon_sym_or] = ACTIONS(1506), - [anon_sym_not_DASHin] = ACTIONS(1506), - [anon_sym_starts_DASHwith] = ACTIONS(1506), - [anon_sym_ends_DASHwith] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_TILDE] = ACTIONS(1506), - [anon_sym_BANG_TILDE] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_STAR_STAR] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_SLASH_SLASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_bit_DASHshl] = ACTIONS(1506), - [anon_sym_bit_DASHshr] = ACTIONS(1506), - [anon_sym_bit_DASHand] = ACTIONS(1506), - [anon_sym_bit_DASHxor] = ACTIONS(1506), - [anon_sym_bit_DASHor] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [sym_filesize_unit] = ACTIONS(1504), - [sym_duration_unit] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token6] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(3), - }, - [1489] = { - [sym_comment] = STATE(1489), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token2] = ACTIONS(4817), + [anon_sym_POUND] = ACTIONS(247), }, [1490] = { + [sym_cell_path] = STATE(1948), + [sym_path] = STATE(1715), [sym_comment] = STATE(1490), - [sym__newline] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_err_GT_PIPE] = ACTIONS(922), - [anon_sym_out_GT_PIPE] = ACTIONS(922), - [anon_sym_e_GT_PIPE] = ACTIONS(922), - [anon_sym_o_GT_PIPE] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_in] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [aux_sym_ctrl_match_token1] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_and] = ACTIONS(922), - [anon_sym_xor] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_not_DASHin] = ACTIONS(922), - [anon_sym_starts_DASHwith] = ACTIONS(922), - [anon_sym_ends_DASHwith] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_BANG_TILDE] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(922), - [anon_sym_SLASH_SLASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(922), - [anon_sym_bit_DASHshr] = ACTIONS(922), - [anon_sym_bit_DASHand] = ACTIONS(922), - [anon_sym_bit_DASHxor] = ACTIONS(922), - [anon_sym_bit_DASHor] = ACTIONS(922), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [aux_sym_record_entry_token1] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1776), + [anon_sym_false] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1776), + [aux_sym_cmd_identifier_token38] = ACTIONS(1776), + [aux_sym_cmd_identifier_token39] = ACTIONS(1776), + [aux_sym_cmd_identifier_token40] = ACTIONS(1776), + [sym__newline] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_err_GT_PIPE] = ACTIONS(1776), + [anon_sym_out_GT_PIPE] = ACTIONS(1776), + [anon_sym_e_GT_PIPE] = ACTIONS(1776), + [anon_sym_o_GT_PIPE] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1774), + [aux_sym_ctrl_match_token1] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_DOT_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1776), + [anon_sym_DOT_DOT_LT] = ACTIONS(1776), + [aux_sym__val_number_decimal_token1] = ACTIONS(1774), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1776), + [aux_sym__val_number_token2] = ACTIONS(1776), + [aux_sym__val_number_token3] = ACTIONS(1776), + [anon_sym_0b] = ACTIONS(1774), + [anon_sym_0o] = ACTIONS(1774), + [anon_sym_0x] = ACTIONS(1774), + [sym_val_date] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1776), + [sym__str_single_quotes] = ACTIONS(1776), + [sym__str_back_ticks] = ACTIONS(1776), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1776), + [anon_sym_err_GT] = ACTIONS(1774), + [anon_sym_out_GT] = ACTIONS(1774), + [anon_sym_e_GT] = ACTIONS(1774), + [anon_sym_o_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT] = ACTIONS(1774), + [anon_sym_err_GT_GT] = ACTIONS(1776), + [anon_sym_out_GT_GT] = ACTIONS(1776), + [anon_sym_e_GT_GT] = ACTIONS(1776), + [anon_sym_o_GT_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1776), + [aux_sym_unquoted_token1] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(247), }, [1491] = { [sym_comment] = STATE(1491), - [sym__newline] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [aux_sym_ctrl_match_token1] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_EQ_GT] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(912), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [aux_sym_record_entry_token1] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1492] = { [sym_comment] = STATE(1492), - [sym__newline] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_err_GT_PIPE] = ACTIONS(934), - [anon_sym_out_GT_PIPE] = ACTIONS(934), - [anon_sym_e_GT_PIPE] = ACTIONS(934), - [anon_sym_o_GT_PIPE] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_in] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [aux_sym_ctrl_match_token1] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_EQ_GT] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_and] = ACTIONS(934), - [anon_sym_xor] = ACTIONS(934), - [anon_sym_or] = ACTIONS(934), - [anon_sym_not_DASHin] = ACTIONS(934), - [anon_sym_starts_DASHwith] = ACTIONS(934), - [anon_sym_ends_DASHwith] = ACTIONS(934), - [anon_sym_EQ_EQ] = ACTIONS(934), - [anon_sym_BANG_EQ] = ACTIONS(934), - [anon_sym_LT2] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(934), - [anon_sym_EQ_TILDE] = ACTIONS(934), - [anon_sym_BANG_TILDE] = ACTIONS(934), - [anon_sym_STAR_STAR] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(934), - [anon_sym_SLASH_SLASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_bit_DASHshl] = ACTIONS(934), - [anon_sym_bit_DASHshr] = ACTIONS(934), - [anon_sym_bit_DASHand] = ACTIONS(934), - [anon_sym_bit_DASHxor] = ACTIONS(934), - [anon_sym_bit_DASHor] = ACTIONS(934), - [anon_sym_DOT_DOT2] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(934), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [anon_sym_err_GT_GT] = ACTIONS(934), - [anon_sym_out_GT_GT] = ACTIONS(934), - [anon_sym_e_GT_GT] = ACTIONS(934), - [anon_sym_o_GT_GT] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4821), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1493] = { + [sym_cell_path] = STATE(1914), + [sym_path] = STATE(1715), [sym_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(902), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [anon_sym_null] = ACTIONS(902), - [aux_sym_cmd_identifier_token38] = ACTIONS(902), - [aux_sym_cmd_identifier_token39] = ACTIONS(902), - [aux_sym_cmd_identifier_token40] = ACTIONS(902), - [sym__newline] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_err_GT_PIPE] = ACTIONS(902), - [anon_sym_out_GT_PIPE] = ACTIONS(902), - [anon_sym_e_GT_PIPE] = ACTIONS(902), - [anon_sym_o_GT_PIPE] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [aux_sym_ctrl_match_token1] = ACTIONS(902), - [anon_sym_DOT_DOT] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(4777), - [anon_sym_DOT_DOT2] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(900), - [anon_sym_DOT_DOT_LT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(902), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(902), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(902), - [aux_sym__val_number_token1] = ACTIONS(902), - [aux_sym__val_number_token2] = ACTIONS(902), - [aux_sym__val_number_token3] = ACTIONS(902), - [anon_sym_0b] = ACTIONS(900), - [anon_sym_0o] = ACTIONS(900), - [anon_sym_0x] = ACTIONS(900), - [sym_val_date] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym__str_single_quotes] = ACTIONS(902), - [sym__str_back_ticks] = ACTIONS(902), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [aux_sym_unquoted_token1] = ACTIONS(900), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [aux_sym_cmd_identifier_token38] = ACTIONS(1849), + [aux_sym_cmd_identifier_token39] = ACTIONS(1849), + [aux_sym_cmd_identifier_token40] = ACTIONS(1849), + [sym__newline] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_err_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_GT_PIPE] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1847), + [aux_sym_ctrl_match_token1] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_LT] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1847), + [anon_sym_0x] = ACTIONS(1847), + [sym_val_date] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1849), + [anon_sym_out_GT_GT] = ACTIONS(1849), + [anon_sym_e_GT_GT] = ACTIONS(1849), + [anon_sym_o_GT_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), + [aux_sym_unquoted_token1] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(247), }, [1494] = { [sym_comment] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(908), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [anon_sym_null] = ACTIONS(908), - [aux_sym_cmd_identifier_token38] = ACTIONS(908), - [aux_sym_cmd_identifier_token39] = ACTIONS(908), - [aux_sym_cmd_identifier_token40] = ACTIONS(908), - [sym__newline] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_err_GT_PIPE] = ACTIONS(908), - [anon_sym_out_GT_PIPE] = ACTIONS(908), - [anon_sym_e_GT_PIPE] = ACTIONS(908), - [anon_sym_o_GT_PIPE] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [aux_sym_ctrl_match_token1] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(4779), - [anon_sym_DOT_DOT2] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(906), - [anon_sym_DOT_DOT_LT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(908), - [anon_sym_DOT_DOT_LT2] = ACTIONS(908), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(908), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(908), - [aux_sym__val_number_token1] = ACTIONS(908), - [aux_sym__val_number_token2] = ACTIONS(908), - [aux_sym__val_number_token3] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(906), - [anon_sym_0o] = ACTIONS(906), - [anon_sym_0x] = ACTIONS(906), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [aux_sym_unquoted_token1] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4708), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1495] = { - [sym_cell_path] = STATE(1815), - [sym_path] = STATE(1726), [sym_comment] = STATE(1495), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1766), - [aux_sym_cmd_identifier_token38] = ACTIONS(1766), - [aux_sym_cmd_identifier_token39] = ACTIONS(1766), - [aux_sym_cmd_identifier_token40] = ACTIONS(1766), - [sym__newline] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_err_GT_PIPE] = ACTIONS(1766), - [anon_sym_out_GT_PIPE] = ACTIONS(1766), - [anon_sym_e_GT_PIPE] = ACTIONS(1766), - [anon_sym_o_GT_PIPE] = ACTIONS(1766), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1766), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1766), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1766), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1764), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1764), - [aux_sym_ctrl_match_token1] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_DOT_DOT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_LT] = ACTIONS(1766), - [aux_sym__val_number_decimal_token1] = ACTIONS(1764), - [aux_sym__val_number_decimal_token2] = ACTIONS(1766), - [anon_sym_DOT2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1766), - [aux_sym__val_number_token1] = ACTIONS(1766), - [aux_sym__val_number_token2] = ACTIONS(1766), - [aux_sym__val_number_token3] = ACTIONS(1766), - [anon_sym_0b] = ACTIONS(1764), - [anon_sym_0o] = ACTIONS(1764), - [anon_sym_0x] = ACTIONS(1764), - [sym_val_date] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym__str_single_quotes] = ACTIONS(1766), - [sym__str_back_ticks] = ACTIONS(1766), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1766), - [anon_sym_err_GT] = ACTIONS(1764), - [anon_sym_out_GT] = ACTIONS(1764), - [anon_sym_e_GT] = ACTIONS(1764), - [anon_sym_o_GT] = ACTIONS(1764), - [anon_sym_err_PLUSout_GT] = ACTIONS(1764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1764), - [anon_sym_o_PLUSe_GT] = ACTIONS(1764), - [anon_sym_e_PLUSo_GT] = ACTIONS(1764), - [anon_sym_err_GT_GT] = ACTIONS(1766), - [anon_sym_out_GT_GT] = ACTIONS(1766), - [anon_sym_e_GT_GT] = ACTIONS(1766), - [anon_sym_o_GT_GT] = ACTIONS(1766), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1766), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1766), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1766), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1766), - [aux_sym_unquoted_token1] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(4823), + [anon_sym_PLUS_EQ] = ACTIONS(4825), + [anon_sym_DASH_EQ] = ACTIONS(4825), + [anon_sym_STAR_EQ] = ACTIONS(4825), + [anon_sym_SLASH_EQ] = ACTIONS(4825), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4825), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [aux_sym_expr_binary_token1] = ACTIONS(1008), + [aux_sym_expr_binary_token2] = ACTIONS(1008), + [aux_sym_expr_binary_token3] = ACTIONS(1008), + [aux_sym_expr_binary_token4] = ACTIONS(1008), + [aux_sym_expr_binary_token5] = ACTIONS(1008), + [aux_sym_expr_binary_token6] = ACTIONS(1008), + [aux_sym_expr_binary_token7] = ACTIONS(1008), + [aux_sym_expr_binary_token8] = ACTIONS(1008), + [aux_sym_expr_binary_token9] = ACTIONS(1008), + [aux_sym_expr_binary_token10] = ACTIONS(1008), + [aux_sym_expr_binary_token11] = ACTIONS(1008), + [aux_sym_expr_binary_token12] = ACTIONS(1008), + [aux_sym_expr_binary_token13] = ACTIONS(1008), + [aux_sym_expr_binary_token14] = ACTIONS(1008), + [aux_sym_expr_binary_token15] = ACTIONS(1008), + [aux_sym_expr_binary_token16] = ACTIONS(1008), + [aux_sym_expr_binary_token17] = ACTIONS(1008), + [aux_sym_expr_binary_token18] = ACTIONS(1008), + [aux_sym_expr_binary_token19] = ACTIONS(1008), + [aux_sym_expr_binary_token20] = ACTIONS(1008), + [aux_sym_expr_binary_token21] = ACTIONS(1008), + [aux_sym_expr_binary_token22] = ACTIONS(1008), + [aux_sym_expr_binary_token23] = ACTIONS(1008), + [aux_sym_expr_binary_token24] = ACTIONS(1008), + [aux_sym_expr_binary_token25] = ACTIONS(1008), + [aux_sym_expr_binary_token26] = ACTIONS(1008), + [aux_sym_expr_binary_token27] = ACTIONS(1008), + [aux_sym_expr_binary_token28] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(4827), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4829), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4829), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), }, [1496] = { - [sym__expr_parenthesized_immediate] = STATE(7592), + [sym_cell_path] = STATE(1916), + [sym_path] = STATE(1715), [sym_comment] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(1441), - [sym__newline] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_err_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_GT_PIPE] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_in] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_and] = ACTIONS(1441), - [anon_sym_xor] = ACTIONS(1441), - [anon_sym_or] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1441), - [anon_sym_starts_DASHwith] = ACTIONS(1441), - [anon_sym_ends_DASHwith] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ_TILDE] = ACTIONS(1441), - [anon_sym_BANG_TILDE] = ACTIONS(1441), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_SLASH_SLASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_bit_DASHshl] = ACTIONS(1441), - [anon_sym_bit_DASHshr] = ACTIONS(1441), - [anon_sym_bit_DASHand] = ACTIONS(1441), - [anon_sym_bit_DASHxor] = ACTIONS(1441), - [anon_sym_bit_DASHor] = ACTIONS(1441), - [anon_sym_DOT_DOT2] = ACTIONS(2858), - [anon_sym_DOT] = ACTIONS(4781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2862), - [sym_filesize_unit] = ACTIONS(4783), - [sym_duration_unit] = ACTIONS(4785), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token6] = ACTIONS(4781), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1873), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1871), + [aux_sym_ctrl_match_token1] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [aux_sym_unquoted_token1] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(247), }, [1497] = { [sym_comment] = STATE(1497), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(4787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_LPAREN2] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4831), + [aux_sym__immediate_decimal_token2] = ACTIONS(4833), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1498] = { + [sym_cell_path] = STATE(1923), + [sym_path] = STATE(1715), [sym_comment] = STATE(1498), - [anon_sym_EQ] = ACTIONS(4790), - [anon_sym_PLUS_EQ] = ACTIONS(4792), - [anon_sym_DASH_EQ] = ACTIONS(4792), - [anon_sym_STAR_EQ] = ACTIONS(4792), - [anon_sym_SLASH_EQ] = ACTIONS(4792), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4792), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_in] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_and] = ACTIONS(950), - [anon_sym_xor] = ACTIONS(950), - [anon_sym_or] = ACTIONS(950), - [anon_sym_not_DASHin] = ACTIONS(950), - [anon_sym_starts_DASHwith] = ACTIONS(950), - [anon_sym_ends_DASHwith] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_EQ_TILDE] = ACTIONS(950), - [anon_sym_BANG_TILDE] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(950), - [anon_sym_SLASH_SLASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_bit_DASHshl] = ACTIONS(950), - [anon_sym_bit_DASHshr] = ACTIONS(950), - [anon_sym_bit_DASHand] = ACTIONS(950), - [anon_sym_bit_DASHxor] = ACTIONS(950), - [anon_sym_bit_DASHor] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(962), - [anon_sym_DOT_DOT_LT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1877), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [sym__newline] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_err_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_GT_PIPE] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1875), + [aux_sym_ctrl_match_token1] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_LT] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [aux_sym_unquoted_token1] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(247), }, [1499] = { [sym_comment] = STATE(1499), - [aux_sym_cmd_identifier_token41] = ACTIONS(1368), - [sym__newline] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(4794), - [aux_sym__immediate_decimal_token2] = ACTIONS(4796), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [aux_sym_record_entry_token1] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1481), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4835), + [aux_sym__immediate_decimal_token2] = ACTIONS(4837), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(247), }, [1500] = { - [sym_cell_path] = STATE(1769), - [sym_path] = STATE(1694), [sym_comment] = STATE(1500), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [aux_sym_ctrl_match_token1] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_EQ_GT] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_and] = ACTIONS(1754), - [anon_sym_xor] = ACTIONS(1754), - [anon_sym_or] = ACTIONS(1754), - [anon_sym_not_DASHin] = ACTIONS(1754), - [anon_sym_starts_DASHwith] = ACTIONS(1754), - [anon_sym_ends_DASHwith] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1752), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_EQ_TILDE] = ACTIONS(1754), - [anon_sym_BANG_TILDE] = ACTIONS(1754), - [anon_sym_STAR_STAR] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_mod] = ACTIONS(1754), - [anon_sym_SLASH_SLASH] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_bit_DASHshl] = ACTIONS(1754), - [anon_sym_bit_DASHshr] = ACTIONS(1754), - [anon_sym_bit_DASHand] = ACTIONS(1754), - [anon_sym_bit_DASHxor] = ACTIONS(1754), - [anon_sym_bit_DASHor] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1752), - [anon_sym_out_GT] = ACTIONS(1752), - [anon_sym_e_GT] = ACTIONS(1752), - [anon_sym_o_GT] = ACTIONS(1752), - [anon_sym_err_PLUSout_GT] = ACTIONS(1752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), - [anon_sym_o_PLUSe_GT] = ACTIONS(1752), - [anon_sym_e_PLUSo_GT] = ACTIONS(1752), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4839), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4841), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), }, [1501] = { [sym_comment] = STATE(1501), - [ts_builtin_sym_end] = ACTIONS(918), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(918), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [sym__newline] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_err_GT_PIPE] = ACTIONS(918), - [anon_sym_out_GT_PIPE] = ACTIONS(918), - [anon_sym_e_GT_PIPE] = ACTIONS(918), - [anon_sym_o_GT_PIPE] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(916), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(916), - [aux_sym_ctrl_match_token1] = ACTIONS(918), - [anon_sym_DOT_DOT] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ] = ACTIONS(916), - [anon_sym_DOT_DOT_LT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_0b] = ACTIONS(916), - [anon_sym_0o] = ACTIONS(916), - [anon_sym_0x] = ACTIONS(916), - [sym_val_date] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [aux_sym_unquoted_token1] = ACTIONS(916), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), + [anon_sym_DOT_DOT_LT] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(4843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [1502] = { - [sym_cell_path] = STATE(1816), - [sym_path] = STATE(1726), [sym_comment] = STATE(1502), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), - [aux_sym_cmd_identifier_token38] = ACTIONS(1770), - [aux_sym_cmd_identifier_token39] = ACTIONS(1770), - [aux_sym_cmd_identifier_token40] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1768), - [aux_sym_ctrl_match_token1] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1768), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_LT] = ACTIONS(1770), - [aux_sym__val_number_decimal_token1] = ACTIONS(1768), - [aux_sym__val_number_decimal_token2] = ACTIONS(1770), - [anon_sym_DOT2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_token1] = ACTIONS(1770), - [aux_sym__val_number_token2] = ACTIONS(1770), - [aux_sym__val_number_token3] = ACTIONS(1770), - [anon_sym_0b] = ACTIONS(1768), - [anon_sym_0o] = ACTIONS(1768), - [anon_sym_0x] = ACTIONS(1768), - [sym_val_date] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [sym__str_single_quotes] = ACTIONS(1770), - [sym__str_back_ticks] = ACTIONS(1770), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1770), - [anon_sym_err_GT] = ACTIONS(1768), - [anon_sym_out_GT] = ACTIONS(1768), - [anon_sym_e_GT] = ACTIONS(1768), - [anon_sym_o_GT] = ACTIONS(1768), - [anon_sym_err_PLUSout_GT] = ACTIONS(1768), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), - [anon_sym_o_PLUSe_GT] = ACTIONS(1768), - [anon_sym_e_PLUSo_GT] = ACTIONS(1768), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [aux_sym_unquoted_token1] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(964), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(962), + [aux_sym_ctrl_match_token1] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_DOT_DOT_LT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(962), + [anon_sym_0x] = ACTIONS(962), + [sym_val_date] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), }, [1503] = { - [sym_path] = STATE(1472), + [sym_cell_path] = STATE(1819), + [sym_path] = STATE(1715), [sym_comment] = STATE(1503), - [aux_sym_cell_path_repeat1] = STATE(1504), - [sym__newline] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_in] = ACTIONS(891), - [aux_sym_ctrl_match_token1] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(4734), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), + [aux_sym_cmd_identifier_token38] = ACTIONS(1780), + [aux_sym_cmd_identifier_token39] = ACTIONS(1780), + [aux_sym_cmd_identifier_token40] = ACTIONS(1780), + [sym__newline] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_err_GT_PIPE] = ACTIONS(1780), + [anon_sym_out_GT_PIPE] = ACTIONS(1780), + [anon_sym_e_GT_PIPE] = ACTIONS(1780), + [anon_sym_o_GT_PIPE] = ACTIONS(1780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_RPAREN] = ACTIONS(1780), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1778), + [aux_sym_ctrl_match_token1] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_LT] = ACTIONS(1780), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1780), + [aux_sym__val_number_decimal_token3] = ACTIONS(1780), + [aux_sym__val_number_decimal_token4] = ACTIONS(1780), + [aux_sym__val_number_token1] = ACTIONS(1780), + [aux_sym__val_number_token2] = ACTIONS(1780), + [aux_sym__val_number_token3] = ACTIONS(1780), + [anon_sym_0b] = ACTIONS(1778), + [anon_sym_0o] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1778), + [sym_val_date] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [sym__str_single_quotes] = ACTIONS(1780), + [sym__str_back_ticks] = ACTIONS(1780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1780), + [anon_sym_err_GT] = ACTIONS(1778), + [anon_sym_out_GT] = ACTIONS(1778), + [anon_sym_e_GT] = ACTIONS(1778), + [anon_sym_o_GT] = ACTIONS(1778), + [anon_sym_err_PLUSout_GT] = ACTIONS(1778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), + [anon_sym_o_PLUSe_GT] = ACTIONS(1778), + [anon_sym_e_PLUSo_GT] = ACTIONS(1778), + [anon_sym_err_GT_GT] = ACTIONS(1780), + [anon_sym_out_GT_GT] = ACTIONS(1780), + [anon_sym_e_GT_GT] = ACTIONS(1780), + [anon_sym_o_GT_GT] = ACTIONS(1780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1780), + [aux_sym_unquoted_token1] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(247), }, [1504] = { - [sym_path] = STATE(1472), [sym_comment] = STATE(1504), - [aux_sym_cell_path_repeat1] = STATE(1504), - [sym__newline] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_COMMA] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_in] = ACTIONS(895), - [aux_sym_ctrl_match_token1] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(4800), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(966), + [aux_sym_ctrl_match_token1] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [1505] = { + [sym_cell_path] = STATE(1840), + [sym_path] = STATE(1715), [sym_comment] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4803), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4805), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_null] = ACTIONS(947), + [aux_sym_cmd_identifier_token38] = ACTIONS(947), + [aux_sym_cmd_identifier_token39] = ACTIONS(947), + [aux_sym_cmd_identifier_token40] = ACTIONS(947), + [sym__newline] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_err_GT_PIPE] = ACTIONS(947), + [anon_sym_out_GT_PIPE] = ACTIONS(947), + [anon_sym_e_GT_PIPE] = ACTIONS(947), + [anon_sym_o_GT_PIPE] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(945), + [aux_sym_ctrl_match_token1] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(947), + [anon_sym_DOT_DOT_LT] = ACTIONS(947), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(947), + [aux_sym__val_number_decimal_token3] = ACTIONS(947), + [aux_sym__val_number_decimal_token4] = ACTIONS(947), + [aux_sym__val_number_token1] = ACTIONS(947), + [aux_sym__val_number_token2] = ACTIONS(947), + [aux_sym__val_number_token3] = ACTIONS(947), + [anon_sym_0b] = ACTIONS(945), + [anon_sym_0o] = ACTIONS(945), + [anon_sym_0x] = ACTIONS(945), + [sym_val_date] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym__str_single_quotes] = ACTIONS(947), + [sym__str_back_ticks] = ACTIONS(947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(947), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [aux_sym_unquoted_token1] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(247), }, [1506] = { [sym_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(4807), - [aux_sym__immediate_decimal_token2] = ACTIONS(4809), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(4845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4847), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1507] = { [sym_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(922), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(922), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [sym__newline] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_err_GT_PIPE] = ACTIONS(922), - [anon_sym_out_GT_PIPE] = ACTIONS(922), - [anon_sym_e_GT_PIPE] = ACTIONS(922), - [anon_sym_o_GT_PIPE] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [aux_sym_ctrl_match_token1] = ACTIONS(922), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(920), - [anon_sym_DOT_DOT_LT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [aux_sym_unquoted_token1] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(978), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [aux_sym_ctrl_match_token1] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [anon_sym_DOT_DOT_LT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [1508] = { - [sym_cell_path] = STATE(1770), - [sym_path] = STATE(1694), + [sym_cell_path] = STATE(1935), + [sym_path] = STATE(1715), [sym_comment] = STATE(1508), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_err_GT_PIPE] = ACTIONS(1758), - [anon_sym_out_GT_PIPE] = ACTIONS(1758), - [anon_sym_e_GT_PIPE] = ACTIONS(1758), - [anon_sym_o_GT_PIPE] = ACTIONS(1758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1758), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_COMMA] = ACTIONS(1758), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_in] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [aux_sym_ctrl_match_token1] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_EQ_GT] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_and] = ACTIONS(1758), - [anon_sym_xor] = ACTIONS(1758), - [anon_sym_or] = ACTIONS(1758), - [anon_sym_not_DASHin] = ACTIONS(1758), - [anon_sym_starts_DASHwith] = ACTIONS(1758), - [anon_sym_ends_DASHwith] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1758), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_EQ_TILDE] = ACTIONS(1758), - [anon_sym_BANG_TILDE] = ACTIONS(1758), - [anon_sym_STAR_STAR] = ACTIONS(1758), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_mod] = ACTIONS(1758), - [anon_sym_SLASH_SLASH] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_bit_DASHshl] = ACTIONS(1758), - [anon_sym_bit_DASHshr] = ACTIONS(1758), - [anon_sym_bit_DASHand] = ACTIONS(1758), - [anon_sym_bit_DASHxor] = ACTIONS(1758), - [anon_sym_bit_DASHor] = ACTIONS(1758), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1758), - [anon_sym_out_GT_GT] = ACTIONS(1758), - [anon_sym_e_GT_GT] = ACTIONS(1758), - [anon_sym_o_GT_GT] = ACTIONS(1758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1575), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1810), + [aux_sym_cmd_identifier_token38] = ACTIONS(1810), + [aux_sym_cmd_identifier_token39] = ACTIONS(1810), + [aux_sym_cmd_identifier_token40] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_DOLLAR] = ACTIONS(1808), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1808), + [aux_sym_ctrl_match_token1] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT] = ACTIONS(1810), + [aux_sym__val_number_decimal_token1] = ACTIONS(1808), + [aux_sym__val_number_decimal_token2] = ACTIONS(1810), + [aux_sym__val_number_decimal_token3] = ACTIONS(1810), + [aux_sym__val_number_decimal_token4] = ACTIONS(1810), + [aux_sym__val_number_token1] = ACTIONS(1810), + [aux_sym__val_number_token2] = ACTIONS(1810), + [aux_sym__val_number_token3] = ACTIONS(1810), + [anon_sym_0b] = ACTIONS(1808), + [anon_sym_0o] = ACTIONS(1808), + [anon_sym_0x] = ACTIONS(1808), + [sym_val_date] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym__str_single_quotes] = ACTIONS(1810), + [sym__str_back_ticks] = ACTIONS(1810), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1808), + [anon_sym_out_GT] = ACTIONS(1808), + [anon_sym_e_GT] = ACTIONS(1808), + [anon_sym_o_GT] = ACTIONS(1808), + [anon_sym_err_PLUSout_GT] = ACTIONS(1808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), + [anon_sym_o_PLUSe_GT] = ACTIONS(1808), + [anon_sym_e_PLUSo_GT] = ACTIONS(1808), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [aux_sym_unquoted_token1] = ACTIONS(1808), + [anon_sym_POUND] = ACTIONS(247), }, [1509] = { - [sym_cell_path] = STATE(1771), - [sym_path] = STATE(1694), + [sym_cell_path] = STATE(2032), + [sym_path] = STATE(1868), [sym_comment] = STATE(1509), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1762), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_err_GT_PIPE] = ACTIONS(1762), - [anon_sym_out_GT_PIPE] = ACTIONS(1762), - [anon_sym_e_GT_PIPE] = ACTIONS(1762), - [anon_sym_o_GT_PIPE] = ACTIONS(1762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), - [anon_sym_RPAREN] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_in] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [aux_sym_ctrl_match_token1] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_EQ_GT] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_and] = ACTIONS(1762), - [anon_sym_xor] = ACTIONS(1762), - [anon_sym_or] = ACTIONS(1762), - [anon_sym_not_DASHin] = ACTIONS(1762), - [anon_sym_starts_DASHwith] = ACTIONS(1762), - [anon_sym_ends_DASHwith] = ACTIONS(1762), - [anon_sym_EQ_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1762), - [anon_sym_LT2] = ACTIONS(1760), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_EQ_TILDE] = ACTIONS(1762), - [anon_sym_BANG_TILDE] = ACTIONS(1762), - [anon_sym_STAR_STAR] = ACTIONS(1762), - [anon_sym_PLUS_PLUS] = ACTIONS(1762), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_mod] = ACTIONS(1762), - [anon_sym_SLASH_SLASH] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_bit_DASHshl] = ACTIONS(1762), - [anon_sym_bit_DASHshr] = ACTIONS(1762), - [anon_sym_bit_DASHand] = ACTIONS(1762), - [anon_sym_bit_DASHxor] = ACTIONS(1762), - [anon_sym_bit_DASHor] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1760), - [anon_sym_out_GT] = ACTIONS(1760), - [anon_sym_e_GT] = ACTIONS(1760), - [anon_sym_o_GT] = ACTIONS(1760), - [anon_sym_err_PLUSout_GT] = ACTIONS(1760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), - [anon_sym_o_PLUSe_GT] = ACTIONS(1760), - [anon_sym_e_PLUSo_GT] = ACTIONS(1760), - [anon_sym_err_GT_GT] = ACTIONS(1762), - [anon_sym_out_GT_GT] = ACTIONS(1762), - [anon_sym_e_GT_GT] = ACTIONS(1762), - [anon_sym_o_GT_GT] = ACTIONS(1762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [sym__newline] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_err_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_GT_PIPE] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1899), + [aux_sym_ctrl_match_token1] = ACTIONS(1901), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), + [anon_sym_DOT_DOT_LT] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [anon_sym_0b] = ACTIONS(1899), + [anon_sym_0o] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1899), + [sym_val_date] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1901), + [anon_sym_err_GT] = ACTIONS(1899), + [anon_sym_out_GT] = ACTIONS(1899), + [anon_sym_e_GT] = ACTIONS(1899), + [anon_sym_o_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT] = ACTIONS(1899), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), + [aux_sym_unquoted_token1] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(247), }, [1510] = { - [sym_cell_path] = STATE(1817), - [sym_path] = STATE(1726), [sym_comment] = STATE(1510), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1774), - [anon_sym_false] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [aux_sym_cmd_identifier_token38] = ACTIONS(1774), - [aux_sym_cmd_identifier_token39] = ACTIONS(1774), - [aux_sym_cmd_identifier_token40] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1772), - [aux_sym_ctrl_match_token1] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1774), - [anon_sym_DOT_DOT_LT] = ACTIONS(1774), - [aux_sym__val_number_decimal_token1] = ACTIONS(1772), - [aux_sym__val_number_decimal_token2] = ACTIONS(1774), - [anon_sym_DOT2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1774), - [aux_sym__val_number_token1] = ACTIONS(1774), - [aux_sym__val_number_token2] = ACTIONS(1774), - [aux_sym__val_number_token3] = ACTIONS(1774), - [anon_sym_0b] = ACTIONS(1772), - [anon_sym_0o] = ACTIONS(1772), - [anon_sym_0x] = ACTIONS(1772), - [sym_val_date] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [sym__str_single_quotes] = ACTIONS(1774), - [sym__str_back_ticks] = ACTIONS(1774), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [aux_sym_unquoted_token1] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1650), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), + [anon_sym_DOT_DOT_LT] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(4851), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [1511] = { - [sym_cell_path] = STATE(1772), - [sym_path] = STATE(1694), [sym_comment] = STATE(1511), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_err_GT_PIPE] = ACTIONS(1766), - [anon_sym_out_GT_PIPE] = ACTIONS(1766), - [anon_sym_e_GT_PIPE] = ACTIONS(1766), - [anon_sym_o_GT_PIPE] = ACTIONS(1766), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1766), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1766), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1766), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [aux_sym_ctrl_match_token1] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_EQ_GT] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_and] = ACTIONS(1766), - [anon_sym_xor] = ACTIONS(1766), - [anon_sym_or] = ACTIONS(1766), - [anon_sym_not_DASHin] = ACTIONS(1766), - [anon_sym_starts_DASHwith] = ACTIONS(1766), - [anon_sym_ends_DASHwith] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_LT2] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_EQ_TILDE] = ACTIONS(1766), - [anon_sym_BANG_TILDE] = ACTIONS(1766), - [anon_sym_STAR_STAR] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_mod] = ACTIONS(1766), - [anon_sym_SLASH_SLASH] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_bit_DASHshl] = ACTIONS(1766), - [anon_sym_bit_DASHshr] = ACTIONS(1766), - [anon_sym_bit_DASHand] = ACTIONS(1766), - [anon_sym_bit_DASHxor] = ACTIONS(1766), - [anon_sym_bit_DASHor] = ACTIONS(1766), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1764), - [anon_sym_out_GT] = ACTIONS(1764), - [anon_sym_e_GT] = ACTIONS(1764), - [anon_sym_o_GT] = ACTIONS(1764), - [anon_sym_err_PLUSout_GT] = ACTIONS(1764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1764), - [anon_sym_o_PLUSe_GT] = ACTIONS(1764), - [anon_sym_e_PLUSo_GT] = ACTIONS(1764), - [anon_sym_err_GT_GT] = ACTIONS(1766), - [anon_sym_out_GT_GT] = ACTIONS(1766), - [anon_sym_e_GT_GT] = ACTIONS(1766), - [anon_sym_o_GT_GT] = ACTIONS(1766), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1766), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1766), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1766), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4793), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1512] = { - [sym_cell_path] = STATE(1773), - [sym_path] = STATE(1694), [sym_comment] = STATE(1512), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [aux_sym_ctrl_match_token1] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_EQ_GT] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_and] = ACTIONS(1770), - [anon_sym_xor] = ACTIONS(1770), - [anon_sym_or] = ACTIONS(1770), - [anon_sym_not_DASHin] = ACTIONS(1770), - [anon_sym_starts_DASHwith] = ACTIONS(1770), - [anon_sym_ends_DASHwith] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_LT2] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_EQ_TILDE] = ACTIONS(1770), - [anon_sym_BANG_TILDE] = ACTIONS(1770), - [anon_sym_STAR_STAR] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1770), - [anon_sym_SLASH_SLASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_bit_DASHshl] = ACTIONS(1770), - [anon_sym_bit_DASHshr] = ACTIONS(1770), - [anon_sym_bit_DASHand] = ACTIONS(1770), - [anon_sym_bit_DASHxor] = ACTIONS(1770), - [anon_sym_bit_DASHor] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1768), - [anon_sym_out_GT] = ACTIONS(1768), - [anon_sym_e_GT] = ACTIONS(1768), - [anon_sym_o_GT] = ACTIONS(1768), - [anon_sym_err_PLUSout_GT] = ACTIONS(1768), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), - [anon_sym_o_PLUSe_GT] = ACTIONS(1768), - [anon_sym_e_PLUSo_GT] = ACTIONS(1768), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1966), + [aux_sym_cmd_identifier_token38] = ACTIONS(1966), + [aux_sym_cmd_identifier_token39] = ACTIONS(1966), + [aux_sym_cmd_identifier_token40] = ACTIONS(1966), + [sym__newline] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_err_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_GT_PIPE] = ACTIONS(1966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_RPAREN] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1960), + [aux_sym_ctrl_match_token1] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1960), + [anon_sym_DOT_DOT2] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1960), + [anon_sym_DOT_DOT_LT] = ACTIONS(1960), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4855), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4855), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1966), + [aux_sym__val_number_decimal_token3] = ACTIONS(1966), + [aux_sym__val_number_decimal_token4] = ACTIONS(1966), + [aux_sym__val_number_token1] = ACTIONS(1966), + [aux_sym__val_number_token2] = ACTIONS(1966), + [aux_sym__val_number_token3] = ACTIONS(1966), + [anon_sym_0b] = ACTIONS(1960), + [anon_sym_0o] = ACTIONS(1960), + [anon_sym_0x] = ACTIONS(1960), + [sym_val_date] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [sym__str_single_quotes] = ACTIONS(1966), + [sym__str_back_ticks] = ACTIONS(1966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1966), + [anon_sym_err_GT] = ACTIONS(1960), + [anon_sym_out_GT] = ACTIONS(1960), + [anon_sym_e_GT] = ACTIONS(1960), + [anon_sym_o_GT] = ACTIONS(1960), + [anon_sym_err_PLUSout_GT] = ACTIONS(1960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), + [anon_sym_o_PLUSe_GT] = ACTIONS(1960), + [anon_sym_e_PLUSo_GT] = ACTIONS(1960), + [anon_sym_err_GT_GT] = ACTIONS(1966), + [anon_sym_out_GT_GT] = ACTIONS(1966), + [anon_sym_e_GT_GT] = ACTIONS(1966), + [anon_sym_o_GT_GT] = ACTIONS(1966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1966), + [aux_sym_unquoted_token1] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(247), }, [1513] = { - [sym_cell_path] = STATE(1774), - [sym_path] = STATE(1694), + [sym_cell_path] = STATE(1965), + [sym_path] = STATE(1868), [sym_comment] = STATE(1513), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_COMMA] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [aux_sym_ctrl_match_token1] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_EQ_GT] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_and] = ACTIONS(1774), - [anon_sym_xor] = ACTIONS(1774), - [anon_sym_or] = ACTIONS(1774), - [anon_sym_not_DASHin] = ACTIONS(1774), - [anon_sym_starts_DASHwith] = ACTIONS(1774), - [anon_sym_ends_DASHwith] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1774), - [anon_sym_BANG_EQ] = ACTIONS(1774), - [anon_sym_LT2] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1774), - [anon_sym_GT_EQ] = ACTIONS(1774), - [anon_sym_EQ_TILDE] = ACTIONS(1774), - [anon_sym_BANG_TILDE] = ACTIONS(1774), - [anon_sym_STAR_STAR] = ACTIONS(1774), - [anon_sym_PLUS_PLUS] = ACTIONS(1774), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_mod] = ACTIONS(1774), - [anon_sym_SLASH_SLASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_bit_DASHshl] = ACTIONS(1774), - [anon_sym_bit_DASHshr] = ACTIONS(1774), - [anon_sym_bit_DASHand] = ACTIONS(1774), - [anon_sym_bit_DASHxor] = ACTIONS(1774), - [anon_sym_bit_DASHor] = ACTIONS(1774), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1873), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1871), + [aux_sym_ctrl_match_token1] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [aux_sym_unquoted_token1] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(247), }, [1514] = { - [sym_cell_path] = STATE(1775), - [sym_path] = STATE(1694), [sym_comment] = STATE(1514), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_err_GT_PIPE] = ACTIONS(1778), - [anon_sym_out_GT_PIPE] = ACTIONS(1778), - [anon_sym_e_GT_PIPE] = ACTIONS(1778), - [anon_sym_o_GT_PIPE] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1778), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [aux_sym_ctrl_match_token1] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_and] = ACTIONS(1778), - [anon_sym_xor] = ACTIONS(1778), - [anon_sym_or] = ACTIONS(1778), - [anon_sym_not_DASHin] = ACTIONS(1778), - [anon_sym_starts_DASHwith] = ACTIONS(1778), - [anon_sym_ends_DASHwith] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_LT2] = ACTIONS(1776), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_TILDE] = ACTIONS(1778), - [anon_sym_BANG_TILDE] = ACTIONS(1778), - [anon_sym_STAR_STAR] = ACTIONS(1778), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_mod] = ACTIONS(1778), - [anon_sym_SLASH_SLASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_bit_DASHshl] = ACTIONS(1778), - [anon_sym_bit_DASHshr] = ACTIONS(1778), - [anon_sym_bit_DASHand] = ACTIONS(1778), - [anon_sym_bit_DASHxor] = ACTIONS(1778), - [anon_sym_bit_DASHor] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1778), - [anon_sym_out_GT_GT] = ACTIONS(1778), - [anon_sym_e_GT_GT] = ACTIONS(1778), - [anon_sym_o_GT_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token38] = ACTIONS(1955), + [aux_sym_cmd_identifier_token39] = ACTIONS(1955), + [aux_sym_cmd_identifier_token40] = ACTIONS(1955), + [sym__newline] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_err_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_GT_PIPE] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1953), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1953), + [aux_sym_ctrl_match_token1] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1953), + [anon_sym_DOT_DOT2] = ACTIONS(1953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1955), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token1] = ACTIONS(1953), + [aux_sym__val_number_decimal_token2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token3] = ACTIONS(1955), + [aux_sym__val_number_decimal_token4] = ACTIONS(1955), + [aux_sym__val_number_token1] = ACTIONS(1955), + [aux_sym__val_number_token2] = ACTIONS(1955), + [aux_sym__val_number_token3] = ACTIONS(1955), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0o] = ACTIONS(1953), + [anon_sym_0x] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym__str_single_quotes] = ACTIONS(1955), + [sym__str_back_ticks] = ACTIONS(1955), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), + [anon_sym_err_GT] = ACTIONS(1953), + [anon_sym_out_GT] = ACTIONS(1953), + [anon_sym_e_GT] = ACTIONS(1953), + [anon_sym_o_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT] = ACTIONS(1953), + [anon_sym_err_GT_GT] = ACTIONS(1955), + [anon_sym_out_GT_GT] = ACTIONS(1955), + [anon_sym_e_GT_GT] = ACTIONS(1955), + [anon_sym_o_GT_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), + [aux_sym_unquoted_token1] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(247), }, [1515] = { + [sym_cell_path] = STATE(2075), + [sym_path] = STATE(1868), [sym_comment] = STATE(1515), - [aux_sym_cmd_identifier_token41] = ACTIONS(1398), - [sym__newline] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(4811), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4813), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [aux_sym_record_entry_token1] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1857), + [aux_sym_cmd_identifier_token38] = ACTIONS(1857), + [aux_sym_cmd_identifier_token39] = ACTIONS(1857), + [aux_sym_cmd_identifier_token40] = ACTIONS(1857), + [sym__newline] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_err_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_GT_PIPE] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1855), + [aux_sym_ctrl_match_token1] = ACTIONS(1857), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), + [anon_sym_DOT_DOT_LT] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [anon_sym_0b] = ACTIONS(1855), + [anon_sym_0o] = ACTIONS(1855), + [anon_sym_0x] = ACTIONS(1855), + [sym_val_date] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), + [anon_sym_err_GT] = ACTIONS(1855), + [anon_sym_out_GT] = ACTIONS(1855), + [anon_sym_e_GT] = ACTIONS(1855), + [anon_sym_o_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT] = ACTIONS(1855), + [anon_sym_err_GT_GT] = ACTIONS(1857), + [anon_sym_out_GT_GT] = ACTIONS(1857), + [anon_sym_e_GT_GT] = ACTIONS(1857), + [anon_sym_o_GT_GT] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), + [aux_sym_unquoted_token1] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(247), }, [1516] = { - [sym_cell_path] = STATE(1776), - [sym_path] = STATE(1694), + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1516), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1782), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_err_GT_PIPE] = ACTIONS(1782), - [anon_sym_out_GT_PIPE] = ACTIONS(1782), - [anon_sym_e_GT_PIPE] = ACTIONS(1782), - [anon_sym_o_GT_PIPE] = ACTIONS(1782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [aux_sym_ctrl_match_token1] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_EQ_GT] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_and] = ACTIONS(1782), - [anon_sym_xor] = ACTIONS(1782), - [anon_sym_or] = ACTIONS(1782), - [anon_sym_not_DASHin] = ACTIONS(1782), - [anon_sym_starts_DASHwith] = ACTIONS(1782), - [anon_sym_ends_DASHwith] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1782), - [anon_sym_LT2] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_TILDE] = ACTIONS(1782), - [anon_sym_BANG_TILDE] = ACTIONS(1782), - [anon_sym_STAR_STAR] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1782), - [anon_sym_SLASH_SLASH] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_bit_DASHshl] = ACTIONS(1782), - [anon_sym_bit_DASHshr] = ACTIONS(1782), - [anon_sym_bit_DASHand] = ACTIONS(1782), - [anon_sym_bit_DASHxor] = ACTIONS(1782), - [anon_sym_bit_DASHor] = ACTIONS(1782), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1780), - [anon_sym_out_GT] = ACTIONS(1780), - [anon_sym_e_GT] = ACTIONS(1780), - [anon_sym_o_GT] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT] = ACTIONS(1780), - [anon_sym_err_GT_GT] = ACTIONS(1782), - [anon_sym_out_GT_GT] = ACTIONS(1782), - [anon_sym_e_GT_GT] = ACTIONS(1782), - [anon_sym_o_GT_GT] = ACTIONS(1782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1517] = { - [sym_cell_path] = STATE(1777), - [sym_path] = STATE(1694), + [sym_cell_path] = STATE(1970), + [sym_path] = STATE(1868), [sym_comment] = STATE(1517), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [aux_sym_ctrl_match_token1] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_EQ_GT] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_and] = ACTIONS(1786), - [anon_sym_xor] = ACTIONS(1786), - [anon_sym_or] = ACTIONS(1786), - [anon_sym_not_DASHin] = ACTIONS(1786), - [anon_sym_starts_DASHwith] = ACTIONS(1786), - [anon_sym_ends_DASHwith] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1786), - [anon_sym_LT2] = ACTIONS(1784), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_EQ_TILDE] = ACTIONS(1786), - [anon_sym_BANG_TILDE] = ACTIONS(1786), - [anon_sym_STAR_STAR] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_mod] = ACTIONS(1786), - [anon_sym_SLASH_SLASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_bit_DASHshl] = ACTIONS(1786), - [anon_sym_bit_DASHshr] = ACTIONS(1786), - [anon_sym_bit_DASHand] = ACTIONS(1786), - [anon_sym_bit_DASHxor] = ACTIONS(1786), - [anon_sym_bit_DASHor] = ACTIONS(1786), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1784), - [anon_sym_out_GT] = ACTIONS(1784), - [anon_sym_e_GT] = ACTIONS(1784), - [anon_sym_o_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT] = ACTIONS(1784), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1764), + [anon_sym_false] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(1764), + [aux_sym_cmd_identifier_token38] = ACTIONS(1764), + [aux_sym_cmd_identifier_token39] = ACTIONS(1764), + [aux_sym_cmd_identifier_token40] = ACTIONS(1764), + [sym__newline] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_err_GT_PIPE] = ACTIONS(1764), + [anon_sym_out_GT_PIPE] = ACTIONS(1764), + [anon_sym_e_GT_PIPE] = ACTIONS(1764), + [anon_sym_o_GT_PIPE] = ACTIONS(1764), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1764), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1764), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1764), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_DASH] = ACTIONS(1762), + [aux_sym_ctrl_match_token1] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1764), + [anon_sym_DOT_DOT_LT] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1762), + [aux_sym__val_number_decimal_token2] = ACTIONS(1764), + [aux_sym__val_number_decimal_token3] = ACTIONS(1764), + [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_token1] = ACTIONS(1764), + [aux_sym__val_number_token2] = ACTIONS(1764), + [aux_sym__val_number_token3] = ACTIONS(1764), + [anon_sym_0b] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1762), + [anon_sym_0x] = ACTIONS(1762), + [sym_val_date] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [sym__str_single_quotes] = ACTIONS(1764), + [sym__str_back_ticks] = ACTIONS(1764), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1764), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1764), + [anon_sym_out_GT_GT] = ACTIONS(1764), + [anon_sym_e_GT_GT] = ACTIONS(1764), + [anon_sym_o_GT_GT] = ACTIONS(1764), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1764), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1764), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1764), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1764), + [aux_sym_unquoted_token1] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(247), }, [1518] = { - [sym_cell_path] = STATE(1778), - [sym_path] = STATE(1694), [sym_comment] = STATE(1518), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [aux_sym_ctrl_match_token1] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_EQ_GT] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_and] = ACTIONS(1790), - [anon_sym_xor] = ACTIONS(1790), - [anon_sym_or] = ACTIONS(1790), - [anon_sym_not_DASHin] = ACTIONS(1790), - [anon_sym_starts_DASHwith] = ACTIONS(1790), - [anon_sym_ends_DASHwith] = ACTIONS(1790), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_LT2] = ACTIONS(1788), - [anon_sym_LT_EQ] = ACTIONS(1790), - [anon_sym_GT_EQ] = ACTIONS(1790), - [anon_sym_EQ_TILDE] = ACTIONS(1790), - [anon_sym_BANG_TILDE] = ACTIONS(1790), - [anon_sym_STAR_STAR] = ACTIONS(1790), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1790), - [anon_sym_SLASH_SLASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_bit_DASHshl] = ACTIONS(1790), - [anon_sym_bit_DASHshr] = ACTIONS(1790), - [anon_sym_bit_DASHand] = ACTIONS(1790), - [anon_sym_bit_DASHxor] = ACTIONS(1790), - [anon_sym_bit_DASHor] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1788), - [anon_sym_out_GT] = ACTIONS(1788), - [anon_sym_e_GT] = ACTIONS(1788), - [anon_sym_o_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT] = ACTIONS(1788), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(4857), + [aux_sym__immediate_decimal_token2] = ACTIONS(4859), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [1519] = { - [sym_cell_path] = STATE(1779), - [sym_path] = STATE(1694), [sym_comment] = STATE(1519), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_err_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_GT_PIPE] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_COMMA] = ACTIONS(1794), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [aux_sym_ctrl_match_token1] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_EQ_GT] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_and] = ACTIONS(1794), - [anon_sym_xor] = ACTIONS(1794), - [anon_sym_or] = ACTIONS(1794), - [anon_sym_not_DASHin] = ACTIONS(1794), - [anon_sym_starts_DASHwith] = ACTIONS(1794), - [anon_sym_ends_DASHwith] = ACTIONS(1794), - [anon_sym_EQ_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1794), - [anon_sym_LT2] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_EQ_TILDE] = ACTIONS(1794), - [anon_sym_BANG_TILDE] = ACTIONS(1794), - [anon_sym_STAR_STAR] = ACTIONS(1794), - [anon_sym_PLUS_PLUS] = ACTIONS(1794), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1794), - [anon_sym_SLASH_SLASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_bit_DASHshl] = ACTIONS(1794), - [anon_sym_bit_DASHshr] = ACTIONS(1794), - [anon_sym_bit_DASHand] = ACTIONS(1794), - [anon_sym_bit_DASHxor] = ACTIONS(1794), - [anon_sym_bit_DASHor] = ACTIONS(1794), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4861), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(247), }, [1520] = { - [sym_cell_path] = STATE(1780), - [sym_path] = STATE(1694), [sym_comment] = STATE(1520), - [aux_sym_cell_path_repeat1] = STATE(1585), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [anon_sym_null] = ACTIONS(1984), + [aux_sym_cmd_identifier_token38] = ACTIONS(1984), + [aux_sym_cmd_identifier_token39] = ACTIONS(1984), + [aux_sym_cmd_identifier_token40] = ACTIONS(1984), + [sym__newline] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_PIPE] = ACTIONS(1984), + [anon_sym_err_GT_PIPE] = ACTIONS(1984), + [anon_sym_out_GT_PIPE] = ACTIONS(1984), + [anon_sym_e_GT_PIPE] = ACTIONS(1984), + [anon_sym_o_GT_PIPE] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_RPAREN] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1982), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1982), + [aux_sym_ctrl_match_token1] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_DOT_DOT] = ACTIONS(1982), + [anon_sym_DOT_DOT2] = ACTIONS(1982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1982), + [anon_sym_DOT_DOT_LT] = ACTIONS(1982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), + [aux_sym__val_number_decimal_token1] = ACTIONS(1982), + [aux_sym__val_number_decimal_token2] = ACTIONS(1984), + [aux_sym__val_number_decimal_token3] = ACTIONS(1984), + [aux_sym__val_number_decimal_token4] = ACTIONS(1984), + [aux_sym__val_number_token1] = ACTIONS(1984), + [aux_sym__val_number_token2] = ACTIONS(1984), + [aux_sym__val_number_token3] = ACTIONS(1984), + [anon_sym_0b] = ACTIONS(1982), + [anon_sym_0o] = ACTIONS(1982), + [anon_sym_0x] = ACTIONS(1982), + [sym_val_date] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1984), + [sym__str_single_quotes] = ACTIONS(1984), + [sym__str_back_ticks] = ACTIONS(1984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1984), + [anon_sym_err_GT] = ACTIONS(1982), + [anon_sym_out_GT] = ACTIONS(1982), + [anon_sym_e_GT] = ACTIONS(1982), + [anon_sym_o_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT] = ACTIONS(1982), + [anon_sym_err_GT_GT] = ACTIONS(1984), + [anon_sym_out_GT_GT] = ACTIONS(1984), + [anon_sym_e_GT_GT] = ACTIONS(1984), + [anon_sym_o_GT_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1984), + [aux_sym_unquoted_token1] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(247), + }, + [1521] = { + [sym_comment] = STATE(1521), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_LPAREN2] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), + }, + [1522] = { + [sym_cell_path] = STATE(2041), + [sym_path] = STATE(1868), + [sym_comment] = STATE(1522), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1885), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [anon_sym_null] = ACTIONS(1885), + [aux_sym_cmd_identifier_token38] = ACTIONS(1885), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1883), + [aux_sym_ctrl_match_token1] = ACTIONS(1885), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), + [anon_sym_DOT_DOT_LT] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [sym_val_date] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), + [aux_sym_unquoted_token1] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(247), + }, + [1523] = { + [sym_cell_path] = STATE(1960), + [sym_path] = STATE(1868), + [sym_comment] = STATE(1523), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [aux_sym_cmd_identifier_token38] = ACTIONS(1849), + [aux_sym_cmd_identifier_token39] = ACTIONS(1849), + [aux_sym_cmd_identifier_token40] = ACTIONS(1849), + [sym__newline] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_err_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_GT_PIPE] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1847), + [aux_sym_ctrl_match_token1] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_LT] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1847), + [anon_sym_0x] = ACTIONS(1847), + [sym_val_date] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1849), + [anon_sym_out_GT_GT] = ACTIONS(1849), + [anon_sym_e_GT_GT] = ACTIONS(1849), + [anon_sym_o_GT_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), + [aux_sym_unquoted_token1] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(247), + }, + [1524] = { + [sym_comment] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4847), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), + }, + [1525] = { + [sym_cell_path] = STATE(2077), + [sym_path] = STATE(1868), + [sym_comment] = STATE(1525), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1798), + [aux_sym_cmd_identifier_token38] = ACTIONS(1798), + [aux_sym_cmd_identifier_token39] = ACTIONS(1798), + [aux_sym_cmd_identifier_token40] = ACTIONS(1798), [sym__newline] = ACTIONS(1798), [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_PIPE] = ACTIONS(1798), @@ -212631,41 +218420,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1798), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1798), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1796), [aux_sym_ctrl_match_token1] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_EQ_GT] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_and] = ACTIONS(1798), - [anon_sym_xor] = ACTIONS(1798), - [anon_sym_or] = ACTIONS(1798), - [anon_sym_not_DASHin] = ACTIONS(1798), - [anon_sym_starts_DASHwith] = ACTIONS(1798), - [anon_sym_ends_DASHwith] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1798), - [anon_sym_LT2] = ACTIONS(1796), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_EQ_TILDE] = ACTIONS(1798), - [anon_sym_BANG_TILDE] = ACTIONS(1798), - [anon_sym_STAR_STAR] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_mod] = ACTIONS(1798), - [anon_sym_SLASH_SLASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_bit_DASHshl] = ACTIONS(1798), - [anon_sym_bit_DASHshr] = ACTIONS(1798), - [anon_sym_bit_DASHand] = ACTIONS(1798), - [anon_sym_bit_DASHxor] = ACTIONS(1798), - [anon_sym_bit_DASHor] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), + [anon_sym_DOT_DOT_LT] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1798), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(1798), + [aux_sym__val_number_token2] = ACTIONS(1798), + [aux_sym__val_number_token3] = ACTIONS(1798), + [anon_sym_0b] = ACTIONS(1796), + [anon_sym_0o] = ACTIONS(1796), + [anon_sym_0x] = ACTIONS(1796), + [sym_val_date] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [sym__str_single_quotes] = ACTIONS(1798), + [sym__str_back_ticks] = ACTIONS(1798), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1798), [anon_sym_err_GT] = ACTIONS(1796), [anon_sym_out_GT] = ACTIONS(1796), [anon_sym_e_GT] = ACTIONS(1796), @@ -212682,151 +218462,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1798), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1798), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token1] = ACTIONS(1796), + [anon_sym_POUND] = ACTIONS(247), }, - [1521] = { - [sym_cell_path] = STATE(1781), - [sym_path] = STATE(1694), - [sym_comment] = STATE(1521), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [aux_sym_ctrl_match_token1] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_EQ_GT] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_and] = ACTIONS(1802), - [anon_sym_xor] = ACTIONS(1802), - [anon_sym_or] = ACTIONS(1802), - [anon_sym_not_DASHin] = ACTIONS(1802), - [anon_sym_starts_DASHwith] = ACTIONS(1802), - [anon_sym_ends_DASHwith] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1800), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_EQ_TILDE] = ACTIONS(1802), - [anon_sym_BANG_TILDE] = ACTIONS(1802), - [anon_sym_STAR_STAR] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1802), - [anon_sym_SLASH_SLASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_bit_DASHshl] = ACTIONS(1802), - [anon_sym_bit_DASHshr] = ACTIONS(1802), - [anon_sym_bit_DASHand] = ACTIONS(1802), - [anon_sym_bit_DASHxor] = ACTIONS(1802), - [anon_sym_bit_DASHor] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1800), - [anon_sym_out_GT] = ACTIONS(1800), - [anon_sym_e_GT] = ACTIONS(1800), - [anon_sym_o_GT] = ACTIONS(1800), - [anon_sym_err_PLUSout_GT] = ACTIONS(1800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1800), - [anon_sym_o_PLUSe_GT] = ACTIONS(1800), - [anon_sym_e_PLUSo_GT] = ACTIONS(1800), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(3), + [1526] = { + [sym_comment] = STATE(1526), + [aux_sym_cmd_identifier_token41] = ACTIONS(1519), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4863), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(247), }, - [1522] = { - [sym_cell_path] = STATE(1782), - [sym_path] = STATE(1694), - [sym_comment] = STATE(1522), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_RPAREN] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_in] = ACTIONS(1806), - [anon_sym_if] = ACTIONS(1806), - [aux_sym_ctrl_match_token1] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_EQ_GT] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_and] = ACTIONS(1806), - [anon_sym_xor] = ACTIONS(1806), - [anon_sym_or] = ACTIONS(1806), - [anon_sym_not_DASHin] = ACTIONS(1806), - [anon_sym_starts_DASHwith] = ACTIONS(1806), - [anon_sym_ends_DASHwith] = ACTIONS(1806), - [anon_sym_EQ_EQ] = ACTIONS(1806), - [anon_sym_BANG_EQ] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ] = ACTIONS(1806), - [anon_sym_GT_EQ] = ACTIONS(1806), - [anon_sym_EQ_TILDE] = ACTIONS(1806), - [anon_sym_BANG_TILDE] = ACTIONS(1806), - [anon_sym_STAR_STAR] = ACTIONS(1806), - [anon_sym_PLUS_PLUS] = ACTIONS(1806), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1806), - [anon_sym_SLASH_SLASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_bit_DASHshl] = ACTIONS(1806), - [anon_sym_bit_DASHshr] = ACTIONS(1806), - [anon_sym_bit_DASHand] = ACTIONS(1806), - [anon_sym_bit_DASHxor] = ACTIONS(1806), - [anon_sym_bit_DASHor] = ACTIONS(1806), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(3), + [1527] = { + [sym_comment] = STATE(1527), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_LPAREN2] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, - [1523] = { - [sym_cell_path] = STATE(1783), - [sym_path] = STATE(1694), - [sym_comment] = STATE(1523), - [aux_sym_cell_path_repeat1] = STATE(1585), + [1528] = { + [sym_comment] = STATE(1528), + [sym__newline] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_PIPE] = ACTIONS(1984), + [anon_sym_err_GT_PIPE] = ACTIONS(1984), + [anon_sym_out_GT_PIPE] = ACTIONS(1984), + [anon_sym_e_GT_PIPE] = ACTIONS(1984), + [anon_sym_o_GT_PIPE] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1982), + [aux_sym_ctrl_match_token1] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_EQ_GT] = ACTIONS(1984), + [aux_sym_expr_binary_token1] = ACTIONS(1984), + [aux_sym_expr_binary_token2] = ACTIONS(1984), + [aux_sym_expr_binary_token3] = ACTIONS(1984), + [aux_sym_expr_binary_token4] = ACTIONS(1984), + [aux_sym_expr_binary_token5] = ACTIONS(1984), + [aux_sym_expr_binary_token6] = ACTIONS(1984), + [aux_sym_expr_binary_token7] = ACTIONS(1984), + [aux_sym_expr_binary_token8] = ACTIONS(1984), + [aux_sym_expr_binary_token9] = ACTIONS(1984), + [aux_sym_expr_binary_token10] = ACTIONS(1984), + [aux_sym_expr_binary_token11] = ACTIONS(1984), + [aux_sym_expr_binary_token12] = ACTIONS(1984), + [aux_sym_expr_binary_token13] = ACTIONS(1984), + [aux_sym_expr_binary_token14] = ACTIONS(1984), + [aux_sym_expr_binary_token15] = ACTIONS(1984), + [aux_sym_expr_binary_token16] = ACTIONS(1984), + [aux_sym_expr_binary_token17] = ACTIONS(1984), + [aux_sym_expr_binary_token18] = ACTIONS(1984), + [aux_sym_expr_binary_token19] = ACTIONS(1984), + [aux_sym_expr_binary_token20] = ACTIONS(1984), + [aux_sym_expr_binary_token21] = ACTIONS(1984), + [aux_sym_expr_binary_token22] = ACTIONS(1984), + [aux_sym_expr_binary_token23] = ACTIONS(1984), + [aux_sym_expr_binary_token24] = ACTIONS(1984), + [aux_sym_expr_binary_token25] = ACTIONS(1984), + [aux_sym_expr_binary_token26] = ACTIONS(1984), + [aux_sym_expr_binary_token27] = ACTIONS(1984), + [aux_sym_expr_binary_token28] = ACTIONS(1984), + [anon_sym_DOT_DOT2] = ACTIONS(1982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), + [aux_sym_record_entry_token1] = ACTIONS(1984), + [anon_sym_err_GT] = ACTIONS(1982), + [anon_sym_out_GT] = ACTIONS(1982), + [anon_sym_e_GT] = ACTIONS(1982), + [anon_sym_o_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT] = ACTIONS(1982), + [anon_sym_err_GT_GT] = ACTIONS(1984), + [anon_sym_out_GT_GT] = ACTIONS(1984), + [anon_sym_e_GT_GT] = ACTIONS(1984), + [anon_sym_o_GT_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(247), + }, + [1529] = { + [sym_cell_path] = STATE(2089), + [sym_path] = STATE(1868), + [sym_comment] = STATE(1529), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1810), + [aux_sym_cmd_identifier_token38] = ACTIONS(1810), + [aux_sym_cmd_identifier_token39] = ACTIONS(1810), + [aux_sym_cmd_identifier_token40] = ACTIONS(1810), [sym__newline] = ACTIONS(1810), [anon_sym_SEMI] = ACTIONS(1810), [anon_sym_PIPE] = ACTIONS(1810), @@ -212838,41 +218692,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_DOLLAR] = ACTIONS(1808), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1808), [aux_sym_ctrl_match_token1] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_EQ_GT] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_xor] = ACTIONS(1810), - [anon_sym_or] = ACTIONS(1810), - [anon_sym_not_DASHin] = ACTIONS(1810), - [anon_sym_starts_DASHwith] = ACTIONS(1810), - [anon_sym_ends_DASHwith] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1810), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_EQ_TILDE] = ACTIONS(1810), - [anon_sym_BANG_TILDE] = ACTIONS(1810), - [anon_sym_STAR_STAR] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1810), - [anon_sym_SLASH_SLASH] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_bit_DASHshl] = ACTIONS(1810), - [anon_sym_bit_DASHshr] = ACTIONS(1810), - [anon_sym_bit_DASHand] = ACTIONS(1810), - [anon_sym_bit_DASHxor] = ACTIONS(1810), - [anon_sym_bit_DASHor] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT] = ACTIONS(1810), + [aux_sym__val_number_decimal_token1] = ACTIONS(1808), + [aux_sym__val_number_decimal_token2] = ACTIONS(1810), + [aux_sym__val_number_decimal_token3] = ACTIONS(1810), + [aux_sym__val_number_decimal_token4] = ACTIONS(1810), + [aux_sym__val_number_token1] = ACTIONS(1810), + [aux_sym__val_number_token2] = ACTIONS(1810), + [aux_sym__val_number_token3] = ACTIONS(1810), + [anon_sym_0b] = ACTIONS(1808), + [anon_sym_0o] = ACTIONS(1808), + [anon_sym_0x] = ACTIONS(1808), + [sym_val_date] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym__str_single_quotes] = ACTIONS(1810), + [sym__str_back_ticks] = ACTIONS(1810), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), [anon_sym_err_GT] = ACTIONS(1808), [anon_sym_out_GT] = ACTIONS(1808), [anon_sym_e_GT] = ACTIONS(1808), @@ -212889,151 +218734,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(3), - }, - [1524] = { - [sym_cell_path] = STATE(1784), - [sym_path] = STATE(1694), - [sym_comment] = STATE(1524), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1814), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_err_GT_PIPE] = ACTIONS(1814), - [anon_sym_out_GT_PIPE] = ACTIONS(1814), - [anon_sym_e_GT_PIPE] = ACTIONS(1814), - [anon_sym_o_GT_PIPE] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_in] = ACTIONS(1814), - [anon_sym_if] = ACTIONS(1814), - [aux_sym_ctrl_match_token1] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_EQ_GT] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_and] = ACTIONS(1814), - [anon_sym_xor] = ACTIONS(1814), - [anon_sym_or] = ACTIONS(1814), - [anon_sym_not_DASHin] = ACTIONS(1814), - [anon_sym_starts_DASHwith] = ACTIONS(1814), - [anon_sym_ends_DASHwith] = ACTIONS(1814), - [anon_sym_EQ_EQ] = ACTIONS(1814), - [anon_sym_BANG_EQ] = ACTIONS(1814), - [anon_sym_LT2] = ACTIONS(1812), - [anon_sym_LT_EQ] = ACTIONS(1814), - [anon_sym_GT_EQ] = ACTIONS(1814), - [anon_sym_EQ_TILDE] = ACTIONS(1814), - [anon_sym_BANG_TILDE] = ACTIONS(1814), - [anon_sym_STAR_STAR] = ACTIONS(1814), - [anon_sym_PLUS_PLUS] = ACTIONS(1814), - [anon_sym_SLASH] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1814), - [anon_sym_SLASH_SLASH] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_bit_DASHshl] = ACTIONS(1814), - [anon_sym_bit_DASHshr] = ACTIONS(1814), - [anon_sym_bit_DASHand] = ACTIONS(1814), - [anon_sym_bit_DASHxor] = ACTIONS(1814), - [anon_sym_bit_DASHor] = ACTIONS(1814), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1812), - [anon_sym_out_GT] = ACTIONS(1812), - [anon_sym_e_GT] = ACTIONS(1812), - [anon_sym_o_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT] = ACTIONS(1812), - [anon_sym_err_GT_GT] = ACTIONS(1814), - [anon_sym_out_GT_GT] = ACTIONS(1814), - [anon_sym_e_GT_GT] = ACTIONS(1814), - [anon_sym_o_GT_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(3), - }, - [1525] = { - [sym_cell_path] = STATE(1785), - [sym_path] = STATE(1694), - [sym_comment] = STATE(1525), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1818), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_err_GT_PIPE] = ACTIONS(1818), - [anon_sym_out_GT_PIPE] = ACTIONS(1818), - [anon_sym_e_GT_PIPE] = ACTIONS(1818), - [anon_sym_o_GT_PIPE] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [aux_sym_ctrl_match_token1] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_EQ_GT] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_and] = ACTIONS(1818), - [anon_sym_xor] = ACTIONS(1818), - [anon_sym_or] = ACTIONS(1818), - [anon_sym_not_DASHin] = ACTIONS(1818), - [anon_sym_starts_DASHwith] = ACTIONS(1818), - [anon_sym_ends_DASHwith] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_LT2] = ACTIONS(1816), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_EQ_TILDE] = ACTIONS(1818), - [anon_sym_BANG_TILDE] = ACTIONS(1818), - [anon_sym_STAR_STAR] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1818), - [anon_sym_SLASH_SLASH] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_bit_DASHshl] = ACTIONS(1818), - [anon_sym_bit_DASHshr] = ACTIONS(1818), - [anon_sym_bit_DASHand] = ACTIONS(1818), - [anon_sym_bit_DASHxor] = ACTIONS(1818), - [anon_sym_bit_DASHor] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1816), - [anon_sym_out_GT] = ACTIONS(1816), - [anon_sym_e_GT] = ACTIONS(1816), - [anon_sym_o_GT] = ACTIONS(1816), - [anon_sym_err_PLUSout_GT] = ACTIONS(1816), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1816), - [anon_sym_o_PLUSe_GT] = ACTIONS(1816), - [anon_sym_e_PLUSo_GT] = ACTIONS(1816), - [anon_sym_err_GT_GT] = ACTIONS(1818), - [anon_sym_out_GT_GT] = ACTIONS(1818), - [anon_sym_e_GT_GT] = ACTIONS(1818), - [anon_sym_o_GT_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token1] = ACTIONS(1808), + [anon_sym_POUND] = ACTIONS(247), }, - [1526] = { - [sym_cell_path] = STATE(1786), - [sym_path] = STATE(1694), - [sym_comment] = STATE(1526), - [aux_sym_cell_path_repeat1] = STATE(1585), + [1530] = { + [sym_cell_path] = STATE(1979), + [sym_path] = STATE(1868), + [sym_comment] = STATE(1530), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1822), + [aux_sym_cmd_identifier_token38] = ACTIONS(1822), + [aux_sym_cmd_identifier_token39] = ACTIONS(1822), + [aux_sym_cmd_identifier_token40] = ACTIONS(1822), [sym__newline] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(1822), [anon_sym_PIPE] = ACTIONS(1822), @@ -213045,41 +218760,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_RPAREN] = ACTIONS(1822), - [anon_sym_COMMA] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1820), [aux_sym_ctrl_match_token1] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_EQ_GT] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_and] = ACTIONS(1822), - [anon_sym_xor] = ACTIONS(1822), - [anon_sym_or] = ACTIONS(1822), - [anon_sym_not_DASHin] = ACTIONS(1822), - [anon_sym_starts_DASHwith] = ACTIONS(1822), - [anon_sym_ends_DASHwith] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_EQ_TILDE] = ACTIONS(1822), - [anon_sym_BANG_TILDE] = ACTIONS(1822), - [anon_sym_STAR_STAR] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1822), - [anon_sym_SLASH_SLASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_bit_DASHshl] = ACTIONS(1822), - [anon_sym_bit_DASHshr] = ACTIONS(1822), - [anon_sym_bit_DASHand] = ACTIONS(1822), - [anon_sym_bit_DASHxor] = ACTIONS(1822), - [anon_sym_bit_DASHor] = ACTIONS(1822), - [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [anon_sym_0b] = ACTIONS(1820), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), [anon_sym_err_GT] = ACTIONS(1820), [anon_sym_out_GT] = ACTIONS(1820), [anon_sym_e_GT] = ACTIONS(1820), @@ -213096,1929 +218802,1645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), - }, - [1527] = { - [sym_cell_path] = STATE(1804), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1527), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [sym__newline] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_err_GT_PIPE] = ACTIONS(1725), - [anon_sym_out_GT_PIPE] = ACTIONS(1725), - [anon_sym_e_GT_PIPE] = ACTIONS(1725), - [anon_sym_o_GT_PIPE] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1723), - [aux_sym_ctrl_match_token1] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1723), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [anon_sym_DOT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1723), - [anon_sym_0o] = ACTIONS(1723), - [anon_sym_0x] = ACTIONS(1723), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_err_GT] = ACTIONS(1723), - [anon_sym_out_GT] = ACTIONS(1723), - [anon_sym_e_GT] = ACTIONS(1723), - [anon_sym_o_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT] = ACTIONS(1723), - [anon_sym_err_GT_GT] = ACTIONS(1725), - [anon_sym_out_GT_GT] = ACTIONS(1725), - [anon_sym_e_GT_GT] = ACTIONS(1725), - [anon_sym_o_GT_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1725), - [aux_sym_unquoted_token1] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(3), - }, - [1528] = { - [sym_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(914), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(914), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(912), - [aux_sym_ctrl_match_token1] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ] = ACTIONS(912), - [anon_sym_DOT_DOT_LT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(912), - [anon_sym_0o] = ACTIONS(912), - [anon_sym_0x] = ACTIONS(912), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [aux_sym_unquoted_token1] = ACTIONS(912), - [anon_sym_POUND] = ACTIONS(3), - }, - [1529] = { - [sym_cell_path] = STATE(1577), - [sym_path] = STATE(1694), - [sym_comment] = STATE(1529), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(885), - [anon_sym_in] = ACTIONS(885), - [anon_sym_if] = ACTIONS(885), - [aux_sym_ctrl_match_token1] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_EQ_GT] = ACTIONS(885), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_and] = ACTIONS(885), - [anon_sym_xor] = ACTIONS(885), - [anon_sym_or] = ACTIONS(885), - [anon_sym_not_DASHin] = ACTIONS(885), - [anon_sym_starts_DASHwith] = ACTIONS(885), - [anon_sym_ends_DASHwith] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_EQ_TILDE] = ACTIONS(885), - [anon_sym_BANG_TILDE] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(885), - [anon_sym_SLASH_SLASH] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(885), - [anon_sym_bit_DASHshr] = ACTIONS(885), - [anon_sym_bit_DASHand] = ACTIONS(885), - [anon_sym_bit_DASHxor] = ACTIONS(885), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(3), - }, - [1530] = { - [sym_cell_path] = STATE(1818), - [sym_path] = STATE(1726), - [sym_comment] = STATE(1530), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1778), - [aux_sym_cmd_identifier_token40] = ACTIONS(1778), - [sym__newline] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_err_GT_PIPE] = ACTIONS(1778), - [anon_sym_out_GT_PIPE] = ACTIONS(1778), - [anon_sym_e_GT_PIPE] = ACTIONS(1778), - [anon_sym_o_GT_PIPE] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1776), - [aux_sym_ctrl_match_token1] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1776), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_LT] = ACTIONS(1778), - [aux_sym__val_number_decimal_token1] = ACTIONS(1776), - [aux_sym__val_number_decimal_token2] = ACTIONS(1778), - [anon_sym_DOT2] = ACTIONS(1776), - [aux_sym__val_number_decimal_token3] = ACTIONS(1778), - [aux_sym__val_number_token1] = ACTIONS(1778), - [aux_sym__val_number_token2] = ACTIONS(1778), - [aux_sym__val_number_token3] = ACTIONS(1778), - [anon_sym_0b] = ACTIONS(1776), - [anon_sym_0o] = ACTIONS(1776), - [anon_sym_0x] = ACTIONS(1776), - [sym_val_date] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1778), - [sym__str_single_quotes] = ACTIONS(1778), - [sym__str_back_ticks] = ACTIONS(1778), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1778), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1778), - [anon_sym_out_GT_GT] = ACTIONS(1778), - [anon_sym_e_GT_GT] = ACTIONS(1778), - [anon_sym_o_GT_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1778), - [aux_sym_unquoted_token1] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(247), }, [1531] = { [sym_comment] = STATE(1531), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4722), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [anon_sym_null] = ACTIONS(1978), + [aux_sym_cmd_identifier_token38] = ACTIONS(1978), + [aux_sym_cmd_identifier_token39] = ACTIONS(1978), + [aux_sym_cmd_identifier_token40] = ACTIONS(1978), + [sym__newline] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_err_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_GT_PIPE] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1972), + [aux_sym_ctrl_match_token1] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT2] = ACTIONS(4865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1972), + [anon_sym_DOT_DOT_LT] = ACTIONS(1972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4867), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4867), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1978), + [aux_sym__val_number_decimal_token4] = ACTIONS(1978), + [aux_sym__val_number_token1] = ACTIONS(1978), + [aux_sym__val_number_token2] = ACTIONS(1978), + [aux_sym__val_number_token3] = ACTIONS(1978), + [anon_sym_0b] = ACTIONS(1972), + [anon_sym_0o] = ACTIONS(1972), + [anon_sym_0x] = ACTIONS(1972), + [sym_val_date] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym__str_single_quotes] = ACTIONS(1978), + [sym__str_back_ticks] = ACTIONS(1978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1978), + [anon_sym_err_GT] = ACTIONS(1972), + [anon_sym_out_GT] = ACTIONS(1972), + [anon_sym_e_GT] = ACTIONS(1972), + [anon_sym_o_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT] = ACTIONS(1972), + [anon_sym_err_GT_GT] = ACTIONS(1978), + [anon_sym_out_GT_GT] = ACTIONS(1978), + [anon_sym_e_GT_GT] = ACTIONS(1978), + [anon_sym_o_GT_GT] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), + [aux_sym_unquoted_token1] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(247), }, [1532] = { + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1532), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(4742), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1533] = { - [sym_cell_path] = STATE(1819), - [sym_path] = STATE(1726), [sym_comment] = STATE(1533), - [aux_sym_cell_path_repeat1] = STATE(1599), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token38] = ACTIONS(1782), - [aux_sym_cmd_identifier_token39] = ACTIONS(1782), - [aux_sym_cmd_identifier_token40] = ACTIONS(1782), - [sym__newline] = ACTIONS(1782), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_err_GT_PIPE] = ACTIONS(1782), - [anon_sym_out_GT_PIPE] = ACTIONS(1782), - [anon_sym_e_GT_PIPE] = ACTIONS(1782), - [anon_sym_o_GT_PIPE] = ACTIONS(1782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1780), - [aux_sym_ctrl_match_token1] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_LT] = ACTIONS(1782), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [anon_sym_DOT2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1782), - [aux_sym__val_number_token1] = ACTIONS(1782), - [aux_sym__val_number_token2] = ACTIONS(1782), - [aux_sym__val_number_token3] = ACTIONS(1782), - [anon_sym_0b] = ACTIONS(1780), - [anon_sym_0o] = ACTIONS(1780), - [anon_sym_0x] = ACTIONS(1780), - [sym_val_date] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym__str_single_quotes] = ACTIONS(1782), - [sym__str_back_ticks] = ACTIONS(1782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1782), - [anon_sym_err_GT] = ACTIONS(1780), - [anon_sym_out_GT] = ACTIONS(1780), - [anon_sym_e_GT] = ACTIONS(1780), - [anon_sym_o_GT] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT] = ACTIONS(1780), - [anon_sym_err_GT_GT] = ACTIONS(1782), - [anon_sym_out_GT_GT] = ACTIONS(1782), - [anon_sym_e_GT_GT] = ACTIONS(1782), - [anon_sym_o_GT_GT] = ACTIONS(1782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1782), - [aux_sym_unquoted_token1] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1587), + [aux_sym_expr_binary_token1] = ACTIONS(1587), + [aux_sym_expr_binary_token2] = ACTIONS(1587), + [aux_sym_expr_binary_token3] = ACTIONS(1587), + [aux_sym_expr_binary_token4] = ACTIONS(1587), + [aux_sym_expr_binary_token5] = ACTIONS(1587), + [aux_sym_expr_binary_token6] = ACTIONS(1587), + [aux_sym_expr_binary_token7] = ACTIONS(1587), + [aux_sym_expr_binary_token8] = ACTIONS(1587), + [aux_sym_expr_binary_token9] = ACTIONS(1587), + [aux_sym_expr_binary_token10] = ACTIONS(1587), + [aux_sym_expr_binary_token11] = ACTIONS(1587), + [aux_sym_expr_binary_token12] = ACTIONS(1587), + [aux_sym_expr_binary_token13] = ACTIONS(1587), + [aux_sym_expr_binary_token14] = ACTIONS(1587), + [aux_sym_expr_binary_token15] = ACTIONS(1587), + [aux_sym_expr_binary_token16] = ACTIONS(1587), + [aux_sym_expr_binary_token17] = ACTIONS(1587), + [aux_sym_expr_binary_token18] = ACTIONS(1587), + [aux_sym_expr_binary_token19] = ACTIONS(1587), + [aux_sym_expr_binary_token20] = ACTIONS(1587), + [aux_sym_expr_binary_token21] = ACTIONS(1587), + [aux_sym_expr_binary_token22] = ACTIONS(1587), + [aux_sym_expr_binary_token23] = ACTIONS(1587), + [aux_sym_expr_binary_token24] = ACTIONS(1587), + [aux_sym_expr_binary_token25] = ACTIONS(1587), + [aux_sym_expr_binary_token26] = ACTIONS(1587), + [aux_sym_expr_binary_token27] = ACTIONS(1587), + [aux_sym_expr_binary_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), }, [1534] = { + [sym_cell_path] = STATE(2023), + [sym_path] = STATE(1868), [sym_comment] = STATE(1534), - [aux_sym_cmd_identifier_token41] = ACTIONS(1504), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1506), - [aux_sym_ctrl_match_token1] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_EQ_GT] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_and] = ACTIONS(1506), - [anon_sym_xor] = ACTIONS(1506), - [anon_sym_or] = ACTIONS(1506), - [anon_sym_not_DASHin] = ACTIONS(1506), - [anon_sym_starts_DASHwith] = ACTIONS(1506), - [anon_sym_ends_DASHwith] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_TILDE] = ACTIONS(1506), - [anon_sym_BANG_TILDE] = ACTIONS(1506), - [anon_sym_STAR_STAR] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_SLASH_SLASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_bit_DASHshl] = ACTIONS(1506), - [anon_sym_bit_DASHshr] = ACTIONS(1506), - [anon_sym_bit_DASHand] = ACTIONS(1506), - [anon_sym_bit_DASHxor] = ACTIONS(1506), - [anon_sym_bit_DASHor] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [sym_filesize_unit] = ACTIONS(1504), - [sym_duration_unit] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(1745), + [anon_sym_false] = ACTIONS(1745), + [anon_sym_null] = ACTIONS(1745), + [aux_sym_cmd_identifier_token38] = ACTIONS(1745), + [aux_sym_cmd_identifier_token39] = ACTIONS(1745), + [aux_sym_cmd_identifier_token40] = ACTIONS(1745), + [sym__newline] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_PIPE] = ACTIONS(1745), + [anon_sym_err_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_GT_PIPE] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1741), + [aux_sym_ctrl_match_token1] = ACTIONS(1745), + [anon_sym_DOT_DOT] = ACTIONS(1741), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), + [anon_sym_DOT_DOT_LT] = ACTIONS(1745), + [aux_sym__val_number_decimal_token1] = ACTIONS(1741), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1745), + [aux_sym__val_number_decimal_token4] = ACTIONS(1745), + [aux_sym__val_number_token1] = ACTIONS(1745), + [aux_sym__val_number_token2] = ACTIONS(1745), + [aux_sym__val_number_token3] = ACTIONS(1745), + [anon_sym_0b] = ACTIONS(1741), + [anon_sym_0o] = ACTIONS(1741), + [anon_sym_0x] = ACTIONS(1741), + [sym_val_date] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym__str_single_quotes] = ACTIONS(1745), + [sym__str_back_ticks] = ACTIONS(1745), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), + [anon_sym_err_GT] = ACTIONS(1741), + [anon_sym_out_GT] = ACTIONS(1741), + [anon_sym_e_GT] = ACTIONS(1741), + [anon_sym_o_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT] = ACTIONS(1741), + [anon_sym_err_GT_GT] = ACTIONS(1745), + [anon_sym_out_GT_GT] = ACTIONS(1745), + [anon_sym_e_GT_GT] = ACTIONS(1745), + [anon_sym_o_GT_GT] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [aux_sym_unquoted_token1] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), }, [1535] = { - [sym_cell_path] = STATE(2043), - [sym_path] = STATE(1840), + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1535), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1746), - [aux_sym_cmd_identifier_token38] = ACTIONS(1746), - [aux_sym_cmd_identifier_token39] = ACTIONS(1746), - [aux_sym_cmd_identifier_token40] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1744), - [aux_sym_ctrl_match_token1] = ACTIONS(1746), - [anon_sym_DOT_DOT] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1746), - [anon_sym_DOT_DOT_LT] = ACTIONS(1746), - [aux_sym__val_number_decimal_token1] = ACTIONS(1744), - [aux_sym__val_number_decimal_token2] = ACTIONS(1746), - [anon_sym_DOT2] = ACTIONS(1744), - [aux_sym__val_number_decimal_token3] = ACTIONS(1746), - [aux_sym__val_number_token1] = ACTIONS(1746), - [aux_sym__val_number_token2] = ACTIONS(1746), - [aux_sym__val_number_token3] = ACTIONS(1746), - [anon_sym_0b] = ACTIONS(1744), - [anon_sym_0o] = ACTIONS(1744), - [anon_sym_0x] = ACTIONS(1744), - [sym_val_date] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [sym__str_single_quotes] = ACTIONS(1746), - [sym__str_back_ticks] = ACTIONS(1746), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1746), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1746), - [anon_sym_err_GT] = ACTIONS(1744), - [anon_sym_out_GT] = ACTIONS(1744), - [anon_sym_e_GT] = ACTIONS(1744), - [anon_sym_o_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT] = ACTIONS(1744), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [aux_sym_unquoted_token1] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1536] = { + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1536), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [anon_sym_null] = ACTIONS(938), - [aux_sym_cmd_identifier_token38] = ACTIONS(938), - [aux_sym_cmd_identifier_token39] = ACTIONS(938), - [aux_sym_cmd_identifier_token40] = ACTIONS(938), - [sym__newline] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_err_GT_PIPE] = ACTIONS(938), - [anon_sym_out_GT_PIPE] = ACTIONS(938), - [anon_sym_e_GT_PIPE] = ACTIONS(938), - [anon_sym_o_GT_PIPE] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [aux_sym_ctrl_match_token1] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT2] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [anon_sym_err_GT_GT] = ACTIONS(938), - [anon_sym_out_GT_GT] = ACTIONS(938), - [anon_sym_e_GT_GT] = ACTIONS(938), - [anon_sym_o_GT_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(938), - [aux_sym_unquoted_token1] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1537] = { - [sym_cell_path] = STATE(1989), - [sym_path] = STATE(1840), + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1537), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token38] = ACTIONS(1782), - [aux_sym_cmd_identifier_token39] = ACTIONS(1782), - [aux_sym_cmd_identifier_token40] = ACTIONS(1782), - [sym__newline] = ACTIONS(1782), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_err_GT_PIPE] = ACTIONS(1782), - [anon_sym_out_GT_PIPE] = ACTIONS(1782), - [anon_sym_e_GT_PIPE] = ACTIONS(1782), - [anon_sym_o_GT_PIPE] = ACTIONS(1782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1780), - [aux_sym_ctrl_match_token1] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1782), - [anon_sym_DOT_DOT_LT] = ACTIONS(1782), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [anon_sym_DOT2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1782), - [aux_sym__val_number_token1] = ACTIONS(1782), - [aux_sym__val_number_token2] = ACTIONS(1782), - [aux_sym__val_number_token3] = ACTIONS(1782), - [anon_sym_0b] = ACTIONS(1780), - [anon_sym_0o] = ACTIONS(1780), - [anon_sym_0x] = ACTIONS(1780), - [sym_val_date] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym__str_single_quotes] = ACTIONS(1782), - [sym__str_back_ticks] = ACTIONS(1782), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1782), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1782), - [anon_sym_err_GT] = ACTIONS(1780), - [anon_sym_out_GT] = ACTIONS(1780), - [anon_sym_e_GT] = ACTIONS(1780), - [anon_sym_o_GT] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT] = ACTIONS(1780), - [anon_sym_err_GT_GT] = ACTIONS(1782), - [anon_sym_out_GT_GT] = ACTIONS(1782), - [anon_sym_e_GT_GT] = ACTIONS(1782), - [anon_sym_o_GT_GT] = ACTIONS(1782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1782), - [aux_sym_unquoted_token1] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1538] = { - [sym_cell_path] = STATE(1990), - [sym_path] = STATE(1840), + [sym_cell_path] = STATE(2037), + [sym_path] = STATE(1868), [sym_comment] = STATE(1538), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1784), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1784), - [aux_sym_ctrl_match_token1] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1784), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [anon_sym_DOT2] = ACTIONS(1784), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_0b] = ACTIONS(1784), - [anon_sym_0o] = ACTIONS(1784), - [anon_sym_0x] = ACTIONS(1784), - [sym_val_date] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_err_GT] = ACTIONS(1784), - [anon_sym_out_GT] = ACTIONS(1784), - [anon_sym_e_GT] = ACTIONS(1784), - [anon_sym_o_GT] = ACTIONS(1784), - [anon_sym_err_PLUSout_GT] = ACTIONS(1784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1784), - [anon_sym_o_PLUSe_GT] = ACTIONS(1784), - [anon_sym_e_PLUSo_GT] = ACTIONS(1784), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token1] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1772), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [sym__newline] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_err_GT_PIPE] = ACTIONS(1772), + [anon_sym_out_GT_PIPE] = ACTIONS(1772), + [anon_sym_e_GT_PIPE] = ACTIONS(1772), + [anon_sym_o_GT_PIPE] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1770), + [aux_sym_ctrl_match_token1] = ACTIONS(1772), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1770), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [anon_sym_0b] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1770), + [anon_sym_0x] = ACTIONS(1770), + [sym_val_date] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1772), + [anon_sym_err_GT] = ACTIONS(1770), + [anon_sym_out_GT] = ACTIONS(1770), + [anon_sym_e_GT] = ACTIONS(1770), + [anon_sym_o_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT] = ACTIONS(1770), + [anon_sym_err_GT_GT] = ACTIONS(1772), + [anon_sym_out_GT_GT] = ACTIONS(1772), + [anon_sym_e_GT_GT] = ACTIONS(1772), + [anon_sym_o_GT_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1772), + [aux_sym_unquoted_token1] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(247), }, [1539] = { [sym_comment] = STATE(1539), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(950), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [aux_sym_ctrl_match_token1] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT2] = ACTIONS(4817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4819), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4819), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [aux_sym_unquoted_token1] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2072), + [anon_sym_false] = ACTIONS(2072), + [anon_sym_null] = ACTIONS(2072), + [aux_sym_cmd_identifier_token38] = ACTIONS(2072), + [aux_sym_cmd_identifier_token39] = ACTIONS(2072), + [aux_sym_cmd_identifier_token40] = ACTIONS(2072), + [sym__newline] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_err_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_GT_PIPE] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_RPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2066), + [aux_sym_ctrl_match_token1] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2066), + [anon_sym_DOT_DOT2] = ACTIONS(4869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2066), + [anon_sym_DOT_DOT_LT] = ACTIONS(2066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4871), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4871), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [anon_sym_0b] = ACTIONS(2066), + [anon_sym_0o] = ACTIONS(2066), + [anon_sym_0x] = ACTIONS(2066), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2072), + [anon_sym_err_GT] = ACTIONS(2066), + [anon_sym_out_GT] = ACTIONS(2066), + [anon_sym_e_GT] = ACTIONS(2066), + [anon_sym_o_GT] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT] = ACTIONS(2066), + [anon_sym_err_GT_GT] = ACTIONS(2072), + [anon_sym_out_GT_GT] = ACTIONS(2072), + [anon_sym_e_GT_GT] = ACTIONS(2072), + [anon_sym_o_GT_GT] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [aux_sym_unquoted_token1] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(247), }, [1540] = { [sym_comment] = STATE(1540), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [sym__newline] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_PIPE] = ACTIONS(1945), - [anon_sym_err_GT_PIPE] = ACTIONS(1945), - [anon_sym_out_GT_PIPE] = ACTIONS(1945), - [anon_sym_e_GT_PIPE] = ACTIONS(1945), - [anon_sym_o_GT_PIPE] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1939), - [anon_sym_DASH_DASH] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1939), - [aux_sym_ctrl_match_token1] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [anon_sym_LPAREN2] = ACTIONS(1941), - [anon_sym_DOT] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1939), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [anon_sym_DOT2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [anon_sym_0b] = ACTIONS(1939), - [anon_sym_0o] = ACTIONS(1939), - [anon_sym_0x] = ACTIONS(1939), - [sym_val_date] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1945), - [anon_sym_err_GT] = ACTIONS(1939), - [anon_sym_out_GT] = ACTIONS(1939), - [anon_sym_e_GT] = ACTIONS(1939), - [anon_sym_o_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT] = ACTIONS(1939), - [anon_sym_err_GT_GT] = ACTIONS(1945), - [anon_sym_out_GT_GT] = ACTIONS(1945), - [anon_sym_e_GT_GT] = ACTIONS(1945), - [anon_sym_o_GT_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1945), - [aux_sym_unquoted_token1] = ACTIONS(1939), - [aux_sym_unquoted_token2] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(3173), + [anon_sym_err_GT_PIPE] = ACTIONS(3173), + [anon_sym_out_GT_PIPE] = ACTIONS(3173), + [anon_sym_e_GT_PIPE] = ACTIONS(3173), + [anon_sym_o_GT_PIPE] = ACTIONS(3173), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3173), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3173), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3173), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3173), + [anon_sym_RPAREN] = ACTIONS(3173), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3175), + [aux_sym_ctrl_match_token1] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [aux_sym_expr_binary_token1] = ACTIONS(3177), + [aux_sym_expr_binary_token2] = ACTIONS(3177), + [aux_sym_expr_binary_token3] = ACTIONS(3177), + [aux_sym_expr_binary_token4] = ACTIONS(3177), + [aux_sym_expr_binary_token5] = ACTIONS(3177), + [aux_sym_expr_binary_token6] = ACTIONS(3177), + [aux_sym_expr_binary_token7] = ACTIONS(3177), + [aux_sym_expr_binary_token8] = ACTIONS(3177), + [aux_sym_expr_binary_token9] = ACTIONS(3177), + [aux_sym_expr_binary_token10] = ACTIONS(3177), + [aux_sym_expr_binary_token11] = ACTIONS(3177), + [aux_sym_expr_binary_token12] = ACTIONS(3177), + [aux_sym_expr_binary_token13] = ACTIONS(3177), + [aux_sym_expr_binary_token14] = ACTIONS(3177), + [aux_sym_expr_binary_token15] = ACTIONS(3177), + [aux_sym_expr_binary_token16] = ACTIONS(3177), + [aux_sym_expr_binary_token17] = ACTIONS(3177), + [aux_sym_expr_binary_token18] = ACTIONS(3177), + [aux_sym_expr_binary_token19] = ACTIONS(3177), + [aux_sym_expr_binary_token20] = ACTIONS(3177), + [aux_sym_expr_binary_token21] = ACTIONS(3177), + [aux_sym_expr_binary_token22] = ACTIONS(3177), + [aux_sym_expr_binary_token23] = ACTIONS(3177), + [aux_sym_expr_binary_token24] = ACTIONS(3177), + [aux_sym_expr_binary_token25] = ACTIONS(3177), + [aux_sym_expr_binary_token26] = ACTIONS(3177), + [aux_sym_expr_binary_token27] = ACTIONS(3177), + [aux_sym_expr_binary_token28] = ACTIONS(3177), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(3175), + [anon_sym_out_GT] = ACTIONS(3175), + [anon_sym_e_GT] = ACTIONS(3175), + [anon_sym_o_GT] = ACTIONS(3175), + [anon_sym_err_PLUSout_GT] = ACTIONS(3175), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3175), + [anon_sym_o_PLUSe_GT] = ACTIONS(3175), + [anon_sym_e_PLUSo_GT] = ACTIONS(3175), + [anon_sym_err_GT_GT] = ACTIONS(3173), + [anon_sym_out_GT_GT] = ACTIONS(3173), + [anon_sym_e_GT_GT] = ACTIONS(3173), + [anon_sym_o_GT_GT] = ACTIONS(3173), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3173), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3173), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3173), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3173), + [anon_sym_POUND] = ACTIONS(247), }, [1541] = { [sym_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4821), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [aux_sym_ctrl_match_token1] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [aux_sym_expr_binary_token1] = ACTIONS(1008), + [aux_sym_expr_binary_token2] = ACTIONS(1008), + [aux_sym_expr_binary_token3] = ACTIONS(1008), + [aux_sym_expr_binary_token4] = ACTIONS(1008), + [aux_sym_expr_binary_token5] = ACTIONS(1008), + [aux_sym_expr_binary_token6] = ACTIONS(1008), + [aux_sym_expr_binary_token7] = ACTIONS(1008), + [aux_sym_expr_binary_token8] = ACTIONS(1008), + [aux_sym_expr_binary_token9] = ACTIONS(1008), + [aux_sym_expr_binary_token10] = ACTIONS(1008), + [aux_sym_expr_binary_token11] = ACTIONS(1008), + [aux_sym_expr_binary_token12] = ACTIONS(1008), + [aux_sym_expr_binary_token13] = ACTIONS(1008), + [aux_sym_expr_binary_token14] = ACTIONS(1008), + [aux_sym_expr_binary_token15] = ACTIONS(1008), + [aux_sym_expr_binary_token16] = ACTIONS(1008), + [aux_sym_expr_binary_token17] = ACTIONS(1008), + [aux_sym_expr_binary_token18] = ACTIONS(1008), + [aux_sym_expr_binary_token19] = ACTIONS(1008), + [aux_sym_expr_binary_token20] = ACTIONS(1008), + [aux_sym_expr_binary_token21] = ACTIONS(1008), + [aux_sym_expr_binary_token22] = ACTIONS(1008), + [aux_sym_expr_binary_token23] = ACTIONS(1008), + [aux_sym_expr_binary_token24] = ACTIONS(1008), + [aux_sym_expr_binary_token25] = ACTIONS(1008), + [aux_sym_expr_binary_token26] = ACTIONS(1008), + [aux_sym_expr_binary_token27] = ACTIONS(1008), + [aux_sym_expr_binary_token28] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), }, [1542] = { [sym_comment] = STATE(1542), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_null] = ACTIONS(1953), - [aux_sym_cmd_identifier_token38] = ACTIONS(1953), - [aux_sym_cmd_identifier_token39] = ACTIONS(1953), - [aux_sym_cmd_identifier_token40] = ACTIONS(1953), - [sym__newline] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_err_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_GT_PIPE] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1947), - [aux_sym_ctrl_match_token1] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_DOT_DOT2] = ACTIONS(4823), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), - [anon_sym_DOT_DOT_LT] = ACTIONS(1947), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4825), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4825), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1953), - [anon_sym_DOT2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1953), - [aux_sym__val_number_token1] = ACTIONS(1953), - [aux_sym__val_number_token2] = ACTIONS(1953), - [aux_sym__val_number_token3] = ACTIONS(1953), - [anon_sym_0b] = ACTIONS(1947), - [anon_sym_0o] = ACTIONS(1947), - [anon_sym_0x] = ACTIONS(1947), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym__str_single_quotes] = ACTIONS(1953), - [sym__str_back_ticks] = ACTIONS(1953), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1953), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1953), - [anon_sym_err_GT] = ACTIONS(1947), - [anon_sym_out_GT] = ACTIONS(1947), - [anon_sym_e_GT] = ACTIONS(1947), - [anon_sym_o_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT] = ACTIONS(1947), - [anon_sym_err_GT_GT] = ACTIONS(1953), - [anon_sym_out_GT_GT] = ACTIONS(1953), - [anon_sym_e_GT_GT] = ACTIONS(1953), - [anon_sym_o_GT_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), - [aux_sym_unquoted_token1] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1008), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [aux_sym_ctrl_match_token1] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(4873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4875), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4875), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), }, [1543] = { [sym_comment] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(4827), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4821), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_null] = ACTIONS(4877), + [aux_sym_cmd_identifier_token38] = ACTIONS(4877), + [aux_sym_cmd_identifier_token39] = ACTIONS(4877), + [aux_sym_cmd_identifier_token40] = ACTIONS(4877), + [sym__newline] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4877), + [anon_sym_err_GT_PIPE] = ACTIONS(4877), + [anon_sym_out_GT_PIPE] = ACTIONS(4877), + [anon_sym_e_GT_PIPE] = ACTIONS(4877), + [anon_sym_o_GT_PIPE] = ACTIONS(4877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4877), + [anon_sym_LPAREN] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4879), + [aux_sym_ctrl_match_token1] = ACTIONS(4877), + [anon_sym_RBRACE] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_DOT_DOT2] = ACTIONS(4873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4879), + [anon_sym_DOT_DOT_LT] = ACTIONS(4879), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4875), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4875), + [aux_sym__val_number_decimal_token1] = ACTIONS(4879), + [aux_sym__val_number_decimal_token2] = ACTIONS(4877), + [aux_sym__val_number_decimal_token3] = ACTIONS(4877), + [aux_sym__val_number_decimal_token4] = ACTIONS(4877), + [aux_sym__val_number_token1] = ACTIONS(4877), + [aux_sym__val_number_token2] = ACTIONS(4877), + [aux_sym__val_number_token3] = ACTIONS(4877), + [anon_sym_0b] = ACTIONS(4879), + [anon_sym_0o] = ACTIONS(4879), + [anon_sym_0x] = ACTIONS(4879), + [sym_val_date] = ACTIONS(4877), + [anon_sym_DQUOTE] = ACTIONS(4877), + [sym__str_single_quotes] = ACTIONS(4877), + [sym__str_back_ticks] = ACTIONS(4877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4877), + [anon_sym_err_GT] = ACTIONS(4879), + [anon_sym_out_GT] = ACTIONS(4879), + [anon_sym_e_GT] = ACTIONS(4879), + [anon_sym_o_GT] = ACTIONS(4879), + [anon_sym_err_PLUSout_GT] = ACTIONS(4879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4879), + [anon_sym_o_PLUSe_GT] = ACTIONS(4879), + [anon_sym_e_PLUSo_GT] = ACTIONS(4879), + [anon_sym_err_GT_GT] = ACTIONS(4877), + [anon_sym_out_GT_GT] = ACTIONS(4877), + [anon_sym_e_GT_GT] = ACTIONS(4877), + [anon_sym_o_GT_GT] = ACTIONS(4877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4877), + [aux_sym_unquoted_token1] = ACTIONS(4879), + [anon_sym_POUND] = ACTIONS(247), }, [1544] = { - [sym_cell_path] = STATE(1552), - [sym_path] = STATE(1694), + [sym_cell_path] = STATE(2034), + [sym_path] = STATE(1868), [sym_comment] = STATE(1544), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_err_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_GT_PIPE] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), - [anon_sym_RPAREN] = ACTIONS(1549), - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [aux_sym_ctrl_match_token1] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_EQ_GT] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_and] = ACTIONS(1549), - [anon_sym_xor] = ACTIONS(1549), - [anon_sym_or] = ACTIONS(1549), - [anon_sym_not_DASHin] = ACTIONS(1549), - [anon_sym_starts_DASHwith] = ACTIONS(1549), - [anon_sym_ends_DASHwith] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1549), - [anon_sym_LT2] = ACTIONS(1545), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_EQ_TILDE] = ACTIONS(1549), - [anon_sym_BANG_TILDE] = ACTIONS(1549), - [anon_sym_STAR_STAR] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_mod] = ACTIONS(1549), - [anon_sym_SLASH_SLASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_bit_DASHshl] = ACTIONS(1549), - [anon_sym_bit_DASHshr] = ACTIONS(1549), - [anon_sym_bit_DASHand] = ACTIONS(1549), - [anon_sym_bit_DASHxor] = ACTIONS(1549), - [anon_sym_bit_DASHor] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1545), - [anon_sym_out_GT] = ACTIONS(1545), - [anon_sym_e_GT] = ACTIONS(1545), - [anon_sym_o_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT] = ACTIONS(1545), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [sym__newline] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_err_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_GT_PIPE] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1831), + [aux_sym_ctrl_match_token1] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), + [anon_sym_DOT_DOT_LT] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1831), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [anon_sym_0b] = ACTIONS(1831), + [anon_sym_0o] = ACTIONS(1831), + [anon_sym_0x] = ACTIONS(1831), + [sym_val_date] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1833), + [sym__str_single_quotes] = ACTIONS(1833), + [sym__str_back_ticks] = ACTIONS(1833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), + [anon_sym_err_GT] = ACTIONS(1831), + [anon_sym_out_GT] = ACTIONS(1831), + [anon_sym_e_GT] = ACTIONS(1831), + [anon_sym_o_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT] = ACTIONS(1831), + [anon_sym_err_GT_GT] = ACTIONS(1833), + [anon_sym_out_GT_GT] = ACTIONS(1833), + [anon_sym_e_GT_GT] = ACTIONS(1833), + [anon_sym_o_GT_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), + [aux_sym_unquoted_token1] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(247), }, [1545] = { + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1545), - [sym__newline] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_err_GT_PIPE] = ACTIONS(918), - [anon_sym_out_GT_PIPE] = ACTIONS(918), - [anon_sym_e_GT_PIPE] = ACTIONS(918), - [anon_sym_o_GT_PIPE] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_in] = ACTIONS(918), - [aux_sym_ctrl_match_token1] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_and] = ACTIONS(918), - [anon_sym_xor] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_not_DASHin] = ACTIONS(918), - [anon_sym_starts_DASHwith] = ACTIONS(918), - [anon_sym_ends_DASHwith] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT2] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_TILDE] = ACTIONS(918), - [anon_sym_BANG_TILDE] = ACTIONS(918), - [anon_sym_STAR_STAR] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(916), - [anon_sym_mod] = ACTIONS(918), - [anon_sym_SLASH_SLASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(918), - [anon_sym_bit_DASHshr] = ACTIONS(918), - [anon_sym_bit_DASHand] = ACTIONS(918), - [anon_sym_bit_DASHxor] = ACTIONS(918), - [anon_sym_bit_DASHor] = ACTIONS(918), - [anon_sym_DOT_DOT2] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), - [anon_sym_DOT_DOT_LT2] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1546] = { + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(1546), - [sym__newline] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_err_GT_PIPE] = ACTIONS(922), - [anon_sym_out_GT_PIPE] = ACTIONS(922), - [anon_sym_e_GT_PIPE] = ACTIONS(922), - [anon_sym_o_GT_PIPE] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_in] = ACTIONS(922), - [aux_sym_ctrl_match_token1] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_and] = ACTIONS(922), - [anon_sym_xor] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_not_DASHin] = ACTIONS(922), - [anon_sym_starts_DASHwith] = ACTIONS(922), - [anon_sym_ends_DASHwith] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_BANG_TILDE] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(922), - [anon_sym_SLASH_SLASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(922), - [anon_sym_bit_DASHshr] = ACTIONS(922), - [anon_sym_bit_DASHand] = ACTIONS(922), - [anon_sym_bit_DASHxor] = ACTIONS(922), - [anon_sym_bit_DASHor] = ACTIONS(922), - [anon_sym_DOT_DOT2] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(922), - [anon_sym_DOT_DOT_LT2] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_PIPE] = ACTIONS(3205), + [anon_sym_err_GT_PIPE] = ACTIONS(3205), + [anon_sym_out_GT_PIPE] = ACTIONS(3205), + [anon_sym_e_GT_PIPE] = ACTIONS(3205), + [anon_sym_o_GT_PIPE] = ACTIONS(3205), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3205), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3205), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3205), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3205), + [anon_sym_RPAREN] = ACTIONS(3205), + [anon_sym_COMMA] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3207), + [aux_sym_ctrl_match_token1] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_EQ_GT] = ACTIONS(3205), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3205), + [aux_sym_expr_binary_token2] = ACTIONS(3205), + [aux_sym_expr_binary_token3] = ACTIONS(3205), + [aux_sym_expr_binary_token4] = ACTIONS(3205), + [aux_sym_expr_binary_token5] = ACTIONS(3205), + [aux_sym_expr_binary_token6] = ACTIONS(3205), + [aux_sym_expr_binary_token7] = ACTIONS(3205), + [aux_sym_expr_binary_token8] = ACTIONS(3205), + [aux_sym_expr_binary_token9] = ACTIONS(3205), + [aux_sym_expr_binary_token10] = ACTIONS(3205), + [aux_sym_expr_binary_token11] = ACTIONS(3205), + [aux_sym_expr_binary_token12] = ACTIONS(3205), + [aux_sym_expr_binary_token13] = ACTIONS(3205), + [aux_sym_expr_binary_token14] = ACTIONS(3205), + [aux_sym_expr_binary_token15] = ACTIONS(3205), + [aux_sym_expr_binary_token16] = ACTIONS(3205), + [aux_sym_expr_binary_token17] = ACTIONS(3205), + [aux_sym_expr_binary_token18] = ACTIONS(3205), + [aux_sym_expr_binary_token19] = ACTIONS(3205), + [aux_sym_expr_binary_token20] = ACTIONS(3205), + [aux_sym_expr_binary_token21] = ACTIONS(3205), + [aux_sym_expr_binary_token22] = ACTIONS(3205), + [aux_sym_expr_binary_token23] = ACTIONS(3205), + [aux_sym_expr_binary_token24] = ACTIONS(3205), + [aux_sym_expr_binary_token25] = ACTIONS(3205), + [aux_sym_expr_binary_token26] = ACTIONS(3205), + [aux_sym_expr_binary_token27] = ACTIONS(3205), + [aux_sym_expr_binary_token28] = ACTIONS(3205), + [anon_sym_err_GT] = ACTIONS(3207), + [anon_sym_out_GT] = ACTIONS(3207), + [anon_sym_e_GT] = ACTIONS(3207), + [anon_sym_o_GT] = ACTIONS(3207), + [anon_sym_err_PLUSout_GT] = ACTIONS(3207), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3207), + [anon_sym_o_PLUSe_GT] = ACTIONS(3207), + [anon_sym_e_PLUSo_GT] = ACTIONS(3207), + [anon_sym_err_GT_GT] = ACTIONS(3205), + [anon_sym_out_GT_GT] = ACTIONS(3205), + [anon_sym_e_GT_GT] = ACTIONS(3205), + [anon_sym_o_GT_GT] = ACTIONS(3205), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3205), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3205), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3205), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3205), + [anon_sym_POUND] = ACTIONS(247), }, [1547] = { - [sym_cell_path] = STATE(1978), - [sym_path] = STATE(1840), + [sym_cell_path] = STATE(2071), + [sym_path] = STATE(1868), [sym_comment] = STATE(1547), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [anon_sym_null] = ACTIONS(1735), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1735), - [aux_sym_cmd_identifier_token40] = ACTIONS(1735), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1733), - [aux_sym_ctrl_match_token1] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [anon_sym_DOT2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [anon_sym_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_null] = ACTIONS(1837), + [aux_sym_cmd_identifier_token38] = ACTIONS(1837), + [aux_sym_cmd_identifier_token39] = ACTIONS(1837), + [aux_sym_cmd_identifier_token40] = ACTIONS(1837), + [sym__newline] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_err_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_GT_PIPE] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1835), + [aux_sym_ctrl_match_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_LT] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [anon_sym_0b] = ACTIONS(1835), + [anon_sym_0o] = ACTIONS(1835), + [anon_sym_0x] = ACTIONS(1835), + [sym_val_date] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), + [anon_sym_err_GT] = ACTIONS(1835), + [anon_sym_out_GT] = ACTIONS(1835), + [anon_sym_e_GT] = ACTIONS(1835), + [anon_sym_o_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT] = ACTIONS(1835), + [anon_sym_err_GT_GT] = ACTIONS(1837), + [anon_sym_out_GT_GT] = ACTIONS(1837), + [anon_sym_e_GT_GT] = ACTIONS(1837), + [anon_sym_o_GT_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), + [aux_sym_unquoted_token1] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(247), }, [1548] = { [sym_comment] = STATE(1548), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [aux_sym_ctrl_match_token1] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(912), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_err_GT_PIPE] = ACTIONS(972), + [anon_sym_out_GT_PIPE] = ACTIONS(972), + [anon_sym_e_GT_PIPE] = ACTIONS(972), + [anon_sym_o_GT_PIPE] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(970), + [aux_sym_ctrl_match_token1] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_EQ_GT] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(4881), + [aux_sym_expr_binary_token1] = ACTIONS(972), + [aux_sym_expr_binary_token2] = ACTIONS(972), + [aux_sym_expr_binary_token3] = ACTIONS(972), + [aux_sym_expr_binary_token4] = ACTIONS(972), + [aux_sym_expr_binary_token5] = ACTIONS(972), + [aux_sym_expr_binary_token6] = ACTIONS(972), + [aux_sym_expr_binary_token7] = ACTIONS(972), + [aux_sym_expr_binary_token8] = ACTIONS(972), + [aux_sym_expr_binary_token9] = ACTIONS(972), + [aux_sym_expr_binary_token10] = ACTIONS(972), + [aux_sym_expr_binary_token11] = ACTIONS(972), + [aux_sym_expr_binary_token12] = ACTIONS(972), + [aux_sym_expr_binary_token13] = ACTIONS(972), + [aux_sym_expr_binary_token14] = ACTIONS(972), + [aux_sym_expr_binary_token15] = ACTIONS(972), + [aux_sym_expr_binary_token16] = ACTIONS(972), + [aux_sym_expr_binary_token17] = ACTIONS(972), + [aux_sym_expr_binary_token18] = ACTIONS(972), + [aux_sym_expr_binary_token19] = ACTIONS(972), + [aux_sym_expr_binary_token20] = ACTIONS(972), + [aux_sym_expr_binary_token21] = ACTIONS(972), + [aux_sym_expr_binary_token22] = ACTIONS(972), + [aux_sym_expr_binary_token23] = ACTIONS(972), + [aux_sym_expr_binary_token24] = ACTIONS(972), + [aux_sym_expr_binary_token25] = ACTIONS(972), + [aux_sym_expr_binary_token26] = ACTIONS(972), + [aux_sym_expr_binary_token27] = ACTIONS(972), + [aux_sym_expr_binary_token28] = ACTIONS(972), + [anon_sym_DOT] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(247), }, [1549] = { + [sym_cell_path] = STATE(1961), + [sym_path] = STATE(1868), [sym_comment] = STATE(1549), - [aux_sym_cmd_identifier_token41] = ACTIONS(1398), - [sym__newline] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4813), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [aux_sym_record_entry_token1] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [sym__newline] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_err_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_GT_PIPE] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1839), + [aux_sym_ctrl_match_token1] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), + [anon_sym_err_GT] = ACTIONS(1839), + [anon_sym_out_GT] = ACTIONS(1839), + [anon_sym_e_GT] = ACTIONS(1839), + [anon_sym_o_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT] = ACTIONS(1839), + [anon_sym_err_GT_GT] = ACTIONS(1841), + [anon_sym_out_GT_GT] = ACTIONS(1841), + [anon_sym_e_GT_GT] = ACTIONS(1841), + [anon_sym_o_GT_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), + [aux_sym_unquoted_token1] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(247), }, [1550] = { - [sym_cell_path] = STATE(1982), - [sym_path] = STATE(1840), [sym_comment] = STATE(1550), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), - [aux_sym_cmd_identifier_token38] = ACTIONS(1754), - [aux_sym_cmd_identifier_token39] = ACTIONS(1754), - [aux_sym_cmd_identifier_token40] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1752), - [aux_sym_ctrl_match_token1] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_LT] = ACTIONS(1754), - [aux_sym__val_number_decimal_token1] = ACTIONS(1752), - [aux_sym__val_number_decimal_token2] = ACTIONS(1754), - [anon_sym_DOT2] = ACTIONS(1752), - [aux_sym__val_number_decimal_token3] = ACTIONS(1754), - [aux_sym__val_number_token1] = ACTIONS(1754), - [aux_sym__val_number_token2] = ACTIONS(1754), - [aux_sym__val_number_token3] = ACTIONS(1754), - [anon_sym_0b] = ACTIONS(1752), - [anon_sym_0o] = ACTIONS(1752), - [anon_sym_0x] = ACTIONS(1752), - [sym_val_date] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [sym__str_single_quotes] = ACTIONS(1754), - [sym__str_back_ticks] = ACTIONS(1754), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1754), - [anon_sym_err_GT] = ACTIONS(1752), - [anon_sym_out_GT] = ACTIONS(1752), - [anon_sym_e_GT] = ACTIONS(1752), - [anon_sym_o_GT] = ACTIONS(1752), - [anon_sym_err_PLUSout_GT] = ACTIONS(1752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), - [anon_sym_o_PLUSe_GT] = ACTIONS(1752), - [anon_sym_e_PLUSo_GT] = ACTIONS(1752), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [aux_sym_unquoted_token1] = ACTIONS(1752), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(4883), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [aux_sym_unquoted_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [1551] = { - [sym_cell_path] = STATE(1959), - [sym_path] = STATE(1840), + [sym_cell_path] = STATE(2001), + [sym_path] = STATE(1868), [sym_comment] = STATE(1551), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [sym__newline] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_err_GT_PIPE] = ACTIONS(1725), - [anon_sym_out_GT_PIPE] = ACTIONS(1725), - [anon_sym_e_GT_PIPE] = ACTIONS(1725), - [anon_sym_o_GT_PIPE] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1723), - [aux_sym_ctrl_match_token1] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1723), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [anon_sym_DOT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1723), - [anon_sym_0o] = ACTIONS(1723), - [anon_sym_0x] = ACTIONS(1723), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_err_GT] = ACTIONS(1723), - [anon_sym_out_GT] = ACTIONS(1723), - [anon_sym_e_GT] = ACTIONS(1723), - [anon_sym_o_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT] = ACTIONS(1723), - [anon_sym_err_GT_GT] = ACTIONS(1725), - [anon_sym_out_GT_GT] = ACTIONS(1725), - [anon_sym_e_GT_GT] = ACTIONS(1725), - [anon_sym_o_GT_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1725), - [aux_sym_unquoted_token1] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1877), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [sym__newline] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_err_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_GT_PIPE] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1875), + [aux_sym_ctrl_match_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_LT] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [aux_sym_unquoted_token1] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(247), }, [1552] = { [sym_comment] = STATE(1552), - [sym__newline] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_err_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_GT_PIPE] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_GT] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_in] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [aux_sym_ctrl_match_token1] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_and] = ACTIONS(1915), - [anon_sym_xor] = ACTIONS(1915), - [anon_sym_or] = ACTIONS(1915), - [anon_sym_not_DASHin] = ACTIONS(1915), - [anon_sym_starts_DASHwith] = ACTIONS(1915), - [anon_sym_ends_DASHwith] = ACTIONS(1915), - [anon_sym_EQ_EQ] = ACTIONS(1915), - [anon_sym_BANG_EQ] = ACTIONS(1915), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1915), - [anon_sym_EQ_TILDE] = ACTIONS(1915), - [anon_sym_BANG_TILDE] = ACTIONS(1915), - [anon_sym_STAR_STAR] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_mod] = ACTIONS(1915), - [anon_sym_SLASH_SLASH] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_bit_DASHshl] = ACTIONS(1915), - [anon_sym_bit_DASHshr] = ACTIONS(1915), - [anon_sym_bit_DASHand] = ACTIONS(1915), - [anon_sym_bit_DASHxor] = ACTIONS(1915), - [anon_sym_bit_DASHor] = ACTIONS(1915), - [anon_sym_DOT_DOT2] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1915), - [anon_sym_err_GT] = ACTIONS(1913), - [anon_sym_out_GT] = ACTIONS(1913), - [anon_sym_e_GT] = ACTIONS(1913), - [anon_sym_o_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT] = ACTIONS(1913), - [anon_sym_err_GT_GT] = ACTIONS(1915), - [anon_sym_out_GT_GT] = ACTIONS(1915), - [anon_sym_e_GT_GT] = ACTIONS(1915), - [anon_sym_o_GT_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4805), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1553] = { - [sym_cell_path] = STATE(1915), - [sym_path] = STATE(1840), + [sym_cell_path] = STATE(1780), + [sym_path] = STATE(1399), [sym_comment] = STATE(1553), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(885), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_null] = ACTIONS(885), - [aux_sym_cmd_identifier_token38] = ACTIONS(885), - [aux_sym_cmd_identifier_token39] = ACTIONS(885), - [aux_sym_cmd_identifier_token40] = ACTIONS(885), - [sym__newline] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_DASH] = ACTIONS(883), - [aux_sym_ctrl_match_token1] = ACTIONS(885), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(885), - [anon_sym_DOT_DOT_LT] = ACTIONS(885), - [aux_sym__val_number_decimal_token1] = ACTIONS(883), - [aux_sym__val_number_decimal_token2] = ACTIONS(885), - [anon_sym_DOT2] = ACTIONS(883), - [aux_sym__val_number_decimal_token3] = ACTIONS(885), - [aux_sym__val_number_token1] = ACTIONS(885), - [aux_sym__val_number_token2] = ACTIONS(885), - [aux_sym__val_number_token3] = ACTIONS(885), - [anon_sym_0b] = ACTIONS(883), - [anon_sym_0o] = ACTIONS(883), - [anon_sym_0x] = ACTIONS(883), - [sym_val_date] = ACTIONS(885), - [anon_sym_DQUOTE] = ACTIONS(885), - [sym__str_single_quotes] = ACTIONS(885), - [sym__str_back_ticks] = ACTIONS(885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [aux_sym_unquoted_token1] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1288), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_err_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_GT_PIPE] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(1603), + [aux_sym_ctrl_match_token1] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1603), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1603), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4075), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(247), }, [1554] = { [sym_comment] = STATE(1554), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_EQ_GT] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [aux_sym_record_entry_token1] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), }, [1555] = { + [sym__expr_parenthesized_immediate] = STATE(7561), [sym_comment] = STATE(1555), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), + [sym__newline] = ACTIONS(1525), [anon_sym_SEMI] = ACTIONS(1537), [anon_sym_PIPE] = ACTIONS(1537), [anon_sym_err_GT_PIPE] = ACTIONS(1537), @@ -215029,43 +220451,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1537), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(2949), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2951), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2951), + [sym_filesize_unit] = ACTIONS(4885), + [sym_duration_unit] = ACTIONS(4887), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), [anon_sym_err_GT_GT] = ACTIONS(1537), [anon_sym_out_GT_GT] = ACTIONS(1537), [anon_sym_e_GT_GT] = ACTIONS(1537), @@ -215074,3420 +220502,3407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [aux_sym_unquoted_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token2] = ACTIONS(4889), + [anon_sym_POUND] = ACTIONS(247), }, [1556] = { [sym_comment] = STATE(1556), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1610), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [sym__newline] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_err_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_GT_PIPE] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1608), - [aux_sym_ctrl_match_token1] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1610), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1610), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1608), - [anon_sym_out_GT] = ACTIONS(1608), - [anon_sym_e_GT] = ACTIONS(1608), - [anon_sym_o_GT] = ACTIONS(1608), - [anon_sym_err_PLUSout_GT] = ACTIONS(1608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), - [anon_sym_o_PLUSe_GT] = ACTIONS(1608), - [anon_sym_e_PLUSo_GT] = ACTIONS(1608), - [anon_sym_err_GT_GT] = ACTIONS(1610), - [anon_sym_out_GT_GT] = ACTIONS(1610), - [anon_sym_e_GT_GT] = ACTIONS(1610), - [anon_sym_o_GT_GT] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), - [aux_sym_unquoted_token1] = ACTIONS(1608), - [aux_sym_unquoted_token2] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4785), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), }, [1557] = { - [sym_cell_path] = STATE(1983), - [sym_path] = STATE(1840), + [sym_cell_path] = STATE(2039), + [sym_path] = STATE(1868), [sym_comment] = STATE(1557), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1758), - [anon_sym_false] = ACTIONS(1758), - [anon_sym_null] = ACTIONS(1758), - [aux_sym_cmd_identifier_token38] = ACTIONS(1758), - [aux_sym_cmd_identifier_token39] = ACTIONS(1758), - [aux_sym_cmd_identifier_token40] = ACTIONS(1758), - [sym__newline] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_err_GT_PIPE] = ACTIONS(1758), - [anon_sym_out_GT_PIPE] = ACTIONS(1758), - [anon_sym_e_GT_PIPE] = ACTIONS(1758), - [anon_sym_o_GT_PIPE] = ACTIONS(1758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1756), - [aux_sym_ctrl_match_token1] = ACTIONS(1758), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_LT] = ACTIONS(1758), - [aux_sym__val_number_decimal_token1] = ACTIONS(1756), - [aux_sym__val_number_decimal_token2] = ACTIONS(1758), - [anon_sym_DOT2] = ACTIONS(1756), - [aux_sym__val_number_decimal_token3] = ACTIONS(1758), - [aux_sym__val_number_token1] = ACTIONS(1758), - [aux_sym__val_number_token2] = ACTIONS(1758), - [aux_sym__val_number_token3] = ACTIONS(1758), - [anon_sym_0b] = ACTIONS(1756), - [anon_sym_0o] = ACTIONS(1756), - [anon_sym_0x] = ACTIONS(1756), - [sym_val_date] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [sym__str_single_quotes] = ACTIONS(1758), - [sym__str_back_ticks] = ACTIONS(1758), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1758), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1758), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1758), - [anon_sym_out_GT_GT] = ACTIONS(1758), - [anon_sym_e_GT_GT] = ACTIONS(1758), - [anon_sym_o_GT_GT] = ACTIONS(1758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1758), - [aux_sym_unquoted_token1] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1881), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1879), + [aux_sym_ctrl_match_token1] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), }, [1558] = { - [sym_cell_path] = STATE(1984), - [sym_path] = STATE(1840), [sym_comment] = STATE(1558), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(1762), - [anon_sym_false] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1762), - [aux_sym_cmd_identifier_token38] = ACTIONS(1762), - [aux_sym_cmd_identifier_token39] = ACTIONS(1762), - [aux_sym_cmd_identifier_token40] = ACTIONS(1762), - [sym__newline] = ACTIONS(1762), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_err_GT_PIPE] = ACTIONS(1762), - [anon_sym_out_GT_PIPE] = ACTIONS(1762), - [anon_sym_e_GT_PIPE] = ACTIONS(1762), - [anon_sym_o_GT_PIPE] = ACTIONS(1762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_DOLLAR] = ACTIONS(1760), - [anon_sym_DASH_DASH] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1760), - [aux_sym_ctrl_match_token1] = ACTIONS(1762), - [anon_sym_DOT_DOT] = ACTIONS(1760), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_LT] = ACTIONS(1762), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [anon_sym_DOT2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_token1] = ACTIONS(1762), - [aux_sym__val_number_token2] = ACTIONS(1762), - [aux_sym__val_number_token3] = ACTIONS(1762), - [anon_sym_0b] = ACTIONS(1760), - [anon_sym_0o] = ACTIONS(1760), - [anon_sym_0x] = ACTIONS(1760), - [sym_val_date] = ACTIONS(1762), - [anon_sym_DQUOTE] = ACTIONS(1762), - [sym__str_single_quotes] = ACTIONS(1762), - [sym__str_back_ticks] = ACTIONS(1762), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), - [anon_sym_err_GT] = ACTIONS(1760), - [anon_sym_out_GT] = ACTIONS(1760), - [anon_sym_e_GT] = ACTIONS(1760), - [anon_sym_o_GT] = ACTIONS(1760), - [anon_sym_err_PLUSout_GT] = ACTIONS(1760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), - [anon_sym_o_PLUSe_GT] = ACTIONS(1760), - [anon_sym_e_PLUSo_GT] = ACTIONS(1760), - [anon_sym_err_GT_GT] = ACTIONS(1762), - [anon_sym_out_GT_GT] = ACTIONS(1762), - [anon_sym_e_GT_GT] = ACTIONS(1762), - [anon_sym_o_GT_GT] = ACTIONS(1762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), - [aux_sym_unquoted_token1] = ACTIONS(1760), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1483), + [aux_sym_cmd_identifier_token41] = ACTIONS(1481), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [aux_sym__immediate_decimal_token1] = ACTIONS(4891), + [aux_sym__immediate_decimal_token2] = ACTIONS(4893), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(247), }, [1559] = { - [sym_cell_path] = STATE(1985), - [sym_path] = STATE(1840), [sym_comment] = STATE(1559), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1766), - [aux_sym_cmd_identifier_token38] = ACTIONS(1766), - [aux_sym_cmd_identifier_token39] = ACTIONS(1766), - [aux_sym_cmd_identifier_token40] = ACTIONS(1766), - [sym__newline] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_err_GT_PIPE] = ACTIONS(1766), - [anon_sym_out_GT_PIPE] = ACTIONS(1766), - [anon_sym_e_GT_PIPE] = ACTIONS(1766), - [anon_sym_o_GT_PIPE] = ACTIONS(1766), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1766), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1766), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1766), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1764), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1764), - [aux_sym_ctrl_match_token1] = ACTIONS(1766), - [anon_sym_DOT_DOT] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_LT] = ACTIONS(1766), - [aux_sym__val_number_decimal_token1] = ACTIONS(1764), - [aux_sym__val_number_decimal_token2] = ACTIONS(1766), - [anon_sym_DOT2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1766), - [aux_sym__val_number_token1] = ACTIONS(1766), - [aux_sym__val_number_token2] = ACTIONS(1766), - [aux_sym__val_number_token3] = ACTIONS(1766), - [anon_sym_0b] = ACTIONS(1764), - [anon_sym_0o] = ACTIONS(1764), - [anon_sym_0x] = ACTIONS(1764), - [sym_val_date] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym__str_single_quotes] = ACTIONS(1766), - [sym__str_back_ticks] = ACTIONS(1766), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1766), - [anon_sym_err_GT] = ACTIONS(1764), - [anon_sym_out_GT] = ACTIONS(1764), - [anon_sym_e_GT] = ACTIONS(1764), - [anon_sym_o_GT] = ACTIONS(1764), - [anon_sym_err_PLUSout_GT] = ACTIONS(1764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1764), - [anon_sym_o_PLUSe_GT] = ACTIONS(1764), - [anon_sym_e_PLUSo_GT] = ACTIONS(1764), - [anon_sym_err_GT_GT] = ACTIONS(1766), - [anon_sym_out_GT_GT] = ACTIONS(1766), - [anon_sym_e_GT_GT] = ACTIONS(1766), - [anon_sym_o_GT_GT] = ACTIONS(1766), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1766), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1766), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1766), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1766), - [aux_sym_unquoted_token1] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [anon_sym_null] = ACTIONS(1941), + [aux_sym_cmd_identifier_token38] = ACTIONS(1941), + [aux_sym_cmd_identifier_token39] = ACTIONS(1941), + [aux_sym_cmd_identifier_token40] = ACTIONS(1941), + [sym__newline] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_err_GT_PIPE] = ACTIONS(1941), + [anon_sym_out_GT_PIPE] = ACTIONS(1941), + [anon_sym_e_GT_PIPE] = ACTIONS(1941), + [anon_sym_o_GT_PIPE] = ACTIONS(1941), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1941), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1941), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1941), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_RPAREN] = ACTIONS(1941), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1935), + [aux_sym_ctrl_match_token1] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_DOT_DOT] = ACTIONS(1935), + [anon_sym_DOT_DOT2] = ACTIONS(4895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), + [anon_sym_DOT_DOT_LT] = ACTIONS(1935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4897), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1941), + [aux_sym__val_number_decimal_token3] = ACTIONS(1941), + [aux_sym__val_number_decimal_token4] = ACTIONS(1941), + [aux_sym__val_number_token1] = ACTIONS(1941), + [aux_sym__val_number_token2] = ACTIONS(1941), + [aux_sym__val_number_token3] = ACTIONS(1941), + [anon_sym_0b] = ACTIONS(1935), + [anon_sym_0o] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1935), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym__str_single_quotes] = ACTIONS(1941), + [sym__str_back_ticks] = ACTIONS(1941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1941), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1941), + [anon_sym_err_GT] = ACTIONS(1935), + [anon_sym_out_GT] = ACTIONS(1935), + [anon_sym_e_GT] = ACTIONS(1935), + [anon_sym_o_GT] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT] = ACTIONS(1935), + [anon_sym_err_GT_GT] = ACTIONS(1941), + [anon_sym_out_GT_GT] = ACTIONS(1941), + [anon_sym_e_GT_GT] = ACTIONS(1941), + [anon_sym_o_GT_GT] = ACTIONS(1941), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1941), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1941), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1941), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1941), + [aux_sym_unquoted_token1] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(247), }, [1560] = { [sym_comment] = STATE(1560), - [aux_sym_cmd_identifier_token41] = ACTIONS(1368), - [sym__newline] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(4796), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [aux_sym_record_entry_token1] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [aux_sym_ctrl_match_token1] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(982), + [anon_sym_QMARK2] = ACTIONS(4899), + [aux_sym_expr_binary_token1] = ACTIONS(982), + [aux_sym_expr_binary_token2] = ACTIONS(982), + [aux_sym_expr_binary_token3] = ACTIONS(982), + [aux_sym_expr_binary_token4] = ACTIONS(982), + [aux_sym_expr_binary_token5] = ACTIONS(982), + [aux_sym_expr_binary_token6] = ACTIONS(982), + [aux_sym_expr_binary_token7] = ACTIONS(982), + [aux_sym_expr_binary_token8] = ACTIONS(982), + [aux_sym_expr_binary_token9] = ACTIONS(982), + [aux_sym_expr_binary_token10] = ACTIONS(982), + [aux_sym_expr_binary_token11] = ACTIONS(982), + [aux_sym_expr_binary_token12] = ACTIONS(982), + [aux_sym_expr_binary_token13] = ACTIONS(982), + [aux_sym_expr_binary_token14] = ACTIONS(982), + [aux_sym_expr_binary_token15] = ACTIONS(982), + [aux_sym_expr_binary_token16] = ACTIONS(982), + [aux_sym_expr_binary_token17] = ACTIONS(982), + [aux_sym_expr_binary_token18] = ACTIONS(982), + [aux_sym_expr_binary_token19] = ACTIONS(982), + [aux_sym_expr_binary_token20] = ACTIONS(982), + [aux_sym_expr_binary_token21] = ACTIONS(982), + [aux_sym_expr_binary_token22] = ACTIONS(982), + [aux_sym_expr_binary_token23] = ACTIONS(982), + [aux_sym_expr_binary_token24] = ACTIONS(982), + [aux_sym_expr_binary_token25] = ACTIONS(982), + [aux_sym_expr_binary_token26] = ACTIONS(982), + [aux_sym_expr_binary_token27] = ACTIONS(982), + [aux_sym_expr_binary_token28] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(247), }, [1561] = { [sym_comment] = STATE(1561), - [anon_sym_true] = ACTIONS(4830), - [anon_sym_false] = ACTIONS(4830), - [anon_sym_null] = ACTIONS(4830), - [aux_sym_cmd_identifier_token38] = ACTIONS(4830), - [aux_sym_cmd_identifier_token39] = ACTIONS(4830), - [aux_sym_cmd_identifier_token40] = ACTIONS(4830), - [sym__newline] = ACTIONS(4830), - [anon_sym_SEMI] = ACTIONS(4830), - [anon_sym_PIPE] = ACTIONS(4830), - [anon_sym_err_GT_PIPE] = ACTIONS(4830), - [anon_sym_out_GT_PIPE] = ACTIONS(4830), - [anon_sym_e_GT_PIPE] = ACTIONS(4830), - [anon_sym_o_GT_PIPE] = ACTIONS(4830), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4830), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4830), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4830), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4830), - [anon_sym_LBRACK] = ACTIONS(4830), - [anon_sym_LPAREN] = ACTIONS(4830), - [anon_sym_RPAREN] = ACTIONS(4830), - [anon_sym_DOLLAR] = ACTIONS(4832), - [anon_sym_DASH_DASH] = ACTIONS(4830), - [anon_sym_DASH] = ACTIONS(4832), - [aux_sym_ctrl_match_token1] = ACTIONS(4830), - [anon_sym_RBRACE] = ACTIONS(4830), - [anon_sym_DOT_DOT] = ACTIONS(4832), - [anon_sym_DOT_DOT2] = ACTIONS(4817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4832), - [anon_sym_DOT_DOT_LT] = ACTIONS(4832), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4819), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4819), - [aux_sym__val_number_decimal_token1] = ACTIONS(4832), - [aux_sym__val_number_decimal_token2] = ACTIONS(4830), - [anon_sym_DOT2] = ACTIONS(4832), - [aux_sym__val_number_decimal_token3] = ACTIONS(4830), - [aux_sym__val_number_token1] = ACTIONS(4830), - [aux_sym__val_number_token2] = ACTIONS(4830), - [aux_sym__val_number_token3] = ACTIONS(4830), - [anon_sym_0b] = ACTIONS(4832), - [anon_sym_0o] = ACTIONS(4832), - [anon_sym_0x] = ACTIONS(4832), - [sym_val_date] = ACTIONS(4830), - [anon_sym_DQUOTE] = ACTIONS(4830), - [sym__str_single_quotes] = ACTIONS(4830), - [sym__str_back_ticks] = ACTIONS(4830), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4830), - [anon_sym_err_GT] = ACTIONS(4832), - [anon_sym_out_GT] = ACTIONS(4832), - [anon_sym_e_GT] = ACTIONS(4832), - [anon_sym_o_GT] = ACTIONS(4832), - [anon_sym_err_PLUSout_GT] = ACTIONS(4832), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4832), - [anon_sym_o_PLUSe_GT] = ACTIONS(4832), - [anon_sym_e_PLUSo_GT] = ACTIONS(4832), - [anon_sym_err_GT_GT] = ACTIONS(4830), - [anon_sym_out_GT_GT] = ACTIONS(4830), - [anon_sym_e_GT_GT] = ACTIONS(4830), - [anon_sym_o_GT_GT] = ACTIONS(4830), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4830), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4830), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4830), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4830), - [aux_sym_unquoted_token1] = ACTIONS(4832), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_LPAREN2] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4901), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1562] = { - [sym_cell_path] = STATE(1986), - [sym_path] = STATE(1840), [sym_comment] = STATE(1562), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), - [aux_sym_cmd_identifier_token38] = ACTIONS(1770), - [aux_sym_cmd_identifier_token39] = ACTIONS(1770), - [aux_sym_cmd_identifier_token40] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1768), - [aux_sym_ctrl_match_token1] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1768), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_LT] = ACTIONS(1770), - [aux_sym__val_number_decimal_token1] = ACTIONS(1768), - [aux_sym__val_number_decimal_token2] = ACTIONS(1770), - [anon_sym_DOT2] = ACTIONS(1768), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_token1] = ACTIONS(1770), - [aux_sym__val_number_token2] = ACTIONS(1770), - [aux_sym__val_number_token3] = ACTIONS(1770), - [anon_sym_0b] = ACTIONS(1768), - [anon_sym_0o] = ACTIONS(1768), - [anon_sym_0x] = ACTIONS(1768), - [sym_val_date] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [sym__str_single_quotes] = ACTIONS(1770), - [sym__str_back_ticks] = ACTIONS(1770), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1770), - [anon_sym_err_GT] = ACTIONS(1768), - [anon_sym_out_GT] = ACTIONS(1768), - [anon_sym_e_GT] = ACTIONS(1768), - [anon_sym_o_GT] = ACTIONS(1768), - [anon_sym_err_PLUSout_GT] = ACTIONS(1768), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), - [anon_sym_o_PLUSe_GT] = ACTIONS(1768), - [anon_sym_e_PLUSo_GT] = ACTIONS(1768), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [aux_sym_unquoted_token1] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1563] = { + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(4750), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_PIPE] = ACTIONS(3259), + [anon_sym_err_GT_PIPE] = ACTIONS(3259), + [anon_sym_out_GT_PIPE] = ACTIONS(3259), + [anon_sym_e_GT_PIPE] = ACTIONS(3259), + [anon_sym_o_GT_PIPE] = ACTIONS(3259), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3259), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3259), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3259), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3259), + [anon_sym_RPAREN] = ACTIONS(3259), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3261), + [aux_sym_ctrl_match_token1] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_EQ_GT] = ACTIONS(3259), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3259), + [aux_sym_expr_binary_token2] = ACTIONS(3259), + [aux_sym_expr_binary_token3] = ACTIONS(3259), + [aux_sym_expr_binary_token4] = ACTIONS(3259), + [aux_sym_expr_binary_token5] = ACTIONS(3259), + [aux_sym_expr_binary_token6] = ACTIONS(3259), + [aux_sym_expr_binary_token7] = ACTIONS(3259), + [aux_sym_expr_binary_token8] = ACTIONS(3259), + [aux_sym_expr_binary_token9] = ACTIONS(3259), + [aux_sym_expr_binary_token10] = ACTIONS(3259), + [aux_sym_expr_binary_token11] = ACTIONS(3259), + [aux_sym_expr_binary_token12] = ACTIONS(3259), + [aux_sym_expr_binary_token13] = ACTIONS(3259), + [aux_sym_expr_binary_token14] = ACTIONS(3259), + [aux_sym_expr_binary_token15] = ACTIONS(3259), + [aux_sym_expr_binary_token16] = ACTIONS(3259), + [aux_sym_expr_binary_token17] = ACTIONS(3259), + [aux_sym_expr_binary_token18] = ACTIONS(3259), + [aux_sym_expr_binary_token19] = ACTIONS(3259), + [aux_sym_expr_binary_token20] = ACTIONS(3259), + [aux_sym_expr_binary_token21] = ACTIONS(3259), + [aux_sym_expr_binary_token22] = ACTIONS(3259), + [aux_sym_expr_binary_token23] = ACTIONS(3259), + [aux_sym_expr_binary_token24] = ACTIONS(3259), + [aux_sym_expr_binary_token25] = ACTIONS(3259), + [aux_sym_expr_binary_token26] = ACTIONS(3259), + [aux_sym_expr_binary_token27] = ACTIONS(3259), + [aux_sym_expr_binary_token28] = ACTIONS(3259), + [anon_sym_err_GT] = ACTIONS(3261), + [anon_sym_out_GT] = ACTIONS(3261), + [anon_sym_e_GT] = ACTIONS(3261), + [anon_sym_o_GT] = ACTIONS(3261), + [anon_sym_err_PLUSout_GT] = ACTIONS(3261), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3261), + [anon_sym_o_PLUSe_GT] = ACTIONS(3261), + [anon_sym_e_PLUSo_GT] = ACTIONS(3261), + [anon_sym_err_GT_GT] = ACTIONS(3259), + [anon_sym_out_GT_GT] = ACTIONS(3259), + [anon_sym_e_GT_GT] = ACTIONS(3259), + [anon_sym_o_GT_GT] = ACTIONS(3259), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3259), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3259), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3259), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3259), + [anon_sym_POUND] = ACTIONS(247), }, [1564] = { - [sym_cell_path] = STATE(1999), - [sym_path] = STATE(1840), [sym_comment] = STATE(1564), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1822), - [aux_sym_cmd_identifier_token38] = ACTIONS(1822), - [aux_sym_cmd_identifier_token39] = ACTIONS(1822), - [aux_sym_cmd_identifier_token40] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1820), - [aux_sym_ctrl_match_token1] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT] = ACTIONS(1822), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [anon_sym_DOT2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1822), - [aux_sym__val_number_token1] = ACTIONS(1822), - [aux_sym__val_number_token2] = ACTIONS(1822), - [aux_sym__val_number_token3] = ACTIONS(1822), - [anon_sym_0b] = ACTIONS(1820), - [anon_sym_0o] = ACTIONS(1820), - [anon_sym_0x] = ACTIONS(1820), - [sym_val_date] = ACTIONS(1822), - [anon_sym_DQUOTE] = ACTIONS(1822), - [sym__str_single_quotes] = ACTIONS(1822), - [sym__str_back_ticks] = ACTIONS(1822), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1820), - [anon_sym_out_GT] = ACTIONS(1820), - [anon_sym_e_GT] = ACTIONS(1820), - [anon_sym_o_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT] = ACTIONS(1820), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [aux_sym_unquoted_token1] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1945), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1945), + [aux_sym_cmd_identifier_token40] = ACTIONS(1945), + [sym__newline] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_err_GT_PIPE] = ACTIONS(1945), + [anon_sym_out_GT_PIPE] = ACTIONS(1945), + [anon_sym_e_GT_PIPE] = ACTIONS(1945), + [anon_sym_o_GT_PIPE] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [aux_sym_ctrl_match_token1] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT2] = ACTIONS(1943), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), + [anon_sym_DOT_DOT_LT] = ACTIONS(1943), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1945), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1945), + [aux_sym__val_number_decimal_token4] = ACTIONS(1945), + [aux_sym__val_number_token1] = ACTIONS(1945), + [aux_sym__val_number_token2] = ACTIONS(1945), + [aux_sym__val_number_token3] = ACTIONS(1945), + [anon_sym_0b] = ACTIONS(1943), + [anon_sym_0o] = ACTIONS(1943), + [anon_sym_0x] = ACTIONS(1943), + [sym_val_date] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym__str_single_quotes] = ACTIONS(1945), + [sym__str_back_ticks] = ACTIONS(1945), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1945), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1945), + [anon_sym_err_GT] = ACTIONS(1943), + [anon_sym_out_GT] = ACTIONS(1943), + [anon_sym_e_GT] = ACTIONS(1943), + [anon_sym_o_GT] = ACTIONS(1943), + [anon_sym_err_PLUSout_GT] = ACTIONS(1943), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1943), + [anon_sym_o_PLUSe_GT] = ACTIONS(1943), + [anon_sym_e_PLUSo_GT] = ACTIONS(1943), + [anon_sym_err_GT_GT] = ACTIONS(1945), + [anon_sym_out_GT_GT] = ACTIONS(1945), + [anon_sym_e_GT_GT] = ACTIONS(1945), + [anon_sym_o_GT_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1945), + [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(247), }, [1565] = { - [sym_cell_path] = STATE(2092), - [sym_path] = STATE(1694), [sym_comment] = STATE(1565), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_err_GT_PIPE] = ACTIONS(1742), - [anon_sym_out_GT_PIPE] = ACTIONS(1742), - [anon_sym_e_GT_PIPE] = ACTIONS(1742), - [anon_sym_o_GT_PIPE] = ACTIONS(1742), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1742), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1742), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1742), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1742), - [anon_sym_RPAREN] = ACTIONS(1742), - [anon_sym_COMMA] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_in] = ACTIONS(1742), - [aux_sym_ctrl_match_token1] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_EQ_GT] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_and] = ACTIONS(1742), - [anon_sym_xor] = ACTIONS(1742), - [anon_sym_or] = ACTIONS(1742), - [anon_sym_not_DASHin] = ACTIONS(1742), - [anon_sym_starts_DASHwith] = ACTIONS(1742), - [anon_sym_ends_DASHwith] = ACTIONS(1742), - [anon_sym_EQ_EQ] = ACTIONS(1742), - [anon_sym_BANG_EQ] = ACTIONS(1742), - [anon_sym_LT2] = ACTIONS(1740), - [anon_sym_LT_EQ] = ACTIONS(1742), - [anon_sym_GT_EQ] = ACTIONS(1742), - [anon_sym_EQ_TILDE] = ACTIONS(1742), - [anon_sym_BANG_TILDE] = ACTIONS(1742), - [anon_sym_STAR_STAR] = ACTIONS(1742), - [anon_sym_PLUS_PLUS] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_mod] = ACTIONS(1742), - [anon_sym_SLASH_SLASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_bit_DASHshl] = ACTIONS(1742), - [anon_sym_bit_DASHshr] = ACTIONS(1742), - [anon_sym_bit_DASHand] = ACTIONS(1742), - [anon_sym_bit_DASHxor] = ACTIONS(1742), - [anon_sym_bit_DASHor] = ACTIONS(1742), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1740), - [anon_sym_out_GT] = ACTIONS(1740), - [anon_sym_e_GT] = ACTIONS(1740), - [anon_sym_o_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT] = ACTIONS(1740), - [anon_sym_err_GT_GT] = ACTIONS(1742), - [anon_sym_out_GT_GT] = ACTIONS(1742), - [anon_sym_e_GT_GT] = ACTIONS(1742), - [anon_sym_o_GT_GT] = ACTIONS(1742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1475), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4903), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4905), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), }, [1566] = { [sym_comment] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__immediate_decimal_token2] = ACTIONS(4809), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4821), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1567] = { - [sym__immediate_decimal] = STATE(7407), + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(1567), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_and] = ACTIONS(2925), - [anon_sym_xor] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2925), - [anon_sym_starts_DASHwith] = ACTIONS(2925), - [anon_sym_ends_DASHwith] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_EQ_TILDE] = ACTIONS(2925), - [anon_sym_BANG_TILDE] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_STAR_STAR] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_bit_DASHshl] = ACTIONS(2925), - [anon_sym_bit_DASHshr] = ACTIONS(2925), - [anon_sym_bit_DASHand] = ACTIONS(2925), - [anon_sym_bit_DASHxor] = ACTIONS(2925), - [anon_sym_bit_DASHor] = ACTIONS(2925), - [anon_sym_DOT] = ACTIONS(4834), - [aux_sym__immediate_decimal_token1] = ACTIONS(2977), - [aux_sym__immediate_decimal_token3] = ACTIONS(2977), - [aux_sym__immediate_decimal_token4] = ACTIONS(2979), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token5] = ACTIONS(4687), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3263), + [anon_sym_PIPE] = ACTIONS(3263), + [anon_sym_err_GT_PIPE] = ACTIONS(3263), + [anon_sym_out_GT_PIPE] = ACTIONS(3263), + [anon_sym_e_GT_PIPE] = ACTIONS(3263), + [anon_sym_o_GT_PIPE] = ACTIONS(3263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3263), + [anon_sym_RPAREN] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(3263), + [anon_sym_DASH_DASH] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3265), + [aux_sym_ctrl_match_token1] = ACTIONS(3263), + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym_EQ_GT] = ACTIONS(3263), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3263), + [aux_sym_expr_binary_token2] = ACTIONS(3263), + [aux_sym_expr_binary_token3] = ACTIONS(3263), + [aux_sym_expr_binary_token4] = ACTIONS(3263), + [aux_sym_expr_binary_token5] = ACTIONS(3263), + [aux_sym_expr_binary_token6] = ACTIONS(3263), + [aux_sym_expr_binary_token7] = ACTIONS(3263), + [aux_sym_expr_binary_token8] = ACTIONS(3263), + [aux_sym_expr_binary_token9] = ACTIONS(3263), + [aux_sym_expr_binary_token10] = ACTIONS(3263), + [aux_sym_expr_binary_token11] = ACTIONS(3263), + [aux_sym_expr_binary_token12] = ACTIONS(3263), + [aux_sym_expr_binary_token13] = ACTIONS(3263), + [aux_sym_expr_binary_token14] = ACTIONS(3263), + [aux_sym_expr_binary_token15] = ACTIONS(3263), + [aux_sym_expr_binary_token16] = ACTIONS(3263), + [aux_sym_expr_binary_token17] = ACTIONS(3263), + [aux_sym_expr_binary_token18] = ACTIONS(3263), + [aux_sym_expr_binary_token19] = ACTIONS(3263), + [aux_sym_expr_binary_token20] = ACTIONS(3263), + [aux_sym_expr_binary_token21] = ACTIONS(3263), + [aux_sym_expr_binary_token22] = ACTIONS(3263), + [aux_sym_expr_binary_token23] = ACTIONS(3263), + [aux_sym_expr_binary_token24] = ACTIONS(3263), + [aux_sym_expr_binary_token25] = ACTIONS(3263), + [aux_sym_expr_binary_token26] = ACTIONS(3263), + [aux_sym_expr_binary_token27] = ACTIONS(3263), + [aux_sym_expr_binary_token28] = ACTIONS(3263), + [anon_sym_err_GT] = ACTIONS(3265), + [anon_sym_out_GT] = ACTIONS(3265), + [anon_sym_e_GT] = ACTIONS(3265), + [anon_sym_o_GT] = ACTIONS(3265), + [anon_sym_err_PLUSout_GT] = ACTIONS(3265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3265), + [anon_sym_o_PLUSe_GT] = ACTIONS(3265), + [anon_sym_e_PLUSo_GT] = ACTIONS(3265), + [anon_sym_err_GT_GT] = ACTIONS(3263), + [anon_sym_out_GT_GT] = ACTIONS(3263), + [anon_sym_e_GT_GT] = ACTIONS(3263), + [anon_sym_o_GT_GT] = ACTIONS(3263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3263), + [anon_sym_POUND] = ACTIONS(247), }, [1568] = { - [sym_cell_path] = STATE(2095), - [sym_path] = STATE(1694), + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1568), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_err_GT_PIPE] = ACTIONS(1725), - [anon_sym_out_GT_PIPE] = ACTIONS(1725), - [anon_sym_e_GT_PIPE] = ACTIONS(1725), - [anon_sym_o_GT_PIPE] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_COMMA] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_in] = ACTIONS(1725), - [aux_sym_ctrl_match_token1] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_EQ_GT] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_and] = ACTIONS(1725), - [anon_sym_xor] = ACTIONS(1725), - [anon_sym_or] = ACTIONS(1725), - [anon_sym_not_DASHin] = ACTIONS(1725), - [anon_sym_starts_DASHwith] = ACTIONS(1725), - [anon_sym_ends_DASHwith] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT2] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_EQ_TILDE] = ACTIONS(1725), - [anon_sym_BANG_TILDE] = ACTIONS(1725), - [anon_sym_STAR_STAR] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_mod] = ACTIONS(1725), - [anon_sym_SLASH_SLASH] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_bit_DASHshl] = ACTIONS(1725), - [anon_sym_bit_DASHshr] = ACTIONS(1725), - [anon_sym_bit_DASHand] = ACTIONS(1725), - [anon_sym_bit_DASHxor] = ACTIONS(1725), - [anon_sym_bit_DASHor] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1723), - [anon_sym_out_GT] = ACTIONS(1723), - [anon_sym_e_GT] = ACTIONS(1723), - [anon_sym_o_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT] = ACTIONS(1723), - [anon_sym_err_GT_GT] = ACTIONS(1725), - [anon_sym_out_GT_GT] = ACTIONS(1725), - [anon_sym_e_GT_GT] = ACTIONS(1725), - [anon_sym_o_GT_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1569] = { + [sym_cell_path] = STATE(2060), + [sym_path] = STATE(1868), [sym_comment] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(930), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [anon_sym_null] = ACTIONS(930), - [aux_sym_cmd_identifier_token38] = ACTIONS(930), - [aux_sym_cmd_identifier_token39] = ACTIONS(930), - [aux_sym_cmd_identifier_token40] = ACTIONS(930), - [sym__newline] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_PIPE] = ACTIONS(930), - [anon_sym_err_GT_PIPE] = ACTIONS(930), - [anon_sym_out_GT_PIPE] = ACTIONS(930), - [anon_sym_e_GT_PIPE] = ACTIONS(930), - [anon_sym_o_GT_PIPE] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_DASH] = ACTIONS(928), - [aux_sym_ctrl_match_token1] = ACTIONS(930), - [anon_sym_DOT_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT2] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [anon_sym_DOT_DOT_LT] = ACTIONS(928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(930), - [anon_sym_DOT_DOT_LT2] = ACTIONS(930), - [aux_sym__val_number_decimal_token1] = ACTIONS(928), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [anon_sym_DOT2] = ACTIONS(928), - [aux_sym__val_number_decimal_token3] = ACTIONS(930), - [aux_sym__val_number_token1] = ACTIONS(930), - [aux_sym__val_number_token2] = ACTIONS(930), - [aux_sym__val_number_token3] = ACTIONS(930), - [anon_sym_0b] = ACTIONS(928), - [anon_sym_0o] = ACTIONS(928), - [anon_sym_0x] = ACTIONS(928), - [sym_val_date] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [sym__str_single_quotes] = ACTIONS(930), - [sym__str_back_ticks] = ACTIONS(930), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(930), - [anon_sym_err_GT] = ACTIONS(928), - [anon_sym_out_GT] = ACTIONS(928), - [anon_sym_e_GT] = ACTIONS(928), - [anon_sym_o_GT] = ACTIONS(928), - [anon_sym_err_PLUSout_GT] = ACTIONS(928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(928), - [anon_sym_o_PLUSe_GT] = ACTIONS(928), - [anon_sym_e_PLUSo_GT] = ACTIONS(928), - [anon_sym_err_GT_GT] = ACTIONS(930), - [anon_sym_out_GT_GT] = ACTIONS(930), - [anon_sym_e_GT_GT] = ACTIONS(930), - [anon_sym_o_GT_GT] = ACTIONS(930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(930), - [aux_sym_unquoted_token1] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(947), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_null] = ACTIONS(947), + [aux_sym_cmd_identifier_token38] = ACTIONS(947), + [aux_sym_cmd_identifier_token39] = ACTIONS(947), + [aux_sym_cmd_identifier_token40] = ACTIONS(947), + [sym__newline] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_err_GT_PIPE] = ACTIONS(947), + [anon_sym_out_GT_PIPE] = ACTIONS(947), + [anon_sym_e_GT_PIPE] = ACTIONS(947), + [anon_sym_o_GT_PIPE] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(945), + [aux_sym_ctrl_match_token1] = ACTIONS(947), + [anon_sym_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(947), + [anon_sym_DOT_DOT_LT] = ACTIONS(947), + [aux_sym__val_number_decimal_token1] = ACTIONS(945), + [aux_sym__val_number_decimal_token2] = ACTIONS(947), + [aux_sym__val_number_decimal_token3] = ACTIONS(947), + [aux_sym__val_number_decimal_token4] = ACTIONS(947), + [aux_sym__val_number_token1] = ACTIONS(947), + [aux_sym__val_number_token2] = ACTIONS(947), + [aux_sym__val_number_token3] = ACTIONS(947), + [anon_sym_0b] = ACTIONS(945), + [anon_sym_0o] = ACTIONS(945), + [anon_sym_0x] = ACTIONS(945), + [sym_val_date] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym__str_single_quotes] = ACTIONS(947), + [sym__str_back_ticks] = ACTIONS(947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(947), + [anon_sym_err_GT] = ACTIONS(945), + [anon_sym_out_GT] = ACTIONS(945), + [anon_sym_e_GT] = ACTIONS(945), + [anon_sym_o_GT] = ACTIONS(945), + [anon_sym_err_PLUSout_GT] = ACTIONS(945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(945), + [anon_sym_o_PLUSe_GT] = ACTIONS(945), + [anon_sym_e_PLUSo_GT] = ACTIONS(945), + [anon_sym_err_GT_GT] = ACTIONS(947), + [anon_sym_out_GT_GT] = ACTIONS(947), + [anon_sym_e_GT_GT] = ACTIONS(947), + [anon_sym_o_GT_GT] = ACTIONS(947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [aux_sym_unquoted_token1] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(247), }, [1570] = { - [sym_cell_path] = STATE(1998), - [sym_path] = STATE(1840), + [sym_cell_path] = STATE(2055), + [sym_path] = STATE(1868), [sym_comment] = STATE(1570), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1818), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1818), - [aux_sym_cmd_identifier_token40] = ACTIONS(1818), - [sym__newline] = ACTIONS(1818), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_err_GT_PIPE] = ACTIONS(1818), - [anon_sym_out_GT_PIPE] = ACTIONS(1818), - [anon_sym_e_GT_PIPE] = ACTIONS(1818), - [anon_sym_o_GT_PIPE] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1816), - [aux_sym_ctrl_match_token1] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [aux_sym__val_number_decimal_token1] = ACTIONS(1816), - [aux_sym__val_number_decimal_token2] = ACTIONS(1818), - [anon_sym_DOT2] = ACTIONS(1816), - [aux_sym__val_number_decimal_token3] = ACTIONS(1818), - [aux_sym__val_number_token1] = ACTIONS(1818), - [aux_sym__val_number_token2] = ACTIONS(1818), - [aux_sym__val_number_token3] = ACTIONS(1818), - [anon_sym_0b] = ACTIONS(1816), - [anon_sym_0o] = ACTIONS(1816), - [anon_sym_0x] = ACTIONS(1816), - [sym_val_date] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [sym__str_single_quotes] = ACTIONS(1818), - [sym__str_back_ticks] = ACTIONS(1818), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1818), - [anon_sym_err_GT] = ACTIONS(1816), - [anon_sym_out_GT] = ACTIONS(1816), - [anon_sym_e_GT] = ACTIONS(1816), - [anon_sym_o_GT] = ACTIONS(1816), - [anon_sym_err_PLUSout_GT] = ACTIONS(1816), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1816), - [anon_sym_o_PLUSe_GT] = ACTIONS(1816), - [anon_sym_e_PLUSo_GT] = ACTIONS(1816), - [anon_sym_err_GT_GT] = ACTIONS(1818), - [anon_sym_out_GT_GT] = ACTIONS(1818), - [anon_sym_e_GT_GT] = ACTIONS(1818), - [anon_sym_o_GT_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1818), - [aux_sym_unquoted_token1] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1897), + [aux_sym_cmd_identifier_token38] = ACTIONS(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [sym__newline] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_err_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_GT_PIPE] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1895), + [aux_sym_ctrl_match_token1] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), + [anon_sym_DOT_DOT_LT] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [anon_sym_0b] = ACTIONS(1895), + [anon_sym_0o] = ACTIONS(1895), + [anon_sym_0x] = ACTIONS(1895), + [sym_val_date] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(247), }, [1571] = { + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(4836), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [aux_sym_unquoted_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1572] = { [sym_comment] = STATE(1572), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [aux_sym_cmd_identifier_token38] = ACTIONS(1580), - [aux_sym_cmd_identifier_token39] = ACTIONS(1580), - [aux_sym_cmd_identifier_token40] = ACTIONS(1580), - [sym__newline] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_err_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_GT_PIPE] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_RPAREN] = ACTIONS(1580), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1570), - [aux_sym_ctrl_match_token1] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_DOT_DOT] = ACTIONS(1570), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1580), - [anon_sym_DOT_DOT_LT] = ACTIONS(1580), - [aux_sym__val_number_decimal_token1] = ACTIONS(1570), - [aux_sym__val_number_decimal_token2] = ACTIONS(1580), - [anon_sym_DOT2] = ACTIONS(1570), - [aux_sym__val_number_decimal_token3] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1580), - [aux_sym__val_number_token2] = ACTIONS(1580), - [aux_sym__val_number_token3] = ACTIONS(1580), - [anon_sym_0b] = ACTIONS(1570), - [anon_sym_0o] = ACTIONS(1570), - [anon_sym_0x] = ACTIONS(1570), - [sym_val_date] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1580), - [sym__str_single_quotes] = ACTIONS(1580), - [sym__str_back_ticks] = ACTIONS(1580), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1580), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1570), - [anon_sym_out_GT] = ACTIONS(1570), - [anon_sym_e_GT] = ACTIONS(1570), - [anon_sym_o_GT] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT] = ACTIONS(1570), - [anon_sym_err_GT_GT] = ACTIONS(1580), - [anon_sym_out_GT_GT] = ACTIONS(1580), - [anon_sym_e_GT_GT] = ACTIONS(1580), - [anon_sym_o_GT_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), - [aux_sym_unquoted_token1] = ACTIONS(1570), - [aux_sym_unquoted_token2] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [1573] = { + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(1370), - [aux_sym_cmd_identifier_token41] = ACTIONS(1368), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token1] = ACTIONS(4838), - [aux_sym__immediate_decimal_token2] = ACTIONS(4840), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1574] = { [sym_comment] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(926), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [anon_sym_null] = ACTIONS(926), - [aux_sym_cmd_identifier_token38] = ACTIONS(926), - [aux_sym_cmd_identifier_token39] = ACTIONS(926), - [aux_sym_cmd_identifier_token40] = ACTIONS(926), - [sym__newline] = ACTIONS(926), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_err_GT_PIPE] = ACTIONS(926), - [anon_sym_out_GT_PIPE] = ACTIONS(926), - [anon_sym_e_GT_PIPE] = ACTIONS(926), - [anon_sym_o_GT_PIPE] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(924), - [aux_sym_ctrl_match_token1] = ACTIONS(926), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT2] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(924), - [anon_sym_DOT_DOT_LT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(926), - [anon_sym_DOT_DOT_LT2] = ACTIONS(926), - [aux_sym__val_number_decimal_token1] = ACTIONS(924), - [aux_sym__val_number_decimal_token2] = ACTIONS(926), - [anon_sym_DOT2] = ACTIONS(924), - [aux_sym__val_number_decimal_token3] = ACTIONS(926), - [aux_sym__val_number_token1] = ACTIONS(926), - [aux_sym__val_number_token2] = ACTIONS(926), - [aux_sym__val_number_token3] = ACTIONS(926), - [anon_sym_0b] = ACTIONS(924), - [anon_sym_0o] = ACTIONS(924), - [anon_sym_0x] = ACTIONS(924), - [sym_val_date] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(926), - [sym__str_single_quotes] = ACTIONS(926), - [sym__str_back_ticks] = ACTIONS(926), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(926), - [anon_sym_err_GT] = ACTIONS(924), - [anon_sym_out_GT] = ACTIONS(924), - [anon_sym_e_GT] = ACTIONS(924), - [anon_sym_o_GT] = ACTIONS(924), - [anon_sym_err_PLUSout_GT] = ACTIONS(924), - [anon_sym_out_PLUSerr_GT] = ACTIONS(924), - [anon_sym_o_PLUSe_GT] = ACTIONS(924), - [anon_sym_e_PLUSo_GT] = ACTIONS(924), - [anon_sym_err_GT_GT] = ACTIONS(926), - [anon_sym_out_GT_GT] = ACTIONS(926), - [anon_sym_e_GT_GT] = ACTIONS(926), - [anon_sym_o_GT_GT] = ACTIONS(926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(926), - [aux_sym_unquoted_token1] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [sym__newline] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(986), + [aux_sym_ctrl_match_token1] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_DOT_DOT_LT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(986), + [anon_sym_0o] = ACTIONS(986), + [anon_sym_0x] = ACTIONS(986), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [aux_sym_unquoted_token1] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), }, [1575] = { + [sym_path] = STATE(1715), [sym_comment] = STATE(1575), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1610), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [sym__newline] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_err_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_GT_PIPE] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1608), - [aux_sym_ctrl_match_token1] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT2] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1608), - [anon_sym_DOT_DOT_LT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1610), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1610), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1608), - [anon_sym_out_GT] = ACTIONS(1608), - [anon_sym_e_GT] = ACTIONS(1608), - [anon_sym_o_GT] = ACTIONS(1608), - [anon_sym_err_PLUSout_GT] = ACTIONS(1608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), - [anon_sym_o_PLUSe_GT] = ACTIONS(1608), - [anon_sym_e_PLUSo_GT] = ACTIONS(1608), - [anon_sym_err_GT_GT] = ACTIONS(1610), - [anon_sym_out_GT_GT] = ACTIONS(1610), - [anon_sym_e_GT_GT] = ACTIONS(1610), - [anon_sym_o_GT_GT] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), - [aux_sym_unquoted_token1] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1576), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_null] = ACTIONS(953), + [aux_sym_cmd_identifier_token38] = ACTIONS(953), + [aux_sym_cmd_identifier_token39] = ACTIONS(953), + [aux_sym_cmd_identifier_token40] = ACTIONS(953), + [sym__newline] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_err_GT_PIPE] = ACTIONS(953), + [anon_sym_out_GT_PIPE] = ACTIONS(953), + [anon_sym_e_GT_PIPE] = ACTIONS(953), + [anon_sym_o_GT_PIPE] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(951), + [aux_sym_ctrl_match_token1] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(4763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(953), + [anon_sym_DOT_DOT_LT] = ACTIONS(953), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(953), + [aux_sym__val_number_decimal_token3] = ACTIONS(953), + [aux_sym__val_number_decimal_token4] = ACTIONS(953), + [aux_sym__val_number_token1] = ACTIONS(953), + [aux_sym__val_number_token2] = ACTIONS(953), + [aux_sym__val_number_token3] = ACTIONS(953), + [anon_sym_0b] = ACTIONS(951), + [anon_sym_0o] = ACTIONS(951), + [anon_sym_0x] = ACTIONS(951), + [sym_val_date] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym__str_single_quotes] = ACTIONS(953), + [sym__str_back_ticks] = ACTIONS(953), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(953), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(953), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [aux_sym_unquoted_token1] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(247), }, [1576] = { + [sym_path] = STATE(1715), [sym_comment] = STATE(1576), - [ts_builtin_sym_end] = ACTIONS(934), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_null] = ACTIONS(934), - [aux_sym_cmd_identifier_token38] = ACTIONS(934), - [aux_sym_cmd_identifier_token39] = ACTIONS(934), - [aux_sym_cmd_identifier_token40] = ACTIONS(934), - [sym__newline] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_err_GT_PIPE] = ACTIONS(934), - [anon_sym_out_GT_PIPE] = ACTIONS(934), - [anon_sym_e_GT_PIPE] = ACTIONS(934), - [anon_sym_o_GT_PIPE] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(932), - [aux_sym_ctrl_match_token1] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT2] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [anon_sym_DOT_DOT_LT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(934), - [anon_sym_DOT_DOT_LT2] = ACTIONS(934), - [aux_sym__val_number_decimal_token1] = ACTIONS(932), - [aux_sym__val_number_decimal_token2] = ACTIONS(934), - [anon_sym_DOT2] = ACTIONS(932), - [aux_sym__val_number_decimal_token3] = ACTIONS(934), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_0b] = ACTIONS(932), - [anon_sym_0o] = ACTIONS(932), - [anon_sym_0x] = ACTIONS(932), - [sym_val_date] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [sym__str_single_quotes] = ACTIONS(934), - [sym__str_back_ticks] = ACTIONS(934), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(934), - [anon_sym_err_GT] = ACTIONS(932), - [anon_sym_out_GT] = ACTIONS(932), - [anon_sym_e_GT] = ACTIONS(932), - [anon_sym_o_GT] = ACTIONS(932), - [anon_sym_err_PLUSout_GT] = ACTIONS(932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(932), - [anon_sym_o_PLUSe_GT] = ACTIONS(932), - [anon_sym_e_PLUSo_GT] = ACTIONS(932), - [anon_sym_err_GT_GT] = ACTIONS(934), - [anon_sym_out_GT_GT] = ACTIONS(934), - [anon_sym_e_GT_GT] = ACTIONS(934), - [anon_sym_o_GT_GT] = ACTIONS(934), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(934), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(934), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(934), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(934), - [aux_sym_unquoted_token1] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1576), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_null] = ACTIONS(957), + [aux_sym_cmd_identifier_token38] = ACTIONS(957), + [aux_sym_cmd_identifier_token39] = ACTIONS(957), + [aux_sym_cmd_identifier_token40] = ACTIONS(957), + [sym__newline] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_err_GT_PIPE] = ACTIONS(957), + [anon_sym_out_GT_PIPE] = ACTIONS(957), + [anon_sym_e_GT_PIPE] = ACTIONS(957), + [anon_sym_o_GT_PIPE] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(955), + [aux_sym_ctrl_match_token1] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_DOT_DOT] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(4907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(957), + [anon_sym_DOT_DOT_LT] = ACTIONS(957), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(957), + [aux_sym__val_number_decimal_token3] = ACTIONS(957), + [aux_sym__val_number_decimal_token4] = ACTIONS(957), + [aux_sym__val_number_token1] = ACTIONS(957), + [aux_sym__val_number_token2] = ACTIONS(957), + [aux_sym__val_number_token3] = ACTIONS(957), + [anon_sym_0b] = ACTIONS(955), + [anon_sym_0o] = ACTIONS(955), + [anon_sym_0x] = ACTIONS(955), + [sym_val_date] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__str_single_quotes] = ACTIONS(957), + [sym__str_back_ticks] = ACTIONS(957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(957), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [aux_sym_unquoted_token1] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(247), }, [1577] = { + [sym_cell_path] = STATE(2053), + [sym_path] = STATE(1868), [sym_comment] = STATE(1577), - [sym__newline] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_err_GT_PIPE] = ACTIONS(938), - [anon_sym_out_GT_PIPE] = ACTIONS(938), - [anon_sym_e_GT_PIPE] = ACTIONS(938), - [anon_sym_o_GT_PIPE] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(938), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_in] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [aux_sym_ctrl_match_token1] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_EQ_GT] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_and] = ACTIONS(938), - [anon_sym_xor] = ACTIONS(938), - [anon_sym_or] = ACTIONS(938), - [anon_sym_not_DASHin] = ACTIONS(938), - [anon_sym_starts_DASHwith] = ACTIONS(938), - [anon_sym_ends_DASHwith] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT2] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_EQ_TILDE] = ACTIONS(938), - [anon_sym_BANG_TILDE] = ACTIONS(938), - [anon_sym_STAR_STAR] = ACTIONS(938), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_bit_DASHshl] = ACTIONS(938), - [anon_sym_bit_DASHshr] = ACTIONS(938), - [anon_sym_bit_DASHand] = ACTIONS(938), - [anon_sym_bit_DASHxor] = ACTIONS(938), - [anon_sym_bit_DASHor] = ACTIONS(938), - [anon_sym_DOT_DOT2] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [anon_sym_err_GT_GT] = ACTIONS(938), - [anon_sym_out_GT_GT] = ACTIONS(938), - [anon_sym_e_GT_GT] = ACTIONS(938), - [anon_sym_o_GT_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [aux_sym_cmd_identifier_token38] = ACTIONS(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1893), + [aux_sym_cmd_identifier_token40] = ACTIONS(1893), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1891), + [aux_sym_ctrl_match_token1] = ACTIONS(1893), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), + [anon_sym_DOT_DOT_LT] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [anon_sym_0b] = ACTIONS(1891), + [anon_sym_0o] = ACTIONS(1891), + [anon_sym_0x] = ACTIONS(1891), + [sym_val_date] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [aux_sym_unquoted_token1] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(247), }, [1578] = { - [sym_cell_path] = STATE(2039), - [sym_path] = STATE(1840), [sym_comment] = STATE(1578), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1742), - [anon_sym_true] = ACTIONS(1742), - [anon_sym_false] = ACTIONS(1742), - [anon_sym_null] = ACTIONS(1742), - [aux_sym_cmd_identifier_token38] = ACTIONS(1742), - [aux_sym_cmd_identifier_token39] = ACTIONS(1742), - [aux_sym_cmd_identifier_token40] = ACTIONS(1742), - [sym__newline] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_err_GT_PIPE] = ACTIONS(1742), - [anon_sym_out_GT_PIPE] = ACTIONS(1742), - [anon_sym_e_GT_PIPE] = ACTIONS(1742), - [anon_sym_o_GT_PIPE] = ACTIONS(1742), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1742), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1742), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1742), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_DOLLAR] = ACTIONS(1740), - [anon_sym_DASH_DASH] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1740), - [aux_sym_ctrl_match_token1] = ACTIONS(1742), - [anon_sym_DOT_DOT] = ACTIONS(1740), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), - [anon_sym_DOT_DOT_LT] = ACTIONS(1742), - [aux_sym__val_number_decimal_token1] = ACTIONS(1740), - [aux_sym__val_number_decimal_token2] = ACTIONS(1742), - [anon_sym_DOT2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1742), - [aux_sym__val_number_token1] = ACTIONS(1742), - [aux_sym__val_number_token2] = ACTIONS(1742), - [aux_sym__val_number_token3] = ACTIONS(1742), - [anon_sym_0b] = ACTIONS(1740), - [anon_sym_0o] = ACTIONS(1740), - [anon_sym_0x] = ACTIONS(1740), - [sym_val_date] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1742), - [sym__str_single_quotes] = ACTIONS(1742), - [sym__str_back_ticks] = ACTIONS(1742), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1740), - [anon_sym_out_GT] = ACTIONS(1740), - [anon_sym_e_GT] = ACTIONS(1740), - [anon_sym_o_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT] = ACTIONS(1740), - [anon_sym_err_GT_GT] = ACTIONS(1742), - [anon_sym_out_GT_GT] = ACTIONS(1742), - [anon_sym_e_GT_GT] = ACTIONS(1742), - [anon_sym_o_GT_GT] = ACTIONS(1742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1742), - [aux_sym_unquoted_token1] = ACTIONS(1740), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4841), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), }, [1579] = { + [sym_cell_path] = STATE(2064), + [sym_path] = STATE(1868), [sym_comment] = STATE(1579), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1927), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1923), - [aux_sym_ctrl_match_token1] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1923), - [anon_sym_LPAREN2] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1923), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(1923), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [anon_sym_0b] = ACTIONS(1923), - [anon_sym_0o] = ACTIONS(1923), - [anon_sym_0x] = ACTIONS(1923), - [sym_val_date] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_err_GT] = ACTIONS(1923), - [anon_sym_out_GT] = ACTIONS(1923), - [anon_sym_e_GT] = ACTIONS(1923), - [anon_sym_o_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT] = ACTIONS(1923), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), - [aux_sym_unquoted_token1] = ACTIONS(1923), - [aux_sym_unquoted_token2] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1749), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [anon_sym_null] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [sym__newline] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_err_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_GT_PIPE] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1747), + [aux_sym_ctrl_match_token1] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [anon_sym_0b] = ACTIONS(1747), + [anon_sym_0o] = ACTIONS(1747), + [anon_sym_0x] = ACTIONS(1747), + [sym_val_date] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1749), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1749), + [anon_sym_err_GT] = ACTIONS(1747), + [anon_sym_out_GT] = ACTIONS(1747), + [anon_sym_e_GT] = ACTIONS(1747), + [anon_sym_o_GT] = ACTIONS(1747), + [anon_sym_err_PLUSout_GT] = ACTIONS(1747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), + [anon_sym_o_PLUSe_GT] = ACTIONS(1747), + [anon_sym_e_PLUSo_GT] = ACTIONS(1747), + [anon_sym_err_GT_GT] = ACTIONS(1749), + [anon_sym_out_GT_GT] = ACTIONS(1749), + [anon_sym_e_GT_GT] = ACTIONS(1749), + [anon_sym_o_GT_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), + [aux_sym_unquoted_token1] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(247), }, [1580] = { - [sym_cell_path] = STATE(1991), - [sym_path] = STATE(1840), [sym_comment] = STATE(1580), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1790), - [aux_sym_cmd_identifier_token40] = ACTIONS(1790), - [sym__newline] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_err_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_GT_PIPE] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1788), - [anon_sym_DASH_DASH] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1788), - [aux_sym_ctrl_match_token1] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT] = ACTIONS(1790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1790), - [anon_sym_DOT2] = ACTIONS(1788), - [aux_sym__val_number_decimal_token3] = ACTIONS(1790), - [aux_sym__val_number_token1] = ACTIONS(1790), - [aux_sym__val_number_token2] = ACTIONS(1790), - [aux_sym__val_number_token3] = ACTIONS(1790), - [anon_sym_0b] = ACTIONS(1788), - [anon_sym_0o] = ACTIONS(1788), - [anon_sym_0x] = ACTIONS(1788), - [sym_val_date] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [sym__str_single_quotes] = ACTIONS(1790), - [sym__str_back_ticks] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), - [anon_sym_err_GT] = ACTIONS(1788), - [anon_sym_out_GT] = ACTIONS(1788), - [anon_sym_e_GT] = ACTIONS(1788), - [anon_sym_o_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT] = ACTIONS(1788), - [anon_sym_err_GT_GT] = ACTIONS(1790), - [anon_sym_out_GT_GT] = ACTIONS(1790), - [anon_sym_e_GT_GT] = ACTIONS(1790), - [anon_sym_o_GT_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), + [anon_sym_DOT_DOT_LT] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [1581] = { - [sym_cell_path] = STATE(1992), - [sym_path] = STATE(1840), [sym_comment] = STATE(1581), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1794), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [sym__newline] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_err_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_GT_PIPE] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1792), - [aux_sym_ctrl_match_token1] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_LT] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1792), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [anon_sym_DOT2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1792), - [anon_sym_0o] = ACTIONS(1792), - [anon_sym_0x] = ACTIONS(1792), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1792), - [anon_sym_out_GT] = ACTIONS(1792), - [anon_sym_e_GT] = ACTIONS(1792), - [anon_sym_o_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT] = ACTIONS(1792), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(992), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(990), + [aux_sym_ctrl_match_token1] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_DOT_DOT_LT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), }, [1582] = { - [sym_cell_path] = STATE(1993), - [sym_path] = STATE(1840), + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1582), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1798), - [aux_sym_cmd_identifier_token38] = ACTIONS(1798), - [aux_sym_cmd_identifier_token39] = ACTIONS(1798), - [aux_sym_cmd_identifier_token40] = ACTIONS(1798), - [sym__newline] = ACTIONS(1798), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_err_GT_PIPE] = ACTIONS(1798), - [anon_sym_out_GT_PIPE] = ACTIONS(1798), - [anon_sym_e_GT_PIPE] = ACTIONS(1798), - [anon_sym_o_GT_PIPE] = ACTIONS(1798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1796), - [aux_sym_ctrl_match_token1] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_LT] = ACTIONS(1798), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [anon_sym_DOT2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_token1] = ACTIONS(1798), - [aux_sym__val_number_token2] = ACTIONS(1798), - [aux_sym__val_number_token3] = ACTIONS(1798), - [anon_sym_0b] = ACTIONS(1796), - [anon_sym_0o] = ACTIONS(1796), - [anon_sym_0x] = ACTIONS(1796), - [sym_val_date] = ACTIONS(1798), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym__str_single_quotes] = ACTIONS(1798), - [sym__str_back_ticks] = ACTIONS(1798), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1798), - [anon_sym_err_GT] = ACTIONS(1796), - [anon_sym_out_GT] = ACTIONS(1796), - [anon_sym_e_GT] = ACTIONS(1796), - [anon_sym_o_GT] = ACTIONS(1796), - [anon_sym_err_PLUSout_GT] = ACTIONS(1796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), - [anon_sym_o_PLUSe_GT] = ACTIONS(1796), - [anon_sym_e_PLUSo_GT] = ACTIONS(1796), - [anon_sym_err_GT_GT] = ACTIONS(1798), - [anon_sym_out_GT_GT] = ACTIONS(1798), - [anon_sym_e_GT_GT] = ACTIONS(1798), - [anon_sym_o_GT_GT] = ACTIONS(1798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1798), - [aux_sym_unquoted_token1] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1583] = { - [sym_cell_path] = STATE(1987), - [sym_path] = STATE(1840), [sym_comment] = STATE(1583), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1774), - [anon_sym_false] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [aux_sym_cmd_identifier_token38] = ACTIONS(1774), - [aux_sym_cmd_identifier_token39] = ACTIONS(1774), - [aux_sym_cmd_identifier_token40] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1772), - [aux_sym_ctrl_match_token1] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1774), - [anon_sym_DOT_DOT_LT] = ACTIONS(1774), - [aux_sym__val_number_decimal_token1] = ACTIONS(1772), - [aux_sym__val_number_decimal_token2] = ACTIONS(1774), - [anon_sym_DOT2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1774), - [aux_sym__val_number_token1] = ACTIONS(1774), - [aux_sym__val_number_token2] = ACTIONS(1774), - [aux_sym__val_number_token3] = ACTIONS(1774), - [anon_sym_0b] = ACTIONS(1772), - [anon_sym_0o] = ACTIONS(1772), - [anon_sym_0x] = ACTIONS(1772), - [sym_val_date] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [sym__str_single_quotes] = ACTIONS(1774), - [sym__str_back_ticks] = ACTIONS(1774), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [aux_sym_unquoted_token1] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [aux_sym_ctrl_match_token1] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, [1584] = { - [sym_cell_path] = STATE(1994), - [sym_path] = STATE(1840), [sym_comment] = STATE(1584), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1802), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1800), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1800), - [aux_sym_ctrl_match_token1] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT] = ACTIONS(1802), - [aux_sym__val_number_decimal_token1] = ACTIONS(1800), - [aux_sym__val_number_decimal_token2] = ACTIONS(1802), - [anon_sym_DOT2] = ACTIONS(1800), - [aux_sym__val_number_decimal_token3] = ACTIONS(1802), - [aux_sym__val_number_token1] = ACTIONS(1802), - [aux_sym__val_number_token2] = ACTIONS(1802), - [aux_sym__val_number_token3] = ACTIONS(1802), - [anon_sym_0b] = ACTIONS(1800), - [anon_sym_0o] = ACTIONS(1800), - [anon_sym_0x] = ACTIONS(1800), - [sym_val_date] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1802), - [sym__str_single_quotes] = ACTIONS(1802), - [sym__str_back_ticks] = ACTIONS(1802), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1800), - [anon_sym_out_GT] = ACTIONS(1800), - [anon_sym_e_GT] = ACTIONS(1800), - [anon_sym_o_GT] = ACTIONS(1800), - [anon_sym_err_PLUSout_GT] = ACTIONS(1800), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1800), - [anon_sym_o_PLUSe_GT] = ACTIONS(1800), - [anon_sym_e_PLUSo_GT] = ACTIONS(1800), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [aux_sym_unquoted_token1] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_EQ_GT] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [aux_sym_record_entry_token1] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(247), }, [1585] = { - [sym_path] = STATE(1694), [sym_comment] = STATE(1585), - [aux_sym_cell_path_repeat1] = STATE(1590), - [sym__newline] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_COMMA] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_in] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [aux_sym_ctrl_match_token1] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_EQ_GT] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4912), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1586] = { - [sym_cell_path] = STATE(2103), - [sym_path] = STATE(1694), + [sym_cell_path] = STATE(2027), + [sym_path] = STATE(1868), [sym_comment] = STATE(1586), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [aux_sym_ctrl_match_token1] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_and] = ACTIONS(1746), - [anon_sym_xor] = ACTIONS(1746), - [anon_sym_or] = ACTIONS(1746), - [anon_sym_not_DASHin] = ACTIONS(1746), - [anon_sym_starts_DASHwith] = ACTIONS(1746), - [anon_sym_ends_DASHwith] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1744), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_EQ_TILDE] = ACTIONS(1746), - [anon_sym_BANG_TILDE] = ACTIONS(1746), - [anon_sym_STAR_STAR] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1744), - [anon_sym_mod] = ACTIONS(1746), - [anon_sym_SLASH_SLASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_bit_DASHshl] = ACTIONS(1746), - [anon_sym_bit_DASHshr] = ACTIONS(1746), - [anon_sym_bit_DASHand] = ACTIONS(1746), - [anon_sym_bit_DASHxor] = ACTIONS(1746), - [anon_sym_bit_DASHor] = ACTIONS(1746), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1744), - [anon_sym_out_GT] = ACTIONS(1744), - [anon_sym_e_GT] = ACTIONS(1744), - [anon_sym_o_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT] = ACTIONS(1744), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1780), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), + [aux_sym_cmd_identifier_token38] = ACTIONS(1780), + [aux_sym_cmd_identifier_token39] = ACTIONS(1780), + [aux_sym_cmd_identifier_token40] = ACTIONS(1780), + [sym__newline] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_err_GT_PIPE] = ACTIONS(1780), + [anon_sym_out_GT_PIPE] = ACTIONS(1780), + [anon_sym_e_GT_PIPE] = ACTIONS(1780), + [anon_sym_o_GT_PIPE] = ACTIONS(1780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1778), + [aux_sym_ctrl_match_token1] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_LT] = ACTIONS(1780), + [aux_sym__val_number_decimal_token1] = ACTIONS(1778), + [aux_sym__val_number_decimal_token2] = ACTIONS(1780), + [aux_sym__val_number_decimal_token3] = ACTIONS(1780), + [aux_sym__val_number_decimal_token4] = ACTIONS(1780), + [aux_sym__val_number_token1] = ACTIONS(1780), + [aux_sym__val_number_token2] = ACTIONS(1780), + [aux_sym__val_number_token3] = ACTIONS(1780), + [anon_sym_0b] = ACTIONS(1778), + [anon_sym_0o] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1778), + [sym_val_date] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [sym__str_single_quotes] = ACTIONS(1780), + [sym__str_back_ticks] = ACTIONS(1780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1780), + [anon_sym_err_GT] = ACTIONS(1778), + [anon_sym_out_GT] = ACTIONS(1778), + [anon_sym_e_GT] = ACTIONS(1778), + [anon_sym_o_GT] = ACTIONS(1778), + [anon_sym_err_PLUSout_GT] = ACTIONS(1778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), + [anon_sym_o_PLUSe_GT] = ACTIONS(1778), + [anon_sym_e_PLUSo_GT] = ACTIONS(1778), + [anon_sym_err_GT_GT] = ACTIONS(1780), + [anon_sym_out_GT_GT] = ACTIONS(1780), + [anon_sym_e_GT_GT] = ACTIONS(1780), + [anon_sym_o_GT_GT] = ACTIONS(1780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1780), + [aux_sym_unquoted_token1] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(247), }, [1587] = { - [sym_cell_path] = STATE(2089), - [sym_path] = STATE(1694), + [sym_cell_path] = STATE(2067), + [sym_path] = STATE(1868), [sym_comment] = STATE(1587), - [aux_sym_cell_path_repeat1] = STATE(1585), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [aux_sym_ctrl_match_token1] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_EQ_GT] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [sym__newline] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_err_GT_PIPE] = ACTIONS(1826), + [anon_sym_out_GT_PIPE] = ACTIONS(1826), + [anon_sym_e_GT_PIPE] = ACTIONS(1826), + [anon_sym_o_GT_PIPE] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1824), + [aux_sym_ctrl_match_token1] = ACTIONS(1826), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_LT] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1824), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_0b] = ACTIONS(1824), + [anon_sym_0o] = ACTIONS(1824), + [anon_sym_0x] = ACTIONS(1824), + [sym_val_date] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), + [anon_sym_err_GT] = ACTIONS(1824), + [anon_sym_out_GT] = ACTIONS(1824), + [anon_sym_e_GT] = ACTIONS(1824), + [anon_sym_o_GT] = ACTIONS(1824), + [anon_sym_err_PLUSout_GT] = ACTIONS(1824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), + [anon_sym_o_PLUSe_GT] = ACTIONS(1824), + [anon_sym_e_PLUSo_GT] = ACTIONS(1824), + [anon_sym_err_GT_GT] = ACTIONS(1826), + [anon_sym_out_GT_GT] = ACTIONS(1826), + [anon_sym_e_GT_GT] = ACTIONS(1826), + [anon_sym_o_GT_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), + [aux_sym_unquoted_token1] = ACTIONS(1824), + [anon_sym_POUND] = ACTIONS(247), }, [1588] = { - [sym__immediate_decimal] = STATE(5940), + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1588), - [ts_builtin_sym_end] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_and] = ACTIONS(2925), - [anon_sym_xor] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2925), - [anon_sym_starts_DASHwith] = ACTIONS(2925), - [anon_sym_ends_DASHwith] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_EQ_TILDE] = ACTIONS(2925), - [anon_sym_BANG_TILDE] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_STAR_STAR] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_bit_DASHshl] = ACTIONS(2925), - [anon_sym_bit_DASHshr] = ACTIONS(2925), - [anon_sym_bit_DASHand] = ACTIONS(2925), - [anon_sym_bit_DASHxor] = ACTIONS(2925), - [anon_sym_bit_DASHor] = ACTIONS(2925), - [anon_sym_DOT] = ACTIONS(4842), - [aux_sym__immediate_decimal_token1] = ACTIONS(2933), - [aux_sym__immediate_decimal_token3] = ACTIONS(2933), - [aux_sym__immediate_decimal_token4] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token4] = ACTIONS(4781), - [aux_sym_unquoted_token6] = ACTIONS(4844), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1589] = { - [sym_cell_path] = STATE(1995), - [sym_path] = STATE(1840), [sym_comment] = STATE(1589), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [anon_sym_null] = ACTIONS(1806), - [aux_sym_cmd_identifier_token38] = ACTIONS(1806), - [aux_sym_cmd_identifier_token39] = ACTIONS(1806), - [aux_sym_cmd_identifier_token40] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_DASH_DASH] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1804), - [aux_sym_ctrl_match_token1] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1804), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1806), - [anon_sym_DOT_DOT_LT] = ACTIONS(1806), - [aux_sym__val_number_decimal_token1] = ACTIONS(1804), - [aux_sym__val_number_decimal_token2] = ACTIONS(1806), - [anon_sym_DOT2] = ACTIONS(1804), - [aux_sym__val_number_decimal_token3] = ACTIONS(1806), - [aux_sym__val_number_token1] = ACTIONS(1806), - [aux_sym__val_number_token2] = ACTIONS(1806), - [aux_sym__val_number_token3] = ACTIONS(1806), - [anon_sym_0b] = ACTIONS(1804), - [anon_sym_0o] = ACTIONS(1804), - [anon_sym_0x] = ACTIONS(1804), - [sym_val_date] = ACTIONS(1806), - [anon_sym_DQUOTE] = ACTIONS(1806), - [sym__str_single_quotes] = ACTIONS(1806), - [sym__str_back_ticks] = ACTIONS(1806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [aux_sym_unquoted_token1] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_LPAREN2] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4914), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1590] = { - [sym_path] = STATE(1694), + [sym__expr_parenthesized_immediate] = STATE(7583), [sym_comment] = STATE(1590), - [aux_sym_cell_path_repeat1] = STATE(1590), - [sym__newline] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_COMMA] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_in] = ACTIONS(895), - [anon_sym_if] = ACTIONS(895), - [aux_sym_ctrl_match_token1] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_DOT] = ACTIONS(4846), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_err_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_GT_PIPE] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(1537), + [aux_sym_expr_binary_token2] = ACTIONS(1537), + [aux_sym_expr_binary_token3] = ACTIONS(1537), + [aux_sym_expr_binary_token4] = ACTIONS(1537), + [aux_sym_expr_binary_token5] = ACTIONS(1537), + [aux_sym_expr_binary_token6] = ACTIONS(1537), + [aux_sym_expr_binary_token7] = ACTIONS(1537), + [aux_sym_expr_binary_token8] = ACTIONS(1537), + [aux_sym_expr_binary_token9] = ACTIONS(1537), + [aux_sym_expr_binary_token10] = ACTIONS(1537), + [aux_sym_expr_binary_token11] = ACTIONS(1537), + [aux_sym_expr_binary_token12] = ACTIONS(1537), + [aux_sym_expr_binary_token13] = ACTIONS(1537), + [aux_sym_expr_binary_token14] = ACTIONS(1537), + [aux_sym_expr_binary_token15] = ACTIONS(1537), + [aux_sym_expr_binary_token16] = ACTIONS(1537), + [aux_sym_expr_binary_token17] = ACTIONS(1537), + [aux_sym_expr_binary_token18] = ACTIONS(1537), + [aux_sym_expr_binary_token19] = ACTIONS(1537), + [aux_sym_expr_binary_token20] = ACTIONS(1537), + [aux_sym_expr_binary_token21] = ACTIONS(1537), + [aux_sym_expr_binary_token22] = ACTIONS(1537), + [aux_sym_expr_binary_token23] = ACTIONS(1537), + [aux_sym_expr_binary_token24] = ACTIONS(1537), + [aux_sym_expr_binary_token25] = ACTIONS(1537), + [aux_sym_expr_binary_token26] = ACTIONS(1537), + [aux_sym_expr_binary_token27] = ACTIONS(1537), + [aux_sym_expr_binary_token28] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(2949), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2951), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2951), + [sym_filesize_unit] = ACTIONS(4916), + [sym_duration_unit] = ACTIONS(4918), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [aux_sym_unquoted_token2] = ACTIONS(4920), + [anon_sym_POUND] = ACTIONS(247), }, [1591] = { + [sym_cell_path] = STATE(2102), + [sym_path] = STATE(1868), [sym_comment] = STATE(1591), - [aux_sym_cmd_identifier_token41] = ACTIONS(1376), - [sym__newline] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(4849), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [aux_sym_record_entry_token1] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1776), + [anon_sym_false] = ACTIONS(1776), + [anon_sym_null] = ACTIONS(1776), + [aux_sym_cmd_identifier_token38] = ACTIONS(1776), + [aux_sym_cmd_identifier_token39] = ACTIONS(1776), + [aux_sym_cmd_identifier_token40] = ACTIONS(1776), + [sym__newline] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_err_GT_PIPE] = ACTIONS(1776), + [anon_sym_out_GT_PIPE] = ACTIONS(1776), + [anon_sym_e_GT_PIPE] = ACTIONS(1776), + [anon_sym_o_GT_PIPE] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1774), + [aux_sym_ctrl_match_token1] = ACTIONS(1776), + [anon_sym_DOT_DOT] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1776), + [anon_sym_DOT_DOT_LT] = ACTIONS(1776), + [aux_sym__val_number_decimal_token1] = ACTIONS(1774), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1776), + [aux_sym__val_number_token2] = ACTIONS(1776), + [aux_sym__val_number_token3] = ACTIONS(1776), + [anon_sym_0b] = ACTIONS(1774), + [anon_sym_0o] = ACTIONS(1774), + [anon_sym_0x] = ACTIONS(1774), + [sym_val_date] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1776), + [sym__str_single_quotes] = ACTIONS(1776), + [sym__str_back_ticks] = ACTIONS(1776), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1776), + [anon_sym_err_GT] = ACTIONS(1774), + [anon_sym_out_GT] = ACTIONS(1774), + [anon_sym_e_GT] = ACTIONS(1774), + [anon_sym_o_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT] = ACTIONS(1774), + [anon_sym_err_GT_GT] = ACTIONS(1776), + [anon_sym_out_GT_GT] = ACTIONS(1776), + [anon_sym_e_GT_GT] = ACTIONS(1776), + [anon_sym_o_GT_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1776), + [aux_sym_unquoted_token1] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(247), }, [1592] = { - [sym_cell_path] = STATE(1988), - [sym_path] = STATE(1840), [sym_comment] = STATE(1592), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1778), - [aux_sym_cmd_identifier_token40] = ACTIONS(1778), - [sym__newline] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_err_GT_PIPE] = ACTIONS(1778), - [anon_sym_out_GT_PIPE] = ACTIONS(1778), - [anon_sym_e_GT_PIPE] = ACTIONS(1778), - [anon_sym_o_GT_PIPE] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1776), - [aux_sym_ctrl_match_token1] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1776), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_LT] = ACTIONS(1778), - [aux_sym__val_number_decimal_token1] = ACTIONS(1776), - [aux_sym__val_number_decimal_token2] = ACTIONS(1778), - [anon_sym_DOT2] = ACTIONS(1776), - [aux_sym__val_number_decimal_token3] = ACTIONS(1778), - [aux_sym__val_number_token1] = ACTIONS(1778), - [aux_sym__val_number_token2] = ACTIONS(1778), - [aux_sym__val_number_token3] = ACTIONS(1778), - [anon_sym_0b] = ACTIONS(1776), - [anon_sym_0o] = ACTIONS(1776), - [anon_sym_0x] = ACTIONS(1776), - [sym_val_date] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1778), - [sym__str_single_quotes] = ACTIONS(1778), - [sym__str_back_ticks] = ACTIONS(1778), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1778), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1778), - [anon_sym_out_GT_GT] = ACTIONS(1778), - [anon_sym_e_GT_GT] = ACTIONS(1778), - [anon_sym_o_GT_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1778), - [aux_sym_unquoted_token1] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1021), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_DOT_DOT_LT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(247), }, [1593] = { [sym_comment] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4805), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1481), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_EQ_GT] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [aux_sym_record_entry_token1] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(247), }, [1594] = { [sym_comment] = STATE(1594), - [ts_builtin_sym_end] = ACTIONS(1370), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [aux_sym_unquoted_token6] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1595] = { + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1595), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [aux_sym_cmd_identifier_token38] = ACTIONS(1869), - [aux_sym_cmd_identifier_token39] = ACTIONS(1869), - [aux_sym_cmd_identifier_token40] = ACTIONS(1869), - [sym__newline] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_err_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_GT_PIPE] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_RPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1863), - [aux_sym_ctrl_match_token1] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT2] = ACTIONS(4851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT] = ACTIONS(1863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4853), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [anon_sym_DOT2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [anon_sym_0b] = ACTIONS(1863), - [anon_sym_0o] = ACTIONS(1863), - [anon_sym_0x] = ACTIONS(1863), - [sym_val_date] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), - [anon_sym_err_GT] = ACTIONS(1863), - [anon_sym_out_GT] = ACTIONS(1863), - [anon_sym_e_GT] = ACTIONS(1863), - [anon_sym_o_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT] = ACTIONS(1863), - [anon_sym_err_GT_GT] = ACTIONS(1869), - [anon_sym_out_GT_GT] = ACTIONS(1869), - [anon_sym_e_GT_GT] = ACTIONS(1869), - [anon_sym_o_GT_GT] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), - [aux_sym_unquoted_token1] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1596] = { - [sym_cell_path] = STATE(1996), - [sym_path] = STATE(1840), + [sym__expr_parenthesized_immediate] = STATE(7616), [sym_comment] = STATE(1596), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1810), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [sym__newline] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_err_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_GT_PIPE] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1808), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1808), - [aux_sym_ctrl_match_token1] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [anon_sym_DOT2] = ACTIONS(1808), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1808), - [anon_sym_0o] = ACTIONS(1808), - [anon_sym_0x] = ACTIONS(1808), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_err_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_GT_PIPE] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), + [anon_sym_RPAREN] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3201), + [aux_sym_ctrl_match_token1] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_EQ_GT] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3199), + [aux_sym_expr_binary_token2] = ACTIONS(3199), + [aux_sym_expr_binary_token3] = ACTIONS(3199), + [aux_sym_expr_binary_token4] = ACTIONS(3199), + [aux_sym_expr_binary_token5] = ACTIONS(3199), + [aux_sym_expr_binary_token6] = ACTIONS(3199), + [aux_sym_expr_binary_token7] = ACTIONS(3199), + [aux_sym_expr_binary_token8] = ACTIONS(3199), + [aux_sym_expr_binary_token9] = ACTIONS(3199), + [aux_sym_expr_binary_token10] = ACTIONS(3199), + [aux_sym_expr_binary_token11] = ACTIONS(3199), + [aux_sym_expr_binary_token12] = ACTIONS(3199), + [aux_sym_expr_binary_token13] = ACTIONS(3199), + [aux_sym_expr_binary_token14] = ACTIONS(3199), + [aux_sym_expr_binary_token15] = ACTIONS(3199), + [aux_sym_expr_binary_token16] = ACTIONS(3199), + [aux_sym_expr_binary_token17] = ACTIONS(3199), + [aux_sym_expr_binary_token18] = ACTIONS(3199), + [aux_sym_expr_binary_token19] = ACTIONS(3199), + [aux_sym_expr_binary_token20] = ACTIONS(3199), + [aux_sym_expr_binary_token21] = ACTIONS(3199), + [aux_sym_expr_binary_token22] = ACTIONS(3199), + [aux_sym_expr_binary_token23] = ACTIONS(3199), + [aux_sym_expr_binary_token24] = ACTIONS(3199), + [aux_sym_expr_binary_token25] = ACTIONS(3199), + [aux_sym_expr_binary_token26] = ACTIONS(3199), + [aux_sym_expr_binary_token27] = ACTIONS(3199), + [aux_sym_expr_binary_token28] = ACTIONS(3199), + [anon_sym_err_GT] = ACTIONS(3201), + [anon_sym_out_GT] = ACTIONS(3201), + [anon_sym_e_GT] = ACTIONS(3201), + [anon_sym_o_GT] = ACTIONS(3201), + [anon_sym_err_PLUSout_GT] = ACTIONS(3201), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), + [anon_sym_o_PLUSe_GT] = ACTIONS(3201), + [anon_sym_e_PLUSo_GT] = ACTIONS(3201), + [anon_sym_err_GT_GT] = ACTIONS(3199), + [anon_sym_out_GT_GT] = ACTIONS(3199), + [anon_sym_e_GT_GT] = ACTIONS(3199), + [anon_sym_o_GT_GT] = ACTIONS(3199), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(247), }, [1597] = { [sym_comment] = STATE(1597), - [ts_builtin_sym_end] = ACTIONS(1400), - [aux_sym_cmd_identifier_token41] = ACTIONS(1398), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(4855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4857), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(996), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(996), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(994), + [aux_sym_ctrl_match_token1] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), }, [1598] = { [sym_comment] = STATE(1598), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1877), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1871), - [aux_sym_ctrl_match_token1] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DOT_DOT2] = ACTIONS(4859), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1871), - [anon_sym_DOT_DOT_LT] = ACTIONS(1871), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4861), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [anon_sym_DOT2] = ACTIONS(1871), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_EQ_GT] = ACTIONS(1587), + [aux_sym_expr_binary_token1] = ACTIONS(1587), + [aux_sym_expr_binary_token2] = ACTIONS(1587), + [aux_sym_expr_binary_token3] = ACTIONS(1587), + [aux_sym_expr_binary_token4] = ACTIONS(1587), + [aux_sym_expr_binary_token5] = ACTIONS(1587), + [aux_sym_expr_binary_token6] = ACTIONS(1587), + [aux_sym_expr_binary_token7] = ACTIONS(1587), + [aux_sym_expr_binary_token8] = ACTIONS(1587), + [aux_sym_expr_binary_token9] = ACTIONS(1587), + [aux_sym_expr_binary_token10] = ACTIONS(1587), + [aux_sym_expr_binary_token11] = ACTIONS(1587), + [aux_sym_expr_binary_token12] = ACTIONS(1587), + [aux_sym_expr_binary_token13] = ACTIONS(1587), + [aux_sym_expr_binary_token14] = ACTIONS(1587), + [aux_sym_expr_binary_token15] = ACTIONS(1587), + [aux_sym_expr_binary_token16] = ACTIONS(1587), + [aux_sym_expr_binary_token17] = ACTIONS(1587), + [aux_sym_expr_binary_token18] = ACTIONS(1587), + [aux_sym_expr_binary_token19] = ACTIONS(1587), + [aux_sym_expr_binary_token20] = ACTIONS(1587), + [aux_sym_expr_binary_token21] = ACTIONS(1587), + [aux_sym_expr_binary_token22] = ACTIONS(1587), + [aux_sym_expr_binary_token23] = ACTIONS(1587), + [aux_sym_expr_binary_token24] = ACTIONS(1587), + [aux_sym_expr_binary_token25] = ACTIONS(1587), + [aux_sym_expr_binary_token26] = ACTIONS(1587), + [aux_sym_expr_binary_token27] = ACTIONS(1587), + [aux_sym_expr_binary_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [aux_sym_record_entry_token1] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(247), }, [1599] = { - [sym_path] = STATE(1726), + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(1599), - [aux_sym_cell_path_repeat1] = STATE(1602), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_null] = ACTIONS(891), - [aux_sym_cmd_identifier_token38] = ACTIONS(891), - [aux_sym_cmd_identifier_token39] = ACTIONS(891), - [aux_sym_cmd_identifier_token40] = ACTIONS(891), - [sym__newline] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(889), - [aux_sym_ctrl_match_token1] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(891), - [anon_sym_DOT_DOT_LT] = ACTIONS(891), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [aux_sym_unquoted_token1] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3209), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_PIPE] = ACTIONS(3209), + [anon_sym_err_GT_PIPE] = ACTIONS(3209), + [anon_sym_out_GT_PIPE] = ACTIONS(3209), + [anon_sym_e_GT_PIPE] = ACTIONS(3209), + [anon_sym_o_GT_PIPE] = ACTIONS(3209), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3209), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3209), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3209), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3209), + [anon_sym_RPAREN] = ACTIONS(3209), + [anon_sym_COMMA] = ACTIONS(3209), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3211), + [aux_sym_ctrl_match_token1] = ACTIONS(3209), + [anon_sym_RBRACE] = ACTIONS(3209), + [anon_sym_EQ_GT] = ACTIONS(3209), + [anon_sym_LPAREN2] = ACTIONS(2947), + [aux_sym_expr_binary_token1] = ACTIONS(3209), + [aux_sym_expr_binary_token2] = ACTIONS(3209), + [aux_sym_expr_binary_token3] = ACTIONS(3209), + [aux_sym_expr_binary_token4] = ACTIONS(3209), + [aux_sym_expr_binary_token5] = ACTIONS(3209), + [aux_sym_expr_binary_token6] = ACTIONS(3209), + [aux_sym_expr_binary_token7] = ACTIONS(3209), + [aux_sym_expr_binary_token8] = ACTIONS(3209), + [aux_sym_expr_binary_token9] = ACTIONS(3209), + [aux_sym_expr_binary_token10] = ACTIONS(3209), + [aux_sym_expr_binary_token11] = ACTIONS(3209), + [aux_sym_expr_binary_token12] = ACTIONS(3209), + [aux_sym_expr_binary_token13] = ACTIONS(3209), + [aux_sym_expr_binary_token14] = ACTIONS(3209), + [aux_sym_expr_binary_token15] = ACTIONS(3209), + [aux_sym_expr_binary_token16] = ACTIONS(3209), + [aux_sym_expr_binary_token17] = ACTIONS(3209), + [aux_sym_expr_binary_token18] = ACTIONS(3209), + [aux_sym_expr_binary_token19] = ACTIONS(3209), + [aux_sym_expr_binary_token20] = ACTIONS(3209), + [aux_sym_expr_binary_token21] = ACTIONS(3209), + [aux_sym_expr_binary_token22] = ACTIONS(3209), + [aux_sym_expr_binary_token23] = ACTIONS(3209), + [aux_sym_expr_binary_token24] = ACTIONS(3209), + [aux_sym_expr_binary_token25] = ACTIONS(3209), + [aux_sym_expr_binary_token26] = ACTIONS(3209), + [aux_sym_expr_binary_token27] = ACTIONS(3209), + [aux_sym_expr_binary_token28] = ACTIONS(3209), + [anon_sym_err_GT] = ACTIONS(3211), + [anon_sym_out_GT] = ACTIONS(3211), + [anon_sym_e_GT] = ACTIONS(3211), + [anon_sym_o_GT] = ACTIONS(3211), + [anon_sym_err_PLUSout_GT] = ACTIONS(3211), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3211), + [anon_sym_o_PLUSe_GT] = ACTIONS(3211), + [anon_sym_e_PLUSo_GT] = ACTIONS(3211), + [anon_sym_err_GT_GT] = ACTIONS(3209), + [anon_sym_out_GT_GT] = ACTIONS(3209), + [anon_sym_e_GT_GT] = ACTIONS(3209), + [anon_sym_o_GT_GT] = ACTIONS(3209), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3209), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3209), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3209), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3209), + [anon_sym_POUND] = ACTIONS(247), }, [1600] = { [sym_comment] = STATE(1600), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1885), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_err_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_GT_PIPE] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1879), - [aux_sym_ctrl_match_token1] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT_DOT2] = ACTIONS(4863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1879), - [anon_sym_DOT_DOT_LT] = ACTIONS(1879), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [anon_sym_DOT2] = ACTIONS(1879), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), - [aux_sym_unquoted_token1] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [anon_sym_null] = ACTIONS(1941), + [aux_sym_cmd_identifier_token38] = ACTIONS(1941), + [aux_sym_cmd_identifier_token39] = ACTIONS(1941), + [aux_sym_cmd_identifier_token40] = ACTIONS(1941), + [sym__newline] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_err_GT_PIPE] = ACTIONS(1941), + [anon_sym_out_GT_PIPE] = ACTIONS(1941), + [anon_sym_e_GT_PIPE] = ACTIONS(1941), + [anon_sym_o_GT_PIPE] = ACTIONS(1941), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1941), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1941), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1941), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1935), + [aux_sym_ctrl_match_token1] = ACTIONS(1941), + [anon_sym_DOT_DOT] = ACTIONS(1935), + [anon_sym_DOT_DOT2] = ACTIONS(4922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), + [anon_sym_DOT_DOT_LT] = ACTIONS(1935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4924), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1941), + [aux_sym__val_number_decimal_token3] = ACTIONS(1941), + [aux_sym__val_number_decimal_token4] = ACTIONS(1941), + [aux_sym__val_number_token1] = ACTIONS(1941), + [aux_sym__val_number_token2] = ACTIONS(1941), + [aux_sym__val_number_token3] = ACTIONS(1941), + [anon_sym_0b] = ACTIONS(1935), + [anon_sym_0o] = ACTIONS(1935), + [anon_sym_0x] = ACTIONS(1935), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym__str_single_quotes] = ACTIONS(1941), + [sym__str_back_ticks] = ACTIONS(1941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1941), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1941), + [anon_sym_err_GT] = ACTIONS(1935), + [anon_sym_out_GT] = ACTIONS(1935), + [anon_sym_e_GT] = ACTIONS(1935), + [anon_sym_o_GT] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT] = ACTIONS(1935), + [anon_sym_err_GT_GT] = ACTIONS(1941), + [anon_sym_out_GT_GT] = ACTIONS(1941), + [anon_sym_e_GT_GT] = ACTIONS(1941), + [anon_sym_o_GT_GT] = ACTIONS(1941), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1941), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1941), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1941), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1941), + [aux_sym_unquoted_token1] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(247), }, [1601] = { [sym_comment] = STATE(1601), - [ts_builtin_sym_end] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_DOLLAR] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1701), - [aux_sym_ctrl_match_token1] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(4867), - [aux_sym__val_number_decimal_token1] = ACTIONS(1701), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [anon_sym_DOT2] = ACTIONS(1701), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [anon_sym_0b] = ACTIONS(1701), - [anon_sym_0o] = ACTIONS(1701), - [anon_sym_0x] = ACTIONS(1701), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1701), - [anon_sym_out_GT] = ACTIONS(1701), - [anon_sym_e_GT] = ACTIONS(1701), - [anon_sym_o_GT] = ACTIONS(1701), - [anon_sym_err_PLUSout_GT] = ACTIONS(1701), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), - [anon_sym_o_PLUSe_GT] = ACTIONS(1701), - [anon_sym_e_PLUSo_GT] = ACTIONS(1701), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1701), - [aux_sym_unquoted_token2] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1008), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [aux_sym_ctrl_match_token1] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(4926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4928), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4928), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), }, [1602] = { - [sym_path] = STATE(1726), [sym_comment] = STATE(1602), - [aux_sym_cell_path_repeat1] = STATE(1602), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [anon_sym_null] = ACTIONS(895), - [aux_sym_cmd_identifier_token38] = ACTIONS(895), - [aux_sym_cmd_identifier_token39] = ACTIONS(895), - [aux_sym_cmd_identifier_token40] = ACTIONS(895), - [sym__newline] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(893), - [aux_sym_ctrl_match_token1] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(4869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(895), - [anon_sym_DOT_DOT_LT] = ACTIONS(895), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(895), - [aux_sym__val_number_token1] = ACTIONS(895), - [aux_sym__val_number_token2] = ACTIONS(895), - [aux_sym__val_number_token3] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(893), - [anon_sym_0o] = ACTIONS(893), - [anon_sym_0x] = ACTIONS(893), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [aux_sym_unquoted_token1] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [aux_sym_ctrl_match_token1] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_EQ_GT] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(978), + [aux_sym_expr_binary_token1] = ACTIONS(978), + [aux_sym_expr_binary_token2] = ACTIONS(978), + [aux_sym_expr_binary_token3] = ACTIONS(978), + [aux_sym_expr_binary_token4] = ACTIONS(978), + [aux_sym_expr_binary_token5] = ACTIONS(978), + [aux_sym_expr_binary_token6] = ACTIONS(978), + [aux_sym_expr_binary_token7] = ACTIONS(978), + [aux_sym_expr_binary_token8] = ACTIONS(978), + [aux_sym_expr_binary_token9] = ACTIONS(978), + [aux_sym_expr_binary_token10] = ACTIONS(978), + [aux_sym_expr_binary_token11] = ACTIONS(978), + [aux_sym_expr_binary_token12] = ACTIONS(978), + [aux_sym_expr_binary_token13] = ACTIONS(978), + [aux_sym_expr_binary_token14] = ACTIONS(978), + [aux_sym_expr_binary_token15] = ACTIONS(978), + [aux_sym_expr_binary_token16] = ACTIONS(978), + [aux_sym_expr_binary_token17] = ACTIONS(978), + [aux_sym_expr_binary_token18] = ACTIONS(978), + [aux_sym_expr_binary_token19] = ACTIONS(978), + [aux_sym_expr_binary_token20] = ACTIONS(978), + [aux_sym_expr_binary_token21] = ACTIONS(978), + [aux_sym_expr_binary_token22] = ACTIONS(978), + [aux_sym_expr_binary_token23] = ACTIONS(978), + [aux_sym_expr_binary_token24] = ACTIONS(978), + [aux_sym_expr_binary_token25] = ACTIONS(978), + [aux_sym_expr_binary_token26] = ACTIONS(978), + [aux_sym_expr_binary_token27] = ACTIONS(978), + [aux_sym_expr_binary_token28] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [aux_sym_record_entry_token1] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), }, [1603] = { [sym_comment] = STATE(1603), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [anon_sym_null] = ACTIONS(1961), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1961), - [aux_sym_cmd_identifier_token40] = ACTIONS(1961), - [sym__newline] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_err_GT_PIPE] = ACTIONS(1961), - [anon_sym_out_GT_PIPE] = ACTIONS(1961), - [anon_sym_e_GT_PIPE] = ACTIONS(1961), - [anon_sym_o_GT_PIPE] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [aux_sym_ctrl_match_token1] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1959), - [anon_sym_DOT_DOT2] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1961), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [anon_sym_DOT2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [anon_sym_0b] = ACTIONS(1959), - [anon_sym_0o] = ACTIONS(1959), - [anon_sym_0x] = ACTIONS(1959), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), - [anon_sym_err_GT] = ACTIONS(1959), - [anon_sym_out_GT] = ACTIONS(1959), - [anon_sym_e_GT] = ACTIONS(1959), - [anon_sym_o_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT] = ACTIONS(1959), - [anon_sym_err_GT_GT] = ACTIONS(1961), - [anon_sym_out_GT_GT] = ACTIONS(1961), - [anon_sym_e_GT_GT] = ACTIONS(1961), - [anon_sym_o_GT_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1961), - [aux_sym_unquoted_token1] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1698), + [anon_sym_false] = ACTIONS(1698), + [anon_sym_null] = ACTIONS(1698), + [aux_sym_cmd_identifier_token38] = ACTIONS(1698), + [aux_sym_cmd_identifier_token39] = ACTIONS(1698), + [aux_sym_cmd_identifier_token40] = ACTIONS(1698), + [sym__newline] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_err_GT_PIPE] = ACTIONS(1698), + [anon_sym_out_GT_PIPE] = ACTIONS(1698), + [anon_sym_e_GT_PIPE] = ACTIONS(1698), + [anon_sym_o_GT_PIPE] = ACTIONS(1698), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1698), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1698), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1698), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_RPAREN] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1690), + [aux_sym_ctrl_match_token1] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_DOT_DOT] = ACTIONS(1690), + [anon_sym_LPAREN2] = ACTIONS(1692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_DOT_DOT_LT] = ACTIONS(1698), + [aux_sym__val_number_decimal_token1] = ACTIONS(1690), + [aux_sym__val_number_decimal_token2] = ACTIONS(1698), + [aux_sym__val_number_decimal_token3] = ACTIONS(1698), + [aux_sym__val_number_decimal_token4] = ACTIONS(1698), + [aux_sym__val_number_token1] = ACTIONS(1698), + [aux_sym__val_number_token2] = ACTIONS(1698), + [aux_sym__val_number_token3] = ACTIONS(1698), + [anon_sym_0b] = ACTIONS(1690), + [anon_sym_0o] = ACTIONS(1690), + [anon_sym_0x] = ACTIONS(1690), + [sym_val_date] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym__str_single_quotes] = ACTIONS(1698), + [sym__str_back_ticks] = ACTIONS(1698), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1698), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1698), + [anon_sym_err_GT] = ACTIONS(1690), + [anon_sym_out_GT] = ACTIONS(1690), + [anon_sym_e_GT] = ACTIONS(1690), + [anon_sym_o_GT] = ACTIONS(1690), + [anon_sym_err_PLUSout_GT] = ACTIONS(1690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1690), + [anon_sym_o_PLUSe_GT] = ACTIONS(1690), + [anon_sym_e_PLUSo_GT] = ACTIONS(1690), + [anon_sym_err_GT_GT] = ACTIONS(1698), + [anon_sym_out_GT_GT] = ACTIONS(1698), + [anon_sym_e_GT_GT] = ACTIONS(1698), + [anon_sym_o_GT_GT] = ACTIONS(1698), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1698), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1698), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1698), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1698), + [aux_sym_unquoted_token1] = ACTIONS(1690), + [aux_sym_unquoted_token2] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(247), }, [1604] = { [sym_comment] = STATE(1604), - [ts_builtin_sym_end] = ACTIONS(1378), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [aux_sym_unquoted_token6] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_null] = ACTIONS(2613), + [aux_sym_cmd_identifier_token38] = ACTIONS(2613), + [aux_sym_cmd_identifier_token39] = ACTIONS(2613), + [aux_sym_cmd_identifier_token40] = ACTIONS(2613), + [sym__newline] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_PIPE] = ACTIONS(2613), + [anon_sym_err_GT_PIPE] = ACTIONS(2613), + [anon_sym_out_GT_PIPE] = ACTIONS(2613), + [anon_sym_e_GT_PIPE] = ACTIONS(2613), + [anon_sym_o_GT_PIPE] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_RPAREN] = ACTIONS(2613), + [anon_sym_DOLLAR] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(4930), + [aux_sym_ctrl_match_token1] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_DOT_DOT2] = ACTIONS(4873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4930), + [anon_sym_DOT_DOT_LT] = ACTIONS(4930), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4875), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4875), + [aux_sym__val_number_decimal_token1] = ACTIONS(4930), + [aux_sym__val_number_decimal_token2] = ACTIONS(2613), + [aux_sym__val_number_decimal_token3] = ACTIONS(2613), + [aux_sym__val_number_decimal_token4] = ACTIONS(2613), + [aux_sym__val_number_token1] = ACTIONS(2613), + [aux_sym__val_number_token2] = ACTIONS(2613), + [aux_sym__val_number_token3] = ACTIONS(2613), + [anon_sym_0b] = ACTIONS(4930), + [anon_sym_0o] = ACTIONS(4930), + [anon_sym_0x] = ACTIONS(4930), + [sym_val_date] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym__str_single_quotes] = ACTIONS(2613), + [sym__str_back_ticks] = ACTIONS(2613), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2613), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2613), + [anon_sym_err_GT] = ACTIONS(4930), + [anon_sym_out_GT] = ACTIONS(4930), + [anon_sym_e_GT] = ACTIONS(4930), + [anon_sym_o_GT] = ACTIONS(4930), + [anon_sym_err_PLUSout_GT] = ACTIONS(4930), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4930), + [anon_sym_o_PLUSe_GT] = ACTIONS(4930), + [anon_sym_e_PLUSo_GT] = ACTIONS(4930), + [anon_sym_err_GT_GT] = ACTIONS(2613), + [anon_sym_out_GT_GT] = ACTIONS(2613), + [anon_sym_e_GT_GT] = ACTIONS(2613), + [anon_sym_o_GT_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2613), + [aux_sym_unquoted_token1] = ACTIONS(4930), + [anon_sym_POUND] = ACTIONS(247), }, [1605] = { - [sym_cell_path] = STATE(2045), - [sym_path] = STATE(1885), [sym_comment] = STATE(1605), - [aux_sym_cell_path_repeat1] = STATE(1619), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_err_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_GT_PIPE] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_and] = ACTIONS(1549), - [anon_sym_xor] = ACTIONS(1549), - [anon_sym_or] = ACTIONS(1549), - [anon_sym_not_DASHin] = ACTIONS(1549), - [anon_sym_starts_DASHwith] = ACTIONS(1549), - [anon_sym_ends_DASHwith] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1549), - [anon_sym_LT2] = ACTIONS(1545), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_EQ_TILDE] = ACTIONS(1549), - [anon_sym_BANG_TILDE] = ACTIONS(1549), - [anon_sym_STAR_STAR] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_mod] = ACTIONS(1549), - [anon_sym_SLASH_SLASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_bit_DASHshl] = ACTIONS(1549), - [anon_sym_bit_DASHshr] = ACTIONS(1549), - [anon_sym_bit_DASHand] = ACTIONS(1549), - [anon_sym_bit_DASHxor] = ACTIONS(1549), - [anon_sym_bit_DASHor] = ACTIONS(1549), - [anon_sym_DOT_DOT2] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(4872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [aux_sym_record_entry_token1] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1545), - [anon_sym_out_GT] = ACTIONS(1545), - [anon_sym_e_GT] = ACTIONS(1545), - [anon_sym_o_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT] = ACTIONS(1545), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token38] = ACTIONS(1955), + [aux_sym_cmd_identifier_token39] = ACTIONS(1955), + [aux_sym_cmd_identifier_token40] = ACTIONS(1955), + [sym__newline] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_err_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_GT_PIPE] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1953), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1953), + [aux_sym_ctrl_match_token1] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1953), + [anon_sym_DOT_DOT2] = ACTIONS(1953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1955), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token1] = ACTIONS(1953), + [aux_sym__val_number_decimal_token2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token3] = ACTIONS(1955), + [aux_sym__val_number_decimal_token4] = ACTIONS(1955), + [aux_sym__val_number_token1] = ACTIONS(1955), + [aux_sym__val_number_token2] = ACTIONS(1955), + [aux_sym__val_number_token3] = ACTIONS(1955), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0o] = ACTIONS(1953), + [anon_sym_0x] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym__str_single_quotes] = ACTIONS(1955), + [sym__str_back_ticks] = ACTIONS(1955), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), + [anon_sym_err_GT] = ACTIONS(1953), + [anon_sym_out_GT] = ACTIONS(1953), + [anon_sym_e_GT] = ACTIONS(1953), + [anon_sym_o_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT] = ACTIONS(1953), + [anon_sym_err_GT_GT] = ACTIONS(1955), + [anon_sym_out_GT_GT] = ACTIONS(1955), + [anon_sym_e_GT_GT] = ACTIONS(1955), + [anon_sym_o_GT_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), + [aux_sym_unquoted_token1] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(247), }, [1606] = { [sym_comment] = STATE(1606), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), + [aux_sym_cmd_identifier_token41] = ACTIONS(4932), + [sym__newline] = ACTIONS(1525), [anon_sym_SEMI] = ACTIONS(1537), [anon_sym_PIPE] = ACTIONS(1537), [anon_sym_err_GT_PIPE] = ACTIONS(1537), @@ -218498,43 +223913,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__immediate_decimal_token2] = ACTIONS(4874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1537), + [aux_sym_expr_binary_token1] = ACTIONS(1537), + [aux_sym_expr_binary_token2] = ACTIONS(1537), + [aux_sym_expr_binary_token3] = ACTIONS(1537), + [aux_sym_expr_binary_token4] = ACTIONS(1537), + [aux_sym_expr_binary_token5] = ACTIONS(1537), + [aux_sym_expr_binary_token6] = ACTIONS(1537), + [aux_sym_expr_binary_token7] = ACTIONS(1537), + [aux_sym_expr_binary_token8] = ACTIONS(1537), + [aux_sym_expr_binary_token9] = ACTIONS(1537), + [aux_sym_expr_binary_token10] = ACTIONS(1537), + [aux_sym_expr_binary_token11] = ACTIONS(1537), + [aux_sym_expr_binary_token12] = ACTIONS(1537), + [aux_sym_expr_binary_token13] = ACTIONS(1537), + [aux_sym_expr_binary_token14] = ACTIONS(1537), + [aux_sym_expr_binary_token15] = ACTIONS(1537), + [aux_sym_expr_binary_token16] = ACTIONS(1537), + [aux_sym_expr_binary_token17] = ACTIONS(1537), + [aux_sym_expr_binary_token18] = ACTIONS(1537), + [aux_sym_expr_binary_token19] = ACTIONS(1537), + [aux_sym_expr_binary_token20] = ACTIONS(1537), + [aux_sym_expr_binary_token21] = ACTIONS(1537), + [aux_sym_expr_binary_token22] = ACTIONS(1537), + [aux_sym_expr_binary_token23] = ACTIONS(1537), + [aux_sym_expr_binary_token24] = ACTIONS(1537), + [aux_sym_expr_binary_token25] = ACTIONS(1537), + [aux_sym_expr_binary_token26] = ACTIONS(1537), + [aux_sym_expr_binary_token27] = ACTIONS(1537), + [aux_sym_expr_binary_token28] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(4934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4936), + [sym_filesize_unit] = ACTIONS(4938), + [sym_duration_unit] = ACTIONS(4940), + [aux_sym_record_entry_token1] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), [anon_sym_err_GT_GT] = ACTIONS(1537), [anon_sym_out_GT_GT] = ACTIONS(1537), [anon_sym_e_GT_GT] = ACTIONS(1537), @@ -218543,4374 +223964,3561 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, [1607] = { [sym_comment] = STATE(1607), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(4876), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2925), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2925), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token2] = ACTIONS(4878), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4942), + [anon_sym_false] = ACTIONS(4942), + [anon_sym_null] = ACTIONS(4942), + [aux_sym_cmd_identifier_token38] = ACTIONS(4942), + [aux_sym_cmd_identifier_token39] = ACTIONS(4942), + [aux_sym_cmd_identifier_token40] = ACTIONS(4942), + [sym__newline] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_err_GT_PIPE] = ACTIONS(4944), + [anon_sym_out_GT_PIPE] = ACTIONS(4944), + [anon_sym_e_GT_PIPE] = ACTIONS(4944), + [anon_sym_o_GT_PIPE] = ACTIONS(4944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [anon_sym_RPAREN] = ACTIONS(4944), + [anon_sym_DOLLAR] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [aux_sym_ctrl_match_token1] = ACTIONS(4944), + [anon_sym_RBRACE] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4944), + [anon_sym_DOT_DOT_LT] = ACTIONS(4944), + [aux_sym__val_number_decimal_token1] = ACTIONS(4942), + [aux_sym__val_number_decimal_token2] = ACTIONS(4942), + [aux_sym__val_number_decimal_token3] = ACTIONS(4944), + [aux_sym__val_number_decimal_token4] = ACTIONS(4944), + [aux_sym__val_number_token1] = ACTIONS(4942), + [aux_sym__val_number_token2] = ACTIONS(4942), + [aux_sym__val_number_token3] = ACTIONS(4942), + [anon_sym_0b] = ACTIONS(4942), + [anon_sym_0o] = ACTIONS(4942), + [anon_sym_0x] = ACTIONS(4942), + [sym_val_date] = ACTIONS(4942), + [anon_sym_DQUOTE] = ACTIONS(4944), + [sym__str_single_quotes] = ACTIONS(4944), + [sym__str_back_ticks] = ACTIONS(4944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4944), + [anon_sym_err_GT] = ACTIONS(4942), + [anon_sym_out_GT] = ACTIONS(4942), + [anon_sym_e_GT] = ACTIONS(4942), + [anon_sym_o_GT] = ACTIONS(4942), + [anon_sym_err_PLUSout_GT] = ACTIONS(4942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4942), + [anon_sym_o_PLUSe_GT] = ACTIONS(4942), + [anon_sym_e_PLUSo_GT] = ACTIONS(4942), + [anon_sym_err_GT_GT] = ACTIONS(4944), + [anon_sym_out_GT_GT] = ACTIONS(4944), + [anon_sym_e_GT_GT] = ACTIONS(4944), + [anon_sym_o_GT_GT] = ACTIONS(4944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4944), + [anon_sym_EQ2] = ACTIONS(4946), + [sym_short_flag_identifier] = ACTIONS(4948), + [aux_sym_unquoted_token1] = ACTIONS(4942), + [anon_sym_POUND] = ACTIONS(247), }, [1608] = { - [sym_cell_path] = STATE(1997), - [sym_path] = STATE(1840), [sym_comment] = STATE(1608), - [aux_sym_cell_path_repeat1] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1814), - [anon_sym_false] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1814), - [aux_sym_cmd_identifier_token38] = ACTIONS(1814), - [aux_sym_cmd_identifier_token39] = ACTIONS(1814), - [aux_sym_cmd_identifier_token40] = ACTIONS(1814), - [sym__newline] = ACTIONS(1814), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_err_GT_PIPE] = ACTIONS(1814), - [anon_sym_out_GT_PIPE] = ACTIONS(1814), - [anon_sym_e_GT_PIPE] = ACTIONS(1814), - [anon_sym_o_GT_PIPE] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_DASH_DASH] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1812), - [aux_sym_ctrl_match_token1] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1814), - [anon_sym_DOT_DOT_LT] = ACTIONS(1814), - [aux_sym__val_number_decimal_token1] = ACTIONS(1812), - [aux_sym__val_number_decimal_token2] = ACTIONS(1814), - [anon_sym_DOT2] = ACTIONS(1812), - [aux_sym__val_number_decimal_token3] = ACTIONS(1814), - [aux_sym__val_number_token1] = ACTIONS(1814), - [aux_sym__val_number_token2] = ACTIONS(1814), - [aux_sym__val_number_token3] = ACTIONS(1814), - [anon_sym_0b] = ACTIONS(1812), - [anon_sym_0o] = ACTIONS(1812), - [anon_sym_0x] = ACTIONS(1812), - [sym_val_date] = ACTIONS(1814), - [anon_sym_DQUOTE] = ACTIONS(1814), - [sym__str_single_quotes] = ACTIONS(1814), - [sym__str_back_ticks] = ACTIONS(1814), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1814), - [anon_sym_err_GT] = ACTIONS(1812), - [anon_sym_out_GT] = ACTIONS(1812), - [anon_sym_e_GT] = ACTIONS(1812), - [anon_sym_o_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT] = ACTIONS(1812), - [anon_sym_err_GT_GT] = ACTIONS(1814), - [anon_sym_out_GT_GT] = ACTIONS(1814), - [anon_sym_e_GT_GT] = ACTIONS(1814), - [anon_sym_o_GT_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1814), - [aux_sym_unquoted_token1] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [aux_sym_ctrl_match_token1] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(247), }, [1609] = { [sym_comment] = STATE(1609), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [aux_sym_cmd_identifier_token38] = ACTIONS(1915), - [aux_sym_cmd_identifier_token39] = ACTIONS(1915), - [aux_sym_cmd_identifier_token40] = ACTIONS(1915), - [sym__newline] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_err_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_GT_PIPE] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1913), - [aux_sym_ctrl_match_token1] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_DOT_DOT2] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), - [anon_sym_DOT_DOT_LT] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [anon_sym_DOT2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [anon_sym_0b] = ACTIONS(1913), - [anon_sym_0o] = ACTIONS(1913), - [anon_sym_0x] = ACTIONS(1913), - [sym_val_date] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1915), - [anon_sym_err_GT] = ACTIONS(1913), - [anon_sym_out_GT] = ACTIONS(1913), - [anon_sym_e_GT] = ACTIONS(1913), - [anon_sym_o_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT] = ACTIONS(1913), - [anon_sym_err_GT_GT] = ACTIONS(1915), - [anon_sym_out_GT_GT] = ACTIONS(1915), - [anon_sym_e_GT_GT] = ACTIONS(1915), - [anon_sym_o_GT_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), - [aux_sym_unquoted_token1] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(962), + [aux_sym_ctrl_match_token1] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_EQ_GT] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(964), + [aux_sym_expr_binary_token1] = ACTIONS(964), + [aux_sym_expr_binary_token2] = ACTIONS(964), + [aux_sym_expr_binary_token3] = ACTIONS(964), + [aux_sym_expr_binary_token4] = ACTIONS(964), + [aux_sym_expr_binary_token5] = ACTIONS(964), + [aux_sym_expr_binary_token6] = ACTIONS(964), + [aux_sym_expr_binary_token7] = ACTIONS(964), + [aux_sym_expr_binary_token8] = ACTIONS(964), + [aux_sym_expr_binary_token9] = ACTIONS(964), + [aux_sym_expr_binary_token10] = ACTIONS(964), + [aux_sym_expr_binary_token11] = ACTIONS(964), + [aux_sym_expr_binary_token12] = ACTIONS(964), + [aux_sym_expr_binary_token13] = ACTIONS(964), + [aux_sym_expr_binary_token14] = ACTIONS(964), + [aux_sym_expr_binary_token15] = ACTIONS(964), + [aux_sym_expr_binary_token16] = ACTIONS(964), + [aux_sym_expr_binary_token17] = ACTIONS(964), + [aux_sym_expr_binary_token18] = ACTIONS(964), + [aux_sym_expr_binary_token19] = ACTIONS(964), + [aux_sym_expr_binary_token20] = ACTIONS(964), + [aux_sym_expr_binary_token21] = ACTIONS(964), + [aux_sym_expr_binary_token22] = ACTIONS(964), + [aux_sym_expr_binary_token23] = ACTIONS(964), + [aux_sym_expr_binary_token24] = ACTIONS(964), + [aux_sym_expr_binary_token25] = ACTIONS(964), + [aux_sym_expr_binary_token26] = ACTIONS(964), + [aux_sym_expr_binary_token27] = ACTIONS(964), + [aux_sym_expr_binary_token28] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(964), + [aux_sym_record_entry_token1] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(247), }, [1610] = { [sym_comment] = STATE(1610), - [anon_sym_true] = ACTIONS(1965), - [anon_sym_false] = ACTIONS(1965), - [anon_sym_null] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [sym__newline] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_err_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_GT_PIPE] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_RPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1963), - [aux_sym_ctrl_match_token1] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_DOT_DOT2] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [anon_sym_DOT2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [anon_sym_0b] = ACTIONS(1963), - [anon_sym_0o] = ACTIONS(1963), - [anon_sym_0x] = ACTIONS(1963), - [sym_val_date] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), - [anon_sym_err_GT] = ACTIONS(1963), - [anon_sym_out_GT] = ACTIONS(1963), - [anon_sym_e_GT] = ACTIONS(1963), - [anon_sym_o_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT] = ACTIONS(1963), - [anon_sym_err_GT_GT] = ACTIONS(1965), - [anon_sym_out_GT_GT] = ACTIONS(1965), - [anon_sym_e_GT_GT] = ACTIONS(1965), - [anon_sym_o_GT_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1965), - [aux_sym_unquoted_token1] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2087), + [anon_sym_false] = ACTIONS(2087), + [anon_sym_null] = ACTIONS(2087), + [aux_sym_cmd_identifier_token38] = ACTIONS(2087), + [aux_sym_cmd_identifier_token39] = ACTIONS(2087), + [aux_sym_cmd_identifier_token40] = ACTIONS(2087), + [sym__newline] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym_PIPE] = ACTIONS(2087), + [anon_sym_err_GT_PIPE] = ACTIONS(2087), + [anon_sym_out_GT_PIPE] = ACTIONS(2087), + [anon_sym_e_GT_PIPE] = ACTIONS(2087), + [anon_sym_o_GT_PIPE] = ACTIONS(2087), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2087), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2087), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2087), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2085), + [aux_sym_ctrl_match_token1] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_DOT_DOT] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2087), + [anon_sym_DOT_DOT_LT] = ACTIONS(2087), + [aux_sym__val_number_decimal_token1] = ACTIONS(2085), + [aux_sym__val_number_decimal_token2] = ACTIONS(2087), + [aux_sym__val_number_decimal_token3] = ACTIONS(2087), + [aux_sym__val_number_decimal_token4] = ACTIONS(2087), + [aux_sym__val_number_token1] = ACTIONS(2087), + [aux_sym__val_number_token2] = ACTIONS(2087), + [aux_sym__val_number_token3] = ACTIONS(2087), + [anon_sym_0b] = ACTIONS(2085), + [anon_sym_0o] = ACTIONS(2085), + [anon_sym_0x] = ACTIONS(2085), + [sym_val_date] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(2087), + [sym__str_single_quotes] = ACTIONS(2087), + [sym__str_back_ticks] = ACTIONS(2087), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2087), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), + [anon_sym_err_GT] = ACTIONS(2085), + [anon_sym_out_GT] = ACTIONS(2085), + [anon_sym_e_GT] = ACTIONS(2085), + [anon_sym_o_GT] = ACTIONS(2085), + [anon_sym_err_PLUSout_GT] = ACTIONS(2085), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2085), + [anon_sym_o_PLUSe_GT] = ACTIONS(2085), + [anon_sym_e_PLUSo_GT] = ACTIONS(2085), + [anon_sym_err_GT_GT] = ACTIONS(2087), + [anon_sym_out_GT_GT] = ACTIONS(2087), + [anon_sym_e_GT_GT] = ACTIONS(2087), + [anon_sym_o_GT_GT] = ACTIONS(2087), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2087), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2087), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2087), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2087), + [aux_sym_unquoted_token1] = ACTIONS(2085), + [aux_sym_unquoted_token2] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(247), }, [1611] = { [sym_comment] = STATE(1611), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1709), + [aux_sym_ctrl_match_token1] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1709), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(247), }, [1612] = { [sym_comment] = STATE(1612), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token38] = ACTIONS(2121), + [aux_sym_cmd_identifier_token39] = ACTIONS(2121), + [aux_sym_cmd_identifier_token40] = ACTIONS(2121), + [sym__newline] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2121), + [anon_sym_PIPE] = ACTIONS(2121), + [anon_sym_err_GT_PIPE] = ACTIONS(2121), + [anon_sym_out_GT_PIPE] = ACTIONS(2121), + [anon_sym_e_GT_PIPE] = ACTIONS(2121), + [anon_sym_o_GT_PIPE] = ACTIONS(2121), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2121), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2121), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2121), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_RPAREN] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(2117), + [anon_sym_DASH_DASH] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2117), + [aux_sym_ctrl_match_token1] = ACTIONS(2121), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_DOT_DOT] = ACTIONS(2117), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2121), + [anon_sym_DOT_DOT_LT] = ACTIONS(2121), + [aux_sym__val_number_decimal_token1] = ACTIONS(2117), + [aux_sym__val_number_decimal_token2] = ACTIONS(2121), + [aux_sym__val_number_decimal_token3] = ACTIONS(2121), + [aux_sym__val_number_decimal_token4] = ACTIONS(2121), + [aux_sym__val_number_token1] = ACTIONS(2121), + [aux_sym__val_number_token2] = ACTIONS(2121), + [aux_sym__val_number_token3] = ACTIONS(2121), + [anon_sym_0b] = ACTIONS(2117), + [anon_sym_0o] = ACTIONS(2117), + [anon_sym_0x] = ACTIONS(2117), + [sym_val_date] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [sym__str_single_quotes] = ACTIONS(2121), + [sym__str_back_ticks] = ACTIONS(2121), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), + [anon_sym_err_GT] = ACTIONS(2117), + [anon_sym_out_GT] = ACTIONS(2117), + [anon_sym_e_GT] = ACTIONS(2117), + [anon_sym_o_GT] = ACTIONS(2117), + [anon_sym_err_PLUSout_GT] = ACTIONS(2117), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2117), + [anon_sym_o_PLUSe_GT] = ACTIONS(2117), + [anon_sym_e_PLUSo_GT] = ACTIONS(2117), + [anon_sym_err_GT_GT] = ACTIONS(2121), + [anon_sym_out_GT_GT] = ACTIONS(2121), + [anon_sym_e_GT_GT] = ACTIONS(2121), + [anon_sym_o_GT_GT] = ACTIONS(2121), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2121), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2121), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2121), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2121), + [aux_sym_unquoted_token1] = ACTIONS(2117), + [aux_sym_unquoted_token2] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(247), }, [1613] = { [sym_comment] = STATE(1613), - [ts_builtin_sym_end] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_and] = ACTIONS(1506), - [anon_sym_xor] = ACTIONS(1506), - [anon_sym_or] = ACTIONS(1506), - [anon_sym_not_DASHin] = ACTIONS(1506), - [anon_sym_starts_DASHwith] = ACTIONS(1506), - [anon_sym_ends_DASHwith] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_TILDE] = ACTIONS(1506), - [anon_sym_BANG_TILDE] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_STAR_STAR] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_SLASH_SLASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_bit_DASHshl] = ACTIONS(1506), - [anon_sym_bit_DASHshr] = ACTIONS(1506), - [anon_sym_bit_DASHand] = ACTIONS(1506), - [anon_sym_bit_DASHxor] = ACTIONS(1506), - [anon_sym_bit_DASHor] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [sym_filesize_unit] = ACTIONS(1504), - [sym_duration_unit] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token6] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(2127), + [anon_sym_false] = ACTIONS(2127), + [anon_sym_null] = ACTIONS(2127), + [aux_sym_cmd_identifier_token38] = ACTIONS(2127), + [aux_sym_cmd_identifier_token39] = ACTIONS(2127), + [aux_sym_cmd_identifier_token40] = ACTIONS(2127), + [sym__newline] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_err_GT_PIPE] = ACTIONS(2127), + [anon_sym_out_GT_PIPE] = ACTIONS(2127), + [anon_sym_e_GT_PIPE] = ACTIONS(2127), + [anon_sym_o_GT_PIPE] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2123), + [aux_sym_ctrl_match_token1] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2123), + [anon_sym_LPAREN2] = ACTIONS(2125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [aux_sym__val_number_decimal_token2] = ACTIONS(2127), + [aux_sym__val_number_decimal_token3] = ACTIONS(2127), + [aux_sym__val_number_decimal_token4] = ACTIONS(2127), + [aux_sym__val_number_token1] = ACTIONS(2127), + [aux_sym__val_number_token2] = ACTIONS(2127), + [aux_sym__val_number_token3] = ACTIONS(2127), + [anon_sym_0b] = ACTIONS(2123), + [anon_sym_0o] = ACTIONS(2123), + [anon_sym_0x] = ACTIONS(2123), + [sym_val_date] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [sym__str_single_quotes] = ACTIONS(2127), + [sym__str_back_ticks] = ACTIONS(2127), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2127), + [anon_sym_err_GT] = ACTIONS(2123), + [anon_sym_out_GT] = ACTIONS(2123), + [anon_sym_e_GT] = ACTIONS(2123), + [anon_sym_o_GT] = ACTIONS(2123), + [anon_sym_err_PLUSout_GT] = ACTIONS(2123), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2123), + [anon_sym_o_PLUSe_GT] = ACTIONS(2123), + [anon_sym_e_PLUSo_GT] = ACTIONS(2123), + [anon_sym_err_GT_GT] = ACTIONS(2127), + [anon_sym_out_GT_GT] = ACTIONS(2127), + [anon_sym_e_GT_GT] = ACTIONS(2127), + [anon_sym_o_GT_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2127), + [aux_sym_unquoted_token1] = ACTIONS(2123), + [aux_sym_unquoted_token2] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(247), }, [1614] = { + [sym_cell_path] = STATE(2179), + [sym_path] = STATE(1426), [sym_comment] = STATE(1614), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [aux_sym_cmd_identifier_token38] = ACTIONS(1595), - [aux_sym_cmd_identifier_token39] = ACTIONS(1595), - [aux_sym_cmd_identifier_token40] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1587), - [aux_sym_ctrl_match_token1] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_DOT_DOT_LT] = ACTIONS(1595), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1595), - [anon_sym_DOT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1595), - [aux_sym__val_number_token1] = ACTIONS(1595), - [aux_sym__val_number_token2] = ACTIONS(1595), - [aux_sym__val_number_token3] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym__str_single_quotes] = ACTIONS(1595), - [sym__str_back_ticks] = ACTIONS(1595), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1595), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1595), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1297), + [ts_builtin_sym_end] = ACTIONS(1603), + [sym__newline] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_err_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_GT_PIPE] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), + [aux_sym_expr_binary_token1] = ACTIONS(1603), + [aux_sym_expr_binary_token2] = ACTIONS(1603), + [aux_sym_expr_binary_token3] = ACTIONS(1603), + [aux_sym_expr_binary_token4] = ACTIONS(1603), + [aux_sym_expr_binary_token5] = ACTIONS(1603), + [aux_sym_expr_binary_token6] = ACTIONS(1603), + [aux_sym_expr_binary_token7] = ACTIONS(1603), + [aux_sym_expr_binary_token8] = ACTIONS(1603), + [aux_sym_expr_binary_token9] = ACTIONS(1603), + [aux_sym_expr_binary_token10] = ACTIONS(1603), + [aux_sym_expr_binary_token11] = ACTIONS(1603), + [aux_sym_expr_binary_token12] = ACTIONS(1603), + [aux_sym_expr_binary_token13] = ACTIONS(1603), + [aux_sym_expr_binary_token14] = ACTIONS(1603), + [aux_sym_expr_binary_token15] = ACTIONS(1603), + [aux_sym_expr_binary_token16] = ACTIONS(1603), + [aux_sym_expr_binary_token17] = ACTIONS(1603), + [aux_sym_expr_binary_token18] = ACTIONS(1603), + [aux_sym_expr_binary_token19] = ACTIONS(1603), + [aux_sym_expr_binary_token20] = ACTIONS(1603), + [aux_sym_expr_binary_token21] = ACTIONS(1603), + [aux_sym_expr_binary_token22] = ACTIONS(1603), + [aux_sym_expr_binary_token23] = ACTIONS(1603), + [aux_sym_expr_binary_token24] = ACTIONS(1603), + [aux_sym_expr_binary_token25] = ACTIONS(1603), + [aux_sym_expr_binary_token26] = ACTIONS(1603), + [aux_sym_expr_binary_token27] = ACTIONS(1603), + [aux_sym_expr_binary_token28] = ACTIONS(1603), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4138), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(247), }, [1615] = { [sym_comment] = STATE(1615), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(4880), - [aux_sym__immediate_decimal_token2] = ACTIONS(4882), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), }, [1616] = { - [sym__expr_parenthesized_immediate] = STATE(7589), [sym_comment] = STATE(1616), - [anon_sym_true] = ACTIONS(4884), - [anon_sym_false] = ACTIONS(4884), - [anon_sym_null] = ACTIONS(4884), - [aux_sym_cmd_identifier_token38] = ACTIONS(4884), - [aux_sym_cmd_identifier_token39] = ACTIONS(4884), - [aux_sym_cmd_identifier_token40] = ACTIONS(4884), - [sym__newline] = ACTIONS(4884), - [anon_sym_SEMI] = ACTIONS(4884), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_err_GT_PIPE] = ACTIONS(4884), - [anon_sym_out_GT_PIPE] = ACTIONS(4884), - [anon_sym_e_GT_PIPE] = ACTIONS(4884), - [anon_sym_o_GT_PIPE] = ACTIONS(4884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4884), - [anon_sym_LBRACK] = ACTIONS(4884), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4884), - [anon_sym_DOLLAR] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4884), - [anon_sym_DASH] = ACTIONS(4886), - [aux_sym_ctrl_match_token1] = ACTIONS(4884), - [anon_sym_RBRACE] = ACTIONS(4884), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4884), - [anon_sym_DOT_DOT_LT] = ACTIONS(4884), - [aux_sym__val_number_decimal_token1] = ACTIONS(4886), - [aux_sym__val_number_decimal_token2] = ACTIONS(4884), - [anon_sym_DOT2] = ACTIONS(4886), - [aux_sym__val_number_decimal_token3] = ACTIONS(4884), - [aux_sym__val_number_token1] = ACTIONS(4884), - [aux_sym__val_number_token2] = ACTIONS(4884), - [aux_sym__val_number_token3] = ACTIONS(4884), - [anon_sym_0b] = ACTIONS(4886), - [anon_sym_0o] = ACTIONS(4886), - [anon_sym_0x] = ACTIONS(4886), - [sym_val_date] = ACTIONS(4884), - [anon_sym_DQUOTE] = ACTIONS(4884), - [sym__str_single_quotes] = ACTIONS(4884), - [sym__str_back_ticks] = ACTIONS(4884), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4884), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4884), - [anon_sym_err_GT] = ACTIONS(4886), - [anon_sym_out_GT] = ACTIONS(4886), - [anon_sym_e_GT] = ACTIONS(4886), - [anon_sym_o_GT] = ACTIONS(4886), - [anon_sym_err_PLUSout_GT] = ACTIONS(4886), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4886), - [anon_sym_o_PLUSe_GT] = ACTIONS(4886), - [anon_sym_e_PLUSo_GT] = ACTIONS(4886), - [anon_sym_err_GT_GT] = ACTIONS(4884), - [anon_sym_out_GT_GT] = ACTIONS(4884), - [anon_sym_e_GT_GT] = ACTIONS(4884), - [anon_sym_o_GT_GT] = ACTIONS(4884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4884), - [aux_sym_unquoted_token1] = ACTIONS(4886), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4950), + [anon_sym_false] = ACTIONS(4950), + [anon_sym_null] = ACTIONS(4950), + [aux_sym_cmd_identifier_token38] = ACTIONS(4950), + [aux_sym_cmd_identifier_token39] = ACTIONS(4952), + [aux_sym_cmd_identifier_token40] = ACTIONS(4950), + [sym_long_flag_identifier] = ACTIONS(4954), + [sym__newline] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_err_GT_PIPE] = ACTIONS(4952), + [anon_sym_out_GT_PIPE] = ACTIONS(4952), + [anon_sym_e_GT_PIPE] = ACTIONS(4952), + [anon_sym_o_GT_PIPE] = ACTIONS(4952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4950), + [aux_sym_ctrl_match_token1] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4952), + [anon_sym_DOT_DOT_LT] = ACTIONS(4952), + [aux_sym__val_number_decimal_token1] = ACTIONS(4950), + [aux_sym__val_number_decimal_token2] = ACTIONS(4952), + [aux_sym__val_number_decimal_token3] = ACTIONS(4952), + [aux_sym__val_number_decimal_token4] = ACTIONS(4952), + [aux_sym__val_number_token1] = ACTIONS(4950), + [aux_sym__val_number_token2] = ACTIONS(4950), + [aux_sym__val_number_token3] = ACTIONS(4950), + [anon_sym_0b] = ACTIONS(4950), + [anon_sym_0o] = ACTIONS(4950), + [anon_sym_0x] = ACTIONS(4950), + [sym_val_date] = ACTIONS(4950), + [anon_sym_DQUOTE] = ACTIONS(4952), + [sym__str_single_quotes] = ACTIONS(4952), + [sym__str_back_ticks] = ACTIONS(4952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4952), + [anon_sym_err_GT] = ACTIONS(4950), + [anon_sym_out_GT] = ACTIONS(4950), + [anon_sym_e_GT] = ACTIONS(4950), + [anon_sym_o_GT] = ACTIONS(4950), + [anon_sym_err_PLUSout_GT] = ACTIONS(4950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4950), + [anon_sym_o_PLUSe_GT] = ACTIONS(4950), + [anon_sym_e_PLUSo_GT] = ACTIONS(4950), + [anon_sym_err_GT_GT] = ACTIONS(4952), + [anon_sym_out_GT_GT] = ACTIONS(4952), + [anon_sym_e_GT_GT] = ACTIONS(4952), + [anon_sym_o_GT_GT] = ACTIONS(4952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4952), + [anon_sym_EQ2] = ACTIONS(4956), + [aux_sym_unquoted_token1] = ACTIONS(4950), + [anon_sym_POUND] = ACTIONS(247), }, [1617] = { [sym_comment] = STATE(1617), - [anon_sym_true] = ACTIONS(4888), - [anon_sym_false] = ACTIONS(4888), - [anon_sym_null] = ACTIONS(4888), - [aux_sym_cmd_identifier_token38] = ACTIONS(4888), - [aux_sym_cmd_identifier_token39] = ACTIONS(4888), - [aux_sym_cmd_identifier_token40] = ACTIONS(4888), - [sym__newline] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4890), - [anon_sym_err_GT_PIPE] = ACTIONS(4890), - [anon_sym_out_GT_PIPE] = ACTIONS(4890), - [anon_sym_e_GT_PIPE] = ACTIONS(4890), - [anon_sym_o_GT_PIPE] = ACTIONS(4890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_DOLLAR] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [aux_sym_ctrl_match_token1] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4888), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4890), - [anon_sym_DOT_DOT_LT] = ACTIONS(4890), - [aux_sym__val_number_decimal_token1] = ACTIONS(4888), - [aux_sym__val_number_decimal_token2] = ACTIONS(4888), - [anon_sym_DOT2] = ACTIONS(4888), - [aux_sym__val_number_decimal_token3] = ACTIONS(4890), - [aux_sym__val_number_token1] = ACTIONS(4888), - [aux_sym__val_number_token2] = ACTIONS(4888), - [aux_sym__val_number_token3] = ACTIONS(4888), - [anon_sym_0b] = ACTIONS(4888), - [anon_sym_0o] = ACTIONS(4888), - [anon_sym_0x] = ACTIONS(4888), - [sym_val_date] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(4890), - [sym__str_single_quotes] = ACTIONS(4890), - [sym__str_back_ticks] = ACTIONS(4890), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4890), - [anon_sym_err_GT] = ACTIONS(4888), - [anon_sym_out_GT] = ACTIONS(4888), - [anon_sym_e_GT] = ACTIONS(4888), - [anon_sym_o_GT] = ACTIONS(4888), - [anon_sym_err_PLUSout_GT] = ACTIONS(4888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4888), - [anon_sym_o_PLUSe_GT] = ACTIONS(4888), - [anon_sym_e_PLUSo_GT] = ACTIONS(4888), - [anon_sym_err_GT_GT] = ACTIONS(4890), - [anon_sym_out_GT_GT] = ACTIONS(4890), - [anon_sym_e_GT_GT] = ACTIONS(4890), - [anon_sym_o_GT_GT] = ACTIONS(4890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4890), - [anon_sym_EQ2] = ACTIONS(4892), - [sym_short_flag_identifier] = ACTIONS(4894), - [aux_sym_unquoted_token1] = ACTIONS(4888), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(966), + [aux_sym_ctrl_match_token1] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(247), }, [1618] = { [sym_comment] = STATE(1618), - [anon_sym_true] = ACTIONS(4896), - [anon_sym_false] = ACTIONS(4896), - [anon_sym_null] = ACTIONS(4896), - [aux_sym_cmd_identifier_token38] = ACTIONS(4896), - [aux_sym_cmd_identifier_token39] = ACTIONS(4896), - [aux_sym_cmd_identifier_token40] = ACTIONS(4896), - [sym__newline] = ACTIONS(4896), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4896), - [anon_sym_err_GT_PIPE] = ACTIONS(4896), - [anon_sym_out_GT_PIPE] = ACTIONS(4896), - [anon_sym_e_GT_PIPE] = ACTIONS(4896), - [anon_sym_o_GT_PIPE] = ACTIONS(4896), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4896), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4896), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4896), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_DOLLAR] = ACTIONS(4898), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_DASH] = ACTIONS(4898), - [aux_sym_ctrl_match_token1] = ACTIONS(4896), - [anon_sym_DOT_DOT] = ACTIONS(4898), - [anon_sym_DOT_DOT2] = ACTIONS(4817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4898), - [anon_sym_DOT_DOT_LT] = ACTIONS(4898), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4819), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4819), - [aux_sym__val_number_decimal_token1] = ACTIONS(4898), - [aux_sym__val_number_decimal_token2] = ACTIONS(4896), - [anon_sym_DOT2] = ACTIONS(4898), - [aux_sym__val_number_decimal_token3] = ACTIONS(4896), - [aux_sym__val_number_token1] = ACTIONS(4896), - [aux_sym__val_number_token2] = ACTIONS(4896), - [aux_sym__val_number_token3] = ACTIONS(4896), - [anon_sym_0b] = ACTIONS(4898), - [anon_sym_0o] = ACTIONS(4898), - [anon_sym_0x] = ACTIONS(4898), - [sym_val_date] = ACTIONS(4896), - [anon_sym_DQUOTE] = ACTIONS(4896), - [sym__str_single_quotes] = ACTIONS(4896), - [sym__str_back_ticks] = ACTIONS(4896), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4896), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4896), - [anon_sym_err_GT] = ACTIONS(4898), - [anon_sym_out_GT] = ACTIONS(4898), - [anon_sym_e_GT] = ACTIONS(4898), - [anon_sym_o_GT] = ACTIONS(4898), - [anon_sym_err_PLUSout_GT] = ACTIONS(4898), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4898), - [anon_sym_o_PLUSe_GT] = ACTIONS(4898), - [anon_sym_e_PLUSo_GT] = ACTIONS(4898), - [anon_sym_err_GT_GT] = ACTIONS(4896), - [anon_sym_out_GT_GT] = ACTIONS(4896), - [anon_sym_e_GT_GT] = ACTIONS(4896), - [anon_sym_o_GT_GT] = ACTIONS(4896), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4896), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4896), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4896), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4896), - [aux_sym_unquoted_token1] = ACTIONS(4898), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [anon_sym_null] = ACTIONS(2131), + [aux_sym_cmd_identifier_token38] = ACTIONS(2131), + [aux_sym_cmd_identifier_token39] = ACTIONS(2131), + [aux_sym_cmd_identifier_token40] = ACTIONS(2131), + [sym__newline] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_err_GT_PIPE] = ACTIONS(2133), + [anon_sym_out_GT_PIPE] = ACTIONS(2133), + [anon_sym_e_GT_PIPE] = ACTIONS(2133), + [anon_sym_o_GT_PIPE] = ACTIONS(2133), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2133), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2133), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2133), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2131), + [aux_sym_ctrl_match_token1] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), + [anon_sym_DOT_DOT_LT] = ACTIONS(2131), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2131), + [aux_sym__val_number_decimal_token4] = ACTIONS(2131), + [aux_sym__val_number_token1] = ACTIONS(2131), + [aux_sym__val_number_token2] = ACTIONS(2131), + [aux_sym__val_number_token3] = ACTIONS(2131), + [anon_sym_0b] = ACTIONS(2131), + [anon_sym_0o] = ACTIONS(2131), + [anon_sym_0x] = ACTIONS(2131), + [sym_val_date] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2133), + [sym__str_single_quotes] = ACTIONS(2133), + [sym__str_back_ticks] = ACTIONS(2133), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2133), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2133), + [anon_sym_err_GT] = ACTIONS(2131), + [anon_sym_out_GT] = ACTIONS(2131), + [anon_sym_e_GT] = ACTIONS(2131), + [anon_sym_o_GT] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT] = ACTIONS(2131), + [anon_sym_err_GT_GT] = ACTIONS(2131), + [anon_sym_out_GT_GT] = ACTIONS(2131), + [anon_sym_e_GT_GT] = ACTIONS(2131), + [anon_sym_o_GT_GT] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2131), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [aux_sym_unquoted_token4] = ACTIONS(2131), [anon_sym_POUND] = ACTIONS(3), }, [1619] = { - [sym_path] = STATE(1885), + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(1619), - [aux_sym_cell_path_repeat1] = STATE(1622), - [sym__newline] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_in] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(889), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(889), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_DOT_DOT2] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(4872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(891), - [aux_sym_record_entry_token1] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [anon_sym_null] = ACTIONS(3205), + [aux_sym_cmd_identifier_token38] = ACTIONS(3205), + [aux_sym_cmd_identifier_token39] = ACTIONS(3205), + [aux_sym_cmd_identifier_token40] = ACTIONS(3205), + [sym__newline] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_PIPE] = ACTIONS(3205), + [anon_sym_err_GT_PIPE] = ACTIONS(3205), + [anon_sym_out_GT_PIPE] = ACTIONS(3205), + [anon_sym_e_GT_PIPE] = ACTIONS(3205), + [anon_sym_o_GT_PIPE] = ACTIONS(3205), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3205), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3205), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3205), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_RPAREN] = ACTIONS(3205), + [anon_sym_DOLLAR] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3207), + [aux_sym_ctrl_match_token1] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_DOT_DOT] = ACTIONS(3207), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3205), + [anon_sym_DOT_DOT_LT] = ACTIONS(3205), + [aux_sym__val_number_decimal_token1] = ACTIONS(3207), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3205), + [aux_sym__val_number_decimal_token4] = ACTIONS(3205), + [aux_sym__val_number_token1] = ACTIONS(3205), + [aux_sym__val_number_token2] = ACTIONS(3205), + [aux_sym__val_number_token3] = ACTIONS(3205), + [anon_sym_0b] = ACTIONS(3207), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [sym__str_single_quotes] = ACTIONS(3205), + [sym__str_back_ticks] = ACTIONS(3205), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3205), + [anon_sym_err_GT] = ACTIONS(3207), + [anon_sym_out_GT] = ACTIONS(3207), + [anon_sym_e_GT] = ACTIONS(3207), + [anon_sym_o_GT] = ACTIONS(3207), + [anon_sym_err_PLUSout_GT] = ACTIONS(3207), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3207), + [anon_sym_o_PLUSe_GT] = ACTIONS(3207), + [anon_sym_e_PLUSo_GT] = ACTIONS(3207), + [anon_sym_err_GT_GT] = ACTIONS(3205), + [anon_sym_out_GT_GT] = ACTIONS(3205), + [anon_sym_e_GT_GT] = ACTIONS(3205), + [anon_sym_o_GT_GT] = ACTIONS(3205), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3205), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3205), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3205), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3205), + [aux_sym_unquoted_token1] = ACTIONS(3207), + [anon_sym_POUND] = ACTIONS(247), }, [1620] = { [sym_comment] = STATE(1620), - [sym__newline] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_err_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_GT_PIPE] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_in] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_EQ_GT] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_QMARK2] = ACTIONS(1441), - [anon_sym_and] = ACTIONS(1441), - [anon_sym_xor] = ACTIONS(1441), - [anon_sym_or] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1441), - [anon_sym_starts_DASHwith] = ACTIONS(1441), - [anon_sym_ends_DASHwith] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ_TILDE] = ACTIONS(1441), - [anon_sym_BANG_TILDE] = ACTIONS(1441), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_SLASH_SLASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_bit_DASHshl] = ACTIONS(1441), - [anon_sym_bit_DASHshr] = ACTIONS(1441), - [anon_sym_bit_DASHand] = ACTIONS(1441), - [anon_sym_bit_DASHxor] = ACTIONS(1441), - [anon_sym_bit_DASHor] = ACTIONS(1441), - [anon_sym_DOT] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [aux_sym_ctrl_match_token1] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(247), }, [1621] = { [sym_comment] = STATE(1621), - [aux_sym_cmd_identifier_token41] = ACTIONS(4900), - [sym__newline] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_err_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_GT_PIPE] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_in] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_and] = ACTIONS(1441), - [anon_sym_xor] = ACTIONS(1441), - [anon_sym_or] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1441), - [anon_sym_starts_DASHwith] = ACTIONS(1441), - [anon_sym_ends_DASHwith] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ_TILDE] = ACTIONS(1441), - [anon_sym_BANG_TILDE] = ACTIONS(1441), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_SLASH_SLASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_bit_DASHshl] = ACTIONS(1441), - [anon_sym_bit_DASHshr] = ACTIONS(1441), - [anon_sym_bit_DASHand] = ACTIONS(1441), - [anon_sym_bit_DASHxor] = ACTIONS(1441), - [anon_sym_bit_DASHor] = ACTIONS(1441), - [anon_sym_DOT_DOT2] = ACTIONS(4902), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4904), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4904), - [sym_filesize_unit] = ACTIONS(4906), - [sym_duration_unit] = ACTIONS(4908), - [aux_sym_record_entry_token1] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1483), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_LPAREN2] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1622] = { - [sym_path] = STATE(1885), [sym_comment] = STATE(1622), - [aux_sym_cell_path_repeat1] = STATE(1622), - [sym__newline] = ACTIONS(893), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_in] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(893), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_DOT_DOT2] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(4910), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(895), - [anon_sym_DOT_DOT_LT2] = ACTIONS(895), - [aux_sym_record_entry_token1] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(962), + [aux_sym_ctrl_match_token1] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(962), + [anon_sym_0x] = ACTIONS(962), + [sym_val_date] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(247), }, [1623] = { [sym_comment] = STATE(1623), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_null] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [sym__newline] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_err_GT_PIPE] = ACTIONS(972), + [anon_sym_out_GT_PIPE] = ACTIONS(972), + [anon_sym_e_GT_PIPE] = ACTIONS(972), + [anon_sym_o_GT_PIPE] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(970), + [aux_sym_ctrl_match_token1] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(970), + [anon_sym_QMARK2] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [anon_sym_DOT_DOT_LT] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [anon_sym_0b] = ACTIONS(970), + [anon_sym_0o] = ACTIONS(970), + [anon_sym_0x] = ACTIONS(970), + [sym_val_date] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(972), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [aux_sym_unquoted_token1] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(247), }, [1624] = { [sym_comment] = STATE(1624), - [sym__newline] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2371), - [anon_sym_PIPE] = ACTIONS(2371), - [anon_sym_err_GT_PIPE] = ACTIONS(2371), - [anon_sym_out_GT_PIPE] = ACTIONS(2371), - [anon_sym_e_GT_PIPE] = ACTIONS(2371), - [anon_sym_o_GT_PIPE] = ACTIONS(2371), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2371), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2371), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2371), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2371), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_COMMA] = ACTIONS(2371), - [anon_sym_GT] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_in] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [aux_sym_ctrl_match_token1] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_EQ_GT] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(2369), - [anon_sym_QMARK2] = ACTIONS(2371), - [anon_sym_and] = ACTIONS(2371), - [anon_sym_xor] = ACTIONS(2371), - [anon_sym_or] = ACTIONS(2371), - [anon_sym_not_DASHin] = ACTIONS(2371), - [anon_sym_starts_DASHwith] = ACTIONS(2371), - [anon_sym_ends_DASHwith] = ACTIONS(2371), - [anon_sym_EQ_EQ] = ACTIONS(2371), - [anon_sym_BANG_EQ] = ACTIONS(2371), - [anon_sym_LT2] = ACTIONS(2369), - [anon_sym_LT_EQ] = ACTIONS(2371), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_EQ_TILDE] = ACTIONS(2371), - [anon_sym_BANG_TILDE] = ACTIONS(2371), - [anon_sym_STAR_STAR] = ACTIONS(2371), - [anon_sym_PLUS_PLUS] = ACTIONS(2371), - [anon_sym_SLASH] = ACTIONS(2369), - [anon_sym_mod] = ACTIONS(2371), - [anon_sym_SLASH_SLASH] = ACTIONS(2371), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_bit_DASHshl] = ACTIONS(2371), - [anon_sym_bit_DASHshr] = ACTIONS(2371), - [anon_sym_bit_DASHand] = ACTIONS(2371), - [anon_sym_bit_DASHxor] = ACTIONS(2371), - [anon_sym_bit_DASHor] = ACTIONS(2371), - [anon_sym_DOT] = ACTIONS(2371), - [anon_sym_err_GT] = ACTIONS(2369), - [anon_sym_out_GT] = ACTIONS(2369), - [anon_sym_e_GT] = ACTIONS(2369), - [anon_sym_o_GT] = ACTIONS(2369), - [anon_sym_err_PLUSout_GT] = ACTIONS(2369), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2369), - [anon_sym_o_PLUSe_GT] = ACTIONS(2369), - [anon_sym_e_PLUSo_GT] = ACTIONS(2369), - [anon_sym_err_GT_GT] = ACTIONS(2371), - [anon_sym_out_GT_GT] = ACTIONS(2371), - [anon_sym_e_GT_GT] = ACTIONS(2371), - [anon_sym_o_GT_GT] = ACTIONS(2371), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2371), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2371), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2371), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2371), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [aux_sym_ctrl_match_token1] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_QMARK2] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_DOT_DOT_LT] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [1625] = { - [sym__expr_parenthesized_immediate] = STATE(7895), [sym_comment] = STATE(1625), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [anon_sym_null] = ACTIONS(3225), - [aux_sym_cmd_identifier_token38] = ACTIONS(3225), - [aux_sym_cmd_identifier_token39] = ACTIONS(3225), - [aux_sym_cmd_identifier_token40] = ACTIONS(3225), - [sym__newline] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3225), - [anon_sym_err_GT_PIPE] = ACTIONS(3225), - [anon_sym_out_GT_PIPE] = ACTIONS(3225), - [anon_sym_e_GT_PIPE] = ACTIONS(3225), - [anon_sym_o_GT_PIPE] = ACTIONS(3225), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3225), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3225), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3225), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_RPAREN] = ACTIONS(3225), - [anon_sym_DOLLAR] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3227), - [aux_sym_ctrl_match_token1] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3225), - [anon_sym_DOT_DOT_LT] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3225), - [anon_sym_DOT2] = ACTIONS(3227), - [aux_sym__val_number_decimal_token3] = ACTIONS(3225), - [aux_sym__val_number_token1] = ACTIONS(3225), - [aux_sym__val_number_token2] = ACTIONS(3225), - [aux_sym__val_number_token3] = ACTIONS(3225), - [anon_sym_0b] = ACTIONS(3227), - [anon_sym_0o] = ACTIONS(3227), - [anon_sym_0x] = ACTIONS(3227), - [sym_val_date] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym__str_single_quotes] = ACTIONS(3225), - [sym__str_back_ticks] = ACTIONS(3225), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3225), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3225), - [anon_sym_err_GT] = ACTIONS(3227), - [anon_sym_out_GT] = ACTIONS(3227), - [anon_sym_e_GT] = ACTIONS(3227), - [anon_sym_o_GT] = ACTIONS(3227), - [anon_sym_err_PLUSout_GT] = ACTIONS(3227), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3227), - [anon_sym_o_PLUSe_GT] = ACTIONS(3227), - [anon_sym_e_PLUSo_GT] = ACTIONS(3227), - [anon_sym_err_GT_GT] = ACTIONS(3225), - [anon_sym_out_GT_GT] = ACTIONS(3225), - [anon_sym_e_GT_GT] = ACTIONS(3225), - [anon_sym_o_GT_GT] = ACTIONS(3225), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3225), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3225), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3225), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3225), - [aux_sym_unquoted_token1] = ACTIONS(3227), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(994), + [aux_sym_ctrl_match_token1] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_EQ_GT] = ACTIONS(996), + [aux_sym_expr_binary_token1] = ACTIONS(996), + [aux_sym_expr_binary_token2] = ACTIONS(996), + [aux_sym_expr_binary_token3] = ACTIONS(996), + [aux_sym_expr_binary_token4] = ACTIONS(996), + [aux_sym_expr_binary_token5] = ACTIONS(996), + [aux_sym_expr_binary_token6] = ACTIONS(996), + [aux_sym_expr_binary_token7] = ACTIONS(996), + [aux_sym_expr_binary_token8] = ACTIONS(996), + [aux_sym_expr_binary_token9] = ACTIONS(996), + [aux_sym_expr_binary_token10] = ACTIONS(996), + [aux_sym_expr_binary_token11] = ACTIONS(996), + [aux_sym_expr_binary_token12] = ACTIONS(996), + [aux_sym_expr_binary_token13] = ACTIONS(996), + [aux_sym_expr_binary_token14] = ACTIONS(996), + [aux_sym_expr_binary_token15] = ACTIONS(996), + [aux_sym_expr_binary_token16] = ACTIONS(996), + [aux_sym_expr_binary_token17] = ACTIONS(996), + [aux_sym_expr_binary_token18] = ACTIONS(996), + [aux_sym_expr_binary_token19] = ACTIONS(996), + [aux_sym_expr_binary_token20] = ACTIONS(996), + [aux_sym_expr_binary_token21] = ACTIONS(996), + [aux_sym_expr_binary_token22] = ACTIONS(996), + [aux_sym_expr_binary_token23] = ACTIONS(996), + [aux_sym_expr_binary_token24] = ACTIONS(996), + [aux_sym_expr_binary_token25] = ACTIONS(996), + [aux_sym_expr_binary_token26] = ACTIONS(996), + [aux_sym_expr_binary_token27] = ACTIONS(996), + [aux_sym_expr_binary_token28] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), }, [1626] = { + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(1626), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [aux_sym_unquoted_token2] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3209), + [anon_sym_false] = ACTIONS(3209), + [anon_sym_null] = ACTIONS(3209), + [aux_sym_cmd_identifier_token38] = ACTIONS(3209), + [aux_sym_cmd_identifier_token39] = ACTIONS(3209), + [aux_sym_cmd_identifier_token40] = ACTIONS(3209), + [sym__newline] = ACTIONS(3209), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_PIPE] = ACTIONS(3209), + [anon_sym_err_GT_PIPE] = ACTIONS(3209), + [anon_sym_out_GT_PIPE] = ACTIONS(3209), + [anon_sym_e_GT_PIPE] = ACTIONS(3209), + [anon_sym_o_GT_PIPE] = ACTIONS(3209), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3209), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3209), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3209), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_RPAREN] = ACTIONS(3209), + [anon_sym_DOLLAR] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3211), + [aux_sym_ctrl_match_token1] = ACTIONS(3209), + [anon_sym_RBRACE] = ACTIONS(3209), + [anon_sym_DOT_DOT] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3209), + [anon_sym_DOT_DOT_LT] = ACTIONS(3209), + [aux_sym__val_number_decimal_token1] = ACTIONS(3211), + [aux_sym__val_number_decimal_token2] = ACTIONS(3209), + [aux_sym__val_number_decimal_token3] = ACTIONS(3209), + [aux_sym__val_number_decimal_token4] = ACTIONS(3209), + [aux_sym__val_number_token1] = ACTIONS(3209), + [aux_sym__val_number_token2] = ACTIONS(3209), + [aux_sym__val_number_token3] = ACTIONS(3209), + [anon_sym_0b] = ACTIONS(3211), + [anon_sym_0o] = ACTIONS(3211), + [anon_sym_0x] = ACTIONS(3211), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym__str_single_quotes] = ACTIONS(3209), + [sym__str_back_ticks] = ACTIONS(3209), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3209), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3209), + [anon_sym_err_GT] = ACTIONS(3211), + [anon_sym_out_GT] = ACTIONS(3211), + [anon_sym_e_GT] = ACTIONS(3211), + [anon_sym_o_GT] = ACTIONS(3211), + [anon_sym_err_PLUSout_GT] = ACTIONS(3211), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3211), + [anon_sym_o_PLUSe_GT] = ACTIONS(3211), + [anon_sym_e_PLUSo_GT] = ACTIONS(3211), + [anon_sym_err_GT_GT] = ACTIONS(3209), + [anon_sym_out_GT_GT] = ACTIONS(3209), + [anon_sym_e_GT_GT] = ACTIONS(3209), + [anon_sym_o_GT_GT] = ACTIONS(3209), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3209), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3209), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3209), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3209), + [aux_sym_unquoted_token1] = ACTIONS(3211), + [anon_sym_POUND] = ACTIONS(247), }, [1627] = { - [sym__expr_parenthesized_immediate] = STATE(7895), [sym_comment] = STATE(1627), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3235), - [aux_sym_cmd_identifier_token39] = ACTIONS(3235), - [aux_sym_cmd_identifier_token40] = ACTIONS(3235), - [sym__newline] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_err_GT_PIPE] = ACTIONS(3235), - [anon_sym_out_GT_PIPE] = ACTIONS(3235), - [anon_sym_e_GT_PIPE] = ACTIONS(3235), - [anon_sym_o_GT_PIPE] = ACTIONS(3235), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3235), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3235), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3235), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_RPAREN] = ACTIONS(3235), - [anon_sym_DOLLAR] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3237), - [aux_sym_ctrl_match_token1] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_DOT_DOT] = ACTIONS(3237), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3235), - [anon_sym_DOT_DOT_LT] = ACTIONS(3235), - [aux_sym__val_number_decimal_token1] = ACTIONS(3237), - [aux_sym__val_number_decimal_token2] = ACTIONS(3235), - [anon_sym_DOT2] = ACTIONS(3237), - [aux_sym__val_number_decimal_token3] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(3235), - [aux_sym__val_number_token2] = ACTIONS(3235), - [aux_sym__val_number_token3] = ACTIONS(3235), - [anon_sym_0b] = ACTIONS(3237), - [anon_sym_0o] = ACTIONS(3237), - [anon_sym_0x] = ACTIONS(3237), - [sym_val_date] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [sym__str_single_quotes] = ACTIONS(3235), - [sym__str_back_ticks] = ACTIONS(3235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3235), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3235), - [anon_sym_err_GT] = ACTIONS(3237), - [anon_sym_out_GT] = ACTIONS(3237), - [anon_sym_e_GT] = ACTIONS(3237), - [anon_sym_o_GT] = ACTIONS(3237), - [anon_sym_err_PLUSout_GT] = ACTIONS(3237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3237), - [anon_sym_o_PLUSe_GT] = ACTIONS(3237), - [anon_sym_e_PLUSo_GT] = ACTIONS(3237), - [anon_sym_err_GT_GT] = ACTIONS(3235), - [anon_sym_out_GT_GT] = ACTIONS(3235), - [anon_sym_e_GT_GT] = ACTIONS(3235), - [anon_sym_o_GT_GT] = ACTIONS(3235), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3235), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3235), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3235), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3235), - [aux_sym_unquoted_token1] = ACTIONS(3237), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1021), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_DOT_DOT_LT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(247), }, [1628] = { - [sym_cmd_identifier] = STATE(2129), - [sym__command_name] = STATE(6457), - [sym_scope_pattern] = STATE(6815), - [sym_wild_card] = STATE(6459), - [sym_command_list] = STATE(6461), - [sym__val_number_decimal] = STATE(7158), - [sym_val_string] = STATE(2131), - [sym__str_double_quotes] = STATE(2137), + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(1628), - [aux_sym_cmd_identifier_token1] = ACTIONS(4913), - [aux_sym_cmd_identifier_token2] = ACTIONS(4915), - [aux_sym_cmd_identifier_token3] = ACTIONS(4915), - [aux_sym_cmd_identifier_token4] = ACTIONS(4915), - [aux_sym_cmd_identifier_token5] = ACTIONS(4915), - [aux_sym_cmd_identifier_token6] = ACTIONS(4915), - [aux_sym_cmd_identifier_token7] = ACTIONS(4915), - [aux_sym_cmd_identifier_token8] = ACTIONS(4915), - [aux_sym_cmd_identifier_token9] = ACTIONS(4913), - [aux_sym_cmd_identifier_token10] = ACTIONS(4915), - [aux_sym_cmd_identifier_token11] = ACTIONS(4915), - [aux_sym_cmd_identifier_token12] = ACTIONS(4915), - [aux_sym_cmd_identifier_token13] = ACTIONS(4913), - [aux_sym_cmd_identifier_token14] = ACTIONS(4915), - [aux_sym_cmd_identifier_token15] = ACTIONS(4913), - [aux_sym_cmd_identifier_token16] = ACTIONS(4915), - [aux_sym_cmd_identifier_token17] = ACTIONS(4915), - [aux_sym_cmd_identifier_token18] = ACTIONS(4915), - [aux_sym_cmd_identifier_token19] = ACTIONS(4915), - [aux_sym_cmd_identifier_token20] = ACTIONS(4915), - [aux_sym_cmd_identifier_token21] = ACTIONS(4915), - [aux_sym_cmd_identifier_token22] = ACTIONS(4915), - [aux_sym_cmd_identifier_token23] = ACTIONS(4915), - [aux_sym_cmd_identifier_token24] = ACTIONS(4915), - [aux_sym_cmd_identifier_token25] = ACTIONS(4915), - [aux_sym_cmd_identifier_token26] = ACTIONS(4915), - [aux_sym_cmd_identifier_token27] = ACTIONS(4915), - [aux_sym_cmd_identifier_token28] = ACTIONS(4915), - [aux_sym_cmd_identifier_token29] = ACTIONS(4915), - [aux_sym_cmd_identifier_token30] = ACTIONS(4915), - [aux_sym_cmd_identifier_token31] = ACTIONS(4915), - [aux_sym_cmd_identifier_token32] = ACTIONS(4915), - [aux_sym_cmd_identifier_token33] = ACTIONS(4915), - [aux_sym_cmd_identifier_token34] = ACTIONS(4915), - [aux_sym_cmd_identifier_token35] = ACTIONS(4915), - [aux_sym_cmd_identifier_token36] = ACTIONS(4913), - [anon_sym_true] = ACTIONS(4917), - [anon_sym_false] = ACTIONS(4917), - [anon_sym_null] = ACTIONS(4917), - [aux_sym_cmd_identifier_token38] = ACTIONS(4919), - [aux_sym_cmd_identifier_token39] = ACTIONS(4917), - [aux_sym_cmd_identifier_token40] = ACTIONS(4917), - [sym__newline] = ACTIONS(4921), - [anon_sym_SEMI] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_RBRACE] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1196), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(4927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3259), + [aux_sym_cmd_identifier_token38] = ACTIONS(3259), + [aux_sym_cmd_identifier_token39] = ACTIONS(3259), + [aux_sym_cmd_identifier_token40] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_PIPE] = ACTIONS(3259), + [anon_sym_err_GT_PIPE] = ACTIONS(3259), + [anon_sym_out_GT_PIPE] = ACTIONS(3259), + [anon_sym_e_GT_PIPE] = ACTIONS(3259), + [anon_sym_o_GT_PIPE] = ACTIONS(3259), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3259), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3259), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3259), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_RPAREN] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3261), + [aux_sym_ctrl_match_token1] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3259), + [anon_sym_DOT_DOT_LT] = ACTIONS(3259), + [aux_sym__val_number_decimal_token1] = ACTIONS(3261), + [aux_sym__val_number_decimal_token2] = ACTIONS(3259), + [aux_sym__val_number_decimal_token3] = ACTIONS(3259), + [aux_sym__val_number_decimal_token4] = ACTIONS(3259), + [aux_sym__val_number_token1] = ACTIONS(3259), + [aux_sym__val_number_token2] = ACTIONS(3259), + [aux_sym__val_number_token3] = ACTIONS(3259), + [anon_sym_0b] = ACTIONS(3261), + [anon_sym_0o] = ACTIONS(3261), + [anon_sym_0x] = ACTIONS(3261), + [sym_val_date] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(3259), + [sym__str_single_quotes] = ACTIONS(3259), + [sym__str_back_ticks] = ACTIONS(3259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3259), + [anon_sym_err_GT] = ACTIONS(3261), + [anon_sym_out_GT] = ACTIONS(3261), + [anon_sym_e_GT] = ACTIONS(3261), + [anon_sym_o_GT] = ACTIONS(3261), + [anon_sym_err_PLUSout_GT] = ACTIONS(3261), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3261), + [anon_sym_o_PLUSe_GT] = ACTIONS(3261), + [anon_sym_e_PLUSo_GT] = ACTIONS(3261), + [anon_sym_err_GT_GT] = ACTIONS(3259), + [anon_sym_out_GT_GT] = ACTIONS(3259), + [anon_sym_e_GT_GT] = ACTIONS(3259), + [anon_sym_o_GT_GT] = ACTIONS(3259), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3259), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3259), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3259), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3259), + [aux_sym_unquoted_token1] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(247), }, [1629] = { [sym_comment] = STATE(1629), - [sym__newline] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_err_GT_PIPE] = ACTIONS(922), - [anon_sym_out_GT_PIPE] = ACTIONS(922), - [anon_sym_e_GT_PIPE] = ACTIONS(922), - [anon_sym_o_GT_PIPE] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_in] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [aux_sym_ctrl_match_token1] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_and] = ACTIONS(922), - [anon_sym_xor] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_not_DASHin] = ACTIONS(922), - [anon_sym_starts_DASHwith] = ACTIONS(922), - [anon_sym_ends_DASHwith] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT2] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_TILDE] = ACTIONS(922), - [anon_sym_BANG_TILDE] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_mod] = ACTIONS(922), - [anon_sym_SLASH_SLASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_bit_DASHshl] = ACTIONS(922), - [anon_sym_bit_DASHshr] = ACTIONS(922), - [anon_sym_bit_DASHand] = ACTIONS(922), - [anon_sym_bit_DASHxor] = ACTIONS(922), - [anon_sym_bit_DASHor] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_LPAREN2] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1630] = { [sym_comment] = STATE(1630), - [ts_builtin_sym_end] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1877), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1871), - [aux_sym_ctrl_match_token1] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DOT_DOT2] = ACTIONS(4929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1871), - [anon_sym_DOT_DOT_LT] = ACTIONS(1871), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4931), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [anon_sym_DOT2] = ACTIONS(1871), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(4877), + [anon_sym_true] = ACTIONS(4877), + [anon_sym_false] = ACTIONS(4877), + [anon_sym_null] = ACTIONS(4877), + [aux_sym_cmd_identifier_token38] = ACTIONS(4877), + [aux_sym_cmd_identifier_token39] = ACTIONS(4877), + [aux_sym_cmd_identifier_token40] = ACTIONS(4877), + [sym__newline] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4877), + [anon_sym_err_GT_PIPE] = ACTIONS(4877), + [anon_sym_out_GT_PIPE] = ACTIONS(4877), + [anon_sym_e_GT_PIPE] = ACTIONS(4877), + [anon_sym_o_GT_PIPE] = ACTIONS(4877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4877), + [anon_sym_LPAREN] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(4879), + [anon_sym_DASH_DASH] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4879), + [aux_sym_ctrl_match_token1] = ACTIONS(4877), + [anon_sym_DOT_DOT] = ACTIONS(4879), + [anon_sym_DOT_DOT2] = ACTIONS(4926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4879), + [anon_sym_DOT_DOT_LT] = ACTIONS(4879), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4928), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4928), + [aux_sym__val_number_decimal_token1] = ACTIONS(4879), + [aux_sym__val_number_decimal_token2] = ACTIONS(4877), + [aux_sym__val_number_decimal_token3] = ACTIONS(4877), + [aux_sym__val_number_decimal_token4] = ACTIONS(4877), + [aux_sym__val_number_token1] = ACTIONS(4877), + [aux_sym__val_number_token2] = ACTIONS(4877), + [aux_sym__val_number_token3] = ACTIONS(4877), + [anon_sym_0b] = ACTIONS(4879), + [anon_sym_0o] = ACTIONS(4879), + [anon_sym_0x] = ACTIONS(4879), + [sym_val_date] = ACTIONS(4877), + [anon_sym_DQUOTE] = ACTIONS(4877), + [sym__str_single_quotes] = ACTIONS(4877), + [sym__str_back_ticks] = ACTIONS(4877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4877), + [anon_sym_err_GT] = ACTIONS(4879), + [anon_sym_out_GT] = ACTIONS(4879), + [anon_sym_e_GT] = ACTIONS(4879), + [anon_sym_o_GT] = ACTIONS(4879), + [anon_sym_err_PLUSout_GT] = ACTIONS(4879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4879), + [anon_sym_o_PLUSe_GT] = ACTIONS(4879), + [anon_sym_e_PLUSo_GT] = ACTIONS(4879), + [anon_sym_err_GT_GT] = ACTIONS(4877), + [anon_sym_out_GT_GT] = ACTIONS(4877), + [anon_sym_e_GT_GT] = ACTIONS(4877), + [anon_sym_o_GT_GT] = ACTIONS(4877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4877), + [aux_sym_unquoted_token1] = ACTIONS(4879), + [anon_sym_POUND] = ACTIONS(247), }, [1631] = { - [sym_cell_path] = STATE(2112), - [sym_path] = STATE(1954), [sym_comment] = STATE(1631), - [aux_sym_cell_path_repeat1] = STATE(1710), - [ts_builtin_sym_end] = ACTIONS(885), - [sym__newline] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_err_GT_PIPE] = ACTIONS(885), - [anon_sym_out_GT_PIPE] = ACTIONS(885), - [anon_sym_e_GT_PIPE] = ACTIONS(885), - [anon_sym_o_GT_PIPE] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(885), - [anon_sym_in] = ACTIONS(885), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_and] = ACTIONS(885), - [anon_sym_xor] = ACTIONS(885), - [anon_sym_or] = ACTIONS(885), - [anon_sym_not_DASHin] = ACTIONS(885), - [anon_sym_starts_DASHwith] = ACTIONS(885), - [anon_sym_ends_DASHwith] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_EQ_TILDE] = ACTIONS(885), - [anon_sym_BANG_TILDE] = ACTIONS(885), - [anon_sym_STAR_STAR] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(885), - [anon_sym_SLASH_SLASH] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(885), - [anon_sym_bit_DASHshr] = ACTIONS(885), - [anon_sym_bit_DASHand] = ACTIONS(885), - [anon_sym_bit_DASHxor] = ACTIONS(885), - [anon_sym_bit_DASHor] = ACTIONS(885), - [anon_sym_DOT_DOT2] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(4933), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(885), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [anon_sym_err_GT_GT] = ACTIONS(885), - [anon_sym_out_GT_GT] = ACTIONS(885), - [anon_sym_e_GT_GT] = ACTIONS(885), - [anon_sym_o_GT_GT] = ACTIONS(885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1475), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4905), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), }, [1632] = { + [sym__expr_parenthesized_immediate] = STATE(7887), [sym_comment] = STATE(1632), - [ts_builtin_sym_end] = ACTIONS(4830), - [anon_sym_true] = ACTIONS(4830), - [anon_sym_false] = ACTIONS(4830), - [anon_sym_null] = ACTIONS(4830), - [aux_sym_cmd_identifier_token38] = ACTIONS(4830), - [aux_sym_cmd_identifier_token39] = ACTIONS(4830), - [aux_sym_cmd_identifier_token40] = ACTIONS(4830), - [sym__newline] = ACTIONS(4830), - [anon_sym_SEMI] = ACTIONS(4830), - [anon_sym_PIPE] = ACTIONS(4830), - [anon_sym_err_GT_PIPE] = ACTIONS(4830), - [anon_sym_out_GT_PIPE] = ACTIONS(4830), - [anon_sym_e_GT_PIPE] = ACTIONS(4830), - [anon_sym_o_GT_PIPE] = ACTIONS(4830), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4830), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4830), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4830), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4830), - [anon_sym_LBRACK] = ACTIONS(4830), - [anon_sym_LPAREN] = ACTIONS(4830), - [anon_sym_DOLLAR] = ACTIONS(4832), - [anon_sym_DASH_DASH] = ACTIONS(4830), - [anon_sym_DASH] = ACTIONS(4832), - [aux_sym_ctrl_match_token1] = ACTIONS(4830), - [anon_sym_DOT_DOT] = ACTIONS(4832), - [anon_sym_DOT_DOT2] = ACTIONS(4935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4832), - [anon_sym_DOT_DOT_LT] = ACTIONS(4832), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4937), - [aux_sym__val_number_decimal_token1] = ACTIONS(4832), - [aux_sym__val_number_decimal_token2] = ACTIONS(4830), - [anon_sym_DOT2] = ACTIONS(4832), - [aux_sym__val_number_decimal_token3] = ACTIONS(4830), - [aux_sym__val_number_token1] = ACTIONS(4830), - [aux_sym__val_number_token2] = ACTIONS(4830), - [aux_sym__val_number_token3] = ACTIONS(4830), - [anon_sym_0b] = ACTIONS(4832), - [anon_sym_0o] = ACTIONS(4832), - [anon_sym_0x] = ACTIONS(4832), - [sym_val_date] = ACTIONS(4830), - [anon_sym_DQUOTE] = ACTIONS(4830), - [sym__str_single_quotes] = ACTIONS(4830), - [sym__str_back_ticks] = ACTIONS(4830), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4830), - [anon_sym_err_GT] = ACTIONS(4832), - [anon_sym_out_GT] = ACTIONS(4832), - [anon_sym_e_GT] = ACTIONS(4832), - [anon_sym_o_GT] = ACTIONS(4832), - [anon_sym_err_PLUSout_GT] = ACTIONS(4832), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4832), - [anon_sym_o_PLUSe_GT] = ACTIONS(4832), - [anon_sym_e_PLUSo_GT] = ACTIONS(4832), - [anon_sym_err_GT_GT] = ACTIONS(4830), - [anon_sym_out_GT_GT] = ACTIONS(4830), - [anon_sym_e_GT_GT] = ACTIONS(4830), - [anon_sym_o_GT_GT] = ACTIONS(4830), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4830), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4830), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4830), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4830), - [aux_sym_unquoted_token1] = ACTIONS(4832), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3263), + [anon_sym_false] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3263), + [aux_sym_cmd_identifier_token38] = ACTIONS(3263), + [aux_sym_cmd_identifier_token39] = ACTIONS(3263), + [aux_sym_cmd_identifier_token40] = ACTIONS(3263), + [sym__newline] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3263), + [anon_sym_PIPE] = ACTIONS(3263), + [anon_sym_err_GT_PIPE] = ACTIONS(3263), + [anon_sym_out_GT_PIPE] = ACTIONS(3263), + [anon_sym_e_GT_PIPE] = ACTIONS(3263), + [anon_sym_o_GT_PIPE] = ACTIONS(3263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_RPAREN] = ACTIONS(3263), + [anon_sym_DOLLAR] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3265), + [aux_sym_ctrl_match_token1] = ACTIONS(3263), + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym_DOT_DOT] = ACTIONS(3265), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [aux_sym__val_number_decimal_token1] = ACTIONS(3265), + [aux_sym__val_number_decimal_token2] = ACTIONS(3263), + [aux_sym__val_number_decimal_token3] = ACTIONS(3263), + [aux_sym__val_number_decimal_token4] = ACTIONS(3263), + [aux_sym__val_number_token1] = ACTIONS(3263), + [aux_sym__val_number_token2] = ACTIONS(3263), + [aux_sym__val_number_token3] = ACTIONS(3263), + [anon_sym_0b] = ACTIONS(3265), + [anon_sym_0o] = ACTIONS(3265), + [anon_sym_0x] = ACTIONS(3265), + [sym_val_date] = ACTIONS(3263), + [anon_sym_DQUOTE] = ACTIONS(3263), + [sym__str_single_quotes] = ACTIONS(3263), + [sym__str_back_ticks] = ACTIONS(3263), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3263), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3263), + [anon_sym_err_GT] = ACTIONS(3265), + [anon_sym_out_GT] = ACTIONS(3265), + [anon_sym_e_GT] = ACTIONS(3265), + [anon_sym_o_GT] = ACTIONS(3265), + [anon_sym_err_PLUSout_GT] = ACTIONS(3265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3265), + [anon_sym_o_PLUSe_GT] = ACTIONS(3265), + [anon_sym_e_PLUSo_GT] = ACTIONS(3265), + [anon_sym_err_GT_GT] = ACTIONS(3263), + [anon_sym_out_GT_GT] = ACTIONS(3263), + [anon_sym_e_GT_GT] = ACTIONS(3263), + [anon_sym_o_GT_GT] = ACTIONS(3263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3263), + [aux_sym_unquoted_token1] = ACTIONS(3265), + [anon_sym_POUND] = ACTIONS(247), }, [1633] = { [sym_comment] = STATE(1633), - [ts_builtin_sym_end] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1885), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_err_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_GT_PIPE] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1879), - [aux_sym_ctrl_match_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT_DOT2] = ACTIONS(4939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1879), - [anon_sym_DOT_DOT_LT] = ACTIONS(1879), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4941), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [anon_sym_DOT2] = ACTIONS(1879), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), - [aux_sym_unquoted_token1] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [aux_sym_expr_binary_token1] = ACTIONS(1475), + [aux_sym_expr_binary_token2] = ACTIONS(1475), + [aux_sym_expr_binary_token3] = ACTIONS(1475), + [aux_sym_expr_binary_token4] = ACTIONS(1475), + [aux_sym_expr_binary_token5] = ACTIONS(1475), + [aux_sym_expr_binary_token6] = ACTIONS(1475), + [aux_sym_expr_binary_token7] = ACTIONS(1475), + [aux_sym_expr_binary_token8] = ACTIONS(1475), + [aux_sym_expr_binary_token9] = ACTIONS(1475), + [aux_sym_expr_binary_token10] = ACTIONS(1475), + [aux_sym_expr_binary_token11] = ACTIONS(1475), + [aux_sym_expr_binary_token12] = ACTIONS(1475), + [aux_sym_expr_binary_token13] = ACTIONS(1475), + [aux_sym_expr_binary_token14] = ACTIONS(1475), + [aux_sym_expr_binary_token15] = ACTIONS(1475), + [aux_sym_expr_binary_token16] = ACTIONS(1475), + [aux_sym_expr_binary_token17] = ACTIONS(1475), + [aux_sym_expr_binary_token18] = ACTIONS(1475), + [aux_sym_expr_binary_token19] = ACTIONS(1475), + [aux_sym_expr_binary_token20] = ACTIONS(1475), + [aux_sym_expr_binary_token21] = ACTIONS(1475), + [aux_sym_expr_binary_token22] = ACTIONS(1475), + [aux_sym_expr_binary_token23] = ACTIONS(1475), + [aux_sym_expr_binary_token24] = ACTIONS(1475), + [aux_sym_expr_binary_token25] = ACTIONS(1475), + [aux_sym_expr_binary_token26] = ACTIONS(1475), + [aux_sym_expr_binary_token27] = ACTIONS(1475), + [aux_sym_expr_binary_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), }, [1634] = { [sym_comment] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [aux_sym_ctrl_match_token1] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_DOT_DOT_LT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [anon_sym_DOT2] = ACTIONS(1470), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [aux_sym_unquoted_token1] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [anon_sym_null] = ACTIONS(1984), + [aux_sym_cmd_identifier_token38] = ACTIONS(1984), + [aux_sym_cmd_identifier_token39] = ACTIONS(1984), + [aux_sym_cmd_identifier_token40] = ACTIONS(1984), + [sym__newline] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_PIPE] = ACTIONS(1984), + [anon_sym_err_GT_PIPE] = ACTIONS(1984), + [anon_sym_out_GT_PIPE] = ACTIONS(1984), + [anon_sym_e_GT_PIPE] = ACTIONS(1984), + [anon_sym_o_GT_PIPE] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1982), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1982), + [aux_sym_ctrl_match_token1] = ACTIONS(1984), + [anon_sym_DOT_DOT] = ACTIONS(1982), + [anon_sym_DOT_DOT2] = ACTIONS(1982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1982), + [anon_sym_DOT_DOT_LT] = ACTIONS(1982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), + [aux_sym__val_number_decimal_token1] = ACTIONS(1982), + [aux_sym__val_number_decimal_token2] = ACTIONS(1984), + [aux_sym__val_number_decimal_token3] = ACTIONS(1984), + [aux_sym__val_number_decimal_token4] = ACTIONS(1984), + [aux_sym__val_number_token1] = ACTIONS(1984), + [aux_sym__val_number_token2] = ACTIONS(1984), + [aux_sym__val_number_token3] = ACTIONS(1984), + [anon_sym_0b] = ACTIONS(1982), + [anon_sym_0o] = ACTIONS(1982), + [anon_sym_0x] = ACTIONS(1982), + [sym_val_date] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1984), + [sym__str_single_quotes] = ACTIONS(1984), + [sym__str_back_ticks] = ACTIONS(1984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1984), + [anon_sym_err_GT] = ACTIONS(1982), + [anon_sym_out_GT] = ACTIONS(1982), + [anon_sym_e_GT] = ACTIONS(1982), + [anon_sym_o_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT] = ACTIONS(1982), + [anon_sym_err_GT_GT] = ACTIONS(1984), + [anon_sym_out_GT_GT] = ACTIONS(1984), + [anon_sym_e_GT_GT] = ACTIONS(1984), + [anon_sym_o_GT_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1984), + [aux_sym_unquoted_token1] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(247), }, [1635] = { [sym_comment] = STATE(1635), - [ts_builtin_sym_end] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [aux_sym_cmd_identifier_token38] = ACTIONS(1595), - [aux_sym_cmd_identifier_token39] = ACTIONS(1595), - [aux_sym_cmd_identifier_token40] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1587), - [aux_sym_ctrl_match_token1] = ACTIONS(1595), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_DOT_DOT_LT] = ACTIONS(1595), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1595), - [anon_sym_DOT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1595), - [aux_sym__val_number_token1] = ACTIONS(1595), - [aux_sym__val_number_token2] = ACTIONS(1595), - [aux_sym__val_number_token3] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym__str_single_quotes] = ACTIONS(1595), - [sym__str_back_ticks] = ACTIONS(1595), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1595), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1595), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1587), + [aux_sym_expr_binary_token1] = ACTIONS(1587), + [aux_sym_expr_binary_token2] = ACTIONS(1587), + [aux_sym_expr_binary_token3] = ACTIONS(1587), + [aux_sym_expr_binary_token4] = ACTIONS(1587), + [aux_sym_expr_binary_token5] = ACTIONS(1587), + [aux_sym_expr_binary_token6] = ACTIONS(1587), + [aux_sym_expr_binary_token7] = ACTIONS(1587), + [aux_sym_expr_binary_token8] = ACTIONS(1587), + [aux_sym_expr_binary_token9] = ACTIONS(1587), + [aux_sym_expr_binary_token10] = ACTIONS(1587), + [aux_sym_expr_binary_token11] = ACTIONS(1587), + [aux_sym_expr_binary_token12] = ACTIONS(1587), + [aux_sym_expr_binary_token13] = ACTIONS(1587), + [aux_sym_expr_binary_token14] = ACTIONS(1587), + [aux_sym_expr_binary_token15] = ACTIONS(1587), + [aux_sym_expr_binary_token16] = ACTIONS(1587), + [aux_sym_expr_binary_token17] = ACTIONS(1587), + [aux_sym_expr_binary_token18] = ACTIONS(1587), + [aux_sym_expr_binary_token19] = ACTIONS(1587), + [aux_sym_expr_binary_token20] = ACTIONS(1587), + [aux_sym_expr_binary_token21] = ACTIONS(1587), + [aux_sym_expr_binary_token22] = ACTIONS(1587), + [aux_sym_expr_binary_token23] = ACTIONS(1587), + [aux_sym_expr_binary_token24] = ACTIONS(1587), + [aux_sym_expr_binary_token25] = ACTIONS(1587), + [aux_sym_expr_binary_token26] = ACTIONS(1587), + [aux_sym_expr_binary_token27] = ACTIONS(1587), + [aux_sym_expr_binary_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), }, [1636] = { - [sym_path] = STATE(1840), [sym_comment] = STATE(1636), - [aux_sym_cell_path_repeat1] = STATE(1636), - [ts_builtin_sym_end] = ACTIONS(895), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [anon_sym_null] = ACTIONS(895), - [aux_sym_cmd_identifier_token38] = ACTIONS(895), - [aux_sym_cmd_identifier_token39] = ACTIONS(895), - [aux_sym_cmd_identifier_token40] = ACTIONS(895), - [sym__newline] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_err_GT_PIPE] = ACTIONS(895), - [anon_sym_out_GT_PIPE] = ACTIONS(895), - [anon_sym_e_GT_PIPE] = ACTIONS(895), - [anon_sym_o_GT_PIPE] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(893), - [aux_sym_ctrl_match_token1] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(893), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(895), - [anon_sym_DOT_DOT_LT] = ACTIONS(895), - [aux_sym__val_number_decimal_token1] = ACTIONS(893), - [aux_sym__val_number_decimal_token2] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(893), - [aux_sym__val_number_decimal_token3] = ACTIONS(895), - [aux_sym__val_number_token1] = ACTIONS(895), - [aux_sym__val_number_token2] = ACTIONS(895), - [aux_sym__val_number_token3] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(893), - [anon_sym_0o] = ACTIONS(893), - [anon_sym_0x] = ACTIONS(893), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(893), - [anon_sym_out_GT] = ACTIONS(893), - [anon_sym_e_GT] = ACTIONS(893), - [anon_sym_o_GT] = ACTIONS(893), - [anon_sym_err_PLUSout_GT] = ACTIONS(893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(893), - [anon_sym_o_PLUSe_GT] = ACTIONS(893), - [anon_sym_e_PLUSo_GT] = ACTIONS(893), - [anon_sym_err_GT_GT] = ACTIONS(895), - [anon_sym_out_GT_GT] = ACTIONS(895), - [anon_sym_e_GT_GT] = ACTIONS(895), - [anon_sym_o_GT_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(895), - [aux_sym_unquoted_token1] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(986), + [aux_sym_ctrl_match_token1] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_EQ_GT] = ACTIONS(988), + [aux_sym_expr_binary_token1] = ACTIONS(988), + [aux_sym_expr_binary_token2] = ACTIONS(988), + [aux_sym_expr_binary_token3] = ACTIONS(988), + [aux_sym_expr_binary_token4] = ACTIONS(988), + [aux_sym_expr_binary_token5] = ACTIONS(988), + [aux_sym_expr_binary_token6] = ACTIONS(988), + [aux_sym_expr_binary_token7] = ACTIONS(988), + [aux_sym_expr_binary_token8] = ACTIONS(988), + [aux_sym_expr_binary_token9] = ACTIONS(988), + [aux_sym_expr_binary_token10] = ACTIONS(988), + [aux_sym_expr_binary_token11] = ACTIONS(988), + [aux_sym_expr_binary_token12] = ACTIONS(988), + [aux_sym_expr_binary_token13] = ACTIONS(988), + [aux_sym_expr_binary_token14] = ACTIONS(988), + [aux_sym_expr_binary_token15] = ACTIONS(988), + [aux_sym_expr_binary_token16] = ACTIONS(988), + [aux_sym_expr_binary_token17] = ACTIONS(988), + [aux_sym_expr_binary_token18] = ACTIONS(988), + [aux_sym_expr_binary_token19] = ACTIONS(988), + [aux_sym_expr_binary_token20] = ACTIONS(988), + [aux_sym_expr_binary_token21] = ACTIONS(988), + [aux_sym_expr_binary_token22] = ACTIONS(988), + [aux_sym_expr_binary_token23] = ACTIONS(988), + [aux_sym_expr_binary_token24] = ACTIONS(988), + [aux_sym_expr_binary_token25] = ACTIONS(988), + [aux_sym_expr_binary_token26] = ACTIONS(988), + [aux_sym_expr_binary_token27] = ACTIONS(988), + [aux_sym_expr_binary_token28] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(247), }, [1637] = { [sym_comment] = STATE(1637), - [ts_builtin_sym_end] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_null] = ACTIONS(1953), - [aux_sym_cmd_identifier_token38] = ACTIONS(1953), - [aux_sym_cmd_identifier_token39] = ACTIONS(1953), - [aux_sym_cmd_identifier_token40] = ACTIONS(1953), - [sym__newline] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_err_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_GT_PIPE] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1947), - [aux_sym_ctrl_match_token1] = ACTIONS(1953), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_DOT_DOT2] = ACTIONS(4946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), - [anon_sym_DOT_DOT_LT] = ACTIONS(1947), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4948), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4948), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1953), - [anon_sym_DOT2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1953), - [aux_sym__val_number_token1] = ACTIONS(1953), - [aux_sym__val_number_token2] = ACTIONS(1953), - [aux_sym__val_number_token3] = ACTIONS(1953), - [anon_sym_0b] = ACTIONS(1947), - [anon_sym_0o] = ACTIONS(1947), - [anon_sym_0x] = ACTIONS(1947), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym__str_single_quotes] = ACTIONS(1953), - [sym__str_back_ticks] = ACTIONS(1953), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1953), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1953), - [anon_sym_err_GT] = ACTIONS(1947), - [anon_sym_out_GT] = ACTIONS(1947), - [anon_sym_e_GT] = ACTIONS(1947), - [anon_sym_o_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT] = ACTIONS(1947), - [anon_sym_err_GT_GT] = ACTIONS(1953), - [anon_sym_out_GT_GT] = ACTIONS(1953), - [anon_sym_e_GT_GT] = ACTIONS(1953), - [anon_sym_o_GT_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1953), - [aux_sym_unquoted_token1] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(990), + [aux_sym_ctrl_match_token1] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_EQ_GT] = ACTIONS(992), + [aux_sym_expr_binary_token1] = ACTIONS(992), + [aux_sym_expr_binary_token2] = ACTIONS(992), + [aux_sym_expr_binary_token3] = ACTIONS(992), + [aux_sym_expr_binary_token4] = ACTIONS(992), + [aux_sym_expr_binary_token5] = ACTIONS(992), + [aux_sym_expr_binary_token6] = ACTIONS(992), + [aux_sym_expr_binary_token7] = ACTIONS(992), + [aux_sym_expr_binary_token8] = ACTIONS(992), + [aux_sym_expr_binary_token9] = ACTIONS(992), + [aux_sym_expr_binary_token10] = ACTIONS(992), + [aux_sym_expr_binary_token11] = ACTIONS(992), + [aux_sym_expr_binary_token12] = ACTIONS(992), + [aux_sym_expr_binary_token13] = ACTIONS(992), + [aux_sym_expr_binary_token14] = ACTIONS(992), + [aux_sym_expr_binary_token15] = ACTIONS(992), + [aux_sym_expr_binary_token16] = ACTIONS(992), + [aux_sym_expr_binary_token17] = ACTIONS(992), + [aux_sym_expr_binary_token18] = ACTIONS(992), + [aux_sym_expr_binary_token19] = ACTIONS(992), + [aux_sym_expr_binary_token20] = ACTIONS(992), + [aux_sym_expr_binary_token21] = ACTIONS(992), + [aux_sym_expr_binary_token22] = ACTIONS(992), + [aux_sym_expr_binary_token23] = ACTIONS(992), + [aux_sym_expr_binary_token24] = ACTIONS(992), + [aux_sym_expr_binary_token25] = ACTIONS(992), + [aux_sym_expr_binary_token26] = ACTIONS(992), + [aux_sym_expr_binary_token27] = ACTIONS(992), + [aux_sym_expr_binary_token28] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), }, [1638] = { [sym_comment] = STATE(1638), - [ts_builtin_sym_end] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1610), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [sym__newline] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_err_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_GT_PIPE] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1608), - [aux_sym_ctrl_match_token1] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT2] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1608), - [anon_sym_DOT_DOT_LT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1610), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1610), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1608), - [anon_sym_out_GT] = ACTIONS(1608), - [anon_sym_e_GT] = ACTIONS(1608), - [anon_sym_o_GT] = ACTIONS(1608), - [anon_sym_err_PLUSout_GT] = ACTIONS(1608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), - [anon_sym_o_PLUSe_GT] = ACTIONS(1608), - [anon_sym_e_PLUSo_GT] = ACTIONS(1608), - [anon_sym_err_GT_GT] = ACTIONS(1610), - [anon_sym_out_GT_GT] = ACTIONS(1610), - [anon_sym_e_GT_GT] = ACTIONS(1610), - [anon_sym_o_GT_GT] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), - [aux_sym_unquoted_token1] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1639] = { [sym_comment] = STATE(1639), - [ts_builtin_sym_end] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1965), - [anon_sym_false] = ACTIONS(1965), - [anon_sym_null] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [sym__newline] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_err_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_GT_PIPE] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1963), - [aux_sym_ctrl_match_token1] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_DOT_DOT2] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [anon_sym_DOT2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [anon_sym_0b] = ACTIONS(1963), - [anon_sym_0o] = ACTIONS(1963), - [anon_sym_0x] = ACTIONS(1963), - [sym_val_date] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), - [anon_sym_err_GT] = ACTIONS(1963), - [anon_sym_out_GT] = ACTIONS(1963), - [anon_sym_e_GT] = ACTIONS(1963), - [anon_sym_o_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT] = ACTIONS(1963), - [anon_sym_err_GT_GT] = ACTIONS(1965), - [anon_sym_out_GT_GT] = ACTIONS(1965), - [anon_sym_e_GT_GT] = ACTIONS(1965), - [anon_sym_o_GT_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1965), - [aux_sym_unquoted_token1] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(3485), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_err_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_GT_PIPE] = ACTIONS(3485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), + [anon_sym_RPAREN] = ACTIONS(3485), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3487), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym_EQ_GT] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(3485), + [aux_sym_expr_binary_token1] = ACTIONS(3485), + [aux_sym_expr_binary_token2] = ACTIONS(3485), + [aux_sym_expr_binary_token3] = ACTIONS(3485), + [aux_sym_expr_binary_token4] = ACTIONS(3485), + [aux_sym_expr_binary_token5] = ACTIONS(3485), + [aux_sym_expr_binary_token6] = ACTIONS(3485), + [aux_sym_expr_binary_token7] = ACTIONS(3485), + [aux_sym_expr_binary_token8] = ACTIONS(3485), + [aux_sym_expr_binary_token9] = ACTIONS(3485), + [aux_sym_expr_binary_token10] = ACTIONS(3485), + [aux_sym_expr_binary_token11] = ACTIONS(3485), + [aux_sym_expr_binary_token12] = ACTIONS(3485), + [aux_sym_expr_binary_token13] = ACTIONS(3485), + [aux_sym_expr_binary_token14] = ACTIONS(3485), + [aux_sym_expr_binary_token15] = ACTIONS(3485), + [aux_sym_expr_binary_token16] = ACTIONS(3485), + [aux_sym_expr_binary_token17] = ACTIONS(3485), + [aux_sym_expr_binary_token18] = ACTIONS(3485), + [aux_sym_expr_binary_token19] = ACTIONS(3485), + [aux_sym_expr_binary_token20] = ACTIONS(3485), + [aux_sym_expr_binary_token21] = ACTIONS(3485), + [aux_sym_expr_binary_token22] = ACTIONS(3485), + [aux_sym_expr_binary_token23] = ACTIONS(3485), + [aux_sym_expr_binary_token24] = ACTIONS(3485), + [aux_sym_expr_binary_token25] = ACTIONS(3485), + [aux_sym_expr_binary_token26] = ACTIONS(3485), + [aux_sym_expr_binary_token27] = ACTIONS(3485), + [aux_sym_expr_binary_token28] = ACTIONS(3485), + [anon_sym_err_GT] = ACTIONS(3487), + [anon_sym_out_GT] = ACTIONS(3487), + [anon_sym_e_GT] = ACTIONS(3487), + [anon_sym_o_GT] = ACTIONS(3487), + [anon_sym_err_PLUSout_GT] = ACTIONS(3487), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3487), + [anon_sym_o_PLUSe_GT] = ACTIONS(3487), + [anon_sym_e_PLUSo_GT] = ACTIONS(3487), + [anon_sym_err_GT_GT] = ACTIONS(3485), + [anon_sym_out_GT_GT] = ACTIONS(3485), + [anon_sym_e_GT_GT] = ACTIONS(3485), + [anon_sym_o_GT_GT] = ACTIONS(3485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), }, [1640] = { [sym_comment] = STATE(1640), - [ts_builtin_sym_end] = ACTIONS(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(950), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(948), - [aux_sym_ctrl_match_token1] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT2] = ACTIONS(4935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4937), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [aux_sym_unquoted_token1] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), }, [1641] = { - [sym__expr_parenthesized_immediate] = STATE(7895), [sym_comment] = STATE(1641), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3221), - [aux_sym_cmd_identifier_token38] = ACTIONS(3221), - [aux_sym_cmd_identifier_token39] = ACTIONS(3221), - [aux_sym_cmd_identifier_token40] = ACTIONS(3221), - [sym__newline] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_err_GT_PIPE] = ACTIONS(3221), - [anon_sym_out_GT_PIPE] = ACTIONS(3221), - [anon_sym_e_GT_PIPE] = ACTIONS(3221), - [anon_sym_o_GT_PIPE] = ACTIONS(3221), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3221), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3221), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3221), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_RPAREN] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3223), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [aux_sym__val_number_decimal_token1] = ACTIONS(3223), - [aux_sym__val_number_decimal_token2] = ACTIONS(3221), - [anon_sym_DOT2] = ACTIONS(3223), - [aux_sym__val_number_decimal_token3] = ACTIONS(3221), - [aux_sym__val_number_token1] = ACTIONS(3221), - [aux_sym__val_number_token2] = ACTIONS(3221), - [aux_sym__val_number_token3] = ACTIONS(3221), - [anon_sym_0b] = ACTIONS(3223), - [anon_sym_0o] = ACTIONS(3223), - [anon_sym_0x] = ACTIONS(3223), - [sym_val_date] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym__str_single_quotes] = ACTIONS(3221), - [sym__str_back_ticks] = ACTIONS(3221), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3221), - [anon_sym_err_GT] = ACTIONS(3223), - [anon_sym_out_GT] = ACTIONS(3223), - [anon_sym_e_GT] = ACTIONS(3223), - [anon_sym_o_GT] = ACTIONS(3223), - [anon_sym_err_PLUSout_GT] = ACTIONS(3223), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3223), - [anon_sym_o_PLUSe_GT] = ACTIONS(3223), - [anon_sym_e_PLUSo_GT] = ACTIONS(3223), - [anon_sym_err_GT_GT] = ACTIONS(3221), - [anon_sym_out_GT_GT] = ACTIONS(3221), - [anon_sym_e_GT_GT] = ACTIONS(3221), - [anon_sym_o_GT_GT] = ACTIONS(3221), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3221), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3221), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3221), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3221), - [aux_sym_unquoted_token1] = ACTIONS(3223), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [1642] = { [sym_comment] = STATE(1642), - [aux_sym_cmd_identifier_token41] = ACTIONS(1504), - [sym__newline] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_and] = ACTIONS(1506), - [anon_sym_xor] = ACTIONS(1506), - [anon_sym_or] = ACTIONS(1506), - [anon_sym_not_DASHin] = ACTIONS(1506), - [anon_sym_starts_DASHwith] = ACTIONS(1506), - [anon_sym_ends_DASHwith] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_TILDE] = ACTIONS(1506), - [anon_sym_BANG_TILDE] = ACTIONS(1506), - [anon_sym_STAR_STAR] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_SLASH_SLASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_bit_DASHshl] = ACTIONS(1506), - [anon_sym_bit_DASHshr] = ACTIONS(1506), - [anon_sym_bit_DASHand] = ACTIONS(1506), - [anon_sym_bit_DASHxor] = ACTIONS(1506), - [anon_sym_bit_DASHor] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [sym_filesize_unit] = ACTIONS(1504), - [sym_duration_unit] = ACTIONS(1506), - [aux_sym_record_entry_token1] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [aux_sym_unquoted_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [1643] = { [sym_comment] = STATE(1643), - [ts_builtin_sym_end] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [aux_sym_cmd_identifier_token38] = ACTIONS(1915), - [aux_sym_cmd_identifier_token39] = ACTIONS(1915), - [aux_sym_cmd_identifier_token40] = ACTIONS(1915), - [sym__newline] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_err_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_GT_PIPE] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1913), - [aux_sym_ctrl_match_token1] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_DOT_DOT2] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), - [anon_sym_DOT_DOT_LT] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [anon_sym_DOT2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [anon_sym_0b] = ACTIONS(1913), - [anon_sym_0o] = ACTIONS(1913), - [anon_sym_0x] = ACTIONS(1913), - [sym_val_date] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1915), - [anon_sym_err_GT] = ACTIONS(1913), - [anon_sym_out_GT] = ACTIONS(1913), - [anon_sym_e_GT] = ACTIONS(1913), - [anon_sym_o_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT] = ACTIONS(1913), - [anon_sym_err_GT_GT] = ACTIONS(1915), - [anon_sym_out_GT_GT] = ACTIONS(1915), - [anon_sym_e_GT_GT] = ACTIONS(1915), - [anon_sym_o_GT_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), - [aux_sym_unquoted_token1] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [aux_sym_ctrl_match_token1] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), }, [1644] = { [sym_comment] = STATE(1644), - [anon_sym_true] = ACTIONS(3239), - [anon_sym_false] = ACTIONS(3239), - [anon_sym_null] = ACTIONS(3239), - [aux_sym_cmd_identifier_token38] = ACTIONS(3239), - [aux_sym_cmd_identifier_token39] = ACTIONS(3239), - [aux_sym_cmd_identifier_token40] = ACTIONS(3239), - [sym__newline] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_err_GT_PIPE] = ACTIONS(3239), - [anon_sym_out_GT_PIPE] = ACTIONS(3239), - [anon_sym_e_GT_PIPE] = ACTIONS(3239), - [anon_sym_o_GT_PIPE] = ACTIONS(3239), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3239), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3239), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3239), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_RPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [aux_sym_ctrl_match_token1] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_DOT_DOT] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3239), - [anon_sym_DOT_DOT_LT] = ACTIONS(3239), - [aux_sym__val_number_decimal_token1] = ACTIONS(3239), - [aux_sym__val_number_decimal_token2] = ACTIONS(3239), - [anon_sym_DOT2] = ACTIONS(3239), - [aux_sym__val_number_decimal_token3] = ACTIONS(3239), - [aux_sym__val_number_token1] = ACTIONS(3239), - [aux_sym__val_number_token2] = ACTIONS(3239), - [aux_sym__val_number_token3] = ACTIONS(3239), - [anon_sym_0b] = ACTIONS(3239), - [anon_sym_0o] = ACTIONS(3239), - [anon_sym_0x] = ACTIONS(3239), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [sym__str_single_quotes] = ACTIONS(3239), - [sym__str_back_ticks] = ACTIONS(3239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_err_GT] = ACTIONS(3239), - [anon_sym_out_GT] = ACTIONS(3239), - [anon_sym_e_GT] = ACTIONS(3239), - [anon_sym_o_GT] = ACTIONS(3239), - [anon_sym_err_PLUSout_GT] = ACTIONS(3239), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3239), - [anon_sym_o_PLUSe_GT] = ACTIONS(3239), - [anon_sym_e_PLUSo_GT] = ACTIONS(3239), - [anon_sym_err_GT_GT] = ACTIONS(3239), - [anon_sym_out_GT_GT] = ACTIONS(3239), - [anon_sym_e_GT_GT] = ACTIONS(3239), - [anon_sym_o_GT_GT] = ACTIONS(3239), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3239), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3239), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3239), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3239), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [aux_sym_unquoted_token3] = ACTIONS(4950), - [anon_sym_POUND] = ACTIONS(121), + [sym__newline] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_PIPE] = ACTIONS(3373), + [anon_sym_err_GT_PIPE] = ACTIONS(3373), + [anon_sym_out_GT_PIPE] = ACTIONS(3373), + [anon_sym_e_GT_PIPE] = ACTIONS(3373), + [anon_sym_o_GT_PIPE] = ACTIONS(3373), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3373), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3373), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3373), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3373), + [anon_sym_RPAREN] = ACTIONS(3373), + [anon_sym_COMMA] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3375), + [aux_sym_ctrl_match_token1] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_EQ_GT] = ACTIONS(3373), + [anon_sym_LPAREN2] = ACTIONS(3373), + [aux_sym_expr_binary_token1] = ACTIONS(3373), + [aux_sym_expr_binary_token2] = ACTIONS(3373), + [aux_sym_expr_binary_token3] = ACTIONS(3373), + [aux_sym_expr_binary_token4] = ACTIONS(3373), + [aux_sym_expr_binary_token5] = ACTIONS(3373), + [aux_sym_expr_binary_token6] = ACTIONS(3373), + [aux_sym_expr_binary_token7] = ACTIONS(3373), + [aux_sym_expr_binary_token8] = ACTIONS(3373), + [aux_sym_expr_binary_token9] = ACTIONS(3373), + [aux_sym_expr_binary_token10] = ACTIONS(3373), + [aux_sym_expr_binary_token11] = ACTIONS(3373), + [aux_sym_expr_binary_token12] = ACTIONS(3373), + [aux_sym_expr_binary_token13] = ACTIONS(3373), + [aux_sym_expr_binary_token14] = ACTIONS(3373), + [aux_sym_expr_binary_token15] = ACTIONS(3373), + [aux_sym_expr_binary_token16] = ACTIONS(3373), + [aux_sym_expr_binary_token17] = ACTIONS(3373), + [aux_sym_expr_binary_token18] = ACTIONS(3373), + [aux_sym_expr_binary_token19] = ACTIONS(3373), + [aux_sym_expr_binary_token20] = ACTIONS(3373), + [aux_sym_expr_binary_token21] = ACTIONS(3373), + [aux_sym_expr_binary_token22] = ACTIONS(3373), + [aux_sym_expr_binary_token23] = ACTIONS(3373), + [aux_sym_expr_binary_token24] = ACTIONS(3373), + [aux_sym_expr_binary_token25] = ACTIONS(3373), + [aux_sym_expr_binary_token26] = ACTIONS(3373), + [aux_sym_expr_binary_token27] = ACTIONS(3373), + [aux_sym_expr_binary_token28] = ACTIONS(3373), + [anon_sym_err_GT] = ACTIONS(3375), + [anon_sym_out_GT] = ACTIONS(3375), + [anon_sym_e_GT] = ACTIONS(3375), + [anon_sym_o_GT] = ACTIONS(3375), + [anon_sym_err_PLUSout_GT] = ACTIONS(3375), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3375), + [anon_sym_o_PLUSe_GT] = ACTIONS(3375), + [anon_sym_e_PLUSo_GT] = ACTIONS(3375), + [anon_sym_err_GT_GT] = ACTIONS(3373), + [anon_sym_out_GT_GT] = ACTIONS(3373), + [anon_sym_e_GT_GT] = ACTIONS(3373), + [anon_sym_o_GT_GT] = ACTIONS(3373), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3373), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3373), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3373), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3373), + [anon_sym_POUND] = ACTIONS(247), }, [1645] = { [sym_comment] = STATE(1645), - [ts_builtin_sym_end] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(4952), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2925), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2925), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token2] = ACTIONS(4954), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4912), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1646] = { [sym_comment] = STATE(1646), - [aux_sym_cmd_identifier_token41] = ACTIONS(4956), - [sym__newline] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_err_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_GT_PIPE] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_in] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_and] = ACTIONS(1441), - [anon_sym_xor] = ACTIONS(1441), - [anon_sym_or] = ACTIONS(1441), - [anon_sym_not_DASHin] = ACTIONS(1441), - [anon_sym_starts_DASHwith] = ACTIONS(1441), - [anon_sym_ends_DASHwith] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT2] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ_TILDE] = ACTIONS(1441), - [anon_sym_BANG_TILDE] = ACTIONS(1441), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_SLASH_SLASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_bit_DASHshl] = ACTIONS(1441), - [anon_sym_bit_DASHshr] = ACTIONS(1441), - [anon_sym_bit_DASHand] = ACTIONS(1441), - [anon_sym_bit_DASHxor] = ACTIONS(1441), - [anon_sym_bit_DASHor] = ACTIONS(1441), - [anon_sym_DOT_DOT2] = ACTIONS(4902), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4904), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4904), - [sym_filesize_unit] = ACTIONS(4958), - [sym_duration_unit] = ACTIONS(4960), - [anon_sym_err_GT] = ACTIONS(1429), - [anon_sym_out_GT] = ACTIONS(1429), - [anon_sym_e_GT] = ACTIONS(1429), - [anon_sym_o_GT] = ACTIONS(1429), - [anon_sym_err_PLUSout_GT] = ACTIONS(1429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1429), - [anon_sym_o_PLUSe_GT] = ACTIONS(1429), - [anon_sym_e_PLUSo_GT] = ACTIONS(1429), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4962), + [anon_sym_false] = ACTIONS(4962), + [anon_sym_null] = ACTIONS(4962), + [aux_sym_cmd_identifier_token38] = ACTIONS(4962), + [aux_sym_cmd_identifier_token39] = ACTIONS(4962), + [aux_sym_cmd_identifier_token40] = ACTIONS(4962), + [sym__newline] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_err_GT_PIPE] = ACTIONS(4962), + [anon_sym_out_GT_PIPE] = ACTIONS(4962), + [anon_sym_e_GT_PIPE] = ACTIONS(4962), + [anon_sym_o_GT_PIPE] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_RPAREN] = ACTIONS(4962), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH] = ACTIONS(4964), + [aux_sym_ctrl_match_token1] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_DOT_DOT2] = ACTIONS(4873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4964), + [anon_sym_DOT_DOT_LT] = ACTIONS(4964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4875), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4875), + [aux_sym__val_number_decimal_token1] = ACTIONS(4964), + [aux_sym__val_number_decimal_token2] = ACTIONS(4962), + [aux_sym__val_number_decimal_token3] = ACTIONS(4962), + [aux_sym__val_number_decimal_token4] = ACTIONS(4962), + [aux_sym__val_number_token1] = ACTIONS(4962), + [aux_sym__val_number_token2] = ACTIONS(4962), + [aux_sym__val_number_token3] = ACTIONS(4962), + [anon_sym_0b] = ACTIONS(4964), + [anon_sym_0o] = ACTIONS(4964), + [anon_sym_0x] = ACTIONS(4964), + [sym_val_date] = ACTIONS(4962), + [anon_sym_DQUOTE] = ACTIONS(4962), + [sym__str_single_quotes] = ACTIONS(4962), + [sym__str_back_ticks] = ACTIONS(4962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4962), + [anon_sym_err_GT] = ACTIONS(4964), + [anon_sym_out_GT] = ACTIONS(4964), + [anon_sym_e_GT] = ACTIONS(4964), + [anon_sym_o_GT] = ACTIONS(4964), + [anon_sym_err_PLUSout_GT] = ACTIONS(4964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4964), + [anon_sym_o_PLUSe_GT] = ACTIONS(4964), + [anon_sym_e_PLUSo_GT] = ACTIONS(4964), + [anon_sym_err_GT_GT] = ACTIONS(4962), + [anon_sym_out_GT_GT] = ACTIONS(4962), + [anon_sym_e_GT_GT] = ACTIONS(4962), + [anon_sym_o_GT_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4962), + [aux_sym_unquoted_token1] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(247), }, [1647] = { - [sym__expr_parenthesized_immediate] = STATE(7895), [sym_comment] = STATE(1647), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_null] = ACTIONS(3231), - [aux_sym_cmd_identifier_token38] = ACTIONS(3231), - [aux_sym_cmd_identifier_token39] = ACTIONS(3231), - [aux_sym_cmd_identifier_token40] = ACTIONS(3231), - [sym__newline] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_err_GT_PIPE] = ACTIONS(3231), - [anon_sym_out_GT_PIPE] = ACTIONS(3231), - [anon_sym_e_GT_PIPE] = ACTIONS(3231), - [anon_sym_o_GT_PIPE] = ACTIONS(3231), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3231), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3231), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3231), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3233), - [aux_sym_ctrl_match_token1] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3231), - [anon_sym_DOT_DOT_LT] = ACTIONS(3231), - [aux_sym__val_number_decimal_token1] = ACTIONS(3233), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [anon_sym_DOT2] = ACTIONS(3233), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_token1] = ACTIONS(3231), - [aux_sym__val_number_token2] = ACTIONS(3231), - [aux_sym__val_number_token3] = ACTIONS(3231), - [anon_sym_0b] = ACTIONS(3233), - [anon_sym_0o] = ACTIONS(3233), - [anon_sym_0x] = ACTIONS(3233), - [sym_val_date] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [sym__str_single_quotes] = ACTIONS(3231), - [sym__str_back_ticks] = ACTIONS(3231), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3231), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_err_GT] = ACTIONS(3233), - [anon_sym_out_GT] = ACTIONS(3233), - [anon_sym_e_GT] = ACTIONS(3233), - [anon_sym_o_GT] = ACTIONS(3233), - [anon_sym_err_PLUSout_GT] = ACTIONS(3233), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3233), - [anon_sym_o_PLUSe_GT] = ACTIONS(3233), - [anon_sym_e_PLUSo_GT] = ACTIONS(3233), - [anon_sym_err_GT_GT] = ACTIONS(3231), - [anon_sym_out_GT_GT] = ACTIONS(3231), - [anon_sym_e_GT_GT] = ACTIONS(3231), - [anon_sym_o_GT_GT] = ACTIONS(3231), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3231), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3231), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3231), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3231), - [aux_sym_unquoted_token1] = ACTIONS(3233), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1521), + [aux_sym_cmd_identifier_token41] = ACTIONS(1519), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(4966), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(247), }, [1648] = { [sym_comment] = STATE(1648), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2077), - [aux_sym_cmd_identifier_token38] = ACTIONS(2077), - [aux_sym_cmd_identifier_token39] = ACTIONS(2077), - [aux_sym_cmd_identifier_token40] = ACTIONS(2077), - [sym__newline] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_err_GT_PIPE] = ACTIONS(2081), - [anon_sym_out_GT_PIPE] = ACTIONS(2081), - [anon_sym_e_GT_PIPE] = ACTIONS(2081), - [anon_sym_o_GT_PIPE] = ACTIONS(2081), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2081), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2081), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2081), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [aux_sym_ctrl_match_token1] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_LPAREN2] = ACTIONS(2079), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2077), - [anon_sym_DOT_DOT_LT] = ACTIONS(2077), - [aux_sym__val_number_decimal_token1] = ACTIONS(2077), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [anon_sym_DOT2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_token1] = ACTIONS(2077), - [aux_sym__val_number_token2] = ACTIONS(2077), - [aux_sym__val_number_token3] = ACTIONS(2077), - [anon_sym_0b] = ACTIONS(2077), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2081), - [sym__str_back_ticks] = ACTIONS(2081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2081), - [anon_sym_err_GT] = ACTIONS(2077), - [anon_sym_out_GT] = ACTIONS(2077), - [anon_sym_e_GT] = ACTIONS(2077), - [anon_sym_o_GT] = ACTIONS(2077), - [anon_sym_err_PLUSout_GT] = ACTIONS(2077), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2077), - [anon_sym_o_PLUSe_GT] = ACTIONS(2077), - [anon_sym_e_PLUSo_GT] = ACTIONS(2077), - [anon_sym_err_GT_GT] = ACTIONS(2077), - [anon_sym_out_GT_GT] = ACTIONS(2077), - [anon_sym_e_GT_GT] = ACTIONS(2077), - [anon_sym_o_GT_GT] = ACTIONS(2077), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2077), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2077), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2077), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2077), - [aux_sym_unquoted_token1] = ACTIONS(2077), - [aux_sym_unquoted_token7] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cmd_identifier_token41] = ACTIONS(1481), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [aux_sym_expr_binary_token1] = ACTIONS(1483), + [aux_sym_expr_binary_token2] = ACTIONS(1483), + [aux_sym_expr_binary_token3] = ACTIONS(1483), + [aux_sym_expr_binary_token4] = ACTIONS(1483), + [aux_sym_expr_binary_token5] = ACTIONS(1483), + [aux_sym_expr_binary_token6] = ACTIONS(1483), + [aux_sym_expr_binary_token7] = ACTIONS(1483), + [aux_sym_expr_binary_token8] = ACTIONS(1483), + [aux_sym_expr_binary_token9] = ACTIONS(1483), + [aux_sym_expr_binary_token10] = ACTIONS(1483), + [aux_sym_expr_binary_token11] = ACTIONS(1483), + [aux_sym_expr_binary_token12] = ACTIONS(1483), + [aux_sym_expr_binary_token13] = ACTIONS(1483), + [aux_sym_expr_binary_token14] = ACTIONS(1483), + [aux_sym_expr_binary_token15] = ACTIONS(1483), + [aux_sym_expr_binary_token16] = ACTIONS(1483), + [aux_sym_expr_binary_token17] = ACTIONS(1483), + [aux_sym_expr_binary_token18] = ACTIONS(1483), + [aux_sym_expr_binary_token19] = ACTIONS(1483), + [aux_sym_expr_binary_token20] = ACTIONS(1483), + [aux_sym_expr_binary_token21] = ACTIONS(1483), + [aux_sym_expr_binary_token22] = ACTIONS(1483), + [aux_sym_expr_binary_token23] = ACTIONS(1483), + [aux_sym_expr_binary_token24] = ACTIONS(1483), + [aux_sym_expr_binary_token25] = ACTIONS(1483), + [aux_sym_expr_binary_token26] = ACTIONS(1483), + [aux_sym_expr_binary_token27] = ACTIONS(1483), + [aux_sym_expr_binary_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(247), }, [1649] = { [sym_comment] = STATE(1649), - [ts_builtin_sym_end] = ACTIONS(938), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [anon_sym_null] = ACTIONS(938), - [aux_sym_cmd_identifier_token38] = ACTIONS(938), - [aux_sym_cmd_identifier_token39] = ACTIONS(938), - [aux_sym_cmd_identifier_token40] = ACTIONS(938), - [sym__newline] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_err_GT_PIPE] = ACTIONS(938), - [anon_sym_out_GT_PIPE] = ACTIONS(938), - [anon_sym_e_GT_PIPE] = ACTIONS(938), - [anon_sym_o_GT_PIPE] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(936), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(936), - [aux_sym_ctrl_match_token1] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT2] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_DOT_DOT_LT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(938), - [anon_sym_DOT_DOT_LT2] = ACTIONS(938), - [aux_sym__val_number_decimal_token1] = ACTIONS(936), - [aux_sym__val_number_decimal_token2] = ACTIONS(938), - [anon_sym_DOT2] = ACTIONS(936), - [aux_sym__val_number_decimal_token3] = ACTIONS(938), - [aux_sym__val_number_token1] = ACTIONS(938), - [aux_sym__val_number_token2] = ACTIONS(938), - [aux_sym__val_number_token3] = ACTIONS(938), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(936), - [anon_sym_0x] = ACTIONS(936), - [sym_val_date] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym__str_single_quotes] = ACTIONS(938), - [sym__str_back_ticks] = ACTIONS(938), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), - [anon_sym_err_GT] = ACTIONS(936), - [anon_sym_out_GT] = ACTIONS(936), - [anon_sym_e_GT] = ACTIONS(936), - [anon_sym_o_GT] = ACTIONS(936), - [anon_sym_err_PLUSout_GT] = ACTIONS(936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(936), - [anon_sym_o_PLUSe_GT] = ACTIONS(936), - [anon_sym_e_PLUSo_GT] = ACTIONS(936), - [anon_sym_err_GT_GT] = ACTIONS(938), - [anon_sym_out_GT_GT] = ACTIONS(938), - [anon_sym_e_GT_GT] = ACTIONS(938), - [anon_sym_o_GT_GT] = ACTIONS(938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(938), - [aux_sym_unquoted_token1] = ACTIONS(936), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [aux_sym_cmd_identifier_token38] = ACTIONS(2089), + [aux_sym_cmd_identifier_token39] = ACTIONS(2089), + [aux_sym_cmd_identifier_token40] = ACTIONS(2089), + [sym__newline] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2093), + [anon_sym_err_GT_PIPE] = ACTIONS(2093), + [anon_sym_out_GT_PIPE] = ACTIONS(2093), + [anon_sym_e_GT_PIPE] = ACTIONS(2093), + [anon_sym_o_GT_PIPE] = ACTIONS(2093), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2093), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2093), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2093), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_RPAREN] = ACTIONS(2093), + [anon_sym_DOLLAR] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [aux_sym_ctrl_match_token1] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_LPAREN2] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), + [anon_sym_DOT_DOT_LT] = ACTIONS(2089), + [aux_sym__val_number_decimal_token1] = ACTIONS(2089), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2089), + [aux_sym__val_number_decimal_token4] = ACTIONS(2089), + [aux_sym__val_number_token1] = ACTIONS(2089), + [aux_sym__val_number_token2] = ACTIONS(2089), + [aux_sym__val_number_token3] = ACTIONS(2089), + [anon_sym_0b] = ACTIONS(2089), + [anon_sym_0o] = ACTIONS(2089), + [anon_sym_0x] = ACTIONS(2089), + [sym_val_date] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2093), + [sym__str_single_quotes] = ACTIONS(2093), + [sym__str_back_ticks] = ACTIONS(2093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2093), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2093), + [anon_sym_err_GT] = ACTIONS(2089), + [anon_sym_out_GT] = ACTIONS(2089), + [anon_sym_e_GT] = ACTIONS(2089), + [anon_sym_o_GT] = ACTIONS(2089), + [anon_sym_err_PLUSout_GT] = ACTIONS(2089), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), + [anon_sym_o_PLUSe_GT] = ACTIONS(2089), + [anon_sym_e_PLUSo_GT] = ACTIONS(2089), + [anon_sym_err_GT_GT] = ACTIONS(2089), + [anon_sym_out_GT_GT] = ACTIONS(2089), + [anon_sym_e_GT_GT] = ACTIONS(2089), + [anon_sym_o_GT_GT] = ACTIONS(2089), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), + [aux_sym_unquoted_token1] = ACTIONS(2089), + [aux_sym_unquoted_token4] = ACTIONS(2095), [anon_sym_POUND] = ACTIONS(3), }, [1650] = { [sym_comment] = STATE(1650), - [sym__newline] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_err_GT_PIPE] = ACTIONS(902), - [anon_sym_out_GT_PIPE] = ACTIONS(902), - [anon_sym_e_GT_PIPE] = ACTIONS(902), - [anon_sym_o_GT_PIPE] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_in] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [aux_sym_ctrl_match_token1] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_EQ_GT] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT2] = ACTIONS(900), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DOT_DOT2] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), }, [1651] = { + [sym_path] = STATE(1868), [sym_comment] = STATE(1651), - [sym__newline] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_err_GT_PIPE] = ACTIONS(908), - [anon_sym_out_GT_PIPE] = ACTIONS(908), - [anon_sym_e_GT_PIPE] = ACTIONS(908), - [anon_sym_o_GT_PIPE] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_in] = ACTIONS(908), - [anon_sym_if] = ACTIONS(908), - [aux_sym_ctrl_match_token1] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_EQ_GT] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(4964), - [anon_sym_and] = ACTIONS(908), - [anon_sym_xor] = ACTIONS(908), - [anon_sym_or] = ACTIONS(908), - [anon_sym_not_DASHin] = ACTIONS(908), - [anon_sym_starts_DASHwith] = ACTIONS(908), - [anon_sym_ends_DASHwith] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT2] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_EQ_TILDE] = ACTIONS(908), - [anon_sym_BANG_TILDE] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(908), - [anon_sym_SLASH_SLASH] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(908), - [anon_sym_bit_DASHshr] = ACTIONS(908), - [anon_sym_bit_DASHand] = ACTIONS(908), - [anon_sym_bit_DASHxor] = ACTIONS(908), - [anon_sym_bit_DASHor] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1658), + [ts_builtin_sym_end] = ACTIONS(953), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_null] = ACTIONS(953), + [aux_sym_cmd_identifier_token38] = ACTIONS(953), + [aux_sym_cmd_identifier_token39] = ACTIONS(953), + [aux_sym_cmd_identifier_token40] = ACTIONS(953), + [sym__newline] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_err_GT_PIPE] = ACTIONS(953), + [anon_sym_out_GT_PIPE] = ACTIONS(953), + [anon_sym_e_GT_PIPE] = ACTIONS(953), + [anon_sym_o_GT_PIPE] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(951), + [aux_sym_ctrl_match_token1] = ACTIONS(953), + [anon_sym_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(953), + [anon_sym_DOT_DOT_LT] = ACTIONS(953), + [aux_sym__val_number_decimal_token1] = ACTIONS(951), + [aux_sym__val_number_decimal_token2] = ACTIONS(953), + [aux_sym__val_number_decimal_token3] = ACTIONS(953), + [aux_sym__val_number_decimal_token4] = ACTIONS(953), + [aux_sym__val_number_token1] = ACTIONS(953), + [aux_sym__val_number_token2] = ACTIONS(953), + [aux_sym__val_number_token3] = ACTIONS(953), + [anon_sym_0b] = ACTIONS(951), + [anon_sym_0o] = ACTIONS(951), + [anon_sym_0x] = ACTIONS(951), + [sym_val_date] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym__str_single_quotes] = ACTIONS(953), + [sym__str_back_ticks] = ACTIONS(953), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(953), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(953), + [anon_sym_err_GT] = ACTIONS(951), + [anon_sym_out_GT] = ACTIONS(951), + [anon_sym_e_GT] = ACTIONS(951), + [anon_sym_o_GT] = ACTIONS(951), + [anon_sym_err_PLUSout_GT] = ACTIONS(951), + [anon_sym_out_PLUSerr_GT] = ACTIONS(951), + [anon_sym_o_PLUSe_GT] = ACTIONS(951), + [anon_sym_e_PLUSo_GT] = ACTIONS(951), + [anon_sym_err_GT_GT] = ACTIONS(953), + [anon_sym_out_GT_GT] = ACTIONS(953), + [anon_sym_e_GT_GT] = ACTIONS(953), + [anon_sym_o_GT_GT] = ACTIONS(953), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [aux_sym_unquoted_token1] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(247), }, [1652] = { - [sym__immediate_decimal] = STATE(7407), [sym_comment] = STATE(1652), - [ts_builtin_sym_end] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_and] = ACTIONS(2925), - [anon_sym_xor] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2925), - [anon_sym_not_DASHin] = ACTIONS(2925), - [anon_sym_starts_DASHwith] = ACTIONS(2925), - [anon_sym_ends_DASHwith] = ACTIONS(2925), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_EQ_TILDE] = ACTIONS(2925), - [anon_sym_BANG_TILDE] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_STAR_STAR] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_bit_DASHshl] = ACTIONS(2925), - [anon_sym_bit_DASHshr] = ACTIONS(2925), - [anon_sym_bit_DASHand] = ACTIONS(2925), - [anon_sym_bit_DASHxor] = ACTIONS(2925), - [anon_sym_bit_DASHor] = ACTIONS(2925), - [anon_sym_DOT] = ACTIONS(4834), - [aux_sym__immediate_decimal_token1] = ACTIONS(2977), - [aux_sym__immediate_decimal_token3] = ACTIONS(2977), - [aux_sym__immediate_decimal_token4] = ACTIONS(2979), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token5] = ACTIONS(4781), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(4968), + [aux_sym__immediate_decimal_token2] = ACTIONS(4970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [1653] = { [sym_comment] = STATE(1653), - [anon_sym_true] = ACTIONS(4966), - [anon_sym_false] = ACTIONS(4966), - [anon_sym_null] = ACTIONS(4966), - [aux_sym_cmd_identifier_token38] = ACTIONS(4966), - [aux_sym_cmd_identifier_token39] = ACTIONS(4968), - [aux_sym_cmd_identifier_token40] = ACTIONS(4966), - [sym_long_flag_identifier] = ACTIONS(4970), - [sym__newline] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(4968), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_err_GT_PIPE] = ACTIONS(4968), - [anon_sym_out_GT_PIPE] = ACTIONS(4968), - [anon_sym_e_GT_PIPE] = ACTIONS(4968), - [anon_sym_o_GT_PIPE] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4968), - [anon_sym_LBRACK] = ACTIONS(4968), - [anon_sym_LPAREN] = ACTIONS(4968), - [anon_sym_RPAREN] = ACTIONS(4968), - [anon_sym_DOLLAR] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4966), - [aux_sym_ctrl_match_token1] = ACTIONS(4968), - [anon_sym_RBRACE] = ACTIONS(4968), - [anon_sym_DOT_DOT] = ACTIONS(4966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4968), - [anon_sym_DOT_DOT_LT] = ACTIONS(4968), - [aux_sym__val_number_decimal_token1] = ACTIONS(4966), - [aux_sym__val_number_decimal_token2] = ACTIONS(4968), - [anon_sym_DOT2] = ACTIONS(4966), - [aux_sym__val_number_decimal_token3] = ACTIONS(4968), - [aux_sym__val_number_token1] = ACTIONS(4966), - [aux_sym__val_number_token2] = ACTIONS(4966), - [aux_sym__val_number_token3] = ACTIONS(4966), - [anon_sym_0b] = ACTIONS(4966), - [anon_sym_0o] = ACTIONS(4966), - [anon_sym_0x] = ACTIONS(4966), - [sym_val_date] = ACTIONS(4966), - [anon_sym_DQUOTE] = ACTIONS(4968), - [sym__str_single_quotes] = ACTIONS(4968), - [sym__str_back_ticks] = ACTIONS(4968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4968), - [anon_sym_err_GT] = ACTIONS(4966), - [anon_sym_out_GT] = ACTIONS(4966), - [anon_sym_e_GT] = ACTIONS(4966), - [anon_sym_o_GT] = ACTIONS(4966), - [anon_sym_err_PLUSout_GT] = ACTIONS(4966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4966), - [anon_sym_o_PLUSe_GT] = ACTIONS(4966), - [anon_sym_e_PLUSo_GT] = ACTIONS(4966), - [anon_sym_err_GT_GT] = ACTIONS(4968), - [anon_sym_out_GT_GT] = ACTIONS(4968), - [anon_sym_e_GT_GT] = ACTIONS(4968), - [anon_sym_o_GT_GT] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4968), - [anon_sym_EQ2] = ACTIONS(4972), - [aux_sym_unquoted_token1] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [aux_sym_cmd_identifier_token38] = ACTIONS(2097), + [aux_sym_cmd_identifier_token39] = ACTIONS(2097), + [aux_sym_cmd_identifier_token40] = ACTIONS(2097), + [sym__newline] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_err_GT_PIPE] = ACTIONS(2101), + [anon_sym_out_GT_PIPE] = ACTIONS(2101), + [anon_sym_e_GT_PIPE] = ACTIONS(2101), + [anon_sym_o_GT_PIPE] = ACTIONS(2101), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2101), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2101), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2101), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_RPAREN] = ACTIONS(2101), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [aux_sym_ctrl_match_token1] = ACTIONS(2101), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_LPAREN2] = ACTIONS(2099), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), + [anon_sym_DOT_DOT_LT] = ACTIONS(2097), + [aux_sym__val_number_decimal_token1] = ACTIONS(2097), + [aux_sym__val_number_decimal_token2] = ACTIONS(2097), + [aux_sym__val_number_decimal_token3] = ACTIONS(2097), + [aux_sym__val_number_decimal_token4] = ACTIONS(2097), + [aux_sym__val_number_token1] = ACTIONS(2097), + [aux_sym__val_number_token2] = ACTIONS(2097), + [aux_sym__val_number_token3] = ACTIONS(2097), + [anon_sym_0b] = ACTIONS(2097), + [anon_sym_0o] = ACTIONS(2097), + [anon_sym_0x] = ACTIONS(2097), + [sym_val_date] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2101), + [sym__str_single_quotes] = ACTIONS(2101), + [sym__str_back_ticks] = ACTIONS(2101), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2101), + [anon_sym_err_GT] = ACTIONS(2097), + [anon_sym_out_GT] = ACTIONS(2097), + [anon_sym_e_GT] = ACTIONS(2097), + [anon_sym_o_GT] = ACTIONS(2097), + [anon_sym_err_PLUSout_GT] = ACTIONS(2097), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2097), + [anon_sym_o_PLUSe_GT] = ACTIONS(2097), + [anon_sym_e_PLUSo_GT] = ACTIONS(2097), + [anon_sym_err_GT_GT] = ACTIONS(2097), + [anon_sym_out_GT_GT] = ACTIONS(2097), + [anon_sym_e_GT_GT] = ACTIONS(2097), + [anon_sym_o_GT_GT] = ACTIONS(2097), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2097), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2097), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2097), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2097), + [aux_sym_unquoted_token1] = ACTIONS(2097), + [aux_sym_unquoted_token4] = ACTIONS(2103), [anon_sym_POUND] = ACTIONS(3), }, [1654] = { [sym_comment] = STATE(1654), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [aux_sym_ctrl_match_token1] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4976), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [aux_sym_cmd_identifier_token38] = ACTIONS(2105), + [aux_sym_cmd_identifier_token39] = ACTIONS(2105), + [aux_sym_cmd_identifier_token40] = ACTIONS(2105), + [sym__newline] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_err_GT_PIPE] = ACTIONS(2107), + [anon_sym_out_GT_PIPE] = ACTIONS(2107), + [anon_sym_e_GT_PIPE] = ACTIONS(2107), + [anon_sym_o_GT_PIPE] = ACTIONS(2107), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2107), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2107), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2107), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_RPAREN] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [aux_sym_ctrl_match_token1] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(2099), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), + [anon_sym_DOT_DOT_LT] = ACTIONS(2105), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2105), + [aux_sym__val_number_decimal_token3] = ACTIONS(2105), + [aux_sym__val_number_decimal_token4] = ACTIONS(2105), + [aux_sym__val_number_token1] = ACTIONS(2105), + [aux_sym__val_number_token2] = ACTIONS(2105), + [aux_sym__val_number_token3] = ACTIONS(2105), + [anon_sym_0b] = ACTIONS(2105), + [anon_sym_0o] = ACTIONS(2105), + [anon_sym_0x] = ACTIONS(2105), + [sym_val_date] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2107), + [sym__str_single_quotes] = ACTIONS(2107), + [sym__str_back_ticks] = ACTIONS(2107), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2107), + [anon_sym_err_GT] = ACTIONS(2105), + [anon_sym_out_GT] = ACTIONS(2105), + [anon_sym_e_GT] = ACTIONS(2105), + [anon_sym_o_GT] = ACTIONS(2105), + [anon_sym_err_PLUSout_GT] = ACTIONS(2105), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), + [anon_sym_o_PLUSe_GT] = ACTIONS(2105), + [anon_sym_e_PLUSo_GT] = ACTIONS(2105), + [anon_sym_err_GT_GT] = ACTIONS(2105), + [anon_sym_out_GT_GT] = ACTIONS(2105), + [anon_sym_e_GT_GT] = ACTIONS(2105), + [anon_sym_o_GT_GT] = ACTIONS(2105), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2105), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2105), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2105), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2105), + [aux_sym_unquoted_token1] = ACTIONS(2105), + [aux_sym_unquoted_token4] = ACTIONS(2103), [anon_sym_POUND] = ACTIONS(3), }, [1655] = { [sym_comment] = STATE(1655), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_null] = ACTIONS(948), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(948), - [aux_sym_cmd_identifier_token40] = ACTIONS(948), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [aux_sym_ctrl_match_token1] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_LPAREN2] = ACTIONS(2039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(948), - [anon_sym_DOT2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(948), - [aux_sym__val_number_token1] = ACTIONS(948), - [aux_sym__val_number_token2] = ACTIONS(948), - [aux_sym__val_number_token3] = ACTIONS(948), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(948), - [anon_sym_out_GT_GT] = ACTIONS(948), - [anon_sym_e_GT_GT] = ACTIONS(948), - [anon_sym_o_GT_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), - [aux_sym_unquoted_token1] = ACTIONS(948), - [aux_sym_unquoted_token7] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cmd_identifier_token41] = ACTIONS(1519), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [aux_sym_expr_binary_token1] = ACTIONS(1521), + [aux_sym_expr_binary_token2] = ACTIONS(1521), + [aux_sym_expr_binary_token3] = ACTIONS(1521), + [aux_sym_expr_binary_token4] = ACTIONS(1521), + [aux_sym_expr_binary_token5] = ACTIONS(1521), + [aux_sym_expr_binary_token6] = ACTIONS(1521), + [aux_sym_expr_binary_token7] = ACTIONS(1521), + [aux_sym_expr_binary_token8] = ACTIONS(1521), + [aux_sym_expr_binary_token9] = ACTIONS(1521), + [aux_sym_expr_binary_token10] = ACTIONS(1521), + [aux_sym_expr_binary_token11] = ACTIONS(1521), + [aux_sym_expr_binary_token12] = ACTIONS(1521), + [aux_sym_expr_binary_token13] = ACTIONS(1521), + [aux_sym_expr_binary_token14] = ACTIONS(1521), + [aux_sym_expr_binary_token15] = ACTIONS(1521), + [aux_sym_expr_binary_token16] = ACTIONS(1521), + [aux_sym_expr_binary_token17] = ACTIONS(1521), + [aux_sym_expr_binary_token18] = ACTIONS(1521), + [aux_sym_expr_binary_token19] = ACTIONS(1521), + [aux_sym_expr_binary_token20] = ACTIONS(1521), + [aux_sym_expr_binary_token21] = ACTIONS(1521), + [aux_sym_expr_binary_token22] = ACTIONS(1521), + [aux_sym_expr_binary_token23] = ACTIONS(1521), + [aux_sym_expr_binary_token24] = ACTIONS(1521), + [aux_sym_expr_binary_token25] = ACTIONS(1521), + [aux_sym_expr_binary_token26] = ACTIONS(1521), + [aux_sym_expr_binary_token27] = ACTIONS(1521), + [aux_sym_expr_binary_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(247), }, [1656] = { [sym_comment] = STATE(1656), - [aux_sym_cmd_identifier_token41] = ACTIONS(1376), - [sym__newline] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [aux_sym_record_entry_token1] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1571), + [aux_sym_cmd_identifier_token38] = ACTIONS(1571), + [aux_sym_cmd_identifier_token39] = ACTIONS(1571), + [aux_sym_cmd_identifier_token40] = ACTIONS(1571), + [sym__newline] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_err_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_GT_PIPE] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_DOLLAR] = ACTIONS(1569), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1569), + [aux_sym_ctrl_match_token1] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1571), + [aux_sym__val_number_decimal_token3] = ACTIONS(1571), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_token1] = ACTIONS(1571), + [aux_sym__val_number_token2] = ACTIONS(1571), + [aux_sym__val_number_token3] = ACTIONS(1571), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym__str_single_quotes] = ACTIONS(1571), + [sym__str_back_ticks] = ACTIONS(1571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1571), + [anon_sym_out_GT_GT] = ACTIONS(1571), + [anon_sym_e_GT_GT] = ACTIONS(1571), + [anon_sym_o_GT_GT] = ACTIONS(1571), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(247), }, [1657] = { [sym_comment] = STATE(1657), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [aux_sym_cmd_identifier_token38] = ACTIONS(2073), - [aux_sym_cmd_identifier_token39] = ACTIONS(2073), - [aux_sym_cmd_identifier_token40] = ACTIONS(2073), - [sym__newline] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_err_GT_PIPE] = ACTIONS(2075), - [anon_sym_out_GT_PIPE] = ACTIONS(2075), - [anon_sym_e_GT_PIPE] = ACTIONS(2075), - [anon_sym_o_GT_PIPE] = ACTIONS(2075), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2075), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2075), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2075), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_RPAREN] = ACTIONS(2075), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [aux_sym_ctrl_match_token1] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2073), - [anon_sym_LPAREN2] = ACTIONS(2075), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_LT] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2073), - [anon_sym_DOT2] = ACTIONS(2073), - [aux_sym__val_number_decimal_token3] = ACTIONS(2073), - [aux_sym__val_number_token1] = ACTIONS(2073), - [aux_sym__val_number_token2] = ACTIONS(2073), - [aux_sym__val_number_token3] = ACTIONS(2073), - [anon_sym_0b] = ACTIONS(2073), - [anon_sym_0o] = ACTIONS(2073), - [anon_sym_0x] = ACTIONS(2073), - [sym_val_date] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2075), - [sym__str_single_quotes] = ACTIONS(2075), - [sym__str_back_ticks] = ACTIONS(2075), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2075), - [anon_sym_err_GT] = ACTIONS(2073), - [anon_sym_out_GT] = ACTIONS(2073), - [anon_sym_e_GT] = ACTIONS(2073), - [anon_sym_o_GT] = ACTIONS(2073), - [anon_sym_err_PLUSout_GT] = ACTIONS(2073), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2073), - [anon_sym_o_PLUSe_GT] = ACTIONS(2073), - [anon_sym_e_PLUSo_GT] = ACTIONS(2073), - [anon_sym_err_GT_GT] = ACTIONS(2073), - [anon_sym_out_GT_GT] = ACTIONS(2073), - [anon_sym_e_GT_GT] = ACTIONS(2073), - [anon_sym_o_GT_GT] = ACTIONS(2073), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2073), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2073), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2073), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2073), - [aux_sym_unquoted_token1] = ACTIONS(2073), - [aux_sym_unquoted_token7] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(121), + [ts_builtin_sym_end] = ACTIONS(1650), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT] = ACTIONS(1650), + [aux_sym__immediate_decimal_token2] = ACTIONS(4972), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [aux_sym_unquoted_token2] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), }, [1658] = { + [sym_path] = STATE(1868), [sym_comment] = STATE(1658), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [anon_sym_null] = ACTIONS(2163), - [aux_sym_cmd_identifier_token38] = ACTIONS(2163), - [aux_sym_cmd_identifier_token39] = ACTIONS(2163), - [aux_sym_cmd_identifier_token40] = ACTIONS(2163), - [sym__newline] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2165), - [anon_sym_PIPE] = ACTIONS(2165), - [anon_sym_err_GT_PIPE] = ACTIONS(2165), - [anon_sym_out_GT_PIPE] = ACTIONS(2165), - [anon_sym_e_GT_PIPE] = ACTIONS(2165), - [anon_sym_o_GT_PIPE] = ACTIONS(2165), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2165), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2165), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2165), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [aux_sym_ctrl_match_token1] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_DOT_DOT] = ACTIONS(2163), - [anon_sym_LPAREN2] = ACTIONS(2157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2163), - [anon_sym_DOT_DOT_LT] = ACTIONS(2163), - [aux_sym__val_number_decimal_token1] = ACTIONS(2163), - [aux_sym__val_number_decimal_token2] = ACTIONS(2163), - [anon_sym_DOT2] = ACTIONS(2163), - [aux_sym__val_number_decimal_token3] = ACTIONS(2163), - [aux_sym__val_number_token1] = ACTIONS(2163), - [aux_sym__val_number_token2] = ACTIONS(2163), - [aux_sym__val_number_token3] = ACTIONS(2163), - [anon_sym_0b] = ACTIONS(2163), - [anon_sym_0o] = ACTIONS(2163), - [anon_sym_0x] = ACTIONS(2163), - [sym_val_date] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2165), - [anon_sym_err_GT] = ACTIONS(2163), - [anon_sym_out_GT] = ACTIONS(2163), - [anon_sym_e_GT] = ACTIONS(2163), - [anon_sym_o_GT] = ACTIONS(2163), - [anon_sym_err_PLUSout_GT] = ACTIONS(2163), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2163), - [anon_sym_o_PLUSe_GT] = ACTIONS(2163), - [anon_sym_e_PLUSo_GT] = ACTIONS(2163), - [anon_sym_err_GT_GT] = ACTIONS(2163), - [anon_sym_out_GT_GT] = ACTIONS(2163), - [anon_sym_e_GT_GT] = ACTIONS(2163), - [anon_sym_o_GT_GT] = ACTIONS(2163), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2163), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2163), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2163), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2163), - [aux_sym_unquoted_token1] = ACTIONS(2163), - [aux_sym_unquoted_token7] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(121), + [aux_sym_cell_path_repeat1] = STATE(1658), + [ts_builtin_sym_end] = ACTIONS(957), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [anon_sym_null] = ACTIONS(957), + [aux_sym_cmd_identifier_token38] = ACTIONS(957), + [aux_sym_cmd_identifier_token39] = ACTIONS(957), + [aux_sym_cmd_identifier_token40] = ACTIONS(957), + [sym__newline] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_err_GT_PIPE] = ACTIONS(957), + [anon_sym_out_GT_PIPE] = ACTIONS(957), + [anon_sym_e_GT_PIPE] = ACTIONS(957), + [anon_sym_o_GT_PIPE] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(955), + [aux_sym_ctrl_match_token1] = ACTIONS(957), + [anon_sym_DOT_DOT] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(957), + [anon_sym_DOT_DOT_LT] = ACTIONS(957), + [aux_sym__val_number_decimal_token1] = ACTIONS(955), + [aux_sym__val_number_decimal_token2] = ACTIONS(957), + [aux_sym__val_number_decimal_token3] = ACTIONS(957), + [aux_sym__val_number_decimal_token4] = ACTIONS(957), + [aux_sym__val_number_token1] = ACTIONS(957), + [aux_sym__val_number_token2] = ACTIONS(957), + [aux_sym__val_number_token3] = ACTIONS(957), + [anon_sym_0b] = ACTIONS(955), + [anon_sym_0o] = ACTIONS(955), + [anon_sym_0x] = ACTIONS(955), + [sym_val_date] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [sym__str_single_quotes] = ACTIONS(957), + [sym__str_back_ticks] = ACTIONS(957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(957), + [anon_sym_err_GT] = ACTIONS(955), + [anon_sym_out_GT] = ACTIONS(955), + [anon_sym_e_GT] = ACTIONS(955), + [anon_sym_o_GT] = ACTIONS(955), + [anon_sym_err_PLUSout_GT] = ACTIONS(955), + [anon_sym_out_PLUSerr_GT] = ACTIONS(955), + [anon_sym_o_PLUSe_GT] = ACTIONS(955), + [anon_sym_e_PLUSo_GT] = ACTIONS(955), + [anon_sym_err_GT_GT] = ACTIONS(957), + [anon_sym_out_GT_GT] = ACTIONS(957), + [anon_sym_e_GT_GT] = ACTIONS(957), + [anon_sym_o_GT_GT] = ACTIONS(957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [aux_sym_unquoted_token1] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(247), }, [1659] = { - [sym_cmd_identifier] = STATE(2129), - [sym__command_name] = STATE(6457), - [sym_scope_pattern] = STATE(6480), - [sym_wild_card] = STATE(6459), - [sym_command_list] = STATE(6461), - [sym__val_number_decimal] = STATE(7158), - [sym_val_string] = STATE(2131), - [sym__str_double_quotes] = STATE(2137), [sym_comment] = STATE(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(4913), - [aux_sym_cmd_identifier_token2] = ACTIONS(4915), - [aux_sym_cmd_identifier_token3] = ACTIONS(4915), - [aux_sym_cmd_identifier_token4] = ACTIONS(4915), - [aux_sym_cmd_identifier_token5] = ACTIONS(4915), - [aux_sym_cmd_identifier_token6] = ACTIONS(4915), - [aux_sym_cmd_identifier_token7] = ACTIONS(4915), - [aux_sym_cmd_identifier_token8] = ACTIONS(4915), - [aux_sym_cmd_identifier_token9] = ACTIONS(4913), - [aux_sym_cmd_identifier_token10] = ACTIONS(4915), - [aux_sym_cmd_identifier_token11] = ACTIONS(4915), - [aux_sym_cmd_identifier_token12] = ACTIONS(4915), - [aux_sym_cmd_identifier_token13] = ACTIONS(4913), - [aux_sym_cmd_identifier_token14] = ACTIONS(4915), - [aux_sym_cmd_identifier_token15] = ACTIONS(4913), - [aux_sym_cmd_identifier_token16] = ACTIONS(4915), - [aux_sym_cmd_identifier_token17] = ACTIONS(4915), - [aux_sym_cmd_identifier_token18] = ACTIONS(4915), - [aux_sym_cmd_identifier_token19] = ACTIONS(4915), - [aux_sym_cmd_identifier_token20] = ACTIONS(4915), - [aux_sym_cmd_identifier_token21] = ACTIONS(4915), - [aux_sym_cmd_identifier_token22] = ACTIONS(4915), - [aux_sym_cmd_identifier_token23] = ACTIONS(4915), - [aux_sym_cmd_identifier_token24] = ACTIONS(4915), - [aux_sym_cmd_identifier_token25] = ACTIONS(4915), - [aux_sym_cmd_identifier_token26] = ACTIONS(4915), - [aux_sym_cmd_identifier_token27] = ACTIONS(4915), - [aux_sym_cmd_identifier_token28] = ACTIONS(4915), - [aux_sym_cmd_identifier_token29] = ACTIONS(4915), - [aux_sym_cmd_identifier_token30] = ACTIONS(4915), - [aux_sym_cmd_identifier_token31] = ACTIONS(4915), - [aux_sym_cmd_identifier_token32] = ACTIONS(4915), - [aux_sym_cmd_identifier_token33] = ACTIONS(4915), - [aux_sym_cmd_identifier_token34] = ACTIONS(4915), - [aux_sym_cmd_identifier_token35] = ACTIONS(4915), - [aux_sym_cmd_identifier_token36] = ACTIONS(4913), - [anon_sym_true] = ACTIONS(4917), - [anon_sym_false] = ACTIONS(4917), - [anon_sym_null] = ACTIONS(4917), - [aux_sym_cmd_identifier_token38] = ACTIONS(4919), - [aux_sym_cmd_identifier_token39] = ACTIONS(4917), - [aux_sym_cmd_identifier_token40] = ACTIONS(4917), - [sym__newline] = ACTIONS(4978), - [anon_sym_SEMI] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_STAR] = ACTIONS(4925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1196), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(4927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [aux_sym_expr_binary_token1] = ACTIONS(1587), + [aux_sym_expr_binary_token2] = ACTIONS(1587), + [aux_sym_expr_binary_token3] = ACTIONS(1587), + [aux_sym_expr_binary_token4] = ACTIONS(1587), + [aux_sym_expr_binary_token5] = ACTIONS(1587), + [aux_sym_expr_binary_token6] = ACTIONS(1587), + [aux_sym_expr_binary_token7] = ACTIONS(1587), + [aux_sym_expr_binary_token8] = ACTIONS(1587), + [aux_sym_expr_binary_token9] = ACTIONS(1587), + [aux_sym_expr_binary_token10] = ACTIONS(1587), + [aux_sym_expr_binary_token11] = ACTIONS(1587), + [aux_sym_expr_binary_token12] = ACTIONS(1587), + [aux_sym_expr_binary_token13] = ACTIONS(1587), + [aux_sym_expr_binary_token14] = ACTIONS(1587), + [aux_sym_expr_binary_token15] = ACTIONS(1587), + [aux_sym_expr_binary_token16] = ACTIONS(1587), + [aux_sym_expr_binary_token17] = ACTIONS(1587), + [aux_sym_expr_binary_token18] = ACTIONS(1587), + [aux_sym_expr_binary_token19] = ACTIONS(1587), + [aux_sym_expr_binary_token20] = ACTIONS(1587), + [aux_sym_expr_binary_token21] = ACTIONS(1587), + [aux_sym_expr_binary_token22] = ACTIONS(1587), + [aux_sym_expr_binary_token23] = ACTIONS(1587), + [aux_sym_expr_binary_token24] = ACTIONS(1587), + [aux_sym_expr_binary_token25] = ACTIONS(1587), + [aux_sym_expr_binary_token26] = ACTIONS(1587), + [aux_sym_expr_binary_token27] = ACTIONS(1587), + [aux_sym_expr_binary_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(247), }, [1660] = { [sym_comment] = STATE(1660), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_null] = ACTIONS(918), - [aux_sym_cmd_identifier_token38] = ACTIONS(918), - [aux_sym_cmd_identifier_token39] = ACTIONS(918), - [aux_sym_cmd_identifier_token40] = ACTIONS(918), - [sym__newline] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_err_GT_PIPE] = ACTIONS(918), - [anon_sym_out_GT_PIPE] = ACTIONS(918), - [anon_sym_e_GT_PIPE] = ACTIONS(918), - [anon_sym_o_GT_PIPE] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(916), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(916), - [aux_sym_ctrl_match_token1] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_DOT_DOT] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ] = ACTIONS(918), - [anon_sym_DOT_DOT_LT] = ACTIONS(918), - [aux_sym__val_number_decimal_token1] = ACTIONS(916), - [aux_sym__val_number_decimal_token2] = ACTIONS(918), - [anon_sym_DOT2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(918), - [aux_sym__val_number_token1] = ACTIONS(918), - [aux_sym__val_number_token2] = ACTIONS(918), - [aux_sym__val_number_token3] = ACTIONS(918), - [anon_sym_0b] = ACTIONS(916), - [anon_sym_0o] = ACTIONS(916), - [anon_sym_0x] = ACTIONS(916), - [sym_val_date] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(918), - [sym__str_single_quotes] = ACTIONS(918), - [sym__str_back_ticks] = ACTIONS(918), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [aux_sym_unquoted_token1] = ACTIONS(916), - [anon_sym_POUND] = ACTIONS(3), - }, - [1661] = { - [sym_comment] = STATE(1661), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1535), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1535), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1535), - [anon_sym_0o] = ACTIONS(1535), - [anon_sym_0x] = ACTIONS(1535), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), - }, - [1662] = { - [sym_comment] = STATE(1662), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [anon_sym_null] = ACTIONS(902), - [aux_sym_cmd_identifier_token38] = ACTIONS(902), - [aux_sym_cmd_identifier_token39] = ACTIONS(902), - [aux_sym_cmd_identifier_token40] = ACTIONS(902), - [sym__newline] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_err_GT_PIPE] = ACTIONS(902), - [anon_sym_out_GT_PIPE] = ACTIONS(902), - [anon_sym_e_GT_PIPE] = ACTIONS(902), - [anon_sym_o_GT_PIPE] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(900), - [aux_sym_ctrl_match_token1] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_DOT_DOT] = ACTIONS(900), - [anon_sym_QMARK2] = ACTIONS(4980), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(902), - [anon_sym_DOT_DOT_LT] = ACTIONS(902), - [aux_sym__val_number_decimal_token1] = ACTIONS(900), - [aux_sym__val_number_decimal_token2] = ACTIONS(902), - [anon_sym_DOT2] = ACTIONS(900), - [aux_sym__val_number_decimal_token3] = ACTIONS(902), - [aux_sym__val_number_token1] = ACTIONS(902), - [aux_sym__val_number_token2] = ACTIONS(902), - [aux_sym__val_number_token3] = ACTIONS(902), - [anon_sym_0b] = ACTIONS(900), - [anon_sym_0o] = ACTIONS(900), - [anon_sym_0x] = ACTIONS(900), - [sym_val_date] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(902), - [sym__str_single_quotes] = ACTIONS(902), - [sym__str_back_ticks] = ACTIONS(902), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_err_GT] = ACTIONS(900), - [anon_sym_out_GT] = ACTIONS(900), - [anon_sym_e_GT] = ACTIONS(900), - [anon_sym_o_GT] = ACTIONS(900), - [anon_sym_err_PLUSout_GT] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(900), - [anon_sym_o_PLUSe_GT] = ACTIONS(900), - [anon_sym_e_PLUSo_GT] = ACTIONS(900), - [anon_sym_err_GT_GT] = ACTIONS(902), - [anon_sym_out_GT_GT] = ACTIONS(902), - [anon_sym_e_GT_GT] = ACTIONS(902), - [anon_sym_o_GT_GT] = ACTIONS(902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(902), - [aux_sym_unquoted_token1] = ACTIONS(900), - [anon_sym_POUND] = ACTIONS(3), - }, - [1663] = { - [sym_comment] = STATE(1663), - [anon_sym_true] = ACTIONS(908), - [anon_sym_false] = ACTIONS(908), - [anon_sym_null] = ACTIONS(908), - [aux_sym_cmd_identifier_token38] = ACTIONS(908), - [aux_sym_cmd_identifier_token39] = ACTIONS(908), - [aux_sym_cmd_identifier_token40] = ACTIONS(908), - [sym__newline] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_err_GT_PIPE] = ACTIONS(908), - [anon_sym_out_GT_PIPE] = ACTIONS(908), - [anon_sym_e_GT_PIPE] = ACTIONS(908), - [anon_sym_o_GT_PIPE] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [aux_sym_ctrl_match_token1] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(906), - [anon_sym_QMARK2] = ACTIONS(4982), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [anon_sym_DOT_DOT_LT] = ACTIONS(908), - [aux_sym__val_number_decimal_token1] = ACTIONS(906), - [aux_sym__val_number_decimal_token2] = ACTIONS(908), - [anon_sym_DOT2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(908), - [aux_sym__val_number_token1] = ACTIONS(908), - [aux_sym__val_number_token2] = ACTIONS(908), - [aux_sym__val_number_token3] = ACTIONS(908), - [anon_sym_0b] = ACTIONS(906), - [anon_sym_0o] = ACTIONS(906), - [anon_sym_0x] = ACTIONS(906), - [sym_val_date] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym__str_single_quotes] = ACTIONS(908), - [sym__str_back_ticks] = ACTIONS(908), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(908), - [anon_sym_err_GT] = ACTIONS(906), - [anon_sym_out_GT] = ACTIONS(906), - [anon_sym_e_GT] = ACTIONS(906), - [anon_sym_o_GT] = ACTIONS(906), - [anon_sym_err_PLUSout_GT] = ACTIONS(906), - [anon_sym_out_PLUSerr_GT] = ACTIONS(906), - [anon_sym_o_PLUSe_GT] = ACTIONS(906), - [anon_sym_e_PLUSo_GT] = ACTIONS(906), - [anon_sym_err_GT_GT] = ACTIONS(908), - [anon_sym_out_GT_GT] = ACTIONS(908), - [anon_sym_e_GT_GT] = ACTIONS(908), - [anon_sym_o_GT_GT] = ACTIONS(908), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), - [aux_sym_unquoted_token1] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(3), - }, - [1664] = { - [sym_comment] = STATE(1664), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token38] = ACTIONS(922), - [aux_sym_cmd_identifier_token39] = ACTIONS(922), - [aux_sym_cmd_identifier_token40] = ACTIONS(922), - [sym__newline] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_err_GT_PIPE] = ACTIONS(922), - [anon_sym_out_GT_PIPE] = ACTIONS(922), - [anon_sym_e_GT_PIPE] = ACTIONS(922), - [anon_sym_o_GT_PIPE] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(920), - [aux_sym_ctrl_match_token1] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_QMARK2] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(922), - [anon_sym_DOT_DOT_LT] = ACTIONS(922), - [aux_sym__val_number_decimal_token1] = ACTIONS(920), - [aux_sym__val_number_decimal_token2] = ACTIONS(922), - [anon_sym_DOT2] = ACTIONS(920), - [aux_sym__val_number_decimal_token3] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(922), - [aux_sym__val_number_token2] = ACTIONS(922), - [aux_sym__val_number_token3] = ACTIONS(922), - [anon_sym_0b] = ACTIONS(920), - [anon_sym_0o] = ACTIONS(920), - [anon_sym_0x] = ACTIONS(920), - [sym_val_date] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [sym__str_single_quotes] = ACTIONS(922), - [sym__str_back_ticks] = ACTIONS(922), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(922), - [anon_sym_err_GT] = ACTIONS(920), - [anon_sym_out_GT] = ACTIONS(920), - [anon_sym_e_GT] = ACTIONS(920), - [anon_sym_o_GT] = ACTIONS(920), - [anon_sym_err_PLUSout_GT] = ACTIONS(920), - [anon_sym_out_PLUSerr_GT] = ACTIONS(920), - [anon_sym_o_PLUSe_GT] = ACTIONS(920), - [anon_sym_e_PLUSo_GT] = ACTIONS(920), - [anon_sym_err_GT_GT] = ACTIONS(922), - [anon_sym_out_GT_GT] = ACTIONS(922), - [anon_sym_e_GT_GT] = ACTIONS(922), - [anon_sym_o_GT_GT] = ACTIONS(922), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(922), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(922), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(922), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(922), - [aux_sym_unquoted_token1] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(3), - }, - [1665] = { - [sym_comment] = STATE(1665), - [ts_builtin_sym_end] = ACTIONS(1869), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [aux_sym_cmd_identifier_token38] = ACTIONS(1869), - [aux_sym_cmd_identifier_token39] = ACTIONS(1869), - [aux_sym_cmd_identifier_token40] = ACTIONS(1869), - [sym__newline] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_err_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_GT_PIPE] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1863), - [aux_sym_ctrl_match_token1] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT2] = ACTIONS(4984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT] = ACTIONS(1863), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4986), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [anon_sym_DOT2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [anon_sym_0b] = ACTIONS(1863), - [anon_sym_0o] = ACTIONS(1863), - [anon_sym_0x] = ACTIONS(1863), - [sym_val_date] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), - [anon_sym_err_GT] = ACTIONS(1863), - [anon_sym_out_GT] = ACTIONS(1863), - [anon_sym_e_GT] = ACTIONS(1863), - [anon_sym_o_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT] = ACTIONS(1863), - [anon_sym_err_GT_GT] = ACTIONS(1869), - [anon_sym_out_GT_GT] = ACTIONS(1869), - [anon_sym_e_GT_GT] = ACTIONS(1869), - [anon_sym_o_GT_GT] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), - [aux_sym_unquoted_token1] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(3), - }, - [1666] = { - [sym_comment] = STATE(1666), - [ts_builtin_sym_end] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [aux_sym_cmd_identifier_token38] = ACTIONS(1580), - [aux_sym_cmd_identifier_token39] = ACTIONS(1580), - [aux_sym_cmd_identifier_token40] = ACTIONS(1580), - [sym__newline] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_err_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_GT_PIPE] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1570), - [aux_sym_ctrl_match_token1] = ACTIONS(1580), - [anon_sym_DOT_DOT] = ACTIONS(1570), - [anon_sym_LPAREN2] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1580), - [anon_sym_DOT_DOT_LT] = ACTIONS(1580), - [aux_sym__val_number_decimal_token1] = ACTIONS(1570), - [aux_sym__val_number_decimal_token2] = ACTIONS(1580), - [anon_sym_DOT2] = ACTIONS(1570), - [aux_sym__val_number_decimal_token3] = ACTIONS(1580), - [aux_sym__val_number_token1] = ACTIONS(1580), - [aux_sym__val_number_token2] = ACTIONS(1580), - [aux_sym__val_number_token3] = ACTIONS(1580), - [anon_sym_0b] = ACTIONS(1570), - [anon_sym_0o] = ACTIONS(1570), - [anon_sym_0x] = ACTIONS(1570), - [sym_val_date] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1580), - [sym__str_single_quotes] = ACTIONS(1580), - [sym__str_back_ticks] = ACTIONS(1580), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1580), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1570), - [anon_sym_out_GT] = ACTIONS(1570), - [anon_sym_e_GT] = ACTIONS(1570), - [anon_sym_o_GT] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT] = ACTIONS(1570), - [anon_sym_err_GT_GT] = ACTIONS(1580), - [anon_sym_out_GT_GT] = ACTIONS(1580), - [anon_sym_e_GT_GT] = ACTIONS(1580), - [anon_sym_o_GT_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), - [aux_sym_unquoted_token1] = ACTIONS(1570), - [aux_sym_unquoted_token2] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(3), - }, - [1667] = { - [sym_cell_path] = STATE(2122), - [sym_path] = STATE(1954), - [sym_comment] = STATE(1667), - [aux_sym_cell_path_repeat1] = STATE(1710), - [ts_builtin_sym_end] = ACTIONS(1549), - [sym__newline] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_err_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_GT_PIPE] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_and] = ACTIONS(1549), - [anon_sym_xor] = ACTIONS(1549), - [anon_sym_or] = ACTIONS(1549), - [anon_sym_not_DASHin] = ACTIONS(1549), - [anon_sym_starts_DASHwith] = ACTIONS(1549), - [anon_sym_ends_DASHwith] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1549), - [anon_sym_LT2] = ACTIONS(1545), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_EQ_TILDE] = ACTIONS(1549), - [anon_sym_BANG_TILDE] = ACTIONS(1549), - [anon_sym_STAR_STAR] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_mod] = ACTIONS(1549), - [anon_sym_SLASH_SLASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_bit_DASHshl] = ACTIONS(1549), - [anon_sym_bit_DASHshr] = ACTIONS(1549), - [anon_sym_bit_DASHand] = ACTIONS(1549), - [anon_sym_bit_DASHxor] = ACTIONS(1549), - [anon_sym_bit_DASHor] = ACTIONS(1549), - [anon_sym_DOT_DOT2] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(4933), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1545), - [anon_sym_out_GT] = ACTIONS(1545), - [anon_sym_e_GT] = ACTIONS(1545), - [anon_sym_o_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT] = ACTIONS(1545), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [anon_sym_POUND] = ACTIONS(3), - }, - [1668] = { - [sym_comment] = STATE(1668), - [ts_builtin_sym_end] = ACTIONS(1370), - [aux_sym_cmd_identifier_token41] = ACTIONS(1368), - [sym__newline] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [aux_sym__immediate_decimal_token2] = ACTIONS(4840), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(3), - }, - [1669] = { - [sym_comment] = STATE(1669), - [ts_builtin_sym_end] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [anon_sym_null] = ACTIONS(1961), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1961), - [aux_sym_cmd_identifier_token40] = ACTIONS(1961), - [sym__newline] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_err_GT_PIPE] = ACTIONS(1961), - [anon_sym_out_GT_PIPE] = ACTIONS(1961), - [anon_sym_e_GT_PIPE] = ACTIONS(1961), - [anon_sym_o_GT_PIPE] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [aux_sym_ctrl_match_token1] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1959), - [anon_sym_DOT_DOT2] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1961), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [anon_sym_DOT2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [anon_sym_0b] = ACTIONS(1959), - [anon_sym_0o] = ACTIONS(1959), - [anon_sym_0x] = ACTIONS(1959), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), - [anon_sym_err_GT] = ACTIONS(1959), - [anon_sym_out_GT] = ACTIONS(1959), - [anon_sym_e_GT] = ACTIONS(1959), - [anon_sym_o_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT] = ACTIONS(1959), - [anon_sym_err_GT_GT] = ACTIONS(1961), - [anon_sym_out_GT_GT] = ACTIONS(1961), - [anon_sym_e_GT_GT] = ACTIONS(1961), - [anon_sym_o_GT_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1961), - [aux_sym_unquoted_token1] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(3), - }, - [1670] = { - [sym_path] = STATE(1840), - [sym_comment] = STATE(1670), - [aux_sym_cell_path_repeat1] = STATE(1636), - [ts_builtin_sym_end] = ACTIONS(891), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_null] = ACTIONS(891), - [aux_sym_cmd_identifier_token38] = ACTIONS(891), - [aux_sym_cmd_identifier_token39] = ACTIONS(891), - [aux_sym_cmd_identifier_token40] = ACTIONS(891), - [sym__newline] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_err_GT_PIPE] = ACTIONS(891), - [anon_sym_out_GT_PIPE] = ACTIONS(891), - [anon_sym_e_GT_PIPE] = ACTIONS(891), - [anon_sym_o_GT_PIPE] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(889), - [aux_sym_ctrl_match_token1] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(889), - [anon_sym_DOT] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(891), - [anon_sym_DOT_DOT_LT] = ACTIONS(891), - [aux_sym__val_number_decimal_token1] = ACTIONS(889), - [aux_sym__val_number_decimal_token2] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(889), - [aux_sym__val_number_decimal_token3] = ACTIONS(891), - [aux_sym__val_number_token1] = ACTIONS(891), - [aux_sym__val_number_token2] = ACTIONS(891), - [aux_sym__val_number_token3] = ACTIONS(891), - [anon_sym_0b] = ACTIONS(889), - [anon_sym_0o] = ACTIONS(889), - [anon_sym_0x] = ACTIONS(889), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(889), - [anon_sym_out_GT] = ACTIONS(889), - [anon_sym_e_GT] = ACTIONS(889), - [anon_sym_o_GT] = ACTIONS(889), - [anon_sym_err_PLUSout_GT] = ACTIONS(889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(889), - [anon_sym_o_PLUSe_GT] = ACTIONS(889), - [anon_sym_e_PLUSo_GT] = ACTIONS(889), - [anon_sym_err_GT_GT] = ACTIONS(891), - [anon_sym_out_GT_GT] = ACTIONS(891), - [anon_sym_e_GT_GT] = ACTIONS(891), - [anon_sym_o_GT_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(891), - [aux_sym_unquoted_token1] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(3), - }, - [1671] = { - [sym_comment] = STATE(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1368), - [sym__newline] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_err_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_GT_PIPE] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_xor] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_not_DASHin] = ACTIONS(1370), - [anon_sym_starts_DASHwith] = ACTIONS(1370), - [anon_sym_ends_DASHwith] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT2] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_TILDE] = ACTIONS(1370), - [anon_sym_BANG_TILDE] = ACTIONS(1370), - [anon_sym_STAR_STAR] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_SLASH_SLASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_bit_DASHshl] = ACTIONS(1370), - [anon_sym_bit_DASHshr] = ACTIONS(1370), - [anon_sym_bit_DASHand] = ACTIONS(1370), - [anon_sym_bit_DASHxor] = ACTIONS(1370), - [anon_sym_bit_DASHor] = ACTIONS(1370), - [anon_sym_DOT_DOT2] = ACTIONS(1368), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1370), - [sym_filesize_unit] = ACTIONS(1368), - [sym_duration_unit] = ACTIONS(1370), - [aux_sym_record_entry_token1] = ACTIONS(1370), - [anon_sym_err_GT] = ACTIONS(1368), - [anon_sym_out_GT] = ACTIONS(1368), - [anon_sym_e_GT] = ACTIONS(1368), - [anon_sym_o_GT] = ACTIONS(1368), - [anon_sym_err_PLUSout_GT] = ACTIONS(1368), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1368), - [anon_sym_o_PLUSe_GT] = ACTIONS(1368), - [anon_sym_e_PLUSo_GT] = ACTIONS(1368), - [anon_sym_err_GT_GT] = ACTIONS(1370), - [anon_sym_out_GT_GT] = ACTIONS(1370), - [anon_sym_e_GT_GT] = ACTIONS(1370), - [anon_sym_o_GT_GT] = ACTIONS(1370), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1370), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1370), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1370), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(3), - }, - [1672] = { - [sym_comment] = STATE(1672), [ts_builtin_sym_end] = ACTIONS(1945), [anon_sym_true] = ACTIONS(1945), [anon_sym_false] = ACTIONS(1945), @@ -222930,40 +227538,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1945), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1945), [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1943), [anon_sym_DASH_DASH] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1943), [aux_sym_ctrl_match_token1] = ACTIONS(1945), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [anon_sym_LPAREN2] = ACTIONS(1941), - [anon_sym_DOT] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT2] = ACTIONS(1943), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), + [anon_sym_DOT_DOT_LT] = ACTIONS(1943), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1945), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [anon_sym_DOT2] = ACTIONS(1939), [aux_sym__val_number_decimal_token3] = ACTIONS(1945), + [aux_sym__val_number_decimal_token4] = ACTIONS(1945), [aux_sym__val_number_token1] = ACTIONS(1945), [aux_sym__val_number_token2] = ACTIONS(1945), [aux_sym__val_number_token3] = ACTIONS(1945), - [anon_sym_0b] = ACTIONS(1939), - [anon_sym_0o] = ACTIONS(1939), - [anon_sym_0x] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1943), + [anon_sym_0o] = ACTIONS(1943), + [anon_sym_0x] = ACTIONS(1943), [sym_val_date] = ACTIONS(1945), [anon_sym_DQUOTE] = ACTIONS(1945), [sym__str_single_quotes] = ACTIONS(1945), [sym__str_back_ticks] = ACTIONS(1945), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1945), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1945), - [anon_sym_err_GT] = ACTIONS(1939), - [anon_sym_out_GT] = ACTIONS(1939), - [anon_sym_e_GT] = ACTIONS(1939), - [anon_sym_o_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT] = ACTIONS(1939), + [anon_sym_err_GT] = ACTIONS(1943), + [anon_sym_out_GT] = ACTIONS(1943), + [anon_sym_e_GT] = ACTIONS(1943), + [anon_sym_o_GT] = ACTIONS(1943), + [anon_sym_err_PLUSout_GT] = ACTIONS(1943), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1943), + [anon_sym_o_PLUSe_GT] = ACTIONS(1943), + [anon_sym_e_PLUSo_GT] = ACTIONS(1943), [anon_sym_err_GT_GT] = ACTIONS(1945), [anon_sym_out_GT_GT] = ACTIONS(1945), [anon_sym_e_GT_GT] = ACTIONS(1945), @@ -222972,762 +227581,2152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1945), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1945), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1945), - [aux_sym_unquoted_token1] = ACTIONS(1939), - [aux_sym_unquoted_token2] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(247), + }, + [1661] = { + [sym_comment] = STATE(1661), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1591), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1589), + [aux_sym_ctrl_match_token1] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(4977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT] = ACTIONS(1591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1591), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1591), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1589), + [anon_sym_0o] = ACTIONS(1589), + [anon_sym_0x] = ACTIONS(1589), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1589), + [anon_sym_out_GT] = ACTIONS(1589), + [anon_sym_e_GT] = ACTIONS(1589), + [anon_sym_o_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT] = ACTIONS(1589), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(247), + }, + [1662] = { + [sym_comment] = STATE(1662), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(247), + }, + [1663] = { + [sym_comment] = STATE(1663), + [ts_builtin_sym_end] = ACTIONS(1650), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [anon_sym_null] = ACTIONS(1650), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), + [aux_sym_cmd_identifier_token39] = ACTIONS(1650), + [aux_sym_cmd_identifier_token40] = ACTIONS(1650), + [sym__newline] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_err_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_GT_PIPE] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_DASH_DASH] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1648), + [aux_sym_ctrl_match_token1] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_DOT_DOT2] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), + [anon_sym_DOT_DOT_LT] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [aux_sym__val_number_decimal_token2] = ACTIONS(1650), + [aux_sym__val_number_decimal_token3] = ACTIONS(1650), + [aux_sym__val_number_decimal_token4] = ACTIONS(1650), + [aux_sym__val_number_token1] = ACTIONS(1650), + [aux_sym__val_number_token2] = ACTIONS(1650), + [aux_sym__val_number_token3] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1648), + [anon_sym_0o] = ACTIONS(1648), + [anon_sym_0x] = ACTIONS(1648), + [sym_val_date] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [sym__str_single_quotes] = ACTIONS(1650), + [sym__str_back_ticks] = ACTIONS(1650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), + [anon_sym_err_GT] = ACTIONS(1648), + [anon_sym_out_GT] = ACTIONS(1648), + [anon_sym_e_GT] = ACTIONS(1648), + [anon_sym_o_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT] = ACTIONS(1648), + [anon_sym_err_GT_GT] = ACTIONS(1650), + [anon_sym_out_GT_GT] = ACTIONS(1650), + [anon_sym_e_GT_GT] = ACTIONS(1650), + [anon_sym_o_GT_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(247), + }, + [1664] = { + [sym_comment] = STATE(1664), + [ts_builtin_sym_end] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1721), + [aux_sym_ctrl_match_token1] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(247), + }, + [1665] = { + [sym_comment] = STATE(1665), + [sym__newline] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_err_GT_PIPE] = ACTIONS(2239), + [anon_sym_out_GT_PIPE] = ACTIONS(2239), + [anon_sym_e_GT_PIPE] = ACTIONS(2239), + [anon_sym_o_GT_PIPE] = ACTIONS(2239), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2239), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2239), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2239), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2239), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2235), + [aux_sym_ctrl_match_token1] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_EQ_GT] = ACTIONS(2239), + [aux_sym_expr_binary_token1] = ACTIONS(2239), + [aux_sym_expr_binary_token2] = ACTIONS(2239), + [aux_sym_expr_binary_token3] = ACTIONS(2239), + [aux_sym_expr_binary_token4] = ACTIONS(2239), + [aux_sym_expr_binary_token5] = ACTIONS(2239), + [aux_sym_expr_binary_token6] = ACTIONS(2239), + [aux_sym_expr_binary_token7] = ACTIONS(2239), + [aux_sym_expr_binary_token8] = ACTIONS(2239), + [aux_sym_expr_binary_token9] = ACTIONS(2239), + [aux_sym_expr_binary_token10] = ACTIONS(2239), + [aux_sym_expr_binary_token11] = ACTIONS(2239), + [aux_sym_expr_binary_token12] = ACTIONS(2239), + [aux_sym_expr_binary_token13] = ACTIONS(2239), + [aux_sym_expr_binary_token14] = ACTIONS(2239), + [aux_sym_expr_binary_token15] = ACTIONS(2239), + [aux_sym_expr_binary_token16] = ACTIONS(2239), + [aux_sym_expr_binary_token17] = ACTIONS(2239), + [aux_sym_expr_binary_token18] = ACTIONS(2239), + [aux_sym_expr_binary_token19] = ACTIONS(2239), + [aux_sym_expr_binary_token20] = ACTIONS(2239), + [aux_sym_expr_binary_token21] = ACTIONS(2239), + [aux_sym_expr_binary_token22] = ACTIONS(2239), + [aux_sym_expr_binary_token23] = ACTIONS(2239), + [aux_sym_expr_binary_token24] = ACTIONS(2239), + [aux_sym_expr_binary_token25] = ACTIONS(2239), + [aux_sym_expr_binary_token26] = ACTIONS(2239), + [aux_sym_expr_binary_token27] = ACTIONS(2239), + [aux_sym_expr_binary_token28] = ACTIONS(2239), + [anon_sym_LBRACK2] = ACTIONS(4981), + [anon_sym_err_GT] = ACTIONS(2235), + [anon_sym_out_GT] = ACTIONS(2235), + [anon_sym_e_GT] = ACTIONS(2235), + [anon_sym_o_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT] = ACTIONS(2235), + [anon_sym_err_GT_GT] = ACTIONS(2239), + [anon_sym_out_GT_GT] = ACTIONS(2239), + [anon_sym_e_GT_GT] = ACTIONS(2239), + [anon_sym_o_GT_GT] = ACTIONS(2239), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2239), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2239), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2239), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(247), + }, + [1666] = { + [sym_comment] = STATE(1666), + [aux_sym_cmd_identifier_token41] = ACTIONS(4983), + [sym__newline] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_err_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_GT_PIPE] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), + [anon_sym_RPAREN] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [aux_sym_expr_binary_token1] = ACTIONS(1537), + [aux_sym_expr_binary_token2] = ACTIONS(1537), + [aux_sym_expr_binary_token3] = ACTIONS(1537), + [aux_sym_expr_binary_token4] = ACTIONS(1537), + [aux_sym_expr_binary_token5] = ACTIONS(1537), + [aux_sym_expr_binary_token6] = ACTIONS(1537), + [aux_sym_expr_binary_token7] = ACTIONS(1537), + [aux_sym_expr_binary_token8] = ACTIONS(1537), + [aux_sym_expr_binary_token9] = ACTIONS(1537), + [aux_sym_expr_binary_token10] = ACTIONS(1537), + [aux_sym_expr_binary_token11] = ACTIONS(1537), + [aux_sym_expr_binary_token12] = ACTIONS(1537), + [aux_sym_expr_binary_token13] = ACTIONS(1537), + [aux_sym_expr_binary_token14] = ACTIONS(1537), + [aux_sym_expr_binary_token15] = ACTIONS(1537), + [aux_sym_expr_binary_token16] = ACTIONS(1537), + [aux_sym_expr_binary_token17] = ACTIONS(1537), + [aux_sym_expr_binary_token18] = ACTIONS(1537), + [aux_sym_expr_binary_token19] = ACTIONS(1537), + [aux_sym_expr_binary_token20] = ACTIONS(1537), + [aux_sym_expr_binary_token21] = ACTIONS(1537), + [aux_sym_expr_binary_token22] = ACTIONS(1537), + [aux_sym_expr_binary_token23] = ACTIONS(1537), + [aux_sym_expr_binary_token24] = ACTIONS(1537), + [aux_sym_expr_binary_token25] = ACTIONS(1537), + [aux_sym_expr_binary_token26] = ACTIONS(1537), + [aux_sym_expr_binary_token27] = ACTIONS(1537), + [aux_sym_expr_binary_token28] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(4934), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4936), + [sym_filesize_unit] = ACTIONS(4985), + [sym_duration_unit] = ACTIONS(4987), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [anon_sym_POUND] = ACTIONS(247), + }, + [1667] = { + [sym_comment] = STATE(1667), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(247), + }, + [1668] = { + [sym_comment] = STATE(1668), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(966), + [aux_sym_ctrl_match_token1] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_EQ_GT] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(968), + [aux_sym_expr_binary_token1] = ACTIONS(968), + [aux_sym_expr_binary_token2] = ACTIONS(968), + [aux_sym_expr_binary_token3] = ACTIONS(968), + [aux_sym_expr_binary_token4] = ACTIONS(968), + [aux_sym_expr_binary_token5] = ACTIONS(968), + [aux_sym_expr_binary_token6] = ACTIONS(968), + [aux_sym_expr_binary_token7] = ACTIONS(968), + [aux_sym_expr_binary_token8] = ACTIONS(968), + [aux_sym_expr_binary_token9] = ACTIONS(968), + [aux_sym_expr_binary_token10] = ACTIONS(968), + [aux_sym_expr_binary_token11] = ACTIONS(968), + [aux_sym_expr_binary_token12] = ACTIONS(968), + [aux_sym_expr_binary_token13] = ACTIONS(968), + [aux_sym_expr_binary_token14] = ACTIONS(968), + [aux_sym_expr_binary_token15] = ACTIONS(968), + [aux_sym_expr_binary_token16] = ACTIONS(968), + [aux_sym_expr_binary_token17] = ACTIONS(968), + [aux_sym_expr_binary_token18] = ACTIONS(968), + [aux_sym_expr_binary_token19] = ACTIONS(968), + [aux_sym_expr_binary_token20] = ACTIONS(968), + [aux_sym_expr_binary_token21] = ACTIONS(968), + [aux_sym_expr_binary_token22] = ACTIONS(968), + [aux_sym_expr_binary_token23] = ACTIONS(968), + [aux_sym_expr_binary_token24] = ACTIONS(968), + [aux_sym_expr_binary_token25] = ACTIONS(968), + [aux_sym_expr_binary_token26] = ACTIONS(968), + [aux_sym_expr_binary_token27] = ACTIONS(968), + [aux_sym_expr_binary_token28] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [aux_sym_record_entry_token1] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(247), + }, + [1669] = { + [sym_comment] = STATE(1669), + [aux_sym_cmd_identifier_token41] = ACTIONS(1481), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [aux_sym_ctrl_match_token1] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(247), + }, + [1670] = { + [sym__expr_parenthesized_immediate] = STATE(7678), + [sym_comment] = STATE(1670), + [anon_sym_true] = ACTIONS(4989), + [anon_sym_false] = ACTIONS(4989), + [anon_sym_null] = ACTIONS(4989), + [aux_sym_cmd_identifier_token38] = ACTIONS(4989), + [aux_sym_cmd_identifier_token39] = ACTIONS(4989), + [aux_sym_cmd_identifier_token40] = ACTIONS(4989), + [sym__newline] = ACTIONS(4989), + [anon_sym_SEMI] = ACTIONS(4989), + [anon_sym_PIPE] = ACTIONS(4989), + [anon_sym_err_GT_PIPE] = ACTIONS(4989), + [anon_sym_out_GT_PIPE] = ACTIONS(4989), + [anon_sym_e_GT_PIPE] = ACTIONS(4989), + [anon_sym_o_GT_PIPE] = ACTIONS(4989), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4989), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4989), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4989), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(4989), + [anon_sym_LPAREN] = ACTIONS(4991), + [anon_sym_RPAREN] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4991), + [aux_sym_ctrl_match_token1] = ACTIONS(4989), + [anon_sym_RBRACE] = ACTIONS(4989), + [anon_sym_DOT_DOT] = ACTIONS(4991), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4989), + [anon_sym_DOT_DOT_LT] = ACTIONS(4989), + [aux_sym__val_number_decimal_token1] = ACTIONS(4991), + [aux_sym__val_number_decimal_token2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4989), + [aux_sym__val_number_decimal_token4] = ACTIONS(4989), + [aux_sym__val_number_token1] = ACTIONS(4989), + [aux_sym__val_number_token2] = ACTIONS(4989), + [aux_sym__val_number_token3] = ACTIONS(4989), + [anon_sym_0b] = ACTIONS(4991), + [anon_sym_0o] = ACTIONS(4991), + [anon_sym_0x] = ACTIONS(4991), + [sym_val_date] = ACTIONS(4989), + [anon_sym_DQUOTE] = ACTIONS(4989), + [sym__str_single_quotes] = ACTIONS(4989), + [sym__str_back_ticks] = ACTIONS(4989), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4989), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4989), + [anon_sym_err_GT] = ACTIONS(4991), + [anon_sym_out_GT] = ACTIONS(4991), + [anon_sym_e_GT] = ACTIONS(4991), + [anon_sym_o_GT] = ACTIONS(4991), + [anon_sym_err_PLUSout_GT] = ACTIONS(4991), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4991), + [anon_sym_o_PLUSe_GT] = ACTIONS(4991), + [anon_sym_e_PLUSo_GT] = ACTIONS(4991), + [anon_sym_err_GT_GT] = ACTIONS(4989), + [anon_sym_out_GT_GT] = ACTIONS(4989), + [anon_sym_e_GT_GT] = ACTIONS(4989), + [anon_sym_o_GT_GT] = ACTIONS(4989), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4989), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4989), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4989), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4989), + [aux_sym_unquoted_token1] = ACTIONS(4991), + [anon_sym_POUND] = ACTIONS(247), + }, + [1671] = { + [sym_comment] = STATE(1671), + [ts_builtin_sym_end] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2072), + [anon_sym_false] = ACTIONS(2072), + [anon_sym_null] = ACTIONS(2072), + [aux_sym_cmd_identifier_token38] = ACTIONS(2072), + [aux_sym_cmd_identifier_token39] = ACTIONS(2072), + [aux_sym_cmd_identifier_token40] = ACTIONS(2072), + [sym__newline] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_err_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_GT_PIPE] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2066), + [aux_sym_ctrl_match_token1] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2066), + [anon_sym_DOT_DOT2] = ACTIONS(4993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2066), + [anon_sym_DOT_DOT_LT] = ACTIONS(2066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4995), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4995), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [anon_sym_0b] = ACTIONS(2066), + [anon_sym_0o] = ACTIONS(2066), + [anon_sym_0x] = ACTIONS(2066), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2072), + [anon_sym_err_GT] = ACTIONS(2066), + [anon_sym_out_GT] = ACTIONS(2066), + [anon_sym_e_GT] = ACTIONS(2066), + [anon_sym_o_GT] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT] = ACTIONS(2066), + [anon_sym_err_GT_GT] = ACTIONS(2072), + [anon_sym_out_GT_GT] = ACTIONS(2072), + [anon_sym_e_GT_GT] = ACTIONS(2072), + [anon_sym_o_GT_GT] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [aux_sym_unquoted_token1] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(247), + }, + [1672] = { + [sym_comment] = STATE(1672), + [ts_builtin_sym_end] = ACTIONS(1978), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [anon_sym_null] = ACTIONS(1978), + [aux_sym_cmd_identifier_token38] = ACTIONS(1978), + [aux_sym_cmd_identifier_token39] = ACTIONS(1978), + [aux_sym_cmd_identifier_token40] = ACTIONS(1978), + [sym__newline] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_err_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_GT_PIPE] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1972), + [aux_sym_ctrl_match_token1] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT2] = ACTIONS(4997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1972), + [anon_sym_DOT_DOT_LT] = ACTIONS(1972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4999), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1978), + [aux_sym__val_number_decimal_token4] = ACTIONS(1978), + [aux_sym__val_number_token1] = ACTIONS(1978), + [aux_sym__val_number_token2] = ACTIONS(1978), + [aux_sym__val_number_token3] = ACTIONS(1978), + [anon_sym_0b] = ACTIONS(1972), + [anon_sym_0o] = ACTIONS(1972), + [anon_sym_0x] = ACTIONS(1972), + [sym_val_date] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym__str_single_quotes] = ACTIONS(1978), + [sym__str_back_ticks] = ACTIONS(1978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1978), + [anon_sym_err_GT] = ACTIONS(1972), + [anon_sym_out_GT] = ACTIONS(1972), + [anon_sym_e_GT] = ACTIONS(1972), + [anon_sym_o_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT] = ACTIONS(1972), + [anon_sym_err_GT_GT] = ACTIONS(1978), + [anon_sym_out_GT_GT] = ACTIONS(1978), + [anon_sym_e_GT_GT] = ACTIONS(1978), + [anon_sym_o_GT_GT] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), + [aux_sym_unquoted_token1] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(247), }, [1673] = { [sym_comment] = STATE(1673), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_null] = ACTIONS(2925), - [aux_sym_cmd_identifier_token38] = ACTIONS(2925), - [aux_sym_cmd_identifier_token39] = ACTIONS(2925), - [aux_sym_cmd_identifier_token40] = ACTIONS(2925), - [sym__newline] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_err_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_GT_PIPE] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2927), - [aux_sym_ctrl_match_token1] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2925), - [anon_sym_DOT_DOT_LT] = ACTIONS(2925), - [aux_sym__immediate_decimal_token1] = ACTIONS(4988), - [aux_sym__val_number_decimal_token1] = ACTIONS(2927), - [aux_sym__val_number_decimal_token2] = ACTIONS(2925), - [anon_sym_DOT2] = ACTIONS(2927), - [aux_sym__val_number_decimal_token3] = ACTIONS(2925), - [aux_sym__val_number_token1] = ACTIONS(2925), - [aux_sym__val_number_token2] = ACTIONS(2925), - [aux_sym__val_number_token3] = ACTIONS(2925), - [anon_sym_0b] = ACTIONS(2927), - [anon_sym_0o] = ACTIONS(2927), - [anon_sym_0x] = ACTIONS(2927), - [sym_val_date] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym__str_single_quotes] = ACTIONS(2925), - [sym__str_back_ticks] = ACTIONS(2925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2925), - [anon_sym_err_GT] = ACTIONS(2927), - [anon_sym_out_GT] = ACTIONS(2927), - [anon_sym_e_GT] = ACTIONS(2927), - [anon_sym_o_GT] = ACTIONS(2927), - [anon_sym_err_PLUSout_GT] = ACTIONS(2927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2927), - [anon_sym_o_PLUSe_GT] = ACTIONS(2927), - [anon_sym_e_PLUSo_GT] = ACTIONS(2927), - [anon_sym_err_GT_GT] = ACTIONS(2925), - [anon_sym_out_GT_GT] = ACTIONS(2925), - [anon_sym_e_GT_GT] = ACTIONS(2925), - [anon_sym_o_GT_GT] = ACTIONS(2925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2925), - [aux_sym_unquoted_token1] = ACTIONS(2927), - [aux_sym_unquoted_token2] = ACTIONS(4990), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1966), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1966), + [aux_sym_cmd_identifier_token38] = ACTIONS(1966), + [aux_sym_cmd_identifier_token39] = ACTIONS(1966), + [aux_sym_cmd_identifier_token40] = ACTIONS(1966), + [sym__newline] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_err_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_GT_PIPE] = ACTIONS(1966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1960), + [aux_sym_ctrl_match_token1] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1960), + [anon_sym_DOT_DOT2] = ACTIONS(5001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1960), + [anon_sym_DOT_DOT_LT] = ACTIONS(1960), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5003), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5003), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1966), + [aux_sym__val_number_decimal_token3] = ACTIONS(1966), + [aux_sym__val_number_decimal_token4] = ACTIONS(1966), + [aux_sym__val_number_token1] = ACTIONS(1966), + [aux_sym__val_number_token2] = ACTIONS(1966), + [aux_sym__val_number_token3] = ACTIONS(1966), + [anon_sym_0b] = ACTIONS(1960), + [anon_sym_0o] = ACTIONS(1960), + [anon_sym_0x] = ACTIONS(1960), + [sym_val_date] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [sym__str_single_quotes] = ACTIONS(1966), + [sym__str_back_ticks] = ACTIONS(1966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1966), + [anon_sym_err_GT] = ACTIONS(1960), + [anon_sym_out_GT] = ACTIONS(1960), + [anon_sym_e_GT] = ACTIONS(1960), + [anon_sym_o_GT] = ACTIONS(1960), + [anon_sym_err_PLUSout_GT] = ACTIONS(1960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), + [anon_sym_o_PLUSe_GT] = ACTIONS(1960), + [anon_sym_e_PLUSo_GT] = ACTIONS(1960), + [anon_sym_err_GT_GT] = ACTIONS(1966), + [anon_sym_out_GT_GT] = ACTIONS(1966), + [anon_sym_e_GT_GT] = ACTIONS(1966), + [anon_sym_o_GT_GT] = ACTIONS(1966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1966), + [aux_sym_unquoted_token1] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(247), }, [1674] = { [sym_comment] = STATE(1674), - [anon_sym_true] = ACTIONS(2560), - [anon_sym_false] = ACTIONS(2560), - [anon_sym_null] = ACTIONS(2560), - [aux_sym_cmd_identifier_token38] = ACTIONS(2560), - [aux_sym_cmd_identifier_token39] = ACTIONS(2560), - [aux_sym_cmd_identifier_token40] = ACTIONS(2560), - [sym__newline] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_err_GT_PIPE] = ACTIONS(2560), - [anon_sym_out_GT_PIPE] = ACTIONS(2560), - [anon_sym_e_GT_PIPE] = ACTIONS(2560), - [anon_sym_o_GT_PIPE] = ACTIONS(2560), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2560), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2560), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2560), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_DOLLAR] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [anon_sym_DASH] = ACTIONS(4992), - [aux_sym_ctrl_match_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT] = ACTIONS(4992), - [anon_sym_DOT_DOT2] = ACTIONS(4817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4992), - [anon_sym_DOT_DOT_LT] = ACTIONS(4992), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4819), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4819), - [aux_sym__val_number_decimal_token1] = ACTIONS(4992), - [aux_sym__val_number_decimal_token2] = ACTIONS(2560), - [anon_sym_DOT2] = ACTIONS(4992), - [aux_sym__val_number_decimal_token3] = ACTIONS(2560), - [aux_sym__val_number_token1] = ACTIONS(2560), - [aux_sym__val_number_token2] = ACTIONS(2560), - [aux_sym__val_number_token3] = ACTIONS(2560), - [anon_sym_0b] = ACTIONS(4992), - [anon_sym_0o] = ACTIONS(4992), - [anon_sym_0x] = ACTIONS(4992), - [sym_val_date] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [sym__str_single_quotes] = ACTIONS(2560), - [sym__str_back_ticks] = ACTIONS(2560), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2560), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2560), - [anon_sym_err_GT] = ACTIONS(4992), - [anon_sym_out_GT] = ACTIONS(4992), - [anon_sym_e_GT] = ACTIONS(4992), - [anon_sym_o_GT] = ACTIONS(4992), - [anon_sym_err_PLUSout_GT] = ACTIONS(4992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4992), - [anon_sym_o_PLUSe_GT] = ACTIONS(4992), - [anon_sym_e_PLUSo_GT] = ACTIONS(4992), - [anon_sym_err_GT_GT] = ACTIONS(2560), - [anon_sym_out_GT_GT] = ACTIONS(2560), - [anon_sym_e_GT_GT] = ACTIONS(2560), - [anon_sym_o_GT_GT] = ACTIONS(2560), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2560), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2560), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2560), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2560), - [aux_sym_unquoted_token1] = ACTIONS(4992), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_err_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_GT_PIPE] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_LPAREN2] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1483), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), + [sym_filesize_unit] = ACTIONS(1483), + [sym_duration_unit] = ACTIONS(1483), + [anon_sym_err_GT] = ACTIONS(1481), + [anon_sym_out_GT] = ACTIONS(1481), + [anon_sym_e_GT] = ACTIONS(1481), + [anon_sym_o_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT] = ACTIONS(1481), + [anon_sym_err_GT_GT] = ACTIONS(1483), + [anon_sym_out_GT_GT] = ACTIONS(1483), + [anon_sym_e_GT_GT] = ACTIONS(1483), + [anon_sym_o_GT_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), + [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(247), }, [1675] = { - [sym_cmd_identifier] = STATE(2129), - [sym__command_name] = STATE(6457), - [sym_scope_pattern] = STATE(6458), - [sym_wild_card] = STATE(6459), - [sym_command_list] = STATE(6461), - [sym__val_number_decimal] = STATE(7158), - [sym_val_string] = STATE(2131), - [sym__str_double_quotes] = STATE(2137), [sym_comment] = STATE(1675), - [aux_sym_cmd_identifier_token1] = ACTIONS(4913), - [aux_sym_cmd_identifier_token2] = ACTIONS(4915), - [aux_sym_cmd_identifier_token3] = ACTIONS(4915), - [aux_sym_cmd_identifier_token4] = ACTIONS(4915), - [aux_sym_cmd_identifier_token5] = ACTIONS(4915), - [aux_sym_cmd_identifier_token6] = ACTIONS(4915), - [aux_sym_cmd_identifier_token7] = ACTIONS(4915), - [aux_sym_cmd_identifier_token8] = ACTIONS(4915), - [aux_sym_cmd_identifier_token9] = ACTIONS(4913), - [aux_sym_cmd_identifier_token10] = ACTIONS(4915), - [aux_sym_cmd_identifier_token11] = ACTIONS(4915), - [aux_sym_cmd_identifier_token12] = ACTIONS(4915), - [aux_sym_cmd_identifier_token13] = ACTIONS(4913), - [aux_sym_cmd_identifier_token14] = ACTIONS(4915), - [aux_sym_cmd_identifier_token15] = ACTIONS(4913), - [aux_sym_cmd_identifier_token16] = ACTIONS(4915), - [aux_sym_cmd_identifier_token17] = ACTIONS(4915), - [aux_sym_cmd_identifier_token18] = ACTIONS(4915), - [aux_sym_cmd_identifier_token19] = ACTIONS(4915), - [aux_sym_cmd_identifier_token20] = ACTIONS(4915), - [aux_sym_cmd_identifier_token21] = ACTIONS(4915), - [aux_sym_cmd_identifier_token22] = ACTIONS(4915), - [aux_sym_cmd_identifier_token23] = ACTIONS(4915), - [aux_sym_cmd_identifier_token24] = ACTIONS(4915), - [aux_sym_cmd_identifier_token25] = ACTIONS(4915), - [aux_sym_cmd_identifier_token26] = ACTIONS(4915), - [aux_sym_cmd_identifier_token27] = ACTIONS(4915), - [aux_sym_cmd_identifier_token28] = ACTIONS(4915), - [aux_sym_cmd_identifier_token29] = ACTIONS(4915), - [aux_sym_cmd_identifier_token30] = ACTIONS(4915), - [aux_sym_cmd_identifier_token31] = ACTIONS(4915), - [aux_sym_cmd_identifier_token32] = ACTIONS(4915), - [aux_sym_cmd_identifier_token33] = ACTIONS(4915), - [aux_sym_cmd_identifier_token34] = ACTIONS(4915), - [aux_sym_cmd_identifier_token35] = ACTIONS(4915), - [aux_sym_cmd_identifier_token36] = ACTIONS(4913), - [anon_sym_true] = ACTIONS(4917), - [anon_sym_false] = ACTIONS(4917), - [anon_sym_null] = ACTIONS(4917), - [aux_sym_cmd_identifier_token38] = ACTIONS(4919), - [aux_sym_cmd_identifier_token39] = ACTIONS(4917), - [aux_sym_cmd_identifier_token40] = ACTIONS(4917), - [sym__newline] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_STAR] = ACTIONS(4925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1196), - [aux_sym__val_number_decimal_token2] = ACTIONS(1196), - [anon_sym_DOT2] = ACTIONS(4927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1473), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [aux_sym_ctrl_match_token1] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [sym_filesize_unit] = ACTIONS(1475), + [sym_duration_unit] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(247), }, [1676] = { [sym_comment] = STATE(1676), - [ts_builtin_sym_end] = ACTIONS(1400), - [aux_sym_cmd_identifier_token41] = ACTIONS(1398), - [sym__newline] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_err_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_GT_PIPE] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_in] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1400), - [anon_sym_xor] = ACTIONS(1400), - [anon_sym_or] = ACTIONS(1400), - [anon_sym_not_DASHin] = ACTIONS(1400), - [anon_sym_starts_DASHwith] = ACTIONS(1400), - [anon_sym_ends_DASHwith] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT2] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_TILDE] = ACTIONS(1400), - [anon_sym_BANG_TILDE] = ACTIONS(1400), - [anon_sym_STAR_STAR] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_SLASH_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_bit_DASHshl] = ACTIONS(1400), - [anon_sym_bit_DASHshr] = ACTIONS(1400), - [anon_sym_bit_DASHand] = ACTIONS(1400), - [anon_sym_bit_DASHxor] = ACTIONS(1400), - [anon_sym_bit_DASHor] = ACTIONS(1400), - [anon_sym_DOT_DOT2] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1400), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1400), - [aux_sym__immediate_decimal_token2] = ACTIONS(4857), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), - [anon_sym_err_GT] = ACTIONS(1398), - [anon_sym_out_GT] = ACTIONS(1398), - [anon_sym_e_GT] = ACTIONS(1398), - [anon_sym_o_GT] = ACTIONS(1398), - [anon_sym_err_PLUSout_GT] = ACTIONS(1398), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1398), - [anon_sym_o_PLUSe_GT] = ACTIONS(1398), - [anon_sym_e_PLUSo_GT] = ACTIONS(1398), - [anon_sym_err_GT_GT] = ACTIONS(1400), - [anon_sym_out_GT_GT] = ACTIONS(1400), - [anon_sym_e_GT_GT] = ACTIONS(1400), - [anon_sym_o_GT_GT] = ACTIONS(1400), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1400), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1400), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1400), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_RPAREN] = ACTIONS(1521), + [anon_sym_LPAREN2] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1521), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), + [sym_filesize_unit] = ACTIONS(1521), + [sym_duration_unit] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1519), + [anon_sym_out_GT] = ACTIONS(1519), + [anon_sym_e_GT] = ACTIONS(1519), + [anon_sym_o_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT] = ACTIONS(1519), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [aux_sym_unquoted_token2] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(247), }, [1677] = { [sym_comment] = STATE(1677), - [ts_builtin_sym_end] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1610), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [sym__newline] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_err_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_GT_PIPE] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1608), - [aux_sym_ctrl_match_token1] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1610), - [anon_sym_DOT2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1610), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1608), - [anon_sym_out_GT] = ACTIONS(1608), - [anon_sym_e_GT] = ACTIONS(1608), - [anon_sym_o_GT] = ACTIONS(1608), - [anon_sym_err_PLUSout_GT] = ACTIONS(1608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), - [anon_sym_o_PLUSe_GT] = ACTIONS(1608), - [anon_sym_e_PLUSo_GT] = ACTIONS(1608), - [anon_sym_err_GT_GT] = ACTIONS(1610), - [anon_sym_out_GT_GT] = ACTIONS(1610), - [anon_sym_e_GT_GT] = ACTIONS(1610), - [anon_sym_o_GT_GT] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), - [aux_sym_unquoted_token1] = ACTIONS(1608), - [aux_sym_unquoted_token2] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(3), - }, - [1678] = { - [sym_comment] = STATE(1678), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_null] = ACTIONS(2155), - [aux_sym_cmd_identifier_token38] = ACTIONS(2155), - [aux_sym_cmd_identifier_token39] = ACTIONS(2155), - [aux_sym_cmd_identifier_token40] = ACTIONS(2155), - [sym__newline] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_err_GT_PIPE] = ACTIONS(2159), - [anon_sym_out_GT_PIPE] = ACTIONS(2159), - [anon_sym_e_GT_PIPE] = ACTIONS(2159), - [anon_sym_o_GT_PIPE] = ACTIONS(2159), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2159), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2159), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2159), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_DASH_DASH] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [aux_sym_ctrl_match_token1] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_DOT_DOT] = ACTIONS(2155), - [anon_sym_LPAREN2] = ACTIONS(2157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2155), - [anon_sym_DOT_DOT_LT] = ACTIONS(2155), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2155), - [anon_sym_DOT2] = ACTIONS(2155), - [aux_sym__val_number_decimal_token3] = ACTIONS(2155), - [aux_sym__val_number_token1] = ACTIONS(2155), - [aux_sym__val_number_token2] = ACTIONS(2155), - [aux_sym__val_number_token3] = ACTIONS(2155), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2155), - [anon_sym_0x] = ACTIONS(2155), - [sym_val_date] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym__str_single_quotes] = ACTIONS(2159), - [sym__str_back_ticks] = ACTIONS(2159), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2159), - [anon_sym_err_GT] = ACTIONS(2155), - [anon_sym_out_GT] = ACTIONS(2155), - [anon_sym_e_GT] = ACTIONS(2155), - [anon_sym_o_GT] = ACTIONS(2155), - [anon_sym_err_PLUSout_GT] = ACTIONS(2155), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2155), - [anon_sym_o_PLUSe_GT] = ACTIONS(2155), - [anon_sym_e_PLUSo_GT] = ACTIONS(2155), - [anon_sym_err_GT_GT] = ACTIONS(2155), - [anon_sym_out_GT_GT] = ACTIONS(2155), - [anon_sym_e_GT_GT] = ACTIONS(2155), - [anon_sym_o_GT_GT] = ACTIONS(2155), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2155), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2155), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2155), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2155), - [aux_sym_unquoted_token1] = ACTIONS(2155), - [aux_sym_unquoted_token7] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(121), - }, - [1679] = { - [sym_comment] = STATE(1679), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [aux_sym_ctrl_match_token1] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_EQ_GT] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_xor] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_not_DASHin] = ACTIONS(914), - [anon_sym_starts_DASHwith] = ACTIONS(914), - [anon_sym_ends_DASHwith] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(912), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_EQ_TILDE] = ACTIONS(914), - [anon_sym_BANG_TILDE] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_mod] = ACTIONS(914), - [anon_sym_SLASH_SLASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_bit_DASHshl] = ACTIONS(914), - [anon_sym_bit_DASHshr] = ACTIONS(914), - [anon_sym_bit_DASHand] = ACTIONS(914), - [anon_sym_bit_DASHxor] = ACTIONS(914), - [anon_sym_bit_DASHor] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [1680] = { - [sym_comment] = STATE(1680), - [ts_builtin_sym_end] = ACTIONS(1378), - [aux_sym_cmd_identifier_token41] = ACTIONS(1376), - [sym__newline] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_err_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_GT_PIPE] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_xor] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_not_DASHin] = ACTIONS(1378), - [anon_sym_starts_DASHwith] = ACTIONS(1378), - [anon_sym_ends_DASHwith] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT2] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_TILDE] = ACTIONS(1378), - [anon_sym_BANG_TILDE] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_SLASH_SLASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_bit_DASHshl] = ACTIONS(1378), - [anon_sym_bit_DASHshr] = ACTIONS(1378), - [anon_sym_bit_DASHand] = ACTIONS(1378), - [anon_sym_bit_DASHxor] = ACTIONS(1378), - [anon_sym_bit_DASHor] = ACTIONS(1378), - [anon_sym_DOT_DOT2] = ACTIONS(1376), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1378), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1378), - [aux_sym__immediate_decimal_token2] = ACTIONS(4996), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_err_GT] = ACTIONS(1376), - [anon_sym_out_GT] = ACTIONS(1376), - [anon_sym_e_GT] = ACTIONS(1376), - [anon_sym_o_GT] = ACTIONS(1376), - [anon_sym_err_PLUSout_GT] = ACTIONS(1376), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1376), - [anon_sym_o_PLUSe_GT] = ACTIONS(1376), - [anon_sym_e_PLUSo_GT] = ACTIONS(1376), - [anon_sym_err_GT_GT] = ACTIONS(1378), - [anon_sym_out_GT_GT] = ACTIONS(1378), - [anon_sym_e_GT_GT] = ACTIONS(1378), - [anon_sym_o_GT_GT] = ACTIONS(1378), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1378), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1378), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1378), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(3), - }, - [1681] = { - [sym_comment] = STATE(1681), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [anon_sym_null] = ACTIONS(914), - [aux_sym_cmd_identifier_token38] = ACTIONS(914), - [aux_sym_cmd_identifier_token39] = ACTIONS(914), - [aux_sym_cmd_identifier_token40] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(912), - [aux_sym_ctrl_match_token1] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_QMARK2] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ] = ACTIONS(914), - [anon_sym_DOT_DOT_LT] = ACTIONS(914), - [aux_sym__val_number_decimal_token1] = ACTIONS(912), - [aux_sym__val_number_decimal_token2] = ACTIONS(914), - [anon_sym_DOT2] = ACTIONS(912), - [aux_sym__val_number_decimal_token3] = ACTIONS(914), - [aux_sym__val_number_token1] = ACTIONS(914), - [aux_sym__val_number_token2] = ACTIONS(914), - [aux_sym__val_number_token3] = ACTIONS(914), - [anon_sym_0b] = ACTIONS(912), - [anon_sym_0o] = ACTIONS(912), - [anon_sym_0x] = ACTIONS(912), - [sym_val_date] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym__str_single_quotes] = ACTIONS(914), - [sym__str_back_ticks] = ACTIONS(914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(912), - [anon_sym_out_GT] = ACTIONS(912), - [anon_sym_e_GT] = ACTIONS(912), - [anon_sym_o_GT] = ACTIONS(912), - [anon_sym_err_PLUSout_GT] = ACTIONS(912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(912), - [anon_sym_o_PLUSe_GT] = ACTIONS(912), - [anon_sym_e_PLUSo_GT] = ACTIONS(912), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [aux_sym_unquoted_token1] = ACTIONS(912), - [anon_sym_POUND] = ACTIONS(3), - }, - [1682] = { - [sym_comment] = STATE(1682), - [sym__newline] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(918), - [anon_sym_PIPE] = ACTIONS(918), - [anon_sym_err_GT_PIPE] = ACTIONS(918), - [anon_sym_out_GT_PIPE] = ACTIONS(918), - [anon_sym_e_GT_PIPE] = ACTIONS(918), - [anon_sym_o_GT_PIPE] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_in] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [aux_sym_ctrl_match_token1] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_EQ_GT] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_QMARK2] = ACTIONS(918), - [anon_sym_and] = ACTIONS(918), - [anon_sym_xor] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_not_DASHin] = ACTIONS(918), - [anon_sym_starts_DASHwith] = ACTIONS(918), - [anon_sym_ends_DASHwith] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT2] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_TILDE] = ACTIONS(918), - [anon_sym_BANG_TILDE] = ACTIONS(918), - [anon_sym_STAR_STAR] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(916), - [anon_sym_mod] = ACTIONS(918), - [anon_sym_SLASH_SLASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(918), - [anon_sym_bit_DASHshr] = ACTIONS(918), - [anon_sym_bit_DASHand] = ACTIONS(918), - [anon_sym_bit_DASHxor] = ACTIONS(918), - [anon_sym_bit_DASHor] = ACTIONS(918), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(916), - [anon_sym_out_GT] = ACTIONS(916), - [anon_sym_e_GT] = ACTIONS(916), - [anon_sym_o_GT] = ACTIONS(916), - [anon_sym_err_PLUSout_GT] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(916), - [anon_sym_o_PLUSe_GT] = ACTIONS(916), - [anon_sym_e_PLUSo_GT] = ACTIONS(916), - [anon_sym_err_GT_GT] = ACTIONS(918), - [anon_sym_out_GT_GT] = ACTIONS(918), - [anon_sym_e_GT_GT] = ACTIONS(918), - [anon_sym_o_GT_GT] = ACTIONS(918), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(918), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(918), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(918), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(3), - }, - [1683] = { - [sym_comment] = STATE(1683), - [ts_builtin_sym_end] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1927), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1923), - [aux_sym_ctrl_match_token1] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1923), - [anon_sym_LPAREN2] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1923), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(1923), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [anon_sym_0b] = ACTIONS(1923), - [anon_sym_0o] = ACTIONS(1923), - [anon_sym_0x] = ACTIONS(1923), - [sym_val_date] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_err_GT] = ACTIONS(1923), - [anon_sym_out_GT] = ACTIONS(1923), - [anon_sym_e_GT] = ACTIONS(1923), - [anon_sym_o_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT] = ACTIONS(1923), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), - [aux_sym_unquoted_token1] = ACTIONS(1923), - [aux_sym_unquoted_token2] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [aux_sym_ctrl_match_token1] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(2081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_decimal_token4] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1006), + [anon_sym_out_GT_GT] = ACTIONS(1006), + [anon_sym_e_GT_GT] = ACTIONS(1006), + [anon_sym_o_GT_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [aux_sym_unquoted_token4] = ACTIONS(2083), [anon_sym_POUND] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 4, - ACTIONS(3), 1, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1678), 1, + sym_comment, + ACTIONS(2363), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2365), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1679), 1, + sym_comment, + ACTIONS(3593), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3591), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [146] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1680), 1, + sym_comment, + ACTIONS(1585), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1587), 52, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [219] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(2119), 1, + anon_sym_LPAREN2, + STATE(1681), 1, + sym_comment, + ACTIONS(2117), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2121), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [296] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1682), 1, + sym_comment, + ACTIONS(2263), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2265), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [369] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1683), 1, + sym_comment, + ACTIONS(2295), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2297), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [442] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5009), 1, + anon_sym_EQ2, + STATE(1684), 1, + sym_comment, + ACTIONS(5007), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5005), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [517] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4449), 1, + anon_sym_DOLLAR, + ACTIONS(4469), 1, + anon_sym_DQUOTE, + ACTIONS(4473), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4475), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5013), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5015), 1, + anon_sym_LPAREN, + STATE(1685), 1, + sym_comment, + STATE(4660), 1, + sym__str_double_quotes, + STATE(4902), 1, + sym__inter_single_quotes, + STATE(4928), 1, + sym__inter_double_quotes, + STATE(7214), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4471), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(369), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5011), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(4822), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(371), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [622] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1686), 1, + sym_comment, + ACTIONS(2311), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2313), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [695] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1687), 1, + sym_comment, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3207), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3205), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [772] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1688), 1, + sym_comment, + ACTIONS(2311), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2313), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [845] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1689), 1, + sym_comment, + ACTIONS(1589), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1591), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [918] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1690), 1, + sym_comment, + ACTIONS(3175), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3173), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(3177), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [993] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1691), 1, + sym_comment, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3211), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3209), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1070] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1684), 1, + STATE(1692), 1, sym_comment, - ACTIONS(912), 18, + ACTIONS(962), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -223740,7 +229739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(914), 44, + ACTIONS(964), 45, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -223768,6 +229767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -223785,21 +229785,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73] = 6, - ACTIONS(3), 1, + [1143] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_DOT_DOT2, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(5017), 1, + sym_filesize_unit, + ACTIONS(5019), 1, + sym_duration_unit, + STATE(1693), 1, + sym_comment, + ACTIONS(4936), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1525), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1537), 47, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1226] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(1685), 1, + STATE(1694), 1, sym_comment, - STATE(7515), 1, + STATE(7678), 1, sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5023), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223808,7 +229885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + aux_sym_unquoted_token1, + ACTIONS(5021), 43, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223820,34 +229904,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223856,20 +229930,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [150] = 4, - ACTIONS(3), 1, + [1303] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1686), 1, + ACTIONS(4122), 1, + aux_sym_unquoted_token2, + STATE(1695), 1, sym_comment, - ACTIONS(1376), 16, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, + ACTIONS(1525), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223878,8 +229953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1378), 46, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(1537), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223891,32 +229972,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223925,20 +230000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [223] = 5, - ACTIONS(3), 1, + [1378] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_QMARK2, - STATE(1687), 1, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2129), 1, + aux_sym_unquoted_token2, + STATE(1696), 1, sym_comment, - ACTIONS(900), 18, + ACTIONS(2123), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -223951,7 +230027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(902), 43, + ACTIONS(2127), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -223971,13 +230047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -223995,36 +230071,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [298] = 10, - ACTIONS(3), 1, + [1455] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5000), 1, - anon_sym_DOT, - ACTIONS(5002), 1, - aux_sym_unquoted_token4, - ACTIONS(5004), 1, - aux_sym_unquoted_token6, - STATE(1688), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5037), 1, + sym_wild_card, + STATE(1697), 1, sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 10, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(6435), 1, + sym__command_name, + STATE(6443), 1, + sym_scope_pattern, + STATE(6452), 1, + sym_command_list, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5033), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - ACTIONS(2925), 45, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -224056,31 +230157,153 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [1562] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5043), 1, + anon_sym_EQ2, + STATE(1698), 1, + sym_comment, + ACTIONS(5041), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5039), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [383] = 6, - ACTIONS(121), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1637] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(1689), 1, + STATE(1699), 1, sym_comment, - ACTIONS(2081), 19, + ACTIONS(1519), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1521), 52, ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1710] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(1700), 1, + sym_comment, + ACTIONS(1008), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224093,20 +230316,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2077), 41, + ACTIONS(1006), 40, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, @@ -224115,8 +230340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -224141,60 +230366,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [460] = 20, - ACTIONS(3), 1, + [1785] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4356), 1, - anon_sym_DOLLAR, - ACTIONS(4376), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4380), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4382), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5008), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5010), 1, - anon_sym_LPAREN, - STATE(1690), 1, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5037), 1, + sym_wild_card, + STATE(1701), 1, sym_comment, - STATE(4505), 1, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(4757), 1, - sym__inter_single_quotes, - STATE(4767), 1, - sym__inter_double_quotes, - STATE(7180), 1, + STATE(6435), 1, + sym__command_name, + STATE(6452), 1, + sym_command_list, + STATE(6602), 1, + sym_scope_pattern, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4378), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(361), 5, + ACTIONS(5045), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5006), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(4676), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(363), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -224226,17 +230452,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [565] = 5, - ACTIONS(121), 1, + [1892] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5012), 1, - aux_sym_unquoted_token3, - STATE(1691), 1, + STATE(1702), 1, sym_comment, - ACTIONS(3241), 2, - ts_builtin_sym_end, - anon_sym_LPAREN2, - ACTIONS(3239), 59, + ACTIONS(3487), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3485), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224255,38 +230494,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224295,19 +230521,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [640] = 4, - ACTIONS(3), 1, + [1965] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1692), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1703), 1, sym_comment, - ACTIONS(920), 18, + STATE(7678), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5049), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -224320,8 +230548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(922), 44, - ts_builtin_sym_end, + ACTIONS(5047), 43, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224340,14 +230567,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -224365,19 +230592,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [713] = 5, - ACTIONS(3), 1, + [2042] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5018), 1, - anon_sym_EQ2, - STATE(1693), 1, + STATE(1704), 1, sym_comment, - ACTIONS(5016), 17, + ACTIONS(1569), 18, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -224390,7 +230615,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5014), 44, + aux_sym_unquoted_token2, + ACTIONS(1571), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224409,15 +230636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -224435,17 +230661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [788] = 4, - ACTIONS(3), 1, + [2115] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1694), 1, + STATE(1705), 1, sym_comment, - ACTIONS(928), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2241), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224454,7 +230676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(930), 49, + ACTIONS(2243), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224468,34 +230690,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224504,21 +230730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [861] = 6, - ACTIONS(3), 1, + [2188] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1695), 1, + STATE(1706), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3223), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3375), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224527,7 +230752,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3221), 47, + aux_sym_unquoted_token1, + ACTIONS(3373), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224539,34 +230771,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224575,18 +230799,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [938] = 4, - ACTIONS(3), 1, + [2261] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1696), 1, + ACTIONS(5051), 1, + anon_sym_DOT, + ACTIONS(5053), 1, + aux_sym__immediate_decimal_token2, + STATE(1707), 1, sym_comment, - ACTIONS(916), 18, + ACTIONS(1589), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -224599,7 +230825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(918), 44, + ACTIONS(1591), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -224622,11 +230848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -224644,60 +230870,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1011] = 6, - ACTIONS(121), 1, + [2338] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(1697), 1, + ACTIONS(4979), 1, + aux_sym__immediate_decimal_token2, + STATE(1708), 1, sym_comment, - ACTIONS(2159), 19, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2155), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, + ACTIONS(1589), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224706,26 +230893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [1088] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(1698), 1, - sym_comment, - ACTIONS(2165), 19, - ts_builtin_sym_end, + ACTIONS(1591), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224738,45 +230913,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2163), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224785,22 +230940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1165] = 6, - ACTIONS(3), 1, + [2413] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1699), 1, + STATE(1709), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3597), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224809,7 +230955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(3595), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224823,67 +230969,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1242] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5020), 1, - sym_long_flag_identifier, - ACTIONS(5022), 1, - anon_sym_EQ2, - STATE(1700), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2486] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5055), 1, + aux_sym__immediate_decimal_token2, + STATE(1710), 1, sym_comment, - ACTIONS(4966), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + ACTIONS(1648), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224893,9 +231033,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4968), 34, - ts_builtin_sym_end, + ACTIONS(1650), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224909,12 +231053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, @@ -224928,14 +231079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1319] = 5, - ACTIONS(121), 1, + [2561] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(1701), 1, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(1711), 1, sym_comment, - ACTIONS(950), 21, + ACTIONS(2093), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224957,7 +231108,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(948), 40, + ACTIONS(2089), 40, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224972,8 +231123,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -224998,42 +231149,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [1394] = 6, + [2636] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1702), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(1712), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3237), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3235), 42, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2101), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225046,21 +231169,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2097), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225069,13 +231218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1471] = 4, - ACTIONS(121), 1, + aux_sym_unquoted_token1, + [2711] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1703), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(1713), 1, sym_comment, - ACTIONS(2075), 20, - ts_builtin_sym_end, + ACTIONS(2107), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225088,21 +231239,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2073), 42, + ACTIONS(2105), 40, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, @@ -225111,8 +231263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -225137,61 +231289,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token7, - [1544] = 20, - ACTIONS(3), 1, + [2786] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4356), 1, - anon_sym_DOLLAR, - ACTIONS(4376), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4380), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4382), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5008), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5010), 1, - anon_sym_LPAREN, - STATE(1704), 1, + ACTIONS(5035), 1, + anon_sym_LBRACK, + ACTIONS(5037), 1, + sym_wild_card, + STATE(1714), 1, sym_comment, - STATE(4505), 1, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(4757), 1, - sym__inter_single_quotes, - STATE(4767), 1, - sym__inter_double_quotes, - STATE(7180), 1, + STATE(6435), 1, + sym__command_name, + STATE(6452), 1, + sym_command_list, + STATE(6768), 1, + sym_scope_pattern, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4378), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(361), 5, + ACTIONS(5057), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5006), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(4831), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(363), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -225223,19 +231375,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [1649] = 5, - ACTIONS(3), 1, + [2893] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_LBRACK2, - STATE(1705), 1, + STATE(1715), 1, sym_comment, - ACTIONS(2178), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(994), 17, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225244,7 +231397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2182), 48, + aux_sym_unquoted_token1, + ACTIONS(996), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225256,35 +231416,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225293,17 +231444,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1724] = 6, - ACTIONS(121), 1, + [2966] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(1706), 1, + STATE(1716), 1, sym_comment, - ACTIONS(950), 19, - ts_builtin_sym_end, + ACTIONS(3201), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225315,38 +231471,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(948), 41, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3039] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + STATE(1717), 1, + sym_comment, + ACTIONS(2085), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2087), 43, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3116] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + STATE(1718), 1, + sym_comment, + ACTIONS(1690), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225355,6 +231610,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1698), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225363,19 +231655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1801] = 4, - ACTIONS(3), 1, + [3193] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1707), 1, + ACTIONS(5059), 1, + anon_sym_LBRACK2, + STATE(1719), 1, sym_comment, - ACTIONS(2927), 18, - anon_sym_LPAREN, + ACTIONS(2235), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -225388,7 +231680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2925), 44, + ACTIONS(2239), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225406,16 +231698,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -225433,12 +231725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1874] = 4, - ACTIONS(121), 1, + [3268] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1708), 1, + STATE(1720), 1, sym_comment, - ACTIONS(2075), 21, + ACTIONS(2133), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225460,7 +231752,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2073), 41, + ACTIONS(2131), 41, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225475,8 +231767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -225501,18 +231793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token7, - [1947] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token4, + [3341] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1709), 1, + STATE(1721), 1, sym_comment, - ACTIONS(3239), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2131), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225521,7 +231809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3241), 49, + ACTIONS(2133), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225535,34 +231823,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225571,24 +231863,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2020] = 7, - ACTIONS(3), 1, + [3414] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4933), 1, - anon_sym_DOT, - STATE(1710), 1, + STATE(1722), 1, sym_comment, - STATE(1760), 1, - aux_sym_cell_path_repeat1, - STATE(1954), 1, - sym_path, - ACTIONS(889), 14, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + ACTIONS(1648), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225597,8 +231885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(891), 45, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1650), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225610,31 +231906,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225643,21 +231932,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2099] = 6, - ACTIONS(3), 1, + [3487] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1711), 1, + ACTIONS(5061), 1, + anon_sym_QMARK2, + STATE(1723), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(970), 17, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225666,7 +231956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + aux_sym_unquoted_token1, + ACTIONS(972), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225678,34 +231976,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225714,19 +232002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2176] = 5, - ACTIONS(3), 1, + [3562] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3917), 1, - aux_sym_unquoted_token6, - STATE(1712), 1, + ACTIONS(5063), 1, + anon_sym_QMARK2, + STATE(1724), 1, sym_comment, - ACTIONS(1429), 17, + ACTIONS(980), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -225739,7 +232027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1441), 44, + ACTIONS(982), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225759,14 +232048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -225784,19 +232072,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2251] = 5, + [3637] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4077), 1, - aux_sym_unquoted_token6, - STATE(1713), 1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(1725), 1, + sym_comment, + ACTIONS(2093), 19, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2089), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [3714] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1726), 1, sym_comment, - ACTIONS(1429), 17, + ACTIONS(986), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -225809,7 +232166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1441), 44, + ACTIONS(988), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225837,6 +232194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -225854,19 +232212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2326] = 5, - ACTIONS(3), 1, + [3787] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4882), 1, - aux_sym__immediate_decimal_token2, - STATE(1714), 1, + STATE(1727), 1, sym_comment, - ACTIONS(1470), 17, + ACTIONS(990), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -225879,7 +232235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1472), 44, + ACTIONS(992), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225907,6 +232263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -225924,30 +232281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2401] = 6, + [3860] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2081), 1, anon_sym_LPAREN2, - STATE(1715), 1, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(1728), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(1008), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225959,34 +232303,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1006), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225995,28 +232351,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2478] = 9, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [3937] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5026), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(5028), 1, - anon_sym_DOT_DOT2, - ACTIONS(5032), 1, - sym_filesize_unit, - ACTIONS(5034), 1, - sym_duration_unit, - STATE(1716), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4413), 1, + anon_sym_DOLLAR, + ACTIONS(4431), 1, + anon_sym_DQUOTE, + ACTIONS(4435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5067), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5069), 1, + anon_sym_LPAREN, + STATE(1729), 1, sym_comment, - ACTIONS(5030), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(4755), 1, + sym__str_double_quotes, + STATE(5023), 1, + sym__inter_double_quotes, + STATE(5169), 1, + sym__inter_single_quotes, + STATE(7527), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(19), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5065), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(4948), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(21), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [4042] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1730), 1, + sym_comment, + ACTIONS(3607), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226025,8 +232452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1441), 43, - ts_builtin_sym_end, + ACTIONS(3605), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226038,29 +232464,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226069,20 +232506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2561] = 4, - ACTIONS(3), 1, + [4115] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1717), 1, + STATE(1731), 1, sym_comment, - ACTIONS(1504), 16, + ACTIONS(1481), 10, aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_DOT_DOT2, - sym_filesize_unit, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226091,7 +232522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1506), 46, + ACTIONS(1483), 52, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -226104,31 +232535,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -226138,20 +232575,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2634] = 4, - ACTIONS(3), 1, + [4188] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1718), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1732), 1, sym_comment, - ACTIONS(1368), 16, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3261), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226160,8 +232601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1370), 46, + aux_sym_unquoted_token1, + ACTIONS(3259), 43, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226173,32 +232621,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226207,29 +232646,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2707] = 6, + [4265] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5036), 1, - anon_sym_EQ2, - ACTIONS(5038), 1, - sym_short_flag_identifier, - STATE(1719), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(1733), 1, sym_comment, - ACTIONS(4888), 29, + ACTIONS(2101), 19, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2097), 41, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -226245,9 +232708,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - ACTIONS(4890), 31, - ts_builtin_sym_end, + [4342] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1734), 1, + sym_comment, + ACTIONS(1006), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1008), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226259,17 +232744,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226278,30 +232786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2784] = 6, + [4415] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2099), 1, anon_sym_LPAREN2, - STATE(1720), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(1735), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(2107), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226313,34 +232808,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2105), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226349,22 +232856,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2861] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [4492] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1721), 1, + STATE(1736), 1, sym_comment, - STATE(7589), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5042), 18, + ACTIONS(1721), 18, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -226377,7 +232880,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5040), 42, + aux_sym_unquoted_token2, + ACTIONS(1723), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -226396,13 +232901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -226420,21 +232926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2938] = 6, - ACTIONS(3), 1, + [4565] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1722), 1, + STATE(1737), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3233), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2332), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226443,7 +232941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3231), 47, + ACTIONS(2334), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226457,32 +232955,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226491,17 +232995,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3015] = 4, - ACTIONS(3), 1, + [4638] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1723), 1, + STATE(1738), 1, sym_comment, - ACTIONS(924), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1473), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226510,7 +233011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(926), 49, + ACTIONS(1475), 52, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226522,36 +233024,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226560,17 +233064,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3088] = 4, - ACTIONS(3), 1, + [4711] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1724), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1739), 1, sym_comment, - ACTIONS(932), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3265), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226579,7 +233090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(934), 49, + aux_sym_unquoted_token1, + ACTIONS(3263), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226591,36 +233110,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226629,21 +233135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3161] = 6, - ACTIONS(3), 1, + [4788] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1725), 1, + STATE(1740), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1778), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226652,7 +233150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(1780), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226666,52 +233164,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3238] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1726), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4861] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + STATE(1741), 1, sym_comment, - ACTIONS(928), 18, + ACTIONS(1709), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -226724,7 +233231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(930), 44, + ACTIONS(1717), 43, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -226743,15 +233251,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -226769,17 +233275,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3311] = 4, - ACTIONS(3), 1, + [4938] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1727), 1, + ACTIONS(5071), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(5073), 1, + anon_sym_DOT_DOT2, + ACTIONS(5077), 1, + sym_filesize_unit, + ACTIONS(5079), 1, + sym_duration_unit, + STATE(1742), 1, sym_comment, - ACTIONS(2927), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5075), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1525), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226788,7 +233300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2925), 49, + ACTIONS(1537), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226800,36 +233313,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226838,21 +233349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3384] = 6, - ACTIONS(3), 1, + [5021] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1728), 1, + STATE(1743), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1770), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226861,7 +233364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(1772), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226875,32 +233378,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226909,21 +233418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3461] = 6, - ACTIONS(3), 1, + [5094] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1729), 1, + STATE(1744), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2315), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226932,7 +233433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(2317), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226946,32 +233447,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226980,22 +233487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3538] = 5, - ACTIONS(3), 1, + [5167] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5044), 1, - anon_sym_QMARK2, - STATE(1730), 1, + STATE(1745), 1, sym_comment, - ACTIONS(900), 16, - sym__newline, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2336), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227004,7 +233502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(902), 45, + ACTIONS(2338), 53, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227015,33 +233514,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227050,21 +233556,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3613] = 6, - ACTIONS(3), 1, + [5240] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1731), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4449), 1, + anon_sym_DOLLAR, + ACTIONS(4469), 1, + anon_sym_DQUOTE, + ACTIONS(4473), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4475), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5013), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5015), 1, + anon_sym_LPAREN, + STATE(1746), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(4660), 1, + sym__str_double_quotes, + STATE(4902), 1, + sym__inter_single_quotes, + STATE(4928), 1, + sym__inter_double_quotes, + STATE(7214), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4471), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(369), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5011), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(4937), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(371), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [5345] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1747), 1, + sym_comment, + ACTIONS(3599), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227073,7 +233656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(3177), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227087,32 +233670,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227121,25 +233710,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3690] = 6, - ACTIONS(3), 1, + [5418] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1732), 1, - sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3227), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, + STATE(1748), 1, + sym_comment, + ACTIONS(3603), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227148,15 +233725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3225), 42, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3601), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227168,22 +233737,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227192,22 +233779,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3767] = 5, - ACTIONS(3), 1, + [5491] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5046), 1, - aux_sym__immediate_decimal_token1, - STATE(1733), 1, + STATE(1749), 1, sym_comment, - ACTIONS(2263), 17, - anon_sym_DOLLAR, + ACTIONS(3201), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227216,14 +233794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2267), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227235,25 +233806,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227262,21 +233848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3842] = 6, - ACTIONS(3), 1, + [5564] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1734), 1, + STATE(1750), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2271), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227285,7 +233863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(2273), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227299,32 +233877,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227333,23 +233917,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3919] = 5, - ACTIONS(3), 1, + [5637] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5048), 1, - anon_sym_QMARK2, - STATE(1735), 1, - sym_comment, - ACTIONS(906), 18, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(5081), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1625), 1, + sym_path, + STATE(1743), 1, + sym_cell_path, + STATE(1751), 1, + sym_comment, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1762), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227358,15 +233939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(908), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1764), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227378,23 +233951,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227403,21 +233990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3994] = 4, - ACTIONS(3), 1, + [5718] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1736), 1, - sym_comment, - ACTIONS(924), 18, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(5081), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1625), 1, + sym_path, + STATE(1752), 1, + sym_comment, + STATE(1779), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1778), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227426,14 +234012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(926), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1780), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227445,25 +234024,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227472,21 +234063,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4067] = 4, - ACTIONS(3), 1, + [5799] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1737), 1, - sym_comment, - ACTIONS(932), 18, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(5081), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1625), 1, + sym_path, + STATE(1753), 1, + sym_comment, + STATE(1782), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1770), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227495,14 +234085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(934), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1772), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227514,25 +234097,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227541,22 +234136,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4140] = 5, - ACTIONS(3), 1, + [5880] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5050), 1, - anon_sym_QMARK2, - STATE(1738), 1, - sym_comment, - ACTIONS(906), 16, - sym__newline, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + ACTIONS(5081), 1, anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1754), 1, + sym_comment, + STATE(1785), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1847), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227565,7 +234158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(908), 45, + ACTIONS(1849), 50, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227576,33 +234170,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227611,111 +234209,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4215] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5060), 1, - anon_sym_LBRACK, - ACTIONS(5062), 1, - anon_sym_STAR, - STATE(1739), 1, - sym_comment, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, - sym_val_string, - STATE(7053), 1, - sym__val_number_decimal, - STATE(7246), 1, - sym__command_name, - STATE(7257), 1, - sym_scope_pattern, - STATE(7388), 1, - sym_wild_card, - STATE(7399), 1, - sym_command_list, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4994), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5052), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [4324] = 6, - ACTIONS(3), 1, + [5961] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5064), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5066), 1, - aux_sym_unquoted_token2, - STATE(1740), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1755), 1, sym_comment, - ACTIONS(2927), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1786), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1871), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227724,15 +234231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2925), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1873), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227744,23 +234243,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227769,106 +234282,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4401] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4320), 1, - anon_sym_DOLLAR, - ACTIONS(4338), 1, - anon_sym_DQUOTE, - ACTIONS(4342), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4344), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5070), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5072), 1, - anon_sym_LPAREN, - STATE(1741), 1, - sym_comment, - STATE(4635), 1, - sym__str_double_quotes, - STATE(5044), 1, - sym__inter_single_quotes, - STATE(5045), 1, - sym__inter_double_quotes, - STATE(7030), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4340), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(19), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5068), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(4867), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(21), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [4506] = 4, - ACTIONS(3), 1, + [6042] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1742), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1756), 1, sym_comment, - ACTIONS(3443), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1787), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1875), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227877,14 +234304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3441), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1877), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227896,25 +234316,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227923,24 +234355,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4579] = 6, - ACTIONS(3), 1, + [6123] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5074), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5076), 1, - aux_sym__immediate_decimal_token2, - STATE(1743), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1757), 1, sym_comment, - ACTIONS(1470), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1788), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1879), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227949,15 +234377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1472), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1881), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227969,23 +234389,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227994,21 +234428,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4656] = 6, - ACTIONS(3), 1, + [6204] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1744), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1758), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3227), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(1789), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1883), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228017,7 +234450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3225), 47, + ACTIONS(1885), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228031,32 +234464,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228065,17 +234501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4733] = 4, - ACTIONS(3), 1, + [6285] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1745), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1759), 1, sym_comment, - ACTIONS(3443), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(1790), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1891), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228084,7 +234523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3441), 49, + ACTIONS(1893), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228098,34 +234537,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228134,108 +234574,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4806] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5060), 1, - anon_sym_LBRACK, - ACTIONS(5062), 1, - anon_sym_STAR, - STATE(1746), 1, - sym_comment, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, - sym_val_string, - STATE(7032), 1, - sym_scope_pattern, - STATE(7053), 1, - sym__val_number_decimal, - STATE(7246), 1, - sym__command_name, - STATE(7388), 1, - sym_wild_card, - STATE(7399), 1, - sym_command_list, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4921), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5052), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [4915] = 6, - ACTIONS(3), 1, + [6366] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1747), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1760), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(1791), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1895), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228244,7 +234596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(1897), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228258,32 +234610,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228292,25 +234647,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4992] = 6, - ACTIONS(3), 1, + [6447] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1748), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1761), 1, sym_comment, - STATE(7590), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4886), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1792), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1747), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228319,15 +234669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4884), 42, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1749), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228339,22 +234681,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228363,25 +234720,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5069] = 6, - ACTIONS(3), 1, + [6528] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1749), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1762), 1, sym_comment, - STATE(7589), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5080), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1793), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1824), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228390,14 +234742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5078), 42, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1826), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228409,23 +234754,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228434,23 +234793,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5146] = 5, - ACTIONS(3), 1, + [6609] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5082), 1, - anon_sym_LBRACK2, - STATE(1750), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1678), 1, + sym_cell_path, + STATE(1763), 1, sym_comment, - ACTIONS(2178), 18, - anon_sym_LBRACK, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1855), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228459,14 +234815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2182), 43, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1857), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228478,24 +234827,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228504,21 +234866,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5221] = 6, - ACTIONS(3), 1, + [6690] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1751), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1764), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3237), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(1795), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1796), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228527,7 +234888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3235), 47, + ACTIONS(1798), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228541,32 +234902,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228575,22 +234939,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5298] = 5, - ACTIONS(3), 1, + [6771] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5084), 1, - aux_sym__immediate_decimal_token2, - STATE(1752), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1765), 1, sym_comment, - ACTIONS(1535), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1796), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1808), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228599,14 +234961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1537), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1810), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228618,25 +234973,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228645,22 +235012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5373] = 5, - ACTIONS(3), 1, + [6852] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5090), 1, - anon_sym_EQ2, - STATE(1753), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1766), 1, sym_comment, - ACTIONS(5088), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1797), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1820), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228669,14 +235034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5086), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1822), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228688,25 +235046,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228715,20 +235085,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5448] = 4, - ACTIONS(121), 1, + [6933] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5092), 1, - aux_sym_unquoted_token3, - STATE(1754), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1767), 1, sym_comment, - ACTIONS(3239), 61, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(1798), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1741), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1745), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228740,33 +235119,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_ctrl_match_token1, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7014] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1768), 1, + sym_comment, + STATE(1799), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1899), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228775,6 +235180,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1901), 50, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228783,22 +235231,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [5521] = 6, - ACTIONS(3), 1, + [7095] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1755), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1769), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(1800), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1831), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228807,7 +235253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(1833), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228821,32 +235267,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228855,21 +235304,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5598] = 6, - ACTIONS(3), 1, + [7176] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1756), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1770), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(1801), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1835), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228878,7 +235326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(1837), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228892,32 +235340,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228926,25 +235377,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5675] = 6, - ACTIONS(3), 1, + [7257] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1757), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1771), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3223), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1802), 1, + sym_cell_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1839), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228953,15 +235399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3221), 42, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1841), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228973,22 +235411,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228997,25 +235450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5752] = 6, - ACTIONS(3), 1, + [7338] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1758), 1, + STATE(1772), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3233), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(3201), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229024,15 +235465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3231), 42, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229044,22 +235477,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229068,24 +235519,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5829] = 6, - ACTIONS(3), 1, + [7411] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5094), 1, - anon_sym_DOT, - ACTIONS(5096), 1, - aux_sym__immediate_decimal_token2, - STATE(1759), 1, + STATE(1773), 1, sym_comment, - ACTIONS(1518), 17, - anon_sym_DOLLAR, + ACTIONS(3201), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229094,15 +235534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1520), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229114,48 +235546,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7484] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5083), 1, + anon_sym_EQ2, + ACTIONS(5085), 1, + sym_short_flag_identifier, + STATE(1774), 1, + sym_comment, + ACTIONS(4942), 28, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5906] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5098), 1, - anon_sym_DOT, - STATE(1954), 1, - sym_path, - STATE(1760), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 14, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229164,7 +235625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(895), 45, + aux_sym_unquoted_token1, + ACTIONS(4944), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -229177,31 +235639,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229210,14 +235659,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5983] = 5, - ACTIONS(121), 1, + [7561] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(1761), 1, + STATE(1775), 1, sym_comment, - ACTIONS(2081), 21, + ACTIONS(2133), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229230,22 +235678,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2077), 40, + ACTIONS(2131), 42, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, @@ -229254,8 +235701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -229280,106 +235727,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [6058] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5060), 1, - anon_sym_LBRACK, - ACTIONS(5062), 1, - anon_sym_STAR, - STATE(1762), 1, - sym_comment, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, - sym_val_string, - STATE(7053), 1, - sym__val_number_decimal, - STATE(7246), 1, - sym__command_name, - STATE(7359), 1, - sym_scope_pattern, - STATE(7388), 1, - sym_wild_card, - STATE(7399), 1, - sym_command_list, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4978), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5052), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [6167] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token4, + [7634] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4976), 1, - aux_sym__immediate_decimal_token2, - STATE(1763), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1776), 1, sym_comment, - ACTIONS(1518), 17, + STATE(7634), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4991), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -229392,7 +235755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1520), 44, + ACTIONS(4989), 43, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -229411,15 +235775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -229437,14 +235799,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6242] = 5, - ACTIONS(121), 1, + [7711] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(1764), 1, + STATE(1777), 1, sym_comment, - ACTIONS(2159), 21, + ACTIONS(3201), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229456,40 +235826,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2155), 40, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7784] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1778), 1, + sym_comment, + ACTIONS(966), 17, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(968), 45, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + aux_sym_ctrl_match_token1, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7857] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1779), 1, + sym_comment, + ACTIONS(2255), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229498,6 +235952,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2257), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229506,16 +236006,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [6317] = 5, - ACTIONS(121), 1, + [7930] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(1765), 1, + STATE(1780), 1, sym_comment, - ACTIONS(2165), 21, + ACTIONS(1982), 10, sym__newline, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1984), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229526,40 +236033,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2163), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [8003] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1781), 1, + sym_comment, + ACTIONS(2251), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229568,6 +236090,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2253), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229576,22 +236144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [6392] = 4, - ACTIONS(3), 1, + [8076] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1766), 1, + STATE(1782), 1, sym_comment, - ACTIONS(3239), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(2303), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229600,14 +236159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3241), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2305), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229619,25 +236171,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229646,20 +236213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6465] = 4, - ACTIONS(3), 1, + [8149] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1767), 1, + STATE(1783), 1, sym_comment, - ACTIONS(1820), 17, - anon_sym_DOLLAR, + ACTIONS(2340), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229668,14 +236228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1822), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2342), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229687,25 +236240,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229714,17 +236282,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6537] = 4, - ACTIONS(3), 1, + [8222] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1768), 1, + STATE(1784), 1, sym_comment, - ACTIONS(2394), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229733,7 +236297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2396), 48, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229747,33 +236311,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229782,17 +236351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6609] = 4, - ACTIONS(3), 1, + [8295] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1769), 1, + STATE(1785), 1, sym_comment, - ACTIONS(2333), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2344), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229801,7 +236366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2335), 48, + ACTIONS(2346), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229815,33 +236380,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229850,17 +236420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6681] = 4, - ACTIONS(3), 1, + [8368] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1770), 1, + STATE(1786), 1, sym_comment, - ACTIONS(1764), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1879), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229869,7 +236435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1766), 48, + ACTIONS(1881), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229883,33 +236449,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229918,17 +236489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6753] = 4, - ACTIONS(3), 1, + [8441] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1771), 1, + STATE(1787), 1, sym_comment, - ACTIONS(2337), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2348), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229937,7 +236504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2339), 48, + ACTIONS(2350), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229951,33 +236518,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229986,17 +236558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6825] = 4, - ACTIONS(3), 1, + [8514] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1772), 1, + STATE(1788), 1, sym_comment, - ACTIONS(2341), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2352), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230005,7 +236573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2343), 48, + ACTIONS(2354), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230019,33 +236587,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230054,17 +236627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6897] = 4, - ACTIONS(3), 1, + [8587] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1773), 1, + STATE(1789), 1, sym_comment, - ACTIONS(1780), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1747), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230073,7 +236642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1782), 48, + ACTIONS(1749), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230087,33 +236656,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230122,17 +236696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6969] = 4, - ACTIONS(3), 1, + [8660] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1774), 1, + STATE(1790), 1, sym_comment, - ACTIONS(1788), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1855), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230141,7 +236711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1790), 48, + ACTIONS(1857), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230155,33 +236725,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230190,17 +236765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7041] = 4, - ACTIONS(3), 1, + [8733] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1775), 1, + STATE(1791), 1, sym_comment, - ACTIONS(1792), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1796), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230209,7 +236780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1794), 48, + ACTIONS(1798), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230223,33 +236794,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230258,17 +236834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7113] = 4, - ACTIONS(3), 1, + [8806] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1776), 1, + STATE(1792), 1, sym_comment, - ACTIONS(2345), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2359), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230277,7 +236849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2347), 48, + ACTIONS(2361), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230291,33 +236863,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230326,17 +236903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7185] = 4, - ACTIONS(3), 1, + [8879] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1777), 1, + STATE(1793), 1, sym_comment, - ACTIONS(1804), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1741), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230345,7 +236918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1806), 48, + ACTIONS(1745), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230359,33 +236932,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230394,17 +236972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7257] = 4, - ACTIONS(3), 1, + [8952] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1778), 1, + STATE(1794), 1, sym_comment, - ACTIONS(2349), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230413,7 +236987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2351), 48, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230427,33 +237001,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230462,17 +237041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7329] = 4, - ACTIONS(3), 1, + [9025] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1779), 1, + STATE(1795), 1, sym_comment, - ACTIONS(2353), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2367), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230481,7 +237056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2355), 48, + ACTIONS(2369), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230495,33 +237070,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230530,17 +237110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7401] = 4, - ACTIONS(3), 1, + [9098] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(1796), 1, sym_comment, - ACTIONS(1808), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1899), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230549,7 +237125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1810), 48, + ACTIONS(1901), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230563,33 +237139,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230598,17 +237179,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7473] = 4, - ACTIONS(3), 1, + [9171] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1797), 1, sym_comment, - ACTIONS(1816), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1835), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230617,7 +237194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1818), 48, + ACTIONS(1837), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230631,33 +237208,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230666,17 +237248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7545] = 4, - ACTIONS(3), 1, + [9244] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1782), 1, + STATE(1798), 1, sym_comment, - ACTIONS(2357), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2371), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230685,7 +237263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2359), 48, + ACTIONS(2373), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230699,33 +237277,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230734,17 +237317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7617] = 4, - ACTIONS(3), 1, + [9317] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1783), 1, + STATE(1799), 1, sym_comment, - ACTIONS(2277), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2379), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230753,7 +237332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2279), 48, + ACTIONS(2381), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230767,33 +237346,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230802,17 +237386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7689] = 4, - ACTIONS(3), 1, + [9390] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1784), 1, + STATE(1800), 1, sym_comment, - ACTIONS(1820), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1839), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230821,7 +237401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1822), 48, + ACTIONS(1841), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230835,33 +237415,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230870,17 +237455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7761] = 4, - ACTIONS(3), 1, + [9463] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1785), 1, + STATE(1801), 1, sym_comment, - ACTIONS(2361), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2383), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230889,7 +237470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2363), 48, + ACTIONS(2385), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230903,33 +237484,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9536] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1802), 1, + sym_comment, + ACTIONS(2326), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2328), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230938,17 +237593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7833] = 4, - ACTIONS(3), 1, + [9609] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1803), 1, sym_comment, - ACTIONS(2365), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230957,7 +237608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2367), 48, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230971,55 +237622,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [7905] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5101), 1, - anon_sym_LBRACK2, - STATE(1787), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9682] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4702), 1, + aux_sym_unquoted_token2, + STATE(1804), 1, sym_comment, - ACTIONS(2178), 18, - anon_sym_LBRACK, + ACTIONS(1525), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -231032,8 +237686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2182), 42, - ts_builtin_sym_end, + ACTIONS(1537), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -231051,13 +237704,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -231075,22 +237732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7979] = 5, - ACTIONS(3), 1, + [9757] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5103), 1, - anon_sym_EQ2, - STATE(1788), 1, + STATE(1805), 1, sym_comment, - ACTIONS(5088), 17, - anon_sym_DOLLAR, + ACTIONS(3201), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231099,15 +237747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5086), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231119,23 +237759,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231144,20 +237801,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8053] = 4, - ACTIONS(3), 1, + [9830] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1789), 1, + STATE(1806), 1, sym_comment, - ACTIONS(5107), 17, - anon_sym_DOLLAR, + ACTIONS(3201), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231166,14 +237816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5105), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231185,49 +237828,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [8125] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5109), 1, - aux_sym__immediate_decimal_token1, - STATE(1790), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9903] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5087), 1, + sym_long_flag_identifier, + ACTIONS(5089), 1, + anon_sym_EQ2, + STATE(1807), 1, sym_comment, - ACTIONS(2263), 17, + ACTIONS(4950), 25, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231237,14 +237905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2267), 43, + ACTIONS(4952), 35, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231264,10 +237927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, @@ -231281,20 +237941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8199] = 4, - ACTIONS(3), 1, + [9980] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1791), 1, + STATE(1808), 1, sym_comment, - ACTIONS(2273), 17, - anon_sym_DOLLAR, + ACTIONS(3201), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231303,14 +237956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2275), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231322,44 +237968,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [8271] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1792), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10053] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5093), 1, + aux_sym__immediate_decimal_token2, + STATE(1809), 1, sym_comment, - ACTIONS(5113), 17, + ACTIONS(1569), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -231372,7 +238036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5111), 44, + ACTIONS(1571), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -231392,14 +238057,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -231417,17 +238081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8343] = 4, - ACTIONS(3), 1, + [10130] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1810), 1, sym_comment, - ACTIONS(5117), 17, + ACTIONS(976), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -231440,7 +238104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5115), 44, + ACTIONS(978), 45, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -231460,14 +238125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -231485,20 +238150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8415] = 4, - ACTIONS(3), 1, + [10203] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1794), 1, + STATE(1811), 1, sym_comment, - ACTIONS(5121), 17, - anon_sym_DOLLAR, + ACTIONS(3201), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231507,14 +238165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5119), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231526,25 +238177,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231553,20 +238219,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8487] = 4, - ACTIONS(3), 1, + [10276] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1795), 1, + STATE(1812), 1, sym_comment, - ACTIONS(5125), 17, - anon_sym_DOLLAR, + ACTIONS(3201), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231575,14 +238234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5123), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3199), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231594,25 +238246,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231621,20 +238288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8559] = 4, - ACTIONS(3), 1, + [10349] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1796), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1740), 1, + sym_cell_path, + STATE(1813), 1, sym_comment, - ACTIONS(5129), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1774), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231643,14 +238310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5127), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1776), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231662,25 +238322,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231689,17 +238361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8631] = 4, - ACTIONS(3), 1, + [10430] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1797), 1, + STATE(1814), 1, sym_comment, - ACTIONS(5133), 17, + ACTIONS(5097), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -231712,7 +238383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5131), 44, + ACTIONS(5095), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -231740,6 +238411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -231757,20 +238429,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8703] = 4, - ACTIONS(3), 1, + [10502] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1798), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1780), 1, + sym_cell_path, + STATE(1815), 1, sym_comment, - ACTIONS(5137), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2197), 1, + sym_path, + ACTIONS(1599), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231779,15 +238452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5135), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1603), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -231798,25 +238463,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231825,98 +238501,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8775] = 40, - ACTIONS(3), 1, + [10582] = 21, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5111), 1, + sym_wild_card, + STATE(1816), 1, + sym_comment, + STATE(2144), 1, + sym__str_double_quotes, + STATE(2640), 1, + sym_val_string, + STATE(2651), 1, + sym_cmd_identifier, + STATE(7112), 1, + sym__val_number_decimal, + STATE(7170), 1, + sym__command_name, + STATE(7177), 1, + sym_scope_pattern, + STATE(7178), 1, + sym_command_list, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5033), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5101), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5105), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5103), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [10688] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(3329), 1, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(3333), 1, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, anon_sym_null, - ACTIONS(5143), 1, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, anon_sym_LPAREN, - ACTIONS(5145), 1, + ACTIONS(5115), 1, anon_sym_DOLLAR, - ACTIONS(5147), 1, + ACTIONS(5117), 1, anon_sym_DASH_DASH, - ACTIONS(5149), 1, + ACTIONS(5119), 1, anon_sym_DASH, - ACTIONS(5151), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(1799), 1, - sym_comment, - STATE(2414), 1, - sym__flag, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, sym__str_double_quotes, - STATE(3641), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(3643), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(4051), 1, + STATE(1817), 1, + sym_comment, + STATE(1907), 1, + sym__val_number, + STATE(2427), 1, + sym__flag, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, sym__expr_binary_expression, - STATE(5884), 1, + STATE(5905), 1, sym__expression, - ACTIONS(3325), 2, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5139), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3839), 2, + STATE(3878), 2, sym_short_flag, sym_long_flag, - STATE(3967), 3, + STATE(1690), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3321), 6, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, + STATE(1734), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -231929,17 +238690,18 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8919] = 4, - ACTIONS(3), 1, + [10832] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(4722), 1, + aux_sym_unquoted_token2, + STATE(1818), 1, sym_comment, - ACTIONS(5165), 17, + ACTIONS(1525), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -231952,7 +238714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5163), 44, + ACTIONS(1537), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -231972,14 +238735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -231997,17 +238759,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8991] = 4, - ACTIONS(3), 1, + [10906] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1801), 1, + STATE(1819), 1, sym_comment, - ACTIONS(5169), 17, + ACTIONS(2255), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -232020,7 +238781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5167), 44, + ACTIONS(2257), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232048,6 +238809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -232065,17 +238827,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9063] = 4, - ACTIONS(3), 1, + [10978] = 21, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1802), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5111), 1, + sym_wild_card, + STATE(1820), 1, + sym_comment, + STATE(2144), 1, + sym__str_double_quotes, + STATE(2640), 1, + sym_val_string, + STATE(2651), 1, + sym_cmd_identifier, + STATE(6981), 1, + sym_scope_pattern, + STATE(7112), 1, + sym__val_number_decimal, + STATE(7170), 1, + sym__command_name, + STATE(7178), 1, + sym_command_list, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5057), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5101), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5105), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5103), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [11084] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1821), 1, sym_comment, - ACTIONS(948), 17, + ACTIONS(3540), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -232088,7 +238934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(950), 44, + ACTIONS(3537), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232116,6 +238962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -232133,17 +238980,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9135] = 4, - ACTIONS(3), 1, + [11156] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1803), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1385), 1, + sym_cell_path, + STATE(1625), 1, + sym_path, + STATE(1822), 1, + sym_comment, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(945), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(947), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [11236] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1823), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2128), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1847), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1849), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [11316] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1824), 1, sym_comment, - ACTIONS(2325), 17, + ACTIONS(2311), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -232156,7 +239146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2327), 44, + ACTIONS(2313), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232184,6 +239174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -232201,36 +239192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9207] = 4, + [11388] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1804), 1, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(1825), 1, sym_comment, - ACTIONS(1733), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1735), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1008), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232244,23 +239214,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1006), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232269,17 +239260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9279] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [11462] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1805), 1, + STATE(1826), 1, sym_comment, - ACTIONS(2248), 17, + ACTIONS(2311), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -232292,7 +239283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2250), 44, + ACTIONS(2313), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232320,6 +239311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -232337,17 +239329,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9351] = 4, - ACTIONS(3), 1, + [11534] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1827), 1, sym_comment, - ACTIONS(2329), 17, + ACTIONS(3487), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -232360,7 +239352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2331), 44, + ACTIONS(3485), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232379,15 +239372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -232405,98 +239397,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9423] = 40, - ACTIONS(3), 1, + [11606] = 21, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3297), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(3305), 1, + ACTIONS(5111), 1, + sym_wild_card, + STATE(1828), 1, + sym_comment, + STATE(2144), 1, + sym__str_double_quotes, + STATE(2640), 1, + sym_val_string, + STATE(2651), 1, + sym_cmd_identifier, + STATE(7112), 1, + sym__val_number_decimal, + STATE(7170), 1, + sym__command_name, + STATE(7178), 1, + sym_command_list, + STATE(7330), 1, + sym_scope_pattern, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5045), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5101), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5105), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5103), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [11712] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1829), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2197), 1, + sym_path, + STATE(2435), 1, + sym_cell_path, + ACTIONS(1774), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1776), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [11792] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(3329), 1, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(3333), 1, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, anon_sym_null, - ACTIONS(5143), 1, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, anon_sym_LPAREN, - ACTIONS(5145), 1, + ACTIONS(5115), 1, anon_sym_DOLLAR, - ACTIONS(5147), 1, + ACTIONS(5117), 1, anon_sym_DASH_DASH, - ACTIONS(5149), 1, + ACTIONS(5119), 1, anon_sym_DASH, - ACTIONS(5151), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(1807), 1, - sym_comment, - STATE(2435), 1, - sym__flag, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, sym__str_double_quotes, - STATE(3641), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(3643), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(4051), 1, + STATE(1830), 1, + sym_comment, + STATE(1907), 1, + sym__val_number, + STATE(2461), 1, + sym__flag, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, sym__expr_binary_expression, - STATE(5859), 1, + STATE(5900), 1, sym__expression, - ACTIONS(3325), 2, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5139), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3839), 2, + STATE(3878), 2, sym_short_flag, sym_long_flag, - STATE(3967), 3, + STATE(1690), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3321), 6, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, + STATE(1734), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -232509,21 +239658,13 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9567] = 5, - ACTIONS(3), 1, + [11936] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5171), 1, - anon_sym_QMARK2, - STATE(1808), 1, + STATE(1831), 1, sym_comment, - ACTIONS(900), 15, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1982), 9, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232532,8 +239673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(902), 45, - ts_builtin_sym_end, + ACTIONS(1984), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232545,29 +239685,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, @@ -232578,21 +239726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9641] = 5, - ACTIONS(3), 1, + [12008] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5173), 1, - anon_sym_QMARK2, - STATE(1809), 1, + STATE(1832), 1, sym_comment, - ACTIONS(906), 15, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(1935), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232601,8 +239747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(908), 45, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(1941), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232614,31 +239766,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232647,17 +239794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9715] = 4, - ACTIONS(3), 1, + [12080] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1810), 1, + STATE(1833), 1, sym_comment, - ACTIONS(2204), 17, + ACTIONS(2271), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -232670,7 +239816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2206), 44, + ACTIONS(2273), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232698,6 +239844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -232715,17 +239862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9787] = 4, - ACTIONS(3), 1, + [12152] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1811), 1, + STATE(1834), 1, sym_comment, - ACTIONS(2394), 17, + ACTIONS(2241), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -232738,7 +239884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2396), 44, + ACTIONS(2243), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232766,6 +239912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -232783,20 +239930,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9859] = 4, - ACTIONS(3), 1, + [12224] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1812), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1446), 1, + sym_cell_path, + STATE(1835), 1, sym_comment, - ACTIONS(2333), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2297), 1, + sym_path, + ACTIONS(945), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232805,14 +239952,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2335), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(947), 49, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12304] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(1836), 1, + sym_comment, + ACTIONS(2093), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232826,23 +240024,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2089), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [12378] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1837), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2197), 1, + sym_path, + STATE(2436), 1, + sym_cell_path, + ACTIONS(1762), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1764), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232851,20 +240143,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9931] = 4, + [12458] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1813), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(1838), 1, sym_comment, - ACTIONS(1764), 17, + ACTIONS(2101), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2097), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232873,14 +240203,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - ACTIONS(1766), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + [12532] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(1839), 1, + sym_comment, + ACTIONS(2107), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232894,23 +240234,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2105), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232919,17 +240280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10003] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [12606] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1814), 1, + STATE(1840), 1, sym_comment, - ACTIONS(2337), 17, + ACTIONS(1021), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -232942,7 +240303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2339), 44, + ACTIONS(1023), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232970,6 +240331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -232987,17 +240349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10075] = 4, - ACTIONS(3), 1, + [12678] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1815), 1, + STATE(1841), 1, sym_comment, - ACTIONS(2341), 17, + ACTIONS(1953), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233010,7 +240371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2343), 44, + ACTIONS(1955), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233038,6 +240399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233055,17 +240417,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10147] = 4, - ACTIONS(3), 1, + [12750] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1842), 1, sym_comment, - ACTIONS(1780), 17, + ACTIONS(2263), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233078,7 +240439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1782), 44, + ACTIONS(2265), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233106,6 +240467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233123,17 +240485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10219] = 4, - ACTIONS(3), 1, + [12822] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1817), 1, + STATE(1843), 1, sym_comment, - ACTIONS(1788), 17, + ACTIONS(2295), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233146,7 +240507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1790), 44, + ACTIONS(2297), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233174,6 +240535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233191,17 +240553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10291] = 4, - ACTIONS(3), 1, + [12894] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1818), 1, + STATE(1844), 1, sym_comment, - ACTIONS(1792), 17, + ACTIONS(2401), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233214,7 +240575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1794), 44, + ACTIONS(2403), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233242,6 +240603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233259,17 +240621,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10363] = 4, - ACTIONS(3), 1, + [12966] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1819), 1, + STATE(1845), 1, sym_comment, - ACTIONS(2345), 17, + ACTIONS(2066), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233282,7 +240643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2347), 44, + ACTIONS(2072), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233310,6 +240671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233327,17 +240689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10435] = 4, - ACTIONS(3), 1, + [13038] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1846), 1, sym_comment, - ACTIONS(1804), 17, + ACTIONS(1972), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233350,7 +240711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1806), 44, + ACTIONS(1978), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233378,6 +240739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233395,17 +240757,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10507] = 4, - ACTIONS(3), 1, + [13110] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1821), 1, + STATE(1847), 1, sym_comment, - ACTIONS(2349), 17, + ACTIONS(1960), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233418,7 +240779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2351), 44, + ACTIONS(1966), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233446,6 +240807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233463,36 +240825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10579] = 4, + [13182] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1822), 1, + STATE(1848), 1, sym_comment, - ACTIONS(2353), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2355), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2133), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233506,23 +240845,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2131), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233531,17 +240891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10651] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [13254] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1823), 1, + STATE(1849), 1, sym_comment, - ACTIONS(1808), 17, + ACTIONS(1943), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233554,7 +240915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1810), 44, + ACTIONS(1945), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233582,6 +240943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233599,17 +240961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10723] = 4, - ACTIONS(3), 1, + [13326] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1824), 1, + STATE(1850), 1, sym_comment, - ACTIONS(1816), 17, + ACTIONS(5125), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233622,7 +240983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1818), 44, + ACTIONS(5123), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233650,6 +241011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233667,20 +241029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10795] = 4, - ACTIONS(3), 1, + [13398] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1825), 1, + STATE(1851), 1, sym_comment, - ACTIONS(2357), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(966), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233689,15 +241044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2359), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(968), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233708,25 +241055,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233735,17 +241097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10867] = 4, - ACTIONS(3), 1, + [13470] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1826), 1, + ACTIONS(4302), 1, + aux_sym_unquoted_token2, + STATE(1852), 1, sym_comment, - ACTIONS(2277), 17, + ACTIONS(1525), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233758,7 +241121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2279), 44, + ACTIONS(1537), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233778,14 +241142,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233803,17 +241166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10939] = 4, - ACTIONS(3), 1, + [13544] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1827), 1, + STATE(1853), 1, sym_comment, - ACTIONS(2361), 17, + ACTIONS(2405), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233826,7 +241188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2363), 44, + ACTIONS(2407), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233854,6 +241216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233871,17 +241234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11011] = 4, - ACTIONS(3), 1, + [13616] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1828), 1, + STATE(1854), 1, sym_comment, - ACTIONS(2365), 17, + ACTIONS(2409), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233894,7 +241256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2367), 44, + ACTIONS(2411), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233922,6 +241284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -233939,17 +241302,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11083] = 4, - ACTIONS(3), 1, + [13688] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1829), 1, + STATE(1855), 1, sym_comment, - ACTIONS(1429), 17, + ACTIONS(2413), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -233962,7 +241324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1441), 44, + ACTIONS(2415), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233990,6 +241352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234007,20 +241370,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11155] = 4, - ACTIONS(3), 1, + [13760] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1830), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1831), 1, + sym_cell_path, + STATE(1856), 1, sym_comment, - ACTIONS(2369), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1599), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234029,14 +241392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2371), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1603), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234048,25 +241404,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234075,17 +241442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11227] = 4, - ACTIONS(3), 1, + [13840] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1831), 1, + STATE(1857), 1, sym_comment, - ACTIONS(1744), 17, + ACTIONS(2417), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234098,7 +241464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1746), 44, + ACTIONS(2419), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -234126,6 +241492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234143,17 +241510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11299] = 4, - ACTIONS(3), 1, + [13912] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1832), 1, + STATE(1858), 1, sym_comment, - ACTIONS(2226), 17, + ACTIONS(2421), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234166,7 +241532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2228), 44, + ACTIONS(2423), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -234194,6 +241560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234211,17 +241578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11371] = 4, - ACTIONS(3), 1, + [13984] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1859), 1, sym_comment, - ACTIONS(916), 17, + ACTIONS(2425), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234234,7 +241600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(918), 44, + ACTIONS(2427), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -234262,6 +241628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234279,17 +241646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11443] = 4, - ACTIONS(3), 1, + [14056] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1834), 1, + STATE(1860), 1, sym_comment, - ACTIONS(2216), 17, + ACTIONS(2429), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234302,7 +241668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2218), 44, + ACTIONS(2431), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -234330,6 +241696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234347,17 +241714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11515] = 4, - ACTIONS(3), 1, + [14128] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1835), 1, + STATE(1861), 1, sym_comment, - ACTIONS(2216), 17, + ACTIONS(2433), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234370,7 +241736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2218), 44, + ACTIONS(2435), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -234398,6 +241764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234415,17 +241782,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11587] = 4, - ACTIONS(3), 1, + [14200] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1836), 1, + STATE(1862), 1, sym_comment, - ACTIONS(1947), 17, + ACTIONS(2437), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234438,7 +241804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1953), 44, + ACTIONS(2439), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -234466,6 +241832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234483,17 +241850,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11659] = 4, - ACTIONS(3), 1, + [14272] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1837), 1, + STATE(1863), 1, sym_comment, - ACTIONS(920), 17, + ACTIONS(2441), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234506,7 +241872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(922), 44, + ACTIONS(2443), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -234534,6 +241900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234551,20 +241918,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11731] = 4, - ACTIONS(3), 1, + [14344] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1838), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1864), 1, sym_comment, - ACTIONS(2184), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2131), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1871), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234573,15 +241941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2186), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1873), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234592,25 +241952,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234619,20 +241990,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11803] = 4, - ACTIONS(3), 1, + [14424] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1839), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1865), 1, sym_comment, - ACTIONS(2200), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2147), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1875), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234641,15 +242013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2202), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1877), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234660,25 +242024,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234687,21 +242062,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11875] = 4, - ACTIONS(3), 1, + [14504] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1840), 1, - sym_comment, - ACTIONS(928), 18, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(5099), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1420), 1, + sym_cell_path, + STATE(1866), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2197), 1, + sym_path, + ACTIONS(945), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234710,16 +242085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(930), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(947), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234730,23 +242096,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234755,17 +242134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11947] = 4, - ACTIONS(3), 1, + [14584] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1841), 1, + STATE(1867), 1, sym_comment, - ACTIONS(1959), 17, + ACTIONS(1006), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234778,7 +242156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1961), 44, + ACTIONS(1008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -234806,6 +242184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234823,17 +242202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12019] = 4, - ACTIONS(3), 1, + [14656] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(1868), 1, sym_comment, - ACTIONS(912), 17, + ACTIONS(994), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234846,7 +242225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(914), 44, + ACTIONS(996), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -234866,14 +242246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234891,18 +242270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12091] = 4, - ACTIONS(3), 1, + [14728] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1843), 1, + STATE(1869), 1, sym_comment, - ACTIONS(3443), 18, + ACTIONS(3375), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234915,7 +242293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3441), 43, + ACTIONS(3373), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -234942,6 +242320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -234959,17 +242338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12163] = 4, - ACTIONS(3), 1, + [14800] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1844), 1, + STATE(1870), 1, sym_comment, - ACTIONS(2212), 17, + ACTIONS(1589), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -234982,7 +242360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2214), 44, + ACTIONS(1591), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235010,6 +242388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -235027,17 +242406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12235] = 4, - ACTIONS(3), 1, + [14872] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1845), 1, + STATE(1871), 1, sym_comment, - ACTIONS(1863), 17, + ACTIONS(1569), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -235050,7 +242428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1869), 44, + ACTIONS(1571), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235078,6 +242456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -235095,20 +242474,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12307] = 4, - ACTIONS(3), 1, + [14944] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1846), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1872), 1, sym_comment, - ACTIONS(1871), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2197), 1, + sym_path, + STATE(2538), 1, + sym_cell_path, + ACTIONS(1778), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235117,15 +242497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1877), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1780), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235136,25 +242508,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235163,17 +242546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12379] = 4, - ACTIONS(3), 1, + [15024] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1847), 1, + STATE(1873), 1, sym_comment, - ACTIONS(1879), 17, + ACTIONS(1648), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -235186,7 +242568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1885), 44, + ACTIONS(1650), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235214,6 +242596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -235231,17 +242614,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12451] = 4, - ACTIONS(3), 1, + [15096] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1848), 1, + STATE(1874), 1, sym_comment, - ACTIONS(1963), 17, + ACTIONS(1721), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -235254,7 +242636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1965), 44, + ACTIONS(1723), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235282,6 +242664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -235299,20 +242682,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12523] = 4, - ACTIONS(3), 1, + [15168] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1849), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1875), 1, sym_comment, - ACTIONS(2281), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2166), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1879), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235321,15 +242705,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2283), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1881), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15248] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1876), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2172), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1883), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1885), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235340,25 +242788,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235367,17 +242826,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12595] = 4, - ACTIONS(3), 1, + [15328] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1850), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1877), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2145), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1891), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1893), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15408] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5127), 1, + anon_sym_EQ2, + STATE(1878), 1, sym_comment, - ACTIONS(2285), 17, + ACTIONS(5007), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -235390,7 +242922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2287), 44, + ACTIONS(5005), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235410,14 +242943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -235435,17 +242967,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12667] = 4, - ACTIONS(3), 1, + [15482] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1851), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1879), 1, sym_comment, - ACTIONS(2289), 17, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2197), 1, + sym_path, + STATE(2456), 1, + sym_cell_path, + ACTIONS(1770), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1772), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15562] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1880), 1, + sym_comment, + ACTIONS(5131), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -235458,7 +243061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2291), 44, + ACTIONS(5129), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235486,6 +243089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -235503,21 +243107,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12739] = 4, - ACTIONS(3), 1, + [15634] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1852), 1, - sym_comment, - ACTIONS(924), 18, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(5099), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1881), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2124), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1895), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235526,16 +243130,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(926), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1897), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15714] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1882), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2173), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1747), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1749), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235546,23 +243213,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235571,18 +243251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12811] = 4, - ACTIONS(3), 1, + [15794] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1853), 1, + STATE(1883), 1, sym_comment, - ACTIONS(932), 18, + ACTIONS(5135), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -235595,8 +243273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(934), 43, - ts_builtin_sym_end, + ACTIONS(5133), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235616,12 +243293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -235639,17 +243319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12883] = 4, - ACTIONS(3), 1, + [15866] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1884), 1, sym_comment, - ACTIONS(2293), 17, + ACTIONS(3487), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -235662,7 +243341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2295), 44, + ACTIONS(3485), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235690,6 +243369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -235707,20 +243387,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12955] = 4, - ACTIONS(3), 1, + [15938] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1855), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1885), 1, sym_comment, - ACTIONS(2297), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2133), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1824), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235729,15 +243410,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2299), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1826), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16018] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1886), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2136), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1855), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1857), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235748,25 +243493,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235775,17 +243531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13027] = 4, - ACTIONS(3), 1, + [16098] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(1887), 1, sym_comment, - ACTIONS(2301), 17, + ACTIONS(2332), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -235798,7 +243553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2303), 44, + ACTIONS(2334), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235826,6 +243581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -235843,20 +243599,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13099] = 4, - ACTIONS(3), 1, + [16170] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1888), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2138), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1796), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1798), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16250] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1889), 1, + sym_comment, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2150), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1808), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1810), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16330] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1857), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1890), 1, sym_comment, - ACTIONS(2305), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2156), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1820), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235865,15 +243766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2307), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1822), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235884,25 +243777,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235911,17 +243815,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13171] = 4, - ACTIONS(3), 1, + [16410] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(1891), 1, sym_comment, - ACTIONS(2309), 17, + ACTIONS(976), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -235934,7 +243837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2311), 44, + ACTIONS(978), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235962,6 +243865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -235979,17 +243883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13243] = 4, - ACTIONS(3), 1, + [16482] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1859), 1, + STATE(1892), 1, sym_comment, - ACTIONS(2313), 17, + ACTIONS(3375), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -236002,7 +243905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2315), 44, + ACTIONS(3373), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -236030,6 +243933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -236047,20 +243951,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13315] = 4, - ACTIONS(3), 1, + [16554] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1860), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1893), 1, sym_comment, - ACTIONS(2317), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2167), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1741), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236069,15 +243974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2319), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1745), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236088,25 +243985,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236115,20 +244023,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13387] = 4, - ACTIONS(3), 1, + [16634] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1861), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1894), 1, sym_comment, - ACTIONS(936), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2169), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1899), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236137,15 +244046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(938), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1901), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236156,25 +244057,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236183,22 +244095,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13459] = 5, - ACTIONS(3), 1, + [16714] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5096), 1, - aux_sym__immediate_decimal_token2, - STATE(1862), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1895), 1, sym_comment, - ACTIONS(1518), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2171), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1831), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236207,16 +244118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1520), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1833), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236227,23 +244129,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236252,19 +244167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13533] = 5, - ACTIONS(3), 1, + [16794] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5076), 1, - aux_sym__immediate_decimal_token2, - STATE(1863), 1, + STATE(1896), 1, sym_comment, - ACTIONS(1470), 17, + ACTIONS(1770), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -236277,8 +244189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1472), 43, - ts_builtin_sym_end, + ACTIONS(1772), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -236298,12 +244209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -236321,19 +244235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13607] = 5, - ACTIONS(3), 1, + [16866] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5175), 1, - aux_sym__immediate_decimal_token2, - STATE(1864), 1, + STATE(1897), 1, sym_comment, - ACTIONS(1535), 17, + ACTIONS(2315), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -236346,8 +244257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1537), 43, - ts_builtin_sym_end, + ACTIONS(2317), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -236367,12 +244277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -236390,20 +244303,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13681] = 4, - ACTIONS(3), 1, + [16938] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1865), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1898), 1, sym_comment, - ACTIONS(2927), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2127), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1835), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236412,15 +244326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2925), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1837), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236431,25 +244337,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236458,17 +244375,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13753] = 4, - ACTIONS(3), 1, + [17018] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1899), 1, sym_comment, - ACTIONS(3239), 17, + ACTIONS(5139), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -236481,7 +244397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3241), 44, + ACTIONS(5137), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -236509,6 +244425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -236526,17 +244443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13825] = 4, - ACTIONS(3), 1, + [17090] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1900), 1, sym_comment, - ACTIONS(3443), 17, + ACTIONS(986), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -236549,7 +244466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3441), 44, + ACTIONS(988), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -236569,14 +244487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -236594,58 +244511,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13897] = 5, - ACTIONS(121), 1, + [17162] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(1868), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(1901), 1, sym_comment, - ACTIONS(950), 20, - ts_builtin_sym_end, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2129), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1839), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(948), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236654,25 +244534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [13971] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(1869), 1, - sym_comment, - ACTIONS(2081), 20, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1841), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236683,46 +244545,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2077), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236731,59 +244583,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [14045] = 5, - ACTIONS(121), 1, + [17242] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(1870), 1, + STATE(1902), 1, sym_comment, - ACTIONS(2159), 20, - ts_builtin_sym_end, + ACTIONS(1525), 10, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2155), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236792,25 +244599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [14119] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(1871), 1, - sym_comment, - ACTIONS(2165), 20, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1537), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236821,46 +244610,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2163), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236869,18 +244651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [14193] = 4, - ACTIONS(3), 1, + [17314] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1872), 1, + STATE(1903), 1, sym_comment, - ACTIONS(5179), 17, + ACTIONS(990), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -236893,7 +244674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5177), 44, + ACTIONS(992), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -236913,14 +244695,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -236938,17 +244719,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14265] = 4, - ACTIONS(3), 1, + [17386] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(1904), 1, sym_comment, - ACTIONS(5183), 17, + ACTIONS(5143), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -236961,7 +244741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5181), 44, + ACTIONS(5141), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -236989,6 +244769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -237006,19 +244787,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14337] = 5, - ACTIONS(3), 1, + [17458] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3976), 1, - aux_sym_unquoted_token6, - STATE(1874), 1, + STATE(1905), 1, sym_comment, - ACTIONS(1429), 17, + ACTIONS(2336), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -237031,8 +244809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1441), 43, - ts_builtin_sym_end, + ACTIONS(2338), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -237052,12 +244829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -237075,16 +244855,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14411] = 5, - ACTIONS(121), 1, + [17530] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3241), 1, - ts_builtin_sym_end, - ACTIONS(5185), 1, - aux_sym_unquoted_token3, - STATE(1875), 1, + STATE(1906), 1, sym_comment, - ACTIONS(3239), 59, + ACTIONS(962), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(964), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -237104,37 +244897,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237143,15 +244923,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [14485] = 4, - ACTIONS(121), 1, + [17602] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1876), 1, + STATE(1907), 1, sym_comment, - ACTIONS(2075), 20, - ts_builtin_sym_end, + ACTIONS(2389), 10, sym__newline, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2391), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237162,46 +244950,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2073), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237210,19 +244991,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token7, - [14557] = 4, - ACTIONS(3), 1, + [17674] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1877), 1, + STATE(1908), 1, sym_comment, - ACTIONS(4832), 17, + ACTIONS(2303), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -237235,7 +245013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4830), 44, + ACTIONS(2305), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -237263,6 +245041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -237280,17 +245059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14629] = 4, - ACTIONS(3), 1, + [17746] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1878), 1, + STATE(1909), 1, sym_comment, - ACTIONS(1470), 17, + ACTIONS(4879), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -237303,7 +245081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1472), 44, + ACTIONS(4877), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -237331,6 +245109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -237348,17 +245127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14701] = 4, - ACTIONS(3), 1, + [17818] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1879), 1, + STATE(1910), 1, sym_comment, - ACTIONS(1535), 17, + ACTIONS(2340), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -237371,7 +245149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1537), 44, + ACTIONS(2342), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -237399,6 +245177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -237416,17 +245195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14773] = 4, - ACTIONS(3), 1, + [17890] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1880), 1, + ACTIONS(5145), 1, + anon_sym_EQ2, + STATE(1911), 1, sym_comment, - ACTIONS(1608), 17, + ACTIONS(5041), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -237439,7 +245219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1610), 44, + ACTIONS(5039), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -237459,14 +245240,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -237484,153 +245264,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14845] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1881), 1, - sym_comment, - ACTIONS(916), 15, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(918), 46, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [14917] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1882), 1, - sym_comment, - ACTIONS(920), 15, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(922), 46, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [14989] = 4, - ACTIONS(3), 1, + [17964] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1883), 1, + STATE(1912), 1, sym_comment, - ACTIONS(4886), 17, + ACTIONS(5149), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -237643,7 +245286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4884), 44, + ACTIONS(5147), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -237671,6 +245314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -237688,289 +245332,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15061] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1884), 1, - sym_comment, - ACTIONS(912), 15, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(914), 46, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [15133] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1885), 1, - sym_comment, - ACTIONS(928), 16, - sym__newline, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(930), 45, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [15205] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1886), 1, - sym_comment, - ACTIONS(924), 16, - sym__newline, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(926), 45, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [15277] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1887), 1, - sym_comment, - ACTIONS(932), 16, - sym__newline, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(934), 45, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [15349] = 4, - ACTIONS(3), 1, + [18036] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1888), 1, + STATE(1913), 1, sym_comment, - ACTIONS(3514), 17, + ACTIONS(2251), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -237983,7 +245354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3511), 44, + ACTIONS(2253), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -238011,6 +245382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -238028,97 +245400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15421] = 10, - ACTIONS(3), 1, + [18108] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5187), 1, - anon_sym_DOT, - ACTIONS(5189), 1, - aux_sym_unquoted_token4, - ACTIONS(5191), 1, - aux_sym_unquoted_token6, - STATE(1889), 1, + STATE(1914), 1, sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, + ACTIONS(2344), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - ACTIONS(2925), 44, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [15505] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(960), 1, - anon_sym_DOT_DOT2, - STATE(1890), 1, - sym_comment, - ACTIONS(962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3168), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3170), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238127,7 +245421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3166), 22, + aux_sym_unquoted_token1, + ACTIONS(2346), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238139,9 +245440,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238150,46 +245468,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(3172), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [15585] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(960), 1, - anon_sym_DOT_DOT2, - STATE(1891), 1, + [18180] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1915), 1, sym_comment, - ACTIONS(962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(948), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(4991), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238198,7 +245489,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(950), 45, + aux_sym_unquoted_token1, + ACTIONS(4989), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238210,32 +245508,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238244,91 +245536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15661] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(5002), 1, - aux_sym_unquoted_token5, - STATE(1892), 1, - sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - ACTIONS(2925), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [15743] = 4, - ACTIONS(3), 1, + [18252] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1893), 1, + STATE(1916), 1, sym_comment, - ACTIONS(2927), 18, - anon_sym_LPAREN, + ACTIONS(1879), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -238341,8 +245558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2925), 43, - ts_builtin_sym_end, + ACTIONS(1881), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -238361,13 +245577,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -238385,17 +245604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15815] = 4, - ACTIONS(3), 1, + [18324] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1894), 1, + STATE(1917), 1, sym_comment, - ACTIONS(2325), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(962), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238404,8 +245619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2327), 48, - sym__newline, + ACTIONS(964), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238417,34 +245631,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238453,98 +245672,479 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15887] = 40, - ACTIONS(3), 1, + [18396] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3297), 1, + ACTIONS(5053), 1, + aux_sym__immediate_decimal_token2, + STATE(1918), 1, + sym_comment, + ACTIONS(1589), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1591), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - ACTIONS(3305), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18470] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(3329), 1, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(3333), 1, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, anon_sym_null, - ACTIONS(5143), 1, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, anon_sym_LPAREN, - ACTIONS(5145), 1, + ACTIONS(5115), 1, anon_sym_DOLLAR, - ACTIONS(5147), 1, + ACTIONS(5117), 1, anon_sym_DASH_DASH, - ACTIONS(5149), 1, + ACTIONS(5119), 1, anon_sym_DASH, - ACTIONS(5151), 1, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(1919), 1, + sym_comment, + STATE(2502), 1, + sym__flag, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, + sym__expr_binary_expression, + STATE(5865), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + STATE(3878), 2, + sym_short_flag, + sym_long_flag, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18614] = 40, + ACTIONS(191), 1, anon_sym_DOT_DOT, - ACTIONS(5155), 1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(1895), 1, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + ACTIONS(5117), 1, + anon_sym_DASH_DASH, + ACTIONS(5119), 1, + anon_sym_DASH, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(1920), 1, sym_comment, - STATE(2464), 1, + STATE(2504), 1, sym__flag, - STATE(3621), 1, + STATE(2941), 1, sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, + sym__expr_binary_expression, + STATE(5937), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + STATE(3878), 2, + sym_short_flag, + sym_long_flag, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18758] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + ACTIONS(5117), 1, + anon_sym_DASH_DASH, + ACTIONS(5119), 1, + anon_sym_DASH, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, sym__str_double_quotes, - STATE(3641), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(3643), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(4051), 1, + STATE(1907), 1, + sym__val_number, + STATE(1921), 1, + sym_comment, + STATE(2505), 1, + sym__flag, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, sym__expr_binary_expression, - STATE(5819), 1, + STATE(5938), 1, sym__expression, - ACTIONS(3325), 2, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5139), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, + STATE(3878), 2, + sym_short_flag, + sym_long_flag, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18902] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + ACTIONS(5117), 1, + anon_sym_DASH_DASH, + ACTIONS(5119), 1, + anon_sym_DASH, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(1922), 1, + sym_comment, + STATE(2506), 1, + sym__flag, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, + sym__expr_binary_expression, + STATE(5857), 1, + sym__expression, + ACTIONS(213), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(3839), 2, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + STATE(3878), 2, sym_short_flag, sym_long_flag, - STATE(3967), 3, + STATE(1690), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3321), 6, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, + STATE(1734), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -238557,18 +246157,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [16031] = 4, - ACTIONS(3), 1, + [19046] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1896), 1, + STATE(1923), 1, sym_comment, - ACTIONS(3239), 18, - anon_sym_LPAREN, + ACTIONS(2348), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -238581,8 +246179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3241), 43, - ts_builtin_sym_end, + ACTIONS(2350), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -238601,13 +246198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -238625,123 +246225,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16103] = 40, - ACTIONS(3), 1, + [19118] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - anon_sym_0b, - ACTIONS(3329), 1, - anon_sym_DQUOTE, - ACTIONS(3333), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, - anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, + STATE(1924), 1, + sym_comment, + ACTIONS(5153), 16, anon_sym_DOLLAR, - ACTIONS(5147), 1, - anon_sym_DASH_DASH, - ACTIONS(5149), 1, anon_sym_DASH, - ACTIONS(5151), 1, anon_sym_DOT_DOT, - ACTIONS(5155), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(1897), 1, - sym_comment, - STATE(2470), 1, - sym__flag, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, - sym__str_double_quotes, - STATE(3641), 1, - sym__inter_single_quotes, - STATE(3643), 1, - sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, - sym__expr_unary_minus, - STATE(4051), 1, - sym__expr_binary_expression, - STATE(5822), 1, - sym__expression, - ACTIONS(3325), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5139), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5151), 45, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3839), 2, - sym_short_flag, - sym_long_flag, - STATE(3967), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3321), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [16247] = 5, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19190] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_EQ2, - STATE(1898), 1, + STATE(1925), 1, sym_comment, - ACTIONS(5016), 17, + ACTIONS(2352), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -238754,8 +246315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5014), 43, - ts_builtin_sym_end, + ACTIONS(2354), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -238775,12 +246335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -238798,17 +246361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16321] = 4, - ACTIONS(3), 1, + [19262] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1926), 1, sym_comment, - ACTIONS(2329), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1747), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238817,7 +246382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2331), 48, + aux_sym_unquoted_token1, + ACTIONS(1749), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238829,35 +246401,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238866,435 +246429,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16393] = 40, - ACTIONS(3), 1, + [19334] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - anon_sym_0b, - ACTIONS(3329), 1, - anon_sym_DQUOTE, - ACTIONS(3333), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, - anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, + STATE(1927), 1, + sym_comment, + ACTIONS(1855), 16, anon_sym_DOLLAR, - ACTIONS(5147), 1, - anon_sym_DASH_DASH, - ACTIONS(5149), 1, anon_sym_DASH, - ACTIONS(5151), 1, anon_sym_DOT_DOT, - ACTIONS(5155), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(1900), 1, - sym_comment, - STATE(2455), 1, - sym__flag, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, - sym__str_double_quotes, - STATE(3641), 1, - sym__inter_single_quotes, - STATE(3643), 1, - sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, - sym__expr_unary_minus, - STATE(4051), 1, - sym__expr_binary_expression, - STATE(5820), 1, - sym__expression, - ACTIONS(3325), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5139), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1857), 45, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3839), 2, - sym_short_flag, - sym_long_flag, - STATE(3967), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3321), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3635), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [16537] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3297), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - ACTIONS(3305), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - anon_sym_0b, - ACTIONS(3329), 1, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3333), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, - anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19406] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1928), 1, + sym_comment, + ACTIONS(1796), 16, anon_sym_DOLLAR, - ACTIONS(5147), 1, - anon_sym_DASH_DASH, - ACTIONS(5149), 1, anon_sym_DASH, - ACTIONS(5151), 1, anon_sym_DOT_DOT, - ACTIONS(5155), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(1901), 1, - sym_comment, - STATE(2458), 1, - sym__flag, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, - sym__str_double_quotes, - STATE(3641), 1, - sym__inter_single_quotes, - STATE(3643), 1, - sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, - sym__expr_unary_minus, - STATE(4051), 1, - sym__expr_binary_expression, - STATE(5870), 1, - sym__expression, - ACTIONS(3325), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5139), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1798), 45, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3839), 2, - sym_short_flag, - sym_long_flag, - STATE(3967), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3321), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3635), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [16681] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3297), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - ACTIONS(3305), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - anon_sym_0b, - ACTIONS(3329), 1, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3333), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, - anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19478] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1929), 1, + sym_comment, + ACTIONS(2359), 16, anon_sym_DOLLAR, - ACTIONS(5147), 1, - anon_sym_DASH_DASH, - ACTIONS(5149), 1, anon_sym_DASH, - ACTIONS(5151), 1, anon_sym_DOT_DOT, - ACTIONS(5155), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(1902), 1, - sym_comment, - STATE(2459), 1, - sym__flag, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, - sym__str_double_quotes, - STATE(3641), 1, - sym__inter_single_quotes, - STATE(3643), 1, - sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, - sym__expr_unary_minus, - STATE(4051), 1, - sym__expr_binary_expression, - STATE(5871), 1, - sym__expression, - ACTIONS(3325), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5139), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2361), 45, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3839), 2, - sym_short_flag, - sym_long_flag, - STATE(3967), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3321), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [16825] = 40, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19550] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - anon_sym_0b, - ACTIONS(3329), 1, - anon_sym_DQUOTE, - ACTIONS(3333), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, - anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, + STATE(1930), 1, + sym_comment, + ACTIONS(1741), 16, anon_sym_DOLLAR, - ACTIONS(5147), 1, - anon_sym_DASH_DASH, - ACTIONS(5149), 1, anon_sym_DASH, - ACTIONS(5151), 1, anon_sym_DOT_DOT, - ACTIONS(5155), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(1903), 1, - sym_comment, - STATE(2461), 1, - sym__flag, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, - sym__str_double_quotes, - STATE(3641), 1, - sym__inter_single_quotes, - STATE(3643), 1, - sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, - sym__expr_unary_minus, - STATE(4051), 1, - sym__expr_binary_expression, - STATE(5833), 1, - sym__expression, - ACTIONS(3325), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5139), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1745), 45, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3839), 2, - sym_short_flag, - sym_long_flag, - STATE(3967), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3321), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [16969] = 5, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19622] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4632), 1, - aux_sym_unquoted_token6, - STATE(1904), 1, + STATE(1931), 1, sym_comment, - ACTIONS(1429), 17, + ACTIONS(2363), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -239307,8 +246723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1441), 43, - ts_builtin_sym_end, + ACTIONS(2365), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239328,12 +246743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -239351,17 +246769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17043] = 4, - ACTIONS(3), 1, + [19694] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1905), 1, + STATE(1932), 1, sym_comment, - ACTIONS(2208), 17, + ACTIONS(2367), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -239374,7 +246791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2210), 44, + ACTIONS(2369), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239402,6 +246819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -239419,17 +246837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17115] = 4, - ACTIONS(3), 1, + [19766] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1906), 1, + ACTIONS(5081), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1933), 1, sym_comment, - ACTIONS(948), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(1934), 1, + aux_sym_cell_path_repeat1, + ACTIONS(951), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239438,7 +246857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(950), 47, + ACTIONS(953), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239452,32 +246871,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239486,23 +246908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17186] = 7, - ACTIONS(3), 1, + [19844] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1907), 1, + ACTIONS(5155), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1934), 2, sym_comment, - STATE(2216), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + aux_sym_cell_path_repeat1, + ACTIONS(955), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239511,7 +246927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + ACTIONS(957), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239524,30 +246940,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19920] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1935), 1, + sym_comment, + ACTIONS(1899), 16, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1901), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239556,17 +247046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17263] = 4, - ACTIONS(3), 1, + [19992] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1936), 1, sym_comment, - ACTIONS(1963), 17, + ACTIONS(1835), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -239579,8 +247068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1965), 43, - ts_builtin_sym_end, + ACTIONS(1837), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239600,12 +247088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -239623,23 +247114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17334] = 7, - ACTIONS(3), 1, + [20064] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1909), 1, + STATE(1937), 1, sym_comment, - STATE(2219), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2371), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239648,7 +247135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + aux_sym_unquoted_token1, + ACTIONS(2373), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239660,31 +247154,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239693,23 +247182,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17411] = 7, - ACTIONS(3), 1, + [20136] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1910), 1, + STATE(1938), 1, sym_comment, - STATE(2222), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2379), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239718,7 +247203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + aux_sym_unquoted_token1, + ACTIONS(2381), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239730,31 +247222,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239763,23 +247250,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17488] = 7, - ACTIONS(3), 1, + [20208] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1911), 1, + STATE(1939), 1, sym_comment, - STATE(2226), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1839), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239788,7 +247271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + aux_sym_unquoted_token1, + ACTIONS(1841), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239800,31 +247290,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239833,17 +247318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17565] = 4, - ACTIONS(3), 1, + [20280] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1912), 1, + STATE(1940), 1, sym_comment, - ACTIONS(2927), 17, + ACTIONS(5160), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -239856,8 +247340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2925), 43, - ts_builtin_sym_end, + ACTIONS(5158), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239877,12 +247360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -239900,23 +247386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17636] = 7, - ACTIONS(3), 1, + [20352] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1913), 1, + STATE(1941), 1, sym_comment, - STATE(2310), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2383), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239925,7 +247407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + aux_sym_unquoted_token1, + ACTIONS(2385), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239937,31 +247426,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239970,17 +247454,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17713] = 4, - ACTIONS(3), 1, + [20424] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1942), 1, sym_comment, - ACTIONS(3239), 17, + ACTIONS(2326), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -239993,8 +247476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3241), 43, - ts_builtin_sym_end, + ACTIONS(2328), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -240014,12 +247496,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -240037,17 +247522,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17784] = 4, - ACTIONS(3), 1, + [20496] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1943), 1, sym_comment, - ACTIONS(936), 17, + ACTIONS(5164), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -240060,8 +247544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(938), 43, - ts_builtin_sym_end, + ACTIONS(5162), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -240081,12 +247564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -240104,23 +247590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17855] = 7, - ACTIONS(3), 1, + [20568] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1916), 1, + STATE(1944), 1, sym_comment, - STATE(2236), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1525), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240129,7 +247611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + aux_sym_unquoted_token1, + ACTIONS(1537), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240141,31 +247630,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240174,23 +247658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17932] = 7, - ACTIONS(3), 1, + [20640] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1917), 1, + STATE(1945), 1, sym_comment, - STATE(2241), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2389), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240199,7 +247679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + aux_sym_unquoted_token1, + ACTIONS(2391), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240211,31 +247698,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240244,23 +247726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18009] = 7, - ACTIONS(3), 1, + [20712] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1918), 1, + STATE(1946), 1, sym_comment, - STATE(2248), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5168), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240269,7 +247747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + aux_sym_unquoted_token1, + ACTIONS(5166), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240281,31 +247766,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240314,17 +247794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18086] = 4, - ACTIONS(3), 1, + [20784] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1919), 1, + STATE(1947), 1, sym_comment, - ACTIONS(3443), 17, + ACTIONS(5172), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -240337,8 +247816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3441), 43, - ts_builtin_sym_end, + ACTIONS(5170), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -240358,12 +247836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -240381,17 +247862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18157] = 4, - ACTIONS(3), 1, + [20856] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1920), 1, + STATE(1948), 1, sym_comment, - ACTIONS(2281), 17, + ACTIONS(1778), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -240404,8 +247884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2283), 43, - ts_builtin_sym_end, + ACTIONS(1780), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -240425,12 +247904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -240448,17 +247930,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18228] = 4, - ACTIONS(3), 1, + [20928] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1921), 1, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + ACTIONS(5117), 1, + anon_sym_DASH_DASH, + ACTIONS(5119), 1, + anon_sym_DASH, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(1949), 1, + sym_comment, + STATE(2464), 1, + sym__flag, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, + sym__expr_binary_expression, + STATE(5919), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + STATE(3878), 2, + sym_short_flag, + sym_long_flag, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [21072] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5174), 1, + anon_sym_LBRACK2, + STATE(1950), 1, sym_comment, - ACTIONS(2285), 17, + ACTIONS(2235), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -240471,7 +248059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2287), 43, + ACTIONS(2239), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -240490,7 +248078,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, @@ -240498,6 +248085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -240515,17 +248103,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18299] = 4, - ACTIONS(3), 1, + [21146] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1922), 1, + STATE(1951), 1, + sym_comment, + ACTIONS(976), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(978), 52, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [21218] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + ACTIONS(5117), 1, + anon_sym_DASH_DASH, + ACTIONS(5119), 1, + anon_sym_DASH, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(1952), 1, + sym_comment, + STATE(2493), 1, + sym__flag, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, + sym__expr_binary_expression, + STATE(5861), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + STATE(3878), 2, + sym_short_flag, + sym_long_flag, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [21362] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5176), 1, + aux_sym__immediate_decimal_token2, + STATE(1953), 1, sym_comment, - ACTIONS(2289), 17, + ACTIONS(1648), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -240538,7 +248299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2291), 43, + ACTIONS(1650), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -240565,6 +248326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -240582,23 +248344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18370] = 7, - ACTIONS(3), 1, + [21436] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1923), 1, + STATE(1954), 1, sym_comment, - STATE(2257), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(966), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240607,7 +248365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + aux_sym_unquoted_token1, + ACTIONS(968), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240619,31 +248384,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [21508] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1955), 1, + sym_comment, + ACTIONS(2311), 16, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2313), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240652,17 +248479,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18447] = 4, - ACTIONS(3), 1, + [21579] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1924), 1, + STATE(1956), 1, sym_comment, - ACTIONS(2216), 17, + ACTIONS(5168), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -240675,7 +248501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2218), 43, + ACTIONS(5166), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -240702,6 +248528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -240719,17 +248546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18518] = 4, - ACTIONS(3), 1, + [21650] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1957), 1, sym_comment, - ACTIONS(2216), 17, + ACTIONS(5172), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -240742,7 +248568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2218), 43, + ACTIONS(5170), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -240769,6 +248595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -240786,23 +248613,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18589] = 7, - ACTIONS(3), 1, + [21721] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(1926), 1, + STATE(1958), 1, sym_comment, - STATE(2262), 1, + STATE(2272), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5178), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5180), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [21798] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1959), 1, + sym_comment, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2297), 1, + sym_path, + STATE(2594), 1, + sym_cell_path, + ACTIONS(1875), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240811,7 +248705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + ACTIONS(1877), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240823,31 +248718,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240856,17 +248754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18666] = 4, - ACTIONS(3), 1, + [21877] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1927), 1, + STATE(1960), 1, sym_comment, - ACTIONS(2184), 17, + ACTIONS(2344), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -240879,7 +248776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2186), 43, + ACTIONS(2346), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -240906,6 +248803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -240923,17 +248821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18737] = 4, - ACTIONS(3), 1, + [21948] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1928), 1, + STATE(1961), 1, sym_comment, - ACTIONS(2200), 17, + ACTIONS(2326), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -240946,7 +248843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2202), 43, + ACTIONS(2328), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -240973,6 +248870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -240990,23 +248888,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18808] = 7, - ACTIONS(3), 1, + [22019] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(1929), 1, + STATE(1962), 1, sym_comment, - STATE(2270), 1, + STATE(2208), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241015,8 +248909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241028,30 +248921,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241060,20 +248958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18885] = 4, - ACTIONS(3), 1, + [22096] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1930), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1963), 1, sym_comment, - ACTIONS(2208), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2209), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241082,16 +248979,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2210), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5184), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22173] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1964), 1, + sym_comment, + STATE(2210), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241102,23 +249060,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241127,17 +249098,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18956] = 4, - ACTIONS(3), 1, + [22250] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1931), 1, + STATE(1965), 1, sym_comment, - ACTIONS(2212), 17, + ACTIONS(1879), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -241150,7 +249120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2214), 43, + ACTIONS(1881), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -241177,6 +249147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -241194,23 +249165,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19027] = 7, - ACTIONS(3), 1, + [22321] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(1932), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1966), 1, sym_comment, - STATE(2275), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2297), 1, + sym_path, + STATE(2577), 1, + sym_cell_path, + ACTIONS(1741), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241219,7 +249187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, + ACTIONS(1745), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241231,31 +249200,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241264,17 +249236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19104] = 4, - ACTIONS(3), 1, + [22400] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1933), 1, + STATE(1967), 1, sym_comment, - ACTIONS(948), 17, + ACTIONS(2263), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -241287,7 +249258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(950), 43, + ACTIONS(2265), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -241314,6 +249285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -241331,17 +249303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19175] = 4, - ACTIONS(3), 1, + [22471] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1934), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1968), 1, sym_comment, - ACTIONS(2216), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2297), 1, + sym_path, + STATE(2578), 1, + sym_cell_path, + ACTIONS(1899), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241350,7 +249325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2218), 47, + ACTIONS(1901), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241362,34 +249338,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241398,17 +249374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19246] = 4, - ACTIONS(3), 1, + [22550] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1935), 1, + STATE(1969), 1, sym_comment, - ACTIONS(2216), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(966), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241417,7 +249388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2218), 47, + ACTIONS(968), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241431,32 +249402,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241465,17 +249441,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19317] = 4, - ACTIONS(3), 1, + [22621] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1936), 1, + STATE(1970), 1, sym_comment, - ACTIONS(916), 17, + ACTIONS(1770), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -241488,7 +249463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(918), 43, + ACTIONS(1772), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -241515,6 +249490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -241532,20 +249508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19388] = 4, - ACTIONS(3), 1, + [22692] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1937), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1971), 1, sym_comment, - ACTIONS(5179), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2334), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241554,16 +249529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5177), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241574,23 +249540,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241599,20 +249578,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19459] = 4, - ACTIONS(3), 1, + [22769] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1938), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1972), 1, sym_comment, - ACTIONS(5183), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2297), 1, + sym_path, + STATE(2551), 1, + sym_cell_path, + ACTIONS(1847), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241621,15 +249600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5181), 43, + ACTIONS(1849), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241641,23 +249613,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241666,17 +249649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19530] = 4, - ACTIONS(3), 1, + [22848] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1939), 1, + STATE(1973), 1, sym_comment, - ACTIONS(920), 17, + ACTIONS(5149), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -241689,7 +249671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(922), 43, + ACTIONS(5147), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -241716,6 +249698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -241733,20 +249716,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19601] = 4, - ACTIONS(3), 1, + [22919] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1940), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1974), 1, sym_comment, - ACTIONS(912), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2211), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241755,16 +249737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(914), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241775,23 +249748,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241800,17 +249786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19672] = 4, - ACTIONS(3), 1, + [22996] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1941), 1, + STATE(1975), 1, sym_comment, - ACTIONS(2293), 17, + ACTIONS(5049), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -241823,8 +249808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2295), 43, - ts_builtin_sym_end, + ACTIONS(5047), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -241844,12 +249828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -241867,20 +249853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19743] = 4, - ACTIONS(3), 1, + [23067] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1942), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1976), 1, sym_comment, - ACTIONS(2297), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2212), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241889,16 +249874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2299), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241909,23 +249885,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241934,20 +249923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19814] = 4, - ACTIONS(3), 1, + [23144] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1943), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1977), 1, sym_comment, - ACTIONS(2301), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2213), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241956,16 +249944,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2303), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5184), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23221] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1978), 1, + sym_comment, + STATE(2342), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5186), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241976,23 +250025,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242001,17 +250063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19885] = 4, - ACTIONS(3), 1, + [23298] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1944), 1, + STATE(1979), 1, sym_comment, - ACTIONS(2305), 17, + ACTIONS(1835), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -242024,7 +250085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2307), 43, + ACTIONS(1837), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -242051,6 +250112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -242068,17 +250130,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19956] = 4, - ACTIONS(3), 1, + [23369] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1945), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1980), 1, + sym_comment, + STATE(2214), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5184), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23446] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1981), 1, sym_comment, - ACTIONS(2309), 17, + ACTIONS(2401), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -242091,7 +250222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2311), 43, + ACTIONS(2403), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -242118,6 +250249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -242135,17 +250267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20027] = 4, - ACTIONS(3), 1, + [23517] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1982), 1, sym_comment, - ACTIONS(2313), 17, + ACTIONS(2066), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -242158,7 +250289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2315), 43, + ACTIONS(2072), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -242185,6 +250316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -242202,17 +250334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20098] = 4, - ACTIONS(3), 1, + [23588] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1947), 1, + STATE(1983), 1, sym_comment, - ACTIONS(2317), 17, + ACTIONS(1972), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -242225,7 +250356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2319), 43, + ACTIONS(1978), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -242252,6 +250383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -242269,17 +250401,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20169] = 4, - ACTIONS(3), 1, + [23659] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1948), 1, + STATE(1984), 1, sym_comment, - ACTIONS(2325), 17, + ACTIONS(1960), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -242292,7 +250423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2327), 43, + ACTIONS(1966), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -242319,6 +250450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -242336,21 +250468,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20240] = 6, - ACTIONS(3), 1, + [23730] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5199), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5201), 1, - aux_sym_unquoted_token2, - STATE(1949), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1985), 1, sym_comment, - ACTIONS(2927), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2344), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242359,8 +250489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2925), 45, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242372,31 +250501,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242405,17 +250538,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20315] = 4, - ACTIONS(3), 1, + [23807] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(1986), 1, sym_comment, - ACTIONS(2184), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1648), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242424,7 +250559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2186), 47, + aux_sym_unquoted_token1, + ACTIONS(1650), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242436,34 +250579,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242472,25 +250605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20386] = 8, - ACTIONS(3), 1, + [23878] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1951), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1987), 1, sym_comment, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2202), 1, - sym_path, - STATE(2528), 1, - sym_cell_path, - ACTIONS(1764), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2216), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242499,9 +250626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1766), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242512,29 +250637,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242543,25 +250675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20465] = 8, - ACTIONS(3), 1, + [23955] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1952), 1, + STATE(1988), 1, sym_comment, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2202), 1, - sym_path, - STATE(2534), 1, - sym_cell_path, - ACTIONS(1768), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2295), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242570,8 +250696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1770), 43, + aux_sym_unquoted_token1, + ACTIONS(2297), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242583,29 +250716,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242614,25 +250742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20544] = 8, - ACTIONS(3), 1, + [24026] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1953), 1, + ACTIONS(5194), 1, + anon_sym_LBRACK2, + STATE(1989), 1, sym_comment, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2202), 1, - sym_path, - STATE(2537), 1, - sym_cell_path, - ACTIONS(1772), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2235), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242641,9 +250759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1774), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2239), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242654,29 +250770,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242685,19 +250810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20623] = 4, - ACTIONS(3), 1, + [24099] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1954), 1, + STATE(1990), 1, sym_comment, - ACTIONS(928), 15, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2251), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242706,8 +250831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(930), 45, + aux_sym_unquoted_token1, + ACTIONS(2253), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242719,31 +250851,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242752,17 +250877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20694] = 4, - ACTIONS(3), 1, + [24170] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1955), 1, + STATE(1991), 1, sym_comment, - ACTIONS(2200), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3487), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242771,8 +250892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2202), 47, - sym__newline, + ACTIONS(3485), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242784,130 +250904,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [20765] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24241] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1992), 1, sym_comment, - STATE(2066), 1, - aux_sym_cell_path_repeat1, - STATE(2202), 1, - sym_path, - ACTIONS(889), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(891), 44, - ts_builtin_sym_end, + STATE(2219), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [20842] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(1957), 1, - sym_comment, - STATE(2202), 1, - sym_path, - STATE(2540), 1, - sym_cell_path, - ACTIONS(1776), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242916,9 +250965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1778), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242929,29 +250976,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242960,17 +251014,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20921] = 4, - ACTIONS(3), 1, + [24318] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1958), 1, + STATE(1993), 1, sym_comment, - ACTIONS(5125), 17, + ACTIONS(5153), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -242983,7 +251036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5123), 43, + ACTIONS(5151), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -243010,6 +251063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -243027,20 +251081,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20992] = 4, - ACTIONS(3), 1, + [24389] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1959), 1, + ACTIONS(1015), 1, + anon_sym_DOT_DOT2, + ACTIONS(4728), 1, + aux_sym_record_entry_token1, + STATE(1994), 1, sym_comment, - ACTIONS(1733), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1017), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3175), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243049,16 +251103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1735), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(3173), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243069,23 +251114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243094,20 +251123,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21063] = 4, - ACTIONS(3), 1, + ACTIONS(3177), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [24468] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1960), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(1995), 1, sym_comment, - ACTIONS(4992), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2221), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243116,15 +251173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2560), 43, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243135,24 +251184,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243161,17 +251222,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21134] = 4, - ACTIONS(3), 1, + [24545] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1961), 1, + STATE(1996), 1, sym_comment, - ACTIONS(2248), 17, + ACTIONS(1953), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -243184,7 +251244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2250), 43, + ACTIONS(1955), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -243211,6 +251271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -243228,17 +251289,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21205] = 4, - ACTIONS(3), 1, + [24616] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1962), 1, + STATE(1997), 1, sym_comment, - ACTIONS(2329), 17, + ACTIONS(5125), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -243251,7 +251311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2331), 43, + ACTIONS(5123), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -243278,6 +251338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -243295,19 +251356,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21276] = 4, - ACTIONS(3), 1, + [24687] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1963), 1, - sym_comment, - ACTIONS(924), 15, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + ACTIONS(5121), 1, anon_sym_DOT, + STATE(1998), 1, + sym_comment, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2297), 1, + sym_path, + STATE(2580), 1, + sym_cell_path, + ACTIONS(1831), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243316,7 +251378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(926), 45, + ACTIONS(1833), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -243329,31 +251391,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243362,19 +251427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21347] = 4, - ACTIONS(3), 1, + [24766] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1964), 1, - sym_comment, - ACTIONS(932), 15, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + ACTIONS(5121), 1, anon_sym_DOT, + STATE(1999), 1, + sym_comment, + STATE(2099), 1, + aux_sym_cell_path_repeat1, + STATE(2297), 1, + sym_path, + ACTIONS(951), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243383,7 +251447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(934), 45, + ACTIONS(953), 49, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -243396,31 +251460,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243429,17 +251497,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21418] = 4, - ACTIONS(3), 1, + [24843] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1965), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2000), 1, sym_comment, - ACTIONS(2208), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2581), 1, + sym_cell_path, + ACTIONS(1835), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243448,7 +251519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2210), 47, + ACTIONS(1837), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243460,34 +251532,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243496,17 +251568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21489] = 4, - ACTIONS(3), 1, + [24922] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1966), 1, + STATE(2001), 1, sym_comment, - ACTIONS(5080), 17, + ACTIONS(2348), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -243519,7 +251590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5078), 43, + ACTIONS(2350), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -243539,13 +251611,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -243563,17 +251635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21560] = 4, - ACTIONS(3), 1, + [24993] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1967), 1, + STATE(2002), 1, sym_comment, - ACTIONS(2212), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3375), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243582,8 +251650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2214), 47, - sym__newline, + ACTIONS(3373), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243595,33 +251662,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243630,25 +251702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21631] = 8, - ACTIONS(3), 1, + [25064] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(1968), 1, + STATE(2003), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2547), 1, - sym_cell_path, - ACTIONS(1723), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3540), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243657,8 +251723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1725), 43, + aux_sym_unquoted_token1, + ACTIONS(3537), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243670,29 +251743,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243701,25 +251769,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21710] = 8, - ACTIONS(3), 1, + [25135] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(1969), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2004), 1, sym_comment, - STATE(2202), 1, + STATE(2223), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25212] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2197), 1, sym_path, - STATE(2568), 1, - sym_cell_path, - ACTIONS(1744), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2005), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(955), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243728,9 +251859,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1746), 43, - ts_builtin_sym_end, + ACTIONS(957), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25287] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2006), 1, + sym_comment, + STATE(2225), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243741,29 +251940,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243772,17 +251978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21789] = 4, - ACTIONS(3), 1, + [25364] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1970), 1, + STATE(2007), 1, sym_comment, - ACTIONS(4832), 17, + ACTIONS(2315), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -243795,7 +252000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4830), 43, + ACTIONS(2317), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -243822,6 +252027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -243839,25 +252045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21860] = 8, - ACTIONS(3), 1, + [25435] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(1971), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2008), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2500), 1, - sym_cell_path, - ACTIONS(1756), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2260), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243866,9 +252066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1758), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243879,29 +252077,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243910,25 +252115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21939] = 8, - ACTIONS(3), 1, + [25512] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(1972), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2009), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2516), 1, - sym_cell_path, - ACTIONS(1760), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2340), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243937,9 +252136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1762), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243950,29 +252147,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243981,17 +252185,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22018] = 4, - ACTIONS(3), 1, + [25589] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1973), 1, + STATE(2010), 1, sym_comment, - ACTIONS(4898), 17, + ACTIONS(4964), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244004,7 +252207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4896), 43, + ACTIONS(4962), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -244031,6 +252234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244048,17 +252252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22089] = 4, - ACTIONS(3), 1, + [25660] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1974), 1, + STATE(2011), 1, sym_comment, - ACTIONS(5042), 17, + ACTIONS(2340), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244071,7 +252274,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5040), 43, + ACTIONS(2342), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -244091,13 +252295,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244115,17 +252319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22160] = 4, - ACTIONS(3), 1, + [25731] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1975), 1, + STATE(2012), 1, sym_comment, - ACTIONS(5133), 17, + ACTIONS(962), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244138,7 +252341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5131), 43, + ACTIONS(964), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -244165,6 +252368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244182,17 +252386,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22231] = 4, - ACTIONS(3), 1, + [25802] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1976), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2013), 1, sym_comment, - ACTIONS(5137), 17, + STATE(2227), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25879] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2014), 1, + sym_comment, + ACTIONS(4879), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244205,7 +252478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5135), 43, + ACTIONS(4877), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -244232,6 +252505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244249,17 +252523,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22302] = 4, - ACTIONS(3), 1, + [25950] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1977), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2015), 1, sym_comment, - ACTIONS(2273), 17, + STATE(2261), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5178), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5180), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [26027] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2016), 1, + sym_comment, + STATE(2230), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [26104] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2017), 1, + sym_comment, + ACTIONS(2405), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244272,7 +252685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2275), 43, + ACTIONS(2407), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -244299,6 +252712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244316,17 +252730,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22373] = 4, - ACTIONS(3), 1, + [26175] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1978), 1, + STATE(2018), 1, sym_comment, - ACTIONS(2204), 17, + ACTIONS(2409), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244339,7 +252752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2206), 43, + ACTIONS(2411), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -244366,6 +252779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244383,17 +252797,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22444] = 4, - ACTIONS(3), 1, + [26246] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1979), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2019), 1, sym_comment, - ACTIONS(2394), 17, + STATE(2262), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5178), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5180), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [26323] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2020), 1, + sym_comment, + ACTIONS(4930), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244406,8 +252889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2396), 43, - ts_builtin_sym_end, + ACTIONS(2613), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -244427,12 +252909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244450,17 +252934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22515] = 4, - ACTIONS(3), 1, + [26394] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1980), 1, + STATE(2021), 1, sym_comment, - ACTIONS(5165), 17, + ACTIONS(5023), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244473,8 +252956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5163), 43, - ts_builtin_sym_end, + ACTIONS(5021), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -244494,12 +252976,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244517,17 +253001,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22586] = 4, - ACTIONS(3), 1, + [26465] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1981), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2022), 1, + sym_comment, + STATE(2232), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [26542] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2023), 1, sym_comment, - ACTIONS(5169), 17, + ACTIONS(2371), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244540,7 +253093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5167), 43, + ACTIONS(2373), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -244567,6 +253120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244584,17 +253138,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22657] = 4, - ACTIONS(3), 1, + [26613] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1982), 1, + STATE(2024), 1, sym_comment, - ACTIONS(2333), 17, + ACTIONS(4991), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244607,7 +253160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2335), 43, + ACTIONS(4989), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -244634,6 +253187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244651,17 +253205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22728] = 4, - ACTIONS(3), 1, + [26684] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1983), 1, + STATE(2025), 1, sym_comment, - ACTIONS(1764), 17, + ACTIONS(2417), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244674,7 +253227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1766), 43, + ACTIONS(2419), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -244701,6 +253254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244718,17 +253272,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22799] = 4, - ACTIONS(3), 1, + [26755] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1984), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2026), 1, + sym_comment, + STATE(2297), 1, + sym_path, + STATE(2590), 1, + sym_cell_path, + ACTIONS(1774), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1776), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [26834] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2027), 1, sym_comment, - ACTIONS(2337), 17, + ACTIONS(2255), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244741,7 +253365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2339), 43, + ACTIONS(2257), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -244768,6 +253392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244785,17 +253410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22870] = 4, - ACTIONS(3), 1, + [26905] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1985), 1, + STATE(2028), 1, sym_comment, - ACTIONS(2341), 17, + ACTIONS(1525), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -244808,7 +253432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2343), 43, + ACTIONS(1537), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -244835,6 +253459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -244852,20 +253477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22941] = 4, - ACTIONS(3), 1, + [26976] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1986), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2029), 1, sym_comment, - ACTIONS(1780), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2297), 1, + sym_path, + STATE(2617), 1, + sym_cell_path, + ACTIONS(1778), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244874,15 +253499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1782), 43, + ACTIONS(1780), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244894,23 +253512,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244919,20 +253548,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23012] = 4, - ACTIONS(3), 1, + [27055] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1987), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2030), 1, sym_comment, - ACTIONS(1788), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2179), 1, + sym_cell_path, + STATE(2297), 1, + sym_path, + ACTIONS(1599), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244941,15 +253570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1790), 43, + ACTIONS(1603), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244961,23 +253583,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [27134] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2031), 1, + sym_comment, + STATE(2263), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5178), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5180), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244986,17 +253689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23083] = 4, - ACTIONS(3), 1, + [27211] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1988), 1, + STATE(2032), 1, sym_comment, - ACTIONS(1792), 17, + ACTIONS(2379), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245009,7 +253711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1794), 43, + ACTIONS(2381), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245036,6 +253738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245053,20 +253756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23154] = 4, - ACTIONS(3), 1, + [27282] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1989), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2033), 1, sym_comment, - ACTIONS(2345), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2264), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245075,16 +253777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2347), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245095,23 +253788,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245120,17 +253826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23225] = 4, - ACTIONS(3), 1, + [27359] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1990), 1, + STATE(2034), 1, sym_comment, - ACTIONS(1804), 17, + ACTIONS(1839), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245143,7 +253848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1806), 43, + ACTIONS(1841), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245170,6 +253875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245187,20 +253893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23296] = 4, - ACTIONS(3), 1, + [27430] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1991), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2035), 1, sym_comment, - ACTIONS(2349), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2234), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245209,16 +253914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2351), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245229,23 +253925,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245254,17 +253963,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23367] = 4, - ACTIONS(3), 1, + [27507] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1992), 1, + STATE(2036), 1, sym_comment, - ACTIONS(2353), 17, + ACTIONS(1943), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245277,7 +253985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2355), 43, + ACTIONS(1945), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245304,6 +254012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245321,17 +254030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23438] = 4, - ACTIONS(3), 1, + [27578] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1993), 1, + STATE(2037), 1, sym_comment, - ACTIONS(1808), 17, + ACTIONS(2303), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245344,7 +254052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1810), 43, + ACTIONS(2305), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245371,6 +254079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245388,17 +254097,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23509] = 4, - ACTIONS(3), 1, + [27649] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1994), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2038), 1, + sym_comment, + STATE(2201), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5184), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [27726] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2039), 1, sym_comment, - ACTIONS(1816), 17, + ACTIONS(2352), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245411,7 +254189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1818), 43, + ACTIONS(2354), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245438,6 +254216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245455,17 +254234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23580] = 4, - ACTIONS(3), 1, + [27797] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1995), 1, + STATE(2040), 1, sym_comment, - ACTIONS(2357), 17, + ACTIONS(2421), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245478,7 +254256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2359), 43, + ACTIONS(2423), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245505,6 +254283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245522,17 +254301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23651] = 4, - ACTIONS(3), 1, + [27868] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1996), 1, + STATE(2041), 1, sym_comment, - ACTIONS(2277), 17, + ACTIONS(1747), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245545,7 +254323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2279), 43, + ACTIONS(1749), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245572,6 +254350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245589,17 +254368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23722] = 4, - ACTIONS(3), 1, + [27939] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1997), 1, + STATE(2042), 1, sym_comment, - ACTIONS(1820), 17, + ACTIONS(966), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245612,7 +254390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1822), 43, + ACTIONS(968), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245639,6 +254417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245656,17 +254435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23793] = 4, - ACTIONS(3), 1, + [28010] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1998), 1, + STATE(2043), 1, sym_comment, - ACTIONS(2361), 17, + ACTIONS(2336), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245679,7 +254457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2363), 43, + ACTIONS(2338), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245706,6 +254484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245723,17 +254502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23864] = 4, - ACTIONS(3), 1, + [28081] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1999), 1, + STATE(2044), 1, sym_comment, - ACTIONS(2365), 17, + ACTIONS(3487), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245746,7 +254524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2367), 43, + ACTIONS(3485), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245773,6 +254551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245790,17 +254569,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23935] = 4, - ACTIONS(3), 1, + [28152] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2000), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2045), 1, + sym_comment, + STATE(2202), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5184), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [28229] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2046), 1, + sym_comment, + STATE(2237), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [28306] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2047), 1, sym_comment, - ACTIONS(1429), 17, + ACTIONS(1589), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245813,7 +254731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1441), 43, + ACTIONS(1591), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245840,6 +254758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245857,17 +254776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24006] = 4, - ACTIONS(3), 1, + [28377] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2001), 1, + STATE(2048), 1, sym_comment, - ACTIONS(2369), 17, + ACTIONS(2425), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -245880,7 +254798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2371), 43, + ACTIONS(2427), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -245907,6 +254825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -245924,23 +254843,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24077] = 7, - ACTIONS(3), 1, + [28448] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2002), 1, + ACTIONS(1015), 1, + anon_sym_DOT_DOT2, + ACTIONS(1019), 1, + aux_sym_record_entry_token1, + STATE(2049), 1, sym_comment, - STATE(2272), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1017), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3175), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245949,8 +254865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(3173), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245961,31 +254876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245994,23 +254885,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24154] = 7, - ACTIONS(3), 1, + ACTIONS(3177), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [28527] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2003), 1, + STATE(2050), 1, sym_comment, - STATE(2285), 1, + STATE(2265), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246019,8 +254935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246032,30 +254947,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246064,23 +254984,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24231] = 7, - ACTIONS(3), 1, + [28604] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2004), 1, + STATE(2051), 1, sym_comment, - STATE(2140), 1, + STATE(2266), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246089,8 +255005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246102,30 +255017,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246134,23 +255054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24308] = 7, - ACTIONS(3), 1, + [28681] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2005), 1, + STATE(2052), 1, sym_comment, - STATE(2141), 1, + STATE(2329), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246159,8 +255075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246172,30 +255087,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246204,23 +255124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24385] = 7, - ACTIONS(3), 1, + [28758] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2006), 1, + STATE(2053), 1, sym_comment, - STATE(2142), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1855), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246229,7 +255145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + aux_sym_unquoted_token1, + ACTIONS(1857), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246241,31 +255165,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246274,23 +255191,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24462] = 7, - ACTIONS(3), 1, + [28829] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2007), 1, + STATE(2054), 1, sym_comment, - STATE(2143), 1, + STATE(2267), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246299,8 +255212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246312,30 +255224,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246344,23 +255261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24539] = 7, - ACTIONS(3), 1, + [28906] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2008), 1, + STATE(2055), 1, sym_comment, - STATE(2144), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1796), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246369,7 +255282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + aux_sym_unquoted_token1, + ACTIONS(1798), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246381,31 +255302,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246414,23 +255328,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24616] = 7, - ACTIONS(3), 1, + [28977] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2009), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2056), 1, sym_comment, - STATE(2145), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2588), 1, + sym_cell_path, + ACTIONS(1839), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246439,7 +255350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + ACTIONS(1841), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246451,31 +255363,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246484,23 +255399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24693] = 7, - ACTIONS(3), 1, + [29056] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2010), 1, + STATE(2057), 1, sym_comment, - STATE(2146), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2332), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246509,7 +255420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + aux_sym_unquoted_token1, + ACTIONS(2334), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246521,31 +255440,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246554,23 +255466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24770] = 7, - ACTIONS(3), 1, + [29127] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2011), 1, + STATE(2058), 1, sym_comment, - STATE(2147), 1, + STATE(2314), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246579,8 +255487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246592,30 +255499,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246624,23 +255536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24847] = 7, - ACTIONS(3), 1, + [29204] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2012), 1, + STATE(2059), 1, sym_comment, - STATE(2149), 1, + STATE(2268), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246649,8 +255557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246662,30 +255569,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246694,23 +255606,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24924] = 7, - ACTIONS(3), 1, + [29281] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2013), 1, + STATE(2060), 1, sym_comment, - STATE(2150), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1021), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246719,7 +255627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + aux_sym_unquoted_token1, + ACTIONS(1023), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246731,31 +255647,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246764,17 +255673,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25001] = 4, - ACTIONS(3), 1, + [29352] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2014), 1, + STATE(2061), 1, sym_comment, - ACTIONS(5121), 17, + ACTIONS(2413), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -246787,7 +255695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5119), 43, + ACTIONS(2415), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -246814,6 +255722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -246831,23 +255740,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25072] = 7, - ACTIONS(3), 1, + [29423] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2015), 1, + STATE(2062), 1, sym_comment, - STATE(2152), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2429), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246856,7 +255761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + aux_sym_unquoted_token1, + ACTIONS(2431), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246868,31 +255781,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246901,23 +255807,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25149] = 7, - ACTIONS(3), 1, + [29494] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2016), 1, + STATE(2063), 1, sym_comment, - STATE(2153), 1, + STATE(2317), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246926,8 +255828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246939,30 +255840,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246971,17 +255877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25226] = 4, - ACTIONS(3), 1, + [29571] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2017), 1, + STATE(2064), 1, sym_comment, - ACTIONS(4886), 17, + ACTIONS(2359), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -246994,7 +255899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4884), 43, + ACTIONS(2361), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -247021,6 +255926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -247038,23 +255944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25297] = 7, - ACTIONS(3), 1, + [29642] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2018), 1, + STATE(2065), 1, sym_comment, - STATE(2301), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2433), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247063,7 +255965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + aux_sym_unquoted_token1, + ACTIONS(2435), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247075,31 +255985,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247108,25 +256011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25374] = 9, - ACTIONS(3), 1, + [29713] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(960), 1, - anon_sym_DOT_DOT2, - ACTIONS(4675), 1, - aux_sym_record_entry_token1, - STATE(2019), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2066), 1, sym_comment, - ACTIONS(962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3168), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3170), 9, + STATE(2326), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5186), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247136,7 +256032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3166), 19, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247147,7 +256043,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247156,41 +256081,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(3172), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [25455] = 4, - ACTIONS(3), 1, + [29790] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2020), 1, + STATE(2067), 1, sym_comment, - ACTIONS(1470), 17, + ACTIONS(1741), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -247203,7 +256103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1472), 43, + ACTIONS(1745), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -247230,6 +256130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -247247,20 +256148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25526] = 4, - ACTIONS(3), 1, + [29861] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2021), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2068), 1, sym_comment, - ACTIONS(1535), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2348), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247269,16 +256169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1537), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247289,23 +256180,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247314,17 +256218,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25597] = 4, - ACTIONS(3), 1, + [29938] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2022), 1, + STATE(2069), 1, sym_comment, - ACTIONS(1608), 17, + ACTIONS(3375), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -247337,7 +256240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1610), 43, + ACTIONS(3373), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -247364,6 +256267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -247381,25 +256285,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25668] = 8, - ACTIONS(3), 1, + [30009] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5121), 1, anon_sym_DOT, - STATE(1956), 1, + STATE(1999), 1, aux_sym_cell_path_repeat1, - STATE(2023), 1, + STATE(2070), 1, sym_comment, - STATE(2202), 1, + STATE(2297), 1, sym_path, - STATE(2497), 1, + STATE(2544), 1, sym_cell_path, - ACTIONS(1780), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1762), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247408,7 +256307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1782), 43, + ACTIONS(1764), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -247421,29 +256320,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247452,25 +256356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25747] = 8, - ACTIONS(3), 1, + [30088] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2024), 1, + STATE(2071), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2503), 1, - sym_cell_path, - ACTIONS(1784), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2383), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247479,8 +256377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1786), 43, + aux_sym_unquoted_token1, + ACTIONS(2385), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247492,29 +256397,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247523,23 +256423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25826] = 7, - ACTIONS(3), 1, + [30159] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2025), 1, + STATE(2072), 1, sym_comment, - STATE(2306), 1, + STATE(2204), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247548,8 +256444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247561,30 +256456,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247593,96 +256493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25903] = 8, - ACTIONS(3), 1, + [30236] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2026), 1, + STATE(2073), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2513), 1, - sym_cell_path, - ACTIONS(1788), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1790), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2311), 16, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [25982] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2027), 1, - sym_comment, - STATE(2202), 1, - sym_path, - STATE(2535), 1, - sym_cell_path, - ACTIONS(1792), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247691,8 +256514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1794), 43, + aux_sym_unquoted_token1, + ACTIONS(2313), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247704,29 +256534,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247735,25 +256560,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26061] = 8, - ACTIONS(3), 1, + [30307] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2028), 1, + STATE(2074), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2538), 1, - sym_cell_path, - ACTIONS(1796), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2437), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247762,8 +256581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1798), 43, + aux_sym_unquoted_token1, + ACTIONS(2439), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247775,29 +256601,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247806,25 +256627,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26140] = 8, - ACTIONS(3), 1, + [30378] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2029), 1, + STATE(2075), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2545), 1, - sym_cell_path, - ACTIONS(1800), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2363), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247833,8 +256648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1802), 43, + aux_sym_unquoted_token1, + ACTIONS(2365), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247846,29 +256668,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247877,25 +256694,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26219] = 8, - ACTIONS(3), 1, + [30449] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2030), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2076), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2506), 1, - sym_cell_path, - ACTIONS(1733), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2205), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247904,9 +256715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1735), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247917,29 +256726,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247948,25 +256764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26298] = 8, - ACTIONS(3), 1, + [30526] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2031), 1, + STATE(2077), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2553), 1, - sym_cell_path, - ACTIONS(1804), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2367), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247975,8 +256785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1806), 43, + aux_sym_unquoted_token1, + ACTIONS(2369), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247988,29 +256805,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248019,25 +256831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26377] = 8, - ACTIONS(3), 1, + [30597] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2032), 1, + STATE(2078), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2560), 1, - sym_cell_path, - ACTIONS(1808), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5131), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248046,8 +256852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1810), 43, + aux_sym_unquoted_token1, + ACTIONS(5129), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248059,29 +256872,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248090,25 +256898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26456] = 8, - ACTIONS(3), 1, + [30668] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2033), 1, + STATE(2079), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2483), 1, - sym_cell_path, - ACTIONS(1812), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5135), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248117,8 +256919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1814), 43, + aux_sym_unquoted_token1, + ACTIONS(5133), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248130,29 +256939,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248161,25 +256965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26535] = 8, - ACTIONS(3), 1, + [30739] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2034), 1, + STATE(2080), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2485), 1, - sym_cell_path, - ACTIONS(1816), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2389), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248188,8 +256986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1818), 43, + aux_sym_unquoted_token1, + ACTIONS(2391), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248201,29 +257006,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248232,25 +257032,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26614] = 8, - ACTIONS(3), 1, + [30810] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2035), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2081), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2487), 1, - sym_cell_path, - ACTIONS(1820), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2269), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248259,9 +257053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1822), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248272,29 +257064,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248303,18 +257102,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26693] = 6, - ACTIONS(3), 1, + [30887] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2036), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2082), 1, sym_comment, - ACTIONS(3168), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3170), 8, + STATE(2336), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248323,32 +257123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3172), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - ACTIONS(3166), 24, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248360,10 +257135,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248372,17 +257172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26768] = 4, - ACTIONS(3), 1, + [30964] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2037), 1, + STATE(2083), 1, sym_comment, - ACTIONS(3545), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5160), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248391,7 +257193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3543), 47, + aux_sym_unquoted_token1, + ACTIONS(5158), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248403,34 +257213,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248439,23 +257239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26839] = 7, - ACTIONS(3), 1, + [31035] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2038), 1, + STATE(2084), 1, sym_comment, - STATE(2307), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5164), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248464,7 +257260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + aux_sym_unquoted_token1, + ACTIONS(5162), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248476,31 +257280,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248509,17 +257306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26916] = 4, - ACTIONS(3), 1, + [31106] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2039), 1, + STATE(2085), 1, sym_comment, - ACTIONS(1744), 17, + ACTIONS(1935), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -248532,7 +257328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1746), 43, + ACTIONS(1941), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -248559,6 +257355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -248576,23 +257373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26987] = 7, - ACTIONS(3), 1, + [31177] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2040), 1, + STATE(2086), 1, sym_comment, - STATE(2309), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5139), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248601,7 +257394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + aux_sym_unquoted_token1, + ACTIONS(5137), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248613,31 +257414,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248646,17 +257440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27064] = 4, - ACTIONS(3), 1, + [31248] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2041), 1, + STATE(2087), 1, sym_comment, - ACTIONS(3447), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5143), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248665,7 +257461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3445), 47, + aux_sym_unquoted_token1, + ACTIONS(5141), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248677,34 +257481,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248713,23 +257507,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27135] = 7, - ACTIONS(3), 1, + [31319] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2042), 1, + STATE(2088), 1, sym_comment, - STATE(2159), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2441), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248738,7 +257528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + aux_sym_unquoted_token1, + ACTIONS(2443), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248750,31 +257548,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248783,17 +257574,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27212] = 4, - ACTIONS(3), 1, + [31390] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2089), 1, sym_comment, - ACTIONS(2226), 17, + ACTIONS(1899), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -248806,7 +257596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2228), 43, + ACTIONS(1901), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -248833,6 +257623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -248850,17 +257641,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27283] = 4, - ACTIONS(3), 1, + [31461] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2044), 1, + STATE(2090), 1, sym_comment, - ACTIONS(1863), 17, + ACTIONS(5097), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -248873,7 +257663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1869), 43, + ACTIONS(5095), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -248900,6 +257690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -248917,19 +257708,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27354] = 4, - ACTIONS(3), 1, + [31532] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2045), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2091), 1, sym_comment, - ACTIONS(1913), 15, - sym__newline, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + STATE(2297), 1, + sym_path, + STATE(2602), 1, + sym_cell_path, + ACTIONS(1770), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248938,7 +257730,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1915), 45, + ACTIONS(1772), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248949,33 +257743,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248984,23 +257779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27425] = 7, - ACTIONS(3), 1, + [31611] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2046), 1, + STATE(2092), 1, sym_comment, - STATE(2165), 1, + STATE(2239), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249009,8 +257800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249022,30 +257812,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249054,20 +257849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27502] = 4, - ACTIONS(3), 1, + [31688] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2047), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2093), 1, sym_comment, - ACTIONS(1871), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2297), 1, + sym_path, + STATE(2619), 1, + sym_cell_path, + ACTIONS(1879), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249076,15 +257871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1877), 43, + ACTIONS(1881), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249096,23 +257884,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249121,17 +257920,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27573] = 4, - ACTIONS(3), 1, + [31767] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2048), 1, + STATE(2094), 1, sym_comment, - ACTIONS(5129), 17, + ACTIONS(1006), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -249144,7 +257942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5127), 43, + ACTIONS(1008), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -249171,6 +257969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -249188,20 +257987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27644] = 4, - ACTIONS(3), 1, + [31838] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2049), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2095), 1, sym_comment, - ACTIONS(1879), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2319), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249210,16 +258008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1885), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249230,23 +258019,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249255,17 +258057,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27715] = 4, - ACTIONS(3), 1, + [31915] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2050), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2096), 1, sym_comment, - ACTIONS(3168), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2627), 1, + sym_cell_path, + ACTIONS(1883), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249274,7 +258079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3172), 47, + ACTIONS(1885), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249286,34 +258092,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249322,17 +258128,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27786] = 4, - ACTIONS(3), 1, + [31994] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2097), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2572), 1, + sym_cell_path, + ACTIONS(1891), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249341,7 +258150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(1893), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249353,34 +258163,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249389,20 +258199,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27857] = 4, - ACTIONS(3), 1, + [32073] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2052), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2098), 1, sym_comment, - ACTIONS(1947), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2321), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249411,16 +258220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1953), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249431,23 +258231,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249456,17 +258269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27928] = 4, - ACTIONS(3), 1, + [32150] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2053), 1, + ACTIONS(5199), 1, + anon_sym_DOT, + STATE(2297), 1, + sym_path, + STATE(2099), 2, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + aux_sym_cell_path_repeat1, + ACTIONS(955), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249475,7 +258288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(957), 49, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249487,34 +258301,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249523,17 +258338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27999] = 4, - ACTIONS(3), 1, + [32225] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2054), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2100), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2591), 1, + sym_cell_path, + ACTIONS(1895), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249542,7 +258360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(1897), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249554,34 +258373,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249590,17 +258409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28070] = 4, - ACTIONS(3), 1, + [32304] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2055), 1, + STATE(2101), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1721), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249609,7 +258430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + aux_sym_unquoted_token1, + ACTIONS(1723), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249621,34 +258450,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249657,17 +258476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28141] = 4, - ACTIONS(3), 1, + [32375] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2102), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1778), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249676,7 +258497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + aux_sym_unquoted_token1, + ACTIONS(1780), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249688,34 +258517,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249724,17 +258543,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28212] = 4, - ACTIONS(3), 1, + [32446] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2057), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2103), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2556), 1, + sym_cell_path, + ACTIONS(1747), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249743,7 +258565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(1749), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249755,34 +258578,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249791,17 +258614,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28283] = 4, - ACTIONS(3), 1, + [32525] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2058), 1, + STATE(2104), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(976), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249810,7 +258628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(978), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249824,32 +258642,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249858,17 +258681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28354] = 4, - ACTIONS(3), 1, + [32596] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2059), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2105), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2206), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249877,8 +258702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249890,33 +258714,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249925,17 +258751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28425] = 4, - ACTIONS(3), 1, + [32673] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2060), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2106), 1, sym_comment, - ACTIONS(3457), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2557), 1, + sym_cell_path, + ACTIONS(1824), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249944,7 +258773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 47, + ACTIONS(1826), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249956,34 +258786,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249992,17 +258822,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28496] = 4, - ACTIONS(3), 1, + [32752] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2061), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2107), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2241), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250011,8 +258843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250024,33 +258855,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250059,17 +258892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28567] = 4, - ACTIONS(3), 1, + [32829] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2108), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2207), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250078,8 +258913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250091,33 +258925,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250126,17 +258962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28638] = 4, - ACTIONS(3), 1, + [32906] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2063), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2109), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2324), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250145,8 +258983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250158,33 +258995,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250193,17 +259032,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28709] = 4, - ACTIONS(3), 1, + [32983] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2110), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2270), 1, + aux_sym_shebang_repeat1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250212,8 +259053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250225,33 +259065,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250260,17 +259102,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28780] = 4, - ACTIONS(3), 1, + [33060] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2065), 1, + STATE(2111), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(962), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250279,7 +259116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 47, + ACTIONS(964), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250293,32 +259130,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250327,22 +259169,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28851] = 6, - ACTIONS(3), 1, + [33131] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_DOT, - STATE(2202), 1, - sym_path, - STATE(2066), 2, + STATE(2112), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(976), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250351,8 +259190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(895), 44, + aux_sym_unquoted_token1, + ACTIONS(978), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250364,30 +259210,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250396,25 +259236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28926] = 8, - ACTIONS(3), 1, + [33202] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5121), 1, anon_sym_DOT, - STATE(1956), 1, + STATE(1999), 1, aux_sym_cell_path_repeat1, - STATE(2067), 1, + STATE(2113), 1, sym_comment, - STATE(2202), 1, + STATE(2297), 1, sym_path, - STATE(2551), 1, + STATE(2560), 1, sym_cell_path, - ACTIONS(1752), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1855), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250423,7 +259258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1754), 43, + ACTIONS(1857), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250436,29 +259271,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250467,17 +259307,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29005] = 4, - ACTIONS(3), 1, + [33281] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2068), 1, + STATE(2114), 1, sym_comment, - ACTIONS(3509), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1569), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250486,7 +259328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3507), 47, + aux_sym_unquoted_token1, + ACTIONS(1571), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250498,34 +259348,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250534,23 +259374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29076] = 7, - ACTIONS(3), 1, + [33352] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2069), 1, + STATE(2115), 1, sym_comment, - STATE(2203), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2271), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250559,7 +259395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, + aux_sym_unquoted_token1, + ACTIONS(2273), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250571,31 +259415,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250604,23 +259441,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29153] = 7, - ACTIONS(3), 1, + [33423] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2070), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2116), 1, sym_comment, - STATE(2210), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2561), 1, + sym_cell_path, + ACTIONS(1796), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250629,7 +259463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, + ACTIONS(1798), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250641,31 +259476,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250674,23 +259512,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29230] = 7, - ACTIONS(3), 1, + [33502] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2071), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2117), 1, sym_comment, - STATE(2225), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2563), 1, + sym_cell_path, + ACTIONS(1808), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250699,7 +259534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, + ACTIONS(1810), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250711,31 +259547,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250744,23 +259583,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29307] = 7, - ACTIONS(3), 1, + [33581] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2072), 1, + STATE(2118), 1, sym_comment, - STATE(2291), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2241), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250769,7 +259604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, + aux_sym_unquoted_token1, + ACTIONS(2243), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250781,31 +259624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250814,23 +259650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29384] = 7, - ACTIONS(3), 1, + [33652] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2073), 1, + STATE(2119), 1, sym_comment, - STATE(2139), 1, + STATE(2244), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250839,8 +259671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250852,30 +259683,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250884,23 +259720,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29461] = 7, - ACTIONS(3), 1, + [33729] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2074), 1, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(2005), 1, + aux_sym_cell_path_repeat1, + STATE(2120), 1, sym_comment, - STATE(2171), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2197), 1, + sym_path, + ACTIONS(951), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250909,8 +259741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(953), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250922,30 +259753,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250954,23 +259790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29538] = 7, - ACTIONS(3), 1, + [33806] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2075), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2121), 1, sym_comment, - STATE(2180), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2567), 1, + sym_cell_path, + ACTIONS(1820), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250979,7 +259812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, + ACTIONS(1822), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250991,31 +259825,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251024,23 +259861,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29615] = 7, - ACTIONS(3), 1, + [33885] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2076), 1, + STATE(2122), 1, sym_comment, - STATE(2199), 1, + STATE(2271), 1, aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7562), 1, sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251049,8 +259882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251062,30 +259894,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251094,23 +259931,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29692] = 7, - ACTIONS(3), 1, + [33962] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2077), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2123), 1, sym_comment, - STATE(2168), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2297), 1, + sym_path, + STATE(2549), 1, + sym_cell_path, + ACTIONS(1871), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251119,7 +259953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + ACTIONS(1873), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251131,31 +259966,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251164,23 +260002,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29769] = 7, - ACTIONS(3), 1, + [34041] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2078), 1, + STATE(2124), 1, sym_comment, - STATE(2234), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1796), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251189,8 +260017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(1798), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251202,30 +260029,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251234,35 +260068,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29846] = 9, - ACTIONS(3), 1, + [34111] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(5189), 1, - aux_sym_unquoted_token5, - STATE(2079), 1, + STATE(2125), 1, sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 10, + ACTIONS(5204), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - ACTIONS(2925), 44, - ts_builtin_sym_end, + ACTIONS(5202), 53, + anon_sym_EQ, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -251302,27 +260121,26 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [29927] = 7, - ACTIONS(3), 1, + [34181] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2080), 1, + STATE(2126), 1, sym_comment, - STATE(2265), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1525), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251331,8 +260149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(1537), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251344,30 +260161,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251376,23 +260200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30004] = 7, - ACTIONS(3), 1, + [34251] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2081), 1, + STATE(2127), 1, sym_comment, - STATE(2138), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2383), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251401,8 +260215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(2385), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251414,30 +260227,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251446,25 +260266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30081] = 8, - ACTIONS(3), 1, + [34321] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2082), 1, + STATE(2128), 1, sym_comment, - STATE(2112), 1, - sym_cell_path, - STATE(2202), 1, - sym_path, - ACTIONS(883), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2344), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251473,9 +260281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(885), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2346), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251486,29 +260292,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251517,23 +260332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30160] = 7, - ACTIONS(3), 1, + [34391] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2083), 1, + STATE(2129), 1, sym_comment, - STATE(2288), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2326), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251542,8 +260347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(2328), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251555,30 +260359,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251587,17 +260398,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30237] = 4, - ACTIONS(3), 1, + [34461] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2084), 1, + STATE(2130), 1, sym_comment, - ACTIONS(2273), 13, + ACTIONS(976), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(978), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [34531] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2131), 1, + sym_comment, + ACTIONS(1879), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251606,8 +260479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2275), 47, - sym__newline, + ACTIONS(1881), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251619,33 +260491,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251654,23 +260530,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30308] = 7, - ACTIONS(3), 1, + [34601] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2085), 1, + STATE(2132), 1, sym_comment, - STATE(2300), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5218), 13, + ACTIONS(5208), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5206), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [34671] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2133), 1, + sym_comment, + ACTIONS(1741), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251679,8 +260611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(1745), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251692,30 +260623,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251724,17 +260662,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30385] = 4, - ACTIONS(3), 1, + [34741] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2086), 1, + STATE(2134), 1, sym_comment, - ACTIONS(2073), 13, + ACTIONS(5212), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5210), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [34811] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2135), 1, + sym_comment, + ACTIONS(2332), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251743,8 +260743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2075), 47, - sym__newline, + ACTIONS(2334), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251756,33 +260755,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251791,23 +260794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30456] = 7, - ACTIONS(3), 1, + [34881] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2087), 1, + STATE(2136), 1, sym_comment, - STATE(2172), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2363), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251816,8 +260809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(2365), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251829,30 +260821,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251861,25 +260860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30533] = 8, - ACTIONS(3), 1, + [34951] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2088), 1, + STATE(2137), 1, sym_comment, - STATE(2202), 1, - sym_path, - STATE(2550), 1, - sym_cell_path, - ACTIONS(1740), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2389), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251888,9 +260875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1742), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2391), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251901,29 +260886,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251932,17 +260926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30612] = 4, - ACTIONS(3), 1, + [35021] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2089), 1, + STATE(2138), 1, sym_comment, - ACTIONS(2204), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2367), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251951,8 +260941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2206), 47, - sym__newline, + ACTIONS(2369), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251964,55 +260953,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30683] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2090), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35091] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2139), 1, sym_comment, - ACTIONS(5113), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3261), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252021,16 +261011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5111), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(3259), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252041,23 +261022,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252066,23 +261060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30754] = 7, - ACTIONS(3), 1, + [35165] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2091), 1, + ACTIONS(5214), 1, + anon_sym_QMARK2, + STATE(2140), 1, sym_comment, - STATE(2173), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(980), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252091,7 +261076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + ACTIONS(982), 50, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252103,31 +261089,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252136,17 +261127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30831] = 4, - ACTIONS(3), 1, + [35237] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2092), 1, + ACTIONS(5216), 1, + anon_sym_QMARK2, + STATE(2141), 1, sym_comment, - ACTIONS(1744), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(970), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252155,8 +261144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1746), 47, - sym__newline, + ACTIONS(972), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252168,33 +261156,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252203,222 +261194,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30902] = 4, - ACTIONS(3), 1, + [35309] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2093), 1, + STATE(2142), 1, sym_comment, - ACTIONS(3514), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3511), 43, - ts_builtin_sym_end, + ACTIONS(5220), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5218), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_GT, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30973] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2094), 1, - sym_comment, - STATE(2122), 1, - sym_cell_path, - STATE(2202), 1, - sym_path, - ACTIONS(1545), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1549), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31052] = 4, - ACTIONS(3), 1, + [35379] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2095), 1, + ACTIONS(1015), 1, + anon_sym_DOT_DOT2, + STATE(2143), 1, sym_comment, - ACTIONS(1733), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1735), 47, + ACTIONS(1017), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1006), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31123] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2096), 1, - sym_comment, - ACTIONS(2248), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252427,8 +261280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2250), 47, - sym__newline, + ACTIONS(1008), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252440,33 +261292,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252475,20 +261328,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31194] = 4, - ACTIONS(3), 1, + [35453] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2097), 1, + STATE(2144), 1, sym_comment, - ACTIONS(1959), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(966), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252497,15 +261342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1961), 43, + ACTIONS(968), 51, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252517,23 +261355,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252542,25 +261394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31265] = 9, - ACTIONS(3), 1, + [35523] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(960), 1, - anon_sym_DOT_DOT2, - ACTIONS(964), 1, - aux_sym_record_entry_token1, - STATE(2098), 1, + STATE(2145), 1, sym_comment, - ACTIONS(962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3168), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3170), 9, + ACTIONS(1855), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252570,7 +261409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3166), 19, + ACTIONS(1857), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252581,7 +261420,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252590,47 +261460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(3172), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [31346] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2099), 1, + [35593] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2146), 1, sym_comment, - STATE(2177), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(962), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252639,7 +261474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + ACTIONS(964), 51, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252651,31 +261487,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252684,23 +261526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31423] = 7, - ACTIONS(3), 1, + [35663] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2100), 1, + STATE(2147), 1, sym_comment, - STATE(2205), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2348), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252709,8 +261541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(2350), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252722,30 +261553,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252754,90 +261592,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31500] = 4, - ACTIONS(3), 1, + [35733] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2101), 1, + STATE(2148), 1, sym_comment, - ACTIONS(5107), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5105), 43, - ts_builtin_sym_end, + ACTIONS(962), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(964), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_GT, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31571] = 7, - ACTIONS(3), 1, + [35803] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2102), 1, + STATE(2149), 1, sym_comment, - STATE(2213), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, + STATE(7887), 1, sym__expr_parenthesized_immediate, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3265), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252846,8 +261677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(3263), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252859,30 +261689,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252891,17 +261726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31648] = 4, - ACTIONS(3), 1, + [35877] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2103), 1, + STATE(2150), 1, sym_comment, - ACTIONS(2226), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1899), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252910,8 +261741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2228), 47, - sym__newline, + ACTIONS(1901), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252923,33 +261753,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252958,20 +261792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31719] = 4, - ACTIONS(3), 1, + [35947] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5222), 1, + anon_sym_QMARK2, + STATE(2151), 1, sym_comment, - ACTIONS(5117), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(970), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252980,15 +261808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5115), 43, + ACTIONS(972), 50, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253000,23 +261821,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253025,23 +261859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31790] = 7, + [36019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2105), 1, + STATE(2152), 1, sym_comment, - STATE(2151), 1, - aux_sym_shebang_repeat1, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2131), 17, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253050,7 +261873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + ACTIONS(2133), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253063,49 +261895,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31867] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2106), 1, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [36089] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2153), 1, sym_comment, - ACTIONS(912), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3211), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253114,9 +261944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(914), 46, - ts_builtin_sym_end, - sym__newline, + ACTIONS(3209), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253127,32 +261955,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253161,17 +261993,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31937] = 6, - ACTIONS(121), 1, + [36163] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(2107), 1, - sym_comment, - ACTIONS(950), 13, + ACTIONS(1015), 1, + anon_sym_DOT_DOT2, + ACTIONS(5224), 1, sym__newline, + STATE(2154), 1, + sym_comment, + ACTIONS(1017), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5231), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5227), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253183,44 +262026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(948), 44, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253229,22 +262034,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32011] = 5, - ACTIONS(3), 1, + ACTIONS(5229), 28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [36241] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5220), 1, - anon_sym_QMARK2, - STATE(2108), 1, + STATE(2155), 1, sym_comment, - ACTIONS(900), 7, + ACTIONS(5235), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(902), 51, + ACTIONS(5233), 53, anon_sym_EQ, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -253284,34 +262115,166 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_DOT, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [32083] = 5, - ACTIONS(3), 1, + [36311] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5222), 1, + STATE(2156), 1, + sym_comment, + ACTIONS(1835), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1837), 50, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36381] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5237), 1, anon_sym_QMARK2, - STATE(2109), 1, + STATE(2157), 1, + sym_comment, + ACTIONS(980), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(982), 49, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36453] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2158), 1, sym_comment, - ACTIONS(906), 7, + ACTIONS(966), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(908), 51, + ACTIONS(968), 53, anon_sym_EQ, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -253351,32 +262314,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_DOT, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [32155] = 4, - ACTIONS(3), 1, + [36523] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2110), 1, + ACTIONS(4827), 1, + anon_sym_DOT_DOT2, + STATE(2159), 1, + sym_comment, + ACTIONS(4829), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3175), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3173), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(3177), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [36599] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2160), 1, sym_comment, - ACTIONS(5226), 6, + STATE(2275), 1, + aux_sym_cell_path_repeat1, + STATE(2568), 1, + sym_path, + STATE(2653), 1, + sym_cell_path, + ACTIONS(945), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5224), 53, - anon_sym_EQ, + ACTIONS(947), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -253416,34 +262457,26 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [32225] = 6, + [36677] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5228), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5230), 1, - aux_sym_unquoted_token2, - STATE(2111), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(2161), 1, sym_comment, - ACTIONS(2927), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2097), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253452,8 +262485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2925), 44, - ts_builtin_sym_end, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2101), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253465,30 +262505,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [36751] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2099), 1, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(2162), 1, + sym_comment, + ACTIONS(2105), 16, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253497,18 +262561,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32299] = 4, - ACTIONS(3), 1, + ACTIONS(2107), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [36825] = 39, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2112), 1, + ACTIONS(469), 1, + anon_sym_LBRACK, + ACTIONS(471), 1, + anon_sym_LPAREN, + ACTIONS(475), 1, + anon_sym_DOLLAR, + ACTIONS(477), 1, + anon_sym_DASH, + ACTIONS(487), 1, + aux_sym_ctrl_match_token1, + ACTIONS(493), 1, + aux_sym_expr_unary_token1, + ACTIONS(495), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(497), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(499), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(501), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(505), 1, + anon_sym_0b, + ACTIONS(509), 1, + sym_val_date, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(515), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(517), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5243), 1, + anon_sym_null, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(5247), 1, + anon_sym_DOT_DOT, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(1851), 1, + sym__str_double_quotes, + STATE(2137), 1, + sym__val_number, + STATE(2163), 1, sym_comment, - ACTIONS(936), 14, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + STATE(2384), 1, + sym__expr_unary_minus, + STATE(2465), 1, + sym__inter_single_quotes, + STATE(2466), 1, + sym__inter_double_quotes, + STATE(3699), 1, + sym__val_number_decimal, + STATE(3740), 1, + sym_val_variable, + STATE(3746), 1, + sym_expr_parenthesized, + STATE(4007), 1, + sym__expr_binary_expression_parenthesized, + STATE(4041), 1, + sym_val_range, + STATE(6640), 1, + sym__expression_parenthesized, + ACTIONS(507), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(513), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5241), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5249), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2425), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(503), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2431), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [36965] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2164), 1, + sym_comment, + ACTIONS(2336), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253517,9 +262719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(938), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2338), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253530,31 +262730,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253563,25 +262770,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32369] = 9, + [37035] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(960), 1, - anon_sym_DOT_DOT2, - ACTIONS(5232), 1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(2165), 1, + sym_comment, + ACTIONS(2089), 16, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2093), 41, sym__newline, - STATE(2113), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [37109] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2166), 1, sym_comment, - ACTIONS(962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5237), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5241), 8, + ACTIONS(2352), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253590,7 +262853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5235), 19, + ACTIONS(2354), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253602,6 +262865,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253610,113 +262904,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5239), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [32449] = 4, - ACTIONS(3), 1, + [37179] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2114), 1, + STATE(2167), 1, sym_comment, - ACTIONS(920), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(922), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2371), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2373), 50, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_GT, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [32519] = 8, - ACTIONS(3), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37249] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4763), 1, - anon_sym_DOT_DOT2, - STATE(2115), 1, + STATE(2168), 1, sym_comment, - ACTIONS(4765), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3168), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3170), 8, + ACTIONS(976), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253725,7 +262984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3166), 20, + ACTIONS(978), 51, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253738,6 +262997,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_ctrl_match_token1, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253746,41 +263036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(3172), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [32597] = 4, - ACTIONS(3), 1, + [37319] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2116), 1, + STATE(2169), 1, sym_comment, - ACTIONS(916), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2379), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253789,9 +263051,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(918), 46, - ts_builtin_sym_end, + ACTIONS(2381), 50, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37389] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2170), 1, + sym_comment, + ACTIONS(2340), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2342), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253802,32 +263128,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37459] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2171), 1, + sym_comment, + ACTIONS(1839), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1841), 50, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37529] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2172), 1, + sym_comment, + ACTIONS(1747), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1749), 50, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37599] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2173), 1, + sym_comment, + ACTIONS(2359), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2361), 50, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253836,12 +263366,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32667] = 4, - ACTIONS(121), 1, + [37669] = 39, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(469), 1, + anon_sym_LBRACK, + ACTIONS(471), 1, + anon_sym_LPAREN, + ACTIONS(475), 1, + anon_sym_DOLLAR, + ACTIONS(477), 1, + anon_sym_DASH, + ACTIONS(487), 1, + aux_sym_ctrl_match_token1, + ACTIONS(493), 1, + aux_sym_expr_unary_token1, + ACTIONS(495), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(497), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(499), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(501), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(505), 1, + anon_sym_0b, + ACTIONS(509), 1, + sym_val_date, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(515), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(517), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5243), 1, + anon_sym_null, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(5247), 1, + anon_sym_DOT_DOT, + STATE(1851), 1, + sym__str_double_quotes, + STATE(2137), 1, + sym__val_number, + STATE(2163), 1, + aux_sym_shebang_repeat1, + STATE(2174), 1, + sym_comment, + STATE(2384), 1, + sym__expr_unary_minus, + STATE(2465), 1, + sym__inter_single_quotes, + STATE(2466), 1, + sym__inter_double_quotes, + STATE(3699), 1, + sym__val_number_decimal, + STATE(3740), 1, + sym_val_variable, + STATE(3746), 1, + sym_expr_parenthesized, + STATE(4007), 1, + sym__expr_binary_expression_parenthesized, + STATE(4041), 1, + sym_val_range, + STATE(6783), 1, + sym__expression_parenthesized, + ACTIONS(507), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(513), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5241), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5249), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2425), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(503), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2431), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [37809] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2117), 1, + ACTIONS(4827), 1, + anon_sym_DOT_DOT2, + STATE(2175), 1, sym_comment, - ACTIONS(2075), 14, + ACTIONS(4829), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1006), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1008), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253853,46 +263499,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2073), 45, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253901,29 +263535,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token7, - [32737] = 8, - ACTIONS(3), 1, + [37883] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5243), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2118), 1, + STATE(2176), 1, sym_comment, - STATE(2276), 1, - sym_path, - STATE(2303), 1, + STATE(2275), 1, aux_sym_cell_path_repeat1, - STATE(2585), 1, + STATE(2568), 1, + sym_path, + STATE(2649), 1, sym_cell_path, - ACTIONS(883), 7, + ACTIONS(1599), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(885), 48, + ACTIONS(1603), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -253965,29 +263597,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [32815] = 6, - ACTIONS(3), 1, + [37961] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4763), 1, - anon_sym_DOT_DOT2, - STATE(2119), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2177), 1, sym_comment, - ACTIONS(4765), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(948), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3207), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253996,9 +263624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(950), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(3205), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254009,29 +263635,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254040,85 +263673,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32889] = 4, + [38035] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2120), 1, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(2178), 1, sym_comment, - ACTIONS(5247), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5245), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1006), 16, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(1008), 41, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [32959] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [38109] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5249), 1, - anon_sym_QMARK2, - STATE(2121), 1, + STATE(2179), 1, sym_comment, - ACTIONS(900), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1982), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254127,7 +263756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(902), 45, + ACTIONS(1984), 50, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254140,31 +263769,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254173,18 +263807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33031] = 4, - ACTIONS(3), 1, + [38179] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2122), 1, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + STATE(2180), 1, sym_comment, - ACTIONS(1913), 14, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + ACTIONS(1525), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254193,8 +263823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1915), 45, - ts_builtin_sym_end, + ACTIONS(1537), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254206,31 +263835,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254239,120 +263873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33101] = 39, - ACTIONS(3), 1, + [38250] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(968), 1, - anon_sym_DOLLAR, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(5253), 1, - anon_sym_DOT_DOT, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(2123), 1, + STATE(2181), 1, sym_comment, - STATE(2134), 1, + STATE(2223), 1, aux_sym_shebang_repeat1, - STATE(3644), 1, - sym__val_number_decimal, - STATE(3693), 1, - sym_val_variable, - STATE(3701), 1, - sym_expr_parenthesized, - STATE(3951), 1, - sym__expr_binary_expression_parenthesized, - STATE(4035), 1, - sym_val_range, - STATE(6656), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(435), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5255), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2352), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(431), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1906), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [33241] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_QMARK2, - STATE(2124), 1, - sym_comment, - ACTIONS(906), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254361,9 +263890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(908), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254374,31 +263901,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254407,17 +263939,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33313] = 6, - ACTIONS(121), 1, + [38321] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(2125), 1, + STATE(2182), 1, sym_comment, - ACTIONS(2159), 13, + STATE(2227), 1, + aux_sym_shebang_repeat1, + ACTIONS(5190), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254429,36 +263968,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2155), 44, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38392] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2183), 1, + sym_comment, + STATE(2230), 1, + aux_sym_shebang_repeat1, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254467,6 +264022,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254475,17 +264071,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33387] = 6, - ACTIONS(121), 1, + [38463] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(2126), 1, + STATE(2184), 1, sym_comment, - ACTIONS(2165), 13, + STATE(2232), 1, + aux_sym_shebang_repeat1, + ACTIONS(5190), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254497,36 +264100,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2163), 44, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38534] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2185), 1, + sym_comment, + STATE(2234), 1, + aux_sym_shebang_repeat1, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254535,6 +264154,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254543,17 +264203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33461] = 4, - ACTIONS(3), 1, + [38605] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2127), 1, + STATE(2186), 1, sym_comment, - ACTIONS(920), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2237), 1, + aux_sym_shebang_repeat1, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254562,9 +264220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(922), 46, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254575,32 +264231,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254609,153 +264269,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33531] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5243), 1, - anon_sym_DOT, - STATE(2128), 1, - sym_comment, - STATE(2276), 1, - sym_path, - STATE(2303), 1, - aux_sym_cell_path_repeat1, - STATE(2615), 1, - sym_cell_path, - ACTIONS(1545), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1549), 48, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [33609] = 4, - ACTIONS(3), 1, + [38676] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2129), 1, + STATE(2187), 1, sym_comment, - ACTIONS(5261), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5259), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2239), 1, + aux_sym_shebang_repeat1, + ACTIONS(5190), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_GT, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [33679] = 5, - ACTIONS(121), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38747] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3241), 1, - anon_sym_LPAREN2, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, - STATE(2130), 1, + STATE(2188), 1, sym_comment, - ACTIONS(3239), 57, + STATE(2241), 1, + aux_sym_shebang_repeat1, + ACTIONS(5190), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254767,35 +264364,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38818] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2189), 1, + sym_comment, + STATE(2244), 1, + aux_sym_shebang_repeat1, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254804,6 +264418,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5192), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254812,295 +264467,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33751] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2131), 1, - sym_comment, - ACTIONS(5267), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5265), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + [38889] = 38, + ACTIONS(159), 1, anon_sym_LBRACK, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(391), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, + ACTIONS(393), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(441), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [33821] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5269), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5271), 1, - aux_sym__immediate_decimal_token2, - STATE(2132), 1, - sym_comment, - ACTIONS(1368), 13, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, + ACTIONS(3245), 1, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3425), 1, + aux_sym_expr_unary_token1, + ACTIONS(3427), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3429), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3431), 1, aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, + ACTIONS(3433), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5251), 1, + aux_sym_ctrl_match_token1, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1969), 1, + sym__str_double_quotes, + STATE(2190), 1, + sym_comment, + STATE(2278), 1, + sym__val_number, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4055), 1, + sym__expr_binary_expression, + STATE(7195), 1, + sym_block, + STATE(7213), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(443), 2, sym__str_single_quotes, sym__str_back_ticks, - [33895] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2133), 1, - sym_comment, - ACTIONS(912), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(914), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(439), 6, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [33965] = 39, - ACTIONS(3), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [39026] = 38, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(159), 1, + ACTIONS(3443), 1, anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, + ACTIONS(3449), 1, + anon_sym_DASH, + ACTIONS(3455), 1, aux_sym_expr_unary_token1, - ACTIONS(229), 1, + ACTIONS(3469), 1, anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, + ACTIONS(3475), 1, + anon_sym_DQUOTE, + ACTIONS(3479), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(3481), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, + ACTIONS(5255), 1, + anon_sym_null, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(423), 1, + ACTIONS(5259), 1, + anon_sym_DOLLAR, + ACTIONS(5261), 1, + aux_sym_ctrl_match_token1, + ACTIONS(5263), 1, + anon_sym_DOT_DOT, + ACTIONS(5267), 1, aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, + ACTIONS(5269), 1, aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, + ACTIONS(5271), 1, aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(968), 1, - anon_sym_DOLLAR, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(5253), 1, - anon_sym_DOT_DOT, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, + ACTIONS(5273), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5275), 1, + sym_val_date, + STATE(762), 1, + sym__val_number_decimal, + STATE(828), 1, + sym_expr_parenthesized, + STATE(941), 1, + sym_val_variable, + STATE(1126), 1, sym__str_double_quotes, - STATE(1934), 1, + STATE(1140), 1, + sym__val_number, + STATE(1152), 1, sym__inter_single_quotes, - STATE(1935), 1, + STATE(1153), 1, sym__inter_double_quotes, - STATE(2037), 1, + STATE(1154), 1, sym__expr_unary_minus, - STATE(2134), 1, + STATE(2191), 1, sym_comment, - STATE(3644), 1, - sym__val_number_decimal, - STATE(3693), 1, - sym_val_variable, - STATE(3701), 1, - sym_expr_parenthesized, - STATE(3951), 1, - sym__expr_binary_expression_parenthesized, - STATE(4035), 1, + STATE(3107), 1, sym_val_range, - STATE(6487), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, + STATE(3110), 1, + sym_block, + STATE(3112), 1, + sym__expression, + STATE(4056), 1, + sym__expr_binary_expression, + ACTIONS(3471), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(435), 2, + ACTIONS(3477), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3183), 2, + ACTIONS(5253), 2, anon_sym_true, anon_sym_false, - ACTIONS(5255), 2, + ACTIONS(5265), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2352), 3, + STATE(1159), 3, sym_expr_unary, - sym_expr_binary_parenthesized, + sym_expr_binary, sym__value, - ACTIONS(431), 6, + ACTIONS(3467), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1906), 12, + STATE(1145), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -255113,17 +264665,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34105] = 6, - ACTIONS(121), 1, + [39163] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5277), 1, + sym__newline, + STATE(2192), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1755), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1757), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [39234] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2079), 1, + ACTIONS(2091), 1, anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(2135), 1, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(2193), 1, sym_comment, - ACTIONS(2081), 13, + ACTIONS(2089), 17, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2093), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255135,36 +264770,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2077), 44, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [39307] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(2194), 1, + sym_comment, + ACTIONS(1006), 17, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255181,151 +264825,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34179] = 4, + ACTIONS(1008), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [39380] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2136), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(2195), 1, sym_comment, - ACTIONS(5275), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5273), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2097), 17, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2101), 39, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [34249] = 4, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [39453] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2137), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(2196), 1, sym_comment, - ACTIONS(916), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(918), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2105), 17, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2107), 39, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [34319] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [39526] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2138), 1, + STATE(2197), 1, sym_comment, - STATE(2154), 1, - aux_sym_shebang_repeat1, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(994), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255334,8 +265014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(996), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255347,30 +265026,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255379,19 +265064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34390] = 5, - ACTIONS(3), 1, + [39595] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(2198), 1, sym_comment, - STATE(2154), 1, - aux_sym_shebang_repeat1, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(986), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255400,8 +265079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(988), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255413,30 +265091,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255445,19 +265129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34461] = 5, - ACTIONS(3), 1, + [39664] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2140), 1, + STATE(2199), 1, sym_comment, - STATE(2154), 1, - aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(990), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255466,8 +265144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(992), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255479,30 +265156,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255511,19 +265194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34532] = 5, - ACTIONS(3), 1, + [39733] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2141), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2200), 1, + sym_comment, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255532,8 +265211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5282), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255545,30 +265223,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255577,19 +265260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34603] = 5, - ACTIONS(3), 1, + [39804] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2142), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2201), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255598,8 +265277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255611,30 +265289,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255643,19 +265326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34674] = 5, - ACTIONS(3), 1, + [39875] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2143), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2202), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255664,8 +265343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255677,30 +265355,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255709,19 +265392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34745] = 5, + [39946] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2144), 1, + STATE(2203), 1, sym_comment, - STATE(2154), 1, - aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2131), 17, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255730,8 +265406,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + ACTIONS(2133), 41, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [40015] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2204), 1, + sym_comment, + ACTIONS(5284), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255743,30 +265486,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255775,19 +265523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34816] = 5, - ACTIONS(3), 1, + [40086] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2145), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2205), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255796,8 +265540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255809,30 +265552,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255841,19 +265589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34887] = 5, - ACTIONS(3), 1, + [40157] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2146), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2206), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255862,8 +265606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255875,30 +265618,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255907,19 +265655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34958] = 5, - ACTIONS(3), 1, + [40228] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2147), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2207), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255928,8 +265672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255941,30 +265684,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255973,19 +265721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35029] = 5, - ACTIONS(3), 1, + [40299] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2148), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5287), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2208), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255994,8 +265738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256007,30 +265750,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256039,19 +265787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35100] = 5, - ACTIONS(3), 1, + [40370] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2149), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2209), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256060,8 +265804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256073,30 +265816,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256105,19 +265853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35171] = 5, - ACTIONS(3), 1, + [40441] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2150), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2210), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256126,8 +265870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256139,30 +265882,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256171,19 +265919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35242] = 5, - ACTIONS(3), 1, + [40512] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2151), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2211), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256192,8 +265936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256205,30 +265948,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256237,19 +265985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35313] = 5, - ACTIONS(3), 1, + [40583] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2152), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2212), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256258,8 +266002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256271,30 +266014,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256303,19 +266051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35384] = 5, - ACTIONS(3), 1, + [40654] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2153), 1, - sym_comment, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5283), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2213), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256324,8 +266068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5281), 44, - sym__newline, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256337,30 +266080,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256369,20 +266117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35455] = 5, - ACTIONS(3), 1, + [40725] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2154), 2, - sym_comment, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(1856), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2214), 1, + sym_comment, + ACTIONS(5284), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256391,7 +266134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1858), 43, + ACTIONS(5286), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256403,30 +266146,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256435,85 +266183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35526] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5292), 1, - aux_sym__immediate_decimal_token2, - STATE(2155), 1, - sym_comment, - ACTIONS(1376), 13, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [35597] = 5, - ACTIONS(3), 1, + [40796] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2156), 1, - sym_comment, - STATE(2222), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2215), 1, + sym_comment, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256522,8 +266200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5290), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256535,30 +266212,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256567,17 +266249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35668] = 4, - ACTIONS(3), 1, + [40867] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2157), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2216), 1, sym_comment, - ACTIONS(924), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5292), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256586,9 +266266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(926), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256599,31 +266277,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256632,17 +266315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35737] = 4, - ACTIONS(3), 1, + [40938] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2158), 1, + STATE(2217), 1, sym_comment, - ACTIONS(932), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2259), 1, + aux_sym_shebang_repeat1, + ACTIONS(5296), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256651,9 +266332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(934), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5298), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256664,31 +266343,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256697,19 +266381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35806] = 5, - ACTIONS(3), 1, + [41009] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2159), 1, + STATE(2218), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2260), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256718,8 +266398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256731,30 +266410,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256763,15 +266447,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35877] = 5, - ACTIONS(121), 1, + [41080] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token37, - STATE(2160), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2219), 1, sym_comment, - ACTIONS(2075), 26, + ACTIONS(5292), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256783,12 +266476,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256797,30 +266513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2073), 31, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + [41151] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2220), 1, + sym_comment, + STATE(2261), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256829,15 +266530,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [35948] = 5, - ACTIONS(121), 1, + ACTIONS(5180), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [41222] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token37, - STATE(2161), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2221), 1, sym_comment, - ACTIONS(2081), 26, + ACTIONS(5292), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256849,12 +266608,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256863,30 +266645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2077), 31, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + [41293] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2222), 1, + sym_comment, + STATE(2262), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256895,15 +266662,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [36019] = 5, - ACTIONS(121), 1, + ACTIONS(5180), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [41364] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token37, - STATE(2162), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2223), 1, sym_comment, - ACTIONS(1441), 26, + ACTIONS(5292), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256915,12 +266740,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256929,30 +266777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(1429), 31, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + [41435] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2224), 1, + sym_comment, + STATE(2263), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256961,19 +266794,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [36090] = 5, - ACTIONS(3), 1, + ACTIONS(5180), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [41506] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2163), 1, - sym_comment, - STATE(2248), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2225), 1, + sym_comment, + ACTIONS(5292), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256982,8 +266860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256995,30 +266872,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257027,19 +266909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36161] = 5, - ACTIONS(3), 1, + [41577] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(2226), 1, sym_comment, - STATE(2270), 1, + STATE(2264), 1, aux_sym_shebang_repeat1, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257048,8 +266926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257061,30 +266938,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257093,19 +266975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36232] = 5, - ACTIONS(3), 1, + [41648] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2165), 1, + STATE(2227), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5292), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257114,8 +266992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257127,30 +267004,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257159,21 +267041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36303] = 6, - ACTIONS(3), 1, + [41719] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2166), 1, + STATE(2228), 1, sym_comment, - STATE(7895), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - ACTIONS(3233), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257182,7 +267059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3231), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -257195,29 +267072,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257226,19 +267108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36376] = 5, - ACTIONS(3), 1, + [41792] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2167), 1, + STATE(2229), 1, sym_comment, - ACTIONS(5300), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2265), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257247,8 +267125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257260,30 +267137,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257292,19 +267174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36447] = 5, - ACTIONS(3), 1, + [41863] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2168), 1, + STATE(2230), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5292), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257313,8 +267191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257326,30 +267203,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257358,84 +267240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36518] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2169), 1, - sym_comment, - ACTIONS(2927), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2925), 52, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [36587] = 5, - ACTIONS(3), 1, + [41934] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2170), 1, + STATE(2231), 1, sym_comment, - STATE(2307), 1, + STATE(2266), 1, aux_sym_shebang_repeat1, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257444,8 +267257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257457,30 +267269,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257489,19 +267306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36658] = 5, - ACTIONS(3), 1, + [42005] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2171), 1, + STATE(2232), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5292), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257510,8 +267323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257523,30 +267335,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257555,19 +267372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36729] = 5, - ACTIONS(3), 1, + [42076] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2172), 1, + STATE(2233), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2267), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257576,8 +267389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257589,30 +267401,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257621,19 +267438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36800] = 5, - ACTIONS(3), 1, + [42147] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2173), 1, + STATE(2234), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5292), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257642,8 +267455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257655,30 +267467,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257687,19 +267504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36871] = 5, - ACTIONS(3), 1, + [42218] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2174), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2235), 1, sym_comment, - STATE(2309), 1, - aux_sym_shebang_repeat1, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(7586), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257708,7 +267522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + ACTIONS(3199), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257720,31 +267535,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257753,57 +267571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36942] = 6, - ACTIONS(121), 1, + [42291] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(2175), 1, + STATE(2236), 1, sym_comment, - ACTIONS(2159), 12, - ts_builtin_sym_end, + STATE(2268), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2155), 44, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257812,26 +267588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [37015] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(2176), 1, - sym_comment, - ACTIONS(2165), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257842,43 +267599,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2163), 44, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257887,19 +267637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37088] = 5, - ACTIONS(3), 1, + [42362] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2177), 1, + STATE(2237), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5292), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257908,8 +267654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257921,30 +267666,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257953,18 +267703,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37159] = 5, - ACTIONS(121), 1, + [42433] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5302), 1, - aux_sym_unquoted_token3, - STATE(2178), 1, + STATE(2238), 1, sym_comment, - ACTIONS(3241), 2, - ts_builtin_sym_end, - anon_sym_LPAREN2, - ACTIONS(3239), 55, + STATE(2269), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257975,42 +267731,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258019,21 +267769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37230] = 6, - ACTIONS(3), 1, + [42504] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2179), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2239), 1, sym_comment, - STATE(7593), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5292), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258042,9 +267786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258055,29 +267797,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258086,19 +267835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37303] = 5, - ACTIONS(3), 1, + [42575] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2180), 1, + STATE(2240), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2270), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258107,8 +267852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258120,30 +267864,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258152,21 +267901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37374] = 6, - ACTIONS(3), 1, + [42646] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2181), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2241), 1, sym_comment, - STATE(7593), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5292), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258175,9 +267918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258188,29 +267929,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258219,21 +267967,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37447] = 6, - ACTIONS(3), 1, + [42717] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2182), 1, + STATE(2242), 1, sym_comment, - STATE(7593), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258242,7 +267985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258255,29 +267998,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258286,21 +268034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37520] = 6, - ACTIONS(3), 1, + [42790] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2183), 1, + STATE(2243), 1, sym_comment, - STATE(7593), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2271), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258309,9 +268051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258322,29 +268062,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258353,19 +268100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37593] = 5, - ACTIONS(3), 1, + [42861] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5304), 1, - aux_sym_cmd_identifier_token41, - STATE(2184), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2244), 1, sym_comment, - ACTIONS(2155), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5292), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258374,8 +268117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2159), 44, - sym__newline, + ACTIONS(5294), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258387,30 +268129,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258419,19 +268166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37664] = 5, - ACTIONS(3), 1, + [42932] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5304), 1, - aux_sym_cmd_identifier_token41, - STATE(2185), 1, + STATE(2245), 1, sym_comment, - ACTIONS(2163), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2272), 1, + aux_sym_shebang_repeat1, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258440,8 +268183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2165), 44, - sym__newline, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258453,30 +268195,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258485,21 +268232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37735] = 6, - ACTIONS(3), 1, + [43003] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2186), 1, + STATE(2246), 1, sym_comment, - STATE(7593), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258508,7 +268250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258521,29 +268263,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258552,21 +268299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37808] = 6, - ACTIONS(3), 1, + [43076] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2187), 1, + STATE(2247), 1, sym_comment, - STATE(7593), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258575,7 +268317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258588,29 +268330,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258619,19 +268366,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37881] = 4, - ACTIONS(3), 1, + [43149] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2188), 1, + ACTIONS(5300), 1, + anon_sym_DOT, + ACTIONS(5302), 1, + aux_sym__immediate_decimal_token2, + STATE(2248), 1, sym_comment, - ACTIONS(3239), 6, + ACTIONS(1473), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(3241), 52, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1475), 46, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -258668,104 +268423,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [37950] = 6, - ACTIONS(3), 1, + [43222] = 38, + ACTIONS(159), 1, + anon_sym_LBRACK, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2189), 1, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3425), 1, + aux_sym_expr_unary_token1, + ACTIONS(3427), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3429), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3431), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3433), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5251), 1, + aux_sym_ctrl_match_token1, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1969), 1, + sym__str_double_quotes, + STATE(2249), 1, sym_comment, - STATE(7593), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + STATE(2278), 1, + sym__val_number, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4055), 1, + sym__expr_binary_expression, + STATE(7196), 1, + sym_block, + STATE(7204), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(443), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(439), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [43359] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3443), 1, + anon_sym_LBRACK, + ACTIONS(3449), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38023] = 6, - ACTIONS(3), 1, + ACTIONS(3455), 1, + aux_sym_expr_unary_token1, + ACTIONS(3469), 1, + anon_sym_0b, + ACTIONS(3475), 1, + anon_sym_DQUOTE, + ACTIONS(3479), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3481), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5255), 1, + anon_sym_null, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5259), 1, + anon_sym_DOLLAR, + ACTIONS(5261), 1, + aux_sym_ctrl_match_token1, + ACTIONS(5263), 1, + anon_sym_DOT_DOT, + ACTIONS(5267), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5269), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(5271), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5273), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5275), 1, + sym_val_date, + STATE(762), 1, + sym__val_number_decimal, + STATE(828), 1, + sym_expr_parenthesized, + STATE(941), 1, + sym_val_variable, + STATE(1126), 1, + sym__str_double_quotes, + STATE(1140), 1, + sym__val_number, + STATE(1152), 1, + sym__inter_single_quotes, + STATE(1153), 1, + sym__inter_double_quotes, + STATE(1154), 1, + sym__expr_unary_minus, + STATE(2250), 1, + sym_comment, + STATE(3107), 1, + sym_val_range, + STATE(3151), 1, + sym_block, + STATE(3152), 1, + sym__expression, + STATE(4056), 1, + sym__expr_binary_expression, + ACTIONS(3471), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3477), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5253), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5265), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1159), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3467), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1145), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [43496] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5304), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5306), 1, + aux_sym__immediate_decimal_token2, + STATE(2251), 1, + sym_comment, + ACTIONS(1481), 11, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1483), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [43569] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2190), 1, + STATE(2252), 1, sym_comment, - STATE(7593), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258774,7 +268716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258787,29 +268729,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258818,21 +268765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38096] = 6, - ACTIONS(3), 1, + [43642] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2191), 1, + STATE(2253), 1, sym_comment, - STATE(7593), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258841,7 +268783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258854,29 +268796,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258885,21 +268832,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38169] = 6, - ACTIONS(3), 1, + [43715] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2192), 1, + STATE(2254), 1, sym_comment, - STATE(7593), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258908,7 +268850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258919,31 +268861,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_GT_PIPE, anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258952,21 +268899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38242] = 6, - ACTIONS(3), 1, + [43788] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2193), 1, + STATE(2255), 1, sym_comment, - STATE(7593), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258975,7 +268917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258988,29 +268930,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259019,21 +268966,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38315] = 6, + [43861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, + STATE(2256), 1, + sym_comment, + ACTIONS(2131), 18, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + ACTIONS(2133), 40, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(2194), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [43930] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2257), 1, sym_comment, - STATE(7593), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259042,7 +269049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -259055,29 +269062,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259086,21 +269098,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38388] = 6, - ACTIONS(3), 1, + [44003] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(2195), 1, + STATE(2258), 1, sym_comment, - STATE(7593), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259109,7 +269116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -259122,29 +269129,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259153,88 +269165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38461] = 8, - ACTIONS(3), 1, + [44076] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5306), 1, - anon_sym_DOT, - STATE(2196), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2259), 1, sym_comment, - STATE(2338), 1, - aux_sym_cell_path_repeat1, - STATE(2580), 1, - sym_path, - STATE(2671), 1, - sym_cell_path, - ACTIONS(1545), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1549), 47, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5308), 9, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [38538] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2197), 1, - sym_comment, - STATE(2226), 1, - aux_sym_shebang_repeat1, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259243,8 +269182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5310), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259256,30 +269194,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259288,19 +269231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38609] = 5, - ACTIONS(3), 1, + [44147] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2159), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2198), 1, + STATE(2260), 1, sym_comment, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259309,8 +269248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259322,30 +269260,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259354,19 +269297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38680] = 5, - ACTIONS(3), 1, + [44218] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2199), 1, + STATE(2261), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259375,8 +269314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259388,30 +269326,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259420,21 +269363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38751] = 6, - ACTIONS(3), 1, + [44289] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2200), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2262), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3237), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259443,9 +269380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3235), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259456,29 +269391,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259487,98 +269429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38824] = 20, - ACTIONS(3), 1, + [44360] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(2903), 1, - anon_sym_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5314), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(5318), 1, - anon_sym_RBRACK, - STATE(2201), 1, - sym_comment, - STATE(2376), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2606), 1, - aux_sym_command_list_repeat1, - STATE(5676), 1, - sym__str_double_quotes, - STATE(7127), 1, - sym__command_name, - STATE(7212), 1, - sym__val_number_decimal, - STATE(7535), 1, - sym_cmd_identifier, - STATE(7536), 1, - sym_val_string, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2905), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5308), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5312), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5310), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [38925] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2202), 1, + STATE(2263), 1, sym_comment, - ACTIONS(928), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259587,9 +269446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(930), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259600,31 +269457,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259633,19 +269495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38994] = 5, - ACTIONS(3), 1, + [44431] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2203), 1, + STATE(2264), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259654,8 +269512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259667,30 +269524,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259699,19 +269561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39065] = 5, - ACTIONS(3), 1, + [44502] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2204), 1, - sym_comment, - STATE(2275), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2265), 1, + sym_comment, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259720,8 +269578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259733,30 +269590,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259765,19 +269627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39136] = 5, - ACTIONS(3), 1, + [44573] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2205), 1, + STATE(2266), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259786,8 +269644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259799,30 +269656,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259831,18 +269693,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39207] = 6, - ACTIONS(121), 1, + [44644] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(2206), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2267), 1, sym_comment, - ACTIONS(2081), 12, - ts_builtin_sym_end, + ACTIONS(5312), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259853,43 +269721,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2077), 44, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259898,19 +269759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39280] = 5, - ACTIONS(3), 1, + [44715] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2207), 1, - sym_comment, - STATE(2219), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2268), 1, + sym_comment, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259919,8 +269776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259932,30 +269788,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259964,19 +269825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39351] = 5, - ACTIONS(3), 1, + [44786] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2208), 1, - sym_comment, - STATE(2272), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2269), 1, + sym_comment, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259985,8 +269842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259998,30 +269854,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260030,18 +269891,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39422] = 6, - ACTIONS(121), 1, + [44857] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(2209), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2270), 1, sym_comment, - ACTIONS(950), 12, - ts_builtin_sym_end, + ACTIONS(5312), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260052,43 +269919,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(948), 44, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260097,19 +269957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39495] = 5, - ACTIONS(3), 1, + [44928] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2210), 1, + STATE(2271), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260118,8 +269974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260131,30 +269986,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260163,19 +270023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39566] = 5, - ACTIONS(3), 1, + [44999] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2211), 1, - sym_comment, - STATE(2236), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2272), 1, + sym_comment, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260184,8 +270040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5314), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260197,30 +270052,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260229,19 +270089,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39637] = 5, - ACTIONS(3), 1, + [45070] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2212), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2273), 1, sym_comment, - STATE(2285), 1, - aux_sym_shebang_repeat1, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(7586), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260250,7 +270107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + ACTIONS(3199), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260262,31 +270120,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260295,19 +270156,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39708] = 5, - ACTIONS(3), 1, + [45143] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2213), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2274), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(7586), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260316,7 +270174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, + ACTIONS(3199), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260328,31 +270187,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260361,13 +270223,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39779] = 4, - ACTIONS(121), 1, + [45216] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2214), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2275), 1, sym_comment, - ACTIONS(2075), 13, - ts_builtin_sym_end, + STATE(2276), 1, + aux_sym_cell_path_repeat1, + STATE(2568), 1, + sym_path, + ACTIONS(951), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(953), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [45291] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5316), 1, + anon_sym_DOT, + STATE(2568), 1, + sym_path, + STATE(2276), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(955), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(957), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [45364] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_comment, + ACTIONS(1525), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1537), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260379,44 +270384,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - ACTIONS(2073), 45, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260425,20 +270423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token7, - [39848] = 5, - ACTIONS(3), 1, + [45433] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2140), 1, - aux_sym_shebang_repeat1, - STATE(2215), 1, + STATE(2278), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2389), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260447,7 +270437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + ACTIONS(2391), 50, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260460,30 +270450,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260492,19 +270488,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39919] = 5, - ACTIONS(3), 1, + [45502] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2279), 1, + sym_comment, + ACTIONS(3487), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(3485), 52, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_LBRACK, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [45571] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2280), 1, + sym_comment, + ACTIONS(3375), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(3373), 52, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_LBRACK, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [45640] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5319), 1, + anon_sym_DOT, + STATE(2281), 1, + sym_comment, + STATE(2523), 1, + aux_sym_cell_path_repeat1, + STATE(2645), 1, + sym_path, + STATE(2691), 1, + sym_cell_path, + ACTIONS(1599), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1603), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [45717] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2225), 1, aux_sym_shebang_repeat1, - STATE(2216), 1, + STATE(2282), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260513,8 +270704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260526,30 +270716,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260558,21 +270753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39990] = 6, - ACTIONS(3), 1, + [45788] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2217), 1, + STATE(2283), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3223), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2314), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260581,9 +270770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3221), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260594,29 +270781,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260625,19 +270819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40063] = 5, - ACTIONS(3), 1, + [45859] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2141), 1, - aux_sym_shebang_repeat1, - STATE(2218), 1, + STATE(2284), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2317), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260646,8 +270836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260659,30 +270848,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260691,19 +270885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40134] = 5, - ACTIONS(3), 1, + [45930] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2219), 1, + STATE(2285), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2319), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260712,8 +270902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260725,30 +270914,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260757,19 +270951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40205] = 5, - ACTIONS(3), 1, + [46001] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token6, - STATE(2220), 1, + STATE(2286), 1, sym_comment, - ACTIONS(1429), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2321), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260778,8 +270968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1441), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260791,30 +270980,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260823,19 +271017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40276] = 5, - ACTIONS(3), 1, + [46072] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2142), 1, - aux_sym_shebang_repeat1, - STATE(2221), 1, + STATE(2287), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2324), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260844,8 +271034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260857,30 +271046,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260889,19 +271083,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40347] = 5, - ACTIONS(3), 1, + [46143] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2222), 1, + STATE(2288), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2326), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260910,8 +271100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260923,30 +271112,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260955,19 +271149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40418] = 5, - ACTIONS(3), 1, + [46214] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2223), 1, + STATE(2289), 1, sym_comment, - STATE(2257), 1, + STATE(2329), 1, aux_sym_shebang_repeat1, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260976,8 +271166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260989,30 +271178,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261021,19 +271215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40489] = 5, - ACTIONS(3), 1, + [46285] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2143), 1, - aux_sym_shebang_repeat1, - STATE(2224), 1, + STATE(2290), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2334), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261042,8 +271232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261055,30 +271244,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261087,19 +271281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40560] = 5, - ACTIONS(3), 1, + [46356] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2225), 1, + STATE(2291), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2336), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261108,8 +271298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261121,30 +271310,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261153,19 +271347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40631] = 5, - ACTIONS(3), 1, + [46427] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2226), 1, + STATE(2292), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2340), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261174,8 +271364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261187,30 +271376,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261219,84 +271413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40702] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2227), 1, - sym_comment, - ACTIONS(3443), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(3441), 52, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [40771] = 5, - ACTIONS(3), 1, + [46498] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2228), 1, + STATE(2293), 1, sym_comment, - STATE(2241), 1, + STATE(2342), 1, aux_sym_shebang_repeat1, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261305,8 +271430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261318,30 +271442,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261350,19 +271479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40842] = 5, - ACTIONS(3), 1, + [46569] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2144), 1, - aux_sym_shebang_repeat1, - STATE(2229), 1, + STATE(2294), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2344), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261371,8 +271496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261384,30 +271508,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261416,19 +271545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40913] = 5, - ACTIONS(3), 1, + [46640] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2213), 1, - aux_sym_shebang_repeat1, - STATE(2230), 1, + STATE(2295), 1, sym_comment, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2348), 1, + aux_sym_shebang_repeat1, + ACTIONS(5186), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261437,8 +271562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261450,30 +271574,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261482,118 +271611,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40984] = 38, - ACTIONS(3), 1, + [46711] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(968), 1, - anon_sym_DOLLAR, - ACTIONS(1632), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5324), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5326), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5328), 1, - anon_sym_DOT2, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1890), 1, - sym_expr_parenthesized, - STATE(1891), 1, - sym_val_variable, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(2231), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(5327), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5329), 1, + sym__newline, + ACTIONS(5331), 1, + anon_sym_RBRACK, + STATE(2296), 1, sym_comment, - STATE(3155), 1, + STATE(2385), 1, + aux_sym_shebang_repeat1, + STATE(2647), 1, + aux_sym_command_list_repeat1, + STATE(5801), 1, + sym__str_double_quotes, + STATE(7263), 1, sym__val_number_decimal, - STATE(3670), 1, - sym_val_range, - STATE(4053), 1, - sym__expr_binary_expression, - STATE(6931), 1, - sym_block, - STATE(6950), 1, - sym__expression, - ACTIONS(215), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(435), 2, + STATE(7328), 1, + sym__command_name, + STATE(7548), 1, + sym_cmd_identifier, + STATE(7691), 1, + sym_val_string, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(2941), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3183), 2, + ACTIONS(5321), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5325), 5, anon_sym_true, anon_sym_false, - STATE(2036), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 6, - aux_sym_cmd_identifier_token38, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1906), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [41121] = 5, - ACTIONS(3), 1, + ACTIONS(5323), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [46812] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2165), 1, - aux_sym_shebang_repeat1, - STATE(2232), 1, + STATE(2297), 1, sym_comment, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(994), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261602,7 +271706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + ACTIONS(996), 50, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261614,31 +271719,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261647,19 +271757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41192] = 5, + [46881] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2233), 1, + ACTIONS(4932), 1, + aux_sym_cmd_identifier_token37, + STATE(2298), 1, sym_comment, - ACTIONS(5332), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1525), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261668,8 +271774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 44, - sym__newline, + ACTIONS(1537), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261680,31 +271785,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261713,151 +271823,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41263] = 5, - ACTIONS(3), 1, + [46952] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2234), 1, + ACTIONS(5319), 1, + anon_sym_DOT, + STATE(2299), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, + STATE(2523), 1, + aux_sym_cell_path_repeat1, + STATE(2645), 1, + sym_path, + STATE(2716), 1, + sym_cell_path, + ACTIONS(945), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(947), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [41334] = 5, - ACTIONS(3), 1, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [47029] = 20, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2145), 1, - aux_sym_shebang_repeat1, - STATE(2235), 1, - sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(5327), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5329), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [41405] = 5, + ACTIONS(5333), 1, + anon_sym_RBRACK, + STATE(2300), 1, + sym_comment, + STATE(2501), 1, + aux_sym_shebang_repeat1, + STATE(2632), 1, + aux_sym_command_list_repeat1, + STATE(5801), 1, + sym__str_double_quotes, + STATE(7263), 1, + sym__val_number_decimal, + STATE(7412), 1, + sym__command_name, + STATE(7548), 1, + sym_cmd_identifier, + STATE(7691), 1, + sym_val_string, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(2941), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5321), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5325), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5323), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [47130] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2236), 1, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(2301), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2131), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261866,7 +271989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, + ACTIONS(2133), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261879,30 +272002,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261911,19 +272039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41476] = 5, + [47201] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, - aux_sym_shebang_repeat1, - STATE(2237), 1, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(2302), 1, sym_comment, - ACTIONS(5336), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2089), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261932,7 +272055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(2093), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261945,30 +272068,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261977,21 +272105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41547] = 6, - ACTIONS(3), 1, + [47272] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(2238), 1, + ACTIONS(5335), 1, + aux_sym_cmd_identifier_token41, + STATE(2303), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3227), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2097), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262000,8 +272121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3225), 43, - ts_builtin_sym_end, + ACTIONS(2101), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262013,29 +272133,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262044,19 +272171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41620] = 5, - ACTIONS(3), 1, + [47343] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2146), 1, - aux_sym_shebang_repeat1, - STATE(2239), 1, + ACTIONS(5335), 1, + aux_sym_cmd_identifier_token41, + STATE(2304), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2105), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262065,7 +272187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + ACTIONS(2107), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262078,30 +272200,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262110,19 +272237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41691] = 5, - ACTIONS(3), 1, + [47414] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2203), 1, - aux_sym_shebang_repeat1, - STATE(2240), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2305), 1, sym_comment, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3207), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262131,7 +272255,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, + ACTIONS(3205), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262143,31 +272268,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262176,19 +272304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41762] = 5, - ACTIONS(3), 1, + [47487] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2241), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2306), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3211), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262197,7 +272322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, + ACTIONS(3209), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262209,117 +272335,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [41833] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2242), 1, - sym_comment, - ACTIONS(924), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(926), 51, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [41902] = 5, - ACTIONS(3), 1, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47560] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2210), 1, - aux_sym_shebang_repeat1, - STATE(2243), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2307), 1, sym_comment, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3261), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262328,7 +272389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, + ACTIONS(3259), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262340,31 +272402,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262373,19 +272438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41973] = 5, - ACTIONS(3), 1, + [47633] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2147), 1, - aux_sym_shebang_repeat1, - STATE(2244), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(2308), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3265), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262394,7 +272456,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, + ACTIONS(3263), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262406,31 +272469,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262439,19 +272505,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42044] = 5, - ACTIONS(3), 1, + [47706] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2225), 1, - aux_sym_shebang_repeat1, - STATE(2245), 1, + STATE(2309), 1, sym_comment, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(986), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262460,7 +272519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, + ACTIONS(988), 50, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262472,31 +272532,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262505,19 +272570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42115] = 5, - ACTIONS(3), 1, + [47775] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2246), 1, + STATE(2310), 1, sym_comment, - ACTIONS(5340), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(990), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262526,7 +272584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(992), 50, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262538,31 +272597,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262571,19 +272635,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42186] = 5, + [47844] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5337), 1, + anon_sym_DASH_DASH, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2311), 1, + sym_comment, + STATE(2532), 1, + aux_sym_decl_def_repeat1, + STATE(2997), 1, + sym_long_flag, + STATE(6723), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [47945] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2247), 1, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(2312), 1, sym_comment, - STATE(2291), 1, - aux_sym_shebang_repeat1, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1525), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262592,7 +272732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, + ACTIONS(1537), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262605,30 +272745,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262637,19 +272782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42257] = 5, - ACTIONS(3), 1, + [48016] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2248), 1, + STATE(2313), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262658,8 +272799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, - sym__newline, + ACTIONS(5341), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262671,30 +272811,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262703,19 +272848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42328] = 5, - ACTIONS(3), 1, + [48087] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2249), 1, + STATE(2314), 1, sym_comment, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262724,8 +272865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262737,30 +272877,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262769,19 +272914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42399] = 5, - ACTIONS(3), 1, + [48158] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2148), 1, + STATE(2200), 1, aux_sym_shebang_repeat1, - STATE(2250), 1, + STATE(2315), 1, sym_comment, - ACTIONS(5344), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5347), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262790,8 +272931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 44, - sym__newline, + ACTIONS(5349), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262803,30 +272943,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262835,19 +272980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42470] = 5, - ACTIONS(3), 1, + [48229] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(2201), 1, aux_sym_shebang_repeat1, - STATE(2251), 1, + STATE(2316), 1, sym_comment, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262856,8 +272997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262869,30 +273009,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262901,165 +273046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42541] = 20, - ACTIONS(3), 1, + [48300] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(2903), 1, - anon_sym_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5314), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(5346), 1, - anon_sym_RBRACK, - STATE(2252), 1, - sym_comment, - STATE(2454), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2594), 1, - aux_sym_command_list_repeat1, - STATE(5676), 1, - sym__str_double_quotes, - STATE(7212), 1, - sym__val_number_decimal, - STATE(7267), 1, - sym__command_name, - STATE(7535), 1, - sym_cmd_identifier, - STATE(7536), 1, - sym_val_string, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2905), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5308), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5312), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5310), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [42642] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2253), 1, + STATE(2317), 1, sym_comment, - ACTIONS(932), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(934), 51, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5343), 9, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [42711] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2180), 1, - aux_sym_shebang_repeat1, - STATE(2254), 1, - sym_comment, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263068,8 +273063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263081,30 +273075,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263113,19 +273112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42782] = 5, - ACTIONS(3), 1, + [48371] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2149), 1, + STATE(2202), 1, aux_sym_shebang_repeat1, - STATE(2255), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263134,8 +273129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263147,30 +273141,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263179,19 +273178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42853] = 5, - ACTIONS(3), 1, + [48442] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2199), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2256), 1, + STATE(2319), 1, sym_comment, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263200,8 +273195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263213,30 +273207,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263245,19 +273244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42924] = 5, - ACTIONS(3), 1, + [48513] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2204), 1, aux_sym_shebang_repeat1, - STATE(2257), 1, + STATE(2320), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263266,8 +273261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263279,30 +273273,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263311,19 +273310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42995] = 5, - ACTIONS(3), 1, + [48584] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2258), 1, + STATE(2321), 1, sym_comment, - ACTIONS(5350), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263332,8 +273327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263345,30 +273339,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263377,86 +273376,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43066] = 6, - ACTIONS(3), 1, + [48655] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5352), 1, - anon_sym_DOT, - ACTIONS(5355), 1, - aux_sym__immediate_decimal_token2, - STATE(2259), 1, - sym_comment, - ACTIONS(1398), 12, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3225), 1, + aux_sym_expr_unary_token1, + ACTIONS(3229), 1, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3231), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(5351), 1, + anon_sym_DOT_DOT, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(2322), 1, + sym_comment, + STATE(3727), 1, + sym_val_range, + STATE(3730), 1, + sym__val_number_decimal, + STATE(3758), 1, + sym_val_variable, + STATE(3761), 1, + sym_expr_parenthesized, + STATE(4067), 1, + sym__expr_binary_expression, + STATE(7606), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - [43139] = 5, - ACTIONS(3), 1, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5353), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [48792] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2234), 1, + STATE(2205), 1, aux_sym_shebang_repeat1, - STATE(2260), 1, + STATE(2323), 1, sym_comment, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263465,8 +273492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263478,30 +273504,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263510,19 +273541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43210] = 5, - ACTIONS(3), 1, + [48863] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2150), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2261), 1, + STATE(2324), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263531,8 +273558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263544,30 +273570,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263576,19 +273607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43281] = 5, - ACTIONS(3), 1, + [48934] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2206), 1, aux_sym_shebang_repeat1, - STATE(2262), 1, + STATE(2325), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263597,8 +273624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263610,30 +273636,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263642,19 +273673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43352] = 5, - ACTIONS(3), 1, + [49005] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2263), 1, - sym_comment, - STATE(2265), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2326), 1, + sym_comment, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263663,8 +273690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263676,30 +273702,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263708,19 +273739,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43423] = 5, - ACTIONS(3), 1, + [49076] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2168), 1, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3225), 1, + aux_sym_expr_unary_token1, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(5351), 1, + anon_sym_DOT_DOT, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(2327), 1, + sym_comment, + STATE(3727), 1, + sym_val_range, + STATE(3730), 1, + sym__val_number_decimal, + STATE(3758), 1, + sym_val_variable, + STATE(3761), 1, + sym_expr_parenthesized, + STATE(4067), 1, + sym__expr_binary_expression, + STATE(7633), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5353), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [49213] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2207), 1, aux_sym_shebang_repeat1, - STATE(2264), 1, + STATE(2328), 1, sym_comment, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263729,8 +273855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263742,30 +273867,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263774,19 +273904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43494] = 5, - ACTIONS(3), 1, + [49284] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2265), 1, + STATE(2329), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263795,8 +273921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263808,30 +273933,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263840,28 +273970,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43565] = 5, - ACTIONS(3), 1, + [49355] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5355), 1, - aux_sym__immediate_decimal_token2, - STATE(2266), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5337), 1, + anon_sym_DASH_DASH, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2330), 1, sym_comment, - ACTIONS(1398), 13, + STATE(2532), 1, + aux_sym_decl_def_repeat1, + STATE(2997), 1, + sym_long_flag, + STATE(6723), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 44, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -263893,32 +274051,213 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [49456] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3225), 1, + aux_sym_expr_unary_token1, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(5351), 1, + anon_sym_DOT_DOT, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(2331), 1, + sym_comment, + STATE(3727), 1, + sym_val_range, + STATE(3730), 1, + sym__val_number_decimal, + STATE(3758), 1, + sym_val_variable, + STATE(3761), 1, + sym_expr_parenthesized, + STATE(4067), 1, + sym__expr_binary_expression, + STATE(7606), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5353), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [49593] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3225), 1, + aux_sym_expr_unary_token1, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(5351), 1, + anon_sym_DOT_DOT, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(2332), 1, + sym_comment, + STATE(3727), 1, + sym_val_range, + STATE(3730), 1, + sym__val_number_decimal, + STATE(3758), 1, + sym_val_variable, + STATE(3761), 1, + sym_expr_parenthesized, + STATE(4067), 1, + sym__expr_binary_expression, + STATE(7633), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(5353), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [43636] = 5, - ACTIONS(3), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [49730] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2151), 1, + STATE(2208), 1, aux_sym_shebang_repeat1, - STATE(2267), 1, + STATE(2333), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263927,8 +274266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263940,30 +274278,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263972,19 +274315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43707] = 5, - ACTIONS(3), 1, + [49801] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2138), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2268), 1, + STATE(2334), 1, sym_comment, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263993,8 +274332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264006,30 +274344,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264038,14 +274381,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43778] = 5, - ACTIONS(121), 1, + [49872] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_cmd_identifier_token37, - STATE(2269), 1, + STATE(2209), 1, + aux_sym_shebang_repeat1, + STATE(2335), 1, sym_comment, - ACTIONS(1441), 25, + ACTIONS(5182), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264056,13 +274409,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - aux_sym_record_entry_token1, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264071,52 +274447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(1429), 32, - sym__newline, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [43849] = 5, - ACTIONS(3), 1, + [49943] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2270), 1, + STATE(2336), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264125,8 +274464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264138,30 +274476,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264170,19 +274513,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43920] = 5, + [50014] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2271), 1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(2337), 1, sym_comment, - STATE(2288), 1, - aux_sym_shebang_repeat1, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2089), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264191,7 +274531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2093), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264203,52 +274552,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43991] = 5, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [50087] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2272), 1, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(2338), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1006), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264257,7 +274598,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(1008), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264269,52 +274619,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44062] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [50160] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2152), 1, + STATE(2210), 1, aux_sym_shebang_repeat1, - STATE(2273), 1, + STATE(2339), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264323,8 +274664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264336,30 +274676,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264368,19 +274713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44133] = 5, - ACTIONS(3), 1, + [50231] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2274), 1, - sym_comment, - STATE(2300), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5218), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2340), 1, + sym_comment, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264389,8 +274730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264402,30 +274742,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264434,19 +274779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44204] = 5, - ACTIONS(3), 1, + [50302] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2211), 1, aux_sym_shebang_repeat1, - STATE(2275), 1, + STATE(2341), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264455,8 +274796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264468,30 +274808,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264500,84 +274845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44275] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2276), 1, - sym_comment, - ACTIONS(928), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(930), 51, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [44344] = 5, - ACTIONS(3), 1, + [50373] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2172), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2277), 1, + STATE(2342), 1, sym_comment, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264586,8 +274862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264599,30 +274874,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264631,19 +274911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44415] = 5, - ACTIONS(3), 1, + [50444] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2153), 1, + STATE(2212), 1, aux_sym_shebang_repeat1, - STATE(2278), 1, + STATE(2343), 1, sym_comment, - ACTIONS(5211), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264652,8 +274928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5209), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264665,204 +274940,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44486] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3371), 1, - anon_sym_DASH, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3391), 1, - anon_sym_0b, - ACTIONS(3397), 1, - anon_sym_DQUOTE, - ACTIONS(3401), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3403), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5359), 1, - anon_sym_null, - ACTIONS(5361), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, - anon_sym_DOLLAR, - ACTIONS(5365), 1, - aux_sym_ctrl_match_token1, - ACTIONS(5367), 1, - anon_sym_DOT_DOT, - ACTIONS(5371), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5373), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5375), 1, - anon_sym_DOT2, - ACTIONS(5377), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5379), 1, - sym_val_date, - STATE(760), 1, - sym__val_number_decimal, - STATE(833), 1, - sym_val_variable, - STATE(946), 1, - sym_expr_parenthesized, - STATE(1131), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1150), 1, - sym__inter_double_quotes, - STATE(1156), 1, - sym__val_number, - STATE(1186), 1, - sym__expr_unary_minus, - STATE(2279), 1, - sym_comment, - STATE(3054), 1, - sym_block, - STATE(3056), 1, - sym__expression, - STATE(3078), 1, - sym_val_range, - STATE(4056), 1, - sym__expr_binary_expression, - ACTIONS(3393), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3399), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5369), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1184), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3389), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1136), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [44623] = 15, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2767), 1, - anon_sym_DOLLAR, - ACTIONS(5383), 1, - anon_sym_RBRACK, - ACTIONS(5385), 1, - anon_sym_DOLLAR2, - ACTIONS(5387), 1, - anon_sym_LPAREN2, - ACTIONS(5389), 1, - anon_sym_DOT, - ACTIONS(5393), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5395), 1, - sym__entry_separator, - ACTIONS(5397), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5399), 1, - aux_sym__unquoted_in_list_token6, - STATE(2280), 1, - sym_comment, - STATE(2721), 1, - sym__immediate_decimal, - ACTIONS(5391), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2945), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(5381), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264871,89 +274977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [44714] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5306), 1, - anon_sym_DOT, - STATE(2281), 1, - sym_comment, - STATE(2338), 1, - aux_sym_cell_path_repeat1, - STATE(2580), 1, - sym_path, - STATE(2694), 1, - sym_cell_path, - ACTIONS(883), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(885), 47, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [44791] = 5, - ACTIONS(3), 1, + [50515] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2246), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2282), 1, + STATE(2344), 1, sym_comment, - ACTIONS(5403), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264962,8 +274994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264975,30 +275006,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265007,217 +275043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44862] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(968), 1, - anon_sym_DOLLAR, - ACTIONS(1632), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3423), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5324), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5326), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5328), 1, - anon_sym_DOT2, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1890), 1, - sym_expr_parenthesized, - STATE(1891), 1, - sym_val_variable, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(2283), 1, - sym_comment, - STATE(3155), 1, - sym__val_number_decimal, - STATE(3670), 1, - sym_val_range, - STATE(4053), 1, - sym__expr_binary_expression, - STATE(7184), 1, - sym_block, - STATE(7188), 1, - sym__expression, - ACTIONS(215), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(435), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - STATE(2036), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1906), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [44999] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3371), 1, - anon_sym_DASH, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3391), 1, - anon_sym_0b, - ACTIONS(3397), 1, - anon_sym_DQUOTE, - ACTIONS(3401), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3403), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5359), 1, - anon_sym_null, - ACTIONS(5361), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, - anon_sym_DOLLAR, - ACTIONS(5365), 1, - aux_sym_ctrl_match_token1, - ACTIONS(5367), 1, - anon_sym_DOT_DOT, - ACTIONS(5371), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5373), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5375), 1, - anon_sym_DOT2, - ACTIONS(5377), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5379), 1, - sym_val_date, - STATE(760), 1, - sym__val_number_decimal, - STATE(833), 1, - sym_val_variable, - STATE(946), 1, - sym_expr_parenthesized, - STATE(1131), 1, - sym__str_double_quotes, - STATE(1146), 1, - sym__inter_single_quotes, - STATE(1150), 1, - sym__inter_double_quotes, - STATE(1156), 1, - sym__val_number, - STATE(1186), 1, - sym__expr_unary_minus, - STATE(2284), 1, - sym_comment, - STATE(3078), 1, - sym_val_range, - STATE(3127), 1, - sym_block, - STATE(3128), 1, - sym__expression, - STATE(4056), 1, - sym__expr_binary_expression, - ACTIONS(3393), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3399), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5357), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5369), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1184), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3389), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1136), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [45136] = 5, - ACTIONS(3), 1, + [50586] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2213), 1, aux_sym_shebang_repeat1, - STATE(2285), 1, + STATE(2345), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265226,8 +275060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265239,30 +275072,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265271,19 +275109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45207] = 5, + [50657] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2173), 1, - aux_sym_shebang_repeat1, - STATE(2286), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(2346), 1, sym_comment, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2097), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265292,7 +275127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2101), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265304,52 +275148,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [45278] = 5, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [50730] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2287), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(2347), 1, sym_comment, - STATE(2301), 1, - aux_sym_shebang_repeat1, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2105), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265358,7 +275194,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2107), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265370,52 +275215,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [45349] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [50803] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2288), 1, + STATE(2348), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5343), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265424,8 +275260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(5345), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265437,30 +275272,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265469,19 +275309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45420] = 5, - ACTIONS(3), 1, + [50874] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2216), 1, + STATE(2214), 1, aux_sym_shebang_repeat1, - STATE(2289), 1, + STATE(2349), 1, sym_comment, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5182), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265490,8 +275326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5184), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265501,134 +275336,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [45491] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, - anon_sym_DASH_DASH, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2290), 1, - sym_comment, - STATE(2473), 1, - aux_sym_decl_def_repeat1, - STATE(2879), 1, - sym_long_flag, - STATE(6814), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [45592] = 5, - ACTIONS(3), 1, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [50945] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2215), 1, aux_sym_shebang_repeat1, - STATE(2291), 1, + STATE(2350), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5355), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265637,8 +275392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(5357), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265650,30 +275404,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265682,562 +275441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45663] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - aux_sym__immediate_decimal_token2, - STATE(2292), 1, - sym_comment, - ACTIONS(1368), 13, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [45734] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(3203), 1, - anon_sym_LPAREN, - ACTIONS(3205), 1, - anon_sym_DOLLAR, - ACTIONS(5407), 1, - anon_sym_DOT_DOT, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(2293), 1, - sym_comment, - STATE(3668), 1, - sym__val_number_decimal, - STATE(3670), 1, - sym_val_range, - STATE(3719), 1, - sym_expr_parenthesized, - STATE(3742), 1, - sym_val_variable, - STATE(4049), 1, - sym__expr_binary_expression, - STATE(7566), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(435), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5255), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2036), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1906), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [45871] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, - anon_sym_DASH_DASH, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2294), 1, - sym_comment, - STATE(2473), 1, - aux_sym_decl_def_repeat1, - STATE(2879), 1, - sym_long_flag, - STATE(6814), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [45972] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3203), 1, - anon_sym_LPAREN, - ACTIONS(3205), 1, - anon_sym_DOLLAR, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(5407), 1, - anon_sym_DOT_DOT, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(2295), 1, - sym_comment, - STATE(3668), 1, - sym__val_number_decimal, - STATE(3670), 1, - sym_val_range, - STATE(3719), 1, - sym_expr_parenthesized, - STATE(3742), 1, - sym_val_variable, - STATE(4049), 1, - sym__expr_binary_expression, - STATE(7566), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(435), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5255), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2036), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1906), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [46109] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3203), 1, - anon_sym_LPAREN, - ACTIONS(3205), 1, - anon_sym_DOLLAR, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(5407), 1, - anon_sym_DOT_DOT, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(2296), 1, - sym_comment, - STATE(3668), 1, - sym__val_number_decimal, - STATE(3670), 1, - sym_val_range, - STATE(3719), 1, - sym_expr_parenthesized, - STATE(3742), 1, - sym_val_variable, - STATE(4049), 1, - sym__expr_binary_expression, - STATE(7573), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(435), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5255), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2036), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1906), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [46246] = 38, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(3203), 1, - anon_sym_LPAREN, - ACTIONS(3205), 1, - anon_sym_DOLLAR, - ACTIONS(5407), 1, - anon_sym_DOT_DOT, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(2297), 1, - sym_comment, - STATE(3668), 1, - sym__val_number_decimal, - STATE(3670), 1, - sym_val_range, - STATE(3719), 1, - sym_expr_parenthesized, - STATE(3742), 1, - sym_val_variable, - STATE(4049), 1, - sym__expr_binary_expression, - STATE(7573), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(435), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5255), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2036), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1906), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [46383] = 5, - ACTIONS(3), 1, + [51016] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2262), 1, + STATE(2216), 1, aux_sym_shebang_repeat1, - STATE(2298), 1, + STATE(2351), 1, sym_comment, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266246,8 +275458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266259,30 +275470,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266291,19 +275507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46454] = 5, - ACTIONS(3), 1, + [51087] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2177), 1, + STATE(2219), 1, aux_sym_shebang_repeat1, - STATE(2299), 1, + STATE(2352), 1, sym_comment, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266312,8 +275524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266325,30 +275536,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266357,19 +275573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46525] = 5, - ACTIONS(3), 1, + [51158] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2221), 1, aux_sym_shebang_repeat1, - STATE(2300), 1, + STATE(2353), 1, sym_comment, - ACTIONS(5279), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266378,8 +275590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5277), 44, - sym__newline, + ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266391,30 +275602,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266423,19 +275639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46596] = 5, - ACTIONS(3), 1, + [51229] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2313), 1, aux_sym_shebang_repeat1, - STATE(2301), 1, + STATE(2354), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5359), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266444,8 +275656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5361), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266457,30 +275668,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266489,19 +275705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46667] = 5, - ACTIONS(3), 1, + [51300] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2205), 1, - aux_sym_shebang_repeat1, - STATE(2302), 1, + ACTIONS(4728), 1, + aux_sym_record_entry_token1, + STATE(2355), 1, sym_comment, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1006), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266510,8 +275722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(1008), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266522,31 +275733,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266555,154 +275770,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46738] = 7, - ACTIONS(3), 1, + [51370] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5243), 1, - anon_sym_DOT, - STATE(2276), 1, - sym_path, - STATE(2303), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5379), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5381), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2356), 1, sym_comment, - STATE(2304), 1, - aux_sym_cell_path_repeat1, - ACTIONS(889), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(891), 48, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5280), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5282), 20, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [46813] = 6, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [51464] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5409), 1, - anon_sym_DOT, - STATE(2276), 1, - sym_path, - STATE(2304), 2, + ACTIONS(4889), 1, + aux_sym_unquoted_token2, + STATE(2357), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(895), 48, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1525), 9, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [46886] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2305), 1, - sym_comment, - STATE(2310), 1, - aux_sym_shebang_repeat1, - ACTIONS(5197), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266711,8 +275864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5195), 44, - sym__newline, + ACTIONS(1537), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266724,30 +275876,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266756,19 +275912,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46957] = 5, - ACTIONS(3), 1, + [51534] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2306), 1, + STATE(2358), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266777,8 +275950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5282), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266790,30 +275962,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266822,19 +275982,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47028] = 5, - ACTIONS(3), 1, + [51614] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2307), 1, + STATE(2359), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266843,8 +276013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5282), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266856,30 +276025,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266888,19 +276051,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47099] = 5, - ACTIONS(3), 1, + [51692] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2306), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2308), 1, + STATE(2360), 1, sym_comment, - ACTIONS(5207), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266909,8 +276071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 44, - sym__newline, + ACTIONS(5310), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266922,30 +276083,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266954,19 +276117,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47170] = 5, - ACTIONS(3), 1, + [51764] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2309), 1, + STATE(2361), 1, sym_comment, - ACTIONS(5296), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266975,8 +276142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, - sym__newline, + ACTIONS(5310), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266988,30 +276154,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267020,19 +276184,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47241] = 5, - ACTIONS(3), 1, + [51838] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2310), 1, + STATE(2362), 1, sym_comment, - ACTIONS(5322), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267041,8 +276212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, - sym__newline, + ACTIONS(5310), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267054,30 +276224,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267086,27 +276252,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47312] = 9, - ACTIONS(3), 1, + [51914] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - STATE(2311), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2363), 1, sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3457), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267115,8 +276295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 39, - sym__newline, + ACTIONS(5310), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267128,25 +276307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267155,54 +276323,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47390] = 19, - ACTIONS(3), 1, + [51996] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5430), 1, - anon_sym_and, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2312), 1, + STATE(2364), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5287), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267211,8 +276369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 22, - sym__newline, + ACTIONS(5310), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267224,8 +276381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267234,56 +276395,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47488] = 20, - ACTIONS(3), 1, + [52080] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5430), 1, - anon_sym_and, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - ACTIONS(5450), 1, - anon_sym_xor, - STATE(2154), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2313), 1, + STATE(2365), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5287), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267292,8 +276443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 21, - sym__newline, + ACTIONS(5310), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267305,7 +276455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267314,43 +276468,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47588] = 14, - ACTIONS(3), 1, + [52166] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2314), 1, + STATE(2366), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5287), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267359,8 +276518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 28, - sym__newline, + ACTIONS(5310), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267372,14 +276530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267388,52 +276542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47676] = 18, - ACTIONS(3), 1, + [52254] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - STATE(2315), 1, - sym_comment, - STATE(2339), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5336), 8, + STATE(2367), 1, + sym_comment, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267442,7 +276562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 23, + ACTIONS(5290), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267454,10 +276574,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267466,22 +276608,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47772] = 6, - ACTIONS(3), 1, + [52326] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2316), 1, + STATE(2368), 1, sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5300), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267490,8 +276660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 41, - sym__newline, + ACTIONS(5310), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267503,27 +276672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267532,29 +276683,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47844] = 10, - ACTIONS(3), 1, + [52416] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5379), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2317), 1, + STATE(2369), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5287), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267563,8 +276737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 38, - sym__newline, + ACTIONS(5310), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267576,24 +276749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267602,52 +276759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47924] = 18, - ACTIONS(3), 1, + [52508] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + ACTIONS(5387), 1, + sym__newline, + STATE(2360), 1, aux_sym_shebang_repeat1, - STATE(2318), 1, + STATE(2370), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5300), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267656,8 +276780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 23, - sym__newline, + ACTIONS(5298), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267669,9 +276792,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267680,46 +276826,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48020] = 15, - ACTIONS(3), 1, + [52582] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5379), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5381), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2319), 1, + STATE(2371), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5287), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267728,8 +276882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 26, - sym__newline, + ACTIONS(5310), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267741,12 +276894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267755,48 +276903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48110] = 16, + [52676] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2320), 1, + ACTIONS(5071), 1, + aux_sym_cmd_identifier_token37, + STATE(2372), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5287), 8, + ACTIONS(2131), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267805,7 +276919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 25, + ACTIONS(2133), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267817,12 +276932,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267831,54 +276968,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48202] = 19, - ACTIONS(3), 1, + [52746] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5430), 1, - anon_sym_and, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2321), 1, + STATE(2373), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5300), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267887,8 +277006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 22, - sym__newline, + ACTIONS(5310), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267900,8 +277018,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267910,50 +277038,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48300] = 17, - ACTIONS(3), 1, + [52826] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2322), 1, + STATE(2374), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5287), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267962,8 +277063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 24, - sym__newline, + ACTIONS(5290), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267975,10 +277075,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267987,135 +277105,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48394] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, - anon_sym_DASH_DASH, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2323), 1, - sym_comment, - STATE(2399), 1, - aux_sym_decl_def_repeat1, - STATE(2879), 1, - sym_long_flag, - STATE(6607), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [48492] = 20, - ACTIONS(3), 1, + [52900] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5430), 1, - anon_sym_and, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - ACTIONS(5450), 1, - anon_sym_xor, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2324), 1, + STATE(2375), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5300), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5308), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268124,8 +277136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 21, - sym__newline, + ACTIONS(5310), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268137,7 +277148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268146,54 +277174,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48592] = 19, - ACTIONS(3), 1, + [52978] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5430), 1, - anon_sym_and, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + ACTIONS(5387), 1, + sym__newline, + STATE(2361), 1, aux_sym_shebang_repeat1, - STATE(2325), 1, + STATE(2376), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5332), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268202,8 +277200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 22, - sym__newline, + ACTIONS(5298), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268215,8 +277212,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268225,26 +277242,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48690] = 4, - ACTIONS(3), 1, + [53054] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2326), 1, + ACTIONS(5394), 1, + anon_sym_QMARK2, + STATE(2377), 1, sym_comment, - ACTIONS(1376), 13, + ACTIONS(970), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 44, + ACTIONS(972), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -268281,355 +277294,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [48758] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2327), 1, - sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5332), 10, - anon_sym_GT, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5330), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48840] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5479), 1, - sym__newline, - STATE(2328), 1, - sym_comment, - STATE(2345), 1, - aux_sym_shebang_repeat1, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5403), 10, - anon_sym_GT, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5401), 35, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48924] = 4, - ACTIONS(3), 1, + [53124] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2329), 1, + ACTIONS(5396), 1, + anon_sym_QMARK2, + STATE(2378), 1, sym_comment, - ACTIONS(3239), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3241), 44, - ts_builtin_sym_end, + ACTIONS(980), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(982), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48992] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(423), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3203), 1, - anon_sym_LPAREN, - ACTIONS(3205), 1, - anon_sym_DOLLAR, - ACTIONS(5482), 1, - anon_sym_DOT_DOT, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(2330), 1, - sym_comment, - STATE(3670), 1, - sym_val_range, - STATE(3684), 1, - sym__val_number_decimal, - STATE(3758), 1, - sym_expr_parenthesized, - STATE(3759), 1, - sym_val_variable, - STATE(4052), 1, - sym__expr_binary_expression, - STATE(7843), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(435), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5484), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2036), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1906), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [49126] = 14, - ACTIONS(3), 1, + [53194] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2331), 1, + STATE(2379), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5300), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268638,8 +277400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 28, - sym__newline, + ACTIONS(5290), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268651,14 +277412,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268667,56 +277440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49214] = 20, + [53270] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5486), 1, - anon_sym_and, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - STATE(2321), 1, - aux_sym_shebang_repeat1, - STATE(2332), 1, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(2380), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5336), 8, + ACTIONS(2131), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268725,7 +277457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 21, + ACTIONS(2133), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268737,8 +277469,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268747,28 +277505,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49314] = 9, + [53340] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, - STATE(2333), 1, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(2381), 1, sym_comment, - STATE(2354), 1, - aux_sym_shebang_repeat1, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5403), 11, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, + ACTIONS(2089), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268777,7 +277522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 38, + ACTIONS(2093), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268789,25 +277534,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268816,40 +277570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49392] = 14, + [53410] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5479), 1, - sym__newline, - STATE(2334), 1, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(2382), 1, sym_comment, - STATE(2356), 1, - aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5403), 8, + ACTIONS(1525), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268858,7 +277587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 31, + ACTIONS(1537), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268870,18 +277599,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268890,29 +277635,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49480] = 10, - ACTIONS(3), 1, + [53480] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5387), 1, + sym__newline, + STATE(2362), 1, aux_sym_shebang_repeat1, - STATE(2335), 1, + STATE(2383), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5300), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268921,8 +277664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 38, - sym__newline, + ACTIONS(5298), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268934,24 +277676,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268960,46 +277704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49560] = 15, - ACTIONS(3), 1, + [53558] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2336), 1, + STATE(2384), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5300), 8, + ACTIONS(3597), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269008,8 +277719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 26, - sym__newline, + ACTIONS(3595), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269021,12 +277731,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269035,48 +277768,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49650] = 16, - ACTIONS(3), 1, + [53626] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(5327), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5329), 1, + sym__newline, + STATE(2385), 1, + sym_comment, + STATE(2661), 1, + aux_sym_command_list_repeat1, + STATE(2899), 1, aux_sym_shebang_repeat1, - STATE(2337), 1, + STATE(5801), 1, + sym__str_double_quotes, + STATE(7263), 1, + sym__val_number_decimal, + STATE(7265), 1, + sym__command_name, + STATE(7548), 1, + sym_cmd_identifier, + STATE(7691), 1, + sym_val_string, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(2941), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5321), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5325), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5323), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [53724] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2386), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5300), 8, + ACTIONS(3607), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269085,8 +277862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 25, - sym__newline, + ACTIONS(3605), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269098,11 +277874,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269111,27 +277911,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49742] = 7, - ACTIONS(3), 1, + [53792] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5306), 1, - anon_sym_DOT, - STATE(2338), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5337), 1, + anon_sym_DASH_DASH, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2387), 1, sym_comment, - STATE(2358), 1, - aux_sym_cell_path_repeat1, - STATE(2580), 1, - sym_path, - ACTIONS(889), 7, + STATE(2811), 1, + aux_sym_decl_def_repeat1, + STATE(2997), 1, + sym_long_flag, + STATE(6608), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(891), 47, - ts_builtin_sym_end, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -269163,65 +277990,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [49816] = 17, - ACTIONS(3), 1, + [53890] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2339), 1, + ACTIONS(5335), 1, + aux_sym_cmd_identifier_token41, + STATE(2388), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5300), 8, + ACTIONS(2097), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269230,8 +278007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 24, - sym__newline, + ACTIONS(2101), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269243,10 +278019,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269255,24 +278055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49910] = 7, - ACTIONS(3), 1, + [53960] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, - STATE(2340), 1, + ACTIONS(5335), 1, + aux_sym_cmd_identifier_token41, + STATE(2389), 1, sym_comment, - STATE(2359), 1, - aux_sym_shebang_repeat1, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5403), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2105), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269281,7 +278072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 40, + ACTIONS(2107), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269293,129 +278084,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [49984] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2341), 1, - sym_comment, - ACTIONS(1504), 13, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(1506), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [54030] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5337), 1, + anon_sym_DASH_DASH, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2390), 1, + sym_comment, + STATE(2424), 1, + aux_sym_decl_def_repeat1, + STATE(2997), 1, + sym_long_flag, + STATE(6499), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - [50052] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5490), 1, - anon_sym_DOT, - ACTIONS(5492), 1, - aux_sym_unquoted_token4, - ACTIONS(5494), 1, - aux_sym_unquoted_token6, - STATE(2342), 1, - sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 10, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - ACTIONS(2925), 40, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -269447,63 +278199,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [50132] = 19, - ACTIONS(3), 1, + [54128] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5479), 1, - sym__newline, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - STATE(2343), 1, - sym_comment, - STATE(2369), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5403), 8, + STATE(2391), 1, + sym_comment, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269512,7 +278242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 22, + ACTIONS(5290), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269524,9 +278254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269535,56 +278270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50230] = 20, - ACTIONS(3), 1, + [54210] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5430), 1, - anon_sym_and, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - ACTIONS(5450), 1, - anon_sym_xor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2344), 1, + STATE(2392), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5332), 8, + ACTIONS(5400), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269593,8 +278285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 21, - sym__newline, + ACTIONS(5229), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269606,7 +278297,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269615,32 +278334,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50330] = 11, - ACTIONS(3), 1, + [54278] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2345), 1, + ACTIONS(5402), 1, + sym__newline, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5415), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2393), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5340), 10, - anon_sym_GT, - anon_sym_LT2, + STATE(2458), 1, + aux_sym_shebang_repeat1, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269649,8 +278389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 36, - sym__newline, + ACTIONS(5357), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269662,22 +278401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269686,58 +278411,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50412] = 21, - ACTIONS(3), 1, + [54372] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5486), 1, - anon_sym_and, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - ACTIONS(5496), 1, + ACTIONS(5387), 1, sym__newline, - ACTIONS(5498), 1, - anon_sym_xor, - STATE(2324), 1, + STATE(2363), 1, aux_sym_shebang_repeat1, - STATE(2346), 1, + STATE(2394), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5336), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269746,7 +278455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 20, + ACTIONS(5298), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269758,7 +278467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269767,34 +278483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50514] = 12, - ACTIONS(3), 1, + [54456] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - STATE(2347), 1, + STATE(2395), 1, sym_comment, - STATE(2430), 1, + STATE(2475), 1, aux_sym_shebang_repeat1, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5336), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269803,7 +278504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 35, + ACTIONS(5361), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269815,22 +278516,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269839,107 +278550,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50598] = 4, - ACTIONS(3), 1, + [54530] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2348), 1, - sym_comment, - ACTIONS(2927), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2925), 44, - ts_builtin_sym_end, + ACTIONS(5402), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [50666] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2349), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2396), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5332), 8, + STATE(2411), 1, + aux_sym_shebang_repeat1, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269948,8 +278599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 28, - sym__newline, + ACTIONS(5357), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269961,14 +278611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269977,56 +278624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50754] = 20, - ACTIONS(3), 1, + [54618] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5479), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(5486), 1, - anon_sym_and, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - STATE(2350), 1, + STATE(2397), 1, sym_comment, - STATE(2373), 1, + STATE(2478), 1, aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5403), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270035,7 +278650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 21, + ACTIONS(5361), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270047,8 +278662,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270057,34 +278692,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50854] = 12, - ACTIONS(3), 1, + [54694] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5500), 1, - sym__newline, - STATE(2351), 1, - sym_comment, - STATE(2460), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5344), 10, - anon_sym_GT, - anon_sym_LT2, + STATE(2398), 1, + sym_comment, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270093,7 +278738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 35, + ACTIONS(5290), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270105,22 +278750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270129,20 +278764,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50938] = 7, - ACTIONS(3), 1, + [54778] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - STATE(2352), 1, + ACTIONS(5424), 1, + anon_sym_LBRACK2, + STATE(2399), 1, sym_comment, - ACTIONS(5237), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5241), 8, + ACTIONS(2235), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270151,7 +278780,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5235), 20, + ACTIONS(2239), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270162,8 +278793,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270172,41 +278829,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5239), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [51012] = 4, - ACTIONS(3), 1, + [54848] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2353), 1, + ACTIONS(5421), 1, + sym__newline, + STATE(2400), 1, sym_comment, - ACTIONS(3443), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2482), 1, + aux_sym_shebang_repeat1, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270215,9 +278858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3441), 44, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5361), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270228,30 +278869,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270260,26 +278898,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51080] = 8, - ACTIONS(3), 1, + [54926] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2354), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5415), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(5428), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2401), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5340), 11, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, + STATE(2462), 1, + aux_sym_shebang_repeat1, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270288,8 +278955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 39, - sym__newline, + ACTIONS(5357), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270301,25 +278967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270328,28 +278976,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51156] = 9, - ACTIONS(3), 1, + [55022] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5421), 1, sym__newline, - STATE(2355), 1, + STATE(2402), 1, sym_comment, - STATE(2463), 1, + STATE(2487), 1, aux_sym_shebang_repeat1, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5344), 11, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270358,7 +279020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 38, + ACTIONS(5361), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270370,25 +279032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270397,38 +279048,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51234] = 13, - ACTIONS(3), 1, + [55106] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5387), 1, + sym__newline, + STATE(2364), 1, aux_sym_shebang_repeat1, - STATE(2356), 1, + STATE(2403), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5340), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270437,8 +279095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 32, - sym__newline, + ACTIONS(5298), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270450,18 +279107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270470,40 +279121,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51320] = 14, - ACTIONS(3), 1, + [55192] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5500), 1, + ACTIONS(5421), 1, sym__newline, - STATE(2357), 1, + STATE(2404), 1, sym_comment, - STATE(2466), 1, + STATE(2490), 1, aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5344), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270512,7 +279168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 31, + ACTIONS(5361), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270524,18 +279180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270544,26 +279194,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51408] = 6, - ACTIONS(3), 1, + [55278] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_DOT, - STATE(2580), 1, - sym_path, - STATE(2358), 2, + STATE(2405), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 7, + ACTIONS(966), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(895), 47, - ts_builtin_sym_end, + anon_sym_DOT, + ACTIONS(968), 50, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -270603,29 +279247,25 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [51480] = 6, + [55346] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2359), 1, + ACTIONS(5071), 1, + aux_sym_cmd_identifier_token37, + STATE(2406), 1, sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5340), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2089), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270634,96 +279274,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51552] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(2093), 48, + ts_builtin_sym_end, sym__newline, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - STATE(2331), 1, - aux_sym_shebang_repeat1, - STATE(2360), 1, - sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5336), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5334), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270734,15 +279287,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270751,20 +279323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51642] = 4, - ACTIONS(3), 1, + [55416] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2361), 1, + STATE(2407), 1, sym_comment, - ACTIONS(916), 7, + ACTIONS(976), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(918), 50, + anon_sym_DOT, + ACTIONS(978), 50, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -270806,63 +279378,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_STAR, + sym_wild_card, anon_sym_QMARK2, - anon_sym_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [51710] = 6, - ACTIONS(121), 1, + [55484] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5506), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5508), 1, - aux_sym__immediate_decimal_token2, - STATE(2362), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5421), 1, + sym__newline, + STATE(2408), 1, sym_comment, - ACTIONS(1370), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1368), 49, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(2494), 1, + aux_sym_shebang_repeat1, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270871,6 +279436,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5361), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270879,86 +279461,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [51782] = 4, - ACTIONS(3), 1, + [55572] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2363), 1, + STATE(2409), 1, sym_comment, - ACTIONS(920), 7, + ACTIONS(962), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(922), 50, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_QMARK2, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [51850] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2364), 1, - sym_comment, - ACTIONS(912), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(914), 50, + ACTIONS(964), 50, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -271000,33 +279516,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_STAR, + sym_wild_card, anon_sym_QMARK2, - anon_sym_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [51918] = 7, - ACTIONS(3), 1, + [55640] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5421), 1, sym__newline, - STATE(2365), 1, + STATE(2410), 1, sym_comment, - STATE(2475), 1, + STATE(2499), 1, aux_sym_shebang_repeat1, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5344), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271035,7 +279576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 40, + ACTIONS(5361), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271047,27 +279588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271076,127 +279600,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51992] = 9, - ACTIONS(3), 1, + [55730] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4075), 1, - anon_sym_DOT_DOT2, - ACTIONS(5510), 1, - sym_filesize_unit, - ACTIONS(5512), 1, - sym_duration_unit, - STATE(2366), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2411), 1, sym_comment, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5492), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1429), 8, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - ACTIONS(1441), 42, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [52070] = 21, - ACTIONS(3), 1, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5288), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5290), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [55816] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5486), 1, - anon_sym_and, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - ACTIONS(5496), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5421), 1, sym__newline, - ACTIONS(5498), 1, - anon_sym_xor, - STATE(2367), 1, + STATE(2412), 1, sym_comment, - STATE(2377), 1, + STATE(2508), 1, aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5403), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271205,7 +279726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 20, + ACTIONS(5361), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271217,7 +279738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271226,18 +279749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52172] = 4, - ACTIONS(3), 1, + [55908] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2368), 1, + ACTIONS(5430), 1, + aux_sym_cmd_identifier_token41, + STATE(2413), 1, sym_comment, - ACTIONS(2369), 14, - sym__newline, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2097), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271246,7 +279765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2371), 43, + ACTIONS(2101), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271257,31 +279778,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - aux_sym_record_entry_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271290,52 +279814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52240] = 18, - ACTIONS(3), 1, + [55978] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2369), 1, + ACTIONS(5430), 1, + aux_sym_cmd_identifier_token41, + STATE(2414), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5340), 8, + ACTIONS(2105), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271344,8 +279830,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 23, + ACTIONS(2107), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56048] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5415), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5421), 1, sym__newline, + STATE(2415), 1, + sym_comment, + STATE(2514), 1, + aux_sym_shebang_repeat1, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5359), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5361), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271357,9 +279946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271368,26 +279956,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52336] = 8, - ACTIONS(3), 1, + [56142] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + ACTIONS(5387), 1, + sym__newline, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2365), 1, aux_sym_shebang_repeat1, - STATE(2370), 1, + STATE(2416), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5332), 11, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271396,8 +280005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 39, - sym__newline, + ACTIONS(5298), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271409,25 +280017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271436,54 +280030,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52412] = 19, + [56230] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - ACTIONS(5500), 1, + ACTIONS(5071), 1, + aux_sym_cmd_identifier_token37, + STATE(2417), 1, + sym_comment, + ACTIONS(1525), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1537), 48, + ts_builtin_sym_end, sym__newline, - STATE(2371), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56300] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5415), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(5428), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2418), 1, sym_comment, - STATE(2477), 1, + STATE(2517), 1, aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5344), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271492,7 +280152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 22, + ACTIONS(5361), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271504,9 +280164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271515,45 +280173,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52510] = 15, - ACTIONS(3), 1, + [56396] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5479), 1, + ACTIONS(5421), 1, sym__newline, - STATE(2372), 1, + STATE(2419), 1, sym_comment, - STATE(2381), 1, + STATE(2520), 1, aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5403), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271562,7 +280212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 27, + ACTIONS(5361), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271574,14 +280224,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56478] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2420), 1, + sym_comment, + ACTIONS(3593), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3591), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271590,54 +280308,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52600] = 19, - ACTIONS(3), 1, + [56546] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5430), 1, - anon_sym_and, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2373), 1, + ACTIONS(5402), 1, + sym__newline, + STATE(2421), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5340), 8, + STATE(2476), 1, + aux_sym_shebang_repeat1, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271646,8 +280347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 22, - sym__newline, + ACTIONS(5357), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271659,8 +280359,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271669,28 +280379,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52698] = 9, - ACTIONS(3), 1, + [56628] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5421), 1, sym__newline, - STATE(2374), 1, + STATE(2422), 1, sym_comment, - STATE(2440), 1, + STATE(2526), 1, aux_sym_shebang_repeat1, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5336), 11, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271699,7 +280411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 38, + ACTIONS(5361), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271711,25 +280423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271738,56 +280449,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52776] = 20, - ACTIONS(3), 1, + [56708] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5486), 1, - anon_sym_and, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - ACTIONS(5500), 1, - sym__newline, - STATE(2312), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2375), 1, + STATE(2423), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5344), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271796,7 +280499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 21, + ACTIONS(5290), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271808,8 +280511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271818,54 +280523,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52876] = 19, - ACTIONS(3), 1, + [56796] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(2903), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5314), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5316), 1, - sym__newline, - STATE(2376), 1, - sym_comment, - STATE(2612), 1, - aux_sym_command_list_repeat1, - STATE(2784), 1, - aux_sym_shebang_repeat1, - STATE(5676), 1, + ACTIONS(5337), 1, + anon_sym_DASH_DASH, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(6949), 1, + STATE(2424), 1, + sym_comment, + STATE(2811), 1, + aux_sym_decl_def_repeat1, + STATE(2997), 1, + sym_long_flag, + STATE(6632), 1, sym__command_name, - STATE(7212), 1, + STATE(7482), 1, sym__val_number_decimal, - STATE(7535), 1, - sym_cmd_identifier, - STATE(7536), 1, - sym_val_string, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(2905), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5308), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5312), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5310), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -271897,56 +280602,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [52974] = 20, - ACTIONS(3), 1, + [56894] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5430), 1, - anon_sym_and, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - ACTIONS(5450), 1, - anon_sym_xor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2377), 1, + ACTIONS(5224), 1, + sym__newline, + STATE(2425), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5340), 8, + ACTIONS(5231), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271955,8 +280618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 21, - sym__newline, + ACTIONS(5227), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271968,7 +280630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, + aux_sym_ctrl_match_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271977,58 +280639,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53074] = 21, - ACTIONS(3), 1, + ACTIONS(5229), 28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [56966] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5486), 1, - anon_sym_and, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - ACTIONS(5496), 1, + ACTIONS(5402), 1, sym__newline, - ACTIONS(5498), 1, - anon_sym_xor, - STATE(2313), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2423), 1, aux_sym_shebang_repeat1, - STATE(2378), 1, + STATE(2426), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5344), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272037,7 +280719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 20, + ACTIONS(5357), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272049,7 +280731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272058,117 +280743,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53176] = 19, - ACTIONS(3), 1, + [57056] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3393), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, - anon_sym_DASH_DASH, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, sym__str_double_quotes, - STATE(2379), 1, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(2427), 1, sym_comment, - STATE(2439), 1, - aux_sym_decl_def_repeat1, - STATE(2879), 1, - sym_long_flag, - STATE(6841), 1, - sym__command_name, - STATE(7158), 1, + STATE(2941), 1, sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, + sym__expr_binary_expression, + STATE(5890), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [53274] = 13, - ACTIONS(3), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [57190] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5387), 1, + sym__newline, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2366), 1, aux_sym_shebang_repeat1, - STATE(2380), 1, + STATE(2428), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5332), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272177,8 +280891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 32, - sym__newline, + ACTIONS(5298), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272190,18 +280903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272210,43 +280915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53360] = 14, + [57280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2381), 1, + ACTIONS(4932), 1, + aux_sym_cmd_identifier_token37, + STATE(2429), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5340), 8, + ACTIONS(2131), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272255,7 +280931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 28, + ACTIONS(2133), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272267,15 +280943,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272284,111 +280980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53448] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5514), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5516), 1, - aux_sym_unquoted_token2, - STATE(2382), 1, - sym_comment, - ACTIONS(2927), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - aux_sym__val_number_decimal_token1, - ACTIONS(2925), 48, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [53520] = 15, + [57350] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5500), 1, - sym__newline, - STATE(2314), 1, - aux_sym_shebang_repeat1, - STATE(2383), 1, + ACTIONS(4932), 1, + aux_sym_cmd_identifier_token37, + STATE(2430), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5344), 8, + ACTIONS(2089), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272397,7 +280996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 27, + ACTIONS(2093), 48, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272408,15 +281008,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272425,16 +281045,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53610] = 5, - ACTIONS(121), 1, + [57420] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5026), 1, - aux_sym_cmd_identifier_token37, - STATE(2384), 1, + STATE(2431), 1, sym_comment, - ACTIONS(1441), 25, - ts_builtin_sym_end, + ACTIONS(1006), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1008), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272445,11 +281071,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272458,49 +281109,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(1429), 31, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [53680] = 4, - ACTIONS(3), 1, + [57488] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2385), 1, + ACTIONS(5402), 1, + sym__newline, + STATE(2432), 1, sym_comment, - ACTIONS(5237), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2485), 1, + aux_sym_shebang_repeat1, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272509,8 +281141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5239), 44, - sym__newline, + ACTIONS(5357), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272522,30 +281153,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272554,34 +281179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53748] = 12, - ACTIONS(3), 1, + [57568] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5518), 1, - sym__newline, - STATE(2327), 1, - aux_sym_shebang_repeat1, - STATE(2386), 1, + ACTIONS(5432), 1, + aux_sym_cmd_identifier_token41, + STATE(2433), 1, sym_comment, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5350), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(2097), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272590,7 +281195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 35, + ACTIONS(2101), 48, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272601,23 +281207,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272626,31 +281244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53832] = 11, - ACTIONS(3), 1, + [57638] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5479), 1, - sym__newline, - STATE(2387), 1, + ACTIONS(5432), 1, + aux_sym_cmd_identifier_token41, + STATE(2434), 1, sym_comment, - STATE(2391), 1, - aux_sym_shebang_repeat1, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5403), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(2105), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272659,7 +281260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 37, + ACTIONS(2107), 48, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272670,25 +281272,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272697,40 +281309,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53914] = 14, - ACTIONS(3), 1, + [57708] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - STATE(2388), 1, + STATE(2435), 1, sym_comment, - STATE(2442), 1, - aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5336), 8, + ACTIONS(1778), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272739,7 +281324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 31, + ACTIONS(1780), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272751,18 +281336,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272771,29 +281373,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54002] = 10, - ACTIONS(3), 1, + [57776] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2389), 1, + STATE(2436), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5332), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(1770), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272802,8 +281388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 38, - sym__newline, + ACTIONS(1772), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272815,24 +281400,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272841,28 +281437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54082] = 9, - ACTIONS(3), 1, + [57844] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - STATE(2370), 1, - aux_sym_shebang_repeat1, - STATE(2390), 1, + STATE(2437), 1, sym_comment, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5350), 11, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, + ACTIONS(2315), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272871,7 +281452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 38, + ACTIONS(2317), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272883,25 +281464,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272910,29 +281501,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54160] = 10, - ACTIONS(3), 1, + [57912] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2391), 1, + STATE(2438), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5340), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272941,8 +281553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 38, - sym__newline, + ACTIONS(5290), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272954,24 +281565,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272980,40 +281576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54240] = 14, - ACTIONS(3), 1, + [58002] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5518), 1, - sym__newline, - STATE(2380), 1, - aux_sym_shebang_repeat1, - STATE(2392), 1, + STATE(2439), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5350), 8, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273022,7 +281593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 31, + ACTIONS(3601), 47, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273034,18 +281606,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273054,31 +281641,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54328] = 11, - ACTIONS(3), 1, + [58072] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - STATE(2335), 1, - aux_sym_shebang_repeat1, - STATE(2393), 1, + STATE(2440), 1, sym_comment, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5336), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273087,7 +281663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 37, + ACTIONS(3601), 43, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273099,24 +281676,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273125,31 +281707,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54410] = 11, - ACTIONS(3), 1, + [58144] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5500), 1, - sym__newline, - STATE(2317), 1, - aux_sym_shebang_repeat1, - STATE(2394), 1, + STATE(2441), 1, sym_comment, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5344), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5438), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273158,7 +281732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 37, + ACTIONS(3601), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273170,24 +281745,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273196,24 +281774,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54492] = 7, - ACTIONS(3), 1, + [58218] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - STATE(2395), 1, + STATE(2442), 1, sym_comment, - STATE(2402), 1, - aux_sym_shebang_repeat1, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5350), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5438), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5440), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5442), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5444), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273222,7 +281814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 40, + ACTIONS(3601), 29, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273234,27 +281827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273263,19 +281844,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54566] = 5, - ACTIONS(3), 1, + [58298] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4781), 1, - aux_sym_unquoted_token6, - STATE(2396), 1, + STATE(2443), 1, sym_comment, - ACTIONS(1429), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5438), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5440), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5446), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5442), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5444), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273284,8 +281887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1441), 43, - ts_builtin_sym_end, + ACTIONS(3601), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273297,29 +281899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273328,54 +281915,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54636] = 19, - ACTIONS(3), 1, + [58380] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - ACTIONS(5518), 1, - sym__newline, - STATE(2397), 1, + ACTIONS(5448), 1, + aux_sym_expr_binary_token13, + STATE(2444), 1, sym_comment, - STATE(2436), 1, - aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5350), 8, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5438), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5440), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5446), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5442), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5444), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273384,7 +281960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 22, + ACTIONS(3601), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273396,9 +281973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_RBRACE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273407,46 +281987,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54734] = 15, - ACTIONS(3), 1, + [58464] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2398), 1, + ACTIONS(5448), 1, + aux_sym_expr_binary_token13, + ACTIONS(5450), 1, + aux_sym_expr_binary_token14, + STATE(2445), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5340), 8, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5440), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5446), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5442), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5444), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273455,7 +282034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 26, + ACTIONS(3601), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273468,12 +282047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273482,135 +282060,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54824] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, - anon_sym_DASH_DASH, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2399), 1, - sym_comment, - STATE(2727), 1, - aux_sym_decl_def_repeat1, - STATE(2879), 1, - sym_long_flag, - STATE(6885), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [54922] = 20, - ACTIONS(3), 1, + [58550] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5486), 1, - anon_sym_and, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - ACTIONS(5518), 1, - sym__newline, - STATE(2325), 1, - aux_sym_shebang_repeat1, - STATE(2400), 1, + ACTIONS(5448), 1, + aux_sym_expr_binary_token13, + ACTIONS(5450), 1, + aux_sym_expr_binary_token14, + ACTIONS(5452), 1, + aux_sym_expr_binary_token15, + STATE(2446), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5350), 8, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5438), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5440), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5446), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5442), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5444), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273619,7 +282109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 21, + ACTIONS(3601), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273631,8 +282122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, + anon_sym_RBRACE, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273641,48 +282134,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55022] = 16, - ACTIONS(3), 1, + [58638] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5500), 1, - sym__newline, - STATE(2319), 1, - aux_sym_shebang_repeat1, - STATE(2401), 1, + ACTIONS(5448), 1, + aux_sym_expr_binary_token13, + ACTIONS(5450), 1, + aux_sym_expr_binary_token14, + ACTIONS(5452), 1, + aux_sym_expr_binary_token15, + ACTIONS(5454), 1, + aux_sym_expr_binary_token16, + STATE(2447), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5344), 8, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5438), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5440), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5446), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5442), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5444), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273691,7 +282185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 25, + ACTIONS(3601), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273703,12 +282198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273717,22 +282209,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55114] = 6, - ACTIONS(3), 1, + [58728] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2402), 1, + ACTIONS(5448), 1, + aux_sym_expr_binary_token13, + ACTIONS(5450), 1, + aux_sym_expr_binary_token14, + ACTIONS(5452), 1, + aux_sym_expr_binary_token15, + ACTIONS(5454), 1, + aux_sym_expr_binary_token16, + ACTIONS(5456), 1, + aux_sym_expr_binary_token17, + STATE(2448), 1, sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5332), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5438), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5440), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5446), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5442), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5444), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273741,7 +282262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 41, + ACTIONS(3601), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273754,27 +282275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273783,46 +282285,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55186] = 15, - ACTIONS(3), 1, + [58820] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2403), 1, + STATE(2449), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5332), 8, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5440), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5444), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273831,7 +282320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 26, + ACTIONS(3601), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273844,12 +282333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273858,58 +282354,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55276] = 21, - ACTIONS(3), 1, + [58898] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5486), 1, - anon_sym_and, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - ACTIONS(5496), 1, - sym__newline, - ACTIONS(5498), 1, - anon_sym_xor, - STATE(2344), 1, - aux_sym_shebang_repeat1, - STATE(2404), 1, + STATE(2450), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5350), 8, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5438), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5440), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273918,7 +282382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 20, + ACTIONS(3601), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273930,7 +282395,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273939,48 +282422,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55378] = 16, - ACTIONS(3), 1, + [58974] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5379), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2405), 1, + STATE(2451), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5340), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273989,8 +282476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 25, - sym__newline, + ACTIONS(5282), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274002,11 +282488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274015,16 +282498,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55470] = 5, - ACTIONS(121), 1, + [59066] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5026), 1, - aux_sym_cmd_identifier_token37, - STATE(2406), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5337), 1, + anon_sym_DASH_DASH, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2387), 1, + aux_sym_decl_def_repeat1, + STATE(2452), 1, sym_comment, - ACTIONS(2075), 25, - ts_builtin_sym_end, + STATE(2997), 1, + sym_long_flag, + STATE(6474), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [59164] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2453), 1, + sym_comment, + ACTIONS(2251), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2253), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274035,11 +282603,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274048,77 +282641,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2073), 31, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [55540] = 15, - ACTIONS(3), 1, + [59232] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5518), 1, + ACTIONS(5402), 1, sym__newline, - STATE(2349), 1, + STATE(2391), 1, aux_sym_shebang_repeat1, - STATE(2407), 1, + STATE(2454), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5350), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274127,7 +282685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 27, + ACTIONS(5357), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274139,14 +282697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274155,50 +282713,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55630] = 17, - ACTIONS(3), 1, + [59316] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5500), 1, + ACTIONS(5387), 1, sym__newline, - STATE(2320), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2368), 1, aux_sym_shebang_repeat1, - STATE(2408), 1, + STATE(2455), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5344), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274207,7 +282766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 24, + ACTIONS(5298), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274219,11 +282778,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274232,48 +282789,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55724] = 16, - ACTIONS(3), 1, + [59408] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5479), 1, - sym__newline, - STATE(2398), 1, - aux_sym_shebang_repeat1, - STATE(2409), 1, + STATE(2456), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5403), 8, + ACTIONS(2303), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274282,7 +282804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 25, + ACTIONS(2305), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274294,12 +282816,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274308,50 +282853,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55816] = 17, - ACTIONS(3), 1, + [59476] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2410), 1, + STATE(2457), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5340), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274360,8 +282873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 24, - sym__newline, + ACTIONS(5282), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274373,10 +282885,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274385,48 +282919,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55910] = 16, - ACTIONS(3), 1, + [59548] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - STATE(2336), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5379), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2411), 1, + STATE(2458), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5336), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274435,7 +282973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 25, + ACTIONS(5290), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274447,12 +282985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274461,52 +282995,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56002] = 18, - ACTIONS(3), 1, + [59640] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5500), 1, - sym__newline, - STATE(2322), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2412), 1, + STATE(2459), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5344), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274515,7 +283020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 23, + ACTIONS(5282), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274527,10 +283032,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274539,31 +283062,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56098] = 11, - ACTIONS(3), 1, + [59714] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5518), 1, + ACTIONS(5387), 1, sym__newline, - STATE(2389), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5415), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2369), 1, aux_sym_shebang_repeat1, - STATE(2413), 1, + STATE(2460), 1, sym_comment, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5350), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274572,7 +283117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 37, + ACTIONS(5298), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274584,24 +283129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274610,91 +283139,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56180] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3303), 1, - anon_sym_DASH, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, + [59808] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(3329), 1, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(3333), 1, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, - anon_sym_DOLLAR, - ACTIONS(5151), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(2414), 1, - sym_comment, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, sym__str_double_quotes, - STATE(3641), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(3643), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(4051), 1, + STATE(1907), 1, + sym__val_number, + STATE(2461), 1, + sym_comment, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, sym__expr_binary_expression, - STATE(5837), 1, + STATE(5858), 1, sym__expression, - ACTIONS(3325), 2, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5139), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3967), 3, + STATE(1690), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3321), 6, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, + STATE(1734), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -274707,46 +283236,54 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56314] = 16, - ACTIONS(3), 1, + [59942] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5385), 1, - anon_sym_DOLLAR2, - ACTIONS(5521), 1, - anon_sym_RBRACK, - ACTIONS(5523), 1, - anon_sym_DOLLAR, - ACTIONS(5525), 1, - anon_sym_LPAREN2, - ACTIONS(5527), 1, - anon_sym_DOT, - ACTIONS(5529), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5531), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5533), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5535), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5537), 1, - aux_sym__unquoted_in_list_token6, - STATE(2415), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5379), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5381), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2462), 1, sym_comment, - STATE(2843), 1, - sym__immediate_decimal, - STATE(2987), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(5381), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274755,26 +283292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5395), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5290), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274783,139 +283313,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56406] = 16, - ACTIONS(3), 1, + [60036] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5385), 1, - anon_sym_DOLLAR2, - ACTIONS(5523), 1, + ACTIONS(269), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, - anon_sym_LPAREN2, - ACTIONS(5527), 1, - anon_sym_DOT, - ACTIONS(5529), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5531), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5533), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5535), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5537), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(5539), 1, - anon_sym_RBRACK, - STATE(2416), 1, - sym_comment, - STATE(2843), 1, - sym__immediate_decimal, - STATE(2987), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(5381), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3225), 1, + aux_sym_expr_unary_token1, + ACTIONS(3229), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, + ACTIONS(3233), 1, aux_sym__val_number_decimal_token3, - anon_sym_0b, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(5351), 1, + anon_sym_DOT_DOT, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(2463), 1, + sym_comment, + STATE(3727), 1, + sym_val_range, + STATE(3730), 1, + sym__val_number_decimal, + STATE(3758), 1, + sym_val_variable, + STATE(3761), 1, + sym_expr_parenthesized, + STATE(4067), 1, + sym__expr_binary_expression, + STATE(7555), 1, + sym__expression, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5395), 26, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(5353), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [60170] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(2464), 1, + sym_comment, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, + sym__expr_binary_expression, + STATE(5860), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [56498] = 5, - ACTIONS(121), 1, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [60304] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_cmd_identifier_token37, - STATE(2417), 1, + STATE(2465), 1, sym_comment, - ACTIONS(2075), 25, + ACTIONS(2311), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2073), 31, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274924,15 +283522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - [56568] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_cmd_identifier_token37, - STATE(2418), 1, - sym_comment, - ACTIONS(2081), 25, - sym__newline, + ACTIONS(2313), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274943,12 +283533,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274957,82 +283571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2077), 31, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [56638] = 17, - ACTIONS(3), 1, + [60372] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5479), 1, - sym__newline, - STATE(2405), 1, - aux_sym_shebang_repeat1, - STATE(2419), 1, + STATE(2466), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5403), 8, + ACTIONS(2311), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275041,7 +283586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 24, + ACTIONS(2313), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275053,11 +283598,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275066,19 +283635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56732] = 5, - ACTIONS(3), 1, + [60440] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5541), 1, - aux_sym_cmd_identifier_token41, - STATE(2420), 1, + ACTIONS(4920), 1, + aux_sym_unquoted_token2, + STATE(2467), 1, sym_comment, - ACTIONS(2155), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1525), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275087,7 +283651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2159), 43, + ACTIONS(1537), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275099,30 +283664,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275131,113 +283700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56802] = 5, - ACTIONS(3), 1, + [60510] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5541), 1, - aux_sym_cmd_identifier_token41, - STATE(2421), 1, + STATE(2468), 1, sym_comment, - ACTIONS(2163), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2165), 43, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [56872] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5518), 1, + ACTIONS(2271), 9, sym__newline, - STATE(2403), 1, - aux_sym_shebang_repeat1, - STATE(2422), 1, - sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5350), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275246,7 +283715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 25, + ACTIONS(2273), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275258,12 +283727,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275272,17 +283764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56964] = 4, - ACTIONS(3), 1, + [60578] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2423), 1, + STATE(2469), 1, sym_comment, - ACTIONS(1216), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2241), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275291,8 +283779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1220), 44, - sym__newline, + ACTIONS(2243), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275304,30 +283791,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275336,43 +283828,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57032] = 16, - ACTIONS(3), 1, + [60646] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5385), 1, - anon_sym_DOLLAR2, - ACTIONS(5523), 1, + ACTIONS(5458), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, + ACTIONS(5460), 1, anon_sym_LPAREN2, - ACTIONS(5527), 1, + ACTIONS(5462), 1, anon_sym_DOT, - ACTIONS(5529), 1, + ACTIONS(5464), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5531), 1, + ACTIONS(5466), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5533), 1, + ACTIONS(5468), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5535), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5537), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(5543), 1, - anon_sym_RBRACK, - STATE(2424), 1, + ACTIONS(5470), 1, + aux_sym__immediate_decimal_token5, + STATE(2470), 1, sym_comment, - STATE(2843), 1, + STATE(2847), 1, sym__immediate_decimal, - STATE(2987), 2, + STATE(2905), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(5381), 18, + ACTIONS(1413), 19, anon_sym_LPAREN, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -275384,17 +283871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5395), 26, + aux_sym_unquoted_token1, + ACTIONS(1427), 28, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, anon_sym_COMMA, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_token1, @@ -275412,50 +283901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57124] = 17, - ACTIONS(3), 1, + [60732] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5518), 1, - sym__newline, - STATE(2425), 1, + STATE(2471), 1, sym_comment, - STATE(2431), 1, - aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5350), 8, + ACTIONS(2263), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275464,7 +283916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 24, + ACTIONS(2265), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275476,231 +283928,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [57218] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3203), 1, - anon_sym_LPAREN, - ACTIONS(3205), 1, - anon_sym_DOLLAR, - ACTIONS(5407), 1, - anon_sym_DOT_DOT, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(2426), 1, - sym_comment, - STATE(3668), 1, - sym__val_number_decimal, - STATE(3670), 1, - sym_val_range, - STATE(3719), 1, - sym_expr_parenthesized, - STATE(3742), 1, - sym_val_variable, - STATE(4049), 1, - sym__expr_binary_expression, - STATE(7682), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(435), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5255), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2036), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1906), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [57352] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3203), 1, - anon_sym_LPAREN, - ACTIONS(3205), 1, - anon_sym_DOLLAR, - ACTIONS(5407), 1, - anon_sym_DOT_DOT, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(2427), 1, - sym_comment, - STATE(3668), 1, - sym__val_number_decimal, - STATE(3670), 1, - sym_val_range, - STATE(3719), 1, - sym_expr_parenthesized, - STATE(3742), 1, - sym_val_variable, - STATE(4049), 1, - sym__expr_binary_expression, - STATE(7530), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(435), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5255), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2036), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1906), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [57486] = 7, - ACTIONS(3), 1, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [60800] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - STATE(2316), 1, - aux_sym_shebang_repeat1, - STATE(2428), 1, + STATE(2472), 1, sym_comment, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5336), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2295), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275709,7 +283980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 40, + ACTIONS(2297), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275721,27 +283992,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275750,52 +284029,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57560] = 18, - ACTIONS(3), 1, + [60868] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5518), 1, - sym__newline, - STATE(2429), 1, - sym_comment, - STATE(2476), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5415), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(5428), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2371), 1, aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5350), 8, + STATE(2473), 1, + sym_comment, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275804,7 +284086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5348), 23, + ACTIONS(5298), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275816,10 +284098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275828,32 +284107,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57656] = 11, - ACTIONS(3), 1, + [60964] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2430), 1, + STATE(2474), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5300), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275862,8 +284135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 36, - sym__newline, + ACTIONS(5282), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275875,22 +284147,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275899,48 +284175,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57738] = 16, - ACTIONS(3), 1, + [61040] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2431), 1, + STATE(2475), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5332), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275949,8 +284195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 25, - sym__newline, + ACTIONS(5341), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275962,11 +284207,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275975,19 +284241,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57830] = 5, - ACTIONS(3), 1, + [61112] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5545), 1, - aux_sym_cmd_identifier_token41, - STATE(2432), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2476), 1, sym_comment, - ACTIONS(2155), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275996,9 +284279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2159), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5290), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276009,29 +284290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276040,19 +284311,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57900] = 5, - ACTIONS(3), 1, + [61192] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5545), 1, - aux_sym_cmd_identifier_token41, - STATE(2433), 1, + ACTIONS(5472), 1, + sym__newline, + STATE(2457), 1, + aux_sym_shebang_repeat1, + STATE(2477), 1, sym_comment, - ACTIONS(2163), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5347), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276061,9 +284332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2165), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5349), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276074,29 +284343,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276105,19 +284378,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57970] = 5, - ACTIONS(3), 1, + [61266] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5547), 1, - anon_sym_LBRACK2, - STATE(2434), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2478), 1, sym_comment, - ACTIONS(2178), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276126,9 +284403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2182), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5341), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276139,29 +284414,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276170,149 +284445,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58040] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3303), 1, - anon_sym_DASH, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - anon_sym_0b, - ACTIONS(3329), 1, - anon_sym_DQUOTE, - ACTIONS(3333), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, - anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, - anon_sym_DOLLAR, - ACTIONS(5151), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(2435), 1, - sym_comment, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, - sym__str_double_quotes, - STATE(3641), 1, - sym__inter_single_quotes, - STATE(3643), 1, - sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, - sym__expr_unary_minus, - STATE(4051), 1, - sym__expr_binary_expression, - STATE(5817), 1, - sym__expression, - ACTIONS(3325), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3331), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5139), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3967), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3321), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3635), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [58174] = 18, - ACTIONS(3), 1, + [61340] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + ACTIONS(5387), 1, + sym__newline, + STATE(2373), 1, aux_sym_shebang_repeat1, - STATE(2436), 1, + STATE(2479), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5332), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276321,8 +284484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 23, - sym__newline, + ACTIONS(5298), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276334,9 +284496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276345,52 +284516,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58270] = 18, - ACTIONS(3), 1, + [61422] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5479), 1, + ACTIONS(5472), 1, sym__newline, - STATE(2410), 1, + STATE(2459), 1, aux_sym_shebang_repeat1, - STATE(2437), 1, + STATE(2480), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5403), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5347), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276399,7 +284542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5401), 23, + ACTIONS(5349), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276411,10 +284554,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276423,50 +284584,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58366] = 17, - ACTIONS(3), 1, + [61498] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - STATE(2337), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2438), 1, + STATE(2481), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5336), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276475,7 +284627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 24, + ACTIONS(5282), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276487,11 +284639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276500,105 +284655,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58460] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, - anon_sym_DASH_DASH, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2439), 1, - sym_comment, - STATE(2727), 1, - aux_sym_decl_def_repeat1, - STATE(2879), 1, - sym_long_flag, - STATE(6871), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [58558] = 8, - ACTIONS(3), 1, + [61580] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2440), 1, + STATE(2482), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5300), 11, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276607,8 +284683,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 39, + ACTIONS(5341), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [61656] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2483), 1, + sym_comment, + ACTIONS(2131), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2133), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276620,25 +284750,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276647,54 +284787,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58634] = 19, - ACTIONS(3), 1, + [61724] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym__newline, - ACTIONS(5457), 1, - anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - STATE(2318), 1, + STATE(2474), 1, aux_sym_shebang_repeat1, - STATE(2441), 1, + STATE(2484), 1, sym_comment, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5336), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5347), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276703,7 +284816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 22, + ACTIONS(5349), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276715,9 +284828,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276726,38 +284856,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58732] = 13, - ACTIONS(3), 1, + [61802] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2442), 1, + STATE(2485), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5300), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5288), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276766,8 +284887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 32, - sym__newline, + ACTIONS(5290), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276779,18 +284899,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276799,30 +284925,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58818] = 10, - ACTIONS(3), 1, + [61880] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - STATE(2443), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2486), 1, sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5549), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3457), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276831,8 +284971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 37, - sym__newline, + ACTIONS(5282), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276844,23 +284983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276869,24 +284997,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58898] = 7, - ACTIONS(3), 1, + [61964] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2444), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2487), 1, sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3457), 11, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276895,8 +285040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 40, - sym__newline, + ACTIONS(5341), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276908,26 +285052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276936,36 +285068,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58972] = 12, - ACTIONS(3), 1, + [62046] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - STATE(2445), 1, + ACTIONS(5387), 1, + sym__newline, + STATE(2375), 1, + aux_sym_shebang_repeat1, + STATE(2488), 1, sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5549), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5551), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5553), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3457), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276974,8 +285100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 33, - sym__newline, + ACTIONS(5298), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276987,19 +285112,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277008,20 +285138,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59056] = 5, - ACTIONS(3), 1, + [62126] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2446), 1, + ACTIONS(5472), 1, + sym__newline, + STATE(2481), 1, + aux_sym_shebang_repeat1, + STATE(2489), 1, sym_comment, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3457), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5347), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277030,8 +285182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 42, - sym__newline, + ACTIONS(5349), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277043,28 +285194,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277073,50 +285210,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59126] = 17, - ACTIONS(3), 1, + [62210] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - ACTIONS(5559), 1, - anon_sym_bit_DASHand, - ACTIONS(5561), 1, - anon_sym_bit_DASHxor, - ACTIONS(5563), 1, - anon_sym_bit_DASHor, - STATE(2447), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2490), 1, sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5549), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5551), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5557), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5553), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5555), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3457), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277125,8 +285256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 24, - sym__newline, + ACTIONS(5341), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277138,10 +285268,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277150,91 +285282,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59220] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, + [62294] = 37, + ACTIONS(217), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(219), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(221), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(223), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(233), 1, + ACTIONS(231), 1, sym_val_date, - ACTIONS(239), 1, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(389), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, anon_sym_DASH, - ACTIONS(423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(3185), 1, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, anon_sym_null, - ACTIONS(3203), 1, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(5113), 1, anon_sym_LPAREN, - ACTIONS(3205), 1, + ACTIONS(5115), 1, anon_sym_DOLLAR, - ACTIONS(5407), 1, + ACTIONS(5475), 1, anon_sym_DOT_DOT, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, + STATE(1668), 1, sym__str_double_quotes, - STATE(1934), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(1935), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(2037), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(2448), 1, + STATE(1907), 1, + sym__val_number, + STATE(2491), 1, sym_comment, - STATE(3668), 1, - sym__val_number_decimal, - STATE(3670), 1, + STATE(3727), 1, sym_val_range, - STATE(3719), 1, - sym_expr_parenthesized, - STATE(3742), 1, + STATE(3728), 1, + sym__val_number_decimal, + STATE(3755), 1, sym_val_variable, - STATE(4049), 1, + STATE(3781), 1, + sym_expr_parenthesized, + STATE(4048), 1, sym__expr_binary_expression, - STATE(7566), 1, + STATE(7817), 1, sym__expression, - ACTIONS(231), 2, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(435), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3183), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - ACTIONS(5255), 2, + ACTIONS(5477), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2036), 3, + STATE(1690), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(431), 6, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1906), 12, + STATE(1734), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -277247,91 +285379,164 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59354] = 37, - ACTIONS(3), 1, + [62428] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - aux_sym_ctrl_match_token1, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, + ACTIONS(5472), 1, + sym__newline, + STATE(2486), 1, + aux_sym_shebang_repeat1, + STATE(2492), 1, + sym_comment, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5347), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5349), 25, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [62514] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(233), 1, + ACTIONS(231), 1, sym_val_date, - ACTIONS(239), 1, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(389), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, anon_sym_DASH, - ACTIONS(423), 1, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token1, - ACTIONS(425), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token2, - ACTIONS(427), 1, - anon_sym_DOT2, - ACTIONS(429), 1, + ACTIONS(3393), 1, aux_sym__val_number_decimal_token3, - ACTIONS(433), 1, - anon_sym_DQUOTE, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3203), 1, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, anon_sym_LPAREN, - ACTIONS(3205), 1, + ACTIONS(5115), 1, anon_sym_DOLLAR, - ACTIONS(5407), 1, - anon_sym_DOT_DOT, - STATE(1624), 1, - sym__val_number, - STATE(1682), 1, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, sym__str_double_quotes, - STATE(1934), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(1935), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(2037), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(2449), 1, + STATE(1907), 1, + sym__val_number, + STATE(2493), 1, sym_comment, - STATE(3668), 1, + STATE(2941), 1, sym__val_number_decimal, - STATE(3670), 1, + STATE(3727), 1, sym_val_range, - STATE(3719), 1, - sym_expr_parenthesized, - STATE(3742), 1, - sym_val_variable, - STATE(4049), 1, + STATE(4050), 1, sym__expr_binary_expression, - STATE(7573), 1, + STATE(5894), 1, sym__expression, - ACTIONS(231), 2, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(435), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3183), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - ACTIONS(5255), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2036), 3, + STATE(1690), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(431), 6, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1906), 12, + STATE(1734), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -277344,52 +285549,119 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59488] = 18, - ACTIONS(3), 1, + [62648] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - ACTIONS(5559), 1, - anon_sym_bit_DASHand, - ACTIONS(5561), 1, - anon_sym_bit_DASHxor, - ACTIONS(5563), 1, - anon_sym_bit_DASHor, - ACTIONS(5565), 1, - anon_sym_and, - STATE(2450), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2494), 1, sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5549), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5551), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5557), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5553), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5555), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3457), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5339), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5341), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [62734] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2495), 1, + sym_comment, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277398,8 +285670,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 23, + ACTIONS(5282), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [62820] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5472), 1, sym__newline, + STATE(2495), 1, + aux_sym_shebang_repeat1, + STATE(2496), 1, + sym_comment, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5347), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5349), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277411,9 +285756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277422,20 +285769,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59584] = 5, - ACTIONS(3), 1, + [62908] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3225), 1, + aux_sym_expr_unary_token1, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(5351), 1, + anon_sym_DOT_DOT, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(2497), 1, + sym_comment, + STATE(3727), 1, + sym_val_range, + STATE(3730), 1, + sym__val_number_decimal, + STATE(3758), 1, + sym_val_variable, + STATE(3761), 1, + sym_expr_parenthesized, + STATE(4067), 1, + sym__expr_binary_expression, + STATE(7606), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5353), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [63042] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3225), 1, + aux_sym_expr_unary_token1, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(5351), 1, + anon_sym_DOT_DOT, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(2498), 1, + sym_comment, + STATE(3727), 1, + sym_val_range, + STATE(3730), 1, + sym__val_number_decimal, + STATE(3758), 1, + sym_val_variable, + STATE(3761), 1, + sym_expr_parenthesized, + STATE(4067), 1, + sym__expr_binary_expression, + STATE(7633), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5353), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [63176] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4675), 1, - aux_sym_record_entry_token1, - STATE(2451), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2499), 1, sym_comment, - ACTIONS(948), 14, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5339), 9, sym__newline, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277444,7 +286013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(950), 42, + ACTIONS(5341), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277455,30 +286024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277487,119 +286037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59654] = 5, - ACTIONS(3), 1, + [63264] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(964), 1, + ACTIONS(1019), 1, aux_sym_record_entry_token1, - STATE(2452), 1, + STATE(2500), 1, sym_comment, - ACTIONS(948), 14, + ACTIONS(1006), 9, sym__newline, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(950), 42, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [59724] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - ACTIONS(5559), 1, - anon_sym_bit_DASHand, - ACTIONS(5561), 1, - anon_sym_bit_DASHxor, - ACTIONS(5563), 1, - anon_sym_bit_DASHor, - ACTIONS(5565), 1, - anon_sym_and, - ACTIONS(5567), 1, - anon_sym_xor, - STATE(2453), 1, - sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5549), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5551), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5557), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5553), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5555), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3457), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277608,8 +286054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 22, - sym__newline, + ACTIONS(1008), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277620,9 +286065,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277631,54 +286102,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59822] = 19, - ACTIONS(3), 1, + [63334] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(2903), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(2939), 1, anon_sym_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5314), 1, + ACTIONS(5327), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5316), 1, + ACTIONS(5329), 1, sym__newline, - STATE(2454), 1, + STATE(2501), 1, sym_comment, - STATE(2598), 1, + STATE(2656), 1, aux_sym_command_list_repeat1, - STATE(2784), 1, + STATE(2899), 1, aux_sym_shebang_repeat1, - STATE(5676), 1, + STATE(5801), 1, sym__str_double_quotes, - STATE(7212), 1, - sym__val_number_decimal, - STATE(7334), 1, + STATE(7035), 1, sym__command_name, - STATE(7535), 1, + STATE(7263), 1, + sym__val_number_decimal, + STATE(7548), 1, sym_cmd_identifier, - STATE(7536), 1, + STATE(7691), 1, sym_val_string, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(2905), 2, + ACTIONS(2941), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5308), 5, + ACTIONS(5321), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5312), 5, + ACTIONS(5325), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5310), 31, + ACTIONS(5323), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277710,91 +286181,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [59920] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3303), 1, - anon_sym_DASH, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, + [63432] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(3329), 1, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(3333), 1, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, - anon_sym_DOLLAR, - ACTIONS(5151), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(2455), 1, - sym_comment, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, sym__str_double_quotes, - STATE(3641), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(3643), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(4051), 1, + STATE(1907), 1, + sym__val_number, + STATE(2502), 1, + sym_comment, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, sym__expr_binary_expression, - STATE(5869), 1, + STATE(5936), 1, sym__expression, - ACTIONS(3325), 2, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5139), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3967), 3, + STATE(1690), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3321), 6, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, + STATE(1734), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -277807,80 +286278,58 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60054] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2456), 1, - sym_comment, - ACTIONS(1368), 13, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [60122] = 5, - ACTIONS(121), 1, + [63566] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5026), 1, - aux_sym_cmd_identifier_token37, - STATE(2457), 1, - sym_comment, - ACTIONS(2081), 25, - ts_builtin_sym_end, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5472), 1, sym__newline, + STATE(2503), 1, + sym_comment, + STATE(2516), 1, + aux_sym_shebang_repeat1, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5347), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5349), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277891,11 +286340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277904,123 +286353,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2077), 31, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - [60192] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3303), 1, - anon_sym_DASH, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, + [63656] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(3329), 1, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(3333), 1, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, - anon_sym_DOLLAR, - ACTIONS(5151), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(2458), 1, - sym_comment, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, sym__str_double_quotes, - STATE(3641), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(3643), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(4051), 1, + STATE(1907), 1, + sym__val_number, + STATE(2504), 1, + sym_comment, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, sym__expr_binary_expression, - STATE(5829), 1, + STATE(5850), 1, sym__expression, - ACTIONS(3325), 2, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5139), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3967), 3, + STATE(1690), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3321), 6, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, + STATE(1734), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -278033,91 +286450,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60326] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3303), 1, - anon_sym_DASH, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, + [63790] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, anon_sym_0b, - ACTIONS(3329), 1, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(3333), 1, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3245), 1, anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, - anon_sym_DOLLAR, - ACTIONS(5151), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(2459), 1, - sym_comment, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, + anon_sym_LPAREN, + ACTIONS(5115), 1, + anon_sym_DOLLAR, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, sym__str_double_quotes, - STATE(3641), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(3643), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(4051), 1, + STATE(1907), 1, + sym__val_number, + STATE(2505), 1, + sym_comment, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, sym__expr_binary_expression, - STATE(5831), 1, + STATE(5854), 1, sym__expression, - ACTIONS(3325), 2, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5139), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3967), 3, + STATE(1690), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3321), 6, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, + STATE(1734), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -278130,162 +286547,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60460] = 11, - ACTIONS(3), 1, + [63924] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, + ACTIONS(397), 1, anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2460), 1, - sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5287), 10, - anon_sym_GT, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5285), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60542] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3297), 1, + ACTIONS(3219), 1, anon_sym_LBRACK, - ACTIONS(3303), 1, - anon_sym_DASH, - ACTIONS(3305), 1, + ACTIONS(3221), 1, aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(3387), 1, aux_sym_expr_unary_token1, - ACTIONS(3319), 1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3393), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - anon_sym_0b, - ACTIONS(3329), 1, - anon_sym_DQUOTE, - ACTIONS(3333), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, - anon_sym_null, - ACTIONS(5143), 1, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5113), 1, anon_sym_LPAREN, - ACTIONS(5145), 1, + ACTIONS(5115), 1, anon_sym_DOLLAR, - ACTIONS(5151), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(2461), 1, - sym_comment, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, + STATE(1540), 1, + sym_expr_parenthesized, + STATE(1541), 1, + sym_val_variable, + STATE(1668), 1, sym__str_double_quotes, - STATE(3641), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(3643), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(4051), 1, + STATE(1907), 1, + sym__val_number, + STATE(2506), 1, + sym_comment, + STATE(2941), 1, + sym__val_number_decimal, + STATE(3727), 1, + sym_val_range, + STATE(4050), 1, sym__expr_binary_expression, - STATE(5855), 1, + STATE(5844), 1, sym__expression, - ACTIONS(3325), 2, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3331), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5139), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3967), 3, + STATE(1690), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3321), 6, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, + STATE(1734), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -278298,18 +286644,45 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60676] = 4, - ACTIONS(3), 1, + [64058] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2462), 1, - sym_comment, - ACTIONS(1429), 14, + ACTIONS(5402), 1, sym__newline, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(2398), 1, + aux_sym_shebang_repeat1, + STATE(2507), 1, + sym_comment, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278318,7 +286691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1441), 43, + ACTIONS(5357), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278329,31 +286702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - aux_sym_record_entry_token1, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278362,26 +286717,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60744] = 8, - ACTIONS(3), 1, + [64144] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2463), 1, + STATE(2508), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5287), 11, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278390,8 +286769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 39, - sym__newline, + ACTIONS(5341), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278403,25 +286781,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278430,138 +286792,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60820] = 37, + [64234] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3303), 1, - anon_sym_DASH, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - anon_sym_0b, - ACTIONS(3329), 1, - anon_sym_DQUOTE, - ACTIONS(3333), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, - anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, + ACTIONS(1427), 1, + sym__entry_separator, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2746), 1, anon_sym_DOLLAR, - ACTIONS(5151), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(2464), 1, + ACTIONS(5479), 1, + anon_sym_LPAREN2, + ACTIONS(5481), 1, + anon_sym_DOT, + ACTIONS(5485), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5487), 1, + aux_sym__immediate_decimal_token5, + STATE(2509), 1, sym_comment, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, - sym__str_double_quotes, - STATE(3641), 1, - sym__inter_single_quotes, - STATE(3643), 1, - sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, + STATE(2804), 1, + sym__immediate_decimal, + ACTIONS(5483), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3008), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, - sym__expr_unary_minus, - STATE(4051), 1, - sym__expr_binary_expression, - STATE(5882), 1, - sym__expression, - ACTIONS(3325), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3331), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5139), 2, + ACTIONS(1413), 45, anon_sym_true, anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3967), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3321), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3635), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [60954] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - STATE(2465), 1, - sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5549), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5551), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5553), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5555), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3457), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278570,28 +286856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278600,117 +286864,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61040] = 13, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [64320] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(2466), 1, - sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5287), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5285), 32, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5472), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [61126] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - STATE(2467), 1, + STATE(2510), 1, sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5549), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5551), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5557), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5553), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5555), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3457), 8, + STATE(2524), 1, + aux_sym_shebang_repeat1, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5347), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278719,8 +286918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 27, - sym__newline, + ACTIONS(5349), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278732,13 +286930,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278747,46 +286941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61214] = 15, - ACTIONS(3), 1, + [64412] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - ACTIONS(5559), 1, - anon_sym_bit_DASHand, - STATE(2468), 1, + STATE(2511), 1, sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5549), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5551), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5557), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5553), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5555), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3457), 8, + ACTIONS(3487), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278795,7 +286955,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 26, + ACTIONS(3485), 49, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278807,13 +286968,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278822,48 +287005,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61304] = 16, - ACTIONS(3), 1, + [64480] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - ACTIONS(5559), 1, - anon_sym_bit_DASHand, - ACTIONS(5561), 1, - anon_sym_bit_DASHxor, - STATE(2469), 1, + STATE(2512), 1, sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5549), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5551), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5557), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5553), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5555), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3457), 8, + ACTIONS(1273), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278872,8 +287020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 25, - sym__newline, + ACTIONS(1277), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278885,11 +287032,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278898,230 +287069,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61396] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3297), 1, - anon_sym_LBRACK, - ACTIONS(3303), 1, - anon_sym_DASH, - ACTIONS(3305), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3309), 1, - aux_sym_expr_unary_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - anon_sym_0b, - ACTIONS(3329), 1, - anon_sym_DQUOTE, - ACTIONS(3333), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3335), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5141), 1, - anon_sym_null, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, - anon_sym_DOLLAR, - ACTIONS(5151), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5157), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5159), 1, - anon_sym_DOT2, - ACTIONS(5161), 1, - sym_val_date, - STATE(2470), 1, - sym_comment, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3638), 1, - sym__val_number, - STATE(3639), 1, - sym__str_double_quotes, - STATE(3641), 1, - sym__inter_single_quotes, - STATE(3643), 1, - sym__inter_double_quotes, - STATE(3670), 1, - sym_val_range, - STATE(3705), 1, - sym_val_variable, - STATE(3715), 1, - sym_expr_parenthesized, - STATE(3968), 1, - sym__expr_unary_minus, - STATE(4051), 1, - sym__expr_binary_expression, - STATE(5883), 1, - sym__expression, - ACTIONS(3325), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3331), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5139), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5153), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3967), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3321), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3635), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [61530] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, - anon_sym_DASH_DASH, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2471), 1, - sym_comment, - STATE(2473), 1, - aux_sym_decl_def_repeat1, - STATE(2879), 1, - sym_long_flag, - STATE(6814), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [61628] = 19, - ACTIONS(3), 1, + [64548] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, - anon_sym_DASH_DASH, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2472), 1, - sym_comment, - STATE(2474), 1, - aux_sym_decl_def_repeat1, - STATE(2879), 1, - sym_long_flag, - STATE(6828), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5302), 1, + aux_sym__immediate_decimal_token2, + STATE(2513), 1, + sym_comment, + ACTIONS(1473), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1475), 46, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279153,180 +287119,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [61726] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, - anon_sym_DASH_DASH, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2473), 1, - sym_comment, - STATE(2727), 1, - aux_sym_decl_def_repeat1, - STATE(2879), 1, - sym_long_flag, - STATE(6829), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [61824] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, anon_sym_DASH_DASH, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2474), 1, - sym_comment, - STATE(2727), 1, - aux_sym_decl_def_repeat1, - STATE(2879), 1, - sym_long_flag, - STATE(6833), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [61922] = 6, - ACTIONS(3), 1, + [64618] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5379), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2475), 1, + STATE(2514), 1, sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5287), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279335,8 +287188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 41, - sym__newline, + ACTIONS(5341), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279348,27 +287200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279377,50 +287210,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61994] = 17, - ACTIONS(3), 1, + [64710] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5415), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5472), 1, + sym__newline, + STATE(2451), 1, aux_sym_shebang_repeat1, - STATE(2476), 1, + STATE(2515), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5332), 8, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5347), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279429,8 +287265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5330), 24, - sym__newline, + ACTIONS(5349), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279442,10 +287277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279454,52 +287287,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62088] = 18, - ACTIONS(3), 1, + [64804] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2477), 1, + STATE(2516), 1, sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5287), 8, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5280), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279508,8 +287337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 23, - sym__newline, + ACTIONS(5282), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279521,9 +287349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279532,46 +287361,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62184] = 16, - ACTIONS(3), 1, + [64892] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5385), 1, - anon_sym_DOLLAR2, - ACTIONS(5523), 1, - anon_sym_DOLLAR, - ACTIONS(5525), 1, - anon_sym_LPAREN2, - ACTIONS(5527), 1, - anon_sym_DOT, - ACTIONS(5529), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5531), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5533), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5535), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5537), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(5569), 1, - anon_sym_RBRACK, - STATE(2478), 1, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5379), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5381), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2517), 1, sym_comment, - STATE(2843), 1, - sym__immediate_decimal, - STATE(2987), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(5381), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279580,26 +287417,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5395), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5341), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279608,17 +287438,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62276] = 4, - ACTIONS(3), 1, + [64986] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2479), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5415), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(5428), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2356), 1, + aux_sym_shebang_repeat1, + STATE(2518), 1, sym_comment, - ACTIONS(3447), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5347), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279627,9 +287495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3445), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5349), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279640,29 +287506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279671,17 +287516,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62343] = 4, - ACTIONS(3), 1, + [65082] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2480), 1, + ACTIONS(5402), 1, + sym__newline, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2438), 1, + aux_sym_shebang_repeat1, + STATE(2519), 1, sym_comment, - ACTIONS(2184), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279690,9 +287569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2186), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5357), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279703,29 +287580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279734,17 +287592,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62410] = 4, - ACTIONS(3), 1, + [65174] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2481), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2520), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279753,9 +287630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5341), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279766,29 +287641,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279797,50 +287662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62477] = 17, - ACTIONS(3), 1, + [65254] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - ACTIONS(5591), 1, - anon_sym_bit_DASHand, - ACTIONS(5593), 1, - anon_sym_bit_DASHxor, - ACTIONS(5595), 1, - anon_sym_bit_DASHor, - STATE(2482), 1, + STATE(2521), 1, sym_comment, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5581), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5589), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5575), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5579), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3457), 8, + ACTIONS(3375), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279849,7 +287676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 23, + ACTIONS(3373), 49, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279862,9 +287689,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279873,17 +287726,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62570] = 4, - ACTIONS(3), 1, + [65322] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2483), 1, + ACTIONS(5472), 1, + sym__newline, + STATE(2358), 1, + aux_sym_shebang_repeat1, + STATE(2522), 1, sym_comment, - ACTIONS(1820), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5347), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279892,9 +287765,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1822), 43, + ACTIONS(5349), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [65404] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5319), 1, + anon_sym_DOT, + STATE(2523), 1, + sym_comment, + STATE(2534), 1, + aux_sym_cell_path_repeat1, + STATE(2645), 1, + sym_path, + ACTIONS(951), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(953), 48, ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65478] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2524), 1, + sym_comment, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5280), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5282), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279905,29 +287927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279936,36 +287939,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62637] = 12, - ACTIONS(3), 1, + [65568] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5458), 1, anon_sym_DOLLAR, - ACTIONS(5599), 1, + ACTIONS(5460), 1, anon_sym_LPAREN2, - ACTIONS(5601), 1, - anon_sym_DOT, - ACTIONS(5603), 1, + ACTIONS(5464), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5605), 1, + ACTIONS(5466), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5607), 1, + ACTIONS(5468), 1, aux_sym__immediate_decimal_token4, - STATE(2484), 1, + ACTIONS(5470), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5489), 1, + anon_sym_DOT, + STATE(2525), 1, sym_comment, - STATE(2772), 1, + STATE(2902), 1, sym__immediate_decimal, - STATE(2849), 2, + STATE(2901), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1449), 19, + ACTIONS(1431), 19, anon_sym_LPAREN, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -279978,7 +287983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1457), 28, + ACTIONS(1441), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -280007,17 +288012,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62720] = 4, - ACTIONS(3), 1, + [65654] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2485), 1, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(2526), 1, sym_comment, - ACTIONS(2361), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5339), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280026,9 +288043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2363), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5341), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280039,29 +288054,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280070,17 +288081,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62787] = 4, - ACTIONS(3), 1, + [65732] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2486), 1, + ACTIONS(5472), 1, + sym__newline, + STATE(2359), 1, + aux_sym_shebang_repeat1, + STATE(2527), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5347), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280089,9 +288113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5349), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280102,29 +288124,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280133,80 +288151,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62854] = 4, - ACTIONS(3), 1, + [65812] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2487), 1, + ACTIONS(5491), 1, + aux_sym__immediate_decimal_token2, + STATE(2528), 1, sym_comment, - ACTIONS(2365), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2367), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [62921] = 4, - ACTIONS(3), 1, + ACTIONS(1519), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1521), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65882] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2488), 1, + ACTIONS(5402), 1, + sym__newline, + STATE(2367), 1, + aux_sym_shebang_repeat1, + STATE(2529), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280215,9 +288237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5357), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280228,29 +288248,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280259,112 +288283,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62988] = 19, - ACTIONS(3), 1, + [65956] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - ACTIONS(5591), 1, - anon_sym_bit_DASHand, - ACTIONS(5593), 1, - anon_sym_bit_DASHxor, - ACTIONS(5595), 1, - anon_sym_bit_DASHor, - ACTIONS(5609), 1, - anon_sym_and, - ACTIONS(5611), 1, - anon_sym_xor, - STATE(2489), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5337), 1, + anon_sym_DASH_DASH, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2530), 1, sym_comment, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5581), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5589), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5575), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5579), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3457), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3449), 21, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [63085] = 9, - ACTIONS(3), 1, + STATE(2532), 1, + aux_sym_decl_def_repeat1, + STATE(2997), 1, + sym_long_flag, + STATE(6723), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66054] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(5492), 1, - aux_sym_unquoted_token5, - STATE(2490), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5337), 1, + anon_sym_DASH_DASH, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2531), 1, sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 10, + STATE(2533), 1, + aux_sym_decl_def_repeat1, + STATE(2997), 1, + sym_long_flag, + STATE(6745), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66152] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, + ACTIONS(5337), 1, + anon_sym_DASH_DASH, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2532), 1, + sym_comment, + STATE(2811), 1, + aux_sym_decl_def_repeat1, + STATE(2997), 1, + sym_long_flag, + STATE(6746), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66250] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(2925), 40, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5337), 1, + anon_sym_DASH_DASH, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2533), 1, + sym_comment, + STATE(2811), 1, + aux_sym_decl_def_repeat1, + STATE(2997), 1, + sym_long_flag, + STATE(6753), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66348] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5493), 1, + anon_sym_DOT, + STATE(2645), 1, + sym_path, + STATE(2534), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(955), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(957), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280401,21 +288654,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63162] = 4, - ACTIONS(3), 1, + [66420] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2491), 1, + ACTIONS(5402), 1, + sym__newline, + STATE(2374), 1, + aux_sym_shebang_repeat1, + STATE(2535), 1, sym_comment, - ACTIONS(3545), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280424,9 +288691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3543), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5357), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280437,29 +288702,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280468,17 +288733,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63229] = 4, - ACTIONS(3), 1, + [66496] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2492), 1, + ACTIONS(5402), 1, + sym__newline, + STATE(2379), 1, + aux_sym_shebang_repeat1, + STATE(2536), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280487,9 +288762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5357), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280500,29 +288773,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280531,41 +288802,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63296] = 13, - ACTIONS(3), 1, + [66574] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5573), 1, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(397), 1, anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - STATE(2493), 1, + ACTIONS(3219), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3225), 1, + aux_sym_expr_unary_token1, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3245), 1, + anon_sym_null, + ACTIONS(5351), 1, + anon_sym_DOT_DOT, + STATE(1668), 1, + sym__str_double_quotes, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(1907), 1, + sym__val_number, + STATE(2537), 1, sym_comment, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5589), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5575), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5579), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3457), 8, + STATE(3727), 1, + sym_val_range, + STATE(3730), 1, + sym__val_number_decimal, + STATE(3758), 1, + sym_val_variable, + STATE(3761), 1, + sym_expr_parenthesized, + STATE(4067), 1, + sym__expr_binary_expression, + STATE(7687), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5353), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1690), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1734), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [66708] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2538), 1, + sym_comment, + ACTIONS(2255), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280574,9 +288914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 28, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2257), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280587,87 +288925,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [63381] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3858), 1, - anon_sym_DOLLAR, - ACTIONS(5525), 1, - anon_sym_LPAREN2, - ACTIONS(5527), 1, - anon_sym_DOT, - ACTIONS(5529), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5531), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5533), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5535), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5537), 1, - aux_sym__unquoted_in_list_token6, - STATE(2494), 1, - sym_comment, - STATE(2843), 1, - sym__immediate_decimal, - STATE(2987), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(5381), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5395), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280676,17 +288963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63468] = 4, - ACTIONS(3), 1, + [66776] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2495), 1, + STATE(2539), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2340), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280695,7 +288977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(2342), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -280708,29 +288990,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280739,17 +289026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63535] = 4, - ACTIONS(3), 1, + [66843] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2496), 1, + STATE(2540), 1, sym_comment, - ACTIONS(3457), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280758,7 +289040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -280771,29 +289053,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280802,17 +289089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63602] = 4, - ACTIONS(3), 1, + [66910] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2497), 1, + STATE(2541), 1, sym_comment, - ACTIONS(2345), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1525), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280821,7 +289103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2347), 43, + ACTIONS(1537), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -280834,29 +289116,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280865,26 +289152,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63669] = 4, - ACTIONS(3), 1, + [66977] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, + ACTIONS(5506), 1, + aux_sym_expr_binary_token13, + ACTIONS(5508), 1, + aux_sym_expr_binary_token14, + ACTIONS(5510), 1, + aux_sym_expr_binary_token15, + ACTIONS(5512), 1, + aux_sym_expr_binary_token16, + ACTIONS(5514), 1, + aux_sym_expr_binary_token17, + STATE(2542), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5502), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5504), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5516), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5518), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3601), 21, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -280897,29 +289218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280928,27 +289227,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63736] = 9, - ACTIONS(3), 1, + [67068] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - STATE(2499), 1, + STATE(2543), 1, sym_comment, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3457), 10, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(976), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(978), 49, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67135] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2544), 1, + sym_comment, + ACTIONS(1770), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280957,7 +289304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 38, + ACTIONS(1772), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -280970,24 +289317,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280996,17 +289353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63813] = 4, - ACTIONS(3), 1, + [67202] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2500), 1, + STATE(2545), 1, sym_comment, - ACTIONS(1764), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281015,7 +289367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1766), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -281028,29 +289380,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281059,17 +289416,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63880] = 4, - ACTIONS(3), 1, + [67269] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2501), 1, + STATE(2546), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(962), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(964), 49, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67336] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2547), 1, + sym_comment, + ACTIONS(1006), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281078,7 +289493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(1008), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -281091,29 +289506,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281122,44 +289542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63947] = 14, - ACTIONS(3), 1, + [67403] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - STATE(2502), 1, + STATE(2548), 1, sym_comment, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5581), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5589), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5575), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5579), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3457), 8, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281168,7 +289556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 26, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -281181,12 +289569,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281195,17 +289605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64034] = 4, - ACTIONS(3), 1, + [67470] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2503), 1, + STATE(2549), 1, sym_comment, - ACTIONS(1804), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1879), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281214,7 +289619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1806), 43, + ACTIONS(1881), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -281227,29 +289632,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281258,17 +289668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64101] = 4, - ACTIONS(3), 1, + [67537] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2504), 1, + STATE(2550), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281277,7 +289682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -281290,29 +289695,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281321,46 +289731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64168] = 15, - ACTIONS(3), 1, + [67604] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - ACTIONS(5591), 1, - anon_sym_bit_DASHand, - STATE(2505), 1, + STATE(2551), 1, sym_comment, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5581), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5589), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5575), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5579), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3457), 8, + ACTIONS(2344), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281369,7 +289745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 25, + ACTIONS(2346), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -281382,11 +289758,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281395,17 +289794,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64257] = 4, - ACTIONS(3), 1, + [67671] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2506), 1, + STATE(2552), 1, sym_comment, - ACTIONS(2204), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5502), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5518), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281414,7 +289829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2206), 43, + ACTIONS(3601), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -281427,29 +289842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281458,226 +289862,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64324] = 12, + [67748] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(1441), 1, + sym__entry_separator, + ACTIONS(2746), 1, anon_sym_DOLLAR, - ACTIONS(5615), 1, + ACTIONS(5479), 1, anon_sym_LPAREN2, - ACTIONS(5617), 1, + ACTIONS(5520), 1, anon_sym_DOT, - ACTIONS(5619), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5621), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5623), 1, + ACTIONS(5524), 1, aux_sym__immediate_decimal_token4, - STATE(2507), 1, + ACTIONS(5526), 1, + aux_sym__immediate_decimal_token5, + STATE(2553), 1, sym_comment, - STATE(3124), 1, + STATE(2976), 1, sym__immediate_decimal, - STATE(3086), 2, + ACTIONS(5522), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2932), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1404), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1416), 28, + ACTIONS(1431), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64407] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2508), 1, - sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64474] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - ACTIONS(5591), 1, - anon_sym_bit_DASHand, - ACTIONS(5593), 1, - anon_sym_bit_DASHxor, - STATE(2509), 1, - sym_comment, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5581), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5589), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5575), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5579), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3457), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3449), 24, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64565] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2510), 1, - sym_comment, - ACTIONS(2329), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281686,42 +289924,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2331), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281730,17 +289932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64632] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [67831] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2511), 1, + STATE(2554), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281749,7 +289947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -281762,29 +289960,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281793,80 +289996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64699] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2512), 1, - sym_comment, - ACTIONS(916), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(918), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [64766] = 4, - ACTIONS(3), 1, + [67898] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2513), 1, + STATE(2555), 1, sym_comment, - ACTIONS(2349), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2131), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281875,7 +290010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2351), 43, + ACTIONS(2133), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -281888,29 +290023,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281919,17 +290059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64833] = 4, - ACTIONS(3), 1, + [67965] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2514), 1, + STATE(2556), 1, sym_comment, - ACTIONS(2394), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281938,7 +290073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2396), 43, + ACTIONS(2361), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -281951,29 +290086,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281982,82 +290122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64900] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5514), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5625), 1, - aux_sym_unquoted_token2, - STATE(2515), 1, - sym_comment, - ACTIONS(2927), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - aux_sym__val_number_decimal_token1, - ACTIONS(2925), 47, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [64971] = 4, - ACTIONS(3), 1, + [68032] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2516), 1, + STATE(2557), 1, sym_comment, - ACTIONS(2337), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1741), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282066,7 +290136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2339), 43, + ACTIONS(1745), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282079,29 +290149,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282110,17 +290185,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65038] = 4, - ACTIONS(3), 1, + [68099] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2517), 1, + STATE(2558), 1, sym_comment, - ACTIONS(2208), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5502), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282129,112 +290213,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2210), 43, + ACTIONS(3601), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65105] = 12, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1416), 1, - sym__entry_separator, - ACTIONS(1418), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2767), 1, - anon_sym_DOLLAR, - ACTIONS(5387), 1, - anon_sym_LPAREN2, - ACTIONS(5393), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5627), 1, - anon_sym_DOT, - STATE(2518), 1, - sym_comment, - STATE(2725), 1, - sym__immediate_decimal, - ACTIONS(5391), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2877), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1404), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282243,132 +290252,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [65188] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2519), 1, - sym_comment, - ACTIONS(920), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(922), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [65255] = 12, - ACTIONS(121), 1, + [68174] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1416), 1, - sym__entry_separator, - ACTIONS(1418), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5629), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR, - ACTIONS(5631), 1, + ACTIONS(5530), 1, anon_sym_LPAREN2, - ACTIONS(5633), 1, - anon_sym_DOT, - ACTIONS(5637), 1, + ACTIONS(5532), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5534), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token4, - STATE(2520), 1, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(2559), 1, sym_comment, - STATE(2882), 1, + STATE(3172), 1, sym__immediate_decimal, - ACTIONS(5635), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3043), 2, + STATE(3135), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1404), 45, + ACTIONS(1413), 19, + anon_sym_LPAREN, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1427), 28, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282377,18 +290323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [65338] = 4, - ACTIONS(3), 1, + [68257] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2521), 1, + STATE(2560), 1, sym_comment, - ACTIONS(2212), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2363), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282397,7 +290337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2214), 43, + ACTIONS(2365), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282410,29 +290350,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282441,81 +290386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65405] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5639), 1, - anon_sym_QMARK2, - STATE(2522), 1, - sym_comment, - ACTIONS(900), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(902), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [65474] = 4, - ACTIONS(3), 1, + [68324] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2523), 1, + STATE(2561), 1, sym_comment, - ACTIONS(2369), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2367), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282524,7 +290400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2371), 43, + ACTIONS(2369), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282537,29 +290413,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282568,17 +290449,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65541] = 4, - ACTIONS(3), 1, + [68391] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2524), 1, + STATE(2562), 1, sym_comment, - ACTIONS(2216), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282587,7 +290471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2218), 43, + ACTIONS(3601), 42, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282600,29 +290484,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282631,60 +290514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65608] = 12, - ACTIONS(121), 1, + [68462] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5395), 1, - sym__entry_separator, - ACTIONS(5397), 1, - aux_sym__unquoted_in_list_token5, - ACTIONS(5629), 1, - anon_sym_DOLLAR, - ACTIONS(5631), 1, - anon_sym_LPAREN2, - ACTIONS(5633), 1, - anon_sym_DOT, - ACTIONS(5637), 1, - aux_sym__immediate_decimal_token4, - STATE(2525), 1, + STATE(2563), 1, sym_comment, - STATE(2869), 1, - sym__immediate_decimal, - ACTIONS(5635), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3040), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(5381), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1899), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282693,6 +290528,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1901), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282701,18 +290577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [65691] = 4, - ACTIONS(3), 1, + [68529] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2526), 1, + STATE(2564), 1, sym_comment, - ACTIONS(2216), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3599), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282721,7 +290591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2218), 43, + ACTIONS(3177), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282734,29 +290604,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282765,59 +290640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65758] = 11, - ACTIONS(121), 1, + [68596] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, - sym__entry_separator, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(5643), 1, - anon_sym_DOT_DOT2, - ACTIONS(5647), 1, - sym_filesize_unit, - ACTIONS(5649), 1, - sym_duration_unit, - STATE(2527), 1, + STATE(2565), 1, sym_comment, - STATE(7534), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5397), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(5645), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282826,6 +290654,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(3199), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282834,18 +290703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [65839] = 4, - ACTIONS(3), 1, + [68663] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2528), 1, + STATE(2566), 1, sym_comment, - ACTIONS(2341), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2315), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282854,7 +290717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2343), 43, + ACTIONS(2317), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282867,29 +290730,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282898,17 +290766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65906] = 4, - ACTIONS(3), 1, + [68730] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2529), 1, + STATE(2567), 1, sym_comment, - ACTIONS(1429), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1835), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282917,7 +290780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1441), 43, + ACTIONS(1837), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282930,29 +290793,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282961,23 +290829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65973] = 5, - ACTIONS(3), 1, + [68797] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_QMARK2, - STATE(2530), 1, + STATE(2568), 1, sym_comment, - ACTIONS(906), 7, + ACTIONS(994), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(908), 48, - ts_builtin_sym_end, + anon_sym_DOT, + ACTIONS(996), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283017,25 +290882,22 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66042] = 4, - ACTIONS(3), 1, + [68864] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2531), 1, + STATE(2569), 1, sym_comment, - ACTIONS(2200), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2332), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283044,7 +290906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2202), 43, + ACTIONS(2334), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283057,29 +290919,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283088,36 +290955,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66109] = 12, - ACTIONS(3), 1, + [68931] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR, - ACTIONS(5615), 1, + ACTIONS(5530), 1, anon_sym_LPAREN2, - ACTIONS(5617), 1, - anon_sym_DOT, - ACTIONS(5619), 1, + ACTIONS(5532), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5621), 1, + ACTIONS(5534), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5623), 1, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token4, - STATE(2532), 1, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(2570), 1, sym_comment, - STATE(3037), 1, + STATE(3181), 1, sym__immediate_decimal, - STATE(3093), 2, + STATE(3128), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1423), 19, + ACTIONS(1443), 19, anon_sym_LPAREN, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -283130,7 +290997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1425), 28, + ACTIONS(1455), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -283159,17 +291026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66192] = 4, - ACTIONS(3), 1, + [69014] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2533), 1, + STATE(2571), 1, sym_comment, - ACTIONS(3509), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2295), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283178,7 +291040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3507), 43, + ACTIONS(2297), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283191,29 +291053,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283222,17 +291089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66259] = 4, - ACTIONS(3), 1, + [69081] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2534), 1, + STATE(2572), 1, sym_comment, - ACTIONS(1780), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1855), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283241,7 +291103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1782), 43, + ACTIONS(1857), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283254,29 +291116,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283285,17 +291152,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66326] = 4, - ACTIONS(3), 1, + [69148] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2535), 1, + ACTIONS(5506), 1, + aux_sym_expr_binary_token13, + ACTIONS(5508), 1, + aux_sym_expr_binary_token14, + STATE(2573), 1, sym_comment, - ACTIONS(2353), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5502), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5504), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5516), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5518), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3601), 24, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69233] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2574), 1, + sym_comment, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283304,7 +291238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2355), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283317,29 +291251,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283348,81 +291287,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66393] = 5, - ACTIONS(121), 1, + [69300] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5653), 1, - aux_sym__immediate_decimal_token2, - STATE(2536), 1, + STATE(2575), 1, sym_comment, - ACTIONS(1400), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1398), 49, + ACTIONS(986), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(988), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69367] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2576), 1, + sym_comment, + ACTIONS(990), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(992), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [66462] = 4, - ACTIONS(3), 1, + [69434] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2537), 1, + STATE(2577), 1, sym_comment, - ACTIONS(1788), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2371), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283431,7 +291427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1790), 43, + ACTIONS(2373), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283444,29 +291440,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283475,17 +291476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66529] = 4, - ACTIONS(3), 1, + [69501] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2538), 1, + STATE(2578), 1, sym_comment, - ACTIONS(1808), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2379), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283494,7 +291490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1810), 43, + ACTIONS(2381), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283507,29 +291503,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283538,17 +291539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66596] = 4, - ACTIONS(3), 1, + [69568] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2539), 1, + STATE(2579), 1, sym_comment, - ACTIONS(2325), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283557,7 +291553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2327), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283570,29 +291566,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283601,17 +291602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66663] = 4, - ACTIONS(3), 1, + [69635] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2540), 1, + STATE(2580), 1, sym_comment, - ACTIONS(1792), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1839), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283620,7 +291616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1794), 43, + ACTIONS(1841), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283633,29 +291629,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283664,17 +291665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66730] = 4, - ACTIONS(3), 1, + [69702] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2541), 1, + STATE(2581), 1, sym_comment, - ACTIONS(948), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2383), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283683,7 +291679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(950), 43, + ACTIONS(2385), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283696,29 +291692,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283727,21 +291728,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66797] = 5, - ACTIONS(121), 1, + [69769] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5508), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5542), 1, aux_sym__immediate_decimal_token2, - STATE(2542), 1, + STATE(2582), 1, sym_comment, - ACTIONS(1370), 6, + ACTIONS(1475), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1368), 49, + ACTIONS(1473), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -283756,13 +291759,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -283790,22 +291792,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [66866] = 5, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token2, + [69840] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5655), 1, + STATE(2583), 1, + sym_comment, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3603), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3601), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69913] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5544), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5546), 1, aux_sym__immediate_decimal_token2, - STATE(2543), 1, + STATE(2584), 1, sym_comment, - ACTIONS(1378), 6, + ACTIONS(1483), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1376), 49, + ACTIONS(1481), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -283820,13 +291890,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -283854,89 +291923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [66935] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5613), 1, - anon_sym_DOLLAR, - ACTIONS(5615), 1, - anon_sym_LPAREN2, - ACTIONS(5617), 1, - anon_sym_DOT, - ACTIONS(5619), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5621), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5623), 1, - aux_sym__immediate_decimal_token4, - STATE(2544), 1, - sym_comment, - STATE(3117), 1, - sym__immediate_decimal, - STATE(3111), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1457), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67018] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [69984] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2545), 1, + STATE(2585), 1, sym_comment, - ACTIONS(1816), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3593), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283945,7 +291938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1818), 43, + ACTIONS(3591), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283958,29 +291951,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283989,18 +291987,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67085] = 6, - ACTIONS(3), 1, + [70051] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2546), 1, + STATE(2586), 1, sym_comment, - ACTIONS(3168), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3170), 8, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284009,7 +292001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3166), 20, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284022,6 +292014,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284030,41 +292050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(3172), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [67156] = 4, - ACTIONS(3), 1, + [70118] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2547), 1, + STATE(2587), 1, sym_comment, - ACTIONS(1733), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3607), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284073,7 +292064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1735), 43, + ACTIONS(3605), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284086,29 +292077,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284117,116 +292113,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67223] = 4, - ACTIONS(3), 1, + [70185] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2548), 1, + STATE(2588), 1, sym_comment, - ACTIONS(2248), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2326), 8, anon_sym_err_GT, anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2250), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67290] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5653), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5657), 1, - anon_sym_DOT, - STATE(2549), 1, - sym_comment, - ACTIONS(1400), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1398), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2328), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70252] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2589), 1, + sym_comment, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5502), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5516), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5518), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284235,6 +292216,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(3601), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284243,19 +292245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [67361] = 4, - ACTIONS(3), 1, + [70331] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2550), 1, + STATE(2590), 1, sym_comment, - ACTIONS(1744), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1778), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284264,7 +292259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1746), 43, + ACTIONS(1780), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284277,29 +292272,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284308,17 +292308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67428] = 4, - ACTIONS(3), 1, + [70398] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2551), 1, + STATE(2591), 1, sym_comment, - ACTIONS(2333), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1796), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284327,7 +292322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2335), 43, + ACTIONS(1798), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284340,29 +292335,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284371,36 +292371,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67495] = 12, - ACTIONS(3), 1, + [70465] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR, - ACTIONS(5599), 1, + ACTIONS(5530), 1, anon_sym_LPAREN2, - ACTIONS(5603), 1, + ACTIONS(5532), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5605), 1, + ACTIONS(5534), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5607), 1, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2552), 1, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(2592), 1, sym_comment, - STATE(2853), 1, + STATE(3115), 1, sym__immediate_decimal, - STATE(2852), 2, + STATE(3094), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1404), 19, + ACTIONS(1555), 19, anon_sym_LPAREN, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -284413,7 +292413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1416), 28, + ACTIONS(1557), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -284442,17 +292442,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67578] = 4, - ACTIONS(3), 1, + [70548] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2553), 1, + STATE(2593), 1, sym_comment, - ACTIONS(2357), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284461,7 +292459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2359), 43, + ACTIONS(3601), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284474,29 +292472,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284505,17 +292506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67645] = 4, - ACTIONS(3), 1, + [70617] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2554), 1, + STATE(2594), 1, sym_comment, - ACTIONS(3168), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2348), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284524,7 +292520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3172), 43, + ACTIONS(2350), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284537,29 +292533,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284568,30 +292569,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67712] = 10, + [70684] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - STATE(2555), 1, + ACTIONS(1455), 1, + sym__entry_separator, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5548), 1, + anon_sym_DOLLAR, + ACTIONS(5550), 1, + anon_sym_LPAREN2, + ACTIONS(5554), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5556), 1, + aux_sym__immediate_decimal_token5, + STATE(2595), 1, sym_comment, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5589), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3457), 10, - anon_sym_GT, - anon_sym_LT2, + STATE(3025), 1, + sym__immediate_decimal, + ACTIONS(5552), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3121), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1443), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [70767] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2596), 1, + sym_comment, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284600,7 +292654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 36, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284613,22 +292667,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284637,15 +292703,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67791] = 4, - ACTIONS(121), 1, + [70834] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5662), 1, - aux_sym_unquoted_token3, - STATE(2556), 1, + STATE(2597), 1, sym_comment, - ACTIONS(3239), 55, + ACTIONS(1473), 10, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1475), 46, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284653,13 +292727,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -284680,104 +292751,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67858] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2557), 1, - sym_comment, - ACTIONS(2073), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2075), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67925] = 4, - ACTIONS(3), 1, + [70901] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2558), 1, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(5558), 1, + sym_filesize_unit, + ACTIONS(5560), 1, + sym_duration_unit, + ACTIONS(5562), 1, + aux_sym_unquoted_token2, + STATE(2598), 1, sym_comment, - ACTIONS(912), 7, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1525), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(914), 49, - ts_builtin_sym_end, + ACTIONS(1537), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284814,29 +292826,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK2, - anon_sym_DOT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67992] = 4, - ACTIONS(3), 1, + [70978] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2559), 1, + STATE(2599), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284845,7 +292848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(2253), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284858,29 +292861,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284889,17 +292897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68059] = 4, - ACTIONS(3), 1, + [71045] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2560), 1, + STATE(2600), 1, sym_comment, - ACTIONS(2277), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284908,7 +292911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2279), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284921,29 +292924,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284952,17 +292960,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68126] = 4, + [71112] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(2561), 1, + ACTIONS(1427), 1, + sym__entry_separator, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5548), 1, + anon_sym_DOLLAR, + ACTIONS(5550), 1, + anon_sym_LPAREN2, + ACTIONS(5554), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5556), 1, + aux_sym__immediate_decimal_token5, + STATE(2601), 1, sym_comment, - ACTIONS(2273), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + STATE(3043), 1, + sym__immediate_decimal, + ACTIONS(5552), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3169), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1413), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [71195] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2602), 1, + sym_comment, + ACTIONS(2303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284971,7 +293045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2275), 43, + ACTIONS(2305), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284984,29 +293058,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285015,24 +293094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68193] = 7, - ACTIONS(3), 1, + [71262] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2562), 1, + STATE(2603), 1, sym_comment, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3457), 11, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, + ACTIONS(2389), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285041,7 +293108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 39, + ACTIONS(2391), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285054,25 +293121,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285081,36 +293157,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68266] = 12, - ACTIONS(3), 1, + [71329] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5613), 1, + STATE(2604), 1, + sym_comment, + ACTIONS(3175), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3173), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(3177), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [71398] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3968), 1, anon_sym_DOLLAR, - ACTIONS(5615), 1, + ACTIONS(5564), 1, anon_sym_LPAREN2, - ACTIONS(5617), 1, + ACTIONS(5566), 1, anon_sym_DOT, - ACTIONS(5619), 1, + ACTIONS(5568), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5621), 1, + ACTIONS(5570), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5623), 1, + ACTIONS(5572), 1, aux_sym__immediate_decimal_token4, - STATE(2563), 1, + ACTIONS(5574), 1, + aux_sym__immediate_decimal_token5, + STATE(2605), 1, sym_comment, - STATE(3053), 1, + STATE(2991), 1, sym__immediate_decimal, - STATE(3034), 2, + STATE(3039), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1482), 19, + ACTIONS(1413), 18, anon_sym_LPAREN, - anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -285122,19 +293265,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1484), 28, + aux_sym__unquoted_in_list_token1, + ACTIONS(1427), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COMMA, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_token1, @@ -285152,68 +293294,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68349] = 12, - ACTIONS(121), 1, + [71485] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1425), 1, - sym__entry_separator, - ACTIONS(1427), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5629), 1, - anon_sym_DOLLAR, - ACTIONS(5631), 1, - anon_sym_LPAREN2, - ACTIONS(5633), 1, - anon_sym_DOT, - ACTIONS(5637), 1, - aux_sym__immediate_decimal_token4, - STATE(2564), 1, + STATE(2606), 1, sym_comment, - STATE(2902), 1, - sym__immediate_decimal, - ACTIONS(5635), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3050), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1423), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5502), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5504), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5516), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5518), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3601), 26, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285222,18 +293364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [68432] = 4, - ACTIONS(3), 1, + [71566] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2565), 1, + STATE(2607), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2311), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285242,7 +293378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(2313), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285255,29 +293391,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285286,36 +293427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68499] = 12, - ACTIONS(3), 1, + [71633] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - STATE(2566), 1, + STATE(2608), 1, sym_comment, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5589), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5579), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3457), 8, + ACTIONS(3603), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285324,7 +293441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 32, + ACTIONS(3601), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285337,18 +293454,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285357,39 +293490,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68582] = 12, - ACTIONS(3), 1, + [71700] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5613), 1, - anon_sym_DOLLAR, - ACTIONS(5615), 1, - anon_sym_LPAREN2, - ACTIONS(5617), 1, - anon_sym_DOT, - ACTIONS(5619), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5621), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5623), 1, - aux_sym__immediate_decimal_token4, - STATE(2567), 1, + STATE(2609), 1, sym_comment, - STATE(3080), 1, - sym__immediate_decimal, - STATE(3076), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, + ACTIONS(1481), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1483), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [71767] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2610), 1, + sym_comment, + ACTIONS(3597), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285398,28 +293567,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1480), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3595), 48, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285428,17 +293616,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68665] = 4, - ACTIONS(3), 1, + [71834] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2568), 1, + ACTIONS(5506), 1, + aux_sym_expr_binary_token13, + ACTIONS(5508), 1, + aux_sym_expr_binary_token14, + ACTIONS(5510), 1, + aux_sym_expr_binary_token15, + STATE(2611), 1, sym_comment, - ACTIONS(2226), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5502), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5504), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5516), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5518), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3601), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71921] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2612), 1, + sym_comment, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285447,7 +293703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2228), 43, + ACTIONS(3199), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285460,29 +293716,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285491,17 +293752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68732] = 4, - ACTIONS(3), 1, + [71988] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2569), 1, + STATE(2613), 1, sym_comment, - ACTIONS(3219), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2271), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285510,7 +293766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3217), 43, + ACTIONS(2273), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285523,29 +293779,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285554,20 +293815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68799] = 5, - ACTIONS(3), 1, + [72055] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2570), 1, + STATE(2614), 1, sym_comment, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3457), 13, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(2241), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285576,7 +293829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 41, + ACTIONS(2243), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285589,27 +293842,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285618,36 +293878,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68868] = 12, - ACTIONS(3), 1, + [72122] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR, - ACTIONS(5615), 1, + ACTIONS(5530), 1, anon_sym_LPAREN2, - ACTIONS(5617), 1, - anon_sym_DOT, - ACTIONS(5619), 1, + ACTIONS(5532), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5621), 1, + ACTIONS(5534), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5623), 1, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token4, - STATE(2571), 1, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(2615), 1, sym_comment, - STATE(3092), 1, + STATE(3179), 1, sym__immediate_decimal, - STATE(3085), 2, + STATE(3175), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1486), 19, + ACTIONS(1431), 19, anon_sym_LPAREN, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -285660,7 +293920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1488), 28, + ACTIONS(1441), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285689,52 +293949,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68951] = 18, - ACTIONS(3), 1, + [72205] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - ACTIONS(5591), 1, - anon_sym_bit_DASHand, - ACTIONS(5593), 1, - anon_sym_bit_DASHxor, - ACTIONS(5595), 1, - anon_sym_bit_DASHor, - ACTIONS(5609), 1, - anon_sym_and, - STATE(2572), 1, + ACTIONS(5506), 1, + aux_sym_expr_binary_token13, + STATE(2616), 1, sym_comment, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5581), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5589), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5575), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5579), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3457), 8, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5502), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5504), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5516), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5518), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3601), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72288] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2617), 1, + sym_comment, + ACTIONS(2255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285743,7 +294034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3449), 22, + ACTIONS(2257), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285756,8 +294047,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285766,20 +294083,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69046] = 4, - ACTIONS(3), 1, + [72355] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2573), 1, + STATE(2618), 1, sym_comment, - ACTIONS(5261), 6, + ACTIONS(1519), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5259), 49, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1521), 46, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285816,70 +294136,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_STAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69112] = 11, - ACTIONS(121), 1, + [72422] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1480), 1, - sym__entry_separator, - ACTIONS(5629), 1, - anon_sym_DOLLAR, - ACTIONS(5631), 1, - anon_sym_LPAREN2, - ACTIONS(5664), 1, - anon_sym_DOT, - ACTIONS(5668), 1, - aux_sym__immediate_decimal_token4, - STATE(2574), 1, + STATE(2619), 1, sym_comment, - STATE(3047), 1, - sym__immediate_decimal, - ACTIONS(5666), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3046), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2352), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2354), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72489] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2620), 1, + sym_comment, + ACTIONS(2336), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285888,6 +294223,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2338), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285896,51 +294272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [69192] = 4, - ACTIONS(121), 1, + [72556] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2575), 1, + STATE(2621), 1, sym_comment, - ACTIONS(1378), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1376), 49, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285949,6 +294286,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(3199), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285957,52 +294335,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [69258] = 17, - ACTIONS(3), 1, + [72623] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2576), 1, + STATE(2622), 1, sym_comment, - STATE(6103), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(966), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(968), 49, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + [72690] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5576), 1, + anon_sym_QMARK2, + STATE(2623), 1, + sym_comment, + ACTIONS(970), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(972), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286034,19 +294446,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [69350] = 4, - ACTIONS(3), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [72759] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2577), 1, + ACTIONS(5578), 1, + anon_sym_QMARK2, + STATE(2624), 1, sym_comment, - ACTIONS(2184), 6, + ACTIONS(980), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2186), 49, + anon_sym_DOT, + ACTIONS(982), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286086,68 +294518,91 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69416] = 11, - ACTIONS(121), 1, + [72828] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1488), 1, - sym__entry_separator, - ACTIONS(5629), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR, - ACTIONS(5631), 1, + ACTIONS(5530), 1, anon_sym_LPAREN2, - ACTIONS(5664), 1, - anon_sym_DOT, - ACTIONS(5668), 1, + ACTIONS(5532), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5534), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token4, - STATE(2578), 1, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(2625), 1, sym_comment, - STATE(3049), 1, + STATE(3126), 1, sym__immediate_decimal, - ACTIONS(5666), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3048), 2, + STATE(3118), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1486), 45, + ACTIONS(1501), 19, + anon_sym_LPAREN, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1509), 28, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72911] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2626), 1, + sym_comment, + ACTIONS(2311), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286156,6 +294611,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2313), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286164,51 +294660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [69496] = 4, - ACTIONS(121), 1, + [72978] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2579), 1, + STATE(2627), 1, sym_comment, - ACTIONS(1506), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1504), 49, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1747), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286217,6 +294674,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1749), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286225,23 +294723,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [69562] = 4, - ACTIONS(3), 1, + [73045] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2580), 1, + STATE(2628), 1, + sym_comment, + ACTIONS(2263), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2265), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73112] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5506), 1, + aux_sym_expr_binary_token13, + ACTIONS(5508), 1, + aux_sym_expr_binary_token14, + ACTIONS(5510), 1, + aux_sym_expr_binary_token15, + ACTIONS(5512), 1, + aux_sym_expr_binary_token16, + STATE(2629), 1, + sym_comment, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5502), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5504), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5516), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5518), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3603), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3601), 22, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73201] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2630), 1, sym_comment, - ACTIONS(928), 7, + ACTIONS(1585), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(930), 48, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1587), 46, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286278,198 +294913,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69628] = 17, - ACTIONS(3), 1, + [73268] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2581), 1, + ACTIONS(5528), 1, + anon_sym_DOLLAR, + ACTIONS(5530), 1, + anon_sym_LPAREN2, + ACTIONS(5532), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5534), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5536), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(2631), 1, sym_comment, - STATE(7158), 1, - sym__val_number_decimal, - STATE(7852), 1, - sym__command_name, - ACTIONS(1196), 2, + STATE(3092), 1, + sym__immediate_decimal, + STATE(3091), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1551), 19, + anon_sym_LPAREN, + anon_sym__, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1553), 28, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [69720] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2582), 1, - sym_comment, - ACTIONS(2208), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2210), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69786] = 17, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73351] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(4109), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(2939), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5327), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2583), 1, + STATE(2632), 1, sym_comment, - STATE(6617), 1, + STATE(2633), 1, + aux_sym_command_list_repeat1, + STATE(5801), 1, + sym__str_double_quotes, + STATE(7036), 1, sym__command_name, - STATE(7158), 1, + STATE(7263), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + STATE(7548), 1, + sym_cmd_identifier, + STATE(7691), 1, + sym_val_string, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(2941), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5321), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5325), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5323), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286501,50 +295069,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [69878] = 17, - ACTIONS(3), 1, + [73443] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(5589), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5595), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(4109), 1, + ACTIONS(5598), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5601), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, + STATE(5801), 1, sym__str_double_quotes, - STATE(2584), 1, - sym_comment, - STATE(6103), 1, - sym__command_name, - STATE(7158), 1, + STATE(7263), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + STATE(7548), 1, + sym_cmd_identifier, + STATE(7595), 1, + sym__command_name, + STATE(7691), 1, + sym_val_string, + ACTIONS(5592), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(5604), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + STATE(2633), 2, + sym_comment, + aux_sym_command_list_repeat1, + ACTIONS(5580), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5586), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5583), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286576,81 +295143,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [69970] = 4, - ACTIONS(3), 1, + [73533] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2585), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2634), 1, sym_comment, - ACTIONS(936), 6, + STATE(7482), 1, + sym__val_number_decimal, + STATE(7900), 1, + sym__command_name, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(938), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70036] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2586), 1, - sym_comment, - ACTIONS(2200), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2202), 49, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286682,68 +295218,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [73625] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, + anon_sym_LPAREN2, + ACTIONS(5611), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5613), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5615), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5617), 1, + aux_sym__immediate_decimal_token5, + STATE(2635), 1, + sym_comment, + STATE(3240), 1, + sym__immediate_decimal, + STATE(3290), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1443), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1455), 27, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, + anon_sym_RBRACK, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70102] = 17, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73709] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3199), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3239), 1, aux_sym_record_entry_token1, - ACTIONS(4109), 1, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, + STATE(2132), 1, sym_val_string, - STATE(2137), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(2587), 1, + STATE(2636), 1, sym_comment, - STATE(7158), 1, - sym__val_number_decimal, - STATE(7852), 1, + STATE(6732), 1, sym__command_name, - ACTIONS(1196), 2, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286775,50 +295364,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [70194] = 17, - ACTIONS(3), 1, + [73801] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3213), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3239), 1, aux_sym_record_entry_token1, - ACTIONS(4109), 1, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(1628), 1, - sym__command_name, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, + STATE(2132), 1, sym_val_string, - STATE(2137), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(2588), 1, + STATE(2637), 1, sym_comment, - STATE(7158), 1, + STATE(6132), 1, + sym__command_name, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286850,27 +295439,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [70286] = 8, - ACTIONS(3), 1, + [73893] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_DOT, - STATE(2589), 1, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, + anon_sym_LPAREN2, + ACTIONS(5611), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5613), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5615), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5617), 1, + aux_sym__immediate_decimal_token5, + STATE(2638), 1, sym_comment, - STATE(2657), 1, - aux_sym_cell_path_repeat1, - STATE(2747), 1, - sym_path, - STATE(2812), 1, - sym_cell_path, - ACTIONS(883), 19, - anon_sym__, + STATE(3237), 1, + sym__immediate_decimal, + STATE(3245), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1413), 18, + anon_sym_LPAREN, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -286882,25 +295481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(885), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(1427), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -286916,30 +295510,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70360] = 11, - ACTIONS(121), 1, + [73977] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1457), 1, + ACTIONS(1553), 1, sym__entry_separator, - ACTIONS(2767), 1, + ACTIONS(5548), 1, anon_sym_DOLLAR, - ACTIONS(5387), 1, + ACTIONS(5550), 1, anon_sym_LPAREN2, - ACTIONS(5672), 1, - anon_sym_DOT, - ACTIONS(5676), 1, + ACTIONS(5621), 1, aux_sym__immediate_decimal_token4, - STATE(2590), 1, + ACTIONS(5623), 1, + aux_sym__immediate_decimal_token5, + STATE(2639), 1, sym_comment, - STATE(2876), 1, + STATE(3109), 1, sym__immediate_decimal, - ACTIONS(5674), 2, + ACTIONS(5619), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2875), 2, + STATE(3106), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1449), 45, + ACTIONS(1551), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286956,8 +295550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -286985,40 +295579,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [70440] = 13, + [74057] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2640), 1, + sym_comment, + ACTIONS(5208), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5206), 49, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74123] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5678), 1, + ACTIONS(1557), 1, + sym__entry_separator, + ACTIONS(5548), 1, anon_sym_DOLLAR, - ACTIONS(5680), 1, + ACTIONS(5550), 1, anon_sym_LPAREN2, - ACTIONS(5682), 1, - anon_sym_DOT, - ACTIONS(5684), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5686), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5688), 1, + ACTIONS(5621), 1, aux_sym__immediate_decimal_token4, - STATE(2591), 1, + ACTIONS(5623), 1, + aux_sym__immediate_decimal_token5, + STATE(2641), 1, sym_comment, - STATE(3104), 1, + STATE(3113), 1, sym__immediate_decimal, - STATE(3186), 2, + ACTIONS(5619), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3111), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1423), 18, + ACTIONS(1555), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287027,8 +295701,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1425), 27, + [74203] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1509), 1, + sym__entry_separator, + ACTIONS(5548), 1, + anon_sym_DOLLAR, + ACTIONS(5550), 1, + anon_sym_LPAREN2, + ACTIONS(5621), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5623), 1, + aux_sym__immediate_decimal_token5, + STATE(2642), 1, + sym_comment, + STATE(3120), 1, + sym__immediate_decimal, + ACTIONS(5619), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3114), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1501), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287037,17 +295742,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287056,19 +295778,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70524] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [74283] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2592), 1, + STATE(2643), 1, sym_comment, - ACTIONS(2212), 6, + ACTIONS(2241), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2214), 49, + ACTIONS(2243), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287110,129 +295833,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70590] = 13, - ACTIONS(3), 1, + [74349] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5535), 1, - aux_sym__unquoted_in_list_token5, - ACTIONS(5678), 1, - anon_sym_DOLLAR, - ACTIONS(5680), 1, - anon_sym_LPAREN2, - ACTIONS(5682), 1, - anon_sym_DOT, - ACTIONS(5684), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5686), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5688), 1, - aux_sym__immediate_decimal_token4, - STATE(2593), 1, + STATE(2644), 1, sym_comment, - STATE(3101), 1, - sym__immediate_decimal, - STATE(3201), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(5381), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + ACTIONS(2263), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2265), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5395), 27, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74415] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2645), 1, + sym_comment, + ACTIONS(994), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(996), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70674] = 17, - ACTIONS(3), 1, + [74481] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(1701), 1, + sym__command_name, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2646), 1, + sym_comment, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [74573] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(2903), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(2939), 1, anon_sym_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5314), 1, + ACTIONS(5327), 1, aux_sym_cmd_identifier_token38, - STATE(2594), 1, - sym_comment, - STATE(2609), 1, + STATE(2633), 1, aux_sym_command_list_repeat1, - STATE(5676), 1, + STATE(2647), 1, + sym_comment, + STATE(5801), 1, sym__str_double_quotes, - STATE(7212), 1, + STATE(7263), 1, sym__val_number_decimal, - STATE(7337), 1, + STATE(7268), 1, sym__command_name, - STATE(7535), 1, + STATE(7548), 1, sym_cmd_identifier, - STATE(7536), 1, + STATE(7691), 1, sym_val_string, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(2905), 2, + ACTIONS(2941), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5308), 5, + ACTIONS(5321), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5312), 5, + ACTIONS(5325), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5310), 31, + ACTIONS(5323), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287264,20 +296115,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [70766] = 4, - ACTIONS(3), 1, + [74665] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2595), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2648), 1, sym_comment, - ACTIONS(2927), 6, + STATE(7482), 1, + sym__val_number_decimal, + STATE(7900), 1, + sym__command_name, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2925), 49, - ts_builtin_sym_end, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287309,38 +296190,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70832] = 4, - ACTIONS(3), 1, + [74757] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2596), 1, + STATE(2649), 1, sym_comment, - ACTIONS(932), 7, + ACTIONS(1982), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(934), 48, - ts_builtin_sym_end, + ACTIONS(1984), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287380,27 +296242,30 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70898] = 4, - ACTIONS(3), 1, + [74823] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2597), 1, + STATE(2650), 1, sym_comment, - ACTIONS(5275), 6, + ACTIONS(990), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5273), 49, + anon_sym_DOT, + ACTIONS(992), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -287441,59 +296306,28 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70964] = 17, - ACTIONS(3), 1, + [74889] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(2903), 1, - anon_sym_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5314), 1, - aux_sym_cmd_identifier_token38, - STATE(2598), 1, + STATE(2651), 1, sym_comment, - STATE(2609), 1, - aux_sym_command_list_repeat1, - STATE(5676), 1, - sym__str_double_quotes, - STATE(6947), 1, - sym__command_name, - STATE(7212), 1, - sym__val_number_decimal, - STATE(7535), 1, - sym_cmd_identifier, - STATE(7536), 1, - sym_val_string, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2905), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5308), 5, + ACTIONS(5235), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5312), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5310), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(5233), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287525,19 +296359,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [71056] = 4, - ACTIONS(3), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74955] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2599), 1, + STATE(2652), 1, sym_comment, - ACTIONS(2216), 6, + ACTIONS(3375), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2218), 49, + ACTIONS(3373), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287577,29 +296429,28 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, + aux_sym_ctrl_match_token1, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71122] = 4, - ACTIONS(3), 1, + [75021] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2600), 1, + STATE(2653), 1, sym_comment, - ACTIONS(2216), 6, + ACTIONS(1021), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2218), 49, + ACTIONS(1023), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287641,27 +296492,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71188] = 4, - ACTIONS(3), 1, + [75087] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2601), 1, + STATE(2654), 1, sym_comment, - ACTIONS(5267), 6, + ACTIONS(5220), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5265), 49, + ACTIONS(5218), 49, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -287703,25 +296554,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, aux_sym_ctrl_match_token1, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71254] = 5, - ACTIONS(121), 1, + [75153] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3241), 1, - ts_builtin_sym_end, - ACTIONS(5690), 1, - aux_sym_unquoted_token3, - STATE(2602), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(1701), 1, + sym__command_name, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2655), 1, sym_comment, - ACTIONS(3239), 53, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287729,13 +296613,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -287756,102 +296637,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, + [75245] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(2939), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [71322] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5692), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5694), 1, - aux_sym__immediate_decimal_token2, - STATE(2603), 1, - sym_comment, - ACTIONS(1472), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1470), 49, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(5327), 1, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(2633), 1, + aux_sym_command_list_repeat1, + STATE(2656), 1, + sym_comment, + STATE(5801), 1, + sym__str_double_quotes, + STATE(7174), 1, + sym__command_name, + STATE(7263), 1, + sym__val_number_decimal, + STATE(7548), 1, + sym_cmd_identifier, + STATE(7691), 1, + sym_val_string, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(2941), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [71392] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2604), 1, - sym_comment, - ACTIONS(3443), 6, + ACTIONS(5321), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(3441), 49, - ts_builtin_sym_end, + ACTIONS(5325), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5323), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287883,131 +296712,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [71458] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5696), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5698), 1, - aux_sym__immediate_decimal_token2, - STATE(2605), 1, - sym_comment, - ACTIONS(1368), 20, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71528] = 17, - ACTIONS(3), 1, + [75337] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(2903), 1, - anon_sym_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5314), 1, - aux_sym_cmd_identifier_token38, - STATE(2606), 1, + STATE(2657), 1, sym_comment, - STATE(2609), 1, - aux_sym_command_list_repeat1, - STATE(5676), 1, - sym__str_double_quotes, - STATE(6960), 1, - sym__command_name, - STATE(7212), 1, - sym__val_number_decimal, - STATE(7535), 1, - sym_cmd_identifier, - STATE(7536), 1, - sym_val_string, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2905), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5308), 5, + ACTIONS(2311), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5312), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5310), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2313), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288039,19 +296756,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [71620] = 4, - ACTIONS(3), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75403] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2607), 1, + STATE(2658), 1, sym_comment, - ACTIONS(3239), 6, + ACTIONS(986), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(3241), 49, + anon_sym_DOT, + ACTIONS(988), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -288092,59 +296828,58 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71686] = 17, - ACTIONS(3), 1, + [75469] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3199), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3269), 1, aux_sym_record_entry_token1, - ACTIONS(4109), 1, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(1628), 1, - sym__command_name, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, + STATE(2132), 1, sym_val_string, - STATE(2137), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(2608), 1, + STATE(2659), 1, sym_comment, - STATE(7158), 1, + STATE(6732), 1, + sym__command_name, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288176,49 +296911,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [71778] = 16, - ACTIONS(3), 1, + [75561] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5709), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5715), 1, - anon_sym_DOT2, - ACTIONS(5718), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5721), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(4260), 1, anon_sym_DQUOTE, - STATE(5676), 1, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(7212), 1, - sym__val_number_decimal, - STATE(7472), 1, + STATE(2660), 1, + sym_comment, + STATE(6132), 1, sym__command_name, - STATE(7535), 1, - sym_cmd_identifier, - STATE(7536), 1, - sym_val_string, - ACTIONS(5712), 2, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5724), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2609), 2, - sym_comment, - aux_sym_command_list_repeat1, - ACTIONS(5700), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5706), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5703), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288250,50 +296986,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [71868] = 17, - ACTIONS(3), 1, + [75653] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(4109), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(2939), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5327), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2610), 1, + STATE(2633), 1, + aux_sym_command_list_repeat1, + STATE(2661), 1, sym_comment, - STATE(6617), 1, - sym__command_name, - STATE(7158), 1, + STATE(5801), 1, + sym__str_double_quotes, + STATE(7263), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + STATE(7299), 1, + sym__command_name, + STATE(7548), 1, + sym_cmd_identifier, + STATE(7691), 1, + sym_val_string, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(2941), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5321), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5325), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5323), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288325,19 +297061,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [71960] = 4, - ACTIONS(3), 1, + [75745] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2611), 1, + STATE(2662), 1, sym_comment, - ACTIONS(5247), 6, + ACTIONS(3487), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5245), 49, + ACTIONS(3485), 49, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -288379,58 +297115,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, aux_sym_ctrl_match_token1, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72026] = 17, - ACTIONS(3), 1, + [75811] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(2903), 1, - anon_sym_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5314), 1, - aux_sym_cmd_identifier_token38, - STATE(2609), 1, - aux_sym_command_list_repeat1, - STATE(2612), 1, + STATE(2663), 1, sym_comment, - STATE(5676), 1, - sym__str_double_quotes, - STATE(7083), 1, - sym__command_name, - STATE(7212), 1, - sym__val_number_decimal, - STATE(7535), 1, - sym_cmd_identifier, - STATE(7536), 1, - sym_val_string, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2905), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5308), 5, + ACTIONS(5204), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5312), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5310), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(5202), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288462,30 +297168,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [72118] = 11, - ACTIONS(121), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75877] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1484), 1, + ACTIONS(1537), 1, sym__entry_separator, - ACTIONS(5629), 1, - anon_sym_DOLLAR, - ACTIONS(5631), 1, + ACTIONS(5625), 1, anon_sym_LPAREN2, - ACTIONS(5664), 1, - anon_sym_DOT, - ACTIONS(5668), 1, - aux_sym__immediate_decimal_token4, - STATE(2613), 1, + ACTIONS(5627), 1, + anon_sym_DOT_DOT2, + ACTIONS(5631), 1, + sym_filesize_unit, + ACTIONS(5633), 1, + sym_duration_unit, + ACTIONS(5635), 1, + aux_sym__unquoted_in_list_token2, + STATE(2664), 1, sym_comment, - STATE(3045), 1, - sym__immediate_decimal, - ACTIONS(5666), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3044), 2, + STATE(7640), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1482), 45, + ACTIONS(5629), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1525), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288496,14 +297218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -288531,37 +297254,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [72198] = 13, - ACTIONS(3), 1, + [75957] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3858), 1, + ACTIONS(3968), 1, anon_sym_DOLLAR, - ACTIONS(5525), 1, + ACTIONS(5564), 1, anon_sym_LPAREN2, - ACTIONS(5529), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + ACTIONS(5639), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5531), 1, + ACTIONS(5641), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5533), 1, + ACTIONS(5643), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5727), 1, - anon_sym_DOT, - STATE(2614), 1, + ACTIONS(5645), 1, + aux_sym__immediate_decimal_token5, + STATE(2665), 1, sym_comment, - STATE(2806), 1, + STATE(3038), 1, sym__immediate_decimal, - STATE(2984), 2, + STATE(3037), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1404), 18, + ACTIONS(1431), 18, anon_sym_LPAREN, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -288574,7 +297297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1416), 27, + ACTIONS(1441), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288602,19 +297325,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72282] = 4, - ACTIONS(3), 1, + [76041] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2615), 1, + STATE(2666), 1, sym_comment, - ACTIONS(1913), 6, + ACTIONS(5212), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1915), 49, + ACTIONS(5210), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288654,50 +297378,130 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, + aux_sym_ctrl_match_token1, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72348] = 13, + [76107] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, + ACTIONS(5542), 1, + aux_sym__immediate_decimal_token2, + STATE(2667), 1, + sym_comment, + ACTIONS(1475), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1473), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(5678), 1, + [76175] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1441), 1, + sym__entry_separator, + ACTIONS(5548), 1, anon_sym_DOLLAR, - ACTIONS(5680), 1, + ACTIONS(5550), 1, anon_sym_LPAREN2, - ACTIONS(5682), 1, - anon_sym_DOT, - ACTIONS(5684), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5686), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5688), 1, + ACTIONS(5621), 1, aux_sym__immediate_decimal_token4, - STATE(2616), 1, + ACTIONS(5623), 1, + aux_sym__immediate_decimal_token5, + STATE(2668), 1, sym_comment, - STATE(3131), 1, + STATE(3167), 1, sym__immediate_decimal, - STATE(3176), 2, + ACTIONS(5619), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3166), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1404), 18, + ACTIONS(1431), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288706,20 +297510,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1416), 27, + [76255] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5647), 1, + anon_sym_DOT, + STATE(2669), 1, + sym_comment, + STATE(2702), 1, + aux_sym_cell_path_repeat1, + STATE(2812), 1, + sym_path, + STATE(2885), 1, + sym_cell_path, + ACTIONS(945), 18, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(947), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -288735,19 +297585,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72432] = 4, - ACTIONS(121), 1, + [76329] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2617), 1, + STATE(2670), 1, + sym_comment, + ACTIONS(2271), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2273), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76395] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5649), 1, + aux_sym__immediate_decimal_token2, + STATE(2671), 1, sym_comment, - ACTIONS(1370), 6, + ACTIONS(1521), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1368), 49, + ACTIONS(1519), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288762,13 +297676,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -288796,21 +297709,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - [72498] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [76463] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2618), 1, + STATE(2672), 1, sym_comment, - ACTIONS(5226), 6, + ACTIONS(2311), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5224), 49, - ts_builtin_sym_end, + ACTIONS(2313), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288850,30 +297762,29 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72564] = 4, - ACTIONS(3), 1, + [76529] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2619), 1, + STATE(2673), 1, sym_comment, - ACTIONS(924), 7, + ACTIONS(2295), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(926), 48, - ts_builtin_sym_end, + ACTIONS(2297), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288913,125 +297824,37 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72630] = 11, - ACTIONS(121), 1, + [76595] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - sym__entry_separator, - ACTIONS(5629), 1, - anon_sym_DOLLAR, - ACTIONS(5631), 1, - anon_sym_LPAREN2, - ACTIONS(5664), 1, + ACTIONS(5651), 1, anon_sym_DOT, - ACTIONS(5668), 1, - aux_sym__immediate_decimal_token4, - STATE(2620), 1, - sym_comment, - STATE(3081), 1, - sym__immediate_decimal, - ACTIONS(5666), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3126), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [72710] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2621), 1, + STATE(2674), 1, sym_comment, - STATE(7158), 1, - sym__val_number_decimal, - STATE(7959), 1, - sym__command_name, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, + STATE(2758), 1, + aux_sym_cell_path_repeat1, + STATE(2841), 1, + sym_path, + STATE(3012), 1, + sym_cell_path, + ACTIONS(1871), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1873), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289063,19 +297886,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [72799] = 4, - ACTIONS(3), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76668] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2622), 1, + STATE(2675), 1, sym_comment, - ACTIONS(2216), 6, + ACTIONS(2263), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2218), 48, + ACTIONS(2265), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -289116,27 +297952,27 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72864] = 4, - ACTIONS(3), 1, + [76733] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2623), 1, + STATE(2676), 1, sym_comment, - ACTIONS(2216), 6, + ACTIONS(2295), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2218), 48, + ACTIONS(2297), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -289177,32 +298013,105 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76798] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2677), 1, + sym_comment, + STATE(7482), 1, + sym__val_number_decimal, + STATE(7948), 1, + sym__command_name, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - [72929] = 8, - ACTIONS(121), 1, + ACTIONS(5025), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [76887] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5653), 1, anon_sym_DOT, - STATE(2624), 1, + STATE(2678), 1, sym_comment, - STATE(2705), 1, + STATE(2764), 1, aux_sym_cell_path_repeat1, - STATE(2775), 1, + STATE(2840), 1, sym_path, - STATE(2910), 1, + STATE(2945), 1, sym_cell_path, - ACTIONS(1549), 3, + ACTIONS(1603), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1545), 47, + ACTIONS(1599), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289221,8 +298130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -289250,48 +298159,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [73002] = 16, - ACTIONS(3), 1, + [76960] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, + STATE(2144), 1, + sym__str_double_quotes, + STATE(2640), 1, + sym_val_string, + STATE(2651), 1, sym_cmd_identifier, - STATE(2131), 1, + STATE(2679), 1, + sym_comment, + STATE(6269), 1, + sym__command_name, + STATE(7112), 1, + sym__val_number_decimal, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5101), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5105), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5103), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [77049] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, sym_val_string, - STATE(2137), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(2625), 1, + STATE(2680), 1, sym_comment, - STATE(6060), 1, - sym__command_name, - STATE(7158), 1, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + STATE(7944), 1, + sym__command_name, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289323,48 +298305,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [73091] = 16, - ACTIONS(3), 1, - anon_sym_POUND, + [77138] = 16, ACTIONS(111), 1, anon_sym_DQUOTE, - ACTIONS(1200), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, aux_sym_cmd_identifier_token38, - STATE(2116), 1, + STATE(2144), 1, sym__str_double_quotes, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, + STATE(2640), 1, sym_val_string, - STATE(2626), 1, + STATE(2651), 1, + sym_cmd_identifier, + STATE(2681), 1, sym_comment, - STATE(7053), 1, + STATE(7112), 1, sym__val_number_decimal, - STATE(7439), 1, + STATE(7385), 1, sym__command_name, ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5052), 5, + ACTIONS(5101), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, + ACTIONS(5105), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, + ACTIONS(5103), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289396,48 +298378,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [73180] = 16, - ACTIONS(3), 1, + [77227] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5651), 1, + anon_sym_DOT, + STATE(2682), 1, + sym_comment, + STATE(2758), 1, + aux_sym_cell_path_repeat1, + STATE(2841), 1, + sym_path, + STATE(2939), 1, + sym_cell_path, + ACTIONS(1847), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1849), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [77300] = 16, ACTIONS(111), 1, anon_sym_DQUOTE, - ACTIONS(1200), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, aux_sym_cmd_identifier_token38, - STATE(2116), 1, + STATE(2144), 1, sym__str_double_quotes, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, + STATE(2640), 1, sym_val_string, - STATE(2627), 1, + STATE(2651), 1, + sym_cmd_identifier, + STATE(2683), 1, sym_comment, - STATE(7053), 1, + STATE(7112), 1, sym__val_number_decimal, - STATE(7440), 1, + STATE(7410), 1, sym__command_name, ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5052), 5, + ACTIONS(5101), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, + ACTIONS(5105), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, + ACTIONS(5103), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289469,48 +298516,176 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [73269] = 16, + [77389] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(5653), 1, + anon_sym_DOT, + STATE(2684), 1, + sym_comment, + STATE(2764), 1, + aux_sym_cell_path_repeat1, + STATE(2840), 1, + sym_path, + STATE(2977), 1, + sym_cell_path, + ACTIONS(947), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(945), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [77462] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5655), 1, + anon_sym_DOT, + ACTIONS(5657), 1, + aux_sym__immediate_decimal_token2, + STATE(2685), 1, + sym_comment, + ACTIONS(1473), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77531] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, + STATE(2132), 1, sym_val_string, - STATE(2137), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(2628), 1, + STATE(2686), 1, sym_comment, - STATE(7158), 1, + STATE(7482), 1, sym__val_number_decimal, - STATE(7742), 1, + STATE(7878), 1, sym__command_name, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289542,48 +298717,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [73358] = 16, - ACTIONS(3), 1, + [77620] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2629), 1, + ACTIONS(5659), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5661), 1, + aux_sym__immediate_decimal_token2, + STATE(2687), 1, sym_comment, - STATE(6819), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(1481), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1483), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77689] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5651), 1, + anon_sym_DOT, + STATE(2688), 1, + sym_comment, + STATE(2758), 1, + aux_sym_cell_path_repeat1, + STATE(2841), 1, + sym_path, + STATE(3006), 1, + sym_cell_path, + ACTIONS(1875), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1877), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289615,48 +298832,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [73447] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [77762] = 16, + ACTIONS(111), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, + STATE(2144), 1, sym__str_double_quotes, - STATE(2630), 1, + STATE(2640), 1, + sym_val_string, + STATE(2651), 1, + sym_cmd_identifier, + STATE(2689), 1, sym_comment, - STATE(6822), 1, - sym__command_name, - STATE(7158), 1, + STATE(7112), 1, sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + STATE(7331), 1, + sym__command_name, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5101), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5105), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5103), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289688,19 +298918,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [73536] = 4, + [77851] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2631), 1, + ACTIONS(5663), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5665), 1, + aux_sym__immediate_decimal_token2, + STATE(2690), 1, + sym_comment, + ACTIONS(1571), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1569), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [77920] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2691), 1, sym_comment, - ACTIONS(2184), 6, + ACTIONS(1982), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2186), 48, + ACTIONS(1984), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -289741,28 +299034,35 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73601] = 4, - ACTIONS(3), 1, + [77985] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2632), 1, + ACTIONS(5651), 1, + anon_sym_DOT, + STATE(2692), 1, sym_comment, - ACTIONS(2200), 6, + STATE(2758), 1, + aux_sym_cell_path_repeat1, + STATE(2841), 1, + sym_path, + STATE(2936), 1, + sym_cell_path, + ACTIONS(1879), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2202), 48, - ts_builtin_sym_end, + ACTIONS(1881), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289799,59 +299099,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73666] = 16, - ACTIONS(3), 1, + [78058] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, - aux_sym_cmd_identifier_token38, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, - sym_val_string, - STATE(2633), 1, + ACTIONS(5651), 1, + anon_sym_DOT, + STATE(2693), 1, sym_comment, - STATE(7053), 1, - sym__val_number_decimal, - STATE(7456), 1, - sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5052), 5, + STATE(2758), 1, + aux_sym_cell_path_repeat1, + STATE(2841), 1, + sym_path, + STATE(2979), 1, + sym_cell_path, + ACTIONS(1883), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1885), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289883,28 +299159,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [73755] = 8, - ACTIONS(3), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [78131] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2634), 1, + STATE(2694), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2907), 1, + STATE(2924), 1, sym_cell_path, - ACTIONS(1752), 7, + ACTIONS(1891), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1754), 43, + ACTIONS(1893), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289945,96 +299233,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73828] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2635), 1, - sym_comment, - STATE(2705), 1, - aux_sym_cell_path_repeat1, - STATE(2775), 1, - sym_path, - STATE(2914), 1, - sym_cell_path, - ACTIONS(885), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(883), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [73901] = 8, - ACTIONS(3), 1, + [78204] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2636), 1, + STATE(2695), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2913), 1, + STATE(2973), 1, sym_cell_path, - ACTIONS(1756), 7, + ACTIONS(1895), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1758), 43, + ACTIONS(1897), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290075,39 +299298,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73974] = 6, + [78277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5733), 1, - anon_sym_DOT, - ACTIONS(5736), 1, - aux_sym__immediate_decimal_token2, - STATE(2637), 1, + STATE(2696), 1, sym_comment, - ACTIONS(1398), 19, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(1400), 33, + ACTIONS(1475), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1473), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290120,19 +299327,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290141,35 +299361,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [74043] = 5, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [78342] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5736), 1, - aux_sym__immediate_decimal_token2, - STATE(2638), 1, + STATE(2697), 1, sym_comment, - ACTIONS(1398), 20, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(1400), 33, + ACTIONS(1483), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1481), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290182,19 +299388,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290203,24 +299422,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [74110] = 5, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [78407] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5698), 1, - aux_sym__immediate_decimal_token2, - STATE(2639), 1, + STATE(2698), 1, sym_comment, - ACTIONS(1368), 20, + ACTIONS(1521), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1519), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290229,9 +299475,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 33, + aux_sym__unquoted_in_list_token2, + [78472] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2699), 1, + sym_comment, + ACTIONS(1587), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1585), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290244,19 +299510,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290265,28 +299544,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [74177] = 8, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [78537] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_DOT, - STATE(2640), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2700), 1, sym_comment, - STATE(2715), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2922), 1, - sym_cell_path, - ACTIONS(1760), 7, + STATE(6794), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1762), 43, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290318,93 +299619,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74250] = 5, + [78626] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5738), 1, - aux_sym__immediate_decimal_token2, - STATE(2641), 1, - sym_comment, - ACTIONS(1376), 20, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5667), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(1378), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74317] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5740), 1, + ACTIONS(5669), 1, aux_sym__immediate_decimal_token2, - STATE(2642), 1, + STATE(2701), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1591), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1518), 49, + ACTIONS(1589), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290419,13 +299648,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -290454,58 +299682,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [74384] = 5, - ACTIONS(121), 1, + [78695] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5694), 1, - aux_sym__immediate_decimal_token2, - STATE(2643), 1, + ACTIONS(5647), 1, + anon_sym_DOT, + STATE(2702), 1, sym_comment, - ACTIONS(1472), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1470), 49, + STATE(2703), 1, + aux_sym_cell_path_repeat1, + STATE(2812), 1, + sym_path, + ACTIONS(951), 18, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(953), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290514,60 +299746,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [74451] = 5, - ACTIONS(121), 1, + [78766] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5742), 1, - aux_sym__immediate_decimal_token2, - STATE(2644), 1, + ACTIONS(5671), 1, + anon_sym_DOT, + STATE(2812), 1, + sym_path, + STATE(2703), 2, sym_comment, - ACTIONS(1537), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1535), 49, + aux_sym_cell_path_repeat1, + ACTIONS(955), 18, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(957), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290576,22 +299809,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [74518] = 4, - ACTIONS(3), 1, + [78835] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2645), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2704), 1, + sym_comment, + STATE(6906), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [78924] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2705), 1, sym_comment, - ACTIONS(2208), 6, + STATE(6907), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2210), 48, - ts_builtin_sym_end, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290623,36 +299955,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, + [79013] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2706), 1, + sym_comment, + STATE(6438), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - [74583] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2646), 1, - sym_comment, - ACTIONS(2212), 6, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2214), 48, - ts_builtin_sym_end, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290684,202 +300028,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74648] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3858), 1, - anon_sym_DOLLAR, - ACTIONS(5525), 1, - anon_sym_LPAREN2, - ACTIONS(5744), 1, - anon_sym_DOT, - ACTIONS(5746), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5748), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5750), 1, - aux_sym__immediate_decimal_token4, - STATE(2647), 1, - sym_comment, - STATE(3019), 1, - sym__immediate_decimal, - STATE(3012), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1457), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74729] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5678), 1, - anon_sym_DOLLAR, - ACTIONS(5680), 1, - anon_sym_LPAREN2, - ACTIONS(5752), 1, - anon_sym_DOT, - ACTIONS(5754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5756), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5758), 1, - aux_sym__immediate_decimal_token4, - STATE(2648), 1, - sym_comment, - STATE(3240), 1, - sym__immediate_decimal, - STATE(3225), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1457), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + [79102] = 16, + ACTIONS(111), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74810] = 16, - ACTIONS(3), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, + STATE(2144), 1, sym__str_double_quotes, - STATE(2649), 1, + STATE(2640), 1, + sym_val_string, + STATE(2651), 1, + sym_cmd_identifier, + STATE(2707), 1, sym_comment, - STATE(7158), 1, - sym__val_number_decimal, - STATE(7929), 1, + STATE(6285), 1, sym__command_name, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + STATE(7112), 1, + sym__val_number_decimal, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5101), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5105), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5103), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290911,28 +300101,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74899] = 8, - ACTIONS(3), 1, + [79191] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2650), 1, + STATE(2708), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2929), 1, + STATE(2988), 1, sym_cell_path, - ACTIONS(1764), 7, + ACTIONS(1824), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1766), 43, + ACTIONS(1826), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290973,31 +300162,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74972] = 8, - ACTIONS(3), 1, + [79264] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_DOT, - STATE(2651), 1, + STATE(2709), 1, sym_comment, - STATE(2715), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2934), 1, - sym_cell_path, - ACTIONS(1768), 7, + ACTIONS(966), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1770), 43, + ACTIONS(968), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291034,35 +300216,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75045] = 8, - ACTIONS(3), 1, + [79329] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2652), 1, + STATE(2710), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2941), 1, + STATE(3003), 1, sym_cell_path, - ACTIONS(1772), 7, + ACTIONS(1855), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1774), 43, + ACTIONS(1857), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291103,31 +300288,165 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75118] = 8, - ACTIONS(3), 1, + [79402] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2711), 1, + sym_comment, + STATE(7482), 1, + sym__val_number_decimal, + STATE(7998), 1, + sym__command_name, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [79491] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2712), 1, + sym_comment, + ACTIONS(976), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(978), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [79556] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2653), 1, + STATE(2713), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2942), 1, + STATE(3004), 1, sym_cell_path, - ACTIONS(1776), 7, + ACTIONS(1796), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1778), 43, + ACTIONS(1798), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291168,51 +300487,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75191] = 16, - ACTIONS(3), 1, + [79629] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, + STATE(2132), 1, sym_val_string, - STATE(2654), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2714), 1, sym_comment, - STATE(7053), 1, - sym__val_number_decimal, - STATE(7271), 1, + STATE(6132), 1, sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1196), 2, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5052), 5, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291244,48 +300564,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [75280] = 16, - ACTIONS(3), 1, + [79718] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, + STATE(1701), 1, + sym__command_name, + STATE(2132), 1, sym_val_string, - STATE(2655), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2715), 1, sym_comment, - STATE(7053), 1, + STATE(7482), 1, sym__val_number_decimal, - STATE(7272), 1, - sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5052), 5, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291317,299 +300637,222 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [75369] = 12, - ACTIONS(3), 1, + [79807] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5678), 1, - anon_sym_DOLLAR, - ACTIONS(5680), 1, - anon_sym_LPAREN2, - ACTIONS(5752), 1, - anon_sym_DOT, - ACTIONS(5754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5756), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5758), 1, - aux_sym__immediate_decimal_token4, - STATE(2656), 1, + STATE(2716), 1, sym_comment, - STATE(3222), 1, - sym__immediate_decimal, - STATE(3218), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1482), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1484), 27, + ACTIONS(1021), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1023), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75450] = 7, - ACTIONS(3), 1, + [79872] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_DOT, - STATE(2657), 1, + STATE(2717), 1, sym_comment, - STATE(2702), 1, - aux_sym_cell_path_repeat1, - STATE(2747), 1, - sym_path, - ACTIONS(889), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(891), 32, + ACTIONS(962), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(964), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75521] = 12, - ACTIONS(3), 1, + [79937] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5678), 1, - anon_sym_DOLLAR, - ACTIONS(5680), 1, - anon_sym_LPAREN2, - ACTIONS(5752), 1, - anon_sym_DOT, - ACTIONS(5754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5756), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5758), 1, - aux_sym__immediate_decimal_token4, - STATE(2658), 1, - sym_comment, - STATE(3241), 1, - sym__immediate_decimal, - STATE(3193), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1480), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, + STATE(2144), 1, + sym__str_double_quotes, + STATE(2640), 1, + sym_val_string, + STATE(2651), 1, + sym_cmd_identifier, + STATE(2718), 1, + sym_comment, + STATE(7005), 1, + sym__command_name, + STATE(7112), 1, + sym__val_number_decimal, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75602] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5678), 1, - anon_sym_DOLLAR, - ACTIONS(5680), 1, - anon_sym_LPAREN2, - ACTIONS(5752), 1, - anon_sym_DOT, - ACTIONS(5754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5756), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5758), 1, - aux_sym__immediate_decimal_token4, - STATE(2659), 1, - sym_comment, - STATE(3185), 1, - sym__immediate_decimal, - STATE(3227), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1486), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1488), 27, + ACTIONS(5101), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5105), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75683] = 8, - ACTIONS(3), 1, + ACTIONS(5103), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [80026] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2660), 1, + STATE(2719), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2943), 1, + STATE(3009), 1, sym_cell_path, - ACTIONS(1780), 7, + ACTIONS(1808), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1782), 43, + ACTIONS(1810), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291650,31 +300893,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75756] = 8, - ACTIONS(3), 1, + [80099] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2661), 1, + STATE(2720), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2954), 1, + STATE(3020), 1, sym_cell_path, - ACTIONS(1784), 7, + ACTIONS(1820), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1786), 43, + ACTIONS(1822), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291715,31 +300958,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75829] = 8, - ACTIONS(3), 1, + [80172] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5674), 1, + anon_sym_QMARK2, + STATE(2721), 1, + sym_comment, + ACTIONS(970), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(972), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT, - STATE(2662), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80239] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3705), 1, + anon_sym_DQUOTE, + ACTIONS(5682), 1, + aux_sym_cmd_identifier_token38, + STATE(2722), 1, sym_comment, - STATE(2715), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2859), 1, - sym_cell_path, - ACTIONS(1788), 7, + STATE(4798), 1, + sym_cmd_identifier, + STATE(4799), 1, + sym_val_string, + STATE(4826), 1, + sym__command_name, + STATE(4919), 1, + sym__str_double_quotes, + STATE(7318), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3707), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5676), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1790), 43, + ACTIONS(5680), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5678), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291771,40 +301097,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + [80328] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5684), 1, + anon_sym_QMARK2, + STATE(2723), 1, + sym_comment, + ACTIONS(980), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(982), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75902] = 8, - ACTIONS(3), 1, + anon_sym_in, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80395] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2663), 1, + STATE(2724), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2865), 1, + STATE(2916), 1, sym_cell_path, - ACTIONS(1792), 7, + ACTIONS(1741), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1794), 43, + ACTIONS(1745), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291845,31 +301220,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75975] = 8, - ACTIONS(3), 1, + [80468] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2664), 1, + STATE(2725), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2926), 1, + STATE(2918), 1, sym_cell_path, - ACTIONS(883), 7, + ACTIONS(1899), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(885), 43, + ACTIONS(1901), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291910,31 +301285,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76048] = 8, - ACTIONS(3), 1, + [80541] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_DOT, - STATE(2665), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2726), 1, sym_comment, - STATE(2715), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2866), 1, - sym_cell_path, - ACTIONS(1796), 7, + STATE(4826), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1798), 43, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291966,40 +301362,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76121] = 8, - ACTIONS(3), 1, + [80630] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2666), 1, + STATE(2727), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2870), 1, + STATE(2919), 1, sym_cell_path, - ACTIONS(1800), 7, + ACTIONS(1831), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1802), 43, + ACTIONS(1833), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292040,51 +301423,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76194] = 16, - ACTIONS(3), 1, + [80703] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2667), 1, + ACTIONS(5651), 1, + anon_sym_DOT, + STATE(2728), 1, sym_comment, - STATE(6847), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, + STATE(2758), 1, + aux_sym_cell_path_repeat1, + STATE(2841), 1, + sym_path, + STATE(2921), 1, + sym_cell_path, + ACTIONS(1835), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1837), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292116,91 +301479,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76283] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5740), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5760), 1, - anon_sym_DOT, - STATE(2668), 1, - sym_comment, - ACTIONS(1520), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1518), 48, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76352] = 8, - ACTIONS(3), 1, + [80776] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2669), 1, + STATE(2729), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2871), 1, + STATE(2922), 1, sym_cell_path, - ACTIONS(1804), 7, + ACTIONS(1839), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1806), 43, + ACTIONS(1841), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292241,51 +301553,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76425] = 16, - ACTIONS(3), 1, + [80849] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4286), 1, + anon_sym_DQUOTE, + ACTIONS(5688), 1, aux_sym_cmd_identifier_token38, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2573), 1, + STATE(2730), 1, + sym_comment, + STATE(4798), 1, sym_cmd_identifier, - STATE(2601), 1, + STATE(4799), 1, sym_val_string, - STATE(2670), 1, - sym_comment, - STATE(6289), 1, + STATE(4826), 1, sym__command_name, - STATE(7053), 1, + STATE(4863), 1, + sym__str_double_quotes, + STATE(7381), 1, sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5052), 5, + ACTIONS(4288), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1241), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, + ACTIONS(1243), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, + ACTIONS(5686), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292317,20 +301630,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76514] = 4, - ACTIONS(3), 1, + [80938] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2671), 1, + ACTIONS(5651), 1, + anon_sym_DOT, + STATE(2731), 1, sym_comment, - ACTIONS(1913), 6, + STATE(2758), 1, + aux_sym_cell_path_repeat1, + STATE(2841), 1, + sym_path, + STATE(2985), 1, + sym_cell_path, + ACTIONS(1762), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1915), 48, - ts_builtin_sym_end, + ACTIONS(1764), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292367,39 +301687,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76579] = 8, - ACTIONS(3), 1, + [81011] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2672), 1, + STATE(2732), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2872), 1, + STATE(2864), 1, sym_cell_path, - ACTIONS(1808), 7, + ACTIONS(1774), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1810), 43, + ACTIONS(1776), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292440,31 +301756,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76652] = 8, - ACTIONS(3), 1, + [81084] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_DOT, - STATE(2673), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2733), 1, sym_comment, - STATE(2715), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2873), 1, - sym_cell_path, - ACTIONS(1812), 7, + STATE(6504), 1, + sym__command_name, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1814), 43, + ACTIONS(5029), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292496,40 +301833,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76725] = 8, - ACTIONS(3), 1, + [81173] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2674), 1, + STATE(2734), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2874), 1, + STATE(2866), 1, sym_cell_path, - ACTIONS(1816), 7, + ACTIONS(1778), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1818), 43, + ACTIONS(1780), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292570,31 +301894,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76798] = 8, - ACTIONS(3), 1, + [81246] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_DOT, - STATE(2675), 1, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, + aux_sym_cmd_identifier_token38, + STATE(2144), 1, + sym__str_double_quotes, + STATE(2640), 1, + sym_val_string, + STATE(2651), 1, + sym_cmd_identifier, + STATE(2735), 1, sym_comment, - STATE(2715), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2878), 1, - sym_cell_path, - ACTIONS(1820), 7, + STATE(7112), 1, + sym__val_number_decimal, + STATE(7338), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5101), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1822), 43, + ACTIONS(5105), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5103), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292626,60 +301971,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [81335] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, + aux_sym_cmd_identifier_token38, + STATE(2132), 1, + sym_val_string, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2736), 1, + sym_comment, + STATE(7482), 1, + sym__val_number_decimal, + STATE(7900), 1, + sym__command_name, + ACTIONS(1259), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76871] = 16, - ACTIONS(3), 1, + ACTIONS(5027), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [81424] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, + STATE(2132), 1, sym_val_string, - STATE(2137), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(2676), 1, + STATE(2737), 1, sym_comment, - STATE(6761), 1, + STATE(6732), 1, sym__command_name, - STATE(7158), 1, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292711,48 +302117,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76960] = 16, - ACTIONS(3), 1, + [81513] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, + STATE(2132), 1, sym_val_string, - STATE(2137), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(2677), 1, + STATE(2738), 1, sym_comment, - STATE(6103), 1, - sym__command_name, - STATE(7158), 1, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + STATE(8019), 1, + sym__command_name, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292784,48 +302190,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77049] = 16, - ACTIONS(3), 1, + [81602] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(1628), 1, - sym__command_name, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, + STATE(2132), 1, sym_val_string, - STATE(2137), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(2678), 1, + STATE(2739), 1, sym_comment, - STATE(7158), 1, + STATE(6921), 1, + sym__command_name, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292857,48 +302263,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77138] = 16, - ACTIONS(3), 1, + [81691] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5763), 1, + ACTIONS(5690), 1, anon_sym_DQUOTE, - STATE(1746), 1, + STATE(1828), 1, sym__command_name, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, + STATE(2640), 1, sym_val_string, - STATE(2679), 1, - sym_comment, - STATE(2689), 1, + STATE(2651), 1, + sym_cmd_identifier, + STATE(2709), 1, sym__str_double_quotes, - STATE(7053), 1, + STATE(2740), 1, + sym_comment, + STATE(7112), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5765), 2, + ACTIONS(5692), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5052), 5, + ACTIONS(5101), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, + ACTIONS(5105), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, + ACTIONS(5103), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292930,28 +302336,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77227] = 8, - ACTIONS(3), 1, + [81780] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_DOT, - STATE(2680), 1, + STATE(2741), 1, sym_comment, - STATE(2715), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2840), 1, - sym_cell_path, - ACTIONS(1740), 7, + ACTIONS(2311), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1742), 43, + ACTIONS(2313), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292988,55 +302386,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77300] = 16, - ACTIONS(3), 1, + [81845] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2681), 1, + STATE(2742), 1, sym_comment, - STATE(6421), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(2311), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2313), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293068,48 +302442,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77389] = 16, - ACTIONS(3), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [81910] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, + STATE(2132), 1, sym_val_string, - STATE(2137), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(2682), 1, + STATE(2743), 1, sym_comment, - STATE(6426), 1, + STATE(5952), 1, sym__command_name, - STATE(7158), 1, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293141,48 +302531,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77478] = 16, - ACTIONS(3), 1, + [81999] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, + anon_sym_LPAREN2, + ACTIONS(5694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5696), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5698), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5700), 1, + aux_sym__immediate_decimal_token5, + STATE(2744), 1, + sym_comment, + STATE(3244), 1, + sym__immediate_decimal, + STATE(3309), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1441), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82080] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3583), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5773), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - STATE(2683), 1, - sym_comment, - STATE(4614), 1, + STATE(2132), 1, sym_val_string, - STATE(4679), 1, + STATE(2155), 1, sym_cmd_identifier, - STATE(4704), 1, - sym__command_name, - STATE(4836), 1, + STATE(2158), 1, sym__str_double_quotes, - STATE(7263), 1, + STATE(2745), 1, + sym_comment, + STATE(6612), 1, + sym__command_name, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3585), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5767), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5771), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5769), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293214,48 +302673,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77567] = 16, - ACTIONS(3), 1, + [82169] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(4919), 1, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, + STATE(2132), 1, sym_val_string, - STATE(2137), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, sym__str_double_quotes, - STATE(2684), 1, + STATE(2746), 1, sym_comment, - STATE(7158), 1, - sym__val_number_decimal, - STATE(7788), 1, + STATE(6616), 1, sym__command_name, - ACTIONS(1196), 2, + STATE(7482), 1, + sym__val_number_decimal, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293287,48 +302746,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77656] = 16, - ACTIONS(3), 1, + [82258] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2685), 1, + STATE(2747), 1, sym_comment, - STATE(6605), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, + ACTIONS(2271), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2273), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293360,48 +302791,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77745] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2686), 1, - sym_comment, - STATE(4704), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, + [82323] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2748), 1, + sym_comment, + ACTIONS(2241), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2243), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293433,48 +302852,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77834] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4215), 1, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5777), 1, - aux_sym_cmd_identifier_token38, - STATE(2687), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [82388] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, + anon_sym_LPAREN2, + ACTIONS(5694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5696), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5698), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5700), 1, + aux_sym__immediate_decimal_token5, + STATE(2749), 1, sym_comment, - STATE(4614), 1, - sym_val_string, - STATE(4679), 1, - sym_cmd_identifier, - STATE(4704), 1, - sym__command_name, - STATE(4973), 1, - sym__str_double_quotes, - STATE(7459), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, + STATE(3279), 1, + sym__immediate_decimal, + STATE(3278), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1551), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4217), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1553), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1180), 5, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82469] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5651), 1, + anon_sym_DOT, + STATE(2750), 1, + sym_comment, + STATE(2758), 1, + aux_sym_cell_path_repeat1, + STATE(2841), 1, + sym_path, + STATE(2970), 1, + sym_cell_path, + ACTIONS(945), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(1182), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5775), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(947), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293506,93 +302989,199 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77923] = 16, - ACTIONS(3), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [82542] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(111), 1, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, + anon_sym_LPAREN2, + ACTIONS(5694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5696), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5698), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5700), 1, + aux_sym__immediate_decimal_token5, + STATE(2751), 1, + sym_comment, + STATE(3284), 1, + sym__immediate_decimal, + STATE(3280), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1555), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1557), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82623] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, + anon_sym_LPAREN2, + ACTIONS(5694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5696), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5698), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5700), 1, + aux_sym__immediate_decimal_token5, + STATE(2752), 1, + sym_comment, + STATE(3289), 1, + sym__immediate_decimal, + STATE(3285), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1501), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1509), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1200), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82704] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5031), 1, aux_sym_cmd_identifier_token38, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, + STATE(2132), 1, sym_val_string, - STATE(2688), 1, + STATE(2155), 1, + sym_cmd_identifier, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2753), 1, sym_comment, - STATE(6906), 1, + STATE(6644), 1, sym__command_name, - STATE(7053), 1, + STATE(7482), 1, sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5052), 5, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5025), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, + ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [78012] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2689), 1, - sym_comment, - ACTIONS(916), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(918), 48, - ts_builtin_sym_end, + ACTIONS(5027), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293624,44 +303213,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [78077] = 8, - ACTIONS(3), 1, + [82793] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2690), 1, + STATE(2754), 1, sym_comment, - STATE(2715), 1, + STATE(2758), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2956), 1, + STATE(3000), 1, sym_cell_path, - ACTIONS(1723), 7, + ACTIONS(1770), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1725), 43, + ACTIONS(1772), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293702,51 +303274,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78150] = 16, - ACTIONS(3), 1, - anon_sym_POUND, + [82866] = 16, ACTIONS(111), 1, anon_sym_DQUOTE, - ACTIONS(1200), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1261), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4927), 1, - anon_sym_DOT2, - ACTIONS(5058), 1, + ACTIONS(1263), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5107), 1, aux_sym_cmd_identifier_token38, - STATE(2116), 1, + STATE(2144), 1, sym__str_double_quotes, - STATE(2573), 1, - sym_cmd_identifier, - STATE(2601), 1, + STATE(2640), 1, sym_val_string, - STATE(2691), 1, + STATE(2651), 1, + sym_cmd_identifier, + STATE(2755), 1, sym_comment, - STATE(6338), 1, - sym__command_name, - STATE(7053), 1, + STATE(7112), 1, sym__val_number_decimal, + STATE(7341), 1, + sym__command_name, ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1196), 2, + ACTIONS(1259), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5052), 5, + ACTIONS(5101), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5056), 5, + ACTIONS(5105), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5054), 31, + ACTIONS(5103), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293778,20 +303351,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78239] = 4, - ACTIONS(3), 1, + [82955] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2692), 1, + ACTIONS(5651), 1, + anon_sym_DOT, + STATE(2756), 1, sym_comment, - ACTIONS(920), 6, + STATE(2758), 1, + aux_sym_cell_path_repeat1, + STATE(2841), 1, + sym_path, + STATE(2986), 1, + sym_cell_path, + ACTIONS(1747), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(922), 48, - ts_builtin_sym_end, + ACTIONS(1749), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293828,39 +303408,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78304] = 8, - ACTIONS(3), 1, + [83028] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5702), 1, + aux_sym__immediate_decimal_token2, + STATE(2757), 1, + sym_comment, + ACTIONS(1519), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1521), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83094] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2693), 1, + STATE(2758), 1, sym_comment, - STATE(2715), 1, + STATE(2773), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, + STATE(2841), 1, sym_path, - STATE(2847), 1, - sym_cell_path, - ACTIONS(1744), 7, + ACTIONS(951), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1746), 43, + ACTIONS(953), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293895,451 +303530,893 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [78377] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2694), 1, - sym_comment, - ACTIONS(936), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83164] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5669), 1, + aux_sym__immediate_decimal_token2, + STATE(2759), 1, + sym_comment, + ACTIONS(1591), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1589), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [83230] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2760), 1, + sym_comment, + ACTIONS(994), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(996), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83294] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + ACTIONS(951), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(953), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83364] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5706), 1, + aux_sym__immediate_decimal_token2, + STATE(2762), 1, + sym_comment, + ACTIONS(1650), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1648), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [83430] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2763), 1, + sym_comment, + ACTIONS(976), 19, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(978), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83494] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5653), 1, + anon_sym_DOT, + STATE(2764), 1, + sym_comment, + STATE(2765), 1, + aux_sym_cell_path_repeat1, + STATE(2840), 1, + sym_path, + ACTIONS(953), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(951), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [83564] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5708), 1, + anon_sym_DOT, + STATE(2840), 1, + sym_path, + STATE(2765), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(957), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(955), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [83632] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5711), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2766), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(955), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(957), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83700] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2767), 1, + sym_comment, + ACTIONS(986), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(988), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83764] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2768), 1, + sym_comment, + ACTIONS(990), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(992), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83828] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5714), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5716), 1, + aux_sym__immediate_decimal_token2, + STATE(2769), 1, + sym_comment, + ACTIONS(1569), 18, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1571), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token38, - ACTIONS(938), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78442] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83896] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2695), 1, + STATE(2770), 1, sym_comment, - ACTIONS(912), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(914), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(962), 19, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(964), 34, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR, - aux_sym__val_number_decimal_token1, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78507] = 16, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83960] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2696), 1, + ACTIONS(5718), 1, + anon_sym_DOT, + STATE(2771), 1, sym_comment, - STATE(7158), 1, - sym__val_number_decimal, - STATE(7852), 1, - sym__command_name, - ACTIONS(1196), 2, + STATE(2781), 1, + aux_sym_cell_path_repeat1, + STATE(3018), 1, + sym_path, + STATE(3040), 1, + sym_cell_path, + ACTIONS(945), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(947), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [78596] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2697), 1, - sym_comment, - STATE(6617), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [78685] = 16, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84032] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2698), 1, + ACTIONS(5657), 1, + aux_sym__immediate_decimal_token2, + STATE(2772), 1, sym_comment, - STATE(7158), 1, - sym__val_number_decimal, - STATE(7973), 1, - sym__command_name, - ACTIONS(1196), 2, + ACTIONS(1473), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 34, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [78774] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1200), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2699), 1, - sym_comment, - STATE(6682), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [78863] = 8, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84098] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5720), 1, anon_sym_DOT, - STATE(2700), 1, + STATE(2841), 1, + sym_path, + STATE(2773), 2, sym_comment, - STATE(2715), 1, aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2908), 1, - sym_cell_path, - ACTIONS(1733), 7, + ACTIONS(955), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(1735), 43, + ACTIONS(957), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294380,100 +304457,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78936] = 16, - ACTIONS(3), 1, + [84166] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1200), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4919), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4927), 1, - anon_sym_DOT2, - STATE(2129), 1, - sym_cmd_identifier, - STATE(2131), 1, - sym_val_string, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2701), 1, + ACTIONS(5723), 1, + anon_sym_QMARK2, + STATE(2774), 1, sym_comment, - STATE(6419), 1, - sym__command_name, - STATE(7158), 1, - sym__val_number_decimal, - ACTIONS(1196), 2, + ACTIONS(970), 19, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4913), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4917), 5, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(972), 33, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4915), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [79025] = 6, - ACTIONS(3), 1, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84232] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5779), 1, - anon_sym_DOT, - STATE(2747), 1, - sym_path, - STATE(2702), 2, + ACTIONS(5725), 1, + anon_sym_QMARK2, + STATE(2775), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 19, + ACTIONS(980), 19, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -294486,7 +304549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(895), 32, + ACTIONS(982), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294504,6 +304567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -294519,48 +304583,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79094] = 4, - ACTIONS(121), 1, + [84298] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2703), 1, + STATE(2776), 1, sym_comment, - ACTIONS(1610), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1608), 49, + ACTIONS(966), 19, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(968), 34, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84362] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5727), 1, + sym__newline, + STATE(2777), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1755), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294569,6 +304666,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1757), 36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294577,22 +304704,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [79158] = 4, - ACTIONS(3), 1, + [84428] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2704), 1, + ACTIONS(5730), 1, + anon_sym_DOT, + ACTIONS(5732), 1, + aux_sym__immediate_decimal_token2, + STATE(2778), 1, sym_comment, - ACTIONS(920), 20, + ACTIONS(1589), 18, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -294605,7 +304732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(922), 33, + ACTIONS(1591), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294619,11 +304746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -294639,22 +304766,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79222] = 7, - ACTIONS(121), 1, + [84496] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5718), 1, anon_sym_DOT, - STATE(2705), 1, + STATE(2779), 1, sym_comment, - STATE(2711), 1, + STATE(2781), 1, aux_sym_cell_path_repeat1, - STATE(2775), 1, + STATE(3018), 1, sym_path, - ACTIONS(891), 3, + STATE(3057), 1, + sym_cell_path, + ACTIONS(1599), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1603), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84568] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5734), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5736), 1, + aux_sym__immediate_decimal_token2, + STATE(2780), 1, + sym_comment, + ACTIONS(1571), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(889), 47, + ACTIONS(1569), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294673,8 +304862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -294702,19 +304891,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79292] = 5, - ACTIONS(3), 1, + [84635] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5782), 1, - sym__newline, - STATE(2706), 2, + ACTIONS(5718), 1, + anon_sym_DOT, + STATE(2781), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1856), 16, - anon_sym_DOLLAR, + STATE(2787), 1, + aux_sym_cell_path_repeat1, + STATE(3018), 1, + sym_path, + ACTIONS(951), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -294727,59 +304920,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1858), 35, + ACTIONS(953), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84704] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5738), 1, + sym__entry_separator, + STATE(2782), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2319), 50, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84767] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5743), 1, + anon_sym_RBRACK, + ACTIONS(5745), 1, + sym__entry_separator, + STATE(2782), 1, + aux_sym__multiple_types_repeat1, + STATE(2783), 1, + sym_comment, + ACTIONS(5741), 49, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84834] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5745), 1, + sym__entry_separator, + ACTIONS(5747), 1, + anon_sym_RBRACK, + STATE(2782), 1, + aux_sym__multiple_types_repeat1, + STATE(2784), 1, + sym_comment, + ACTIONS(5741), 49, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84901] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5745), 1, + sym__entry_separator, + ACTIONS(5749), 1, + anon_sym_RBRACK, + STATE(2782), 1, + aux_sym__multiple_types_repeat1, + STATE(2785), 1, + sym_comment, + ACTIONS(5741), 49, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84968] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5751), 1, + anon_sym_QMARK2, + STATE(2786), 1, + sym_comment, + ACTIONS(970), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(972), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79358] = 6, - ACTIONS(3), 1, + [85033] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5785), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5787), 1, - aux_sym__immediate_decimal_token2, - STATE(2707), 1, + ACTIONS(5753), 1, + anon_sym_DOT, + STATE(3018), 1, + sym_path, + STATE(2787), 2, sym_comment, - ACTIONS(1470), 20, + aux_sym_cell_path_repeat1, + ACTIONS(955), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -294792,8 +305283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 31, + ACTIONS(957), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294810,6 +305300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -294825,80 +305316,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79426] = 4, - ACTIONS(3), 1, + [85100] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2708), 1, + ACTIONS(5756), 1, + anon_sym_QMARK2, + STATE(2788), 1, sym_comment, - ACTIONS(1376), 20, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(980), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(1378), 33, + ACTIONS(982), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79490] = 4, - ACTIONS(3), 1, + [85165] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2709), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5760), 1, + aux_sym__immediate_decimal_token2, + STATE(2789), 1, sym_comment, - ACTIONS(912), 20, - anon_sym__, + ACTIONS(1589), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -294910,26 +305402,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(914), 33, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -294945,23 +305437,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79554] = 6, - ACTIONS(3), 1, + [85232] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5789), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5791), 1, + ACTIONS(5732), 1, aux_sym__immediate_decimal_token2, - STATE(2710), 1, + STATE(2790), 1, sym_comment, - ACTIONS(1470), 19, + ACTIONS(1589), 18, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -294974,7 +305463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1472), 32, + ACTIONS(1591), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294992,6 +305481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -295007,21 +305497,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79622] = 6, - ACTIONS(121), 1, + [85297] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5793), 1, + STATE(2791), 1, + sym_comment, + ACTIONS(962), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, anon_sym_DOT, - STATE(2775), 1, - sym_path, - STATE(2711), 2, + ACTIONS(964), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85360] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2792), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(895), 3, + ACTIONS(1571), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(893), 47, + ACTIONS(1569), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295040,8 +305585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -295069,80 +305614,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79690] = 4, + aux_sym__unquoted_in_list_token2, + [85423] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2712), 1, + ACTIONS(5745), 1, + sym__entry_separator, + ACTIONS(5762), 1, + anon_sym_RBRACK, + STATE(2782), 1, + aux_sym__multiple_types_repeat1, + STATE(2793), 1, sym_comment, - ACTIONS(1504), 20, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(1506), 33, + ACTIONS(5741), 49, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79754] = 4, - ACTIONS(3), 1, + [85490] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2713), 1, + ACTIONS(5764), 1, + aux_sym__immediate_decimal_token2, + STATE(2794), 1, sym_comment, - ACTIONS(916), 20, + ACTIONS(1648), 18, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -295155,7 +305702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(918), 33, + ACTIONS(1650), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295169,11 +305716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -295189,42 +305736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79818] = 9, + [85555] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5796), 1, - anon_sym_DOT_DOT2, - ACTIONS(5800), 1, - sym_filesize_unit, - ACTIONS(5802), 1, - sym_duration_unit, - STATE(2714), 1, + ACTIONS(5768), 1, + anon_sym_RBRACK, + ACTIONS(5770), 1, + sym__entry_separator, + STATE(2795), 1, sym_comment, - ACTIONS(5535), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(5798), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1441), 29, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5766), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295232,20 +305755,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295254,26 +305796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79892] = 7, + aux_sym__unquoted_in_list_token1, + [85622] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_DOT, - STATE(2715), 1, + ACTIONS(5745), 1, + sym__entry_separator, + ACTIONS(5772), 1, + anon_sym_RBRACK, + STATE(2782), 1, + aux_sym__multiple_types_repeat1, + STATE(2796), 1, sym_comment, - STATE(2716), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - ACTIONS(889), 7, + ACTIONS(5741), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(891), 43, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295281,10 +305817,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -295305,37 +305844,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85689] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2797), 1, + sym_comment, + ACTIONS(1473), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79962] = 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [85752] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5804), 1, - anon_sym_DOT, - STATE(2801), 1, - sym_path, - STATE(2716), 2, + ACTIONS(5745), 1, + sym__entry_separator, + ACTIONS(5774), 1, + anon_sym_RBRACK, + STATE(2782), 1, + aux_sym__multiple_types_repeat1, + STATE(2798), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 7, + ACTIONS(5741), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(895), 43, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295343,10 +305937,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -295367,72 +305964,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80030] = 6, + [85819] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - ACTIONS(5809), 1, - aux_sym__immediate_decimal_token2, - STATE(2717), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(5776), 1, + anon_sym_RBRACK, + STATE(2799), 1, sym_comment, - ACTIONS(1518), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1520), 32, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5766), 49, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295441,19 +306038,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80098] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [85886] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2718), 1, + ACTIONS(5778), 1, + anon_sym_DOT_DOT2, + ACTIONS(5782), 1, + sym_filesize_unit, + ACTIONS(5784), 1, + sym_duration_unit, + ACTIONS(5786), 1, + aux_sym__unquoted_in_list_token2, + STATE(2800), 1, sym_comment, - ACTIONS(1368), 20, + ACTIONS(5780), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1525), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -295466,8 +306072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 33, + ACTIONS(1537), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295480,15 +306085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -295501,48 +306103,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80162] = 4, - ACTIONS(121), 1, + [85959] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2719), 1, + STATE(2801), 1, sym_comment, - ACTIONS(1472), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1470), 49, + ACTIONS(966), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(968), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [86022] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2802), 1, + sym_comment, + ACTIONS(966), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295551,6 +306179,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(968), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295559,19 +306221,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [80226] = 4, - ACTIONS(121), 1, + [86085] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2720), 1, + STATE(2803), 1, sym_comment, - ACTIONS(1537), 4, + ACTIONS(1650), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1535), 49, + ACTIONS(1648), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295586,13 +306246,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -295621,24 +306280,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [80290] = 8, - ACTIONS(121), 1, + [86148] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1589), 1, + ACTIONS(1711), 1, anon_sym_LPAREN2, - ACTIONS(1595), 1, + ACTIONS(1717), 1, sym__entry_separator, - ACTIONS(5811), 1, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5788), 1, anon_sym_DOT_DOT2, - STATE(2721), 1, + STATE(2804), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(5813), 2, + ACTIONS(5790), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 46, + ACTIONS(1709), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295656,8 +306314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -295685,26 +306343,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80362] = 8, - ACTIONS(3), 1, + [86219] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT, - STATE(2722), 1, + ACTIONS(5792), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5794), 1, + aux_sym__immediate_decimal_token2, + STATE(2805), 1, sym_comment, - STATE(2753), 1, - aux_sym_cell_path_repeat1, - STATE(2948), 1, - sym_path, - STATE(3024), 1, - sym_cell_path, - ACTIONS(883), 18, + ACTIONS(1569), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -295717,7 +306370,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(885), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295734,6 +306388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -295749,22 +306404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80434] = 5, - ACTIONS(3), 1, + [86286] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5817), 1, - anon_sym_QMARK2, - STATE(2723), 1, + STATE(2806), 1, sym_comment, - ACTIONS(900), 20, - anon_sym__, + ACTIONS(1481), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -295776,28 +306426,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(902), 32, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1483), 34, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -295810,85 +306463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80500] = 5, + [86349] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, - anon_sym_QMARK2, - STATE(2724), 1, + STATE(2807), 1, sym_comment, - ACTIONS(906), 20, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(908), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + ACTIONS(978), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [80566] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, sym__entry_separator, - ACTIONS(5821), 1, - anon_sym_DOT_DOT2, - STATE(2725), 1, - sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(5823), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1570), 46, + ACTIONS(976), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295902,12 +306486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -295935,29 +306522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80638] = 8, - ACTIONS(3), 1, + [86412] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT, - STATE(2726), 1, + STATE(2808), 1, sym_comment, - STATE(2753), 1, - aux_sym_cell_path_repeat1, - STATE(2948), 1, - sym_path, - STATE(2973), 1, - sym_cell_path, - ACTIONS(1545), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(976), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295966,31 +306539,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1549), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(978), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295999,79 +306581,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80710] = 6, + [86475] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - STATE(2879), 1, - sym_long_flag, - STATE(2727), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5825), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5827), 43, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80777] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5832), 1, - anon_sym_QMARK2, - STATE(2728), 1, + STATE(2809), 1, sym_comment, - ACTIONS(908), 3, + ACTIONS(964), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(906), 48, + ACTIONS(962), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296085,14 +306604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -296120,21 +306640,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80842] = 5, - ACTIONS(3), 1, + [86538] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5834), 1, - aux_sym__immediate_decimal_token2, - STATE(2729), 1, + ACTIONS(5796), 1, + anon_sym_DOT, + STATE(2810), 1, sym_comment, - ACTIONS(1518), 20, + STATE(2904), 1, + aux_sym_cell_path_repeat1, + STATE(3050), 1, + sym_path, + STATE(3081), 1, + sym_cell_path, + ACTIONS(945), 15, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296146,25 +306668,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 31, + aux_sym_unquoted_token1, + ACTIONS(947), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -296180,20 +306703,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80907] = 4, - ACTIONS(3), 1, + [86609] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2730), 1, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + STATE(2997), 1, + sym_long_flag, + STATE(2811), 2, sym_comment, - ACTIONS(912), 7, + aux_sym_decl_def_repeat1, + ACTIONS(5798), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(914), 45, + ACTIONS(5800), 43, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296217,168 +306744,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token25, aux_sym_cmd_identifier_token26, aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80970] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5836), 1, - anon_sym_DOT, - STATE(2948), 1, - sym_path, - STATE(2731), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(895), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [81037] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5839), 1, - anon_sym_DOT, - STATE(2732), 1, - sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2997), 1, - sym_path, - STATE(3132), 1, - sym_cell_path, - ACTIONS(883), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(885), 32, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [81108] = 6, - ACTIONS(3), 1, + [86676] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5834), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5841), 1, - anon_sym_DOT, - STATE(2733), 1, + STATE(2812), 1, sym_comment, - ACTIONS(1518), 19, + ACTIONS(994), 19, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296390,25 +306788,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 31, + aux_sym_unquoted_token1, + ACTIONS(996), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -296424,26 +306823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81175] = 6, - ACTIONS(3), 1, + [86739] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5844), 1, - sym_long_flag_identifier, - ACTIONS(5846), 1, - anon_sym_EQ2, - STATE(2734), 1, + STATE(2813), 1, sym_comment, - ACTIONS(4968), 8, - aux_sym_cmd_identifier_token39, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4966), 42, + ACTIONS(976), 7, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(978), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296451,13 +306844,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -296478,65 +306868,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, - [81242] = 5, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86802] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5809), 1, - aux_sym__immediate_decimal_token2, - STATE(2735), 1, + STATE(2814), 1, sym_comment, - ACTIONS(1518), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1520), 32, + ACTIONS(1723), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1721), 48, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296545,20 +306939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81307] = 6, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [86865] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5848), 1, - anon_sym_DOT, - ACTIONS(5850), 1, - aux_sym__immediate_decimal_token2, - STATE(2736), 1, + STATE(2815), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1591), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1518), 47, + ACTIONS(1589), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296577,8 +306970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -296606,23 +306999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81374] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [86928] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2737), 1, + STATE(2816), 1, sym_comment, - ACTIONS(924), 20, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(962), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296631,32 +307017,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(926), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(964), 41, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296665,20 +307059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81437] = 4, - ACTIONS(3), 1, + [86991] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2738), 1, + STATE(2817), 1, sym_comment, - ACTIONS(932), 20, - anon_sym__, + ACTIONS(1585), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296690,28 +307081,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(934), 32, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1587), 34, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -296724,21 +307118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81500] = 5, - ACTIONS(3), 1, + [87054] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5787), 1, - aux_sym__immediate_decimal_token2, - STATE(2739), 1, + STATE(2818), 1, sym_comment, - ACTIONS(1470), 20, + ACTIONS(986), 19, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296750,25 +307142,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 31, + aux_sym_unquoted_token1, + ACTIONS(988), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -296784,24 +307177,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81565] = 6, - ACTIONS(3), 1, + [87117] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5852), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5854), 1, - aux_sym_unquoted_token2, - STATE(2740), 1, + ACTIONS(5805), 1, + sym_long_flag_identifier, + ACTIONS(5807), 1, + anon_sym_EQ2, + STATE(2819), 1, sym_comment, - ACTIONS(2927), 7, + ACTIONS(4952), 8, + aux_sym_cmd_identifier_token39, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4950), 42, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - aux_sym__val_number_decimal_token1, - ACTIONS(2925), 43, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296809,10 +307204,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -296833,96 +307231,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [81632] = 5, + aux_sym__val_number_decimal_token1, + [87184] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5791), 1, - aux_sym__immediate_decimal_token2, - STATE(2741), 1, + ACTIONS(5809), 1, + sym__entry_separator, + STATE(2820), 2, sym_comment, - ACTIONS(1470), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1472), 32, + aux_sym__multiple_types_repeat1, + ACTIONS(2319), 50, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [81697] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5856), 1, - aux_sym__immediate_decimal_token2, - STATE(2742), 1, - sym_comment, - ACTIONS(1535), 20, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296931,32 +307288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296965,18 +307296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81762] = 6, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [87247] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5860), 1, - anon_sym_RBRACK, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - STATE(2743), 1, - sym_comment, - STATE(2758), 1, + ACTIONS(5812), 1, + anon_sym_RBRACK, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5858), 49, + STATE(2821), 1, + sym_comment, + ACTIONS(5766), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296994,8 +307326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -297026,18 +307358,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81829] = 6, - ACTIONS(121), 1, + [87314] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(5864), 1, + ACTIONS(5814), 1, anon_sym_RBRACK, - STATE(2744), 1, - sym_comment, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5858), 49, + STATE(2822), 1, + sym_comment, + ACTIONS(5766), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297055,8 +307387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -297087,145 +307419,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81896] = 6, - ACTIONS(121), 1, + [87381] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5868), 1, - anon_sym_RBRACK, - ACTIONS(5870), 1, - sym__entry_separator, - STATE(2745), 1, + ACTIONS(5816), 1, + anon_sym_QMARK2, + STATE(2823), 1, sym_comment, - STATE(2761), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5866), 49, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [81963] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(972), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(5872), 1, - anon_sym_RBRACK, - STATE(2746), 1, - sym_comment, - STATE(2761), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5866), 49, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, + ACTIONS(970), 48, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82030] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2747), 1, - sym_comment, - ACTIONS(928), 20, - anon_sym__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297234,32 +307470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(930), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297268,21 +307478,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82093] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [87446] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5874), 1, - aux_sym__immediate_decimal_token2, - STATE(2748), 1, + STATE(2824), 1, sym_comment, - ACTIONS(1535), 19, + ACTIONS(990), 19, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -297295,7 +307504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1537), 32, + ACTIONS(992), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297313,6 +307522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -297328,86 +307538,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82158] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(5876), 1, - anon_sym_RBRACK, - STATE(2749), 1, - sym_comment, - STATE(2761), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5866), 49, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82225] = 9, - ACTIONS(121), 1, + [87509] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5880), 1, - anon_sym_RBRACK, - ACTIONS(5883), 1, - anon_sym_DOT, - STATE(2750), 1, + ACTIONS(5818), 1, + anon_sym_QMARK2, + STATE(2825), 1, sym_comment, - STATE(5903), 1, - aux_sym_cell_path_repeat1, - STATE(6479), 1, - sym_path, - STATE(7150), 1, - sym_cell_path, - ACTIONS(1740), 2, + ACTIONS(982), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - ACTIONS(5878), 45, + ACTIONS(980), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297415,17 +307557,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -297453,18 +307598,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82298] = 6, - ACTIONS(121), 1, + [87574] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2826), 1, + sym_comment, + ACTIONS(1519), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1521), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [87637] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5745), 1, sym__entry_separator, - ACTIONS(5885), 1, + ACTIONS(5820), 1, anon_sym_RBRACK, - STATE(2751), 1, - sym_comment, - STATE(2761), 1, + STATE(2782), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5866), 49, + STATE(2827), 1, + sym_comment, + ACTIONS(5741), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297509,23 +307713,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82365] = 6, - ACTIONS(121), 1, + [87704] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5745), 1, sym__entry_separator, - ACTIONS(5887), 1, + ACTIONS(5822), 1, anon_sym_RBRACK, - STATE(2752), 1, - sym_comment, - STATE(2761), 1, + STATE(2782), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5866), 49, + STATE(2828), 1, + sym_comment, + ACTIONS(5741), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297570,42 +307774,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82432] = 7, + [87771] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT, - STATE(2731), 1, - aux_sym_cell_path_repeat1, - STATE(2753), 1, - sym_comment, - STATE(2948), 1, - sym_path, - ACTIONS(889), 18, - anon_sym_DOT_DOT, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(1698), 1, + sym__entry_separator, + ACTIONS(5824), 1, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(891), 31, + STATE(2829), 1, + sym_comment, + ACTIONS(5826), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1690), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297618,17 +307808,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297637,81 +307841,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82501] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(5889), 1, - anon_sym_RBRACK, - STATE(2754), 1, - sym_comment, - STATE(2761), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5866), 49, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82568] = 6, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [87842] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5893), 1, + ACTIONS(5828), 1, + anon_sym_DOT, + ACTIONS(5830), 1, aux_sym__immediate_decimal_token2, - STATE(2755), 1, + STATE(2830), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(1591), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1470), 47, + ACTIONS(1589), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297730,8 +307874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -297759,77 +307903,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82635] = 6, - ACTIONS(121), 1, + [87909] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(5895), 1, + ACTIONS(5834), 1, anon_sym_RBRACK, - STATE(2756), 1, + ACTIONS(5837), 1, + anon_sym_DOT, + STATE(2831), 1, sym_comment, - STATE(2761), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5866), 49, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, + STATE(6077), 1, + aux_sym_cell_path_repeat1, + STATE(6519), 1, + sym_path, + STATE(7056), 1, + sym_cell_path, + ACTIONS(1774), 2, + sym__entry_separator, + sym__table_head_separator, + ACTIONS(5832), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82702] = 4, - ACTIONS(3), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [87982] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2757), 1, + STATE(2832), 1, sym_comment, - ACTIONS(1216), 16, + ACTIONS(1273), 15, anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -297842,7 +307988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1220), 36, + ACTIONS(1277), 37, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297861,6 +308007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -297879,15 +308026,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82765] = 4, - ACTIONS(121), 1, + [88045] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2833), 1, + sym_comment, + ACTIONS(968), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(966), 49, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [88108] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5897), 1, + ACTIONS(2447), 1, sym__entry_separator, - STATE(2758), 2, + STATE(2834), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2256), 50, + ACTIONS(2445), 50, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297906,8 +308111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -297937,19 +308142,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82828] = 6, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [88170] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5839), 1, + anon_sym_QMARK2, + STATE(2835), 1, + sym_comment, + ACTIONS(970), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(972), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [88234] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5841), 1, + anon_sym_QMARK2, + STATE(2836), 1, + sym_comment, + ACTIONS(980), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(982), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [88298] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(5900), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, - STATE(2759), 1, + ACTIONS(5843), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5845), 1, + aux_sym__immediate_decimal_token2, + STATE(2837), 1, sym_comment, - ACTIONS(5858), 49, + ACTIONS(1571), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1569), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297957,18 +308281,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -297979,9 +308303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297999,74 +308320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82895] = 4, + aux_sym__unquoted_in_list_token2, + [88364] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2760), 1, - sym_comment, - ACTIONS(916), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(918), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82958] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5902), 1, + ACTIONS(5745), 1, sym__entry_separator, - STATE(2761), 2, - sym_comment, + STATE(2782), 1, aux_sym__multiple_types_repeat1, - ACTIONS(2256), 50, + STATE(2838), 1, + sym_comment, + ACTIONS(5741), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298109,58 +308373,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83021] = 6, - ACTIONS(121), 1, + [88428] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(5905), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, - STATE(2762), 1, + ACTIONS(5847), 1, + anon_sym_DOT_DOT2, + STATE(2839), 1, sym_comment, - ACTIONS(5858), 49, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(5849), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1690), 17, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298169,66 +308407,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83088] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5907), 1, - anon_sym_QMARK2, - STATE(2763), 1, - sym_comment, - ACTIONS(902), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(900), 48, + aux_sym_unquoted_token1, + ACTIONS(1698), 31, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298237,20 +308440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83153] = 6, - ACTIONS(121), 1, + [88494] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5909), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5911), 1, - aux_sym__immediate_decimal_token2, - STATE(2764), 1, + STATE(2840), 1, sym_comment, - ACTIONS(1472), 2, - anon_sym_LPAREN2, + ACTIONS(996), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1470), 48, + ACTIONS(994), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298264,13 +308463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -298298,23 +308498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83220] = 5, - ACTIONS(3), 1, + [88556] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5913), 1, - anon_sym_QMARK2, - STATE(2765), 1, + STATE(2841), 1, sym_comment, - ACTIONS(900), 7, + ACTIONS(994), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(902), 44, + anon_sym_DOT, + ACTIONS(996), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298352,29 +308549,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83285] = 5, - ACTIONS(3), 1, + [88618] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5915), 1, - anon_sym_QMARK2, - STATE(2766), 1, + ACTIONS(5851), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5853), 1, + aux_sym__immediate_decimal_token2, + STATE(2842), 1, + sym_comment, + ACTIONS(1569), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1571), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [88684] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5855), 1, + anon_sym_LBRACK2, + STATE(2843), 1, sym_comment, - ACTIONS(906), 7, + ACTIONS(2235), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(908), 44, + ACTIONS(2239), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298412,27 +308668,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83350] = 4, + [88748] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2767), 1, + ACTIONS(2447), 1, + sym__entry_separator, + STATE(2844), 1, sym_comment, - ACTIONS(920), 7, + ACTIONS(2445), 50, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(922), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298440,10 +308691,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -298464,30 +308718,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83413] = 4, - ACTIONS(121), 1, + [88810] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2768), 1, + STATE(2845), 1, sym_comment, - ACTIONS(918), 3, + ACTIONS(988), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(916), 49, + ACTIONS(986), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298501,15 +308756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -298537,16 +308791,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83476] = 4, - ACTIONS(121), 1, + [88872] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2769), 1, + STATE(2846), 1, sym_comment, - ACTIONS(922), 3, + ACTIONS(992), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(920), 49, + ACTIONS(990), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298560,15 +308814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -298596,56 +308849,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83539] = 4, - ACTIONS(121), 1, + [88934] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2770), 1, + ACTIONS(5857), 1, + anon_sym_DOT_DOT2, + STATE(2847), 1, sym_comment, - ACTIONS(914), 3, + ACTIONS(5859), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(912), 49, + ACTIONS(1709), 17, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1717), 31, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298654,19 +308909,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83602] = 6, - ACTIONS(121), 1, + [89000] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(5917), 1, - anon_sym_RBRACK, - STATE(2761), 1, - aux_sym__multiple_types_repeat1, - STATE(2771), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(2848), 1, sym_comment, - ACTIONS(5866), 49, + ACTIONS(2101), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2097), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298709,65 +308963,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83669] = 6, + aux_sym__val_number_decimal_token4, + [89064] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5919), 1, - anon_sym_DOT_DOT2, - STATE(2772), 1, + ACTIONS(947), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2849), 1, sym_comment, - ACTIONS(5921), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1871), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1877), 30, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3138), 1, + sym_path, + STATE(3194), 1, + sym_cell_path, + ACTIONS(945), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298776,19 +309029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83735] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [89134] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2773), 1, + STATE(2850), 1, sym_comment, - ACTIONS(1959), 19, + ACTIONS(1589), 18, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298801,7 +309054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1961), 32, + ACTIONS(1591), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298819,6 +309072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -298834,19 +309088,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83797] = 4, - ACTIONS(3), 1, + [89196] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2774), 1, + ACTIONS(5863), 1, + anon_sym_DOT_DOT2, + STATE(2851), 1, sym_comment, - ACTIONS(1963), 19, + ACTIONS(5865), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1935), 17, anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298859,7 +309116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1965), 32, + ACTIONS(1941), 31, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298873,10 +309130,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -298892,47 +309148,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83859] = 4, - ACTIONS(121), 1, + [89262] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2775), 1, + STATE(2852), 1, sym_comment, - ACTIONS(930), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(928), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1569), 18, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298941,122 +309171,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83921] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(2776), 1, - sym_comment, - ACTIONS(926), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(924), 48, + aux_sym_unquoted_token1, + ACTIONS(1571), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83983] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(2777), 1, - sym_comment, - ACTIONS(934), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(932), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299065,17 +309206,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [84045] = 4, - ACTIONS(121), 1, + [89324] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2778), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(2853), 1, sym_comment, - ACTIONS(2075), 3, + ACTIONS(2107), 3, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2073), 48, + ACTIONS(2105), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299121,54 +309263,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - aux_sym_unquoted_token7, - [84107] = 8, - ACTIONS(121), 1, + aux_sym__val_number_decimal_token4, + [89388] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(885), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2779), 1, + STATE(2854), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3082), 1, - sym_path, - STATE(3164), 1, - sym_cell_path, - ACTIONS(883), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1648), 18, + anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299177,64 +309288,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [84177] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5925), 1, - aux_sym__immediate_decimal_token2, - STATE(2780), 1, - sym_comment, - ACTIONS(1520), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1518), 48, + aux_sym_unquoted_token1, + ACTIONS(1650), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299243,49 +309323,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [84241] = 5, - ACTIONS(121), 1, + [89450] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5911), 1, - aux_sym__immediate_decimal_token2, - STATE(2781), 1, + STATE(2855), 1, sym_comment, - ACTIONS(1472), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1470), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1721), 18, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299294,65 +309346,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [84305] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5927), 1, - aux_sym__immediate_decimal_token2, - STATE(2782), 1, - sym_comment, - ACTIONS(1537), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1535), 48, + aux_sym_unquoted_token1, + ACTIONS(1723), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299361,84 +309381,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [84369] = 6, - ACTIONS(3), 1, + [89512] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5929), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5931), 1, - aux_sym__immediate_decimal_token2, - STATE(2783), 1, + STATE(2856), 1, sym_comment, - ACTIONS(1470), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1472), 31, + ACTIONS(5139), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5137), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84435] = 5, - ACTIONS(3), 1, + [89574] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5933), 1, - sym__newline, - STATE(2784), 2, + STATE(2857), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1856), 6, + ACTIONS(5143), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1858), 43, + ACTIONS(5141), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299475,26 +309488,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84499] = 4, + [89636] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2785), 1, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(2858), 1, + sym_comment, + ACTIONS(2093), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2089), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + [89700] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5867), 1, + anon_sym_EQ2, + STATE(2859), 1, sym_comment, - ACTIONS(5133), 6, + ACTIONS(5041), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5131), 45, + ACTIONS(5039), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299532,64 +309608,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84561] = 4, + [89764] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2786), 1, + ACTIONS(5770), 1, + sym__entry_separator, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(2860), 1, sym_comment, - ACTIONS(1470), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1472), 32, + ACTIONS(5766), 49, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299598,22 +309673,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84623] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [89828] = 29, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2787), 1, - sym_comment, - ACTIONS(1535), 19, - anon_sym__, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3241), 1, + aux_sym_unquoted_token1, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(4256), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5871), 1, + anon_sym_LPAREN, + ACTIONS(5873), 1, + anon_sym_DOLLAR, + ACTIONS(5875), 1, + sym_val_date, + ACTIONS(5877), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5879), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2657), 1, + sym__inter_double_quotes, + STATE(2672), 1, + sym__inter_single_quotes, + STATE(2861), 1, + sym_comment, + STATE(6029), 1, + sym__val_number_decimal, + STATE(7765), 1, + sym__unquoted_anonymous_prefix, + STATE(7919), 1, + sym_val_bool, + STATE(8049), 1, + sym__val_range, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4258), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5869), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1697), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299622,32 +309747,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1537), 32, + ACTIONS(2507), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [89940] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1764), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + ACTIONS(5883), 1, + anon_sym_RBRACK, + STATE(2862), 1, + sym_comment, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3138), 1, + sym_path, + STATE(3188), 1, + sym_cell_path, + ACTIONS(5881), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299656,77 +309819,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84685] = 4, + aux_sym__unquoted_in_list_token1, + [90012] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2788), 1, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(2863), 1, sym_comment, - ACTIONS(1608), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(1008), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1006), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1610), 32, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + [90076] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2864), 1, + sym_comment, + ACTIONS(1778), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1780), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84747] = 4, - ACTIONS(3), 1, + sym__table_head_separator, + [90138] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2789), 1, + STATE(2865), 1, sym_comment, - ACTIONS(5137), 6, + ACTIONS(990), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5135), 45, + anon_sym_DOT, + ACTIONS(992), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299764,236 +309988,174 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84809] = 29, - ACTIONS(3), 1, + [90200] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(3215), 1, - aux_sym_unquoted_token1, - ACTIONS(4099), 1, + STATE(2866), 1, + sym_comment, + ACTIONS(2255), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2257), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4105), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(5938), 1, - anon_sym_LPAREN, - ACTIONS(5940), 1, - anon_sym_DOLLAR, - ACTIONS(5942), 1, - anon_sym_DOT_DOT, - ACTIONS(5946), 1, - anon_sym_DOT2, - ACTIONS(5948), 1, - sym_val_date, - ACTIONS(5950), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5952), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2599), 1, - sym__inter_double_quotes, - STATE(2600), 1, - sym__inter_single_quotes, - STATE(2790), 1, - sym_comment, - STATE(5818), 1, - sym__val_number_decimal, - STATE(7523), 1, - sym__val_range, - STATE(7785), 1, - sym_val_bool, - STATE(7978), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(4085), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5944), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5936), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1675), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2454), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84921] = 6, + sym__table_head_separator, + [90262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5954), 1, - anon_sym_DOT_DOT2, - STATE(2791), 1, + STATE(2867), 1, sym_comment, - ACTIONS(5956), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1947), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1953), 30, + ACTIONS(2133), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2131), 48, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84987] = 7, + aux_sym__val_number_decimal_token4, + aux_sym_unquoted_token4, + [90324] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5839), 1, + ACTIONS(1849), 1, + sym__entry_separator, + ACTIONS(5861), 1, anon_sym_DOT, - STATE(2792), 1, + STATE(2868), 1, sym_comment, - STATE(2793), 1, + STATE(2974), 1, aux_sym_cell_path_repeat1, - STATE(2997), 1, + STATE(3138), 1, sym_path, - ACTIONS(889), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(891), 32, + STATE(3161), 1, + sym_cell_path, + ACTIONS(1847), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85055] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5958), 1, - anon_sym_DOT, - STATE(2997), 1, - sym_path, - STATE(2793), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300002,32 +310164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(895), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300036,19 +310172,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85121] = 6, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [90394] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5925), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5961), 1, + ACTIONS(1873), 1, + sym__entry_separator, + ACTIONS(5861), 1, anon_sym_DOT, - STATE(2794), 1, + STATE(2869), 1, sym_comment, - ACTIONS(1520), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1518), 47, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3124), 1, + sym_cell_path, + STATE(3138), 1, + sym_path, + ACTIONS(1871), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300066,8 +310206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -300095,19 +310235,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85187] = 5, - ACTIONS(121), 1, + [90464] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5850), 1, - aux_sym__immediate_decimal_token2, - STATE(2795), 1, - sym_comment, - ACTIONS(1520), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1877), 1, sym__entry_separator, - ACTIONS(1518), 47, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2870), 1, + sym_comment, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3127), 1, + sym_cell_path, + STATE(3138), 1, + sym_path, + ACTIONS(1875), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300121,13 +310264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -300155,18 +310297,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85251] = 5, - ACTIONS(121), 1, + [90534] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5893), 1, - aux_sym__immediate_decimal_token2, - STATE(2796), 1, - sym_comment, - ACTIONS(1472), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1881), 1, sym__entry_separator, - ACTIONS(1470), 47, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2871), 1, + sym_comment, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3138), 1, + sym_path, + STATE(3142), 1, + sym_cell_path, + ACTIONS(1879), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300180,13 +310326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -300214,18 +310359,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85315] = 5, - ACTIONS(121), 1, + [90604] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5964), 1, - aux_sym__immediate_decimal_token2, - STATE(2797), 1, - sym_comment, - ACTIONS(1537), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1885), 1, sym__entry_separator, - ACTIONS(1535), 47, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2872), 1, + sym_comment, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3138), 1, + sym_path, + STATE(3145), 1, + sym_cell_path, + ACTIONS(1883), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300239,13 +310388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -300273,21 +310421,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85379] = 5, - ACTIONS(3), 1, + [90674] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_QMARK2, - STATE(2798), 1, + ACTIONS(5760), 1, + aux_sym__immediate_decimal_token2, + STATE(2873), 1, sym_comment, - ACTIONS(900), 19, + ACTIONS(1589), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -300300,7 +310446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(902), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300317,6 +310464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -300332,22 +310480,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85443] = 6, - ACTIONS(3), 1, + [90738] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5968), 1, + ACTIONS(1776), 1, + sym__table_head_separator, + ACTIONS(5888), 1, anon_sym_DOT, - ACTIONS(5970), 1, - aux_sym__immediate_decimal_token2, - STATE(2799), 1, + STATE(2864), 1, + sym_cell_path, + STATE(2874), 1, sym_comment, - ACTIONS(1518), 18, + STATE(5525), 1, + aux_sym_cell_path_repeat1, + STATE(5711), 1, + sym_path, + ACTIONS(5832), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -300360,7 +310510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1520), 31, + ACTIONS(5886), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300373,10 +310523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -300392,24 +310543,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85509] = 5, + [90810] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5972), 1, - anon_sym_QMARK2, - STATE(2800), 1, + ACTIONS(1897), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2875), 1, sym_comment, - ACTIONS(906), 19, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3138), 1, + sym_path, + STATE(3156), 1, + sym_cell_path, + ACTIONS(1895), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300418,8 +310596,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(908), 31, + [90880] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2876), 1, + sym_comment, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3138), 1, + sym_path, + STATE(3159), 1, + sym_cell_path, + ACTIONS(1747), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300432,17 +310633,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300451,253 +310666,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85573] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2801), 1, - sym_comment, - ACTIONS(928), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(930), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85635] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2802), 1, - sym_comment, - ACTIONS(924), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(926), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85697] = 4, + aux_sym__unquoted_in_list_token1, + [90950] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2803), 1, - sym_comment, - ACTIONS(932), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(934), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(5890), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85759] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5974), 1, - aux_sym_unquoted_token3, - STATE(2804), 1, + ACTIONS(5892), 1, + aux_sym__immediate_decimal_token2, + STATE(2877), 1, sym_comment, - ACTIONS(3239), 50, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85821] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1572), 1, + ACTIONS(1591), 2, anon_sym_LPAREN2, - ACTIONS(1705), 1, sym__entry_separator, - ACTIONS(5976), 1, - aux_sym__immediate_decimal_token1, - STATE(2805), 1, - sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1701), 46, + ACTIONS(1589), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300715,8 +310697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -300744,25 +310726,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85889] = 7, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [91016] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5978), 1, - anon_sym_DOT_DOT2, - STATE(2806), 1, - sym_comment, - ACTIONS(1576), 2, + ACTIONS(5894), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(5980), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1570), 17, + ACTIONS(5896), 1, + aux_sym__immediate_decimal_token2, + STATE(2878), 1, + sym_comment, + ACTIONS(1589), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -300775,7 +310754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1580), 29, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300788,8 +310767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -300805,28 +310787,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85957] = 9, + [91082] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1742), 1, - sym__table_head_separator, - ACTIONS(5984), 1, + ACTIONS(1826), 1, + sym__entry_separator, + ACTIONS(5861), 1, anon_sym_DOT, - STATE(2807), 1, + STATE(2879), 1, sym_comment, - STATE(2840), 1, - sym_cell_path, - STATE(3562), 1, + STATE(2974), 1, aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(3080), 1, + sym_cell_path, + STATE(3138), 1, sym_path, - ACTIONS(5878), 15, + ACTIONS(1824), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300835,8 +310840,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5982), 31, + [91152] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1857), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2880), 1, + sym_comment, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3082), 1, + sym_cell_path, + STATE(3138), 1, + sym_path, + ACTIONS(1855), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300849,17 +310877,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300868,81 +310910,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86029] = 5, + aux_sym__unquoted_in_list_token1, + [91222] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5986), 1, - anon_sym_LBRACK2, - STATE(2808), 1, + ACTIONS(1798), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2881), 1, sym_comment, - ACTIONS(2178), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2182), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3083), 1, + sym_cell_path, + STATE(3138), 1, + sym_path, + ACTIONS(1796), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [86093] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2809), 1, - sym_comment, - ACTIONS(916), 19, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300951,8 +310964,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(918), 32, + [91292] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2882), 1, + sym_comment, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_cell_path, + STATE(3138), 1, + sym_path, + ACTIONS(1808), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300965,18 +311001,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300985,82 +311034,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86155] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5988), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5990), 1, - aux_sym__immediate_decimal_token2, - STATE(2810), 1, - sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [86221] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [91362] = 29, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2811), 1, - sym_comment, - ACTIONS(920), 19, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(3241), 1, + aux_sym_unquoted_token1, + ACTIONS(4256), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5871), 1, + anon_sym_LPAREN, + ACTIONS(5873), 1, + anon_sym_DOLLAR, + ACTIONS(5875), 1, + sym_val_date, + ACTIONS(5877), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5879), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2657), 1, + sym__inter_double_quotes, + STATE(2672), 1, + sym__inter_single_quotes, + STATE(2883), 1, + sym_comment, + STATE(6029), 1, + sym__val_number_decimal, + STATE(7765), 1, + sym__unquoted_anonymous_prefix, + STATE(7919), 1, + sym_val_bool, + STATE(8049), 1, + sym__val_range, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4258), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5869), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1697), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301069,32 +311108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(922), 32, - anon_sym_true, - anon_sym_false, + ACTIONS(2507), 9, anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301103,56 +311118,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86283] = 4, + [91474] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2812), 1, + ACTIONS(1822), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2884), 1, sym_comment, - ACTIONS(936), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(938), 32, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3085), 1, + sym_cell_path, + STATE(3138), 1, + sym_path, + ACTIONS(1820), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301161,19 +311179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86345] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [91544] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2813), 1, + STATE(2885), 1, sym_comment, - ACTIONS(912), 19, + ACTIONS(1021), 18, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -301185,25 +311203,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(914), 32, + aux_sym_unquoted_token1, + ACTIONS(1023), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -301219,16 +311238,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86407] = 5, - ACTIONS(121), 1, + [91606] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(1745), 1, sym__entry_separator, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, - STATE(2814), 1, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2886), 1, sym_comment, - ACTIONS(5858), 49, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3086), 1, + sym_cell_path, + STATE(3138), 1, + sym_path, + ACTIONS(1741), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301236,18 +311261,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -301258,9 +311283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301278,72 +311300,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86471] = 30, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(239), 1, + [91676] = 30, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3199), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3239), 1, aux_sym_record_entry_token1, - ACTIONS(3215), 1, + ACTIONS(3241), 1, aux_sym_unquoted_token1, - ACTIONS(4093), 1, + ACTIONS(4228), 1, anon_sym_DOLLAR, - ACTIONS(4095), 1, + ACTIONS(4256), 1, anon_sym_DOT_DOT, - ACTIONS(4099), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4103), 1, - anon_sym_DOT2, - ACTIONS(4105), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(5948), 1, + ACTIONS(5875), 1, sym_val_date, - ACTIONS(5992), 1, + ACTIONS(5898), 1, anon_sym_LPAREN, - STATE(1934), 1, + STATE(1686), 1, sym__inter_single_quotes, - STATE(1935), 1, + STATE(1688), 1, sym__inter_double_quotes, - STATE(2137), 1, + STATE(2158), 1, sym__str_double_quotes, - STATE(2815), 1, + STATE(2887), 1, sym_comment, - STATE(5818), 1, + STATE(6029), 1, sym__val_number_decimal, - STATE(6387), 1, + STATE(6765), 1, sym_unquoted, - STATE(7523), 1, - sym__val_range, - STATE(7785), 1, - sym_val_bool, - STATE(7978), 1, + STATE(7765), 1, sym__unquoted_anonymous_prefix, - ACTIONS(4085), 2, + STATE(7919), 1, + sym_val_bool, + STATE(8049), 1, + sym__val_range, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - ACTIONS(4097), 2, + ACTIONS(4258), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5936), 3, + ACTIONS(5869), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(6386), 4, + STATE(6764), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2454), 8, + ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301352,7 +311374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, + ACTIONS(2507), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -301362,22 +311384,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86585] = 4, + [91790] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2816), 1, + ACTIONS(1901), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2888), 1, sym_comment, - ACTIONS(1608), 20, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3090), 1, + sym_cell_path, + STATE(3138), 1, + sym_path, + ACTIONS(1899), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301386,9 +311437,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1610), 31, + [91860] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1833), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2889), 1, + sym_comment, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3093), 1, + sym_cell_path, + STATE(3138), 1, + sym_path, + ACTIONS(1831), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301401,17 +311474,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301420,22 +311507,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86647] = 8, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [91930] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1754), 1, + ACTIONS(1837), 1, sym__entry_separator, - ACTIONS(5923), 1, + ACTIONS(5861), 1, anon_sym_DOT, - STATE(2817), 1, + STATE(2890), 1, sym_comment, - STATE(2925), 1, + STATE(2974), 1, aux_sym_cell_path_repeat1, - STATE(3032), 1, + STATE(3097), 1, sym_cell_path, - STATE(3082), 1, + STATE(3138), 1, sym_path, - ACTIONS(1752), 46, + ACTIONS(1835), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301453,8 +311541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -301482,19 +311570,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86717] = 5, - ACTIONS(121), 1, + [92000] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(2818), 1, + ACTIONS(1841), 1, + sym__entry_separator, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2891), 1, sym_comment, - ACTIONS(950), 3, + STATE(2974), 1, + aux_sym_cell_path_repeat1, + STATE(3098), 1, + sym_cell_path, + STATE(3138), 1, + sym_path, + ACTIONS(1839), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(948), 47, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [92070] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2892), 1, + sym_comment, + ACTIONS(5131), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5129), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301502,13 +311652,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -301529,29 +311676,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - [86781] = 5, - ACTIONS(121), 1, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [92132] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - STATE(2761), 1, - aux_sym__multiple_types_repeat1, - STATE(2819), 1, + STATE(2893), 1, sym_comment, - ACTIONS(5866), 49, + ACTIONS(986), 7, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(988), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301559,13 +311711,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -301586,33 +311735,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86845] = 4, - ACTIONS(3), 1, + [92194] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2820), 1, + STATE(2894), 1, sym_comment, - ACTIONS(5165), 6, + ACTIONS(5135), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5163), 45, + ACTIONS(5133), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301653,56 +311801,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86907] = 8, - ACTIONS(121), 1, + [92256] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1758), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2821), 1, + ACTIONS(5562), 1, + aux_sym_unquoted_token2, + STATE(2895), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3051), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1756), 46, + ACTIONS(1525), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1537), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [92320] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5900), 1, + aux_sym__immediate_decimal_token2, + STATE(2896), 1, + sym_comment, + ACTIONS(1648), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301711,31 +311889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86977] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1762), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2822), 1, - sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3052), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1760), 46, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301748,31 +311904,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301781,48 +311924,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87047] = 4, - ACTIONS(121), 1, + [92384] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2390), 1, - sym__entry_separator, - STATE(2823), 1, + STATE(2897), 1, sym_comment, - ACTIONS(2388), 50, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1953), 18, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301831,68 +311947,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87109] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2824), 1, - sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3059), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1764), 46, + aux_sym_unquoted_token1, + ACTIONS(1955), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301901,52 +311982,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87179] = 8, - ACTIONS(121), 1, + [92446] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1770), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2825), 1, + STATE(2898), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3060), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1768), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1943), 18, + anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301955,68 +312005,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87249] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1774), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2826), 1, - sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3061), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1772), 46, + aux_sym_unquoted_token1, + ACTIONS(1945), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302025,52 +312040,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87319] = 8, - ACTIONS(121), 1, + [92508] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1778), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2827), 1, + ACTIONS(5902), 1, + sym__newline, + STATE(2899), 2, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3062), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1776), 46, + aux_sym_shebang_repeat1, + ACTIONS(1755), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1757), 43, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [92572] = 30, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3241), 1, + aux_sym_unquoted_token1, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(4228), 1, + anon_sym_DOLLAR, + ACTIONS(4256), 1, + anon_sym_DOT_DOT, + ACTIONS(4260), 1, anon_sym_DQUOTE, + ACTIONS(5875), 1, + sym_val_date, + ACTIONS(5898), 1, + anon_sym_LPAREN, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2900), 1, + sym_comment, + STATE(6029), 1, + sym__val_number_decimal, + STATE(6765), 1, + sym_unquoted, + STATE(7765), 1, + sym__unquoted_anonymous_prefix, + STATE(7919), 1, + sym_val_bool, + STATE(8049), 1, + sym__val_range, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4258), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(5869), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6764), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302079,6 +312173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2507), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302087,60 +312183,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87389] = 8, - ACTIONS(121), 1, + [92686] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1782), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2828), 1, + ACTIONS(5905), 1, + anon_sym_DOT_DOT2, + STATE(2901), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1780), 46, + ACTIONS(5907), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2066), 17, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2072), 31, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302149,60 +312243,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87459] = 8, - ACTIONS(121), 1, + [92752] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1786), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2829), 1, + ACTIONS(5909), 1, + anon_sym_DOT_DOT2, + STATE(2902), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3065), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1784), 46, + ACTIONS(5911), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1972), 17, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1978), 31, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACE, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302211,23 +312303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87529] = 8, - ACTIONS(121), 1, + [92818] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2830), 1, + ACTIONS(5830), 1, + aux_sym__immediate_decimal_token2, + STATE(2903), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3066), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1788), 46, + ACTIONS(1591), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1589), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302241,12 +312328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -302274,59 +312362,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87599] = 8, - ACTIONS(121), 1, + [92882] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1794), 1, - sym__entry_separator, - ACTIONS(5923), 1, + ACTIONS(5796), 1, anon_sym_DOT, - STATE(2831), 1, + STATE(2904), 1, sym_comment, - STATE(2925), 1, + STATE(2908), 1, aux_sym_cell_path_repeat1, - STATE(3067), 1, - sym_cell_path, - STATE(3082), 1, + STATE(3050), 1, sym_path, - ACTIONS(1792), 46, + ACTIONS(951), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(953), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302335,24 +312423,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87669] = 6, - ACTIONS(3), 1, + [92950] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5994), 1, + ACTIONS(5913), 1, anon_sym_DOT_DOT2, - STATE(2832), 1, + STATE(2905), 1, sym_comment, - ACTIONS(5996), 2, + ACTIONS(5915), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 18, + ACTIONS(1960), 17, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -302365,7 +312451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1595), 30, + ACTIONS(1966), 31, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302381,6 +312467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -302396,22 +312483,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87735] = 8, - ACTIONS(121), 1, + [93016] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2833), 1, + STATE(2906), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3068), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1796), 46, + ACTIONS(966), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(968), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302424,31 +312520,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302457,23 +312541,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87805] = 8, - ACTIONS(121), 1, + [93078] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1802), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2834), 1, + STATE(2907), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3069), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1800), 46, + ACTIONS(976), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(978), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302486,31 +312578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302519,52 +312599,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87875] = 8, - ACTIONS(121), 1, + [93140] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__entry_separator, - ACTIONS(5923), 1, + ACTIONS(5917), 1, anon_sym_DOT, - STATE(2835), 1, + STATE(3050), 1, + sym_path, + STATE(2908), 2, sym_comment, - STATE(2925), 1, aux_sym_cell_path_repeat1, - STATE(3070), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1804), 46, + ACTIONS(955), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(957), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [93206] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2909), 1, + sym_comment, + ACTIONS(962), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302573,6 +312682,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(964), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302581,23 +312717,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87945] = 8, - ACTIONS(121), 1, + [93268] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1810), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2836), 1, + ACTIONS(5920), 1, + aux_sym__immediate_decimal_token2, + STATE(2910), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3071), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1808), 46, + ACTIONS(1650), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1648), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302611,12 +312742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -302644,22 +312776,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88015] = 8, - ACTIONS(121), 1, + [93332] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, + ACTIONS(1893), 1, sym__entry_separator, - ACTIONS(5923), 1, + ACTIONS(5861), 1, anon_sym_DOT, - STATE(2837), 1, + STATE(2911), 1, sym_comment, - STATE(2925), 1, + STATE(2974), 1, aux_sym_cell_path_repeat1, - STATE(3072), 1, - sym_cell_path, - STATE(3082), 1, + STATE(3138), 1, sym_path, - ACTIONS(1812), 46, + STATE(3154), 1, + sym_cell_path, + ACTIONS(1891), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302677,8 +312809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -302706,22 +312838,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88085] = 8, - ACTIONS(121), 1, + [93402] = 28, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1818), 1, - sym__entry_separator, - ACTIONS(5923), 1, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5690), 1, + anon_sym_DQUOTE, + ACTIONS(5875), 1, + sym_val_date, + ACTIONS(5924), 1, + anon_sym_LPAREN, + ACTIONS(5926), 1, + anon_sym_DOLLAR, + ACTIONS(5928), 1, + anon_sym_DOT_DOT, + ACTIONS(5932), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5934), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5936), 1, + aux_sym_unquoted_token1, + STATE(2709), 1, + sym__str_double_quotes, + STATE(2741), 1, + sym__inter_single_quotes, + STATE(2742), 1, + sym__inter_double_quotes, + STATE(2912), 1, + sym_comment, + STATE(6148), 1, + sym__val_number_decimal, + STATE(7735), 1, + sym__unquoted_anonymous_prefix, + STATE(7919), 1, + sym_val_bool, + STATE(7928), 1, + sym__val_range, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5692), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5930), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5922), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1820), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2505), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2507), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [93511] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2913), 1, + sym_comment, + ACTIONS(2263), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2265), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93572] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5938), 1, anon_sym_DOT, - STATE(2838), 1, + STATE(2914), 1, sym_comment, - STATE(2925), 1, + STATE(3031), 1, aux_sym_cell_path_repeat1, - STATE(3073), 1, - sym_cell_path, - STATE(3082), 1, + STATE(3206), 1, sym_path, - ACTIONS(1816), 46, + STATE(3296), 1, + sym_cell_path, + ACTIONS(1847), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1849), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302734,31 +313017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302767,23 +313037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88155] = 8, - ACTIONS(121), 1, + [93641] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2839), 1, + ACTIONS(5892), 1, + aux_sym__immediate_decimal_token2, + STATE(2915), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3074), 1, - sym_cell_path, - STATE(3082), 1, - sym_path, - ACTIONS(1820), 46, + ACTIONS(1591), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1589), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302801,8 +313065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -302830,19 +313094,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88225] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [93704] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2840), 1, + STATE(2916), 1, sym_comment, - ACTIONS(1744), 6, + ACTIONS(2371), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1746), 45, + ACTIONS(2373), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302882,21 +313147,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - sym__table_head_separator, - [88287] = 4, - ACTIONS(121), 1, + [93765] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2390), 1, - sym__entry_separator, - STATE(2841), 1, + STATE(2917), 1, sym_comment, - ACTIONS(2388), 50, + ACTIONS(2295), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2297), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302904,13 +313172,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -302931,34 +313196,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93826] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2918), 1, + sym_comment, + ACTIONS(2379), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, + ACTIONS(2381), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88349] = 4, - ACTIONS(3), 1, + [93887] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2842), 1, + STATE(2919), 1, sym_comment, - ACTIONS(5169), 6, + ACTIONS(1839), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5167), 45, + ACTIONS(1841), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302996,46 +313316,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88411] = 7, + [93948] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, + ACTIONS(5942), 1, + anon_sym_RBRACK, + ACTIONS(5944), 1, anon_sym_DOT_DOT2, - STATE(2843), 1, + ACTIONS(5948), 1, + sym__entry_separator, + STATE(2920), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(6000), 2, + ACTIONS(5946), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1595), 29, + ACTIONS(5940), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303043,20 +313345,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303065,19 +313382,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88479] = 5, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [94015] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(2844), 1, + STATE(2921), 1, sym_comment, - ACTIONS(2159), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2155), 47, + ACTIONS(2383), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2385), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303085,13 +313403,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -303112,31 +313427,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - [88543] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(2845), 1, - sym_comment, - ACTIONS(2165), 3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2163), 47, + [94076] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2922), 1, + sym_comment, + ACTIONS(2326), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2328), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303144,13 +313460,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -303171,89 +313484,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - [88607] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2846), 1, - sym_comment, - ACTIONS(1470), 20, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88669] = 4, - ACTIONS(3), 1, + [94137] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2847), 1, + STATE(2923), 1, sym_comment, - ACTIONS(2226), 6, + ACTIONS(2336), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2228), 45, + ACTIONS(2338), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303293,28 +313549,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - sym__table_head_separator, - [88731] = 5, - ACTIONS(3), 1, + [94198] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5492), 1, - aux_sym_unquoted_token6, - STATE(2848), 1, + STATE(2924), 1, sym_comment, - ACTIONS(1429), 7, + ACTIONS(1855), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - aux_sym__val_number_decimal_token1, - ACTIONS(1441), 43, + ACTIONS(1857), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303352,221 +313604,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88795] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6002), 1, - anon_sym_DOT_DOT2, - STATE(2849), 1, - sym_comment, - ACTIONS(6004), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1863), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1869), 30, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88861] = 29, - ACTIONS(3), 1, + [94259] = 28, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(3215), 1, - aux_sym_unquoted_token1, - ACTIONS(4099), 1, + ACTIONS(3229), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, + ACTIONS(3231), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4105), 1, + ACTIONS(3233), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3241), 1, + aux_sym_unquoted_token1, + ACTIONS(4256), 1, + anon_sym_DOT_DOT, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(5938), 1, + ACTIONS(5871), 1, anon_sym_LPAREN, - ACTIONS(5940), 1, + ACTIONS(5873), 1, anon_sym_DOLLAR, - ACTIONS(5942), 1, - anon_sym_DOT_DOT, - ACTIONS(5946), 1, - anon_sym_DOT2, - ACTIONS(5948), 1, + ACTIONS(5875), 1, sym_val_date, - ACTIONS(5950), 1, + ACTIONS(5877), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5952), 1, + ACTIONS(5879), 1, anon_sym_DOLLAR_DQUOTE, - STATE(2137), 1, + STATE(2158), 1, sym__str_double_quotes, - STATE(2599), 1, + STATE(2657), 1, sym__inter_double_quotes, - STATE(2600), 1, + STATE(2672), 1, sym__inter_single_quotes, - STATE(2850), 1, + STATE(2925), 1, sym_comment, - STATE(5818), 1, + STATE(6029), 1, sym__val_number_decimal, - STATE(7523), 1, - sym__val_range, - STATE(7785), 1, - sym_val_bool, - STATE(7978), 1, + STATE(7765), 1, sym__unquoted_anonymous_prefix, - ACTIONS(4085), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5944), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5936), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1675), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2454), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88973] = 30, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(3215), 1, - aux_sym_unquoted_token1, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4095), 1, - anon_sym_DOT_DOT, - ACTIONS(4099), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4103), 1, - anon_sym_DOT2, - ACTIONS(4105), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(5948), 1, - sym_val_date, - ACTIONS(5992), 1, - anon_sym_LPAREN, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2851), 1, - sym_comment, - STATE(5818), 1, - sym__val_number_decimal, - STATE(6387), 1, - sym_unquoted, - STATE(7523), 1, - sym__val_range, - STATE(7785), 1, + STATE(7919), 1, sym_val_bool, - STATE(7978), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(4085), 2, + STATE(8049), 1, + sym__val_range, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - ACTIONS(4097), 2, + ACTIONS(4258), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5936), 3, + ACTIONS(5869), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(6386), 4, + STATE(1697), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2454), 8, + sym_unquoted, + ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303575,7 +313682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, + ACTIONS(2507), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -303585,23 +313692,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89087] = 6, - ACTIONS(3), 1, + [94368] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6006), 1, - anon_sym_DOT_DOT2, - STATE(2852), 1, + ACTIONS(5950), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5952), 1, + aux_sym__immediate_decimal_token2, + STATE(2926), 1, sym_comment, - ACTIONS(6008), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1879), 18, + ACTIONS(1569), 15, anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -303614,7 +313717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1885), 30, + ACTIONS(1571), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303628,8 +313731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -303645,144 +313751,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89153] = 6, - ACTIONS(3), 1, + [94433] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6010), 1, - anon_sym_DOT_DOT2, - STATE(2853), 1, + STATE(2927), 1, sym_comment, - ACTIONS(6012), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1570), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1580), 30, + ACTIONS(2332), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2334), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [89219] = 9, - ACTIONS(121), 1, + [94494] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1725), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - ACTIONS(6016), 1, - anon_sym_RBRACK, - STATE(2854), 1, + STATE(2928), 1, sym_comment, - STATE(2925), 1, - aux_sym_cell_path_repeat1, - STATE(3082), 1, - sym_path, - STATE(3152), 1, - sym_cell_path, - ACTIONS(6014), 45, + ACTIONS(1525), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1537), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [89291] = 5, - ACTIONS(3), 1, + [94555] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6019), 1, - anon_sym_EQ2, - STATE(2855), 1, + STATE(2929), 1, sym_comment, - ACTIONS(5088), 6, + ACTIONS(2389), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5086), 44, + ACTIONS(2391), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303822,27 +313917,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89355] = 4, - ACTIONS(3), 1, + [94616] = 29, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(117), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2856), 1, - sym_comment, - ACTIONS(1535), 20, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3279), 1, + anon_sym_DOLLAR, + ACTIONS(5875), 1, + sym_val_date, + ACTIONS(5928), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(5936), 1, + aux_sym_unquoted_token1, + ACTIONS(5954), 1, + anon_sym_LPAREN, + STATE(2144), 1, + sym__str_double_quotes, + STATE(2607), 1, + sym__inter_single_quotes, + STATE(2626), 1, + sym__inter_double_quotes, + STATE(2930), 1, + sym_comment, + STATE(6148), 1, + sym__val_number_decimal, + STATE(7000), 1, + sym_unquoted, + STATE(7735), 1, + sym__unquoted_anonymous_prefix, + STATE(7919), 1, + sym_val_bool, + STATE(7928), 1, + sym__val_range, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5930), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + ACTIONS(5922), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6994), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2505), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2507), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94727] = 29, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3241), 1, + aux_sym_unquoted_token1, + ACTIONS(4228), 1, + anon_sym_DOLLAR, + ACTIONS(4256), 1, + anon_sym_DOT_DOT, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(5875), 1, + sym_val_date, + ACTIONS(5898), 1, + anon_sym_LPAREN, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(2158), 1, + sym__str_double_quotes, + STATE(2931), 1, + sym_comment, + STATE(6029), 1, + sym__val_number_decimal, + STATE(6765), 1, + sym_unquoted, + STATE(7765), 1, + sym__unquoted_anonymous_prefix, + STATE(7919), 1, + sym_val_bool, + STATE(8049), 1, + sym__val_range, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4258), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5869), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6764), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303851,9 +314076,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 31, + ACTIONS(2507), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94838] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2072), 1, + sym__entry_separator, + ACTIONS(5956), 1, + anon_sym_DOT_DOT2, + STATE(2932), 1, + sym_comment, + ACTIONS(5958), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2066), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303866,17 +314111,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303885,128 +314144,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89417] = 5, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [94903] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(2857), 1, + ACTIONS(5960), 1, + anon_sym_DOT, + ACTIONS(5962), 1, + aux_sym__immediate_decimal_token2, + STATE(2933), 1, sym_comment, - ACTIONS(2081), 3, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [94968] = 28, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5690), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2077), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, + ACTIONS(5875), 1, + sym_val_date, + ACTIONS(5924), 1, + anon_sym_LPAREN, + ACTIONS(5926), 1, + anon_sym_DOLLAR, + ACTIONS(5928), 1, + anon_sym_DOT_DOT, + ACTIONS(5932), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5934), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5936), 1, + aux_sym_unquoted_token1, + STATE(2709), 1, + sym__str_double_quotes, + STATE(2741), 1, + sym__inter_single_quotes, + STATE(2742), 1, + sym__inter_double_quotes, + STATE(2934), 1, + sym_comment, + STATE(6148), 1, + sym__val_number_decimal, + STATE(7735), 1, + sym__unquoted_anonymous_prefix, + STATE(7919), 1, + sym_val_bool, + STATE(7928), 1, + sym__val_range, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(5692), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5930), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5922), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - [89481] = 28, - ACTIONS(3), 1, + STATE(1816), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2505), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2507), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [95077] = 28, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_unquoted_token1, - ACTIONS(4099), 1, + ACTIONS(3229), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, + ACTIONS(3231), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4105), 1, + ACTIONS(3233), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3241), 1, + aux_sym_unquoted_token1, + ACTIONS(4256), 1, + anon_sym_DOT_DOT, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(5938), 1, + ACTIONS(5871), 1, anon_sym_LPAREN, - ACTIONS(5940), 1, + ACTIONS(5873), 1, anon_sym_DOLLAR, - ACTIONS(5942), 1, - anon_sym_DOT_DOT, - ACTIONS(5946), 1, - anon_sym_DOT2, - ACTIONS(5948), 1, + ACTIONS(5875), 1, sym_val_date, - ACTIONS(5950), 1, + ACTIONS(5877), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5952), 1, + ACTIONS(5879), 1, anon_sym_DOLLAR_DQUOTE, - STATE(2137), 1, + STATE(2158), 1, sym__str_double_quotes, - STATE(2599), 1, + STATE(2657), 1, sym__inter_double_quotes, - STATE(2600), 1, + STATE(2672), 1, sym__inter_single_quotes, - STATE(2858), 1, + STATE(2935), 1, sym_comment, - STATE(5818), 1, + STATE(6029), 1, sym__val_number_decimal, - STATE(7523), 1, - sym__val_range, - STATE(7785), 1, - sym_val_bool, - STATE(7978), 1, + STATE(7765), 1, sym__unquoted_anonymous_prefix, - ACTIONS(4085), 2, + STATE(7919), 1, + sym_val_bool, + STATE(8049), 1, + sym__val_range, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5944), 2, + ACTIONS(4258), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5936), 3, + ACTIONS(4262), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5869), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(1675), 5, + STATE(1714), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - ACTIONS(2454), 8, + ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304015,7 +314356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, + ACTIONS(2507), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -304025,19 +314366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89590] = 4, - ACTIONS(3), 1, + [95186] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2859), 1, + STATE(2936), 1, sym_comment, - ACTIONS(2349), 6, + ACTIONS(2352), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2351), 44, + ACTIONS(2354), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304077,37 +314418,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89651] = 4, + [95247] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2860), 1, - sym_comment, - ACTIONS(924), 19, - anon_sym_DOT_DOT, + ACTIONS(1008), 1, + sym__entry_separator, + ACTIONS(5944), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(926), 31, + ACTIONS(5966), 1, + anon_sym_RBRACK, + STATE(2937), 1, + sym_comment, + ACTIONS(5946), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5964), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304115,22 +314445,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304139,19 +314482,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89712] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [95314] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2861), 1, + ACTIONS(5969), 1, + aux_sym__immediate_decimal_token2, + STATE(2938), 1, sym_comment, - ACTIONS(932), 19, + ACTIONS(1648), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -304164,7 +314508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(934), 31, + ACTIONS(1650), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304181,6 +314525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -304196,19 +314541,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89773] = 4, - ACTIONS(3), 1, + [95377] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2862), 1, + STATE(2939), 1, sym_comment, - ACTIONS(2394), 6, + ACTIONS(2344), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2396), 44, + ACTIONS(2346), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304248,141 +314593,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89834] = 4, - ACTIONS(121), 1, + [95438] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2863), 1, + ACTIONS(5971), 1, + anon_sym_DOT, + ACTIONS(5973), 1, + aux_sym__immediate_decimal_token2, + STATE(2940), 1, sym_comment, - ACTIONS(1472), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1470), 48, + ACTIONS(1589), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1591), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [89895] = 28, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4099), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4105), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5763), 1, - anon_sym_DQUOTE, - ACTIONS(5948), 1, - sym_val_date, - ACTIONS(6023), 1, - anon_sym_LPAREN, - ACTIONS(6025), 1, - anon_sym_DOLLAR, - ACTIONS(6027), 1, - anon_sym_DOT_DOT, - ACTIONS(6031), 1, - anon_sym_DOT2, - ACTIONS(6033), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6035), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6037), 1, - aux_sym_unquoted_token1, - STATE(2622), 1, - sym__inter_single_quotes, - STATE(2623), 1, - sym__inter_double_quotes, - STATE(2689), 1, - sym__str_double_quotes, - STATE(2864), 1, - sym_comment, - STATE(5877), 1, - sym__val_number_decimal, - STATE(7470), 1, - sym__val_range, - STATE(7741), 1, - sym__unquoted_anonymous_prefix, - STATE(7785), 1, - sym_val_bool, - ACTIONS(4085), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5765), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6029), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(6021), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1762), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2454), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304391,148 +314657,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90004] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2865), 1, - sym_comment, - ACTIONS(2353), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2355), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90065] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2866), 1, - sym_comment, - ACTIONS(1808), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1810), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90126] = 11, - ACTIONS(3), 1, + [95503] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2858), 1, + ACTIONS(1525), 1, + anon_sym_DASH, + ACTIONS(4934), 1, anon_sym_DOT_DOT2, - ACTIONS(6039), 1, + ACTIONS(5975), 1, sym_filesize_unit, - ACTIONS(6041), 1, + ACTIONS(5977), 1, sym_duration_unit, - STATE(2867), 1, + STATE(2941), 1, sym_comment, - STATE(7514), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2862), 2, + ACTIONS(4936), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4687), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 36, + ACTIONS(1537), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -304545,44 +314686,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [90201] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6043), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [95572] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5938), 1, anon_sym_DOT, - ACTIONS(6045), 1, - aux_sym__immediate_decimal_token2, - STATE(2868), 1, + STATE(2942), 1, sym_comment, - ACTIONS(1518), 16, - anon_sym__, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3243), 1, + sym_cell_path, + ACTIONS(945), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -304594,25 +314745,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1520), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(947), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -304628,19 +314779,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90266] = 6, - ACTIONS(121), 1, + [95641] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - ACTIONS(1595), 1, - sym__entry_separator, - STATE(2869), 1, + STATE(2943), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, + ACTIONS(1589), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 46, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304653,31 +314816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304686,20 +314836,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90331] = 4, - ACTIONS(3), 1, + [95702] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2870), 1, + STATE(2944), 1, sym_comment, - ACTIONS(1816), 6, + ACTIONS(2251), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1818), 44, + ACTIONS(2253), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304739,252 +314888,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90392] = 4, + [95763] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2871), 1, + STATE(2945), 1, sym_comment, - ACTIONS(2357), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2359), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(1984), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1982), 47, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90453] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2872), 1, - sym_comment, - ACTIONS(2277), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2279), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90514] = 4, - ACTIONS(3), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [95824] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2873), 1, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5979), 1, + anon_sym_DOT_DOT2, + STATE(2946), 1, sym_comment, - ACTIONS(1820), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1822), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(5981), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1690), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90575] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2874), 1, - sym_comment, - ACTIONS(2361), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2363), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1698), 30, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90636] = 6, - ACTIONS(121), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [95891] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1869), 1, + ACTIONS(1941), 1, sym__entry_separator, - ACTIONS(6047), 1, + ACTIONS(5983), 1, anon_sym_DOT_DOT2, - STATE(2875), 1, + STATE(2947), 1, sym_comment, - ACTIONS(6049), 2, + ACTIONS(5985), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1863), 46, + ACTIONS(1935), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305002,8 +315040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -305031,19 +315069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90701] = 6, - ACTIONS(121), 1, + [95956] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, - sym__entry_separator, - ACTIONS(6051), 1, - anon_sym_DOT_DOT2, - STATE(2876), 1, + STATE(2948), 1, sym_comment, - ACTIONS(6053), 2, + ACTIONS(1955), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1871), 46, + sym__entry_separator, + ACTIONS(1953), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305057,12 +315092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -305090,19 +315126,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90766] = 6, - ACTIONS(121), 1, + [96017] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__entry_separator, - ACTIONS(6055), 1, - anon_sym_DOT_DOT2, - STATE(2877), 1, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(2949), 1, + sym_comment, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3307), 1, + sym_cell_path, + ACTIONS(1871), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1873), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96086] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2950), 1, sym_comment, - ACTIONS(6057), 2, + ACTIONS(1945), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1879), 46, + sym__entry_separator, + ACTIONS(1943), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305116,12 +315210,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -305149,186 +315244,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90831] = 4, - ACTIONS(3), 1, + [96147] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2878), 1, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(2951), 1, sym_comment, - ACTIONS(2365), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2367), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3311), 1, + sym_cell_path, + ACTIONS(1875), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1877), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90892] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96216] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2879), 1, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(2952), 1, sym_comment, - ACTIONS(6059), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(6061), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3247), 1, + sym_cell_path, + ACTIONS(1879), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1881), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90953] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96285] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2880), 1, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(2953), 1, sym_comment, - ACTIONS(1429), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1441), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3242), 1, + sym_cell_path, + ACTIONS(1883), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1885), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91014] = 4, - ACTIONS(121), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96354] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2881), 1, + ACTIONS(5987), 1, + aux_sym__immediate_decimal_token2, + STATE(2954), 1, sym_comment, - ACTIONS(1537), 2, + ACTIONS(1650), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1535), 48, + ACTIONS(1648), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305342,13 +315451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -305377,19 +315485,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [91075] = 6, - ACTIONS(121), 1, + [96417] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - sym__entry_separator, - STATE(2882), 1, - sym_comment, - ACTIONS(1576), 2, + ACTIONS(5938), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1570), 46, + STATE(2955), 1, + sym_comment, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3250), 1, + sym_cell_path, + ACTIONS(1891), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1893), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305402,31 +315526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305435,26 +315546,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91140] = 6, - ACTIONS(3), 1, + [96486] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_DOT, - ACTIONS(6066), 1, + ACTIONS(5989), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5991), 1, aux_sym__immediate_decimal_token2, - STATE(2883), 1, + STATE(2956), 1, sym_comment, - ACTIONS(1398), 8, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1481), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 40, + aux_sym_unquoted_token2, + ACTIONS(1483), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -305467,51 +315571,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [91205] = 8, - ACTIONS(3), 1, + [96551] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, + ACTIONS(5938), 1, anon_sym_DOT, - STATE(2884), 1, + STATE(2957), 1, sym_comment, - STATE(2988), 1, + STATE(3031), 1, aux_sym_cell_path_repeat1, - STATE(3158), 1, + STATE(3206), 1, sym_path, - STATE(3203), 1, + STATE(3251), 1, sym_cell_path, - ACTIONS(1820), 15, + ACTIONS(1895), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -305524,7 +315633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1822), 31, + ACTIONS(1897), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305541,6 +315650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -305556,70 +315666,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91274] = 29, - ACTIONS(3), 1, + [96620] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3215), 1, - aux_sym_unquoted_token1, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(4095), 1, - anon_sym_DOT_DOT, - ACTIONS(4099), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4103), 1, - anon_sym_DOT2, - ACTIONS(4105), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(5948), 1, - sym_val_date, - ACTIONS(5992), 1, - anon_sym_LPAREN, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2885), 1, + STATE(2958), 1, sym_comment, - STATE(5818), 1, - sym__val_number_decimal, - STATE(6387), 1, - sym_unquoted, - STATE(7523), 1, - sym__val_range, - STATE(7785), 1, - sym_val_bool, - STATE(7978), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(4085), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4097), 2, + ACTIONS(990), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5936), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6386), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2454), 8, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305628,8 +315689,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(992), 32, + anon_sym_true, + anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305638,127 +315723,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91385] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6066), 1, - aux_sym__immediate_decimal_token2, - STATE(2886), 1, - sym_comment, - ACTIONS(1398), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [91448] = 28, - ACTIONS(3), 1, + [96681] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_unquoted_token1, - ACTIONS(4099), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4105), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4109), 1, - anon_sym_DQUOTE, ACTIONS(5938), 1, - anon_sym_LPAREN, - ACTIONS(5940), 1, - anon_sym_DOLLAR, - ACTIONS(5942), 1, - anon_sym_DOT_DOT, - ACTIONS(5946), 1, - anon_sym_DOT2, - ACTIONS(5948), 1, - sym_val_date, - ACTIONS(5950), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5952), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2137), 1, - sym__str_double_quotes, - STATE(2599), 1, - sym__inter_double_quotes, - STATE(2600), 1, - sym__inter_single_quotes, - STATE(2887), 1, + anon_sym_DOT, + STATE(2959), 1, sym_comment, - STATE(5818), 1, - sym__val_number_decimal, - STATE(7523), 1, - sym__val_range, - STATE(7785), 1, - sym_val_bool, - STATE(7978), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(4085), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5944), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5936), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1659), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2454), 8, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3252), 1, + sym_cell_path, + ACTIONS(1747), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305767,25 +315750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91557] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(2888), 1, - sym_comment, - ACTIONS(1610), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1608), 48, + aux_sym__unquoted_in_list_token1, + ACTIONS(1749), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305798,32 +315764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305832,137 +315784,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [91618] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2889), 1, - sym_comment, - ACTIONS(2369), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2371), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [91679] = 4, - ACTIONS(3), 1, + [96750] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2890), 1, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(2960), 1, sym_comment, - ACTIONS(916), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(918), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3253), 1, + sym_cell_path, + ACTIONS(1824), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [91740] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_RBRACK, - ACTIONS(6074), 1, - anon_sym_DOT_DOT2, - ACTIONS(6078), 1, - sym__entry_separator, - STATE(2891), 1, - sym_comment, - ACTIONS(6076), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6070), 45, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1826), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305970,35 +315820,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306007,136 +315845,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91807] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2892), 1, - sym_comment, - ACTIONS(2200), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2202), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [91868] = 4, - ACTIONS(3), 1, + [96819] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2893), 1, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(2961), 1, sym_comment, - ACTIONS(948), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(950), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3254), 1, + sym_cell_path, + ACTIONS(1855), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [91929] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(950), 1, - sym__entry_separator, - ACTIONS(6074), 1, - anon_sym_DOT_DOT2, - ACTIONS(6082), 1, - anon_sym_RBRACK, - STATE(2894), 1, - sym_comment, - ACTIONS(6076), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6080), 45, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1857), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306144,35 +315881,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306181,24 +315906,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91996] = 8, - ACTIONS(3), 1, + [96888] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, + ACTIONS(5938), 1, anon_sym_DOT, - STATE(2895), 1, + STATE(2962), 1, sym_comment, - STATE(2988), 1, + STATE(3031), 1, aux_sym_cell_path_repeat1, - STATE(3158), 1, + STATE(3206), 1, sym_path, - STATE(3182), 1, + STATE(3255), 1, sym_cell_path, - ACTIONS(6014), 15, + ACTIONS(1796), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -306211,7 +315934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6085), 31, + ACTIONS(1798), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306228,6 +315951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -306243,19 +315967,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92065] = 6, - ACTIONS(121), 1, + [96957] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_LPAREN2, - ACTIONS(1927), 1, - sym__entry_separator, - STATE(2896), 1, - sym_comment, - ACTIONS(1427), 2, + ACTIONS(5938), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1923), 46, + STATE(2963), 1, + sym_comment, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3256), 1, + sym_cell_path, + ACTIONS(1808), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1810), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306268,31 +316008,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306301,21 +316028,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92130] = 5, - ACTIONS(3), 1, + [97026] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5970), 1, - aux_sym__immediate_decimal_token2, - STATE(2897), 1, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(2964), 1, sym_comment, - ACTIONS(1518), 18, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3257), 1, + sym_cell_path, + ACTIONS(1820), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -306328,7 +316056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1520), 31, + ACTIONS(1822), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306341,10 +316069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -306360,135 +316089,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92193] = 5, - ACTIONS(3), 1, + [97095] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5990), 1, - aux_sym__immediate_decimal_token2, - STATE(2898), 1, - sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + ACTIONS(5938), 1, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [92256] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2899), 1, - sym_comment, - ACTIONS(920), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(922), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92317] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5931), 1, - aux_sym__immediate_decimal_token2, - STATE(2900), 1, + STATE(2965), 1, sym_comment, - ACTIONS(1470), 18, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3258), 1, + sym_cell_path, + ACTIONS(1741), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -306501,7 +316117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1472), 31, + ACTIONS(1745), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306514,10 +316130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -306533,77 +316150,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92380] = 5, - ACTIONS(3), 1, + [97164] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6087), 1, - aux_sym__immediate_decimal_token2, - STATE(2901), 1, - sym_comment, - ACTIONS(1376), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, + ACTIONS(5938), 1, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [92443] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_LPAREN2, - ACTIONS(1945), 1, - sym__entry_separator, - STATE(2902), 1, + STATE(2966), 1, sym_comment, - ACTIONS(1943), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1939), 46, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3259), 1, + sym_cell_path, + ACTIONS(1899), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1901), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306616,31 +316191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306649,24 +316211,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92508] = 8, - ACTIONS(3), 1, + [97233] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, + ACTIONS(5938), 1, anon_sym_DOT, - STATE(2903), 1, + STATE(2967), 1, sym_comment, - STATE(2988), 1, + STATE(3031), 1, aux_sym_cell_path_repeat1, - STATE(3158), 1, + STATE(3206), 1, sym_path, - STATE(3205), 1, + STATE(3260), 1, sym_cell_path, - ACTIONS(6091), 15, + ACTIONS(1831), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -306679,7 +316239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6089), 31, + ACTIONS(1833), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306696,6 +316256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -306711,19 +316272,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92577] = 4, - ACTIONS(3), 1, + [97302] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2904), 1, + STATE(2968), 1, sym_comment, - ACTIONS(2329), 6, + ACTIONS(962), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2331), 44, + ACTIONS(964), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306763,24 +316324,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92638] = 4, - ACTIONS(3), 1, + [97363] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2905), 1, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(2969), 1, + sym_comment, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3270), 1, + sym_cell_path, + ACTIONS(1839), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1841), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97432] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2970), 1, sym_comment, - ACTIONS(912), 6, + ACTIONS(1021), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(914), 44, + ACTIONS(1023), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306820,25 +316442,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92699] = 5, - ACTIONS(3), 1, + [97493] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6093), 1, + ACTIONS(5896), 1, aux_sym__immediate_decimal_token2, - STATE(2906), 1, + STATE(2971), 1, sym_comment, - ACTIONS(1535), 18, + ACTIONS(1589), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -306851,7 +316472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1537), 31, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306868,6 +316489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -306883,133 +316505,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92762] = 4, - ACTIONS(3), 1, + [97556] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2907), 1, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(2972), 1, sym_comment, - ACTIONS(2333), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2335), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3305), 1, + sym_cell_path, + ACTIONS(5995), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92823] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2908), 1, - sym_comment, - ACTIONS(2204), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2206), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5993), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92884] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97625] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2909), 1, + STATE(2973), 1, sym_comment, - ACTIONS(3239), 6, + ACTIONS(1796), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(3241), 44, + ACTIONS(1798), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307049,21 +316618,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92945] = 4, - ACTIONS(121), 1, + [97686] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2910), 1, - sym_comment, - ACTIONS(1915), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(953), 1, sym__entry_separator, - ACTIONS(1913), 47, + ACTIONS(5861), 1, + anon_sym_DOT, + STATE(2974), 1, + sym_comment, + STATE(2978), 1, + aux_sym_cell_path_repeat1, + STATE(3138), 1, + sym_path, + ACTIONS(951), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307077,13 +316650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -307111,20 +316683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [93006] = 5, - ACTIONS(3), 1, + [97753] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6095), 1, + ACTIONS(5997), 1, sym__newline, - STATE(2911), 2, + STATE(2975), 2, sym_comment, aux_sym_shebang_repeat1, - ACTIONS(1856), 17, + ACTIONS(1755), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -307137,7 +316708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1858), 31, + ACTIONS(1757), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307146,12 +316717,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -307169,130 +316741,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93069] = 4, + [97816] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2912), 1, + ACTIONS(1978), 1, + sym__entry_separator, + ACTIONS(6000), 1, + anon_sym_DOT_DOT2, + STATE(2976), 1, sym_comment, - ACTIONS(2325), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2327), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(6002), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1972), 46, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93130] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2913), 1, - sym_comment, - ACTIONS(1764), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1766), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93191] = 4, - ACTIONS(121), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [97881] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2914), 1, + STATE(2977), 1, sym_comment, - ACTIONS(938), 3, + ACTIONS(1023), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(936), 47, + ACTIONS(1021), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307311,8 +316828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -307340,55 +316857,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [93252] = 4, + [97942] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2915), 1, - sym_comment, - ACTIONS(916), 17, - anon_sym__, - anon_sym_DOT_DOT, + ACTIONS(957), 1, + sym__entry_separator, + ACTIONS(6004), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(918), 33, + STATE(3138), 1, + sym_path, + STATE(2978), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(955), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_QMARK2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307397,19 +316915,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93313] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [98007] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2916), 1, + STATE(2979), 1, sym_comment, - ACTIONS(2208), 6, + ACTIONS(1747), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2210), 44, + ACTIONS(1749), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307449,28 +316968,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93374] = 8, - ACTIONS(3), 1, + [98068] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2917), 1, + STATE(2980), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3202), 1, - sym_cell_path, - ACTIONS(1808), 15, + ACTIONS(1569), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -307483,7 +316996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1810), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307496,10 +317010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -307515,80 +317030,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93443] = 8, - ACTIONS(3), 1, + [98129] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2918), 1, + STATE(2981), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3200), 1, - sym_cell_path, - ACTIONS(1800), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1802), 31, + ACTIONS(3487), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(3485), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93512] = 4, - ACTIONS(3), 1, + [98190] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2919), 1, + STATE(2982), 1, sym_comment, - ACTIONS(1216), 6, + ACTIONS(1006), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1220), 44, + ACTIONS(1008), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307625,25 +317136,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93573] = 4, - ACTIONS(3), 1, + [98251] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2920), 1, + STATE(2983), 1, sym_comment, - ACTIONS(920), 17, + ACTIONS(966), 16, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -307656,7 +317166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(922), 33, + ACTIONS(968), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307675,6 +317185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -307690,80 +317201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93634] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2921), 1, - sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3214), 1, - sym_cell_path, - ACTIONS(1812), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1814), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93703] = 4, - ACTIONS(3), 1, + [98312] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2922), 1, + STATE(2984), 1, sym_comment, - ACTIONS(2337), 6, + ACTIONS(1273), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2339), 44, + ACTIONS(1277), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307800,108 +317250,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93764] = 28, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4099), 1, + sym__newline, aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4105), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5763), 1, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(5948), 1, - sym_val_date, - ACTIONS(6023), 1, - anon_sym_LPAREN, - ACTIONS(6025), 1, - anon_sym_DOLLAR, - ACTIONS(6027), 1, - anon_sym_DOT_DOT, - ACTIONS(6031), 1, - anon_sym_DOT2, - ACTIONS(6033), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6035), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6037), 1, - aux_sym_unquoted_token1, - STATE(2622), 1, - sym__inter_single_quotes, - STATE(2623), 1, - sym__inter_double_quotes, - STATE(2689), 1, - sym__str_double_quotes, - STATE(2923), 1, - sym_comment, - STATE(5877), 1, - sym__val_number_decimal, - STATE(7470), 1, - sym__val_range, - STATE(7741), 1, - sym__unquoted_anonymous_prefix, - STATE(7785), 1, - sym_val_bool, - ACTIONS(4085), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5765), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6029), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(6021), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1739), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2454), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93873] = 4, - ACTIONS(3), 1, + [98373] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2924), 1, + STATE(2985), 1, sym_comment, - ACTIONS(3443), 6, + ACTIONS(1770), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(3441), 44, + ACTIONS(1772), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307941,84 +317310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93934] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(891), 1, - sym__entry_separator, - ACTIONS(5923), 1, - anon_sym_DOT, - STATE(2925), 1, - sym_comment, - STATE(2930), 1, - aux_sym_cell_path_repeat1, - STATE(3082), 1, - sym_path, - ACTIONS(889), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94001] = 4, - ACTIONS(3), 1, + [98434] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2926), 1, + STATE(2986), 1, sym_comment, - ACTIONS(936), 6, + ACTIONS(2359), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(938), 44, + ACTIONS(2361), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308058,22 +317367,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94062] = 4, - ACTIONS(3), 1, + [98495] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2927), 1, + STATE(2987), 1, sym_comment, - ACTIONS(912), 17, + ACTIONS(962), 16, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -308086,7 +317394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(914), 33, + ACTIONS(964), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308105,6 +317413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -308120,78 +317429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94123] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6098), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6100), 1, - aux_sym__immediate_decimal_token2, - STATE(2928), 1, - sym_comment, - ACTIONS(1470), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1472), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [94188] = 4, - ACTIONS(3), 1, + [98556] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2929), 1, + STATE(2988), 1, sym_comment, - ACTIONS(2341), 6, + ACTIONS(1741), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2343), 44, + ACTIONS(1745), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308231,24 +317481,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94249] = 6, - ACTIONS(121), 1, + [98617] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(895), 1, - sym__entry_separator, - ACTIONS(6102), 1, - anon_sym_DOT, - STATE(3082), 1, - sym_path, - STATE(2930), 2, + STATE(2989), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 46, + ACTIONS(1648), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308261,31 +317523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308294,24 +317543,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94314] = 8, - ACTIONS(3), 1, + [98678] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2931), 1, + STATE(2990), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3237), 1, - sym_cell_path, - ACTIONS(1804), 15, + ACTIONS(1721), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -308324,7 +317566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1806), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308337,10 +317580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -308356,23 +317600,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94383] = 8, - ACTIONS(3), 1, + [98739] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2932), 1, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6007), 1, + anon_sym_DOT_DOT2, + STATE(2991), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3194), 1, - sym_cell_path, - ACTIONS(1788), 15, + ACTIONS(6009), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -308385,7 +317629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1790), 31, + ACTIONS(1717), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308398,10 +317642,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -308417,78 +317660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94452] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6105), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6107), 1, - aux_sym__immediate_decimal_token2, - STATE(2933), 1, - sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [94517] = 4, - ACTIONS(3), 1, + [98806] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2934), 1, + STATE(2992), 1, sym_comment, - ACTIONS(1780), 6, + ACTIONS(2311), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1782), 44, + ACTIONS(2313), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308528,24 +317712,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94578] = 4, - ACTIONS(3), 1, + [98867] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2935), 1, + STATE(2993), 1, sym_comment, - ACTIONS(2216), 6, + ACTIONS(966), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2218), 44, + ACTIONS(968), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308585,24 +317769,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94639] = 5, - ACTIONS(3), 1, + [98928] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6109), 1, - anon_sym_QMARK2, - STATE(2936), 1, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(2994), 1, sym_comment, - ACTIONS(900), 17, - anon_sym__, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3302), 1, + sym_cell_path, + ACTIONS(5881), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -308614,25 +317801,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(902), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(6011), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -308648,56 +317835,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94702] = 5, - ACTIONS(3), 1, + [98997] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6111), 1, - anon_sym_QMARK2, - STATE(2937), 1, + STATE(2995), 1, sym_comment, - ACTIONS(906), 17, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(2311), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2313), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(908), 32, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99058] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2996), 1, + sym_comment, + ACTIONS(1591), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1589), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308706,19 +317948,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94765] = 6, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [99119] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6113), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6115), 1, - aux_sym__unquoted_in_list_token2, - STATE(2938), 1, + STATE(2997), 1, sym_comment, - ACTIONS(5395), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(5381), 46, + ACTIONS(6013), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(6015), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99180] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2998), 1, + sym_comment, + ACTIONS(3375), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(3373), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99241] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6017), 1, + sym__newline, + STATE(2999), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1755), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1757), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308726,36 +318096,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308764,20 +318121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94830] = 4, - ACTIONS(3), 1, + [99304] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2939), 1, + STATE(3000), 1, sym_comment, - ACTIONS(2216), 6, + ACTIONS(2303), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2218), 44, + ACTIONS(2305), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308817,28 +318173,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94891] = 8, - ACTIONS(3), 1, + [99365] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2940), 1, + STATE(3001), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3199), 1, - sym_cell_path, - ACTIONS(1816), 15, + ACTIONS(986), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -308851,7 +318202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1818), 31, + ACTIONS(988), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308864,10 +318215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -308883,19 +318235,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94960] = 4, - ACTIONS(3), 1, + [99426] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3002), 1, + sym_comment, + ACTIONS(2315), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2317), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99487] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2941), 1, + STATE(3003), 1, sym_comment, - ACTIONS(1788), 6, + ACTIONS(2363), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1790), 44, + ACTIONS(2365), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308935,24 +318344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95021] = 4, - ACTIONS(3), 1, + [99548] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2942), 1, + STATE(3004), 1, sym_comment, - ACTIONS(1792), 6, + ACTIONS(2367), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1794), 44, + ACTIONS(2369), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308992,24 +318401,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95082] = 4, - ACTIONS(3), 1, + [99609] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2943), 1, + STATE(3005), 1, sym_comment, - ACTIONS(2345), 6, + ACTIONS(976), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2347), 44, + ACTIONS(978), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309049,144 +318458,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [95143] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2944), 1, - sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3223), 1, - sym_cell_path, - ACTIONS(883), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(885), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95212] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1953), 1, - sym__entry_separator, - ACTIONS(6117), 1, - anon_sym_DOT_DOT2, - STATE(2945), 1, - sym_comment, - ACTIONS(6119), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1947), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95277] = 4, - ACTIONS(3), 1, + [99670] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2946), 1, + STATE(3006), 1, sym_comment, - ACTIONS(2927), 6, + ACTIONS(2348), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2925), 44, + ACTIONS(2350), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309226,39 +318515,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95338] = 6, + [99731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6121), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6123), 1, - aux_sym__immediate_decimal_token2, - STATE(2947), 1, + STATE(3007), 1, sym_comment, - ACTIONS(1470), 17, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 31, + ACTIONS(1571), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1569), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309271,99 +318542,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95403] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2948), 1, - sym_comment, - ACTIONS(928), 19, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(930), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95464] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6125), 1, - sym__newline, - STATE(2949), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1856), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309372,31 +318568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1858), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309405,16 +318576,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95527] = 4, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [99792] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2950), 1, + ACTIONS(1966), 1, + sym__entry_separator, + ACTIONS(6020), 1, + anon_sym_DOT_DOT2, + STATE(3008), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(6022), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1470), 47, + ACTIONS(1960), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309428,13 +318603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -309462,80 +318636,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95588] = 4, - ACTIONS(121), 1, + [99857] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2951), 1, + STATE(3009), 1, sym_comment, - ACTIONS(1537), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1535), 47, + ACTIONS(1899), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1901), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95649] = 8, - ACTIONS(3), 1, + [99918] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2952), 1, + ACTIONS(6024), 1, + anon_sym_QMARK2, + STATE(3010), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3188), 1, - sym_cell_path, - ACTIONS(1784), 15, + ACTIONS(970), 16, + anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -309547,24 +318716,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1786), 31, + aux_sym_unquoted_token1, + ACTIONS(972), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -309580,23 +318751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95718] = 8, - ACTIONS(3), 1, + [99981] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2953), 1, + ACTIONS(6026), 1, + anon_sym_QMARK2, + STATE(3011), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3209), 1, - sym_cell_path, - ACTIONS(1792), 15, + ACTIONS(980), 16, + anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -309608,24 +318774,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1794), 31, + aux_sym_unquoted_token1, + ACTIONS(982), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -309641,19 +318809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95787] = 4, - ACTIONS(3), 1, + [100044] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2954), 1, + STATE(3012), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1879), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1806), 44, + ACTIONS(1881), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309693,85 +318861,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [95848] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2955), 1, - sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3224), 1, - sym_cell_path, - ACTIONS(1752), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1754), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95917] = 4, - ACTIONS(3), 1, + [100105] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2956), 1, + STATE(3013), 1, sym_comment, - ACTIONS(1733), 6, + ACTIONS(2271), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1735), 44, + ACTIONS(2273), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309811,24 +318918,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95978] = 4, - ACTIONS(3), 1, + [100166] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2957), 1, + STATE(3014), 1, sym_comment, - ACTIONS(2273), 6, + ACTIONS(2241), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2275), 44, + ACTIONS(2243), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309868,24 +318975,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96039] = 4, - ACTIONS(3), 1, + [100227] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2958), 1, + STATE(3015), 1, sym_comment, - ACTIONS(2248), 6, + ACTIONS(2340), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2250), 44, + ACTIONS(2342), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309925,31 +319032,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96100] = 8, + [100288] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2959), 1, + STATE(3016), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3226), 1, - sym_cell_path, - ACTIONS(1756), 15, + ACTIONS(1650), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1648), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309958,8 +319085,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1758), 31, + [100349] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3017), 1, + sym_comment, + ACTIONS(1723), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1721), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309972,17 +319116,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309991,23 +319150,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96169] = 8, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [100410] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2960), 1, + STATE(3018), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3229), 1, - sym_cell_path, - ACTIONS(1760), 15, + ACTIONS(994), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310020,7 +319175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1762), 31, + ACTIONS(996), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310033,10 +319188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310052,23 +319208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96238] = 8, - ACTIONS(3), 1, + [100471] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2961), 1, + STATE(3019), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3231), 1, - sym_cell_path, - ACTIONS(1764), 15, + ACTIONS(976), 16, + anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310080,24 +319229,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1766), 31, + aux_sym_unquoted_token1, + ACTIONS(978), 34, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310113,16 +319265,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96307] = 4, - ACTIONS(121), 1, + [100532] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2962), 1, + STATE(3020), 1, sym_comment, - ACTIONS(1961), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1959), 47, + ACTIONS(1835), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1837), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [100593] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5938), 1, + anon_sym_DOT, + STATE(3021), 1, + sym_comment, + STATE(3031), 1, + aux_sym_cell_path_repeat1, + STATE(3206), 1, + sym_path, + STATE(3264), 1, + sym_cell_path, + ACTIONS(1835), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1837), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310135,32 +319363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310169,24 +319383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [96368] = 8, - ACTIONS(3), 1, + [100662] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2963), 1, + STATE(3022), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3234), 1, - sym_cell_path, - ACTIONS(1768), 15, + ACTIONS(1953), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310199,7 +319406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1770), 31, + ACTIONS(1955), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310212,10 +319419,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310231,23 +319439,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96437] = 8, - ACTIONS(3), 1, + [100722] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2964), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(2949), 1, + anon_sym_DOT_DOT2, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + ACTIONS(6028), 1, + sym_filesize_unit, + ACTIONS(6030), 1, + sym_duration_unit, + STATE(3023), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3206), 1, - sym_cell_path, - ACTIONS(1772), 15, + STATE(7615), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2951), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [100794] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3024), 1, + sym_comment, + ACTIONS(1721), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310260,7 +319524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1774), 31, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310273,10 +319537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310292,26 +319557,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96506] = 8, + [100854] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2965), 1, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2127), 1, + sym__entry_separator, + ACTIONS(2129), 1, + aux_sym__unquoted_in_list_token2, + STATE(3025), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3211), 1, - sym_cell_path, - ACTIONS(1776), 15, + ACTIONS(2123), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310320,24 +319606,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1778), 31, + [100918] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6032), 1, + aux_sym__immediate_decimal_token2, + STATE(3026), 1, + sym_comment, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [100980] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3027), 1, + sym_comment, + ACTIONS(986), 16, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(988), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310353,23 +319728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96575] = 8, - ACTIONS(3), 1, + [101040] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2966), 1, + STATE(3028), 1, sym_comment, - STATE(2988), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - STATE(3230), 1, - sym_cell_path, - ACTIONS(1796), 15, + ACTIONS(990), 16, + anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310381,24 +319749,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1798), 31, + aux_sym_unquoted_token1, + ACTIONS(992), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310414,16 +319784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96644] = 4, - ACTIONS(121), 1, + [101100] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2967), 1, - sym_comment, - ACTIONS(1610), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(972), 1, sym__entry_separator, - ACTIONS(1608), 47, + ACTIONS(6034), 1, + anon_sym_QMARK2, + STATE(3029), 1, + sym_comment, + ACTIONS(970), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310437,13 +319807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310471,70 +319841,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96705] = 29, + [101162] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(117), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4099), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4105), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5948), 1, - sym_val_date, - ACTIONS(6037), 1, - aux_sym_unquoted_token1, - ACTIONS(6128), 1, - anon_sym_LPAREN, - ACTIONS(6130), 1, - anon_sym_DOLLAR, - ACTIONS(6132), 1, - anon_sym_DOT_DOT, - ACTIONS(6136), 1, - anon_sym_DOT2, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2524), 1, - sym__inter_single_quotes, - STATE(2526), 1, - sym__inter_double_quotes, - STATE(2968), 1, + ACTIONS(982), 1, + sym__entry_separator, + ACTIONS(6036), 1, + anon_sym_QMARK2, + STATE(3030), 1, sym_comment, - STATE(5877), 1, - sym__val_number_decimal, - STATE(6918), 1, - sym_unquoted, - STATE(7470), 1, - sym__val_range, - STATE(7741), 1, - sym__unquoted_anonymous_prefix, - STATE(7785), 1, - sym_val_bool, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4085), 2, + ACTIONS(980), 47, anon_sym_true, anon_sym_false, - ACTIONS(6134), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(6021), 3, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(7251), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2454), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310543,8 +319889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310553,80 +319897,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96816] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2969), 1, - sym_comment, - ACTIONS(2184), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2186), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96877] = 8, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [101224] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, + ACTIONS(5938), 1, anon_sym_DOT, - STATE(2970), 1, + STATE(3031), 1, sym_comment, - STATE(2988), 1, + STATE(3044), 1, aux_sym_cell_path_repeat1, - STATE(3158), 1, + STATE(3206), 1, sym_path, - STATE(3187), 1, - sym_cell_path, - ACTIONS(1780), 15, + ACTIONS(951), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310639,7 +319924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1782), 31, + ACTIONS(953), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310656,6 +319941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310671,16 +319957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96946] = 4, - ACTIONS(121), 1, + [101290] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2971), 1, - sym_comment, - ACTIONS(1965), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1571), 1, sym__entry_separator, - ACTIONS(1963), 47, + ACTIONS(6038), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6040), 1, + aux_sym__immediate_decimal_token2, + STATE(3032), 1, + sym_comment, + ACTIONS(1569), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310694,13 +319982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310728,75 +320015,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97007] = 4, - ACTIONS(3), 1, + [101354] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2972), 1, + ACTIONS(6044), 1, + anon_sym_DOT_DOT2, + STATE(3033), 1, sym_comment, - ACTIONS(2212), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2214), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(6046), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5940), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(6042), 30, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97068] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101418] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2973), 1, + ACTIONS(6044), 1, + anon_sym_DOT_DOT2, + STATE(3034), 1, sym_comment, - ACTIONS(1913), 18, + ACTIONS(6046), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5964), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310809,7 +320100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1915), 31, + ACTIONS(6048), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310822,10 +320113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310841,15 +320131,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97128] = 4, - ACTIONS(121), 1, + [101482] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2974), 1, + ACTIONS(6050), 1, + anon_sym_DOT, + ACTIONS(6052), 1, + aux_sym__immediate_decimal_token2, + STATE(3035), 1, sym_comment, - ACTIONS(2075), 2, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [101546] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1711), 1, anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2087), 1, sym__entry_separator, - ACTIONS(2073), 47, + STATE(3036), 1, + sym_comment, + ACTIONS(2085), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310867,8 +320218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310896,18 +320247,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [97188] = 4, - ACTIONS(3), 1, + [101610] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2975), 1, + ACTIONS(6054), 1, + anon_sym_DOT_DOT2, + STATE(3037), 1, sym_comment, - ACTIONS(924), 17, - anon_sym__, + ACTIONS(6056), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2066), 16, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310919,25 +320273,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(926), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(2072), 30, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -310953,17 +320305,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97248] = 4, - ACTIONS(3), 1, + [101674] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2976), 1, + ACTIONS(6058), 1, + anon_sym_DOT_DOT2, + STATE(3038), 1, sym_comment, - ACTIONS(932), 17, - anon_sym__, + ACTIONS(6060), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1972), 16, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310975,25 +320331,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(934), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(1978), 30, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311009,75 +320363,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97308] = 5, - ACTIONS(3), 1, + [101738] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6138), 1, - aux_sym__immediate_decimal_token2, - STATE(2977), 1, - sym_comment, - ACTIONS(1376), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(6062), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + STATE(3039), 1, + sym_comment, + ACTIONS(6064), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [97370] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2978), 1, - sym_comment, - ACTIONS(1963), 18, + ACTIONS(1960), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311090,7 +320390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1965), 31, + ACTIONS(1966), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311103,10 +320403,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311122,18 +320421,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97430] = 6, - ACTIONS(121), 1, + [101802] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2081), 1, - sym__entry_separator, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token7, - STATE(2979), 1, + STATE(3040), 1, sym_comment, - ACTIONS(2077), 46, + ACTIONS(1021), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1023), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311146,31 +320457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311179,17 +320477,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97494] = 5, - ACTIONS(121), 1, + [101862] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + aux_sym__immediate_decimal_token2, + STATE(3041), 1, + sym_comment, + ACTIONS(1473), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [101926] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6070), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6072), 1, + aux_sym__immediate_decimal_token2, + STATE(3042), 1, + sym_comment, + ACTIONS(1481), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [101990] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(902), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1717), 1, sym__entry_separator, - ACTIONS(6140), 1, - anon_sym_QMARK2, - STATE(2980), 1, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + STATE(3043), 1, sym_comment, - ACTIONS(900), 47, + ACTIONS(1709), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311203,13 +320618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311237,16 +320651,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97556] = 5, - ACTIONS(121), 1, + [102054] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(908), 1, - sym__entry_separator, - ACTIONS(6142), 1, - anon_sym_QMARK2, - STATE(2981), 1, + ACTIONS(6074), 1, + anon_sym_DOT, + STATE(3206), 1, + sym_path, + STATE(3044), 2, sym_comment, - ACTIONS(906), 47, + aux_sym_cell_path_repeat1, + ACTIONS(955), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(957), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311259,24 +320689,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [102118] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3045), 1, + sym_comment, + ACTIONS(1273), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311285,6 +320730,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1277), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311293,19 +320765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97618] = 6, - ACTIONS(121), 1, + [102178] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2157), 1, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1692), 1, anon_sym_LPAREN2, - ACTIONS(2159), 1, + ACTIONS(1698), 1, sym__entry_separator, - ACTIONS(2161), 1, - aux_sym__unquoted_in_list_token7, - STATE(2982), 1, + STATE(3046), 1, sym_comment, - ACTIONS(2155), 46, + ACTIONS(1690), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311323,8 +320794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311352,18 +320823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97682] = 6, - ACTIONS(121), 1, + [102242] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2157), 1, + ACTIONS(2091), 1, anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(2165), 1, + ACTIONS(2093), 1, sym__entry_separator, - STATE(2983), 1, + ACTIONS(2095), 1, + aux_sym__unquoted_in_list_token4, + STATE(3047), 1, sym_comment, - ACTIONS(2163), 46, + ACTIONS(2089), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311381,8 +320852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311410,22 +320881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97746] = 6, - ACTIONS(3), 1, + [102306] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6144), 1, - anon_sym_DOT_DOT2, - STATE(2984), 1, + STATE(3048), 1, sym_comment, - ACTIONS(6146), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1879), 17, + ACTIONS(1273), 16, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311437,22 +320902,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1885), 29, + aux_sym_unquoted_token1, + ACTIONS(1277), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311460,6 +320927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311468,18 +320937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97810] = 6, - ACTIONS(121), 1, + [102366] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1472), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2119), 1, + anon_sym_LPAREN2, + ACTIONS(2121), 1, sym__entry_separator, - ACTIONS(6148), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6150), 1, - aux_sym__immediate_decimal_token2, - STATE(2985), 1, + STATE(3049), 1, sym_comment, - ACTIONS(1470), 46, + ACTIONS(2117), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311497,8 +320966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311526,17 +320995,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97874] = 4, - ACTIONS(3), 1, + [102430] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2986), 1, + STATE(3050), 1, sym_comment, - ACTIONS(1216), 17, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(994), 16, + anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311549,7 +321017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1220), 32, + ACTIONS(996), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311559,12 +321027,15 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311572,8 +321043,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311582,25 +321051,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97934] = 6, + [102490] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6152), 1, - anon_sym_DOT_DOT2, - STATE(2987), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2107), 1, + sym__entry_separator, + STATE(3051), 1, sym_comment, - ACTIONS(6154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1947), 17, + ACTIONS(2105), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311609,8 +321100,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1953), 29, + [102554] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1591), 1, + sym__entry_separator, + ACTIONS(6077), 1, + anon_sym_DOT, + ACTIONS(6079), 1, + aux_sym__immediate_decimal_token2, + STATE(3052), 1, + sym_comment, + ACTIONS(1589), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311623,15 +321133,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311640,21 +321166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97998] = 7, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [102618] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2988), 1, + ACTIONS(5973), 1, + aux_sym__immediate_decimal_token2, + STATE(3053), 1, sym_comment, - STATE(2994), 1, - aux_sym_cell_path_repeat1, - STATE(3158), 1, - sym_path, - ACTIONS(889), 15, + ACTIONS(1589), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311666,24 +321189,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(891), 31, + aux_sym_unquoted_token1, + ACTIONS(1591), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311699,14 +321224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98064] = 4, - ACTIONS(121), 1, + [102680] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(918), 1, + ACTIONS(2239), 1, sym__entry_separator, - STATE(2989), 1, + ACTIONS(6081), 1, + anon_sym_LBRACK2, + STATE(3054), 1, sym_comment, - ACTIONS(916), 48, + ACTIONS(2235), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311719,15 +321246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311755,14 +321281,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98124] = 4, - ACTIONS(121), 1, + [102742] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(922), 1, - sym__entry_separator, - STATE(2990), 1, + ACTIONS(5962), 1, + aux_sym__immediate_decimal_token2, + STATE(3055), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102804] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3056), 1, sym_comment, - ACTIONS(920), 48, + ACTIONS(2133), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2131), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311776,14 +321360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311811,22 +321393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98184] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token4, + [102864] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6158), 1, - anon_sym_DOT_DOT2, - STATE(2991), 1, + STATE(3057), 1, sym_comment, - ACTIONS(6160), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6070), 17, + ACTIONS(1982), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311839,7 +321417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6156), 29, + ACTIONS(1984), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311852,8 +321430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311869,45 +321450,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98248] = 4, - ACTIONS(121), 1, + [102924] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(914), 1, - sym__entry_separator, - STATE(2992), 1, + ACTIONS(6083), 1, + aux_sym__immediate_decimal_token2, + STATE(3058), 1, sym_comment, - ACTIONS(912), 48, + ACTIONS(1648), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1650), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [102986] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6085), 1, + anon_sym_DOT, + ACTIONS(6087), 1, + aux_sym__immediate_decimal_token2, + STATE(3059), 1, + sym_comment, + ACTIONS(1589), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311916,6 +321530,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311924,23 +321565,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98308] = 6, - ACTIONS(3), 1, + [103050] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6158), 1, + ACTIONS(6089), 1, anon_sym_DOT_DOT2, - STATE(2993), 1, + STATE(3060), 1, sym_comment, - ACTIONS(6160), 2, + ACTIONS(6091), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6080), 17, + ACTIONS(1935), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311953,7 +321592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6162), 29, + ACTIONS(1941), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311968,6 +321607,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -311983,20 +321623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98372] = 6, - ACTIONS(3), 1, + [103114] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6164), 1, - anon_sym_DOT, - STATE(3158), 1, - sym_path, - STATE(2994), 2, + STATE(3061), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 15, + ACTIONS(1943), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312009,7 +321646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(895), 31, + ACTIONS(1945), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312022,10 +321659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -312041,16 +321679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98436] = 5, - ACTIONS(121), 1, + [103174] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6169), 1, - anon_sym_LPAREN2, - ACTIONS(6171), 1, - aux_sym__unquoted_in_list_token3, - STATE(2995), 1, + STATE(3062), 1, sym_comment, - ACTIONS(6167), 47, + ACTIONS(1591), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1589), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312068,8 +321705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -312080,7 +321717,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - sym__entry_separator, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312098,32 +321734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98498] = 5, + aux_sym__unquoted_in_list_token2, + [103234] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6173), 1, - aux_sym__immediate_decimal_token2, - STATE(2996), 1, + STATE(3063), 1, sym_comment, - ACTIONS(1518), 17, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 31, + ACTIONS(1571), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1569), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312136,17 +321756,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312155,54 +321789,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98560] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [103294] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2997), 1, + ACTIONS(1008), 1, + sym__entry_separator, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5966), 1, + anon_sym_RBRACK, + STATE(3064), 1, sym_comment, - ACTIONS(928), 17, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(930), 32, + ACTIONS(5964), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312211,136 +321849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98620] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6175), 1, - anon_sym_DOT, - ACTIONS(6177), 1, - aux_sym__immediate_decimal_token2, - STATE(2998), 1, - sym_comment, - ACTIONS(1398), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1400), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [98684] = 6, + aux_sym__unquoted_in_list_token1, + [103360] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6179), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6181), 1, - aux_sym__immediate_decimal_token2, - STATE(2999), 1, + STATE(3065), 1, sym_comment, - ACTIONS(1368), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1370), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [98748] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(950), 1, - sym__entry_separator, - ACTIONS(2039), 1, + ACTIONS(1650), 2, anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(6082), 1, - anon_sym_RBRACK, - STATE(3000), 1, - sym_comment, - ACTIONS(6080), 45, + sym__entry_separator, + ACTIONS(1648), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312348,6 +321866,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -312357,8 +321876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -312386,21 +321905,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98814] = 4, + aux_sym__unquoted_in_list_token2, + [103420] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3001), 1, + STATE(3066), 1, sym_comment, - ACTIONS(1470), 18, + ACTIONS(1723), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1721), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312409,8 +321952,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1472), 31, + aux_sym__unquoted_in_list_token2, + [103480] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(968), 1, + sym__entry_separator, + STATE(3067), 1, + sym_comment, + ACTIONS(966), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312423,17 +321982,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312442,22 +322017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98874] = 8, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [103540] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(6072), 1, - anon_sym_RBRACK, - ACTIONS(6078), 1, + ACTIONS(978), 1, sym__entry_separator, - ACTIONS(6185), 1, - anon_sym_COMMA, - STATE(3002), 1, + STATE(3068), 1, sym_comment, - STATE(7684), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6183), 44, + ACTIONS(976), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312465,16 +322033,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -312502,55 +322074,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98942] = 5, + [103600] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6187), 1, - aux_sym__immediate_decimal_token1, - STATE(3003), 1, + ACTIONS(964), 1, + sym__entry_separator, + STATE(3069), 1, sym_comment, - ACTIONS(1701), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1705), 32, + ACTIONS(962), 48, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312559,18 +322129,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99004] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [103660] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3004), 1, + STATE(3070), 1, sym_comment, - ACTIONS(1535), 18, + ACTIONS(1589), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312583,7 +322153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1537), 31, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312600,6 +322170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -312615,22 +322186,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99064] = 4, - ACTIONS(3), 1, + [103720] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3005), 1, + ACTIONS(6093), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6095), 1, + aux_sym__immediate_decimal_token2, + STATE(3071), 1, sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1481), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(1483), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 40, + sym_duration_unit, + [103784] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6097), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6099), 1, + aux_sym__immediate_decimal_token2, + STATE(3072), 1, + sym_comment, + ACTIONS(1481), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1483), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312643,46 +322269,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [99124] = 4, - ACTIONS(3), 1, + [103848] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3006), 1, + STATE(3073), 1, sym_comment, - ACTIONS(1608), 18, + ACTIONS(1569), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312695,7 +322325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1610), 31, + ACTIONS(1571), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312712,6 +322342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -312727,78 +322358,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99184] = 4, - ACTIONS(3), 1, + [103908] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3007), 1, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token2, + STATE(3074), 1, sym_comment, - ACTIONS(1376), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [99244] = 4, - ACTIONS(3), 1, + ACTIONS(1569), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [103972] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3008), 1, - sym_comment, - ACTIONS(1504), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(6105), 1, + anon_sym_DOT, + ACTIONS(6107), 1, + aux_sym__immediate_decimal_token2, + STATE(3075), 1, + sym_comment, + ACTIONS(1473), 2, + aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1506), 40, + ACTIONS(1475), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312811,49 +322441,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [99304] = 5, + [104036] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6123), 1, - aux_sym__immediate_decimal_token2, - STATE(3009), 1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(5942), 1, + anon_sym_RBRACK, + ACTIONS(5948), 1, + sym__entry_separator, + ACTIONS(6111), 1, + anon_sym_COMMA, + STATE(3076), 1, sym_comment, - ACTIONS(1470), 17, + STATE(7650), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6109), 44, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312862,9 +322525,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 31, + [104104] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3077), 1, + sym_comment, + ACTIONS(1648), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1650), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312877,10 +322570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -312896,16 +322590,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99366] = 5, - ACTIONS(121), 1, + [104164] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2182), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2101), 1, sym__entry_separator, - ACTIONS(6189), 1, - anon_sym_LBRACK2, - STATE(3010), 1, + ACTIONS(2103), 1, + aux_sym__unquoted_in_list_token4, + STATE(3078), 1, sym_comment, - ACTIONS(2178), 47, + ACTIONS(2097), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312918,14 +322614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -312953,85 +322648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99428] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2858), 1, - anon_sym_DOT_DOT2, - ACTIONS(6191), 1, - sym_filesize_unit, - ACTIONS(6193), 1, - sym_duration_unit, - STATE(3011), 1, - sym_comment, - STATE(7592), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2862), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4781), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [99502] = 6, - ACTIONS(3), 1, + [104228] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6195), 1, - anon_sym_DOT_DOT2, - STATE(3012), 1, + STATE(3079), 1, sym_comment, - ACTIONS(6197), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1863), 17, + ACTIONS(2085), 15, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313043,22 +322668,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1869), 29, + aux_sym_unquoted_token1, + ACTIONS(2087), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -313074,33 +322703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99566] = 6, + [104287] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6173), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6199), 1, - anon_sym_DOT, - STATE(3013), 1, + ACTIONS(1745), 1, + sym__entry_separator, + STATE(3080), 1, sym_comment, - ACTIONS(1518), 16, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 31, + ACTIONS(1741), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313113,17 +322723,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313132,18 +322757,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99630] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [104346] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6045), 1, - aux_sym__immediate_decimal_token2, - STATE(3014), 1, + STATE(3081), 1, sym_comment, - ACTIONS(1518), 16, + ACTIONS(1021), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313156,7 +322779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1520), 32, + ACTIONS(1023), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313174,6 +322797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -313189,55 +322813,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99692] = 5, + [104405] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6100), 1, - aux_sym__immediate_decimal_token2, - STATE(3015), 1, + ACTIONS(2365), 1, + sym__entry_separator, + STATE(3082), 1, sym_comment, - ACTIONS(1470), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1472), 32, + ACTIONS(2363), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313246,20 +322867,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99754] = 4, + aux_sym__unquoted_in_list_token1, + [104464] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3016), 1, + ACTIONS(2369), 1, + sym__entry_separator, + STATE(3083), 1, sym_comment, - ACTIONS(1216), 17, + ACTIONS(2367), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313268,32 +322914,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1220), 32, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [104523] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1901), 1, + sym__entry_separator, + STATE(3084), 1, + sym_comment, + ACTIONS(1899), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313302,21 +322977,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99814] = 4, + aux_sym__unquoted_in_list_token1, + [104582] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3017), 1, + ACTIONS(1837), 1, + sym__entry_separator, + STATE(3085), 1, sym_comment, - ACTIONS(1959), 18, + ACTIONS(1835), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313325,8 +323024,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1961), 31, + [104641] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2373), 1, + sym__entry_separator, + STATE(3086), 1, + sym_comment, + ACTIONS(2371), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313339,17 +323053,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313358,18 +323087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99874] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [104700] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, - aux_sym__immediate_decimal_token2, - STATE(3018), 1, + STATE(3087), 1, sym_comment, - ACTIONS(1535), 16, + ACTIONS(2405), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313382,7 +323109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1537), 32, + ACTIONS(2407), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313400,6 +323127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -313415,22 +323143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99936] = 6, - ACTIONS(3), 1, + [104759] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6204), 1, - anon_sym_DOT_DOT2, - STATE(3019), 1, + STATE(3088), 1, sym_comment, - ACTIONS(6206), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1871), 17, + ACTIONS(2409), 15, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313442,22 +323163,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1877), 29, + aux_sym_unquoted_token1, + ACTIONS(2411), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -313473,18 +323198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100000] = 5, - ACTIONS(3), 1, + [104818] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6208), 1, - aux_sym__immediate_decimal_token2, - STATE(3020), 1, + STATE(3089), 1, sym_comment, - ACTIONS(1535), 17, + ACTIONS(2413), 15, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313496,25 +323218,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 31, + aux_sym_unquoted_token1, + ACTIONS(2415), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -313530,208 +323253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100062] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6210), 1, - anon_sym_DOT, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token2, - STATE(3021), 1, - sym_comment, - ACTIONS(1398), 8, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [100126] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token2, - STATE(3022), 1, - sym_comment, - ACTIONS(1398), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [100188] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4687), 1, - aux_sym_unquoted_token4, - ACTIONS(4744), 1, - anon_sym_DOT, - ACTIONS(4746), 1, - aux_sym_unquoted_token6, - STATE(3023), 1, - sym_comment, - STATE(5940), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [100260] = 4, + [104877] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3024), 1, + ACTIONS(2381), 1, + sym__entry_separator, + STATE(3090), 1, sym_comment, - ACTIONS(936), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(938), 31, + ACTIONS(2379), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313744,17 +323273,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313763,18 +323307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100320] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [104936] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6187), 1, - aux_sym__immediate_decimal_token1, - STATE(3025), 1, + STATE(3091), 1, sym_comment, - ACTIONS(2263), 16, + ACTIONS(2417), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313787,7 +323329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2267), 32, + ACTIONS(2419), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313805,6 +323347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -313820,77 +323363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100382] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6107), 1, - aux_sym__immediate_decimal_token2, - STATE(3026), 1, - sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [100444] = 6, - ACTIONS(3), 1, + [104995] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym__immediate_decimal_token1, - STATE(3027), 1, + STATE(3092), 1, sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1701), 15, + ACTIONS(2421), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313902,24 +323383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1705), 31, + aux_sym_unquoted_token1, + ACTIONS(2423), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -313935,18 +323418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100508] = 6, - ACTIONS(121), 1, + [105054] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1520), 1, + ACTIONS(1841), 1, sym__entry_separator, - ACTIONS(6217), 1, - anon_sym_DOT, - ACTIONS(6219), 1, - aux_sym__immediate_decimal_token2, - STATE(3028), 1, + STATE(3093), 1, sym_comment, - ACTIONS(1518), 46, + ACTIONS(1839), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313959,13 +323438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -313993,16 +323473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100572] = 4, - ACTIONS(3), 1, + [105113] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3029), 1, + STATE(3094), 1, sym_comment, - ACTIONS(1608), 16, + ACTIONS(2425), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -314015,7 +323494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1610), 32, + ACTIONS(2427), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314033,6 +323512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -314048,24 +323528,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100631] = 4, - ACTIONS(3), 1, + [105172] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3030), 1, + STATE(3095), 1, sym_comment, - ACTIONS(1376), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 39, - ts_builtin_sym_end, + ACTIONS(2117), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2121), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [105231] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6068), 1, + aux_sym__immediate_decimal_token2, + STATE(3096), 1, + sym_comment, + ACTIONS(1473), 3, sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -314076,42 +323605,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [100690] = 4, - ACTIONS(121), 1, + [105292] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3031), 1, - sym_comment, - ACTIONS(6223), 2, - anon_sym_LPAREN2, + ACTIONS(2385), 1, sym__entry_separator, - ACTIONS(6221), 46, + STATE(3097), 1, + sym_comment, + ACTIONS(2383), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314124,13 +323659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -314158,14 +323694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100749] = 4, - ACTIONS(121), 1, + [105351] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2328), 1, sym__entry_separator, - STATE(3032), 1, + STATE(3098), 1, sym_comment, - ACTIONS(2333), 47, + ACTIONS(2326), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314184,8 +323720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -314213,72 +323749,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100808] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6177), 1, - aux_sym__immediate_decimal_token2, - STATE(3033), 1, - sym_comment, - ACTIONS(1398), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1400), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [100869] = 4, - ACTIONS(3), 1, + [105410] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3034), 1, + ACTIONS(6113), 1, + anon_sym_QMARK2, + STATE(3099), 1, sym_comment, - ACTIONS(2293), 16, - anon_sym__, + ACTIONS(970), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -314290,25 +323771,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2295), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(972), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -314324,16 +323805,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100928] = 5, - ACTIONS(121), 1, + [105471] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1520), 1, + ACTIONS(1591), 1, sym__entry_separator, - ACTIONS(6219), 1, + ACTIONS(6079), 1, aux_sym__immediate_decimal_token2, - STATE(3035), 1, + STATE(3100), 1, sym_comment, - ACTIONS(1518), 46, + ACTIONS(1589), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314351,8 +323832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -314380,72 +323861,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100989] = 5, - ACTIONS(3), 1, + [105532] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6181), 1, - aux_sym__immediate_decimal_token2, - STATE(3036), 1, - sym_comment, - ACTIONS(1368), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1370), 39, + ACTIONS(6115), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101050] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3037), 1, + STATE(3101), 2, sym_comment, - ACTIONS(1939), 16, - anon_sym__, + aux_sym_shebang_repeat1, + ACTIONS(1755), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -314457,25 +323884,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1945), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(1757), 31, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -314483,6 +323907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314491,16 +323917,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101109] = 5, - ACTIONS(121), 1, + [105593] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1472), 1, - sym__entry_separator, - ACTIONS(6150), 1, - aux_sym__immediate_decimal_token2, - STATE(3038), 1, + ACTIONS(6118), 1, + anon_sym_QMARK2, + STATE(3102), 1, sym_comment, - ACTIONS(1470), 46, + ACTIONS(980), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(982), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314513,31 +323953,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314546,71 +323973,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101170] = 5, - ACTIONS(3), 1, + [105654] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6225), 1, + ACTIONS(6120), 1, aux_sym__immediate_decimal_token2, - STATE(3039), 1, - sym_comment, - ACTIONS(1376), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1378), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101231] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1953), 1, - sym__entry_separator, - STATE(3040), 1, + STATE(3103), 1, sym_comment, - ACTIONS(1947), 47, + ACTIONS(1648), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314623,32 +324009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314657,25 +324029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101290] = 4, - ACTIONS(3), 1, + [105715] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3041), 1, + ACTIONS(6122), 1, + aux_sym__immediate_decimal_token2, + STATE(3104), 1, sym_comment, - ACTIONS(1504), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1506), 39, - ts_builtin_sym_end, + ACTIONS(1519), 3, sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -314686,97 +324051,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [101349] = 5, - ACTIONS(121), 1, + [105776] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1537), 1, - sym__entry_separator, - ACTIONS(6227), 1, + ACTIONS(6052), 1, aux_sym__immediate_decimal_token2, - STATE(3042), 1, + STATE(3105), 1, sym_comment, - ACTIONS(1535), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101410] = 4, - ACTIONS(121), 1, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105837] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(2419), 1, sym__entry_separator, - STATE(3043), 1, + STATE(3106), 1, sym_comment, - ACTIONS(1879), 47, + ACTIONS(2417), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314795,8 +324167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -314824,52 +324196,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101469] = 4, - ACTIONS(121), 1, + [105896] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - sym__entry_separator, - STATE(3044), 1, + STATE(3107), 1, sym_comment, - ACTIONS(2293), 47, + ACTIONS(3175), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3173), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314878,15 +324251,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101528] = 4, - ACTIONS(121), 1, + [105955] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - sym__entry_separator, - STATE(3045), 1, + ACTIONS(6124), 1, + sym__newline, + STATE(3108), 2, sym_comment, - ACTIONS(2297), 47, + aux_sym_shebang_repeat1, + ACTIONS(1755), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1757), 31, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314894,37 +324283,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314933,15 +324307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101587] = 4, - ACTIONS(121), 1, + [106016] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2303), 1, + ACTIONS(2423), 1, sym__entry_separator, - STATE(3046), 1, + STATE(3109), 1, sym_comment, - ACTIONS(2301), 47, + ACTIONS(2421), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314960,8 +324333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -314989,52 +324362,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101646] = 4, - ACTIONS(121), 1, + [106075] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2307), 1, - sym__entry_separator, - STATE(3047), 1, + ACTIONS(6129), 1, + anon_sym_COMMA, + STATE(3110), 1, sym_comment, - ACTIONS(2305), 47, + ACTIONS(6131), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(6127), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315043,15 +324418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101705] = 4, - ACTIONS(121), 1, + [106136] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2311), 1, + ACTIONS(2427), 1, sym__entry_separator, - STATE(3048), 1, + STATE(3111), 1, sym_comment, - ACTIONS(2309), 47, + ACTIONS(2425), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315070,8 +324444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315099,52 +324473,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101764] = 4, - ACTIONS(121), 1, + [106195] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2315), 1, - sym__entry_separator, - STATE(3049), 1, + ACTIONS(6135), 1, + anon_sym_COMMA, + STATE(3112), 1, sym_comment, - ACTIONS(2313), 47, + ACTIONS(6137), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(6133), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315153,15 +324529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101823] = 4, - ACTIONS(121), 1, + [106256] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2319), 1, + ACTIONS(2431), 1, sym__entry_separator, - STATE(3050), 1, + STATE(3113), 1, sym_comment, - ACTIONS(2317), 47, + ACTIONS(2429), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315180,8 +324555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315209,14 +324584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101882] = 4, - ACTIONS(121), 1, + [106315] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(2435), 1, sym__entry_separator, - STATE(3051), 1, + STATE(3114), 1, sym_comment, - ACTIONS(1764), 47, + ACTIONS(2433), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315235,8 +324610,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315264,52 +324639,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101941] = 4, - ACTIONS(121), 1, + [106374] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2339), 1, - sym__entry_separator, - STATE(3052), 1, + STATE(3115), 1, sym_comment, - ACTIONS(2337), 47, + ACTIONS(2429), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2431), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315318,54 +324694,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102000] = 4, + [106433] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3053), 1, + ACTIONS(1650), 1, + sym__entry_separator, + ACTIONS(6139), 1, + aux_sym__immediate_decimal_token2, + STATE(3116), 1, sym_comment, - ACTIONS(2297), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2299), 32, + ACTIONS(1648), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315374,18 +324749,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102059] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [106494] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6231), 1, - anon_sym_COMMA, - STATE(3054), 1, + STATE(3117), 1, sym_comment, - ACTIONS(6233), 16, + ACTIONS(1690), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -315398,7 +324771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(6229), 31, + ACTIONS(1698), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315408,6 +324781,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -315415,6 +324789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315430,78 +324805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102120] = 9, - ACTIONS(3), 1, + [106553] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4687), 1, - aux_sym_unquoted_token5, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(3055), 1, - sym_comment, - STATE(7407), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [102189] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6237), 1, - anon_sym_COMMA, - STATE(3056), 1, + STATE(3118), 1, sym_comment, - ACTIONS(6239), 16, + ACTIONS(2433), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -315514,7 +324826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(6235), 31, + ACTIONS(2435), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315524,6 +324836,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -315531,6 +324844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315546,75 +324860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102250] = 5, - ACTIONS(3), 1, + [106612] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6241), 1, - sym__newline, - STATE(3057), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1856), 16, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1858), 30, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [102311] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6244), 1, - sym__newline, - STATE(3058), 2, + STATE(3119), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1856), 16, + ACTIONS(1589), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -315627,15 +324881,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1858), 30, + ACTIONS(1591), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -315643,6 +324899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315658,14 +324915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102372] = 4, - ACTIONS(121), 1, + [106671] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2343), 1, + ACTIONS(2439), 1, sym__entry_separator, - STATE(3059), 1, + STATE(3120), 1, sym_comment, - ACTIONS(2341), 47, + ACTIONS(2437), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315684,8 +324941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315713,14 +324970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102431] = 4, - ACTIONS(121), 1, + [106730] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1782), 1, + ACTIONS(2443), 1, sym__entry_separator, - STATE(3060), 1, + STATE(3121), 1, sym_comment, - ACTIONS(1780), 47, + ACTIONS(2441), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315739,8 +324996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315768,14 +325025,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102490] = 4, - ACTIONS(121), 1, + [106789] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(1537), 1, sym__entry_separator, - STATE(3061), 1, + STATE(3122), 1, sym_comment, - ACTIONS(1788), 47, + ACTIONS(1525), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315794,8 +325051,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315823,14 +325080,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102549] = 4, - ACTIONS(121), 1, + [106848] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3123), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [106907] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1794), 1, + ACTIONS(1881), 1, sym__entry_separator, - STATE(3062), 1, + STATE(3124), 1, sym_comment, - ACTIONS(1792), 47, + ACTIONS(1879), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315849,8 +325161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315878,19 +325190,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102608] = 6, - ACTIONS(3), 1, + [106966] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6247), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6249), 1, - aux_sym__immediate_decimal_token2, - STATE(3063), 1, + STATE(3125), 1, sym_comment, - ACTIONS(1470), 15, + ACTIONS(1585), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [107025] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3126), 1, + sym_comment, + ACTIONS(2437), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -315902,24 +325265,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1472), 31, + aux_sym_unquoted_token1, + ACTIONS(2439), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315935,14 +325300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102671] = 4, - ACTIONS(121), 1, + [107084] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2347), 1, + ACTIONS(2350), 1, sym__entry_separator, - STATE(3064), 1, + STATE(3127), 1, sym_comment, - ACTIONS(2345), 47, + ACTIONS(2348), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315961,8 +325326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -315990,52 +325355,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102730] = 4, - ACTIONS(121), 1, + [107143] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__entry_separator, - STATE(3065), 1, + STATE(3128), 1, sym_comment, - ACTIONS(1804), 47, + ACTIONS(2441), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2443), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316044,15 +325410,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102789] = 4, - ACTIONS(121), 1, + [107202] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2351), 1, - sym__entry_separator, - STATE(3066), 1, + STATE(3129), 1, sym_comment, - ACTIONS(2349), 47, + ACTIONS(962), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(964), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316065,24 +325444,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [107261] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3130), 1, + sym_comment, + ACTIONS(1569), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316091,6 +325485,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1571), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316099,15 +325520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102848] = 4, - ACTIONS(121), 1, + [107320] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2355), 1, + ACTIONS(2391), 1, sym__entry_separator, - STATE(3067), 1, + STATE(3131), 1, sym_comment, - ACTIONS(2353), 47, + ACTIONS(2389), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316126,8 +325546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -316155,14 +325575,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102907] = 4, - ACTIONS(121), 1, + [107379] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(6141), 1, + aux_sym__immediate_decimal_token2, + STATE(3132), 1, + sym_comment, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [107440] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(988), 1, sym__entry_separator, - STATE(3068), 1, + STATE(3133), 1, sym_comment, - ACTIONS(1808), 47, + ACTIONS(986), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316175,14 +325651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -316210,14 +325686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102966] = 4, - ACTIONS(121), 1, + [107499] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(992), 1, sym__entry_separator, - STATE(3069), 1, + STATE(3134), 1, sym_comment, - ACTIONS(1816), 47, + ACTIONS(990), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316230,14 +325706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -316265,52 +325741,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103025] = 4, - ACTIONS(121), 1, + [107558] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2359), 1, - sym__entry_separator, - STATE(3070), 1, + STATE(3135), 1, sym_comment, - ACTIONS(2357), 47, + ACTIONS(1960), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1966), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316319,53 +325796,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103084] = 4, - ACTIONS(121), 1, + [107617] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2279), 1, - sym__entry_separator, - STATE(3071), 1, + STATE(3136), 1, sym_comment, - ACTIONS(2277), 47, + ACTIONS(1648), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1650), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316374,15 +325851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103143] = 4, - ACTIONS(121), 1, + [107676] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - sym__entry_separator, - STATE(3072), 1, + STATE(3137), 1, sym_comment, - ACTIONS(1820), 47, + ACTIONS(6145), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6143), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316395,14 +325872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -316430,14 +325906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103202] = 4, - ACTIONS(121), 1, + [107735] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2363), 1, + ACTIONS(996), 1, sym__entry_separator, - STATE(3073), 1, + STATE(3138), 1, sym_comment, - ACTIONS(2361), 47, + ACTIONS(994), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316450,14 +325926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -316485,14 +325961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103261] = 4, - ACTIONS(121), 1, + [107794] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(2407), 1, sym__entry_separator, - STATE(3074), 1, + STATE(3139), 1, sym_comment, - ACTIONS(2365), 47, + ACTIONS(2405), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316511,8 +325987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -316540,16 +326016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103320] = 4, - ACTIONS(3), 1, + [107853] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3075), 1, + STATE(3140), 1, sym_comment, - ACTIONS(1963), 16, + ACTIONS(1721), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -316562,7 +326037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1965), 32, + ACTIONS(1723), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316580,6 +326055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -316595,53 +326071,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103379] = 4, + [107912] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3076), 1, + ACTIONS(2334), 1, + sym__entry_separator, + STATE(3141), 1, sym_comment, - ACTIONS(2301), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2303), 32, + ACTIONS(2332), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316650,32 +326125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103438] = 6, + aux_sym__unquoted_in_list_token1, + [107971] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6251), 1, - anon_sym_DOT, - ACTIONS(6253), 1, - aux_sym__immediate_decimal_token2, - STATE(3077), 1, + ACTIONS(2354), 1, + sym__entry_separator, + STATE(3142), 1, sym_comment, - ACTIONS(1518), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1520), 31, + ACTIONS(2352), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316688,17 +326146,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316707,53 +326180,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103501] = 4, + aux_sym__unquoted_in_list_token1, + [108030] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3078), 1, + ACTIONS(2411), 1, + sym__entry_separator, + STATE(3143), 1, sym_comment, - ACTIONS(3170), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3166), 32, + ACTIONS(2409), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316762,19 +326235,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103560] = 4, + aux_sym__unquoted_in_list_token1, + [108089] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3079), 1, + ACTIONS(2415), 1, + sym__entry_separator, + STATE(3144), 1, sym_comment, - ACTIONS(916), 16, + ACTIONS(2413), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316783,8 +326282,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(918), 32, + [108148] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + sym__entry_separator, + STATE(3145), 1, + sym_comment, + ACTIONS(1747), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316797,18 +326311,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316817,16 +326345,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103619] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [108207] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3080), 1, + ACTIONS(6147), 1, + anon_sym_DOT, + ACTIONS(6149), 1, + aux_sym__immediate_decimal_token2, + STATE(3146), 1, sym_comment, - ACTIONS(2305), 16, - anon_sym__, + ACTIONS(1473), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1475), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108270] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6087), 1, + aux_sym__immediate_decimal_token2, + STATE(3147), 1, + sym_comment, + ACTIONS(1589), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -316838,25 +326424,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2307), 32, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -316872,14 +326459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103678] = 4, - ACTIONS(121), 1, + [108331] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(1941), 1, sym__entry_separator, - STATE(3081), 1, + STATE(3148), 1, sym_comment, - ACTIONS(1871), 47, + ACTIONS(1935), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316898,8 +326485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -316927,14 +326514,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103737] = 4, - ACTIONS(121), 1, + [108390] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(1537), 1, sym__entry_separator, - STATE(3082), 1, + ACTIONS(5635), 1, + aux_sym__unquoted_in_list_token2, + STATE(3149), 1, sym_comment, - ACTIONS(928), 47, + ACTIONS(1525), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316948,13 +326537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -316982,52 +326570,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103796] = 4, - ACTIONS(121), 1, + [108451] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, - sym__entry_separator, - STATE(3083), 1, + STATE(3150), 1, sym_comment, - ACTIONS(1429), 47, + ACTIONS(1935), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1941), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317036,20 +326625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103855] = 6, - ACTIONS(3), 1, + [108510] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6255), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6257), 1, - aux_sym__unquoted_in_list_token2, - STATE(3084), 1, + ACTIONS(6153), 1, + anon_sym_COMMA, + STATE(3151), 1, sym_comment, - ACTIONS(5381), 15, + ACTIONS(6155), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -317061,24 +326647,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5395), 31, + aux_sym_unquoted_token1, + ACTIONS(6151), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -317094,16 +326681,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103918] = 4, - ACTIONS(3), 1, + [108571] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3085), 1, + ACTIONS(6159), 1, + anon_sym_COMMA, + STATE(3152), 1, sym_comment, - ACTIONS(2309), 16, + ACTIONS(6161), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -317116,7 +326704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2311), 32, + ACTIONS(6157), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317126,7 +326714,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -317134,6 +326721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -317149,53 +326737,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103977] = 4, + [108632] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3086), 1, + ACTIONS(2342), 1, + sym__entry_separator, + STATE(3153), 1, sym_comment, - ACTIONS(1879), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1885), 32, + ACTIONS(2340), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317204,15 +326791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104036] = 4, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [108691] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3087), 1, - sym_comment, - ACTIONS(5395), 2, - anon_sym_LPAREN2, + ACTIONS(1857), 1, sym__entry_separator, - ACTIONS(5381), 46, + STATE(3154), 1, + sym_comment, + ACTIONS(1855), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317225,13 +326812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -317259,25 +326847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104095] = 6, - ACTIONS(3), 1, + [108750] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6259), 1, - anon_sym_DOT, - ACTIONS(6261), 1, + ACTIONS(6163), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6165), 1, aux_sym__immediate_decimal_token2, - STATE(3088), 1, + STATE(3155), 1, sym_comment, - ACTIONS(1398), 8, + ACTIONS(1481), 2, aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1400), 38, + ACTIONS(1483), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -317290,100 +326872,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [104158] = 4, + [108813] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3089), 1, + ACTIONS(1798), 1, + sym__entry_separator, + STATE(3156), 1, sym_comment, - ACTIONS(1587), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1595), 32, + ACTIONS(1796), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [104217] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3090), 1, - sym_comment, - ACTIONS(920), 16, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317392,32 +326950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(922), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317426,108 +326958,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104276] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [108872] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3091), 1, + ACTIONS(6167), 1, + aux_sym__immediate_decimal_token2, + STATE(3157), 1, sym_comment, - ACTIONS(1947), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1953), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1519), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1521), 45, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [104335] = 4, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108933] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6169), 1, + anon_sym_DOT, + ACTIONS(6171), 1, + aux_sym__immediate_decimal_token2, + STATE(3158), 1, + sym_comment, + ACTIONS(1473), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1475), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108996] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3092), 1, + ACTIONS(2361), 1, + sym__entry_separator, + STATE(3159), 1, sym_comment, - ACTIONS(2313), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2315), 32, + ACTIONS(2359), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317536,16 +327126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104394] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [109055] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3093), 1, + ACTIONS(6173), 1, + anon_sym_DOT, + ACTIONS(6175), 1, + aux_sym__immediate_decimal_token2, + STATE(3160), 1, sym_comment, - ACTIONS(2317), 16, - anon_sym__, + ACTIONS(1589), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -317557,25 +327150,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2319), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -317591,14 +327184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104453] = 4, - ACTIONS(121), 1, + [109118] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2327), 1, + ACTIONS(2346), 1, sym__entry_separator, - STATE(3094), 1, + STATE(3161), 1, sym_comment, - ACTIONS(2325), 47, + ACTIONS(2344), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317617,8 +327210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -317646,16 +327239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104512] = 4, - ACTIONS(3), 1, + [109177] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3095), 1, + STATE(3162), 1, sym_comment, - ACTIONS(1959), 16, + ACTIONS(1953), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -317668,7 +327260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1961), 32, + ACTIONS(1955), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317686,6 +327278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -317701,16 +327294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104571] = 4, - ACTIONS(3), 1, + [109236] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(3163), 1, sym_comment, - ACTIONS(1470), 17, + ACTIONS(1943), 15, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -317722,25 +327314,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 31, + aux_sym_unquoted_token1, + ACTIONS(1945), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -317756,16 +327349,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104630] = 5, - ACTIONS(121), 1, + [109295] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, + ACTIONS(1525), 1, + sym__newline, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(2949), 1, + anon_sym_DOT_DOT2, + ACTIONS(4889), 1, + aux_sym_unquoted_token2, + ACTIONS(6177), 1, + sym_filesize_unit, + ACTIONS(6179), 1, + sym_duration_unit, + STATE(3164), 1, + sym_comment, + STATE(7561), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2951), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [109368] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2403), 1, sym__entry_separator, - ACTIONS(5397), 1, - aux_sym__unquoted_in_list_token6, - STATE(3097), 1, + STATE(3165), 1, sym_comment, - ACTIONS(1429), 46, + ACTIONS(2401), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317778,13 +327431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -317812,31 +327466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104691] = 5, + [109427] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3098), 1, + ACTIONS(2072), 1, + sym__entry_separator, + STATE(3166), 1, sym_comment, - ACTIONS(1427), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1923), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1927), 31, + ACTIONS(2066), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317849,17 +327486,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317868,53 +327520,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104752] = 4, + aux_sym__unquoted_in_list_token1, + [109486] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3099), 1, + ACTIONS(1978), 1, + sym__entry_separator, + STATE(3167), 1, sym_comment, - ACTIONS(2285), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2287), 32, + ACTIONS(1972), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317923,30 +327575,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104811] = 4, + aux_sym__unquoted_in_list_token1, + [109545] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(2949), 1, + anon_sym_DOT_DOT2, + ACTIONS(4920), 1, + aux_sym_unquoted_token2, + ACTIONS(6181), 1, + sym_filesize_unit, + ACTIONS(6183), 1, + sym_duration_unit, + STATE(3168), 1, + sym_comment, + STATE(7583), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2951), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [109616] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3100), 1, + ACTIONS(1966), 1, + sym__entry_separator, + STATE(3169), 1, sym_comment, - ACTIONS(1608), 17, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1610), 31, + ACTIONS(1960), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317959,17 +327657,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317978,18 +327691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104870] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [109675] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3170), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 15, + ACTIONS(2401), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318001,24 +327712,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1595), 31, + aux_sym_unquoted_token1, + ACTIONS(2403), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318034,15 +327747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104931] = 4, - ACTIONS(121), 1, + [109734] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3102), 1, - sym_comment, - ACTIONS(6169), 2, - anon_sym_LPAREN2, + ACTIONS(2338), 1, sym__entry_separator, - ACTIONS(6167), 46, + STATE(3171), 1, + sym_comment, + ACTIONS(2336), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318055,13 +327767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318089,16 +327802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104990] = 4, - ACTIONS(3), 1, + [109793] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3103), 1, + STATE(3172), 1, sym_comment, - ACTIONS(2281), 16, + ACTIONS(1709), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318111,7 +327823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2283), 32, + ACTIONS(1717), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318129,6 +327841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318144,18 +327857,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105049] = 5, - ACTIONS(3), 1, + [109852] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3104), 1, + STATE(3173), 1, sym_comment, - ACTIONS(1943), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1939), 15, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109911] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6185), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6187), 1, + aux_sym__immediate_decimal_token2, + STATE(3174), 1, + sym_comment, + ACTIONS(1569), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318168,7 +327936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1945), 31, + ACTIONS(1571), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318185,6 +327953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318200,16 +327969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105110] = 4, - ACTIONS(3), 1, + [109974] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3105), 1, + STATE(3175), 1, sym_comment, - ACTIONS(1470), 16, + ACTIONS(2066), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318222,7 +327990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1472), 32, + ACTIONS(2072), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318240,6 +328008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318255,73 +328024,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105169] = 4, - ACTIONS(3), 1, + [110033] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3106), 1, + ACTIONS(6107), 1, + aux_sym__immediate_decimal_token2, + STATE(3176), 1, sym_comment, - ACTIONS(912), 16, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(914), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [105228] = 5, - ACTIONS(3), 1, + ACTIONS(1473), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1475), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110094] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6263), 1, - anon_sym_QMARK2, - STATE(3107), 1, + STATE(3177), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110153] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3178), 1, sym_comment, - ACTIONS(900), 16, + ACTIONS(966), 15, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318334,7 +328156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(902), 31, + ACTIONS(968), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318347,10 +328169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318366,16 +328190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105289] = 4, - ACTIONS(3), 1, + [110212] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3108), 1, + STATE(3179), 1, sym_comment, - ACTIONS(1535), 16, + ACTIONS(1972), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318388,7 +328211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1537), 32, + ACTIONS(1978), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318406,6 +328229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318421,14 +328245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105348] = 4, - ACTIONS(121), 1, + [110271] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2331), 1, - sym__entry_separator, - STATE(3109), 1, + STATE(3180), 1, sym_comment, - ACTIONS(2329), 47, + ACTIONS(6191), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6189), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318441,14 +328266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318476,16 +328300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105407] = 4, - ACTIONS(3), 1, + [110330] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3110), 1, + STATE(3181), 1, sym_comment, - ACTIONS(1923), 16, + ACTIONS(2123), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318498,7 +328321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1927), 32, + ACTIONS(2127), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318516,6 +328339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318531,16 +328355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105466] = 4, - ACTIONS(3), 1, + [110389] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3111), 1, + STATE(3182), 1, sym_comment, - ACTIONS(1863), 16, - anon_sym__, + ACTIONS(976), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318552,25 +328375,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1869), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(978), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318586,34 +328410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105525] = 10, - ACTIONS(3), 1, + [110448] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4781), 1, - aux_sym_unquoted_token4, - ACTIONS(4842), 1, - anon_sym_DOT, - ACTIONS(4844), 1, - aux_sym_unquoted_token6, - STATE(3112), 1, - sym_comment, - STATE(5940), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, + ACTIONS(6193), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 35, - ts_builtin_sym_end, + ACTIONS(6195), 1, + aux_sym__immediate_decimal_token2, + STATE(3183), 1, + sym_comment, + ACTIONS(1481), 3, + aux_sym_cmd_identifier_token41, sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1483), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -318624,58 +328434,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [105596] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2267), 1, - sym__entry_separator, - ACTIONS(6265), 1, - aux_sym__immediate_decimal_token1, - STATE(3113), 1, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110511] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2103), 1, + aux_sym__unquoted_in_list_token4, + STATE(3184), 1, sym_comment, - ACTIONS(2263), 46, + ACTIONS(2107), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2105), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318683,9 +328505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318703,18 +328522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105657] = 5, - ACTIONS(3), 1, + [110571] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6267), 1, - anon_sym_QMARK2, - STATE(3114), 1, + STATE(3185), 1, sym_comment, - ACTIONS(906), 16, + ACTIONS(1273), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318727,23 +328543,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(908), 31, + ACTIONS(1277), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318751,6 +328566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318759,73 +328576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105718] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6269), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6271), 1, - aux_sym__immediate_decimal_token2, - STATE(3115), 1, - sym_comment, - ACTIONS(1368), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1370), 38, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [105781] = 4, - ACTIONS(3), 1, + [110629] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3116), 1, + STATE(3186), 1, sym_comment, - ACTIONS(2289), 16, + ACTIONS(6199), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318838,7 +328597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2291), 32, + ACTIONS(6197), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318848,7 +328607,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -318856,6 +328614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318871,16 +328630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105840] = 4, - ACTIONS(3), 1, + [110687] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3117), 1, + STATE(3187), 1, sym_comment, - ACTIONS(1871), 16, + ACTIONS(6203), 15, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -318893,7 +328651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1877), 32, + ACTIONS(6201), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318903,7 +328661,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -318911,6 +328668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318926,14 +328684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105899] = 4, - ACTIONS(121), 1, + [110745] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(926), 1, + ACTIONS(1772), 1, sym__entry_separator, - STATE(3118), 1, + ACTIONS(6207), 1, + anon_sym_RBRACK, + STATE(3188), 1, sym_comment, - ACTIONS(924), 47, + ACTIONS(6205), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318941,19 +328701,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -318981,52 +328739,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105958] = 4, - ACTIONS(121), 1, + [110805] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(934), 1, - sym__entry_separator, - STATE(3119), 1, + STATE(3189), 1, sym_comment, - ACTIONS(932), 47, + ACTIONS(6212), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(6210), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319035,53 +328793,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106017] = 4, - ACTIONS(121), 1, + [110863] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2283), 1, - sym__entry_separator, - STATE(3120), 1, + STATE(3190), 1, sym_comment, - ACTIONS(2281), 47, + ACTIONS(6216), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(6214), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319090,15 +328847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106076] = 4, - ACTIONS(121), 1, + [110921] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(1955), 1, sym__entry_separator, - STATE(3121), 1, + STATE(3191), 1, sym_comment, - ACTIONS(2369), 47, + ACTIONS(1953), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319111,14 +328867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -319146,69 +328901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106135] = 4, + [110979] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3122), 1, - sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [106194] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2287), 1, + ACTIONS(1945), 1, sym__entry_separator, - STATE(3123), 1, + STATE(3192), 1, sym_comment, - ACTIONS(2285), 47, + ACTIONS(1943), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319221,14 +328921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -319256,71 +328955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106253] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3124), 1, - sym_comment, - ACTIONS(1570), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1580), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [106312] = 4, - ACTIONS(3), 1, + [111037] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3125), 1, + ACTIONS(5786), 1, + aux_sym__unquoted_in_list_token2, + STATE(3193), 1, sym_comment, - ACTIONS(1535), 17, + ACTIONS(1525), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -319333,8 +328977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 31, + ACTIONS(1537), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319351,6 +328994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -319366,14 +329010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106371] = 4, - ACTIONS(121), 1, + [111097] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1869), 1, + ACTIONS(1023), 1, sym__entry_separator, - STATE(3126), 1, + STATE(3194), 1, sym_comment, - ACTIONS(1863), 47, + ACTIONS(1021), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319386,14 +329030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -319421,146 +329064,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106430] = 5, - ACTIONS(3), 1, + [111155] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6275), 1, - anon_sym_COMMA, - STATE(3127), 1, + STATE(3195), 1, sym_comment, - ACTIONS(6277), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6273), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 45, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [106491] = 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111213] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6281), 1, - anon_sym_COMMA, - STATE(3128), 1, + ACTIONS(2095), 1, + aux_sym__unquoted_in_list_token4, + STATE(3196), 1, sym_comment, - ACTIONS(6283), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6279), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(2093), 8, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_COMMA, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [106552] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2291), 1, - sym__entry_separator, - STATE(3129), 1, - sym_comment, - ACTIONS(2289), 47, + ACTIONS(2089), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -319568,9 +329156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319588,34 +329173,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106611] = 4, - ACTIONS(121), 1, + [111273] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2396), 1, - sym__entry_separator, - STATE(3130), 1, + STATE(3197), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111331] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2103), 1, + aux_sym__unquoted_in_list_token4, + STATE(3198), 1, sym_comment, - ACTIONS(2394), 47, + ACTIONS(2101), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2097), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -319623,9 +329265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319643,125 +329282,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106670] = 5, - ACTIONS(3), 1, + [111391] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3131), 1, + STATE(3199), 1, sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1570), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1580), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [106731] = 4, - ACTIONS(3), 1, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111449] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3200), 1, sym_comment, - ACTIONS(936), 16, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(938), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1585), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 45, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [106790] = 5, - ACTIONS(121), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111507] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token7, - STATE(3133), 1, + STATE(3201), 1, sym_comment, - ACTIONS(2081), 8, + ACTIONS(2133), 8, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319770,7 +329404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2077), 38, + ACTIONS(2131), 39, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319783,8 +329417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -319809,17 +329443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106850] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token4, + [111565] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6253), 1, - aux_sym__immediate_decimal_token2, - STATE(3134), 1, + STATE(3202), 1, sym_comment, - ACTIONS(1518), 15, + ACTIONS(1589), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -319832,7 +329464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1520), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319849,6 +329482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -319864,71 +329498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106910] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6261), 1, - aux_sym__immediate_decimal_token2, - STATE(3135), 1, - sym_comment, - ACTIONS(1398), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1400), 38, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [106970] = 4, - ACTIONS(3), 1, + [111623] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3203), 1, sym_comment, - ACTIONS(1216), 16, - anon_sym__, + ACTIONS(1569), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -319940,24 +329517,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1220), 31, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -319973,14 +329552,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107028] = 4, - ACTIONS(121), 1, + [111681] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1965), 1, - sym__entry_separator, - STATE(3137), 1, + STATE(3204), 1, sym_comment, - ACTIONS(1963), 46, + ACTIONS(1648), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319993,31 +329586,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320026,15 +329606,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107086] = 4, - ACTIONS(121), 1, + [111739] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1472), 1, - sym__entry_separator, - STATE(3138), 1, + STATE(3205), 1, sym_comment, - ACTIONS(1470), 46, + ACTIONS(1721), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320047,31 +329640,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320080,18 +329660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107144] = 5, - ACTIONS(3), 1, + [111797] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6249), 1, - aux_sym__immediate_decimal_token2, - STATE(3139), 1, + STATE(3206), 1, sym_comment, - ACTIONS(1470), 15, + ACTIONS(994), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -320104,7 +329681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1472), 31, + ACTIONS(996), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320121,6 +329698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -320136,14 +329714,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107204] = 4, - ACTIONS(121), 1, + [111855] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(914), 1, - sym__entry_separator, - STATE(3140), 1, + STATE(3207), 1, sym_comment, - ACTIONS(912), 46, + ACTIONS(986), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(988), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320156,31 +329748,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320189,17 +329768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107262] = 4, - ACTIONS(3), 1, + [111913] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3208), 1, sym_comment, - ACTIONS(6287), 16, - anon_sym__, + ACTIONS(990), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -320211,24 +329788,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6285), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(992), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -320244,23 +329822,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107320] = 5, - ACTIONS(3), 1, + [111971] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6271), 1, + ACTIONS(6149), 1, aux_sym__immediate_decimal_token2, - STATE(3142), 1, + STATE(3209), 1, sym_comment, - ACTIONS(1368), 8, + ACTIONS(1473), 2, aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1370), 38, + ACTIONS(1475), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -320273,110 +329845,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [107380] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1537), 1, - sym__entry_separator, - STATE(3143), 1, - sym_comment, - ACTIONS(1535), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107438] = 9, - ACTIONS(3), 1, + [112031] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4781), 1, - aux_sym_unquoted_token5, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(3144), 1, + ACTIONS(6218), 1, + aux_sym__immediate_decimal_token2, + STATE(3210), 1, sym_comment, - STATE(7407), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 35, + ACTIONS(1519), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1521), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -320389,40 +329900,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [107506] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6289), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112091] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6171), 1, aux_sym__immediate_decimal_token2, - STATE(3145), 1, + STATE(3211), 1, + sym_comment, + ACTIONS(1473), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1475), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112151] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6220), 1, + anon_sym_LBRACK2, + STATE(3212), 1, sym_comment, - ACTIONS(1535), 15, + ACTIONS(2235), 15, + anon_sym_LBRACK, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -320435,14 +330010,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1537), 31, + ACTIONS(2239), 31, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -320452,6 +330026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -320467,127 +330042,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107566] = 4, - ACTIONS(121), 1, + [112211] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6291), 1, - aux_sym__unquoted_in_list_token3, - STATE(3146), 1, + ACTIONS(2083), 1, + aux_sym__unquoted_in_list_token4, + STATE(3213), 1, sym_comment, - ACTIONS(6167), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(6048), 8, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107624] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3147), 1, - sym_comment, - ACTIONS(924), 16, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(926), 31, + ACTIONS(5964), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [107682] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3148), 1, - sym_comment, - ACTIONS(932), 16, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320596,31 +330088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(934), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320629,17 +330096,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107740] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [112271] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5535), 1, - aux_sym__unquoted_in_list_token6, - STATE(3149), 1, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token2, + STATE(3214), 1, + sym_comment, + ACTIONS(1519), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1521), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112331] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3215), 1, sym_comment, - ACTIONS(1429), 15, + ACTIONS(1648), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -320652,7 +330174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1441), 31, + ACTIONS(1650), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320669,6 +330191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -320684,14 +330207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107800] = 4, - ACTIONS(121), 1, + [112391] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1610), 1, + ACTIONS(968), 1, sym__entry_separator, - STATE(3150), 1, + STATE(3216), 1, sym_comment, - ACTIONS(1608), 46, + ACTIONS(966), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320709,8 +330232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -320738,70 +330261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107858] = 4, + [112449] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3151), 1, - sym_comment, - ACTIONS(1216), 16, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1220), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [107916] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1735), 1, + ACTIONS(978), 1, sym__entry_separator, - ACTIONS(6295), 1, - anon_sym_RBRACK, - STATE(3152), 1, + STATE(3217), 1, sym_comment, - ACTIONS(6293), 45, + ACTIONS(976), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320809,6 +330276,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -320818,8 +330286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -320847,14 +330315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107976] = 4, - ACTIONS(121), 1, + [112507] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(922), 1, + ACTIONS(964), 1, sym__entry_separator, - STATE(3153), 1, + STATE(3218), 1, sym_comment, - ACTIONS(920), 46, + ACTIONS(962), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320872,8 +330340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -320901,24 +330369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108034] = 5, - ACTIONS(3), 1, + [112565] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym__immediate_decimal_token2, - STATE(3154), 1, + STATE(3219), 1, sym_comment, - ACTIONS(1376), 8, + ACTIONS(1473), 2, aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1378), 38, - ts_builtin_sym_end, + ACTIONS(1475), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320930,53 +330389,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [108094] = 8, - ACTIONS(3), 1, + [112623] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4902), 1, + STATE(3220), 1, + sym_comment, + ACTIONS(1481), 2, + aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - ACTIONS(6300), 1, + ACTIONS(1483), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6302), 1, sym_duration_unit, - STATE(3155), 1, + [112681] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3221), 1, sym_comment, - ACTIONS(4904), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 37, + ACTIONS(1519), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1521), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320989,46 +330498,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [108160] = 4, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112739] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(3222), 1, sym_comment, - ACTIONS(1368), 8, + ACTIONS(1585), 2, aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1370), 39, + ACTIONS(1587), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -321041,57 +330552,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [108218] = 5, + [112797] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6304), 1, - aux_sym__immediate_decimal_token1, - STATE(3157), 1, + ACTIONS(1591), 1, + sym__entry_separator, + STATE(3223), 1, sym_comment, - ACTIONS(2263), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2267), 31, + ACTIONS(1589), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321104,17 +330605,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321123,19 +330638,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108278] = 4, + aux_sym__unquoted_in_list_token1, + [112855] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_DOT_DOT2, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6226), 1, + sym_filesize_unit, + ACTIONS(6228), 1, + sym_duration_unit, + STATE(3224), 1, + sym_comment, + ACTIONS(4936), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [112921] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3158), 1, + ACTIONS(1571), 1, + sym__entry_separator, + STATE(3225), 1, sym_comment, - ACTIONS(928), 16, + ACTIONS(1569), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321144,8 +330742,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(930), 31, + [112979] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1650), 1, + sym__entry_separator, + STATE(3226), 1, + sym_comment, + ACTIONS(1648), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321158,17 +330771,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321177,16 +330804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108336] = 5, - ACTIONS(121), 1, + aux_sym__unquoted_in_list_token1, + [113037] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_RBRACK, - ACTIONS(6078), 1, + ACTIONS(1723), 1, sym__entry_separator, - STATE(3159), 1, + STATE(3227), 1, sym_comment, - ACTIONS(6070), 45, + ACTIONS(1721), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321194,6 +330820,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -321203,8 +330830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -321232,18 +330859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108396] = 5, - ACTIONS(3), 1, + [113095] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6306), 1, - anon_sym_LBRACK2, - STATE(3160), 1, + STATE(3228), 1, sym_comment, - ACTIONS(2178), 16, - anon_sym_LBRACK, + ACTIONS(1273), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -321255,23 +330879,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2182), 30, + aux_sym_unquoted_token1, + ACTIONS(1277), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, + sym__newline, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -321287,52 +330913,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108456] = 5, - ACTIONS(121), 1, + [113153] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(950), 1, - sym__entry_separator, - ACTIONS(6082), 1, - anon_sym_RBRACK, - STATE(3161), 1, + STATE(3229), 1, + sym_comment, + ACTIONS(1473), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113211] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3230), 1, + sym_comment, + ACTIONS(1481), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113269] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3231), 1, + sym_comment, + ACTIONS(1519), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113327] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3232), 1, + sym_comment, + ACTIONS(1585), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113385] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3233), 1, sym_comment, - ACTIONS(6080), 45, + ACTIONS(6232), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(6230), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321341,17 +331183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108516] = 4, - ACTIONS(3), 1, + [113443] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3162), 1, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + STATE(3234), 1, sym_comment, - ACTIONS(6310), 16, - anon_sym__, + ACTIONS(1690), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -321363,24 +331204,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6308), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1698), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -321396,14 +331238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108574] = 4, - ACTIONS(121), 1, + [113503] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(918), 1, + ACTIONS(5942), 1, + anon_sym_RBRACK, + ACTIONS(5948), 1, sym__entry_separator, - STATE(3163), 1, + STATE(3235), 1, sym_comment, - ACTIONS(916), 46, + ACTIONS(5940), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321411,7 +331255,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -321421,8 +331264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -321450,14 +331293,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108632] = 4, - ACTIONS(121), 1, + [113563] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(938), 1, - sym__entry_separator, - STATE(3164), 1, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + STATE(3236), 1, sym_comment, - ACTIONS(936), 46, + ACTIONS(2085), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2087), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321470,31 +331328,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321503,97 +331348,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108690] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3165), 1, - sym_comment, - ACTIONS(1376), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1378), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [108748] = 4, - ACTIONS(121), 1, + [113623] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3166), 1, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + STATE(3237), 1, sym_comment, - ACTIONS(2075), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2073), 39, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + ACTIONS(1709), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321602,62 +331369,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token7, - [108806] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym__unquoted_in_list_token7, - STATE(3167), 1, - sym_comment, - ACTIONS(2159), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2155), 38, + ACTIONS(1717), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321666,15 +331403,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108866] = 4, - ACTIONS(121), 1, + [113683] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1008), 1, sym__entry_separator, - STATE(3168), 1, + ACTIONS(5966), 1, + anon_sym_RBRACK, + STATE(3238), 1, sym_comment, - ACTIONS(1959), 46, + ACTIONS(5964), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321682,7 +331420,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -321692,8 +331429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -321721,52 +331458,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108924] = 5, - ACTIONS(121), 1, + [113743] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym__unquoted_in_list_token7, - STATE(3169), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + STATE(3239), 1, sym_comment, - ACTIONS(6162), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6080), 38, + ACTIONS(2117), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2121), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321775,76 +331513,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108984] = 9, - ACTIONS(3), 1, + [113803] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4902), 1, - anon_sym_DOT_DOT2, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6312), 1, - sym_filesize_unit, - ACTIONS(6314), 1, - sym_duration_unit, - STATE(3170), 1, - sym_comment, - ACTIONS(4904), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [109052] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3171), 1, + ACTIONS(2129), 1, + aux_sym__unquoted_in_list_token2, + STATE(3240), 1, sym_comment, - ACTIONS(6318), 16, - anon_sym__, + ACTIONS(2123), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -321856,24 +331534,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6316), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(2127), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -321889,16 +331568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109110] = 4, - ACTIONS(3), 1, + [113863] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3172), 1, + ACTIONS(6175), 1, + aux_sym__immediate_decimal_token2, + STATE(3241), 1, sym_comment, - ACTIONS(6322), 16, - anon_sym__, + ACTIONS(1589), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -321910,24 +331589,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6320), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -321943,16 +331623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109168] = 4, - ACTIONS(3), 1, + [113923] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3173), 1, + STATE(3242), 1, sym_comment, - ACTIONS(6326), 16, - anon_sym__, + ACTIONS(1747), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -321964,24 +331642,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6324), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1749), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -321997,106 +331676,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109226] = 4, - ACTIONS(3), 1, + [113980] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3174), 1, - sym_comment, - ACTIONS(1504), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1506), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [109284] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym__unquoted_in_list_token7, - STATE(3175), 1, + STATE(3243), 1, sym_comment, - ACTIONS(2165), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2163), 38, + ACTIONS(1021), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1023), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322105,16 +331729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [109344] = 4, - ACTIONS(3), 1, + [114037] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3176), 1, + STATE(3244), 1, sym_comment, - ACTIONS(1879), 15, + ACTIONS(1972), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322127,7 +331749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1885), 31, + ACTIONS(1978), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322144,6 +331766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322159,73 +331782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109401] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5026), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(5028), 1, - anon_sym_DOT_DOT2, - ACTIONS(6328), 1, - sym_filesize_unit, - ACTIONS(6330), 1, - sym_duration_unit, - STATE(3177), 1, - sym_comment, - ACTIONS(5030), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [109468] = 4, - ACTIONS(3), 1, + [114094] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3178), 1, + STATE(3245), 1, sym_comment, - ACTIONS(1535), 15, + ACTIONS(1960), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322238,7 +331802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1537), 31, + ACTIONS(1966), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322255,6 +331819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322270,15 +331835,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109525] = 4, - ACTIONS(3), 1, + [114151] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3179), 1, + ACTIONS(2097), 1, + anon_sym_DASH, + STATE(3246), 1, + sym_comment, + ACTIONS(2101), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [114208] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3247), 1, sym_comment, - ACTIONS(1963), 15, + ACTIONS(2352), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322291,7 +331908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1965), 31, + ACTIONS(2354), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322308,6 +331925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322323,15 +331941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109582] = 4, - ACTIONS(3), 1, + [114265] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3180), 1, + STATE(3248), 1, sym_comment, - ACTIONS(6334), 15, + ACTIONS(1525), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322344,7 +331961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6332), 31, + ACTIONS(1537), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322361,6 +331978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322376,15 +331994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109639] = 4, - ACTIONS(3), 1, + [114322] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3181), 1, + STATE(3249), 1, sym_comment, - ACTIONS(6338), 15, + ACTIONS(1935), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322397,7 +332014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6336), 31, + ACTIONS(1941), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322414,6 +332031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322429,15 +332047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109696] = 4, - ACTIONS(3), 1, + [114379] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3250), 1, sym_comment, - ACTIONS(6293), 15, + ACTIONS(1855), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322450,7 +332067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6340), 31, + ACTIONS(1857), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322467,6 +332084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322482,15 +332100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109753] = 4, - ACTIONS(3), 1, + [114436] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3183), 1, + STATE(3251), 1, sym_comment, - ACTIONS(6167), 15, + ACTIONS(1796), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322503,7 +332120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6169), 31, + ACTIONS(1798), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322520,6 +332137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322535,15 +332153,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109810] = 4, - ACTIONS(3), 1, + [114493] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3184), 1, + STATE(3252), 1, sym_comment, - ACTIONS(1608), 15, + ACTIONS(2359), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322556,7 +332173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1610), 31, + ACTIONS(2361), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322573,6 +332190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322588,15 +332206,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109867] = 4, - ACTIONS(3), 1, + [114550] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3185), 1, + STATE(3253), 1, sym_comment, - ACTIONS(2313), 15, + ACTIONS(1741), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322609,7 +332226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2315), 31, + ACTIONS(1745), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322626,6 +332243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322641,15 +332259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109924] = 4, - ACTIONS(3), 1, + [114607] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3186), 1, + STATE(3254), 1, sym_comment, - ACTIONS(2317), 15, + ACTIONS(2363), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322662,7 +332279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2319), 31, + ACTIONS(2365), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322679,6 +332296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322694,15 +332312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109981] = 4, - ACTIONS(3), 1, + [114664] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3187), 1, + STATE(3255), 1, sym_comment, - ACTIONS(2345), 15, + ACTIONS(2367), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322715,7 +332332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2347), 31, + ACTIONS(2369), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322732,6 +332349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322747,15 +332365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110038] = 4, - ACTIONS(3), 1, + [114721] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3188), 1, + STATE(3256), 1, sym_comment, - ACTIONS(1804), 15, + ACTIONS(1899), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322768,7 +332385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1806), 31, + ACTIONS(1901), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322785,6 +332402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322800,15 +332418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110095] = 4, - ACTIONS(3), 1, + [114778] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3189), 1, + STATE(3257), 1, sym_comment, - ACTIONS(1959), 15, + ACTIONS(1835), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322821,7 +332438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1961), 31, + ACTIONS(1837), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322838,6 +332455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322853,15 +332471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110152] = 4, - ACTIONS(3), 1, + [114835] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3190), 1, + STATE(3258), 1, sym_comment, - ACTIONS(5381), 15, + ACTIONS(2371), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322874,7 +332491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5395), 31, + ACTIONS(2373), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322891,6 +332508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322906,15 +332524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110209] = 4, - ACTIONS(3), 1, + [114892] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3191), 1, + STATE(3259), 1, sym_comment, - ACTIONS(6080), 15, + ACTIONS(2379), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -322927,7 +332544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6162), 31, + ACTIONS(2381), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322944,6 +332561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -322959,68 +332577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110266] = 4, - ACTIONS(3), 1, + [114949] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3192), 1, - sym_comment, - ACTIONS(1376), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1378), 38, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [110323] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3193), 1, + STATE(3260), 1, sym_comment, - ACTIONS(2301), 15, + ACTIONS(1839), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323033,7 +332597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2303), 31, + ACTIONS(1841), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323050,6 +332614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323065,15 +332630,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110380] = 4, - ACTIONS(3), 1, + [115006] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3194), 1, + STATE(3261), 1, + sym_comment, + ACTIONS(1473), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1475), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115063] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3262), 1, + sym_comment, + ACTIONS(1481), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1483), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115120] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3263), 1, sym_comment, - ACTIONS(2349), 15, + ACTIONS(2405), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323086,7 +332756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2351), 31, + ACTIONS(2407), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323103,6 +332773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323118,15 +332789,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110437] = 4, - ACTIONS(3), 1, + [115177] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3195), 1, + STATE(3264), 1, sym_comment, - ACTIONS(6344), 15, + ACTIONS(2383), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323139,7 +332809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6342), 31, + ACTIONS(2385), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323156,6 +332826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323171,21 +332842,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110494] = 4, - ACTIONS(3), 1, + [115234] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3196), 1, + STATE(3265), 1, sym_comment, - ACTIONS(1504), 8, + ACTIONS(1519), 2, aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_DOT_DOT2, + ACTIONS(1521), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(1506), 38, + sym_duration_unit, + [115291] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3266), 1, + sym_comment, + ACTIONS(1585), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1587), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323198,43 +332916,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [110551] = 5, - ACTIONS(3), 1, + [115348] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6348), 1, - anon_sym_COMMA, - STATE(3197), 1, + STATE(3267), 1, sym_comment, - ACTIONS(6183), 15, + ACTIONS(2409), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323247,7 +332968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6346), 30, + ACTIONS(2411), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323257,12 +332978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323278,15 +333001,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110610] = 4, - ACTIONS(3), 1, + [115405] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3198), 1, + STATE(3268), 1, sym_comment, - ACTIONS(2281), 15, + ACTIONS(2413), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323299,7 +333021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2283), 31, + ACTIONS(2415), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323316,6 +333038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323331,15 +333054,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110667] = 4, - ACTIONS(3), 1, + [115462] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(3269), 1, + sym_comment, + ACTIONS(1473), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1475), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115519] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3270), 1, sym_comment, - ACTIONS(2361), 15, + ACTIONS(2326), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323352,7 +333127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2363), 31, + ACTIONS(2328), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323369,6 +333144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323384,15 +333160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110724] = 4, - ACTIONS(3), 1, + [115576] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3200), 1, + STATE(3271), 1, sym_comment, - ACTIONS(1816), 15, + ACTIONS(1589), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323405,7 +333180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1818), 31, + ACTIONS(1591), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323422,6 +333197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323437,15 +333213,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110781] = 4, - ACTIONS(3), 1, + [115633] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3201), 1, + STATE(3272), 1, sym_comment, - ACTIONS(1947), 15, + ACTIONS(1481), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1483), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115690] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3273), 1, + sym_comment, + ACTIONS(5940), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323458,7 +333286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1953), 31, + ACTIONS(6042), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323475,6 +333303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323490,15 +333319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110838] = 4, - ACTIONS(3), 1, + [115747] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3202), 1, + STATE(3274), 1, sym_comment, - ACTIONS(2277), 15, + ACTIONS(1569), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323511,7 +333339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2279), 31, + ACTIONS(1571), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323528,6 +333356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323543,15 +333372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110895] = 4, - ACTIONS(3), 1, + [115804] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3203), 1, + STATE(3275), 1, sym_comment, - ACTIONS(2365), 15, + ACTIONS(1953), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323564,7 +333392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2367), 31, + ACTIONS(1955), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323581,6 +333409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323596,15 +333425,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110952] = 4, - ACTIONS(3), 1, + [115861] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3204), 1, + STATE(3276), 1, + sym_comment, + ACTIONS(1519), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1521), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115918] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3277), 1, sym_comment, - ACTIONS(6344), 15, + ACTIONS(6236), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323617,7 +333498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6342), 31, + ACTIONS(6234), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323634,6 +333515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323649,15 +333531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111009] = 4, - ACTIONS(3), 1, + [115975] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3205), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6352), 15, + ACTIONS(2417), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323670,7 +333551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6350), 31, + ACTIONS(2419), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323687,6 +333568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323702,15 +333584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111066] = 4, - ACTIONS(3), 1, + [116032] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3206), 1, + STATE(3279), 1, sym_comment, - ACTIONS(1788), 15, + ACTIONS(2421), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323723,7 +333604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1790), 31, + ACTIONS(2423), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323740,6 +333621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323755,15 +333637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111123] = 4, - ACTIONS(3), 1, + [116089] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3207), 1, + STATE(3280), 1, sym_comment, - ACTIONS(1470), 15, + ACTIONS(2425), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323776,7 +333657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1472), 31, + ACTIONS(2427), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323793,6 +333674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323808,15 +333690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111180] = 4, - ACTIONS(3), 1, + [116146] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3208), 1, + STATE(3281), 1, sym_comment, - ACTIONS(2325), 15, + ACTIONS(1943), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323829,7 +333710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2327), 31, + ACTIONS(1945), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323846,6 +333727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323861,15 +333743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111237] = 4, - ACTIONS(3), 1, + [116203] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3209), 1, + STATE(3282), 1, sym_comment, - ACTIONS(2353), 15, + ACTIONS(1648), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323882,7 +333763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2355), 31, + ACTIONS(1650), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323899,6 +333780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323914,15 +333796,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111294] = 4, - ACTIONS(3), 1, + [116260] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3210), 1, + STATE(3283), 1, sym_comment, - ACTIONS(2369), 15, + ACTIONS(1585), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1587), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [116317] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3284), 1, + sym_comment, + ACTIONS(2429), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323935,7 +333869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2371), 31, + ACTIONS(2431), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323952,6 +333886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -323967,15 +333902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111351] = 4, - ACTIONS(3), 1, + [116374] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3211), 1, + STATE(3285), 1, sym_comment, - ACTIONS(1792), 15, + ACTIONS(2433), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -323988,7 +333922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1794), 31, + ACTIONS(2435), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324005,6 +333939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324020,15 +333955,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111408] = 4, - ACTIONS(3), 1, + [116431] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3212), 1, + STATE(3286), 1, sym_comment, - ACTIONS(5878), 15, + ACTIONS(1721), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324041,7 +333975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5982), 31, + ACTIONS(1723), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324058,6 +333992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324073,15 +334008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111465] = 4, - ACTIONS(3), 1, + [116488] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3213), 1, + STATE(3287), 1, sym_comment, - ACTIONS(2329), 15, + ACTIONS(6240), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324094,7 +334028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2331), 31, + ACTIONS(6238), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324111,6 +334045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324126,15 +334061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111522] = 4, - ACTIONS(3), 1, + [116545] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3214), 1, + STATE(3288), 1, sym_comment, - ACTIONS(1820), 15, + ACTIONS(5964), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324147,7 +334081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1822), 31, + ACTIONS(6048), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324164,6 +334098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324179,15 +334114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111579] = 4, - ACTIONS(3), 1, + [116602] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3215), 1, + STATE(3289), 1, sym_comment, - ACTIONS(1429), 15, + ACTIONS(2437), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324200,7 +334134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1441), 31, + ACTIONS(2439), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324217,6 +334151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324232,68 +334167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111636] = 4, - ACTIONS(3), 1, + [116659] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3216), 1, - sym_comment, - ACTIONS(1368), 8, - aux_sym_cmd_identifier_token41, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1370), 38, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [111693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3217), 1, + STATE(3290), 1, sym_comment, - ACTIONS(2285), 15, + ACTIONS(2441), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324306,7 +334187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2287), 31, + ACTIONS(2443), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324323,6 +334204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324338,15 +334220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111750] = 4, - ACTIONS(3), 1, + [116716] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3218), 1, + STATE(3291), 1, sym_comment, - ACTIONS(2293), 15, + ACTIONS(2389), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324359,7 +334240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2295), 31, + ACTIONS(2391), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324376,6 +334257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324391,15 +334273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111807] = 4, - ACTIONS(3), 1, + [116773] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3219), 1, + STATE(3292), 1, sym_comment, - ACTIONS(916), 15, + ACTIONS(2332), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324412,7 +334293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(918), 31, + ACTIONS(2334), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324429,6 +334310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324444,15 +334326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111864] = 4, - ACTIONS(3), 1, + [116830] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3220), 1, + STATE(3293), 1, sym_comment, - ACTIONS(920), 15, + ACTIONS(5832), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324465,7 +334346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(922), 31, + ACTIONS(5886), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324482,6 +334363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324497,15 +334379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111921] = 4, - ACTIONS(3), 1, + [116887] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3221), 1, + STATE(3294), 1, sym_comment, - ACTIONS(2394), 15, + ACTIONS(2336), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324518,7 +334399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2396), 31, + ACTIONS(2338), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324535,6 +334416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324550,15 +334432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111978] = 4, - ACTIONS(3), 1, + [116944] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3222), 1, + STATE(3295), 1, sym_comment, - ACTIONS(2297), 15, + ACTIONS(2340), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324571,7 +334452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2299), 31, + ACTIONS(2342), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324588,6 +334469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324603,15 +334485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112035] = 4, - ACTIONS(3), 1, + [117001] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3223), 1, + STATE(3296), 1, sym_comment, - ACTIONS(936), 15, + ACTIONS(2344), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324624,7 +334505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(938), 31, + ACTIONS(2346), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324641,6 +334522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324656,15 +334538,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112092] = 4, - ACTIONS(3), 1, + [117058] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3224), 1, + STATE(3297), 1, sym_comment, - ACTIONS(2333), 15, + ACTIONS(966), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324677,7 +334558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2335), 31, + ACTIONS(968), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324694,6 +334575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324709,15 +334591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112149] = 4, - ACTIONS(3), 1, + [117115] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3225), 1, + STATE(3298), 1, sym_comment, - ACTIONS(1863), 15, + ACTIONS(976), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324730,7 +334611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1869), 31, + ACTIONS(978), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324747,6 +334628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324762,15 +334644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112206] = 4, - ACTIONS(3), 1, + [117172] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3226), 1, + STATE(3299), 1, sym_comment, - ACTIONS(1764), 15, + ACTIONS(962), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324783,7 +334664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1766), 31, + ACTIONS(964), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324800,6 +334681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324815,15 +334697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112263] = 4, - ACTIONS(3), 1, + [117229] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3227), 1, + STATE(3300), 1, sym_comment, - ACTIONS(2309), 15, + ACTIONS(6244), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324836,7 +334717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2311), 31, + ACTIONS(6242), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324853,6 +334734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324868,15 +334750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112320] = 4, - ACTIONS(3), 1, + [117286] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3228), 1, + STATE(3301), 1, sym_comment, - ACTIONS(2289), 15, + ACTIONS(6248), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324889,7 +334770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2291), 31, + ACTIONS(6246), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324906,6 +334787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324921,15 +334803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112377] = 4, - ACTIONS(3), 1, + [117343] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3229), 1, + STATE(3302), 1, sym_comment, - ACTIONS(2337), 15, + ACTIONS(6205), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324942,7 +334823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2339), 31, + ACTIONS(6250), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324959,6 +334840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -324974,15 +334856,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112434] = 4, - ACTIONS(3), 1, + [117400] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3230), 1, + STATE(3303), 1, sym_comment, - ACTIONS(1808), 15, + ACTIONS(6254), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -324995,7 +334876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1810), 31, + ACTIONS(6252), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325012,6 +334893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -325027,15 +334909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112491] = 4, - ACTIONS(3), 1, + [117457] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3231), 1, + STATE(3304), 1, sym_comment, - ACTIONS(2341), 15, + ACTIONS(6254), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -325048,7 +334929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2343), 31, + ACTIONS(6252), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325065,6 +334946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -325080,15 +334962,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112548] = 4, - ACTIONS(3), 1, + [117514] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3232), 1, + STATE(3305), 1, sym_comment, - ACTIONS(6070), 15, + ACTIONS(6258), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -325101,7 +334982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6156), 31, + ACTIONS(6256), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325118,6 +334999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -325133,15 +335015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112605] = 4, - ACTIONS(3), 1, + [117571] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3233), 1, + STATE(3306), 1, sym_comment, - ACTIONS(912), 15, + ACTIONS(2401), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -325154,7 +335035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(914), 31, + ACTIONS(2403), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325171,6 +335052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -325186,15 +335068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112662] = 4, - ACTIONS(3), 1, + [117628] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3234), 1, + STATE(3307), 1, sym_comment, - ACTIONS(1780), 15, + ACTIONS(1879), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -325207,7 +335088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1782), 31, + ACTIONS(1881), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325224,6 +335105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -325239,15 +335121,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112719] = 4, - ACTIONS(3), 1, + [117685] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3235), 1, + ACTIONS(6260), 1, + anon_sym_DOLLAR, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6264), 1, + anon_sym_DOT, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + STATE(3308), 1, sym_comment, - ACTIONS(6356), 15, + STATE(3558), 1, + sym__immediate_decimal, + ACTIONS(6266), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3548), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1441), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [117758] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3309), 1, + sym_comment, + ACTIONS(2066), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -325260,7 +335202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6354), 31, + ACTIONS(2072), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325277,6 +335219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -325292,15 +335235,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112776] = 4, - ACTIONS(3), 1, + [117815] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3236), 1, + ACTIONS(2089), 1, + anon_sym_DASH, + STATE(3310), 1, sym_comment, - ACTIONS(6360), 15, + ACTIONS(2093), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [117872] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3311), 1, + sym_comment, + ACTIONS(2348), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -325313,7 +335308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6358), 31, + ACTIONS(2350), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325330,6 +335325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -325345,15 +335341,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112833] = 4, - ACTIONS(3), 1, + [117929] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3237), 1, + STATE(3312), 1, sym_comment, - ACTIONS(2357), 15, + ACTIONS(6189), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -325366,7 +335361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2359), 31, + ACTIONS(6191), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325383,6 +335378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -325398,26 +335394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112890] = 9, - ACTIONS(3), 1, + [117986] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4798), 1, + ACTIONS(5081), 1, anon_sym_DOT, - STATE(1585), 1, - aux_sym_cell_path_repeat1, - STATE(1694), 1, + STATE(1625), 1, sym_path, - STATE(2095), 1, + STATE(1743), 1, sym_cell_path, - STATE(3238), 1, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + STATE(3313), 1, sym_comment, - ACTIONS(1723), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3088), 14, + ACTIONS(3120), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -325432,39 +335422,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1725), 23, + ACTIONS(1764), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [118051] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2105), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [112957] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3239), 1, + STATE(3314), 1, + sym_comment, + ACTIONS(2107), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [118108] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6274), 1, + anon_sym_COMMA, + STATE(3315), 1, sym_comment, - ACTIONS(6221), 15, + ACTIONS(6109), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -325477,7 +335526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6223), 31, + ACTIONS(6272), 31, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325487,13 +335536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -325509,15 +335558,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113014] = 4, - ACTIONS(3), 1, + [118167] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3240), 1, + ACTIONS(5071), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(5073), 1, + anon_sym_DOT_DOT2, + ACTIONS(6276), 1, + sym_filesize_unit, + ACTIONS(6278), 1, + sym_duration_unit, + STATE(3316), 1, + sym_comment, + ACTIONS(5075), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [118232] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1525), 1, + sym__newline, + ACTIONS(4934), 1, + anon_sym_DOT_DOT2, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6280), 1, + sym_filesize_unit, + ACTIONS(6282), 1, + sym_duration_unit, + STATE(3317), 1, + sym_comment, + ACTIONS(4936), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [118299] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3318), 1, sym_comment, - ACTIONS(1871), 15, + ACTIONS(6143), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -325530,7 +335693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1877), 31, + ACTIONS(6145), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325547,6 +335710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -325562,18 +335726,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113071] = 4, - ACTIONS(3), 1, + [118356] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3241), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + STATE(3319), 1, sym_comment, - ACTIONS(2305), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(3581), 1, + sym__immediate_decimal, + ACTIONS(6286), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3579), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -325582,31 +335757,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2307), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(1441), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325615,37 +335785,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113128] = 14, - ACTIONS(3), 1, + [118426] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6372), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(3242), 1, + STATE(3320), 1, sym_comment, - STATE(6407), 1, + STATE(6813), 1, sym_block, - STATE(7613), 1, + STATE(7635), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325677,37 +335847,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113204] = 14, - ACTIONS(3), 1, + [118502] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6374), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(3243), 1, + STATE(3321), 1, sym_comment, - STATE(7191), 1, + STATE(6897), 1, sym_block, - STATE(7599), 1, + STATE(7658), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325739,37 +335909,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113280] = 14, - ACTIONS(3), 1, + [118578] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6374), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(3244), 1, + STATE(3322), 1, sym_comment, - STATE(6967), 1, + STATE(6898), 1, sym_block, - STATE(7667), 1, + STATE(7662), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325801,37 +335971,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113356] = 14, - ACTIONS(3), 1, + [118654] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6374), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - STATE(3245), 1, + STATE(3323), 1, sym_comment, - STATE(7029), 1, + STATE(7310), 1, sym_block, - STATE(7655), 1, + STATE(7577), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325863,89 +336033,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113432] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3246), 1, - sym_comment, - ACTIONS(6378), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6376), 30, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113488] = 14, - ACTIONS(3), 1, + [118730] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6374), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(3247), 1, + STATE(3324), 1, sym_comment, - STATE(7010), 1, + STATE(6735), 1, sym_block, - STATE(7500), 1, + STATE(7701), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325977,93 +336095,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113564] = 8, - ACTIONS(3), 1, + [118806] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5028), 1, - anon_sym_DOT_DOT2, - ACTIONS(6380), 1, - sym_filesize_unit, - ACTIONS(6382), 1, - sym_duration_unit, - STATE(3248), 1, - sym_comment, - ACTIONS(5030), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [113628] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6374), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(3249), 1, + STATE(3325), 1, sym_comment, - STATE(6921), 1, + STATE(6736), 1, sym_block, - STATE(7602), 1, + STATE(7543), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326095,37 +336157,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113704] = 14, - ACTIONS(3), 1, + [118882] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6374), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(3250), 1, + STATE(3326), 1, sym_comment, - STATE(7382), 1, + STATE(6755), 1, sym_block, - STATE(7495), 1, + STATE(7572), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326157,37 +336219,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113780] = 14, - ACTIONS(3), 1, + [118958] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6374), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(3251), 1, + STATE(3327), 1, sym_comment, - STATE(6932), 1, + STATE(6757), 1, sym_block, - STATE(7644), 1, + STATE(7574), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326219,37 +336281,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113856] = 14, - ACTIONS(3), 1, + [119034] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6372), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - STATE(3252), 1, + STATE(3328), 1, sym_comment, - STATE(6810), 1, + STATE(7317), 1, sym_block, - STATE(7549), 1, + STATE(7601), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326281,37 +336343,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113932] = 14, - ACTIONS(3), 1, + [119110] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6372), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(3253), 1, + STATE(3329), 1, sym_comment, - STATE(6382), 1, + STATE(6814), 1, sym_block, - STATE(7595), 1, + STATE(7639), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326343,37 +336405,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114008] = 14, - ACTIONS(3), 1, + [119186] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6372), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - STATE(3254), 1, + STATE(3330), 1, sym_comment, - STATE(6384), 1, + STATE(7256), 1, sym_block, - STATE(7597), 1, + STATE(7542), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326405,99 +336467,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114084] = 14, - ACTIONS(3), 1, + [119262] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, - anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(5073), 1, + anon_sym_DOT_DOT2, + ACTIONS(6302), 1, + sym_filesize_unit, + ACTIONS(6304), 1, + sym_duration_unit, + STATE(3331), 1, + sym_comment, + ACTIONS(5075), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [119324] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3332), 1, + sym_comment, + ACTIONS(6308), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(6306), 31, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - ACTIONS(6370), 1, - anon_sym_list, - ACTIONS(6372), 1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - STATE(3255), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [119380] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + STATE(3333), 1, sym_comment, - STATE(6835), 1, - sym_block, - STATE(7498), 1, - sym_returns, - STATE(7721), 1, - sym__multiple_types, - STATE(7792), 1, - sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, - anon_sym_table, - anon_sym_record, - STATE(6876), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6366), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [114160] = 14, - ACTIONS(3), 1, + STATE(3585), 1, + sym__immediate_decimal, + ACTIONS(6286), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3584), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1551), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1553), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [119450] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + STATE(3334), 1, + sym_comment, + STATE(3587), 1, + sym__immediate_decimal, + ACTIONS(6286), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3586), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1555), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1557), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [119520] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + STATE(3335), 1, + sym_comment, + STATE(3589), 1, + sym__immediate_decimal, + ACTIONS(6286), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3611), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1501), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1509), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [119590] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6372), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - STATE(3256), 1, + STATE(3336), 1, sym_comment, - STATE(6837), 1, + STATE(7099), 1, sym_block, - STATE(7501), 1, + STATE(7688), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326529,37 +336813,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114236] = 14, - ACTIONS(3), 1, + [119666] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6372), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - STATE(3257), 1, + STATE(3337), 1, sym_comment, - STATE(6816), 1, + STATE(7103), 1, sym_block, - STATE(7551), 1, + STATE(7707), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326591,37 +336875,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114312] = 14, - ACTIONS(3), 1, + [119742] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6374), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - STATE(3258), 1, + STATE(3338), 1, sym_comment, - STATE(7081), 1, + STATE(7192), 1, sym_block, - STATE(7608), 1, + STATE(7663), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326653,37 +336937,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114388] = 14, - ACTIONS(3), 1, + [119818] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_COLON, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6372), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - STATE(3259), 1, + STATE(3339), 1, sym_comment, - STATE(6416), 1, + STATE(7254), 1, sym_block, - STATE(7615), 1, + STATE(7641), 1, sym_returns, - STATE(7721), 1, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, sym__multiple_types, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7838), 1, - sym__one_type, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326715,532 +336999,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114464] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2202), 1, - sym_path, - STATE(2547), 1, - sym_cell_path, - STATE(3260), 1, - sym_comment, - ACTIONS(1723), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3088), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1725), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [114529] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3261), 1, - sym_comment, - ACTIONS(2155), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2159), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [114584] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3262), 1, - sym_comment, - ACTIONS(936), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(938), 34, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114639] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6384), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6386), 1, - aux_sym_unquoted_token2, - STATE(3263), 1, - sym_comment, - ACTIONS(2927), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 37, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [114698] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3264), 1, - sym_comment, - ACTIONS(2077), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2081), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [114753] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3265), 1, - sym_comment, - ACTIONS(2163), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2165), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [114808] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(3241), 1, - anon_sym_LPAREN2, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, - STATE(3266), 1, - sym_comment, - ACTIONS(3239), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [114864] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6388), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6390), 1, - aux_sym_unquoted_token2, - STATE(3267), 1, - sym_comment, - ACTIONS(2927), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 36, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [114922] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3268), 1, - sym_comment, - ACTIONS(2165), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2163), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [114980] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3269), 1, + [119894] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6288), 1, + anon_sym_COLON, + ACTIONS(6290), 1, + anon_sym_LBRACK, + ACTIONS(6296), 1, + anon_sym_list, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(3340), 1, sym_comment, - ACTIONS(2159), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2155), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115038] = 4, - ACTIONS(121), 1, + STATE(7198), 1, + sym_block, + STATE(7666), 1, + sym_returns, + STATE(7782), 1, + sym__one_type, + STATE(7784), 1, + sym__multiple_types, + STATE(7862), 1, + sym__type_annotation, + ACTIONS(6294), 2, + anon_sym_table, + anon_sym_record, + STATE(6391), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6292), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [119970] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3270), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + STATE(1999), 1, + aux_sym_cell_path_repeat1, + STATE(2297), 1, + sym_path, + STATE(2544), 1, + sym_cell_path, + STATE(3341), 1, sym_comment, - ACTIONS(2075), 14, + ACTIONS(3120), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327252,49 +337087,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2073), 29, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - aux_sym_unquoted_token7, - [115092] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6392), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6394), 1, - aux_sym__immediate_decimal_token2, - STATE(3271), 1, + ACTIONS(1764), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [120033] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6310), 1, + anon_sym_DOT, + STATE(3342), 1, sym_comment, - ACTIONS(1470), 10, + STATE(3344), 1, + aux_sym_cell_path_repeat1, + STATE(3383), 1, + sym_path, + ACTIONS(951), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -327305,7 +337138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1472), 31, + ACTIONS(953), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327337,17 +337170,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115150] = 6, - ACTIONS(121), 1, + [120094] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(3272), 1, - sym_comment, - ACTIONS(2081), 13, + ACTIONS(3123), 1, sym__newline, + ACTIONS(5099), 1, + anon_sym_DOT, + STATE(2120), 1, + aux_sym_cell_path_repeat1, + STATE(2197), 1, + sym_path, + STATE(2436), 1, + sym_cell_path, + STATE(3343), 1, + sym_comment, + ACTIONS(3120), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327359,46 +337197,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2077), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115208] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(1764), 28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [120159] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6312), 1, anon_sym_DOT, - ACTIONS(6398), 1, - aux_sym__immediate_decimal_token2, - STATE(3273), 1, + STATE(3383), 1, + sym_path, + STATE(3344), 2, sym_comment, - ACTIONS(1518), 10, + aux_sym_cell_path_repeat1, + ACTIONS(955), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -327409,7 +337247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1520), 31, + ACTIONS(957), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327441,66 +337279,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115266] = 6, - ACTIONS(121), 1, + [120218] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(3274), 1, + STATE(3345), 1, sym_comment, - ACTIONS(950), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(948), 28, - anon_sym_GT, + ACTIONS(1021), 10, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115324] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token37, - STATE(3275), 1, - sym_comment, - ACTIONS(2075), 18, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1023), 34, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327512,51 +337308,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2073), 23, - anon_sym_GT, - anon_sym_DASH, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_STAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115379] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token6, - STATE(3276), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [120273] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2131), 1, + aux_sym_unquoted_token4, + STATE(3346), 1, sym_comment, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 36, + ACTIONS(2133), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327569,89 +337350,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115434] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2039), 1, anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(3277), 1, - sym_comment, - ACTIONS(950), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(948), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115491] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token37, - STATE(3278), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [120327] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(3347), 1, sym_comment, - ACTIONS(2081), 18, + ACTIONS(1008), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327665,57 +337403,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2077), 23, - anon_sym_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [120383] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6315), 1, + anon_sym_QMARK2, + STATE(3348), 1, + sym_comment, + ACTIONS(970), 11, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115546] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6404), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - STATE(3279), 1, - sym_comment, - STATE(3499), 1, - sym__immediate_decimal, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3514), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1482), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327724,7 +337450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1484), 25, + ACTIONS(972), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327738,10 +337464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327750,16 +337482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115613] = 5, - ACTIONS(3), 1, + [120439] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6410), 1, - aux_sym__immediate_decimal_token2, - STATE(3280), 1, + ACTIONS(6317), 1, + anon_sym_QMARK2, + STATE(3349), 1, sym_comment, - ACTIONS(1535), 10, + ACTIONS(980), 11, anon_sym_DASH, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327768,7 +337501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 31, + ACTIONS(982), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327800,28 +337533,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115668] = 11, + [120495] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6400), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3350), 1, + sym_comment, + ACTIONS(2101), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [120551] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6260), 1, anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - STATE(3281), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6319), 1, + anon_sym_DOT, + STATE(3351), 1, sym_comment, - STATE(3529), 1, + STATE(3656), 1, sym__immediate_decimal, - ACTIONS(6406), 2, + ACTIONS(6266), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3528), 2, + STATE(3560), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1449), 8, + ACTIONS(1413), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327830,7 +337617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1457), 25, + ACTIONS(1427), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327844,10 +337631,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327856,17 +337642,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115735] = 6, - ACTIONS(121), 1, + [120621] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3282), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(3345), 1, + sym_cell_path, + STATE(3352), 1, sym_comment, - ACTIONS(2159), 12, - ts_builtin_sym_end, + ACTIONS(945), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(947), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327878,42 +337677,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2155), 28, - anon_sym_GT, - anon_sym_DASH, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_STAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115792] = 4, - ACTIONS(121), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [120683] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3283), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3353), 1, sym_comment, - ACTIONS(2075), 13, - ts_builtin_sym_end, + ACTIONS(2107), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327925,59 +337717,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - ACTIONS(2073), 29, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - aux_sym_unquoted_token7, - [115845] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - STATE(3284), 1, - sym_comment, - STATE(3500), 1, - sym__immediate_decimal, - ACTIONS(6406), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [120739] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6321), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3497), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 8, + ACTIONS(6323), 1, + aux_sym__immediate_decimal_token2, + STATE(3354), 1, + sym_comment, + ACTIONS(1569), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327986,7 +337767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1480), 25, + ACTIONS(1571), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328000,10 +337781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328012,17 +337799,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115912] = 6, - ACTIONS(121), 1, + [120797] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3285), 1, + ACTIONS(6310), 1, + anon_sym_DOT, + STATE(3342), 1, + aux_sym_cell_path_repeat1, + STATE(3345), 1, + sym_cell_path, + STATE(3355), 1, sym_comment, - ACTIONS(2165), 12, - ts_builtin_sym_end, + STATE(3383), 1, + sym_path, + ACTIONS(945), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(947), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328034,45 +337835,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2163), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [115969] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6394), 1, - aux_sym__immediate_decimal_token2, - STATE(3286), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [120859] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3356), 1, sym_comment, - ACTIONS(1470), 10, + ACTIONS(966), 11, anon_sym_DASH, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328081,7 +337870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1472), 31, + ACTIONS(968), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328100,6 +337889,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -328113,16 +337903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116024] = 5, - ACTIONS(3), 1, + [120913] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6398), 1, - aux_sym__immediate_decimal_token2, - STATE(3287), 1, + STATE(3357), 1, sym_comment, - ACTIONS(1518), 10, + ACTIONS(976), 11, anon_sym_DASH, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328131,7 +337920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1520), 31, + ACTIONS(978), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328150,6 +337939,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -328163,70 +337953,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116079] = 5, - ACTIONS(121), 1, + [120967] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5302), 1, - aux_sym_unquoted_token3, - STATE(3288), 1, + ACTIONS(6325), 1, + anon_sym_DOT, + ACTIONS(6327), 1, + aux_sym__immediate_decimal_token2, + STATE(3358), 1, sym_comment, - ACTIONS(3241), 2, - ts_builtin_sym_end, - anon_sym_LPAREN2, - ACTIONS(3239), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_GT, + ACTIONS(1589), 10, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [116134] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5304), 1, - aux_sym_cmd_identifier_token41, - STATE(3289), 1, - sym_comment, - ACTIONS(2163), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2165), 36, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1591), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328239,44 +337986,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [116189] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121025] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5304), 1, - aux_sym_cmd_identifier_token41, - STATE(3290), 1, + STATE(3359), 1, sym_comment, - ACTIONS(2155), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2159), 36, + ACTIONS(962), 11, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(964), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328289,149 +338035,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [116244] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(3291), 1, - sym_comment, - ACTIONS(2081), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2077), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [116301] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(6370), 1, - anon_sym_list, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(3292), 1, - sym_comment, - STATE(3438), 1, - aux_sym__multiple_types_repeat2, - STATE(7289), 1, - sym__one_type, - STATE(7718), 1, - sym__type_annotation, - ACTIONS(6368), 2, - anon_sym_table, - anon_sym_record, - STATE(6876), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6366), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [116368] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121079] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3293), 1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(3360), 1, sym_comment, - ACTIONS(2248), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3511), 14, + ACTIONS(2093), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328444,119 +338077,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2250), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [116423] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(6370), 1, - anon_sym_list, - STATE(3292), 1, - aux_sym_shebang_repeat1, - STATE(3294), 1, - sym_comment, - STATE(3435), 1, - aux_sym__multiple_types_repeat2, - STATE(7349), 1, - sym__one_type, - STATE(7718), 1, - sym__type_annotation, - ACTIONS(6368), 2, - anon_sym_table, - anon_sym_record, - STATE(6876), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6366), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [116490] = 11, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [121135] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(2099), 1, anon_sym_LPAREN2, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6412), 1, - anon_sym_DOLLAR, - ACTIONS(6414), 1, - anon_sym_DOT, - STATE(3295), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3361), 1, sym_comment, - STATE(3570), 1, - sym__immediate_decimal, - ACTIONS(6416), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3569), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1457), 25, + ACTIONS(2107), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328568,51 +338128,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [116557] = 11, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [121190] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - STATE(3296), 1, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(3362), 1, sym_comment, - STATE(3490), 1, - sym__immediate_decimal, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3513), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1486), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1488), 25, + ACTIONS(2133), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328625,27 +338176,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [116624] = 5, - ACTIONS(121), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [121243] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4956), 1, + ACTIONS(4983), 1, aux_sym_cmd_identifier_token37, - STATE(3297), 1, + STATE(3363), 1, sym_comment, - ACTIONS(1441), 18, + ACTIONS(2093), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328659,86 +338226,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1429), 23, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [116679] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6426), 1, - anon_sym_and, - ACTIONS(6428), 1, - anon_sym_xor, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3298), 1, - sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 13, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [121296] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + ACTIONS(2105), 1, sym__newline, + STATE(3364), 1, + sym_comment, + ACTIONS(2107), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328750,15 +338277,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [116761] = 4, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [121353] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3299), 1, + STATE(3365), 1, sym_comment, - ACTIONS(1963), 10, + ACTIONS(986), 11, anon_sym_DASH, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328767,7 +338322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1965), 31, + ACTIONS(988), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328781,124 +338336,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [116813] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3300), 1, - sym_comment, - ACTIONS(6448), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [116863] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3301), 1, - sym_comment, - ACTIONS(6450), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, + anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - [116913] = 4, - ACTIONS(3), 1, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121406] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3302), 1, + ACTIONS(6327), 1, + aux_sym__immediate_decimal_token2, + STATE(3366), 1, sym_comment, - ACTIONS(1470), 10, + ACTIONS(1589), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -328909,7 +338372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1472), 31, + ACTIONS(1591), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328941,14 +338404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116965] = 4, - ACTIONS(3), 1, + [121461] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3303), 1, + STATE(3367), 1, sym_comment, - ACTIONS(1535), 10, + ACTIONS(990), 11, anon_sym_DASH, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328957,7 +338421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 31, + ACTIONS(992), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328989,14 +338453,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117017] = 5, - ACTIONS(121), 1, + [121514] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + STATE(3368), 1, + sym_comment, + ACTIONS(1537), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [121567] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + STATE(3369), 1, + sym_comment, + STATE(3723), 1, + sym__immediate_decimal, + ACTIONS(6286), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3591), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1413), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1427), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121634] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5026), 1, + ACTIONS(4983), 1, aux_sym_cmd_identifier_token37, - STATE(3304), 1, + STATE(3370), 1, + sym_comment, + ACTIONS(1537), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [121687] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(3371), 1, sym_comment, - ACTIONS(1441), 17, + ACTIONS(2093), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329009,43 +338629,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1429), 23, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [117071] = 4, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [121742] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3305), 1, + ACTIONS(2097), 1, + sym__newline, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3372), 1, + sym_comment, + ACTIONS(2101), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [121799] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5335), 1, + aux_sym_cmd_identifier_token41, + STATE(3373), 1, + sym_comment, + ACTIONS(2107), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [121852] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1006), 1, + sym__newline, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(3374), 1, + sym_comment, + ACTIONS(1008), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [121909] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3375), 1, + sym_comment, + ACTIONS(2131), 2, + sym__newline, + aux_sym_unquoted_token4, + ACTIONS(2133), 40, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [121962] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + STATE(3376), 1, sym_comment, - ACTIONS(1608), 10, + STATE(3731), 1, + sym__immediate_decimal, + ACTIONS(6286), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3590), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1443), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329054,7 +338888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1610), 31, + ACTIONS(1455), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329069,15 +338903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329086,29 +338913,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117123] = 10, - ACTIONS(3), 1, + [122029] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6452), 1, - anon_sym_GT, - ACTIONS(6454), 1, - anon_sym_AT, - STATE(3306), 1, + STATE(3377), 1, sym_comment, - STATE(7419), 1, - sym__all_type, - STATE(7998), 1, - sym_param_cmd, - ACTIONS(6368), 2, + STATE(3380), 1, + aux_sym_shebang_repeat1, + STATE(3524), 1, + aux_sym__multiple_types_repeat2, + STATE(7251), 1, + sym__one_type, + STATE(7846), 1, + sym__type_annotation, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(5811), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -329140,12 +338969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [117187] = 4, - ACTIONS(3), 1, + [122096] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3307), 1, + ACTIONS(6329), 1, + aux_sym__immediate_decimal_token2, + STATE(3378), 1, sym_comment, - ACTIONS(1959), 10, + ACTIONS(1648), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -329156,7 +338987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1961), 31, + ACTIONS(1650), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329188,17 +339019,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117239] = 3, + [122151] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3379), 1, sym_comment, - ACTIONS(6456), 41, + ACTIONS(2101), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [122206] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(6296), 1, + anon_sym_list, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(3380), 1, + sym_comment, + STATE(3547), 1, + aux_sym__multiple_types_repeat2, + STATE(7234), 1, + sym__one_type, + STATE(7846), 1, + sym__type_annotation, + ACTIONS(6294), 2, + anon_sym_table, + anon_sym_record, + STATE(6391), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -329228,38 +339123,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [117289] = 10, - ACTIONS(3), 1, + [122273] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - STATE(3309), 1, + ACTIONS(5335), 1, + aux_sym_cmd_identifier_token41, + STATE(3381), 1, sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6468), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 29, + ACTIONS(2101), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329272,186 +339145,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [117353] = 3, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [122326] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3310), 1, - sym_comment, - ACTIONS(6470), 41, + ACTIONS(2089), 1, sym__newline, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(3382), 1, + sym_comment, + ACTIONS(2093), 39, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [117403] = 6, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [122383] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6472), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6474), 1, - aux_sym__immediate_decimal_token2, - STATE(3311), 1, + STATE(3383), 1, sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(994), 11, + anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 30, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(996), 31, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [117459] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3312), 1, - sym_comment, - ACTIONS(6476), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [117509] = 7, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122436] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, + ACTIONS(2131), 1, + aux_sym_unquoted_token4, + STATE(3384), 1, sym_comment, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3457), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(3449), 32, + ACTIONS(2133), 41, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329463,57 +339294,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [117567] = 11, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [122489] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - STATE(3314), 1, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(3385), 1, sym_comment, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6468), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6478), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6480), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 25, + ACTIONS(1008), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329525,36 +339345,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [117633] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [122544] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3315), 1, - sym_comment, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3457), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3449), 34, + ACTIONS(5387), 1, sym__newline, + STATE(3386), 1, + sym_comment, + STATE(3501), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5298), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329566,34 +339397,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [117687] = 3, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [122600] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3316), 1, + STATE(3387), 1, sym_comment, - ACTIONS(6482), 41, + ACTIONS(6333), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -329635,89 +339470,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - [117737] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - ACTIONS(6488), 1, - anon_sym_bit_DASHand, - ACTIONS(6490), 1, - anon_sym_bit_DASHxor, - ACTIONS(6492), 1, - anon_sym_bit_DASHor, - STATE(3317), 1, - sym_comment, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6468), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6478), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6486), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6480), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6484), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [117813] = 10, - ACTIONS(3), 1, + [122650] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6364), 1, + ACTIONS(6290), 1, anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - STATE(3318), 1, + STATE(3388), 1, sym_comment, - STATE(7749), 1, - sym__one_type, - STATE(7792), 1, + STATE(7862), 1, sym__type_annotation, - STATE(7813), 1, + STATE(8044), 1, + sym__one_type, + STATE(8045), 1, sym__multiple_types, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -329749,52 +339524,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [117877] = 17, - ACTIONS(3), 1, + [122714] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - ACTIONS(6488), 1, - anon_sym_bit_DASHand, - ACTIONS(6490), 1, - anon_sym_bit_DASHxor, - ACTIONS(6492), 1, - anon_sym_bit_DASHor, - ACTIONS(6494), 1, - anon_sym_and, - STATE(3319), 1, + STATE(3389), 1, sym_comment, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6468), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6478), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6486), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6480), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6484), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 15, + ACTIONS(1648), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1650), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329807,57 +339553,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, anon_sym_xor, anon_sym_or, - [117955] = 18, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122766] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - ACTIONS(6488), 1, - anon_sym_bit_DASHand, - ACTIONS(6490), 1, - anon_sym_bit_DASHxor, - ACTIONS(6492), 1, - anon_sym_bit_DASHor, - ACTIONS(6494), 1, - anon_sym_and, - ACTIONS(6496), 1, - anon_sym_xor, - STATE(3320), 1, + ACTIONS(4920), 1, + aux_sym_unquoted_token2, + STATE(3390), 1, sym_comment, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6468), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6478), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6486), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6480), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6484), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 14, + ACTIONS(1537), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329869,44 +339592,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or, - [118035] = 12, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [122818] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - STATE(3321), 1, + STATE(3391), 1, sym_comment, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6468), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6478), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6480), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6484), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 21, + ACTIONS(1569), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1571), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329919,30 +339649,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118103] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122870] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4781), 1, - aux_sym_unquoted_token6, - STATE(3322), 1, + STATE(3392), 1, sym_comment, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 35, - ts_builtin_sym_end, + ACTIONS(3537), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329954,51 +339685,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118157] = 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2317), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [122922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - STATE(3323), 1, + ACTIONS(5071), 1, + aux_sym_cmd_identifier_token37, + STATE(3393), 1, sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3449), 31, + ACTIONS(1537), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330010,123 +339736,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118219] = 13, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [122974] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - STATE(3324), 1, - sym_comment, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6468), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6478), 2, + ACTIONS(6296), 1, + anon_sym_list, + ACTIONS(6335), 1, anon_sym_GT, - anon_sym_LT2, - ACTIONS(6486), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6480), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6484), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 19, + ACTIONS(6337), 1, + anon_sym_AT, + STATE(3394), 1, + sym_comment, + STATE(7168), 1, + sym__all_type, + STATE(7793), 1, + sym_param_cmd, + ACTIONS(6294), 2, + anon_sym_table, + anon_sym_record, + STATE(5944), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6292), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [123038] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3395), 1, + sym_comment, + ACTIONS(6339), 41, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118289] = 14, - ACTIONS(3), 1, + [123088] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - ACTIONS(6488), 1, - anon_sym_bit_DASHand, - STATE(3325), 1, + STATE(3396), 1, sym_comment, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6468), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6478), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6486), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6480), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6484), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 18, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(3601), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330140,90 +339887,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118361] = 12, - ACTIONS(3), 1, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [123140] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3326), 1, + STATE(3397), 1, sym_comment, - STATE(3339), 1, - aux_sym_shebang_repeat1, - ACTIONS(5350), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5348), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118429] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 35, sym__newline, - STATE(3327), 1, - sym_comment, - STATE(3341), 1, - aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5350), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5348), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330235,101 +339939,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118491] = 13, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [123194] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3328), 1, + STATE(3398), 1, sym_comment, - STATE(3343), 1, - aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5348), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118561] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 33, sym__newline, - STATE(3329), 1, - sym_comment, - STATE(3345), 1, - aux_sym_shebang_repeat1, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5350), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5348), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330341,75 +339991,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118619] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - STATE(3330), 1, - sym_comment, - STATE(3347), 1, - aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5348), 14, + anon_sym_RBRACE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [123250] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3399), 1, + sym_comment, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6347), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6349), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6351), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330421,59 +340056,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [118699] = 19, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [123312] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - ACTIONS(6524), 1, - anon_sym_and, - STATE(3331), 1, + STATE(3400), 1, sym_comment, - STATE(3349), 1, - aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5348), 13, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6347), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6353), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6349), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6351), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 19, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330485,60 +340112,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [118781] = 20, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [123376] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5496), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - ACTIONS(6524), 1, - anon_sym_and, - ACTIONS(6526), 1, - anon_sym_xor, - STATE(3332), 1, + ACTIONS(6355), 1, + aux_sym_expr_binary_token13, + STATE(3401), 1, sym_comment, - STATE(3351), 1, - aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5348), 12, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6347), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6353), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6349), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6351), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330550,46 +340168,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [118865] = 14, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [123442] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3333), 1, + ACTIONS(6355), 1, + aux_sym_expr_binary_token13, + ACTIONS(6357), 1, + aux_sym_expr_binary_token14, + STATE(3402), 1, sym_comment, - STATE(3353), 1, - aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5348), 19, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6347), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6353), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6349), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6351), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330601,40 +340225,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [118937] = 11, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [123510] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3334), 1, + ACTIONS(6355), 1, + aux_sym_expr_binary_token13, + ACTIONS(6357), 1, + aux_sym_expr_binary_token14, + ACTIONS(6359), 1, + aux_sym_expr_binary_token15, + STATE(3403), 1, sym_comment, - STATE(3355), 1, - aux_sym_shebang_repeat1, - ACTIONS(5350), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5348), 29, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6347), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6353), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6349), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6351), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330646,66 +340283,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119003] = 15, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [123580] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3335), 1, + ACTIONS(6355), 1, + aux_sym_expr_binary_token13, + ACTIONS(6357), 1, + aux_sym_expr_binary_token14, + ACTIONS(6359), 1, + aux_sym_expr_binary_token15, + ACTIONS(6361), 1, + aux_sym_expr_binary_token16, + STATE(3404), 1, sym_comment, - STATE(3357), 1, - aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5348), 17, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6347), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6353), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6349), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6351), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330717,56 +340342,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119077] = 16, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [123652] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - STATE(3336), 1, + ACTIONS(6355), 1, + aux_sym_expr_binary_token13, + ACTIONS(6357), 1, + aux_sym_expr_binary_token14, + ACTIONS(6359), 1, + aux_sym_expr_binary_token15, + ACTIONS(6361), 1, + aux_sym_expr_binary_token16, + ACTIONS(6363), 1, + aux_sym_expr_binary_token17, + STATE(3405), 1, sym_comment, - STATE(3359), 1, - aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5348), 16, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6347), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6353), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6349), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6351), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330778,57 +340402,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119153] = 17, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token18, + [123726] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, + STATE(3406), 1, + sym_comment, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6347), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6351), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 25, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - STATE(3337), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [123786] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3407), 1, sym_comment, - STATE(3361), 1, - aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5348), 15, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6347), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 31, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330840,33 +340488,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [119231] = 10, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [123844] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, + ACTIONS(6296), 1, anon_sym_list, - ACTIONS(6454), 1, + ACTIONS(6337), 1, anon_sym_AT, - ACTIONS(6528), 1, + ACTIONS(6365), 1, anon_sym_GT, - STATE(3338), 1, + STATE(3408), 1, sym_comment, - STATE(7220), 1, + STATE(7199), 1, sym__all_type, - STATE(7752), 1, + STATE(7917), 1, sym_param_cmd, - ACTIONS(6368), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(5811), 3, + STATE(5944), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -330898,34 +340561,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119295] = 11, - ACTIONS(3), 1, + [123908] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3339), 1, - sym_comment, - ACTIONS(5332), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5330), 28, + ACTIONS(1525), 1, sym__newline, + ACTIONS(4889), 1, + aux_sym_unquoted_token2, + STATE(3409), 1, + sym_comment, + ACTIONS(1537), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330937,51 +340582,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119361] = 12, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [123962] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + STATE(3410), 1, + sym_comment, + ACTIONS(6367), 41, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3340), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + [124012] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + sym__newline, + STATE(3411), 1, sym_comment, - STATE(3375), 1, + STATE(3427), 1, aux_sym_shebang_repeat1, - ACTIONS(5336), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5334), 27, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5361), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330993,43 +340681,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119429] = 8, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [124068] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3341), 1, + STATE(3412), 1, sym_comment, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5332), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5330), 31, + ACTIONS(1589), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1591), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331042,48 +340736,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119489] = 9, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [124120] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5421), 1, sym__newline, - STATE(3342), 1, + STATE(3413), 1, sym_comment, - STATE(3376), 1, + STATE(3429), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5336), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5334), 30, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5361), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331095,58 +340784,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119551] = 12, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [124178] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3343), 1, - sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 24, + ACTIONS(5421), 1, sym__newline, + STATE(3414), 1, + sym_comment, + STATE(3431), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5361), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331158,52 +340838,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119619] = 13, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [124238] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3344), 1, + STATE(3415), 1, sym_comment, - STATE(3377), 1, + STATE(3433), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5334), 23, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331215,35 +340905,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119689] = 6, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [124304] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3345), 1, + STATE(3416), 1, sym_comment, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5332), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5330), 33, + ACTIONS(1721), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1723), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331256,46 +340942,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119745] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [124356] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5421), 1, sym__newline, - STATE(3346), 1, + STATE(3417), 1, sym_comment, - STATE(3378), 1, + STATE(3435), 1, aux_sym_shebang_repeat1, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5336), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5334), 32, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331307,74 +341011,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [119803] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3347), 1, - sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 15, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [124424] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, sym__newline, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3418), 1, + sym_comment, + STATE(3437), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331386,57 +341069,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [119881] = 18, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [124494] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - STATE(3348), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3419), 1, sym_comment, - STATE(3379), 1, + STATE(3439), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5334), 14, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [124566] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3420), 1, + sym_comment, + STATE(3441), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [124640] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6387), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3421), 1, + sym_comment, + STATE(3443), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [124716] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6387), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6389), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3422), 1, + sym_comment, + STATE(3445), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331448,58 +341311,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [119961] = 18, + aux_sym_expr_binary_parenthesized_token18, + [124794] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6426), 1, - anon_sym_and, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3349), 1, + ACTIONS(1525), 1, + sym__newline, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(3423), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 14, + ACTIONS(1537), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [124848] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, sym__newline, + STATE(3424), 1, + sym_comment, + STATE(3447), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331511,58 +341403,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [120041] = 19, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [124912] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - ACTIONS(6524), 1, - anon_sym_and, - STATE(3350), 1, + STATE(3425), 1, sym_comment, - STATE(3380), 1, + STATE(3449), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5334), 13, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5361), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331574,59 +341450,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [120123] = 19, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [124974] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6426), 1, - anon_sym_and, - ACTIONS(6428), 1, - anon_sym_xor, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + ACTIONS(6296), 1, + anon_sym_list, + ACTIONS(6337), 1, + anon_sym_AT, + ACTIONS(6391), 1, + anon_sym_GT, + STATE(3426), 1, + sym_comment, + STATE(7100), 1, + sym__all_type, + STATE(7854), 1, + sym_param_cmd, + ACTIONS(6294), 2, + anon_sym_table, + anon_sym_record, + STATE(5944), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6292), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [125038] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3351), 1, + STATE(3427), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 13, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5341), 37, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [125094] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, sym__newline, + STATE(3428), 1, + sym_comment, + STATE(3465), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331638,59 +341596,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [120205] = 20, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [125150] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5496), 1, + ACTIONS(5339), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - ACTIONS(6524), 1, - anon_sym_and, - ACTIONS(6526), 1, - anon_sym_xor, - STATE(3298), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3352), 1, + STATE(3429), 1, sym_comment, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5334), 12, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5341), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331702,45 +341651,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [120289] = 13, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [125208] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3353), 1, + ACTIONS(5472), 1, + sym__newline, + STATE(3430), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 20, + STATE(3466), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5349), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [125266] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3431), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5341), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331752,53 +341756,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [120359] = 14, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [125326] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3354), 1, + STATE(3432), 1, sym_comment, - STATE(3381), 1, + STATE(3467), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5334), 19, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5349), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331810,39 +341808,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [120431] = 10, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [125386] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5339), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3355), 1, + STATE(3433), 1, sym_comment, - ACTIONS(5332), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5330), 30, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331854,50 +341875,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [120495] = 11, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [125452] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3356), 1, + STATE(3434), 1, sym_comment, - STATE(3382), 1, + STATE(3468), 1, aux_sym_shebang_repeat1, - ACTIONS(5336), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5334), 29, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331909,65 +341930,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [120561] = 14, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [125518] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5339), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3357), 1, + STATE(3435), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 18, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331979,54 +341988,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [120633] = 15, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [125586] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3358), 1, + STATE(3436), 1, sym_comment, - STATE(3383), 1, + STATE(3469), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5334), 17, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332038,55 +342044,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [120707] = 15, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [125654] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, + ACTIONS(5339), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3359), 1, + STATE(3437), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 17, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332098,55 +342102,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [120781] = 16, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [125724] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - STATE(3360), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3438), 1, sym_comment, - STATE(3384), 1, + STATE(3470), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5334), 16, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332158,56 +342159,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [120857] = 16, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [125794] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, + ACTIONS(5339), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3361), 1, + STATE(3439), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 16, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [125866] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3440), 1, + sym_comment, + STATE(3471), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [125938] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3441), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [126012] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, sym__newline, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3442), 1, + sym_comment, + STATE(3472), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [126086] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6413), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3443), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332219,56 +342456,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [120933] = 17, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [126162] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5472), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - STATE(3362), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6387), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3444), 1, sym_comment, - STATE(3385), 1, + STATE(3473), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5334), 15, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [126238] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6413), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6415), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3445), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332280,39 +342578,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [121011] = 12, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token18, + [126316] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5426), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3363), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6387), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6389), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3446), 1, sym_comment, - STATE(3386), 1, + STATE(3474), 1, aux_sym_shebang_repeat1, - ACTIONS(5403), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5401), 27, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332324,45 +342639,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121079] = 9, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token18, + [126394] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5339), 1, sym__newline, - STATE(3364), 1, - sym_comment, - STATE(3388), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5403), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5401), 30, + STATE(3447), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332374,59 +342682,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121141] = 13, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [126458] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5472), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3365), 1, + STATE(3448), 1, sym_comment, - STATE(3390), 1, + STATE(3475), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5401), 23, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332438,37 +342736,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121211] = 7, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [126522] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5339), 1, sym__newline, - STATE(3366), 1, - sym_comment, - STATE(3392), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5403), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5401), 32, + STATE(3449), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5341), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332480,75 +342783,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121269] = 18, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [126584] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5472), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - STATE(3367), 1, + STATE(3450), 1, sym_comment, - STATE(3394), 1, + STATE(3476), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5401), 14, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5349), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332560,59 +342836,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [121349] = 19, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [126646] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5402), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - ACTIONS(6524), 1, - anon_sym_and, - STATE(3368), 1, + STATE(3451), 1, sym_comment, - STATE(3396), 1, + STATE(3477), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5401), 13, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5357), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332624,60 +342878,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [121431] = 20, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [126702] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5496), 1, + ACTIONS(5402), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - ACTIONS(6524), 1, - anon_sym_and, - ACTIONS(6526), 1, - anon_sym_xor, - STATE(3369), 1, + STATE(3452), 1, sym_comment, - STATE(3398), 1, + STATE(3479), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5401), 12, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5357), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332689,23 +342933,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [121515] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [126760] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5545), 1, - aux_sym_cmd_identifier_token41, - STATE(3370), 1, - sym_comment, - ACTIONS(2163), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2165), 35, - ts_builtin_sym_end, + ACTIONS(5402), 1, sym__newline, + STATE(3453), 1, + sym_comment, + STATE(3481), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5357), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332716,55 +342986,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121569] = 11, - ACTIONS(3), 1, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [126820] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5402), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3371), 1, + STATE(3454), 1, sym_comment, - STATE(3402), 1, + STATE(3483), 1, aux_sym_shebang_repeat1, - ACTIONS(5403), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5401), 29, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332776,66 +343054,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121635] = 15, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [126886] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5402), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3372), 1, + STATE(3455), 1, sym_comment, - STATE(3404), 1, + STATE(3485), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5401), 17, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332847,56 +343112,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121709] = 16, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [126954] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5402), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - STATE(3373), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3456), 1, sym_comment, - STATE(3406), 1, + STATE(3487), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5401), 16, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332908,57 +343170,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121785] = 17, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [127024] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(5402), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - STATE(3374), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3457), 1, sym_comment, - STATE(3408), 1, + STATE(3489), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5401), 15, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [127096] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3458), 1, + sym_comment, + STATE(3491), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [127170] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6387), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3459), 1, + sym_comment, + STATE(3493), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [127246] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6387), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6389), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3460), 1, + sym_comment, + STATE(3495), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332970,37 +343412,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [121863] = 11, + aux_sym_expr_binary_parenthesized_token18, + [127324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3375), 1, + ACTIONS(5071), 1, + aux_sym_cmd_identifier_token37, + STATE(3461), 1, sym_comment, - ACTIONS(5300), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5298), 28, + ACTIONS(2133), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333012,45 +343433,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121929] = 8, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [127376] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3376), 1, - sym_comment, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5300), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5298), 31, + ACTIONS(5402), 1, sym__newline, + STATE(3462), 1, + sym_comment, + STATE(3497), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333062,57 +343503,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [121989] = 12, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [127440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3377), 1, + ACTIONS(5071), 1, + aux_sym_cmd_identifier_token37, + STATE(3463), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 24, + ACTIONS(2093), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333124,37 +343535,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122057] = 6, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [127492] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3378), 1, - sym_comment, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5300), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5298), 33, + ACTIONS(5402), 1, sym__newline, + STATE(3464), 1, + sym_comment, + STATE(3499), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5357), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333166,74 +343598,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122113] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [127554] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3379), 1, + STATE(3465), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 15, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5282), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333245,58 +343640,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [122191] = 18, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [127610] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6426), 1, - anon_sym_and, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3380), 1, + STATE(3466), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 14, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5282), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333308,46 +343695,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [122271] = 13, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [127668] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3381), 1, + STATE(3467), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 20, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5282), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333359,39 +343749,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122341] = 10, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [127728] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3382), 1, + STATE(3468), 1, sym_comment, - ACTIONS(5300), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5298), 30, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333403,65 +343816,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122405] = 14, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [127794] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3383), 1, + STATE(3469), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 18, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333473,55 +343874,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122477] = 15, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [127862] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, + ACTIONS(5280), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3384), 1, + STATE(3470), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 17, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333533,56 +343932,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122551] = 16, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [127932] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, + ACTIONS(5280), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3385), 1, + STATE(3471), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 16, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333594,38 +343991,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [122627] = 11, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [128004] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5280), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3386), 1, + STATE(3472), 1, sym_comment, - ACTIONS(5340), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5338), 28, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333637,51 +344051,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122693] = 12, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [128078] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5280), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3387), 1, - sym_comment, - STATE(3410), 1, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6413), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(5344), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5342), 27, + STATE(3473), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333693,44 +344112,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122761] = 8, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [128154] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + ACTIONS(5280), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6413), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6415), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3388), 1, + STATE(3474), 1, sym_comment, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5340), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5338), 31, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333742,48 +344174,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122821] = 9, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token18, + [128232] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5280), 1, sym__newline, - STATE(3389), 1, - sym_comment, - STATE(3411), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5344), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5342), 30, + STATE(3475), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333795,58 +344217,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122883] = 12, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [128296] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3390), 1, + STATE(3476), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 24, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5282), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333858,52 +344264,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [122951] = 13, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [128358] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5288), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3391), 1, - sym_comment, - STATE(3412), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5342), 23, + STATE(3477), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5290), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333915,36 +344306,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [123021] = 6, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [128414] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3392), 1, + STATE(3478), 1, sym_comment, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5340), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5338), 33, + ACTIONS(6417), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + [128464] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3479), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5290), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333956,46 +344408,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [123077] = 7, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [128522] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5387), 1, sym__newline, - STATE(3393), 1, + STATE(3480), 1, sym_comment, - STATE(3413), 1, + STATE(3502), 1, aux_sym_shebang_repeat1, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5344), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5342), 32, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5298), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334007,74 +344459,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [123135] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [128580] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3394), 1, + STATE(3481), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 15, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5290), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334086,57 +344513,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [123213] = 18, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [128640] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5387), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - STATE(3395), 1, + STATE(3482), 1, sym_comment, - STATE(3414), 1, + STATE(3503), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5342), 14, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5298), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334148,58 +344565,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [123293] = 18, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [128700] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6426), 1, - anon_sym_and, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3396), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 14, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334211,58 +344632,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [123373] = 19, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [128766] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5387), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - ACTIONS(6524), 1, - anon_sym_and, - STATE(3397), 1, + STATE(3484), 1, sym_comment, - STATE(3415), 1, + STATE(3504), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5342), 13, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334274,59 +344687,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [123455] = 19, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [128832] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6426), 1, - anon_sym_and, - ACTIONS(6428), 1, - anon_sym_xor, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3398), 1, + STATE(3485), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 13, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [128900] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + STATE(3486), 1, + sym_comment, + STATE(3505), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [128968] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3487), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334338,59 +344859,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [123537] = 20, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [129038] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5496), 1, + ACTIONS(5387), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - ACTIONS(6524), 1, - anon_sym_and, - ACTIONS(6526), 1, - anon_sym_xor, - STATE(3399), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3488), 1, sym_comment, - STATE(3416), 1, + STATE(3506), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5342), 12, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334402,45 +344916,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [123621] = 13, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [129108] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5288), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3400), 1, + STATE(3489), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 20, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334452,53 +344975,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [123691] = 14, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [129180] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5387), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3401), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3490), 1, sym_comment, - STATE(3417), 1, + STATE(3507), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5342), 19, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334510,39 +345033,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [123763] = 10, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [129252] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5288), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3402), 1, + STATE(3491), 1, sym_comment, - ACTIONS(5340), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5338), 30, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334554,50 +345093,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [123827] = 11, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [129326] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5387), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3403), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3492), 1, sym_comment, - STATE(3418), 1, + STATE(3508), 1, aux_sym_shebang_repeat1, - ACTIONS(5344), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5342), 29, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334609,65 +345152,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [123893] = 14, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [129400] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5288), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6413), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3404), 1, + STATE(3493), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 18, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334679,54 +345213,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [123965] = 15, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [129476] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5387), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3405), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6387), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3494), 1, sym_comment, - STATE(3419), 1, + STATE(3509), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5342), 17, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334738,55 +345273,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [124039] = 15, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [129552] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, + ACTIONS(5288), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6413), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6415), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3406), 1, + STATE(3495), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 17, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334798,55 +345335,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [124113] = 16, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token18, + [129630] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5426), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - STATE(3407), 1, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6387), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6389), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3496), 1, sym_comment, - STATE(3420), 1, + STATE(3510), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5342), 16, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334858,56 +345396,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [124189] = 16, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token18, + [129708] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3408), 1, + STATE(3497), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 16, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334919,56 +345439,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [124265] = 17, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [129772] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, + ACTIONS(5387), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - STATE(3409), 1, + STATE(3498), 1, sym_comment, - STATE(3421), 1, + STATE(3511), 1, aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5342), 15, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334980,38 +345493,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [124343] = 11, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [129836] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3410), 1, + STATE(3499), 1, sym_comment, - ACTIONS(5287), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5285), 28, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5290), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335023,44 +345540,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [124409] = 8, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [129898] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3411), 1, - sym_comment, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5287), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5285), 31, + ACTIONS(5387), 1, sym__newline, + STATE(3500), 1, + sym_comment, + STATE(3512), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5298), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335072,58 +345593,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [124469] = 12, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [129960] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3412), 1, + STATE(3501), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 24, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5310), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335135,36 +345635,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [124537] = 6, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [130016] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3413), 1, + STATE(3502), 1, sym_comment, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5287), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5285), 33, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5310), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335176,74 +345690,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [124593] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [130074] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3414), 1, + STATE(3503), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 15, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5310), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335255,58 +345744,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [124671] = 18, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [130134] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6426), 1, - anon_sym_and, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3415), 1, + STATE(3504), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 14, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335318,59 +345811,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [124751] = 19, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [130200] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6426), 1, - anon_sym_and, - ACTIONS(6428), 1, - anon_sym_xor, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3416), 1, + STATE(3505), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 13, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335382,45 +345869,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [124833] = 13, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [130268] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5308), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3417), 1, + STATE(3506), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 20, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335432,39 +345927,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [124903] = 10, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [130338] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5308), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3418), 1, + STATE(3507), 1, sym_comment, - ACTIONS(5287), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5285), 30, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335476,65 +345986,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [124967] = 14, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [130410] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(5308), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3419), 1, + STATE(3508), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 18, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335546,55 +346046,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125039] = 15, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [130484] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, + ACTIONS(5308), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6413), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3420), 1, + STATE(3509), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 17, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335606,56 +346107,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125113] = 16, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [130560] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DASH, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, + ACTIONS(5308), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6413), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6415), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(3421), 1, + STATE(3510), 1, sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 16, - sym__newline, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335667,35 +346169,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [125189] = 8, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token18, + [130638] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3891), 1, - anon_sym_DOT, - STATE(1231), 1, - aux_sym_cell_path_repeat1, - STATE(1261), 1, - sym_path, - STATE(3262), 1, - sym_cell_path, - STATE(3422), 1, - sym_comment, - ACTIONS(883), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(885), 28, + ACTIONS(5308), 1, sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3511), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335707,84 +346212,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [125249] = 10, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [130702] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, - anon_sym_list, - ACTIONS(6454), 1, - anon_sym_AT, - ACTIONS(6530), 1, - anon_sym_GT, - STATE(3423), 1, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3512), 1, sym_comment, - STATE(7117), 1, - sym__all_type, - STATE(7886), 1, - sym_param_cmd, - ACTIONS(6368), 2, - anon_sym_table, - anon_sym_record, - STATE(5811), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6366), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [125313] = 5, - ACTIONS(121), 1, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5310), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [130764] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5026), 1, - aux_sym_cmd_identifier_token37, - STATE(3424), 1, + ACTIONS(5430), 1, + aux_sym_cmd_identifier_token41, + STATE(3513), 1, sym_comment, - ACTIONS(2075), 17, + ACTIONS(2101), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335797,43 +346297,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2073), 23, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125367] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5026), 1, - aux_sym_cmd_identifier_token37, - STATE(3425), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [130816] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + aux_sym_cmd_identifier_token41, + STATE(3514), 1, sym_comment, - ACTIONS(2081), 17, + ACTIONS(2107), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335846,77 +346345,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2077), 23, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_LT2, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125421] = 15, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [130868] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - ACTIONS(6488), 1, - anon_sym_bit_DASHand, - ACTIONS(6490), 1, - anon_sym_bit_DASHxor, - STATE(3426), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6468), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6478), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6486), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6480), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6484), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 17, + ACTIONS(1953), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1955), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335929,26 +346402,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_bit_DASHor, - [125495] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130920] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5545), 1, - aux_sym_cmd_identifier_token41, - STATE(3427), 1, + STATE(3516), 1, sym_comment, - ACTIONS(2155), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2159), 35, - ts_builtin_sym_end, + ACTIONS(1943), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1945), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335960,68 +346449,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125549] = 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130972] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(2131), 1, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - STATE(3400), 1, - aux_sym_shebang_repeat1, - STATE(3428), 1, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(3517), 1, sym_comment, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5401), 19, + ACTIONS(2133), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336033,179 +346490,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125621] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6534), 1, - aux_sym__immediate_decimal_token2, - STATE(3429), 1, - sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 29, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [125676] = 11, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [131026] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2858), 1, - anon_sym_DOT_DOT2, - ACTIONS(6536), 1, - sym_filesize_unit, - ACTIONS(6538), 1, - sym_duration_unit, - STATE(3430), 1, - sym_comment, - STATE(7514), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2862), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4687), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 26, - sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125741] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token2, - STATE(3431), 1, - sym_comment, - ACTIONS(1398), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 30, + ACTIONS(2089), 1, sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [125794] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3432), 1, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(3518), 1, sym_comment, - ACTIONS(2248), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3511), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2093), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336216,92 +346538,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2250), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125847] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [131080] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6474), 1, - aux_sym__immediate_decimal_token2, - STATE(3433), 1, + STATE(3519), 1, sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 30, + ACTIONS(6419), 41, sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [125900] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + [131130] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3434), 1, + ACTIONS(2097), 1, + sym__newline, + ACTIONS(5335), 1, + aux_sym_cmd_identifier_token41, + STATE(3520), 1, sym_comment, - ACTIONS(2077), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2081), 35, - ts_builtin_sym_end, + ACTIONS(2101), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [131184] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2105), 1, sym__newline, + ACTIONS(5335), 1, + aux_sym_cmd_identifier_token41, + STATE(3521), 1, + sym_comment, + ACTIONS(2107), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336312,50 +346683,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [125951] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6370), 1, - anon_sym_list, - STATE(3435), 1, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [131238] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3522), 1, sym_comment, - STATE(3439), 1, - aux_sym__multiple_types_repeat2, - STATE(6953), 1, - sym__one_type, - STATE(7718), 1, - sym__type_annotation, - ACTIONS(6368), 2, - anon_sym_table, - anon_sym_record, - STATE(6876), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6421), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336385,126 +346752,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, + anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [126012] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6542), 1, - aux_sym__immediate_decimal_token2, - STATE(3436), 1, - sym_comment, - ACTIONS(1376), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 30, - sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [126065] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6544), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6546), 1, - aux_sym__immediate_decimal_token2, - STATE(3437), 1, - sym_comment, - ACTIONS(1368), 10, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 28, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_record, + anon_sym_list, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [126120] = 9, - ACTIONS(3), 1, + anon_sym_RBRACE, + [131288] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, + ACTIONS(6429), 1, anon_sym_list, - STATE(3438), 1, - sym_comment, - STATE(3439), 1, - aux_sym__multiple_types_repeat2, - STATE(7302), 1, + STATE(7702), 1, sym__one_type, - STATE(7718), 1, + STATE(7846), 1, sym__type_annotation, - ACTIONS(6368), 2, + ACTIONS(6426), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(3523), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6423), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336536,26 +346810,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [126181] = 8, - ACTIONS(3), 1, + [131347] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6554), 1, + ACTIONS(6296), 1, anon_sym_list, - STATE(7604), 1, + STATE(3523), 1, + aux_sym__multiple_types_repeat2, + STATE(3524), 1, + sym_comment, + STATE(7236), 1, sym__one_type, - STATE(7718), 1, + STATE(7846), 1, sym__type_annotation, - ACTIONS(6551), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(3439), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6876), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6548), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336587,268 +346862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [126240] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6557), 1, - anon_sym_DOT, - STATE(3440), 1, - sym_comment, - ACTIONS(1398), 8, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 30, - sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [126295] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3441), 1, - sym_comment, - ACTIONS(916), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(918), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126346] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3442), 1, - sym_comment, - ACTIONS(920), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(922), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126397] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3443), 1, - sym_comment, - ACTIONS(912), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(914), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126448] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - STATE(3444), 1, - sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6570), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [126511] = 7, - ACTIONS(3), 1, + [131408] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3445), 1, + STATE(3525), 1, sym_comment, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3457), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(3449), 31, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(3601), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336861,55 +346883,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [126568] = 11, - ACTIONS(3), 1, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [131459] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - STATE(3446), 1, + STATE(3526), 1, sym_comment, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6570), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6572), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6574), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 24, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 34, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336922,110 +346935,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [126633] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [131512] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3447), 1, - sym_comment, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3457), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3449), 33, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [126686] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - ACTIONS(6580), 1, - anon_sym_bit_DASHand, - ACTIONS(6582), 1, - anon_sym_bit_DASHxor, - ACTIONS(6584), 1, - anon_sym_bit_DASHor, - STATE(3448), 1, + STATE(3527), 1, sym_comment, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6570), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6572), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6578), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6574), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6576), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 15, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337038,55 +346986,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [126761] = 17, - ACTIONS(3), 1, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [131567] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - ACTIONS(6580), 1, - anon_sym_bit_DASHand, - ACTIONS(6582), 1, - anon_sym_bit_DASHxor, - ACTIONS(6584), 1, - anon_sym_bit_DASHor, - ACTIONS(6586), 1, - anon_sym_and, - STATE(3449), 1, + STATE(3528), 1, sym_comment, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6570), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6572), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6578), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6574), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6576), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 14, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6438), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6440), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6442), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337099,56 +347050,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor, - anon_sym_or, - [126838] = 18, - ACTIONS(3), 1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [131628] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - ACTIONS(6580), 1, - anon_sym_bit_DASHand, - ACTIONS(6582), 1, - anon_sym_bit_DASHxor, - ACTIONS(6584), 1, - anon_sym_bit_DASHor, - ACTIONS(6586), 1, - anon_sym_and, - ACTIONS(6588), 1, - anon_sym_xor, - STATE(3450), 1, + STATE(3529), 1, sym_comment, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6570), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6572), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6578), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6574), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6576), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 13, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6438), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6444), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6440), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6442), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337161,42 +347105,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [126917] = 12, - ACTIONS(3), 1, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [131691] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - STATE(3451), 1, + ACTIONS(6446), 1, + aux_sym_expr_binary_token13, + STATE(3530), 1, sym_comment, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6570), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6572), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6574), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6576), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 20, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6438), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6444), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6440), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6442), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337209,36 +347160,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [126984] = 9, - ACTIONS(3), 1, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [131756] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - STATE(3452), 1, + ACTIONS(6446), 1, + aux_sym_expr_binary_token13, + ACTIONS(6448), 1, + aux_sym_expr_binary_token14, + STATE(3531), 1, sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3449), 30, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6438), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6444), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6440), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6442), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337251,62 +347216,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [127045] = 13, - ACTIONS(3), 1, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [131823] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - STATE(3453), 1, + ACTIONS(6446), 1, + aux_sym_expr_binary_token13, + ACTIONS(6448), 1, + aux_sym_expr_binary_token14, + ACTIONS(6450), 1, + aux_sym_expr_binary_token15, + STATE(3532), 1, sym_comment, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6570), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6572), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6578), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6574), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6576), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 18, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6438), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6444), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6440), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6442), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337319,52 +347273,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [127114] = 14, - ACTIONS(3), 1, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [131892] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - ACTIONS(6580), 1, - anon_sym_bit_DASHand, - STATE(3454), 1, + ACTIONS(6446), 1, + aux_sym_expr_binary_token13, + ACTIONS(6448), 1, + aux_sym_expr_binary_token14, + ACTIONS(6450), 1, + aux_sym_expr_binary_token15, + ACTIONS(6452), 1, + aux_sym_expr_binary_token16, + STATE(3533), 1, sym_comment, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6570), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6572), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6578), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6574), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6576), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 17, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6438), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6444), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6440), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6442), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337377,53 +347331,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [127185] = 15, - ACTIONS(3), 1, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [131963] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - ACTIONS(6580), 1, - anon_sym_bit_DASHand, - ACTIONS(6582), 1, - anon_sym_bit_DASHxor, - STATE(3455), 1, + ACTIONS(6446), 1, + aux_sym_expr_binary_token13, + ACTIONS(6448), 1, + aux_sym_expr_binary_token14, + ACTIONS(6450), 1, + aux_sym_expr_binary_token15, + ACTIONS(6452), 1, + aux_sym_expr_binary_token16, + ACTIONS(6454), 1, + aux_sym_expr_binary_token17, + STATE(3534), 1, sym_comment, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6570), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6572), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6578), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6574), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6576), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 16, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6438), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6444), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6440), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6442), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337436,22 +347390,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [127258] = 4, - ACTIONS(3), 1, + aux_sym_expr_binary_token18, + [132036] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3456), 1, + STATE(3535), 1, sym_comment, - ACTIONS(2155), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2159), 35, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6438), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6442), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337464,41 +347430,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [127309] = 4, - ACTIONS(3), 1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [132095] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3457), 1, + STATE(3536), 1, sym_comment, - ACTIONS(2163), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2165), 35, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6438), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 30, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337511,88 +347474,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [127360] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6590), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6592), 1, - aux_sym__immediate_decimal_token2, - STATE(3458), 1, - sym_comment, - ACTIONS(1368), 13, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(1370), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [127415] = 6, - ACTIONS(3), 1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [132152] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6398), 1, + ACTIONS(6327), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6594), 1, + ACTIONS(6456), 1, anon_sym_DOT, - STATE(3459), 1, + STATE(3537), 1, sym_comment, - ACTIONS(1518), 9, + ACTIONS(1589), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -337602,7 +347511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1520), 29, + ACTIONS(1591), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337632,202 +347541,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [127470] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(3215), 1, - aux_sym_unquoted_token1, - ACTIONS(4095), 1, - anon_sym_DOT_DOT, - ACTIONS(4099), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4103), 1, - anon_sym_DOT2, - ACTIONS(4105), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5948), 1, - sym_val_date, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - STATE(3460), 1, - sym_comment, - STATE(5818), 1, - sym__val_number_decimal, - STATE(6010), 1, - sym_val_variable, - STATE(6011), 1, - sym_unquoted, - STATE(7523), 1, - sym__val_range, - STATE(7785), 1, - sym_val_bool, - STATE(7978), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(4085), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4097), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5936), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2454), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127556] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6412), 1, - anon_sym_DOLLAR, - ACTIONS(6596), 1, - anon_sym_DOT, - STATE(3461), 1, - sym_comment, - STATE(3699), 1, - sym__immediate_decimal, - ACTIONS(6416), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3572), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1404), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1416), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127620] = 6, - ACTIONS(3), 1, + [132207] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6598), 1, + ACTIONS(6458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6600), 1, + ACTIONS(6460), 1, aux_sym__immediate_decimal_token2, - STATE(3462), 1, + STATE(3538), 1, sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 28, + ACTIONS(1481), 3, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 35, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [127674] = 11, - ACTIONS(3), 1, + [132262] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - STATE(3463), 1, + STATE(3539), 1, sym_comment, - STATE(3685), 1, - sym__immediate_decimal, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3530), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1404), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1416), 22, + ACTIONS(3537), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337839,48 +347608,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127738] = 11, - ACTIONS(3), 1, + ACTIONS(2317), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [132313] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - STATE(3464), 1, + STATE(3540), 1, sym_comment, - STATE(3676), 1, - sym__immediate_decimal, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3512), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1423), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1425), 22, + ACTIONS(2093), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337889,654 +347652,542 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_GT_PIPE, anon_sym_o_GT_PIPE, anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127802] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6602), 1, - aux_sym__immediate_decimal_token2, - STATE(3465), 1, - sym_comment, - ACTIONS(1398), 10, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 28, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [127854] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3466), 1, - sym_comment, - ACTIONS(1376), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 30, - sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [127904] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3467), 1, - sym_comment, - ACTIONS(1504), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1506), 30, - sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [127954] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6534), 1, - aux_sym__immediate_decimal_token2, - STATE(3468), 1, - sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 29, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [128006] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3469), 1, - sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 30, - sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [128056] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6604), 1, - aux_sym__immediate_decimal_token2, - STATE(3470), 1, - sym_comment, - ACTIONS(1376), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 29, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [128108] = 5, - ACTIONS(3), 1, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [132362] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6462), 1, + anon_sym_DOT, + ACTIONS(6464), 1, aux_sym__immediate_decimal_token2, - STATE(3471), 1, + STATE(3541), 1, sym_comment, - ACTIONS(1368), 10, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1473), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 28, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + aux_sym_unquoted_token2, + ACTIONS(1475), 36, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [128160] = 5, - ACTIONS(3), 1, + [132417] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6606), 1, + STATE(3542), 1, + sym_comment, + ACTIONS(2101), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [132466] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6466), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6468), 1, aux_sym__immediate_decimal_token2, - STATE(3472), 1, + STATE(3543), 1, sym_comment, - ACTIONS(1398), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1481), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 29, + aux_sym_unquoted_token2, + ACTIONS(1483), 36, sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [128212] = 8, - ACTIONS(3), 1, + [132521] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6608), 1, - anon_sym_DOT, - STATE(1472), 1, - sym_path, - STATE(1577), 1, - sym_cell_path, - STATE(3473), 1, + ACTIONS(3540), 1, + sym__newline, + STATE(3544), 1, sym_comment, - STATE(3498), 1, - aux_sym_cell_path_repeat1, - ACTIONS(883), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - ACTIONS(885), 29, + ACTIONS(3537), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128270] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + ACTIONS(2317), 28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [132574] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6610), 1, + ACTIONS(6470), 1, anon_sym_DOT, - ACTIONS(6613), 1, + ACTIONS(6472), 1, aux_sym__immediate_decimal_token2, - STATE(3474), 1, + STATE(3545), 1, sym_comment, - ACTIONS(1398), 12, - anon_sym_DOLLAR, + ACTIONS(1473), 3, anon_sym_DASH, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(1400), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + aux_sym_unquoted_token2, + ACTIONS(1475), 35, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [128324] = 5, - ACTIONS(3), 1, + [132629] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6613), 1, - aux_sym__immediate_decimal_token2, - STATE(3475), 1, + STATE(3546), 1, sym_comment, - ACTIONS(1398), 13, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(2107), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [132678] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6296), 1, + anon_sym_list, + STATE(3523), 1, + aux_sym__multiple_types_repeat2, + STATE(3547), 1, + sym_comment, + STATE(7533), 1, + sym__one_type, + STATE(7846), 1, + sym__type_annotation, + ACTIONS(6294), 2, + anon_sym_table, + anon_sym_record, + STATE(6391), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6292), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [132739] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6474), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(1400), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + STATE(3548), 1, + sym_comment, + ACTIONS(6476), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [128376] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6615), 1, - aux_sym__immediate_decimal_token2, - STATE(3476), 1, - sym_comment, - ACTIONS(1376), 10, - anon_sym_GT, + ACTIONS(2066), 9, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 28, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2072), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132793] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6478), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6480), 1, + aux_sym__immediate_decimal_token2, + STATE(3549), 1, + sym_comment, + ACTIONS(1481), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 34, + aux_sym_ctrl_match_token1, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [128428] = 5, - ACTIONS(3), 1, + [132847] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6592), 1, + ACTIONS(6482), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6484), 1, aux_sym__immediate_decimal_token2, - STATE(3477), 1, + STATE(3550), 1, sym_comment, - ACTIONS(1368), 13, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(1481), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(1370), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + aux_sym_unquoted_token2, + ACTIONS(1483), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [128480] = 5, - ACTIONS(3), 1, + [132901] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6617), 1, + ACTIONS(6486), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6488), 1, aux_sym__immediate_decimal_token2, - STATE(3478), 1, + STATE(3551), 1, sym_comment, - ACTIONS(1376), 13, + ACTIONS(1481), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(1378), 25, + aux_sym_unquoted_token2, + ACTIONS(1483), 26, anon_sym_true, anon_sym_false, anon_sym_null, @@ -338551,6 +348202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -338562,251 +348214,251 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [128532] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4798), 1, - anon_sym_DOT, - STATE(1585), 1, - aux_sym_cell_path_repeat1, - STATE(1694), 1, - sym_path, - STATE(3262), 1, - sym_cell_path, - STATE(3479), 1, - sym_comment, - ACTIONS(883), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(885), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [128590] = 6, - ACTIONS(3), 1, + [132955] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6602), 1, + ACTIONS(6490), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6619), 1, - anon_sym_DOT, - STATE(3480), 1, + STATE(3552), 1, sym_comment, - ACTIONS(1398), 9, - anon_sym_GT, + ACTIONS(1519), 3, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 28, + aux_sym_unquoted_token2, + ACTIONS(1521), 35, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [128644] = 6, - ACTIONS(3), 1, + [133007] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6606), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6622), 1, + ACTIONS(6492), 1, anon_sym_DOT, - STATE(3481), 1, + STATE(3553), 1, sym_comment, - ACTIONS(1398), 8, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 29, - sym__newline, + STATE(3573), 1, + aux_sym_cell_path_repeat1, + STATE(3647), 1, + sym_path, + STATE(3698), 1, + sym_cell_path, + ACTIONS(945), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT_DOT2, + ACTIONS(947), 33, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [128698] = 11, - ACTIONS(3), 1, + [133065] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - ACTIONS(2858), 1, + ACTIONS(2949), 1, anon_sym_DOT_DOT2, - ACTIONS(6625), 1, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + ACTIONS(6494), 1, sym_filesize_unit, - ACTIONS(6627), 1, + ACTIONS(6496), 1, sym_duration_unit, - STATE(3482), 1, + STATE(3554), 1, sym_comment, - STATE(7514), 1, + STATE(7615), 1, sym__expr_parenthesized_immediate, - ACTIONS(2862), 2, + ACTIONS(2951), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4687), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 25, + ACTIONS(1537), 31, sym__newline, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [133127] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6492), 1, + anon_sym_DOT, + STATE(1528), 1, + sym_cell_path, + STATE(3555), 1, + sym_comment, + STATE(3573), 1, + aux_sym_cell_path_repeat1, + STATE(3647), 1, + sym_path, + ACTIONS(1599), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT_DOT2, + ACTIONS(1603), 33, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [128762] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(3215), 1, - aux_sym_unquoted_token1, - ACTIONS(4095), 1, - anon_sym_DOT_DOT, - ACTIONS(4099), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133185] = 22, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, + ACTIONS(3231), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4103), 1, - anon_sym_DOT2, - ACTIONS(4105), 1, + ACTIONS(3233), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5948), 1, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3241), 1, + aux_sym_unquoted_token1, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(4256), 1, + anon_sym_DOT_DOT, + ACTIONS(5875), 1, sym_val_date, - ACTIONS(6400), 1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - STATE(3483), 1, + STATE(3556), 1, sym_comment, - STATE(5818), 1, - sym__val_number_decimal, - STATE(6010), 1, + STATE(5988), 1, sym_val_variable, - STATE(6011), 1, + STATE(5999), 1, sym_unquoted, - STATE(7523), 1, - sym__val_range, - STATE(7785), 1, - sym_val_bool, - STATE(7978), 1, + STATE(6029), 1, + sym__val_number_decimal, + STATE(7765), 1, sym__unquoted_anonymous_prefix, - ACTIONS(4085), 2, + STATE(7919), 1, + sym_val_bool, + STATE(8049), 1, + sym__val_range, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - ACTIONS(4097), 2, + ACTIONS(4258), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5936), 3, + ACTIONS(5869), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(2454), 8, + ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338815,7 +348467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, + ACTIONS(2507), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -338825,169 +348477,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [128848] = 10, - ACTIONS(3), 1, + [133271] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4687), 1, - aux_sym_unquoted_token4, - ACTIONS(4744), 1, - anon_sym_DOT, - ACTIONS(4746), 1, - aux_sym_unquoted_token6, - STATE(3484), 1, + ACTIONS(6464), 1, + aux_sym__immediate_decimal_token2, + STATE(3557), 1, sym_comment, - STATE(5940), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 26, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 36, sym__newline, anon_sym_COMMA, - anon_sym_in, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [128910] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2858), 1, - anon_sym_DOT_DOT2, - ACTIONS(6631), 1, - sym_filesize_unit, - ACTIONS(6633), 1, - sym_duration_unit, - STATE(3485), 1, - sym_comment, - STATE(7477), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2862), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6629), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1429), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [128974] = 8, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [133323] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6608), 1, - anon_sym_DOT, - STATE(1472), 1, - sym_path, - STATE(1552), 1, - sym_cell_path, - STATE(3486), 1, - sym_comment, - STATE(3498), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1545), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(6498), 1, anon_sym_DOT_DOT2, - ACTIONS(1549), 29, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + STATE(3558), 1, + sym_comment, + ACTIONS(6500), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [129032] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6635), 1, - aux_sym__immediate_decimal_token1, - STATE(3487), 1, - sym_comment, - ACTIONS(2263), 9, + ACTIONS(1972), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -338997,7 +348544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2267), 29, + ACTIONS(1978), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339012,10 +348559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -339027,105 +348572,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [129084] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6637), 1, - anon_sym_DOT, - STATE(1472), 1, - sym_path, - STATE(3488), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - ACTIONS(895), 29, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129137] = 5, - ACTIONS(3), 1, + [133377] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6640), 1, + ACTIONS(6502), 1, aux_sym__immediate_decimal_token2, - STATE(3489), 1, + STATE(3559), 1, sym_comment, - ACTIONS(1398), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1519), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 28, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + aux_sym_unquoted_token2, + ACTIONS(1521), 36, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [129188] = 4, - ACTIONS(3), 1, + [133429] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3490), 1, + ACTIONS(6504), 1, + anon_sym_DOT_DOT2, + STATE(3560), 1, sym_comment, - ACTIONS(2313), 9, + ACTIONS(6506), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1960), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -339135,7 +348639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2315), 29, + ACTIONS(1966), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339150,10 +348654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -339165,12 +348667,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [129237] = 4, - ACTIONS(3), 1, + [133483] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3491), 1, + ACTIONS(1525), 1, + anon_sym_DASH, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(2949), 1, + anon_sym_DOT_DOT2, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + ACTIONS(6508), 1, + sym_filesize_unit, + ACTIONS(6510), 1, + sym_duration_unit, + STATE(3561), 1, + sym_comment, + STATE(7615), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2951), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 30, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [133547] = 22, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(3241), 1, + aux_sym_unquoted_token1, + ACTIONS(4256), 1, + anon_sym_DOT_DOT, + ACTIONS(5875), 1, + sym_val_date, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + STATE(3562), 1, + sym_comment, + STATE(5988), 1, + sym_val_variable, + STATE(5999), 1, + sym_unquoted, + STATE(6029), 1, + sym__val_number_decimal, + STATE(7765), 1, + sym__unquoted_anonymous_prefix, + STATE(7919), 1, + sym_val_bool, + STATE(8049), 1, + sym__val_range, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4258), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5869), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2505), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2507), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133633] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6512), 1, + anon_sym_DOT_DOT2, + STATE(3563), 1, sym_comment, - ACTIONS(2289), 9, + ACTIONS(6514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1935), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -339180,7 +348804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2291), 29, + ACTIONS(1941), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339195,10 +348819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -339210,35 +348832,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [129286] = 9, - ACTIONS(3), 1, + [133687] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4075), 1, + ACTIONS(6516), 1, + anon_sym_DOT, + ACTIONS(6518), 1, + aux_sym__immediate_decimal_token2, + STATE(3564), 1, + sym_comment, + ACTIONS(1473), 2, anon_sym_DOT_DOT2, - ACTIONS(6644), 1, + aux_sym_unquoted_token2, + ACTIONS(1475), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6646), 1, sym_duration_unit, - STATE(3492), 1, + [133741] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6520), 1, + anon_sym_DOT, + ACTIONS(6522), 1, + aux_sym__immediate_decimal_token2, + STATE(3565), 1, sym_comment, - ACTIONS(4079), 2, + ACTIONS(1473), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6642), 2, + sym_filesize_unit, + sym_duration_unit, + [133795] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6524), 1, anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1429), 10, + ACTIONS(6526), 1, + aux_sym__immediate_decimal_token2, + STATE(3566), 1, + sym_comment, + ACTIONS(1473), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1441), 21, + aux_sym_unquoted_token2, + ACTIONS(1475), 26, anon_sym_true, anon_sym_false, anon_sym_null, @@ -339249,296 +348960,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, aux_sym_ctrl_match_token1, aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129345] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3493), 1, - sym_comment, - ACTIONS(1504), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1506), 29, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [129394] = 4, - ACTIONS(3), 1, + [133849] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3494), 1, + ACTIONS(6472), 1, + aux_sym__immediate_decimal_token2, + STATE(3567), 1, sym_comment, - ACTIONS(2281), 9, + ACTIONS(1473), 3, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2283), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [129443] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3495), 1, - sym_comment, - ACTIONS(1376), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 29, - sym__newline, - anon_sym_DASH, - anon_sym_in, + aux_sym_unquoted_token2, + ACTIONS(1475), 35, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [129492] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3496), 1, - sym_comment, - ACTIONS(2285), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2287), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [129541] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3497), 1, - sym_comment, - ACTIONS(2301), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2303), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [129590] = 7, - ACTIONS(3), 1, + [133901] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6608), 1, - anon_sym_DOT, - STATE(1472), 1, - sym_path, - STATE(3488), 1, - aux_sym_cell_path_repeat1, - STATE(3498), 1, - sym_comment, - ACTIONS(889), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - ACTIONS(891), 29, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129645] = 4, - ACTIONS(3), 1, + ACTIONS(6296), 1, + anon_sym_list, + STATE(3568), 1, + sym_comment, + STATE(5814), 1, + sym__all_type, + ACTIONS(6294), 2, + anon_sym_table, + anon_sym_record, + STATE(5944), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6292), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [133956] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3499), 1, + STATE(3569), 1, sym_comment, - ACTIONS(2297), 9, + ACTIONS(2413), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -339548,7 +349086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2299), 29, + ACTIONS(2415), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339578,12 +349116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [129694] = 4, - ACTIONS(3), 1, + [134005] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3500), 1, + STATE(3570), 1, sym_comment, - ACTIONS(2305), 9, + ACTIONS(2401), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -339593,7 +349131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2307), 29, + ACTIONS(2403), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339623,98 +349161,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [129743] = 7, - ACTIONS(3), 1, + [134054] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6652), 1, - anon_sym_list, - STATE(3501), 1, + ACTIONS(6526), 1, + aux_sym__immediate_decimal_token2, + STATE(3571), 1, sym_comment, - STATE(7561), 1, - sym__type_annotation, - ACTIONS(6650), 2, - anon_sym_table, - anon_sym_record, - STATE(7587), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6648), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [129798] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3215), 1, - aux_sym_unquoted_token1, - ACTIONS(4095), 1, + ACTIONS(1473), 11, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(4099), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1475), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - ACTIONS(4103), 1, - anon_sym_DOT2, - ACTIONS(4105), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5948), 1, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134105] = 21, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3241), 1, + aux_sym_unquoted_token1, + ACTIONS(4256), 1, + anon_sym_DOT_DOT, + ACTIONS(5875), 1, sym_val_date, - ACTIONS(6400), 1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - STATE(3502), 1, + STATE(3572), 1, sym_comment, - STATE(5818), 1, - sym__val_number_decimal, - STATE(6010), 1, + STATE(5988), 1, sym_val_variable, - STATE(6011), 1, + STATE(5999), 1, sym_unquoted, - STATE(7523), 1, - sym__val_range, - STATE(7785), 1, - sym_val_bool, - STATE(7978), 1, + STATE(6029), 1, + sym__val_number_decimal, + STATE(7765), 1, sym__unquoted_anonymous_prefix, - ACTIONS(4085), 2, + STATE(7919), 1, + sym_val_bool, + STATE(8049), 1, + sym__val_range, + ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - ACTIONS(4097), 2, + ACTIONS(4258), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5936), 3, + ACTIONS(5869), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(2454), 8, + ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339723,7 +349259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, + ACTIONS(2507), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -339733,119 +349269,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [129881] = 10, - ACTIONS(3), 1, + [134188] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6629), 1, - aux_sym_unquoted_token4, - ACTIONS(6654), 1, + ACTIONS(6492), 1, anon_sym_DOT, - ACTIONS(6656), 1, - aux_sym_unquoted_token6, - STATE(3503), 1, + STATE(3573), 1, sym_comment, - STATE(5940), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, + STATE(3575), 1, + aux_sym_cell_path_repeat1, + STATE(3647), 1, + sym_path, + ACTIONS(951), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 25, + anon_sym_DOT_DOT2, + ACTIONS(953), 33, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [129942] = 4, - ACTIONS(3), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [134243] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3504), 1, + STATE(3574), 1, sym_comment, - ACTIONS(1368), 13, - anon_sym_DOLLAR, + ACTIONS(1585), 3, anon_sym_DASH, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 35, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [134292] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6528), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(1370), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3647), 1, + sym_path, + ACTIONS(955), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + STATE(3575), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(957), 33, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [134345] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6531), 1, + anon_sym_DOT, + ACTIONS(6533), 1, + aux_sym__immediate_decimal_token2, + STATE(3576), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, + [134398] = 21, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3229), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3231), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3233), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3235), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5875), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [129991] = 7, - ACTIONS(3), 1, + ACTIONS(5928), 1, + anon_sym_DOT_DOT, + ACTIONS(5936), 1, + aux_sym_unquoted_token1, + ACTIONS(6535), 1, + anon_sym_DOLLAR, + STATE(3577), 1, + sym_comment, + STATE(6148), 1, + sym__val_number_decimal, + STATE(6239), 1, + sym_val_variable, + STATE(6240), 1, + sym_unquoted, + STATE(7735), 1, + sym__unquoted_anonymous_prefix, + STATE(7919), 1, + sym_val_bool, + STATE(7928), 1, + sym__val_range, + ACTIONS(3213), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5930), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5922), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2505), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2507), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [134481] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6662), 1, + ACTIONS(6296), 1, anon_sym_list, - STATE(3505), 1, + STATE(3578), 1, sym_comment, - STATE(5066), 1, + STATE(7773), 1, sym__type_annotation, - ACTIONS(6660), 2, + ACTIONS(6294), 2, anon_sym_table, anon_sym_record, - STATE(5169), 3, + STATE(6391), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6658), 31, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -339877,50 +349566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130046] = 21, - ACTIONS(3), 1, + [134536] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4099), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4101), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4105), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5948), 1, - sym_val_date, - ACTIONS(6037), 1, - aux_sym_unquoted_token1, - ACTIONS(6132), 1, - anon_sym_DOT_DOT, - ACTIONS(6136), 1, - anon_sym_DOT2, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - STATE(3506), 1, + STATE(3579), 1, sym_comment, - STATE(5877), 1, - sym__val_number_decimal, - STATE(6220), 1, - sym_unquoted, - STATE(6356), 1, - sym_val_variable, - STATE(7470), 1, - sym__val_range, - STATE(7741), 1, - sym__unquoted_anonymous_prefix, - STATE(7785), 1, - sym_val_bool, - ACTIONS(4085), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6134), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(6021), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2454), 8, + ACTIONS(2066), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339929,8 +349581,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 9, - anon_sym_null, + ACTIONS(2072), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339939,23 +349611,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130129] = 7, - ACTIONS(3), 1, + [134585] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, + ACTIONS(6541), 1, anon_sym_list, - STATE(3507), 1, + STATE(3580), 1, sym_comment, - STATE(7957), 1, + STATE(7638), 1, sym__type_annotation, - ACTIONS(6368), 2, + ACTIONS(6539), 2, anon_sym_table, anon_sym_record, - STATE(6876), 3, + STATE(7591), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6366), 31, + ACTIONS(6537), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -339987,148 +349659,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130184] = 4, - ACTIONS(3), 1, + [134640] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3508), 1, + STATE(3581), 1, sym_comment, - ACTIONS(1368), 10, - anon_sym_GT, + ACTIONS(1972), 9, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 28, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1978), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [130233] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [134689] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3509), 1, + STATE(3582), 1, sym_comment, - ACTIONS(1504), 13, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(1473), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(1506), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + aux_sym_unquoted_token2, + ACTIONS(1475), 36, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [130282] = 5, - ACTIONS(3), 1, + [134738] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6600), 1, - aux_sym__immediate_decimal_token2, - STATE(3510), 1, - sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1525), 1, + sym__newline, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(2949), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(4889), 1, + aux_sym_unquoted_token2, + ACTIONS(6543), 1, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 28, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(6545), 1, + sym_duration_unit, + STATE(3583), 1, + sym_comment, + STATE(7561), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2951), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [130333] = 4, - ACTIONS(3), 1, + ACTIONS(1537), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [134801] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3511), 1, + STATE(3584), 1, sym_comment, - ACTIONS(1947), 9, + ACTIONS(2417), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -340138,7 +349816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1953), 29, + ACTIONS(2419), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340168,12 +349846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130382] = 4, - ACTIONS(3), 1, + [134850] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3512), 1, + STATE(3585), 1, sym_comment, - ACTIONS(2317), 9, + ACTIONS(2421), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -340183,7 +349861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2319), 29, + ACTIONS(2423), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340213,12 +349891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130431] = 4, - ACTIONS(3), 1, + [134899] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3513), 1, + STATE(3586), 1, sym_comment, - ACTIONS(2309), 9, + ACTIONS(2425), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -340228,7 +349906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2311), 29, + ACTIONS(2427), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340258,12 +349936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130480] = 4, - ACTIONS(3), 1, + [134948] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3514), 1, + STATE(3587), 1, sym_comment, - ACTIONS(2293), 9, + ACTIONS(2429), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -340273,7 +349951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2295), 29, + ACTIONS(2431), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340303,636 +349981,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130529] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3515), 1, - sym_comment, - ACTIONS(1376), 10, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 28, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [130578] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2931), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2933), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6642), 1, - aux_sym_unquoted_token4, - ACTIONS(6666), 1, - anon_sym_DOT, - ACTIONS(6668), 1, - aux_sym_unquoted_token6, - STATE(3516), 1, - sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2927), 10, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2925), 21, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [130641] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6370), 1, - anon_sym_list, - STATE(3517), 1, - sym_comment, - STATE(7377), 1, - sym__type_annotation, - ACTIONS(6368), 2, - anon_sym_table, - anon_sym_record, - STATE(6876), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6366), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [130696] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4687), 1, - aux_sym_unquoted_token4, - ACTIONS(4744), 1, - anon_sym_DOT, - ACTIONS(4746), 1, - aux_sym_unquoted_token6, - STATE(3518), 1, - sym_comment, - STATE(5940), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 25, - sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [130757] = 5, - ACTIONS(3), 1, + [134997] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6670), 1, + ACTIONS(6522), 1, aux_sym__immediate_decimal_token2, - STATE(3519), 1, - sym_comment, - ACTIONS(1376), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 28, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [130808] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3520), 1, + STATE(3588), 1, sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 29, + ACTIONS(1473), 3, sym__newline, - anon_sym_DASH, - anon_sym_in, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 34, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [130857] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6640), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6672), 1, - anon_sym_DOT, - STATE(3521), 1, - sym_comment, - ACTIONS(1398), 8, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1400), 28, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_duration_unit, - [130910] = 9, - ACTIONS(3), 1, + [135048] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4687), 1, - aux_sym_unquoted_token5, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(3522), 1, - sym_comment, - STATE(7407), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 26, - sym__newline, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [130969] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2858), 1, - anon_sym_DOT_DOT2, - ACTIONS(6675), 1, - sym_filesize_unit, - ACTIONS(6677), 1, - sym_duration_unit, - STATE(3523), 1, + STATE(3589), 1, sym_comment, - STATE(7514), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2862), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4687), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 24, + ACTIONS(2437), 9, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [131032] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6370), 1, - anon_sym_list, - STATE(3524), 1, - sym_comment, - STATE(5716), 1, - sym__all_type, - ACTIONS(6368), 2, - anon_sym_table, - anon_sym_record, - STATE(5811), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6366), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [131087] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6370), 1, - anon_sym_list, - STATE(3525), 1, - sym_comment, - STATE(5726), 1, - sym__all_type, - ACTIONS(6368), 2, - anon_sym_table, - anon_sym_record, - STATE(5811), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6366), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [131142] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6679), 1, - anon_sym_DOT, - STATE(3526), 1, - sym_comment, - ACTIONS(1398), 7, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1400), 29, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2439), 29, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131195] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3527), 1, - sym_comment, - ACTIONS(1504), 10, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1506), 28, anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131244] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [135097] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3528), 1, + STATE(3590), 1, sym_comment, - ACTIONS(1863), 9, + ACTIONS(2441), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -340942,7 +350087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1869), 29, + ACTIONS(2443), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340972,12 +350117,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131293] = 4, - ACTIONS(3), 1, + [135146] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3529), 1, + STATE(3591), 1, sym_comment, - ACTIONS(1871), 9, + ACTIONS(1960), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -340987,7 +350132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1877), 29, + ACTIONS(1966), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341017,71 +350162,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131342] = 4, - ACTIONS(3), 1, + [135195] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3592), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 36, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135244] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6551), 1, + anon_sym_list, + STATE(3593), 1, + sym_comment, + STATE(5161), 1, + sym__type_annotation, + ACTIONS(6549), 2, + anon_sym_table, + anon_sym_record, + STATE(5215), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6547), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [135299] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3594), 1, + sym_comment, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 36, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135348] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3530), 1, + STATE(3595), 1, sym_comment, - ACTIONS(1879), 9, + ACTIONS(1473), 3, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1885), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 35, anon_sym_DASH_DASH, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131391] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135397] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3531), 1, + STATE(3596), 1, + sym_comment, + ACTIONS(1519), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 35, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135446] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6296), 1, + anon_sym_list, + STATE(3597), 1, + sym_comment, + STATE(7017), 1, + sym__type_annotation, + ACTIONS(6294), 2, + anon_sym_table, + anon_sym_record, + STATE(6391), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6292), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [135501] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6553), 1, + aux_sym__immediate_decimal_token2, + STATE(3598), 1, sym_comment, - ACTIONS(1376), 13, + ACTIONS(1519), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token6, - ACTIONS(1378), 25, + aux_sym_unquoted_token2, + ACTIONS(1521), 26, anon_sym_true, anon_sym_false, anon_sym_null, @@ -341096,6 +350472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -341107,78 +350484,121 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131440] = 10, - ACTIONS(3), 1, + [135552] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2973), 1, - anon_sym_DOT, - ACTIONS(2975), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2977), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6642), 1, - aux_sym_unquoted_token5, - STATE(3532), 1, + STATE(3599), 1, sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2927), 10, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2925), 21, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [131500] = 11, - ACTIONS(3), 1, + ACTIONS(1585), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 36, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135601] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, + ACTIONS(6518), 1, + aux_sym__immediate_decimal_token2, + STATE(3600), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_LPAREN2, - ACTIONS(6683), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135652] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4099), 1, anon_sym_DOT, - ACTIONS(6687), 1, + ACTIONS(6555), 1, + anon_sym_DOLLAR, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, aux_sym__immediate_decimal_token4, - STATE(1942), 1, - sym__immediate_decimal, - STATE(3533), 1, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(3601), 1, sym_comment, - ACTIONS(6685), 2, + STATE(3968), 1, + sym__immediate_decimal, + ACTIONS(6559), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1941), 2, + STATE(3948), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1482), 8, + ACTIONS(1431), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341187,7 +350607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1484), 20, + ACTIONS(1441), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -341208,18 +350628,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131562] = 6, - ACTIONS(121), 1, + [135717] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6689), 1, - anon_sym_RBRACK, - ACTIONS(6693), 1, - sym__entry_separator, - STATE(3534), 1, + ACTIONS(6296), 1, + anon_sym_list, + STATE(3602), 1, sym_comment, - STATE(3541), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6691), 34, + STATE(5809), 1, + sym__all_type, + ACTIONS(6294), 2, + anon_sym_table, + anon_sym_record, + STATE(5944), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6292), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -341249,128 +350674,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [131614] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(6629), 1, - aux_sym_unquoted_token5, - STATE(3535), 1, - sym_comment, - STATE(7407), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 25, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [131672] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6602), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6695), 1, - anon_sym_DOT, - STATE(3536), 1, - sym_comment, - ACTIONS(1398), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1400), 27, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131724] = 11, - ACTIONS(3), 1, + [135772] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(6555), 1, anon_sym_DOLLAR, - ACTIONS(6681), 1, + ACTIONS(6557), 1, anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, + ACTIONS(6561), 1, aux_sym__immediate_decimal_token4, - STATE(1944), 1, - sym__immediate_decimal, - STATE(3537), 1, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6565), 1, + anon_sym_DOT, + STATE(3603), 1, sym_comment, - ACTIONS(6685), 2, + STATE(3890), 1, + sym__immediate_decimal, + ACTIONS(6559), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1943), 2, + STATE(3790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1478), 8, + ACTIONS(1413), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341379,7 +350708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1480), 20, + ACTIONS(1427), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -341400,76 +350729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131786] = 8, - ACTIONS(3), 1, + [135837] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6697), 1, - anon_sym_DOT, - STATE(3538), 1, + STATE(3604), 1, sym_comment, - STATE(3560), 1, - aux_sym_cell_path_repeat1, - STATE(3648), 1, - sym_path, - STATE(3709), 1, - sym_cell_path, - ACTIONS(1545), 7, - anon_sym_GT, + ACTIONS(1935), 9, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - ACTIONS(1549), 26, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [131842] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, - anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - STATE(1946), 1, - sym__immediate_decimal, - STATE(3539), 1, - sym_comment, - ACTIONS(6685), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1945), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1486), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341478,8 +350744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1488), 20, - ts_builtin_sym_end, + ACTIONS(1941), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341491,6 +350756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341499,171 +350774,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131904] = 11, - ACTIONS(3), 1, + [135886] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, - anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - STATE(3540), 1, + ACTIONS(6567), 1, + aux_sym__immediate_decimal_token2, + STATE(3605), 1, sym_comment, - STATE(4062), 1, - sym__immediate_decimal, - ACTIONS(6685), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1947), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1423), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1425), 20, - ts_builtin_sym_end, + ACTIONS(1519), 3, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131966] = 4, - ACTIONS(121), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135937] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, - sym__entry_separator, - STATE(3541), 2, + ACTIONS(6569), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6571), 1, + aux_sym__immediate_decimal_token2, + STATE(3606), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2256), 35, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [132014] = 8, - ACTIONS(3), 1, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135990] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6697), 1, - anon_sym_DOT, - STATE(3542), 1, + ACTIONS(6573), 1, + aux_sym__immediate_decimal_token2, + STATE(3607), 1, sym_comment, - STATE(3560), 1, - aux_sym_cell_path_repeat1, - STATE(3648), 1, - sym_path, - STATE(3695), 1, - sym_cell_path, - ACTIONS(883), 7, - anon_sym_GT, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [136041] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3608), 1, + sym_comment, + ACTIONS(1481), 3, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_DOT_DOT2, - ACTIONS(885), 26, + aux_sym_unquoted_token2, + ACTIONS(1483), 35, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [132070] = 11, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [136090] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6681), 1, - anon_sym_LPAREN2, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6702), 1, - anon_sym_DOLLAR, - ACTIONS(6704), 1, - anon_sym_DOT, - STATE(3543), 1, + STATE(3609), 1, sym_comment, - STATE(3835), 1, - sym__immediate_decimal, - ACTIONS(6706), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3830), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 8, + ACTIONS(2405), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341672,8 +350973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1457), 20, - ts_builtin_sym_end, + ACTIONS(2407), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341685,6 +350985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341693,28 +351003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [132132] = 11, - ACTIONS(3), 1, + [136139] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, - anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - STATE(2047), 1, - sym__immediate_decimal, - STATE(3544), 1, + STATE(3610), 1, sym_comment, - ACTIONS(6685), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2044), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 8, + ACTIONS(2409), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341723,8 +351018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1457), 20, - ts_builtin_sym_end, + ACTIONS(2411), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341736,6 +351030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341744,28 +351048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [132194] = 11, - ACTIONS(3), 1, + [136188] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6681), 1, - anon_sym_LPAREN2, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6702), 1, - anon_sym_DOLLAR, - ACTIONS(6708), 1, - anon_sym_DOT, - STATE(3545), 1, + STATE(3611), 1, sym_comment, - STATE(3846), 1, - sym__immediate_decimal, - ACTIONS(6706), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3842), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1404), 8, + ACTIONS(2433), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341774,8 +351063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1416), 20, - ts_builtin_sym_end, + ACTIONS(2435), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341787,6 +351075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341795,28 +351093,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [132256] = 11, - ACTIONS(3), 1, + [136237] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(6535), 1, anon_sym_DOLLAR, - ACTIONS(6681), 1, + ACTIONS(6557), 1, anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, + ACTIONS(6561), 1, aux_sym__immediate_decimal_token4, - STATE(3546), 1, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(3612), 1, sym_comment, - STATE(4040), 1, + STATE(4058), 1, sym__immediate_decimal, - ACTIONS(6685), 2, + ACTIONS(6575), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2049), 2, + STATE(2088), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1404), 8, + ACTIONS(1443), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341825,7 +351123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1416), 20, + ACTIONS(1455), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -341846,249 +351144,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [132318] = 4, - ACTIONS(3), 1, + [136299] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3547), 1, + STATE(3613), 1, sym_comment, - ACTIONS(1368), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1473), 3, + sym__newline, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1370), 28, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + aux_sym_unquoted_token2, + ACTIONS(1475), 34, + aux_sym_ctrl_match_token1, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [132366] = 4, - ACTIONS(3), 1, + [136347] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3548), 1, + STATE(3614), 1, sym_comment, - ACTIONS(1376), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1481), 3, + sym__newline, anon_sym_DOT_DOT2, - anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(1483), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1378), 28, + sym_duration_unit, + [136395] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3615), 1, + sym_comment, + ACTIONS(1585), 11, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1587), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136443] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3616), 1, + sym_comment, + ACTIONS(1585), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 35, + anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [132414] = 9, - ACTIONS(3), 1, + [136491] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4687), 1, - aux_sym_unquoted_token5, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(3549), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(2949), 1, + anon_sym_DOT_DOT2, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + ACTIONS(6577), 1, + sym_filesize_unit, + ACTIONS(6579), 1, + sym_duration_unit, + STATE(3617), 1, sym_comment, - STATE(7407), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, + STATE(7615), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2951), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 29, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [136551] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3618), 1, + sym_comment, + ACTIONS(1473), 11, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 25, - sym__newline, - anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1475), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [132472] = 4, - ACTIONS(3), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136599] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3550), 1, + STATE(3619), 1, sym_comment, - ACTIONS(1504), 9, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1585), 3, + sym__newline, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - aux_sym_unquoted_token6, - ACTIONS(1506), 28, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + aux_sym_unquoted_token2, + ACTIONS(1587), 34, + aux_sym_ctrl_match_token1, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, sym_duration_unit, - [132520] = 10, - ACTIONS(3), 1, + [136647] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(6535), 1, + anon_sym_DOLLAR, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4687), 1, - aux_sym_unquoted_token4, - ACTIONS(4744), 1, - anon_sym_DOT, - ACTIONS(4746), 1, - aux_sym_unquoted_token6, - STATE(3551), 1, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(3620), 1, sym_comment, - STATE(5940), 1, + STATE(4070), 1, sym__immediate_decimal, - ACTIONS(2933), 2, + ACTIONS(6575), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 24, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [132580] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(6693), 1, - sym__entry_separator, - ACTIONS(6710), 1, + STATE(1984), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1413), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1427), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [136709] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6581), 1, anon_sym_RBRACK, - STATE(3541), 1, - aux_sym__multiple_types_repeat1, - STATE(3552), 1, + ACTIONS(6585), 1, + sym__entry_separator, + STATE(3621), 1, sym_comment, - ACTIONS(6691), 34, + STATE(3622), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6583), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -342123,18 +351555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [132632] = 6, - ACTIONS(121), 1, + [136761] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6693), 1, + ACTIONS(6587), 1, sym__entry_separator, - ACTIONS(6712), 1, - anon_sym_RBRACK, - STATE(3541), 1, - aux_sym__multiple_types_repeat1, - STATE(3553), 1, + STATE(3622), 2, sym_comment, - ACTIONS(6691), 34, + aux_sym__multiple_types_repeat1, + ACTIONS(2319), 35, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -342169,18 +351599,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [132684] = 6, - ACTIONS(121), 1, + [136809] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3623), 1, + sym_comment, + ACTIONS(1519), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [136857] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6590), 1, + aux_sym__immediate_decimal_token2, + STATE(3624), 1, + sym_comment, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [136907] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6592), 1, + anon_sym_QMARK2, + STATE(3625), 1, + sym_comment, + ACTIONS(970), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(972), 33, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [136957] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6594), 1, + anon_sym_QMARK2, + STATE(3626), 1, + sym_comment, + ACTIONS(980), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(982), 33, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [137007] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3627), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [137055] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3628), 1, + sym_comment, + ACTIONS(1481), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1483), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137103] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(6596), 1, + sym_filesize_unit, + ACTIONS(6598), 1, + sym_duration_unit, + ACTIONS(6600), 1, + aux_sym_unquoted_token2, + STATE(3629), 1, + sym_comment, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1525), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1537), 22, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137161] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3630), 1, + sym_comment, + ACTIONS(966), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(968), 34, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [137209] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6533), 1, + aux_sym__immediate_decimal_token2, + STATE(3631), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [137259] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3632), 1, + sym_comment, + ACTIONS(976), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(978), 34, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [137307] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6693), 1, + ACTIONS(6585), 1, sym__entry_separator, - ACTIONS(6714), 1, + ACTIONS(6602), 1, anon_sym_RBRACK, - STATE(3541), 1, + STATE(3622), 1, aux_sym__multiple_types_repeat1, - STATE(3554), 1, + STATE(3633), 1, sym_comment, - ACTIONS(6691), 34, + ACTIONS(6583), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -342215,156 +352094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [132736] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6716), 1, - anon_sym_DOT_DOT2, - STATE(3555), 1, - sym_comment, - ACTIONS(6718), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1947), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1953), 25, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132787] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1423), 1, - sym_cell_path, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2202), 1, - sym_path, - STATE(3556), 1, - sym_comment, - ACTIONS(883), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(885), 24, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132842] = 9, + [137359] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6625), 1, - sym_filesize_unit, - ACTIONS(6627), 1, - sym_duration_unit, - ACTIONS(6720), 1, - anon_sym_DOT_DOT2, - STATE(3557), 1, - sym_comment, - ACTIONS(5002), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(6722), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 24, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [132899] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(6693), 1, + ACTIONS(6585), 1, sym__entry_separator, - STATE(3541), 1, + ACTIONS(6604), 1, + anon_sym_RBRACK, + STATE(3622), 1, aux_sym__multiple_types_repeat1, - STATE(3558), 1, + STATE(3634), 1, sym_comment, - ACTIONS(6691), 34, + ACTIONS(6583), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -342399,420 +352140,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [132948] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3559), 1, - sym_comment, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [132995] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6697), 1, - anon_sym_DOT, - STATE(3560), 1, - sym_comment, - STATE(3561), 1, - aux_sym_cell_path_repeat1, - STATE(3648), 1, - sym_path, - ACTIONS(889), 7, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - ACTIONS(891), 26, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133048] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6724), 1, - anon_sym_DOT, - STATE(3648), 1, - sym_path, - STATE(3561), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 7, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - ACTIONS(895), 26, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133099] = 7, - ACTIONS(3), 1, + [137411] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - sym_comment, - STATE(3564), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, - sym_path, - ACTIONS(889), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(891), 27, + ACTIONS(6535), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - aux_sym_record_entry_token1, - sym__table_head_separator, - [133152] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3563), 1, - sym_comment, - ACTIONS(3239), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3241), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(6557), 1, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [133199] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6729), 1, - anon_sym_DOT, - STATE(3689), 1, - sym_path, - STATE(3564), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(895), 27, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - aux_sym_record_entry_token1, - sym__table_head_separator, - [133250] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2979), 1, + ACTIONS(6561), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4687), 1, - aux_sym_unquoted_token5, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(3565), 1, - sym_comment, - STATE(7407), 1, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(1983), 1, sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2927), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 24, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [133307] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3566), 1, - sym_comment, - ACTIONS(3443), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3441), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [133354] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6732), 1, - anon_sym_LBRACK2, - STATE(3567), 1, + STATE(3635), 1, sym_comment, - ACTIONS(2178), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2182), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [133403] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6734), 1, + ACTIONS(6575), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6736), 1, - aux_sym__immediate_decimal_token2, - STATE(3568), 1, - sym_comment, - ACTIONS(1470), 9, - anon_sym_DOT_DOT2, + aux_sym__immediate_decimal_token3, + STATE(1982), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342821,7 +352170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1472), 25, + ACTIONS(1441), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -342834,11 +352183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342847,62 +352191,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133454] = 6, - ACTIONS(3), 1, + [137473] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6738), 1, - anon_sym_DOT_DOT2, - STATE(3569), 1, + STATE(3636), 1, sym_comment, - ACTIONS(6740), 2, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1863), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1869), 25, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [133505] = 6, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [137521] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6742), 1, - anon_sym_DOT_DOT2, - STATE(3570), 1, + ACTIONS(6535), 1, + anon_sym_DOLLAR, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(2040), 1, + sym__immediate_decimal, + STATE(3637), 1, sym_comment, - ACTIONS(6744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1871), 8, + ACTIONS(6575), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2025), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1551), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342911,7 +352265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1877), 25, + ACTIONS(1553), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342923,12 +352278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342937,17 +352286,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133556] = 6, - ACTIONS(3), 1, + [137583] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6746), 1, - anon_sym_DOT, - ACTIONS(6748), 1, - aux_sym__immediate_decimal_token2, - STATE(3571), 1, + ACTIONS(6535), 1, + anon_sym_DOLLAR, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(2062), 1, + sym__immediate_decimal, + STATE(3638), 1, sym_comment, - ACTIONS(1518), 9, - anon_sym_DOT_DOT2, + ACTIONS(6575), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2048), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1555), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342956,7 +352316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1520), 25, + ACTIONS(1557), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -342969,11 +352329,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342982,17 +352337,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133607] = 6, - ACTIONS(3), 1, + [137645] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6750), 1, - anon_sym_DOT_DOT2, - STATE(3572), 1, + ACTIONS(6535), 1, + anon_sym_DOLLAR, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(2074), 1, + sym__immediate_decimal, + STATE(3639), 1, sym_comment, - ACTIONS(6752), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1879), 8, + ACTIONS(6575), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2065), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1501), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343001,7 +352367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1885), 25, + ACTIONS(1509), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343013,12 +352380,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343027,15 +352388,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133658] = 4, - ACTIONS(121), 1, + [137707] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2390), 1, + ACTIONS(6585), 1, sym__entry_separator, - STATE(3573), 1, - sym_comment, - ACTIONS(2388), 35, + ACTIONS(6606), 1, anon_sym_RBRACK, + STATE(3622), 1, + aux_sym__multiple_types_repeat1, + STATE(3640), 1, + sym_comment, + ACTIONS(6583), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343070,1152 +352434,686 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [133705] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3574), 1, - sym_comment, - ACTIONS(2353), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2355), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [133751] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3575), 1, - sym_comment, - ACTIONS(920), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(922), 29, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [133797] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3576), 1, - sym_comment, - ACTIONS(2184), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2186), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [133843] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3577), 1, - sym_comment, - ACTIONS(2200), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2202), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [133889] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3578), 1, - sym_comment, - ACTIONS(2204), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2206), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [133935] = 4, - ACTIONS(3), 1, + [137759] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3579), 1, + STATE(3641), 1, sym_comment, - ACTIONS(912), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(914), 29, + ACTIONS(1519), 11, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [133981] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3580), 1, - sym_comment, - ACTIONS(2208), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2210), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134027] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3581), 1, - sym_comment, - ACTIONS(2212), 6, - anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2214), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134073] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6754), 1, - aux_sym__immediate_decimal_token2, - STATE(3582), 1, - sym_comment, - ACTIONS(1535), 9, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1537), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1521), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134121] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3583), 1, - sym_comment, - ACTIONS(2394), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2396), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134167] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3584), 1, - sym_comment, - ACTIONS(2329), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2331), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134213] = 4, - ACTIONS(3), 1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137807] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3585), 1, - sym_comment, - ACTIONS(2333), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2335), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134259] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6736), 1, - aux_sym__immediate_decimal_token2, - STATE(3586), 1, + STATE(3642), 1, sym_comment, - ACTIONS(1470), 9, + ACTIONS(1519), 2, anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1472), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + aux_sym_unquoted_token2, + ACTIONS(1521), 35, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134307] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3587), 1, - sym_comment, - ACTIONS(1764), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1766), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134353] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3588), 1, - sym_comment, - ACTIONS(2337), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2339), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134399] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3589), 1, - sym_comment, - ACTIONS(2341), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2343), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134445] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [137855] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3590), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(2949), 1, + anon_sym_DOT_DOT2, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + ACTIONS(6608), 1, + sym_filesize_unit, + ACTIONS(6610), 1, + sym_duration_unit, + STATE(3643), 1, sym_comment, - ACTIONS(1780), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1782), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134491] = 4, - ACTIONS(3), 1, + STATE(7615), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2951), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [137915] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3591), 1, + STATE(3644), 1, sym_comment, - ACTIONS(1788), 6, - anon_sym_GT, + ACTIONS(962), 3, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1790), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(964), 34, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134537] = 4, - ACTIONS(3), 1, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [137963] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3592), 1, - sym_comment, - ACTIONS(2325), 6, - anon_sym_GT, + ACTIONS(1875), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2327), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1787), 1, + sym_cell_path, + STATE(3645), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1877), 31, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134583] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3593), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138018] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6614), 1, + anon_sym_DOT_DOT2, + STATE(3646), 1, sym_comment, - ACTIONS(1792), 6, - anon_sym_GT, + ACTIONS(6616), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1690), 9, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1794), 29, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1698), 24, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134629] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138069] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3594), 1, + STATE(3647), 1, sym_comment, - ACTIONS(2345), 6, - anon_sym_GT, + ACTIONS(994), 3, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2347), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(996), 33, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134675] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6756), 1, - anon_sym_QMARK2, - STATE(3595), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [138116] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3648), 1, sym_comment, - ACTIONS(900), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(1473), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(902), 26, - anon_sym_DASH_DASH, - anon_sym_in, + aux_sym_unquoted_token2, + ACTIONS(1475), 34, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134723] = 5, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [138163] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6758), 1, - anon_sym_QMARK2, - STATE(3596), 1, + STATE(3649), 1, sym_comment, - ACTIONS(906), 8, - anon_sym_GT, + ACTIONS(990), 3, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(908), 26, + ACTIONS(992), 33, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134771] = 4, - ACTIONS(3), 1, + [138210] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3597), 1, + STATE(3650), 1, sym_comment, - ACTIONS(1744), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1746), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 34, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134817] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [138257] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3598), 1, + ACTIONS(6618), 1, + anon_sym_DOT, + ACTIONS(6620), 1, + aux_sym__immediate_decimal_token2, + STATE(3651), 1, sym_comment, - ACTIONS(1804), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1806), 29, + ACTIONS(1589), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1591), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134863] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138308] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3599), 1, + STATE(3652), 1, sym_comment, - ACTIONS(2349), 6, - anon_sym_GT, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [138355] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3653), 1, + sym_comment, + ACTIONS(1585), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [138402] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1599), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2351), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1528), 1, + sym_cell_path, + STATE(1625), 1, + sym_path, + STATE(3654), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1603), 31, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134909] = 4, - ACTIONS(3), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138457] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3600), 1, + ACTIONS(6622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6624), 1, + aux_sym__immediate_decimal_token2, + STATE(3655), 1, sym_comment, - ACTIONS(1808), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1810), 29, + ACTIONS(1569), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1571), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [134955] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6635), 1, - aux_sym__immediate_decimal_token1, - STATE(3601), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138508] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6626), 1, + anon_sym_DOT_DOT2, + STATE(3656), 1, sym_comment, - ACTIONS(1701), 9, + ACTIONS(6628), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -344225,7 +353123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1705), 25, + ACTIONS(1717), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344242,7 +353140,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344251,387 +353148,1192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [135003] = 8, + [138559] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6585), 1, + sym__entry_separator, + STATE(3622), 1, + aux_sym__multiple_types_repeat1, + STATE(3657), 1, + sym_comment, + ACTIONS(6583), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [138608] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(945), 1, + anon_sym_DASH, + ACTIONS(6612), 1, anon_sym_DOT, - STATE(3602), 1, + STATE(1625), 1, + sym_path, + STATE(3658), 1, sym_comment, - STATE(3674), 1, + STATE(3694), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, - sym_path, - STATE(3930), 1, + STATE(3698), 1, sym_cell_path, - ACTIONS(1744), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1746), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(947), 31, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [135057] = 8, - ACTIONS(3), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138663] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1774), 1, + anon_sym_DASH, + ACTIONS(6612), 1, anon_sym_DOT, - STATE(3603), 1, + STATE(1625), 1, + sym_path, + STATE(1740), 1, + sym_cell_path, + STATE(3659), 1, sym_comment, - STATE(3674), 1, + STATE(3694), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + ACTIONS(1776), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138718] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1762), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, sym_path, - STATE(3866), 1, + STATE(1743), 1, sym_cell_path, - ACTIONS(1723), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1725), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3660), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1764), 31, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [135111] = 4, - ACTIONS(3), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138773] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3604), 1, - sym_comment, - ACTIONS(1816), 6, - anon_sym_GT, + ACTIONS(1778), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1818), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1779), 1, + sym_cell_path, + STATE(3661), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1780), 31, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [135157] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6762), 1, - anon_sym_QMARK2, - STATE(3605), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138828] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2447), 1, + sym__entry_separator, + STATE(3662), 1, sym_comment, - ACTIONS(900), 6, - anon_sym_GT, + ACTIONS(2445), 35, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [138875] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1770), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(902), 28, - anon_sym_DOLLAR, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1782), 1, + sym_cell_path, + STATE(3663), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1772), 31, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [135205] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6764), 1, - anon_sym_QMARK2, - STATE(3606), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138930] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1847), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1785), 1, + sym_cell_path, + STATE(3664), 1, sym_comment, - ACTIONS(906), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(908), 28, - anon_sym_DOLLAR, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1849), 31, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138985] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1871), 1, + anon_sym_DASH, + ACTIONS(6612), 1, anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [135253] = 8, - ACTIONS(3), 1, + STATE(1625), 1, + sym_path, + STATE(1786), 1, + sym_cell_path, + STATE(3665), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1873), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139040] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1879), 1, + anon_sym_DASH, + ACTIONS(6612), 1, anon_sym_DOT, - STATE(3607), 1, + STATE(1625), 1, + sym_path, + STATE(1788), 1, + sym_cell_path, + STATE(3666), 1, sym_comment, - STATE(3674), 1, + STATE(3694), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + ACTIONS(1881), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139095] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1883), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, sym_path, - STATE(3856), 1, + STATE(1789), 1, sym_cell_path, - ACTIONS(883), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(885), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3667), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1885), 31, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [135307] = 8, - ACTIONS(3), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139150] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1891), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1790), 1, + sym_cell_path, + STATE(3668), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1893), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139205] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1895), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1791), 1, + sym_cell_path, + STATE(3669), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1897), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139260] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1747), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1792), 1, + sym_cell_path, + STATE(3670), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1749), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139315] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1824), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1793), 1, + sym_cell_path, + STATE(3671), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1826), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139370] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1855), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1678), 1, + sym_cell_path, + STATE(3672), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1857), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139425] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1796), 1, + anon_sym_DASH, + ACTIONS(6612), 1, anon_sym_DOT, - STATE(3608), 1, + STATE(1625), 1, + sym_path, + STATE(1795), 1, + sym_cell_path, + STATE(3673), 1, sym_comment, - STATE(3674), 1, + STATE(3694), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + ACTIONS(1798), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139480] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1808), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, sym_path, - STATE(3868), 1, + STATE(1796), 1, sym_cell_path, - ACTIONS(1756), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1758), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3674), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1810), 31, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [135361] = 8, - ACTIONS(3), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139535] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1820), 1, + anon_sym_DASH, + ACTIONS(6612), 1, anon_sym_DOT, - STATE(3609), 1, + STATE(1625), 1, + sym_path, + STATE(1797), 1, + sym_cell_path, + STATE(3675), 1, sym_comment, - STATE(3674), 1, + STATE(3694), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + ACTIONS(1822), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139590] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1741), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, sym_path, - STATE(3875), 1, + STATE(1798), 1, sym_cell_path, - ACTIONS(1760), 8, - anon_sym_DOLLAR, + STATE(3676), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1745), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139645] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1899), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1799), 1, + sym_cell_path, + STATE(3677), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1901), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139700] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1831), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1800), 1, + sym_cell_path, + STATE(3678), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1833), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139755] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1835), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1801), 1, + sym_cell_path, + STATE(3679), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1837), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139810] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1839), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(1802), 1, + sym_cell_path, + STATE(3680), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1841), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139865] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3681), 1, + sym_comment, + ACTIONS(986), 3, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1762), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(988), 33, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [135415] = 8, - ACTIONS(3), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [139912] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3610), 1, + STATE(3682), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3877), 1, + STATE(3919), 1, sym_cell_path, - ACTIONS(1764), 8, + ACTIONS(1855), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1766), 23, + ACTIONS(1857), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -344646,6 +354348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -344655,29 +354358,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135469] = 8, - ACTIONS(3), 1, + [139966] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3611), 1, + STATE(3683), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3878), 1, + STATE(3934), 1, sym_cell_path, - ACTIONS(1768), 8, + ACTIONS(1808), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1770), 23, + ACTIONS(1810), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -344692,6 +354394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -344701,29 +354404,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135523] = 8, - ACTIONS(3), 1, + [140020] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3612), 1, + STATE(3684), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3879), 1, + STATE(3947), 1, sym_cell_path, - ACTIONS(1772), 8, + ACTIONS(1820), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1774), 23, + ACTIONS(1822), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -344738,6 +354440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -344747,29 +354450,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135577] = 8, - ACTIONS(3), 1, + [140074] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3613), 1, + STATE(3685), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3880), 1, + STATE(3949), 1, sym_cell_path, - ACTIONS(1776), 8, + ACTIONS(1741), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1778), 23, + ACTIONS(1745), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -344784,6 +354486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -344793,29 +354496,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135631] = 8, - ACTIONS(3), 1, + [140128] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3614), 1, + STATE(3686), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3916), 1, + STATE(3950), 1, sym_cell_path, - ACTIONS(1780), 8, + ACTIONS(1899), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1782), 23, + ACTIONS(1901), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -344830,6 +354532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -344839,29 +354542,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135685] = 8, - ACTIONS(3), 1, + [140182] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3615), 1, + STATE(3687), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3917), 1, + STATE(3951), 1, sym_cell_path, - ACTIONS(1784), 8, + ACTIONS(1831), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1786), 23, + ACTIONS(1833), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -344876,6 +354578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -344885,29 +354588,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135739] = 8, - ACTIONS(3), 1, + [140236] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3616), 1, + STATE(3688), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3920), 1, + STATE(3963), 1, sym_cell_path, - ACTIONS(1788), 8, + ACTIONS(1835), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1790), 23, + ACTIONS(1837), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -344922,6 +354624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -344931,29 +354634,71 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135793] = 8, - ACTIONS(3), 1, + [140290] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6620), 1, + aux_sym__immediate_decimal_token2, + STATE(3689), 1, + sym_comment, + ACTIONS(1589), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1591), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [140338] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3617), 1, + STATE(3690), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3874), 1, + STATE(3889), 1, sym_cell_path, - ACTIONS(1733), 8, + ACTIONS(1778), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1735), 23, + ACTIONS(1780), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -344968,6 +354713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -344977,29 +354723,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135847] = 8, - ACTIONS(3), 1, + [140392] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3618), 1, + STATE(3691), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3923), 1, + STATE(3964), 1, sym_cell_path, - ACTIONS(1792), 8, + ACTIONS(1839), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1794), 23, + ACTIONS(1841), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -345014,6 +354759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -345023,29 +354769,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135901] = 8, - ACTIONS(3), 1, + [140446] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3619), 1, + STATE(3692), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3925), 1, + STATE(3891), 1, sym_cell_path, - ACTIONS(1796), 8, + ACTIONS(945), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1798), 23, + ACTIONS(947), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -345060,6 +354805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -345069,29 +354815,118 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135955] = 8, - ACTIONS(3), 1, + [140500] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(5081), 1, anon_sym_DOT, - STATE(3620), 1, + STATE(816), 1, + sym_cell_path, + STATE(1625), 1, + sym_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + STATE(3693), 1, sym_comment, - STATE(3674), 1, + ACTIONS(1603), 31, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [140552] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(951), 1, + anon_sym_DASH, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_path, + STATE(3694), 1, + sym_comment, + STATE(3710), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + ACTIONS(953), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [140604] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6630), 1, + anon_sym_DOT, + STATE(3695), 1, + sym_comment, + STATE(3717), 1, + aux_sym_cell_path_repeat1, + STATE(3769), 1, sym_path, - STATE(3931), 1, + STATE(3880), 1, sym_cell_path, - ACTIONS(1800), 8, + ACTIONS(1762), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1802), 23, + ACTIONS(1764), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -345106,6 +354941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -345115,75 +354951,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136009] = 8, - ACTIONS(3), 1, + [140658] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6766), 1, - anon_sym_DOT_DOT2, - ACTIONS(6770), 1, - sym_filesize_unit, - ACTIONS(6772), 1, - sym_duration_unit, - STATE(3621), 1, - sym_comment, - ACTIONS(6768), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136063] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3622), 1, + STATE(3696), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3783), 1, + STATE(3877), 1, sym_cell_path, - ACTIONS(1804), 8, + ACTIONS(1770), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1806), 23, + ACTIONS(1772), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -345198,6 +354987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -345207,113 +354997,162 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136117] = 4, - ACTIONS(3), 1, + [140712] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3623), 1, + ACTIONS(6608), 1, + sym_filesize_unit, + ACTIONS(6610), 1, + sym_duration_unit, + ACTIONS(6632), 1, + anon_sym_DOT_DOT2, + ACTIONS(6636), 1, + aux_sym_unquoted_token2, + STATE(3697), 1, sym_comment, - ACTIONS(2226), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2228), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136163] = 4, - ACTIONS(3), 1, + ACTIONS(6634), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [140766] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3624), 1, + STATE(3698), 1, sym_comment, - ACTIONS(2357), 6, - anon_sym_GT, + ACTIONS(1021), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2359), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + ACTIONS(1023), 33, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136209] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [140812] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1525), 1, + sym__newline, + ACTIONS(6638), 1, + anon_sym_DOT_DOT2, + ACTIONS(6642), 1, + sym_filesize_unit, + ACTIONS(6644), 1, + sym_duration_unit, + STATE(3699), 1, + sym_comment, + ACTIONS(6640), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [140866] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3625), 1, + STATE(3700), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3859), 1, + STATE(3907), 1, sym_cell_path, - ACTIONS(1740), 8, + ACTIONS(1847), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1742), 23, + ACTIONS(1849), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -345328,6 +355167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -345337,29 +355177,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136263] = 8, - ACTIONS(3), 1, + [140920] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3626), 1, + STATE(3701), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3784), 1, + STATE(3908), 1, sym_cell_path, - ACTIONS(1808), 8, + ACTIONS(1871), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1810), 23, + ACTIONS(1873), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -345374,6 +355213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -345383,71 +355223,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136317] = 4, - ACTIONS(3), 1, + [140974] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3627), 1, - sym_comment, - ACTIONS(2273), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2275), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136363] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3628), 1, + STATE(3702), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3785), 1, + STATE(3885), 1, sym_cell_path, - ACTIONS(1812), 8, + ACTIONS(1774), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1814), 23, + ACTIONS(1776), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -345462,6 +355259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -345471,29 +355269,73 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136417] = 8, - ACTIONS(3), 1, + [141028] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(5081), 1, anon_sym_DOT, - STATE(3629), 1, + STATE(963), 1, + sym_cell_path, + STATE(1625), 1, + sym_path, + STATE(1933), 1, + aux_sym_cell_path_repeat1, + STATE(3703), 1, sym_comment, - STATE(3674), 1, + ACTIONS(947), 31, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [141080] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6630), 1, + anon_sym_DOT, + STATE(3704), 1, + sym_comment, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3789), 1, + STATE(3909), 1, sym_cell_path, - ACTIONS(1816), 8, + ACTIONS(1875), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1818), 23, + ACTIONS(1877), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -345508,6 +355350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -345517,71 +355360,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136471] = 4, - ACTIONS(3), 1, + [141134] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3630), 1, - sym_comment, - ACTIONS(2277), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2279), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136517] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3631), 1, + STATE(3705), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3791), 1, + STATE(3910), 1, sym_cell_path, - ACTIONS(1820), 8, + ACTIONS(1879), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1822), 23, + ACTIONS(1881), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -345596,6 +355396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -345605,580 +355406,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136571] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3632), 1, - sym_comment, - ACTIONS(1820), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1822), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136617] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3633), 1, - sym_comment, - ACTIONS(2361), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2363), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136663] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3634), 1, - sym_comment, - ACTIONS(2365), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2367), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136709] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3635), 1, - sym_comment, - ACTIONS(948), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(950), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136755] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3636), 1, - sym_comment, - ACTIONS(1429), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136801] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3637), 1, - sym_comment, - ACTIONS(1733), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1735), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136847] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3638), 1, - sym_comment, - ACTIONS(2369), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2371), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [136893] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3639), 1, - sym_comment, - ACTIONS(916), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(918), 29, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [136939] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6748), 1, - aux_sym__immediate_decimal_token2, - STATE(3640), 1, - sym_comment, - ACTIONS(1518), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1520), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [136987] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3641), 1, - sym_comment, - ACTIONS(2216), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2218), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137033] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3642), 1, - sym_comment, - ACTIONS(2248), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2250), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137079] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3643), 1, - sym_comment, - ACTIONS(2216), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2218), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137125] = 8, - ACTIONS(3), 1, + [141188] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, - sym_filesize_unit, - ACTIONS(6302), 1, - sym_duration_unit, - ACTIONS(6774), 1, - anon_sym_DOT_DOT2, - STATE(3644), 1, - sym_comment, - ACTIONS(6776), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 25, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137179] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3645), 1, + STATE(3706), 1, sym_comment, - STATE(3674), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3838), 1, + STATE(3911), 1, sym_cell_path, - ACTIONS(1752), 8, + ACTIONS(1883), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1754), 23, + ACTIONS(1885), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -346193,6 +355442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -346202,671 +355452,106 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137233] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3646), 1, - sym_comment, - STATE(3689), 1, - sym_path, - STATE(3709), 1, - sym_cell_path, - ACTIONS(1545), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1549), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137286] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3594), 1, - sym_cell_path, - STATE(3647), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1780), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1782), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137339] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3648), 1, - sym_comment, - ACTIONS(928), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(930), 26, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [137384] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3649), 1, - sym_comment, - ACTIONS(924), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(926), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [137429] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3650), 1, - sym_comment, - ACTIONS(932), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(934), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [137474] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3651), 1, - sym_comment, - STATE(3689), 1, - sym_path, - STATE(3695), 1, - sym_cell_path, - ACTIONS(883), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(885), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137527] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3633), 1, - sym_cell_path, - STATE(3652), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1816), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1818), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137580] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3598), 1, - sym_cell_path, - STATE(3653), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1784), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1786), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137633] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3599), 1, - sym_cell_path, - STATE(3654), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1788), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1790), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137686] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3587), 1, - sym_cell_path, - STATE(3655), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1756), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1758), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137739] = 8, - ACTIONS(3), 1, + [141242] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6727), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3588), 1, - sym_cell_path, - STATE(3656), 1, + STATE(3707), 1, sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1760), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1762), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137792] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, + STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3574), 1, - sym_cell_path, - STATE(3657), 1, - sym_comment, - STATE(3689), 1, + STATE(3769), 1, sym_path, - ACTIONS(1792), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1794), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137845] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3600), 1, + STATE(3914), 1, sym_cell_path, - STATE(3658), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1796), 6, - anon_sym_GT, + ACTIONS(1891), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1798), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137898] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1893), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141296] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6727), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3604), 1, - sym_cell_path, - STATE(3659), 1, + STATE(3708), 1, sym_comment, - STATE(3689), 1, + STATE(3717), 1, + aux_sym_cell_path_repeat1, + STATE(3769), 1, sym_path, - ACTIONS(1800), 6, - anon_sym_GT, + STATE(3915), 1, + sym_cell_path, + ACTIONS(1895), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1802), 24, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1897), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [137951] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3660), 1, - sym_comment, - ACTIONS(1959), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1961), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [137996] = 4, - ACTIONS(3), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141350] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3661), 1, + ACTIONS(6646), 1, + aux_sym__immediate_decimal_token2, + STATE(3709), 1, sym_comment, - ACTIONS(1608), 9, + ACTIONS(1648), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -346876,7 +355561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1610), 25, + ACTIONS(1650), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346902,114 +355587,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [138041] = 8, - ACTIONS(3), 1, + [141398] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6727), 1, + ACTIONS(955), 1, + anon_sym_DASH, + ACTIONS(6648), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3589), 1, - sym_cell_path, - STATE(3662), 1, - sym_comment, - STATE(3689), 1, + STATE(1625), 1, sym_path, - ACTIONS(1764), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1766), 24, + STATE(3710), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(957), 31, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138094] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [141448] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3590), 1, - sym_cell_path, - STATE(3663), 1, + STATE(3711), 1, sym_comment, - STATE(3689), 1, + STATE(3717), 1, + aux_sym_cell_path_repeat1, + STATE(3769), 1, sym_path, - ACTIONS(1768), 6, - anon_sym_GT, + STATE(3917), 1, + sym_cell_path, + ACTIONS(1747), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1770), 24, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1749), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138147] = 4, - ACTIONS(3), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141502] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3664), 1, + STATE(3712), 1, sym_comment, - ACTIONS(924), 8, + ACTIONS(1525), 3, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(926), 26, + ACTIONS(1537), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -347022,82 +355718,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [138192] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3665), 1, - sym_comment, - ACTIONS(932), 8, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(934), 26, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [138237] = 8, - ACTIONS(3), 1, + [141548] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3591), 1, - sym_cell_path, - STATE(3666), 1, + STATE(3713), 1, sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1772), 6, + ACTIONS(2389), 3, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1774), 24, + ACTIONS(2391), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -347110,156 +355760,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138290] = 8, - ACTIONS(3), 1, + anon_sym_DOT, + [141594] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6727), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3624), 1, - sym_cell_path, - STATE(3667), 1, + STATE(3714), 1, sym_comment, - STATE(3689), 1, + STATE(3717), 1, + aux_sym_cell_path_repeat1, + STATE(3769), 1, sym_path, - ACTIONS(1804), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1806), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138343] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6300), 1, - sym_filesize_unit, - ACTIONS(6302), 1, - sym_duration_unit, - ACTIONS(6778), 1, - anon_sym_DOT_DOT2, - STATE(3668), 1, - sym_comment, - ACTIONS(6776), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 24, + STATE(3918), 1, + sym_cell_path, + ACTIONS(1824), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1826), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138396] = 8, - ACTIONS(3), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141648] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6727), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3630), 1, - sym_cell_path, - STATE(3669), 1, + STATE(3715), 1, sym_comment, - STATE(3689), 1, + STATE(3717), 1, + aux_sym_cell_path_repeat1, + STATE(3769), 1, sym_path, - ACTIONS(1808), 6, - anon_sym_GT, + STATE(3920), 1, + sym_cell_path, + ACTIONS(1796), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1810), 24, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1798), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138449] = 4, - ACTIONS(3), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141702] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3670), 1, + STATE(3716), 1, sym_comment, - ACTIONS(3170), 9, + ACTIONS(2117), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -347269,7 +355868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3166), 25, + ACTIONS(2121), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347295,158 +355894,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [138494] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3634), 1, - sym_cell_path, - STATE(3671), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1820), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1822), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138547] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3672), 1, - sym_comment, - ACTIONS(1535), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1537), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138592] = 8, - ACTIONS(3), 1, + [141747] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3597), 1, - sym_cell_path, - STATE(3673), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1740), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1742), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138645] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6630), 1, anon_sym_DOT, - STATE(3674), 1, + STATE(3717), 1, sym_comment, - STATE(3678), 1, + STATE(3720), 1, aux_sym_cell_path_repeat1, - STATE(3729), 1, + STATE(3769), 1, sym_path, - ACTIONS(889), 8, + ACTIONS(951), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(891), 23, + ACTIONS(953), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -347461,6 +355928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -347470,58 +355938,13 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138696] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3585), 1, - sym_cell_path, - STATE(3675), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1752), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1754), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138749] = 4, - ACTIONS(3), 1, + [141798] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3676), 1, + STATE(3718), 1, sym_comment, - ACTIONS(1939), 9, - anon_sym_DASH, + ACTIONS(1721), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -347530,7 +355953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1945), 25, + ACTIONS(1723), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347542,12 +355966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -347556,13 +355979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [138794] = 4, - ACTIONS(3), 1, + [141843] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3677), 1, + STATE(3719), 1, sym_comment, - ACTIONS(1587), 9, - anon_sym_DASH, + ACTIONS(1943), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -347571,7 +355994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1595), 25, + ACTIONS(1945), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347583,12 +356007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -347597,26 +356020,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [138839] = 6, - ACTIONS(3), 1, + [141888] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6780), 1, + ACTIONS(6651), 1, anon_sym_DOT, - STATE(3729), 1, + STATE(3769), 1, sym_path, - STATE(3678), 2, + STATE(3720), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(893), 8, + ACTIONS(955), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(895), 23, + ACTIONS(957), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -347631,6 +356053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -347640,148 +356063,13 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138888] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3637), 1, - sym_cell_path, - STATE(3679), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1723), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1725), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138941] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3632), 1, - sym_cell_path, - STATE(3680), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1812), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1814), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [138994] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3578), 1, - sym_cell_path, - STATE(3681), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1733), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1735), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139047] = 4, - ACTIONS(3), 1, + [141937] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3682), 1, + STATE(3721), 1, sym_comment, - ACTIONS(1923), 9, - anon_sym_DASH, + ACTIONS(1648), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -347790,7 +356078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1927), 25, + ACTIONS(1650), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347802,12 +356091,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -347816,12 +356104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139092] = 4, - ACTIONS(3), 1, + [141982] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3683), 1, + STATE(3722), 1, sym_comment, - ACTIONS(1470), 9, + ACTIONS(1589), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -347831,7 +356119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1472), 25, + ACTIONS(1591), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347857,57 +356145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139137] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6300), 1, - sym_filesize_unit, - ACTIONS(6302), 1, - sym_duration_unit, - ACTIONS(6783), 1, - anon_sym_DOT_DOT2, - STATE(3684), 1, - sym_comment, - ACTIONS(6785), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 24, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139190] = 4, - ACTIONS(3), 1, + [142027] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3685), 1, + STATE(3723), 1, sym_comment, - ACTIONS(1570), 9, + ACTIONS(1709), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -347917,7 +356160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1580), 25, + ACTIONS(1717), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347943,186 +356186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139235] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3593), 1, - sym_cell_path, - STATE(3686), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1776), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1778), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139288] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3623), 1, - sym_cell_path, - STATE(3687), 1, - sym_comment, - STATE(3689), 1, - sym_path, - ACTIONS(1744), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1746), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139341] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6787), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6789), 1, - aux_sym_unquoted_token2, - STATE(3688), 1, - sym_comment, - ACTIONS(2927), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 27, - sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139390] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3689), 1, - sym_comment, - ACTIONS(928), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(930), 28, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [139435] = 4, - ACTIONS(3), 1, + [142072] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3690), 1, + STATE(3724), 1, sym_comment, - ACTIONS(1963), 9, + ACTIONS(1569), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -348132,376 +356201,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1965), 25, + ACTIONS(1571), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [139480] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6791), 1, - anon_sym_LPAREN2, - ACTIONS(6793), 1, - anon_sym_EQ2, - ACTIONS(6795), 1, - sym_short_flag_identifier, - STATE(3691), 1, - sym_comment, - ACTIONS(4890), 11, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4888), 20, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [139531] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(3692), 1, - sym_comment, - ACTIONS(2081), 2, - sym__newline, - anon_sym_RBRACE, - ACTIONS(2077), 29, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139579] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6797), 1, - anon_sym_DOT_DOT2, - STATE(3693), 1, - sym_comment, - ACTIONS(6799), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(948), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(950), 25, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139627] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6801), 1, - anon_sym_QMARK2, - STATE(3694), 1, - sym_comment, - ACTIONS(900), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(902), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [139673] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3695), 1, - sym_comment, - ACTIONS(936), 7, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - ACTIONS(938), 26, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [139717] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142117] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6803), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6805), 1, - aux_sym_unquoted_token2, - STATE(3696), 1, + STATE(3725), 1, sym_comment, - ACTIONS(2927), 6, - anon_sym_GT, + ACTIONS(1690), 9, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 25, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1698), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139765] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142162] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6807), 1, - anon_sym_QMARK2, - STATE(3697), 1, + STATE(3726), 1, sym_comment, - ACTIONS(906), 9, - anon_sym_DOLLAR, + ACTIONS(2085), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(908), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [139811] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(3241), 1, - anon_sym_LPAREN2, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, - STATE(3698), 1, - sym_comment, - ACTIONS(3239), 31, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2087), 25, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139857] = 6, - ACTIONS(3), 1, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142207] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6809), 1, - anon_sym_DOT_DOT2, - STATE(3699), 1, + STATE(3727), 1, sym_comment, - ACTIONS(6811), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1570), 8, + ACTIONS(3175), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -348510,7 +356324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1580), 22, + ACTIONS(3173), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348524,7 +356338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -348533,102 +356350,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139905] = 6, - ACTIONS(121), 1, + [142252] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3700), 1, - sym_comment, - ACTIONS(2159), 2, - sym__newline, - anon_sym_RBRACE, - ACTIONS(2155), 29, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [139953] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5232), 1, - sym__newline, - ACTIONS(5235), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6797), 1, + ACTIONS(5975), 1, + sym_filesize_unit, + ACTIONS(5977), 1, + sym_duration_unit, + ACTIONS(6654), 1, anon_sym_DOT_DOT2, - STATE(3701), 1, + STATE(3728), 1, sym_comment, - ACTIONS(6799), 2, + ACTIONS(6656), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5237), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5239), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140005] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6748), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6813), 1, - anon_sym_DOT, - STATE(3702), 1, + ACTIONS(1537), 29, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [142303] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3729), 1, sym_comment, - ACTIONS(1518), 8, + ACTIONS(1953), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -348637,7 +356409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1520), 23, + ACTIONS(1955), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -348653,6 +356425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -348661,59 +356435,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [140053] = 6, - ACTIONS(3), 1, + [142348] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6815), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6817), 1, - aux_sym_unquoted_token2, - STATE(3703), 1, - sym_comment, - ACTIONS(2927), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 26, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140101] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6819), 1, + ACTIONS(5975), 1, + sym_filesize_unit, + ACTIONS(5977), 1, + sym_duration_unit, + ACTIONS(6658), 1, anon_sym_DOT_DOT2, - STATE(3704), 1, + STATE(3730), 1, sym_comment, - ACTIONS(6821), 2, + ACTIONS(6660), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 8, + ACTIONS(1537), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [142399] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3731), 1, + sym_comment, + ACTIONS(2123), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -348722,7 +356494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1595), 22, + ACTIONS(2127), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348736,7 +356508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -348745,224 +356520,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [140149] = 6, - ACTIONS(3), 1, + [142444] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6823), 1, - anon_sym_DOT_DOT2, - STATE(3705), 1, - sym_comment, - ACTIONS(6825), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(948), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(950), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140197] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2039), 1, + ACTIONS(6662), 1, anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(3706), 1, - sym_comment, - ACTIONS(950), 2, - sym__newline, - anon_sym_RBRACE, - ACTIONS(948), 29, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140245] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6827), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6829), 1, - aux_sym_unquoted_token2, - STATE(3707), 1, + ACTIONS(6664), 1, + anon_sym_EQ2, + ACTIONS(6666), 1, + sym_short_flag_identifier, + STATE(3732), 1, sym_comment, - ACTIONS(2927), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2925), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4944), 12, anon_sym_LBRACK, - anon_sym_LPAREN, aux_sym_ctrl_match_token1, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140293] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3708), 1, - sym_comment, - ACTIONS(2165), 2, - sym__newline, - anon_sym_RBRACE, - ACTIONS(2163), 29, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(4942), 19, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140341] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [142495] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3709), 1, + ACTIONS(6612), 1, + anon_sym_DOT, + STATE(1409), 1, + sym_cell_path, + STATE(1625), 1, + sym_path, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3733), 1, sym_comment, - ACTIONS(1913), 7, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DOT_DOT2, - ACTIONS(1915), 26, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [140385] = 6, - ACTIONS(3), 1, + ACTIONS(947), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [142545] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6831), 1, + ACTIONS(6668), 1, sym_long_flag_identifier, - ACTIONS(6833), 1, + ACTIONS(6670), 1, anon_sym_EQ2, - STATE(3710), 1, + STATE(3734), 1, sym_comment, - ACTIONS(4968), 14, + ACTIONS(4952), 15, aux_sym_cmd_identifier_token39, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348972,12 +356626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4966), 17, + ACTIONS(4950), 16, anon_sym_true, anon_sym_false, anon_sym_null, @@ -348987,7 +356642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -348995,22 +356649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [140433] = 4, - ACTIONS(3), 1, + [142593] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3711), 1, + STATE(3735), 1, sym_comment, - ACTIONS(916), 9, + ACTIONS(966), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(918), 24, + ACTIONS(968), 25, anon_sym_true, anon_sym_false, anon_sym_null, @@ -349026,6 +356679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -349035,21 +356689,163 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140477] = 4, - ACTIONS(121), 1, + [142637] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3712), 1, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(3736), 1, sym_comment, - ACTIONS(2075), 3, - sym__newline, - anon_sym_RBRACE, + ACTIONS(2093), 30, + sym__newline, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [142685] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3737), 1, + sym_comment, + ACTIONS(2101), 30, + sym__newline, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [142733] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2099), 1, anon_sym_LPAREN2, - ACTIONS(2073), 30, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + ACTIONS(2105), 1, anon_sym_COMMA, + STATE(3738), 1, + sym_comment, + ACTIONS(2107), 30, + sym__newline, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [142781] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + sym_comment, + STATE(3747), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + ACTIONS(951), 3, anon_sym_GT, anon_sym_DASH, + anon_sym_LT2, + ACTIONS(953), 27, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -349058,39 +356854,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - aux_sym_unquoted_token7, - [140521] = 4, - ACTIONS(3), 1, + [142831] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3713), 1, + ACTIONS(1006), 1, + sym__newline, + ACTIONS(6674), 1, + anon_sym_DOT_DOT2, + STATE(3740), 1, + sym_comment, + ACTIONS(6676), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1008), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142879] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3741), 1, sym_comment, - ACTIONS(920), 9, + ACTIONS(976), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(922), 24, + ACTIONS(978), 25, anon_sym_true, anon_sym_false, anon_sym_null, @@ -349106,6 +356930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -349115,22 +356940,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140565] = 4, - ACTIONS(3), 1, + [142923] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3714), 1, + STATE(3742), 1, sym_comment, - ACTIONS(912), 9, + ACTIONS(962), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(914), 24, + ACTIONS(964), 25, anon_sym_true, anon_sym_false, anon_sym_null, @@ -349146,6 +356970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -349155,394 +356980,205 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140609] = 8, + [142967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6823), 1, - anon_sym_DOT_DOT2, - ACTIONS(6835), 1, - anon_sym_DASH, - STATE(3715), 1, - sym_comment, - ACTIONS(3166), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(6825), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3168), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3172), 22, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140661] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2091), 1, anon_sym_LPAREN2, - STATE(3716), 1, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(3743), 1, sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140708] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3717), 1, + ACTIONS(2089), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2093), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143015] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3744), 1, sym_comment, - ACTIONS(2165), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2163), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [140753] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6838), 1, - anon_sym_EQ2, - STATE(3718), 1, + ACTIONS(2097), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2101), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143063] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3745), 1, sym_comment, - ACTIONS(5088), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5086), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [140798] = 7, - ACTIONS(3), 1, + ACTIONS(2105), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2107), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143111] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3166), 1, + ACTIONS(5224), 1, + sym__newline, + ACTIONS(5227), 1, aux_sym_ctrl_match_token1, - ACTIONS(6840), 1, + ACTIONS(6674), 1, anon_sym_DOT_DOT2, - STATE(3719), 1, + STATE(3746), 1, sym_comment, - ACTIONS(6799), 2, + ACTIONS(6676), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(3168), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3172), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140847] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2081), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(3720), 1, - sym_comment, - ACTIONS(2077), 29, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140894] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(6842), 1, - aux_sym_unquoted_token3, - STATE(3721), 1, - sym_comment, - ACTIONS(3239), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [140937] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2159), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3722), 1, - sym_comment, - ACTIONS(2155), 29, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [140984] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - ACTIONS(2165), 1, - aux_sym_ctrl_match_token1, - STATE(3723), 1, + ACTIONS(5229), 28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143161] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6678), 1, + anon_sym_DOT, + STATE(3893), 1, + sym_path, + STATE(3747), 2, sym_comment, - ACTIONS(2163), 29, + aux_sym_cell_path_repeat1, + ACTIONS(955), 3, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141031] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token6, - STATE(3724), 1, - sym_comment, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 26, + ACTIONS(957), 27, + ts_builtin_sym_end, sym__newline, - anon_sym_COMMA, - anon_sym_DASH, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -349555,232 +357191,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141076] = 5, - ACTIONS(121), 1, + [143209] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3241), 1, - anon_sym_LPAREN2, - ACTIONS(6844), 1, - aux_sym_unquoted_token3, - STATE(3725), 1, + STATE(3748), 1, sym_comment, - ACTIONS(3239), 30, - anon_sym_GT, + ACTIONS(2131), 3, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141121] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3726), 1, - sym_comment, - ACTIONS(2159), 2, - sym__newline, + aux_sym_unquoted_token4, + ACTIONS(2133), 30, aux_sym_ctrl_match_token1, - ACTIONS(2155), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141168] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3727), 1, - sym_comment, - ACTIONS(2165), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(2163), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141215] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(3728), 1, - sym_comment, - ACTIONS(2075), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2073), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - aux_sym_unquoted_token7, - [141258] = 4, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143253] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3729), 1, + ACTIONS(6681), 1, + anon_sym_QMARK2, + STATE(3749), 1, sym_comment, - ACTIONS(928), 9, + ACTIONS(970), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(930), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141301] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6642), 1, - aux_sym_unquoted_token6, - STATE(3730), 1, - sym_comment, - ACTIONS(1429), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1441), 23, + ACTIONS(972), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -349795,6 +357262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -349804,22 +357272,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141346] = 4, - ACTIONS(3), 1, + [143299] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3731), 1, + ACTIONS(6683), 1, + anon_sym_QMARK2, + STATE(3750), 1, sym_comment, - ACTIONS(924), 9, + ACTIONS(980), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(926), 23, + ACTIONS(982), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -349834,6 +357303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -349843,132 +357313,98 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141389] = 4, + [143345] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3732), 1, - sym_comment, - ACTIONS(932), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(934), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141432] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(3733), 1, - sym_comment, - ACTIONS(2075), 2, - aux_sym_ctrl_match_token1, + ACTIONS(2081), 1, anon_sym_LPAREN2, - ACTIONS(2073), 30, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - aux_sym_unquoted_token7, - [141475] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6846), 1, - anon_sym_EQ2, - STATE(3734), 1, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(3751), 1, sym_comment, - ACTIONS(5016), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5014), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141520] = 5, + ACTIONS(1006), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(1008), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143393] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6848), 1, - aux_sym__immediate_decimal_token1, - STATE(3735), 1, + STATE(3752), 1, sym_comment, - ACTIONS(2263), 8, + ACTIONS(2131), 2, + anon_sym_COMMA, + aux_sym_unquoted_token4, + ACTIONS(2133), 31, + sym__newline, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143437] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6620), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6685), 1, + anon_sym_DOT, + STATE(3753), 1, + sym_comment, + ACTIONS(1589), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349977,7 +357413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2267), 23, + ACTIONS(1591), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -350001,67 +357437,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [141565] = 6, + [143485] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(1006), 1, + anon_sym_COMMA, + ACTIONS(2081), 1, anon_sym_LPAREN2, - STATE(3736), 1, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(3754), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3223), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3221), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141612] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3737), 1, + ACTIONS(1008), 30, + sym__newline, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143533] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6687), 1, + anon_sym_DOT_DOT2, + STATE(3755), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3233), 6, + ACTIONS(6689), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1008), 29, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143578] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3756), 1, + sym_comment, + ACTIONS(966), 3, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3231), 24, + ACTIONS(968), 29, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -350074,126 +357557,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141659] = 27, - ACTIONS(3), 1, + anon_sym_DOT, + [143621] = 27, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6858), 1, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6862), 1, + ACTIONS(6703), 1, aux_sym_ctrl_match_token1, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3738), 1, + STATE(3757), 1, sym_comment, - STATE(4063), 1, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4186), 1, + STATE(4208), 1, aux_sym_shebang_repeat1, - STATE(4367), 1, + STATE(4481), 1, sym_val_number, - STATE(4430), 1, + STATE(4643), 1, sym__binary_predicate_parenthesized, - STATE(4444), 1, + STATE(4646), 1, sym__predicate, - STATE(5069), 1, + STATE(4680), 1, + sym__expr_unary_minus, + STATE(5044), 1, sym_val_closure, - ACTIONS(6852), 2, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [141748] = 6, - ACTIONS(3), 1, + [143710] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6872), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6874), 1, - aux_sym_unquoted_token2, - STATE(3739), 1, + ACTIONS(6713), 1, + anon_sym_DOT_DOT2, + STATE(3758), 1, sym_comment, - ACTIONS(2927), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2925), 25, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(6715), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1008), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143755] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2099), 1, anon_sym_LPAREN2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141795] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3740), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + ACTIONS(2105), 1, + sym__newline, + STATE(3759), 1, + sym_comment, + ACTIONS(2107), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143802] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3760), 1, sym_comment, - ACTIONS(2159), 9, + ACTIONS(2133), 9, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, @@ -350203,7 +357716,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2155), 22, + ACTIONS(2131), 23, anon_sym_true, anon_sym_false, anon_sym_null, @@ -350217,8 +357730,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -350226,67 +357739,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [141840] = 6, - ACTIONS(121), 1, + aux_sym_unquoted_token4, + [143845] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(3741), 1, - sym_comment, - ACTIONS(950), 2, - sym__newline, + ACTIONS(3173), 1, aux_sym_ctrl_match_token1, - ACTIONS(948), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141887] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6840), 1, + ACTIONS(6713), 1, anon_sym_DOT_DOT2, - STATE(3742), 1, + STATE(3761), 1, sym_comment, - ACTIONS(6799), 2, + ACTIONS(6715), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(948), 5, + ACTIONS(3177), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143892] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1525), 1, + anon_sym_DASH, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + STATE(3762), 1, + sym_comment, + ACTIONS(1537), 30, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [143937] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3763), 1, + sym_comment, + ACTIONS(976), 3, anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(950), 24, anon_sym_DASH, + anon_sym_LT2, + ACTIONS(978), 29, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -350299,23 +357859,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [141934] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(3743), 1, + anon_sym_DOT, + [143980] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + STATE(3764), 1, + sym_comment, + ACTIONS(1537), 31, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [144023] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6717), 1, + anon_sym_EQ2, + STATE(3765), 1, + sym_comment, + ACTIONS(5041), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5039), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [144068] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2089), 1, + sym__newline, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(3766), 1, + sym_comment, + ACTIONS(2093), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [144115] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(3767), 1, sym_comment, - ACTIONS(950), 9, + ACTIONS(2093), 9, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, @@ -350325,7 +357997,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(948), 22, + ACTIONS(2089), 22, anon_sym_true, anon_sym_false, anon_sym_null, @@ -350339,8 +358011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -350348,144 +358020,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [141979] = 6, - ACTIONS(3), 1, + [144160] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3744), 1, - sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3227), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3225), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142026] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3745), 1, + ACTIONS(6719), 1, + anon_sym_QMARK2, + STATE(3768), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3237), 6, + ACTIONS(970), 3, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3235), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142073] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(3746), 1, - sym_comment, - ACTIONS(2075), 3, + ACTIONS(972), 28, + ts_builtin_sym_end, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - ACTIONS(2073), 29, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - aux_sym_unquoted_token7, - [142116] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(950), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(3747), 1, - sym_comment, - ACTIONS(948), 29, - anon_sym_GT, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, - anon_sym_STAR, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -350494,46 +358055,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142163] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6876), 1, - anon_sym_LBRACK2, - STATE(3748), 1, + anon_sym_DOT, + [144205] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3769), 1, sym_comment, - ACTIONS(2178), 9, - anon_sym_LBRACK, + ACTIONS(994), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2182), 22, + ACTIONS(996), 24, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, aux_sym_expr_unary_token1, @@ -350541,6 +358089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -350550,363 +358099,119 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [142208] = 27, - ACTIONS(3), 1, + [144248] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(3770), 1, + sym_comment, + STATE(3879), 1, + sym_cell_path, + ACTIONS(1599), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1603), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [144299] = 27, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6858), 1, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6862), 1, + ACTIONS(6703), 1, aux_sym_ctrl_match_token1, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3738), 1, + STATE(3757), 1, aux_sym_shebang_repeat1, - STATE(3749), 1, + STATE(3771), 1, sym_comment, - STATE(4063), 1, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4481), 1, sym_val_number, - STATE(4579), 1, + STATE(4600), 1, sym__binary_predicate_parenthesized, - STATE(4597), 1, + STATE(4605), 1, sym__predicate, - STATE(4932), 1, + STATE(4680), 1, + sym__expr_unary_minus, + STATE(5074), 1, sym_val_closure, - ACTIONS(6852), 2, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [142297] = 6, + [144388] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3750), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142344] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3751), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142391] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3752), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142438] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3753), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142485] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3754), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142532] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3755), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142579] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3756), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142626] = 5, - ACTIONS(121), 1, - anon_sym_POUND, ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(3757), 1, + aux_sym_unquoted_token4, + STATE(3772), 1, sym_comment, - ACTIONS(2081), 9, + ACTIONS(1008), 9, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, @@ -350916,7 +358221,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2077), 22, + ACTIONS(1006), 22, anon_sym_true, anon_sym_false, anon_sym_null, @@ -350930,1106 +358235,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - anon_sym_DOT2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [142671] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_EQ_GT, - ACTIONS(6878), 1, - anon_sym_DOT_DOT2, - STATE(3758), 1, - sym_comment, - ACTIONS(6880), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3168), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3172), 23, - anon_sym_DASH, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142720] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6878), 1, - anon_sym_DOT_DOT2, - STATE(3759), 1, - sym_comment, - ACTIONS(6880), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(948), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(950), 24, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142767] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3760), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142814] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3761), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142861] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3762), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142908] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3763), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [142955] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(3764), 1, - sym_comment, - STATE(7482), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143002] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(3241), 1, - anon_sym_LPAREN2, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, - STATE(3765), 1, - sym_comment, - ACTIONS(3239), 30, - sym__newline, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143047] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(3766), 1, - sym_comment, - ACTIONS(2081), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(2077), 28, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143094] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3767), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 6, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [143160] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6914), 1, - anon_sym_and, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - STATE(3768), 1, - sym_comment, - STATE(3824), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5334), 3, - aux_sym_ctrl_match_token1, - anon_sym_xor, - anon_sym_or, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [143232] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6934), 1, - anon_sym_and, - ACTIONS(6936), 1, - anon_sym_xor, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3769), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5330), 3, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_or, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [143304] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5496), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6914), 1, - anon_sym_and, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - ACTIONS(6940), 1, - anon_sym_xor, - STATE(3770), 1, - sym_comment, - STATE(3825), 1, - aux_sym_shebang_repeat1, - ACTIONS(5334), 2, - aux_sym_ctrl_match_token1, - anon_sym_or, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [143378] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3771), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 10, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143438] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3772), 1, - sym_comment, - STATE(3826), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5334), 9, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143500] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3773), 1, - sym_comment, - ACTIONS(5332), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5330), 20, - sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143554] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3774), 1, - sym_comment, - STATE(3827), 1, - aux_sym_shebang_repeat1, - ACTIONS(5336), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5334), 19, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143610] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3775), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 8, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143672] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3776), 1, - sym_comment, - STATE(3828), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5334), 7, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143736] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3777), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 7, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143800] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - STATE(3778), 1, - sym_comment, - STATE(3829), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5334), 6, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [143866] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3779), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 6, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [143932] = 17, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [144433] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - STATE(3767), 1, - aux_sym_shebang_repeat1, - STATE(3780), 1, + ACTIONS(2089), 1, + anon_sym_EQ_GT, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(3773), 1, sym_comment, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5334), 5, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [144000] = 12, - ACTIONS(3), 1, + ACTIONS(2093), 29, + anon_sym_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [144480] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2097), 1, + anon_sym_EQ_GT, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3774), 1, + sym_comment, + ACTIONS(2101), 29, + anon_sym_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [144527] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3781), 1, + STATE(3775), 1, sym_comment, - STATE(3841), 1, - aux_sym_shebang_repeat1, - ACTIONS(5403), 2, + ACTIONS(962), 3, anon_sym_GT, + anon_sym_DASH, anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5401), 17, + ACTIONS(964), 29, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -352042,73 +358364,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [144058] = 15, - ACTIONS(3), 1, + anon_sym_DOT, + [144570] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3775), 1, - aux_sym_shebang_repeat1, - STATE(3782), 1, + ACTIONS(6721), 1, + anon_sym_QMARK2, + STATE(3776), 1, sym_comment, - ACTIONS(6906), 2, + ACTIONS(980), 3, anon_sym_GT, + anon_sym_DASH, anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, + ACTIONS(982), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6916), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5348), 7, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [144122] = 4, - ACTIONS(3), 1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [144615] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3783), 1, + STATE(3777), 1, sym_comment, - ACTIONS(2357), 8, + ACTIONS(986), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2359), 23, + ACTIONS(988), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -352123,6 +358434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -352132,21 +358444,62 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144164] = 4, + [144658] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3784), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + ACTIONS(2105), 1, + anon_sym_EQ_GT, + STATE(3778), 1, + sym_comment, + ACTIONS(2107), 29, + anon_sym_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [144705] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3779), 1, sym_comment, - ACTIONS(2277), 8, + ACTIONS(990), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2279), 23, + ACTIONS(992), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -352161,6 +358514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -352170,28 +358524,110 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144206] = 4, + [144748] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3785), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3780), 1, sym_comment, - ACTIONS(1820), 8, + ACTIONS(2101), 9, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2097), 22, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [144793] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3173), 1, + anon_sym_EQ_GT, + ACTIONS(6687), 1, + anon_sym_DOT_DOT2, + STATE(3781), 1, + sym_comment, + ACTIONS(6689), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3177), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [144840] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6723), 1, + anon_sym_LBRACK2, + STATE(3782), 1, + sym_comment, + ACTIONS(2235), 8, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1822), 23, + ACTIONS(2239), 23, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, aux_sym_expr_unary_token1, @@ -352199,6 +358635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -352208,64 +358645,102 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144248] = 9, + [144885] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, - STATE(3786), 1, + STATE(3783), 1, sym_comment, - STATE(3844), 1, - aux_sym_shebang_repeat1, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5403), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5401), 20, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [144300] = 4, - ACTIONS(3), 1, + ACTIONS(2131), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + ACTIONS(2133), 30, + anon_sym_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [144928] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2097), 1, + sym__newline, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3784), 1, + sym_comment, + ACTIONS(2101), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [144975] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3787), 1, + ACTIONS(6600), 1, + aux_sym_unquoted_token2, + STATE(3785), 1, sym_comment, - ACTIONS(5117), 8, + ACTIONS(1525), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5115), 23, + ACTIONS(1537), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -352280,6 +358755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -352289,68 +358765,142 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144342] = 13, + [145020] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3788), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3786), 1, sym_comment, - STATE(3847), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5401), 13, - anon_sym_in, + ACTIONS(2107), 9, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [144402] = 4, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2105), 22, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [145065] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(3787), 1, + sym_comment, + ACTIONS(2131), 2, + sym__newline, + aux_sym_unquoted_token4, + ACTIONS(2133), 30, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145108] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1006), 1, + sym__newline, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(3788), 1, + sym_comment, + ACTIONS(1008), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145155] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6725), 1, + anon_sym_EQ2, STATE(3789), 1, sym_comment, - ACTIONS(2361), 8, + ACTIONS(5007), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2363), 23, + ACTIONS(5005), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -352365,6 +358915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -352374,62 +358925,3882 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144444] = 7, - ACTIONS(3), 1, + [145200] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, + ACTIONS(6727), 1, + anon_sym_DOT_DOT2, STATE(3790), 1, sym_comment, + ACTIONS(6729), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1960), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1966), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [145246] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3791), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5341), 27, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145292] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + STATE(3792), 1, + sym_comment, + STATE(3827), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 27, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145338] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3793), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5341), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145386] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + STATE(3794), 1, + sym_comment, + STATE(3828), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5349), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145434] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3795), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5341), 21, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145484] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + STATE(3796), 1, + sym_comment, + STATE(3829), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5349), 21, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145534] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3797), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [145590] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + STATE(3798), 1, + sym_comment, + STATE(3830), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [145646] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3799), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 7, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [145704] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + STATE(3800), 1, + sym_comment, + STATE(3831), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 7, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [145762] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3801), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5341), 6, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145822] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3802), 1, + sym_comment, + STATE(3832), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5349), 6, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145882] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3803), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5341), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145944] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3804), 1, + sym_comment, + STATE(3833), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5349), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146006] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3805), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5341), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146070] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3806), 1, + sym_comment, + STATE(3834), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5349), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146134] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6771), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3807), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5341), 3, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146200] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6773), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3808), 1, + sym_comment, + STATE(3835), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5349), 3, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146266] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6771), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6775), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3809), 1, + sym_comment, + ACTIONS(5341), 2, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146334] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6773), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6777), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3810), 1, + sym_comment, + STATE(3836), 1, + aux_sym_shebang_repeat1, + ACTIONS(5349), 2, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146402] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3811), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5341), 13, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [146456] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + STATE(3812), 1, + sym_comment, + STATE(3837), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5349), 13, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [146510] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5339), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3813), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5341), 19, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146562] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5472), 1, + sym__newline, + STATE(3814), 1, + sym_comment, + STATE(3838), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5349), 19, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146614] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + STATE(3815), 1, + sym_comment, + STATE(3839), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5357), 27, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146660] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + STATE(3816), 1, + sym_comment, + STATE(3841), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5357), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146708] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + STATE(3817), 1, + sym_comment, + STATE(3843), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5357), 21, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146758] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + STATE(3818), 1, + sym_comment, + STATE(3845), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [146814] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + STATE(3819), 1, + sym_comment, + STATE(3847), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 7, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [146872] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3820), 1, + sym_comment, + STATE(3849), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5357), 6, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146932] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3821), 1, + sym_comment, + STATE(3851), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5357), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146994] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3822), 1, + sym_comment, + STATE(3853), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5357), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147058] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6773), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3823), 1, + sym_comment, + STATE(3855), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5357), 3, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147124] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6773), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6777), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3824), 1, + sym_comment, + STATE(3857), 1, + aux_sym_shebang_repeat1, + ACTIONS(5357), 2, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147192] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + STATE(3825), 1, + sym_comment, + STATE(3859), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5357), 13, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [147246] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5402), 1, + sym__newline, + STATE(3826), 1, + sym_comment, + STATE(3861), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5357), 19, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147298] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3827), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5282), 27, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147344] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3828), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5282), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147392] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3829), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5282), 21, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147442] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3830), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [147498] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3831), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 7, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [147556] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3832), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5282), 6, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147616] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3833), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5282), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147678] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3834), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5282), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147742] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6771), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3835), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5282), 3, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147808] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6771), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6775), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3836), 1, + sym_comment, + ACTIONS(5282), 2, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147876] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3837), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5282), 13, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [147930] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3838), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5282), 19, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147982] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3839), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5290), 27, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148028] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + STATE(3840), 1, + sym_comment, + STATE(3863), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5298), 27, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148074] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3841), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5290), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148122] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + STATE(3842), 1, + sym_comment, + STATE(3864), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5298), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148170] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3843), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5290), 21, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148220] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + STATE(3844), 1, + sym_comment, + STATE(3865), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5298), 21, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148270] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3845), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [148326] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + STATE(3846), 1, + sym_comment, + STATE(3866), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [148382] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3847), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 7, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [148440] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + STATE(3848), 1, + sym_comment, + STATE(3867), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 7, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [148498] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3849), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5290), 6, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148558] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, STATE(3850), 1, + sym_comment, + STATE(3868), 1, aux_sym_shebang_repeat1, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5403), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5401), 22, - anon_sym_DASH, - anon_sym_in, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5298), 6, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [144492] = 4, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148618] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3851), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5290), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148680] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3791), 1, + ACTIONS(5387), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3852), 1, + sym_comment, + STATE(3869), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5298), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148742] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3853), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5290), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148806] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3854), 1, + sym_comment, + STATE(3870), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5298), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148870] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6771), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3855), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5290), 3, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148936] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6773), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3856), 1, + sym_comment, + STATE(3871), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5298), 3, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149002] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6771), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6775), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3857), 1, + sym_comment, + ACTIONS(5290), 2, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149070] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6773), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6777), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3858), 1, + sym_comment, + STATE(3872), 1, + aux_sym_shebang_repeat1, + ACTIONS(5298), 2, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149138] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3859), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5290), 13, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [149192] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + STATE(3860), 1, + sym_comment, + STATE(3873), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5298), 13, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [149246] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3861), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5290), 19, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149298] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5387), 1, + sym__newline, + STATE(3862), 1, + sym_comment, + STATE(3874), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5298), 19, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149350] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3863), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5310), 27, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149396] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3864), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5310), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149444] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3865), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5310), 21, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149494] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3866), 1, sym_comment, - ACTIONS(2365), 8, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [149550] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3867), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 7, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [149608] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3868), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5310), 6, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149668] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3869), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5310), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149730] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3870), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5310), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149794] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6771), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3871), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5310), 3, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149860] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6771), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6775), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3872), 1, + sym_comment, + ACTIONS(5310), 2, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149928] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3873), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5310), 13, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [149982] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5308), 1, + sym__newline, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3874), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5310), 19, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [150034] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3875), 1, + sym_comment, + ACTIONS(5131), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2367), 23, + ACTIONS(5129), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -352444,6 +362815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -352453,180 +362825,96 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144534] = 18, - ACTIONS(3), 1, + [150076] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - STATE(3792), 1, + STATE(3876), 1, sym_comment, - STATE(3852), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5401), 4, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [144604] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, - ACTIONS(6908), 1, + ACTIONS(2251), 7, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(6914), 1, - anon_sym_and, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - STATE(3793), 1, - sym_comment, - STATE(3855), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5401), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2253), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_xor, - anon_sym_or, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [144676] = 20, - ACTIONS(3), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [150118] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5496), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6914), 1, - anon_sym_and, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - ACTIONS(6940), 1, - anon_sym_xor, - STATE(3794), 1, + STATE(3877), 1, sym_comment, - STATE(3858), 1, - aux_sym_shebang_repeat1, - ACTIONS(5401), 2, + ACTIONS(2303), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2305), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_or, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [144750] = 4, - ACTIONS(3), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [150160] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3795), 1, + STATE(3878), 1, sym_comment, - ACTIONS(1429), 8, + ACTIONS(5153), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1441), 23, + ACTIONS(5151), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -352641,6 +362929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -352650,82 +362939,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144792] = 14, - ACTIONS(3), 1, + [150202] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3796), 1, + STATE(3879), 1, sym_comment, - STATE(3860), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, + ACTIONS(1982), 3, anon_sym_GT, anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5401), 9, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [144854] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5479), 1, + anon_sym_DOT_DOT2, + ACTIONS(1984), 28, sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3797), 1, - sym_comment, - STATE(3862), 1, - aux_sym_shebang_repeat1, - ACTIONS(5403), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5401), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -352738,26 +362975,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [144910] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [150244] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3798), 1, + STATE(3880), 1, sym_comment, - ACTIONS(2369), 8, + ACTIONS(1770), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2371), 23, + ACTIONS(1772), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -352772,6 +363005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -352781,70 +363015,59 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144952] = 15, - ACTIONS(3), 1, + [150286] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, + ACTIONS(1525), 1, sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3799), 1, + ACTIONS(4889), 1, + aux_sym_unquoted_token2, + STATE(3881), 1, sym_comment, - STATE(3864), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5401), 7, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [145016] = 4, - ACTIONS(3), 1, + ACTIONS(1537), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [150330] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3800), 1, + STATE(3882), 1, sym_comment, - ACTIONS(5121), 8, + ACTIONS(2315), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5119), 23, + ACTIONS(2317), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -352859,6 +363082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -352868,125 +363092,69 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145058] = 13, - ACTIONS(3), 1, + [150372] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3801), 1, + STATE(3883), 1, sym_comment, - STATE(3929), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, + ACTIONS(986), 3, anon_sym_GT, + anon_sym_DASH, anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5348), 13, + ACTIONS(988), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [145118] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - STATE(3777), 1, - aux_sym_shebang_repeat1, - STATE(3802), 1, - sym_comment, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5348), 6, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [145184] = 7, - ACTIONS(3), 1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [150414] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - STATE(3803), 1, + STATE(3884), 1, sym_comment, - STATE(3933), 1, - aux_sym_shebang_repeat1, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5350), 5, + ACTIONS(990), 3, anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5348), 22, anon_sym_DASH, + anon_sym_LT2, + ACTIONS(992), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -352999,66 +363167,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [145232] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3804), 1, - sym_comment, - ACTIONS(2216), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2218), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [145274] = 4, - ACTIONS(3), 1, + anon_sym_DOT, + [150456] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3805), 1, + STATE(3885), 1, sym_comment, - ACTIONS(2216), 8, + ACTIONS(1778), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2218), 23, + ACTIONS(1780), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -353073,6 +363196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -353082,21 +363206,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145316] = 4, - ACTIONS(3), 1, + [150498] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3806), 1, + STATE(3886), 1, sym_comment, - ACTIONS(2927), 8, + ACTIONS(1525), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2925), 23, + ACTIONS(1537), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -353111,6 +363234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -353120,225 +363244,62 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145358] = 16, - ACTIONS(3), 1, + [150540] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - STATE(3807), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3887), 1, sym_comment, - STATE(3876), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, + STATE(3893), 1, + sym_path, + STATE(4005), 1, + sym_cell_path, + ACTIONS(1599), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5401), 6, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [145424] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(1603), 25, + ts_builtin_sym_end, sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - STATE(3779), 1, - aux_sym_shebang_repeat1, - STATE(3808), 1, - sym_comment, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5348), 5, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [145492] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - STATE(3809), 1, - sym_comment, - STATE(3936), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5348), 4, - aux_sym_ctrl_match_token1, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(6910), 4, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6916), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [145562] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5479), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - STATE(3810), 1, - sym_comment, - STATE(3882), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5401), 5, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [145630] = 4, - ACTIONS(3), 1, + [150590] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3811), 1, + STATE(3888), 1, sym_comment, - ACTIONS(2329), 8, + ACTIONS(2389), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2331), 23, + ACTIONS(2391), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -353353,6 +363314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -353362,21 +363324,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145672] = 4, - ACTIONS(3), 1, + [150632] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3812), 1, + STATE(3889), 1, sym_comment, - ACTIONS(948), 8, + ACTIONS(2255), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(950), 23, + ACTIONS(2257), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -353391,6 +363352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -353400,74 +363362,60 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145714] = 19, - ACTIONS(3), 1, + [150674] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6914), 1, - anon_sym_and, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - STATE(3813), 1, + ACTIONS(6779), 1, + anon_sym_DOT_DOT2, + STATE(3890), 1, sym_comment, - STATE(3939), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5348), 3, - aux_sym_ctrl_match_token1, - anon_sym_xor, - anon_sym_or, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [145786] = 4, - ACTIONS(3), 1, + ACTIONS(6781), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1717), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [150720] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3814), 1, + STATE(3891), 1, sym_comment, - ACTIONS(5165), 8, + ACTIONS(1021), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5163), 23, + ACTIONS(1023), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -353482,6 +363430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -353491,21 +363440,98 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145828] = 4, + [150762] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3815), 1, + ACTIONS(1006), 1, + anon_sym_EQ_GT, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(3892), 1, + sym_comment, + ACTIONS(1008), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [150808] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3893), 1, + sym_comment, + ACTIONS(994), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(996), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [150850] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3894), 1, sym_comment, - ACTIONS(5169), 8, + ACTIONS(5168), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5167), 23, + ACTIONS(5166), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -353520,6 +363546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -353529,21 +363556,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145870] = 4, - ACTIONS(3), 1, + [150892] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3816), 1, + STATE(3895), 1, sym_comment, - ACTIONS(2184), 8, + ACTIONS(5172), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2186), 23, + ACTIONS(5170), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -353558,6 +363584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -353567,21 +363594,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145912] = 4, - ACTIONS(3), 1, + [150934] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3817), 1, + STATE(3896), 1, sym_comment, - ACTIONS(2200), 8, + ACTIONS(2311), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2202), 23, + ACTIONS(2313), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -353596,6 +363622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -353605,21 +363632,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145954] = 4, - ACTIONS(3), 1, + [150976] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3818), 1, + STATE(3897), 1, sym_comment, - ACTIONS(3239), 8, + ACTIONS(2311), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3241), 23, + ACTIONS(2313), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -353634,6 +363660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -353643,534 +363670,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145996] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3819), 1, - sym_comment, - ACTIONS(5300), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5298), 18, - sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [146052] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3820), 1, - sym_comment, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5300), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5298), 21, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [146102] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3821), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 14, - sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [146160] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3822), 1, - sym_comment, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5300), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5298), 23, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [146206] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3823), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [146274] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6934), 1, - anon_sym_and, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3824), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5298), 4, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_xor, - anon_sym_or, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [146344] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6934), 1, - anon_sym_and, - ACTIONS(6936), 1, - anon_sym_xor, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3825), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5298), 3, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_or, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [146416] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3826), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 10, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [146476] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3827), 1, - sym_comment, - ACTIONS(5300), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5298), 20, - sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [146530] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3828), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 8, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [146592] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3829), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5298), 7, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [146656] = 6, - ACTIONS(3), 1, + [151018] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6942), 1, + ACTIONS(6783), 1, anon_sym_DOT_DOT2, - STATE(3830), 1, + STATE(3898), 1, sym_comment, - ACTIONS(6944), 2, + ACTIONS(6785), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1863), 8, + ACTIONS(1690), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -354179,7 +363689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1869), 20, + ACTIONS(1698), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354200,21 +363710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [146702] = 4, - ACTIONS(3), 1, + [151064] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3831), 1, + STATE(3899), 1, sym_comment, - ACTIONS(2394), 8, + ACTIONS(2332), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2396), 23, + ACTIONS(2334), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354229,6 +363738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -354238,21 +363748,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146744] = 4, - ACTIONS(3), 1, + [151106] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3832), 1, + STATE(3900), 1, sym_comment, - ACTIONS(5133), 8, + ACTIONS(2271), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5131), 23, + ACTIONS(2273), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354267,6 +363776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -354276,60 +363786,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146786] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(3833), 1, - sym_comment, - ACTIONS(948), 29, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [146830] = 4, - ACTIONS(3), 1, + [151148] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3834), 1, + STATE(3901), 1, sym_comment, - ACTIONS(5125), 8, + ACTIONS(2241), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5123), 23, + ACTIONS(2243), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354344,6 +363814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -354353,61 +363824,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146872] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6946), 1, - anon_sym_DOT_DOT2, - STATE(3835), 1, - sym_comment, - ACTIONS(6948), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1871), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1877), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [146918] = 4, - ACTIONS(3), 1, + [151190] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3836), 1, + STATE(3902), 1, sym_comment, - ACTIONS(5129), 8, + ACTIONS(2336), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5127), 23, + ACTIONS(2338), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354422,6 +363852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -354431,21 +363862,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [146960] = 4, - ACTIONS(3), 1, + [151232] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3837), 1, + STATE(3903), 1, sym_comment, - ACTIONS(5137), 8, + ACTIONS(2263), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5135), 23, + ACTIONS(2265), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354460,6 +363890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -354469,21 +363900,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147002] = 4, - ACTIONS(3), 1, + [151274] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3838), 1, + STATE(3904), 1, sym_comment, - ACTIONS(2333), 8, + ACTIONS(2295), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2335), 23, + ACTIONS(2297), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354498,6 +363928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -354507,21 +363938,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147044] = 4, - ACTIONS(3), 1, + [151316] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3839), 1, + STATE(3905), 1, sym_comment, - ACTIONS(5113), 8, + ACTIONS(2340), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5111), 23, + ACTIONS(2342), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354536,6 +363966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -354545,728 +363976,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147086] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - sym__newline, - STATE(3840), 1, - sym_comment, - STATE(3927), 1, - aux_sym_shebang_repeat1, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5350), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5348), 20, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [147138] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3841), 1, - sym_comment, - ACTIONS(5340), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5338), 18, - sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [147194] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6950), 1, - anon_sym_DOT_DOT2, - STATE(3842), 1, - sym_comment, - ACTIONS(6952), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1879), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1885), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [147240] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3843), 1, - sym_comment, - STATE(3887), 1, - aux_sym_shebang_repeat1, - ACTIONS(5344), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5342), 17, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [147298] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3844), 1, - sym_comment, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5340), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5338), 21, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [147348] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - STATE(3845), 1, - sym_comment, - STATE(3888), 1, - aux_sym_shebang_repeat1, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5344), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5342), 20, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [147400] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6954), 1, - anon_sym_DOT_DOT2, - STATE(3846), 1, - sym_comment, - ACTIONS(6956), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1570), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1580), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [147446] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3847), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 14, - sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [147504] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3848), 1, - sym_comment, - STATE(3889), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5342), 13, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [147564] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6958), 1, - anon_sym_DOT_DOT2, - STATE(3849), 1, - sym_comment, - ACTIONS(6960), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1947), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1953), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [147610] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3850), 1, - sym_comment, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5340), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5338), 23, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [147656] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - STATE(3851), 1, - sym_comment, - STATE(3890), 1, - aux_sym_shebang_repeat1, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5344), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5342), 22, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [147704] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3852), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [147772] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - STATE(3853), 1, - sym_comment, - STATE(3891), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5342), 4, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [147842] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(3241), 1, - anon_sym_LPAREN2, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, - STATE(3854), 1, - sym_comment, - ACTIONS(3239), 29, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [147886] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6934), 1, - anon_sym_and, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3855), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5338), 4, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_xor, - anon_sym_or, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [147956] = 4, - ACTIONS(3), 1, + [151358] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3856), 1, + STATE(3906), 1, sym_comment, - ACTIONS(936), 8, + ACTIONS(1006), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(938), 23, + ACTIONS(1008), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -355281,6 +364004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -355290,127 +364014,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [147998] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6914), 1, - anon_sym_and, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - STATE(3857), 1, - sym_comment, - STATE(3892), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5342), 3, - aux_sym_ctrl_match_token1, - anon_sym_xor, - anon_sym_or, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [148070] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6934), 1, - anon_sym_and, - ACTIONS(6936), 1, - anon_sym_xor, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3858), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5338), 3, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_or, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [148142] = 4, - ACTIONS(3), 1, + [151400] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3859), 1, + STATE(3907), 1, sym_comment, - ACTIONS(1744), 8, + ACTIONS(2344), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1746), 23, + ACTIONS(2346), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -355425,6 +364042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -355434,302 +364052,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148184] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3860), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 10, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [148244] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3861), 1, - sym_comment, - STATE(3894), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5342), 9, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [148306] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3862), 1, - sym_comment, - ACTIONS(5340), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5338), 20, - sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [148360] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3863), 1, - sym_comment, - STATE(3895), 1, - aux_sym_shebang_repeat1, - ACTIONS(5344), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5342), 19, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [148416] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3864), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 8, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [148478] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3865), 1, - sym_comment, - STATE(3896), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5342), 7, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [148542] = 4, - ACTIONS(3), 1, + [151442] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3866), 1, + STATE(3908), 1, sym_comment, - ACTIONS(1733), 8, + ACTIONS(1879), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1735), 23, + ACTIONS(1881), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -355744,6 +364080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -355753,21 +364090,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148584] = 4, - ACTIONS(3), 1, + [151484] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3867), 1, + STATE(3909), 1, sym_comment, - ACTIONS(2248), 8, + ACTIONS(2348), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2250), 23, + ACTIONS(2350), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -355782,6 +364118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -355791,21 +364128,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148626] = 4, - ACTIONS(3), 1, + [151526] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3868), 1, + STATE(3910), 1, sym_comment, - ACTIONS(1764), 8, + ACTIONS(2352), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1766), 23, + ACTIONS(2354), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -355820,6 +364156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -355829,177 +364166,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148668] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(3869), 1, - sym_comment, - ACTIONS(2077), 29, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [148712] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6629), 1, - aux_sym_unquoted_token6, - STATE(3870), 1, - sym_comment, - ACTIONS(1429), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [148756] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3871), 1, - sym_comment, - ACTIONS(2155), 29, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [148800] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(3872), 1, - sym_comment, - ACTIONS(2163), 29, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [148844] = 4, - ACTIONS(3), 1, + [151568] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3873), 1, + STATE(3911), 1, sym_comment, - ACTIONS(2273), 8, + ACTIONS(1747), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2275), 23, + ACTIONS(1749), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356014,6 +364194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356023,21 +364204,59 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148886] = 4, + [151610] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3874), 1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(3912), 1, + sym_comment, + ACTIONS(2093), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [151654] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3913), 1, sym_comment, - ACTIONS(2204), 8, + ACTIONS(3487), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2206), 23, + ACTIONS(3485), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356052,6 +364271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356061,21 +364281,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148928] = 4, - ACTIONS(3), 1, + [151696] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3875), 1, + STATE(3914), 1, sym_comment, - ACTIONS(2337), 8, + ACTIONS(1855), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2339), 23, + ACTIONS(1857), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356090,6 +364309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356099,70 +364319,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [148970] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3876), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 7, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [149034] = 4, - ACTIONS(3), 1, + [151738] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3877), 1, + STATE(3915), 1, sym_comment, - ACTIONS(2341), 8, + ACTIONS(1796), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2343), 23, + ACTIONS(1798), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356177,6 +364347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356186,21 +364357,59 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149076] = 4, + [151780] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3878), 1, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(3916), 1, sym_comment, - ACTIONS(1780), 8, + ACTIONS(1008), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [151824] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3917), 1, + sym_comment, + ACTIONS(2359), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1782), 23, + ACTIONS(2361), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356215,6 +364424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356224,21 +364434,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149118] = 4, - ACTIONS(3), 1, + [151866] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3879), 1, + STATE(3918), 1, sym_comment, - ACTIONS(1788), 8, + ACTIONS(1741), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1790), 23, + ACTIONS(1745), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356253,6 +364462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356262,21 +364472,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149160] = 4, - ACTIONS(3), 1, + [151908] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3880), 1, + STATE(3919), 1, sym_comment, - ACTIONS(1792), 8, + ACTIONS(2363), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1794), 23, + ACTIONS(2365), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356291,6 +364500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356300,172 +364510,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149202] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - STATE(3881), 1, - sym_comment, - STATE(3897), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5342), 6, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [149268] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3882), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5338), 6, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [149334] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5500), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - STATE(3883), 1, - sym_comment, - STATE(3898), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5342), 5, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [149402] = 4, - ACTIONS(3), 1, + [151950] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3884), 1, + STATE(3920), 1, sym_comment, - ACTIONS(2208), 8, + ACTIONS(2367), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2210), 23, + ACTIONS(2369), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356480,6 +364538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356489,21 +364548,554 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149444] = 4, - ACTIONS(3), 1, + [151992] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3885), 1, + ACTIONS(3603), 1, + anon_sym_DASH, + STATE(3921), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(3601), 28, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152036] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + STATE(3922), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 24, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152082] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + STATE(3923), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 22, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152130] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + STATE(3924), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6793), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6795), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6797), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 10, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [152184] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + STATE(3925), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6793), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6799), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6795), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6797), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 8, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [152240] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + ACTIONS(6801), 1, + aux_sym_expr_binary_token13, + STATE(3926), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6793), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6799), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6795), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6797), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 7, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [152298] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + ACTIONS(6801), 1, + aux_sym_expr_binary_token13, + ACTIONS(6803), 1, + aux_sym_expr_binary_token14, + STATE(3927), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6793), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6799), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6795), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(3601), 6, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6797), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152358] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + ACTIONS(6801), 1, + aux_sym_expr_binary_token13, + ACTIONS(6803), 1, + aux_sym_expr_binary_token14, + ACTIONS(6805), 1, + aux_sym_expr_binary_token15, + STATE(3928), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6793), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6799), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6795), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(3601), 5, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6797), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152420] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + ACTIONS(6801), 1, + aux_sym_expr_binary_token13, + ACTIONS(6803), 1, + aux_sym_expr_binary_token14, + ACTIONS(6805), 1, + aux_sym_expr_binary_token15, + ACTIONS(6807), 1, + aux_sym_expr_binary_token16, + STATE(3929), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6793), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6799), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(3601), 4, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6795), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6797), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152484] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + ACTIONS(6801), 1, + aux_sym_expr_binary_token13, + ACTIONS(6803), 1, + aux_sym_expr_binary_token14, + ACTIONS(6805), 1, + aux_sym_expr_binary_token15, + ACTIONS(6807), 1, + aux_sym_expr_binary_token16, + ACTIONS(6809), 1, + aux_sym_expr_binary_token17, + STATE(3930), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6793), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6799), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(3601), 3, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token18, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6795), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6797), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152550] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + STATE(3931), 1, sym_comment, - ACTIONS(2212), 8, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6793), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6797), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 14, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [152602] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3603), 1, + anon_sym_DASH, + STATE(3932), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6793), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 20, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152652] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3933), 1, + sym_comment, + ACTIONS(5135), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2214), 23, + ACTIONS(5133), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356518,6 +365110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356527,21 +365120,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149486] = 4, - ACTIONS(3), 1, + [152694] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3886), 1, + STATE(3934), 1, sym_comment, - ACTIONS(3443), 8, + ACTIONS(1899), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3441), 23, + ACTIONS(1901), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356556,6 +365148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356565,588 +365158,542 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [149528] = 11, - ACTIONS(3), 1, + [152736] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3887), 1, + STATE(3935), 1, sym_comment, - ACTIONS(5287), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5285), 18, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(3601), 29, sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [149584] = 8, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152778] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3888), 1, + STATE(3936), 1, sym_comment, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5287), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5285), 21, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 25, sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [149634] = 12, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152822] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3889), 1, + STATE(3937), 1, sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 14, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 23, sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [149692] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152868] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3890), 1, + STATE(3938), 1, sym_comment, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5287), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5285), 23, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6817), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6819), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6821), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 11, sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [149738] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3891), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [152920] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3939), 1, sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 5, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6817), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6823), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6819), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6821), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 9, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [149806] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6934), 1, - anon_sym_and, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3892), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [152974] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6825), 1, + aux_sym_expr_binary_token13, + STATE(3940), 1, sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5285), 4, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6817), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6823), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6819), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6821), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 8, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_xor, - anon_sym_or, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [149876] = 19, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [153030] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6934), 1, - anon_sym_and, - ACTIONS(6936), 1, - anon_sym_xor, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3893), 1, + ACTIONS(6825), 1, + aux_sym_expr_binary_token13, + ACTIONS(6827), 1, + aux_sym_expr_binary_token14, + STATE(3941), 1, sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5285), 3, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6817), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6823), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6819), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6821), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 7, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_or, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [149948] = 13, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [153088] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3894), 1, + ACTIONS(6825), 1, + aux_sym_expr_binary_token13, + ACTIONS(6827), 1, + aux_sym_expr_binary_token14, + ACTIONS(6829), 1, + aux_sym_expr_binary_token15, + STATE(3942), 1, sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 10, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6817), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6823), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6819), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(3601), 6, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150008] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3895), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6821), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [153148] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6825), 1, + aux_sym_expr_binary_token13, + ACTIONS(6827), 1, + aux_sym_expr_binary_token14, + ACTIONS(6829), 1, + aux_sym_expr_binary_token15, + ACTIONS(6831), 1, + aux_sym_expr_binary_token16, + STATE(3943), 1, sym_comment, - ACTIONS(5287), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5285), 20, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6817), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6823), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6819), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(3601), 5, sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150062] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3896), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6821), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [153210] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6825), 1, + aux_sym_expr_binary_token13, + ACTIONS(6827), 1, + aux_sym_expr_binary_token14, + ACTIONS(6829), 1, + aux_sym_expr_binary_token15, + ACTIONS(6831), 1, + aux_sym_expr_binary_token16, + ACTIONS(6833), 1, + aux_sym_expr_binary_token17, + STATE(3944), 1, sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 8, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6817), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6823), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(3601), 4, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150124] = 15, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token18, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6819), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6821), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [153274] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3897), 1, + STATE(3945), 1, sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 7, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6817), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6821), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 15, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150188] = 16, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [153324] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3898), 1, + STATE(3946), 1, sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5285), 6, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6817), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 21, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [150254] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [153372] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3899), 1, + STATE(3947), 1, sym_comment, - ACTIONS(916), 8, + ACTIONS(1835), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(918), 23, + ACTIONS(1837), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -357161,6 +365708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -357170,576 +365718,677 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [150296] = 10, - ACTIONS(3), 1, + [153414] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6962), 1, - anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - STATE(3900), 1, + ACTIONS(6835), 1, + anon_sym_DOT_DOT2, + STATE(3948), 1, sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6972), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 19, + ACTIONS(6837), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2066), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2072), 20, + ts_builtin_sym_end, sym__newline, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150350] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [153460] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3901), 1, + STATE(3949), 1, sym_comment, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3457), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(3449), 22, - sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150398] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(2371), 7, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - STATE(3902), 1, - sym_comment, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6972), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6974), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6976), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 15, - sym__newline, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150454] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2373), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [153502] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3903), 1, - sym_comment, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3457), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3449), 24, - sym__newline, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150498] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6962), 1, - anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - ACTIONS(6982), 1, - anon_sym_bit_DASHand, - ACTIONS(6984), 1, - anon_sym_bit_DASHxor, - ACTIONS(6986), 1, - anon_sym_bit_DASHor, - STATE(3904), 1, + STATE(3950), 1, sym_comment, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6972), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6974), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6980), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6976), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6978), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 6, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [150564] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(2379), 7, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - ACTIONS(6982), 1, - anon_sym_bit_DASHand, - ACTIONS(6984), 1, - anon_sym_bit_DASHxor, - ACTIONS(6986), 1, - anon_sym_bit_DASHor, - ACTIONS(6988), 1, - anon_sym_and, - STATE(3905), 1, - sym_comment, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6972), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6974), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6980), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6976), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6978), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 5, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [150632] = 18, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2381), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [153544] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6962), 1, - anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - ACTIONS(6982), 1, - anon_sym_bit_DASHand, - ACTIONS(6984), 1, - anon_sym_bit_DASHxor, - ACTIONS(6986), 1, - anon_sym_bit_DASHor, - ACTIONS(6988), 1, - anon_sym_and, - ACTIONS(6990), 1, - anon_sym_xor, - STATE(3906), 1, + STATE(3951), 1, sym_comment, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6972), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6974), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6980), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3449), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_or, - ACTIONS(6976), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6978), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [150702] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(1839), 7, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - STATE(3907), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1841), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [153586] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + sym__newline, + STATE(3791), 1, + aux_sym_shebang_repeat1, + STATE(3952), 1, sym_comment, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6972), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6974), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6976), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6978), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 11, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5361), 27, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [153632] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150760] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6962), 1, - anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - STATE(3908), 1, + STATE(3793), 1, + aux_sym_shebang_repeat1, + STATE(3953), 1, sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3449), 21, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5361), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [153680] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, sym__newline, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150812] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6962), 1, - anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - STATE(3909), 1, + STATE(3795), 1, + aux_sym_shebang_repeat1, + STATE(3954), 1, sym_comment, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6972), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6974), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6980), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6976), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6978), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 9, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5361), 21, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [153730] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150872] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6962), 1, - anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - ACTIONS(6982), 1, - anon_sym_bit_DASHand, - STATE(3910), 1, + STATE(3797), 1, + aux_sym_shebang_repeat1, + STATE(3955), 1, sym_comment, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6972), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6974), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6980), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6976), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6978), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 8, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [153786] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [150934] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6962), 1, - anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - ACTIONS(6982), 1, - anon_sym_bit_DASHand, - ACTIONS(6984), 1, - anon_sym_bit_DASHxor, - STATE(3911), 1, + STATE(3799), 1, + aux_sym_shebang_repeat1, + STATE(3956), 1, sym_comment, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6972), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6974), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6980), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6976), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6978), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3449), 7, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 7, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [153844] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3801), 1, + aux_sym_shebang_repeat1, + STATE(3957), 1, + sym_comment, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5361), 6, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [153904] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3803), 1, + aux_sym_shebang_repeat1, + STATE(3958), 1, + sym_comment, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5361), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [153966] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3805), 1, + aux_sym_shebang_repeat1, + STATE(3959), 1, + sym_comment, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5361), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [154030] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6773), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3807), 1, + aux_sym_shebang_repeat1, + STATE(3960), 1, + sym_comment, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5361), 3, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [154096] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6773), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6777), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3809), 1, + aux_sym_shebang_repeat1, + STATE(3961), 1, + sym_comment, + ACTIONS(5361), 2, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [154164] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5421), 1, sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [150998] = 4, - ACTIONS(3), 1, + STATE(3811), 1, + aux_sym_shebang_repeat1, + STATE(3962), 1, + sym_comment, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5361), 13, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [154218] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3912), 1, + STATE(3963), 1, sym_comment, - ACTIONS(920), 8, + ACTIONS(2383), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(922), 23, + ACTIONS(2385), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -357754,6 +366403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -357763,21 +366413,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151040] = 4, - ACTIONS(3), 1, + [154260] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3913), 1, + STATE(3964), 1, sym_comment, - ACTIONS(912), 8, + ACTIONS(2326), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(914), 23, + ACTIONS(2328), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -357792,6 +366441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -357801,123 +366451,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151082] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5496), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6914), 1, - anon_sym_and, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - ACTIONS(6940), 1, - anon_sym_xor, - STATE(3769), 1, - aux_sym_shebang_repeat1, - STATE(3914), 1, - sym_comment, - ACTIONS(5348), 2, - aux_sym_ctrl_match_token1, - anon_sym_or, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [151156] = 14, - ACTIONS(3), 1, + [154302] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3771), 1, + STATE(3813), 1, aux_sym_shebang_repeat1, - STATE(3915), 1, + STATE(3965), 1, sym_comment, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5348), 9, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [151218] = 4, - ACTIONS(3), 1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5361), 19, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [154354] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3916), 1, + STATE(3966), 1, sym_comment, - ACTIONS(2345), 8, + ACTIONS(5139), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2347), 23, + ACTIONS(5137), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -357932,6 +366522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -357941,21 +366532,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151260] = 4, - ACTIONS(3), 1, + [154396] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3917), 1, + STATE(3967), 1, sym_comment, - ACTIONS(1804), 8, + ACTIONS(5160), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1806), 23, + ACTIONS(5158), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -357970,6 +366560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -357979,59 +366570,98 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151302] = 4, - ACTIONS(121), 1, + [154438] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2075), 1, - anon_sym_LPAREN2, - STATE(3918), 1, + ACTIONS(6839), 1, + anon_sym_DOT_DOT2, + STATE(3968), 1, sym_comment, - ACTIONS(2073), 30, - anon_sym_GT, + ACTIONS(6841), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1972), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1978), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [154484] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3969), 1, + sym_comment, + ACTIONS(3375), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_STAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - aux_sym_unquoted_token7, - [151344] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3373), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [154526] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3919), 1, + STATE(3970), 1, sym_comment, - ACTIONS(2325), 8, + ACTIONS(5143), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2327), 23, + ACTIONS(5141), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -358046,6 +366676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -358055,21 +366686,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151386] = 4, - ACTIONS(3), 1, + [154568] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3920), 1, + STATE(3971), 1, sym_comment, - ACTIONS(2349), 8, + ACTIONS(5164), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2351), 23, + ACTIONS(5162), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -358084,6 +366714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -358093,1166 +366724,1617 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151428] = 11, + [154610] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3972), 1, + sym_comment, + ACTIONS(2101), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [154654] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(3973), 1, + sym_comment, + ACTIONS(2107), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [154698] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6843), 1, + anon_sym_DOT_DOT2, + STATE(3974), 1, + sym_comment, + ACTIONS(6845), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1935), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1941), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [154744] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6884), 1, + ACTIONS(2131), 1, + aux_sym_unquoted_token4, + STATE(3975), 1, + sym_comment, + ACTIONS(2133), 30, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [154786] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3976), 1, + sym_comment, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4208), 1, aux_sym_shebang_repeat1, - STATE(3921), 1, + STATE(4481), 1, + sym_val_number, + STATE(4584), 1, + sym__binary_predicate_parenthesized, + STATE(4586), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [154869] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3977), 1, sym_comment, - ACTIONS(5332), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5330), 18, + STATE(3991), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4608), 1, + sym__binary_predicate_parenthesized, + STATE(4609), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [154952] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6636), 1, + aux_sym_unquoted_token2, + STATE(3978), 1, + sym_comment, + ACTIONS(1537), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [154993] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, sym__newline, - anon_sym_in, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3979), 1, + sym_comment, + STATE(3992), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4613), 1, + sym__binary_predicate_parenthesized, + STATE(4615), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [155076] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3980), 1, + sym_comment, + STATE(3997), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4626), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + STATE(4712), 1, + sym__binary_predicate_parenthesized, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [155159] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5375), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5377), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5379), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5381), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6847), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(3981), 1, + sym_comment, + ACTIONS(5363), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5369), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5371), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5365), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5385), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [155226] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2089), 1, + sym__newline, + STATE(3982), 1, + sym_comment, + ACTIONS(2093), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [155267] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3983), 1, + sym_comment, + STATE(5120), 1, + sym_redirection, + ACTIONS(6851), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6853), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6849), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [155312] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3555), 1, + anon_sym_DASH, + ACTIONS(3561), 1, + aux_sym_expr_unary_token1, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6857), 1, + anon_sym_LPAREN, + ACTIONS(6859), 1, aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [151484] = 12, - ACTIONS(3), 1, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3984), 1, + sym_comment, + STATE(4074), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4754), 1, + sym__binary_predicate, + STATE(4757), 1, + sym__predicate, + STATE(4797), 1, + sym__expr_unary_minus, + STATE(5255), 1, + sym_val_closure, + ACTIONS(6855), 2, + anon_sym_true, + anon_sym_false, + STATE(4771), 2, + sym_expr_unary, + sym_val_bool, + STATE(5350), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [155395] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5409), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5411), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5413), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5415), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(5428), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6861), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(3981), 1, + aux_sym_shebang_repeat1, + STATE(3985), 1, + sym_comment, + ACTIONS(5390), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5405), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5407), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5419), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [155462] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + STATE(3986), 1, + sym_comment, + ACTIONS(1537), 29, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [155503] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6908), 1, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3987), 1, + sym_comment, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4208), 1, + aux_sym_shebang_repeat1, + STATE(4481), 1, + sym_val_number, + STATE(4678), 1, + sym__binary_predicate_parenthesized, + STATE(4680), 1, + sym__expr_unary_minus, + STATE(4687), 1, + sym__predicate, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [155586] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3819), 1, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3988), 1, + sym_comment, + STATE(3998), 1, aux_sym_shebang_repeat1, - STATE(3922), 1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4630), 1, + sym__binary_predicate_parenthesized, + STATE(4631), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [155669] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3989), 1, sym_comment, - ACTIONS(5336), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5334), 17, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [151542] = 4, - ACTIONS(3), 1, + STATE(3999), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4632), 1, + sym__binary_predicate_parenthesized, + STATE(4633), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [155752] = 25, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3923), 1, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3990), 1, + sym_comment, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4208), 1, + aux_sym_shebang_repeat1, + STATE(4481), 1, + sym_val_number, + STATE(4650), 1, + sym__binary_predicate_parenthesized, + STATE(4673), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [155835] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3991), 1, + sym_comment, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4208), 1, + aux_sym_shebang_repeat1, + STATE(4481), 1, + sym_val_number, + STATE(4680), 1, + sym__expr_unary_minus, + STATE(4698), 1, + sym__binary_predicate_parenthesized, + STATE(4703), 1, + sym__predicate, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [155918] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3992), 1, sym_comment, - ACTIONS(2353), 8, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4208), 1, + aux_sym_shebang_repeat1, + STATE(4481), 1, + sym_val_number, + STATE(4540), 1, + sym__binary_predicate_parenthesized, + STATE(4636), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [156001] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3993), 1, + sym_comment, + STATE(4016), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4552), 1, + sym__binary_predicate_parenthesized, + STATE(4591), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [156084] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2355), 23, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3994), 1, + sym_comment, + STATE(4004), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4602), 1, + sym__binary_predicate_parenthesized, + STATE(4612), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [151584] = 5, - ACTIONS(3), 1, + [156167] = 25, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token6, - STATE(3924), 1, - sym_comment, - ACTIONS(1429), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 25, - sym__newline, + ACTIONS(3501), 1, anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [151628] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3925), 1, - sym_comment, - ACTIONS(1808), 8, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1810), 23, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3976), 1, + aux_sym_shebang_repeat1, + STATE(3995), 1, + sym_comment, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4654), 1, + sym__binary_predicate_parenthesized, + STATE(4659), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [151670] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6992), 1, - anon_sym_DOT_DOT2, - STATE(3926), 1, - sym_comment, - ACTIONS(6994), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1595), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [151716] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3927), 1, - sym_comment, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5332), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5330), 21, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [151766] = 9, - ACTIONS(3), 1, + [156250] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(2105), 1, sym__newline, - STATE(3820), 1, - aux_sym_shebang_repeat1, - STATE(3928), 1, - sym_comment, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5336), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(5334), 20, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [151818] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3929), 1, + STATE(3996), 1, sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 14, + ACTIONS(2107), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [156291] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, sym__newline, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [151876] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3930), 1, - sym_comment, - ACTIONS(2226), 8, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2228), 23, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3997), 1, + sym_comment, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4208), 1, + aux_sym_shebang_repeat1, + STATE(4481), 1, + sym_val_number, + STATE(4537), 1, + sym__binary_predicate_parenthesized, + STATE(4538), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [151918] = 4, - ACTIONS(3), 1, + [156374] = 25, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3931), 1, - sym_comment, - ACTIONS(1816), 8, - anon_sym_DOLLAR, + ACTIONS(3501), 1, anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1818), 23, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3998), 1, + sym_comment, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4208), 1, + aux_sym_shebang_repeat1, + STATE(4481), 1, + sym_val_number, + STATE(4547), 1, + sym__binary_predicate_parenthesized, + STATE(4551), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [151960] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3821), 1, - aux_sym_shebang_repeat1, - STATE(3932), 1, - sym_comment, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5334), 13, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [152020] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3933), 1, - sym_comment, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5332), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5330), 23, - sym__newline, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [152066] = 7, - ACTIONS(3), 1, + [156457] = 25, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - STATE(3822), 1, - aux_sym_shebang_repeat1, - STATE(3934), 1, - sym_comment, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5336), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(5334), 22, + ACTIONS(3501), 1, anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [152114] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3773), 1, - aux_sym_shebang_repeat1, - STATE(3935), 1, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3999), 1, sym_comment, - ACTIONS(5350), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5348), 19, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [152170] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4208), 1, aux_sym_shebang_repeat1, - STATE(3936), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [152238] = 18, - ACTIONS(3), 1, + STATE(4481), 1, + sym_val_number, + STATE(4568), 1, + sym__binary_predicate_parenthesized, + STATE(4569), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [156540] = 25, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5452), 1, - sym__newline, - ACTIONS(6908), 1, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - STATE(3823), 1, - aux_sym_shebang_repeat1, - STATE(3937), 1, - sym_comment, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5334), 4, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [152308] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6924), 1, - anon_sym_PLUS, - STATE(3921), 1, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(3987), 1, aux_sym_shebang_repeat1, - STATE(3938), 1, + STATE(4000), 1, sym_comment, - ACTIONS(5350), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5348), 17, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [152366] = 18, - ACTIONS(3), 1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4585), 1, + sym__binary_predicate_parenthesized, + STATE(4587), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [156623] = 25, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6884), 1, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6934), 1, - anon_sym_and, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3939), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5330), 4, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_xor, - anon_sym_or, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [152436] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5496), 1, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6914), 1, - anon_sym_and, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - ACTIONS(6940), 1, - anon_sym_xor, - STATE(3893), 1, - aux_sym_shebang_repeat1, - STATE(3940), 1, - sym_comment, - ACTIONS(5342), 2, - aux_sym_ctrl_match_token1, - anon_sym_or, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [152510] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3941), 1, - sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [152551] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3942), 1, - sym_comment, - ACTIONS(3509), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3507), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [152592] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7004), 1, - anon_sym_and, - ACTIONS(7016), 1, - anon_sym_bit_DASHand, - ACTIONS(7018), 1, - anon_sym_bit_DASHxor, - ACTIONS(7020), 1, - anon_sym_bit_DASHor, - STATE(3943), 1, - sym_comment, - ACTIONS(6996), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7008), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7014), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 4, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_xor, - anon_sym_or, - ACTIONS(7000), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [152657] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3944), 1, - sym_comment, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3457), 4, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(3449), 20, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [152704] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7004), 1, - anon_sym_and, - ACTIONS(7016), 1, - anon_sym_bit_DASHand, - ACTIONS(7018), 1, - anon_sym_bit_DASHxor, - ACTIONS(7020), 1, - anon_sym_bit_DASHor, - ACTIONS(7022), 1, - anon_sym_xor, - STATE(3945), 1, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(4001), 1, sym_comment, - ACTIONS(6996), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7008), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7014), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 3, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_or, - ACTIONS(7000), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [152771] = 25, - ACTIONS(3), 1, + STATE(4008), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4590), 1, + sym__binary_predicate_parenthesized, + STATE(4617), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [156706] = 25, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6858), 1, + ACTIONS(6697), 1, + sym__newline, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6862), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3946), 1, + STATE(4002), 1, sym_comment, - STATE(4063), 1, + STATE(4010), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4481), 1, sym_val_number, - STATE(4580), 1, - sym__binary_predicate, - STATE(4584), 1, + STATE(4619), 1, + sym__binary_predicate_parenthesized, + STATE(4620), 1, sym__predicate, - STATE(5041), 1, - sym_val_closure, - ACTIONS(6852), 2, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152854] = 6, - ACTIONS(3), 1, + [156789] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3947), 1, + STATE(4003), 1, sym_comment, - STATE(5042), 1, + STATE(5083), 1, sym_redirection, - ACTIONS(7026), 8, + ACTIONS(6851), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -359261,7 +368343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(7028), 8, + ACTIONS(6853), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -359270,7 +368352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(7024), 13, + ACTIONS(6863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359284,486 +368366,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152899] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3948), 1, - sym_comment, - ACTIONS(6996), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7014), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7000), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 10, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [152954] = 20, - ACTIONS(3), 1, + [156834] = 25, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(5471), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_bit_DASHand, - ACTIONS(5477), 1, - anon_sym_bit_DASHxor, - ACTIONS(5486), 1, - anon_sym_and, - ACTIONS(5488), 1, - anon_sym_bit_DASHor, - ACTIONS(5496), 1, - sym__newline, - ACTIONS(5498), 1, - anon_sym_xor, - ACTIONS(7030), 1, - anon_sym_or, - STATE(3949), 1, - sym_comment, - STATE(3999), 1, - aux_sym_shebang_repeat1, - ACTIONS(5455), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5473), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5459), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [153027] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3950), 1, - sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3449), 20, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [153076] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5496), 1, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6908), 1, - anon_sym_DASH, - ACTIONS(6914), 1, - anon_sym_and, - ACTIONS(6924), 1, - anon_sym_PLUS, - ACTIONS(6928), 1, - anon_sym_bit_DASHand, - ACTIONS(6930), 1, - anon_sym_bit_DASHxor, - ACTIONS(6932), 1, - anon_sym_bit_DASHor, - ACTIONS(6940), 1, - anon_sym_xor, - ACTIONS(7032), 1, - anon_sym_or, - STATE(3951), 1, - sym_comment, - STATE(3955), 1, - aux_sym_shebang_repeat1, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6912), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6918), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6920), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6922), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6926), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6910), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6916), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [153149] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3952), 1, - sym_comment, - ACTIONS(6996), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7008), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7014), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7000), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 8, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [153206] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7016), 1, - anon_sym_bit_DASHand, - STATE(3953), 1, - sym_comment, - ACTIONS(6996), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7008), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7014), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7000), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 7, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [153265] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7016), 1, - anon_sym_bit_DASHand, - ACTIONS(7018), 1, - anon_sym_bit_DASHxor, - STATE(3954), 1, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(4004), 1, sym_comment, - ACTIONS(6996), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7008), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7014), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7000), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 6, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [153326] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5496), 1, - sym__newline, - ACTIONS(6884), 1, - anon_sym_DASH, - ACTIONS(6898), 1, - anon_sym_PLUS, - ACTIONS(6902), 1, - anon_sym_bit_DASHand, - ACTIONS(6904), 1, - anon_sym_bit_DASHxor, - ACTIONS(6934), 1, - anon_sym_and, - ACTIONS(6936), 1, - anon_sym_xor, - ACTIONS(6938), 1, - anon_sym_bit_DASHor, - ACTIONS(7034), 1, - anon_sym_or, - STATE(2154), 1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4208), 1, aux_sym_shebang_repeat1, - STATE(3955), 1, - sym_comment, - ACTIONS(6882), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6888), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6892), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6894), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6896), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6900), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6886), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6890), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [153399] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3956), 1, - sym_comment, - ACTIONS(6996), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7014), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 14, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [153452] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3957), 1, - sym_comment, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3457), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3449), 22, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [153495] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5002), 1, - aux_sym_unquoted_token6, - STATE(3958), 1, + STATE(4481), 1, + sym_val_number, + STATE(4533), 1, + sym__predicate, + STATE(4674), 1, + sym__binary_predicate_parenthesized, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [156917] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4005), 1, sym_comment, - ACTIONS(1429), 5, + ACTIONS(1982), 3, anon_sym_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 24, - anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1984), 27, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_in, - aux_sym_ctrl_match_token1, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -359776,2881 +368459,4884 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [153538] = 25, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156958] = 25, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6703), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3959), 1, + STATE(4006), 1, sym_comment, - STATE(4063), 1, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, + STATE(4481), 1, sym_val_number, - STATE(4445), 1, - sym__binary_predicate_parenthesized, - STATE(4446), 1, + STATE(4624), 1, + sym__binary_predicate, + STATE(4640), 1, sym__predicate, - ACTIONS(6852), 2, + STATE(4680), 1, + sym__expr_unary_minus, + STATE(5082), 1, + sym_val_closure, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153621] = 25, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + [157041] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6761), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6769), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6773), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6777), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6865), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(4007), 1, + sym_comment, + STATE(4009), 1, + aux_sym_shebang_repeat1, + ACTIONS(6733), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6741), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6749), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6757), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6737), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6751), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6753), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [157108] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6858), 1, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3960), 1, + STATE(4008), 1, sym_comment, - STATE(3993), 1, - aux_sym_shebang_repeat1, - STATE(4063), 1, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4208), 1, + aux_sym_shebang_repeat1, + STATE(4481), 1, sym_val_number, - STATE(4563), 1, + STATE(4534), 1, sym__binary_predicate_parenthesized, - STATE(4573), 1, + STATE(4536), 1, sym__predicate, - ACTIONS(6852), 2, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153704] = 25, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + [157191] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6763), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6767), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6771), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6775), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6867), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(4009), 1, + sym_comment, + ACTIONS(6731), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6739), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6743), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6755), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6735), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6745), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6747), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [157258] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6858), 1, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3961), 1, + STATE(4010), 1, sym_comment, - STATE(4063), 1, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4186), 1, + STATE(4208), 1, aux_sym_shebang_repeat1, - STATE(4367), 1, + STATE(4481), 1, sym_val_number, - STATE(4540), 1, + STATE(4680), 1, + sym__expr_unary_minus, + STATE(4694), 1, sym__binary_predicate_parenthesized, - STATE(4559), 1, + STATE(4707), 1, sym__predicate, - ACTIONS(6852), 2, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153787] = 25, - ACTIONS(3), 1, + [157341] = 25, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6858), 1, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3962), 1, + STATE(3990), 1, + aux_sym_shebang_repeat1, + STATE(4011), 1, sym_comment, - STATE(4063), 1, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, - sym_val_number, STATE(4481), 1, + sym_val_number, + STATE(4597), 1, sym__binary_predicate_parenthesized, - STATE(4483), 1, + STATE(4598), 1, sym__predicate, - ACTIONS(6852), 2, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153870] = 25, - ACTIONS(3), 1, + [157424] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(2097), 1, + sym__newline, + STATE(4012), 1, + sym_comment, + ACTIONS(2101), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [157465] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, + STATE(4013), 1, + sym_comment, + ACTIONS(1537), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [157506] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6381), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6383), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6385), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6387), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6389), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6869), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(4014), 1, + sym_comment, + STATE(4015), 1, + aux_sym_shebang_repeat1, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6371), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6373), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6379), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6369), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6375), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6377), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [157573] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5426), 1, + sym__newline, + ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6409), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6411), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6413), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6415), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6871), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(4015), 1, + sym_comment, + ACTIONS(6393), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6397), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6399), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6405), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6395), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6403), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [157640] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, + ACTIONS(6697), 1, sym__newline, - ACTIONS(6858), 1, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3963), 1, + STATE(4016), 1, sym_comment, - STATE(3987), 1, - aux_sym_shebang_repeat1, - STATE(4063), 1, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4208), 1, + aux_sym_shebang_repeat1, + STATE(4481), 1, sym_val_number, - STATE(4458), 1, + STATE(4525), 1, sym__binary_predicate_parenthesized, - STATE(4459), 1, + STATE(4618), 1, sym__predicate, - ACTIONS(6852), 2, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153953] = 25, - ACTIONS(3), 1, + [157723] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6883), 1, + aux_sym_expr_binary_token13, + ACTIONS(6885), 1, + aux_sym_expr_binary_token14, + ACTIONS(6887), 1, + aux_sym_expr_binary_token15, + STATE(4017), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6879), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6881), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(3601), 4, + anon_sym_EQ_GT, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6889), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6891), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [157781] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6903), 1, + aux_sym_expr_binary_token13, + ACTIONS(6905), 1, + aux_sym_expr_binary_token14, + ACTIONS(6907), 1, + aux_sym_expr_binary_token15, + ACTIONS(6909), 1, + aux_sym_expr_binary_token16, + ACTIONS(6911), 1, + aux_sym_expr_binary_token17, + STATE(4018), 1, + sym_comment, + ACTIONS(3601), 2, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token18, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6899), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6901), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6913), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6915), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [157843] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + STATE(4019), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(3601), 27, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [157883] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4020), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(3601), 27, + anon_sym_EQ_GT, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [157923] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4021), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 23, + anon_sym_EQ_GT, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [157965] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4022), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 21, + anon_sym_EQ_GT, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158009] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4023), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6879), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6889), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6891), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 9, + anon_sym_EQ_GT, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [158059] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4024), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6879), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6881), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6889), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6891), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 7, + anon_sym_EQ_GT, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [158111] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6883), 1, + aux_sym_expr_binary_token13, + STATE(4025), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6879), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6881), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6889), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(3601), 6, + anon_sym_EQ_GT, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6891), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158165] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6883), 1, + aux_sym_expr_binary_token13, + ACTIONS(6885), 1, + aux_sym_expr_binary_token14, + STATE(4026), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6879), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6881), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6889), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(3601), 5, + anon_sym_EQ_GT, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6891), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158221] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6883), 1, + aux_sym_expr_binary_token13, + ACTIONS(6885), 1, + aux_sym_expr_binary_token14, + ACTIONS(6887), 1, + aux_sym_expr_binary_token15, + ACTIONS(6917), 1, + aux_sym_expr_binary_token16, + STATE(4027), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6879), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6881), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(3601), 3, + anon_sym_EQ_GT, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6889), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6891), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158281] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6883), 1, + aux_sym_expr_binary_token13, + ACTIONS(6885), 1, + aux_sym_expr_binary_token14, + ACTIONS(6887), 1, + aux_sym_expr_binary_token15, + ACTIONS(6917), 1, + aux_sym_expr_binary_token16, + ACTIONS(6919), 1, + aux_sym_expr_binary_token17, + STATE(4028), 1, + sym_comment, + ACTIONS(3601), 2, + anon_sym_EQ_GT, + aux_sym_expr_binary_token18, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6879), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6881), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6889), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6891), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158343] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4029), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6879), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6891), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 13, + anon_sym_EQ_GT, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [158391] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4030), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6879), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 19, + anon_sym_EQ_GT, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158437] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6903), 1, + aux_sym_expr_binary_token13, + STATE(4031), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6899), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6901), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6913), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(3601), 6, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6915), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158491] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4032), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6899), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 19, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158537] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4033), 1, + sym_comment, + STATE(5225), 1, + sym_redirection, + ACTIONS(6921), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6923), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6863), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [158581] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6903), 1, + aux_sym_expr_binary_token13, + ACTIONS(6905), 1, + aux_sym_expr_binary_token14, + STATE(4034), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6899), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6901), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6913), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(3601), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6915), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158637] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4035), 1, + sym_comment, + STATE(5338), 1, + sym_redirection, + ACTIONS(6851), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6853), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6925), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [158681] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4036), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6899), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6915), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 13, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [158729] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4037), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158771] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4038), 1, + sym_comment, + STATE(5289), 1, + sym_redirection, + ACTIONS(6921), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6923), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6849), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [158815] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4039), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3601), 21, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [158859] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4040), 1, + sym_comment, + STATE(5291), 1, + sym_redirection, + ACTIONS(6851), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6853), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6927), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [158903] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4041), 1, + sym_comment, + ACTIONS(5231), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5227), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [158943] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4042), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6899), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6901), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6913), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6915), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 7, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [158995] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6903), 1, + aux_sym_expr_binary_token13, + ACTIONS(6905), 1, + aux_sym_expr_binary_token14, + ACTIONS(6907), 1, + aux_sym_expr_binary_token15, + STATE(4043), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6899), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6901), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(3601), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6913), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6915), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [159053] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6903), 1, + aux_sym_expr_binary_token13, + ACTIONS(6905), 1, + aux_sym_expr_binary_token14, + ACTIONS(6907), 1, + aux_sym_expr_binary_token15, + ACTIONS(6909), 1, + aux_sym_expr_binary_token16, + STATE(4044), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6899), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6901), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(3601), 3, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6913), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6915), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [159113] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4045), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6899), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6913), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6915), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(3601), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [159163] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3555), 1, + anon_sym_DASH, + ACTIONS(3561), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6857), 1, + anon_sym_LPAREN, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3964), 1, + STATE(4046), 1, sym_comment, - STATE(3981), 1, - aux_sym_shebang_repeat1, - STATE(4063), 1, + STATE(4074), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4481), 1, sym_val_number, - STATE(4447), 1, - sym__binary_predicate_parenthesized, - STATE(4450), 1, + STATE(4742), 1, + sym__binary_predicate, + STATE(4753), 1, sym__predicate, - ACTIONS(6852), 2, + STATE(4797), 1, + sym__expr_unary_minus, + ACTIONS(6855), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4771), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5350), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154036] = 5, - ACTIONS(3), 1, + [159240] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token6, - STATE(3965), 1, + STATE(4047), 1, sym_comment, - ACTIONS(1429), 5, + ACTIONS(6931), 2, anon_sym_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1441), 24, - anon_sym_DASH, + ACTIONS(6937), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6933), 4, anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(6935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154079] = 25, - ACTIONS(3), 1, + ACTIONS(6929), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [159285] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, + ACTIONS(6883), 1, + aux_sym_expr_binary_token13, + ACTIONS(6885), 1, + aux_sym_expr_binary_token14, + ACTIONS(6887), 1, + aux_sym_expr_binary_token15, + ACTIONS(6917), 1, + aux_sym_expr_binary_token16, + ACTIONS(6919), 1, + aux_sym_expr_binary_token17, + ACTIONS(6939), 1, + aux_sym_expr_binary_token18, + STATE(4048), 1, + sym_comment, + ACTIONS(6873), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6877), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6879), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6881), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6875), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6889), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6891), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [159346] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4049), 1, + sym_comment, + ACTIONS(2085), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2087), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [159385] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6801), 1, + aux_sym_expr_binary_token13, + ACTIONS(6803), 1, + aux_sym_expr_binary_token14, + ACTIONS(6805), 1, + aux_sym_expr_binary_token15, + ACTIONS(6807), 1, + aux_sym_expr_binary_token16, + ACTIONS(6809), 1, + aux_sym_expr_binary_token17, + ACTIONS(6941), 1, + aux_sym_expr_binary_token18, + STATE(4050), 1, + sym_comment, + ACTIONS(6787), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6791), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6793), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6799), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6789), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6795), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6797), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [159446] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4051), 1, + sym_comment, + ACTIONS(1690), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1698), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [159485] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4052), 1, + sym_comment, + ACTIONS(2117), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2121), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [159524] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3519), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(3555), 1, + anon_sym_DASH, + ACTIONS(3561), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6857), 1, + anon_sym_LPAREN, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3961), 1, - aux_sym_shebang_repeat1, - STATE(3966), 1, + STATE(4053), 1, sym_comment, - STATE(4063), 1, + STATE(4074), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4481), 1, sym_val_number, - STATE(4495), 1, - sym__binary_predicate_parenthesized, - STATE(4506), 1, + STATE(4740), 1, + sym__binary_predicate, + STATE(4741), 1, sym__predicate, - ACTIONS(6852), 2, + STATE(4797), 1, + sym__expr_unary_minus, + ACTIONS(6855), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4771), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5350), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154162] = 6, - ACTIONS(3), 1, + [159601] = 23, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6835), 1, + ACTIONS(3501), 1, anon_sym_DASH, - STATE(3967), 1, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4054), 1, sym_comment, - ACTIONS(3166), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(3168), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3172), 22, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154207] = 4, - ACTIONS(3), 1, + STATE(4481), 1, + sym_val_number, + STATE(4594), 1, + sym__binary_predicate, + STATE(4616), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [159678] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3968), 1, + ACTIONS(6825), 1, + aux_sym_expr_binary_token13, + ACTIONS(6827), 1, + aux_sym_expr_binary_token14, + ACTIONS(6829), 1, + aux_sym_expr_binary_token15, + ACTIONS(6831), 1, + aux_sym_expr_binary_token16, + ACTIONS(6833), 1, + aux_sym_expr_binary_token17, + ACTIONS(6943), 1, + aux_sym_expr_binary_token18, + STATE(4055), 1, sym_comment, - ACTIONS(3545), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3543), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154248] = 25, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(53), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3493), 1, + ACTIONS(6811), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6815), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6817), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6823), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6813), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6819), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6821), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [159739] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3623), 1, + aux_sym_expr_binary_token13, + ACTIONS(3625), 1, + aux_sym_expr_binary_token14, + ACTIONS(3627), 1, + aux_sym_expr_binary_token15, + ACTIONS(3629), 1, + aux_sym_expr_binary_token16, + ACTIONS(3631), 1, + aux_sym_expr_binary_token17, + ACTIONS(6945), 1, + aux_sym_expr_binary_token18, + STATE(4056), 1, + sym_comment, + ACTIONS(3609), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(3613), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(3615), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(3621), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(3611), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(3617), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(3619), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [159800] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6128), 1, - anon_sym_LPAREN, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6860), 1, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - ACTIONS(7038), 1, - aux_sym_ctrl_match_token1, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2491), 1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4057), 1, + sym_comment, + STATE(4481), 1, + sym_val_number, + STATE(4628), 1, + sym__binary_predicate, + STATE(4645), 1, + sym__predicate, + STATE(4680), 1, sym__expr_unary_minus, - STATE(3969), 1, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [159877] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4058), 1, sym_comment, - STATE(4066), 1, + ACTIONS(2123), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2127), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [159916] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4059), 1, + sym_comment, + STATE(4481), 1, sym_val_number, - STATE(4689), 1, - sym__predicate, - STATE(4745), 1, + STATE(4655), 1, sym__binary_predicate, - STATE(5162), 1, - sym_val_closure, - ACTIONS(7036), 2, + STATE(4670), 1, + sym__predicate, + STATE(4680), 1, + sym__expr_unary_minus, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4610), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5152), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154331] = 25, - ACTIONS(3), 1, + [159993] = 23, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3970), 1, - sym_comment, - STATE(4063), 1, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, + STATE(4060), 1, + sym_comment, + STATE(4481), 1, sym_val_number, - STATE(4432), 1, - sym__binary_predicate_parenthesized, - STATE(4433), 1, + STATE(4680), 1, + sym__expr_unary_minus, + STATE(4690), 1, + sym__binary_predicate, + STATE(4692), 1, sym__predicate, - ACTIONS(6852), 2, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154414] = 25, - ACTIONS(3), 1, + [160070] = 23, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(3501), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, + STATE(4047), 1, + sym_expr_parenthesized, + STATE(4061), 1, + sym_comment, + STATE(4481), 1, + sym_val_number, + STATE(4577), 1, + sym__binary_predicate, + STATE(4592), 1, + sym__predicate, + STATE(4680), 1, sym__expr_unary_minus, - STATE(3971), 1, + ACTIONS(6693), 2, + anon_sym_true, + anon_sym_false, + STATE(4642), 2, + sym_expr_unary, + sym_val_bool, + STATE(5304), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [160147] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4062), 1, sym_comment, - STATE(3985), 1, - aux_sym_shebang_repeat1, + ACTIONS(3175), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3173), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [160186] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3555), 1, + anon_sym_DASH, + ACTIONS(3561), 1, + aux_sym_expr_unary_token1, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6857), 1, + anon_sym_LPAREN, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, STATE(4063), 1, + sym_comment, + STATE(4074), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4481), 1, sym_val_number, - STATE(4455), 1, - sym__binary_predicate_parenthesized, - STATE(4457), 1, + STATE(4732), 1, + sym__binary_predicate, + STATE(4735), 1, sym__predicate, - ACTIONS(6852), 2, + STATE(4797), 1, + sym__expr_unary_minus, + ACTIONS(6855), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4771), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5350), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154497] = 4, - ACTIONS(3), 1, + [160263] = 23, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3972), 1, - sym_comment, - ACTIONS(2077), 6, - anon_sym_GT, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3555), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2081), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154538] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3973), 1, + ACTIONS(3561), 1, + aux_sym_expr_unary_token1, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6707), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6709), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6857), 1, + anon_sym_LPAREN, + STATE(3712), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym__val_number, + STATE(4064), 1, sym_comment, - ACTIONS(3447), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3445), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154579] = 4, - ACTIONS(3), 1, + STATE(4074), 1, + sym_expr_parenthesized, + STATE(4481), 1, + sym_val_number, + STATE(4729), 1, + sym__binary_predicate, + STATE(4731), 1, + sym__predicate, + STATE(4797), 1, + sym__expr_unary_minus, + ACTIONS(6855), 2, + anon_sym_true, + anon_sym_false, + STATE(4771), 2, + sym_expr_unary, + sym_val_bool, + STATE(5350), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6695), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [160340] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3974), 1, + ACTIONS(6446), 1, + aux_sym_expr_binary_token13, + ACTIONS(6448), 1, + aux_sym_expr_binary_token14, + ACTIONS(6450), 1, + aux_sym_expr_binary_token15, + ACTIONS(6452), 1, + aux_sym_expr_binary_token16, + ACTIONS(6454), 1, + aux_sym_expr_binary_token17, + ACTIONS(6947), 1, + aux_sym_expr_binary_token18, + STATE(4065), 1, sym_comment, - ACTIONS(2073), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2075), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154620] = 25, - ACTIONS(3), 1, + ACTIONS(6432), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6436), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6438), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6444), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6434), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6440), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6442), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [160401] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(5448), 1, + aux_sym_expr_binary_token13, + ACTIONS(5450), 1, + aux_sym_expr_binary_token14, + ACTIONS(5452), 1, + aux_sym_expr_binary_token15, + ACTIONS(5454), 1, + aux_sym_expr_binary_token16, + ACTIONS(5456), 1, + aux_sym_expr_binary_token17, + ACTIONS(6949), 1, + aux_sym_expr_binary_token18, + STATE(4066), 1, + sym_comment, + ACTIONS(5434), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5438), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5440), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5446), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5436), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5442), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5444), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [160462] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6903), 1, + aux_sym_expr_binary_token13, + ACTIONS(6905), 1, + aux_sym_expr_binary_token14, + ACTIONS(6907), 1, + aux_sym_expr_binary_token15, + ACTIONS(6909), 1, + aux_sym_expr_binary_token16, + ACTIONS(6911), 1, + aux_sym_expr_binary_token17, + ACTIONS(6951), 1, + aux_sym_expr_binary_token18, + STATE(4067), 1, + sym_comment, + ACTIONS(6893), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6897), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6899), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6901), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6895), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6913), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6915), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [160523] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + anon_sym_DASH, + ACTIONS(3507), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(3519), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, + ACTIONS(6699), 1, anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3975), 1, - sym_comment, - STATE(4000), 1, - aux_sym_shebang_repeat1, - STATE(4063), 1, + STATE(4047), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4068), 1, + sym_comment, + STATE(4481), 1, sym_val_number, - STATE(4478), 1, - sym__binary_predicate_parenthesized, - STATE(4554), 1, + STATE(4526), 1, sym__predicate, - ACTIONS(6852), 2, + STATE(4680), 1, + sym__expr_unary_minus, + STATE(4702), 1, + sym__binary_predicate, + ACTIONS(6693), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4642), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5304), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154703] = 25, - ACTIONS(3), 1, + [160600] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, + ACTIONS(5506), 1, + aux_sym_expr_binary_token13, + ACTIONS(5508), 1, + aux_sym_expr_binary_token14, + ACTIONS(5510), 1, + aux_sym_expr_binary_token15, + ACTIONS(5512), 1, + aux_sym_expr_binary_token16, + ACTIONS(5514), 1, + aux_sym_expr_binary_token17, + ACTIONS(6953), 1, + aux_sym_expr_binary_token18, + STATE(4069), 1, + sym_comment, + ACTIONS(5496), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5500), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5502), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5504), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5498), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5516), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5518), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [160661] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4070), 1, + sym_comment, + ACTIONS(1709), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1717), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [160700] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3519), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(3555), 1, + anon_sym_DASH, + ACTIONS(3561), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6857), 1, + anon_sym_LPAREN, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3976), 1, + STATE(4071), 1, sym_comment, - STATE(3998), 1, - aux_sym_shebang_repeat1, - STATE(4063), 1, + STATE(4074), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4481), 1, sym_val_number, - STATE(4518), 1, - sym__binary_predicate_parenthesized, - STATE(4523), 1, + STATE(4737), 1, + sym__binary_predicate, + STATE(4739), 1, sym__predicate, - ACTIONS(6852), 2, + STATE(4797), 1, + sym__expr_unary_minus, + ACTIONS(6855), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4771), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5350), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154786] = 25, - ACTIONS(3), 1, + [160777] = 23, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, + ACTIONS(3519), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, + ACTIONS(3555), 1, + anon_sym_DASH, + ACTIONS(3561), 1, aux_sym_expr_unary_token1, - ACTIONS(6850), 1, + ACTIONS(6691), 1, sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6701), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, + ACTIONS(6705), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, + ACTIONS(6707), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, + ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - STATE(1620), 1, + ACTIONS(6711), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6857), 1, + anon_sym_LPAREN, + STATE(3712), 1, sym__val_number_decimal, - STATE(1624), 1, + STATE(3713), 1, sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3962), 1, - aux_sym_shebang_repeat1, - STATE(3977), 1, + STATE(4072), 1, sym_comment, - STATE(4063), 1, + STATE(4074), 1, sym_expr_parenthesized, - STATE(4367), 1, + STATE(4481), 1, sym_val_number, - STATE(4565), 1, - sym__binary_predicate_parenthesized, - STATE(4566), 1, + STATE(4725), 1, + sym__binary_predicate, + STATE(4727), 1, sym__predicate, - ACTIONS(6852), 2, + STATE(4797), 1, + sym__expr_unary_minus, + ACTIONS(6855), 2, anon_sym_true, anon_sym_false, - STATE(4589), 2, + STATE(4771), 2, sym_expr_unary, sym_val_bool, - STATE(5202), 2, + STATE(5350), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6854), 5, + ACTIONS(6695), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154869] = 4, - ACTIONS(3), 1, + [160854] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6355), 1, + aux_sym_expr_binary_token13, + ACTIONS(6357), 1, + aux_sym_expr_binary_token14, + ACTIONS(6359), 1, + aux_sym_expr_binary_token15, + ACTIONS(6361), 1, + aux_sym_expr_binary_token16, + ACTIONS(6363), 1, + aux_sym_expr_binary_token17, + ACTIONS(6955), 1, + aux_sym_expr_binary_token18, + STATE(4073), 1, + sym_comment, + ACTIONS(6341), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6345), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6347), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6353), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6343), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6349), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6351), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [160915] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3978), 1, + STATE(4074), 1, sym_comment, - ACTIONS(2155), 6, + ACTIONS(6957), 2, anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2159), 24, - anon_sym_DASH_DASH, + ACTIONS(6963), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6959), 4, anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + ACTIONS(6961), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154910] = 4, + ACTIONS(6929), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160959] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(6260), 1, + anon_sym_DOLLAR, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6965), 1, + anon_sym_DOT, + ACTIONS(6969), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6971), 1, + aux_sym__immediate_decimal_token5, + STATE(4075), 1, + sym_comment, + STATE(4181), 1, + sym__immediate_decimal, + ACTIONS(6967), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3560), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1427), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161013] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6973), 1, + anon_sym_DOLLAR, + ACTIONS(6975), 1, + anon_sym_DOT, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6981), 1, + aux_sym__immediate_decimal_token5, + STATE(4076), 1, + sym_comment, + STATE(4249), 1, + sym__immediate_decimal, + ACTIONS(6977), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4421), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1427), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161066] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(6985), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6987), 1, + aux_sym__immediate_decimal_token5, + STATE(4077), 1, + sym_comment, + STATE(4321), 1, + sym__immediate_decimal, + ACTIONS(6983), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3591), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1427), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161117] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(6985), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6987), 1, + aux_sym__immediate_decimal_token5, + STATE(4078), 1, + sym_comment, + STATE(4436), 1, + sym__immediate_decimal, + ACTIONS(6983), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3590), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1455), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161168] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6989), 1, + anon_sym_DOLLAR, + ACTIONS(6993), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token5, + STATE(4079), 1, + sym_comment, + STATE(4501), 1, + sym__immediate_decimal, + ACTIONS(6991), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4814), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1427), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161218] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6997), 1, + anon_sym_DOT, + ACTIONS(6999), 1, + aux_sym__immediate_decimal_token2, + STATE(4080), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [161258] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6973), 1, + anon_sym_DOLLAR, + ACTIONS(7001), 1, + anon_sym_DOT, + STATE(4081), 1, + sym_comment, + STATE(4420), 1, + sym__immediate_decimal, + ACTIONS(6559), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4419), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161308] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6989), 1, + anon_sym_DOLLAR, + ACTIONS(6993), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token5, + STATE(4082), 1, + sym_comment, + STATE(4516), 1, + sym__immediate_decimal, + ACTIONS(6991), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4743), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1455), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161358] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(3979), 1, + ACTIONS(1427), 1, + sym__space, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(2018), 1, + anon_sym_DOLLAR, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7005), 1, + anon_sym_DOT, + ACTIONS(7007), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7009), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7013), 1, + aux_sym__immediate_decimal_token5, + STATE(4083), 1, sym_comment, - ACTIONS(2163), 6, - anon_sym_GT, + STATE(4308), 1, + sym__immediate_decimal, + STATE(4465), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1413), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161414] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7015), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7017), 1, + aux_sym__immediate_decimal_token2, + STATE(4084), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [161454] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1847), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2165), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4085), 1, + sym_comment, + STATE(4266), 1, + sym_cell_path, + ACTIONS(1849), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154951] = 4, - ACTIONS(3), 1, + [161497] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3980), 1, - sym_comment, - ACTIONS(3168), 6, - anon_sym_GT, + ACTIONS(1835), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3172), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4086), 1, + sym_comment, + STATE(4273), 1, + sym_cell_path, + ACTIONS(1837), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [154992] = 25, + [161540] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, + ACTIONS(1427), 1, + sym__space, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(4449), 1, + anon_sym_DOLLAR, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7019), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7021), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7023), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token5, + STATE(4087), 1, + sym_comment, + STATE(4641), 1, + sym__immediate_decimal, + STATE(5002), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1413), 13, sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161593] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7027), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7029), 1, + aux_sym__immediate_decimal_token2, + STATE(4088), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [161632] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6989), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3981), 1, + STATE(4089), 1, sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, - sym_val_number, - STATE(4543), 1, - sym__binary_predicate_parenthesized, - STATE(4552), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, + STATE(4809), 1, + sym__immediate_decimal, + ACTIONS(6575), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4808), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [155075] = 4, - ACTIONS(3), 1, + ACTIONS(1441), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161679] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3982), 1, + ACTIONS(1839), 1, + anon_sym_DASH, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4090), 1, sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, + STATE(4244), 1, + sym_cell_path, + ACTIONS(1841), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161722] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1774), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_comment, + STATE(4265), 1, + sym_cell_path, + ACTIONS(1776), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [155116] = 4, + [161765] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token2, + STATE(4092), 1, + sym_comment, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [161802] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(3983), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(2159), 1, + anon_sym_DOLLAR, + ACTIONS(7033), 1, + anon_sym_LPAREN2, + ACTIONS(7035), 1, + anon_sym_DOT, + ACTIONS(7037), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7039), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7041), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7043), 1, + aux_sym__immediate_decimal_token5, + STATE(4093), 1, sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, + STATE(4410), 1, + sym__immediate_decimal, + ACTIONS(1427), 2, + ts_builtin_sym_end, + sym__space, + STATE(4701), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1413), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [161857] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1778), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4094), 1, + sym_comment, + STATE(4235), 1, + sym_cell_path, + ACTIONS(1780), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [155157] = 4, - ACTIONS(3), 1, + [161900] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3984), 1, + ACTIONS(6999), 1, + aux_sym__immediate_decimal_token2, + STATE(4095), 1, sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [161937] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1762), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4096), 1, + sym_comment, + STATE(4257), 1, + sym_cell_path, + ACTIONS(1764), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [155198] = 25, + [161980] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(1455), 1, + sym__space, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(4449), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3985), 1, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7019), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7021), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7023), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token5, + STATE(4097), 1, sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, - sym_val_number, - STATE(4575), 1, - sym__binary_predicate_parenthesized, - STATE(4577), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, + STATE(4653), 1, + sym__immediate_decimal, + STATE(4866), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [155281] = 4, - ACTIONS(3), 1, + ACTIONS(1443), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162033] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3986), 1, - sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, + ACTIONS(1820), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4098), 1, + sym_comment, + STATE(4246), 1, + sym_cell_path, + ACTIONS(1822), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [155322] = 25, - ACTIONS(3), 1, + [162076] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3987), 1, + ACTIONS(7045), 1, + anon_sym_DOT, + ACTIONS(7047), 1, + aux_sym__immediate_decimal_token2, + STATE(4099), 1, sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, - sym_val_number, - STATE(4493), 1, - sym__predicate, - STATE(4600), 1, - sym__binary_predicate_parenthesized, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [155405] = 20, - ACTIONS(3), 1, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [162115] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5496), 1, + ACTIONS(1770), 1, + anon_sym_DASH, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4100), 1, + sym_comment, + STATE(4263), 1, + sym_cell_path, + ACTIONS(1772), 19, sym__newline, - ACTIONS(6498), 1, - anon_sym_DASH, - ACTIONS(6506), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, - anon_sym_bit_DASHand, - ACTIONS(6520), 1, - anon_sym_bit_DASHxor, - ACTIONS(6522), 1, - anon_sym_bit_DASHor, - ACTIONS(6524), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, - ACTIONS(6526), 1, anon_sym_xor, - ACTIONS(7040), 1, anon_sym_or, - STATE(3988), 1, - sym_comment, - STATE(3992), 1, - aux_sym_shebang_repeat1, - ACTIONS(6500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6502), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6504), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6508), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6510), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6516), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6512), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6514), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [155478] = 4, - ACTIONS(3), 1, + [162158] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3989), 1, - sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, + ACTIONS(1741), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4101), 1, + sym_comment, + STATE(4252), 1, + sym_cell_path, + ACTIONS(1745), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [155519] = 25, + [162201] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(1441), 1, + sym__space, + ACTIONS(2018), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3990), 1, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7007), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7009), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7013), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7049), 1, + anon_sym_DOT, + STATE(4102), 1, sym_comment, - STATE(4010), 1, - aux_sym_shebang_repeat1, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4464), 1, - sym__binary_predicate_parenthesized, - STATE(4471), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, + STATE(4463), 1, + sym__immediate_decimal, + STATE(4451), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [155602] = 4, - ACTIONS(3), 1, + ACTIONS(1431), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162254] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3991), 1, - sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, + ACTIONS(1899), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4103), 1, + sym_comment, + STATE(4261), 1, + sym_cell_path, + ACTIONS(1901), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [155643] = 20, - ACTIONS(3), 1, + [162297] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5496), 1, - sym__newline, - ACTIONS(6420), 1, + ACTIONS(1831), 1, anon_sym_DASH, - ACTIONS(6426), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4104), 1, + sym_comment, + STATE(4220), 1, + sym_cell_path, + ACTIONS(1833), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, - ACTIONS(6428), 1, anon_sym_xor, - ACTIONS(6438), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_bit_DASHand, - ACTIONS(6444), 1, - anon_sym_bit_DASHxor, - ACTIONS(6446), 1, - anon_sym_bit_DASHor, - ACTIONS(7042), 1, anon_sym_or, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3992), 1, - sym_comment, - ACTIONS(6418), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6424), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6432), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6434), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6436), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6440), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6422), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6430), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [155716] = 25, - ACTIONS(3), 1, + [162340] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6989), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3993), 1, + STATE(4105), 1, sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, - sym_val_number, - STATE(4485), 1, - sym__binary_predicate_parenthesized, - STATE(4513), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, + STATE(4726), 1, + sym__immediate_decimal, + ACTIONS(6575), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4719), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [155799] = 25, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, + ACTIONS(1553), 15, + ts_builtin_sym_end, sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3994), 1, - sym_comment, - STATE(4009), 1, - aux_sym_shebang_repeat1, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4512), 1, - sym__binary_predicate_parenthesized, - STATE(4549), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [155882] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162387] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3995), 1, - sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, + ACTIONS(1871), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4106), 1, + sym_comment, + STATE(4267), 1, + sym_cell_path, + ACTIONS(1873), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [155923] = 25, - ACTIONS(3), 1, + [162430] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(1875), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3959), 1, - aux_sym_shebang_repeat1, - STATE(3996), 1, - sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4562), 1, - sym__binary_predicate_parenthesized, - STATE(4574), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156006] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3997), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4107), 1, sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + STATE(4268), 1, + sym_cell_path, + ACTIONS(1877), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [156047] = 25, - ACTIONS(3), 1, + [162473] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6989), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3998), 1, + STATE(4108), 1, sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, - sym_val_number, - STATE(4439), 1, - sym__binary_predicate_parenthesized, - STATE(4448), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, + STATE(4730), 1, + sym__immediate_decimal, + ACTIONS(6575), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4728), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156130] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_DASH, - ACTIONS(5430), 1, + ACTIONS(1557), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and, - ACTIONS(5440), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_bit_DASHand, - ACTIONS(5446), 1, - anon_sym_bit_DASHxor, - ACTIONS(5448), 1, - anon_sym_bit_DASHor, - ACTIONS(5450), 1, anon_sym_xor, - ACTIONS(5496), 1, - sym__newline, - ACTIONS(7044), 1, anon_sym_or, - STATE(2154), 1, - aux_sym_shebang_repeat1, - STATE(3999), 1, - sym_comment, - ACTIONS(5422), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5428), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5434), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5436), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5438), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5442), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5426), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [156203] = 25, - ACTIONS(3), 1, + [162520] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6989), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(4000), 1, + STATE(4109), 1, sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, - sym_val_number, - STATE(4482), 1, - sym__binary_predicate_parenthesized, - STATE(4484), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, + STATE(4734), 1, + sym__immediate_decimal, + ACTIONS(6575), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4733), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156286] = 4, - ACTIONS(3), 1, + ACTIONS(1509), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162567] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4001), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(7051), 1, + anon_sym_DOT_DOT2, + ACTIONS(7055), 1, + sym_filesize_unit, + ACTIONS(7057), 1, + sym_duration_unit, + ACTIONS(7059), 1, + aux_sym_unquoted_token2, + STATE(4110), 1, sym_comment, - ACTIONS(3457), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3449), 24, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, + STATE(7585), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7053), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [156327] = 25, - ACTIONS(3), 1, + [162614] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(1879), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(3970), 1, - aux_sym_shebang_repeat1, - STATE(4002), 1, - sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4510), 1, - sym__binary_predicate_parenthesized, - STATE(4511), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156410] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4003), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4111), 1, sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + STATE(4269), 1, + sym_cell_path, + ACTIONS(1881), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [156451] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7016), 1, - anon_sym_bit_DASHand, - ACTIONS(7018), 1, - anon_sym_bit_DASHxor, - ACTIONS(7020), 1, - anon_sym_bit_DASHor, - STATE(4004), 1, - sym_comment, - ACTIONS(6996), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6998), 2, + [162657] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1883), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7008), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7014), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7000), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 5, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4112), 1, + sym_comment, + STATE(4270), 1, + sym_cell_path, + ACTIONS(1885), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [156514] = 4, - ACTIONS(3), 1, + [162700] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4005), 1, - sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, + ACTIONS(1891), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4113), 1, + sym_comment, + STATE(4271), 1, + sym_cell_path, + ACTIONS(1893), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [156555] = 9, - ACTIONS(3), 1, + [162743] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4006), 1, + ACTIONS(1895), 1, + anon_sym_DASH, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4114), 1, sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7014), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 18, + STATE(4272), 1, + sym_cell_path, + ACTIONS(1897), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [156606] = 4, - ACTIONS(3), 1, + [162786] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4007), 1, - sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, + ACTIONS(1747), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4115), 1, + sym_comment, + STATE(4207), 1, + sym_cell_path, + ACTIONS(1749), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [156647] = 4, - ACTIONS(3), 1, + [162829] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4008), 1, - sym_comment, - ACTIONS(3219), 6, - anon_sym_GT, + ACTIONS(1824), 1, anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3217), 24, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4116), 1, + sym_comment, + STATE(4212), 1, + sym_cell_path, + ACTIONS(1826), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, - aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [156688] = 25, - ACTIONS(3), 1, + [162872] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(1855), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, - sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(4009), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4117), 1, sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, - sym_val_number, - STATE(4425), 1, - sym__binary_predicate_parenthesized, - STATE(4435), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156771] = 25, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6856), 1, + STATE(4242), 1, + sym_cell_path, + ACTIONS(1857), 19, sym__newline, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(4010), 1, - sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4186), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, - sym_val_number, - STATE(4420), 1, - sym__binary_predicate_parenthesized, - STATE(4421), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156854] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7048), 1, - anon_sym_DASH, - ACTIONS(7054), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, - ACTIONS(7056), 1, anon_sym_xor, - ACTIONS(7066), 1, - anon_sym_PLUS, - ACTIONS(7070), 1, - anon_sym_bit_DASHand, - ACTIONS(7072), 1, - anon_sym_bit_DASHxor, - ACTIONS(7074), 1, - anon_sym_bit_DASHor, - STATE(4011), 1, - sym_comment, - ACTIONS(3449), 2, - anon_sym_EQ_GT, anon_sym_or, - ACTIONS(7046), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7060), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7068), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7050), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7058), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [156922] = 9, - ACTIONS(3), 1, + [162915] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7048), 1, + ACTIONS(1796), 1, anon_sym_DASH, - ACTIONS(7066), 1, - anon_sym_PLUS, - STATE(4012), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4118), 1, sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3449), 19, + STATE(4245), 1, + sym_cell_path, + ACTIONS(1798), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [156972] = 17, - ACTIONS(3), 1, + [162958] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7048), 1, + ACTIONS(1808), 1, anon_sym_DASH, - ACTIONS(7054), 1, - anon_sym_and, - ACTIONS(7066), 1, - anon_sym_PLUS, - ACTIONS(7070), 1, - anon_sym_bit_DASHand, - ACTIONS(7072), 1, - anon_sym_bit_DASHxor, - ACTIONS(7074), 1, - anon_sym_bit_DASHor, - STATE(4013), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4119), 1, sym_comment, - ACTIONS(7046), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7060), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7068), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 3, - anon_sym_EQ_GT, + STATE(4251), 1, + sym_cell_path, + ACTIONS(1810), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(7050), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7058), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [157038] = 17, - ACTIONS(3), 1, + [163001] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7078), 1, - anon_sym_DASH, - ACTIONS(7084), 1, - anon_sym_and, - ACTIONS(7094), 1, - anon_sym_PLUS, - ACTIONS(7098), 1, - anon_sym_bit_DASHand, - ACTIONS(7100), 1, - anon_sym_bit_DASHxor, - ACTIONS(7102), 1, - anon_sym_bit_DASHor, - STATE(4014), 1, + ACTIONS(7061), 1, + anon_sym_DOT, + ACTIONS(7063), 1, + aux_sym__immediate_decimal_token2, + STATE(4120), 1, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7088), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7096), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 3, - aux_sym_ctrl_match_token1, + ACTIONS(1589), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1591), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(7080), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [157104] = 16, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163039] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7078), 1, - anon_sym_DASH, - ACTIONS(7094), 1, - anon_sym_PLUS, - ACTIONS(7098), 1, - anon_sym_bit_DASHand, - ACTIONS(7100), 1, - anon_sym_bit_DASHxor, - ACTIONS(7102), 1, - anon_sym_bit_DASHor, - STATE(4015), 1, + ACTIONS(1599), 1, + anon_sym_DOT_DOT2, + ACTIONS(6310), 1, + anon_sym_DOT, + STATE(3342), 1, + aux_sym_cell_path_repeat1, + STATE(3383), 1, + sym_path, + STATE(3879), 1, + sym_cell_path, + STATE(4121), 1, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7088), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7096), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 4, - aux_sym_ctrl_match_token1, + ACTIONS(1603), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(7080), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [157168] = 18, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163081] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7078), 1, - anon_sym_DASH, - ACTIONS(7084), 1, + ACTIONS(7065), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7067), 1, + aux_sym__immediate_decimal_token2, + STATE(4122), 1, + sym_comment, + ACTIONS(1569), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1571), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7094), 1, - anon_sym_PLUS, - ACTIONS(7098), 1, - anon_sym_bit_DASHand, - ACTIONS(7100), 1, - anon_sym_bit_DASHxor, - ACTIONS(7102), 1, - anon_sym_bit_DASHor, - ACTIONS(7104), 1, anon_sym_xor, - STATE(4016), 1, - sym_comment, - ACTIONS(3449), 2, - aux_sym_ctrl_match_token1, anon_sym_or, - ACTIONS(7076), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7088), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7096), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7080), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [157236] = 13, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163119] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7048), 1, - anon_sym_DASH, - ACTIONS(7066), 1, - anon_sym_PLUS, - STATE(4017), 1, + STATE(4123), 1, sym_comment, - ACTIONS(7046), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7060), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7068), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7050), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7058), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 7, - anon_sym_EQ_GT, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157294] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [163153] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6848), 1, + ACTIONS(7069), 1, aux_sym__immediate_decimal_token1, - STATE(4018), 1, + ACTIONS(7071), 1, + aux_sym__immediate_decimal_token2, + STATE(4124), 1, sym_comment, - ACTIONS(1701), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1705), 20, - ts_builtin_sym_end, + ACTIONS(1483), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1481), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362662,711 +373348,751 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [157336] = 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [163191] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7078), 1, - anon_sym_DASH, - ACTIONS(7094), 1, - anon_sym_PLUS, - STATE(4019), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(4413), 1, + anon_sym_DOLLAR, + ACTIONS(7033), 1, + anon_sym_LPAREN2, + ACTIONS(7073), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7075), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7077), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7079), 1, + aux_sym__immediate_decimal_token5, + STATE(4125), 1, sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7096), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 17, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157388] = 12, - ACTIONS(3), 1, + STATE(4752), 1, + sym__immediate_decimal, + ACTIONS(1427), 2, + ts_builtin_sym_end, + sym__space, + STATE(5107), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1413), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [163243] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7078), 1, - anon_sym_DASH, - ACTIONS(7094), 1, - anon_sym_PLUS, - STATE(4020), 1, + ACTIONS(7081), 1, + aux_sym__immediate_decimal_token2, + STATE(4126), 1, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7096), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7080), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 9, - aux_sym_ctrl_match_token1, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157444] = 14, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [163279] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7048), 1, - anon_sym_DASH, - ACTIONS(7066), 1, - anon_sym_PLUS, - ACTIONS(7070), 1, - anon_sym_bit_DASHand, - STATE(4021), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(7083), 1, + anon_sym_DOT_DOT2, + ACTIONS(7087), 1, + sym_filesize_unit, + ACTIONS(7089), 1, + sym_duration_unit, + ACTIONS(7091), 1, + aux_sym_unquoted_token2, + STATE(4127), 1, sym_comment, - ACTIONS(7046), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7060), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7068), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7050), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7058), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 6, - anon_sym_EQ_GT, + STATE(7719), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7085), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157504] = 11, + [163325] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7078), 1, - anon_sym_DASH, - ACTIONS(7094), 1, - anon_sym_PLUS, - STATE(4022), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(4413), 1, + anon_sym_DOLLAR, + ACTIONS(7033), 1, + anon_sym_LPAREN2, + ACTIONS(7073), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7075), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7077), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7079), 1, + aux_sym__immediate_decimal_token5, + STATE(4128), 1, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7096), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 13, - anon_sym_in, - aux_sym_ctrl_match_token1, + STATE(4778), 1, + sym__immediate_decimal, + ACTIONS(1455), 2, + ts_builtin_sym_end, + sym__space, + STATE(5134), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1443), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [163377] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4129), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157558] = 15, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [163411] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7048), 1, - anon_sym_DASH, - ACTIONS(7066), 1, - anon_sym_PLUS, - ACTIONS(7070), 1, - anon_sym_bit_DASHand, - ACTIONS(7072), 1, - anon_sym_bit_DASHxor, - STATE(4023), 1, + ACTIONS(2159), 1, + anon_sym_DOLLAR, + ACTIONS(7033), 1, + anon_sym_LPAREN2, + ACTIONS(7037), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7039), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7041), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7043), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7093), 1, + anon_sym_DOT, + STATE(4130), 1, sym_comment, - ACTIONS(7046), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7060), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7068), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7050), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7058), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 5, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHor, - [157620] = 7, + STATE(4700), 1, + sym__immediate_decimal, + ACTIONS(1441), 2, + ts_builtin_sym_end, + sym__space, + STATE(4699), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [163463] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(4024), 1, + ACTIONS(1553), 1, + sym__space, + ACTIONS(4449), 1, + anon_sym_DOLLAR, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7013), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7097), 1, + aux_sym__immediate_decimal_token3, + STATE(4131), 1, sym_comment, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3457), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(3449), 20, - anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, + STATE(4907), 1, + sym__immediate_decimal, + STATE(4860), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1551), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163513] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7047), 1, + aux_sym__immediate_decimal_token2, + STATE(4132), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157666] = 9, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [163549] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7078), 1, - anon_sym_DASH, - ACTIONS(7094), 1, - anon_sym_PLUS, - STATE(4025), 1, + STATE(4133), 1, sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3449), 19, - anon_sym_in, - aux_sym_ctrl_match_token1, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157716] = 13, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [163583] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7078), 1, - anon_sym_DASH, - ACTIONS(7094), 1, - anon_sym_PLUS, - STATE(4026), 1, + ACTIONS(1557), 1, + sym__space, + ACTIONS(4449), 1, + anon_sym_DOLLAR, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7013), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7097), 1, + aux_sym__immediate_decimal_token3, + STATE(4134), 1, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7088), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7096), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7080), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 7, - aux_sym_ctrl_match_token1, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157774] = 14, + STATE(4949), 1, + sym__immediate_decimal, + STATE(4976), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1555), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163633] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7078), 1, - anon_sym_DASH, - ACTIONS(7094), 1, - anon_sym_PLUS, - ACTIONS(7098), 1, - anon_sym_bit_DASHand, - STATE(4027), 1, + ACTIONS(1509), 1, + sym__space, + ACTIONS(4449), 1, + anon_sym_DOLLAR, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7013), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7097), 1, + aux_sym__immediate_decimal_token3, + STATE(4135), 1, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7088), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7096), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7080), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 6, - aux_sym_ctrl_match_token1, + STATE(4963), 1, + sym__immediate_decimal, + STATE(4897), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1501), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163683] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4136), 1, + sym_comment, + ACTIONS(1585), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157834] = 12, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [163717] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7048), 1, - anon_sym_DASH, - ACTIONS(7066), 1, - anon_sym_PLUS, - STATE(4028), 1, + ACTIONS(7099), 1, + anon_sym_DOT, + ACTIONS(7101), 1, + aux_sym__immediate_decimal_token2, + STATE(4137), 1, sym_comment, - ACTIONS(7046), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7068), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7050), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7058), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 9, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157890] = 10, + ACTIONS(1475), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1473), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [163755] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7048), 1, + ACTIONS(1441), 1, + sym__space, + ACTIONS(4449), 1, + anon_sym_DOLLAR, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7013), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7097), 1, + aux_sym__immediate_decimal_token3, + STATE(4138), 1, + sym_comment, + STATE(4999), 1, + sym__immediate_decimal, + STATE(4998), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163805] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1747), 1, anon_sym_DASH, - ACTIONS(7066), 1, - anon_sym_PLUS, - STATE(4029), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4139), 1, sym_comment, - ACTIONS(3457), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7068), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 17, - anon_sym_in, - anon_sym_EQ_GT, + STATE(4356), 1, + sym_cell_path, + ACTIONS(1749), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [157942] = 15, - ACTIONS(3), 1, + [163846] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7078), 1, + ACTIONS(1891), 1, anon_sym_DASH, - ACTIONS(7094), 1, - anon_sym_PLUS, - ACTIONS(7098), 1, - anon_sym_bit_DASHand, - ACTIONS(7100), 1, - anon_sym_bit_DASHxor, - STATE(4030), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4140), 1, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7088), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7096), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7080), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 5, - aux_sym_ctrl_match_token1, + STATE(4352), 1, + sym_cell_path, + ACTIONS(1893), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_bit_DASHor, - [158004] = 7, - ACTIONS(3), 1, + [163887] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4031), 1, + ACTIONS(945), 1, + anon_sym_DOT_DOT2, + ACTIONS(7103), 1, + anon_sym_DOT, + STATE(4141), 1, sym_comment, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3457), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PLUS, - ACTIONS(3449), 20, - anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, + STATE(4185), 1, + aux_sym_cell_path_repeat1, + STATE(4204), 1, + sym_cell_path, + STATE(4289), 1, + sym_path, + ACTIONS(947), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [158050] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163928] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7048), 1, + ACTIONS(4413), 1, + anon_sym_DOLLAR, + ACTIONS(7033), 1, + anon_sym_LPAREN2, + ACTIONS(7041), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7043), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7105), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7107), 1, + aux_sym__immediate_decimal_token3, + STATE(4142), 1, + sym_comment, + STATE(5131), 1, + sym__immediate_decimal, + ACTIONS(1557), 2, + ts_builtin_sym_end, + sym__space, + STATE(5130), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1555), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [163977] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1808), 1, anon_sym_DASH, - ACTIONS(7066), 1, - anon_sym_PLUS, - STATE(4032), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4143), 1, sym_comment, - ACTIONS(7046), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7068), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7058), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3449), 13, - anon_sym_in, - anon_sym_EQ_GT, + STATE(4360), 1, + sym_cell_path, + ACTIONS(1810), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [158104] = 5, - ACTIONS(3), 1, + [164018] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4033), 1, - sym_comment, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3457), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3449), 22, + ACTIONS(1820), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_EQ_GT, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4144), 1, + sym_comment, + STATE(4366), 1, + sym_cell_path, + ACTIONS(1822), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [158146] = 5, - ACTIONS(3), 1, + [164059] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4034), 1, - sym_comment, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3457), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(3449), 22, + ACTIONS(1741), 1, anon_sym_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4145), 1, + sym_comment, + STATE(4367), 1, + sym_cell_path, + ACTIONS(1745), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [158188] = 4, - ACTIONS(3), 1, + [164100] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4035), 1, + ACTIONS(1770), 1, + anon_sym_DASH, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4146), 1, sym_comment, - ACTIONS(5241), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5235), 21, + STATE(4322), 1, + sym_cell_path, + ACTIONS(1772), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363378,42 +374104,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [158228] = 6, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164141] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4036), 1, + ACTIONS(1778), 1, + anon_sym_DASH, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4147), 1, sym_comment, - STATE(5192), 1, - sym_redirection, - ACTIONS(7106), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(7108), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(7024), 12, + STATE(4424), 1, + sym_cell_path, + ACTIONS(1780), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363426,32 +374137,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [158272] = 6, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164182] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4037), 1, + ACTIONS(1847), 1, + anon_sym_DASH, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4148), 1, sym_comment, - STATE(5131), 1, - sym_redirection, - ACTIONS(7026), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(7028), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(7110), 12, + STATE(4422), 1, + sym_cell_path, + ACTIONS(1849), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363463,70 +374170,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [158316] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7048), 1, - anon_sym_DASH, - ACTIONS(7066), 1, - anon_sym_PLUS, - ACTIONS(7070), 1, - anon_sym_bit_DASHand, - ACTIONS(7072), 1, - anon_sym_bit_DASHxor, - ACTIONS(7074), 1, - anon_sym_bit_DASHor, - STATE(4038), 1, - sym_comment, - ACTIONS(7046), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7060), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7068), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3449), 4, - anon_sym_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(7050), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7058), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [158380] = 4, - ACTIONS(3), 1, + [164223] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4039), 1, + STATE(4149), 1, sym_comment, - ACTIONS(1587), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1595), 20, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363539,29 +374196,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [158419] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [164256] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4040), 1, + ACTIONS(1831), 1, + anon_sym_DASH, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4150), 1, sym_comment, - ACTIONS(1570), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1580), 20, + STATE(4371), 1, + sym_cell_path, + ACTIONS(1833), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363574,402 +374232,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [158458] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DASH, - ACTIONS(5420), 1, - anon_sym_PLUS, - ACTIONS(5559), 1, - anon_sym_bit_DASHand, - ACTIONS(5561), 1, - anon_sym_bit_DASHxor, - ACTIONS(5563), 1, - anon_sym_bit_DASHor, - ACTIONS(5565), 1, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, - ACTIONS(5567), 1, anon_sym_xor, - ACTIONS(7112), 1, anon_sym_or, - STATE(4041), 1, - sym_comment, - ACTIONS(5414), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5416), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5418), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5549), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5551), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5557), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5553), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5555), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [158525] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(4042), 1, - sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4516), 1, - sym__binary_predicate, - STATE(4517), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [158602] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(4043), 1, - sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4520), 1, - sym__binary_predicate, - STATE(4521), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [158679] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(4044), 1, - sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4522), 1, - sym__binary_predicate, - STATE(4525), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [158756] = 23, - ACTIONS(3), 1, + [164297] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(1899), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(4045), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4151), 1, sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4531), 1, - sym__binary_predicate, - STATE(4532), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [158833] = 23, + STATE(4316), 1, + sym_cell_path, + ACTIONS(1901), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164338] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, + ACTIONS(4413), 1, anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(4046), 1, + ACTIONS(7033), 1, + anon_sym_LPAREN2, + ACTIONS(7041), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7043), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7105), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7107), 1, + aux_sym__immediate_decimal_token3, + STATE(4152), 1, sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4535), 1, - sym__binary_predicate, - STATE(4538), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, + STATE(5129), 1, + sym__immediate_decimal, + ACTIONS(1553), 2, + ts_builtin_sym_end, + sym__space, + STATE(5128), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [158910] = 23, - ACTIONS(3), 1, + ACTIONS(1551), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [164387] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(1871), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(4047), 1, - sym_comment, - STATE(4063), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4539), 1, - sym__binary_predicate, - STATE(4541), 1, - sym__predicate, - ACTIONS(6852), 2, - anon_sym_true, - anon_sym_false, - STATE(4589), 2, - sym_expr_unary, - sym_val_bool, - STATE(5202), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [158987] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4048), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4153), 1, sym_comment, - ACTIONS(3170), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3166), 20, + STATE(4331), 1, + sym_cell_path, + ACTIONS(1873), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363982,328 +374335,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [159026] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7078), 1, - anon_sym_DASH, - ACTIONS(7084), 1, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, - ACTIONS(7094), 1, - anon_sym_PLUS, - ACTIONS(7098), 1, - anon_sym_bit_DASHand, - ACTIONS(7100), 1, - anon_sym_bit_DASHxor, - ACTIONS(7102), 1, - anon_sym_bit_DASHor, - ACTIONS(7104), 1, anon_sym_xor, - ACTIONS(7114), 1, anon_sym_or, - STATE(4049), 1, - sym_comment, - ACTIONS(7076), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7082), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7088), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7090), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7092), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7096), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7080), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [159093] = 18, - ACTIONS(3), 1, + [164428] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, + ACTIONS(1879), 1, anon_sym_DASH, - ACTIONS(6466), 1, - anon_sym_PLUS, - ACTIONS(6488), 1, - anon_sym_bit_DASHand, - ACTIONS(6490), 1, - anon_sym_bit_DASHxor, - ACTIONS(6492), 1, - anon_sym_bit_DASHor, - ACTIONS(6494), 1, - anon_sym_and, - ACTIONS(6496), 1, - anon_sym_xor, - ACTIONS(7116), 1, - anon_sym_or, - STATE(4050), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4154), 1, sym_comment, - ACTIONS(6460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6462), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6464), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6468), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6478), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6486), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6480), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6484), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [159160] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6998), 1, - anon_sym_PLUS, - ACTIONS(7004), 1, + STATE(4343), 1, + sym_cell_path, + ACTIONS(1881), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, - ACTIONS(7016), 1, - anon_sym_bit_DASHand, - ACTIONS(7018), 1, - anon_sym_bit_DASHxor, - ACTIONS(7020), 1, - anon_sym_bit_DASHor, - ACTIONS(7022), 1, anon_sym_xor, - ACTIONS(7118), 1, - anon_sym_DASH, - ACTIONS(7120), 1, anon_sym_or, - STATE(4051), 1, - sym_comment, - ACTIONS(6996), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7002), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7008), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7010), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7012), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7014), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7000), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7006), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [159227] = 18, - ACTIONS(3), 1, + [164469] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7048), 1, + ACTIONS(1824), 1, anon_sym_DASH, - ACTIONS(7054), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4155), 1, + sym_comment, + STATE(4357), 1, + sym_cell_path, + ACTIONS(1826), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, - ACTIONS(7056), 1, anon_sym_xor, - ACTIONS(7066), 1, - anon_sym_PLUS, - ACTIONS(7070), 1, - anon_sym_bit_DASHand, - ACTIONS(7072), 1, - anon_sym_bit_DASHxor, - ACTIONS(7074), 1, - anon_sym_bit_DASHor, - ACTIONS(7122), 1, anon_sym_or, - STATE(4052), 1, - sym_comment, - ACTIONS(7046), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7052), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7060), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7062), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(7068), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(7050), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7058), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [159294] = 18, - ACTIONS(3), 1, + [164510] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6962), 1, + ACTIONS(1839), 1, anon_sym_DASH, - ACTIONS(6970), 1, - anon_sym_PLUS, - ACTIONS(6982), 1, - anon_sym_bit_DASHand, - ACTIONS(6984), 1, - anon_sym_bit_DASHxor, - ACTIONS(6986), 1, - anon_sym_bit_DASHor, - ACTIONS(6988), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4156), 1, + sym_comment, + STATE(4381), 1, + sym_cell_path, + ACTIONS(1841), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, - ACTIONS(6990), 1, anon_sym_xor, - ACTIONS(7124), 1, anon_sym_or, - STATE(4053), 1, - sym_comment, - ACTIONS(6964), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6966), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6968), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6972), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6974), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6980), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6976), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6978), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [159361] = 23, - ACTIONS(3), 1, + [164551] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(53), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3493), 1, - aux_sym_expr_unary_token1, - ACTIONS(6128), 1, - anon_sym_LPAREN, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2491), 1, - sym__expr_unary_minus, - STATE(4054), 1, + ACTIONS(7109), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7111), 1, + aux_sym__immediate_decimal_token2, + STATE(4157), 1, sym_comment, - STATE(4066), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4630), 1, - sym__predicate, - STATE(4703), 1, - sym__binary_predicate, - ACTIONS(7036), 2, - anon_sym_true, - anon_sym_false, - STATE(4610), 2, - sym_expr_unary, - sym_val_bool, - STATE(5152), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [159438] = 4, - ACTIONS(3), 1, + ACTIONS(1569), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1571), 18, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164588] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4055), 1, + ACTIONS(7113), 1, + anon_sym_DOT, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token2, + STATE(4158), 1, sym_comment, - ACTIONS(1923), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1927), 20, + ACTIONS(1589), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1591), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364316,344 +374495,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [159477] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3453), 1, - anon_sym_PLUS, - ACTIONS(3473), 1, - anon_sym_bit_DASHand, - ACTIONS(3475), 1, - anon_sym_bit_DASHxor, - ACTIONS(3477), 1, anon_sym_and, - ACTIONS(3479), 1, anon_sym_xor, - ACTIONS(3481), 1, - anon_sym_bit_DASHor, - ACTIONS(7126), 1, - anon_sym_DASH, - ACTIONS(7128), 1, anon_sym_or, - STATE(4056), 1, - sym_comment, - ACTIONS(3451), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3459), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3465), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3467), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3469), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3471), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3461), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [159544] = 23, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164625] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(53), 1, + ACTIONS(1883), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3493), 1, - aux_sym_expr_unary_token1, - ACTIONS(6128), 1, - anon_sym_LPAREN, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2491), 1, - sym__expr_unary_minus, - STATE(4057), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4159), 1, sym_comment, - STATE(4066), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4642), 1, - sym__binary_predicate, - STATE(4655), 1, - sym__predicate, - ACTIONS(7036), 2, - anon_sym_true, - anon_sym_false, - STATE(4610), 2, - sym_expr_unary, - sym_val_bool, - STATE(5152), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [159621] = 23, + STATE(4344), 1, + sym_cell_path, + ACTIONS(1885), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164666] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(53), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3493), 1, - aux_sym_expr_unary_token1, - ACTIONS(6128), 1, - anon_sym_LPAREN, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2491), 1, - sym__expr_unary_minus, - STATE(4058), 1, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token2, + STATE(4160), 1, sym_comment, - STATE(4066), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4688), 1, - sym__binary_predicate, - STATE(4717), 1, - sym__predicate, - ACTIONS(7036), 2, - anon_sym_true, - anon_sym_false, - STATE(4610), 2, - sym_expr_unary, - sym_val_bool, - STATE(5152), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [159698] = 23, + ACTIONS(1521), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1519), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [164701] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(53), 1, - anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3493), 1, - aux_sym_expr_unary_token1, - ACTIONS(6128), 1, - anon_sym_LPAREN, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2491), 1, - sym__expr_unary_minus, - STATE(4059), 1, + ACTIONS(1537), 1, + sym__space, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(7119), 1, + anon_sym_DOT_DOT2, + ACTIONS(7123), 1, + sym_filesize_unit, + ACTIONS(7125), 1, + sym_duration_unit, + ACTIONS(7127), 1, + aux_sym_unquoted_token2, + STATE(4161), 1, sym_comment, - STATE(4066), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4650), 1, - sym__binary_predicate, - STATE(4673), 1, - sym__predicate, - ACTIONS(7036), 2, - anon_sym_true, - anon_sym_false, - STATE(4610), 2, - sym_expr_unary, - sym_val_bool, - STATE(5152), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [159775] = 23, - ACTIONS(3), 1, + STATE(7699), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1525), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164748] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(53), 1, + ACTIONS(1875), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3493), 1, - aux_sym_expr_unary_token1, - ACTIONS(6128), 1, - anon_sym_LPAREN, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2491), 1, - sym__expr_unary_minus, - STATE(4060), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4162), 1, sym_comment, - STATE(4066), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4652), 1, - sym__binary_predicate, - STATE(4670), 1, - sym__predicate, - ACTIONS(7036), 2, - anon_sym_true, - anon_sym_false, - STATE(4610), 2, - sym_expr_unary, - sym_val_bool, - STATE(5152), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [159852] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DASH, - ACTIONS(6568), 1, - anon_sym_PLUS, - ACTIONS(6580), 1, - anon_sym_bit_DASHand, - ACTIONS(6582), 1, - anon_sym_bit_DASHxor, - ACTIONS(6584), 1, - anon_sym_bit_DASHor, - ACTIONS(6586), 1, + STATE(4342), 1, + sym_cell_path, + ACTIONS(1877), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, - ACTIONS(6588), 1, anon_sym_xor, - ACTIONS(7130), 1, anon_sym_or, - STATE(4061), 1, - sym_comment, - ACTIONS(6562), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6564), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(6566), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(6570), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(6572), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6578), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6574), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6576), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - [159919] = 4, - ACTIONS(3), 1, + [164789] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4062), 1, + ACTIONS(1774), 1, + anon_sym_DASH, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4163), 1, sym_comment, - ACTIONS(1939), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1945), 20, + STATE(4409), 1, + sym_cell_path, + ACTIONS(1776), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164830] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7129), 1, + anon_sym_DOT, + ACTIONS(7131), 1, + aux_sym__immediate_decimal_token2, + STATE(4164), 1, + sym_comment, + ACTIONS(1475), 7, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1473), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364665,36 +374695,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [159958] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [164867] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4063), 1, + ACTIONS(1762), 1, + anon_sym_DASH, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4165), 1, sym_comment, - ACTIONS(7134), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7140), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7136), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7132), 16, + STATE(4402), 1, + sym_cell_path, + ACTIONS(1764), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364706,136 +374725,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [160003] = 18, - ACTIONS(3), 1, + [164908] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5573), 1, + ACTIONS(945), 1, anon_sym_DASH, - ACTIONS(5587), 1, - anon_sym_PLUS, - ACTIONS(5591), 1, - anon_sym_bit_DASHand, - ACTIONS(5593), 1, - anon_sym_bit_DASHxor, - ACTIONS(5595), 1, - anon_sym_bit_DASHor, - ACTIONS(5609), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4166), 1, + sym_comment, + STATE(4204), 1, + sym_cell_path, + ACTIONS(947), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, - ACTIONS(5611), 1, anon_sym_xor, - ACTIONS(7142), 1, anon_sym_or, - STATE(4064), 1, - sym_comment, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(5577), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5581), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(5583), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(5585), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(5589), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(5575), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(5579), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [160070] = 23, - ACTIONS(3), 1, + [164949] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(53), 1, + ACTIONS(1835), 1, anon_sym_DASH, - ACTIONS(431), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3493), 1, - aux_sym_expr_unary_token1, - ACTIONS(6128), 1, - anon_sym_LPAREN, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6860), 1, - anon_sym_DOLLAR, - ACTIONS(6864), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6866), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6868), 1, - anon_sym_DOT2, - ACTIONS(6870), 1, - aux_sym__val_number_decimal_token3, - STATE(1620), 1, - sym__val_number_decimal, - STATE(1624), 1, - sym__val_number, - STATE(2491), 1, - sym__expr_unary_minus, - STATE(4065), 1, - sym_comment, - STATE(4066), 1, - sym_expr_parenthesized, - STATE(4367), 1, - sym_val_number, - STATE(4695), 1, - sym__binary_predicate, - STATE(4698), 1, - sym__predicate, - ACTIONS(7036), 2, - anon_sym_true, - anon_sym_false, - STATE(4610), 2, - sym_expr_unary, - sym_val_bool, - STATE(5152), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6854), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [160147] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4066), 1, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4167), 1, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7150), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7146), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7148), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7132), 15, + STATE(4439), 1, + sym_cell_path, + ACTIONS(1837), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364848,35 +374791,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [160191] = 12, + [164990] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token4, - ACTIONS(4746), 1, - aux_sym_unquoted_token6, - ACTIONS(6402), 1, + ACTIONS(7133), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7135), 1, + aux_sym__immediate_decimal_token2, + STATE(4168), 1, + sym_comment, + ACTIONS(1483), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - ACTIONS(6412), 1, - anon_sym_DOLLAR, - ACTIONS(7152), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1481), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165027] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1599), 1, + anon_sym_DOT_DOT2, + ACTIONS(7103), 1, anon_sym_DOT, - ACTIONS(7156), 1, - aux_sym__immediate_decimal_token4, - STATE(4067), 1, + STATE(4005), 1, + sym_cell_path, + STATE(4169), 1, sym_comment, - STATE(4131), 1, - sym__immediate_decimal, - ACTIONS(7154), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3555), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2925), 16, + STATE(4185), 1, + aux_sym_cell_path_repeat1, + STATE(4289), 1, + sym_path, + ACTIONS(1603), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364888,35 +374855,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [160245] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6412), 1, - anon_sym_DOLLAR, - ACTIONS(7156), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7158), 1, - anon_sym_DOT, - STATE(4068), 1, + ACTIONS(7101), 1, + aux_sym__immediate_decimal_token2, + STATE(4170), 1, sym_comment, - STATE(4151), 1, - sym__immediate_decimal, - ACTIONS(7154), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3572), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1416), 16, + ACTIONS(1475), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1473), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364930,33 +374888,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165103] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1895), 1, + anon_sym_DASH, + ACTIONS(6672), 1, + anon_sym_DOT, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4171), 1, + sym_comment, + STATE(4353), 1, + sym_cell_path, + ACTIONS(1897), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [160296] = 11, - ACTIONS(3), 1, + [165144] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(7160), 1, + ACTIONS(1855), 1, + anon_sym_DASH, + ACTIONS(6672), 1, anon_sym_DOT, - ACTIONS(7164), 1, - aux_sym__immediate_decimal_token4, - STATE(4069), 1, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4172), 1, sym_comment, - STATE(4254), 1, - sym__immediate_decimal, - ACTIONS(7162), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3530), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1416), 16, + STATE(4358), 1, + sym_cell_path, + ACTIONS(1857), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364968,25 +374951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [160347] = 6, - ACTIONS(3), 1, + [165185] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7166), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7168), 1, + ACTIONS(7063), 1, aux_sym__immediate_decimal_token2, - STATE(4070), 1, + STATE(4173), 1, sym_comment, - ACTIONS(1368), 3, + ACTIONS(1589), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 21, + aux_sym_unquoted_token2, + ACTIONS(1591), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365006,32 +374986,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [160388] = 11, + [165220] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token5, - ACTIONS(6400), 1, + ACTIONS(4413), 1, anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(7033), 1, anon_sym_LPAREN2, - ACTIONS(7160), 1, - anon_sym_DOT, - ACTIONS(7164), 1, + ACTIONS(7041), 1, aux_sym__immediate_decimal_token4, - STATE(4071), 1, - sym_comment, - STATE(4251), 1, - sym__immediate_decimal, - ACTIONS(7162), 2, + ACTIONS(7043), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7105), 1, aux_sym__immediate_decimal_token1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token3, - STATE(3511), 2, + STATE(4174), 1, + sym_comment, + STATE(5105), 1, + sym__immediate_decimal, + ACTIONS(1441), 2, + ts_builtin_sym_end, + sym__space, + STATE(5103), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2925), 16, + ACTIONS(1431), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [165269] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4175), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365043,37 +375044,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [160439] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4781), 1, - aux_sym_unquoted_token4, - ACTIONS(4844), 1, - aux_sym_unquoted_token6, - ACTIONS(6681), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_DOLLAR, - ACTIONS(7170), 1, - anon_sym_DOT, - ACTIONS(7174), 1, - aux_sym__immediate_decimal_token4, - STATE(4072), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [165302] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4176), 1, sym_comment, - STATE(4154), 1, - sym__immediate_decimal, - ACTIONS(7172), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4323), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2925), 15, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365089,30 +375076,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160492] = 11, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [165335] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, + STATE(4177), 1, + sym_comment, + ACTIONS(1585), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(1587), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - ACTIONS(7160), 1, - anon_sym_DOT, - ACTIONS(7164), 1, - aux_sym__immediate_decimal_token4, - STATE(4073), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [165368] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7137), 1, + aux_sym__immediate_decimal_token2, + STATE(4178), 1, sym_comment, - STATE(4224), 1, - sym__immediate_decimal, - ACTIONS(7162), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3512), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1425), 16, + ACTIONS(1648), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1650), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365129,31 +375137,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160543] = 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165403] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(6664), 1, + ACTIONS(4413), 1, anon_sym_DOLLAR, - ACTIONS(6681), 1, + ACTIONS(7033), 1, anon_sym_LPAREN2, - ACTIONS(7176), 1, - anon_sym_DOT, - ACTIONS(7180), 1, + ACTIONS(7041), 1, aux_sym__immediate_decimal_token4, - STATE(4074), 1, - sym_comment, - STATE(4294), 1, - sym__immediate_decimal, - ACTIONS(7178), 2, + ACTIONS(7043), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7105), 1, aux_sym__immediate_decimal_token1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token3, - STATE(4723), 2, + STATE(4179), 1, + sym_comment, + STATE(5133), 1, + sym__immediate_decimal, + ACTIONS(1509), 2, + ts_builtin_sym_end, + sym__space, + STATE(5132), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1416), 15, - ts_builtin_sym_end, + ACTIONS(1501), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365165,23 +375177,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [160593] = 6, - ACTIONS(3), 1, + [165452] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7182), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7184), 1, - aux_sym__immediate_decimal_token2, - STATE(4075), 1, - sym_comment, - ACTIONS(1368), 3, - anon_sym_DOT_DOT2, + ACTIONS(1796), 1, + anon_sym_DASH, + ACTIONS(6672), 1, anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 20, + STATE(3739), 1, + aux_sym_cell_path_repeat1, + STATE(3893), 1, + sym_path, + STATE(4180), 1, + sym_comment, + STATE(4359), 1, + sym_cell_path, + ACTIONS(1798), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365194,26 +375205,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, + [165493] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1711), 1, anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + ACTIONS(7139), 1, + anon_sym_DOT_DOT2, + STATE(4181), 1, + sym_comment, + ACTIONS(7141), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [160633] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7186), 1, - aux_sym__immediate_decimal_token2, - STATE(4076), 1, - sym_comment, - ACTIONS(1376), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 21, + ACTIONS(1717), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365230,35 +375241,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [165531] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7131), 1, + aux_sym__immediate_decimal_token2, + STATE(4182), 1, + sym_comment, + ACTIONS(1475), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [160671] = 11, + ACTIONS(1473), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165565] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(6681), 1, + STATE(4183), 1, + sym_comment, + ACTIONS(1475), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(6702), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1473), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165597] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7143), 1, anon_sym_DOLLAR, - ACTIONS(7174), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7188), 1, + ACTIONS(7145), 1, + anon_sym_LPAREN2, + ACTIONS(7147), 1, anon_sym_DOT, - STATE(4077), 1, - sym_comment, - STATE(4165), 1, - sym__immediate_decimal, - ACTIONS(7172), 2, + ACTIONS(7149), 1, aux_sym__immediate_decimal_token1, + ACTIONS(7151), 1, aux_sym__immediate_decimal_token3, - STATE(4326), 2, + ACTIONS(7153), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token5, + STATE(4184), 1, + sym_comment, + STATE(4575), 1, + sym__immediate_decimal, + ACTIONS(1413), 2, + sym_identifier, + anon_sym_DASH, + STATE(5013), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1416), 15, + ACTIONS(1427), 8, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [165649] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(951), 1, + anon_sym_DOT_DOT2, + ACTIONS(7103), 1, + anon_sym_DOT, + STATE(4185), 1, + sym_comment, + STATE(4202), 1, + aux_sym_cell_path_repeat1, + STATE(4289), 1, + sym_path, + ACTIONS(953), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365274,19 +375365,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160721] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165687] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7190), 1, - anon_sym_DOT, - ACTIONS(7193), 1, - aux_sym__immediate_decimal_token2, - STATE(4078), 1, - sym_comment, - ACTIONS(1398), 2, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(7157), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - ACTIONS(1400), 21, + STATE(4186), 1, + sym_comment, + ACTIONS(7159), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1698), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365303,23 +375398,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [165725] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4187), 1, + sym_comment, + ACTIONS(1521), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [160761] = 5, - ACTIONS(3), 1, + ACTIONS(1519), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165757] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7193), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token2, - STATE(4079), 1, + STATE(4188), 1, sym_comment, - ACTIONS(1398), 3, + ACTIONS(1589), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1400), 21, + aux_sym_unquoted_token2, + ACTIONS(1591), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365331,45 +375449,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [160799] = 14, - ACTIONS(121), 1, + [165791] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1981), 1, - anon_sym_DOLLAR, - ACTIONS(2925), 1, - sym__space, - ACTIONS(7195), 1, - anon_sym_LPAREN2, - ACTIONS(7197), 1, + ACTIONS(7161), 1, anon_sym_DOT, - ACTIONS(7199), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7201), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7205), 1, - aux_sym_unquoted_token4, - ACTIONS(7207), 1, - aux_sym_unquoted_token6, - STATE(4080), 1, + ACTIONS(7163), 1, + aux_sym__immediate_decimal_token2, + STATE(4189), 1, sym_comment, - STATE(4196), 1, - sym__immediate_decimal, - STATE(4390), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2927), 13, + ACTIONS(1591), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1589), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365383,30 +375483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160855] = 11, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165827] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4781), 1, - aux_sym_unquoted_token5, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, - anon_sym_LPAREN2, - ACTIONS(7176), 1, - anon_sym_DOT, - ACTIONS(7180), 1, - aux_sym__immediate_decimal_token4, - STATE(4081), 1, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token2, + STATE(4190), 1, sym_comment, - STATE(4329), 1, - sym__immediate_decimal, - ACTIONS(7178), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4607), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2925), 15, + ACTIONS(1648), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1650), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365422,28 +375511,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160905] = 10, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165861] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(7167), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token2, + STATE(4191), 1, + sym_comment, + ACTIONS(1571), 4, + sym__space, anon_sym_LPAREN2, - ACTIONS(7209), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1569), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(7213), 1, + aux_sym_unquoted_token2, + [165897] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4192), 1, + sym_comment, + ACTIONS(1587), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(7215), 1, sym_duration_unit, - STATE(4082), 1, + ACTIONS(1585), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165929] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token2, + STATE(4193), 1, sym_comment, - STATE(7514), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4687), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(7211), 2, + ACTIONS(1521), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1441), 16, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1519), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165963] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2235), 1, + anon_sym_DASH, + ACTIONS(7173), 1, + anon_sym_LBRACK2, + STATE(4194), 1, + sym_comment, + ACTIONS(2239), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365456,35 +375623,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [160953] = 11, + [165997] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - ACTIONS(7176), 1, - anon_sym_DOT, - ACTIONS(7180), 1, - aux_sym__immediate_decimal_token4, - STATE(4083), 1, + ACTIONS(7175), 1, + anon_sym_DOT_DOT2, + ACTIONS(7179), 1, + sym_filesize_unit, + ACTIONS(7181), 1, + sym_duration_unit, + ACTIONS(7183), 1, + aux_sym_unquoted_token2, + STATE(4195), 1, sym_comment, - STATE(4258), 1, - sym__immediate_decimal, - ACTIONS(7178), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4653), 2, + STATE(7619), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1425), 15, + ACTIONS(1537), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7177), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1525), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365496,21 +375665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161003] = 5, - ACTIONS(3), 1, + [166043] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7168), 1, - aux_sym__immediate_decimal_token2, - STATE(4084), 1, + ACTIONS(3487), 1, + anon_sym_DASH, + STATE(4196), 1, sym_comment, - ACTIONS(1368), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 21, + ACTIONS(3485), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365523,42 +375685,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161041] = 13, - ACTIONS(121), 1, + [166075] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2925), 1, - sym__space, - ACTIONS(4356), 1, - anon_sym_DOLLAR, - ACTIONS(7195), 1, - anon_sym_LPAREN2, - ACTIONS(7205), 1, - aux_sym_unquoted_token5, - ACTIONS(7217), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7221), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7223), 1, - aux_sym__immediate_decimal_token4, - STATE(4085), 1, + ACTIONS(3375), 1, + anon_sym_DASH, + STATE(4197), 1, sym_comment, - STATE(4340), 1, - sym__immediate_decimal, - STATE(4873), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2927), 13, + ACTIONS(3373), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365571,30 +375713,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [161094] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6681), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6702), 1, - anon_sym_DOLLAR, - ACTIONS(6704), 1, - anon_sym_DOT, - STATE(4086), 1, + [166107] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4198), 1, sym_comment, - STATE(4325), 1, - sym__immediate_decimal, - ACTIONS(6706), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4324), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1457), 15, - ts_builtin_sym_end, + ACTIONS(1589), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1591), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365606,22 +375741,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [161141] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166139] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7184), 1, - aux_sym__immediate_decimal_token2, - STATE(4087), 1, + STATE(4199), 1, sym_comment, - ACTIONS(1368), 3, + ACTIONS(1483), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1481), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 20, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + [166171] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4200), 1, + sym_comment, + ACTIONS(1569), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1571), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365633,28 +375797,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161178] = 6, - ACTIONS(3), 1, + [166203] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7225), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7227), 1, - aux_sym__immediate_decimal_token2, - STATE(4088), 1, + STATE(4201), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1721), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(1472), 19, + ACTIONS(1723), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365674,18 +375833,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161217] = 5, - ACTIONS(3), 1, + [166235] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7229), 1, - aux_sym__immediate_decimal_token2, - STATE(4089), 1, - sym_comment, - ACTIONS(1376), 3, + ACTIONS(955), 1, anon_sym_DOT_DOT2, + ACTIONS(7185), 1, anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 20, + STATE(4289), 1, + sym_path, + STATE(4202), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(957), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365701,28 +375861,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161254] = 6, - ACTIONS(121), 1, + [166271] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7231), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7233), 1, - aux_sym__immediate_decimal_token2, - STATE(4090), 1, + ACTIONS(7188), 1, + anon_sym_DOT, + STATE(4203), 1, sym_comment, - ACTIONS(1370), 6, + STATE(4232), 1, + aux_sym_cell_path_repeat1, + STATE(4320), 1, + sym_path, + STATE(4517), 1, + sym_cell_path, + ACTIONS(1603), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1368), 16, + ACTIONS(1599), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365737,18 +375895,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [161293] = 4, - ACTIONS(3), 1, + [166311] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4091), 1, + STATE(4204), 1, sym_comment, - ACTIONS(1376), 3, + ACTIONS(1021), 2, + anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 21, + ACTIONS(1023), 19, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166343] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4205), 1, + sym_comment, + ACTIONS(1648), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1650), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365768,31 +375951,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161328] = 10, + [166375] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, - anon_sym_LPAREN2, - ACTIONS(6683), 1, + ACTIONS(7188), 1, anon_sym_DOT, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - STATE(4092), 1, + STATE(4206), 1, sym_comment, - STATE(4738), 1, - sym__immediate_decimal, - ACTIONS(6685), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4733), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1484), 15, - ts_builtin_sym_end, + STATE(4232), 1, + aux_sym_cell_path_repeat1, + STATE(4320), 1, + sym_path, + STATE(4473), 1, + sym_cell_path, + ACTIONS(947), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(945), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [166415] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2359), 1, + anon_sym_DASH, + STATE(4207), 1, + sym_comment, + ACTIONS(2361), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365804,32 +376002,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [161375] = 10, - ACTIONS(3), 1, + [166446] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(7190), 1, + sym__newline, + STATE(4208), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1757), 8, + aux_sym_cmd_identifier_token39, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(6681), 1, - anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - STATE(4093), 1, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1755), 10, + anon_sym_true, + anon_sym_false, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + sym_identifier, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [166479] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2311), 1, + anon_sym_DASH, + STATE(4209), 1, sym_comment, - STATE(4735), 1, - sym__immediate_decimal, - ACTIONS(6685), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4603), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1480), 15, - ts_builtin_sym_end, + ACTIONS(2313), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365841,32 +376057,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [161422] = 10, + [166510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, + STATE(4210), 1, + sym_comment, + ACTIONS(1521), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - STATE(4094), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1519), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [166541] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2311), 1, + anon_sym_DASH, + STATE(4211), 1, + sym_comment, + ACTIONS(2313), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166572] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1741), 1, + anon_sym_DASH, + STATE(4212), 1, sym_comment, - STATE(4609), 1, - sym__immediate_decimal, - ACTIONS(6685), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4680), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1488), 15, - ts_builtin_sym_end, + ACTIONS(1745), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365878,32 +376138,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [161469] = 10, + [166603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, - anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - STATE(4095), 1, + STATE(4213), 1, sym_comment, - STATE(4708), 1, - sym__immediate_decimal, - ACTIONS(6685), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4706), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1457), 15, + ACTIONS(1587), 7, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1585), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365915,19 +376171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161516] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [166634] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4096), 1, + ACTIONS(2271), 1, + anon_sym_DASH, + STATE(4214), 1, sym_comment, - ACTIONS(1504), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1506), 21, + ACTIONS(2273), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365940,42 +376193,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161551] = 13, - ACTIONS(121), 1, + [166665] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1416), 1, - sym__space, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(1981), 1, - anon_sym_DOLLAR, - ACTIONS(7195), 1, - anon_sym_LPAREN2, - ACTIONS(7199), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7201), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7235), 1, - anon_sym_DOT, - STATE(4097), 1, + ACTIONS(2241), 1, + anon_sym_DASH, + STATE(4215), 1, sym_comment, - STATE(4204), 1, - sym__immediate_decimal, - STATE(4388), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1404), 13, + ACTIONS(2243), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365988,34 +376220,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [161604] = 13, - ACTIONS(121), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166696] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1416), 1, + ACTIONS(7163), 1, + aux_sym__immediate_decimal_token2, + STATE(4216), 1, + sym_comment, + ACTIONS(1591), 4, sym__space, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(4356), 1, - anon_sym_DOLLAR, - ACTIONS(7195), 1, anon_sym_LPAREN2, - ACTIONS(7217), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7221), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7223), 1, - aux_sym__immediate_decimal_token4, - STATE(4098), 1, - sym_comment, - STATE(4353), 1, - sym__immediate_decimal, - STATE(4759), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1404), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1589), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366029,20 +376253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161657] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [166729] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7237), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token2, - STATE(4099), 1, + ACTIONS(2263), 1, + anon_sym_DASH, + STATE(4217), 1, sym_comment, - ACTIONS(1398), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - ACTIONS(1400), 20, - ts_builtin_sym_end, + ACTIONS(2265), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366054,27 +376274,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161696] = 5, - ACTIONS(3), 1, + [166760] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token2, - STATE(4100), 1, + ACTIONS(2295), 1, + anon_sym_DASH, + STATE(4218), 1, sym_comment, - ACTIONS(1398), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1400), 20, - ts_builtin_sym_end, + ACTIONS(2297), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366086,44 +376301,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161733] = 14, - ACTIONS(121), 1, + [166791] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2111), 1, - anon_sym_DOLLAR, - ACTIONS(7242), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1692), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_DOT, - ACTIONS(7246), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7252), 1, - aux_sym_unquoted_token4, - ACTIONS(7254), 1, - aux_sym_unquoted_token6, - STATE(4101), 1, + ACTIONS(7193), 1, + anon_sym_DOT_DOT2, + STATE(4219), 1, sym_comment, - STATE(4247), 1, - sym__immediate_decimal, - ACTIONS(2925), 2, + ACTIONS(7195), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1698), 15, ts_builtin_sym_end, - sym__space, - STATE(4526), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2927), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366135,29 +376336,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [161788] = 10, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166828] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(7256), 1, - anon_sym_DOT_DOT2, - ACTIONS(7260), 1, - sym_filesize_unit, - ACTIONS(7262), 1, - sym_duration_unit, - STATE(4102), 1, + ACTIONS(1839), 1, + anon_sym_DASH, + STATE(4220), 1, sym_comment, - STATE(7592), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4781), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(7258), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1441), 15, - ts_builtin_sym_end, + ACTIONS(1841), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366169,36 +376358,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [161835] = 13, - ACTIONS(121), 1, + [166859] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1425), 1, - sym__space, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(4356), 1, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7143), 1, anon_sym_DOLLAR, - ACTIONS(7195), 1, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(7217), 1, + ACTIONS(7197), 1, anon_sym_DOT, - ACTIONS(7219), 1, + ACTIONS(7199), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7221), 1, + ACTIONS(7201), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7223), 1, + ACTIONS(7203), 1, aux_sym__immediate_decimal_token4, - STATE(4103), 1, + ACTIONS(7205), 1, + aux_sym__immediate_decimal_token5, + STATE(4221), 1, sym_comment, - STATE(4361), 1, + STATE(4844), 1, sym__immediate_decimal, - STATE(4906), 2, + ACTIONS(1413), 2, + sym_identifier, + anon_sym_DASH, + STATE(5013), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1423), 13, + ACTIONS(1427), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166910] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4222), 1, + sym_comment, + ACTIONS(966), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(968), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366210,18 +376424,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [161888] = 4, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166941] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4104), 1, + STATE(4223), 1, sym_comment, - ACTIONS(1368), 3, + ACTIONS(976), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 21, + ACTIONS(978), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366233,44 +376451,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161923] = 13, - ACTIONS(121), 1, + [166972] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(4320), 1, - anon_sym_DOLLAR, - ACTIONS(7242), 1, - anon_sym_LPAREN2, - ACTIONS(7264), 1, - anon_sym_DOT, - ACTIONS(7266), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7268), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7270), 1, - aux_sym__immediate_decimal_token4, - STATE(4105), 1, + STATE(4224), 1, sym_comment, - STATE(4556), 1, - sym__immediate_decimal, - ACTIONS(1425), 2, + ACTIONS(962), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(964), 18, ts_builtin_sym_end, - sym__space, - STATE(5040), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1423), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366282,31 +376478,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [161975] = 12, - ACTIONS(121), 1, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [167003] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1488), 1, + ACTIONS(1537), 1, sym__space, - ACTIONS(4356), 1, - anon_sym_DOLLAR, - ACTIONS(7195), 1, - anon_sym_LPAREN2, - ACTIONS(7203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7272), 1, - anon_sym_DOT, - ACTIONS(7274), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7276), 1, - aux_sym__immediate_decimal_token3, - STATE(4106), 1, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(7123), 1, + sym_filesize_unit, + ACTIONS(7125), 1, + sym_duration_unit, + ACTIONS(7127), 1, + aux_sym_unquoted_token2, + STATE(4225), 1, sym_comment, - STATE(4897), 1, - sym__immediate_decimal, - STATE(4883), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1486), 13, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1525), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366320,34 +376516,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [162025] = 13, - ACTIONS(121), 1, + [167044] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(4320), 1, - anon_sym_DOLLAR, - ACTIONS(7242), 1, - anon_sym_LPAREN2, - ACTIONS(7264), 1, + ACTIONS(7207), 1, anon_sym_DOT, - ACTIONS(7266), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7268), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7270), 1, - aux_sym__immediate_decimal_token4, - STATE(4107), 1, + STATE(4226), 1, sym_comment, - STATE(4595), 1, - sym__immediate_decimal, - ACTIONS(1416), 2, + STATE(4278), 1, + aux_sym_cell_path_repeat1, + STATE(4507), 1, + sym_path, + STATE(4675), 1, + sym_cell_path, + ACTIONS(947), 4, ts_builtin_sym_end, sym__space, - STATE(5024), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1404), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(945), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366359,21 +376546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162077] = 5, - ACTIONS(121), 1, + anon_sym_DOT_DOT2, + [167083] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7233), 1, + ACTIONS(7209), 1, aux_sym__immediate_decimal_token2, - STATE(4108), 1, + STATE(4227), 1, sym_comment, - ACTIONS(1370), 6, + ACTIONS(1650), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1368), 16, + ACTIONS(1648), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366388,18 +376574,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [162113] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [167116] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4109), 1, + STATE(4228), 1, sym_comment, - ACTIONS(1504), 3, + ACTIONS(1589), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1506), 20, + aux_sym_unquoted_token2, + ACTIONS(1591), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366418,32 +376602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [162147] = 11, - ACTIONS(121), 1, + [167147] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, - sym__space, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(7278), 1, - anon_sym_DOT_DOT2, - ACTIONS(7282), 1, - sym_filesize_unit, - ACTIONS(7284), 1, - sym_duration_unit, - STATE(4110), 1, + STATE(4229), 1, sym_comment, - STATE(7489), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7205), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(7280), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 13, + ACTIONS(1569), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1571), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366455,56 +376623,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162195] = 12, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1457), 1, - sym__space, - ACTIONS(1981), 1, - anon_sym_DOLLAR, - ACTIONS(7195), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - ACTIONS(7203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7286), 1, - anon_sym_DOT, - ACTIONS(7288), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7290), 1, - aux_sym__immediate_decimal_token3, - STATE(4111), 1, - sym_comment, - STATE(4409), 1, - sym__immediate_decimal, - STATE(4407), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162245] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [167178] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4112), 1, + STATE(4230), 1, sym_comment, - ACTIONS(1368), 3, + ACTIONS(1648), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 20, + aux_sym_unquoted_token2, + ACTIONS(1650), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366523,33 +376656,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [162279] = 12, - ACTIONS(121), 1, + [167209] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1484), 1, - sym__space, - ACTIONS(4356), 1, - anon_sym_DOLLAR, - ACTIONS(7195), 1, - anon_sym_LPAREN2, - ACTIONS(7203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7272), 1, - anon_sym_DOT, - ACTIONS(7274), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7276), 1, - aux_sym__immediate_decimal_token3, - STATE(4113), 1, + STATE(4231), 1, sym_comment, - STATE(4856), 1, - sym__immediate_decimal, - STATE(4849), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1482), 13, + ACTIONS(1721), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1723), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366561,26 +376677,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162329] = 6, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [167240] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7292), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7294), 1, - aux_sym__immediate_decimal_token2, - STATE(4114), 1, + ACTIONS(7188), 1, + anon_sym_DOT, + STATE(4232), 1, sym_comment, - ACTIONS(1370), 7, - ts_builtin_sym_end, + STATE(4234), 1, + aux_sym_cell_path_repeat1, + STATE(4320), 1, + sym_path, + ACTIONS(953), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1368), 14, + ACTIONS(951), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366592,65 +376710,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [162367] = 13, - ACTIONS(121), 1, + [167277] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4320), 1, + ACTIONS(7143), 1, anon_sym_DOLLAR, - ACTIONS(7242), 1, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(7252), 1, - aux_sym_unquoted_token5, - ACTIONS(7264), 1, - anon_sym_DOT, - ACTIONS(7266), 1, + ACTIONS(7149), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7268), 1, + ACTIONS(7151), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7270), 1, + ACTIONS(7153), 1, aux_sym__immediate_decimal_token4, - STATE(4115), 1, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4233), 1, sym_comment, - STATE(4533), 1, + STATE(5012), 1, sym__immediate_decimal, - ACTIONS(2925), 2, - ts_builtin_sym_end, - sym__space, - STATE(5009), 2, + ACTIONS(1431), 2, + sym_identifier, + anon_sym_DASH, + STATE(5008), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(2927), 11, + ACTIONS(1441), 8, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [162419] = 6, - ACTIONS(121), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167326] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7296), 1, + ACTIONS(7213), 1, anon_sym_DOT, - ACTIONS(7299), 1, - aux_sym__immediate_decimal_token2, - STATE(4116), 1, + STATE(4320), 1, + sym_path, + STATE(4234), 2, sym_comment, - ACTIONS(1400), 6, + aux_sym_cell_path_repeat1, + ACTIONS(957), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1398), 15, + ACTIONS(955), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366665,19 +376778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - [162457] = 5, - ACTIONS(3), 1, + [167361] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7301), 1, - aux_sym__immediate_decimal_token2, - STATE(4117), 1, + ACTIONS(2255), 1, + anon_sym_DASH, + STATE(4235), 1, sym_comment, - ACTIONS(1518), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1520), 19, + ACTIONS(2257), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366690,28 +376798,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162493] = 5, - ACTIONS(121), 1, + [167392] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7299), 1, + ACTIONS(1569), 1, + aux_sym_unquoted_token2, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7218), 1, aux_sym__immediate_decimal_token2, - STATE(4118), 1, + STATE(4236), 1, sym_comment, - ACTIONS(1400), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1398), 16, + ACTIONS(1571), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366725,24 +376830,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [162529] = 5, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [167427] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7303), 1, - aux_sym__immediate_decimal_token2, - STATE(4119), 1, + ACTIONS(7207), 1, + anon_sym_DOT, + STATE(4237), 1, sym_comment, - ACTIONS(1378), 6, + STATE(4278), 1, + aux_sym_cell_path_repeat1, + STATE(4507), 1, + sym_path, + STATE(4638), 1, + sym_cell_path, + ACTIONS(1603), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1376), 16, + ACTIONS(1599), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366754,23 +376864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [162565] = 5, - ACTIONS(3), 1, + [167466] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7227), 1, - aux_sym__immediate_decimal_token2, - STATE(4120), 1, + ACTIONS(7220), 1, + anon_sym_QMARK2, + STATE(4238), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(970), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1472), 19, + ACTIONS(972), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366782,26 +376888,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162601] = 5, - ACTIONS(3), 1, + [167499] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7305), 1, - aux_sym__immediate_decimal_token2, - STATE(4121), 1, + ACTIONS(7222), 1, + anon_sym_QMARK2, + STATE(4239), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(980), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1537), 19, + ACTIONS(982), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366813,80 +376916,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162637] = 12, - ACTIONS(121), 1, + [167532] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1480), 1, - sym__space, - ACTIONS(4356), 1, - anon_sym_DOLLAR, - ACTIONS(7195), 1, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(7203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7272), 1, - anon_sym_DOT, - ACTIONS(7274), 1, + ACTIONS(7224), 1, + anon_sym_DOLLAR, + ACTIONS(7226), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7276), 1, + ACTIONS(7228), 1, aux_sym__immediate_decimal_token3, - STATE(4122), 1, + ACTIONS(7230), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7232), 1, + aux_sym__immediate_decimal_token5, + STATE(4240), 1, sym_comment, - STATE(4868), 1, + STATE(5043), 1, sym__immediate_decimal, - STATE(4865), 2, + ACTIONS(1413), 2, + sym_identifier, + anon_sym_DASH, + STATE(5438), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1478), 13, + ACTIONS(1427), 8, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [162687] = 13, - ACTIONS(121), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167581] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(2111), 1, - anon_sym_DOLLAR, - ACTIONS(7242), 1, - anon_sym_LPAREN2, - ACTIONS(7246), 1, + ACTIONS(7234), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7307), 1, - anon_sym_DOT, - STATE(4123), 1, + ACTIONS(7236), 1, + aux_sym__immediate_decimal_token2, + STATE(4241), 1, sym_comment, - STATE(4255), 1, - sym__immediate_decimal, - ACTIONS(1416), 2, + ACTIONS(1571), 5, ts_builtin_sym_end, sym__space, - STATE(4558), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1404), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1569), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366898,22 +376984,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162739] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1545), 1, anon_sym_DOT_DOT2, - ACTIONS(3891), 1, - anon_sym_DOT, - STATE(1231), 1, - aux_sym_cell_path_repeat1, - STATE(1261), 1, - sym_path, - STATE(1552), 1, - sym_cell_path, - STATE(4124), 1, + aux_sym_unquoted_token2, + [167616] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2363), 1, + anon_sym_DASH, + STATE(4242), 1, sym_comment, - ACTIONS(1549), 18, + ACTIONS(2365), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366926,23 +377006,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162781] = 4, + [167647] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4125), 1, + STATE(4243), 1, sym_comment, - ACTIONS(1376), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 20, + ACTIONS(1483), 7, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1481), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366954,27 +377038,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [162815] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7301), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7309), 1, - anon_sym_DOT, - STATE(4126), 1, - sym_comment, - ACTIONS(1518), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 19, + [167678] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2326), 1, + anon_sym_DASH, + STATE(4244), 1, + sym_comment, + ACTIONS(2328), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366987,38 +377060,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162853] = 12, - ACTIONS(121), 1, + [167709] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - sym__space, - ACTIONS(4356), 1, - anon_sym_DOLLAR, - ACTIONS(7195), 1, - anon_sym_LPAREN2, - ACTIONS(7203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7272), 1, - anon_sym_DOT, - ACTIONS(7274), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7276), 1, - aux_sym__immediate_decimal_token3, - STATE(4127), 1, + ACTIONS(2367), 1, + anon_sym_DASH, + STATE(4245), 1, sym_comment, - STATE(4832), 1, - sym__immediate_decimal, - STATE(4749), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 13, + ACTIONS(2369), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367031,22 +377087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [162903] = 6, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167740] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7312), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7314), 1, - aux_sym__immediate_decimal_token2, - STATE(4128), 1, + ACTIONS(1835), 1, + anon_sym_DASH, + STATE(4246), 1, sym_comment, - ACTIONS(1470), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1472), 18, - ts_builtin_sym_end, + ACTIONS(1837), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367058,38 +377113,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162941] = 12, - ACTIONS(121), 1, + [167771] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2111), 1, - anon_sym_DOLLAR, - ACTIONS(7242), 1, - anon_sym_LPAREN2, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7316), 1, + ACTIONS(7238), 1, anon_sym_DOT, - ACTIONS(7318), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7320), 1, - aux_sym__immediate_decimal_token3, - STATE(4129), 1, + ACTIONS(7240), 1, + aux_sym__immediate_decimal_token2, + STATE(4247), 1, sym_comment, - STATE(4551), 1, - sym__immediate_decimal, - ACTIONS(1457), 2, + ACTIONS(1591), 5, ts_builtin_sym_end, sym__space, - STATE(4544), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1589), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367101,19 +377148,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162990] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [167806] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7314), 1, + ACTIONS(1589), 1, + aux_sym_unquoted_token2, + ACTIONS(7242), 1, + anon_sym_DOT, + ACTIONS(7244), 1, aux_sym__immediate_decimal_token2, - STATE(4130), 1, + STATE(4248), 1, sym_comment, - ACTIONS(1470), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1472), 18, - ts_builtin_sym_end, + ACTIONS(1591), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367125,28 +377173,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163025] = 7, - ACTIONS(3), 1, + [167841] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, + ACTIONS(1711), 1, anon_sym_LPAREN2, - ACTIONS(7322), 1, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + ACTIONS(7246), 1, anon_sym_DOT_DOT2, - STATE(4131), 1, + STATE(4249), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(7324), 2, + ACTIONS(7248), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1595), 16, + ACTIONS(1717), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367158,37 +377206,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [163064] = 12, - ACTIONS(121), 1, + [167878] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4320), 1, - anon_sym_DOLLAR, - ACTIONS(7242), 1, - anon_sym_LPAREN2, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7326), 1, - anon_sym_DOT, - ACTIONS(7328), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7330), 1, - aux_sym__immediate_decimal_token3, - STATE(4132), 1, + ACTIONS(1006), 1, + anon_sym_DASH, + STATE(4250), 1, sym_comment, - STATE(5039), 1, - sym__immediate_decimal, - ACTIONS(1488), 2, - ts_builtin_sym_end, - sym__space, - STATE(5038), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1486), 11, + ACTIONS(1008), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367200,19 +377228,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163113] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167909] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7332), 1, - aux_sym__immediate_decimal_token2, - STATE(4133), 1, + ACTIONS(1899), 1, + anon_sym_DASH, + STATE(4251), 1, sym_comment, - ACTIONS(1518), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1520), 18, - ts_builtin_sym_end, + ACTIONS(1901), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367224,25 +377255,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163148] = 4, - ACTIONS(121), 1, + [167940] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4134), 1, + ACTIONS(2371), 1, + anon_sym_DASH, + STATE(4252), 1, sym_comment, - ACTIONS(1370), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1368), 16, + ACTIONS(2373), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367255,20 +377283,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [163181] = 4, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167971] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4135), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7145), 1, + anon_sym_LPAREN2, + ACTIONS(7224), 1, + anon_sym_DOLLAR, + ACTIONS(7226), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7228), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7230), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7232), 1, + aux_sym__immediate_decimal_token5, + STATE(4253), 1, sym_comment, - ACTIONS(1608), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1610), 19, + STATE(5092), 1, + sym__immediate_decimal, + ACTIONS(1443), 2, + sym_identifier, + anon_sym_DASH, + STATE(5441), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1455), 8, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168020] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2332), 1, + anon_sym_DASH, + STATE(4254), 1, + sym_comment, + ACTIONS(2334), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367281,39 +377346,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, + [168051] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7250), 1, + anon_sym_DOT, + ACTIONS(7252), 1, + aux_sym__immediate_decimal_token2, + STATE(4255), 1, + sym_comment, + ACTIONS(1473), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 12, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163214] = 12, - ACTIONS(121), 1, + [168086] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4320), 1, + ACTIONS(7254), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7256), 1, + aux_sym__immediate_decimal_token2, + STATE(4256), 1, + sym_comment, + ACTIONS(1481), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1483), 12, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7242), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7326), 1, - anon_sym_DOT, - ACTIONS(7328), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7330), 1, - aux_sym__immediate_decimal_token3, - STATE(4136), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [168121] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_DASH, + STATE(4257), 1, sym_comment, - STATE(5035), 1, - sym__immediate_decimal, - ACTIONS(1484), 2, - ts_builtin_sym_end, - sym__space, - STATE(5034), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1482), 11, + ACTIONS(1772), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168152] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2315), 1, + anon_sym_DASH, + STATE(4258), 1, + sym_comment, + ACTIONS(2317), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367325,32 +377457,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163263] = 12, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168183] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4320), 1, - anon_sym_DOLLAR, - ACTIONS(7242), 1, - anon_sym_LPAREN2, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7326), 1, - anon_sym_DOT, - ACTIONS(7328), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7330), 1, - aux_sym__immediate_decimal_token3, - STATE(4137), 1, + ACTIONS(2336), 1, + anon_sym_DASH, + STATE(4259), 1, sym_comment, - STATE(5023), 1, - sym__immediate_decimal, - ACTIONS(1457), 2, - ts_builtin_sym_end, - sym__space, - STATE(5022), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1449), 11, + ACTIONS(2338), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367362,14 +377484,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163312] = 5, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168214] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7334), 1, - aux_sym__immediate_decimal_token2, - STATE(4138), 1, + STATE(4260), 1, sym_comment, - ACTIONS(1378), 7, + ACTIONS(1475), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -367377,7 +377505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1376), 14, + ACTIONS(1473), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367390,25 +377518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [163347] = 8, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [168245] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1545), 1, - anon_sym_DOT_DOT2, - ACTIONS(3995), 1, - anon_sym_DOT, - STATE(1380), 1, - aux_sym_cell_path_repeat1, - STATE(1447), 1, - sym_path, - STATE(2122), 1, - sym_cell_path, - STATE(4139), 1, + ACTIONS(2379), 1, + anon_sym_DASH, + STATE(4261), 1, sym_comment, - ACTIONS(1549), 17, - ts_builtin_sym_end, + ACTIONS(2381), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367420,37 +377538,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163388] = 12, - ACTIONS(121), 1, + [168276] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4320), 1, - anon_sym_DOLLAR, - ACTIONS(7242), 1, - anon_sym_LPAREN2, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7326), 1, - anon_sym_DOT, - ACTIONS(7328), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7330), 1, - aux_sym__immediate_decimal_token3, - STATE(4140), 1, + ACTIONS(2251), 1, + anon_sym_DASH, + STATE(4262), 1, sym_comment, - STATE(5037), 1, - sym__immediate_decimal, - ACTIONS(1480), 2, - ts_builtin_sym_end, - sym__space, - STATE(5036), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 11, + ACTIONS(2253), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367462,22 +377565,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163437] = 5, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168307] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7336), 1, - aux_sym__immediate_decimal_token2, - STATE(4141), 1, + ACTIONS(2303), 1, + anon_sym_DASH, + STATE(4263), 1, sym_comment, - ACTIONS(1400), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1398), 14, + ACTIONS(2305), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367489,25 +377592,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [163472] = 5, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168338] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7294), 1, - aux_sym__immediate_decimal_token2, - STATE(4142), 1, + ACTIONS(2340), 1, + anon_sym_DASH, + STATE(4264), 1, sym_comment, - ACTIONS(1370), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1368), 14, + ACTIONS(2342), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367519,22 +377619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [163507] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168369] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7338), 1, - aux_sym__immediate_decimal_token2, - STATE(4143), 1, + ACTIONS(1778), 1, + anon_sym_DASH, + STATE(4265), 1, sym_comment, - ACTIONS(1535), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1537), 18, - ts_builtin_sym_end, + ACTIONS(1780), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367546,25 +377646,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163542] = 4, - ACTIONS(121), 1, + [168400] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4144), 1, + ACTIONS(2344), 1, + anon_sym_DASH, + STATE(4266), 1, sym_comment, - ACTIONS(1506), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1504), 16, + ACTIONS(2346), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367577,24 +377674,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [163575] = 6, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168431] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7332), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7340), 1, - anon_sym_DOT, - STATE(4145), 1, + ACTIONS(1879), 1, + anon_sym_DASH, + STATE(4267), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 18, - ts_builtin_sym_end, + ACTIONS(1881), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367606,27 +377700,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163612] = 6, - ACTIONS(121), 1, + [168462] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7343), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7345), 1, - aux_sym__immediate_decimal_token2, - STATE(4146), 1, + ACTIONS(2348), 1, + anon_sym_DASH, + STATE(4268), 1, sym_comment, - ACTIONS(1472), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 16, + ACTIONS(2350), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367639,35 +377728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [163649] = 11, - ACTIONS(121), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168493] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(7347), 1, - anon_sym_DOT_DOT2, - ACTIONS(7351), 1, - sym_filesize_unit, - ACTIONS(7353), 1, - sym_duration_unit, - STATE(4147), 1, + ACTIONS(2352), 1, + anon_sym_DASH, + STATE(4269), 1, sym_comment, - STATE(7576), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1441), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7252), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(7349), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1429), 11, + ACTIONS(2354), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367679,19 +377754,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163696] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168524] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4148), 1, + ACTIONS(1747), 1, + anon_sym_DASH, + STATE(4270), 1, sym_comment, - ACTIONS(1378), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1376), 16, + ACTIONS(1749), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367704,28 +377782,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [163729] = 6, - ACTIONS(121), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168555] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7336), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7355), 1, - anon_sym_DOT, - STATE(4149), 1, + ACTIONS(1855), 1, + anon_sym_DASH, + STATE(4271), 1, sym_comment, - ACTIONS(1400), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1398), 13, + ACTIONS(1857), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367737,18 +377808,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - [163766] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168586] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4150), 1, + ACTIONS(1796), 1, + anon_sym_DASH, + STATE(4272), 1, sym_comment, - ACTIONS(1470), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1472), 19, + ACTIONS(1798), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367761,29 +377836,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163799] = 7, - ACTIONS(3), 1, + [168617] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(7358), 1, - anon_sym_DOT_DOT2, - STATE(4151), 1, + ACTIONS(2383), 1, + anon_sym_DASH, + STATE(4273), 1, sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(7360), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1580), 16, + ACTIONS(2385), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367796,20 +377863,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [163838] = 4, + [168648] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4152), 1, + ACTIONS(7258), 1, + anon_sym_QMARK2, + STATE(4274), 1, sym_comment, - ACTIONS(1535), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1537), 19, + ACTIONS(972), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(970), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367823,33 +377895,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163871] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [168680] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7362), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7364), 1, + ACTIONS(7260), 1, + anon_sym_DOT, + ACTIONS(7262), 1, aux_sym__immediate_decimal_token2, - STATE(4153), 1, + STATE(4275), 1, sym_comment, - ACTIONS(1368), 7, + ACTIONS(1473), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 12, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 11, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, @@ -367859,55 +377925,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163907] = 7, - ACTIONS(3), 1, + [168714] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(7366), 1, - anon_sym_DOT_DOT2, - STATE(4154), 1, + ACTIONS(7153), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7224), 1, + anon_sym_DOLLAR, + ACTIONS(7264), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7266), 1, + aux_sym__immediate_decimal_token3, + STATE(4276), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(7368), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1595), 15, - ts_builtin_sym_end, + STATE(5434), 1, + sym__immediate_decimal, + ACTIONS(1555), 2, + sym_identifier, + anon_sym_DASH, + STATE(5432), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1557), 8, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163945] = 8, - ACTIONS(121), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168760] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7370), 1, - anon_sym_DOT, - STATE(4155), 1, + STATE(4277), 1, sym_comment, - STATE(4194), 1, - aux_sym_cell_path_repeat1, - STATE(4264), 1, - sym_path, - STATE(4411), 1, - sym_cell_path, - ACTIONS(1549), 3, + ACTIONS(1650), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1545), 14, + ACTIONS(1648), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367922,17 +377984,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [163985] = 4, + aux_sym_unquoted_token2, + [168790] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4156), 1, - sym_comment, - ACTIONS(1535), 3, - anon_sym_DOT_DOT2, + ACTIONS(7207), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1537), 18, + STATE(4278), 1, + sym_comment, + STATE(4279), 1, + aux_sym_cell_path_repeat1, + STATE(4507), 1, + sym_path, + ACTIONS(953), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(951), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367944,30 +378013,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164017] = 8, - ACTIONS(121), 1, + anon_sym_DOT_DOT2, + [168826] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7370), 1, + ACTIONS(7268), 1, anon_sym_DOT, - STATE(4157), 1, + STATE(4507), 1, + sym_path, + STATE(4279), 2, sym_comment, - STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4264), 1, - sym_path, - STATE(4364), 1, - sym_cell_path, - ACTIONS(885), 3, + ACTIONS(957), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(883), 14, + ACTIONS(955), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367979,51 +378041,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [164057] = 4, - ACTIONS(121), 1, + [168860] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4158), 1, + ACTIONS(7145), 1, + anon_sym_LPAREN2, + ACTIONS(7153), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7224), 1, + anon_sym_DOLLAR, + ACTIONS(7264), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7266), 1, + aux_sym__immediate_decimal_token3, + STATE(4280), 1, sym_comment, - ACTIONS(1370), 7, - ts_builtin_sym_end, - sym__space, + STATE(5439), 1, + sym__immediate_decimal, + ACTIONS(1501), 2, + sym_identifier, + anon_sym_DASH, + STATE(5436), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1509), 8, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168906] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7145), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(7224), 1, + anon_sym_DOLLAR, + ACTIONS(7271), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7273), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7275), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7277), 1, + aux_sym__immediate_decimal_token5, + STATE(4281), 1, + sym_comment, + STATE(5364), 1, + sym__immediate_decimal, + ACTIONS(1443), 2, + sym_identifier, + anon_sym_DASH, + STATE(5441), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1455), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168954] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7279), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7281), 1, + aux_sym__immediate_decimal_token2, + STATE(4282), 1, + sym_comment, + ACTIONS(1481), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1368), 14, + aux_sym__unquoted_in_list_token2, + ACTIONS(1483), 11, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [164089] = 4, - ACTIONS(121), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [168988] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4159), 1, + STATE(4283), 1, sym_comment, - ACTIONS(1378), 7, - ts_builtin_sym_end, + ACTIONS(1723), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1376), 14, + ACTIONS(1721), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368035,21 +378161,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [164121] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [169018] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1470), 1, + ACTIONS(1569), 1, aux_sym_unquoted_token2, - ACTIONS(7372), 1, + ACTIONS(7283), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7374), 1, + ACTIONS(7285), 1, aux_sym__immediate_decimal_token2, - STATE(4160), 1, + STATE(4284), 1, sym_comment, - ACTIONS(1472), 18, + ACTIONS(1571), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368061,56 +378189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT, - [164157] = 9, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1441), 1, - sym__space, - ACTIONS(4075), 1, - anon_sym_DOT_DOT2, - ACTIONS(7282), 1, - sym_filesize_unit, - ACTIONS(7284), 1, - sym_duration_unit, - STATE(4161), 1, - sym_comment, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7205), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1429), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [164199] = 4, - ACTIONS(3), 1, + [169052] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4162), 1, + ACTIONS(3487), 1, + anon_sym_DASH, + STATE(4285), 1, sym_comment, - ACTIONS(1470), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1472), 18, + ACTIONS(3485), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368123,25 +378213,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164231] = 5, - ACTIONS(121), 1, + [169082] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7376), 1, - aux_sym__immediate_decimal_token2, - STATE(4163), 1, + ACTIONS(7287), 1, + anon_sym_QMARK2, + STATE(4286), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(982), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 16, + ACTIONS(980), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368157,22 +378246,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [164265] = 6, - ACTIONS(121), 1, + [169114] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7376), 1, + ACTIONS(7240), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7378), 1, - anon_sym_DOT, - STATE(4164), 1, + STATE(4287), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1591), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 15, + ACTIONS(1589), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368184,27 +378271,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [164301] = 7, - ACTIONS(3), 1, + [169146] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(7381), 1, - anon_sym_DOT_DOT2, - STATE(4165), 1, - sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, + ACTIONS(1589), 1, aux_sym_unquoted_token2, - ACTIONS(7383), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1580), 15, - ts_builtin_sym_end, + ACTIONS(7244), 1, + aux_sym__immediate_decimal_token2, + STATE(4288), 1, + sym_comment, + ACTIONS(1591), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368216,19 +378294,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [164339] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [169178] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4166), 1, + STATE(4289), 1, sym_comment, - ACTIONS(1608), 3, + ACTIONS(994), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1610), 18, + ACTIONS(996), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368244,60 +378324,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164371] = 14, - ACTIONS(3), 1, + [169208] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOLLAR, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7389), 1, - anon_sym_DOT, - ACTIONS(7391), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7393), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7395), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7397), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(7399), 1, - aux_sym__unquoted_in_list_token6, - STATE(4167), 1, - sym_comment, - STATE(4355), 1, - sym__immediate_decimal, - ACTIONS(5381), 2, - sym_identifier, + ACTIONS(2235), 1, anon_sym_DASH, - STATE(4770), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(5395), 8, + ACTIONS(7289), 1, + anon_sym_LBRACK2, + STATE(4290), 1, + sym_comment, + ACTIONS(2239), 17, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, - [164423] = 5, - ACTIONS(121), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169240] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7401), 1, - aux_sym__immediate_decimal_token2, - STATE(4168), 1, + ACTIONS(1015), 1, + anon_sym_DOT_DOT2, + STATE(4291), 1, sym_comment, - ACTIONS(1537), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(1017), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 16, + ACTIONS(1008), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368311,22 +378377,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [164457] = 5, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169272] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7345), 1, - aux_sym__immediate_decimal_token2, - STATE(4169), 1, + STATE(4292), 1, sym_comment, - ACTIONS(1472), 4, + ACTIONS(1591), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 16, + ACTIONS(1589), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368341,24 +378405,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token2, - [164491] = 6, - ACTIONS(121), 1, + [169302] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7403), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7405), 1, + ACTIONS(1648), 1, + aux_sym_unquoted_token2, + ACTIONS(7291), 1, aux_sym__immediate_decimal_token2, - STATE(4170), 1, + STATE(4293), 1, sym_comment, - ACTIONS(1472), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 14, + ACTIONS(1650), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368370,23 +378427,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [164527] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [169334] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4171), 1, + STATE(4294), 1, sym_comment, - ACTIONS(1506), 7, - ts_builtin_sym_end, + ACTIONS(1571), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1504), 14, + ACTIONS(1569), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368398,31 +378455,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [164559] = 11, - ACTIONS(121), 1, + aux_sym_unquoted_token2, + [169364] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2925), 1, - sym__space, - ACTIONS(2931), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2933), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7205), 1, - aux_sym_unquoted_token4, - ACTIONS(7207), 1, - aux_sym_unquoted_token6, - ACTIONS(7407), 1, - anon_sym_DOT, - ACTIONS(7409), 1, - aux_sym__immediate_decimal_token4, - STATE(4172), 1, + STATE(4295), 1, sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2927), 13, + ACTIONS(990), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(992), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368434,22 +378480,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [164605] = 5, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [169394] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7411), 1, - aux_sym__immediate_decimal_token2, - STATE(4173), 1, + ACTIONS(1015), 1, + anon_sym_DOT_DOT2, + STATE(4296), 1, sym_comment, - ACTIONS(1520), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(1017), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 14, + ACTIONS(7293), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368461,25 +378507,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [164638] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169426] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7364), 1, - aux_sym__immediate_decimal_token2, - STATE(4174), 1, - sym_comment, - ACTIONS(1368), 7, - sym_identifier, - anon_sym_DASH, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(7295), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(7299), 1, sym_filesize_unit, + ACTIONS(7301), 1, sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 12, + ACTIONS(7303), 1, + aux_sym__unquoted_in_list_token2, + STATE(4297), 1, + sym_comment, + STATE(7549), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1525), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(7297), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 9, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -368489,20 +378545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164671] = 4, - ACTIONS(121), 1, + [169470] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4175), 1, + ACTIONS(1589), 1, + aux_sym_unquoted_token2, + ACTIONS(7305), 1, + anon_sym_DOT, + ACTIONS(7307), 1, + aux_sym__immediate_decimal_token2, + STATE(4298), 1, sym_comment, - ACTIONS(1472), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 16, + ACTIONS(1591), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368514,55 +378569,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [164702] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [169504] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7413), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - aux_sym__immediate_decimal_token2, - STATE(4176), 1, + ACTIONS(7145), 1, + anon_sym_LPAREN2, + ACTIONS(7153), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7224), 1, + anon_sym_DOLLAR, + ACTIONS(7264), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7266), 1, + aux_sym__immediate_decimal_token3, + STATE(4299), 1, sym_comment, - ACTIONS(1398), 6, + STATE(5413), 1, + sym__immediate_decimal, + ACTIONS(1431), 2, sym_identifier, anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1400), 12, + STATE(5453), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 8, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164737] = 6, - ACTIONS(121), 1, + [169550] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7418), 1, - anon_sym_DOT, - STATE(4264), 1, - sym_path, - STATE(4177), 2, + ACTIONS(1015), 1, + anon_sym_DOT_DOT2, + STATE(4300), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(895), 3, - sym__space, + ACTIONS(1017), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(893), 14, + ACTIONS(7293), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368576,26 +378631,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [164772] = 8, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169582] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_DOT, - STATE(4178), 1, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(7179), 1, + sym_filesize_unit, + ACTIONS(7181), 1, + sym_duration_unit, + ACTIONS(7183), 1, + aux_sym_unquoted_token2, + STATE(4301), 1, sym_comment, - STATE(4248), 1, - aux_sym_cell_path_repeat1, - STATE(4389), 1, - sym_path, - STATE(4504), 1, - sym_cell_path, - ACTIONS(885), 4, + ACTIONS(1537), 2, ts_builtin_sym_end, sym__space, + ACTIONS(4696), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(883), 12, + ACTIONS(1525), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368607,19 +378665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [164811] = 6, - ACTIONS(3), 1, + [169622] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1518), 1, - aux_sym_unquoted_token2, - ACTIONS(7423), 1, - anon_sym_DOT, - ACTIONS(7426), 1, - aux_sym__immediate_decimal_token2, - STATE(4179), 1, + ACTIONS(3375), 1, + anon_sym_DASH, + STATE(4302), 1, sym_comment, - ACTIONS(1520), 17, + ACTIONS(3373), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368631,51 +378685,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [164846] = 6, + [169652] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7428), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7430), 1, + ACTIONS(7309), 1, aux_sym__immediate_decimal_token2, - STATE(4180), 1, + STATE(4303), 1, sym_comment, - ACTIONS(1368), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1650), 5, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164881] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1518), 1, - aux_sym_unquoted_token2, - ACTIONS(7426), 1, - aux_sym__immediate_decimal_token2, - STATE(4181), 1, - sym_comment, - ACTIONS(1520), 18, + ACTIONS(1648), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368687,36 +378716,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT, - [164914] = 11, - ACTIONS(121), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [169684] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2931), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2933), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7252), 1, - aux_sym_unquoted_token4, - ACTIONS(7254), 1, - aux_sym_unquoted_token6, - ACTIONS(7409), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7432), 1, - anon_sym_DOT, - STATE(4182), 1, + ACTIONS(1015), 1, + anon_sym_DOT_DOT2, + STATE(4304), 1, sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2925), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2927), 11, + ACTIONS(1017), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7293), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368728,62 +378740,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164959] = 13, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169716] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, + STATE(4305), 1, + sym_comment, + ACTIONS(1277), 9, + aux_sym_cmd_identifier_token39, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1273), 10, + anon_sym_true, + anon_sym_false, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + sym_identifier, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [169746] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(7387), 1, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(7434), 1, + ACTIONS(7224), 1, anon_sym_DOLLAR, - ACTIONS(7436), 1, - anon_sym_DOT, - ACTIONS(7438), 1, + ACTIONS(7271), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7440), 1, + ACTIONS(7273), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7442), 1, + ACTIONS(7275), 1, aux_sym__immediate_decimal_token4, - STATE(4183), 1, + ACTIONS(7277), 1, + aux_sym__immediate_decimal_token5, + STATE(4306), 1, sym_comment, - STATE(4895), 1, + STATE(5339), 1, sym__immediate_decimal, - ACTIONS(1423), 2, + ACTIONS(1413), 2, sym_identifier, anon_sym_DASH, - STATE(5341), 2, + STATE(5438), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1425), 8, + ACTIONS(1427), 7, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [165008] = 10, - ACTIONS(121), 1, + [169794] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2925), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(1698), 1, sym__space, - ACTIONS(2975), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2977), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(7205), 1, - aux_sym_unquoted_token5, - ACTIONS(7444), 1, - aux_sym__immediate_decimal_token4, - STATE(4184), 1, + ACTIONS(7311), 1, + anon_sym_DOT_DOT2, + STATE(4307), 1, sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2927), 13, + ACTIONS(7313), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1690), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368797,22 +378836,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165051] = 5, + [169832] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7446), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1717), 1, + sym__space, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + ACTIONS(7315), 1, + anon_sym_DOT_DOT2, + STATE(4308), 1, + sym_comment, + ACTIONS(7317), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169870] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7252), 1, aux_sym__immediate_decimal_token2, - STATE(4185), 1, + STATE(4309), 1, sym_comment, - ACTIONS(1376), 7, + ACTIONS(1473), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1378), 12, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 12, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -368825,45 +378893,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [165084] = 5, - ACTIONS(3), 1, + [169902] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7448), 1, - sym__newline, - STATE(4186), 2, + ACTIONS(7319), 1, + aux_sym__immediate_decimal_token2, + STATE(4310), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1858), 8, - aux_sym_cmd_identifier_token39, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - ACTIONS(1856), 10, - anon_sym_true, - anon_sym_false, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + ACTIONS(1519), 6, sym_identifier, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [165117] = 4, - ACTIONS(121), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1521), 12, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [169934] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4187), 1, + STATE(4311), 1, sym_comment, - ACTIONS(1537), 4, + ACTIONS(968), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 16, + ACTIONS(966), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368877,23 +378943,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [165148] = 5, - ACTIONS(121), 1, + [169964] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7451), 1, - aux_sym__immediate_decimal_token2, - STATE(4188), 1, + STATE(4312), 1, sym_comment, - ACTIONS(1537), 5, - ts_builtin_sym_end, + ACTIONS(978), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 14, + ACTIONS(976), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368905,20 +378967,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [165181] = 4, - ACTIONS(121), 1, + [169994] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4189), 1, + STATE(4313), 1, sym_comment, - ACTIONS(1610), 4, + ACTIONS(964), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1608), 16, + ACTIONS(962), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368932,37 +378995,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym_unquoted_token2, - [165212] = 13, - ACTIONS(3), 1, + [170024] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7387), 1, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(7397), 1, - aux_sym__unquoted_in_list_token5, - ACTIONS(7434), 1, + ACTIONS(7153), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7224), 1, anon_sym_DOLLAR, - ACTIONS(7436), 1, - anon_sym_DOT, - ACTIONS(7438), 1, + ACTIONS(7264), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7440), 1, + ACTIONS(7266), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7442), 1, - aux_sym__immediate_decimal_token4, - STATE(4190), 1, + STATE(4314), 1, sym_comment, - STATE(4809), 1, + STATE(5431), 1, sym__immediate_decimal, - ACTIONS(5381), 2, + ACTIONS(1551), 2, sym_identifier, anon_sym_DASH, - STATE(5333), 2, + STATE(5423), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(5395), 8, + ACTIONS(1553), 8, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -368971,22 +379032,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [165261] = 6, - ACTIONS(121), 1, + [170070] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7411), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7453), 1, - anon_sym_DOT, - STATE(4191), 1, + STATE(4315), 1, sym_comment, - ACTIONS(1520), 5, + ACTIONS(986), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(988), 17, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 13, + [170100] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2379), 1, + anon_sym_DASH, + STATE(4316), 1, + sym_comment, + ACTIONS(2381), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368998,56 +379078,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165296] = 13, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170129] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7434), 1, - anon_sym_DOLLAR, - ACTIONS(7436), 1, - anon_sym_DOT, - ACTIONS(7438), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7440), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7442), 1, - aux_sym__immediate_decimal_token4, - STATE(4192), 1, + ACTIONS(2263), 1, + anon_sym_DASH, + STATE(4317), 1, sym_comment, - STATE(4879), 1, - sym__immediate_decimal, - ACTIONS(1404), 2, - sym_identifier, + ACTIONS(2265), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170158] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2295), 1, anon_sym_DASH, - STATE(5321), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1416), 8, + STATE(4318), 1, + sym_comment, + ACTIONS(2297), 17, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, - [165345] = 6, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170187] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1470), 1, + ACTIONS(1589), 1, aux_sym_unquoted_token2, - ACTIONS(7456), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7458), 1, + ACTIONS(7307), 1, aux_sym__immediate_decimal_token2, - STATE(4193), 1, + STATE(4319), 1, sym_comment, - ACTIONS(1472), 17, + ACTIONS(1591), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369064,23 +379159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT, - [165380] = 7, - ACTIONS(121), 1, + [170218] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7370), 1, - anon_sym_DOT, - STATE(4177), 1, - aux_sym_cell_path_repeat1, - STATE(4194), 1, - sym_comment, - STATE(4264), 1, - sym_path, - ACTIONS(891), 3, + STATE(4320), 1, + sym_comment, + ACTIONS(996), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(889), 14, + ACTIONS(994), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369095,16 +379183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [165417] = 5, - ACTIONS(3), 1, + anon_sym_DOT, + [170247] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1470), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, aux_sym_unquoted_token2, - ACTIONS(7374), 1, - aux_sym__immediate_decimal_token2, - STATE(4195), 1, + STATE(4321), 1, sym_comment, - ACTIONS(1472), 18, + ACTIONS(1717), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369121,26 +379210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT, - [165450] = 8, - ACTIONS(121), 1, + [170278] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - ACTIONS(1595), 1, - sym__space, - ACTIONS(7460), 1, - anon_sym_DOT_DOT2, - STATE(4196), 1, + ACTIONS(2303), 1, + anon_sym_DASH, + STATE(4322), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(7462), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 13, + ACTIONS(2305), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369152,59 +379230,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [165489] = 14, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170307] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOLLAR, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7397), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(7399), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(7464), 1, + ACTIONS(1749), 1, + sym__space, + ACTIONS(7321), 1, anon_sym_DOT, - ACTIONS(7466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7468), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7470), 1, - aux_sym__immediate_decimal_token4, - STATE(4197), 1, + STATE(4323), 1, sym_comment, - STATE(4548), 1, - sym__immediate_decimal, - ACTIONS(5381), 2, - sym_identifier, - anon_sym_DASH, - STATE(4770), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(5395), 7, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(5000), 1, + sym_cell_path, + ACTIONS(1747), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [165540] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + [170344] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(7474), 1, - aux_sym__immediate_decimal_token1, - STATE(4198), 1, + ACTIONS(7323), 1, + anon_sym_DOT_DOT2, + STATE(4324), 1, sym_comment, - ACTIONS(1705), 16, + ACTIONS(7325), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7293), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369216,57 +379287,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [165577] = 13, - ACTIONS(3), 1, + [170375] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7385), 1, - anon_sym_DOLLAR, - ACTIONS(7387), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(2119), 1, anon_sym_LPAREN2, - ACTIONS(7391), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7393), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7395), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7476), 1, - anon_sym_DOT, - STATE(4199), 1, + STATE(4325), 1, sym_comment, - STATE(4381), 1, - sym__immediate_decimal, - ACTIONS(1404), 2, - sym_identifier, - anon_sym_DASH, - STATE(4909), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1416), 8, + ACTIONS(2121), 16, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [165626] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170406] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1535), 1, + ACTIONS(1648), 1, aux_sym_unquoted_token2, - ACTIONS(7478), 1, + ACTIONS(7327), 1, aux_sym__immediate_decimal_token2, - STATE(4200), 1, + STATE(4326), 1, sym_comment, - ACTIONS(1537), 18, + ACTIONS(1650), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369278,32 +379338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT, - [165659] = 8, - ACTIONS(121), 1, + [170437] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_DOT, - STATE(4201), 1, + STATE(4327), 1, sym_comment, - STATE(4248), 1, - aux_sym_cell_path_repeat1, - STATE(4389), 1, - sym_path, - STATE(4451), 1, - sym_cell_path, - ACTIONS(1549), 4, - ts_builtin_sym_end, + ACTIONS(988), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1545), 12, + ACTIONS(986), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369315,56 +379363,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [165698] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7416), 1, - aux_sym__immediate_decimal_token2, - STATE(4202), 1, - sym_comment, - ACTIONS(1398), 7, - sym_identifier, - anon_sym_DASH, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1400), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165731] = 9, - ACTIONS(121), 1, + [170466] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4075), 1, - anon_sym_DOT_DOT2, - ACTIONS(7351), 1, - sym_filesize_unit, - ACTIONS(7353), 1, - sym_duration_unit, - STATE(4203), 1, + STATE(4328), 1, sym_comment, - ACTIONS(1441), 2, - ts_builtin_sym_end, + ACTIONS(992), 3, sym__space, - ACTIONS(4079), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7252), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1429), 11, + ACTIONS(990), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369376,24 +379388,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [165772] = 8, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [170495] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, + ACTIONS(1776), 1, sym__space, - ACTIONS(7480), 1, - anon_sym_DOT_DOT2, - STATE(4204), 1, - sym_comment, - ACTIONS(1576), 2, + ACTIONS(7321), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(7482), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1570), 13, + STATE(4329), 1, + sym_comment, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4972), 1, + sym_cell_path, + ACTIONS(1774), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369407,20 +379421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165811] = 5, - ACTIONS(121), 1, + [170532] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token2, - STATE(4205), 1, + STATE(4330), 1, sym_comment, - ACTIONS(1472), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 14, + ACTIONS(2131), 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + aux_sym_unquoted_token4, + ACTIONS(2133), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369432,150 +379443,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [165844] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(7484), 1, - anon_sym_DOT_DOT2, - ACTIONS(7488), 1, - sym_filesize_unit, - ACTIONS(7490), 1, - sym_duration_unit, - STATE(4206), 1, - sym_comment, - STATE(7484), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1429), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(7397), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(7486), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1441), 9, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [165889] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7492), 1, - aux_sym__immediate_decimal_token2, - STATE(4207), 1, - sym_comment, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1378), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165921] = 12, - ACTIONS(3), 1, + [170561] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7434), 1, - anon_sym_DOLLAR, - ACTIONS(7494), 1, - anon_sym_DOT, - ACTIONS(7496), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7500), 1, - aux_sym__immediate_decimal_token4, - STATE(4208), 1, - sym_comment, - STATE(5338), 1, - sym__immediate_decimal, - ACTIONS(1478), 2, - sym_identifier, + ACTIONS(1879), 1, anon_sym_DASH, - STATE(5337), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1480), 8, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [165967] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7434), 1, - anon_sym_DOLLAR, - ACTIONS(7494), 1, - anon_sym_DOT, - ACTIONS(7496), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7500), 1, - aux_sym__immediate_decimal_token4, - STATE(4209), 1, + STATE(4331), 1, sym_comment, - STATE(5340), 1, - sym__immediate_decimal, - ACTIONS(1486), 2, - sym_identifier, - anon_sym_DASH, - STATE(5339), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1488), 8, + ACTIONS(1881), 17, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, - [166013] = 4, - ACTIONS(121), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170590] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4210), 1, + STATE(4332), 1, sym_comment, - ACTIONS(1610), 5, + ACTIONS(1591), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1608), 14, + ACTIONS(1589), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369588,20 +379495,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token2, - [166043] = 6, + [170619] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(1925), 1, - anon_sym_LPAREN2, - ACTIONS(7502), 1, + ACTIONS(1826), 1, + sym__space, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4211), 1, + STATE(4333), 1, sym_comment, - ACTIONS(1927), 16, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4885), 1, + sym_cell_path, + ACTIONS(1824), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369615,24 +379525,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [166077] = 7, - ACTIONS(3), 1, + [170656] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, + ACTIONS(1589), 1, aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(7504), 1, - aux_sym__immediate_decimal_token1, - STATE(4212), 1, + STATE(4334), 1, sym_comment, - ACTIONS(1705), 15, - ts_builtin_sym_end, + ACTIONS(1591), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369644,48 +379544,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [166113] = 6, + anon_sym_LPAREN2, + [170685] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7508), 1, - aux_sym__immediate_decimal_token2, - STATE(4213), 1, - sym_comment, - ACTIONS(1470), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(1897), 1, + sym__space, + ACTIONS(7321), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 12, + STATE(4335), 1, + sym_comment, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4898), 1, + sym_cell_path, + ACTIONS(1895), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166147] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [170722] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(960), 1, - anon_sym_DOT_DOT2, - STATE(4214), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + STATE(4336), 1, sym_comment, - ACTIONS(962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7510), 16, + ACTIONS(1698), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369702,17 +379605,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166179] = 5, + [170753] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(960), 1, - anon_sym_DOT_DOT2, - STATE(4215), 1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(4337), 1, sym_comment, - ACTIONS(962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7510), 16, + ACTIONS(2089), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2093), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369726,20 +379632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [166211] = 5, - ACTIONS(3), 1, + [170786] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(960), 1, - anon_sym_DOT_DOT2, - STATE(4216), 1, + ACTIONS(2311), 1, + anon_sym_DASH, + STATE(4338), 1, sym_comment, - ACTIONS(962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7510), 16, + ACTIONS(2313), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369751,21 +379652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [166243] = 4, - ACTIONS(121), 1, + [170815] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4217), 1, + ACTIONS(1006), 1, + anon_sym_DASH, + STATE(4339), 1, sym_comment, - ACTIONS(918), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(916), 16, + ACTIONS(1008), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369777,21 +379677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [166273] = 4, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170844] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4218), 1, + ACTIONS(1569), 1, + aux_sym_unquoted_token2, + STATE(4340), 1, sym_comment, - ACTIONS(922), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(920), 16, + ACTIONS(1571), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369805,19 +379703,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [166303] = 4, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [170873] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4219), 1, - sym_comment, - ACTIONS(914), 3, + ACTIONS(1857), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(912), 16, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(4341), 1, + sym_comment, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4908), 1, + sym_cell_path, + ACTIONS(1855), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369831,21 +379736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [166333] = 6, - ACTIONS(3), 1, + [170910] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1518), 1, - aux_sym_unquoted_token2, - ACTIONS(7512), 1, - anon_sym_DOT, - ACTIONS(7515), 1, - aux_sym__immediate_decimal_token2, - STATE(4220), 1, + ACTIONS(2348), 1, + anon_sym_DASH, + STATE(4342), 1, sym_comment, - ACTIONS(1520), 16, + ACTIONS(2350), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369858,22 +379756,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [166367] = 5, - ACTIONS(121), 1, + [170939] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_QMARK2, - STATE(4221), 1, + ACTIONS(2352), 1, + anon_sym_DASH, + STATE(4343), 1, sym_comment, - ACTIONS(902), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(900), 15, + ACTIONS(2354), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369885,22 +379781,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [166399] = 5, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170968] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7519), 1, - anon_sym_QMARK2, - STATE(4222), 1, + ACTIONS(1747), 1, + anon_sym_DASH, + STATE(4344), 1, sym_comment, - ACTIONS(908), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(906), 15, + ACTIONS(1749), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369912,20 +379806,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [166431] = 5, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170997] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7521), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7523), 1, - aux_sym_unquoted_token2, - STATE(4223), 1, + ACTIONS(2332), 1, + anon_sym_DASH, + STATE(4345), 1, sym_comment, - ACTIONS(2925), 17, + ACTIONS(2334), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369937,24 +379831,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [166463] = 6, + [171026] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_LPAREN2, - ACTIONS(1943), 1, - aux_sym_unquoted_token2, - ACTIONS(7525), 1, + ACTIONS(1798), 1, + sym__space, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4224), 1, + STATE(4346), 1, sym_comment, - ACTIONS(1945), 16, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4912), 1, + sym_cell_path, + ACTIONS(1796), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369968,26 +379865,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [166497] = 4, - ACTIONS(3), 1, + [171063] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4225), 1, + ACTIONS(7262), 1, + aux_sym__immediate_decimal_token2, + STATE(4347), 1, sym_comment, - ACTIONS(1368), 7, + ACTIONS(1473), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 12, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 11, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, @@ -369997,27 +379891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166527] = 10, - ACTIONS(121), 1, + [171094] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2975), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2977), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - aux_sym_unquoted_token5, - ACTIONS(7444), 1, - aux_sym__immediate_decimal_token4, - STATE(4226), 1, + ACTIONS(1648), 1, + aux_sym_unquoted_token2, + STATE(4348), 1, sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2925), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2927), 11, + ACTIONS(1650), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370029,176 +379910,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [166569] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4227), 1, - sym_comment, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1378), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166599] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4228), 1, - sym_comment, - ACTIONS(1504), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1506), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166629] = 13, - ACTIONS(3), 1, + [171123] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7385), 1, - anon_sym_DOLLAR, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7468), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7470), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7527), 1, - anon_sym_DOT, - STATE(4229), 1, - sym_comment, - STATE(4426), 1, - sym__immediate_decimal, - ACTIONS(1404), 2, - sym_identifier, + ACTIONS(2340), 1, anon_sym_DASH, - STATE(4909), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1416), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166677] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7434), 1, - anon_sym_DOLLAR, - ACTIONS(7529), 1, - anon_sym_DOT, - ACTIONS(7531), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7533), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7535), 1, - aux_sym__immediate_decimal_token4, - STATE(4230), 1, + STATE(4349), 1, sym_comment, - STATE(5003), 1, - sym__immediate_decimal, - ACTIONS(1404), 2, - sym_identifier, - anon_sym_DASH, - STATE(5321), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1416), 7, + ACTIONS(2342), 17, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, - [166725] = 12, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171152] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7434), 1, - anon_sym_DOLLAR, - ACTIONS(7494), 1, - anon_sym_DOT, - ACTIONS(7496), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7500), 1, - aux_sym__immediate_decimal_token4, - STATE(4231), 1, - sym_comment, - STATE(5336), 1, - sym__immediate_decimal, - ACTIONS(1482), 2, - sym_identifier, - anon_sym_DASH, - STATE(5335), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1484), 8, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166771] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(7376), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7537), 1, + ACTIONS(1810), 1, + sym__space, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4232), 1, + STATE(4350), 1, sym_comment, - ACTIONS(1520), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 14, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4925), 1, + sym_cell_path, + ACTIONS(1808), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370212,18 +379970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [166805] = 5, - ACTIONS(3), 1, + [171189] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1518), 1, + ACTIONS(1721), 1, aux_sym_unquoted_token2, - ACTIONS(7515), 1, - aux_sym__immediate_decimal_token2, - STATE(4233), 1, + STATE(4351), 1, sym_comment, - ACTIONS(1520), 17, - ts_builtin_sym_end, + ACTIONS(1723), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370235,21 +379989,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT, - [166837] = 5, - ACTIONS(3), 1, + [171218] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(7458), 1, - aux_sym__immediate_decimal_token2, - STATE(4234), 1, + ACTIONS(1855), 1, + anon_sym_DASH, + STATE(4352), 1, sym_comment, - ACTIONS(1472), 17, + ACTIONS(1857), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370262,56 +380015,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT, - [166869] = 13, - ACTIONS(3), 1, + [171247] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7434), 1, - anon_sym_DOLLAR, - ACTIONS(7529), 1, - anon_sym_DOT, - ACTIONS(7531), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7533), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7535), 1, - aux_sym__immediate_decimal_token4, - STATE(4235), 1, - sym_comment, - STATE(5005), 1, - sym__immediate_decimal, - ACTIONS(1423), 2, - sym_identifier, + ACTIONS(1796), 1, anon_sym_DASH, - STATE(5341), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1425), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166917] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1535), 1, - aux_sym_unquoted_token2, - ACTIONS(7539), 1, - aux_sym__immediate_decimal_token2, - STATE(4236), 1, + STATE(4353), 1, sym_comment, - ACTIONS(1537), 17, + ACTIONS(1798), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370324,175 +380040,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT, - [166949] = 12, + [171276] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOLLAR, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7500), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7541), 1, + ACTIONS(1822), 1, + sym__space, + ACTIONS(7321), 1, anon_sym_DOT, - ACTIONS(7543), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7545), 1, - aux_sym__immediate_decimal_token3, - STATE(4237), 1, + STATE(4354), 1, sym_comment, - STATE(4858), 1, - sym__immediate_decimal, - ACTIONS(1449), 2, - sym_identifier, - anon_sym_DASH, - STATE(4784), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1457), 8, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4927), 1, + sym_cell_path, + ACTIONS(1820), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166995] = 12, + anon_sym_RBRACE, + [171313] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7434), 1, - anon_sym_DOLLAR, - ACTIONS(7494), 1, + ACTIONS(1780), 1, + sym__space, + ACTIONS(7321), 1, anon_sym_DOT, - ACTIONS(7496), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7498), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7500), 1, - aux_sym__immediate_decimal_token4, - STATE(4238), 1, + STATE(4355), 1, sym_comment, - STATE(5316), 1, - sym__immediate_decimal, - ACTIONS(1449), 2, - sym_identifier, - anon_sym_DASH, - STATE(5315), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1457), 8, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4873), 1, + sym_cell_path, + ACTIONS(1778), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167041] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [171350] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4239), 1, - sym_comment, - ACTIONS(1220), 9, - aux_sym_cmd_identifier_token39, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - anon_sym_DOT2, - aux_sym__val_number_decimal_token3, - ACTIONS(1216), 10, - anon_sym_true, - anon_sym_false, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - sym_identifier, + ACTIONS(2359), 1, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [167071] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7387), 1, - anon_sym_LPAREN2, - ACTIONS(7397), 1, - aux_sym__unquoted_in_list_token5, - ACTIONS(7434), 1, - anon_sym_DOLLAR, - ACTIONS(7529), 1, - anon_sym_DOT, - ACTIONS(7531), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7533), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7535), 1, - aux_sym__immediate_decimal_token4, - STATE(4240), 1, + STATE(4356), 1, sym_comment, - STATE(5001), 1, - sym__immediate_decimal, - ACTIONS(5381), 2, - sym_identifier, - anon_sym_DASH, - STATE(5333), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(5395), 7, + ACTIONS(2361), 17, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, - [167119] = 5, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171379] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7547), 1, - aux_sym__immediate_decimal_token2, - STATE(4241), 1, - sym_comment, - ACTIONS(1398), 7, - sym_identifier, + ACTIONS(1741), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1400), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167151] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - STATE(4242), 1, + STATE(4357), 1, sym_comment, - ACTIONS(1472), 18, + ACTIONS(1745), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370504,109 +380148,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT, - [167181] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7430), 1, - aux_sym__immediate_decimal_token2, - STATE(4243), 1, - sym_comment, - ACTIONS(1368), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167213] = 11, - ACTIONS(3), 1, + [171408] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(7549), 1, - anon_sym_DOT_DOT2, - ACTIONS(7553), 1, - sym_filesize_unit, - ACTIONS(7555), 1, - sym_duration_unit, - STATE(4244), 1, - sym_comment, - STATE(7484), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1429), 2, - sym_identifier, + ACTIONS(2363), 1, anon_sym_DASH, - ACTIONS(7397), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(7551), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1441), 8, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167257] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7547), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7557), 1, - anon_sym_DOT, - STATE(4245), 1, + STATE(4358), 1, sym_comment, - ACTIONS(1398), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1400), 11, + ACTIONS(2365), 17, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167291] = 4, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171437] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1535), 1, - aux_sym_unquoted_token2, - STATE(4246), 1, + ACTIONS(2367), 1, + anon_sym_DASH, + STATE(4359), 1, sym_comment, - ACTIONS(1537), 18, + ACTIONS(2369), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370618,32 +380198,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT, - [167321] = 8, - ACTIONS(121), 1, + [171466] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - ACTIONS(7560), 1, - anon_sym_DOT_DOT2, - STATE(4247), 1, + ACTIONS(1899), 1, + anon_sym_DASH, + STATE(4360), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1595), 2, + ACTIONS(1901), 17, ts_builtin_sym_end, - sym__space, - ACTIONS(7562), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370655,23 +380223,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [167359] = 7, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171495] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_DOT, - STATE(4248), 1, + ACTIONS(7329), 1, + anon_sym_QMARK2, + STATE(4361), 1, sym_comment, - STATE(4252), 1, - aux_sym_cell_path_repeat1, - STATE(4389), 1, - sym_path, - ACTIONS(891), 4, + ACTIONS(972), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(889), 12, + ACTIONS(970), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370684,18 +380253,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [167395] = 4, - ACTIONS(121), 1, + anon_sym_DOT, + [171526] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4249), 1, + STATE(4362), 1, sym_comment, - ACTIONS(1537), 5, + ACTIONS(1021), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1023), 15, + anon_sym_PIPE, + anon_sym_in, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171555] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4363), 1, + sym_comment, + ACTIONS(1571), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 14, + ACTIONS(1569), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370708,16 +380303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token2, - [167425] = 4, + [171584] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1608), 1, - aux_sym_unquoted_token2, - STATE(4250), 1, + ACTIONS(7331), 1, + anon_sym_QMARK2, + STATE(4364), 1, sym_comment, - ACTIONS(1610), 18, + ACTIONS(982), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(980), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370729,25 +380328,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, + anon_sym_DOT_DOT2, anon_sym_DOT, - [167455] = 6, - ACTIONS(3), 1, + [171615] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(1589), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(4251), 1, + STATE(4365), 1, sym_comment, - ACTIONS(1595), 16, + STATE(7590), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7333), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370764,22 +380356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167489] = 6, - ACTIONS(121), 1, + [171646] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7566), 1, - anon_sym_DOT, - STATE(4389), 1, - sym_path, - STATE(4252), 2, + ACTIONS(1835), 1, + anon_sym_DASH, + STATE(4366), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(895), 4, + ACTIONS(1837), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(893), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370791,21 +380376,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [167523] = 6, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171675] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7569), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7571), 1, - aux_sym__immediate_decimal_token2, - STATE(4253), 1, + ACTIONS(2371), 1, + anon_sym_DASH, + STATE(4367), 1, sym_comment, - ACTIONS(1472), 3, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1470), 14, + ACTIONS(2373), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370817,21 +380401,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [167557] = 6, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171704] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, + ACTIONS(2099), 1, anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - STATE(4254), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(4368), 1, sym_comment, - ACTIONS(1580), 16, + ACTIONS(2097), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2101), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370845,28 +380433,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167591] = 8, - ACTIONS(121), 1, + [171737] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(7573), 1, - anon_sym_DOT_DOT2, - STATE(4255), 1, - sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1580), 2, - ts_builtin_sym_end, + ACTIONS(1745), 1, sym__space, - ACTIONS(7575), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1570), 11, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(4369), 1, + sym_comment, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4941), 1, + sym_cell_path, + ACTIONS(1741), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370878,18 +380460,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [167629] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171774] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4256), 1, + ACTIONS(7335), 1, + anon_sym_DOT, + STATE(4370), 1, sym_comment, - ACTIONS(1472), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + STATE(4509), 1, + aux_sym_cell_path_repeat1, + STATE(4828), 1, + sym_path, + STATE(4906), 1, + sym_cell_path, + ACTIONS(945), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(947), 12, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 14, + [171811] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1839), 1, + anon_sym_DASH, + STATE(4371), 1, + sym_comment, + ACTIONS(1841), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370901,25 +380511,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - [167659] = 8, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171840] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1794), 1, + ACTIONS(1764), 1, sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4257), 1, + STATE(4372), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4835), 1, + STATE(4880), 1, sym_cell_path, - ACTIONS(1792), 13, + ACTIONS(1762), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370933,19 +380545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167696] = 6, + [171877] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(2099), 1, anon_sym_LPAREN2, - ACTIONS(1943), 1, - aux_sym_unquoted_token2, - ACTIONS(7525), 1, - anon_sym_DOT, - STATE(4258), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(4373), 1, sym_comment, - ACTIONS(1945), 15, - ts_builtin_sym_end, + ACTIONS(2105), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2107), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370957,23 +380570,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167729] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171910] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7579), 1, + ACTIONS(7337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7339), 1, aux_sym__immediate_decimal_token2, - STATE(4259), 1, + STATE(4374), 1, sym_comment, - ACTIONS(1535), 5, + ACTIONS(1569), 4, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 12, + ACTIONS(1571), 12, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -370986,22 +380599,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [167760] = 8, - ACTIONS(121), 1, + [171943] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1901), 1, sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4260), 1, + STATE(4375), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4775), 1, + STATE(4962), 1, sym_cell_path, - ACTIONS(1764), 13, + ACTIONS(1899), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371015,41 +380628,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167797] = 5, + [171980] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7581), 1, - anon_sym_DOT_DOT2, - STATE(4261), 1, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(4376), 1, sym_comment, - ACTIONS(7583), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7510), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(1006), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - [167828] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - STATE(4262), 1, - sym_comment, - ACTIONS(1472), 17, - ts_builtin_sym_end, + ACTIONS(1008), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371061,25 +380653,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT, - [167857] = 6, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172013] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(4263), 1, + ACTIONS(1833), 1, + sym__space, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(4377), 1, sym_comment, - ACTIONS(2155), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2159), 13, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4973), 1, + sym_cell_path, + ACTIONS(1831), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371093,16 +380684,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167890] = 4, - ACTIONS(121), 1, + [172050] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4264), 1, + STATE(4378), 1, sym_comment, - ACTIONS(930), 3, + ACTIONS(1650), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(928), 15, + ACTIONS(1648), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371114,24 +380707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [167919] = 6, - ACTIONS(121), 1, + aux_sym_unquoted_token2, + [172079] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(4265), 1, + STATE(4379), 1, sym_comment, - ACTIONS(2163), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2165), 13, + STATE(7590), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7333), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371145,15 +380732,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167952] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172110] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1535), 1, - aux_sym_unquoted_token2, - STATE(4266), 1, + ACTIONS(1893), 1, + sym__space, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(4380), 1, sym_comment, - ACTIONS(1537), 17, - ts_builtin_sym_end, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4988), 1, + sym_cell_path, + ACTIONS(1891), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371165,45 +380762,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT, - [167981] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7585), 1, - aux_sym__immediate_decimal_token2, - STATE(4267), 1, - sym_comment, - ACTIONS(1518), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168012] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [172147] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1608), 1, - aux_sym_unquoted_token2, - STATE(4268), 1, + ACTIONS(2326), 1, + anon_sym_DASH, + STATE(4381), 1, sym_comment, - ACTIONS(1610), 17, + ACTIONS(2328), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371216,56 +380784,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT, - [168041] = 8, + [172176] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7587), 1, - anon_sym_DOT, - STATE(4269), 1, - sym_comment, - STATE(4373), 1, - aux_sym_cell_path_repeat1, - STATE(4716), 1, - sym_path, - STATE(4850), 1, - sym_cell_path, - ACTIONS(883), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(885), 12, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168078] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1770), 1, + ACTIONS(1772), 1, sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4270), 1, + STATE(4382), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4774), 1, + STATE(4980), 1, sym_cell_path, - ACTIONS(1768), 13, + ACTIONS(1770), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371279,22 +380818,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168115] = 8, - ACTIONS(121), 1, + [172213] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(1837), 1, sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4271), 1, + STATE(4383), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4800), 1, + STATE(4990), 1, sym_cell_path, - ACTIONS(1772), 13, + ACTIONS(1835), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371308,22 +380847,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168152] = 8, - ACTIONS(121), 1, + [172250] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1778), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4272), 1, + ACTIONS(7323), 1, + anon_sym_DOT_DOT2, + STATE(4384), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4805), 1, - sym_cell_path, - ACTIONS(1776), 13, + ACTIONS(7325), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7293), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371335,20 +380870,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168189] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172281] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7581), 1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(7303), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7341), 1, anon_sym_DOT_DOT2, - STATE(4273), 1, + ACTIONS(7345), 1, + sym_filesize_unit, + ACTIONS(7347), 1, + sym_duration_unit, + STATE(4385), 1, sym_comment, - ACTIONS(7583), 2, + STATE(7549), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1525), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(7343), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(950), 15, - ts_builtin_sym_end, + ACTIONS(1537), 8, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172324] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4386), 1, + sym_comment, + STATE(7590), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7333), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371360,25 +380926,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [168220] = 8, - ACTIONS(121), 1, + [172355] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1782), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4274), 1, + ACTIONS(1525), 1, + anon_sym_DASH, + STATE(4387), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4816), 1, - sym_cell_path, - ACTIONS(1780), 13, + ACTIONS(1537), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371390,24 +380951,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168257] = 8, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172384] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1869), 1, sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4275), 1, + STATE(4388), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4822), 1, + STATE(4950), 1, sym_cell_path, - ACTIONS(1784), 13, + ACTIONS(1867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371421,16 +380985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168294] = 5, - ACTIONS(3), 1, + [172421] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(4276), 1, + ACTIONS(2311), 1, + anon_sym_DASH, + STATE(4389), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7589), 16, + ACTIONS(2313), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371442,25 +381005,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [168325] = 6, - ACTIONS(121), 1, + [172450] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(4277), 1, + ACTIONS(7349), 1, + anon_sym_DOT, + ACTIONS(7351), 1, + aux_sym__immediate_decimal_token2, + STATE(4390), 1, sym_comment, - ACTIONS(948), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(950), 13, + ACTIONS(1591), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1589), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371474,22 +381036,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168358] = 8, - ACTIONS(121), 1, + aux_sym_unquoted_token2, + [172483] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(1873), 1, sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4278), 1, + STATE(4391), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4827), 1, + STATE(4945), 1, sym_cell_path, - ACTIONS(1788), 13, + ACTIONS(1871), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371503,22 +381066,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168395] = 8, - ACTIONS(121), 1, + [172520] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(1705), 1, - sym__space, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(7591), 1, - aux_sym__immediate_decimal_token1, - STATE(4279), 1, + STATE(4392), 1, sym_comment, - ACTIONS(1701), 13, + ACTIONS(968), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(966), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371530,24 +381088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168432] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1798), 1, - sym__space, - ACTIONS(7577), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4280), 1, + [172549] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4393), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4842), 1, - sym_cell_path, - ACTIONS(1796), 13, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371561,22 +381114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168469] = 8, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172580] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1802), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4281), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4394), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4872), 1, - sym_cell_path, - ACTIONS(1800), 13, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3209), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371590,21 +381140,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168506] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172611] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7585), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7593), 1, + ACTIONS(7335), 1, anon_sym_DOT, - STATE(4282), 1, + STATE(4395), 1, sym_comment, - ACTIONS(1518), 4, - sym_identifier, + STATE(4509), 1, + aux_sym_cell_path_repeat1, + STATE(4828), 1, + sym_path, + STATE(4995), 1, + sym_cell_path, + ACTIONS(1599), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 12, + ACTIONS(1603), 12, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -371614,25 +381170,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168539] = 8, - ACTIONS(121), 1, + [172648] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, + STATE(4396), 1, + sym_comment, + ACTIONS(1723), 5, + ts_builtin_sym_end, sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4283), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1721), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [172677] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2271), 1, + anon_sym_DASH, + STATE(4397), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4884), 1, - sym_cell_path, - ACTIONS(1804), 13, + ACTIONS(2273), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371644,24 +381217,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168576] = 8, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172706] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1810), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4284), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4398), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4914), 1, - sym_cell_path, - ACTIONS(1808), 13, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3259), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371675,22 +381245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168613] = 8, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172737] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4285), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4399), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4916), 1, - sym_cell_path, - ACTIONS(1812), 13, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3263), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371704,22 +381271,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168650] = 8, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172768] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1818), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4286), 1, + ACTIONS(2389), 1, + anon_sym_DASH, + STATE(4400), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4748), 1, - sym_cell_path, - ACTIONS(1816), 13, + ACTIONS(2391), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371731,24 +381294,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168687] = 8, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172797] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4287), 1, + ACTIONS(7355), 1, + sym__space, + STATE(4401), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4758), 1, + STATE(4951), 1, sym_cell_path, - ACTIONS(1820), 13, + ACTIONS(7353), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371762,16 +381328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168724] = 4, - ACTIONS(121), 1, + [172834] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4288), 1, + ACTIONS(1770), 1, + anon_sym_DASH, + STATE(4402), 1, sym_comment, - ACTIONS(926), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(924), 15, + ACTIONS(1772), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371783,20 +381348,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [168753] = 4, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172863] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4289), 1, - sym_comment, - ACTIONS(934), 3, + ACTIONS(1877), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(932), 15, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(4403), 1, + sym_comment, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4956), 1, + sym_cell_path, + ACTIONS(1875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371810,18 +381382,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + [172900] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4404), 1, + sym_comment, + ACTIONS(1473), 6, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - [168782] = 5, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 12, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [172929] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7596), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7598), 1, - aux_sym_unquoted_token2, - STATE(4290), 1, + ACTIONS(7323), 1, + anon_sym_DOT_DOT2, + STATE(4405), 1, sym_comment, - ACTIONS(2925), 16, + ACTIONS(7325), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7293), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371837,23 +381433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [168813] = 8, - ACTIONS(121), 1, + [172960] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1549), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4291), 1, + ACTIONS(2241), 1, + anon_sym_DASH, + STATE(4406), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4411), 1, - sym_cell_path, - STATE(4621), 1, - sym_path, - ACTIONS(1545), 13, + ACTIONS(2243), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371865,21 +381453,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168850] = 6, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172989] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7600), 1, - anon_sym_DOT, - ACTIONS(7603), 1, - aux_sym__immediate_decimal_token2, - STATE(4292), 1, + STATE(4407), 1, sym_comment, - ACTIONS(1520), 2, + ACTIONS(978), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1518), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(976), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371891,24 +381480,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [168883] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(7411), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7605), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4293), 1, + [173018] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4408), 1, sym_comment, - ACTIONS(1520), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(1481), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1483), 12, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 12, + [173047] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_DASH, + STATE(4409), 1, + sym_comment, + ACTIONS(1780), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371920,20 +381528,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [168916] = 6, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173076] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, + ACTIONS(1711), 1, anon_sym_LPAREN2, - ACTIONS(1576), 1, + ACTIONS(1719), 1, aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - STATE(4294), 1, + ACTIONS(7357), 1, + anon_sym_DOT_DOT2, + STATE(4410), 1, sym_comment, - ACTIONS(1580), 15, + ACTIONS(1717), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7359), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371945,25 +381562,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168949] = 4, - ACTIONS(3), 1, + [173113] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4295), 1, + STATE(4411), 1, sym_comment, - ACTIONS(1368), 7, + ACTIONS(1519), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 11, + aux_sym__unquoted_in_list_token2, + ACTIONS(1521), 12, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, @@ -371973,16 +381587,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168978] = 5, + [173142] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(4296), 1, + ACTIONS(1603), 1, + sym__space, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(4412), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7589), 16, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4517), 1, + sym_cell_path, + STATE(4815), 1, + sym_path, + ACTIONS(1599), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371996,23 +381616,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169009] = 6, - ACTIONS(121), 1, + [173179] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(4297), 1, + STATE(4413), 1, sym_comment, - ACTIONS(2077), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2081), 13, + ACTIONS(964), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(962), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [173208] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1841), 1, + sym__space, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(4414), 1, + sym_comment, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4993), 1, + sym_cell_path, + ACTIONS(1839), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372026,22 +381670,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169042] = 4, - ACTIONS(3), 1, + [173245] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4298), 1, + STATE(4415), 1, sym_comment, - ACTIONS(1376), 7, + ACTIONS(1585), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1378), 11, + aux_sym__unquoted_in_list_token2, + ACTIONS(1587), 12, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, @@ -372051,22 +381695,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [169071] = 8, - ACTIONS(121), 1, + [173274] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1742), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4299), 1, + ACTIONS(7361), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7363), 1, + aux_sym__immediate_decimal_token2, + STATE(4416), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4780), 1, - sym_cell_path, - ACTIONS(1740), 13, + ACTIONS(1571), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1569), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372080,18 +381721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169108] = 5, - ACTIONS(121), 1, + aux_sym_unquoted_token2, + [173307] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7603), 1, - aux_sym__immediate_decimal_token2, - STATE(4300), 1, + ACTIONS(2315), 1, + anon_sym_DASH, + STATE(4417), 1, sym_comment, - ACTIONS(1520), 3, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1518), 14, + ACTIONS(2317), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372103,20 +381742,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [169139] = 5, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173336] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7581), 1, + ACTIONS(7365), 1, anon_sym_DOT_DOT2, - STATE(4301), 1, + STATE(4418), 1, sym_comment, - ACTIONS(7583), 2, + ACTIONS(7367), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7510), 15, + ACTIONS(1941), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372132,47 +381773,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169170] = 4, - ACTIONS(3), 1, + [173367] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4302), 1, - sym_comment, - ACTIONS(1504), 7, - sym_identifier, - anon_sym_DASH, + ACTIONS(7369), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token6, - ACTIONS(1506), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, + STATE(4419), 1, + sym_comment, + ACTIONS(7371), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [169199] = 8, - ACTIONS(121), 1, + ACTIONS(2072), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173398] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1754), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4303), 1, + ACTIONS(7373), 1, + anon_sym_DOT_DOT2, + STATE(4420), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4859), 1, - sym_cell_path, - ACTIONS(1752), 13, + ACTIONS(7375), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1978), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372184,18 +381822,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169236] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173429] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(4304), 1, + ACTIONS(7377), 1, + anon_sym_DOT_DOT2, + STATE(4421), 1, sym_comment, - STATE(7515), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7589), 16, + ACTIONS(7379), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1966), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372207,27 +381848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [169267] = 8, - ACTIONS(121), 1, + [173460] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1725), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4305), 1, + ACTIONS(2344), 1, + anon_sym_DASH, + STATE(4422), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4885), 1, - sym_cell_path, - ACTIONS(1723), 13, + ACTIONS(2346), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372239,19 +381871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169304] = 4, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173489] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4306), 1, + ACTIONS(2251), 1, + anon_sym_DASH, + STATE(4423), 1, sym_comment, - ACTIONS(918), 4, + ACTIONS(2253), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(916), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372263,20 +381896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [169333] = 4, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173518] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4307), 1, + ACTIONS(2255), 1, + anon_sym_DASH, + STATE(4424), 1, sym_comment, - ACTIONS(922), 4, + ACTIONS(2257), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(920), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372288,25 +381921,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [169362] = 8, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173547] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1731), 1, + ACTIONS(1849), 1, sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4308), 1, + STATE(4425), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4894), 1, + STATE(4985), 1, sym_cell_path, - ACTIONS(1729), 13, + ACTIONS(1847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372320,22 +381955,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169399] = 8, - ACTIONS(121), 1, + [173584] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, + ACTIONS(947), 1, sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4309), 1, + STATE(4426), 1, sym_comment, - STATE(4345), 1, + STATE(4473), 1, + sym_cell_path, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4898), 1, - sym_cell_path, - ACTIONS(1689), 13, + ACTIONS(945), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372349,48 +381984,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169436] = 8, - ACTIONS(121), 1, + [173621] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7577), 1, - anon_sym_DOT, - ACTIONS(7609), 1, - sym__space, - STATE(4310), 1, + ACTIONS(7381), 1, + aux_sym__immediate_decimal_token2, + STATE(4427), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4899), 1, - sym_cell_path, - ACTIONS(7607), 13, + ACTIONS(1519), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1521), 11, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [169473] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [173652] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(1925), 1, + ACTIONS(1711), 1, anon_sym_LPAREN2, - ACTIONS(7502), 1, - anon_sym_DOT, - STATE(4311), 1, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + STATE(4428), 1, sym_comment, - ACTIONS(1927), 15, - ts_builtin_sym_end, + ACTIONS(2087), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372402,27 +382031,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [169506] = 8, - ACTIONS(3), 1, + [173683] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7587), 1, + ACTIONS(7383), 1, anon_sym_DOT, - STATE(4312), 1, + ACTIONS(7385), 1, + aux_sym__immediate_decimal_token2, + STATE(4429), 1, sym_comment, - STATE(4373), 1, - aux_sym_cell_path_repeat1, - STATE(4716), 1, - sym_path, - STATE(4840), 1, - sym_cell_path, - ACTIONS(1545), 2, + ACTIONS(1589), 4, + sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1549), 12, - sym_identifier, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 12, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -372432,24 +382060,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [173716] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(7387), 1, + anon_sym_DOT_DOT2, + STATE(4430), 1, + sym_comment, + ACTIONS(1698), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7389), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1690), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173753] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7323), 1, + anon_sym_DOT_DOT2, + STATE(4431), 1, + sym_comment, + ACTIONS(7325), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [169543] = 8, - ACTIONS(121), 1, + ACTIONS(1008), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173784] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1861), 1, sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4313), 1, + STATE(4432), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4771), 1, + STATE(4940), 1, sym_cell_path, - ACTIONS(1756), 13, + ACTIONS(1859), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372463,22 +382147,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169580] = 8, - ACTIONS(121), 1, + [173821] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(1865), 1, sym__space, - ACTIONS(7577), 1, + ACTIONS(7321), 1, anon_sym_DOT, - STATE(4314), 1, + STATE(4433), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4815), 1, sym_path, - STATE(4903), 1, + STATE(4957), 1, sym_cell_path, - ACTIONS(1760), 13, + ACTIONS(1863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372492,49 +382176,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169617] = 6, + [173858] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7611), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7613), 1, - aux_sym__immediate_decimal_token2, - STATE(4315), 1, - sym_comment, - ACTIONS(1470), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(7321), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [169650] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(885), 1, + ACTIONS(7393), 1, sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4316), 1, + STATE(4434), 1, sym_comment, - STATE(4345), 1, + STATE(4497), 1, aux_sym_cell_path_repeat1, - STATE(4364), 1, - sym_cell_path, - STATE(4621), 1, + STATE(4815), 1, sym_path, - ACTIONS(883), 13, + STATE(4958), 1, + sym_cell_path, + ACTIONS(7391), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372548,19 +382205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169687] = 5, - ACTIONS(121), 1, + [173895] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7615), 1, - anon_sym_QMARK2, - STATE(4317), 1, + ACTIONS(2336), 1, + anon_sym_DASH, + STATE(4435), 1, sym_comment, - ACTIONS(902), 4, + ACTIONS(2338), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(900), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372572,19 +382225,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [169718] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(4318), 1, - sym_comment, - ACTIONS(2073), 4, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - aux_sym_unquoted_token7, - ACTIONS(2075), 14, + [173924] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2129), 1, + aux_sym_unquoted_token2, + STATE(4436), 1, + sym_comment, + ACTIONS(2127), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372598,20 +382253,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, - [169747] = 5, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173955] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7617), 1, - anon_sym_QMARK2, - STATE(4319), 1, - sym_comment, - ACTIONS(908), 4, - ts_builtin_sym_end, + ACTIONS(1881), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(906), 13, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(4437), 1, + sym_comment, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(5017), 1, + sym_cell_path, + ACTIONS(1879), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372623,19 +382283,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [169778] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173992] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4320), 1, - sym_comment, - ACTIONS(914), 4, - ts_builtin_sym_end, + ACTIONS(1885), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(912), 14, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(4438), 1, + sym_comment, + STATE(4497), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + STATE(4893), 1, + sym_cell_path, + ACTIONS(1883), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372647,20 +382312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [169807] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174029] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7581), 1, - anon_sym_DOT_DOT2, - STATE(4321), 1, + ACTIONS(2383), 1, + anon_sym_DASH, + STATE(4439), 1, sym_comment, - ACTIONS(7583), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7510), 15, + ACTIONS(2385), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372673,25 +382334,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [169838] = 8, - ACTIONS(121), 1, + [174058] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__space, - ACTIONS(7577), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4322), 1, + STATE(4440), 1, sym_comment, - STATE(4345), 1, + STATE(4675), 1, + sym_cell_path, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4936), 1, sym_path, - STATE(4888), 1, - sym_cell_path, - ACTIONS(1744), 13, + ACTIONS(947), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(945), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372703,20 +382367,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169875] = 5, + [174094] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7619), 1, + ACTIONS(1008), 1, + sym__space, + ACTIONS(7397), 1, anon_sym_DOT_DOT2, - STATE(4323), 1, + STATE(4441), 1, sym_comment, - ACTIONS(7621), 2, + ACTIONS(7399), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1953), 15, - ts_builtin_sym_end, + ACTIONS(1006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372728,20 +382391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169906] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174126] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7623), 1, - anon_sym_DOT_DOT2, - STATE(4324), 1, + ACTIONS(1589), 1, + aux_sym_unquoted_token2, + STATE(4442), 1, sym_comment, - ACTIONS(7625), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1869), 15, + ACTIONS(1591), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372757,18 +382416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169937] = 5, + anon_sym_LPAREN2, + [174154] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7627), 1, - anon_sym_DOT_DOT2, - STATE(4325), 1, + ACTIONS(7401), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7403), 1, + aux_sym__immediate_decimal_token2, + STATE(4443), 1, sym_comment, - ACTIONS(7629), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1877), 15, + ACTIONS(1571), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1569), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372780,20 +382442,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169968] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [174186] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7631), 1, - anon_sym_DOT_DOT2, - STATE(4326), 1, + ACTIONS(1569), 1, + aux_sym_unquoted_token2, + STATE(4444), 1, sym_comment, - ACTIONS(7633), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1885), 15, + ACTIONS(1571), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372809,18 +382466,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169999] = 5, - ACTIONS(121), 1, + anon_sym_LPAREN2, + [174214] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7571), 1, - aux_sym__immediate_decimal_token2, - STATE(4327), 1, + ACTIONS(7395), 1, + anon_sym_DOT, + STATE(4445), 1, sym_comment, - ACTIONS(1472), 3, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5186), 1, + sym_cell_path, + ACTIONS(1849), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1470), 14, + ACTIONS(1847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372832,26 +382495,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [170030] = 5, - ACTIONS(3), 1, + [174250] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7508), 1, + ACTIONS(7405), 1, + anon_sym_DOT, + ACTIONS(7407), 1, aux_sym__immediate_decimal_token2, - STATE(4328), 1, + STATE(4446), 1, sym_comment, - ACTIONS(1470), 5, + ACTIONS(1589), 4, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 12, + ACTIONS(1591), 11, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, @@ -372861,18 +382521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170061] = 6, - ACTIONS(3), 1, + [174282] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, + ACTIONS(1648), 1, aux_sym_unquoted_token2, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(4329), 1, + STATE(4447), 1, sym_comment, - ACTIONS(1595), 15, + ACTIONS(1650), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372888,18 +382544,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [170094] = 5, - ACTIONS(121), 1, + anon_sym_LPAREN2, + [174310] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7635), 1, - aux_sym__immediate_decimal_token2, - STATE(4330), 1, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, + STATE(4448), 1, sym_comment, - ACTIONS(1537), 3, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1535), 14, + ACTIONS(1723), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372911,25 +382565,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [170125] = 8, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [174338] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1687), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4331), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + STATE(4449), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4763), 1, - sym_cell_path, - ACTIONS(1683), 13, + ACTIONS(1698), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372941,24 +382591,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170162] = 8, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174368] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1735), 1, - sym__space, - ACTIONS(7577), 1, - anon_sym_DOT, - STATE(4332), 1, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(4450), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4908), 1, - sym_cell_path, - ACTIONS(1733), 13, + ACTIONS(1006), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1008), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372970,24 +382620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170199] = 8, - ACTIONS(121), 1, + [174400] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7577), 1, - anon_sym_DOT, - ACTIONS(7639), 1, + ACTIONS(2072), 1, sym__space, - STATE(4333), 1, + ACTIONS(7409), 1, + anon_sym_DOT_DOT2, + STATE(4451), 1, sym_comment, - STATE(4345), 1, - aux_sym_cell_path_repeat1, - STATE(4621), 1, - sym_path, - STATE(4798), 1, - sym_cell_path, - ACTIONS(7637), 13, + ACTIONS(7411), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2066), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373001,16 +382646,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170236] = 5, - ACTIONS(121), 1, + [174432] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3241), 1, - anon_sym_LPAREN2, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, - STATE(4334), 1, + ACTIONS(7059), 1, + aux_sym_unquoted_token2, + STATE(4452), 1, sym_comment, - ACTIONS(3239), 16, + ACTIONS(1537), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373027,50 +382670,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [170267] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(7641), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7643), 1, - aux_sym__immediate_decimal_token2, - STATE(4335), 1, - sym_comment, - ACTIONS(1472), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1470), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [170300] = 8, - ACTIONS(121), 1, + [174460] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4336), 1, + STATE(4453), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(4927), 1, + STATE(5181), 1, sym_cell_path, - ACTIONS(7609), 2, + ACTIONS(1798), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7607), 11, + ACTIONS(1796), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373082,47 +382698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170336] = 8, - ACTIONS(121), 1, + [174496] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4337), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4454), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(5092), 1, - sym_cell_path, - ACTIONS(1814), 2, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3205), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1812), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [170372] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(7647), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7649), 1, - aux_sym_unquoted_token2, - STATE(4338), 1, - sym_comment, - ACTIONS(2925), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2927), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373134,34 +382720,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170404] = 13, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174526] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7653), 1, + ACTIONS(7415), 1, anon_sym_EQ, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(7657), 1, + ACTIONS(7419), 1, anon_sym_COLON, - ACTIONS(7659), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - ACTIONS(7661), 1, + ACTIONS(7423), 1, anon_sym_COMMA, - ACTIONS(7663), 1, + ACTIONS(7425), 1, anon_sym_DASH, - STATE(4339), 1, + STATE(4455), 1, sym_comment, - STATE(4660), 1, + STATE(4782), 1, sym_flag_capsule, - STATE(4958), 1, - sym_param_type, - STATE(4959), 1, + STATE(5024), 1, sym_param_value, - STATE(5252), 1, + STATE(5154), 1, + sym_param_type, + STATE(5342), 1, aux_sym_shebang_repeat1, - ACTIONS(7651), 7, + ACTIONS(7413), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -373169,20 +382756,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170450] = 7, - ACTIONS(121), 1, + [174572] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(1589), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - ACTIONS(1595), 1, - sym__space, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(4340), 1, + STATE(4456), 1, sym_comment, - ACTIONS(1587), 13, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3209), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373194,49 +382778,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170484] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174602] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token6, - STATE(4341), 1, - sym_comment, - ACTIONS(1441), 16, + ACTIONS(7427), 1, + sym_identifier, + ACTIONS(7430), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7435), 1, + anon_sym_DOLLAR, + ACTIONS(7438), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DASH_DASH, + ACTIONS(7444), 1, + anon_sym_DASH, + STATE(4504), 1, + sym_param_long_flag, + STATE(4787), 1, + sym__param_name, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5379), 1, + aux_sym_shebang_repeat1, + STATE(5590), 1, + sym_parameter, + STATE(4457), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(7433), 3, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170512] = 8, - ACTIONS(121), 1, + [174654] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4342), 1, + STATE(4458), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(5093), 1, + STATE(5063), 1, sym_cell_path, - ACTIONS(1818), 2, + ACTIONS(1772), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1816), 11, + ACTIONS(1770), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373248,20 +382845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170548] = 6, - ACTIONS(121), 1, + [174690] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7665), 1, + ACTIONS(7447), 1, anon_sym_DOT, - ACTIONS(7668), 1, + ACTIONS(7449), 1, aux_sym__immediate_decimal_token2, - STATE(4343), 1, + STATE(4459), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1591), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1518), 12, + ACTIONS(1589), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373274,16 +382871,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, aux_sym_unquoted_token2, - [170580] = 4, - ACTIONS(121), 1, + [174722] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4344), 1, + STATE(4460), 1, sym_comment, - ACTIONS(1537), 3, + ACTIONS(1955), 3, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1535), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1953), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373297,75 +382894,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [170608] = 7, - ACTIONS(121), 1, + anon_sym_DOT_DOT2, + [174750] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(891), 1, - sym__space, - ACTIONS(7577), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4345), 1, + STATE(4461), 1, sym_comment, - STATE(4359), 1, + STATE(4638), 1, + sym_cell_path, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4621), 1, + STATE(4936), 1, sym_path, - ACTIONS(889), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170642] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(4346), 1, - sym_comment, - ACTIONS(2155), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2159), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [170674] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(4347), 1, - sym_comment, - ACTIONS(2163), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2165), 12, + ACTIONS(1603), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1599), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373377,49 +382923,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170706] = 8, - ACTIONS(121), 1, + [174786] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4348), 1, + STATE(4462), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(4924), 1, + STATE(5108), 1, sym_cell_path, - ACTIONS(1742), 2, + ACTIONS(1780), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1740), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [170742] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(4349), 1, - sym_comment, - ACTIONS(2077), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2081), 12, - ts_builtin_sym_end, + ACTIONS(1778), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373431,19 +382951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170774] = 6, - ACTIONS(121), 1, + [174822] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(950), 1, + ACTIONS(1978), 1, sym__space, - ACTIONS(7670), 1, + ACTIONS(7451), 1, anon_sym_DOT_DOT2, - STATE(4350), 1, + STATE(4463), 1, sym_comment, - ACTIONS(7672), 2, + ACTIONS(7453), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(948), 13, + ACTIONS(1972), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373457,23 +382977,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170806] = 8, - ACTIONS(121), 1, + [174854] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4351), 1, + STATE(4464), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(5094), 1, + STATE(5150), 1, sym_cell_path, - ACTIONS(1822), 2, + ACTIONS(1881), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1820), 11, + ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373485,23 +383005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170842] = 8, - ACTIONS(121), 1, + [174890] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4352), 1, - sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(4925), 1, - sym_cell_path, - ACTIONS(1731), 2, - ts_builtin_sym_end, + ACTIONS(1966), 1, sym__space, - ACTIONS(1729), 11, + ACTIONS(7455), 1, + anon_sym_DOT_DOT2, + STATE(4465), 1, + sym_comment, + ACTIONS(7457), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1960), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373513,20 +383029,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170878] = 7, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174922] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(1580), 1, - sym__space, - ACTIONS(7472), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4353), 1, + STATE(4466), 1, sym_comment, - ACTIONS(1570), 13, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5034), 1, + sym_cell_path, + ACTIONS(1885), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1883), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373538,82 +383059,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170912] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4798), 1, - anon_sym_DOT, - ACTIONS(7678), 1, - anon_sym_QMARK2, - STATE(1585), 1, - aux_sym_cell_path_repeat1, - STATE(1694), 1, - sym_path, - STATE(4354), 1, - sym_comment, - STATE(5137), 1, - sym_cell_path, - ACTIONS(7674), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7676), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [170950] = 8, - ACTIONS(3), 1, + [174958] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - ACTIONS(7680), 1, - anon_sym_DOT_DOT2, - STATE(4355), 1, + STATE(4467), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 2, + ACTIONS(1473), 6, sym_identifier, anon_sym_DASH, - ACTIONS(7682), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1595), 9, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 11, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170986] = 8, - ACTIONS(121), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [174986] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4356), 1, + STATE(4468), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(5084), 1, + STATE(5158), 1, sym_cell_path, - ACTIONS(1786), 2, + ACTIONS(1893), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1784), 11, + ACTIONS(1891), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373625,23 +383111,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171022] = 8, - ACTIONS(121), 1, + [175022] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4357), 1, + STATE(4469), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(5087), 1, + STATE(5177), 1, sym_cell_path, - ACTIONS(1794), 2, + ACTIONS(1764), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1792), 11, + ACTIONS(1762), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373653,23 +383139,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171058] = 8, - ACTIONS(121), 1, + [175058] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7385), 1, + aux_sym__immediate_decimal_token2, + STATE(4470), 1, + sym_comment, + ACTIONS(1589), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 12, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [175088] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4358), 1, + STATE(4471), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(5086), 1, + STATE(5035), 1, sym_cell_path, - ACTIONS(1790), 2, + ACTIONS(1897), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1788), 11, + ACTIONS(1895), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373681,42 +383192,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171094] = 6, - ACTIONS(121), 1, + [175124] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(895), 1, - sym__space, - ACTIONS(7684), 1, - anon_sym_DOT, - STATE(4621), 1, - sym_path, - STATE(4359), 2, + ACTIONS(7459), 1, + aux_sym__immediate_decimal_token2, + STATE(4472), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 13, + ACTIONS(1648), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 12, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [171126] = 4, - ACTIONS(121), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [175154] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4360), 1, + STATE(4473), 1, sym_comment, - ACTIONS(1961), 3, + ACTIONS(1023), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1959), 14, + ACTIONS(1021), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373731,20 +383241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [171154] = 7, - ACTIONS(121), 1, + [175182] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_LPAREN2, - ACTIONS(1943), 1, - aux_sym_unquoted_token2, - ACTIONS(1945), 1, - sym__space, - ACTIONS(7525), 1, - anon_sym_DOT, - STATE(4361), 1, + STATE(4474), 1, sym_comment, - ACTIONS(1939), 13, + ACTIONS(1945), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1943), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373758,23 +383264,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171188] = 8, - ACTIONS(121), 1, + anon_sym_DOT_DOT2, + [175210] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4475), 1, + sym_comment, + ACTIONS(1481), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1483), 11, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [175238] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4362), 1, + STATE(4476), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(5088), 1, + STATE(5111), 1, sym_cell_path, - ACTIONS(1798), 2, + ACTIONS(1810), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1796), 11, + ACTIONS(1808), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373786,23 +383317,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171224] = 8, - ACTIONS(121), 1, + [175274] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7461), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7463), 1, + aux_sym__immediate_decimal_token2, + STATE(4477), 1, + sym_comment, + ACTIONS(1569), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 11, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [175306] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4363), 1, + STATE(4478), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(5089), 1, + STATE(5093), 1, sym_cell_path, - ACTIONS(1802), 2, + ACTIONS(1749), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1800), 11, + ACTIONS(1747), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373814,73 +383371,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171260] = 4, - ACTIONS(121), 1, + [175342] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4364), 1, + STATE(4479), 1, sym_comment, - ACTIONS(938), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(936), 14, + ACTIONS(1519), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1521), 11, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [171288] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(7670), 1, - anon_sym_DOT_DOT2, - ACTIONS(7689), 1, - sym__space, - STATE(4365), 1, - sym_comment, - ACTIONS(7672), 2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7687), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171320] = 8, - ACTIONS(121), 1, + [175370] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4366), 1, + STATE(4480), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(4926), 1, + STATE(5066), 1, sym_cell_path, - ACTIONS(1691), 2, + ACTIONS(1822), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1689), 11, + ACTIONS(1820), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373892,25 +383423,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171356] = 9, - ACTIONS(3), 1, + [175406] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4798), 1, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(7695), 1, + ACTIONS(7469), 1, anon_sym_QMARK2, - STATE(1585), 1, - aux_sym_cell_path_repeat1, - STATE(1694), 1, + STATE(2760), 1, sym_path, - STATE(4367), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4481), 1, sym_comment, - STATE(5160), 1, + STATE(5307), 1, sym_cell_path, - ACTIONS(7691), 2, + ACTIONS(7465), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(7693), 10, + ACTIONS(7467), 10, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -373921,23 +383452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [171394] = 8, - ACTIONS(121), 1, + [175444] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4368), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4482), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(5090), 1, - sym_cell_path, - ACTIONS(1806), 2, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3259), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1804), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373949,17 +383474,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171430] = 5, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175474] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5302), 1, - aux_sym_unquoted_token3, - STATE(4369), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4483), 1, sym_comment, - ACTIONS(3241), 2, + STATE(7720), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7333), 15, ts_builtin_sym_end, - anon_sym_LPAREN2, - ACTIONS(3239), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373974,16 +383502,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171460] = 4, - ACTIONS(121), 1, + [175504] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4370), 1, + ACTIONS(7395), 1, + anon_sym_DOT, + STATE(4484), 1, sym_comment, - ACTIONS(1610), 3, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5070), 1, + sym_cell_path, + ACTIONS(1877), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1608), 14, + ACTIONS(1875), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373995,22 +383530,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [171488] = 5, - ACTIONS(121), 1, + [175540] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7697), 1, - aux_sym__immediate_decimal_token2, - STATE(4371), 1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(4485), 1, sym_comment, - ACTIONS(1537), 4, + ACTIONS(2089), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2093), 12, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1535), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374022,17 +383556,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [171518] = 5, - ACTIONS(3), 1, + [175572] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4486), 1, + sym_comment, + ACTIONS(1585), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1587), 11, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [175600] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(4372), 1, + STATE(4487), 1, sym_comment, - STATE(7593), 1, + STATE(7720), 1, sym__expr_parenthesized_immediate, - ACTIONS(7589), 15, + ACTIONS(7333), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374048,50 +383605,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171548] = 7, + [175630] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7587), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4373), 1, + STATE(4488), 1, sym_comment, - STATE(4397), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4716), 1, + STATE(4936), 1, sym_path, - ACTIONS(889), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(891), 12, - sym_identifier, + STATE(5182), 1, + sym_cell_path, + ACTIONS(1745), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1741), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171582] = 8, - ACTIONS(121), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [175666] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4374), 1, + STATE(4489), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(5051), 1, + STATE(5121), 1, sym_cell_path, - ACTIONS(1725), 2, + ACTIONS(1826), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1723), 11, + ACTIONS(1824), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374103,49 +383661,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171618] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7653), 1, - anon_sym_EQ, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(7659), 1, - anon_sym_LPAREN, - ACTIONS(7701), 1, - anon_sym_COMMA, - ACTIONS(7703), 1, - anon_sym_DASH, - STATE(4375), 1, - sym_comment, - STATE(4612), 1, - sym_flag_capsule, - STATE(5082), 1, - sym_param_type, - STATE(5085), 1, - sym_param_value, - STATE(5295), 1, - aux_sym_shebang_repeat1, - ACTIONS(7699), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [171664] = 5, - ACTIONS(3), 1, + [175702] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(4376), 1, + STATE(4490), 1, sym_comment, - STATE(7593), 1, + STATE(7887), 1, sym__expr_parenthesized_immediate, - ACTIONS(7589), 15, + ACTIONS(3263), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374161,19 +383686,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171694] = 5, - ACTIONS(121), 1, + [175732] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7668), 1, - aux_sym__immediate_decimal_token2, - STATE(4377), 1, + ACTIONS(7395), 1, + anon_sym_DOT, + STATE(4491), 1, sym_comment, - ACTIONS(1520), 4, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5188), 1, + sym_cell_path, + ACTIONS(1901), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1518), 12, + ACTIONS(1899), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374185,21 +383714,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [171724] = 7, - ACTIONS(121), 1, + [175768] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(1925), 1, - anon_sym_LPAREN2, - ACTIONS(1927), 1, - sym__space, - ACTIONS(7502), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4378), 1, + STATE(4492), 1, sym_comment, - ACTIONS(1923), 13, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5032), 1, + sym_cell_path, + ACTIONS(1833), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1831), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374211,101 +383742,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171758] = 4, + [175804] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4379), 1, - sym_comment, - ACTIONS(1470), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(7395), 1, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171786] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4380), 1, + STATE(4493), 1, sym_comment, - ACTIONS(1608), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1610), 12, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5052), 1, + sym_cell_path, + ACTIONS(1837), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1835), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171814] = 8, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [175840] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - ACTIONS(7705), 1, - anon_sym_DOT_DOT2, - STATE(4381), 1, + STATE(4494), 1, sym_comment, - ACTIONS(1570), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(7707), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1580), 9, + STATE(7720), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7333), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [171850] = 8, - ACTIONS(121), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175870] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4382), 1, + STATE(4495), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(4930), 1, + STATE(5057), 1, sym_cell_path, - ACTIONS(1746), 2, + ACTIONS(1841), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1744), 11, + ACTIONS(1839), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374317,23 +383823,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171886] = 8, - ACTIONS(121), 1, + [175906] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4383), 1, + STATE(4496), 1, sym_comment, - STATE(4504), 1, - sym_cell_path, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - ACTIONS(885), 2, + STATE(5104), 1, + sym_cell_path, + ACTIONS(1861), 2, ts_builtin_sym_end, sym__space, - ACTIONS(883), 11, + ACTIONS(1859), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374345,16 +383851,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171922] = 4, - ACTIONS(121), 1, + [175942] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4384), 1, - sym_comment, - ACTIONS(1965), 3, + ACTIONS(953), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1963), 14, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(4497), 1, + sym_comment, + STATE(4520), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_path, + ACTIONS(951), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374368,20 +383878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [171950] = 5, - ACTIONS(121), 1, + [175976] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7643), 1, - aux_sym__immediate_decimal_token2, - STATE(4385), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(4498), 1, sym_comment, - ACTIONS(1472), 4, + ACTIONS(2097), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2101), 12, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1470), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374393,24 +383904,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [171980] = 8, - ACTIONS(121), 1, + [176008] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4386), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(4499), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(5070), 1, - sym_cell_path, - ACTIONS(1754), 2, + ACTIONS(2105), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2107), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1752), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374422,18 +383930,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172016] = 4, - ACTIONS(121), 1, + [176040] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4387), 1, + ACTIONS(7395), 1, + anon_sym_DOT, + STATE(4500), 1, sym_comment, - ACTIONS(2073), 4, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - aux_sym_unquoted_token7, - ACTIONS(2075), 13, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5118), 1, + sym_cell_path, + ACTIONS(1865), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1863), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374445,20 +383958,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - [172044] = 6, - ACTIONS(121), 1, + [176076] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__space, - ACTIONS(7709), 1, - anon_sym_DOT_DOT2, - STATE(4388), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + STATE(4501), 1, sym_comment, - ACTIONS(7711), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1879), 13, + ACTIONS(1717), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374470,19 +383980,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172076] = 4, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176106] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4389), 1, + ACTIONS(7395), 1, + anon_sym_DOT, + STATE(4502), 1, sym_comment, - ACTIONS(930), 4, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5123), 1, + sym_cell_path, + ACTIONS(7393), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(928), 13, + ACTIONS(7391), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374494,21 +384011,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [172104] = 6, - ACTIONS(121), 1, + [176142] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - sym__space, - ACTIONS(7713), 1, - anon_sym_DOT_DOT2, - STATE(4390), 1, + ACTIONS(7395), 1, + anon_sym_DOT, + STATE(4503), 1, sym_comment, - ACTIONS(7715), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1947), 13, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5137), 1, + sym_cell_path, + ACTIONS(1869), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1867), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374520,76 +384039,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172136] = 5, - ACTIONS(3), 1, + [176178] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7717), 1, - aux_sym__immediate_decimal_token2, - STATE(4391), 1, + ACTIONS(7415), 1, + anon_sym_EQ, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7419), 1, + anon_sym_COLON, + ACTIONS(7421), 1, + anon_sym_LPAREN, + ACTIONS(7473), 1, + anon_sym_COMMA, + ACTIONS(7475), 1, + anon_sym_DASH, + STATE(4504), 1, sym_comment, - ACTIONS(1518), 5, + STATE(4859), 1, + sym_flag_capsule, + STATE(5048), 1, + sym_param_type, + STATE(5049), 1, + sym_param_value, + STATE(5224), 1, + aux_sym_shebang_repeat1, + ACTIONS(7471), 7, sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 11, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172166] = 6, + [176224] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7717), 1, + ACTIONS(7351), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7719), 1, - anon_sym_DOT, - STATE(4392), 1, + STATE(4505), 1, sym_comment, - ACTIONS(1518), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 11, + ACTIONS(1591), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1589), 14, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172198] = 8, - ACTIONS(121), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [176254] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4393), 1, + STATE(4506), 1, sym_comment, - STATE(4561), 1, + STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(4946), 1, + STATE(5141), 1, sym_cell_path, - ACTIONS(1687), 2, + ACTIONS(7355), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1683), 11, + ACTIONS(7353), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374601,23 +384125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172234] = 8, - ACTIONS(121), 1, + [176290] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4394), 1, + STATE(4507), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(4947), 1, - sym_cell_path, - ACTIONS(7639), 2, + ACTIONS(996), 4, ts_builtin_sym_end, sym__space, - ACTIONS(7637), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374629,46 +384147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172270] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7613), 1, - aux_sym__immediate_decimal_token2, - STATE(4395), 1, - sym_comment, - ACTIONS(1470), 5, - sym_identifier, - anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172300] = 6, - ACTIONS(121), 1, + [176318] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(4396), 1, + ACTIONS(7395), 1, + anon_sym_DOT, + STATE(4508), 1, sym_comment, - ACTIONS(948), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(950), 12, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5160), 1, + sym_cell_path, + ACTIONS(1857), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1855), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374680,20 +384177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172332] = 6, - ACTIONS(3), 1, + [176354] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7722), 1, + ACTIONS(7335), 1, anon_sym_DOT, - STATE(4716), 1, + STATE(4509), 1, + sym_comment, + STATE(4510), 1, + aux_sym_cell_path_repeat1, + STATE(4828), 1, sym_path, - ACTIONS(893), 2, + ACTIONS(951), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - STATE(4397), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(895), 12, + ACTIONS(953), 12, sym_identifier, sym__newline, anon_sym_PIPE, @@ -374706,42 +384204,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [172364] = 5, - ACTIONS(3), 1, + [176388] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7725), 1, - aux_sym__immediate_decimal_token2, - STATE(4398), 1, - sym_comment, - ACTIONS(1535), 5, - sym_identifier, + ACTIONS(7477), 1, + anon_sym_DOT, + STATE(4828), 1, + sym_path, + ACTIONS(955), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 11, + STATE(4510), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(957), 12, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [172394] = 4, - ACTIONS(121), 1, + [176420] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4399), 1, + ACTIONS(7395), 1, + anon_sym_DOT, + STATE(4511), 1, sym_comment, - ACTIONS(926), 4, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5027), 1, + sym_cell_path, + ACTIONS(1776), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(924), 13, + ACTIONS(1774), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374753,43 +384258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [172422] = 4, + [176456] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4400), 1, - sym_comment, - ACTIONS(1535), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172450] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(4401), 1, + STATE(4512), 1, sym_comment, - ACTIONS(934), 4, + ACTIONS(988), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(932), 13, + ACTIONS(986), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374803,23 +384282,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, - [172478] = 8, - ACTIONS(121), 1, + [176484] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4402), 1, + STATE(4513), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(5072), 1, - sym_cell_path, - ACTIONS(1758), 2, + ACTIONS(992), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1756), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(990), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374831,23 +384304,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172514] = 8, - ACTIONS(121), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [176512] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(4403), 1, - sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, + ACTIONS(7484), 1, + anon_sym_QMARK2, + STATE(2760), 1, sym_path, - STATE(5073), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4514), 1, + sym_comment, + STATE(5249), 1, sym_cell_path, - ACTIONS(1762), 2, + ACTIONS(7480), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7482), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [176550] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4515), 1, + sym_comment, + ACTIONS(2131), 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + aux_sym_unquoted_token4, + ACTIONS(2133), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(1760), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374859,23 +384358,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172550] = 8, - ACTIONS(121), 1, + anon_sym_LPAREN2, + [176578] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4404), 1, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2129), 1, + aux_sym_unquoted_token2, + STATE(4516), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(5064), 1, - sym_cell_path, - ACTIONS(1735), 2, + ACTIONS(2127), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1733), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374887,17 +384381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172586] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(4405), 1, + STATE(4517), 1, sym_comment, - STATE(7593), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7589), 15, - ts_builtin_sym_end, + ACTIONS(1984), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1982), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374909,19 +384405,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [172616] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [176636] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4406), 1, + ACTIONS(7486), 1, + aux_sym__immediate_decimal_token2, + STATE(4518), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(1650), 2, sym__space, anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1470), 14, + ACTIONS(1648), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374936,19 +384433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, aux_sym_unquoted_token2, - [172644] = 6, - ACTIONS(121), 1, + [176666] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1869), 1, - sym__space, - ACTIONS(7727), 1, - anon_sym_DOT_DOT2, - STATE(4407), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(2119), 1, + anon_sym_LPAREN2, + STATE(4519), 1, sym_comment, - ACTIONS(7729), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1863), 13, + ACTIONS(2121), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374960,25 +384455,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172676] = 8, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176696] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(957), 1, + sym__space, + ACTIONS(7488), 1, anon_sym_DOT, - STATE(4408), 1, + STATE(4815), 1, + sym_path, + STATE(4520), 2, sym_comment, - STATE(4451), 1, - sym_cell_path, - STATE(4561), 1, aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - ACTIONS(1549), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1545), 11, + ACTIONS(955), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374990,19 +384482,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172712] = 6, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176728] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(1941), 1, sym__space, - ACTIONS(7731), 1, + ACTIONS(7491), 1, anon_sym_DOT_DOT2, - STATE(4409), 1, + STATE(4521), 1, sym_comment, - ACTIONS(7733), 2, + ACTIONS(7493), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1871), 13, + ACTIONS(1935), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375016,52 +384510,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172744] = 16, + [176760] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7735), 1, - sym_identifier, - ACTIONS(7738), 1, - sym__newline, - ACTIONS(7743), 1, - anon_sym_DOLLAR, - ACTIONS(7746), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7749), 1, - anon_sym_DASH_DASH, - ACTIONS(7752), 1, - anon_sym_DASH, - STATE(4339), 1, - sym_param_long_flag, - STATE(4709), 1, - sym__param_name, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, - sym_param_short_flag, - STATE(5298), 1, - aux_sym_shebang_repeat1, - STATE(5647), 1, - sym_parameter, - STATE(4410), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(7741), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [172796] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(4411), 1, + ACTIONS(7395), 1, + anon_sym_DOT, + STATE(4522), 1, sym_comment, - ACTIONS(1915), 3, + STATE(4681), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_path, + STATE(5041), 1, + sym_cell_path, + ACTIONS(1873), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1913), 14, + ACTIONS(1871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375073,26 +384538,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [172824] = 8, - ACTIONS(121), 1, + [176796] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(7755), 1, - aux_sym__immediate_decimal_token1, - STATE(4412), 1, - sym_comment, - ACTIONS(1705), 2, - ts_builtin_sym_end, + ACTIONS(7397), 1, + anon_sym_DOT_DOT2, + ACTIONS(7497), 1, sym__space, - ACTIONS(1701), 11, + STATE(4523), 1, + sym_comment, + ACTIONS(7399), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7495), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375104,23 +384562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172860] = 8, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176828] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4413), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + STATE(4524), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(5076), 1, - sym_cell_path, - ACTIONS(1766), 2, + ACTIONS(2087), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1764), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375132,23 +384586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172896] = 8, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176858] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4414), 1, + STATE(4525), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(5077), 1, - sym_cell_path, - ACTIONS(1770), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1768), 11, + STATE(4531), 1, + aux_sym_shebang_repeat1, + ACTIONS(7499), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375160,23 +384608,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172932] = 8, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176885] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4415), 1, + ACTIONS(7503), 1, + anon_sym_and, + ACTIONS(7505), 1, + anon_sym_xor, + STATE(4526), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(5079), 1, - sym_cell_path, - ACTIONS(1774), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1772), 11, + ACTIONS(7501), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375188,23 +384633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172968] = 8, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or, + [176914] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4416), 1, + STATE(4527), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(5081), 1, - sym_cell_path, - ACTIONS(1778), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1776), 11, + ACTIONS(7333), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375216,23 +384653,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173004] = 8, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176939] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4417), 1, + ACTIONS(7509), 1, + anon_sym_and, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4528), 1, sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - STATE(5083), 1, - sym_cell_path, - ACTIONS(1782), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1780), 11, + ACTIONS(7507), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375244,23 +384679,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173040] = 8, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [176968] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7511), 1, anon_sym_DOT, - STATE(4418), 1, - sym_comment, - STATE(4561), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, + STATE(4936), 1, sym_path, - STATE(5091), 1, - sym_cell_path, - ACTIONS(1810), 2, + ACTIONS(957), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1808), 11, + STATE(4529), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(955), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375272,12 +384707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173076] = 3, - ACTIONS(3), 1, + [176999] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4419), 1, + ACTIONS(7514), 1, + anon_sym_and, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4530), 1, sym_comment, - ACTIONS(7589), 16, + ACTIONS(7507), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375290,18 +384729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [173101] = 4, - ACTIONS(3), 1, + [177028] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4420), 1, - sym_comment, - STATE(4486), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7757), 15, + STATE(4531), 1, + sym_comment, + ACTIONS(7516), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375317,14 +384754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173128] = 4, - ACTIONS(3), 1, + [177055] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4421), 1, - sym_comment, - STATE(4487), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7757), 15, + STATE(4532), 1, + sym_comment, + ACTIONS(7518), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375340,19 +384777,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173155] = 6, - ACTIONS(3), 1, + [177082] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, + ACTIONS(7520), 1, + sym__newline, + ACTIONS(7523), 1, anon_sym_and, - ACTIONS(7763), 1, - anon_sym_xor, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4422), 1, + STATE(4533), 1, sym_comment, - ACTIONS(7759), 13, - sym__newline, + STATE(4543), 1, + aux_sym_shebang_repeat1, + ACTIONS(7499), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375364,18 +384800,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [173186] = 5, - ACTIONS(3), 1, + [177113] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, + ACTIONS(7520), 1, + sym__newline, + ACTIONS(7525), 1, anon_sym_and, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4423), 1, + STATE(4534), 1, sym_comment, - ACTIONS(7765), 14, - sym__newline, + STATE(4572), 1, + aux_sym_shebang_repeat1, + ACTIONS(7499), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375389,16 +384827,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [173215] = 5, - ACTIONS(3), 1, + [177144] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_and, - STATE(725), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4424), 1, + STATE(4535), 1, sym_comment, - ACTIONS(7765), 14, + ACTIONS(7518), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375411,20 +384847,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [173244] = 6, - ACTIONS(3), 1, + [177171] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7769), 1, + ACTIONS(7520), 1, sym__newline, - ACTIONS(7772), 1, + ACTIONS(7523), 1, anon_sym_and, - STATE(4425), 1, + STATE(4536), 1, sym_comment, - STATE(4490), 1, + STATE(4573), 1, aux_sym_shebang_repeat1, - ACTIONS(7757), 13, + ACTIONS(7499), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375438,41 +384875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [173275] = 8, - ACTIONS(3), 1, + [177202] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(7774), 1, - anon_sym_DOT_DOT2, - STATE(4426), 1, + STATE(4537), 1, sym_comment, - ACTIONS(1570), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(7776), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1580), 8, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173310] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(725), 1, + STATE(4588), 1, aux_sym_shebang_repeat1, - STATE(4427), 1, - sym_comment, - ACTIONS(7778), 15, + ACTIONS(7527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375488,14 +384898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173337] = 4, - ACTIONS(3), 1, + [177229] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4428), 1, + STATE(4538), 1, sym_comment, - ACTIONS(7778), 15, + STATE(4589), 1, + aux_sym_shebang_repeat1, + ACTIONS(7527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375511,72 +384921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173364] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4798), 1, - anon_sym_DOT, - STATE(1585), 1, - aux_sym_cell_path_repeat1, - STATE(1694), 1, - sym_path, - STATE(4429), 1, - sym_comment, - STATE(5291), 1, - sym_cell_path, - ACTIONS(7780), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7782), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [173399] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7772), 1, - anon_sym_and, - ACTIONS(7786), 1, - anon_sym_xor, - ACTIONS(7788), 1, - anon_sym_or, - STATE(4430), 1, - sym_comment, - STATE(4452), 1, - aux_sym_shebang_repeat1, - ACTIONS(7784), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [173434] = 6, - ACTIONS(121), 1, + [177256] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1520), 1, - sym__space, - ACTIONS(7376), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7790), 1, - anon_sym_DOT, - STATE(4431), 1, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4539), 1, sym_comment, - ACTIONS(1518), 13, + ACTIONS(7516), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375589,16 +384941,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [173465] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177283] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4432), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7525), 1, + anon_sym_and, + ACTIONS(7529), 1, + anon_sym_xor, + STATE(4540), 1, sym_comment, - STATE(4454), 1, + STATE(4561), 1, aux_sym_shebang_repeat1, - ACTIONS(7792), 15, - sym__newline, + ACTIONS(7527), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375610,17 +384969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [173492] = 4, - ACTIONS(3), 1, + [177316] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4433), 1, - sym_comment, - STATE(4460), 1, + ACTIONS(7509), 1, + anon_sym_and, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7792), 15, + STATE(4541), 1, + sym_comment, + ACTIONS(7516), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375633,23 +384992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [173519] = 6, - ACTIONS(121), 1, + [177345] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7794), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7796), 1, - aux_sym_unquoted_token2, - STATE(4434), 1, + ACTIONS(7509), 1, + anon_sym_and, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4542), 1, sym_comment, - ACTIONS(2925), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2927), 11, + ACTIONS(7518), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375661,18 +385015,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173550] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [177374] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7769), 1, - sym__newline, - ACTIONS(7798), 1, + ACTIONS(7514), 1, anon_sym_and, - STATE(4435), 1, - sym_comment, - STATE(4492), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7757), 13, + STATE(4543), 1, + sym_comment, + ACTIONS(7516), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375686,16 +385042,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [173581] = 5, - ACTIONS(3), 1, + [177403] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, + ACTIONS(7509), 1, anon_sym_and, - STATE(725), 1, + ACTIONS(7531), 1, + anon_sym_xor, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4436), 1, + STATE(4544), 1, sym_comment, - ACTIONS(7778), 14, + ACTIONS(7507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375708,19 +385066,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [173610] = 4, - ACTIONS(121), 1, + [177434] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4437), 1, + ACTIONS(7514), 1, + anon_sym_and, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4545), 1, sym_comment, - ACTIONS(1537), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1535), 12, + ACTIONS(7518), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375732,17 +385088,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [173637] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [177463] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, + ACTIONS(7509), 1, anon_sym_and, - STATE(725), 1, + ACTIONS(7531), 1, + anon_sym_xor, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4438), 1, + STATE(4546), 1, sym_comment, - ACTIONS(7778), 14, + ACTIONS(7507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375755,20 +385115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [173666] = 6, - ACTIONS(3), 1, + [177494] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7772), 1, + ACTIONS(7525), 1, anon_sym_and, - ACTIONS(7800), 1, + ACTIONS(7533), 1, sym__newline, - STATE(4439), 1, + STATE(4547), 1, sym_comment, - STATE(4465), 1, + STATE(4596), 1, aux_sym_shebang_repeat1, - ACTIONS(7792), 13, + ACTIONS(7527), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375782,18 +385141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [173697] = 6, - ACTIONS(3), 1, + [177525] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, + ACTIONS(7509), 1, anon_sym_and, - ACTIONS(7803), 1, + ACTIONS(7531), 1, anon_sym_xor, - STATE(725), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4440), 1, + STATE(4548), 1, sym_comment, - ACTIONS(7765), 13, + ACTIONS(7516), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375807,20 +385166,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [173728] = 6, - ACTIONS(121), 1, + [177556] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7805), 1, - anon_sym_DOT_DOT2, - STATE(4441), 1, + STATE(4549), 1, sym_comment, - ACTIONS(7689), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7807), 2, + ACTIONS(966), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(968), 13, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7687), 11, + [177583] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7514), 1, + anon_sym_and, + ACTIONS(7536), 1, + anon_sym_xor, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4550), 1, + sym_comment, + ACTIONS(7507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375832,16 +385212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173759] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_or, + [177614] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4442), 1, - sym_comment, - ACTIONS(2075), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2073), 14, + ACTIONS(7523), 1, + anon_sym_and, + ACTIONS(7533), 1, sym__newline, + STATE(4551), 1, + sym_comment, + STATE(4610), 1, + aux_sym_shebang_repeat1, + ACTIONS(7527), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375853,20 +385237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token7, - [173786] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_and, - ACTIONS(7763), 1, anon_sym_xor, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4443), 1, + anon_sym_or, + [177645] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4552), 1, sym_comment, - ACTIONS(7765), 13, + STATE(4606), 1, + aux_sym_shebang_repeat1, + ACTIONS(7538), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375879,23 +385259,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [173817] = 8, - ACTIONS(3), 1, + [177672] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7798), 1, + ACTIONS(7514), 1, anon_sym_and, - ACTIONS(7809), 1, + ACTIONS(7536), 1, anon_sym_xor, - ACTIONS(7811), 1, - anon_sym_or, - STATE(4444), 1, - sym_comment, - STATE(4587), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7784), 11, + STATE(4553), 1, + sym_comment, + ACTIONS(7516), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375907,20 +385286,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173852] = 7, - ACTIONS(3), 1, + anon_sym_or, + [177703] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, + STATE(4554), 1, + sym_comment, + ACTIONS(976), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(978), 13, + sym_identifier, sym__newline, - ACTIONS(7772), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [177730] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7509), 1, anon_sym_and, - ACTIONS(7786), 1, + ACTIONS(7531), 1, anon_sym_xor, - STATE(4445), 1, - sym_comment, - STATE(4497), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7757), 12, + STATE(4555), 1, + sym_comment, + ACTIONS(7518), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375933,20 +385335,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [173885] = 7, - ACTIONS(3), 1, + [177761] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, + STATE(4556), 1, + sym_comment, + ACTIONS(962), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(964), 13, + sym_identifier, sym__newline, - ACTIONS(7798), 1, - anon_sym_and, - ACTIONS(7809), 1, - anon_sym_xor, - STATE(4446), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [177788] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(7542), 1, + sym__space, + STATE(4557), 1, sym_comment, - STATE(4498), 1, - aux_sym_shebang_repeat1, - ACTIONS(7757), 12, + STATE(7700), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7540), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375958,15 +385382,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [173918] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [177819] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4447), 1, - sym_comment, - STATE(4502), 1, + ACTIONS(7514), 1, + anon_sym_and, + ACTIONS(7536), 1, + anon_sym_xor, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7813), 15, + STATE(4558), 1, + sym_comment, + ACTIONS(7507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375979,21 +385407,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [173945] = 6, - ACTIONS(3), 1, + [177850] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7798), 1, - anon_sym_and, - ACTIONS(7800), 1, + STATE(4559), 1, + sym_comment, + ACTIONS(1589), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 13, + sym_identifier, sym__newline, - STATE(4448), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [177877] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4362), 1, + sym_cell_path, + STATE(4560), 1, sym_comment, - STATE(4466), 1, + ACTIONS(945), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(947), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [177912] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7509), 1, + anon_sym_and, + ACTIONS(7531), 1, + anon_sym_xor, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7792), 13, + STATE(4561), 1, + sym_comment, + ACTIONS(7544), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376005,22 +385482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [173976] = 6, - ACTIONS(121), 1, + [177943] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7805), 1, - anon_sym_DOT_DOT2, - STATE(4449), 1, - sym_comment, - ACTIONS(950), 2, - ts_builtin_sym_end, + ACTIONS(4944), 1, sym__space, - ACTIONS(7807), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(948), 11, + ACTIONS(7546), 1, + anon_sym_EQ2, + ACTIONS(7548), 1, + sym_short_flag_identifier, + STATE(4562), 1, + sym_comment, + ACTIONS(4942), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376032,14 +385506,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174007] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177974] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4450), 1, - sym_comment, - STATE(4508), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7813), 15, + STATE(4563), 1, + sym_comment, + ACTIONS(7516), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376055,17 +385531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174034] = 4, - ACTIONS(121), 1, + [178001] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4451), 1, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4564), 1, sym_comment, - ACTIONS(1915), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1913), 12, + ACTIONS(7516), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376077,21 +385550,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [174061] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7767), 1, + anon_sym_RPAREN, anon_sym_and, - ACTIONS(7803), 1, anon_sym_xor, - ACTIONS(7817), 1, anon_sym_or, - STATE(725), 1, + [178028] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7514), 1, + anon_sym_and, + ACTIONS(7536), 1, + anon_sym_xor, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4452), 1, + STATE(4565), 1, sym_comment, - ACTIONS(7815), 12, + ACTIONS(7518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376104,15 +385578,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174094] = 4, - ACTIONS(3), 1, + anon_sym_or, + [178059] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4453), 1, + ACTIONS(7407), 1, + aux_sym__immediate_decimal_token2, + STATE(4566), 1, + sym_comment, + ACTIONS(1589), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 11, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178088] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4567), 1, sym_comment, - ACTIONS(7765), 15, + ACTIONS(1569), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 13, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178115] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, sym__newline, + ACTIONS(7525), 1, + anon_sym_and, + ACTIONS(7529), 1, + anon_sym_xor, + STATE(4568), 1, + sym_comment, + STATE(4622), 1, + aux_sym_shebang_repeat1, + ACTIONS(7527), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376124,18 +385651,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [174121] = 4, - ACTIONS(3), 1, + [178148] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4454), 1, - sym_comment, - ACTIONS(7819), 15, + ACTIONS(5245), 1, sym__newline, + ACTIONS(7523), 1, + anon_sym_and, + ACTIONS(7550), 1, + anon_sym_xor, + STATE(4569), 1, + sym_comment, + STATE(4649), 1, + aux_sym_shebang_repeat1, + ACTIONS(7527), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376147,21 +385677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [174148] = 6, - ACTIONS(3), 1, + [178181] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7772), 1, + ACTIONS(7514), 1, anon_sym_and, - ACTIONS(7821), 1, - sym__newline, - STATE(4455), 1, - sym_comment, - STATE(4569), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7813), 13, + STATE(4570), 1, + sym_comment, + ACTIONS(7507), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376175,14 +385702,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174179] = 4, - ACTIONS(3), 1, + [178210] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4571), 1, + sym_comment, + ACTIONS(1648), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 13, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178237] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, + ACTIONS(7509), 1, + anon_sym_and, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4456), 1, + STATE(4572), 1, sym_comment, - ACTIONS(7765), 15, + ACTIONS(7516), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376195,21 +385747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [174206] = 6, - ACTIONS(3), 1, + [178266] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7798), 1, + ACTIONS(7514), 1, anon_sym_and, - ACTIONS(7821), 1, - sym__newline, - STATE(4457), 1, - sym_comment, - STATE(4571), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7813), 13, + STATE(4573), 1, + sym_comment, + ACTIONS(7516), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376223,20 +385773,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174237] = 7, - ACTIONS(3), 1, + [178295] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, + STATE(4574), 1, + sym_comment, + ACTIONS(1721), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 13, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178322] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_DASH, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7552), 1, + anon_sym_DOT_DOT2, + STATE(4575), 1, + sym_comment, + ACTIONS(7554), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1717), 10, + sym_identifier, sym__newline, - ACTIONS(7772), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [178357] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7509), 1, anon_sym_and, - ACTIONS(7786), 1, + ACTIONS(7531), 1, anon_sym_xor, - STATE(4458), 1, - sym_comment, - STATE(4578), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7813), 12, + STATE(4576), 1, + sym_comment, + ACTIONS(7516), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376249,20 +385848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174270] = 7, - ACTIONS(3), 1, + [178388] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7798), 1, - anon_sym_and, - ACTIONS(7809), 1, - anon_sym_xor, - STATE(4459), 1, + STATE(4577), 1, sym_comment, - STATE(4582), 1, - aux_sym_shebang_repeat1, - ACTIONS(7813), 12, + ACTIONS(7501), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376274,15 +385866,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [174303] = 4, + [178413] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4460), 1, + ACTIONS(7556), 1, + anon_sym_DOT_DOT2, + STATE(4578), 1, sym_comment, - ACTIONS(7819), 15, + ACTIONS(1941), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7558), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1935), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376294,21 +385895,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + [178444] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7514), 1, anon_sym_and, + ACTIONS(7536), 1, anon_sym_xor, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4579), 1, + sym_comment, + ACTIONS(7516), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_or, - [174330] = 4, - ACTIONS(121), 1, + [178475] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4461), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, sym_comment, - ACTIONS(1610), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + STATE(5331), 1, + sym_cell_path, + ACTIONS(7560), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7562), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [178510] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5704), 1, anon_sym_DOT, - ACTIONS(1608), 12, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(4581), 1, + sym_comment, + STATE(5340), 1, + sym_cell_path, + ACTIONS(7564), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7566), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [178545] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7091), 1, + aux_sym_unquoted_token2, + STATE(4582), 1, + sym_comment, + ACTIONS(1537), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376320,22 +385994,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [174357] = 7, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178572] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(1925), 1, - anon_sym_LPAREN2, - ACTIONS(7502), 1, - anon_sym_DOT, - STATE(4462), 1, + STATE(4583), 1, sym_comment, - ACTIONS(1927), 2, + ACTIONS(1945), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1923), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1943), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376347,19 +386019,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174390] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [178599] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7525), 1, anon_sym_and, - ACTIONS(7763), 1, + ACTIONS(7529), 1, anon_sym_xor, - STATE(725), 1, + STATE(4548), 1, aux_sym_shebang_repeat1, - STATE(4463), 1, + STATE(4584), 1, sym_comment, - ACTIONS(7765), 13, - sym__newline, + ACTIONS(7499), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376372,14 +386046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174421] = 4, - ACTIONS(3), 1, + [178632] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4464), 1, + STATE(4585), 1, sym_comment, - STATE(4590), 1, + STATE(4658), 1, aux_sym_shebang_repeat1, - ACTIONS(7824), 15, + ACTIONS(7538), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376395,17 +386069,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174448] = 5, - ACTIONS(3), 1, + [178659] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7523), 1, anon_sym_and, - STATE(725), 1, + ACTIONS(7550), 1, + anon_sym_xor, + STATE(4553), 1, aux_sym_shebang_repeat1, - STATE(4465), 1, + STATE(4586), 1, sym_comment, - ACTIONS(7819), 14, - sym__newline, + ACTIONS(7499), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376417,18 +386094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [174477] = 5, - ACTIONS(3), 1, + [178692] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_and, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4466), 1, + STATE(4587), 1, sym_comment, - ACTIONS(7819), 14, + STATE(4668), 1, + aux_sym_shebang_repeat1, + ACTIONS(7538), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376441,20 +386115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [174506] = 6, - ACTIONS(3), 1, + [178719] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_and, - ACTIONS(7803), 1, - anon_sym_xor, - STATE(725), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4467), 1, + STATE(4588), 1, sym_comment, - ACTIONS(7819), 13, + ACTIONS(7544), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376467,19 +386138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [174537] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7761), 1, anon_sym_and, - ACTIONS(7763), 1, anon_sym_xor, - STATE(725), 1, + anon_sym_or, + [178746] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4468), 1, + STATE(4589), 1, sym_comment, - ACTIONS(7819), 13, + ACTIONS(7544), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376492,16 +386161,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [174568] = 4, - ACTIONS(3), 1, + [178773] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, + ACTIONS(7525), 1, + anon_sym_and, + ACTIONS(7568), 1, + sym__newline, + STATE(4528), 1, aux_sym_shebang_repeat1, - STATE(4469), 1, + STATE(4590), 1, sym_comment, - ACTIONS(7819), 15, - sym__newline, + ACTIONS(7538), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376513,21 +386187,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [174595] = 5, - ACTIONS(121), 1, + [178804] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3241), 1, - anon_sym_LPAREN2, - ACTIONS(7826), 1, - aux_sym_unquoted_token3, - STATE(4470), 1, + STATE(4591), 1, sym_comment, - ACTIONS(3239), 14, + STATE(4705), 1, + aux_sym_shebang_repeat1, + ACTIONS(7538), 15, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376539,15 +386209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [174624] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178831] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4471), 1, + STATE(4592), 1, sym_comment, - STATE(4594), 1, - aux_sym_shebang_repeat1, - ACTIONS(7824), 15, + ACTIONS(7501), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376560,21 +386230,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [174651] = 6, - ACTIONS(121), 1, + [178856] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4890), 1, - sym__space, - ACTIONS(7828), 1, - anon_sym_EQ2, - ACTIONS(7830), 1, - sym_short_flag_identifier, - STATE(4472), 1, + STATE(4593), 1, sym_comment, - ACTIONS(4888), 13, + ACTIONS(1955), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1953), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376586,16 +386256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [174682] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [178883] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4473), 1, + ACTIONS(7571), 1, + anon_sym_and, + STATE(4594), 1, sym_comment, - ACTIONS(7819), 15, + ACTIONS(7501), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376608,19 +386277,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, + anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - [174709] = 5, - ACTIONS(3), 1, + [178910] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, + ACTIONS(7573), 1, + aux_sym__immediate_decimal_token2, + STATE(4595), 1, + sym_comment, + ACTIONS(1648), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 11, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178939] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7509), 1, anon_sym_and, - STATE(725), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4474), 1, + STATE(4596), 1, sym_comment, - ACTIONS(7819), 14, + ACTIONS(7544), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376635,16 +386328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174738] = 5, - ACTIONS(3), 1, + [178968] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_and, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4475), 1, + STATE(4597), 1, sym_comment, - ACTIONS(7819), 14, + STATE(4629), 1, + aux_sym_shebang_repeat1, + ACTIONS(7575), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376657,20 +386348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [174767] = 6, - ACTIONS(3), 1, + [178995] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_and, - ACTIONS(7803), 1, - anon_sym_xor, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4476), 1, + STATE(4598), 1, sym_comment, - ACTIONS(7819), 13, + STATE(4644), 1, + aux_sym_shebang_repeat1, + ACTIONS(7575), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376683,19 +386371,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [174798] = 6, + [179022] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_and, - ACTIONS(7763), 1, - anon_sym_xor, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4477), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2101), 1, + sym__space, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(4599), 1, sym_comment, - ACTIONS(7819), 13, + ACTIONS(2097), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376708,21 +386398,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [174829] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + [179053] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5245), 1, sym__newline, - ACTIONS(7772), 1, + ACTIONS(7525), 1, anon_sym_and, - ACTIONS(7786), 1, + ACTIONS(7529), 1, anon_sym_xor, - STATE(4478), 1, + ACTIONS(7579), 1, + anon_sym_or, + STATE(4600), 1, sym_comment, - STATE(4572), 1, + STATE(4607), 1, aux_sym_shebang_repeat1, - ACTIONS(7824), 12, + ACTIONS(7577), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376734,19 +386426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [174862] = 6, - ACTIONS(3), 1, + [179088] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_and, - ACTIONS(7803), 1, - anon_sym_xor, - STATE(725), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4479), 1, + STATE(4601), 1, sym_comment, - ACTIONS(7778), 13, + ACTIONS(7544), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376759,20 +386446,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [174893] = 6, - ACTIONS(3), 1, + [179115] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, + ACTIONS(7525), 1, anon_sym_and, - ACTIONS(7763), 1, - anon_sym_xor, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4480), 1, - sym_comment, - ACTIONS(7778), 13, + ACTIONS(7568), 1, sym__newline, + STATE(4602), 1, + sym_comment, + STATE(4684), 1, + aux_sym_shebang_repeat1, + ACTIONS(7538), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376784,21 +386472,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [174924] = 7, - ACTIONS(3), 1, + [179146] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, + STATE(4603), 1, + sym_comment, + ACTIONS(7293), 16, sym__newline, - ACTIONS(7772), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7786), 1, anon_sym_xor, - STATE(4467), 1, + anon_sym_or, + [179171] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(4604), 1, sym_comment, - ACTIONS(7792), 12, + ACTIONS(7544), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376810,21 +386516,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [174957] = 7, - ACTIONS(3), 1, + [179198] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5245), 1, sym__newline, - ACTIONS(7772), 1, + ACTIONS(7523), 1, anon_sym_and, - ACTIONS(7786), 1, + ACTIONS(7550), 1, anon_sym_xor, - STATE(4482), 1, + ACTIONS(7581), 1, + anon_sym_or, + STATE(4605), 1, sym_comment, - STATE(4601), 1, + STATE(4627), 1, aux_sym_shebang_repeat1, - ACTIONS(7757), 12, + ACTIONS(7577), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376836,21 +386546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [174990] = 7, - ACTIONS(3), 1, + [179233] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7798), 1, - anon_sym_and, - ACTIONS(7809), 1, - anon_sym_xor, - STATE(4468), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4483), 1, + STATE(4606), 1, sym_comment, - ACTIONS(7792), 12, + ACTIONS(7507), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376862,21 +386566,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [175023] = 7, - ACTIONS(3), 1, + [179260] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7798), 1, + ACTIONS(7509), 1, anon_sym_and, - ACTIONS(7809), 1, + ACTIONS(7531), 1, anon_sym_xor, - STATE(4422), 1, + ACTIONS(7585), 1, + anon_sym_or, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4484), 1, + STATE(4607), 1, sym_comment, - ACTIONS(7757), 12, + ACTIONS(7583), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376888,16 +386595,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [175056] = 4, - ACTIONS(3), 1, + [179293] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4485), 1, + ACTIONS(7525), 1, + anon_sym_and, + ACTIONS(7587), 1, + sym__newline, + STATE(4608), 1, sym_comment, - STATE(4576), 1, + STATE(4676), 1, aux_sym_shebang_repeat1, - ACTIONS(7757), 15, - sym__newline, + ACTIONS(7575), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376909,18 +386618,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175083] = 4, - ACTIONS(3), 1, + [179324] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4486), 1, - sym_comment, - ACTIONS(7759), 15, + ACTIONS(7523), 1, + anon_sym_and, + ACTIONS(7587), 1, sym__newline, + STATE(4609), 1, + sym_comment, + STATE(4672), 1, + aux_sym_shebang_repeat1, + ACTIONS(7575), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376932,17 +386643,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175110] = 4, - ACTIONS(3), 1, + [179355] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, + ACTIONS(7514), 1, + anon_sym_and, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4487), 1, + STATE(4610), 1, sym_comment, - ACTIONS(7759), 15, + ACTIONS(7544), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376955,21 +386667,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175137] = 6, - ACTIONS(121), 1, + [179384] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2925), 1, - sym__space, - ACTIONS(7647), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7832), 1, - aux_sym_unquoted_token2, - STATE(4488), 1, + STATE(4611), 1, sym_comment, - ACTIONS(2927), 13, + ACTIONS(7333), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376983,19 +386688,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175168] = 6, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179409] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3225), 1, - sym__space, - STATE(4489), 1, - sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3227), 13, + ACTIONS(7523), 1, + anon_sym_and, + ACTIONS(7568), 1, sym__newline, + STATE(4570), 1, + aux_sym_shebang_repeat1, + STATE(4612), 1, + sym_comment, + ACTIONS(7538), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377007,18 +386714,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [175199] = 5, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [179440] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7525), 1, anon_sym_and, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4490), 1, + ACTIONS(7529), 1, + anon_sym_xor, + STATE(4613), 1, sym_comment, - ACTIONS(7759), 14, - sym__newline, + STATE(4709), 1, + aux_sym_shebang_repeat1, + ACTIONS(7575), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377030,20 +386741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [175228] = 6, - ACTIONS(121), 1, + [179473] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1692), 1, anon_sym_LPAREN2, - ACTIONS(3235), 1, + ACTIONS(1698), 1, sym__space, - STATE(4491), 1, + STATE(4614), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3237), 13, + ACTIONS(1690), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377057,17 +386767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175259] = 5, - ACTIONS(3), 1, + [179504] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7523), 1, anon_sym_and, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4492), 1, + ACTIONS(7550), 1, + anon_sym_xor, + STATE(4615), 1, sym_comment, - ACTIONS(7759), 14, - sym__newline, + STATE(4706), 1, + aux_sym_shebang_repeat1, + ACTIONS(7575), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377079,22 +386792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [175288] = 7, - ACTIONS(3), 1, + [179537] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7798), 1, + ACTIONS(7503), 1, anon_sym_and, - ACTIONS(7809), 1, - anon_sym_xor, - STATE(4477), 1, - aux_sym_shebang_repeat1, - STATE(4493), 1, + STATE(4616), 1, sym_comment, - ACTIONS(7792), 12, + ACTIONS(7501), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377106,14 +386813,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor, anon_sym_or, - [175321] = 3, - ACTIONS(3), 1, + [179564] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4494), 1, - sym_comment, - ACTIONS(7510), 16, + ACTIONS(7523), 1, + anon_sym_and, + ACTIONS(7568), 1, sym__newline, + STATE(4530), 1, + aux_sym_shebang_repeat1, + STATE(4617), 1, + sym_comment, + ACTIONS(7538), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377125,22 +386839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175346] = 6, - ACTIONS(3), 1, + [179595] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7772), 1, - anon_sym_and, - ACTIONS(7834), 1, - sym__newline, - STATE(4495), 1, - sym_comment, - STATE(4529), 1, + STATE(4539), 1, aux_sym_shebang_repeat1, - ACTIONS(7824), 13, + STATE(4618), 1, + sym_comment, + ACTIONS(7499), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377152,48 +386861,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [175377] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4798), 1, - anon_sym_DOT, - STATE(1434), 1, - sym_cell_path, - STATE(1585), 1, - aux_sym_cell_path_repeat1, - STATE(1694), 1, - sym_path, - STATE(4496), 1, - sym_comment, - ACTIONS(883), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(885), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [175412] = 6, - ACTIONS(3), 1, + [179622] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7525), 1, anon_sym_and, - ACTIONS(7803), 1, + ACTIONS(7529), 1, anon_sym_xor, - STATE(725), 1, + STATE(4544), 1, aux_sym_shebang_repeat1, - STATE(4497), 1, + STATE(4619), 1, sym_comment, - ACTIONS(7759), 13, - sym__newline, + ACTIONS(7538), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377206,19 +386890,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [175443] = 6, - ACTIONS(3), 1, + [179655] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7523), 1, anon_sym_and, - ACTIONS(7763), 1, + ACTIONS(7550), 1, anon_sym_xor, - STATE(725), 1, + STATE(4550), 1, aux_sym_shebang_repeat1, - STATE(4498), 1, + STATE(4620), 1, sym_comment, - ACTIONS(7759), 13, - sym__newline, + ACTIONS(7538), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377231,43 +386916,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [175474] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7837), 1, - anon_sym_DOT, - ACTIONS(7839), 1, - aux_sym__immediate_decimal_token2, - STATE(4499), 1, - sym_comment, - ACTIONS(1518), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1520), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [175505] = 6, - ACTIONS(121), 1, + [179688] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2081), 1, - sym__space, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(4500), 1, + ACTIONS(7514), 1, + anon_sym_and, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4621), 1, sym_comment, - ACTIONS(2077), 13, + ACTIONS(7544), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377280,13 +386938,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [175536] = 3, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [179717] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4501), 1, + ACTIONS(7509), 1, + anon_sym_and, + ACTIONS(7531), 1, + anon_sym_xor, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4622), 1, sym_comment, - ACTIONS(7510), 16, + ACTIONS(7544), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377299,18 +386964,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [175561] = 4, + [179748] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4502), 1, + ACTIONS(1591), 1, + sym__space, + ACTIONS(7163), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7590), 1, + anon_sym_DOT, + STATE(4623), 1, sym_comment, - ACTIONS(7778), 15, + ACTIONS(1589), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377323,21 +386989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + [179779] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7571), 1, anon_sym_and, + ACTIONS(7594), 1, anon_sym_xor, + ACTIONS(7596), 1, anon_sym_or, - [175588] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(950), 1, - sym__space, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(4503), 1, + STATE(4624), 1, sym_comment, - ACTIONS(948), 13, + ACTIONS(7592), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377351,17 +387015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175619] = 4, - ACTIONS(121), 1, + [179810] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4504), 1, + STATE(4625), 1, sym_comment, - ACTIONS(938), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(936), 12, + ACTIONS(7293), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377373,16 +387032,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [175646] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179835] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4505), 1, + STATE(4535), 1, + aux_sym_shebang_repeat1, + STATE(4626), 1, sym_comment, - ACTIONS(918), 2, - sym__space, - anon_sym_DOT, - ACTIONS(916), 14, + ACTIONS(7575), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377395,20 +387057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [175673] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179862] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7798), 1, + ACTIONS(7514), 1, anon_sym_and, - ACTIONS(7834), 1, - sym__newline, - STATE(4506), 1, - sym_comment, - STATE(4537), 1, + ACTIONS(7536), 1, + anon_sym_xor, + ACTIONS(7598), 1, + anon_sym_or, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7824), 13, + STATE(4627), 1, + sym_comment, + ACTIONS(7583), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377420,14 +387086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [175704] = 3, - ACTIONS(3), 1, + [179895] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4507), 1, + ACTIONS(7571), 1, + anon_sym_and, + ACTIONS(7594), 1, + anon_sym_xor, + STATE(4628), 1, sym_comment, - ACTIONS(7589), 16, + ACTIONS(7501), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377441,17 +387109,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [175729] = 4, - ACTIONS(3), 1, + [179924] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4508), 1, + STATE(4629), 1, sym_comment, - ACTIONS(7778), 15, + ACTIONS(7518), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377467,13 +387133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175756] = 3, - ACTIONS(3), 1, + [179951] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4509), 1, - sym_comment, - ACTIONS(7510), 16, + ACTIONS(7525), 1, + anon_sym_and, + ACTIONS(7587), 1, sym__newline, + STATE(4542), 1, + aux_sym_shebang_repeat1, + STATE(4630), 1, + sym_comment, + ACTIONS(7575), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377485,19 +387156,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175781] = 4, - ACTIONS(3), 1, + [179982] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4427), 1, + ACTIONS(7523), 1, + anon_sym_and, + ACTIONS(7587), 1, + sym__newline, + STATE(4545), 1, aux_sym_shebang_repeat1, - STATE(4510), 1, + STATE(4631), 1, sym_comment, - ACTIONS(7813), 15, - sym__newline, + ACTIONS(7575), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377509,18 +387181,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175808] = 4, - ACTIONS(3), 1, + [180013] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4428), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7525), 1, + anon_sym_and, + ACTIONS(7529), 1, + anon_sym_xor, + STATE(4555), 1, aux_sym_shebang_repeat1, - STATE(4511), 1, + STATE(4632), 1, sym_comment, - ACTIONS(7813), 15, - sym__newline, + ACTIONS(7575), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377532,21 +387208,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [175835] = 6, - ACTIONS(3), 1, + [180046] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7772), 1, - anon_sym_and, - ACTIONS(7834), 1, + ACTIONS(5245), 1, sym__newline, - STATE(4423), 1, + ACTIONS(7523), 1, + anon_sym_and, + ACTIONS(7550), 1, + anon_sym_xor, + STATE(4565), 1, aux_sym_shebang_repeat1, - STATE(4512), 1, + STATE(4633), 1, sym_comment, - ACTIONS(7824), 13, + ACTIONS(7575), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377558,16 +387234,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [175866] = 4, - ACTIONS(3), 1, + [180079] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4513), 1, - sym_comment, - STATE(4596), 1, + ACTIONS(7509), 1, + anon_sym_and, + ACTIONS(7531), 1, + anon_sym_xor, + ACTIONS(7585), 1, + anon_sym_or, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7757), 15, + STATE(4634), 1, + sym_comment, + ACTIONS(7600), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377580,15 +387261,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + [180112] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7514), 1, anon_sym_and, + ACTIONS(7536), 1, anon_sym_xor, + ACTIONS(7598), 1, anon_sym_or, - [175893] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4514), 1, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4635), 1, sym_comment, - ACTIONS(7589), 16, + ACTIONS(7600), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377601,23 +387287,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + [180145] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7523), 1, anon_sym_and, + ACTIONS(7550), 1, anon_sym_xor, - anon_sym_or, - [175918] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(7843), 1, - sym__space, - STATE(4515), 1, + STATE(4636), 1, sym_comment, - STATE(7490), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7841), 13, - sym__newline, + STATE(4665), 1, + aux_sym_shebang_repeat1, + ACTIONS(7527), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377629,13 +387312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [175949] = 3, + anon_sym_or, + [180178] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4516), 1, + STATE(4637), 1, sym_comment, - ACTIONS(7845), 16, + ACTIONS(2133), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2131), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377649,15 +387335,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175974] = 3, + aux_sym_unquoted_token4, + [180205] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4517), 1, + STATE(4638), 1, sym_comment, - ACTIONS(7845), 16, + ACTIONS(1984), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1982), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377669,23 +387358,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175999] = 6, + anon_sym_DOT_DOT2, + [180232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7772), 1, - anon_sym_and, - ACTIONS(7821), 1, - sym__newline, - STATE(4436), 1, - aux_sym_shebang_repeat1, - STATE(4518), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + ACTIONS(2087), 1, + sym__space, + STATE(4639), 1, sym_comment, - ACTIONS(7813), 13, + ACTIONS(2085), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377697,41 +387383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [176030] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7847), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7849), 1, - aux_sym__immediate_decimal_token2, - STATE(4519), 1, - sym_comment, - ACTIONS(1470), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 10, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [176061] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [180263] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7851), 1, + ACTIONS(7503), 1, anon_sym_and, - STATE(4520), 1, + ACTIONS(7505), 1, + anon_sym_xor, + ACTIONS(7602), 1, + anon_sym_or, + STATE(4640), 1, sym_comment, - ACTIONS(7845), 15, + ACTIONS(7592), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377745,16 +387409,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [176088] = 4, + [180294] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7853), 1, - anon_sym_and, - STATE(4521), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1717), 1, + sym__space, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + STATE(4641), 1, sym_comment, - ACTIONS(7845), 15, + ACTIONS(1709), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377768,18 +387434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [176115] = 5, - ACTIONS(3), 1, + [180325] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7851), 1, - anon_sym_and, - ACTIONS(7855), 1, - anon_sym_xor, - STATE(4522), 1, + STATE(4642), 1, sym_comment, - ACTIONS(7845), 14, + ACTIONS(6929), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377793,19 +387453,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [176144] = 6, - ACTIONS(3), 1, + [180350] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7798), 1, - anon_sym_and, - ACTIONS(7821), 1, + ACTIONS(5245), 1, sym__newline, - STATE(4438), 1, + ACTIONS(7525), 1, + anon_sym_and, + ACTIONS(7529), 1, + anon_sym_xor, + ACTIONS(7579), 1, + anon_sym_or, + STATE(4634), 1, aux_sym_shebang_repeat1, - STATE(4523), 1, + STATE(4643), 1, sym_comment, - ACTIONS(7813), 13, + ACTIONS(7604), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377817,19 +387483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [176175] = 4, - ACTIONS(121), 1, + [180385] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4524), 1, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4644), 1, sym_comment, - ACTIONS(1472), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT, - ACTIONS(1470), 12, + ACTIONS(7518), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377841,17 +387502,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [176202] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180412] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7853), 1, + ACTIONS(7503), 1, anon_sym_and, - ACTIONS(7857), 1, + ACTIONS(7505), 1, anon_sym_xor, - STATE(4525), 1, + STATE(4645), 1, sym_comment, - ACTIONS(7845), 14, + ACTIONS(7501), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377866,21 +387530,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_or, - [176231] = 6, - ACTIONS(121), 1, + [180441] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7859), 1, - anon_sym_DOT_DOT2, - STATE(4526), 1, - sym_comment, - ACTIONS(1953), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7861), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1947), 11, + ACTIONS(5245), 1, sym__newline, + ACTIONS(7523), 1, + anon_sym_and, + ACTIONS(7550), 1, + anon_sym_xor, + ACTIONS(7581), 1, + anon_sym_or, + STATE(4635), 1, + aux_sym_shebang_repeat1, + STATE(4646), 1, + sym_comment, + ACTIONS(7604), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377891,43 +387556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176262] = 6, + anon_sym_RPAREN, + [180476] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7863), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7865), 1, - aux_sym__immediate_decimal_token2, - STATE(4527), 1, + STATE(4647), 1, sym_comment, - ACTIONS(1368), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1370), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [176293] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3231), 1, + ACTIONS(1591), 2, sym__space, - STATE(4528), 1, - sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3233), 13, + anon_sym_LPAREN2, + ACTIONS(1589), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377941,16 +387579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176324] = 5, + aux_sym_unquoted_token2, + [180503] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_and, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4529), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(2119), 1, + anon_sym_LPAREN2, + ACTIONS(2121), 1, + sym__space, + STATE(4648), 1, sym_comment, - ACTIONS(7765), 14, + ACTIONS(2117), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377963,17 +387604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [176353] = 4, - ACTIONS(121), 1, + anon_sym_RBRACE, + [180534] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4530), 1, + ACTIONS(7514), 1, + anon_sym_and, + ACTIONS(7536), 1, + anon_sym_xor, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4649), 1, sym_comment, - ACTIONS(922), 2, - sym__space, - anon_sym_DOT, - ACTIONS(920), 14, + ACTIONS(7544), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377986,14 +387629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [176380] = 3, - ACTIONS(3), 1, + anon_sym_or, + [180565] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4531), 1, + STATE(4604), 1, + aux_sym_shebang_repeat1, + STATE(4650), 1, sym_comment, - ACTIONS(7845), 16, + ACTIONS(7527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378006,16 +387650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [176405] = 3, + [180592] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4532), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(3205), 1, + sym__space, + STATE(4651), 1, sym_comment, - ACTIONS(7845), 16, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3207), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378029,46 +387678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176430] = 7, - ACTIONS(121), 1, + [180623] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(1589), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(4533), 1, - sym_comment, - ACTIONS(1595), 2, - ts_builtin_sym_end, + ACTIONS(3209), 1, sym__space, - ACTIONS(1587), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [176463] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(7867), 1, - anon_sym_QMARK2, - STATE(4534), 1, + STATE(4652), 1, sym_comment, - ACTIONS(902), 2, - sym__space, - anon_sym_DOT, - ACTIONS(900), 13, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3211), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378082,14 +387703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176492] = 4, + [180654] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7851), 1, - anon_sym_and, - STATE(4535), 1, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2127), 1, + sym__space, + ACTIONS(2129), 1, + aux_sym_unquoted_token2, + STATE(4653), 1, sym_comment, - ACTIONS(7845), 15, + ACTIONS(2123), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378103,20 +387728,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [176519] = 5, - ACTIONS(121), 1, + [180685] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7869), 1, - anon_sym_QMARK2, - STATE(4536), 1, - sym_comment, - ACTIONS(908), 2, - sym__space, - anon_sym_DOT, - ACTIONS(906), 13, + ACTIONS(5245), 1, sym__newline, + ACTIONS(7525), 1, + anon_sym_and, + ACTIONS(7529), 1, + anon_sym_xor, + STATE(4546), 1, + aux_sym_shebang_repeat1, + STATE(4654), 1, + sym_comment, + ACTIONS(7538), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378128,17 +387753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [176548] = 5, - ACTIONS(3), 1, + anon_sym_or, + [180718] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_and, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4537), 1, + STATE(4655), 1, sym_comment, - ACTIONS(7765), 14, + ACTIONS(7501), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378151,16 +387772,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [176577] = 4, + [180743] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7853), 1, - anon_sym_and, - STATE(4538), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(3259), 1, + sym__space, + STATE(4656), 1, sym_comment, - ACTIONS(7845), 15, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3261), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378174,18 +387801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [176604] = 5, + [180774] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7851), 1, - anon_sym_and, - ACTIONS(7855), 1, - anon_sym_xor, - STATE(4539), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(3263), 1, + sym__space, + STATE(4657), 1, sym_comment, - ACTIONS(7845), 14, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3265), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378199,19 +387826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or, - [176633] = 6, - ACTIONS(3), 1, + [180805] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7769), 1, - sym__newline, - ACTIONS(7772), 1, - anon_sym_and, - STATE(4540), 1, - sym_comment, - STATE(4598), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(7757), 13, + STATE(4658), 1, + sym_comment, + ACTIONS(7507), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378223,19 +387846,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [176664] = 5, - ACTIONS(3), 1, + [180832] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7853), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7523), 1, anon_sym_and, - ACTIONS(7857), 1, + ACTIONS(7550), 1, anon_sym_xor, - STATE(4541), 1, + STATE(4558), 1, + aux_sym_shebang_repeat1, + STATE(4659), 1, sym_comment, - ACTIONS(7845), 14, - sym__newline, + ACTIONS(7538), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378247,39 +387874,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or, - [176693] = 4, + [180865] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4542), 1, + STATE(4660), 1, sym_comment, - ACTIONS(1470), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(968), 2, + sym__space, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [176720] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4469), 1, - aux_sym_shebang_repeat1, - STATE(4543), 1, - sym_comment, - ACTIONS(7792), 15, + ACTIONS(966), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378292,23 +387896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176747] = 6, - ACTIONS(121), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, + [180892] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7871), 1, - anon_sym_DOT_DOT2, - STATE(4544), 1, + STATE(4661), 1, sym_comment, - ACTIONS(1869), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7873), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1863), 11, + ACTIONS(2133), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378320,15 +387915,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176778] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180917] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4781), 1, - aux_sym_unquoted_token6, - STATE(4545), 1, + STATE(4662), 1, sym_comment, - ACTIONS(1441), 15, - ts_builtin_sym_end, + ACTIONS(978), 2, + sym__space, + anon_sym_DOT, + ACTIONS(976), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378340,21 +387940,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176805] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + [180944] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7875), 1, + ACTIONS(7606), 1, anon_sym_QMARK2, - STATE(4546), 1, + STATE(4663), 1, sym_comment, - ACTIONS(900), 3, + ACTIONS(970), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(902), 12, + ACTIONS(972), 12, sym_identifier, sym__newline, anon_sym_PIPE, @@ -378367,18 +387967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [176834] = 5, - ACTIONS(3), 1, + [180973] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7877), 1, + ACTIONS(7608), 1, anon_sym_QMARK2, - STATE(4547), 1, + STATE(4664), 1, sym_comment, - ACTIONS(906), 3, + ACTIONS(980), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(908), 12, + ACTIONS(982), 12, sym_identifier, sym__newline, anon_sym_PIPE, @@ -378391,45 +387991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [176863] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - ACTIONS(7879), 1, - anon_sym_DOT_DOT2, - STATE(4548), 1, - sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(7881), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1595), 8, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176898] = 6, - ACTIONS(3), 1, + [181002] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7798), 1, + ACTIONS(7514), 1, anon_sym_and, - ACTIONS(7834), 1, - sym__newline, - STATE(4424), 1, + ACTIONS(7536), 1, + anon_sym_xor, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4549), 1, + STATE(4665), 1, sym_comment, - ACTIONS(7824), 13, + ACTIONS(7544), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378441,45 +388015,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [176929] = 4, - ACTIONS(3), 1, + [181033] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4550), 1, - sym_comment, - ACTIONS(1535), 5, - sym_identifier, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1690), 1, anon_sym_DASH, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(7610), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 11, + STATE(4666), 1, + sym_comment, + ACTIONS(7612), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1698), 10, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [176956] = 6, - ACTIONS(121), 1, + [181068] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7883), 1, - anon_sym_DOT_DOT2, - STATE(4551), 1, - sym_comment, - ACTIONS(1877), 2, - ts_builtin_sym_end, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2093), 1, sym__space, - ACTIONS(7885), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1871), 11, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(4667), 1, + sym_comment, + ACTIONS(2089), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378491,14 +388066,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176987] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181099] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4473), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4552), 1, + STATE(4668), 1, sym_comment, - ACTIONS(7792), 15, + ACTIONS(7507), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378514,47 +388091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177014] = 8, + [181126] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4798), 1, - anon_sym_DOT, - STATE(1585), 1, - aux_sym_cell_path_repeat1, - STATE(1694), 1, - sym_path, - STATE(4553), 1, + ACTIONS(1008), 1, + sym__space, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(4669), 1, sym_comment, - STATE(5122), 1, - sym_cell_path, - ACTIONS(7887), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7889), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [177049] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(1006), 13, sym__newline, - ACTIONS(7798), 1, - anon_sym_and, - ACTIONS(7809), 1, - anon_sym_xor, - STATE(4463), 1, - aux_sym_shebang_repeat1, - STATE(4554), 1, - sym_comment, - ACTIONS(7824), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378566,45 +388115,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [177082] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4555), 1, - sym_comment, - ACTIONS(1608), 5, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1610), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177109] = 7, - ACTIONS(121), 1, + anon_sym_RBRACE, + [181157] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_LPAREN2, - ACTIONS(1943), 1, - aux_sym_unquoted_token2, - ACTIONS(7525), 1, - anon_sym_DOT, - STATE(4556), 1, + STATE(4670), 1, sym_comment, - ACTIONS(1945), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1939), 11, + ACTIONS(7501), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378616,20 +388133,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177142] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7761), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7763), 1, anon_sym_xor, - ACTIONS(7893), 1, anon_sym_or, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4557), 1, + [181182] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4671), 1, sym_comment, - ACTIONS(7891), 12, + ACTIONS(1571), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1569), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378642,20 +388159,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177175] = 6, - ACTIONS(121), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [181209] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7895), 1, - anon_sym_DOT_DOT2, - STATE(4558), 1, + ACTIONS(7514), 1, + anon_sym_and, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4672), 1, sym_comment, - ACTIONS(1885), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7897), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1879), 11, + ACTIONS(7518), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378667,18 +388182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177206] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [181238] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7769), 1, - sym__newline, - ACTIONS(7798), 1, - anon_sym_and, - STATE(4559), 1, - sym_comment, - STATE(4599), 1, + STATE(4601), 1, aux_sym_shebang_repeat1, - ACTIONS(7757), 13, + STATE(4673), 1, + sym_comment, + ACTIONS(7527), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378690,20 +388205,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [177237] = 4, - ACTIONS(121), 1, + [181265] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4560), 1, - sym_comment, - ACTIONS(1961), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1959), 12, + ACTIONS(7520), 1, sym__newline, + ACTIONS(7525), 1, + anon_sym_and, + STATE(4541), 1, + aux_sym_shebang_repeat1, + STATE(4674), 1, + sym_comment, + ACTIONS(7499), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378714,22 +388230,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [177264] = 7, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [181296] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_DOT, - STATE(4561), 1, + STATE(4675), 1, sym_comment, - STATE(4570), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_path, - ACTIONS(891), 2, + ACTIONS(1023), 4, ts_builtin_sym_end, sym__space, - ACTIONS(889), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1021), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378741,40 +388255,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177297] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [181323] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7772), 1, + ACTIONS(7509), 1, anon_sym_and, - ACTIONS(7786), 1, - anon_sym_xor, - STATE(4440), 1, - aux_sym_shebang_repeat1, - STATE(4562), 1, - sym_comment, - ACTIONS(7824), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or, - [177330] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4453), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4563), 1, + STATE(4676), 1, sym_comment, - ACTIONS(7824), 15, + ACTIONS(7518), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378787,18 +388278,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [177357] = 4, - ACTIONS(121), 1, + [181352] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4564), 1, + ACTIONS(7614), 1, + anon_sym_DOT_DOT2, + STATE(4677), 1, sym_comment, - ACTIONS(914), 2, + ACTIONS(1008), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(912), 14, + ACTIONS(7616), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1006), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378810,23 +388305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [177384] = 7, - ACTIONS(3), 1, + [181383] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7772), 1, - anon_sym_and, - ACTIONS(7786), 1, - anon_sym_xor, - STATE(4479), 1, + STATE(4563), 1, aux_sym_shebang_repeat1, - STATE(4565), 1, + STATE(4678), 1, sym_comment, - ACTIONS(7813), 12, + ACTIONS(7499), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378838,47 +388325,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [177417] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7798), 1, anon_sym_and, - ACTIONS(7809), 1, anon_sym_xor, - STATE(4480), 1, - aux_sym_shebang_repeat1, - STATE(4566), 1, - sym_comment, - ACTIONS(7813), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_or, - [177450] = 7, + [181410] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_and, - ACTIONS(7803), 1, - anon_sym_xor, - ACTIONS(7817), 1, - anon_sym_or, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4567), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + ACTIONS(2107), 1, + sym__space, + STATE(4679), 1, sym_comment, - ACTIONS(7891), 12, + ACTIONS(2105), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378891,41 +388352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177483] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7899), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7901), 1, - aux_sym__immediate_decimal_token2, - STATE(4568), 1, - sym_comment, - ACTIONS(1368), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [177514] = 5, - ACTIONS(3), 1, + [181441] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_and, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4569), 1, + STATE(4680), 1, sym_comment, - ACTIONS(7778), 14, + ACTIONS(3595), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378938,43 +388371,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [177543] = 6, - ACTIONS(121), 1, + [181466] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7903), 1, + ACTIONS(7395), 1, anon_sym_DOT, - STATE(4807), 1, + STATE(4529), 1, + aux_sym_cell_path_repeat1, + STATE(4681), 1, + sym_comment, + STATE(4936), 1, sym_path, - ACTIONS(895), 2, + ACTIONS(953), 2, ts_builtin_sym_end, sym__space, - STATE(4570), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [177574] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_and, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4571), 1, - sym_comment, - ACTIONS(7778), 14, + ACTIONS(951), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378986,21 +388401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [177603] = 6, + [181499] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_and, - ACTIONS(7803), 1, - anon_sym_xor, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4572), 1, + ACTIONS(7618), 1, + aux_sym__immediate_decimal_token2, + STATE(4682), 1, sym_comment, - ACTIONS(7765), 13, + ACTIONS(1650), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1648), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379012,16 +388424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or, - [177634] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [181528] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4456), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, + STATE(4683), 1, sym_comment, - ACTIONS(7824), 15, + ACTIONS(7293), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379034,23 +388443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [177661] = 7, - ACTIONS(3), 1, + [181553] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7798), 1, + ACTIONS(7509), 1, anon_sym_and, - ACTIONS(7809), 1, - anon_sym_xor, - STATE(4443), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4574), 1, + STATE(4684), 1, sym_comment, - ACTIONS(7824), 12, + ACTIONS(7507), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379062,19 +388469,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [177694] = 6, + [181582] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7772), 1, - anon_sym_and, - ACTIONS(7800), 1, - sym__newline, - STATE(4474), 1, - aux_sym_shebang_repeat1, - STATE(4575), 1, + STATE(4685), 1, sym_comment, - ACTIONS(7792), 13, + ACTIONS(1650), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1648), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379086,16 +388492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [177725] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [181609] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4576), 1, + STATE(4686), 1, sym_comment, - ACTIONS(7759), 15, + ACTIONS(3605), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379108,21 +388512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [177752] = 6, - ACTIONS(3), 1, + [181634] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7798), 1, - anon_sym_and, - ACTIONS(7800), 1, - sym__newline, - STATE(4475), 1, + STATE(4564), 1, aux_sym_shebang_repeat1, - STATE(4577), 1, + STATE(4687), 1, sym_comment, - ACTIONS(7792), 13, + ACTIONS(7499), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379134,20 +388536,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [177783] = 6, + [181661] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_and, - ACTIONS(7803), 1, - anon_sym_xor, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4578), 1, + ACTIONS(7620), 1, + anon_sym_QMARK2, + STATE(4688), 1, sym_comment, - ACTIONS(7778), 13, + ACTIONS(972), 2, + sym__space, + anon_sym_DOT, + ACTIONS(970), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379160,23 +388562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [177814] = 8, + anon_sym_RBRACE, + [181690] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7772), 1, - anon_sym_and, - ACTIONS(7786), 1, - anon_sym_xor, - ACTIONS(7788), 1, - anon_sym_or, - STATE(4567), 1, - aux_sym_shebang_repeat1, - STATE(4579), 1, + ACTIONS(7622), 1, + anon_sym_QMARK2, + STATE(4689), 1, sym_comment, - ACTIONS(7906), 11, + ACTIONS(982), 2, + sym__space, + anon_sym_DOT, + ACTIONS(980), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379188,18 +388586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177849] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [181719] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7851), 1, + ACTIONS(7571), 1, anon_sym_and, - ACTIONS(7855), 1, - anon_sym_xor, - ACTIONS(7910), 1, - anon_sym_or, - STATE(4580), 1, + STATE(4690), 1, sym_comment, - ACTIONS(7908), 13, + ACTIONS(7501), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379213,41 +388608,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177880] = 4, + anon_sym_xor, + anon_sym_or, + [181746] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4581), 1, - sym_comment, - ACTIONS(916), 3, - anon_sym_DASH, + ACTIONS(7614), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(918), 13, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + STATE(4691), 1, + sym_comment, + ACTIONS(7497), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [177907] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_and, - ACTIONS(7763), 1, - anon_sym_xor, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4582), 1, - sym_comment, - ACTIONS(7778), 13, + ACTIONS(7495), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379259,20 +388635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or, - [177938] = 6, - ACTIONS(121), 1, + [181777] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - sym__space, - STATE(4583), 1, + ACTIONS(7503), 1, + anon_sym_and, + STATE(4692), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3223), 13, + ACTIONS(7501), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379286,44 +388656,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177969] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7853), 1, - anon_sym_and, - ACTIONS(7857), 1, anon_sym_xor, - ACTIONS(7912), 1, anon_sym_or, - STATE(4584), 1, + [181804] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7624), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7626), 1, + aux_sym__immediate_decimal_token2, + STATE(4693), 1, sym_comment, - ACTIONS(7908), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178000] = 6, - ACTIONS(121), 1, + ACTIONS(1481), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1483), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [181835] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2159), 1, - sym__space, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(4585), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(7525), 1, + anon_sym_and, + ACTIONS(7529), 1, + anon_sym_xor, + STATE(4576), 1, + aux_sym_shebang_repeat1, + STATE(4694), 1, sym_comment, - ACTIONS(2155), 13, - sym__newline, + ACTIONS(7499), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379335,19 +388708,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178031] = 6, - ACTIONS(121), 1, + anon_sym_or, + [181868] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - ACTIONS(2165), 1, - sym__space, - STATE(4586), 1, + STATE(4695), 1, sym_comment, - ACTIONS(2163), 13, + ACTIONS(1723), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1721), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379361,20 +388731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178062] = 7, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [181895] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, + ACTIONS(7509), 1, anon_sym_and, - ACTIONS(7763), 1, - anon_sym_xor, - ACTIONS(7893), 1, - anon_sym_or, - STATE(725), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4587), 1, + STATE(4696), 1, sym_comment, - ACTIONS(7815), 12, + ACTIONS(7544), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379387,18 +388754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178095] = 6, - ACTIONS(121), 1, + anon_sym_xor, + anon_sym_or, + [181924] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4968), 1, - sym__space, - ACTIONS(7914), 1, - sym_long_flag_identifier, - ACTIONS(7916), 1, - anon_sym_EQ2, - STATE(4588), 1, + STATE(4697), 1, sym_comment, - ACTIONS(4966), 13, + ACTIONS(964), 2, + sym__space, + anon_sym_DOT, + ACTIONS(962), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379412,13 +388778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178126] = 3, - ACTIONS(3), 1, + anon_sym_QMARK2, + [181951] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4589), 1, - sym_comment, - ACTIONS(7132), 16, + ACTIONS(7525), 1, + anon_sym_and, + ACTIONS(7533), 1, sym__newline, + STATE(4696), 1, + aux_sym_shebang_repeat1, + STATE(4698), 1, + sym_comment, + ACTIONS(7527), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379430,18 +388802,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [178151] = 4, + [181982] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4590), 1, + ACTIONS(7628), 1, + anon_sym_DOT_DOT2, + STATE(4699), 1, sym_comment, - ACTIONS(7765), 15, + ACTIONS(2072), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7630), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2066), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379453,21 +388829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178178] = 4, - ACTIONS(121), 1, + [182013] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4591), 1, + ACTIONS(7632), 1, + anon_sym_DOT_DOT2, + STATE(4700), 1, sym_comment, - ACTIONS(1965), 4, + ACTIONS(1978), 2, ts_builtin_sym_end, sym__space, + ACTIONS(7634), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1963), 12, + ACTIONS(1972), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379479,61 +388854,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [178205] = 4, + [182044] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4592), 1, - sym_comment, - ACTIONS(920), 3, - anon_sym_DASH, + ACTIONS(7636), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(922), 13, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178232] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4593), 1, + STATE(4701), 1, sym_comment, - ACTIONS(912), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(914), 13, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + ACTIONS(1966), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7638), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [178259] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4594), 1, - sym_comment, - ACTIONS(7765), 15, + ACTIONS(1960), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379545,25 +388879,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + [182075] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7571), 1, anon_sym_and, + ACTIONS(7594), 1, anon_sym_xor, - anon_sym_or, - [178286] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - STATE(4595), 1, + STATE(4702), 1, sym_comment, - ACTIONS(1580), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1570), 11, + ACTIONS(7501), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379575,15 +388900,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178319] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or, + [182104] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, + ACTIONS(7523), 1, + anon_sym_and, + ACTIONS(7533), 1, + sym__newline, + STATE(4621), 1, aux_sym_shebang_repeat1, - STATE(4596), 1, + STATE(4703), 1, sym_comment, - ACTIONS(7759), 15, - sym__newline, + ACTIONS(7527), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379595,25 +388926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [178346] = 8, + [182135] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - ACTIONS(7798), 1, - anon_sym_and, - ACTIONS(7809), 1, - anon_sym_xor, - ACTIONS(7811), 1, - anon_sym_or, - STATE(4557), 1, - aux_sym_shebang_repeat1, - STATE(4597), 1, + ACTIONS(7449), 1, + aux_sym__immediate_decimal_token2, + STATE(4704), 1, sym_comment, - ACTIONS(7906), 11, + ACTIONS(1591), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1589), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379624,17 +388951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [178381] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [182164] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_and, - STATE(725), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4598), 1, + STATE(4705), 1, sym_comment, - ACTIONS(7759), 14, + ACTIONS(7507), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379647,18 +388972,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [178410] = 5, - ACTIONS(3), 1, + [182191] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, + ACTIONS(7514), 1, anon_sym_and, - STATE(725), 1, + ACTIONS(7536), 1, + anon_sym_xor, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4599), 1, + STATE(4706), 1, sym_comment, - ACTIONS(7759), 14, + ACTIONS(7518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379671,22 +388999,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [178439] = 7, - ACTIONS(3), 1, + [182222] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(5245), 1, sym__newline, - ACTIONS(7772), 1, + ACTIONS(7523), 1, anon_sym_and, - ACTIONS(7786), 1, + ACTIONS(7550), 1, anon_sym_xor, - STATE(4476), 1, + STATE(4579), 1, aux_sym_shebang_repeat1, - STATE(4600), 1, + STATE(4707), 1, sym_comment, - ACTIONS(7792), 12, + ACTIONS(7499), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379699,18 +389026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [178472] = 6, - ACTIONS(3), 1, + [182255] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_and, - ACTIONS(7803), 1, - anon_sym_xor, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4601), 1, + STATE(4708), 1, sym_comment, - ACTIONS(7759), 13, + ACTIONS(3591), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379723,39 +389044,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [178503] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7918), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7920), 1, - aux_sym__immediate_decimal_token2, - STATE(4602), 1, - sym_comment, - ACTIONS(1470), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1472), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178534] = 3, - ACTIONS(3), 1, + [182280] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4603), 1, + ACTIONS(7509), 1, + anon_sym_and, + ACTIONS(7531), 1, + anon_sym_xor, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4709), 1, sym_comment, - ACTIONS(2303), 15, - ts_builtin_sym_end, + ACTIONS(7518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379767,22 +389071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, + anon_sym_RPAREN, anon_sym_or, - [178558] = 6, - ACTIONS(121), 1, + [182311] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(4604), 1, + STATE(4710), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3225), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(3227), 11, + ACTIONS(7333), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379794,19 +389090,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178588] = 6, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182336] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(4605), 1, - sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3235), 2, - ts_builtin_sym_end, + ACTIONS(4952), 1, sym__space, - ACTIONS(3237), 11, + ACTIONS(7640), 1, + sym_long_flag_identifier, + ACTIONS(7642), 1, + anon_sym_EQ2, + STATE(4711), 1, + sym_comment, + ACTIONS(4950), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379818,39 +389118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178618] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1764), 1, - anon_sym_DASH, - ACTIONS(7922), 1, - anon_sym_DOT, - STATE(4606), 1, - sym_comment, - STATE(4826), 1, - aux_sym_cell_path_repeat1, - STATE(5102), 1, - sym_cell_path, - STATE(5253), 1, - sym_path, - ACTIONS(1766), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178652] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [182367] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4607), 1, + STATE(4532), 1, + aux_sym_shebang_repeat1, + STATE(4712), 1, sym_comment, - ACTIONS(1953), 15, - ts_builtin_sym_end, + ACTIONS(7575), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379862,25 +389139,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and, anon_sym_xor, anon_sym_or, - [178676] = 8, - ACTIONS(3), 1, + [182394] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1768), 1, + ACTIONS(1774), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4608), 1, + STATE(4713), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5103), 1, - sym_cell_path, - STATE(5253), 1, + STATE(5204), 1, sym_path, - ACTIONS(1770), 10, + STATE(5247), 1, + sym_cell_path, + ACTIONS(1776), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -379891,36 +389169,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178710] = 3, - ACTIONS(3), 1, + [182428] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4609), 1, - sym_comment, - ACTIONS(2315), 15, - ts_builtin_sym_end, + ACTIONS(7646), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178734] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4610), 1, + STATE(685), 1, + aux_sym__pipe_separator, + STATE(4714), 1, sym_comment, - ACTIONS(7132), 15, - ts_builtin_sym_end, - sym__newline, + STATE(5418), 1, + aux_sym_shebang_repeat1, + ACTIONS(7649), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -379930,25 +389194,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178758] = 8, - ACTIONS(3), 1, + [182460] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1808), 1, + ACTIONS(1796), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4611), 1, + STATE(4715), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5253), 1, + STATE(5204), 1, sym_path, - STATE(5302), 1, + STATE(5269), 1, sym_cell_path, - ACTIONS(1810), 10, + ACTIONS(1798), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -379959,108 +389220,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178792] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7653), 1, - anon_sym_EQ, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(7926), 1, - anon_sym_COMMA, - ACTIONS(7928), 1, - anon_sym_DASH, - STATE(4612), 1, - sym_comment, - STATE(4977), 1, - sym_param_type, - STATE(4978), 1, - sym_param_value, - STATE(5132), 1, - aux_sym_shebang_repeat1, - ACTIONS(7924), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178832] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7932), 1, - anon_sym_RBRACK, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - STATE(4339), 1, - sym_param_long_flag, - STATE(4410), 1, - aux_sym_parameter_parens_repeat1, - STATE(4613), 1, - sym_comment, - STATE(4709), 1, - sym__param_name, - STATE(4982), 1, - aux_sym_shebang_repeat1, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, - sym_param_short_flag, - STATE(5647), 1, - sym_parameter, - [178884] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5267), 1, - anon_sym_DASH, - STATE(4614), 1, - sym_comment, - ACTIONS(5265), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [178910] = 8, - ACTIONS(3), 1, + [182494] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1808), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4615), 1, + STATE(4716), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5104), 1, - sym_cell_path, - STATE(5253), 1, + STATE(5204), 1, sym_path, - ACTIONS(1774), 10, + STATE(5279), 1, + sym_cell_path, + ACTIONS(1810), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -380071,45 +389246,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178944] = 8, - ACTIONS(3), 1, + [182528] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1820), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4616), 1, + STATE(4717), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5105), 1, - sym_cell_path, - STATE(5253), 1, + STATE(5204), 1, sym_path, - ACTIONS(1778), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178978] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7942), 1, - aux_sym__immediate_decimal_token2, - STATE(4617), 1, - sym_comment, - ACTIONS(1535), 4, + STATE(5280), 1, + sym_cell_path, + ACTIONS(1822), 10, sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 10, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -380119,76 +389272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [179006] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(7944), 1, - anon_sym_PIPE, - STATE(4339), 1, - sym_param_long_flag, - STATE(4410), 1, - aux_sym_parameter_parens_repeat1, - STATE(4618), 1, - sym_comment, - STATE(4709), 1, - sym__param_name, - STATE(4963), 1, - aux_sym_shebang_repeat1, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, - sym_param_short_flag, - STATE(5647), 1, - sym_parameter, - [179058] = 7, + [182562] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(7946), 1, - aux_sym__immediate_decimal_token1, - STATE(4619), 1, - sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1701), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1705), 9, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179090] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(4620), 1, + STATE(4718), 1, sym_comment, - ACTIONS(926), 2, + ACTIONS(1723), 3, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(924), 13, + anon_sym_LPAREN2, + ACTIONS(1721), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380200,17 +389293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179116] = 4, - ACTIONS(121), 1, + aux_sym_unquoted_token2, + [182588] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4621), 1, + STATE(4719), 1, sym_comment, - ACTIONS(930), 2, - sym__space, - anon_sym_DOT, - ACTIONS(928), 13, + ACTIONS(2419), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380222,56 +389312,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179142] = 17, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182612] = 17, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7653), 1, + anon_sym_RBRACK, ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, + anon_sym_DASH_DASH, + ACTIONS(7661), 1, + anon_sym_DASH, + STATE(4457), 1, + aux_sym_parameter_parens_repeat1, + STATE(4504), 1, + sym_param_long_flag, + STATE(4720), 1, + sym_comment, + STATE(4787), 1, + sym__param_name, + STATE(5164), 1, + aux_sym_shebang_repeat1, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5590), 1, + sym_parameter, + [182664] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, sym__newline, - ACTIONS(7930), 1, + ACTIONS(7651), 1, sym_identifier, - ACTIONS(7934), 1, + ACTIONS(7655), 1, anon_sym_DOLLAR, - ACTIONS(7936), 1, + ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, + ACTIONS(7659), 1, anon_sym_DASH_DASH, - ACTIONS(7940), 1, + ACTIONS(7661), 1, anon_sym_DASH, - ACTIONS(7948), 1, + ACTIONS(7663), 1, anon_sym_RPAREN, - STATE(4339), 1, - sym_param_long_flag, - STATE(4410), 1, + STATE(4457), 1, aux_sym_parameter_parens_repeat1, - STATE(4622), 1, + STATE(4504), 1, + sym_param_long_flag, + STATE(4721), 1, sym_comment, - STATE(4709), 1, + STATE(4787), 1, sym__param_name, - STATE(4983), 1, + STATE(5168), 1, aux_sym_shebang_repeat1, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, + STATE(5220), 1, sym_param_short_flag, - STATE(5647), 1, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5590), 1, sym_parameter, - [179194] = 6, - ACTIONS(121), 1, + [182716] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7794), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7950), 1, - aux_sym_unquoted_token2, - STATE(4623), 1, + STATE(4722), 1, sym_comment, - ACTIONS(2925), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2927), 11, + ACTIONS(5147), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380283,22 +389402,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179224] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [182740] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1733), 1, + ACTIONS(1741), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4624), 1, + STATE(4723), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5253), 1, + STATE(5204), 1, sym_path, - STATE(5296), 1, + STATE(5284), 1, sym_cell_path, - ACTIONS(1735), 10, + ACTIONS(1745), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -380309,42 +389432,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179258] = 8, - ACTIONS(3), 1, + [182774] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_DASH, - ACTIONS(7922), 1, - anon_sym_DOT, - STATE(4625), 1, + STATE(4724), 1, sym_comment, - STATE(4826), 1, - aux_sym_cell_path_repeat1, - STATE(5106), 1, - sym_cell_path, - STATE(5253), 1, - sym_path, - ACTIONS(1782), 10, - sym_identifier, + ACTIONS(7333), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179292] = 4, - ACTIONS(121), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182798] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4626), 1, + STATE(4725), 1, sym_comment, - ACTIONS(914), 3, + ACTIONS(7501), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(912), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380356,43 +389471,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [179318] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182822] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1784), 1, - anon_sym_DASH, - ACTIONS(7922), 1, - anon_sym_DOT, - STATE(4627), 1, + STATE(4726), 1, sym_comment, - STATE(4826), 1, - aux_sym_cell_path_repeat1, - STATE(5107), 1, - sym_cell_path, - STATE(5253), 1, - sym_path, - ACTIONS(1786), 10, - sym_identifier, + ACTIONS(2423), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179352] = 5, - ACTIONS(121), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182846] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7954), 1, - sym__space, - STATE(4628), 1, + STATE(4727), 1, sym_comment, - STATE(4658), 1, - aux_sym_command_repeat1, - ACTIONS(7952), 13, + ACTIONS(7501), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380404,21 +389513,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179380] = 6, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182870] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(4629), 1, + STATE(4728), 1, sym_comment, - ACTIONS(2081), 2, + ACTIONS(2427), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2077), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380430,16 +389534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179410] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7956), 1, anon_sym_and, - ACTIONS(7958), 1, anon_sym_xor, - STATE(4630), 1, + anon_sym_or, + [182894] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7665), 1, + anon_sym_and, + STATE(4729), 1, sym_comment, - ACTIONS(7845), 13, + ACTIONS(7501), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380452,13 +389557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor, anon_sym_or, - [179438] = 3, - ACTIONS(3), 1, + [182920] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4631), 1, + STATE(4730), 1, sym_comment, - ACTIONS(7589), 15, + ACTIONS(2431), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380474,16 +389580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179462] = 5, - ACTIONS(121), 1, + [182944] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2182), 1, - sym__space, - ACTIONS(7960), 1, - anon_sym_LBRACK2, - STATE(4632), 1, + ACTIONS(7667), 1, + anon_sym_and, + STATE(4731), 1, sym_comment, - ACTIONS(2178), 13, + ACTIONS(7501), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380495,17 +389600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179490] = 4, - ACTIONS(121), 1, + anon_sym_xor, + anon_sym_or, + [182970] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4633), 1, + ACTIONS(7665), 1, + anon_sym_and, + ACTIONS(7669), 1, + anon_sym_xor, + STATE(4732), 1, sym_comment, - ACTIONS(2925), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2927), 13, + ACTIONS(7501), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380517,17 +389624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179516] = 4, - ACTIONS(121), 1, + anon_sym_or, + [182998] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4634), 1, + STATE(4733), 1, sym_comment, - ACTIONS(934), 2, - sym__space, - anon_sym_DOT, - ACTIONS(932), 13, + ACTIONS(2435), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380539,18 +389643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179542] = 4, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [183022] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4635), 1, + STATE(4734), 1, sym_comment, - ACTIONS(918), 3, + ACTIONS(2439), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(916), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380562,75 +389664,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [179568] = 13, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2015), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2017), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4356), 1, - anon_sym_DOLLAR, - ACTIONS(5010), 1, - anon_sym_LPAREN, - ACTIONS(7962), 1, - sym__unquoted_naive, - STATE(4505), 1, - sym__str_double_quotes, - STATE(4636), 1, - sym_comment, - STATE(4757), 1, - sym__inter_single_quotes, - STATE(4767), 1, - sym__inter_double_quotes, - ACTIONS(2013), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4866), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [179612] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7964), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - aux_sym__immediate_decimal_token2, - STATE(4637), 1, - sym_comment, - ACTIONS(1398), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1400), 11, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [179642] = 6, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [183046] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7969), 1, - sym_long_flag_identifier, - ACTIONS(7971), 1, - anon_sym_EQ2, - STATE(4638), 1, + ACTIONS(7667), 1, + anon_sym_and, + ACTIONS(7671), 1, + anon_sym_xor, + STATE(4735), 1, sym_comment, - ACTIONS(4968), 2, + ACTIONS(7501), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(4966), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380642,39 +389689,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179672] = 5, - ACTIONS(3), 1, + anon_sym_or, + [183074] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7967), 1, - aux_sym__immediate_decimal_token2, - STATE(4639), 1, - sym_comment, - ACTIONS(1398), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1400), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(1899), 1, + anon_sym_DASH, + ACTIONS(7644), 1, anon_sym_DOT, - [179700] = 4, - ACTIONS(121), 1, + STATE(4736), 1, + sym_comment, + STATE(4923), 1, + aux_sym_cell_path_repeat1, + STATE(5204), 1, + sym_path, + STATE(5286), 1, + sym_cell_path, + ACTIONS(1901), 10, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183108] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4640), 1, + STATE(4737), 1, sym_comment, - ACTIONS(2075), 3, + ACTIONS(7501), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2073), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380686,23 +389734,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token7, - [179726] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [183132] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1812), 1, + ACTIONS(1831), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4641), 1, + STATE(4738), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5113), 1, - sym_cell_path, - STATE(5253), 1, + STATE(5204), 1, sym_path, - ACTIONS(1814), 10, + STATE(5292), 1, + sym_cell_path, + ACTIONS(1833), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -380713,12 +389763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179760] = 3, - ACTIONS(3), 1, + [183166] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4642), 1, + STATE(4739), 1, sym_comment, - ACTIONS(7845), 15, + ACTIONS(7501), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380734,15 +389784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179784] = 4, - ACTIONS(121), 1, + [183190] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4643), 1, + ACTIONS(7665), 1, + anon_sym_and, + STATE(4740), 1, sym_comment, - ACTIONS(3241), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(3239), 13, + ACTIONS(7501), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380754,14 +389804,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179810] = 3, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [183216] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4644), 1, + ACTIONS(7667), 1, + anon_sym_and, + STATE(4741), 1, sym_comment, - ACTIONS(7510), 15, + ACTIONS(7501), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380774,46 +389826,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [179834] = 6, - ACTIONS(3), 1, + [183242] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7973), 1, - anon_sym_DOT, - ACTIONS(7976), 1, - aux_sym__immediate_decimal_token2, - STATE(4645), 1, + ACTIONS(7665), 1, + anon_sym_and, + ACTIONS(7669), 1, + anon_sym_xor, + STATE(4742), 1, sym_comment, - ACTIONS(1518), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 10, + ACTIONS(7501), 13, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [179864] = 6, - ACTIONS(121), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or, + [183270] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7411), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7978), 1, - anon_sym_DOT, - STATE(4646), 1, + STATE(4743), 1, sym_comment, - ACTIONS(1520), 2, + ACTIONS(2443), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1518), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380825,22 +389869,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179894] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [183294] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1740), 1, + ACTIONS(1835), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4647), 1, + STATE(4744), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5121), 1, - sym_cell_path, - STATE(5253), 1, + STATE(5204), 1, sym_path, - ACTIONS(1742), 10, + STATE(5293), 1, + sym_cell_path, + ACTIONS(1837), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -380851,92 +389898,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179928] = 5, + [183328] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7976), 1, - aux_sym__immediate_decimal_token2, - STATE(4648), 1, + ACTIONS(3279), 1, + anon_sym_DOLLAR, + ACTIONS(5954), 1, + anon_sym_LPAREN, + ACTIONS(7673), 1, + anon_sym_DQUOTE, + ACTIONS(7677), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7679), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7681), 1, + sym__unquoted_naive, + STATE(2144), 1, + sym__str_double_quotes, + STATE(2607), 1, + sym__inter_single_quotes, + STATE(2626), 1, + sym__inter_double_quotes, + STATE(4745), 1, sym_comment, - ACTIONS(1518), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 10, + ACTIONS(7675), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5375), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [183372] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, anon_sym_DOLLAR, + ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [179956] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(4649), 1, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7683), 1, + anon_sym_RBRACK, + STATE(4504), 1, + sym_param_long_flag, + STATE(4746), 1, sym_comment, - ACTIONS(950), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(948), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [179986] = 5, - ACTIONS(3), 1, + STATE(4769), 1, + aux_sym_parameter_parens_repeat1, + STATE(4787), 1, + sym__param_name, + STATE(5051), 1, + aux_sym_shebang_repeat1, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5590), 1, + sym_parameter, + [183424] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7980), 1, - anon_sym_and, - ACTIONS(7982), 1, - anon_sym_xor, - STATE(4650), 1, - sym_comment, - ACTIONS(7845), 13, - ts_builtin_sym_end, + ACTIONS(7417), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [180014] = 8, - ACTIONS(3), 1, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, + anon_sym_DASH_DASH, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7685), 1, + anon_sym_RPAREN, + STATE(4504), 1, + sym_param_long_flag, + STATE(4747), 1, + sym_comment, + STATE(4786), 1, + aux_sym_parameter_parens_repeat1, + STATE(4787), 1, + sym__param_name, + STATE(5138), 1, + aux_sym_shebang_repeat1, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5590), 1, + sym_parameter, + [183476] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1839), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4651), 1, + STATE(4748), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5253), 1, + STATE(5204), 1, sym_path, - STATE(5300), 1, + STATE(5301), 1, sym_cell_path, - ACTIONS(1754), 10, + ACTIONS(1841), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -380947,13 +390025,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180048] = 3, + [183510] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7687), 1, + anon_sym_DOT, + ACTIONS(7690), 1, + aux_sym__immediate_decimal_token2, + STATE(4749), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1475), 11, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [183540] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7690), 1, + aux_sym__immediate_decimal_token2, + STATE(4750), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1475), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [183568] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4652), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + STATE(4751), 1, sym_comment, - ACTIONS(7845), 15, + ACTIONS(2087), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2085), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380965,16 +390096,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [180072] = 3, + [183598] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4653), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + STATE(4752), 1, sym_comment, - ACTIONS(2319), 15, + ACTIONS(1717), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380986,38 +390120,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [183628] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7667), 1, anon_sym_and, + ACTIONS(7671), 1, anon_sym_xor, - anon_sym_or, - [180096] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7839), 1, - aux_sym__immediate_decimal_token2, - STATE(4654), 1, - sym_comment, - ACTIONS(1518), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1520), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [180124] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4655), 1, + STATE(4753), 1, sym_comment, - ACTIONS(7845), 15, + ACTIONS(7501), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381030,15 +390142,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or, + [183656] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7665), 1, anon_sym_and, + ACTIONS(7669), 1, anon_sym_xor, + ACTIONS(7692), 1, anon_sym_or, - [180148] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4656), 1, + STATE(4754), 1, sym_comment, - ACTIONS(2287), 15, + ACTIONS(7592), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381051,16 +390167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [180172] = 3, + [183686] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4657), 1, + STATE(4755), 1, sym_comment, - ACTIONS(7510), 15, + ACTIONS(968), 3, ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(966), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381072,18 +390188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [180196] = 4, - ACTIONS(121), 1, + anon_sym_QMARK2, + [183712] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7986), 1, + ACTIONS(7696), 1, sym__space, - STATE(4658), 2, + STATE(4756), 1, sym_comment, + STATE(4767), 1, aux_sym_command_repeat1, - ACTIONS(7984), 13, + ACTIONS(7694), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381097,64 +390212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180222] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7920), 1, - aux_sym__immediate_decimal_token2, - STATE(4659), 1, - sym_comment, - ACTIONS(1470), 3, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1472), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [180250] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7653), 1, - anon_sym_EQ, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(7991), 1, - anon_sym_COMMA, - ACTIONS(7993), 1, - anon_sym_DASH, - STATE(4660), 1, - sym_comment, - STATE(5074), 1, - sym_param_type, - STATE(5075), 1, - sym_param_value, - STATE(5284), 1, - aux_sym_shebang_repeat1, - ACTIONS(7989), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [180290] = 3, - ACTIONS(3), 1, + [183740] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4661), 1, + ACTIONS(7667), 1, + anon_sym_and, + ACTIONS(7671), 1, + anon_sym_xor, + ACTIONS(7698), 1, + anon_sym_or, + STATE(4757), 1, sym_comment, - ACTIONS(2291), 15, + ACTIONS(7592), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381167,22 +390236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [180314] = 6, - ACTIONS(121), 1, + [183770] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7995), 1, + ACTIONS(7700), 1, + sym_long_flag_identifier, + ACTIONS(7702), 1, anon_sym_EQ2, - ACTIONS(7997), 1, - sym_short_flag_identifier, - STATE(4662), 1, + STATE(4758), 1, sym_comment, - ACTIONS(4890), 2, + ACTIONS(4952), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4888), 11, + ACTIONS(4950), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381194,140 +390260,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180344] = 17, + [183800] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(7999), 1, - anon_sym_RBRACK, - STATE(4339), 1, - sym_param_long_flag, - STATE(4410), 1, - aux_sym_parameter_parens_repeat1, - STATE(4663), 1, + STATE(4759), 1, sym_comment, - STATE(4709), 1, - sym__param_name, - STATE(5018), 1, - aux_sym_shebang_repeat1, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, - sym_param_short_flag, - STATE(5647), 1, - sym_parameter, - [180396] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(2133), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2131), 12, sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(8001), 1, + anon_sym_SEMI, anon_sym_PIPE, - STATE(4339), 1, - sym_param_long_flag, - STATE(4618), 1, - aux_sym_parameter_parens_repeat1, - STATE(4664), 1, - sym_comment, - STATE(4709), 1, - sym__param_name, - STATE(4967), 1, - aux_sym_shebang_repeat1, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, - sym_param_short_flag, - STATE(5647), 1, - sym_parameter, - [180448] = 5, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token4, + [183826] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8003), 1, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7706), 1, aux_sym__immediate_decimal_token2, - STATE(4665), 1, + STATE(4760), 1, sym_comment, - ACTIONS(1535), 3, - sym_identifier, + ACTIONS(1473), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1537), 11, + aux_sym_unquoted_token2, + ACTIONS(1475), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [180476] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(8005), 1, - anon_sym_RPAREN, - STATE(4339), 1, - sym_param_long_flag, - STATE(4410), 1, - aux_sym_parameter_parens_repeat1, - STATE(4666), 1, - sym_comment, - STATE(4709), 1, - sym__param_name, - STATE(5019), 1, - aux_sym_shebang_repeat1, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, - sym_param_short_flag, - STATE(5647), 1, - sym_parameter, - [180528] = 3, + sym_filesize_unit, + sym_duration_unit, + [183856] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4667), 1, + STATE(4761), 1, sym_comment, - ACTIONS(8007), 15, + ACTIONS(1650), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1648), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381339,86 +390327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_catch, - [180552] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(8009), 1, - anon_sym_RBRACK, - STATE(4339), 1, - sym_param_long_flag, - STATE(4663), 1, - aux_sym_parameter_parens_repeat1, - STATE(4668), 1, - sym_comment, - STATE(4709), 1, - sym__param_name, - STATE(5010), 1, - aux_sym_shebang_repeat1, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, - sym_param_short_flag, - STATE(5647), 1, - sym_parameter, - [180604] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(8011), 1, - anon_sym_RPAREN, - STATE(4339), 1, - sym_param_long_flag, - STATE(4666), 1, - aux_sym_parameter_parens_repeat1, - STATE(4669), 1, - sym_comment, - STATE(4709), 1, - sym__param_name, - STATE(5011), 1, - aux_sym_shebang_repeat1, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, - sym_param_short_flag, - STATE(5647), 1, - sym_parameter, - [180656] = 3, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [183882] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4670), 1, + STATE(4762), 1, sym_comment, - ACTIONS(7845), 15, + ACTIONS(2407), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381434,92 +390349,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180680] = 13, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(4093), 1, - anon_sym_DOLLAR, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(8013), 1, - anon_sym_DQUOTE, - ACTIONS(8017), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(8019), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(8021), 1, - sym__unquoted_naive, - STATE(1682), 1, - sym__str_double_quotes, - STATE(1934), 1, - sym__inter_single_quotes, - STATE(1935), 1, - sym__inter_double_quotes, - STATE(4671), 1, - sym_comment, - ACTIONS(8015), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4943), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [180724] = 5, - ACTIONS(3), 1, + [183906] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7865), 1, + ACTIONS(7708), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7710), 1, aux_sym__immediate_decimal_token2, - STATE(4672), 1, - sym_comment, - ACTIONS(1368), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1370), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [180752] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7956), 1, - anon_sym_and, - ACTIONS(7958), 1, - anon_sym_xor, - STATE(4673), 1, + STATE(4763), 1, sym_comment, - ACTIONS(7845), 13, - ts_builtin_sym_end, + ACTIONS(1481), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [180780] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [183936] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4674), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4764), 1, sym_comment, - ACTIONS(3441), 2, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3259), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(3443), 13, + ACTIONS(3261), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381531,21 +390397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180806] = 6, - ACTIONS(121), 1, + [183966] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - STATE(4675), 1, + STATE(4765), 1, sym_comment, - STATE(7895), 1, + STATE(7887), 1, sym__expr_parenthesized_immediate, - ACTIONS(3221), 2, + ACTIONS(3263), 2, ts_builtin_sym_end, sym__space, - ACTIONS(3223), 11, + ACTIONS(3265), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381557,16 +390421,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180836] = 5, - ACTIONS(121), 1, + [183996] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7954), 1, + ACTIONS(2189), 1, + anon_sym_DQUOTE, + ACTIONS(2193), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2195), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4413), 1, + anon_sym_DOLLAR, + ACTIONS(5069), 1, + anon_sym_LPAREN, + ACTIONS(7712), 1, + sym__unquoted_naive, + STATE(4755), 1, + sym__str_double_quotes, + STATE(4766), 1, + sym_comment, + STATE(5023), 1, + sym__inter_double_quotes, + STATE(5169), 1, + sym__inter_single_quotes, + ACTIONS(2191), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5085), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [184040] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7716), 1, sym__space, - STATE(4628), 1, - aux_sym_command_repeat1, - STATE(4676), 1, + STATE(4767), 2, sym_comment, - ACTIONS(8023), 13, + aux_sym_command_repeat1, + ACTIONS(7714), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381580,45 +390474,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180864] = 8, + [184066] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_DASH, - ACTIONS(7922), 1, - anon_sym_DOT, - STATE(4677), 1, + ACTIONS(4228), 1, + anon_sym_DOLLAR, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(7719), 1, + anon_sym_DQUOTE, + ACTIONS(7723), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7725), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7727), 1, + sym__unquoted_naive, + STATE(1686), 1, + sym__inter_single_quotes, + STATE(1688), 1, + sym__inter_double_quotes, + STATE(1954), 1, + sym__str_double_quotes, + STATE(4768), 1, sym_comment, - STATE(4826), 1, - aux_sym_cell_path_repeat1, - STATE(5115), 1, - sym_cell_path, - STATE(5253), 1, - sym_path, - ACTIONS(1822), 10, - sym_identifier, + ACTIONS(7721), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5065), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [184110] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, anon_sym_DOLLAR, + ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, anon_sym_DASH_DASH, - [180898] = 6, - ACTIONS(121), 1, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7729), 1, + anon_sym_RBRACK, + STATE(4457), 1, + aux_sym_parameter_parens_repeat1, + STATE(4504), 1, + sym_param_long_flag, + STATE(4769), 1, + sym_comment, + STATE(4787), 1, + sym__param_name, + STATE(5159), 1, + aux_sym_shebang_repeat1, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5590), 1, + sym_parameter, + [184162] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(4678), 1, + ACTIONS(7731), 1, + anon_sym_EQ2, + ACTIONS(7733), 1, + sym_short_flag_identifier, + STATE(4770), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3231), 2, + ACTIONS(4944), 2, ts_builtin_sym_end, sym__space, - ACTIONS(3233), 11, + ACTIONS(4942), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381630,34 +390564,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180928] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5261), 1, - anon_sym_DASH, - STATE(4679), 1, - sym_comment, - ACTIONS(5259), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [180954] = 3, - ACTIONS(3), 1, + [184192] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4680), 1, + STATE(4771), 1, sym_comment, - ACTIONS(2311), 15, + ACTIONS(6929), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381673,19 +390585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180978] = 5, - ACTIONS(121), 1, + [184216] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8025), 1, - aux_sym_unquoted_token3, - STATE(4681), 1, + STATE(4772), 1, sym_comment, - ACTIONS(3241), 2, + ACTIONS(2411), 15, ts_builtin_sym_end, - anon_sym_LPAREN2, - ACTIONS(3239), 12, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381696,78 +390603,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181006] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [184240] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7735), 1, anon_sym_DOT, - STATE(4682), 1, - sym_comment, - STATE(4826), 1, - aux_sym_cell_path_repeat1, - STATE(5112), 1, - sym_cell_path, - STATE(5253), 1, - sym_path, - ACTIONS(1806), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181040] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7653), 1, - anon_sym_EQ, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(8029), 1, - anon_sym_COMMA, - ACTIONS(8031), 1, - anon_sym_DASH, - STATE(4683), 1, + ACTIONS(7737), 1, + aux_sym__immediate_decimal_token2, + STATE(4773), 1, sym_comment, - STATE(5078), 1, - sym_param_type, - STATE(5080), 1, - sym_param_value, - STATE(5289), 1, - aux_sym_shebang_repeat1, - ACTIONS(8027), 7, + ACTIONS(1589), 3, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181080] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1788), 1, anon_sym_DASH, - ACTIONS(7922), 1, - anon_sym_DOT, - STATE(4684), 1, - sym_comment, - STATE(4826), 1, - aux_sym_cell_path_repeat1, - STATE(5108), 1, - sym_cell_path, - STATE(5253), 1, - sym_path, - ACTIONS(1790), 10, - sym_identifier, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 10, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -381777,39 +390629,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181114] = 5, - ACTIONS(121), 1, + anon_sym_LPAREN2, + [184270] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1441), 1, - sym__space, - ACTIONS(7205), 1, - aux_sym_unquoted_token6, - STATE(4685), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(2119), 1, + anon_sym_LPAREN2, + STATE(4774), 1, sym_comment, - ACTIONS(1429), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181142] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(7954), 1, + ACTIONS(2121), 2, + ts_builtin_sym_end, sym__space, - STATE(4658), 1, - aux_sym_command_repeat1, - STATE(4686), 1, - sym_comment, - ACTIONS(8033), 13, + ACTIONS(2117), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381821,24 +390654,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181170] = 8, - ACTIONS(3), 1, + [184300] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1723), 1, + ACTIONS(1778), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4687), 1, + STATE(4775), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5253), 1, + STATE(5204), 1, sym_path, - STATE(5286), 1, + STATE(5227), 1, sym_cell_path, - ACTIONS(1725), 10, + ACTIONS(1780), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -381849,14 +390680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181204] = 4, - ACTIONS(3), 1, + [184334] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7980), 1, - anon_sym_and, - STATE(4688), 1, + STATE(4776), 1, sym_comment, - ACTIONS(7845), 14, + ACTIONS(2415), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381869,44 +390698,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [181230] = 6, + [184358] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7956), 1, - anon_sym_and, - ACTIONS(7958), 1, - anon_sym_xor, - ACTIONS(8035), 1, - anon_sym_or, - STATE(4689), 1, + STATE(4777), 1, sym_comment, - ACTIONS(7908), 12, + ACTIONS(978), 3, ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [181260] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8039), 1, sym__space, - ACTIONS(8041), 1, - aux_sym_record_entry_token1, - STATE(4686), 1, - aux_sym_command_repeat1, - STATE(4690), 1, - sym_comment, - ACTIONS(8037), 12, + anon_sym_DOT, + ACTIONS(976), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381918,17 +390722,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [181290] = 4, - ACTIONS(121), 1, + anon_sym_QMARK2, + [184384] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4691), 1, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2129), 1, + aux_sym_unquoted_token2, + STATE(4778), 1, sym_comment, - ACTIONS(922), 3, + ACTIONS(2127), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(920), 12, + ACTIONS(2123), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381940,13 +390747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [181316] = 3, + [184414] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4692), 1, + STATE(4779), 1, sym_comment, - ACTIONS(5105), 15, + ACTIONS(3373), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(3375), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381959,25 +390768,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_else, anon_sym_RBRACE, - anon_sym_catch, - [181340] = 8, - ACTIONS(3), 1, + [184440] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, + anon_sym_DASH_DASH, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7739), 1, + anon_sym_PIPE, + STATE(4457), 1, + aux_sym_parameter_parens_repeat1, + STATE(4504), 1, + sym_param_long_flag, + STATE(4780), 1, + sym_comment, + STATE(4787), 1, + sym__param_name, + STATE(5068), 1, + aux_sym_shebang_repeat1, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5590), 1, + sym_parameter, + [184492] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(1770), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4693), 1, + STATE(4781), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5099), 1, - sym_cell_path, - STATE(5253), 1, + STATE(5204), 1, sym_path, - ACTIONS(1758), 10, + STATE(5210), 1, + sym_cell_path, + ACTIONS(1772), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -381988,46 +390830,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181374] = 13, - ACTIONS(121), 1, + [184526] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6128), 1, - anon_sym_LPAREN, - ACTIONS(6130), 1, - anon_sym_DOLLAR, - ACTIONS(8043), 1, - anon_sym_DQUOTE, - ACTIONS(8047), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(8049), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(8051), 1, - sym__unquoted_naive, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2524), 1, - sym__inter_single_quotes, - STATE(2526), 1, - sym__inter_double_quotes, - STATE(4694), 1, + ACTIONS(7415), 1, + anon_sym_EQ, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7419), 1, + anon_sym_COLON, + ACTIONS(7743), 1, + anon_sym_COMMA, + ACTIONS(7745), 1, + anon_sym_DASH, + STATE(4782), 1, sym_comment, - ACTIONS(8045), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5136), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [181418] = 4, + STATE(5162), 1, + sym_param_type, + STATE(5166), 1, + sym_param_value, + STATE(5320), 1, + aux_sym_shebang_repeat1, + ACTIONS(7741), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184566] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7980), 1, - anon_sym_and, - STATE(4695), 1, + ACTIONS(7747), 1, + anon_sym_QMARK2, + STATE(4783), 1, sym_comment, - ACTIONS(7845), 14, + ACTIONS(972), 3, ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(970), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382039,24 +390882,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor, - anon_sym_or, - [181444] = 8, + [184594] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1760), 1, + ACTIONS(7749), 1, + anon_sym_QMARK2, + STATE(4784), 1, + sym_comment, + ACTIONS(982), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(980), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [184622] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1847), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4696), 1, + STATE(4785), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5101), 1, - sym_cell_path, - STATE(5253), 1, + STATE(5204), 1, sym_path, - ACTIONS(1762), 10, + STATE(5327), 1, + sym_cell_path, + ACTIONS(1849), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -382067,110 +390931,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181478] = 6, - ACTIONS(3), 1, + [184656] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8053), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8055), 1, - aux_sym__immediate_decimal_token2, - STATE(4697), 1, - sym_comment, - ACTIONS(1368), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 9, - ts_builtin_sym_end, + ACTIONS(7417), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [181508] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7956), 1, - anon_sym_and, - STATE(4698), 1, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7751), 1, + anon_sym_RPAREN, + STATE(4457), 1, + aux_sym_parameter_parens_repeat1, + STATE(4504), 1, + sym_param_long_flag, + STATE(4786), 1, sym_comment, - ACTIONS(7845), 14, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor, - anon_sym_or, - [181534] = 6, - ACTIONS(3), 1, + STATE(4787), 1, + sym__param_name, + STATE(5178), 1, + aux_sym_shebang_repeat1, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5590), 1, + sym_parameter, + [184708] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8057), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8059), 1, - aux_sym__immediate_decimal_token2, - STATE(4699), 1, + ACTIONS(7415), 1, + anon_sym_EQ, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7419), 1, + anon_sym_COLON, + ACTIONS(7755), 1, + anon_sym_COMMA, + ACTIONS(7757), 1, + anon_sym_DASH, + STATE(4787), 1, sym_comment, - ACTIONS(1470), 4, + STATE(5045), 1, + sym_param_type, + STATE(5047), 1, + sym_param_value, + STATE(5214), 1, + aux_sym_shebang_repeat1, + ACTIONS(7753), 7, sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 9, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [181564] = 6, - ACTIONS(121), 1, + [184748] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(4700), 1, - sym_comment, - STATE(7577), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7843), 2, - ts_builtin_sym_end, + ACTIONS(1537), 1, sym__space, - ACTIONS(7841), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [181594] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(7826), 1, - aux_sym_unquoted_token3, - STATE(4701), 1, + ACTIONS(7127), 1, + aux_sym_unquoted_token2, + STATE(4788), 1, sym_comment, - ACTIONS(3239), 14, + ACTIONS(1525), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382183,104 +391018,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181620] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8061), 1, - aux_sym__immediate_decimal_token2, - STATE(4702), 1, - sym_comment, - ACTIONS(1376), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1378), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [181648] = 5, - ACTIONS(3), 1, + [184776] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7980), 1, - anon_sym_and, - ACTIONS(7982), 1, - anon_sym_xor, - STATE(4703), 1, - sym_comment, - ACTIONS(7845), 13, - ts_builtin_sym_end, + ACTIONS(7417), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [181676] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8065), 1, - anon_sym_DASH, - STATE(4704), 1, - sym_comment, - ACTIONS(8063), 14, - anon_sym_EQ, + ACTIONS(7651), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7655), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [181702] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8067), 1, - aux_sym__immediate_decimal_token2, - STATE(4705), 1, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7759), 1, + anon_sym_PIPE, + STATE(4504), 1, + sym_param_long_flag, + STATE(4780), 1, + aux_sym_parameter_parens_repeat1, + STATE(4787), 1, + sym__param_name, + STATE(4789), 1, sym_comment, - ACTIONS(1398), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1400), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [181730] = 3, + STATE(5099), 1, + aux_sym_shebang_repeat1, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5590), 1, + sym_parameter, + [184828] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4706), 1, + STATE(4790), 1, sym_comment, - ACTIONS(1869), 15, + ACTIONS(1571), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1569), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382292,40 +391074,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181754] = 6, - ACTIONS(121), 1, + aux_sym_unquoted_token2, + [184854] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8039), 1, - sym__space, - ACTIONS(8069), 1, - aux_sym_record_entry_token1, - STATE(4686), 1, - aux_sym_command_repeat1, - STATE(4707), 1, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1690), 1, + anon_sym_DASH, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(7761), 1, + anon_sym_DOT_DOT2, + STATE(4791), 1, sym_comment, - ACTIONS(8037), 12, + ACTIONS(7763), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1698), 9, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [181784] = 3, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184888] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4708), 1, + ACTIONS(7240), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4792), 1, sym_comment, - ACTIONS(1877), 15, + ACTIONS(1591), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1589), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382337,55 +391125,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181808] = 11, - ACTIONS(3), 1, + [184918] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7653), 1, - anon_sym_EQ, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(8073), 1, - anon_sym_COMMA, - ACTIONS(8075), 1, + ACTIONS(1855), 1, anon_sym_DASH, - STATE(4709), 1, + ACTIONS(7644), 1, + anon_sym_DOT, + STATE(4793), 1, sym_comment, - STATE(4954), 1, - sym_param_type, - STATE(4955), 1, - sym_param_value, - STATE(5244), 1, - aux_sym_shebang_repeat1, - ACTIONS(8071), 7, + STATE(4923), 1, + aux_sym_cell_path_repeat1, + STATE(5204), 1, + sym_path, + STATE(5268), 1, + sym_cell_path, + ACTIONS(1857), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181848] = 8, - ACTIONS(3), 1, + [184952] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1792), 1, - anon_sym_DASH, - ACTIONS(7922), 1, - anon_sym_DOT, - STATE(4710), 1, + ACTIONS(7767), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7769), 1, + aux_sym__immediate_decimal_token2, + STATE(4794), 1, sym_comment, - STATE(4826), 1, - aux_sym_cell_path_repeat1, - STATE(5109), 1, - sym_cell_path, - STATE(5253), 1, - sym_path, - ACTIONS(1794), 10, + ACTIONS(1569), 3, sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 10, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -382395,22 +391174,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181882] = 8, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [184982] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1762), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4711), 1, + STATE(4795), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5110), 1, - sym_cell_path, - STATE(5253), 1, + STATE(5204), 1, sym_path, - ACTIONS(1798), 10, + STATE(5382), 1, + sym_cell_path, + ACTIONS(1764), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -382421,41 +391201,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181916] = 5, + [185016] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7901), 1, - aux_sym__immediate_decimal_token2, - STATE(4712), 1, + ACTIONS(2048), 1, + anon_sym_DQUOTE, + ACTIONS(2052), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2054), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4449), 1, + anon_sym_DOLLAR, + ACTIONS(5015), 1, + anon_sym_LPAREN, + ACTIONS(7771), 1, + sym__unquoted_naive, + STATE(4660), 1, + sym__str_double_quotes, + STATE(4796), 1, sym_comment, - ACTIONS(1368), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [181944] = 5, - ACTIONS(121), 1, + STATE(4902), 1, + sym__inter_single_quotes, + STATE(4928), 1, + sym__inter_double_quotes, + ACTIONS(2050), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5018), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [185060] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8077), 1, - anon_sym_QMARK2, - STATE(4713), 1, + STATE(4797), 1, sym_comment, - ACTIONS(902), 3, + ACTIONS(3595), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(900), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382467,83 +391250,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181972] = 5, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [185084] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8079), 1, - anon_sym_QMARK2, - STATE(4714), 1, + ACTIONS(5235), 1, + anon_sym_DASH, + STATE(4798), 1, sym_comment, - ACTIONS(908), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(906), 11, + ACTIONS(5233), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [182000] = 5, - ACTIONS(121), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [185110] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2267), 1, - sym__space, - ACTIONS(7591), 1, - aux_sym__immediate_decimal_token1, - STATE(4715), 1, + ACTIONS(5208), 1, + anon_sym_DASH, + STATE(4799), 1, sym_comment, - ACTIONS(2263), 13, + ACTIONS(5206), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [182028] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [185136] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4716), 1, - sym_comment, - ACTIONS(928), 3, + ACTIONS(7415), 1, + anon_sym_EQ, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7419), 1, + anon_sym_COLON, + ACTIONS(7775), 1, + anon_sym_COMMA, + ACTIONS(7777), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(930), 12, + STATE(4800), 1, + sym_comment, + STATE(5172), 1, + sym_param_type, + STATE(5184), 1, + sym_param_value, + STATE(5360), 1, + aux_sym_shebang_repeat1, + ACTIONS(7773), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [182054] = 4, + [185176] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7956), 1, - anon_sym_and, - STATE(4717), 1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(4801), 1, sym_comment, - ACTIONS(7845), 14, + ACTIONS(2093), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2089), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382555,24 +391350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor, - anon_sym_or, - [182080] = 7, - ACTIONS(3), 1, + [185206] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8081), 1, - sym__newline, - STATE(679), 1, - aux_sym__pipe_separator, - STATE(4718), 1, + STATE(4802), 1, sym_comment, - STATE(5400), 1, - aux_sym_shebang_repeat1, - ACTIONS(8084), 3, + ACTIONS(2403), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2825), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382582,39 +391368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182112] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [185230] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8086), 1, - aux_sym__immediate_decimal_token2, - STATE(4719), 1, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(4803), 1, sym_comment, - ACTIONS(1376), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [182140] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5014), 1, + ACTIONS(1008), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(8088), 1, - anon_sym_EQ2, - STATE(4720), 1, - sym_comment, - ACTIONS(5016), 13, + ACTIONS(1006), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382626,18 +391395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182168] = 5, - ACTIONS(121), 1, + [185260] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5086), 1, + ACTIONS(7696), 1, sym__space, - ACTIONS(8090), 1, - anon_sym_EQ2, - STATE(4721), 1, + STATE(4804), 1, sym_comment, - ACTIONS(5088), 13, + STATE(4825), 1, + aux_sym_command_repeat1, + ACTIONS(7779), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382651,38 +391418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182196] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1744), 1, - anon_sym_DASH, - ACTIONS(7922), 1, - anon_sym_DOT, - STATE(4722), 1, - sym_comment, - STATE(4826), 1, - aux_sym_cell_path_repeat1, - STATE(5128), 1, - sym_cell_path, - STATE(5253), 1, - sym_path, - ACTIONS(1746), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182230] = 3, - ACTIONS(3), 1, + [185288] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4723), 1, + STATE(4805), 1, sym_comment, - ACTIONS(1885), 15, + ACTIONS(3605), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382698,48 +391439,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182254] = 8, + [185312] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1816), 1, - anon_sym_DASH, - ACTIONS(7922), 1, - anon_sym_DOT, - STATE(4724), 1, + STATE(4806), 1, sym_comment, - STATE(4826), 1, - aux_sym_cell_path_repeat1, - STATE(5114), 1, - sym_cell_path, - STATE(5253), 1, - sym_path, - ACTIONS(1818), 10, - sym_identifier, + ACTIONS(3485), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(3487), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182288] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [185338] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7849), 1, - aux_sym__immediate_decimal_token2, - STATE(4725), 1, + STATE(4807), 1, sym_comment, - ACTIONS(1470), 4, - sym_identifier, + ACTIONS(1589), 3, anon_sym_DASH, - anon_sym_DOT, + anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 10, + ACTIONS(1591), 12, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, @@ -382747,43 +391481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [182316] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8067), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8092), 1, - anon_sym_DOT, - STATE(4726), 1, - sym_comment, - ACTIONS(1398), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - ACTIONS(1400), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [182346] = 6, - ACTIONS(121), 1, + [185364] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(4727), 1, + STATE(4808), 1, sym_comment, - ACTIONS(2159), 2, + ACTIONS(2072), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2155), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382795,12 +391501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182376] = 3, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [185388] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4728), 1, + STATE(4809), 1, sym_comment, - ACTIONS(7589), 15, + ACTIONS(1978), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382816,13 +391525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182400] = 3, + [185412] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4729), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(4810), 1, sym_comment, - ACTIONS(7510), 15, + ACTIONS(2101), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2097), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382834,22 +391549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182424] = 6, - ACTIONS(121), 1, + [185442] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2157), 1, + ACTIONS(2099), 1, anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(4730), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(4811), 1, sym_comment, - ACTIONS(2165), 2, + ACTIONS(2107), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2163), 11, + ACTIONS(2105), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382861,22 +391573,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182454] = 8, - ACTIONS(3), 1, + [185472] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(883), 1, + ACTIONS(1871), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4731), 1, + STATE(4812), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(4850), 1, + STATE(5202), 1, sym_cell_path, - STATE(5253), 1, + STATE(5204), 1, sym_path, - ACTIONS(885), 10, + ACTIONS(1873), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -382887,12 +391599,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182488] = 3, - ACTIONS(3), 1, + [185506] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4732), 1, + STATE(4813), 1, + sym_comment, + ACTIONS(1569), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 12, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [185532] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4814), 1, sym_comment, - ACTIONS(7589), 15, + ACTIONS(1966), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382908,13 +391642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182512] = 3, + [185556] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4733), 1, + STATE(4815), 1, sym_comment, - ACTIONS(2295), 15, - ts_builtin_sym_end, + ACTIONS(996), 2, + sym__space, + anon_sym_DOT, + ACTIONS(994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382926,19 +391662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182536] = 5, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185582] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7954), 1, - sym__space, - STATE(4686), 1, - aux_sym_command_repeat1, - STATE(4734), 1, + STATE(4816), 1, sym_comment, - ACTIONS(8037), 13, + ACTIONS(7781), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382951,14 +391682,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_else, anon_sym_RBRACE, - [182564] = 3, + anon_sym_catch, + [185606] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4735), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + STATE(4817), 1, sym_comment, - ACTIONS(2307), 15, + ACTIONS(1698), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1690), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382970,60 +391709,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182588] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(8095), 1, - anon_sym_RBRACK, - STATE(4339), 1, - sym_param_long_flag, - STATE(4613), 1, - aux_sym_parameter_parens_repeat1, - STATE(4709), 1, - sym__param_name, - STATE(4736), 1, - sym_comment, - STATE(5020), 1, - aux_sym_shebang_repeat1, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, - sym_param_short_flag, - STATE(5647), 1, - sym_parameter, - [182640] = 8, - ACTIONS(3), 1, + [185636] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1875), 1, anon_sym_DASH, - ACTIONS(7922), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4737), 1, + STATE(4818), 1, sym_comment, - STATE(4826), 1, + STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5111), 1, + STATE(5203), 1, sym_cell_path, - STATE(5253), 1, + STATE(5204), 1, sym_path, - ACTIONS(1802), 10, + ACTIONS(1877), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -383034,13 +391735,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182674] = 3, + [185670] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4738), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4819), 1, sym_comment, - ACTIONS(2299), 15, + STATE(7626), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7542), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7540), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383052,82 +391759,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182698] = 4, - ACTIONS(3), 1, + [185700] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4739), 1, + STATE(4820), 1, sym_comment, - ACTIONS(924), 3, + ACTIONS(1648), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(926), 12, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 12, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [182724] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(8097), 1, - anon_sym_RPAREN, - STATE(4339), 1, - sym_param_long_flag, - STATE(4622), 1, - aux_sym_parameter_parens_repeat1, - STATE(4709), 1, - sym__param_name, - STATE(4740), 1, - sym_comment, - STATE(5021), 1, - aux_sym_shebang_repeat1, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5282), 1, - sym_param_short_flag, - STATE(5647), 1, - sym_parameter, - [182776] = 7, - ACTIONS(3), 1, + [185726] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(7783), 1, sym__newline, - STATE(679), 1, + STATE(685), 1, aux_sym__pipe_separator, - STATE(4741), 1, + STATE(4821), 1, sym_comment, - STATE(5400), 1, + STATE(5418), 1, aux_sym_shebang_repeat1, - ACTIONS(8102), 3, + ACTIONS(7786), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2825), 9, + ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -383137,65 +391806,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182808] = 13, - ACTIONS(121), 1, + [185758] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2141), 1, - anon_sym_DQUOTE, - ACTIONS(2145), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2147), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4320), 1, - anon_sym_DOLLAR, - ACTIONS(5072), 1, - anon_sym_LPAREN, - ACTIONS(8104), 1, - sym__unquoted_naive, - STATE(4635), 1, - sym__str_double_quotes, - STATE(4742), 1, + ACTIONS(7696), 1, + sym__space, + STATE(4756), 1, + aux_sym_command_repeat1, + STATE(4822), 1, sym_comment, - STATE(5044), 1, - sym__inter_single_quotes, - STATE(5045), 1, - sym__inter_double_quotes, - ACTIONS(2143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5000), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [182852] = 4, - ACTIONS(3), 1, + ACTIONS(7788), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185786] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4743), 1, + STATE(4823), 1, sym_comment, - ACTIONS(932), 3, + ACTIONS(1721), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(934), 12, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 12, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [182878] = 3, - ACTIONS(3), 1, + [185812] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4744), 1, + STATE(4824), 1, sym_comment, - ACTIONS(2283), 15, + ACTIONS(3591), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383211,38 +391872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182902] = 6, + [185836] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7980), 1, - anon_sym_and, - ACTIONS(7982), 1, - anon_sym_xor, - ACTIONS(8106), 1, - anon_sym_or, - STATE(4745), 1, - sym_comment, - ACTIONS(7908), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [182932] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2287), 1, + ACTIONS(7696), 1, sym__space, - STATE(4746), 1, + STATE(4767), 1, + aux_sym_command_repeat1, + STATE(4825), 1, sym_comment, - ACTIONS(2285), 13, + ACTIONS(7790), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383256,77 +391895,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182957] = 4, - ACTIONS(121), 1, + [185864] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2214), 1, - sym__space, - STATE(4747), 1, + ACTIONS(7794), 1, + anon_sym_DASH, + STATE(4826), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(7792), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [182982] = 4, - ACTIONS(121), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [185890] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2363), 1, - sym__space, - STATE(4748), 1, + ACTIONS(1879), 1, + anon_sym_DASH, + ACTIONS(7644), 1, + anon_sym_DOT, + STATE(4827), 1, sym_comment, - ACTIONS(2361), 13, + STATE(4923), 1, + aux_sym_cell_path_repeat1, + STATE(5204), 1, + sym_path, + STATE(5211), 1, + sym_cell_path, + ACTIONS(1881), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [183007] = 4, - ACTIONS(121), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185924] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1869), 1, - sym__space, - STATE(4749), 1, + STATE(4828), 1, sym_comment, - ACTIONS(1863), 13, + ACTIONS(994), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(996), 12, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [183032] = 4, - ACTIONS(121), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [185950] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5135), 1, + ACTIONS(2239), 1, sym__space, - STATE(4750), 1, + ACTIONS(7796), 1, + anon_sym_LBRACK2, + STATE(4829), 1, sym_comment, - ACTIONS(5137), 13, + ACTIONS(2235), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383340,15 +391988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183057] = 4, - ACTIONS(3), 1, + [185978] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4751), 1, + ACTIONS(7798), 1, + aux_sym__immediate_decimal_token2, + STATE(4830), 1, sym_comment, - ACTIONS(1368), 2, + ACTIONS(1519), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(1370), 12, + ACTIONS(1521), 12, anon_sym_in, anon_sym_QMARK2, anon_sym_not_DASHin, @@ -383361,170 +392011,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT, - [183082] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4752), 1, - sym_comment, - ACTIONS(5105), 14, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [183105] = 4, - ACTIONS(121), 1, + [186006] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8110), 1, - sym__space, - STATE(4753), 1, + STATE(4831), 1, sym_comment, - ACTIONS(8108), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183130] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOLLAR, - ACTIONS(4687), 1, - aux_sym_unquoted_token4, - ACTIONS(4746), 1, - aux_sym_unquoted_token6, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8112), 1, + ACTIONS(986), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(8116), 1, - aux_sym__immediate_decimal_token4, - STATE(4754), 1, - sym_comment, - STATE(5746), 1, - sym__immediate_decimal, - ACTIONS(8114), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6159), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2925), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [183171] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8118), 1, - sym__newline, - ACTIONS(8123), 1, - anon_sym_catch, - STATE(4755), 1, - sym_comment, - STATE(4762), 1, - aux_sym_shebang_repeat1, - ACTIONS(8121), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183200] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5245), 1, - sym__space, - STATE(4756), 1, - sym_comment, - ACTIONS(5247), 13, + ACTIONS(988), 12, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [183225] = 4, - ACTIONS(121), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [186032] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2218), 1, - sym__space, - STATE(4757), 1, + STATE(4832), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(990), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(992), 12, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [183250] = 4, - ACTIONS(121), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [186058] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2367), 1, - sym__space, - STATE(4758), 1, + ACTIONS(1883), 1, + anon_sym_DASH, + ACTIONS(7644), 1, + anon_sym_DOT, + STATE(4833), 1, sym_comment, - ACTIONS(2365), 13, + STATE(4923), 1, + aux_sym_cell_path_repeat1, + STATE(5204), 1, + sym_path, + STATE(5212), 1, + sym_cell_path, + ACTIONS(1885), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [183275] = 4, - ACTIONS(121), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186092] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(7800), 1, sym__space, - STATE(4759), 1, + ACTIONS(7802), 1, + aux_sym_record_entry_token1, + STATE(4825), 1, + aux_sym_command_repeat1, + STATE(4834), 1, sym_comment, - ACTIONS(1879), 13, + ACTIONS(7779), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383536,125 +392104,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [183300] = 4, - ACTIONS(121), 1, + [186122] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2331), 1, - sym__space, - STATE(4760), 1, + ACTIONS(1891), 1, + anon_sym_DASH, + ACTIONS(7644), 1, + anon_sym_DOT, + STATE(4835), 1, sym_comment, - ACTIONS(2329), 13, + STATE(4923), 1, + aux_sym_cell_path_repeat1, + STATE(5204), 1, + sym_path, + STATE(5216), 1, + sym_cell_path, + ACTIONS(1893), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [183325] = 4, - ACTIONS(121), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186156] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2396), 1, - sym__space, - STATE(4761), 1, + ACTIONS(945), 1, + anon_sym_DASH, + ACTIONS(7644), 1, + anon_sym_DOT, + STATE(4836), 1, sym_comment, - ACTIONS(2394), 13, + STATE(4906), 1, + sym_cell_path, + STATE(4923), 1, + aux_sym_cell_path_repeat1, + STATE(5204), 1, + sym_path, + ACTIONS(947), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [183350] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186190] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2985), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8125), 1, - anon_sym_catch, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4762), 1, - sym_comment, - ACTIONS(1858), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183379] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2232), 1, - sym__space, - STATE(4763), 1, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, + anon_sym_DASH_DASH, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7804), 1, + anon_sym_RBRACK, + STATE(4504), 1, + sym_param_long_flag, + STATE(4720), 1, + aux_sym_parameter_parens_repeat1, + STATE(4787), 1, + sym__param_name, + STATE(4837), 1, sym_comment, - ACTIONS(2230), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183404] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2985), 1, - sym__newline, - ACTIONS(8128), 1, - anon_sym_else, - STATE(725), 1, + STATE(5030), 1, aux_sym_shebang_repeat1, - STATE(4764), 1, - sym_comment, - ACTIONS(1858), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5590), 1, + sym_parameter, + [186242] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, + anon_sym_DASH_DASH, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7806), 1, anon_sym_RPAREN, - [183433] = 4, - ACTIONS(121), 1, + STATE(4504), 1, + sym_param_long_flag, + STATE(4721), 1, + aux_sym_parameter_parens_repeat1, + STATE(4787), 1, + sym__param_name, + STATE(4838), 1, + sym_comment, + STATE(5072), 1, + aux_sym_shebang_repeat1, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5590), 1, + sym_parameter, + [186294] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2283), 1, - sym__space, - STATE(4765), 1, + STATE(4839), 1, sym_comment, - ACTIONS(2281), 13, + ACTIONS(2133), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383666,21 +392245,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183458] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186318] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(1895), 1, anon_sym_DASH, - ACTIONS(8131), 1, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(5253), 1, - sym_path, - STATE(4766), 2, + STATE(4840), 1, sym_comment, + STATE(4923), 1, aux_sym_cell_path_repeat1, - ACTIONS(895), 10, + STATE(5204), 1, + sym_path, + STATE(5221), 1, + sym_cell_path, + ACTIONS(1897), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -383691,14 +392274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183487] = 4, - ACTIONS(121), 1, + [186352] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2218), 1, - sym__space, - STATE(4767), 1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(4841), 1, sym_comment, - ACTIONS(2216), 13, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3205), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(3207), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383710,18 +392298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183512] = 4, - ACTIONS(121), 1, + [186382] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4768), 1, - sym_comment, - ACTIONS(2925), 3, - ts_builtin_sym_end, + ACTIONS(5005), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2927), 11, + ACTIONS(7808), 1, + anon_sym_EQ2, + STATE(4842), 1, + sym_comment, + ACTIONS(5007), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383733,18 +392319,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183537] = 6, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186410] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8134), 1, - ts_builtin_sym_end, - ACTIONS(8136), 1, + ACTIONS(5039), 1, sym__space, - STATE(4769), 1, + ACTIONS(7810), 1, + anon_sym_EQ2, + STATE(4843), 1, sym_comment, - STATE(4896), 1, - aux_sym_command_repeat1, - ACTIONS(8037), 11, + ACTIONS(5041), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383756,37 +392342,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183566] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186438] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(1709), 1, anon_sym_DASH, - ACTIONS(8138), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7812), 1, anon_sym_DOT_DOT2, - STATE(4770), 1, + STATE(4844), 1, sym_comment, - ACTIONS(8140), 2, + ACTIONS(7814), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1953), 10, + ACTIONS(1717), 9, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183595] = 4, - ACTIONS(121), 1, + [186472] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1766), 1, - sym__space, - STATE(4771), 1, + STATE(4845), 1, sym_comment, - ACTIONS(1764), 13, + ACTIONS(7293), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383798,16 +392388,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183620] = 4, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186496] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1441), 1, - sym__space, - STATE(4772), 1, + STATE(4846), 1, sym_comment, - ACTIONS(1429), 13, + ACTIONS(988), 2, + sym__space, + anon_sym_DOT, + ACTIONS(986), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383821,17 +392413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183645] = 5, - ACTIONS(121), 1, + [186522] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8142), 1, - anon_sym_EQ2, - STATE(4773), 1, + STATE(4847), 1, sym_comment, - ACTIONS(5086), 2, - ts_builtin_sym_end, + ACTIONS(992), 2, sym__space, - ACTIONS(5088), 11, + anon_sym_DOT, + ACTIONS(990), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383843,14 +392433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183672] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186548] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1782), 1, - sym__space, - STATE(4774), 1, + STATE(4848), 1, sym_comment, - ACTIONS(1780), 13, + ACTIONS(964), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(962), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383862,16 +392456,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183697] = 4, - ACTIONS(121), 1, + anon_sym_QMARK2, + [186574] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2343), 1, - sym__space, - STATE(4775), 1, + STATE(4849), 1, sym_comment, - ACTIONS(2341), 13, + ACTIONS(7333), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383883,16 +392475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183722] = 4, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186598] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2291), 1, - sym__space, - STATE(4776), 1, + STATE(4850), 1, sym_comment, - ACTIONS(2289), 13, + ACTIONS(7293), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383904,71 +392496,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183747] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186622] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4777), 1, - sym_comment, - ACTIONS(1608), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1610), 10, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(2947), 1, anon_sym_LPAREN2, - [183772] = 14, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(3923), 1, - anon_sym_DOLLAR, - ACTIONS(8144), 1, - sym__newline, - ACTIONS(8146), 1, - sym__space, - ACTIONS(8148), 1, - anon_sym_DASH_DASH, - ACTIONS(8150), 1, - anon_sym_DASH, - ACTIONS(8152), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(4778), 1, + STATE(4851), 1, sym_comment, - STATE(5830), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7478), 1, - sym__flag, - STATE(664), 2, - sym__blosure, - sym_val_variable, - STATE(4833), 2, - sym_short_flag, - sym_long_flag, - [183817] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8154), 1, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3209), 2, ts_builtin_sym_end, - ACTIONS(8156), 1, sym__space, - STATE(4779), 2, - sym_comment, - aux_sym_command_repeat1, - ACTIONS(7984), 11, + ACTIONS(3211), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383980,14 +392523,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183844] = 4, - ACTIONS(121), 1, + [186652] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__space, - STATE(4780), 1, + STATE(4852), 1, sym_comment, - ACTIONS(1744), 13, + ACTIONS(7333), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383999,16 +392541,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183869] = 4, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186676] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5224), 1, - sym__space, - STATE(4781), 1, + STATE(4853), 1, sym_comment, - ACTIONS(5226), 13, + ACTIONS(1591), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1589), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384020,20 +392565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183894] = 6, - ACTIONS(121), 1, + aux_sym_unquoted_token2, + [186702] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8159), 1, - sym__newline, - ACTIONS(8161), 1, - sym__space, - STATE(4782), 1, + STATE(4854), 1, sym_comment, - STATE(4869), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(8163), 11, + ACTIONS(7293), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384044,19 +392584,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183923] = 6, - ACTIONS(121), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186726] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8136), 1, - sym__space, - ACTIONS(8165), 1, - ts_builtin_sym_end, - STATE(4779), 1, - aux_sym_command_repeat1, - STATE(4783), 1, + STATE(4855), 1, sym_comment, - ACTIONS(7952), 11, + ACTIONS(1941), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384068,19 +392605,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183952] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [186750] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1863), 1, + ACTIONS(1747), 1, anon_sym_DASH, - ACTIONS(8167), 1, - anon_sym_DOT_DOT2, - STATE(4784), 1, + ACTIONS(7644), 1, + anon_sym_DOT, + STATE(4856), 1, sym_comment, - ACTIONS(8169), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1869), 10, + STATE(4923), 1, + aux_sym_cell_path_repeat1, + STATE(5204), 1, + sym_path, + STATE(5233), 1, + sym_cell_path, + ACTIONS(1749), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -384091,37 +392634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183981] = 3, - ACTIONS(121), 1, + [186784] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4785), 1, - sym_comment, - ACTIONS(5226), 14, - sym__newline, + ACTIONS(7800), 1, sym__space, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, + ACTIONS(7816), 1, aux_sym_record_entry_token1, - [184004] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8171), 1, - sym__newline, - ACTIONS(8174), 1, - sym__space, - STATE(4786), 2, + STATE(4825), 1, + aux_sym_command_repeat1, + STATE(4857), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(8177), 11, + ACTIONS(7779), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384132,68 +392657,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [184031] = 10, - ACTIONS(3), 1, + anon_sym_RBRACE, + [186814] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2927), 1, + ACTIONS(1824), 1, anon_sym_DASH, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6629), 1, - aux_sym_unquoted_token4, - ACTIONS(6654), 1, + ACTIONS(7644), 1, anon_sym_DOT, - ACTIONS(6656), 1, - aux_sym_unquoted_token6, - STATE(4787), 1, - sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2925), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [184068] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8179), 1, - sym__newline, - ACTIONS(8184), 1, - anon_sym_else, - STATE(4788), 1, - sym_comment, - STATE(4847), 1, - aux_sym_shebang_repeat1, - ACTIONS(8182), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [184097] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4789), 1, + STATE(4858), 1, sym_comment, - ACTIONS(1535), 4, + STATE(4923), 1, + aux_sym_cell_path_repeat1, + STATE(5204), 1, + sym_path, + STATE(5267), 1, + sym_cell_path, + ACTIONS(1826), 10, sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 10, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -384203,104 +392684,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [184122] = 6, - ACTIONS(3), 1, + [186848] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8186), 1, - anon_sym_DOT, - ACTIONS(8189), 1, - aux_sym__immediate_decimal_token2, - STATE(4790), 1, + ACTIONS(7415), 1, + anon_sym_EQ, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7419), 1, + anon_sym_COLON, + ACTIONS(7820), 1, + anon_sym_COMMA, + ACTIONS(7822), 1, + anon_sym_DASH, + STATE(4859), 1, sym_comment, - ACTIONS(1518), 3, + STATE(5028), 1, + sym_param_value, + STATE(5167), 1, + sym_param_type, + STATE(5274), 1, + aux_sym_shebang_repeat1, + ACTIONS(7818), 7, sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 9, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [184151] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8191), 1, - anon_sym_LBRACK2, - STATE(4791), 1, - sym_comment, - ACTIONS(2182), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2178), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [184178] = 6, + [186888] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2985), 1, - sym__newline, - ACTIONS(8193), 1, - anon_sym_else, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4792), 1, - sym_comment, - ACTIONS(1858), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [184207] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8198), 1, - sym__space, - STATE(4793), 1, - sym_comment, - ACTIONS(8196), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184232] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8202), 1, + ACTIONS(2419), 1, sym__space, - STATE(4794), 1, + STATE(4860), 1, sym_comment, - ACTIONS(8200), 13, + ACTIONS(2417), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384314,19 +392734,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184257] = 6, - ACTIONS(3), 1, + [186913] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8204), 1, + ACTIONS(7783), 1, sym__newline, - ACTIONS(8209), 1, - anon_sym_catch, - STATE(4795), 1, + STATE(685), 1, + aux_sym__pipe_separator, + STATE(4861), 1, sym_comment, - STATE(4900), 1, + STATE(5418), 1, aux_sym_shebang_repeat1, - ACTIONS(8207), 11, + ACTIONS(7786), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -384336,37 +392758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [184286] = 5, + [186944] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8211), 1, - aux_sym__immediate_decimal_token2, - STATE(4796), 1, - sym_comment, - ACTIONS(1398), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1400), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [184313] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8215), 1, + ACTIONS(5218), 1, sym__space, - STATE(4797), 1, + STATE(4862), 1, sym_comment, - ACTIONS(8213), 13, + ACTIONS(5220), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384380,14 +392779,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184338] = 4, - ACTIONS(121), 1, + [186969] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(966), 1, + anon_sym_DASH, + STATE(4863), 1, + sym_comment, + ACTIONS(968), 13, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + sym__table_head_separator, + [186994] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8219), 1, + ACTIONS(1537), 1, sym__space, - STATE(4798), 1, + STATE(4864), 1, sym_comment, - ACTIONS(8217), 13, + ACTIONS(1525), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384401,35 +392821,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184363] = 4, - ACTIONS(121), 1, + [187019] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2186), 1, + ACTIONS(4060), 1, + anon_sym_DOLLAR, + ACTIONS(7824), 1, + sym__newline, + ACTIONS(7826), 1, sym__space, - STATE(4799), 1, + ACTIONS(7828), 1, + anon_sym_DASH_DASH, + ACTIONS(7830), 1, + anon_sym_DASH, + ACTIONS(7832), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(4865), 1, sym_comment, - ACTIONS(2184), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184388] = 4, - ACTIONS(121), 1, + STATE(5840), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7712), 1, + sym__flag, + STATE(670), 2, + sym__blosure, + sym_val_variable, + STATE(4979), 2, + sym_short_flag, + sym_long_flag, + [187064] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(2443), 1, sym__space, - STATE(4800), 1, + STATE(4866), 1, sym_comment, - ACTIONS(1788), 13, + ACTIONS(2441), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384443,18 +392873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184413] = 6, - ACTIONS(3), 1, + [187089] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8221), 1, + ACTIONS(7834), 1, sym__newline, - ACTIONS(8226), 1, - anon_sym_else, - STATE(4801), 1, + ACTIONS(7839), 1, + anon_sym_catch, + STATE(4867), 1, sym_comment, - STATE(4811), 1, + STATE(4975), 1, aux_sym_shebang_repeat1, - ACTIONS(8224), 11, + ACTIONS(7837), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384466,79 +392896,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184442] = 5, - ACTIONS(3), 1, + [187118] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8189), 1, - aux_sym__immediate_decimal_token2, - STATE(4802), 1, + ACTIONS(976), 1, + anon_sym_DASH, + STATE(4868), 1, sym_comment, - ACTIONS(1518), 4, + ACTIONS(978), 13, + anon_sym_EQ, sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 9, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_COLON, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [184469] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(4803), 1, - sym_comment, - ACTIONS(3441), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(3443), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [184494] = 4, - ACTIONS(121), 1, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + sym__table_head_separator, + [187143] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2327), 1, - sym__space, - STATE(4804), 1, - sym_comment, - ACTIONS(2325), 13, + ACTIONS(3009), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184519] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1794), 1, - sym__space, - STATE(4805), 1, + ACTIONS(7841), 1, + anon_sym_else, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4869), 1, sym_comment, - ACTIONS(1792), 13, - sym__newline, + ACTIONS(1757), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384550,40 +392940,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [184544] = 6, + [187172] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8230), 1, - anon_sym_DASH, - ACTIONS(8232), 1, - anon_sym_DOT_DOT2, - STATE(4806), 1, - sym_comment, - ACTIONS(8234), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8228), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184573] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(4807), 1, + ACTIONS(7183), 1, + aux_sym_unquoted_token2, + STATE(4870), 1, sym_comment, - ACTIONS(930), 3, + ACTIONS(1537), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(928), 11, + ACTIONS(1525), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384595,63 +392962,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184598] = 5, - ACTIONS(3), 1, + [187199] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8055), 1, - aux_sym__immediate_decimal_token2, - STATE(4808), 1, - sym_comment, - ACTIONS(1368), 4, + ACTIONS(962), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [184625] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - STATE(4809), 1, + STATE(4871), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 2, + ACTIONS(964), 13, + anon_sym_EQ, sym_identifier, - anon_sym_DASH, - ACTIONS(1595), 9, - sym__newline, - anon_sym_PIPE, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT, anon_sym_DASH_DASH, - [184654] = 6, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + sym__table_head_separator, + [187224] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8236), 1, - sym__newline, - ACTIONS(8241), 1, - anon_sym_else, - STATE(4764), 1, - aux_sym_shebang_repeat1, - STATE(4810), 1, + ACTIONS(7846), 1, + anon_sym_catch, + STATE(4872), 1, sym_comment, - ACTIONS(8239), 11, + ACTIONS(7844), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384663,18 +393003,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184683] = 6, + anon_sym_RBRACE, + [187249] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2985), 1, - sym__newline, - ACTIONS(8243), 1, - anon_sym_else, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4811), 1, + ACTIONS(2257), 1, + sym__space, + STATE(4873), 1, sym_comment, - ACTIONS(1858), 11, + ACTIONS(2255), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384686,21 +393024,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184712] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [187274] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8059), 1, + ACTIONS(7737), 1, aux_sym__immediate_decimal_token2, - STATE(4812), 1, + STATE(4874), 1, sym_comment, - ACTIONS(1470), 4, + ACTIONS(1589), 3, sym_identifier, anon_sym_DASH, - anon_sym_DOT, aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 9, + ACTIONS(1591), 10, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, @@ -384708,14 +393047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [184739] = 4, - ACTIONS(121), 1, + [187301] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8248), 1, + ACTIONS(2253), 1, sym__space, - STATE(4813), 1, + STATE(4875), 1, sym_comment, - ACTIONS(8246), 13, + ACTIONS(2251), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384729,43 +393068,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184764] = 5, + [187326] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8250), 1, - aux_sym__immediate_decimal_token2, - STATE(4814), 1, - sym_comment, - ACTIONS(1376), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 9, + ACTIONS(7848), 1, ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [184791] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8099), 1, - sym__newline, - STATE(679), 1, - aux_sym__pipe_separator, - STATE(4815), 1, + ACTIONS(7850), 1, + sym__space, + STATE(4876), 2, sym_comment, - STATE(5400), 1, - aux_sym_shebang_repeat1, - ACTIONS(8102), 2, - ts_builtin_sym_end, + aux_sym_command_repeat1, + ACTIONS(7714), 11, + sym__newline, anon_sym_SEMI, - ACTIONS(2825), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -384775,14 +393090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184822] = 4, - ACTIONS(121), 1, + [187353] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2347), 1, + ACTIONS(7855), 1, sym__space, - STATE(4816), 1, + STATE(4877), 1, sym_comment, - ACTIONS(2345), 13, + ACTIONS(7853), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384796,14 +393111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184847] = 4, - ACTIONS(121), 1, + [187378] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2391), 1, sym__space, - STATE(4817), 1, + STATE(4878), 1, sym_comment, - ACTIONS(2369), 13, + ACTIONS(2389), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384817,39 +393132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184872] = 5, + [187403] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8252), 1, - aux_sym__immediate_decimal_token2, - STATE(4818), 1, - sym_comment, - ACTIONS(1535), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 9, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [184899] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8254), 1, - anon_sym_EQ2, - STATE(4819), 1, + STATE(4879), 1, sym_comment, - ACTIONS(5014), 2, + ACTIONS(988), 3, ts_builtin_sym_end, sym__space, - ACTIONS(5016), 11, + anon_sym_DOT, + ACTIONS(986), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384861,35 +393153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184926] = 4, + [187428] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4820), 1, - sym_comment, - ACTIONS(1376), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1378), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [184951] = 3, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(4821), 1, + ACTIONS(1772), 1, + sym__space, + STATE(4880), 1, sym_comment, - ACTIONS(5247), 14, + ACTIONS(1770), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384900,17 +393172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [184974] = 4, - ACTIONS(121), 1, + [187453] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, + ACTIONS(7857), 1, + sym__newline, + ACTIONS(7860), 1, sym__space, - STATE(4822), 1, + STATE(4881), 2, sym_comment, - ACTIONS(1804), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7863), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384922,39 +393196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [184999] = 6, - ACTIONS(3), 1, + [187480] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8211), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8256), 1, - anon_sym_DOT, - STATE(4823), 1, - sym_comment, - ACTIONS(1398), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - ACTIONS(1400), 9, - ts_builtin_sym_end, + ACTIONS(7865), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [185028] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8261), 1, - anon_sym_catch, - STATE(4824), 1, + ACTIONS(7870), 1, + anon_sym_else, + STATE(4882), 1, sym_comment, - ACTIONS(8259), 13, - sym__newline, + STATE(4966), 1, + aux_sym_shebang_repeat1, + ACTIONS(7868), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384966,16 +393219,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [185053] = 4, - ACTIONS(121), 1, + [187509] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5273), 1, - sym__space, - STATE(4825), 1, - sym_comment, - ACTIONS(5275), 13, + ACTIONS(7872), 1, sym__newline, + ACTIONS(7877), 1, + anon_sym_else, + STATE(4883), 1, + sym_comment, + STATE(4977), 1, + aux_sym_shebang_repeat1, + ACTIONS(7875), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384987,40 +393242,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [185078] = 7, - ACTIONS(3), 1, + [187538] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(889), 1, - anon_sym_DASH, - ACTIONS(7922), 1, - anon_sym_DOT, - STATE(4766), 1, - aux_sym_cell_path_repeat1, - STATE(4826), 1, - sym_comment, - STATE(5253), 1, - sym_path, - ACTIONS(891), 10, - sym_identifier, + ACTIONS(7879), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185109] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2351), 1, - sym__space, - STATE(4827), 1, + ACTIONS(7884), 1, + anon_sym_else, + STATE(4884), 1, sym_comment, - ACTIONS(2349), 13, - sym__newline, + STATE(4935), 1, + aux_sym_shebang_repeat1, + ACTIONS(7882), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385032,15 +393265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [185134] = 4, - ACTIONS(121), 1, + [187567] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(1745), 1, sym__space, - STATE(4828), 1, + STATE(4885), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(1741), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385054,18 +393286,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185159] = 6, - ACTIONS(3), 1, + [187592] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8263), 1, + ACTIONS(3009), 1, sym__newline, - ACTIONS(8268), 1, + ACTIONS(7886), 1, anon_sym_catch, - STATE(4795), 1, + STATE(728), 1, aux_sym_shebang_repeat1, - STATE(4829), 1, + STATE(4886), 1, sym_comment, - ACTIONS(8266), 11, + ACTIONS(1757), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385077,41 +393309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185188] = 6, + [187621] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8232), 1, - anon_sym_DOT_DOT2, - ACTIONS(8272), 1, - anon_sym_DASH, - STATE(4830), 1, + STATE(4887), 1, sym_comment, - ACTIONS(8234), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8270), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185217] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8159), 1, - sym__newline, - ACTIONS(8161), 1, + ACTIONS(992), 3, + ts_builtin_sym_end, sym__space, - STATE(4831), 1, - sym_comment, - STATE(4851), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(8274), 11, + anon_sym_DOT, + ACTIONS(990), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385122,15 +393330,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [185246] = 4, - ACTIONS(121), 1, + [187646] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(2297), 1, sym__space, - STATE(4832), 1, + STATE(4888), 1, sym_comment, - ACTIONS(1871), 13, + ACTIONS(2295), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385144,14 +393351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185271] = 4, - ACTIONS(121), 1, + [187671] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5111), 1, + ACTIONS(2342), 1, sym__space, - STATE(4833), 1, + STATE(4889), 1, sym_comment, - ACTIONS(5113), 13, + ACTIONS(2340), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385165,35 +393372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185296] = 4, + [187696] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4834), 1, - sym_comment, - ACTIONS(1368), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [185321] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2355), 1, + ACTIONS(5202), 1, sym__space, - STATE(4835), 1, + STATE(4890), 1, sym_comment, - ACTIONS(2353), 13, + ACTIONS(5204), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385207,40 +393393,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185346] = 4, + [187721] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4836), 1, + STATE(4891), 1, sym_comment, - ACTIONS(916), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(918), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(3485), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(3487), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - [185371] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [187746] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8276), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8278), 1, - aux_sym__unquoted_in_list_token2, - STATE(4837), 1, + ACTIONS(7889), 1, + aux_sym__immediate_decimal_token2, + STATE(4892), 1, sym_comment, - ACTIONS(5381), 2, + ACTIONS(1648), 3, sym_identifier, anon_sym_DASH, - ACTIONS(5395), 10, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 10, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -385251,18 +393436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [185400] = 6, + [187773] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8280), 1, - sym__newline, - ACTIONS(8285), 1, - anon_sym_else, - STATE(4838), 1, + ACTIONS(1749), 1, + sym__space, + STATE(4893), 1, sym_comment, - STATE(4887), 1, - aux_sym_shebang_repeat1, - ACTIONS(8283), 11, + ACTIONS(1747), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385274,14 +393456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185429] = 4, - ACTIONS(121), 1, + anon_sym_RBRACE, + [187798] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(2317), 1, sym__space, - STATE(4839), 1, + STATE(4894), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(2315), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385295,37 +393478,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185454] = 4, + [187823] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4840), 1, + ACTIONS(7497), 1, + sym__space, + STATE(4895), 1, sym_comment, - ACTIONS(1913), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1915), 12, - sym_identifier, + ACTIONS(7495), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [185479] = 4, - ACTIONS(121), 1, + anon_sym_RBRACE, + [187848] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7843), 1, - sym__space, - STATE(4841), 1, - sym_comment, - ACTIONS(7841), 13, + ACTIONS(7891), 1, sym__newline, + STATE(687), 1, + aux_sym__pipe_separator, + STATE(4896), 1, + sym_comment, + STATE(5418), 1, + aux_sym_shebang_repeat1, + ACTIONS(7894), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -385335,16 +393523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [185504] = 4, - ACTIONS(121), 1, + [187879] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(2435), 1, sym__space, - STATE(4842), 1, + STATE(4897), 1, sym_comment, - ACTIONS(1808), 13, + ACTIONS(2433), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385358,14 +393544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185529] = 4, - ACTIONS(121), 1, + [187904] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5123), 1, + ACTIONS(1798), 1, sym__space, - STATE(4843), 1, + STATE(4898), 1, sym_comment, - ACTIONS(5125), 13, + ACTIONS(1796), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385379,14 +393565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185554] = 4, - ACTIONS(121), 1, + [187929] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5127), 1, + ACTIONS(7898), 1, sym__space, - STATE(4844), 1, + STATE(4899), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(7896), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385400,67 +393586,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185579] = 9, - ACTIONS(3), 1, + [187954] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(7706), 1, + aux_sym__immediate_decimal_token2, + STATE(4900), 1, + sym_comment, + ACTIONS(1473), 3, anon_sym_DASH, - ACTIONS(4075), 1, anon_sym_DOT_DOT2, - ACTIONS(8287), 1, - sym_filesize_unit, - ACTIONS(8289), 1, - sym_duration_unit, - STATE(4845), 1, - sym_comment, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6629), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1441), 6, + aux_sym_unquoted_token2, + ACTIONS(1475), 10, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [185614] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(948), 1, - anon_sym_DASH, - ACTIONS(8232), 1, - anon_sym_DOT_DOT2, - STATE(4846), 1, - sym_comment, - ACTIONS(8234), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(950), 10, - sym_identifier, + sym_filesize_unit, + sym_duration_unit, + [187981] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7900), 1, sym__newline, + ACTIONS(7905), 1, + anon_sym_catch, + STATE(4901), 1, + sym_comment, + STATE(4926), 1, + aux_sym_shebang_repeat1, + ACTIONS(7903), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185643] = 6, + [188010] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8291), 1, - sym__newline, - ACTIONS(8296), 1, - anon_sym_else, - STATE(4792), 1, - aux_sym_shebang_repeat1, - STATE(4847), 1, + ACTIONS(2313), 1, + sym__space, + STATE(4902), 1, sym_comment, - ACTIONS(8294), 11, + ACTIONS(2311), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385472,18 +393651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185672] = 6, + anon_sym_RBRACE, + [188035] = 4, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8298), 1, - sym__newline, - ACTIONS(8303), 1, - anon_sym_else, - STATE(4838), 1, - aux_sym_shebang_repeat1, - STATE(4848), 1, + anon_sym_POUND, + ACTIONS(2265), 1, + sym__space, + STATE(4903), 1, sym_comment, - ACTIONS(8301), 11, + ACTIONS(2263), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385495,14 +393672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185701] = 4, - ACTIONS(121), 1, + anon_sym_RBRACE, + [188060] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - sym__space, - STATE(4849), 1, + ACTIONS(7909), 1, + anon_sym_else, + STATE(4904), 1, sym_comment, - ACTIONS(2293), 13, + ACTIONS(7907), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385516,15 +393694,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185726] = 4, - ACTIONS(3), 1, + [188085] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4850), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(3645), 1, + anon_sym_DOLLAR, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(7911), 1, + anon_sym_DOT, + ACTIONS(7915), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7917), 1, + aux_sym__immediate_decimal_token5, + STATE(4905), 1, + sym_comment, + STATE(5859), 1, + sym__immediate_decimal, + ACTIONS(7913), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6195), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1427), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [188126] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4906), 1, sym_comment, - ACTIONS(936), 2, + ACTIONS(1021), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(938), 12, + ACTIONS(1023), 12, sym_identifier, sym__newline, anon_sym_PIPE, @@ -385537,18 +393744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [185751] = 6, - ACTIONS(121), 1, + [188151] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8159), 1, - sym__newline, - ACTIONS(8161), 1, + ACTIONS(2423), 1, sym__space, - STATE(4786), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4851), 1, + STATE(4907), 1, sym_comment, - ACTIONS(8305), 11, + ACTIONS(2421), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385560,59 +393764,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185780] = 4, + anon_sym_RBRACE, + [188176] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4852), 1, + ACTIONS(2365), 1, + sym__space, + STATE(4908), 1, sym_comment, - ACTIONS(1470), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1472), 12, - sym_identifier, + ACTIONS(2363), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [185805] = 4, + anon_sym_RBRACE, + [188201] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4853), 1, + ACTIONS(7921), 1, + sym__space, + STATE(4909), 1, sym_comment, - ACTIONS(1376), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 10, + ACTIONS(7919), 13, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [185830] = 5, - ACTIONS(121), 1, + [188226] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7252), 1, - aux_sym_unquoted_token6, - STATE(4854), 1, + STATE(4910), 1, sym_comment, - ACTIONS(1441), 2, + ACTIONS(3373), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1429), 11, + anon_sym_LPAREN2, + ACTIONS(3375), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385624,35 +393828,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185857] = 4, - ACTIONS(3), 1, + [188251] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4855), 1, + STATE(4911), 1, sym_comment, - ACTIONS(1963), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1965), 12, - sym_identifier, + ACTIONS(5147), 14, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [185882] = 4, - ACTIONS(121), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_else, + anon_sym_catch, + [188274] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2369), 1, sym__space, - STATE(4856), 1, + STATE(4912), 1, sym_comment, - ACTIONS(2297), 13, + ACTIONS(2367), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385666,18 +393869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185907] = 6, + [188299] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8307), 1, - sym__newline, - ACTIONS(8312), 1, - anon_sym_else, - STATE(4801), 1, - aux_sym_shebang_repeat1, - STATE(4857), 1, + ACTIONS(2243), 1, + sym__space, + STATE(4913), 1, sym_comment, - ACTIONS(8310), 11, + ACTIONS(2241), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385689,37 +393889,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185936] = 6, + anon_sym_RBRACE, + [188324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1871), 1, - anon_sym_DASH, - ACTIONS(8314), 1, - anon_sym_DOT_DOT2, - STATE(4858), 1, + ACTIONS(7925), 1, + sym__space, + STATE(4914), 1, sym_comment, - ACTIONS(8316), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1877), 10, - sym_identifier, + ACTIONS(7923), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185965] = 4, - ACTIONS(121), 1, + anon_sym_RBRACE, + [188349] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(7929), 1, sym__space, - STATE(4859), 1, + STATE(4915), 1, sym_comment, - ACTIONS(2333), 13, + ACTIONS(7927), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385733,13 +393932,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185990] = 3, + [188374] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7931), 1, + sym__newline, + ACTIONS(7936), 1, + anon_sym_catch, + STATE(4901), 1, + aux_sym_shebang_repeat1, + STATE(4916), 1, + sym_comment, + ACTIONS(7934), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [188403] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4860), 1, + ACTIONS(7938), 1, + anon_sym_EQ2, + STATE(4917), 1, sym_comment, - ACTIONS(8007), 14, + ACTIONS(5005), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5007), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385751,19 +393977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [186013] = 4, - ACTIONS(3), 1, + [188430] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4861), 1, + ACTIONS(7940), 1, + aux_sym__immediate_decimal_token2, + STATE(4918), 1, sym_comment, - ACTIONS(1504), 4, + ACTIONS(1519), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1506), 10, + aux_sym_unquoted_token2, + ACTIONS(1521), 10, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -385774,36 +393999,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [186038] = 4, - ACTIONS(121), 1, + [188457] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(950), 1, - sym__space, - STATE(4862), 1, + STATE(4919), 1, sym_comment, - ACTIONS(948), 13, + ACTIONS(966), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(968), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [186063] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [188482] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4863), 1, + STATE(4920), 1, sym_comment, - ACTIONS(920), 2, + ACTIONS(976), 2, anon_sym_DASH, anon_sym_DOT, - ACTIONS(922), 12, + ACTIONS(978), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385816,15 +394041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_QMARK2, - [186088] = 4, - ACTIONS(3), 1, + [188507] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4864), 1, + STATE(4921), 1, sym_comment, - ACTIONS(912), 2, + ACTIONS(962), 2, anon_sym_DASH, anon_sym_DOT, - ACTIONS(914), 12, + ACTIONS(964), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385837,14 +394062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_QMARK2, - [186113] = 4, - ACTIONS(121), 1, + [188532] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2303), 1, + ACTIONS(7542), 1, sym__space, - STATE(4865), 1, + STATE(4922), 1, sym_comment, - ACTIONS(2301), 13, + ACTIONS(7540), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385858,14 +394083,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186138] = 4, - ACTIONS(121), 1, + [188557] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8320), 1, + ACTIONS(951), 1, + anon_sym_DASH, + ACTIONS(7644), 1, + anon_sym_DOT, + STATE(4923), 1, + sym_comment, + STATE(4930), 1, + aux_sym_cell_path_repeat1, + STATE(5204), 1, + sym_path, + ACTIONS(953), 10, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188588] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7942), 1, + ts_builtin_sym_end, + ACTIONS(7944), 1, sym__space, - STATE(4866), 1, + STATE(4876), 1, + aux_sym_command_repeat1, + STATE(4924), 1, sym_comment, - ACTIONS(8318), 13, + ACTIONS(7694), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385877,21 +394130,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186163] = 6, - ACTIONS(121), 1, + [188617] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8136), 1, + ACTIONS(1901), 1, sym__space, - ACTIONS(8322), 1, - ts_builtin_sym_end, - STATE(4783), 1, - aux_sym_command_repeat1, - STATE(4867), 1, + STATE(4925), 1, sym_comment, - ACTIONS(8023), 11, + ACTIONS(1899), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188642] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3009), 1, sym__newline, + ACTIONS(7946), 1, + anon_sym_catch, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4926), 1, + sym_comment, + ACTIONS(1757), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385902,14 +394173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186192] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + [188671] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2307), 1, + ACTIONS(1837), 1, sym__space, - STATE(4868), 1, + STATE(4927), 1, sym_comment, - ACTIONS(2305), 13, + ACTIONS(1835), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385923,18 +394195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186217] = 6, - ACTIONS(121), 1, + [188696] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8159), 1, - sym__newline, - ACTIONS(8161), 1, + ACTIONS(2313), 1, sym__space, - STATE(4786), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4869), 1, + STATE(4928), 1, sym_comment, - ACTIONS(8324), 11, + ACTIONS(2311), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385946,19 +394215,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186246] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [188721] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8232), 1, - anon_sym_DOT_DOT2, - ACTIONS(8328), 1, + STATE(4929), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1475), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [188746] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(955), 1, anon_sym_DASH, - STATE(4870), 1, + ACTIONS(7949), 1, + anon_sym_DOT, + STATE(5204), 1, + sym_path, + STATE(4930), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(957), 10, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188775] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7954), 1, + anon_sym_DASH, + ACTIONS(7956), 1, + anon_sym_DOT_DOT2, + STATE(4931), 1, sym_comment, - ACTIONS(8234), 2, + ACTIONS(7958), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(8326), 10, + ACTIONS(7952), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -385969,16 +394283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186275] = 4, - ACTIONS(121), 1, + [188804] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4871), 1, - sym_comment, - ACTIONS(926), 3, - ts_builtin_sym_end, + ACTIONS(5129), 1, sym__space, - anon_sym_DOT, - ACTIONS(924), 11, + STATE(4932), 1, + sym_comment, + ACTIONS(5131), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385990,14 +394302,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186300] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188829] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(5133), 1, sym__space, - STATE(4872), 1, + STATE(4933), 1, sym_comment, - ACTIONS(1816), 13, + ACTIONS(5135), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386011,14 +394325,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186325] = 4, - ACTIONS(121), 1, + [188854] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(5210), 1, sym__space, - STATE(4873), 1, + STATE(4934), 1, sym_comment, - ACTIONS(1947), 13, + ACTIONS(5212), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386032,17 +394346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186350] = 4, - ACTIONS(121), 1, + [188879] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4874), 1, - sym_comment, - ACTIONS(934), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(932), 11, + ACTIONS(7960), 1, sym__newline, + ACTIONS(7965), 1, + anon_sym_else, + STATE(4935), 1, + sym_comment, + STATE(4968), 1, + aux_sym_shebang_repeat1, + ACTIONS(7963), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386053,17 +394368,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186375] = 5, - ACTIONS(121), 1, + anon_sym_RPAREN, + [188908] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7755), 1, - aux_sym__immediate_decimal_token1, - STATE(4875), 1, + STATE(4936), 1, sym_comment, - ACTIONS(2267), 2, + ACTIONS(996), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2263), 11, + anon_sym_DOT, + ACTIONS(994), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386075,38 +394390,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186402] = 6, + [188933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8330), 1, + ACTIONS(7967), 1, sym__newline, - ACTIONS(8335), 1, - anon_sym_else, - STATE(4810), 1, - aux_sym_shebang_repeat1, - STATE(4876), 1, - sym_comment, - ACTIONS(8333), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [186431] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(7689), 1, + ACTIONS(7969), 1, sym__space, - STATE(4877), 1, + STATE(4937), 1, sym_comment, - ACTIONS(7687), 13, - sym__newline, + STATE(4964), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7971), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386118,16 +394413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [186456] = 4, - ACTIONS(3), 1, + [188962] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4878), 1, - sym_comment, - ACTIONS(1535), 2, - anon_sym_DASH, + ACTIONS(7956), 1, anon_sym_DOT_DOT2, - ACTIONS(1537), 12, + ACTIONS(7975), 1, + anon_sym_DASH, + STATE(4938), 1, + sym_comment, + ACTIONS(7958), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7973), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -386138,22 +394436,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [186481] = 6, - ACTIONS(3), 1, + [188991] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - STATE(4879), 1, + ACTIONS(1006), 1, + anon_sym_DASH, + ACTIONS(7956), 1, + anon_sym_DOT_DOT2, + STATE(4939), 1, sym_comment, - ACTIONS(1570), 2, + ACTIONS(7958), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1008), 10, sym_identifier, - anon_sym_DASH, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1580), 9, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -386163,14 +394459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186510] = 4, - ACTIONS(121), 1, + [189020] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5163), 1, + ACTIONS(1869), 1, sym__space, - STATE(4880), 1, + STATE(4940), 1, sym_comment, - ACTIONS(5165), 13, + ACTIONS(1867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386184,14 +394480,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186535] = 4, + [189045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8339), 1, - anon_sym_else, - STATE(4881), 1, + ACTIONS(2373), 1, + sym__space, + STATE(4941), 1, sym_comment, - ACTIONS(8337), 13, + ACTIONS(2371), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386205,14 +394501,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186560] = 3, - ACTIONS(121), 1, + [189070] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4882), 1, + ACTIONS(7977), 1, + anon_sym_LBRACK2, + STATE(4942), 1, sym_comment, - ACTIONS(5275), 14, - sym__newline, + ACTIONS(2239), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(2235), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386223,18 +394523,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_record_entry_token1, - [186583] = 4, - ACTIONS(121), 1, + [189097] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2311), 1, - sym__space, - STATE(4883), 1, - sym_comment, - ACTIONS(2309), 13, + ACTIONS(7979), 1, sym__newline, + STATE(687), 1, + aux_sym__pipe_separator, + STATE(4943), 1, + sym_comment, + STATE(5418), 1, + aux_sym_shebang_repeat1, + ACTIONS(7982), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386244,16 +394547,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [189128] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7984), 1, + anon_sym_DOT, + ACTIONS(7986), 1, + aux_sym__immediate_decimal_token2, + STATE(4944), 1, + sym_comment, + ACTIONS(1589), 3, + sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 9, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [186608] = 4, - ACTIONS(121), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [189157] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2359), 1, + ACTIONS(1881), 1, sym__space, - STATE(4884), 1, + STATE(4945), 1, sym_comment, - ACTIONS(2357), 13, + ACTIONS(1879), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386267,14 +394591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186633] = 4, - ACTIONS(121), 1, + [189182] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1735), 1, + ACTIONS(5166), 1, sym__space, - STATE(4885), 1, + STATE(4946), 1, sym_comment, - ACTIONS(1733), 13, + ACTIONS(5168), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386288,14 +394612,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186658] = 4, - ACTIONS(121), 1, + [189207] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(5170), 1, sym__space, - STATE(4886), 1, + STATE(4947), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(5172), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386309,18 +394633,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186683] = 6, + [189232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2985), 1, + ACTIONS(7944), 1, + sym__space, + ACTIONS(7988), 1, + ts_builtin_sym_end, + STATE(4924), 1, + aux_sym_command_repeat1, + STATE(4948), 1, + sym_comment, + ACTIONS(7788), 11, sym__newline, - ACTIONS(8341), 1, - anon_sym_else, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4887), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [189261] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2431), 1, + sym__space, + STATE(4949), 1, sym_comment, - ACTIONS(1858), 11, + ACTIONS(2429), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386332,14 +394676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186712] = 4, - ACTIONS(121), 1, + anon_sym_RBRACE, + [189286] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(2283), 1, sym__space, - STATE(4888), 1, + STATE(4950), 1, sym_comment, - ACTIONS(2226), 13, + ACTIONS(2281), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386353,14 +394698,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186737] = 4, - ACTIONS(121), 1, + [189311] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5167), 1, + ACTIONS(7992), 1, sym__space, - STATE(4889), 1, + STATE(4951), 1, sym_comment, - ACTIONS(5169), 13, + ACTIONS(7990), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386374,21 +394719,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186762] = 7, - ACTIONS(3), 1, + [189336] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8344), 1, + ACTIONS(7646), 1, sym__newline, - STATE(680), 1, + STATE(685), 1, aux_sym__pipe_separator, - STATE(4890), 1, + STATE(4952), 1, sym_comment, - STATE(5400), 1, + STATE(5418), 1, aux_sym_shebang_repeat1, - ACTIONS(8347), 2, + ACTIONS(7649), 2, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2825), 9, + ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386398,36 +394743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186793] = 4, + [189367] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4891), 1, - sym_comment, - ACTIONS(1608), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1610), 12, - sym_identifier, + ACTIONS(7967), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [186818] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2275), 1, + ACTIONS(7969), 1, sym__space, - STATE(4892), 1, + STATE(4953), 1, sym_comment, - ACTIONS(2273), 13, - sym__newline, + STATE(4971), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7994), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386439,18 +394766,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [186843] = 4, - ACTIONS(3), 1, + [189396] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4893), 1, + STATE(4954), 1, sym_comment, - ACTIONS(1470), 4, - sym_identifier, - anon_sym_DASH, + ACTIONS(1585), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1587), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 10, + [189421] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7956), 1, + anon_sym_DOT_DOT2, + ACTIONS(7998), 1, + anon_sym_DASH, + STATE(4955), 1, + sym_comment, + ACTIONS(7958), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7996), 10, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -386460,15 +394810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [186868] = 4, - ACTIONS(121), 1, + [189450] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(2350), 1, sym__space, - STATE(4894), 1, + STATE(4956), 1, sym_comment, - ACTIONS(1683), 13, + ACTIONS(2348), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386482,41 +394831,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186893] = 6, + [189475] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_LPAREN2, - STATE(4895), 1, + ACTIONS(2261), 1, + sym__space, + STATE(4957), 1, sym_comment, - ACTIONS(1939), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1943), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1945), 9, + ACTIONS(2259), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186922] = 6, - ACTIONS(121), 1, + anon_sym_RBRACE, + [189500] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8136), 1, + ACTIONS(7355), 1, sym__space, - ACTIONS(8349), 1, - ts_builtin_sym_end, - STATE(4779), 1, - aux_sym_command_repeat1, - STATE(4896), 1, + STATE(4958), 1, sym_comment, - ACTIONS(8033), 11, + ACTIONS(7353), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386528,14 +394871,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186951] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189525] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2315), 1, + STATE(4959), 1, + sym_comment, + ACTIONS(1519), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1521), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [189550] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7944), 1, sym__space, - STATE(4897), 1, + ACTIONS(8000), 1, + ts_builtin_sym_end, + STATE(4876), 1, + aux_sym_command_repeat1, + STATE(4960), 1, sym_comment, - ACTIONS(2313), 13, + ACTIONS(7790), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386547,16 +394917,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186976] = 4, - ACTIONS(121), 1, + [189579] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4961), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1483), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [189604] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2190), 1, + ACTIONS(2381), 1, sym__space, - STATE(4898), 1, + STATE(4962), 1, sym_comment, - ACTIONS(2188), 13, + ACTIONS(2379), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386570,14 +394959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187001] = 4, - ACTIONS(121), 1, + [189629] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7639), 1, + ACTIONS(2439), 1, sym__space, - STATE(4899), 1, + STATE(4963), 1, sym_comment, - ACTIONS(7637), 13, + ACTIONS(2437), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386591,18 +394980,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187026] = 6, + [189654] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2985), 1, + ACTIONS(7967), 1, sym__newline, - ACTIONS(8351), 1, - anon_sym_catch, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(4900), 1, + ACTIONS(7969), 1, + sym__space, + STATE(4881), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4964), 1, sym_comment, - ACTIONS(1858), 11, + ACTIONS(8002), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386614,21 +395003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187055] = 7, + [189683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8081), 1, - sym__newline, - STATE(679), 1, - aux_sym__pipe_separator, - STATE(4901), 1, + STATE(4965), 1, sym_comment, - STATE(5400), 1, - aux_sym_shebang_repeat1, - ACTIONS(8084), 2, - ts_builtin_sym_end, + ACTIONS(5220), 14, + sym__newline, + sym__space, anon_sym_SEMI, - ACTIONS(2825), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386638,21 +395021,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187086] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [189706] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8354), 1, + ACTIONS(3009), 1, sym__newline, - STATE(680), 1, - aux_sym__pipe_separator, - STATE(4902), 1, - sym_comment, - STATE(5400), 1, + ACTIONS(8004), 1, + anon_sym_else, + STATE(728), 1, aux_sym_shebang_repeat1, - ACTIONS(8357), 2, + STATE(4966), 1, + sym_comment, + ACTIONS(1757), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2825), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386662,15 +395045,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187117] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + [189735] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2339), 1, + ACTIONS(4060), 1, + anon_sym_DOLLAR, + ACTIONS(7824), 1, + sym__newline, + ACTIONS(7826), 1, sym__space, - STATE(4903), 1, + ACTIONS(7828), 1, + anon_sym_DASH_DASH, + ACTIONS(7830), 1, + anon_sym_DASH, + ACTIONS(7832), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(4967), 1, sym_comment, - ACTIONS(2337), 13, + STATE(5840), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7712), 1, + sym__flag, + STATE(672), 2, + sym__blosure, + sym_val_variable, + STATE(4979), 2, + sym_short_flag, + sym_long_flag, + [189780] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3009), 1, sym__newline, + ACTIONS(8007), 1, + anon_sym_else, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4968), 1, + sym_comment, + ACTIONS(1757), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386682,61 +395100,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [187142] = 7, - ACTIONS(3), 1, + [189809] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(8359), 1, - aux_sym__immediate_decimal_token1, - STATE(4904), 1, + STATE(4969), 1, sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1701), 2, - sym_identifier, + ACTIONS(1953), 2, anon_sym_DASH, - ACTIONS(1705), 8, + anon_sym_DOT_DOT2, + ACTIONS(1955), 12, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187173] = 4, - ACTIONS(121), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [189834] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4905), 1, + ACTIONS(8010), 1, + anon_sym_DOT, + ACTIONS(8012), 1, + aux_sym__immediate_decimal_token2, + STATE(4970), 1, sym_comment, - ACTIONS(3241), 3, + ACTIONS(1473), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 9, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(3239), 11, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [187198] = 4, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189863] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2319), 1, + ACTIONS(7967), 1, + sym__newline, + ACTIONS(7969), 1, sym__space, - STATE(4906), 1, + STATE(4881), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4971), 1, sym_comment, - ACTIONS(2317), 13, - sym__newline, + ACTIONS(8014), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386748,15 +395167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [187223] = 4, - ACTIONS(121), 1, + [189892] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5115), 1, + ACTIONS(1780), 1, sym__space, - STATE(4907), 1, + STATE(4972), 1, sym_comment, - ACTIONS(5117), 13, + ACTIONS(1778), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386770,14 +395188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187248] = 4, - ACTIONS(121), 1, + [189917] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(1841), 1, sym__space, - STATE(4908), 1, + STATE(4973), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(1839), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386791,90 +395209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187273] = 6, + [189942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - ACTIONS(8361), 1, - anon_sym_DOT_DOT2, - STATE(4909), 1, + STATE(4974), 1, sym_comment, - ACTIONS(8363), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1885), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187302] = 14, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(3923), 1, - anon_sym_DOLLAR, - ACTIONS(8144), 1, + ACTIONS(5204), 14, sym__newline, - ACTIONS(8146), 1, - sym__space, - ACTIONS(8148), 1, - anon_sym_DASH_DASH, - ACTIONS(8150), 1, - anon_sym_DASH, - ACTIONS(8152), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(4910), 1, - sym_comment, - STATE(5830), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7478), 1, - sym__flag, - STATE(670), 2, - sym__blosure, - sym_val_variable, - STATE(4833), 2, - sym_short_flag, - sym_long_flag, - [187347] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4911), 1, - sym_comment, - ACTIONS(1504), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1506), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [187372] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5131), 1, sym__space, - STATE(4912), 1, - sym_comment, - ACTIONS(5133), 13, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386885,17 +395227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [187397] = 4, - ACTIONS(121), 1, + aux_sym_record_entry_token1, + [189965] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5119), 1, - sym__space, - STATE(4913), 1, - sym_comment, - ACTIONS(5121), 13, + ACTIONS(8016), 1, sym__newline, + ACTIONS(8021), 1, + anon_sym_catch, + STATE(4886), 1, + aux_sym_shebang_repeat1, + STATE(4975), 1, + sym_comment, + ACTIONS(8019), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386907,15 +395252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [187422] = 4, - ACTIONS(121), 1, + [189994] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2279), 1, + ACTIONS(2427), 1, sym__space, - STATE(4914), 1, + STATE(4976), 1, sym_comment, - ACTIONS(2277), 13, + ACTIONS(2425), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386929,36 +395273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187447] = 4, - ACTIONS(3), 1, + [190019] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4915), 1, - sym_comment, - ACTIONS(1959), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1961), 12, - sym_identifier, + ACTIONS(8023), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [187472] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1822), 1, - sym__space, - STATE(4916), 1, + ACTIONS(8028), 1, + anon_sym_else, + STATE(4869), 1, + aux_sym_shebang_repeat1, + STATE(4977), 1, sym_comment, - ACTIONS(1820), 13, - sym__newline, + ACTIONS(8026), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386970,19 +395296,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [187497] = 5, - ACTIONS(121), 1, + [190048] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3241), 1, - ts_builtin_sym_end, - ACTIONS(8025), 1, - aux_sym_unquoted_token3, - STATE(4917), 1, - sym_comment, - ACTIONS(3239), 12, + ACTIONS(3009), 1, sym__newline, - sym__space, + ACTIONS(8030), 1, + anon_sym_else, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(4978), 1, + sym_comment, + ACTIONS(1757), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386993,41 +395318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187524] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_LPAREN2, - STATE(4918), 1, - sym_comment, - ACTIONS(1427), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1923), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1927), 9, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187553] = 6, + [190077] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8365), 1, - sym__newline, - ACTIONS(8370), 1, - anon_sym_catch, - STATE(4755), 1, - aux_sym_shebang_repeat1, - STATE(4919), 1, + ACTIONS(5151), 1, + sym__space, + STATE(4979), 1, sym_comment, - ACTIONS(8368), 11, + ACTIONS(5153), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387039,109 +395339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187582] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8374), 1, - anon_sym_QMARK, - ACTIONS(8376), 1, - anon_sym_DASH, - STATE(4920), 1, - sym_comment, - ACTIONS(8372), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187608] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2927), 1, - anon_sym_DASH, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8378), 1, - anon_sym_DOT, - ACTIONS(8380), 1, - aux_sym_unquoted_token4, - ACTIONS(8382), 1, - aux_sym_unquoted_token6, - STATE(4921), 1, - sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2925), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [187644] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2927), 1, - anon_sym_DASH, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(6629), 1, - aux_sym_unquoted_token5, - STATE(4922), 1, - sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2925), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [187678] = 6, + [190102] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8384), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8386), 1, - aux_sym__immediate_decimal_token2, - STATE(4923), 1, - sym_comment, - ACTIONS(1368), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187706] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(4924), 1, - sym_comment, - ACTIONS(1746), 2, - ts_builtin_sym_end, + ACTIONS(2305), 1, sym__space, - ACTIONS(1744), 11, + STATE(4980), 1, + sym_comment, + ACTIONS(2303), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387153,15 +395359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187730] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190127] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4925), 1, - sym_comment, - ACTIONS(1687), 2, - ts_builtin_sym_end, + ACTIONS(2334), 1, sym__space, - ACTIONS(1683), 11, + STATE(4981), 1, + sym_comment, + ACTIONS(2332), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387173,15 +395380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187754] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190152] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4926), 1, + ACTIONS(7944), 1, + sym__space, + ACTIONS(8033), 1, + ts_builtin_sym_end, + STATE(4960), 1, + aux_sym_command_repeat1, + STATE(4982), 1, sym_comment, - ACTIONS(2190), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2188), 11, + ACTIONS(7779), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387193,15 +395405,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187778] = 4, - ACTIONS(121), 1, + [190181] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4927), 1, - sym_comment, - ACTIONS(7639), 2, - ts_builtin_sym_end, + ACTIONS(1941), 1, sym__space, - ACTIONS(7637), 11, + STATE(4983), 1, + sym_comment, + ACTIONS(1935), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387213,40 +395424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187802] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8390), 1, - anon_sym_DASH, - STATE(4928), 1, - sym_comment, - STATE(8032), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8388), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187830] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [190206] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8394), 1, - anon_sym_DASH, - STATE(4929), 1, + STATE(4984), 1, sym_comment, - STATE(8032), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8392), 10, + ACTIONS(1943), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1945), 12, sym_identifier, sym__newline, anon_sym_PIPE, @@ -387257,15 +395445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187858] = 4, - ACTIONS(121), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [190231] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4930), 1, - sym_comment, - ACTIONS(2228), 2, - ts_builtin_sym_end, + ACTIONS(2346), 1, sym__space, - ACTIONS(2226), 11, + STATE(4985), 1, + sym_comment, + ACTIONS(2344), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387277,16 +395466,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187882] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190256] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4931), 1, - sym_comment, - ACTIONS(2275), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2273), 11, + ACTIONS(8035), 1, sym__newline, + ACTIONS(8040), 1, + anon_sym_else, + STATE(4978), 1, + aux_sym_shebang_repeat1, + STATE(4986), 1, + sym_comment, + ACTIONS(8038), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387297,14 +395490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187906] = 4, + anon_sym_RPAREN, + [190285] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4932), 1, + ACTIONS(2338), 1, + sym__space, + STATE(4987), 1, sym_comment, - STATE(5058), 1, - aux_sym_shebang_repeat1, - ACTIONS(8396), 12, + ACTIONS(2336), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387317,12 +395511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187930] = 3, + anon_sym_RBRACE, + [190310] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4933), 1, + ACTIONS(1857), 1, + sym__space, + STATE(4988), 1, sym_comment, - ACTIONS(8398), 13, + ACTIONS(1855), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387336,34 +395533,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187952] = 6, - ACTIONS(121), 1, + [190335] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym__unquoted_in_list_token7, - STATE(4934), 1, + ACTIONS(8042), 1, + anon_sym_EQ2, + STATE(4989), 1, sym_comment, - ACTIONS(950), 5, + ACTIONS(5039), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5041), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(948), 6, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [187980] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190362] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4935), 1, + ACTIONS(2385), 1, + sym__space, + STATE(4990), 1, sym_comment, - ACTIONS(8400), 13, + ACTIONS(2383), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387377,16 +395576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188002] = 5, + [190387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(8402), 1, - sym__newline, - STATE(4936), 1, + ACTIONS(5137), 1, + sym__space, + STATE(4991), 1, sym_comment, - ACTIONS(8404), 11, + ACTIONS(5139), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387397,17 +395595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [188028] = 5, + [190412] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(8406), 1, - sym__newline, - STATE(4937), 1, + ACTIONS(5141), 1, + sym__space, + STATE(4992), 1, sym_comment, - ACTIONS(8408), 11, + ACTIONS(5143), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387418,45 +395616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [188054] = 13, + [190437] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(8410), 1, - anon_sym_DOLLAR, - ACTIONS(8412), 1, - anon_sym_DASH_DASH, - ACTIONS(8414), 1, - anon_sym_DASH, - ACTIONS(8416), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(4938), 1, - sym_comment, - STATE(5201), 1, - aux_sym_ctrl_do_repeat1, - STATE(6298), 1, - sym__flag, - STATE(668), 2, - sym__blosure, - sym_val_variable, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [188096] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(4939), 1, - sym_comment, - ACTIONS(5224), 2, - ts_builtin_sym_end, + ACTIONS(2328), 1, sym__space, - ACTIONS(5226), 11, + STATE(4993), 1, + sym_comment, + ACTIONS(2326), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387468,12 +395637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188120] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190462] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4940), 1, + ACTIONS(1008), 1, + sym__space, + STATE(4994), 1, sym_comment, - ACTIONS(8418), 13, + ACTIONS(1006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387487,56 +395660,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188142] = 6, - ACTIONS(121), 1, + [190487] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token7, - STATE(4941), 1, + STATE(4995), 1, sym_comment, - ACTIONS(2081), 5, + ACTIONS(1982), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1984), 12, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2077), 6, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - [188170] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8420), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8422), 1, - aux_sym__immediate_decimal_token2, - STATE(4942), 1, - sym_comment, - ACTIONS(1370), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1368), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [188198] = 3, + [190512] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4943), 1, + ACTIONS(2403), 1, + sym__space, + STATE(4996), 1, sym_comment, - ACTIONS(8320), 13, + ACTIONS(2401), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387550,59 +395702,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188220] = 6, - ACTIONS(121), 1, + [190537] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym__unquoted_in_list_token7, - STATE(4944), 1, + ACTIONS(8044), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8046), 1, + aux_sym__immediate_decimal_token2, + STATE(4997), 1, sym_comment, - ACTIONS(2159), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2155), 6, + ACTIONS(1569), 3, sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_DASH, - [188248] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym__unquoted_in_list_token7, - STATE(4945), 1, - sym_comment, - ACTIONS(2165), 5, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 9, sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2163), 6, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - [188276] = 4, - ACTIONS(121), 1, + anon_sym_LPAREN2, + [190566] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4946), 1, - sym_comment, - ACTIONS(2232), 2, - ts_builtin_sym_end, + ACTIONS(2072), 1, sym__space, - ACTIONS(2230), 11, + STATE(4998), 1, + sym_comment, + ACTIONS(2066), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387614,15 +395744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188300] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190591] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4947), 1, - sym_comment, - ACTIONS(8219), 2, - ts_builtin_sym_end, + ACTIONS(1978), 1, sym__space, - ACTIONS(8217), 11, + STATE(4999), 1, + sym_comment, + ACTIONS(1972), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387634,59 +395765,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188324] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8426), 1, - anon_sym_DASH, - STATE(4948), 1, - sym_comment, - STATE(8032), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8424), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188352] = 6, + anon_sym_RBRACE, + [190616] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8430), 1, - anon_sym_DASH, - STATE(4949), 1, + ACTIONS(2361), 1, + sym__space, + STATE(5000), 1, sym_comment, - STATE(8032), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8428), 10, - sym_identifier, + ACTIONS(2359), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188380] = 4, + anon_sym_RBRACE, + [190641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8432), 1, - anon_sym_else, - STATE(4950), 1, + ACTIONS(2273), 1, + sym__space, + STATE(5001), 1, sym_comment, - ACTIONS(8337), 12, - ts_builtin_sym_end, + ACTIONS(2271), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387698,133 +395807,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188404] = 14, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1350), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1362), 1, - sym__entry_separator, - ACTIONS(1364), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(1366), 1, - aux_sym__unquoted_in_record_token6, - ACTIONS(2885), 1, - anon_sym_DOLLAR, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8436), 1, - anon_sym_DOT, - ACTIONS(8438), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8440), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token4, - STATE(4951), 1, - sym_comment, - STATE(5729), 1, - sym__immediate_decimal, - STATE(5967), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188448] = 4, - ACTIONS(121), 1, + [190666] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4952), 1, + ACTIONS(1966), 1, + sym__space, + STATE(5002), 1, sym_comment, - ACTIONS(2075), 6, + ACTIONS(1960), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN2, - ACTIONS(2073), 7, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym__unquoted_in_list_token7, - [188472] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [190691] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8446), 1, - anon_sym_DASH, - STATE(4953), 1, + STATE(5003), 1, sym_comment, - ACTIONS(8444), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7781), 14, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188496] = 9, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_else, + anon_sym_catch, + [190714] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(8048), 1, sym__newline, - ACTIONS(8450), 1, - anon_sym_EQ, - ACTIONS(8452), 1, - anon_sym_COMMA, - ACTIONS(8454), 1, - anon_sym_DASH, - STATE(4954), 1, - sym_comment, - STATE(5272), 1, + ACTIONS(8053), 1, + anon_sym_else, + STATE(4986), 1, aux_sym_shebang_repeat1, - STATE(5407), 1, - sym_param_value, - ACTIONS(8448), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188530] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(8454), 1, - anon_sym_DASH, - ACTIONS(8456), 1, - anon_sym_COMMA, - STATE(4955), 1, + STATE(5004), 1, sym_comment, - STATE(5408), 1, - sym_param_type, - STATE(5409), 1, - aux_sym_shebang_repeat1, - ACTIONS(8448), 7, - sym_identifier, + ACTIONS(8051), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188564] = 3, + [190743] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4956), 1, + STATE(5005), 1, sym_comment, - ACTIONS(8458), 13, + ACTIONS(5212), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387835,15 +395891,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [188586] = 3, - ACTIONS(3), 1, + aux_sym_record_entry_token1, + [190766] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4957), 1, - sym_comment, - ACTIONS(8460), 13, + ACTIONS(8055), 1, sym__newline, + ACTIONS(8060), 1, + anon_sym_else, + STATE(4882), 1, + aux_sym_shebang_repeat1, + STATE(5006), 1, + sym_comment, + ACTIONS(8058), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387855,63 +395916,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [188608] = 9, - ACTIONS(3), 1, + [190795] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8450), 1, - anon_sym_EQ, - ACTIONS(8464), 1, - anon_sym_COMMA, - ACTIONS(8466), 1, + ACTIONS(1935), 1, anon_sym_DASH, - STATE(4958), 1, + ACTIONS(8062), 1, + anon_sym_DOT_DOT2, + STATE(5007), 1, sym_comment, - STATE(5275), 1, - aux_sym_shebang_repeat1, - STATE(5411), 1, - sym_param_value, - ACTIONS(8462), 7, + ACTIONS(8064), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1941), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188642] = 9, - ACTIONS(3), 1, + [190824] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(8464), 1, - anon_sym_COMMA, - ACTIONS(8466), 1, + ACTIONS(2066), 1, anon_sym_DASH, - STATE(4959), 1, + ACTIONS(8066), 1, + anon_sym_DOT_DOT2, + STATE(5008), 1, sym_comment, - STATE(5411), 1, - sym_param_type, - STATE(5415), 1, - aux_sym_shebang_repeat1, - ACTIONS(8462), 7, + ACTIONS(8068), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188676] = 3, + [190853] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8070), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8072), 1, + aux_sym__immediate_decimal_token2, + STATE(5009), 1, + sym_comment, + ACTIONS(1481), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190882] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4960), 1, + ACTIONS(5158), 1, + sym__space, + STATE(5010), 1, sym_comment, - ACTIONS(8468), 13, + ACTIONS(5160), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387925,39 +396006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188698] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8470), 1, - anon_sym_DOLLAR, - ACTIONS(8472), 1, - anon_sym_DOT, - ACTIONS(8476), 1, - aux_sym__immediate_decimal_token4, - STATE(4961), 1, - sym_comment, - STATE(6192), 1, - sym__immediate_decimal, - ACTIONS(8474), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3512), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1425), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [188736] = 3, + [190907] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4962), 1, + ACTIONS(5162), 1, + sym__space, + STATE(5011), 1, sym_comment, - ACTIONS(8478), 13, + ACTIONS(5164), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387971,48 +396027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188758] = 15, - ACTIONS(3), 1, + [190932] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, + ACTIONS(1972), 1, anon_sym_DASH, - ACTIONS(8480), 1, - anon_sym_PIPE, - STATE(4375), 1, - sym_param_long_flag, - STATE(4683), 1, - sym__param_name, - STATE(4963), 1, - sym_comment, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5282), 1, - sym_param_short_flag, - [188804] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8482), 1, - anon_sym_QMARK2, - STATE(4964), 1, + ACTIONS(8074), 1, + anon_sym_DOT_DOT2, + STATE(5012), 1, sym_comment, - ACTIONS(900), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(902), 10, + ACTIONS(8076), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1978), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -388023,17 +396050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188830] = 5, - ACTIONS(3), 1, + [190961] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8484), 1, - anon_sym_QMARK2, - STATE(4965), 1, - sym_comment, - ACTIONS(906), 2, + ACTIONS(1960), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(908), 10, + ACTIONS(8078), 1, + anon_sym_DOT_DOT2, + STATE(5013), 1, + sym_comment, + ACTIONS(8080), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1966), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -388044,67 +396073,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188856] = 5, + [190990] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2178), 1, - anon_sym_DASH, - ACTIONS(8486), 1, - anon_sym_LBRACK2, - STATE(4966), 1, + ACTIONS(2407), 1, + sym__space, + STATE(5014), 1, sym_comment, - ACTIONS(2182), 11, - sym_identifier, + ACTIONS(2405), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [188882] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(7944), 1, - anon_sym_PIPE, - STATE(4375), 1, - sym_param_long_flag, - STATE(4683), 1, - sym__param_name, - STATE(4967), 1, - sym_comment, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5282), 1, - sym_param_short_flag, - [188928] = 4, + anon_sym_RBRACE, + [191015] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8488), 1, - anon_sym_catch, - STATE(4968), 1, + ACTIONS(2411), 1, + sym__space, + STATE(5015), 1, sym_comment, - ACTIONS(8259), 12, - ts_builtin_sym_end, + ACTIONS(2409), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388116,12 +396113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188952] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191040] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4969), 1, + ACTIONS(2415), 1, + sym__space, + STATE(5016), 1, sym_comment, - ACTIONS(8490), 13, + ACTIONS(2413), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388135,12 +396136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188974] = 3, + [191065] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4970), 1, + ACTIONS(2354), 1, + sym__space, + STATE(5017), 1, sym_comment, - ACTIONS(8492), 13, + ACTIONS(2352), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388154,12 +396157,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188996] = 3, + [191090] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4971), 1, + ACTIONS(8084), 1, + sym__space, + STATE(5018), 1, sym_comment, - ACTIONS(8494), 13, + ACTIONS(8082), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388173,12 +396178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189018] = 3, + [191115] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4972), 1, + STATE(5019), 1, sym_comment, - ACTIONS(8496), 13, + ACTIONS(1941), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1935), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388190,60 +396198,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [189040] = 4, + [191139] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(916), 1, - anon_sym_DASH, - STATE(4973), 1, - sym_comment, - ACTIONS(918), 12, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(1413), 1, + anon_sym_RBRACK, + ACTIONS(1427), 1, + sym__entry_separator, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2921), 1, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8088), 1, anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [189064] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(920), 1, - anon_sym_DASH, - STATE(4974), 1, + ACTIONS(8090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8092), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8094), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8096), 1, + aux_sym__immediate_decimal_token5, + STATE(5020), 1, sym_comment, - ACTIONS(922), 12, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [189088] = 6, - ACTIONS(3), 1, + STATE(5853), 1, + sym__immediate_decimal, + STATE(6192), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191183] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8272), 1, + ACTIONS(2235), 1, anon_sym_DASH, - STATE(4975), 1, + ACTIONS(8098), 1, + anon_sym_LBRACK2, + STATE(5021), 1, sym_comment, - STATE(7488), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8270), 10, + ACTIONS(2239), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -388254,69 +396248,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189116] = 4, + aux_sym_ctrl_match_token1, + [191209] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(912), 1, - anon_sym_DASH, - STATE(4976), 1, + STATE(5022), 1, sym_comment, - ACTIONS(914), 12, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [189140] = 9, + ACTIONS(7898), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7896), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [191233] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8450), 1, - anon_sym_EQ, - ACTIONS(8500), 1, - anon_sym_COMMA, - ACTIONS(8502), 1, - anon_sym_DASH, - STATE(4977), 1, + STATE(5023), 1, sym_comment, - STATE(5176), 1, - aux_sym_shebang_repeat1, - STATE(5370), 1, - sym_param_value, - ACTIONS(8498), 7, - sym_identifier, + ACTIONS(2313), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2311), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [189174] = 9, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [191257] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(7657), 1, + ACTIONS(7419), 1, anon_sym_COLON, - ACTIONS(8500), 1, + ACTIONS(8102), 1, anon_sym_COMMA, - ACTIONS(8502), 1, + ACTIONS(8104), 1, anon_sym_DASH, - STATE(4978), 1, + STATE(5024), 1, sym_comment, - STATE(5370), 1, + STATE(5435), 1, sym_param_type, - STATE(5376), 1, + STATE(5440), 1, aux_sym_shebang_repeat1, - ACTIONS(8498), 7, + ACTIONS(8100), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -388324,238 +396314,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189208] = 12, + [191291] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOLLAR, - ACTIONS(5002), 1, - aux_sym_unquoted_token4, - ACTIONS(5004), 1, - aux_sym_unquoted_token6, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8504), 1, - anon_sym_DOT, - ACTIONS(8508), 1, - aux_sym__immediate_decimal_token4, - STATE(4979), 1, - sym_comment, - STATE(5808), 1, - sym__immediate_decimal, - ACTIONS(2925), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8506), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6159), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189248] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(6169), 1, - anon_sym_LPAREN2, - ACTIONS(8510), 1, - aux_sym__unquoted_in_list_token3, - STATE(4980), 1, + STATE(5025), 1, sym_comment, - ACTIONS(6167), 11, - sym_identifier, + ACTIONS(7921), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7919), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [189274] = 14, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2885), 1, - anon_sym_DOLLAR, - ACTIONS(5381), 1, - anon_sym_RBRACK, - ACTIONS(5395), 1, - sym__entry_separator, - ACTIONS(5397), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5399), 1, - aux_sym__unquoted_in_list_token6, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8512), 1, - anon_sym_DOT, - ACTIONS(8514), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8516), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8518), 1, - aux_sym__immediate_decimal_token4, - STATE(4981), 1, - sym_comment, - STATE(5734), 1, - sym__immediate_decimal, - STATE(5967), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189318] = 15, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [191315] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(8520), 1, - anon_sym_RBRACK, - STATE(4375), 1, - sym_param_long_flag, - STATE(4683), 1, - sym__param_name, - STATE(4982), 1, + STATE(5026), 1, sym_comment, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5282), 1, - sym_param_short_flag, - [189364] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7542), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7540), 11, sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(8522), 1, - anon_sym_RPAREN, - STATE(4375), 1, - sym_param_long_flag, - STATE(4683), 1, - sym__param_name, - STATE(4983), 1, - sym_comment, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5282), 1, - sym_param_short_flag, - [189410] = 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [191339] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4984), 1, + STATE(5027), 1, sym_comment, - ACTIONS(1368), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 9, + ACTIONS(1780), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1778), 11, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189434] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [191363] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4985), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7419), 1, + anon_sym_COLON, + ACTIONS(8108), 1, + anon_sym_COMMA, + ACTIONS(8110), 1, + anon_sym_DASH, + STATE(5028), 1, sym_comment, - ACTIONS(1470), 4, + STATE(5416), 1, + aux_sym_shebang_repeat1, + STATE(5483), 1, + sym_param_type, + ACTIONS(8106), 7, sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 9, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [189458] = 4, + [191397] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4986), 1, + ACTIONS(8114), 1, + sym__space, + STATE(5029), 1, sym_comment, - ACTIONS(1376), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 9, - ts_builtin_sym_end, + ACTIONS(8112), 12, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189482] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [191421] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4987), 1, - sym_comment, - ACTIONS(1535), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 9, + ACTIONS(7417), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7653), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7655), 1, anon_sym_DOLLAR, + ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [189506] = 4, - ACTIONS(3), 1, + ACTIONS(7661), 1, + anon_sym_DASH, + STATE(4455), 1, + sym_param_long_flag, + STATE(4800), 1, + sym__param_name, + STATE(5030), 1, + sym_comment, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5358), 1, + aux_sym_shebang_repeat1, + [191467] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4988), 1, + ACTIONS(8116), 1, + aux_sym__immediate_decimal_token2, + STATE(5031), 1, sym_comment, - ACTIONS(1504), 4, + ACTIONS(1519), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1506), 9, + aux_sym_unquoted_token2, + ACTIONS(1521), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388565,35 +396471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [189530] = 4, + [191493] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4989), 1, - sym_comment, - ACTIONS(1608), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1610), 9, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [189554] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(4990), 1, + STATE(5032), 1, sym_comment, - ACTIONS(8248), 2, + ACTIONS(1841), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8246), 11, + ACTIONS(1839), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388605,35 +396491,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189578] = 4, - ACTIONS(121), 1, + [191517] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4991), 1, + STATE(5033), 1, sym_comment, - ACTIONS(7689), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7687), 11, + ACTIONS(2133), 6, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189602] = 4, - ACTIONS(121), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(2131), 7, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym__unquoted_in_list_token4, + [191541] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4992), 1, + STATE(5034), 1, sym_comment, - ACTIONS(8110), 2, + ACTIONS(1749), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8108), 11, + ACTIONS(1747), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388645,15 +396531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189626] = 4, - ACTIONS(121), 1, + [191565] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4993), 1, + STATE(5035), 1, sym_comment, - ACTIONS(8198), 2, + ACTIONS(1798), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8196), 11, + ACTIONS(1796), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388665,15 +396551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189650] = 4, - ACTIONS(121), 1, + [191589] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4994), 1, + STATE(5036), 1, sym_comment, - ACTIONS(8202), 2, + ACTIONS(7925), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8200), 11, + ACTIONS(7923), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388685,77 +396571,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189674] = 4, - ACTIONS(121), 1, + [191613] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8118), 1, + anon_sym_DOLLAR, + ACTIONS(8122), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8124), 1, + aux_sym__immediate_decimal_token5, + STATE(5037), 1, + sym_comment, + STATE(6881), 1, + sym__immediate_decimal, + ACTIONS(8120), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3590), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1455), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [191651] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4995), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8118), 1, + anon_sym_DOLLAR, + ACTIONS(8122), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8124), 1, + aux_sym__immediate_decimal_token5, + STATE(5038), 1, sym_comment, - ACTIONS(8215), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(8213), 11, - sym__newline, - anon_sym_SEMI, + STATE(6863), 1, + sym__immediate_decimal, + ACTIONS(8120), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3591), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1427), 3, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189698] = 5, - ACTIONS(3), 1, + anon_sym_if, + anon_sym_EQ_GT, + [191689] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8526), 1, - anon_sym_LT, - ACTIONS(8528), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2085), 1, anon_sym_DASH, - STATE(4996), 1, + STATE(5039), 1, sym_comment, - ACTIONS(8524), 11, - anon_sym_EQ, + ACTIONS(2087), 10, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189724] = 5, - ACTIONS(3), 1, + [191717] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8528), 1, + ACTIONS(8128), 1, anon_sym_DASH, - ACTIONS(8530), 1, - anon_sym_LT, - STATE(4997), 1, + STATE(5040), 1, sym_comment, - ACTIONS(8524), 11, + ACTIONS(8126), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189750] = 4, - ACTIONS(121), 1, + [191741] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4998), 1, + STATE(5041), 1, sym_comment, - ACTIONS(7843), 2, + ACTIONS(1881), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7841), 11, + ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388767,18 +396687,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189774] = 6, - ACTIONS(3), 1, + [191765] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8230), 1, + STATE(5042), 1, + sym_comment, + ACTIONS(8130), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191787] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1709), 1, anon_sym_DASH, - STATE(4999), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + STATE(5043), 1, sym_comment, - STATE(7488), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8228), 10, + ACTIONS(1717), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -388789,15 +396728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189802] = 4, - ACTIONS(121), 1, + [191815] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5000), 1, + STATE(5044), 1, sym_comment, - ACTIONS(8320), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(8318), 11, + STATE(5100), 1, + aux_sym_shebang_repeat1, + ACTIONS(8132), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388809,41 +396747,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189826] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [191839] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - STATE(5001), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8136), 1, + anon_sym_EQ, + ACTIONS(8138), 1, + anon_sym_COMMA, + ACTIONS(8140), 1, + anon_sym_DASH, + STATE(5045), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 2, + STATE(5392), 1, + aux_sym_shebang_repeat1, + STATE(5408), 1, + sym_param_value, + ACTIONS(8134), 7, sym_identifier, - anon_sym_DASH, - ACTIONS(1595), 8, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189854] = 6, - ACTIONS(3), 1, + [191873] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7837), 1, - anon_sym_DOT, - ACTIONS(7839), 1, - aux_sym__immediate_decimal_token2, - STATE(5002), 1, + STATE(5046), 1, sym_comment, - ACTIONS(1518), 2, - sym_identifier, + ACTIONS(1589), 2, anon_sym_DASH, - ACTIONS(1520), 9, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 11, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -388853,80 +396792,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189882] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1572), 1, anon_sym_LPAREN2, - STATE(5003), 1, + [191897] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7419), 1, + anon_sym_COLON, + ACTIONS(8140), 1, + anon_sym_DASH, + ACTIONS(8142), 1, + anon_sym_COMMA, + STATE(5047), 1, sym_comment, - ACTIONS(1570), 2, + STATE(5447), 1, + aux_sym_shebang_repeat1, + STATE(5482), 1, + sym_param_type, + ACTIONS(8134), 7, sym_identifier, - anon_sym_DASH, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1580), 8, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189910] = 6, - ACTIONS(3), 1, + [191931] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_LPAREN2, - STATE(5004), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8136), 1, + anon_sym_EQ, + ACTIONS(8146), 1, + anon_sym_COMMA, + ACTIONS(8148), 1, + anon_sym_DASH, + STATE(5048), 1, sym_comment, - ACTIONS(1427), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(1923), 2, + STATE(5199), 1, + aux_sym_shebang_repeat1, + STATE(5471), 1, + sym_param_value, + ACTIONS(8144), 7, sym_identifier, - anon_sym_DASH, - ACTIONS(1927), 8, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189938] = 6, - ACTIONS(3), 1, + [191965] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_LPAREN2, - STATE(5005), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7419), 1, + anon_sym_COLON, + ACTIONS(8146), 1, + anon_sym_COMMA, + ACTIONS(8148), 1, + anon_sym_DASH, + STATE(5049), 1, sym_comment, - ACTIONS(1939), 2, + STATE(5471), 1, + sym_param_type, + STATE(5479), 1, + aux_sym_shebang_repeat1, + ACTIONS(8144), 7, sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191999] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5050), 1, + sym_comment, + ACTIONS(1569), 2, anon_sym_DASH, - ACTIONS(1943), 2, - anon_sym_DOT, aux_sym__unquoted_in_list_token2, - ACTIONS(1945), 8, + ACTIONS(1571), 11, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189966] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [192023] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, + anon_sym_DASH_DASH, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7729), 1, + anon_sym_RBRACK, + STATE(4455), 1, + sym_param_long_flag, + STATE(4800), 1, + sym__param_name, + STATE(5051), 1, + sym_comment, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5358), 1, aux_sym_shebang_repeat1, - STATE(5006), 1, + [192069] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5052), 1, sym_comment, - ACTIONS(8532), 12, + ACTIONS(2385), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2383), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388938,16 +396939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [189990] = 4, - ACTIONS(121), 1, + [192093] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5007), 1, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(5053), 1, sym_comment, - ACTIONS(5273), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5275), 11, + ACTIONS(8150), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388959,15 +396958,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190014] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + [192117] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5008), 1, + STATE(5054), 1, sym_comment, - ACTIONS(5111), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5113), 11, + ACTIONS(1473), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [192141] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym__unquoted_in_list_token4, + STATE(5055), 1, + sym_comment, + ACTIONS(1008), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1006), 6, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [192169] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5056), 1, + sym_comment, + ACTIONS(8152), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388979,15 +397018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190038] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192191] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5009), 1, + STATE(5057), 1, sym_comment, - ACTIONS(1953), 2, + ACTIONS(2328), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1947), 11, + ACTIONS(2326), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388999,74 +397040,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190062] = 15, - ACTIONS(3), 1, + [192215] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, + STATE(5058), 1, + sym_comment, + ACTIONS(1648), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 11, sym_identifier, - ACTIONS(7934), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7936), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(7999), 1, - anon_sym_RBRACK, - STATE(4375), 1, - sym_param_long_flag, - STATE(4683), 1, - sym__param_name, - STATE(5010), 1, - sym_comment, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5282), 1, - sym_param_short_flag, - [190108] = 15, + anon_sym_LPAREN2, + [192239] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym__unquoted_in_list_token4, + STATE(5059), 1, + sym_comment, + ACTIONS(2093), 5, sym__newline, - ACTIONS(7930), 1, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2089), 6, sym_identifier, - ACTIONS(7934), 1, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(7936), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, anon_sym_DASH_DASH, - ACTIONS(7940), 1, anon_sym_DASH, - ACTIONS(8005), 1, - anon_sym_RPAREN, - STATE(4375), 1, - sym_param_long_flag, - STATE(4683), 1, - sym__param_name, - STATE(5011), 1, + [192267] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5060), 1, sym_comment, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5282), 1, - sym_param_short_flag, - [190154] = 3, + ACTIONS(1721), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 11, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [192291] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5012), 1, + STATE(5061), 1, sym_comment, - ACTIONS(8404), 13, + ACTIONS(2338), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2336), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389078,14 +397122,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [192315] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5062), 1, + sym_comment, + ACTIONS(1481), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 10, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [190176] = 3, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [192339] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5013), 1, + STATE(5063), 1, sym_comment, - ACTIONS(8408), 13, + ACTIONS(2305), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2303), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389097,17 +397162,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190198] = 4, - ACTIONS(121), 1, + [192363] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5014), 1, + STATE(5064), 1, sym_comment, - ACTIONS(5245), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5247), 11, + ACTIONS(6849), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389119,12 +397179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190222] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192385] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5015), 1, + STATE(5065), 1, sym_comment, - ACTIONS(8534), 13, + ACTIONS(8084), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389138,15 +397200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190244] = 4, - ACTIONS(121), 1, + [192407] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5016), 1, + STATE(5066), 1, sym_comment, - ACTIONS(2371), 2, + ACTIONS(1837), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2369), 11, + ACTIONS(1835), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389158,12 +397220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190268] = 3, + [192431] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5017), 1, + STATE(5067), 1, sym_comment, - ACTIONS(7024), 13, + ACTIONS(5151), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5153), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389175,141 +397240,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190290] = 15, - ACTIONS(3), 1, + [192455] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(7930), 1, + ACTIONS(7651), 1, sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(8536), 1, - anon_sym_RBRACK, - STATE(4375), 1, - sym_param_long_flag, - STATE(4683), 1, - sym__param_name, - STATE(5018), 1, - sym_comment, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5282), 1, - sym_param_short_flag, - [190336] = 15, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, anon_sym_DOLLAR, - ACTIONS(7936), 1, + ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, + ACTIONS(7659), 1, anon_sym_DASH_DASH, - ACTIONS(7940), 1, + ACTIONS(7661), 1, anon_sym_DASH, - ACTIONS(8538), 1, - anon_sym_RPAREN, - STATE(4375), 1, + ACTIONS(8154), 1, + anon_sym_PIPE, + STATE(4455), 1, sym_param_long_flag, - STATE(4683), 1, + STATE(4800), 1, sym__param_name, - STATE(5019), 1, + STATE(5068), 1, sym_comment, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5282), 1, + STATE(5220), 1, sym_param_short_flag, - [190382] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7932), 1, - anon_sym_RBRACK, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - STATE(4375), 1, - sym_param_long_flag, - STATE(4683), 1, - sym__param_name, - STATE(5020), 1, - sym_comment, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, + STATE(5253), 1, sym_param_opt, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5282), 1, - sym_param_short_flag, - [190428] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - ACTIONS(7948), 1, - anon_sym_RPAREN, - STATE(4375), 1, - sym_param_long_flag, - STATE(4683), 1, - sym__param_name, - STATE(5021), 1, - sym_comment, - STATE(5262), 1, + STATE(5295), 1, sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5281), 1, + STATE(5358), 1, aux_sym_shebang_repeat1, - STATE(5282), 1, - sym_param_short_flag, - [190474] = 4, - ACTIONS(121), 1, + [192501] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5022), 1, + ACTIONS(8156), 1, + anon_sym_catch, + STATE(5069), 1, sym_comment, - ACTIONS(1869), 2, + ACTIONS(7844), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1863), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389321,15 +397291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190498] = 4, - ACTIONS(121), 1, + [192525] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5023), 1, + STATE(5070), 1, sym_comment, - ACTIONS(1877), 2, + ACTIONS(2350), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1871), 11, + ACTIONS(2348), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389341,15 +397311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190522] = 4, - ACTIONS(121), 1, + [192549] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5024), 1, + STATE(5071), 1, sym_comment, - ACTIONS(1885), 2, + ACTIONS(5202), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1879), 11, + ACTIONS(5204), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389361,42 +397331,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190546] = 11, + [192573] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, + anon_sym_DASH_DASH, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7663), 1, + anon_sym_RPAREN, + STATE(4455), 1, + sym_param_long_flag, + STATE(4800), 1, + sym__param_name, + STATE(5072), 1, + sym_comment, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5358), 1, + aux_sym_shebang_repeat1, + [192619] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token5, - ACTIONS(6402), 1, + ACTIONS(2099), 1, anon_sym_LPAREN2, - ACTIONS(8470), 1, - anon_sym_DOLLAR, - ACTIONS(8472), 1, - anon_sym_DOT, - ACTIONS(8476), 1, - aux_sym__immediate_decimal_token4, - STATE(5025), 1, + ACTIONS(2103), 1, + aux_sym__unquoted_in_list_token4, + STATE(5073), 1, sym_comment, - STATE(6249), 1, - sym__immediate_decimal, - ACTIONS(8474), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3511), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(2925), 3, + ACTIONS(2101), 5, + sym__newline, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [190584] = 4, - ACTIONS(121), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2097), 6, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [192647] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5026), 1, + STATE(5053), 1, + aux_sym_shebang_repeat1, + STATE(5074), 1, sym_comment, - ACTIONS(5115), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5117), 11, + ACTIONS(8158), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389408,15 +397403,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190608] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + [192671] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5027), 1, + STATE(5075), 1, sym_comment, - ACTIONS(5119), 2, + ACTIONS(2273), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5121), 11, + ACTIONS(2271), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389428,15 +397424,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190632] = 4, - ACTIONS(121), 1, + [192695] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5028), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym__unquoted_in_list_token4, + STATE(5076), 1, sym_comment, - ACTIONS(2283), 2, + ACTIONS(2107), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2105), 6, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [192723] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2117), 1, + anon_sym_DASH, + ACTIONS(2119), 1, + anon_sym_LPAREN2, + STATE(5077), 1, + sym_comment, + ACTIONS(2121), 10, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [192751] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5078), 1, + sym_comment, + ACTIONS(2243), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2281), 11, + ACTIONS(2241), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389448,15 +397488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190656] = 4, - ACTIONS(121), 1, + [192775] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5029), 1, + STATE(5079), 1, sym_comment, - ACTIONS(2287), 2, + ACTIONS(7929), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2285), 11, + ACTIONS(7927), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389468,15 +397508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190680] = 4, - ACTIONS(121), 1, + [192799] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5030), 1, + STATE(5080), 1, sym_comment, - ACTIONS(2291), 2, + ACTIONS(5210), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2289), 11, + ACTIONS(5212), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389488,34 +397528,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190704] = 3, - ACTIONS(3), 1, + [192823] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5031), 1, + STATE(5081), 1, sym_comment, - ACTIONS(8540), 13, + ACTIONS(1519), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [190726] = 4, - ACTIONS(121), 1, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [192847] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5032), 1, + STATE(5082), 1, sym_comment, - ACTIONS(5123), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5125), 11, + ACTIONS(8160), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389527,15 +397565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190750] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192869] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5033), 1, + STATE(5083), 1, sym_comment, - ACTIONS(5127), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5129), 11, + ACTIONS(8162), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389547,15 +397584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190774] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192891] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5034), 1, + STATE(5084), 1, sym_comment, - ACTIONS(2295), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2293), 11, + ACTIONS(8164), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389567,15 +397603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190798] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192913] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5035), 1, + STATE(5085), 1, sym_comment, - ACTIONS(2299), 2, + ACTIONS(8084), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2297), 11, + ACTIONS(8082), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389587,35 +397625,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190822] = 4, - ACTIONS(121), 1, + [192937] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5036), 1, + ACTIONS(8168), 1, + anon_sym_LT, + ACTIONS(8170), 1, + anon_sym_DASH, + STATE(5086), 1, sym_comment, - ACTIONS(2303), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2301), 11, + ACTIONS(8166), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [190846] = 4, - ACTIONS(121), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [192963] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5037), 1, + STATE(5087), 1, sym_comment, - ACTIONS(2307), 2, + ACTIONS(1537), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2305), 11, + ACTIONS(1525), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389627,55 +397666,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190870] = 4, - ACTIONS(121), 1, + [192987] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5038), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(3645), 1, + anon_sym_DOLLAR, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8172), 1, + anon_sym_DOT, + ACTIONS(8176), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8178), 1, + aux_sym__immediate_decimal_token5, + STATE(5088), 1, sym_comment, - ACTIONS(2311), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2309), 11, - sym__newline, - anon_sym_SEMI, + STATE(6122), 1, + sym__immediate_decimal, + ACTIONS(1427), 2, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [190894] = 4, - ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(8174), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6195), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193027] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5039), 1, + STATE(5089), 1, sym_comment, - ACTIONS(2315), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2313), 11, + ACTIONS(1585), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 10, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193051] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8170), 1, + anon_sym_DASH, + ACTIONS(8180), 1, + anon_sym_LT, + STATE(5090), 1, + sym_comment, + ACTIONS(8166), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [190918] = 4, - ACTIONS(121), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [193077] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5040), 1, + STATE(5091), 1, sym_comment, - ACTIONS(2319), 2, + ACTIONS(2265), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2317), 11, + ACTIONS(2263), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389687,31 +397755,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190942] = 3, - ACTIONS(3), 1, + [193101] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5041), 1, + ACTIONS(2123), 1, + anon_sym_DASH, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2129), 1, + aux_sym__unquoted_in_list_token2, + STATE(5092), 1, sym_comment, - ACTIONS(8542), 13, + ACTIONS(2127), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [190964] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [193129] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5042), 1, + STATE(5093), 1, sym_comment, - ACTIONS(8544), 13, + ACTIONS(2361), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2359), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389723,17 +397797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190986] = 4, - ACTIONS(121), 1, + [193153] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5043), 1, + STATE(5094), 1, sym_comment, - ACTIONS(950), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(948), 11, + ACTIONS(8182), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389745,15 +397814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191010] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [193175] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5044), 1, + STATE(5095), 1, sym_comment, - ACTIONS(2218), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2216), 11, + ACTIONS(8184), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389765,15 +397833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191034] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [193197] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5045), 1, + STATE(5096), 1, sym_comment, - ACTIONS(2218), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2216), 11, + ACTIONS(8186), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389785,77 +397852,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191058] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [193219] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8546), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8548), 1, - aux_sym__unquoted_in_list_token2, - STATE(5046), 1, + ACTIONS(8188), 1, + anon_sym_QMARK2, + STATE(5097), 1, sym_comment, - ACTIONS(5381), 2, - sym_identifier, + ACTIONS(970), 2, anon_sym_DASH, - ACTIONS(5395), 9, + anon_sym_DOT, + ACTIONS(972), 10, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [191086] = 4, - ACTIONS(121), 1, + [193245] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5047), 1, + ACTIONS(8190), 1, + anon_sym_QMARK2, + STATE(5098), 1, sym_comment, - ACTIONS(2327), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2325), 11, + ACTIONS(980), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(982), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [191110] = 4, - ACTIONS(121), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [193271] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5048), 1, - sym_comment, - ACTIONS(2186), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2184), 11, + ACTIONS(7417), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, + anon_sym_DASH_DASH, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(7739), 1, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [191134] = 4, - ACTIONS(121), 1, + STATE(4455), 1, + sym_param_long_flag, + STATE(4800), 1, + sym__param_name, + STATE(5099), 1, + sym_comment, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5358), 1, + aux_sym_shebang_repeat1, + [193317] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5049), 1, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(5100), 1, sym_comment, - ACTIONS(2202), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2200), 11, + ACTIONS(8192), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389867,40 +397946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191158] = 9, + anon_sym_RPAREN, + [193341] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - anon_sym_DOT_DOT2, - ACTIONS(8550), 1, - sym_filesize_unit, - ACTIONS(8552), 1, - sym_duration_unit, - STATE(5050), 1, - sym_comment, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8380), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1441), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [191192] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5051), 1, + STATE(5101), 1, sym_comment, - ACTIONS(1735), 2, + ACTIONS(2403), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1733), 11, + ACTIONS(2401), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389912,15 +397967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191216] = 4, - ACTIONS(121), 1, + [193365] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5052), 1, + ACTIONS(8194), 1, + anon_sym_else, + STATE(5102), 1, sym_comment, - ACTIONS(2250), 2, + ACTIONS(7907), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2248), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389932,15 +397987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191240] = 4, - ACTIONS(121), 1, + [193389] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5053), 1, + STATE(5103), 1, sym_comment, - ACTIONS(2331), 2, + ACTIONS(2072), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2329), 11, + ACTIONS(2066), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389952,15 +398007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191264] = 4, - ACTIONS(121), 1, + [193413] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5054), 1, + STATE(5104), 1, sym_comment, - ACTIONS(2210), 2, + ACTIONS(1869), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2208), 11, + ACTIONS(1867), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389972,15 +398027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191288] = 4, - ACTIONS(121), 1, + [193437] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5055), 1, + STATE(5105), 1, sym_comment, - ACTIONS(2214), 2, + ACTIONS(1978), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2212), 11, + ACTIONS(1972), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389992,69 +398047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191312] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(3603), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8116), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8554), 1, - anon_sym_DOT, - STATE(5056), 1, - sym_comment, - STATE(5675), 1, - sym__immediate_decimal, - ACTIONS(8114), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6162), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1416), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [191350] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8470), 1, - anon_sym_DOLLAR, - ACTIONS(8472), 1, - anon_sym_DOT, - ACTIONS(8476), 1, - aux_sym__immediate_decimal_token4, - STATE(5057), 1, - sym_comment, - STATE(6275), 1, - sym__immediate_decimal, - ACTIONS(8474), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3530), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1416), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [191388] = 4, - ACTIONS(3), 1, + [193461] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(5058), 1, - sym_comment, - ACTIONS(8556), 12, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(8196), 1, sym__newline, + STATE(5106), 1, + sym_comment, + ACTIONS(8198), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390065,16 +398067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [191412] = 4, - ACTIONS(121), 1, + anon_sym_RBRACE, + [193487] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5059), 1, + STATE(5107), 1, sym_comment, - ACTIONS(5131), 2, + ACTIONS(1966), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5133), 11, + ACTIONS(1960), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390086,36 +398088,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191436] = 4, - ACTIONS(121), 1, + [193511] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5060), 1, + STATE(5108), 1, sym_comment, - ACTIONS(5135), 2, + ACTIONS(2257), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5137), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [191460] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(8402), 1, + ACTIONS(2255), 11, sym__newline, - STATE(5061), 1, - sym_comment, - ACTIONS(8404), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390126,17 +398108,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [191486] = 5, - ACTIONS(3), 1, + [193535] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, + ACTIONS(3269), 1, aux_sym_record_entry_token1, - ACTIONS(8406), 1, + ACTIONS(8200), 1, sym__newline, - STATE(5062), 1, + STATE(5109), 1, sym_comment, - ACTIONS(8408), 11, + ACTIONS(8202), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390146,46 +398127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [191512] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(8410), 1, - anon_sym_DOLLAR, - ACTIONS(8412), 1, - anon_sym_DASH_DASH, - ACTIONS(8414), 1, - anon_sym_DASH, - ACTIONS(8416), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(5063), 1, - sym_comment, - STATE(5201), 1, - aux_sym_ctrl_do_repeat1, - STATE(6298), 1, - sym__flag, - STATE(668), 2, - sym__blosure, - sym_val_variable, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [191554] = 4, - ACTIONS(121), 1, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [193561] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5064), 1, + STATE(5110), 1, sym_comment, - ACTIONS(2206), 2, + ACTIONS(2334), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2204), 11, + ACTIONS(2332), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390197,15 +398149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191578] = 4, - ACTIONS(121), 1, + [193585] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5065), 1, + STATE(5111), 1, sym_comment, - ACTIONS(2396), 2, + ACTIONS(1901), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2394), 11, + ACTIONS(1899), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390217,37 +398169,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191602] = 6, + [193609] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8560), 1, - anon_sym_AT, - ACTIONS(8562), 1, - anon_sym_DASH, - STATE(5066), 1, - sym_comment, - STATE(5405), 1, - sym_param_cmd, - ACTIONS(8558), 10, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191630] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5067), 1, + STATE(5112), 1, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5158), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5165), 11, + ACTIONS(5160), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390259,15 +398189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191654] = 4, - ACTIONS(121), 1, + [193633] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5068), 1, + STATE(5113), 1, sym_comment, - ACTIONS(5167), 2, + ACTIONS(5162), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5169), 11, + ACTIONS(5164), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390279,14 +398209,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191678] = 4, - ACTIONS(3), 1, + [193657] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5006), 1, - aux_sym_shebang_repeat1, - STATE(5069), 1, + STATE(5114), 1, sym_comment, - ACTIONS(8564), 12, + ACTIONS(8204), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390299,15 +398227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191702] = 4, - ACTIONS(121), 1, + anon_sym_RBRACE, + [193679] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5070), 1, + STATE(5115), 1, sym_comment, - ACTIONS(2335), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2333), 11, + ACTIONS(8206), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390319,37 +398245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191726] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8328), 1, - anon_sym_DASH, - STATE(5071), 1, - sym_comment, - STATE(7488), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8326), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191754] = 4, - ACTIONS(121), 1, + anon_sym_RBRACE, + [193701] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5072), 1, + STATE(5116), 1, sym_comment, - ACTIONS(1766), 2, + ACTIONS(2411), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1764), 11, + ACTIONS(2409), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390361,15 +398267,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191778] = 4, - ACTIONS(121), 1, + [193725] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5073), 1, + STATE(5117), 1, sym_comment, - ACTIONS(2339), 2, + ACTIONS(2415), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2337), 11, + ACTIONS(2413), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390381,65 +398287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191802] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8450), 1, - anon_sym_EQ, - ACTIONS(8568), 1, - anon_sym_COMMA, - ACTIONS(8570), 1, - anon_sym_DASH, - STATE(5074), 1, - sym_comment, - STATE(5126), 1, - aux_sym_shebang_repeat1, - STATE(5399), 1, - sym_param_value, - ACTIONS(8566), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191836] = 9, + [193749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(8568), 1, - anon_sym_COMMA, - ACTIONS(8570), 1, - anon_sym_DASH, - STATE(5075), 1, - sym_comment, - STATE(5399), 1, - sym_param_type, - STATE(5401), 1, - aux_sym_shebang_repeat1, - ACTIONS(8566), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191870] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5076), 1, + STATE(5118), 1, sym_comment, - ACTIONS(2343), 2, + ACTIONS(2261), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2341), 11, + ACTIONS(2259), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390451,15 +398307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191894] = 4, - ACTIONS(121), 1, + [193773] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5077), 1, + STATE(5119), 1, sym_comment, - ACTIONS(1782), 2, + ACTIONS(2253), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1780), 11, + ACTIONS(2251), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390471,40 +398327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191918] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8450), 1, - anon_sym_EQ, - ACTIONS(8574), 1, - anon_sym_COMMA, - ACTIONS(8576), 1, - anon_sym_DASH, - STATE(5078), 1, - sym_comment, - STATE(5127), 1, - aux_sym_shebang_repeat1, - STATE(5402), 1, - sym_param_value, - ACTIONS(8572), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191952] = 4, - ACTIONS(121), 1, + [193797] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5079), 1, + STATE(5120), 1, sym_comment, - ACTIONS(1790), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1788), 11, + ACTIONS(6863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390516,40 +398344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191976] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(8576), 1, - anon_sym_DASH, - ACTIONS(8578), 1, - anon_sym_COMMA, - STATE(5080), 1, - sym_comment, - STATE(5403), 1, - sym_param_type, - STATE(5406), 1, - aux_sym_shebang_repeat1, - ACTIONS(8572), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [192010] = 4, - ACTIONS(121), 1, + anon_sym_RBRACE, + [193819] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5081), 1, + STATE(5121), 1, sym_comment, - ACTIONS(1794), 2, + ACTIONS(1745), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1792), 11, + ACTIONS(1741), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390561,40 +398366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192034] = 9, + [193843] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8450), 1, - anon_sym_EQ, - ACTIONS(8582), 1, - anon_sym_COMMA, - ACTIONS(8584), 1, - anon_sym_DASH, - STATE(5082), 1, - sym_comment, - STATE(5130), 1, - aux_sym_shebang_repeat1, - STATE(5414), 1, - sym_param_value, - ACTIONS(8580), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [192068] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5083), 1, + STATE(5122), 1, sym_comment, - ACTIONS(2347), 2, + ACTIONS(1008), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2345), 11, + ACTIONS(1006), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390606,15 +398386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192092] = 4, - ACTIONS(121), 1, + [193867] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5084), 1, + STATE(5123), 1, sym_comment, - ACTIONS(1806), 2, + ACTIONS(7355), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1804), 11, + ACTIONS(7353), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390626,40 +398406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192116] = 9, + [193891] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(8582), 1, - anon_sym_COMMA, - ACTIONS(8584), 1, - anon_sym_DASH, - STATE(5085), 1, - sym_comment, - STATE(5414), 1, - sym_param_type, - STATE(5419), 1, - aux_sym_shebang_repeat1, - ACTIONS(8580), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [192150] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5086), 1, + STATE(5124), 1, sym_comment, - ACTIONS(2351), 2, + ACTIONS(5166), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2349), 11, + ACTIONS(5168), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390671,15 +398426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192174] = 4, - ACTIONS(121), 1, + [193915] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5087), 1, + STATE(5125), 1, sym_comment, - ACTIONS(2355), 2, + ACTIONS(5170), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2353), 11, + ACTIONS(5172), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390691,15 +398446,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192198] = 4, - ACTIONS(121), 1, + [193939] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5088), 1, + STATE(5126), 1, sym_comment, - ACTIONS(1810), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1808), 11, + ACTIONS(8208), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390711,15 +398463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192222] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [193961] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5089), 1, + STATE(5127), 1, sym_comment, - ACTIONS(1818), 2, + ACTIONS(2391), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1816), 11, + ACTIONS(2389), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390731,15 +398485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192246] = 4, - ACTIONS(121), 1, + [193985] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5090), 1, + STATE(5128), 1, sym_comment, - ACTIONS(2359), 2, + ACTIONS(2419), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2357), 11, + ACTIONS(2417), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390751,15 +398505,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192270] = 4, - ACTIONS(121), 1, + [194009] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5091), 1, + STATE(5129), 1, sym_comment, - ACTIONS(2279), 2, + ACTIONS(2423), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2277), 11, + ACTIONS(2421), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390771,15 +398525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192294] = 4, - ACTIONS(121), 1, + [194033] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5092), 1, + STATE(5130), 1, sym_comment, - ACTIONS(1822), 2, + ACTIONS(2427), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1820), 11, + ACTIONS(2425), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390791,15 +398545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192318] = 4, - ACTIONS(121), 1, + [194057] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5093), 1, + STATE(5131), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2431), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2361), 11, + ACTIONS(2429), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390811,15 +398565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192342] = 4, - ACTIONS(121), 1, + [194081] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5094), 1, + STATE(5132), 1, sym_comment, - ACTIONS(2367), 2, + ACTIONS(2435), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2365), 11, + ACTIONS(2433), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390831,14 +398585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192366] = 4, - ACTIONS(121), 1, + [194105] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8588), 1, - sym__space, - STATE(5095), 1, + STATE(5133), 1, sym_comment, - ACTIONS(8586), 12, + ACTIONS(2439), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2437), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390850,16 +398605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [192390] = 4, - ACTIONS(121), 1, + [194129] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5096), 1, + STATE(5134), 1, sym_comment, - ACTIONS(1441), 2, + ACTIONS(2443), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1429), 11, + ACTIONS(2441), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390871,12 +398625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192414] = 3, - ACTIONS(3), 1, + [194153] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5097), 1, + STATE(5135), 1, sym_comment, - ACTIONS(8590), 13, + ACTIONS(8210), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390890,12 +398644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [192436] = 3, + [194175] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5098), 1, + STATE(5136), 1, sym_comment, - ACTIONS(8592), 12, + ACTIONS(5137), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5139), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390907,55 +398664,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [192457] = 4, + [194199] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1764), 1, - anon_sym_DASH, - STATE(5099), 1, + STATE(5137), 1, sym_comment, - ACTIONS(1766), 11, - sym_identifier, + ACTIONS(2283), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2281), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [194223] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, anon_sym_DOLLAR, + ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192480] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8594), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8596), 1, - aux_sym__immediate_decimal_token2, - STATE(5100), 1, - sym_comment, - ACTIONS(1370), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1368), 7, - sym_identifier, + ACTIONS(7661), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [192507] = 4, - ACTIONS(3), 1, + ACTIONS(7751), 1, + anon_sym_RPAREN, + STATE(4455), 1, + sym_param_long_flag, + STATE(4800), 1, + sym__param_name, + STATE(5138), 1, + sym_comment, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5358), 1, + aux_sym_shebang_repeat1, + [194269] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2337), 1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(8214), 1, anon_sym_DASH, - STATE(5101), 1, + STATE(5139), 1, sym_comment, - ACTIONS(2339), 11, + STATE(7970), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8212), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -390966,91 +398737,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192530] = 4, - ACTIONS(3), 1, + [194297] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2341), 1, - anon_sym_DASH, - STATE(5102), 1, - sym_comment, - ACTIONS(2343), 11, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(8216), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(8218), 1, anon_sym_DASH_DASH, + ACTIONS(8220), 1, + anon_sym_DASH, + ACTIONS(8222), 1, aux_sym_ctrl_match_token1, - [192553] = 4, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5140), 1, + sym_comment, + STATE(5272), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, + sym__flag, + STATE(674), 2, + sym__blosure, + sym_val_variable, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [194339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_DASH, - STATE(5103), 1, + STATE(5141), 1, sym_comment, - ACTIONS(1782), 11, - sym_identifier, + ACTIONS(7992), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7990), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192576] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [194363] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_DASH, - STATE(5104), 1, + STATE(5142), 1, sym_comment, - ACTIONS(1790), 11, - sym_identifier, + ACTIONS(8198), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192599] = 4, + anon_sym_RBRACE, + [194385] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1792), 1, - anon_sym_DASH, - STATE(5105), 1, + STATE(5143), 1, sym_comment, - ACTIONS(1794), 11, - sym_identifier, + ACTIONS(7855), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7853), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192622] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [194409] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2345), 1, + ACTIONS(8226), 1, + anon_sym_QMARK, + ACTIONS(8228), 1, anon_sym_DASH, - STATE(5106), 1, + STATE(5144), 1, sym_comment, - ACTIONS(2347), 11, + ACTIONS(8224), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -391061,34 +398846,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192645] = 4, + [194435] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_DASH, - STATE(5107), 1, + STATE(5145), 1, sym_comment, - ACTIONS(1806), 11, - sym_identifier, + ACTIONS(2297), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2295), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192668] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [194459] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(8232), 1, anon_sym_DASH, - STATE(5108), 1, + STATE(5146), 1, sym_comment, - ACTIONS(2351), 11, + STATE(7970), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8230), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -391099,15 +398888,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192691] = 4, - ACTIONS(3), 1, + [194487] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2353), 1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(7998), 1, anon_sym_DASH, - STATE(5109), 1, + STATE(5147), 1, sym_comment, - ACTIONS(2355), 11, + STATE(7557), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7996), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -391118,166 +398910,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192714] = 4, - ACTIONS(3), 1, + [194515] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1808), 1, - anon_sym_DASH, - STATE(5110), 1, + STATE(5148), 1, sym_comment, - ACTIONS(1810), 11, - sym_identifier, + ACTIONS(8202), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192737] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [194537] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1816), 1, - anon_sym_DASH, - STATE(5111), 1, + ACTIONS(8012), 1, + aux_sym__immediate_decimal_token2, + STATE(5149), 1, sym_comment, - ACTIONS(1818), 11, - sym_identifier, + ACTIONS(1473), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192760] = 4, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194563] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2357), 1, - anon_sym_DASH, - STATE(5112), 1, + STATE(5150), 1, sym_comment, - ACTIONS(2359), 11, - sym_identifier, + ACTIONS(2354), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2352), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192783] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [194587] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_DASH, - STATE(5113), 1, + ACTIONS(7986), 1, + aux_sym__immediate_decimal_token2, + STATE(5151), 1, sym_comment, - ACTIONS(1822), 11, + ACTIONS(1589), 3, sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 9, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192806] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [194613] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2361), 1, - anon_sym_DASH, - STATE(5114), 1, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(8196), 1, + sym__newline, + STATE(5152), 1, sym_comment, - ACTIONS(2363), 11, - sym_identifier, + ACTIONS(8198), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [194639] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(8200), 1, sym__newline, + STATE(5153), 1, + sym_comment, + ACTIONS(8202), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192829] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [194665] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2365), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8102), 1, + anon_sym_COMMA, + ACTIONS(8104), 1, anon_sym_DASH, - STATE(5115), 1, + ACTIONS(8136), 1, + anon_sym_EQ, + STATE(5154), 1, sym_comment, - ACTIONS(2367), 11, + STATE(5311), 1, + aux_sym_shebang_repeat1, + STATE(5435), 1, + sym_param_value, + ACTIONS(8100), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192852] = 4, - ACTIONS(3), 1, + [194699] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(8216), 1, + anon_sym_DOLLAR, + ACTIONS(8218), 1, + anon_sym_DASH_DASH, + ACTIONS(8220), 1, anon_sym_DASH, - STATE(5116), 1, + ACTIONS(8222), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5155), 1, + sym_comment, + STATE(5272), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, + sym__flag, + STATE(674), 2, + sym__blosure, + sym_val_variable, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [194741] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8234), 1, + aux_sym__immediate_decimal_token2, + STATE(5156), 1, sym_comment, - ACTIONS(1441), 11, + ACTIONS(1648), 3, sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 9, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192875] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [194767] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2369), 1, - anon_sym_DASH, - STATE(5117), 1, + STATE(5157), 1, sym_comment, - ACTIONS(2371), 11, - sym_identifier, + ACTIONS(8236), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192898] = 3, + anon_sym_RBRACE, + [194789] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5118), 1, + STATE(5158), 1, sym_comment, - ACTIONS(8490), 12, + ACTIONS(1857), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1855), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391289,32 +399147,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192919] = 4, - ACTIONS(121), 1, + [194813] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5119), 1, - sym_comment, - ACTIONS(2073), 6, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, sym_identifier, + ACTIONS(7655), 1, anon_sym_DOLLAR, + ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, anon_sym_DASH_DASH, + ACTIONS(7661), 1, anon_sym_DASH, - aux_sym__unquoted_in_list_token7, - ACTIONS(2075), 6, - sym__newline, - anon_sym_PIPE, + ACTIONS(8238), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN2, - [192942] = 3, + STATE(4455), 1, + sym_param_long_flag, + STATE(4800), 1, + sym__param_name, + STATE(5159), 1, + sym_comment, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5358), 1, + aux_sym_shebang_repeat1, + [194859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5120), 1, + STATE(5160), 1, sym_comment, - ACTIONS(8492), 12, + ACTIONS(2365), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2363), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391326,90 +399198,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192963] = 4, - ACTIONS(3), 1, + [194883] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(8242), 1, + anon_sym_AT, + ACTIONS(8244), 1, anon_sym_DASH, - STATE(5121), 1, + STATE(5161), 1, sym_comment, - ACTIONS(1746), 11, + STATE(5414), 1, + sym_param_cmd, + ACTIONS(8240), 10, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [192986] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5122), 1, - sym_comment, - ACTIONS(8598), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(8600), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [193009] = 3, - ACTIONS(3), 1, + [194911] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5123), 1, - sym_comment, - ACTIONS(8602), 12, + ACTIONS(7417), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193030] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5124), 1, + ACTIONS(8136), 1, + anon_sym_EQ, + ACTIONS(8248), 1, + anon_sym_COMMA, + ACTIONS(8250), 1, + anon_sym_DASH, + STATE(5162), 1, sym_comment, - ACTIONS(8604), 12, - sym__newline, - anon_sym_SEMI, + STATE(5238), 1, + aux_sym_shebang_repeat1, + STATE(5481), 1, + sym_param_value, + ACTIONS(8246), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - [193051] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [194945] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8608), 1, - anon_sym_DASH, - STATE(5125), 1, + ACTIONS(7383), 1, + anon_sym_DOT, + ACTIONS(7385), 1, + aux_sym__immediate_decimal_token2, + STATE(5163), 1, sym_comment, - ACTIONS(8606), 11, - anon_sym_EQ, + ACTIONS(1589), 2, sym_identifier, + anon_sym_DASH, + ACTIONS(1591), 9, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -391419,22 +399267,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193074] = 8, - ACTIONS(3), 1, + [194973] = 15, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, + sym_identifier, ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, + anon_sym_DASH_DASH, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(8252), 1, + anon_sym_RBRACK, + STATE(4455), 1, + sym_param_long_flag, + STATE(4800), 1, + sym__param_name, + STATE(5164), 1, + sym_comment, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5358), 1, + aux_sym_shebang_repeat1, + [195019] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3645), 1, + anon_sym_DOLLAR, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6264), 1, + anon_sym_DOT, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + STATE(5165), 1, + sym_comment, + STATE(6194), 1, + sym__immediate_decimal, + ACTIONS(6266), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6193), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1441), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [195057] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8612), 1, - anon_sym_EQ, - ACTIONS(8614), 1, + ACTIONS(7419), 1, + anon_sym_COLON, + ACTIONS(8248), 1, anon_sym_COMMA, - ACTIONS(8616), 1, + ACTIONS(8250), 1, anon_sym_DASH, - STATE(5126), 1, + STATE(5166), 1, sym_comment, - STATE(5281), 1, + STATE(5443), 1, aux_sym_shebang_repeat1, - ACTIONS(8610), 7, + STATE(5481), 1, + sym_param_type, + ACTIONS(8246), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -391442,22 +399350,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193105] = 8, - ACTIONS(3), 1, + [195091] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8612), 1, - anon_sym_EQ, - ACTIONS(8620), 1, + ACTIONS(8108), 1, anon_sym_COMMA, - ACTIONS(8622), 1, + ACTIONS(8110), 1, anon_sym_DASH, - STATE(5127), 1, + ACTIONS(8136), 1, + anon_sym_EQ, + STATE(5167), 1, sym_comment, - STATE(5281), 1, + STATE(5302), 1, aux_sym_shebang_repeat1, - ACTIONS(8618), 7, + STATE(5483), 1, + sym_param_value, + ACTIONS(8106), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -391465,14 +399375,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193136] = 4, + [195125] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, + anon_sym_DOLLAR, + ACTIONS(7657), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, + anon_sym_DASH_DASH, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(8254), 1, + anon_sym_RPAREN, + STATE(4455), 1, + sym_param_long_flag, + STATE(4800), 1, + sym__param_name, + STATE(5168), 1, + sym_comment, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5358), 1, + aux_sym_shebang_repeat1, + [195171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, + STATE(5169), 1, + sym_comment, + ACTIONS(2313), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2311), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [195195] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(8258), 1, anon_sym_DASH, - STATE(5128), 1, + STATE(5170), 1, sym_comment, - ACTIONS(2228), 11, + STATE(7970), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8256), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -391483,15 +399448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [193159] = 4, - ACTIONS(3), 1, + [195223] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2273), 1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(8262), 1, anon_sym_DASH, - STATE(5129), 1, + STATE(5171), 1, sym_comment, - ACTIONS(2275), 11, + STATE(7970), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8260), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -391502,23 +399470,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [193182] = 8, - ACTIONS(3), 1, + [195251] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8612), 1, + ACTIONS(8136), 1, anon_sym_EQ, - ACTIONS(8626), 1, + ACTIONS(8266), 1, anon_sym_COMMA, - ACTIONS(8628), 1, + ACTIONS(8268), 1, anon_sym_DASH, - STATE(5130), 1, + STATE(5172), 1, sym_comment, - STATE(5281), 1, + STATE(5309), 1, aux_sym_shebang_repeat1, - ACTIONS(8624), 7, + STATE(5395), 1, + sym_param_value, + ACTIONS(8264), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -391526,12 +399495,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193213] = 3, + [195285] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1525), 1, + anon_sym_DASH, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(7059), 1, + aux_sym_unquoted_token2, + ACTIONS(8270), 1, + sym_filesize_unit, + ACTIONS(8272), 1, + sym_duration_unit, + STATE(5173), 1, + sym_comment, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [195319] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5131), 1, + STATE(5174), 1, sym_comment, - ACTIONS(8630), 12, + ACTIONS(2342), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2340), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391543,58 +399540,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193234] = 8, - ACTIONS(3), 1, + [195343] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8500), 1, - anon_sym_COMMA, - ACTIONS(8502), 1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(7954), 1, anon_sym_DASH, - ACTIONS(8632), 1, - anon_sym_EQ, - STATE(5132), 1, + STATE(5175), 1, sym_comment, - STATE(5281), 1, - aux_sym_shebang_repeat1, - ACTIONS(8498), 7, + STATE(7557), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7952), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193265] = 5, + [195371] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7397), 1, - aux_sym__unquoted_in_list_token6, - STATE(5133), 1, + ACTIONS(1441), 1, + sym__entry_separator, + ACTIONS(2921), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, + anon_sym_DOT, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8092), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8094), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8096), 1, + aux_sym__immediate_decimal_token5, + STATE(5176), 1, sym_comment, - ACTIONS(1429), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1441), 9, + STATE(6182), 1, + sym__immediate_decimal, + ACTIONS(1431), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6181), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195413] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5177), 1, + sym_comment, + ACTIONS(1772), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1770), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [195437] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, anon_sym_DOLLAR, + ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, anon_sym_DASH_DASH, - [193290] = 4, + ACTIONS(7661), 1, + anon_sym_DASH, + ACTIONS(8274), 1, + anon_sym_RPAREN, + STATE(4455), 1, + sym_param_long_flag, + STATE(4800), 1, + sym__param_name, + STATE(5178), 1, + sym_comment, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5358), 1, + aux_sym_shebang_repeat1, + [195483] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5381), 1, + STATE(5179), 1, + sym_comment, + ACTIONS(2317), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2315), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [195507] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1690), 1, anon_sym_DASH, - STATE(5134), 1, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + STATE(5180), 1, sym_comment, - ACTIONS(5395), 11, + ACTIONS(1698), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -391605,40 +399684,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [193313] = 11, + [195535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5002), 1, - aux_sym_unquoted_token5, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8470), 1, - anon_sym_DOLLAR, - ACTIONS(8634), 1, - anon_sym_DOT, - ACTIONS(8638), 1, - aux_sym__immediate_decimal_token4, - STATE(5135), 1, + STATE(5181), 1, sym_comment, - STATE(6857), 1, - sym__immediate_decimal, - ACTIONS(2925), 2, + ACTIONS(2369), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2367), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8636), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3511), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193350] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [195559] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5136), 1, + STATE(5182), 1, sym_comment, - ACTIONS(8320), 12, + ACTIONS(2373), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2371), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391650,69 +399724,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193371] = 4, + [195583] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(5137), 1, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(1427), 1, + sym__entry_separator, + ACTIONS(1429), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2921), 1, + anon_sym_DOLLAR, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8276), 1, + anon_sym_DOT, + ACTIONS(8278), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8280), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8282), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8284), 1, + aux_sym__immediate_decimal_token5, + STATE(5183), 1, sym_comment, - ACTIONS(7780), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7782), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [193394] = 4, - ACTIONS(3), 1, + STATE(5843), 1, + sym__immediate_decimal, + STATE(6192), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195627] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_DASH, - STATE(5138), 1, - sym_comment, - ACTIONS(2218), 11, - sym_identifier, + ACTIONS(7417), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(7419), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [193417] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(8268), 1, anon_sym_DASH, - STATE(5139), 1, + ACTIONS(8286), 1, + anon_sym_COMMA, + STATE(5184), 1, sym_comment, - ACTIONS(2218), 11, + STATE(5430), 1, + sym_param_type, + STATE(5433), 1, + aux_sym_shebang_repeat1, + ACTIONS(8264), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [193440] = 3, + [195661] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5140), 1, + STATE(5185), 1, sym_comment, - ACTIONS(8640), 12, + ACTIONS(5141), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5143), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391724,13 +399799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193461] = 3, + [195685] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5141), 1, + STATE(5186), 1, sym_comment, - ACTIONS(8642), 12, + ACTIONS(2346), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2344), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391742,32 +399819,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193482] = 4, + [195709] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6167), 1, - anon_sym_DASH, - STATE(5142), 1, + STATE(5187), 1, sym_comment, - ACTIONS(6169), 11, - sym_identifier, + ACTIONS(7497), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7495), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [193505] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [195733] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5143), 1, + STATE(5188), 1, sym_comment, - ACTIONS(8644), 12, + ACTIONS(2381), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2379), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391779,13 +399859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193526] = 3, + [195757] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5144), 1, + STATE(5189), 1, sym_comment, - ACTIONS(8646), 12, + ACTIONS(5129), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5131), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391797,13 +399879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193547] = 3, - ACTIONS(3), 1, + [195781] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5145), 1, + STATE(5190), 1, sym_comment, - ACTIONS(8648), 12, + ACTIONS(8288), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391816,12 +399897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193568] = 3, + anon_sym_RBRACE, + [195803] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5146), 1, + STATE(5191), 1, sym_comment, - ACTIONS(8650), 12, + ACTIONS(5133), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5135), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391833,15 +399918,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193589] = 4, - ACTIONS(3), 1, + [195827] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2184), 1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(7975), 1, anon_sym_DASH, - STATE(5147), 1, + STATE(5192), 1, sym_comment, - ACTIONS(2186), 11, + STATE(7557), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7973), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -391852,33 +399940,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [193612] = 4, - ACTIONS(3), 1, + [195855] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2200), 1, - anon_sym_DASH, - STATE(5148), 1, + STATE(5193), 1, sym_comment, - ACTIONS(2202), 11, - sym_identifier, + ACTIONS(8290), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [193635] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [195877] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5149), 1, + STATE(5194), 1, sym_comment, - ACTIONS(8534), 12, - ts_builtin_sym_end, + ACTIONS(8292), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391890,12 +399976,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193656] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [195899] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5150), 1, + STATE(5195), 1, sym_comment, - ACTIONS(8652), 12, + ACTIONS(5218), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5220), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391907,13 +399998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193677] = 3, + [195923] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5151), 1, + STATE(5196), 1, sym_comment, - ACTIONS(8654), 12, + ACTIONS(2407), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2405), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391925,34 +400018,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193698] = 6, - ACTIONS(3), 1, + [195947] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5152), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8118), 1, + anon_sym_DOLLAR, + ACTIONS(8296), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8298), 1, + aux_sym__immediate_decimal_token5, + STATE(5197), 1, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7150), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7146), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7148), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [193725] = 3, - ACTIONS(3), 1, + STATE(7054), 1, + sym__immediate_decimal, + ACTIONS(1455), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8294), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3590), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195984] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5153), 1, + STATE(5198), 1, sym_comment, - ACTIONS(8656), 12, + ACTIONS(8206), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391964,13 +400062,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [196005] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8302), 1, + anon_sym_EQ, + ACTIONS(8304), 1, + anon_sym_COMMA, + ACTIONS(8306), 1, + anon_sym_DASH, + STATE(5199), 1, + sym_comment, + STATE(5358), 1, + aux_sym_shebang_repeat1, + ACTIONS(8300), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - [193746] = 3, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [196036] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5154), 1, + STATE(5200), 1, sym_comment, - ACTIONS(8658), 12, + ACTIONS(8308), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391983,42 +400103,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193767] = 13, - ACTIONS(121), 1, + [196057] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_RBRACK, - ACTIONS(5395), 1, - sym__entry_separator, - ACTIONS(5397), 1, - aux_sym__unquoted_in_list_token5, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8660), 1, - anon_sym_DOLLAR, - ACTIONS(8662), 1, - anon_sym_DOT, - ACTIONS(8664), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8666), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8668), 1, - aux_sym__immediate_decimal_token4, - STATE(5155), 1, + STATE(5201), 1, sym_comment, - STATE(6353), 1, - sym__immediate_decimal, - STATE(3040), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193808] = 4, - ACTIONS(3), 1, + ACTIONS(8310), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [196078] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(1879), 1, anon_sym_DASH, - STATE(5156), 1, + STATE(5202), 1, sym_comment, - ACTIONS(2210), 11, + ACTIONS(1881), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -392030,14 +400140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [193831] = 4, - ACTIONS(3), 1, + [196101] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(2348), 1, anon_sym_DASH, - STATE(5157), 1, + STATE(5203), 1, sym_comment, - ACTIONS(2214), 11, + ACTIONS(2350), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -392049,17 +400159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [193854] = 5, - ACTIONS(3), 1, + [196124] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8670), 1, - aux_sym__immediate_decimal_token1, - STATE(5158), 1, + STATE(5204), 1, sym_comment, - ACTIONS(2263), 2, - sym_identifier, + ACTIONS(994), 2, anon_sym_DASH, - ACTIONS(2267), 9, + anon_sym_DOT, + ACTIONS(996), 10, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -392069,73 +400178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193879] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8672), 1, - anon_sym_DOT, - ACTIONS(8675), 1, - aux_sym__immediate_decimal_token2, - STATE(5159), 1, - sym_comment, - ACTIONS(1398), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - ACTIONS(1400), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193906] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5160), 1, - sym_comment, - ACTIONS(7887), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7889), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [193929] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8675), 1, - aux_sym__immediate_decimal_token2, - STATE(5161), 1, - sym_comment, - ACTIONS(1398), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1400), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193954] = 3, - ACTIONS(3), 1, + [196147] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5162), 1, + STATE(5205), 1, sym_comment, - ACTIONS(8542), 12, - ts_builtin_sym_end, + ACTIONS(8312), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392147,91 +400195,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193975] = 13, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1423), 1, - anon_sym_RBRACK, - ACTIONS(1425), 1, - sym__entry_separator, - ACTIONS(1427), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8660), 1, - anon_sym_DOLLAR, - ACTIONS(8662), 1, - anon_sym_DOT, - ACTIONS(8664), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8666), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8668), 1, - aux_sym__immediate_decimal_token4, - STATE(5163), 1, - sym_comment, - STATE(6280), 1, - sym__immediate_decimal, - STATE(3050), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194016] = 3, + anon_sym_RPAREN, + [196168] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5164), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym__unquoted_in_list_token4, + STATE(5206), 1, sym_comment, - ACTIONS(8590), 12, - ts_builtin_sym_end, + ACTIONS(2097), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2101), 5, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [194037] = 12, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + [196195] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8412), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym__unquoted_in_list_token4, + STATE(5207), 1, + sym_comment, + ACTIONS(2105), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8414), 1, anon_sym_DASH, - ACTIONS(8677), 1, - anon_sym_DOLLAR, - ACTIONS(8679), 1, - aux_sym_ctrl_match_token1, - STATE(1937), 1, - sym_block, - STATE(1938), 1, - sym_val_closure, - STATE(5165), 1, - sym_comment, - STATE(5250), 1, - aux_sym_ctrl_do_repeat1, - STATE(6298), 1, - sym__flag, - STATE(671), 2, - sym__blosure, - sym_val_variable, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [194076] = 6, - ACTIONS(3), 1, + ACTIONS(2107), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + [196222] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5251), 1, + STATE(5208), 1, + sym_comment, + ACTIONS(1585), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 9, + ts_builtin_sym_end, sym__newline, - STATE(680), 1, - aux_sym__pipe_separator, - STATE(5166), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196245] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5209), 1, sym_comment, - STATE(5400), 1, - aux_sym_shebang_repeat1, - ACTIONS(2825), 9, + ACTIONS(8314), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392241,73 +400274,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194103] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [196266] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8528), 1, + ACTIONS(2303), 1, anon_sym_DASH, - STATE(5167), 1, + STATE(5210), 1, sym_comment, - ACTIONS(8524), 11, - anon_sym_EQ, + ACTIONS(2305), 11, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194126] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8681), 1, - anon_sym_DOT, - ACTIONS(8684), 1, - aux_sym__immediate_decimal_token2, - STATE(5168), 1, - sym_comment, - ACTIONS(1400), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1398), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [194153] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [196289] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8688), 1, + ACTIONS(2352), 1, anon_sym_DASH, - STATE(5169), 1, + STATE(5211), 1, sym_comment, - ACTIONS(8686), 11, - anon_sym_EQ, + ACTIONS(2354), 11, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194176] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [196312] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(1747), 1, anon_sym_DASH, - STATE(5170), 1, + STATE(5212), 1, sym_comment, - ACTIONS(6223), 11, + ACTIONS(1749), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -392318,33 +400331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [194199] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8684), 1, - aux_sym__immediate_decimal_token2, - STATE(5171), 1, - sym_comment, - ACTIONS(1400), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1398), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [194224] = 3, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [196335] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5172), 1, + STATE(5213), 1, sym_comment, - ACTIONS(8690), 12, + ACTIONS(6925), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392357,78 +400350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194245] = 3, - ACTIONS(3), 1, + [196356] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5173), 1, - sym_comment, - ACTIONS(8494), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [194266] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5174), 1, - sym_comment, - ACTIONS(8496), 12, - ts_builtin_sym_end, + ACTIONS(7417), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [194287] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8386), 1, - aux_sym__immediate_decimal_token2, - STATE(5175), 1, - sym_comment, - ACTIONS(1368), 4, + ACTIONS(8140), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194312] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8612), 1, + ACTIONS(8316), 1, anon_sym_EQ, - ACTIONS(8694), 1, + ACTIONS(8318), 1, anon_sym_COMMA, - ACTIONS(8696), 1, - anon_sym_DASH, - STATE(5176), 1, + STATE(5214), 1, sym_comment, - STATE(5281), 1, + STATE(5358), 1, aux_sym_shebang_repeat1, - ACTIONS(8692), 7, + ACTIONS(8134), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -392436,14 +400373,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194343] = 4, - ACTIONS(3), 1, + [196387] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8700), 1, + ACTIONS(8322), 1, anon_sym_DASH, - STATE(5177), 1, + STATE(5215), 1, sym_comment, - ACTIONS(8698), 11, + ACTIONS(8320), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392455,51 +400392,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194366] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8422), 1, - aux_sym__immediate_decimal_token2, - STATE(5178), 1, - sym_comment, - ACTIONS(1370), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1368), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [194391] = 4, - ACTIONS(3), 1, + [196410] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8704), 1, + ACTIONS(1855), 1, anon_sym_DASH, - STATE(5179), 1, + STATE(5216), 1, sym_comment, - ACTIONS(8702), 11, - anon_sym_EQ, + ACTIONS(1857), 11, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194414] = 3, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [196433] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5180), 1, + STATE(5217), 1, sym_comment, - ACTIONS(8706), 12, + ACTIONS(8324), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392512,12 +400429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194435] = 3, - ACTIONS(3), 1, + [196454] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5181), 1, + STATE(5218), 1, sym_comment, - ACTIONS(8708), 12, + ACTIONS(8326), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392530,69 +400447,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194456] = 4, - ACTIONS(3), 1, + [196475] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8712), 1, - anon_sym_DASH, - STATE(5182), 1, + STATE(5219), 1, sym_comment, - ACTIONS(8710), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8184), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194479] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [196496] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8716), 1, + ACTIONS(8330), 1, anon_sym_DASH, - STATE(5183), 1, + STATE(5220), 1, sym_comment, - ACTIONS(8714), 11, + ACTIONS(8328), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194502] = 4, - ACTIONS(3), 1, + [196519] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8720), 1, + ACTIONS(1796), 1, anon_sym_DASH, - STATE(5184), 1, + STATE(5221), 1, sym_comment, - ACTIONS(8718), 11, - anon_sym_EQ, + ACTIONS(1798), 11, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194525] = 3, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [196542] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5185), 1, + STATE(5222), 1, sym_comment, - ACTIONS(8722), 12, + ACTIONS(8332), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392605,14 +400521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194546] = 3, - ACTIONS(3), 1, + [196563] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5186), 1, - sym_comment, - ACTIONS(8724), 12, + ACTIONS(5245), 1, sym__newline, - anon_sym_SEMI, + STATE(687), 1, + aux_sym__pipe_separator, + STATE(5223), 1, + sym_comment, + STATE(5418), 1, + aux_sym_shebang_repeat1, + ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392622,31 +400542,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [194567] = 3, - ACTIONS(3), 1, + [196590] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5187), 1, - sym_comment, - ACTIONS(8726), 12, + ACTIONS(7417), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8146), 1, + anon_sym_COMMA, + ACTIONS(8148), 1, + anon_sym_DASH, + ACTIONS(8316), 1, + anon_sym_EQ, + STATE(5224), 1, + sym_comment, + STATE(5358), 1, + aux_sym_shebang_repeat1, + ACTIONS(8144), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - [194588] = 3, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [196621] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5188), 1, + STATE(5225), 1, sym_comment, - ACTIONS(8728), 12, + ACTIONS(8162), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392658,13 +400583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [194609] = 3, - ACTIONS(3), 1, + [196642] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5189), 1, + STATE(5226), 1, sym_comment, - ACTIONS(8730), 12, + ACTIONS(8182), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392676,50 +400601,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [194630] = 4, - ACTIONS(3), 1, + [196663] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8734), 1, + ACTIONS(2255), 1, anon_sym_DASH, - STATE(5190), 1, + STATE(5227), 1, sym_comment, - ACTIONS(8732), 11, - anon_sym_EQ, + ACTIONS(2257), 11, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194653] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5191), 1, - sym_comment, - ACTIONS(8736), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [194674] = 3, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [196686] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5192), 1, + STATE(5228), 1, sym_comment, - ACTIONS(8544), 12, + ACTIONS(8164), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -392732,19 +400638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194695] = 5, - ACTIONS(3), 1, + [196707] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8738), 1, + ACTIONS(8334), 1, + anon_sym_DOT, + ACTIONS(8336), 1, aux_sym__immediate_decimal_token2, - STATE(5193), 1, + STATE(5229), 1, sym_comment, - ACTIONS(1376), 4, + ACTIONS(1473), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 7, + aux_sym_unquoted_token2, + ACTIONS(1475), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, @@ -392752,12 +400659,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [194720] = 3, + [196734] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(5194), 1, + ACTIONS(2746), 1, + anon_sym_DOLLAR, + ACTIONS(5479), 1, + anon_sym_LPAREN2, + ACTIONS(5483), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5485), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5487), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5635), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8338), 1, + anon_sym_RBRACK, + ACTIONS(8340), 1, + anon_sym_DOLLAR2, + ACTIONS(8342), 1, + aux_sym__immediate_decimal_token1, + STATE(2829), 1, + sym__immediate_decimal, + STATE(5230), 1, + sym_comment, + STATE(2947), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196775] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5564), 1, + anon_sym_LPAREN2, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5786), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8340), 1, + anon_sym_DOLLAR2, + ACTIONS(8344), 1, + anon_sym_RBRACK, + ACTIONS(8346), 1, + anon_sym_DOLLAR, + ACTIONS(8348), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8350), 1, + aux_sym__immediate_decimal_token5, + STATE(2946), 1, + sym__immediate_decimal, + STATE(5231), 1, + sym_comment, + STATE(3060), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196816] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5232), 1, sym_comment, - ACTIONS(8740), 12, + ACTIONS(8352), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392770,31 +400733,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194741] = 3, - ACTIONS(3), 1, + [196837] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5195), 1, + ACTIONS(2359), 1, + anon_sym_DASH, + STATE(5233), 1, sym_comment, - ACTIONS(8742), 12, + ACTIONS(2361), 11, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [194762] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [196860] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5196), 1, + STATE(5234), 1, sym_comment, - ACTIONS(7024), 12, - ts_builtin_sym_end, + ACTIONS(8354), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392806,57 +400769,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194783] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [196881] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5197), 1, + STATE(5235), 1, sym_comment, - ACTIONS(8744), 12, + ACTIONS(986), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(988), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [194804] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8410), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8412), 1, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8414), 1, - anon_sym_DASH, - ACTIONS(8416), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(5198), 1, + [196904] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5236), 1, sym_comment, - STATE(5201), 1, - aux_sym_ctrl_do_repeat1, - STATE(6298), 1, - sym__flag, - STATE(668), 2, - sym__blosure, - sym_val_variable, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [194843] = 3, - ACTIONS(3), 1, + ACTIONS(1519), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196927] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5199), 1, + STATE(5237), 1, sym_comment, - ACTIONS(8746), 12, + ACTIONS(8356), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392869,156 +400826,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194864] = 12, - ACTIONS(121), 1, + [196948] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1484), 1, - sym__entry_separator, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8518), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8660), 1, - anon_sym_DOLLAR, - ACTIONS(8748), 1, - anon_sym_DOT, - ACTIONS(8750), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8752), 1, - aux_sym__immediate_decimal_token3, - STATE(3045), 1, - sym__immediate_decimal, - STATE(5200), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8302), 1, + anon_sym_EQ, + ACTIONS(8360), 1, + anon_sym_COMMA, + ACTIONS(8362), 1, + anon_sym_DASH, + STATE(5238), 1, sym_comment, - ACTIONS(1482), 2, + STATE(5358), 1, + aux_sym_shebang_repeat1, + ACTIONS(8358), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(3044), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194903] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8410), 1, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(8412), 1, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8414), 1, - anon_sym_DASH, - ACTIONS(8416), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(5201), 1, - sym_comment, - STATE(5743), 1, - aux_sym_ctrl_do_repeat1, - STATE(6298), 1, - sym__flag, - STATE(662), 2, - sym__blosure, - sym_val_variable, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [194942] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5202), 1, - sym_comment, - ACTIONS(7134), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7140), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(7136), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(7138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [194969] = 9, - ACTIONS(3), 1, + [196979] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5000), 1, - anon_sym_DOT, - ACTIONS(5002), 1, - aux_sym_unquoted_token4, - ACTIONS(5004), 1, - aux_sym_unquoted_token6, - STATE(5203), 1, + STATE(5239), 1, sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2925), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [195002] = 12, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1480), 1, - sym__entry_separator, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8518), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8660), 1, - anon_sym_DOLLAR, - ACTIONS(8748), 1, + ACTIONS(990), 2, + anon_sym_DASH, anon_sym_DOT, - ACTIONS(8750), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8752), 1, - aux_sym__immediate_decimal_token3, - STATE(3047), 1, - sym__immediate_decimal, - STATE(5204), 1, - sym_comment, - ACTIONS(1478), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(3046), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195041] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5205), 1, - sym_comment, - ACTIONS(8754), 12, + ACTIONS(992), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [195062] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [197002] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5206), 1, + STATE(5240), 1, sym_comment, - ACTIONS(8756), 12, + ACTIONS(8364), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393031,78 +400886,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [195083] = 12, - ACTIONS(121), 1, + [197023] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1488), 1, - sym__entry_separator, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8518), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8660), 1, + ACTIONS(8216), 1, anon_sym_DOLLAR, - ACTIONS(8748), 1, - anon_sym_DOT, - ACTIONS(8750), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8752), 1, - aux_sym__immediate_decimal_token3, - STATE(3049), 1, - sym__immediate_decimal, - STATE(5207), 1, + ACTIONS(8218), 1, + anon_sym_DASH_DASH, + ACTIONS(8220), 1, + anon_sym_DASH, + ACTIONS(8222), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5241), 1, sym_comment, - ACTIONS(1486), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(3048), 2, - sym__expr_parenthesized_immediate, + STATE(5272), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, + sym__flag, + STATE(674), 2, + sym__blosure, sym_val_variable, - [195122] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8758), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8760), 1, - aux_sym__immediate_decimal_token2, - STATE(5208), 1, - sym_comment, - ACTIONS(1368), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [195149] = 3, - ACTIONS(3), 1, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [197062] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5209), 1, + ACTIONS(1525), 1, + anon_sym_DASH, + ACTIONS(7303), 1, + aux_sym__unquoted_in_list_token2, + STATE(5242), 1, sym_comment, - ACTIONS(8762), 12, + ACTIONS(1537), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [195170] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [197087] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(5210), 1, + ACTIONS(5564), 1, + anon_sym_LPAREN2, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5786), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8340), 1, + anon_sym_DOLLAR2, + ACTIONS(8346), 1, + anon_sym_DOLLAR, + ACTIONS(8348), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8350), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8366), 1, + anon_sym_RBRACK, + STATE(2946), 1, + sym__immediate_decimal, + STATE(5243), 1, + sym_comment, + STATE(3060), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197128] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5244), 1, sym_comment, - ACTIONS(8764), 12, + ACTIONS(8368), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393115,84 +400979,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [195191] = 3, - ACTIONS(3), 1, + [197149] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5211), 1, + ACTIONS(2263), 1, + anon_sym_DASH, + STATE(5245), 1, sym_comment, - ACTIONS(8766), 12, + ACTIONS(2265), 11, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [195212] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [197172] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5212), 1, + STATE(5246), 1, sym_comment, - ACTIONS(8768), 12, + ACTIONS(1473), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 9, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [195233] = 3, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [197195] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5213), 1, + ACTIONS(1778), 1, + anon_sym_DASH, + STATE(5247), 1, sym_comment, - ACTIONS(8770), 12, + ACTIONS(1780), 11, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [195254] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [197218] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5214), 1, + ACTIONS(2295), 1, + anon_sym_DASH, + STATE(5248), 1, sym_comment, - ACTIONS(8772), 12, + ACTIONS(2297), 11, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [195275] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [197241] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5215), 1, + STATE(5249), 1, + sym_comment, + ACTIONS(7564), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7566), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [197264] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5250), 1, sym_comment, - ACTIONS(8774), 12, + ACTIONS(8290), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393204,51 +401092,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [195296] = 5, - ACTIONS(3), 1, + [197285] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8776), 1, + ACTIONS(8370), 1, + anon_sym_DOT, + ACTIONS(8372), 1, aux_sym__immediate_decimal_token2, - STATE(5216), 1, + STATE(5251), 1, sym_comment, - ACTIONS(1378), 4, + ACTIONS(1475), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1376), 7, + ACTIONS(1473), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [195321] = 3, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [197312] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5217), 1, + ACTIONS(1427), 1, + aux_sym_ctrl_match_token1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8374), 1, + anon_sym_DOLLAR, + ACTIONS(8376), 1, + anon_sym_DOT, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(5252), 1, + sym_comment, + STATE(6219), 1, + sym__immediate_decimal, + ACTIONS(8378), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6807), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197351] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8386), 1, + anon_sym_DASH, + STATE(5253), 1, sym_comment, - ACTIONS(8778), 12, + ACTIONS(8384), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [195342] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [197374] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5218), 1, + STATE(5254), 1, sym_comment, - ACTIONS(8780), 12, + ACTIONS(6849), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393260,13 +401177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [195363] = 3, - ACTIONS(3), 1, + [197395] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5219), 1, + STATE(5255), 1, sym_comment, - ACTIONS(8782), 12, + ACTIONS(8160), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393278,13 +401195,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [195384] = 3, - ACTIONS(3), 1, + [197416] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5220), 1, + STATE(5256), 1, sym_comment, - ACTIONS(8784), 12, + ACTIONS(8388), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393297,12 +401213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [195405] = 3, - ACTIONS(3), 1, + [197437] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5221), 1, + STATE(5257), 1, sym_comment, - ACTIONS(8786), 12, + ACTIONS(8390), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393315,48 +401231,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [195426] = 3, - ACTIONS(3), 1, + [197458] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5222), 1, + ACTIONS(6189), 1, + anon_sym_DASH, + STATE(5258), 1, sym_comment, - ACTIONS(8788), 12, + ACTIONS(6191), 11, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [195447] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [197481] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5223), 1, + ACTIONS(2340), 1, + anon_sym_DASH, + STATE(5259), 1, sym_comment, - ACTIONS(8790), 12, + ACTIONS(2342), 11, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [195468] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [197504] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5224), 1, + STATE(5260), 1, sym_comment, - ACTIONS(8792), 12, + ACTIONS(8392), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393369,12 +401287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [195489] = 3, - ACTIONS(3), 1, + [197525] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5225), 1, + STATE(5261), 1, sym_comment, - ACTIONS(8794), 12, + ACTIONS(8394), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393387,139 +401305,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [195510] = 3, - ACTIONS(3), 1, + [197546] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5226), 1, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1690), 1, + anon_sym_DASH, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + STATE(5262), 1, sym_comment, - ACTIONS(7110), 12, + ACTIONS(1698), 9, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - [195531] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(3603), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8508), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - anon_sym_DOT, - STATE(5227), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [197573] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2251), 1, + anon_sym_DASH, + STATE(5263), 1, sym_comment, - STATE(5852), 1, - sym__immediate_decimal, - ACTIONS(1416), 2, + ACTIONS(2253), 11, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8506), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6162), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195568] = 11, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [197596] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(6402), 1, + ACTIONS(1443), 1, + anon_sym_RBRACE, + ACTIONS(1455), 1, + sym__entry_separator, + ACTIONS(1457), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8086), 1, anon_sym_LPAREN2, - ACTIONS(8470), 1, + ACTIONS(8396), 1, anon_sym_DOLLAR, - ACTIONS(8634), 1, - anon_sym_DOT, - ACTIONS(8638), 1, + ACTIONS(8398), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8400), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8402), 1, aux_sym__immediate_decimal_token4, - STATE(5228), 1, + ACTIONS(8404), 1, + aux_sym__immediate_decimal_token5, + STATE(5264), 1, sym_comment, - STATE(6380), 1, + STATE(6862), 1, sym__immediate_decimal, - ACTIONS(1416), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8636), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3530), 2, + STATE(3121), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195605] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - STATE(679), 1, - aux_sym__pipe_separator, - STATE(5229), 1, - sym_comment, - STATE(5400), 1, - aux_sym_shebang_repeat1, - ACTIONS(2825), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [195632] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5230), 1, - sym_comment, - ACTIONS(8398), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [195653] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5231), 1, - sym_comment, - ACTIONS(8798), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [195674] = 3, - ACTIONS(3), 1, + [197637] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5232), 1, + STATE(5265), 1, sym_comment, - ACTIONS(8400), 12, + ACTIONS(8186), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -393532,64 +401391,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195695] = 13, - ACTIONS(121), 1, + [197658] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1350), 1, - anon_sym_RBRACE, - ACTIONS(1362), 1, - sym__entry_separator, - ACTIONS(1364), 1, - aux_sym__unquoted_in_record_token5, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8660), 1, - anon_sym_DOLLAR, - ACTIONS(8800), 1, - anon_sym_DOT, - ACTIONS(8802), 1, + ACTIONS(8406), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8804), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8806), 1, - aux_sym__immediate_decimal_token4, - STATE(5233), 1, - sym_comment, - STATE(6233), 1, - sym__immediate_decimal, - STATE(3040), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195736] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym__unquoted_in_list_token7, - STATE(5234), 1, + ACTIONS(8408), 1, + aux_sym__immediate_decimal_token2, + STATE(5266), 1, sym_comment, - ACTIONS(948), 5, - sym_identifier, + ACTIONS(1481), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [197685] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1741), 1, anon_sym_DASH, - ACTIONS(950), 5, + STATE(5267), 1, + sym_comment, + ACTIONS(1745), 11, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - [195763] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [197708] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8810), 1, + ACTIONS(2363), 1, anon_sym_DASH, - STATE(5235), 1, + STATE(5268), 1, sym_comment, - ACTIONS(8808), 11, - anon_sym_EQ, + ACTIONS(2365), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -393600,15 +401449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195786] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [197731] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8814), 1, + ACTIONS(2367), 1, anon_sym_DASH, - STATE(5236), 1, + STATE(5269), 1, sym_comment, - ACTIONS(8812), 11, - anon_sym_EQ, + ACTIONS(2369), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -393619,14 +401468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195809] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [197754] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8818), 1, + ACTIONS(8412), 1, anon_sym_DASH, - STATE(5237), 1, + STATE(5270), 1, sym_comment, - ACTIONS(8816), 11, + ACTIONS(8410), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -393638,39 +401488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195832] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8470), 1, - anon_sym_DOLLAR, - ACTIONS(8634), 1, - anon_sym_DOT, - ACTIONS(8638), 1, - aux_sym__immediate_decimal_token4, - STATE(5238), 1, - sym_comment, - STATE(6411), 1, - sym__immediate_decimal, - ACTIONS(1425), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8636), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3512), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195869] = 3, - ACTIONS(3), 1, + [197777] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5239), 1, + STATE(5271), 1, sym_comment, - ACTIONS(8404), 12, - ts_builtin_sym_end, + ACTIONS(8414), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393682,15 +401505,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195890] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [197798] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8822), 1, + ACTIONS(8216), 1, + anon_sym_DOLLAR, + ACTIONS(8218), 1, + anon_sym_DASH_DASH, + ACTIONS(8220), 1, anon_sym_DASH, - STATE(5240), 1, + ACTIONS(8222), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5272), 1, sym_comment, - ACTIONS(8820), 11, - anon_sym_EQ, + STATE(5785), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, + sym__flag, + STATE(673), 2, + sym__blosure, + sym_val_variable, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [197837] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2311), 1, + anon_sym_DASH, + STATE(5273), 1, + sym_comment, + ACTIONS(2313), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -393701,111 +401551,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195913] = 12, - ACTIONS(121), 1, + aux_sym_ctrl_match_token1, + [197860] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - sym__entry_separator, - ACTIONS(2885), 1, - anon_sym_DOLLAR, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8518), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8824), 1, - anon_sym_DOT, - ACTIONS(8826), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8828), 1, - aux_sym__immediate_decimal_token3, - STATE(5241), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8108), 1, + anon_sym_COMMA, + ACTIONS(8110), 1, + anon_sym_DASH, + ACTIONS(8316), 1, + anon_sym_EQ, + STATE(5274), 1, sym_comment, - STATE(6071), 1, - sym__immediate_decimal, - ACTIONS(1449), 2, + STATE(5358), 1, + aux_sym_shebang_repeat1, + ACTIONS(8106), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5976), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195952] = 12, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1457), 1, - sym__entry_separator, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8518), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8660), 1, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(8748), 1, - anon_sym_DOT, - ACTIONS(8750), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8752), 1, - aux_sym__immediate_decimal_token3, - STATE(3081), 1, - sym__immediate_decimal, - STATE(5242), 1, - sym_comment, - ACTIONS(1449), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(3126), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195991] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8830), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8832), 1, - aux_sym__immediate_decimal_token2, - STATE(5243), 1, - sym_comment, - ACTIONS(1368), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196018] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [197891] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8454), 1, + ACTIONS(2311), 1, anon_sym_DASH, - ACTIONS(8632), 1, - anon_sym_EQ, - ACTIONS(8834), 1, - anon_sym_COMMA, - STATE(5244), 1, + STATE(5275), 1, sym_comment, - STATE(5281), 1, - aux_sym_shebang_repeat1, - ACTIONS(8448), 7, + ACTIONS(2313), 11, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196049] = 3, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [197914] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5245), 1, + STATE(5276), 1, sym_comment, - ACTIONS(8458), 12, - ts_builtin_sym_end, + ACTIONS(8416), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393817,13 +401611,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196070] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [197935] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5246), 1, + ACTIONS(8418), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8420), 1, + aux_sym__immediate_decimal_token2, + STATE(5277), 1, sym_comment, - ACTIONS(8460), 12, - ts_builtin_sym_end, + ACTIONS(1483), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1481), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [197962] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5278), 1, + sym_comment, + ACTIONS(8422), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393835,115 +401650,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196091] = 5, - ACTIONS(121), 1, + anon_sym_RPAREN, + [197983] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6169), 1, - anon_sym_LPAREN2, - ACTIONS(8510), 1, - aux_sym__unquoted_in_list_token3, - STATE(5247), 1, + ACTIONS(1899), 1, + anon_sym_DASH, + STATE(5279), 1, sym_comment, - ACTIONS(6167), 10, + ACTIONS(1901), 11, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - [196116] = 13, - ACTIONS(121), 1, + aux_sym_ctrl_match_token1, + [198006] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1404), 1, - anon_sym_RBRACE, - ACTIONS(1416), 1, - sym__entry_separator, - ACTIONS(1418), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2885), 1, + ACTIONS(1835), 1, + anon_sym_DASH, + STATE(5280), 1, + sym_comment, + ACTIONS(1837), 11, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8434), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [198029] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2117), 1, + anon_sym_DASH, + ACTIONS(2119), 1, anon_sym_LPAREN2, - ACTIONS(8438), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8440), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8836), 1, - anon_sym_DOT, - STATE(5248), 1, + STATE(5281), 1, sym_comment, - STATE(5757), 1, - sym__immediate_decimal, - STATE(6102), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196157] = 13, - ACTIONS(121), 1, + ACTIONS(2121), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [198056] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1404), 1, - anon_sym_RBRACE, - ACTIONS(1416), 1, - sym__entry_separator, - ACTIONS(1418), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8660), 1, + ACTIONS(8426), 1, + anon_sym_DASH, + STATE(5282), 1, + sym_comment, + ACTIONS(8424), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8800), 1, - anon_sym_DOT, - ACTIONS(8802), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8804), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8806), 1, - aux_sym__immediate_decimal_token4, - STATE(5249), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [198079] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, + sym__newline, + STATE(685), 1, + aux_sym__pipe_separator, + STATE(5283), 1, sym_comment, - STATE(6197), 1, - sym__immediate_decimal, - STATE(3043), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196198] = 12, - ACTIONS(3), 1, + STATE(5418), 1, + aux_sym_shebang_repeat1, + ACTIONS(2866), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [198106] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8412), 1, - anon_sym_DASH_DASH, - ACTIONS(8414), 1, + ACTIONS(2371), 1, anon_sym_DASH, - ACTIONS(8677), 1, + STATE(5284), 1, + sym_comment, + ACTIONS(2373), 11, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8679), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - STATE(1937), 1, - sym_block, - STATE(1938), 1, - sym_val_closure, - STATE(5250), 1, - sym_comment, - STATE(5743), 1, - aux_sym_ctrl_do_repeat1, - STATE(6298), 1, - sym__flag, - STATE(675), 2, - sym__blosure, - sym_val_variable, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [196237] = 3, - ACTIONS(3), 1, + [198129] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5251), 1, + STATE(5285), 1, sym_comment, - ACTIONS(8468), 12, + ACTIONS(8236), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -393956,38 +401787,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196258] = 8, - ACTIONS(3), 1, + [198150] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8464), 1, - anon_sym_COMMA, - ACTIONS(8466), 1, + ACTIONS(2379), 1, anon_sym_DASH, - ACTIONS(8632), 1, - anon_sym_EQ, - STATE(5252), 1, + STATE(5286), 1, sym_comment, - STATE(5281), 1, - aux_sym_shebang_repeat1, - ACTIONS(8462), 7, + ACTIONS(2381), 11, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196289] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [198173] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5253), 1, - sym_comment, - ACTIONS(928), 2, + ACTIONS(8430), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(930), 10, + STATE(5287), 1, + sym_comment, + ACTIONS(8428), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -393998,34 +401825,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196312] = 4, + [198196] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5254), 1, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym__unquoted_in_list_token4, + STATE(5288), 1, sym_comment, - ACTIONS(924), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(926), 10, + ACTIONS(1006), 5, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(1008), 5, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196335] = 4, - ACTIONS(3), 1, + [198223] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5255), 1, + STATE(5289), 1, sym_comment, - ACTIONS(932), 2, + ACTIONS(6863), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [198244] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2336), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(934), 10, + STATE(5290), 1, + sym_comment, + ACTIONS(2338), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -394036,13 +401882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196358] = 3, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [198267] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5256), 1, + STATE(5291), 1, sym_comment, - ACTIONS(8478), 12, - ts_builtin_sym_end, + ACTIONS(8432), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394054,42 +401900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196379] = 13, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1404), 1, - anon_sym_RBRACK, - ACTIONS(1416), 1, - sym__entry_separator, - ACTIONS(1418), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2885), 1, - anon_sym_DOLLAR, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8514), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8516), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8518), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8838), 1, - anon_sym_DOT, - STATE(5257), 1, - sym_comment, - STATE(5679), 1, - sym__immediate_decimal, - STATE(6102), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196420] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [198288] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(948), 1, + ACTIONS(1839), 1, anon_sym_DASH, - STATE(5258), 1, + STATE(5292), 1, sym_comment, - ACTIONS(950), 11, + ACTIONS(1841), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -394101,15 +401920,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [196443] = 4, - ACTIONS(3), 1, + [198311] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8842), 1, + ACTIONS(2383), 1, anon_sym_DASH, - STATE(5259), 1, + STATE(5293), 1, sym_comment, - ACTIONS(8840), 11, - anon_sym_EQ, + ACTIONS(2385), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -394120,42 +401938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196466] = 13, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1423), 1, - anon_sym_RBRACE, - ACTIONS(1425), 1, - sym__entry_separator, - ACTIONS(1427), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8660), 1, - anon_sym_DOLLAR, - ACTIONS(8800), 1, - anon_sym_DOT, - ACTIONS(8802), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8804), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8806), 1, - aux_sym__immediate_decimal_token4, - STATE(5260), 1, - sym_comment, - STATE(6256), 1, - sym__immediate_decimal, - STATE(3050), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196507] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [198334] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2325), 1, + ACTIONS(8436), 1, anon_sym_DASH, - STATE(5261), 1, + STATE(5294), 1, sym_comment, - ACTIONS(2327), 11, + ACTIONS(8434), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -394166,15 +401958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [196530] = 4, - ACTIONS(3), 1, + [198357] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8846), 1, + ACTIONS(8440), 1, anon_sym_DASH, - STATE(5262), 1, + STATE(5295), 1, sym_comment, - ACTIONS(8844), 11, + ACTIONS(8438), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394186,258 +401977,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196553] = 11, - ACTIONS(3), 1, + [198380] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1404), 1, + STATE(5296), 1, + sym_comment, + ACTIONS(1589), 2, anon_sym_DASH, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6596), 1, - anon_sym_DOT, - ACTIONS(8848), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 10, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - STATE(5263), 1, - sym_comment, - STATE(6151), 1, - sym__immediate_decimal, - ACTIONS(1416), 2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(6416), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6156), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196590] = 11, + anon_sym_LPAREN2, + [198403] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1404), 1, - anon_sym_DASH, - ACTIONS(6402), 1, + ACTIONS(1553), 1, + sym__entry_separator, + ACTIONS(8086), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(8094), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8850), 1, + ACTIONS(8096), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8396), 1, anon_sym_DOLLAR, - STATE(3685), 1, - sym__immediate_decimal, - STATE(5264), 1, - sym_comment, - ACTIONS(1416), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(6406), 2, + ACTIONS(8442), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token3, - STATE(3530), 2, + STATE(3109), 1, + sym__immediate_decimal, + STATE(5297), 1, + sym_comment, + ACTIONS(1551), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(3106), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196627] = 11, - ACTIONS(3), 1, + [198442] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1423), 1, + STATE(5298), 1, + sym_comment, + ACTIONS(8446), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [198463] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8450), 1, anon_sym_DASH, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8850), 1, - anon_sym_DOLLAR, - STATE(3676), 1, - sym__immediate_decimal, - STATE(5265), 1, + STATE(5299), 1, sym_comment, - ACTIONS(1425), 2, + ACTIONS(8448), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3512), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196664] = 11, - ACTIONS(3), 1, + [198486] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1449), 1, + ACTIONS(8454), 1, anon_sym_DASH, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6414), 1, - anon_sym_DOT, - ACTIONS(8848), 1, - anon_sym_DOLLAR, - STATE(5266), 1, + STATE(5300), 1, sym_comment, - STATE(6155), 1, - sym__immediate_decimal, - ACTIONS(1457), 2, + ACTIONS(8452), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(6416), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6154), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196701] = 11, - ACTIONS(3), 1, + [198509] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1449), 1, + ACTIONS(2326), 1, anon_sym_DASH, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8850), 1, - anon_sym_DOLLAR, - STATE(3529), 1, - sym__immediate_decimal, - STATE(5267), 1, + STATE(5301), 1, sym_comment, - ACTIONS(1457), 2, + ACTIONS(2328), 11, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3528), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196738] = 11, - ACTIONS(3), 1, + [198532] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1482), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8302), 1, + anon_sym_EQ, + ACTIONS(8458), 1, + anon_sym_COMMA, + ACTIONS(8460), 1, anon_sym_DASH, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8850), 1, - anon_sym_DOLLAR, - STATE(3499), 1, - sym__immediate_decimal, - STATE(5268), 1, + STATE(5302), 1, sym_comment, - ACTIONS(1484), 2, + STATE(5358), 1, + aux_sym_shebang_repeat1, + ACTIONS(8456), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3514), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196775] = 11, - ACTIONS(3), 1, + [198563] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5303), 1, + sym_comment, + ACTIONS(8462), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [198584] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5304), 1, + sym_comment, + ACTIONS(6931), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6937), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6933), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6935), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [198611] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5305), 1, + sym_comment, + ACTIONS(8198), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [198632] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5306), 1, + sym_comment, + ACTIONS(8464), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [198653] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1478), 1, - anon_sym_DASH, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8850), 1, - anon_sym_DOLLAR, - STATE(3500), 1, - sym__immediate_decimal, - STATE(5269), 1, + STATE(5307), 1, sym_comment, - ACTIONS(1480), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3497), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196812] = 11, + ACTIONS(7560), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7562), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [198676] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1486), 1, - anon_sym_DASH, - ACTIONS(6402), 1, + ACTIONS(5564), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8850), 1, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5786), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8340), 1, + anon_sym_DOLLAR2, + ACTIONS(8346), 1, anon_sym_DOLLAR, - STATE(3490), 1, + ACTIONS(8348), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8350), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8466), 1, + anon_sym_RBRACK, + STATE(2946), 1, sym__immediate_decimal, - STATE(5270), 1, + STATE(5308), 1, sym_comment, - ACTIONS(1488), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3513), 2, + STATE(3060), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196849] = 13, - ACTIONS(121), 1, + [198717] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1404), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8302), 1, + anon_sym_EQ, + ACTIONS(8470), 1, + anon_sym_COMMA, + ACTIONS(8472), 1, + anon_sym_DASH, + STATE(5309), 1, + sym_comment, + STATE(5358), 1, + aux_sym_shebang_repeat1, + ACTIONS(8468), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - ACTIONS(1416), 1, - sym__entry_separator, - ACTIONS(1418), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8660), 1, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(8662), 1, - anon_sym_DOT, - ACTIONS(8664), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8666), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8668), 1, - aux_sym__immediate_decimal_token4, - STATE(5271), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [198748] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5310), 1, sym_comment, - STATE(6302), 1, - sym__immediate_decimal, - STATE(3043), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196890] = 8, - ACTIONS(3), 1, + ACTIONS(8474), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [198769] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8612), 1, + ACTIONS(8302), 1, anon_sym_EQ, - ACTIONS(8854), 1, + ACTIONS(8478), 1, anon_sym_COMMA, - ACTIONS(8856), 1, + ACTIONS(8480), 1, anon_sym_DASH, - STATE(5272), 1, + STATE(5311), 1, sym_comment, - STATE(5281), 1, + STATE(5358), 1, aux_sym_shebang_repeat1, - ACTIONS(8852), 7, + ACTIONS(8476), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -394445,15 +402307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196921] = 4, - ACTIONS(3), 1, + [198800] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8860), 1, + ACTIONS(1006), 1, anon_sym_DASH, - STATE(5273), 1, + STATE(5312), 1, sym_comment, - ACTIONS(8858), 11, - anon_sym_EQ, + ACTIONS(1008), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -394464,274 +402325,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196944] = 9, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [198823] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2927), 1, - anon_sym_DASH, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(8380), 1, - aux_sym_unquoted_token5, - STATE(5274), 1, + STATE(5313), 1, sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2925), 5, - ts_builtin_sym_end, + ACTIONS(8482), 12, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [196977] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8612), 1, - anon_sym_EQ, - ACTIONS(8864), 1, - anon_sym_COMMA, - ACTIONS(8866), 1, - anon_sym_DASH, - STATE(5275), 1, - sym_comment, - STATE(5281), 1, - aux_sym_shebang_repeat1, - ACTIONS(8862), 7, - sym_identifier, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197008] = 10, - ACTIONS(3), 1, + [198844] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6408), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6414), 1, - anon_sym_DOT, - STATE(5276), 1, - sym_comment, - STATE(6161), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8118), 1, + anon_sym_DOLLAR, + STATE(3581), 1, sym__immediate_decimal, - ACTIONS(6416), 2, + STATE(5314), 1, + sym_comment, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6160), 2, + STATE(3579), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1457), 3, + ACTIONS(1441), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [197043] = 10, - ACTIONS(3), 1, + [198879] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(6260), 1, + anon_sym_DOLLAR, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, + ACTIONS(6319), 1, anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(8380), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8470), 1, - anon_sym_DOLLAR, - STATE(3529), 1, - sym__immediate_decimal, - STATE(5277), 1, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(5315), 1, sym_comment, - ACTIONS(6406), 2, + STATE(6377), 1, + sym__immediate_decimal, + ACTIONS(1427), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(8378), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3528), 2, + STATE(6379), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1457), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [197078] = 10, - ACTIONS(3), 1, + [198916] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8470), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8118), 1, anon_sym_DOLLAR, - STATE(3499), 1, + STATE(3585), 1, sym__immediate_decimal, - STATE(5278), 1, + STATE(5316), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3514), 2, + STATE(3584), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1484), 3, + ACTIONS(1553), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [197113] = 10, - ACTIONS(3), 1, + [198951] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8470), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8118), 1, anon_sym_DOLLAR, - STATE(3500), 1, + STATE(3587), 1, sym__immediate_decimal, - STATE(5279), 1, + STATE(5317), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3497), 2, + STATE(3586), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1480), 3, + ACTIONS(1557), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [197148] = 10, - ACTIONS(3), 1, + [198986] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8470), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8118), 1, anon_sym_DOLLAR, - STATE(3490), 1, + STATE(3589), 1, sym__immediate_decimal, - STATE(5280), 1, + STATE(5318), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3513), 2, + STATE(3611), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1488), 3, + ACTIONS(1509), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [197183] = 5, - ACTIONS(3), 1, + [199021] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DASH, - ACTIONS(8868), 1, - sym__newline, - STATE(5281), 2, + STATE(5319), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1858), 9, - anon_sym_EQ, - sym_identifier, + ACTIONS(8484), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197208] = 4, - ACTIONS(3), 1, + [199042] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8873), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8248), 1, + anon_sym_COMMA, + ACTIONS(8250), 1, anon_sym_DASH, - STATE(5282), 1, - sym_comment, - ACTIONS(8871), 11, + ACTIONS(8316), 1, anon_sym_EQ, + STATE(5320), 1, + sym_comment, + STATE(5358), 1, + aux_sym_shebang_repeat1, + ACTIONS(8246), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [197231] = 12, - ACTIONS(3), 1, + [199073] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2925), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5000), 1, - anon_sym_DOT, - ACTIONS(5002), 1, - aux_sym_unquoted_token4, - ACTIONS(5004), 1, - aux_sym_unquoted_token6, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8875), 1, + ACTIONS(6260), 1, anon_sym_DOLLAR, - STATE(5283), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6264), 1, + anon_sym_DOT, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(5321), 1, sym_comment, - STATE(6099), 1, + STATE(6378), 1, sym__immediate_decimal, - ACTIONS(2933), 2, + ACTIONS(1441), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(8378), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6248), 2, + STATE(6204), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197270] = 8, - ACTIONS(3), 1, + [199110] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + STATE(5322), 1, + sym_comment, + ACTIONS(8486), 12, sym__newline, - ACTIONS(8568), 1, - anon_sym_COMMA, - ACTIONS(8570), 1, - anon_sym_DASH, - ACTIONS(8632), 1, - anon_sym_EQ, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5284), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [199131] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5323), 1, sym_comment, - ACTIONS(8566), 7, - sym_identifier, + ACTIONS(8488), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + [199152] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8218), 1, anon_sym_DASH_DASH, - [197301] = 3, - ACTIONS(3), 1, + ACTIONS(8220), 1, + anon_sym_DASH, + ACTIONS(8490), 1, + anon_sym_DOLLAR, + ACTIONS(8492), 1, + aux_sym_ctrl_match_token1, + STATE(1997), 1, + sym_block, + STATE(2090), 1, + sym_val_closure, + STATE(5324), 1, + sym_comment, + STATE(5381), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, + sym__flag, + STATE(682), 2, + sym__blosure, + sym_val_variable, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [199191] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5285), 1, + STATE(5325), 1, sym_comment, - ACTIONS(8418), 12, - ts_builtin_sym_end, + ACTIONS(8494), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394743,33 +402617,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [197322] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [199212] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_DASH, - STATE(5286), 1, + STATE(5326), 1, sym_comment, - ACTIONS(1735), 11, - sym_identifier, + ACTIONS(8496), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197345] = 4, - ACTIONS(3), 1, + [199233] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(2344), 1, anon_sym_DASH, - STATE(5287), 1, + STATE(5327), 1, sym_comment, - ACTIONS(2250), 11, + ACTIONS(2346), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -394781,78 +402655,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [197368] = 4, - ACTIONS(3), 1, + [199256] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2329), 1, - anon_sym_DASH, - STATE(5288), 1, + STATE(5328), 1, sym_comment, - ACTIONS(2331), 11, + ACTIONS(1721), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 10, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197391] = 8, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [199279] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8576), 1, - anon_sym_DASH, - ACTIONS(8632), 1, - anon_sym_EQ, - ACTIONS(8877), 1, - anon_sym_COMMA, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5289), 1, + STATE(5329), 1, sym_comment, - ACTIONS(8572), 7, - sym_identifier, + ACTIONS(8498), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197422] = 6, - ACTIONS(121), 1, + [199300] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, + ACTIONS(1711), 1, anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token7, - STATE(5290), 1, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2085), 1, + anon_sym_DASH, + STATE(5330), 1, sym_comment, - ACTIONS(2077), 5, + ACTIONS(2087), 9, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2081), 5, sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - [197449] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [199327] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5291), 1, + STATE(5331), 1, sym_comment, - ACTIONS(8879), 2, + ACTIONS(8500), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(8881), 10, + ACTIONS(8502), 10, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -394863,54 +402732,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [197472] = 6, - ACTIONS(121), 1, + [199350] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym__unquoted_in_list_token7, - STATE(5292), 1, + STATE(5332), 1, + sym_comment, + ACTIONS(8504), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [199371] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8508), 1, + anon_sym_DASH, + STATE(5333), 1, sym_comment, - ACTIONS(2155), 5, + ACTIONS(8506), 11, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [199394] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8170), 1, anon_sym_DASH, - ACTIONS(2159), 5, + STATE(5334), 1, + sym_comment, + ACTIONS(8166), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - [197499] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym__unquoted_in_list_token7, - STATE(5293), 1, - sym_comment, - ACTIONS(2163), 5, - sym_identifier, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [199417] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8512), 1, anon_sym_DASH, - ACTIONS(2165), 5, + STATE(5335), 1, + sym_comment, + ACTIONS(8510), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - [197526] = 3, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [199440] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5294), 1, + STATE(5336), 1, sym_comment, - ACTIONS(8540), 12, + ACTIONS(8152), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -394923,143 +402825,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [197547] = 8, - ACTIONS(3), 1, + [199461] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + STATE(5337), 1, + sym_comment, + ACTIONS(8514), 12, sym__newline, - ACTIONS(8582), 1, - anon_sym_COMMA, - ACTIONS(8584), 1, - anon_sym_DASH, - ACTIONS(8632), 1, - anon_sym_EQ, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5295), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [199482] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5338), 1, sym_comment, - ACTIONS(8580), 7, - sym_identifier, + ACTIONS(6927), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197578] = 4, - ACTIONS(3), 1, + [199503] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2204), 1, + ACTIONS(1709), 1, anon_sym_DASH, - STATE(5296), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + STATE(5339), 1, sym_comment, - ACTIONS(2206), 11, + ACTIONS(1717), 9, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197601] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8883), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8885), 1, - aux_sym__immediate_decimal_token2, - STATE(5297), 1, - sym_comment, - ACTIONS(1368), 4, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token6, - ACTIONS(1370), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [197628] = 14, - ACTIONS(3), 1, + [199530] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOLLAR, - ACTIONS(7936), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7938), 1, - anon_sym_DASH_DASH, - ACTIONS(7940), 1, - anon_sym_DASH, - STATE(4375), 1, - sym_param_long_flag, - STATE(4683), 1, - sym__param_name, - STATE(5262), 1, - sym_param_rest, - STATE(5273), 1, - sym_param_opt, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5282), 1, - sym_param_short_flag, - STATE(5298), 1, + STATE(5340), 1, sym_comment, - [197671] = 4, - ACTIONS(3), 1, + ACTIONS(8516), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(8518), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [199553] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2394), 1, + ACTIONS(8522), 1, anon_sym_DASH, - STATE(5299), 1, + STATE(5341), 1, sym_comment, - ACTIONS(2396), 11, + ACTIONS(8520), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197694] = 4, - ACTIONS(3), 1, + [199576] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2333), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8102), 1, + anon_sym_COMMA, + ACTIONS(8104), 1, anon_sym_DASH, - STATE(5300), 1, + ACTIONS(8316), 1, + anon_sym_EQ, + STATE(5342), 1, sym_comment, - ACTIONS(2335), 11, + STATE(5358), 1, + aux_sym_shebang_repeat1, + ACTIONS(8100), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197717] = 3, - ACTIONS(3), 1, + [199607] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5301), 1, + STATE(5343), 1, sym_comment, - ACTIONS(8408), 12, - ts_builtin_sym_end, + ACTIONS(8524), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395071,545 +402960,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [197738] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [199628] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2277), 1, - anon_sym_DASH, - STATE(5302), 1, + STATE(5344), 1, sym_comment, - ACTIONS(2279), 11, - sym_identifier, + ACTIONS(8526), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197761] = 8, - ACTIONS(3), 1, + [199649] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(883), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3262), 1, - sym_cell_path, - STATE(5303), 1, + STATE(5345), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(885), 6, + ACTIONS(8528), 12, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [197791] = 10, + [199670] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(1441), 1, + sym__entry_separator, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8094), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6400), 1, + ACTIONS(8096), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8396), 1, anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8889), 1, - anon_sym_DOT, - STATE(3529), 1, - sym__immediate_decimal, - STATE(5304), 1, - sym_comment, - ACTIONS(1457), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8891), 2, + ACTIONS(8442), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token3, - STATE(3528), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197825] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8895), 1, - anon_sym_DASH_DASH, - ACTIONS(8897), 1, - anon_sym_DASH, - ACTIONS(8899), 1, - anon_sym_as, - STATE(5305), 1, + STATE(3167), 1, + sym__immediate_decimal, + STATE(5346), 1, sym_comment, - STATE(5404), 1, - aux_sym_ctrl_do_repeat1, - STATE(5878), 1, - sym__flag, - STATE(5790), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8893), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1431), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [197857] = 9, - ACTIONS(3), 1, + STATE(3166), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199709] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8895), 1, - anon_sym_DASH_DASH, - ACTIONS(8897), 1, - anon_sym_DASH, - ACTIONS(8903), 1, - anon_sym_as, - STATE(5306), 1, + STATE(5347), 1, sym_comment, - STATE(5382), 1, - aux_sym_ctrl_do_repeat1, - STATE(5878), 1, - sym__flag, - STATE(5790), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8901), 4, + ACTIONS(8530), 12, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [197889] = 10, + [199730] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2927), 1, - anon_sym_DASH, - ACTIONS(2935), 1, + ACTIONS(1557), 1, + sym__entry_separator, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8094), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - anon_sym_DOT, - ACTIONS(8907), 1, - aux_sym_unquoted_token4, - ACTIONS(8909), 1, - aux_sym_unquoted_token6, - STATE(5307), 1, - sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, + ACTIONS(8096), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8396), 1, + anon_sym_DOLLAR, + ACTIONS(8442), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token3, - ACTIONS(2925), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197923] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(8913), 1, - anon_sym_DASH_DASH, - ACTIONS(8915), 1, - anon_sym_DASH, - STATE(5308), 1, + STATE(3113), 1, + sym__immediate_decimal, + STATE(5348), 1, sym_comment, - STATE(5437), 1, - aux_sym_ctrl_do_repeat1, - STATE(5587), 1, + ACTIONS(1555), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(3111), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6298), 1, - sym__flag, - STATE(6391), 1, - sym__variable_name, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [197961] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5309), 1, - sym_comment, - ACTIONS(1506), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1504), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [197983] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5310), 1, - sym_comment, - ACTIONS(1504), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1506), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198005] = 9, + [199769] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - anon_sym_DASH, - ACTIONS(4075), 1, - anon_sym_DOT_DOT2, - ACTIONS(8917), 1, - sym_filesize_unit, - ACTIONS(8919), 1, - sym_duration_unit, - STATE(5311), 1, - sym_comment, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8907), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1441), 3, + ACTIONS(1509), 1, + sym__entry_separator, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8094), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8096), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8396), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198037] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8921), 1, + ACTIONS(8442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8923), 1, - aux_sym__immediate_decimal_token2, - STATE(5312), 1, + ACTIONS(8444), 1, + aux_sym__immediate_decimal_token3, + STATE(3120), 1, + sym__immediate_decimal, + STATE(5349), 1, sym_comment, - ACTIONS(1472), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1470), 5, + ACTIONS(1501), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [198063] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8925), 1, - aux_sym__immediate_decimal_token2, - STATE(5313), 1, - sym_comment, - ACTIONS(1376), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(1378), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [198087] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8927), 1, - anon_sym_DOT, - ACTIONS(8930), 1, - aux_sym__immediate_decimal_token2, - STATE(5314), 1, - sym_comment, - ACTIONS(1398), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - ACTIONS(1400), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198113] = 4, - ACTIONS(3), 1, + STATE(3114), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199808] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1863), 1, - anon_sym_DASH, - STATE(5315), 1, + STATE(5350), 1, sym_comment, - ACTIONS(1869), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198135] = 4, + ACTIONS(6957), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6963), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6959), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6961), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [199835] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1871), 1, - anon_sym_DASH, - STATE(5316), 1, - sym_comment, - ACTIONS(1877), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(5564), 1, + anon_sym_LPAREN2, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5786), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8338), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(8340), 1, + anon_sym_DOLLAR2, + ACTIONS(8346), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198157] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8932), 1, - anon_sym_LT, - STATE(5317), 1, - sym_comment, - ACTIONS(8524), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198179] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8934), 1, - anon_sym_LT, - STATE(5318), 1, - sym_comment, - ACTIONS(8524), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198201] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(8348), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5187), 1, - anon_sym_DOT, - ACTIONS(5189), 1, - aux_sym_unquoted_token4, - ACTIONS(5191), 1, - aux_sym_unquoted_token6, - STATE(5319), 1, - sym_comment, - STATE(6258), 1, + ACTIONS(8350), 1, + aux_sym__immediate_decimal_token5, + STATE(2946), 1, sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2925), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [198233] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(91), 1, - aux_sym_expr_unary_token1, - ACTIONS(6128), 1, - anon_sym_LPAREN, - ACTIONS(8936), 1, - anon_sym_DOLLAR, - ACTIONS(8938), 1, - anon_sym_DASH, - STATE(2491), 1, - sym__expr_unary_minus, - STATE(5320), 1, + STATE(5351), 1, sym_comment, - ACTIONS(3429), 2, - anon_sym_true, - anon_sym_false, - STATE(2479), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(3060), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [198265] = 4, - ACTIONS(3), 1, + [199876] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - STATE(5321), 1, + STATE(5352), 1, sym_comment, - ACTIONS(1885), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198287] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2281), 1, + ACTIONS(1648), 2, anon_sym_DASH, - STATE(5322), 1, - sym_comment, - ACTIONS(2283), 10, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 10, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198309] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [199899] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2285), 1, - anon_sym_DASH, - STATE(5323), 1, + STATE(5353), 1, sym_comment, - ACTIONS(2287), 10, - sym_identifier, + ACTIONS(8208), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198331] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [199920] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2289), 1, - anon_sym_DASH, - STATE(5324), 1, + STATE(5354), 1, sym_comment, - ACTIONS(2291), 10, - sym_identifier, + ACTIONS(8532), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198353] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4075), 1, - anon_sym_DOT_DOT2, - ACTIONS(8940), 1, - sym_filesize_unit, - ACTIONS(8942), 1, - sym_duration_unit, - STATE(5325), 1, - sym_comment, - ACTIONS(1429), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1441), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8907), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [198385] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8930), 1, - aux_sym__immediate_decimal_token2, - STATE(5326), 1, - sym_comment, - ACTIONS(1398), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1400), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198409] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8946), 1, - aux_sym__immediate_decimal_token2, - STATE(5327), 1, - sym_comment, - ACTIONS(1368), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198435] = 4, - ACTIONS(3), 1, + [199941] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8230), 1, + ACTIONS(6143), 1, anon_sym_DASH, - STATE(5328), 1, + STATE(5355), 1, sym_comment, - ACTIONS(8228), 10, + ACTIONS(6145), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -395620,168 +403218,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198457] = 11, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - anon_sym_RBRACE, - ACTIONS(1431), 1, anon_sym_LPAREN2, - ACTIONS(1441), 1, - sym__entry_separator, - ACTIONS(8948), 1, - anon_sym_DOT_DOT2, - ACTIONS(8952), 1, - sym_filesize_unit, - ACTIONS(8954), 1, - sym_duration_unit, - STATE(5329), 1, - sym_comment, - STATE(7542), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1364), 2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token6, - ACTIONS(8950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198493] = 10, + [199964] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(1427), 1, + sym__entry_separator, + ACTIONS(1429), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8086), 1, anon_sym_LPAREN2, - ACTIONS(8889), 1, - anon_sym_DOT, - STATE(3499), 1, - sym__immediate_decimal, - STATE(5330), 1, - sym_comment, - ACTIONS(1484), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8891), 2, + ACTIONS(8396), 1, + anon_sym_DOLLAR, + ACTIONS(8398), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8400), 1, aux_sym__immediate_decimal_token3, - STATE(3514), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198527] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(8402), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8889), 1, - anon_sym_DOT, - STATE(3500), 1, - sym__immediate_decimal, - STATE(5331), 1, + ACTIONS(8404), 1, + aux_sym__immediate_decimal_token5, + STATE(5356), 1, sym_comment, - ACTIONS(1480), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8891), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3497), 2, + STATE(6873), 1, + sym__immediate_decimal, + STATE(3169), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198561] = 10, - ACTIONS(3), 1, + [200005] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8889), 1, - anon_sym_DOT, - STATE(3490), 1, - sym__immediate_decimal, - STATE(5332), 1, + STATE(5357), 1, sym_comment, - ACTIONS(1488), 2, + ACTIONS(8210), 12, + ts_builtin_sym_end, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8891), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3513), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198595] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [200026] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(1755), 1, anon_sym_DASH, - STATE(5333), 1, + ACTIONS(8534), 1, + sym__newline, + STATE(5358), 2, sym_comment, - ACTIONS(1953), 10, + aux_sym_shebang_repeat1, + ACTIONS(1757), 9, + anon_sym_EQ, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198617] = 7, - ACTIONS(3), 1, + [200051] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8958), 1, - anon_sym_COMMA, - ACTIONS(8960), 1, + ACTIONS(8539), 1, anon_sym_DASH, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5334), 1, + STATE(5359), 1, sym_comment, - ACTIONS(8956), 7, + ACTIONS(8537), 11, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198645] = 4, - ACTIONS(3), 1, + [200074] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2293), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8268), 1, anon_sym_DASH, - STATE(5335), 1, + ACTIONS(8316), 1, + anon_sym_EQ, + ACTIONS(8541), 1, + anon_sym_COMMA, + STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5360), 1, sym_comment, - ACTIONS(2295), 10, + ACTIONS(8264), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198667] = 4, - ACTIONS(3), 1, + [200105] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2297), 1, + STATE(5361), 1, + sym_comment, + ACTIONS(8543), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [200126] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5362), 1, + sym_comment, + ACTIONS(8545), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [200147] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2271), 1, anon_sym_DASH, - STATE(5336), 1, + STATE(5363), 1, sym_comment, - ACTIONS(2299), 10, + ACTIONS(2273), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -395792,32 +403381,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198689] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [200170] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2301), 1, + ACTIONS(2123), 1, anon_sym_DASH, - STATE(5337), 1, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2129), 1, + aux_sym__unquoted_in_list_token2, + STATE(5364), 1, sym_comment, - ACTIONS(2303), 10, + ACTIONS(2127), 9, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198711] = 4, - ACTIONS(3), 1, + [200197] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2305), 1, + STATE(5365), 1, + sym_comment, + ACTIONS(8288), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [200218] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5366), 1, + sym_comment, + ACTIONS(8547), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [200239] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2241), 1, anon_sym_DASH, - STATE(5338), 1, + STATE(5367), 1, sym_comment, - ACTIONS(2307), 10, + ACTIONS(2243), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -395828,32 +403457,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198733] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [200262] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2309), 1, - anon_sym_DASH, - STATE(5339), 1, + STATE(5368), 1, sym_comment, - ACTIONS(2311), 10, + ACTIONS(1569), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 10, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198755] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [200285] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2313), 1, + ACTIONS(2332), 1, anon_sym_DASH, - STATE(5340), 1, + STATE(5369), 1, sym_comment, - ACTIONS(2315), 10, + ACTIONS(2334), 11, sym_identifier, sym__newline, anon_sym_PIPE, @@ -395864,657 +403495,813 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198777] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [200308] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2317), 1, + STATE(5370), 1, + sym_comment, + ACTIONS(8202), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [200329] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8551), 1, anon_sym_DASH, - STATE(5341), 1, + STATE(5371), 1, sym_comment, - ACTIONS(2319), 10, + ACTIONS(8549), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198799] = 10, + [200352] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(1443), 1, + anon_sym_RBRACK, + ACTIONS(1455), 1, + sym__entry_separator, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8086), 1, anon_sym_LPAREN2, - ACTIONS(8889), 1, - anon_sym_DOT, - STATE(3676), 1, - sym__immediate_decimal, - STATE(5342), 1, - sym_comment, - ACTIONS(1425), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8891), 2, + ACTIONS(8396), 1, + anon_sym_DOLLAR, + ACTIONS(8553), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8555), 1, aux_sym__immediate_decimal_token3, - STATE(3512), 2, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token5, + STATE(5372), 1, + sym_comment, + STATE(6796), 1, + sym__immediate_decimal, + STATE(3121), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198833] = 7, - ACTIONS(3), 1, + [200393] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + STATE(5373), 1, + sym_comment, + ACTIONS(8130), 12, + ts_builtin_sym_end, sym__newline, - ACTIONS(8964), 1, - anon_sym_COMMA, - ACTIONS(8966), 1, - anon_sym_DASH, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5343), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [200414] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5374), 1, sym_comment, - ACTIONS(8962), 7, - sym_identifier, + ACTIONS(8561), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198861] = 7, - ACTIONS(3), 1, + [200435] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + STATE(5375), 1, + sym_comment, + ACTIONS(8084), 12, + ts_builtin_sym_end, sym__newline, - ACTIONS(8966), 1, - anon_sym_DASH, - ACTIONS(8968), 1, - anon_sym_COMMA, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5344), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [200456] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5376), 1, sym_comment, - ACTIONS(8962), 7, - sym_identifier, + ACTIONS(8563), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + [200477] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1413), 1, + anon_sym_RBRACK, + ACTIONS(1427), 1, + sym__entry_separator, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8396), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198889] = 7, + ACTIONS(8553), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8555), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token5, + STATE(5377), 1, + sym_comment, + STATE(6889), 1, + sym__immediate_decimal, + STATE(3169), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200518] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8972), 1, - anon_sym_COMMA, - ACTIONS(8974), 1, - anon_sym_DASH, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5345), 1, + STATE(5378), 1, sym_comment, - ACTIONS(8970), 7, + ACTIONS(2131), 6, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym__unquoted_in_list_token4, + ACTIONS(2133), 6, + sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LPAREN2, + [200541] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(7651), 1, + sym_identifier, + ACTIONS(7655), 1, anon_sym_DOLLAR, + ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7659), 1, anon_sym_DASH_DASH, - [198917] = 8, - ACTIONS(3), 1, + ACTIONS(7661), 1, + anon_sym_DASH, + STATE(4455), 1, + sym_param_long_flag, + STATE(4800), 1, + sym__param_name, + STATE(5220), 1, + sym_param_short_flag, + STATE(5253), 1, + sym_param_opt, + STATE(5295), 1, + sym_param_rest, + STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5379), 1, + sym_comment, + [200584] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1723), 1, + ACTIONS(1525), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3637), 1, - sym_cell_path, - STATE(5346), 1, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(7091), 1, + aux_sym_unquoted_token2, + ACTIONS(8565), 1, + sym_filesize_unit, + ACTIONS(8567), 1, + sym_duration_unit, + STATE(5380), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1725), 6, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [198947] = 8, - ACTIONS(3), 1, + [200617] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1733), 1, + ACTIONS(8218), 1, + anon_sym_DASH_DASH, + ACTIONS(8220), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3578), 1, - sym_cell_path, - STATE(5347), 1, + ACTIONS(8490), 1, + anon_sym_DOLLAR, + ACTIONS(8492), 1, + aux_sym_ctrl_match_token1, + STATE(1997), 1, + sym_block, + STATE(2090), 1, + sym_val_closure, + STATE(5381), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1735), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [198977] = 8, - ACTIONS(3), 1, + STATE(5785), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, + sym__flag, + STATE(679), 2, + sym__blosure, + sym_val_variable, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [200656] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1770), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3585), 1, - sym_cell_path, - STATE(5348), 1, + STATE(5382), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1754), 6, + ACTIONS(1772), 11, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199007] = 8, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [200679] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3587), 1, - sym_cell_path, - STATE(5349), 1, + STATE(5383), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1758), 6, + ACTIONS(8569), 12, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199037] = 8, - ACTIONS(3), 1, + [200700] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1760), 1, + ACTIONS(2315), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3588), 1, - sym_cell_path, - STATE(5350), 1, + STATE(5384), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1762), 6, + ACTIONS(2317), 11, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199067] = 8, + aux_sym_ctrl_match_token1, + [200723] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1764), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3589), 1, - sym_cell_path, - STATE(5351), 1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym__unquoted_in_list_token4, + STATE(5385), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1766), 6, + ACTIONS(2089), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2093), 5, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199097] = 8, - ACTIONS(3), 1, + anon_sym_COMMA, + [200750] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1768), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3590), 1, - sym_cell_path, - STATE(5352), 1, + STATE(5386), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1770), 6, + ACTIONS(8571), 12, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199127] = 8, - ACTIONS(3), 1, + [200771] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3591), 1, - sym_cell_path, - STATE(5353), 1, + STATE(5387), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1774), 6, + ACTIONS(8292), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199157] = 8, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [200792] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3593), 1, - sym_cell_path, - STATE(5354), 1, + STATE(5388), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1778), 6, + ACTIONS(8204), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199187] = 8, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [200813] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(8575), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3594), 1, - sym_cell_path, - STATE(5355), 1, + STATE(5389), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1782), 6, + ACTIONS(8573), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199217] = 8, - ACTIONS(3), 1, + [200836] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1784), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3598), 1, - sym_cell_path, - STATE(5356), 1, + STATE(5390), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1786), 6, + ACTIONS(1481), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 9, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [199247] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200859] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3599), 1, - sym_cell_path, - STATE(5357), 1, + STATE(5391), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1790), 6, + ACTIONS(8577), 12, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199277] = 8, - ACTIONS(3), 1, + [200880] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1792), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8302), 1, + anon_sym_EQ, + ACTIONS(8581), 1, + anon_sym_COMMA, + ACTIONS(8583), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3574), 1, - sym_cell_path, STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5392), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1794), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(8579), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199307] = 8, - ACTIONS(3), 1, + [200911] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3600), 1, - sym_cell_path, - STATE(5359), 1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8118), 1, + anon_sym_DOLLAR, + ACTIONS(8296), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8298), 1, + aux_sym__immediate_decimal_token5, + STATE(5393), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1798), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199337] = 8, - ACTIONS(3), 1, + STATE(6970), 1, + sym__immediate_decimal, + ACTIONS(1427), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8294), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3591), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200948] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3604), 1, - sym_cell_path, - STATE(5360), 1, + STATE(5394), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1802), 6, + ACTIONS(8585), 12, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199367] = 8, - ACTIONS(3), 1, + [200969] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8472), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3624), 1, - sym_cell_path, - STATE(5361), 1, + ACTIONS(8587), 1, + anon_sym_COMMA, + STATE(5395), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1806), 6, - sym__newline, - anon_sym_SEMI, + STATE(5477), 1, + aux_sym_shebang_repeat1, + ACTIONS(8468), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199397] = 8, - ACTIONS(3), 1, + [200997] = 9, + ACTIONS(91), 1, + aux_sym_expr_unary_token1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1808), 1, + ACTIONS(5954), 1, + anon_sym_LPAREN, + ACTIONS(6535), 1, + anon_sym_DOLLAR, + ACTIONS(8589), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3630), 1, - sym_cell_path, - STATE(5362), 1, + STATE(2610), 1, + sym__expr_unary_minus, + STATE(5396), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1810), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199427] = 8, - ACTIONS(3), 1, + ACTIONS(3309), 2, + anon_sym_true, + anon_sym_false, + STATE(2587), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [201029] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1812), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3632), 1, - sym_cell_path, - STATE(5363), 1, + ACTIONS(8336), 1, + aux_sym__immediate_decimal_token2, + STATE(5397), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1814), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1473), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 7, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199457] = 8, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [201053] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1816), 1, + ACTIONS(8591), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8593), 1, + aux_sym__immediate_decimal_token2, + STATE(5398), 1, + sym_comment, + ACTIONS(1481), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1483), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [201079] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3633), 1, - sym_cell_path, - STATE(5364), 1, + STATE(5399), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1818), 6, + ACTIONS(2407), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199487] = 8, - ACTIONS(3), 1, + [201101] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(3507), 1, + aux_sym_expr_unary_token1, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(6699), 1, + anon_sym_LPAREN, + ACTIONS(8597), 1, anon_sym_DASH, - ACTIONS(8887), 1, + STATE(4680), 1, + sym__expr_unary_minus, + STATE(5400), 1, + sym_comment, + ACTIONS(8595), 2, + anon_sym_true, + anon_sym_false, + STATE(4686), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [201133] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8599), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8601), 1, + aux_sym__immediate_decimal_token2, + STATE(5401), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [201159] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1441), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6264), 1, anon_sym_DOT, - STATE(3634), 1, - sym_cell_path, - STATE(5365), 1, + ACTIONS(8374), 1, + anon_sym_DOLLAR, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(5402), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1822), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199517] = 8, - ACTIONS(3), 1, + STATE(6805), 1, + sym__immediate_decimal, + ACTIONS(8378), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6804), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201195] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1740), 1, + ACTIONS(3455), 1, + aux_sym_expr_unary_token1, + ACTIONS(8603), 1, + anon_sym_LPAREN, + ACTIONS(8605), 1, + anon_sym_DOLLAR, + ACTIONS(8607), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3597), 1, - sym_cell_path, - STATE(5366), 1, + STATE(1154), 1, + sym__expr_unary_minus, + STATE(5403), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1742), 6, + ACTIONS(5253), 2, + anon_sym_true, + anon_sym_false, + STATE(1175), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [201227] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8611), 1, + anon_sym_COMMA, + ACTIONS(8613), 1, + anon_sym_DASH, + STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5404), 1, + sym_comment, + ACTIONS(8609), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199547] = 8, - ACTIONS(3), 1, + [201255] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(7954), 1, anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(3623), 1, - sym_cell_path, - STATE(5367), 1, + STATE(5405), 1, sym_comment, - STATE(5499), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(1746), 6, + ACTIONS(7952), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [199577] = 11, + [201277] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1416), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8875), 1, - anon_sym_DOLLAR, - ACTIONS(8976), 1, + ACTIONS(8615), 1, anon_sym_DOT, - STATE(5368), 1, + ACTIONS(8617), 1, + aux_sym__immediate_decimal_token2, + STATE(5406), 1, sym_comment, - STATE(6098), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6272), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199613] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3309), 1, + ACTIONS(1473), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [201303] = 9, + ACTIONS(209), 1, aux_sym_expr_unary_token1, - ACTIONS(8978), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8619), 1, anon_sym_LPAREN, - ACTIONS(8980), 1, + ACTIONS(8621), 1, anon_sym_DOLLAR, - ACTIONS(8982), 1, + ACTIONS(8623), 1, anon_sym_DASH, - STATE(3968), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(5369), 1, + STATE(5407), 1, sym_comment, - ACTIONS(5139), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - STATE(3973), 4, + STATE(1730), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [199645] = 7, - ACTIONS(3), 1, + [201335] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8694), 1, - anon_sym_COMMA, - ACTIONS(8696), 1, + ACTIONS(8583), 1, anon_sym_DASH, - STATE(5370), 1, + ACTIONS(8625), 1, + anon_sym_COMMA, + STATE(5408), 1, sym_comment, - STATE(5421), 1, + STATE(5451), 1, aux_sym_shebang_repeat1, - ACTIONS(8692), 7, + ACTIONS(8579), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -396522,153 +404309,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199673] = 5, - ACTIONS(3), 1, + [201363] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7397), 1, - aux_sym__unquoted_in_list_token6, - STATE(5371), 1, + ACTIONS(2389), 1, + anon_sym_DASH, + STATE(5409), 1, sym_comment, - ACTIONS(1429), 2, + ACTIONS(2391), 10, sym_identifier, - anon_sym_DASH, - ACTIONS(1441), 8, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199697] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8889), 1, - anon_sym_DOT, - STATE(3685), 1, - sym__immediate_decimal, - STATE(5372), 1, - sym_comment, - ACTIONS(1416), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8891), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3530), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199731] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8832), 1, - aux_sym__immediate_decimal_token2, - STATE(5373), 1, - sym_comment, - ACTIONS(1368), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [199755] = 5, - ACTIONS(3), 1, + [201385] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8984), 1, - aux_sym__immediate_decimal_token2, - STATE(5374), 1, - sym_comment, - ACTIONS(1376), 3, - anon_sym_DOT_DOT2, + ACTIONS(8627), 1, anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [199779] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8986), 1, + ACTIONS(8629), 1, aux_sym__immediate_decimal_token2, - STATE(5375), 1, + STATE(5410), 1, sym_comment, - ACTIONS(1400), 3, + ACTIONS(1475), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1398), 7, + ACTIONS(1473), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [199803] = 7, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [201411] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8694), 1, - anon_sym_COMMA, - ACTIONS(8696), 1, + ACTIONS(2409), 1, anon_sym_DASH, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5376), 1, + STATE(5411), 1, sym_comment, - ACTIONS(8692), 7, + ACTIONS(2411), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199831] = 4, - ACTIONS(3), 1, + [201433] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5377), 1, - sym_comment, - ACTIONS(1370), 4, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1368), 7, + ACTIONS(8631), 1, sym_identifier, + ACTIONS(8633), 1, + anon_sym_DASH_DASH, + ACTIONS(8635), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [199853] = 4, - ACTIONS(3), 1, + STATE(5412), 1, + sym_comment, + STATE(5529), 1, + aux_sym_ctrl_do_repeat1, + STATE(5619), 1, + sym_val_variable, + STATE(6260), 1, + sym__flag, + STATE(6775), 1, + sym__variable_name, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [201471] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8272), 1, + ACTIONS(1972), 1, anon_sym_DASH, - STATE(5378), 1, + STATE(5413), 1, sym_comment, - ACTIONS(8270), 10, + ACTIONS(1978), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -396679,321 +404409,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199875] = 11, - ACTIONS(3), 1, + [201493] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1416), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - STATE(5379), 1, + ACTIONS(8639), 1, + anon_sym_DASH, + STATE(5414), 1, sym_comment, - STATE(7282), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3530), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199911] = 11, - ACTIONS(121), 1, + ACTIONS(8637), 10, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201515] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8643), 1, + anon_sym_COMMA, + ACTIONS(8645), 1, + anon_sym_DASH, + STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5415), 1, + sym_comment, + ACTIONS(8641), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - ACTIONS(1441), 1, - sym__entry_separator, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8988), 1, - anon_sym_DOT_DOT2, - ACTIONS(8992), 1, - sym_filesize_unit, - ACTIONS(8994), 1, - sym_duration_unit, - STATE(5380), 1, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201543] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8458), 1, + anon_sym_COMMA, + ACTIONS(8460), 1, + anon_sym_DASH, + STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5416), 1, sym_comment, - STATE(7534), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5397), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(8990), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199947] = 6, + ACTIONS(8456), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201571] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8996), 1, + ACTIONS(8647), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8998), 1, + ACTIONS(8649), 1, aux_sym__immediate_decimal_token2, - STATE(5381), 1, + STATE(5417), 1, sym_comment, - ACTIONS(1370), 3, - anon_sym_DOLLAR, + ACTIONS(1481), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1483), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1368), 6, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [199973] = 9, - ACTIONS(3), 1, + sym__entry_separator, + [201597] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8895), 1, - anon_sym_DASH_DASH, - ACTIONS(8897), 1, + ACTIONS(5245), 1, + sym__newline, + STATE(728), 1, + aux_sym_shebang_repeat1, + STATE(5418), 1, + sym_comment, + ACTIONS(2891), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [201621] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3387), 1, + aux_sym_expr_unary_token1, + ACTIONS(8623), 1, anon_sym_DASH, - ACTIONS(9002), 1, - anon_sym_as, - STATE(5382), 1, + ACTIONS(8651), 1, + anon_sym_LPAREN, + ACTIONS(8653), 1, + anon_sym_DOLLAR, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(5419), 1, sym_comment, - STATE(5404), 1, - aux_sym_ctrl_do_repeat1, - STATE(5878), 1, - sym__flag, - STATE(5790), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9000), 4, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + STATE(1730), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [201653] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5220), 1, + anon_sym_DASH, + STATE(5420), 1, + sym_comment, + ACTIONS(5218), 10, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [200005] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201675] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5383), 1, + ACTIONS(1935), 1, + anon_sym_DASH, + STATE(5421), 1, sym_comment, - ACTIONS(1378), 4, + ACTIONS(1941), 10, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [201697] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8655), 1, + anon_sym_DOT, + ACTIONS(8657), 1, + aux_sym__immediate_decimal_token2, + STATE(5422), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [200027] = 4, - ACTIONS(3), 1, + [201723] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1216), 1, + ACTIONS(2417), 1, anon_sym_DASH, - STATE(5384), 1, + STATE(5423), 1, sym_comment, - ACTIONS(1220), 10, - anon_sym_EQ, + ACTIONS(2419), 10, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200049] = 9, - ACTIONS(3), 1, + [201745] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3493), 1, + ACTIONS(3425), 1, aux_sym_expr_unary_token1, - ACTIONS(6128), 1, + ACTIONS(8623), 1, + anon_sym_DASH, + ACTIONS(8659), 1, anon_sym_LPAREN, - ACTIONS(6664), 1, + ACTIONS(8661), 1, anon_sym_DOLLAR, - ACTIONS(8938), 1, - anon_sym_DASH, - STATE(2491), 1, + STATE(1709), 1, sym__expr_unary_minus, - STATE(5385), 1, + STATE(5424), 1, sym_comment, - ACTIONS(3429), 2, + ACTIONS(3243), 2, anon_sym_true, anon_sym_false, - STATE(2479), 4, + STATE(1730), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [200081] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9004), 1, - anon_sym_DOT, - ACTIONS(9007), 1, - aux_sym__immediate_decimal_token2, - STATE(5386), 1, - sym_comment, - ACTIONS(1398), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token6, - ACTIONS(1400), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [200107] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8895), 1, - anon_sym_DASH_DASH, - ACTIONS(8897), 1, - anon_sym_DASH, - ACTIONS(9011), 1, - anon_sym_as, - STATE(5305), 1, - aux_sym_ctrl_do_repeat1, - STATE(5387), 1, - sym_comment, - STATE(5878), 1, - sym__flag, - STATE(5790), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9009), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [200139] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9007), 1, - aux_sym__immediate_decimal_token2, - STATE(5388), 1, - sym_comment, - ACTIONS(1398), 4, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token6, - ACTIONS(1400), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [200163] = 7, - ACTIONS(3), 1, + [201777] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(9015), 1, - anon_sym_COMMA, - ACTIONS(9017), 1, + ACTIONS(2413), 1, anon_sym_DASH, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5389), 1, + STATE(5425), 1, sym_comment, - ACTIONS(9013), 7, + ACTIONS(2415), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200191] = 7, - ACTIONS(3), 1, + [201799] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(9017), 1, + ACTIONS(7975), 1, anon_sym_DASH, - ACTIONS(9019), 1, - anon_sym_COMMA, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5390), 1, + STATE(5426), 1, sym_comment, - ACTIONS(9013), 7, + ACTIONS(7973), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200219] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1425), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - STATE(5391), 1, - sym_comment, - STATE(6998), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3512), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200255] = 12, - ACTIONS(3), 1, + [201821] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(8913), 1, + ACTIONS(8665), 1, anon_sym_DASH_DASH, - ACTIONS(8915), 1, + ACTIONS(8667), 1, anon_sym_DASH, - STATE(5392), 1, + ACTIONS(8669), 1, + anon_sym_as, + STATE(5427), 1, sym_comment, - STATE(5437), 1, + STATE(5484), 1, aux_sym_ctrl_do_repeat1, - STATE(5587), 1, - sym_val_variable, - STATE(6298), 1, + STATE(5867), 1, sym__flag, - STATE(6391), 1, - sym__variable_name, - STATE(6174), 2, + STATE(5714), 2, sym_short_flag, sym_long_flag, - [200293] = 4, - ACTIONS(3), 1, + ACTIONS(8663), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [201853] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5275), 1, + ACTIONS(5204), 1, anon_sym_DASH, - STATE(5393), 1, + STATE(5428), 1, sym_comment, - ACTIONS(5273), 10, + ACTIONS(5202), 10, anon_sym_EQ, sym_identifier, sym__newline, @@ -397004,76 +404705,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200315] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8596), 1, - aux_sym__immediate_decimal_token2, - STATE(5394), 1, - sym_comment, - ACTIONS(1370), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1368), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [200339] = 4, - ACTIONS(3), 1, + [201875] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5226), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8673), 1, + anon_sym_COMMA, + ACTIONS(8675), 1, anon_sym_DASH, - STATE(5395), 1, + STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5429), 1, sym_comment, - ACTIONS(5224), 10, - anon_sym_EQ, + ACTIONS(8671), 7, sym_identifier, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200361] = 11, - ACTIONS(3), 1, + [201903] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2931), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2933), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - anon_sym_DOT, - ACTIONS(8907), 1, - aux_sym_unquoted_token4, - ACTIONS(8909), 1, - aux_sym_unquoted_token6, - STATE(5396), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8472), 1, + anon_sym_DASH, + ACTIONS(8677), 1, + anon_sym_COMMA, + STATE(5415), 1, + aux_sym_shebang_repeat1, + STATE(5430), 1, sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2925), 2, + ACTIONS(8468), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(2927), 2, - sym_identifier, - anon_sym_DASH, - [200397] = 4, - ACTIONS(3), 1, + [201931] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8328), 1, + ACTIONS(2421), 1, anon_sym_DASH, - STATE(5397), 1, + STATE(5431), 1, sym_comment, - ACTIONS(8326), 10, + ACTIONS(2423), 10, sym_identifier, sym__newline, anon_sym_PIPE, @@ -397084,41 +404765,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200419] = 7, - ACTIONS(3), 1, + [201953] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(9023), 1, - anon_sym_COMMA, - ACTIONS(9025), 1, + ACTIONS(2425), 1, anon_sym_DASH, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5398), 1, + STATE(5432), 1, sym_comment, - ACTIONS(9021), 7, + ACTIONS(2427), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200447] = 7, - ACTIONS(3), 1, + [201975] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8614), 1, - anon_sym_COMMA, - ACTIONS(8616), 1, + ACTIONS(8472), 1, anon_sym_DASH, - STATE(5334), 1, + ACTIONS(8679), 1, + anon_sym_COMMA, + STATE(5358), 1, aux_sym_shebang_repeat1, - STATE(5399), 1, + STATE(5433), 1, sym_comment, - ACTIONS(8610), 7, + ACTIONS(8468), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -397126,60 +404804,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200475] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - sym__newline, - STATE(725), 1, - aux_sym_shebang_repeat1, - STATE(5400), 1, - sym_comment, - ACTIONS(2840), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [200499] = 7, - ACTIONS(3), 1, + [202003] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8614), 1, - anon_sym_COMMA, - ACTIONS(8616), 1, + ACTIONS(2429), 1, anon_sym_DASH, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5401), 1, + STATE(5434), 1, sym_comment, - ACTIONS(8610), 7, + ACTIONS(2431), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200527] = 7, - ACTIONS(3), 1, + [202025] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8622), 1, - anon_sym_DASH, - ACTIONS(9027), 1, + ACTIONS(8478), 1, anon_sym_COMMA, - STATE(5343), 1, + ACTIONS(8480), 1, + anon_sym_DASH, + STATE(5429), 1, aux_sym_shebang_repeat1, - STATE(5402), 1, + STATE(5435), 1, sym_comment, - ACTIONS(8618), 7, + ACTIONS(8476), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -397187,101 +404843,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200555] = 7, - ACTIONS(3), 1, + [202053] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8622), 1, + ACTIONS(2433), 1, anon_sym_DASH, - ACTIONS(9029), 1, - anon_sym_COMMA, - STATE(5344), 1, - aux_sym_shebang_repeat1, - STATE(5403), 1, + STATE(5436), 1, sym_comment, - ACTIONS(8618), 7, + ACTIONS(2435), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200583] = 7, - ACTIONS(3), 1, + [202075] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9033), 1, - anon_sym_DASH_DASH, - ACTIONS(9036), 1, - anon_sym_DASH, - STATE(5878), 1, - sym__flag, - STATE(5404), 2, + ACTIONS(1455), 1, + aux_sym_ctrl_match_token1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8681), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8687), 1, + aux_sym__immediate_decimal_token5, + STATE(5437), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5790), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9031), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - [200611] = 4, - ACTIONS(3), 1, + STATE(7569), 1, + sym__immediate_decimal, + ACTIONS(8683), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3590), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202111] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9041), 1, + ACTIONS(1960), 1, anon_sym_DASH, - STATE(5405), 1, + STATE(5438), 1, sym_comment, - ACTIONS(9039), 10, - anon_sym_EQ, + ACTIONS(1966), 10, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200633] = 7, - ACTIONS(3), 1, + [202133] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8622), 1, + ACTIONS(2437), 1, anon_sym_DASH, - ACTIONS(9043), 1, - anon_sym_COMMA, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5406), 1, + STATE(5439), 1, sym_comment, - ACTIONS(8618), 7, + ACTIONS(2439), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200661] = 7, - ACTIONS(3), 1, + [202155] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8856), 1, - anon_sym_DASH, - ACTIONS(9045), 1, + ACTIONS(8478), 1, anon_sym_COMMA, - STATE(5389), 1, + ACTIONS(8480), 1, + anon_sym_DASH, + STATE(5358), 1, aux_sym_shebang_repeat1, - STATE(5407), 1, + STATE(5440), 1, sym_comment, - ACTIONS(8852), 7, + ACTIONS(8476), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -397289,85 +404943,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200689] = 7, - ACTIONS(3), 1, + [202183] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8856), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(9047), 1, - anon_sym_COMMA, - STATE(5390), 1, - aux_sym_shebang_repeat1, - STATE(5408), 1, + STATE(5441), 1, sym_comment, - ACTIONS(8852), 7, + ACTIONS(2443), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200717] = 7, - ACTIONS(3), 1, + [202205] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8856), 1, + ACTIONS(5212), 1, anon_sym_DASH, - ACTIONS(9049), 1, - anon_sym_COMMA, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5409), 1, + STATE(5442), 1, sym_comment, - ACTIONS(8852), 7, + ACTIONS(5210), 10, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200745] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3529), 1, - aux_sym_expr_unary_token1, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(9051), 1, - anon_sym_DASH, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(5410), 1, - sym_comment, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - STATE(2041), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [200777] = 7, - ACTIONS(3), 1, + [202227] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8864), 1, + ACTIONS(8360), 1, anon_sym_COMMA, - ACTIONS(8866), 1, + ACTIONS(8362), 1, anon_sym_DASH, - STATE(5398), 1, + STATE(5358), 1, aux_sym_shebang_repeat1, - STATE(5411), 1, + STATE(5443), 1, sym_comment, - ACTIONS(8862), 7, + ACTIONS(8358), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -397375,58 +405000,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200805] = 4, - ACTIONS(3), 1, + [202255] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5412), 1, - sym_comment, - ACTIONS(1376), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 7, - anon_sym_DOLLAR, + ACTIONS(8665), 1, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200827] = 6, - ACTIONS(121), 1, + ACTIONS(8667), 1, + anon_sym_DASH, + ACTIONS(8691), 1, + anon_sym_as, + STATE(5444), 1, + sym_comment, + STATE(5484), 1, + aux_sym_ctrl_do_repeat1, + STATE(5867), 1, + sym__flag, + STATE(5714), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8689), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [202287] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9053), 1, + ACTIONS(1427), 1, + anon_sym_EQ_GT, + ACTIONS(3645), 1, + anon_sym_DOLLAR, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6319), 1, + anon_sym_DOT, + STATE(5445), 1, + sym_comment, + STATE(6914), 1, + sym__immediate_decimal, + ACTIONS(6266), 2, aux_sym__immediate_decimal_token1, - ACTIONS(9055), 1, + aux_sym__immediate_decimal_token3, + STATE(6195), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202323] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8693), 1, aux_sym__immediate_decimal_token2, - STATE(5413), 1, + STATE(5446), 1, sym_comment, - ACTIONS(1368), 4, - sym__newline, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 5, - sym__space, + ACTIONS(1521), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1519), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [200853] = 7, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [202347] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8628), 1, + ACTIONS(8583), 1, anon_sym_DASH, - STATE(5345), 1, + ACTIONS(8695), 1, + anon_sym_COMMA, + STATE(5358), 1, aux_sym_shebang_repeat1, - STATE(5414), 1, + STATE(5447), 1, sym_comment, - ACTIONS(8624), 7, + ACTIONS(8579), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -397434,103 +405088,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200881] = 7, - ACTIONS(3), 1, + [202375] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - ACTIONS(8864), 1, - anon_sym_COMMA, - ACTIONS(8866), 1, + ACTIONS(7998), 1, anon_sym_DASH, - STATE(5281), 1, - aux_sym_shebang_repeat1, - STATE(5415), 1, + STATE(5448), 1, sym_comment, - ACTIONS(8862), 7, + ACTIONS(7996), 10, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200909] = 9, + [202397] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(6858), 1, - anon_sym_LPAREN, - ACTIONS(8470), 1, - anon_sym_DOLLAR, - ACTIONS(9051), 1, - anon_sym_DASH, - STATE(2037), 1, - sym__expr_unary_minus, - STATE(5416), 1, - sym_comment, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - STATE(2041), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [200941] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9057), 1, + ACTIONS(8697), 1, anon_sym_DOT, - ACTIONS(9060), 1, + ACTIONS(8699), 1, aux_sym__immediate_decimal_token2, - STATE(5417), 1, + STATE(5449), 1, sym_comment, - ACTIONS(1398), 3, - anon_sym_RBRACK, + ACTIONS(1473), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token6, - ACTIONS(1400), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1475), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [200967] = 5, - ACTIONS(121), 1, + [202423] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9060), 1, - aux_sym__immediate_decimal_token2, - STATE(5418), 1, + ACTIONS(3225), 1, + aux_sym_expr_unary_token1, + ACTIONS(8623), 1, + anon_sym_DASH, + ACTIONS(8651), 1, + anon_sym_LPAREN, + ACTIONS(8701), 1, + anon_sym_DOLLAR, + STATE(1709), 1, + sym__expr_unary_minus, + STATE(5450), 1, sym_comment, - ACTIONS(1398), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(1400), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [200991] = 7, - ACTIONS(3), 1, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + STATE(1730), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [202455] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(8626), 1, + ACTIONS(8705), 1, anon_sym_COMMA, - ACTIONS(8628), 1, + ACTIONS(8707), 1, anon_sym_DASH, - STATE(5281), 1, + STATE(5358), 1, aux_sym_shebang_repeat1, - STATE(5419), 1, + STATE(5451), 1, sym_comment, - ACTIONS(8624), 7, + ACTIONS(8703), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -397538,42 +405170,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201019] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(5002), 1, - aux_sym_unquoted_token5, - STATE(5420), 1, - sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - ACTIONS(2925), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [201049] = 7, - ACTIONS(3), 1, + [202483] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7655), 1, + ACTIONS(7417), 1, sym__newline, - ACTIONS(9064), 1, - anon_sym_COMMA, - ACTIONS(9066), 1, + ACTIONS(8707), 1, anon_sym_DASH, - STATE(5281), 1, + ACTIONS(8709), 1, + anon_sym_COMMA, + STATE(5358), 1, aux_sym_shebang_repeat1, - STATE(5421), 1, + STATE(5452), 1, sym_comment, - ACTIONS(9062), 7, + ACTIONS(8703), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -397581,96 +405191,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201077] = 5, - ACTIONS(3), 1, + [202511] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9068), 1, - aux_sym__immediate_decimal_token2, - STATE(5422), 1, + ACTIONS(2066), 1, + anon_sym_DASH, + STATE(5453), 1, sym_comment, - ACTIONS(1378), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1376), 7, + ACTIONS(2072), 10, sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [201101] = 5, - ACTIONS(121), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [202533] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8885), 1, - aux_sym__immediate_decimal_token2, - STATE(5423), 1, + ACTIONS(8711), 1, + anon_sym_LT, + STATE(5454), 1, sym_comment, - ACTIONS(1368), 4, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token6, - ACTIONS(1370), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [201125] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2925), 1, + ACTIONS(8166), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, aux_sym_ctrl_match_token1, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(5002), 1, - aux_sym_unquoted_token5, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - STATE(5424), 1, - sym_comment, - STATE(6919), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3511), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [201161] = 5, - ACTIONS(121), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202555] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8760), 1, + ACTIONS(8372), 1, aux_sym__immediate_decimal_token2, - STATE(5425), 1, + STATE(5455), 1, sym_comment, - ACTIONS(1368), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 6, - anon_sym_LPAREN2, + ACTIONS(1475), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1473), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [201185] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [202579] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5247), 1, + ACTIONS(1273), 1, anon_sym_DASH, - STATE(5426), 1, + STATE(5456), 1, sym_comment, - ACTIONS(5245), 10, + ACTIONS(1277), 10, anon_sym_EQ, sym_identifier, sym__newline, @@ -397681,911 +405264,899 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201207] = 10, - ACTIONS(3), 1, + [202601] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6402), 1, + ACTIONS(8713), 1, + anon_sym_LT, + STATE(5457), 1, + sym_comment, + ACTIONS(8166), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202623] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - ACTIONS(9070), 1, - anon_sym_DOT, - STATE(5427), 1, - sym_comment, - STATE(6252), 1, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(3723), 1, sym__immediate_decimal, - ACTIONS(1416), 2, + STATE(5458), 1, + sym_comment, + ACTIONS(1427), 2, sym__newline, aux_sym_ctrl_match_token1, - ACTIONS(9072), 2, + ACTIONS(8715), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6272), 2, + STATE(3591), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201241] = 10, - ACTIONS(3), 1, + [202657] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - ACTIONS(9074), 1, - anon_sym_DOT, - STATE(5428), 1, - sym_comment, - STATE(6268), 1, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(3731), 1, sym__immediate_decimal, - ACTIONS(1457), 2, + STATE(5459), 1, + sym_comment, + ACTIONS(1455), 2, sym__newline, aux_sym_ctrl_match_token1, - ACTIONS(9072), 2, + ACTIONS(8715), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6259), 2, + STATE(3590), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201275] = 4, - ACTIONS(3), 1, + [202691] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5429), 1, - sym_comment, - ACTIONS(1368), 4, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 7, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6284), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(3581), 1, + sym__immediate_decimal, + STATE(5460), 1, + sym_comment, + ACTIONS(1441), 2, + sym__newline, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201297] = 5, - ACTIONS(121), 1, + ACTIONS(8715), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3579), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202725] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9076), 1, - aux_sym__immediate_decimal_token2, - STATE(5430), 1, - sym_comment, - ACTIONS(1376), 4, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token6, - ACTIONS(1378), 6, + ACTIONS(6262), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [201321] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8986), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9078), 1, - anon_sym_DOT, - STATE(5431), 1, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(3585), 1, + sym__immediate_decimal, + STATE(5461), 1, sym_comment, - ACTIONS(1400), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1398), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [201347] = 9, - ACTIONS(3), 1, + ACTIONS(1553), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(8715), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3584), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202759] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(9081), 1, - anon_sym_LPAREN, - ACTIONS(9083), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6284), 1, anon_sym_DOLLAR, - ACTIONS(9085), 1, - anon_sym_DASH, - STATE(1186), 1, - sym__expr_unary_minus, - STATE(5432), 1, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(3587), 1, + sym__immediate_decimal, + STATE(5462), 1, sym_comment, - ACTIONS(5357), 2, - anon_sym_true, - anon_sym_false, - STATE(1121), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + ACTIONS(1557), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(8715), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3586), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [201379] = 6, - ACTIONS(3), 1, + [202793] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9087), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(3589), 1, + sym__immediate_decimal, + STATE(5463), 1, + sym_comment, + ACTIONS(1509), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(8715), 2, aux_sym__immediate_decimal_token1, - ACTIONS(9089), 1, - aux_sym__immediate_decimal_token2, - STATE(5433), 1, + aux_sym__immediate_decimal_token3, + STATE(3611), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202827] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1525), 1, + anon_sym_DASH, + STATE(5464), 1, sym_comment, - ACTIONS(1470), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1472), 5, + ACTIONS(1537), 10, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201404] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [202849] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9091), 1, + ACTIONS(8717), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9093), 1, + ACTIONS(8719), 1, aux_sym__immediate_decimal_token2, - STATE(5434), 1, + STATE(5465), 1, sym_comment, - ACTIONS(1470), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1472), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + ACTIONS(1483), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201429] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5435), 1, - sym_comment, - ACTIONS(8524), 10, - anon_sym_EQ, + ACTIONS(1481), 6, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201448] = 11, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [202875] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(8913), 1, + ACTIONS(8665), 1, anon_sym_DASH_DASH, - ACTIONS(8915), 1, + ACTIONS(8667), 1, anon_sym_DASH, - ACTIONS(9095), 1, - sym_identifier, - STATE(5436), 1, - sym_comment, - STATE(5443), 1, + ACTIONS(8723), 1, + anon_sym_as, + STATE(5444), 1, aux_sym_ctrl_do_repeat1, - STATE(6298), 1, + STATE(5466), 1, + sym_comment, + STATE(5867), 1, sym__flag, - STATE(6955), 1, - sym__variable_name, - STATE(7386), 1, - sym_val_variable, - STATE(6174), 2, + STATE(5714), 2, sym_short_flag, sym_long_flag, - [201483] = 11, - ACTIONS(3), 1, + ACTIONS(8721), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [202907] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6400), 1, + ACTIONS(493), 1, + aux_sym_expr_unary_token1, + ACTIONS(8725), 1, + anon_sym_LPAREN, + ACTIONS(8727), 1, anon_sym_DOLLAR, - ACTIONS(8911), 1, + ACTIONS(8729), 1, + anon_sym_DASH, + STATE(2384), 1, + sym__expr_unary_minus, + STATE(5467), 1, + sym_comment, + ACTIONS(5241), 2, + anon_sym_true, + anon_sym_false, + STATE(2386), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [202939] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(8631), 1, sym_identifier, - ACTIONS(8913), 1, + ACTIONS(8633), 1, anon_sym_DASH_DASH, - ACTIONS(8915), 1, + ACTIONS(8635), 1, anon_sym_DASH, - STATE(5437), 1, + STATE(5468), 1, sym_comment, - STATE(5587), 1, - sym_val_variable, - STATE(5721), 1, + STATE(5529), 1, aux_sym_ctrl_do_repeat1, - STATE(6298), 1, + STATE(5619), 1, + sym_val_variable, + STATE(6260), 1, sym__flag, - STATE(6372), 1, + STATE(6775), 1, sym__variable_name, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [201518] = 3, - ACTIONS(3), 1, + [202977] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5438), 1, - sym_comment, - ACTIONS(8698), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8733), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201537] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1784), 1, + ACTIONS(8735), 1, anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5439), 1, + STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5469), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5914), 1, - sym_cell_path, - ACTIONS(1786), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(8731), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [201566] = 3, - ACTIONS(3), 1, + [203005] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5440), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8739), 1, + anon_sym_COMMA, + ACTIONS(8741), 1, + anon_sym_DASH, + STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5470), 1, sym_comment, - ACTIONS(8718), 10, - anon_sym_EQ, + ACTIONS(8737), 7, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201585] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(8850), 1, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9099), 1, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(9101), 1, + [203033] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8304), 1, + anon_sym_COMMA, + ACTIONS(8306), 1, anon_sym_DASH, - STATE(5441), 1, + STATE(5469), 1, + aux_sym_shebang_repeat1, + STATE(5471), 1, sym_comment, - STATE(5587), 1, - sym_val_variable, - STATE(6147), 1, - sym__variable_name, - STATE(6668), 1, - sym__flag, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [201620] = 8, - ACTIONS(3), 1, + ACTIONS(8300), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [203061] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, + ACTIONS(1427), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6319), 1, anon_sym_DOT, - ACTIONS(5189), 1, - aux_sym_unquoted_token5, - STATE(5442), 1, + ACTIONS(8374), 1, + anon_sym_DOLLAR, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(5472), 1, sym_comment, - STATE(7521), 1, + STATE(6742), 1, sym__immediate_decimal, - ACTIONS(2977), 2, + ACTIONS(8378), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - ACTIONS(2925), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [201649] = 11, - ACTIONS(3), 1, + STATE(6807), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203097] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(1427), 1, + aux_sym_ctrl_match_token1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8681), 1, anon_sym_DOLLAR, - ACTIONS(8913), 1, - anon_sym_DASH_DASH, - ACTIONS(8915), 1, - anon_sym_DASH, - ACTIONS(9095), 1, - sym_identifier, - STATE(5443), 1, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8687), 1, + aux_sym__immediate_decimal_token5, + STATE(5473), 1, sym_comment, - STATE(5721), 1, - aux_sym_ctrl_do_repeat1, - STATE(6298), 1, - sym__flag, - STATE(7064), 1, - sym__variable_name, - STATE(7386), 1, + STATE(7657), 1, + sym__immediate_decimal, + ACTIONS(8683), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3591), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [201684] = 9, - ACTIONS(3), 1, + [203133] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9103), 1, + ACTIONS(8665), 1, anon_sym_DASH_DASH, - ACTIONS(9105), 1, + ACTIONS(8667), 1, anon_sym_DASH, - ACTIONS(9107), 1, + ACTIONS(8745), 1, anon_sym_as, - STATE(5444), 1, - sym_comment, - STATE(5491), 1, + STATE(5427), 1, aux_sym_ctrl_do_repeat1, - STATE(5942), 1, + STATE(5474), 1, + sym_comment, + STATE(5867), 1, sym__flag, - STATE(6094), 2, + STATE(5714), 2, sym_short_flag, sym_long_flag, - ACTIONS(9009), 3, - ts_builtin_sym_end, + ACTIONS(8743), 4, sym__newline, anon_sym_SEMI, - [201715] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203165] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1768), 1, + ACTIONS(1525), 1, anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5445), 1, + ACTIONS(7303), 1, + aux_sym__unquoted_in_list_token2, + STATE(5475), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5901), 1, - sym_cell_path, - ACTIONS(1770), 5, - ts_builtin_sym_end, + ACTIONS(1537), 9, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [201744] = 5, - ACTIONS(3), 1, + [203189] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9109), 1, + ACTIONS(8747), 1, aux_sym__immediate_decimal_token2, - STATE(5446), 1, + STATE(5476), 1, sym_comment, - ACTIONS(1398), 3, + ACTIONS(1519), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1400), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + aux_sym_unquoted_token2, + ACTIONS(1521), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [201767] = 10, - ACTIONS(3), 1, + [203213] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1416), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8875), 1, - anon_sym_DOLLAR, - ACTIONS(9070), 1, - anon_sym_DOT, - STATE(5447), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8645), 1, + anon_sym_DASH, + ACTIONS(8749), 1, + anon_sym_COMMA, + STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5477), 1, sym_comment, - STATE(6252), 1, - sym__immediate_decimal, - ACTIONS(9072), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6272), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [201800] = 8, - ACTIONS(3), 1, + ACTIONS(8641), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [203241] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1808), 1, + ACTIONS(2401), 1, anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5448), 1, + STATE(5478), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5933), 1, - sym_cell_path, - ACTIONS(1810), 5, - ts_builtin_sym_end, + ACTIONS(2403), 10, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [201829] = 8, - ACTIONS(3), 1, + [203263] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8304), 1, + anon_sym_COMMA, + ACTIONS(8306), 1, anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5449), 1, + STATE(5358), 1, + aux_sym_shebang_repeat1, + STATE(5479), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5938), 1, - sym_cell_path, - ACTIONS(1822), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(8300), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [201858] = 6, - ACTIONS(121), 1, + [203291] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9113), 1, - aux_sym__immediate_decimal_token2, - STATE(5450), 1, + ACTIONS(3561), 1, + aux_sym_expr_unary_token1, + ACTIONS(6857), 1, + anon_sym_LPAREN, + ACTIONS(6989), 1, + anon_sym_DOLLAR, + ACTIONS(8753), 1, + anon_sym_DASH, + STATE(4797), 1, + sym__expr_unary_minus, + STATE(5480), 1, sym_comment, - ACTIONS(1470), 4, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token2, - ACTIONS(1472), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201883] = 3, - ACTIONS(3), 1, + ACTIONS(8751), 2, + anon_sym_true, + anon_sym_false, + STATE(4805), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [203323] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5451), 1, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8360), 1, + anon_sym_COMMA, + ACTIONS(8362), 1, + anon_sym_DASH, + STATE(5404), 1, + aux_sym_shebang_repeat1, + STATE(5481), 1, sym_comment, - ACTIONS(8702), 10, - anon_sym_EQ, + ACTIONS(8358), 7, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201902] = 5, - ACTIONS(121), 1, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [203351] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8923), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8583), 1, + anon_sym_DASH, + ACTIONS(8755), 1, + anon_sym_COMMA, STATE(5452), 1, + aux_sym_shebang_repeat1, + STATE(5482), 1, sym_comment, - ACTIONS(1472), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1470), 5, + ACTIONS(8579), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [201925] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2975), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2977), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(8907), 1, - aux_sym_unquoted_token5, - STATE(5453), 1, - sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2925), 2, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(2927), 2, - sym_identifier, - anon_sym_DASH, - [201958] = 8, - ACTIONS(3), 1, + [203379] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6697), 1, - anon_sym_DOT, - STATE(3262), 1, - sym_cell_path, - STATE(3560), 1, - aux_sym_cell_path_repeat1, - STATE(3648), 1, - sym_path, - STATE(5454), 1, - sym_comment, - ACTIONS(883), 2, + ACTIONS(7417), 1, + sym__newline, + ACTIONS(8458), 1, + anon_sym_COMMA, + ACTIONS(8460), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(885), 4, + STATE(5470), 1, + aux_sym_shebang_repeat1, + STATE(5483), 1, + sym_comment, + ACTIONS(8456), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201987] = 8, - ACTIONS(3), 1, + [203407] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(8759), 1, + anon_sym_DASH_DASH, + ACTIONS(8762), 1, anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5455), 1, + STATE(5867), 1, + sym__flag, + STATE(5484), 2, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5921), 1, - sym_cell_path, - ACTIONS(1798), 5, - ts_builtin_sym_end, + aux_sym_ctrl_do_repeat1, + STATE(5714), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8757), 5, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_as, - [202016] = 4, + [203435] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5456), 1, + ACTIONS(1539), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8396), 1, + anon_sym_DOLLAR, + ACTIONS(8398), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8400), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8402), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8404), 1, + aux_sym__immediate_decimal_token5, + STATE(5485), 1, sym_comment, - ACTIONS(1378), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1376), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [202037] = 4, + STATE(6725), 1, + sym__immediate_decimal, + STATE(3148), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203470] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5457), 1, + ACTIONS(2921), 1, + anon_sym_DOLLAR, + ACTIONS(5635), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8092), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8094), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8096), 1, + aux_sym__immediate_decimal_token5, + STATE(5486), 1, sym_comment, - ACTIONS(1368), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202058] = 5, - ACTIONS(121), 1, + STATE(5932), 1, + sym__immediate_decimal, + STATE(5984), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203505] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9115), 1, - aux_sym__immediate_decimal_token2, - STATE(5458), 1, + ACTIONS(5635), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8396), 1, + anon_sym_DOLLAR, + ACTIONS(8553), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8555), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token5, + STATE(5487), 1, sym_comment, - ACTIONS(1376), 4, - sym__newline, - anon_sym_DOT_DOT2, + STATE(6810), 1, + sym__immediate_decimal, + STATE(3148), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203540] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8765), 1, anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 5, - sym__space, + ACTIONS(8767), 1, + aux_sym__immediate_decimal_token2, + STATE(5488), 1, + sym_comment, + ACTIONS(1475), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1473), 5, + sym_identifier, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [202081] = 8, + aux_sym_unquoted_token2, + [203565] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1723), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5459), 1, - sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5966), 1, - sym_cell_path, - ACTIONS(1725), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202110] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9117), 1, - anon_sym_DOT, - STATE(5460), 1, - sym_comment, - STATE(5535), 1, - aux_sym_cell_path_repeat1, - STATE(5866), 1, - sym_path, - STATE(6117), 1, - sym_cell_path, - ACTIONS(1545), 3, + ACTIONS(1525), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1549), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 1, sym__entry_separator, - [202139] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9119), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9121), 1, - aux_sym__immediate_decimal_token2, - STATE(5461), 1, - sym_comment, - ACTIONS(1368), 3, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(5635), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8769), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 5, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(8773), 1, sym_filesize_unit, + ACTIONS(8775), 1, sym_duration_unit, - [202164] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5462), 1, + STATE(5489), 1, sym_comment, - ACTIONS(1370), 3, - anon_sym_DASH_DASH, + STATE(7640), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8771), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1368), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [202185] = 4, - ACTIONS(121), 1, + [203600] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5463), 1, + ACTIONS(8777), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8779), 1, + aux_sym__immediate_decimal_token2, + STATE(5490), 1, sym_comment, - ACTIONS(1376), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(1378), 6, - anon_sym_LPAREN2, + ACTIONS(1483), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1481), 5, + sym_identifier, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [202206] = 8, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [203625] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5464), 1, - sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(6088), 1, - sym_cell_path, - ACTIONS(1735), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(6535), 1, + anon_sym_DOLLAR, + ACTIONS(8633), 1, anon_sym_DASH_DASH, - anon_sym_as, - [202235] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(8635), 1, anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5465), 1, - sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5927), 1, - sym_cell_path, - ACTIONS(1802), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202264] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9123), 1, - anon_sym_DOT_DOT2, - ACTIONS(9127), 1, - sym_filesize_unit, - ACTIONS(9129), 1, - sym_duration_unit, - STATE(5466), 1, + ACTIONS(8781), 1, + sym_identifier, + STATE(5491), 1, sym_comment, - ACTIONS(4687), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(9125), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1441), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [202293] = 8, - ACTIONS(3), 1, + STATE(5786), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, + sym__flag, + STATE(7129), 1, + sym_val_variable, + STATE(7335), 1, + sym__variable_name, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [203660] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5467), 1, + ACTIONS(1427), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8681), 1, + anon_sym_DOLLAR, + STATE(3723), 1, + sym__immediate_decimal, + STATE(5492), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5919), 1, - sym_cell_path, - ACTIONS(1790), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202322] = 4, + ACTIONS(8715), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3591), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203693] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5468), 1, + ACTIONS(2694), 1, + anon_sym_DOLLAR, + ACTIONS(4041), 1, + anon_sym_LPAREN2, + ACTIONS(4045), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4047), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4302), 1, + aux_sym_unquoted_token3, + ACTIONS(8783), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8785), 1, + aux_sym__immediate_decimal_token5, + STATE(1485), 1, + sym__immediate_decimal, + STATE(5493), 1, sym_comment, - ACTIONS(1506), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1504), 7, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [202343] = 4, + STATE(1600), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203728] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5469), 1, + ACTIONS(4124), 1, + anon_sym_DOLLAR, + ACTIONS(4126), 1, + anon_sym_LPAREN2, + ACTIONS(4128), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4130), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4302), 1, + aux_sym_unquoted_token3, + ACTIONS(8787), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8789), 1, + aux_sym__immediate_decimal_token5, + STATE(1718), 1, + sym__immediate_decimal, + STATE(5494), 1, sym_comment, - ACTIONS(1376), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202364] = 8, + STATE(2085), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203763] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1816), 1, - anon_sym_DASH, - ACTIONS(9097), 1, + ACTIONS(8791), 1, anon_sym_DOT, - STATE(5470), 1, + STATE(5495), 1, sym_comment, - STATE(5563), 1, + STATE(5648), 1, aux_sym_cell_path_repeat1, - STATE(5826), 1, + STATE(5845), 1, sym_path, - STATE(5936), 1, + STATE(6135), 1, sym_cell_path, - ACTIONS(1818), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202393] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5471), 1, - sym_comment, - ACTIONS(1376), 4, + ACTIONS(1599), 3, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token6, - ACTIONS(1378), 6, - anon_sym_LPAREN2, + ACTIONS(1603), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [202414] = 3, + [203792] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5472), 1, + ACTIONS(5564), 1, + anon_sym_LPAREN2, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5786), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8346), 1, + anon_sym_DOLLAR, + ACTIONS(8348), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8350), 1, + aux_sym__immediate_decimal_token5, + STATE(2946), 1, + sym__immediate_decimal, + STATE(5496), 1, + sym_comment, + STATE(3060), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203827] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5497), 1, sym_comment, - ACTIONS(8732), 10, + ACTIONS(8549), 10, anon_sym_EQ, sym_identifier, anon_sym_DASH_GT, @@ -398596,1842 +406167,2141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [202433] = 5, - ACTIONS(121), 1, + [203846] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9131), 1, - aux_sym__immediate_decimal_token2, - STATE(5473), 1, + ACTIONS(1525), 1, + anon_sym_DASH, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(8793), 1, + sym_filesize_unit, + ACTIONS(8795), 1, + sym_duration_unit, + ACTIONS(8797), 1, + aux_sym_unquoted_token2, + STATE(5498), 1, sym_comment, - ACTIONS(1537), 4, - anon_sym_LPAREN2, + ACTIONS(4696), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1535), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [202456] = 5, + ACTIONS(1537), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [203877] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9133), 1, - aux_sym__immediate_decimal_token2, - STATE(5474), 1, + ACTIONS(5609), 1, + anon_sym_LPAREN2, + ACTIONS(5611), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5613), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5786), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8799), 1, + anon_sym_DOLLAR, + ACTIONS(8801), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8803), 1, + aux_sym__immediate_decimal_token5, + STATE(3234), 1, + sym__immediate_decimal, + STATE(5499), 1, + sym_comment, + STATE(3249), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203912] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5500), 1, sym_comment, - ACTIONS(1376), 3, + ACTIONS(1473), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + aux_sym_unquoted_token2, + ACTIONS(1475), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [202479] = 8, - ACTIONS(3), 1, + [203933] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1792), 1, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(8633), 1, + anon_sym_DASH_DASH, + ACTIONS(8635), 1, anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5475), 1, + STATE(5501), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5920), 1, - sym_cell_path, - ACTIONS(1794), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202508] = 8, - ACTIONS(3), 1, + STATE(5529), 1, + aux_sym_ctrl_do_repeat1, + STATE(5619), 1, + sym_val_variable, + STATE(6260), 1, + sym__flag, + STATE(6775), 1, + sym__variable_name, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [203968] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5476), 1, + STATE(5502), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5930), 1, - sym_cell_path, - ACTIONS(1806), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1481), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 7, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [202537] = 10, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [203989] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1416), 1, - anon_sym_EQ_GT, - ACTIONS(3603), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(6408), 1, + ACTIONS(7149), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7151), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7303), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8805), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6596), 1, - anon_sym_DOT, - STATE(5477), 1, - sym_comment, - STATE(6890), 1, + ACTIONS(8807), 1, + aux_sym__immediate_decimal_token5, + STATE(4666), 1, sym__immediate_decimal, - ACTIONS(6416), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6162), 2, + STATE(5503), 1, + sym_comment, + STATE(5007), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202570] = 10, + [204024] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1416), 1, - anon_sym_EQ_GT, - ACTIONS(6402), 1, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8470), 1, + ACTIONS(7226), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7228), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7303), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8809), 1, anon_sym_DOLLAR, - STATE(3685), 1, + ACTIONS(8811), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8813), 1, + aux_sym__immediate_decimal_token5, + STATE(5180), 1, sym__immediate_decimal, - STATE(5478), 1, + STATE(5504), 1, sym_comment, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3530), 2, + STATE(5421), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202603] = 10, + [204059] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1425), 1, - anon_sym_EQ_GT, - ACTIONS(6402), 1, + ACTIONS(4889), 1, + aux_sym_unquoted_token3, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8470), 1, - anon_sym_DOLLAR, - STATE(3676), 1, - sym__immediate_decimal, - STATE(5479), 1, - sym_comment, - ACTIONS(6406), 2, + ACTIONS(7913), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8815), 1, + anon_sym_DOLLAR, + ACTIONS(8817), 1, aux_sym__immediate_decimal_token3, - STATE(3512), 2, + ACTIONS(8819), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8821), 1, + aux_sym__immediate_decimal_token5, + STATE(5505), 1, + sym_comment, + STATE(5885), 1, + sym__immediate_decimal, + STATE(6189), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202636] = 11, + [204094] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6400), 1, + ACTIONS(4889), 1, + aux_sym_unquoted_token3, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8120), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8823), 1, anon_sym_DOLLAR, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(8913), 1, - anon_sym_DASH_DASH, - ACTIONS(8915), 1, - anon_sym_DASH, - STATE(5437), 1, - aux_sym_ctrl_do_repeat1, - STATE(5480), 1, + ACTIONS(8825), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8827), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8829), 1, + aux_sym__immediate_decimal_token5, + STATE(5506), 1, sym_comment, - STATE(5587), 1, + STATE(6541), 1, + sym__immediate_decimal, + STATE(3604), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6298), 1, - sym__flag, - STATE(6391), 1, - sym__variable_name, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [202671] = 10, - ACTIONS(3), 1, + [204129] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, + ACTIONS(1455), 1, aux_sym_ctrl_match_token1, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(8875), 1, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8681), 1, anon_sym_DOLLAR, - ACTIONS(9074), 1, - anon_sym_DOT, - STATE(5481), 1, - sym_comment, - STATE(6268), 1, + STATE(3731), 1, sym__immediate_decimal, - ACTIONS(9072), 2, + STATE(5507), 1, + sym_comment, + ACTIONS(8715), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6259), 2, + STATE(3590), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202704] = 6, - ACTIONS(3), 1, + [204162] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9135), 1, - anon_sym_DOT, - ACTIONS(9138), 1, - aux_sym__immediate_decimal_token2, - STATE(5482), 1, + STATE(5508), 1, sym_comment, - ACTIONS(1400), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1398), 5, - sym_identifier, + ACTIONS(1519), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [202729] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9138), 1, - aux_sym__immediate_decimal_token2, - STATE(5483), 1, - sym_comment, - ACTIONS(1400), 3, + aux_sym_unquoted_token2, + ACTIONS(1521), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1398), 6, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [202752] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9055), 1, - aux_sym__immediate_decimal_token2, - STATE(5484), 1, - sym_comment, - ACTIONS(1368), 4, - sym__newline, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202775] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1760), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5485), 1, - sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5896), 1, - sym_cell_path, - ACTIONS(1762), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_as, - [202804] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9140), 1, - anon_sym_DOT, - ACTIONS(9143), 1, - aux_sym__immediate_decimal_token2, - STATE(5486), 1, - sym_comment, - ACTIONS(1398), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - ACTIONS(1400), 5, - sym__space, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [202829] = 4, - ACTIONS(121), 1, + [204183] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5487), 1, + STATE(5509), 1, sym_comment, - ACTIONS(1504), 4, - anon_sym_RBRACE, + ACTIONS(1585), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token6, - ACTIONS(1506), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1587), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [202850] = 11, + [204204] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2925), 1, - anon_sym_DASH_DASH, - ACTIONS(2931), 1, + ACTIONS(2159), 1, + anon_sym_DOLLAR, + ACTIONS(7033), 1, + anon_sym_LPAREN2, + ACTIONS(7037), 1, aux_sym__immediate_decimal_token1, - ACTIONS(2933), 1, + ACTIONS(7039), 1, aux_sym__immediate_decimal_token3, - ACTIONS(2935), 1, + ACTIONS(7041), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - anon_sym_DOT, - ACTIONS(8907), 1, - aux_sym_unquoted_token4, - ACTIONS(8909), 1, - aux_sym_unquoted_token6, - STATE(5488), 1, - sym_comment, - STATE(6258), 1, + ACTIONS(7043), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7183), 1, + aux_sym_unquoted_token3, + STATE(4430), 1, sym__immediate_decimal, - ACTIONS(2927), 2, - sym_identifier, - anon_sym_DASH, - [202885] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1740), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5489), 1, + STATE(5510), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(6104), 1, - sym_cell_path, - ACTIONS(1742), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202914] = 8, - ACTIONS(121), 1, + STATE(4578), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [204239] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9117), 1, - anon_sym_DOT, - STATE(5490), 1, + ACTIONS(4413), 1, + anon_sym_DOLLAR, + ACTIONS(7033), 1, + anon_sym_LPAREN2, + ACTIONS(7073), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7075), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7077), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7079), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7183), 1, + aux_sym_unquoted_token3, + STATE(4817), 1, + sym__immediate_decimal, + STATE(5511), 1, sym_comment, - STATE(5535), 1, - aux_sym_cell_path_repeat1, - STATE(5866), 1, - sym_path, - STATE(5948), 1, - sym_cell_path, - ACTIONS(883), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(885), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [202943] = 9, - ACTIONS(3), 1, + STATE(5019), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [204274] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9103), 1, + ACTIONS(8831), 1, anon_sym_DASH_DASH, - ACTIONS(9105), 1, + ACTIONS(8833), 1, anon_sym_DASH, - ACTIONS(9145), 1, + ACTIONS(8835), 1, anon_sym_as, - STATE(5491), 1, + STATE(5512), 1, sym_comment, - STATE(5505), 1, + STATE(5550), 1, aux_sym_ctrl_do_repeat1, - STATE(5942), 1, + STATE(6006), 1, sym__flag, - STATE(6094), 2, + STATE(6161), 2, sym_short_flag, sym_long_flag, - ACTIONS(8893), 3, + ACTIONS(8743), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [202974] = 6, - ACTIONS(3), 1, + [204305] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9147), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9149), 1, + ACTIONS(8657), 1, aux_sym__immediate_decimal_token2, - STATE(5492), 1, + STATE(5513), 1, sym_comment, - ACTIONS(1368), 3, + ACTIONS(1473), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 5, - anon_sym_in, + aux_sym_unquoted_token2, + ACTIONS(1475), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [204328] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8837), 1, + aux_sym__immediate_decimal_token2, + STATE(5514), 1, + sym_comment, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [202999] = 8, + [204351] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1764), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5493), 1, + ACTIONS(8617), 1, + aux_sym__immediate_decimal_token2, + STATE(5515), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5899), 1, - sym_cell_path, - ACTIONS(1766), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203028] = 9, + ACTIONS(1473), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [204374] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2927), 1, - anon_sym_DASH, - ACTIONS(2979), 1, + ACTIONS(1461), 1, + anon_sym_LPAREN2, + ACTIONS(1465), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1467), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1567), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(3857), 1, + anon_sym_DOLLAR, + ACTIONS(8839), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(8907), 1, - aux_sym_unquoted_token5, - STATE(5494), 1, - sym_comment, - STATE(7521), 1, + ACTIONS(8841), 1, + aux_sym__immediate_decimal_token5, + STATE(298), 1, sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, + STATE(5516), 1, + sym_comment, + STATE(444), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [204409] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1491), 1, + anon_sym_LPAREN2, + ACTIONS(1493), 1, aux_sym__immediate_decimal_token3, - ACTIONS(2925), 3, + ACTIONS(1495), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1567), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8843), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [203059] = 9, - ACTIONS(3), 1, + ACTIONS(8845), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8847), 1, + aux_sym__immediate_decimal_token5, + STATE(510), 1, + sym__immediate_decimal, + STATE(5517), 1, + sym_comment, + STATE(600), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [204444] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9103), 1, + ACTIONS(8831), 1, anon_sym_DASH_DASH, - ACTIONS(9105), 1, + ACTIONS(8833), 1, anon_sym_DASH, - ACTIONS(9151), 1, + ACTIONS(8849), 1, anon_sym_as, - STATE(5495), 1, + STATE(5518), 1, sym_comment, - STATE(5519), 1, + STATE(5554), 1, aux_sym_ctrl_do_repeat1, - STATE(5942), 1, + STATE(6006), 1, sym__flag, - STATE(6094), 2, + STATE(6161), 2, sym_short_flag, sym_long_flag, - ACTIONS(8901), 3, + ACTIONS(8689), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [203090] = 5, - ACTIONS(121), 1, + [204475] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9153), 1, + ACTIONS(8699), 1, aux_sym__immediate_decimal_token2, - STATE(5496), 1, + STATE(5519), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1473), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1475), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1518), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [203113] = 4, - ACTIONS(121), 1, + [204498] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5497), 1, + ACTIONS(8851), 1, + aux_sym__immediate_decimal_token2, + STATE(5520), 1, sym_comment, - ACTIONS(1504), 4, - anon_sym_RBRACK, + ACTIONS(1519), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(1506), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1521), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [203134] = 8, + [204521] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(883), 1, - anon_sym_DASH, - ACTIONS(9097), 1, + ACTIONS(8791), 1, anon_sym_DOT, - STATE(5498), 1, + STATE(5521), 1, sym_comment, - STATE(5563), 1, + STATE(5648), 1, aux_sym_cell_path_repeat1, - STATE(5826), 1, + STATE(5845), 1, sym_path, - STATE(6079), 1, + STATE(6154), 1, sym_cell_path, - ACTIONS(885), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203163] = 7, - ACTIONS(3), 1, + ACTIONS(945), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(947), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [204550] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(889), 1, - anon_sym_DASH, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(5499), 1, + STATE(5522), 1, sym_comment, - STATE(5509), 1, - aux_sym_cell_path_repeat1, - STATE(5778), 1, - sym_path, - ACTIONS(891), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [203190] = 8, - ACTIONS(3), 1, + ACTIONS(8448), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204569] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1441), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8681), 1, + anon_sym_DOLLAR, + STATE(3581), 1, + sym__immediate_decimal, + STATE(5523), 1, + sym_comment, + ACTIONS(8715), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3579), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [204602] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5524), 1, + sym_comment, + ACTIONS(8452), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204621] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1812), 1, + ACTIONS(951), 1, anon_sym_DASH, - ACTIONS(9097), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5500), 1, + STATE(5525), 1, sym_comment, - STATE(5563), 1, + STATE(5575), 1, aux_sym_cell_path_repeat1, - STATE(5826), 1, + STATE(5711), 1, sym_path, - STATE(5934), 1, - sym_cell_path, - ACTIONS(1814), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(953), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [203219] = 8, + sym__table_head_separator, + [204648] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5501), 1, + ACTIONS(1539), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(2921), 1, + anon_sym_DOLLAR, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(8278), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8280), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8282), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8284), 1, + aux_sym__immediate_decimal_token5, + STATE(5526), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5907), 1, - sym_cell_path, - ACTIONS(1774), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203248] = 4, - ACTIONS(121), 1, + STATE(5914), 1, + sym__immediate_decimal, + STATE(5984), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [204683] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5502), 1, + ACTIONS(8855), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token2, + STATE(5527), 1, sym_comment, - ACTIONS(1368), 4, + ACTIONS(1569), 4, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token6, - ACTIONS(1370), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [203269] = 5, + [204708] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8998), 1, + ACTIONS(8859), 1, aux_sym__immediate_decimal_token2, - STATE(5503), 1, + STATE(5528), 1, sym_comment, - ACTIONS(1370), 3, - anon_sym_DOLLAR, + ACTIONS(1519), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1521), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1368), 6, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [203292] = 11, - ACTIONS(3), 1, + sym__entry_separator, + [204731] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(8850), 1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - ACTIONS(8911), 1, + ACTIONS(8631), 1, sym_identifier, - ACTIONS(9099), 1, + ACTIONS(8633), 1, anon_sym_DASH_DASH, - ACTIONS(9101), 1, + ACTIONS(8635), 1, anon_sym_DASH, - STATE(5504), 1, + STATE(5529), 1, sym_comment, - STATE(5587), 1, + STATE(5619), 1, sym_val_variable, - STATE(6147), 1, - sym__variable_name, - STATE(6668), 1, + STATE(5786), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, sym__flag, - STATE(6174), 2, + STATE(6604), 1, + sym__variable_name, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [203327] = 7, + [204766] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9155), 1, - anon_sym_DASH_DASH, - ACTIONS(9158), 1, - anon_sym_DASH, - STATE(5942), 1, - sym__flag, - STATE(5505), 2, + ACTIONS(1525), 1, + anon_sym_RBRACE, + ACTIONS(1527), 1, + anon_sym_LPAREN2, + ACTIONS(1537), 1, + sym__entry_separator, + ACTIONS(1539), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8861), 1, + anon_sym_DOT_DOT2, + ACTIONS(8865), 1, + sym_filesize_unit, + ACTIONS(8867), 1, + sym_duration_unit, + STATE(5530), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6094), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9031), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_as, - [203354] = 9, - ACTIONS(3), 1, + STATE(7599), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8863), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204801] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, - anon_sym_DASH_DASH, - ACTIONS(4075), 1, + ACTIONS(4694), 1, anon_sym_DOT_DOT2, - ACTIONS(9161), 1, + ACTIONS(8797), 1, + aux_sym_unquoted_token2, + ACTIONS(8869), 1, sym_filesize_unit, - ACTIONS(9163), 1, + ACTIONS(8871), 1, sym_duration_unit, - STATE(5506), 1, + STATE(5531), 1, sym_comment, - ACTIONS(1429), 2, + ACTIONS(1525), 2, sym_identifier, anon_sym_DASH, - ACTIONS(4079), 2, + ACTIONS(1537), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4696), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(8907), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [203385] = 6, - ACTIONS(3), 1, + [204832] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9109), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9165), 1, + ACTIONS(1599), 1, + anon_sym_DOT_DOT2, + ACTIONS(6310), 1, anon_sym_DOT, - STATE(5507), 1, + STATE(1780), 1, + sym_cell_path, + STATE(3342), 1, + aux_sym_cell_path_repeat1, + STATE(3383), 1, + sym_path, + STATE(5532), 1, sym_comment, - ACTIONS(1398), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - ACTIONS(1400), 6, + ACTIONS(1603), 5, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [203410] = 5, - ACTIONS(121), 1, + [204861] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9143), 1, - aux_sym__immediate_decimal_token2, - STATE(5508), 1, + STATE(5533), 1, sym_comment, - ACTIONS(1398), 4, - sym__newline, + ACTIONS(8520), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204880] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(945), 1, anon_sym_DOT_DOT2, + ACTIONS(6310), 1, anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1400), 5, - sym__space, + STATE(3342), 1, + aux_sym_cell_path_repeat1, + STATE(3383), 1, + sym_path, + STATE(4362), 1, + sym_cell_path, + STATE(5534), 1, + sym_comment, + ACTIONS(947), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [203433] = 6, + [204909] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, - anon_sym_DASH, - ACTIONS(9168), 1, - anon_sym_DOT, - STATE(5778), 1, - sym_path, - STATE(5509), 2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(7145), 1, + anon_sym_LPAREN2, + ACTIONS(7199), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7201), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7303), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token5, + STATE(4791), 1, + sym__immediate_decimal, + STATE(5535), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(895), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [203458] = 8, + STATE(5007), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [204944] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5510), 1, + ACTIONS(5548), 1, + anon_sym_DOLLAR, + ACTIONS(5550), 1, + anon_sym_LPAREN2, + ACTIONS(5552), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5554), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5556), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5635), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token1, + STATE(3046), 1, + sym__immediate_decimal, + STATE(5536), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5908), 1, - sym_cell_path, - ACTIONS(1778), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203487] = 8, + STATE(3148), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [204979] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5511), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6636), 1, + aux_sym_unquoted_token3, + ACTIONS(8174), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8815), 1, + anon_sym_DOLLAR, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token5, + STATE(5537), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5913), 1, - sym_cell_path, - ACTIONS(1782), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203516] = 8, + STATE(6167), 1, + sym__immediate_decimal, + STATE(6189), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205014] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1744), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5512), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6636), 1, + aux_sym_unquoted_token3, + ACTIONS(8294), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8823), 1, + anon_sym_DOLLAR, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8887), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8889), 1, + aux_sym__immediate_decimal_token5, + STATE(5538), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(6132), 1, - sym_cell_path, - ACTIONS(1746), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203545] = 4, - ACTIONS(121), 1, + STATE(7247), 1, + sym__immediate_decimal, + STATE(3604), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205049] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5513), 1, + STATE(5539), 1, sym_comment, - ACTIONS(1368), 4, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token6, - ACTIONS(1370), 6, - anon_sym_LPAREN2, + ACTIONS(1475), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1473), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [203566] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [205070] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8946), 1, - aux_sym__immediate_decimal_token2, - STATE(5514), 1, + STATE(5540), 1, sym_comment, - ACTIONS(1368), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1483), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1481), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [203589] = 3, + aux_sym_unquoted_token2, + [205091] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5515), 1, + ACTIONS(2018), 1, + anon_sym_DOLLAR, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7007), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7009), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7013), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7127), 1, + aux_sym_unquoted_token3, + STATE(4307), 1, + sym__immediate_decimal, + STATE(5541), 1, sym_comment, - ACTIONS(8710), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [203608] = 8, + STATE(4521), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205126] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5516), 1, + ACTIONS(4449), 1, + anon_sym_DOLLAR, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7019), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7021), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7023), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7127), 1, + aux_sym_unquoted_token3, + STATE(4614), 1, + sym__immediate_decimal, + STATE(5542), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(6166), 1, - sym_cell_path, - ACTIONS(1754), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203637] = 3, - ACTIONS(3), 1, + STATE(4983), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205161] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5517), 1, + ACTIONS(1553), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8681), 1, + anon_sym_DOLLAR, + STATE(3585), 1, + sym__immediate_decimal, + STATE(5543), 1, sym_comment, - ACTIONS(8714), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, + ACTIONS(8715), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3584), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205194] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1557), 1, aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [203656] = 5, - ACTIONS(3), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8681), 1, + anon_sym_DOLLAR, + STATE(3587), 1, + sym__immediate_decimal, + STATE(5544), 1, + sym_comment, + ACTIONS(8715), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3586), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205227] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9171), 1, - aux_sym__immediate_decimal_token2, - STATE(5518), 1, + ACTIONS(1509), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8681), 1, + anon_sym_DOLLAR, + STATE(3589), 1, + sym__immediate_decimal, + STATE(5545), 1, + sym_comment, + ACTIONS(8715), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3611), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205260] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5546), 1, sym_comment, - ACTIONS(1378), 3, + ACTIONS(1521), 4, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1376), 6, + ACTIONS(1519), 6, sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [205281] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5547), 1, + sym_comment, + ACTIONS(1587), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1585), 6, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [203679] = 9, + aux_sym_unquoted_token2, + [205302] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1415), 1, + anon_sym_DOLLAR, + ACTIONS(1417), 1, + anon_sym_LPAREN2, + ACTIONS(1421), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1425), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(1539), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8891), 1, + aux_sym__immediate_decimal_token1, + STATE(251), 1, + sym__immediate_decimal, + STATE(5548), 1, + sym_comment, + STATE(373), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205337] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9103), 1, + ACTIONS(1445), 1, + anon_sym_DOLLAR, + ACTIONS(1447), 1, + anon_sym_LPAREN2, + ACTIONS(1449), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1451), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1453), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(1539), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8893), 1, + aux_sym__immediate_decimal_token1, + STATE(421), 1, + sym__immediate_decimal, + STATE(5549), 1, + sym_comment, + STATE(571), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205372] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8831), 1, anon_sym_DASH_DASH, - ACTIONS(9105), 1, + ACTIONS(8833), 1, anon_sym_DASH, - ACTIONS(9173), 1, + ACTIONS(8895), 1, anon_sym_as, - STATE(5505), 1, - aux_sym_ctrl_do_repeat1, - STATE(5519), 1, + STATE(5550), 1, sym_comment, - STATE(5942), 1, + STATE(5554), 1, + aux_sym_ctrl_do_repeat1, + STATE(6006), 1, sym__flag, - STATE(6094), 2, + STATE(6161), 2, sym_short_flag, sym_long_flag, - ACTIONS(9000), 3, + ACTIONS(8663), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [203710] = 8, - ACTIONS(3), 1, + [205403] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(8831), 1, + anon_sym_DASH_DASH, + ACTIONS(8833), 1, anon_sym_DASH, - ACTIONS(9097), 1, - anon_sym_DOT, - STATE(5520), 1, + ACTIONS(8897), 1, + anon_sym_as, + STATE(5518), 1, + aux_sym_ctrl_do_repeat1, + STATE(5551), 1, sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - STATE(5890), 1, - sym_cell_path, - ACTIONS(1758), 5, + STATE(6006), 1, + sym__flag, + STATE(6161), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8721), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203739] = 4, + [205434] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5521), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6636), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8899), 1, + anon_sym_DOLLAR, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, + STATE(5552), 1, sym_comment, - ACTIONS(1504), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1506), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [203760] = 9, + STATE(6207), 1, + sym__immediate_decimal, + STATE(6884), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205469] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3603), 1, + ACTIONS(4252), 1, anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6636), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, aux_sym__immediate_decimal_token4, - STATE(5522), 1, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, + STATE(5553), 1, sym_comment, - STATE(6889), 1, + STATE(7724), 1, sym__immediate_decimal, - ACTIONS(6416), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6159), 2, + STATE(3604), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [203790] = 5, - ACTIONS(121), 1, + [205504] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8913), 1, + anon_sym_DASH_DASH, + ACTIONS(8916), 1, + anon_sym_DASH, + STATE(6006), 1, + sym__flag, + STATE(5554), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6161), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8757), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + [205531] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9175), 1, + ACTIONS(8919), 1, + anon_sym_DOT, + ACTIONS(8921), 1, aux_sym__immediate_decimal_token2, - STATE(5523), 1, + STATE(5555), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1589), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token2, - ACTIONS(1537), 4, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [203812] = 4, - ACTIONS(3), 1, + [205556] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9179), 1, - anon_sym_DASH, - STATE(5524), 1, - sym_comment, - ACTIONS(9177), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(6535), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(8633), 1, anon_sym_DASH_DASH, - [203832] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9179), 1, + ACTIONS(8635), 1, anon_sym_DASH, - STATE(5525), 1, - sym_comment, - ACTIONS(9177), 8, + ACTIONS(8781), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203852] = 4, + STATE(5491), 1, + aux_sym_ctrl_do_repeat1, + STATE(5556), 1, + sym_comment, + STATE(6260), 1, + sym__flag, + STATE(7125), 1, + sym__variable_name, + STATE(7129), 1, + sym_val_variable, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [205591] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9183), 1, - anon_sym_DASH, - STATE(5526), 1, - sym_comment, - ACTIONS(9181), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(7145), 1, + anon_sym_LPAREN2, + ACTIONS(7271), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7273), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7303), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8809), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203872] = 4, + ACTIONS(8923), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8925), 1, + aux_sym__immediate_decimal_token5, + STATE(5262), 1, + sym__immediate_decimal, + STATE(5557), 1, + sym_comment, + STATE(5421), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205626] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_DASH, - STATE(5527), 1, - sym_comment, - ACTIONS(8956), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(2469), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203892] = 4, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4006), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4008), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4122), 1, + aux_sym_unquoted_token3, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token5, + STATE(1443), 1, + sym__immediate_decimal, + STATE(5558), 1, + sym_comment, + STATE(1559), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205661] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8966), 1, - anon_sym_DASH, - STATE(5528), 1, - sym_comment, - ACTIONS(8962), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(4060), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203912] = 4, + ACTIONS(4062), 1, + anon_sym_LPAREN2, + ACTIONS(4064), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4066), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4122), 1, + aux_sym_unquoted_token3, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8933), 1, + aux_sym__immediate_decimal_token5, + STATE(1603), 1, + sym__immediate_decimal, + STATE(5559), 1, + sym_comment, + STATE(1832), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205696] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8966), 1, - anon_sym_DASH, - STATE(5529), 1, - sym_comment, - ACTIONS(8962), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(3553), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203932] = 4, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6977), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7091), 1, + aux_sym_unquoted_token3, + ACTIONS(8935), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8937), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token5, + STATE(4219), 1, + sym__immediate_decimal, + STATE(5560), 1, + sym_comment, + STATE(4418), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205731] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8966), 1, - anon_sym_DASH, - STATE(5530), 1, - sym_comment, - ACTIONS(8962), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(4567), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203952] = 4, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6991), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7091), 1, + aux_sym_unquoted_token3, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8945), 1, + aux_sym__immediate_decimal_token5, + STATE(4449), 1, + sym__immediate_decimal, + STATE(5561), 1, + sym_comment, + STATE(4855), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205766] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8966), 1, - anon_sym_DASH, - STATE(5531), 1, - sym_comment, - ACTIONS(8962), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(3499), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203972] = 4, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6967), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7059), 1, + aux_sym_unquoted_token3, + ACTIONS(8947), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8949), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8951), 1, + aux_sym__immediate_decimal_token5, + STATE(4186), 1, + sym__immediate_decimal, + STATE(5562), 1, + sym_comment, + STATE(3563), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205801] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8974), 1, - anon_sym_DASH, - STATE(5532), 1, + ACTIONS(4228), 1, + anon_sym_DOLLAR, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6983), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7059), 1, + aux_sym_unquoted_token3, + ACTIONS(8953), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8955), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8957), 1, + aux_sym__immediate_decimal_token5, + STATE(4336), 1, + sym__immediate_decimal, + STATE(5563), 1, sym_comment, - ACTIONS(8970), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(3604), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205836] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(8959), 1, anon_sym_DASH_DASH, - [203992] = 6, - ACTIONS(3), 1, + ACTIONS(8961), 1, + anon_sym_DASH, + STATE(5564), 1, + sym_comment, + STATE(5619), 1, + sym_val_variable, + STATE(6187), 1, + sym__variable_name, + STATE(6945), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [205871] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2927), 1, + ACTIONS(8629), 1, + aux_sym__immediate_decimal_token2, + STATE(5565), 1, + sym_comment, + ACTIONS(1475), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1473), 6, + sym_identifier, anon_sym_DASH, - ACTIONS(9185), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9187), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token2, - STATE(5533), 1, - sym_comment, - ACTIONS(2925), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204016] = 4, - ACTIONS(3), 1, + [205894] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8696), 1, - anon_sym_DASH, - STATE(5534), 1, + STATE(5566), 1, sym_comment, - ACTIONS(8692), 8, + ACTIONS(8166), 10, + anon_sym_EQ, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [204036] = 7, - ACTIONS(121), 1, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205913] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9117), 1, - anon_sym_DOT, - STATE(5535), 1, + ACTIONS(8963), 1, + aux_sym__immediate_decimal_token2, + STATE(5567), 1, sym_comment, - STATE(5552), 1, - aux_sym_cell_path_repeat1, - STATE(5866), 1, - sym_path, - ACTIONS(889), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(891), 3, + ACTIONS(1521), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204062] = 6, - ACTIONS(121), 1, + ACTIONS(1519), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [205936] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9189), 1, + ACTIONS(8965), 1, anon_sym_DOT, - ACTIONS(9192), 1, + ACTIONS(8967), 1, aux_sym__immediate_decimal_token2, - STATE(5536), 1, + STATE(5568), 1, sym_comment, - ACTIONS(1518), 3, - anon_sym_RBRACE, + ACTIONS(1473), 3, + sym__newline, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1520), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1475), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204086] = 4, + sym_filesize_unit, + sym_duration_unit, + [205961] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(916), 1, - anon_sym_DASH, - STATE(5537), 1, + ACTIONS(8969), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8971), 1, + aux_sym__immediate_decimal_token2, + STATE(5569), 1, sym_comment, - ACTIONS(918), 8, + ACTIONS(1481), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [204106] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [205986] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(920), 1, - anon_sym_DASH, - STATE(5538), 1, - sym_comment, - ACTIONS(922), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(8959), 1, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [204126] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(912), 1, + ACTIONS(8961), 1, anon_sym_DASH, - STATE(5539), 1, + STATE(5570), 1, sym_comment, - ACTIONS(914), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [204146] = 9, - ACTIONS(3), 1, + STATE(5619), 1, + sym_val_variable, + STATE(6187), 1, + sym__variable_name, + STATE(6945), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [206021] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2979), 1, + ACTIONS(1427), 1, + anon_sym_EQ_GT, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(6400), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8118), 1, anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - STATE(5540), 1, - sym_comment, - STATE(7210), 1, + STATE(3723), 1, sym__immediate_decimal, - ACTIONS(2977), 2, + STATE(5571), 1, + sym_comment, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3491), 2, + STATE(3591), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204176] = 9, - ACTIONS(3), 1, + [206054] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(1455), 1, + anon_sym_EQ_GT, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6412), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8118), 1, anon_sym_DOLLAR, - STATE(3704), 1, + STATE(3731), 1, sym__immediate_decimal, - STATE(5541), 1, + STATE(5572), 1, sym_comment, - ACTIONS(6416), 2, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3555), 2, + STATE(3590), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204206] = 9, - ACTIONS(3), 1, + [206087] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + STATE(5573), 1, + sym_comment, + ACTIONS(8506), 10, + anon_sym_EQ, sym_identifier, - ACTIONS(1441), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_DOT_DOT2, - ACTIONS(9194), 1, - sym_filesize_unit, - ACTIONS(9196), 1, - sym_duration_unit, - STATE(5542), 1, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [206106] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5574), 1, sym_comment, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8907), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [204236] = 9, - ACTIONS(3), 1, + ACTIONS(8510), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [206125] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6400), 1, + ACTIONS(955), 1, + anon_sym_DASH, + ACTIONS(8973), 1, + anon_sym_DOT, + STATE(5711), 1, + sym_path, + STATE(5575), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(957), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(6402), 1, + anon_sym_DASH_DASH, + sym__table_head_separator, + [206150] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - STATE(3677), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8118), 1, + anon_sym_DOLLAR, + STATE(3716), 1, sym__immediate_decimal, - STATE(5543), 1, + STATE(5576), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3511), 2, + STATE(3569), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204266] = 9, + [206180] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6681), 1, + STATE(5577), 1, + sym_comment, + ACTIONS(1481), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1483), 6, anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6702), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [206200] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6260), 1, anon_sym_DOLLAR, - STATE(3926), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + STATE(3646), 1, sym__immediate_decimal, - STATE(5544), 1, + STATE(5578), 1, sym_comment, - ACTIONS(6706), 2, + ACTIONS(6266), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3849), 2, + STATE(3563), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204296] = 4, - ACTIONS(3), 1, + [206230] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9200), 1, - anon_sym_DASH, - STATE(5545), 1, + ACTIONS(8767), 1, + aux_sym__immediate_decimal_token2, + STATE(5579), 1, sym_comment, - ACTIONS(9198), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1475), 3, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [204316] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9204), 1, - anon_sym_DASH, - STATE(5546), 1, - sym_comment, - ACTIONS(9202), 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1473), 5, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [204336] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [206252] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9204), 1, - anon_sym_DASH, - STATE(5547), 1, - sym_comment, - ACTIONS(9202), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6284), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [204356] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9208), 1, - anon_sym_DASH, - STATE(5548), 1, + STATE(3725), 1, + sym__immediate_decimal, + STATE(5580), 1, sym_comment, - ACTIONS(9206), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [204376] = 4, - ACTIONS(3), 1, + ACTIONS(6286), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3604), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [206282] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9066), 1, - anon_sym_DASH, - STATE(5549), 1, - sym_comment, - ACTIONS(9062), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(6555), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [204396] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9210), 1, - anon_sym_EQ2, - ACTIONS(9212), 1, - sym_short_flag_identifier, - STATE(5550), 1, + ACTIONS(6557), 1, + anon_sym_LPAREN2, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(3898), 1, + sym__immediate_decimal, + STATE(5581), 1, sym_comment, - ACTIONS(4888), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4890), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204420] = 9, - ACTIONS(3), 1, + ACTIONS(6559), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3974), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [206312] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, + ACTIONS(8380), 1, aux_sym__immediate_decimal_token4, - STATE(4656), 1, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8681), 1, + anon_sym_DOLLAR, + STATE(3610), 1, sym__immediate_decimal, - STATE(5551), 1, + STATE(5582), 1, sym_comment, - ACTIONS(6685), 2, + ACTIONS(8715), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4744), 2, + STATE(3609), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204450] = 6, - ACTIONS(121), 1, + [206342] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9214), 1, + ACTIONS(8976), 1, anon_sym_DOT, - STATE(5866), 1, - sym_path, - STATE(5552), 2, + ACTIONS(8978), 1, + aux_sym__immediate_decimal_token2, + STATE(5583), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 3, - anon_sym_RBRACK, + ACTIONS(1589), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(895), 3, + aux_sym__unquoted_in_record_token2, + ACTIONS(1591), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [204474] = 4, - ACTIONS(121), 1, + [206366] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5553), 1, - sym_comment, - ACTIONS(1368), 4, - sym__newline, + ACTIONS(4889), 1, + aux_sym_unquoted_token2, + ACTIONS(8980), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(8984), 1, sym_filesize_unit, + ACTIONS(8986), 1, sym_duration_unit, - [204494] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9219), 1, - anon_sym_DASH, - STATE(5554), 1, + STATE(5584), 1, sym_comment, - ACTIONS(9217), 8, - sym_identifier, - sym__newline, + ACTIONS(8982), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 3, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [204514] = 9, - ACTIONS(3), 1, + anon_sym_if, + anon_sym_EQ_GT, + [206394] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3985), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(3993), 1, + ACTIONS(8380), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8677), 1, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8681), 1, anon_sym_DOLLAR, - ACTIONS(9221), 1, - anon_sym_DOT, - STATE(1683), 1, + STATE(3716), 1, sym__immediate_decimal, - STATE(5555), 1, + STATE(5585), 1, sym_comment, - ACTIONS(3991), 2, + ACTIONS(8715), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1922), 2, + STATE(3569), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204544] = 4, - ACTIONS(121), 1, + [206424] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5556), 1, + ACTIONS(8988), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8990), 1, + aux_sym__immediate_decimal_token2, + STATE(5586), 1, sym_comment, - ACTIONS(1376), 4, - sym__newline, + ACTIONS(1569), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 5, - sym__space, + aux_sym_unquoted_token2, + ACTIONS(1571), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [204564] = 4, - ACTIONS(121), 1, + [206448] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5557), 1, + STATE(5587), 1, sym_comment, - ACTIONS(1504), 4, - sym__newline, + ACTIONS(1519), 3, + anon_sym_RBRACK, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1506), 5, - sym__space, + aux_sym__unquoted_in_list_token2, + ACTIONS(1521), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [204584] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9192), 1, - aux_sym__immediate_decimal_token2, - STATE(5558), 1, - sym_comment, - ACTIONS(1518), 4, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token2, - ACTIONS(1520), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - [204606] = 9, - ACTIONS(3), 1, + [206468] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - STATE(1921), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + STATE(3610), 1, sym__immediate_decimal, - STATE(5559), 1, + STATE(5588), 1, sym_comment, - ACTIONS(6685), 2, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1920), 2, + STATE(3609), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204636] = 9, - ACTIONS(3), 1, + [206498] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR, - ACTIONS(6681), 1, + ACTIONS(5530), 1, anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token4, - STATE(4055), 1, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(3095), 1, sym__immediate_decimal, - STATE(5560), 1, + STATE(5589), 1, sym_comment, - ACTIONS(6685), 2, + ACTIONS(5534), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1922), 2, + STATE(3089), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204666] = 9, - ACTIONS(3), 1, + [206528] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8470), 1, + ACTIONS(8994), 1, + anon_sym_DASH, + STATE(5590), 1, + sym_comment, + ACTIONS(8992), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(8472), 1, - anon_sym_DOT, - ACTIONS(8476), 1, - aux_sym__immediate_decimal_token4, - STATE(5561), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [206548] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8998), 1, + anon_sym_DASH, + STATE(5591), 1, sym_comment, - STATE(6273), 1, - sym__immediate_decimal, - ACTIONS(8474), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3491), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [204696] = 4, - ACTIONS(121), 1, + ACTIONS(8996), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [206568] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5562), 1, + ACTIONS(9000), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9002), 1, + aux_sym__immediate_decimal_token2, + STATE(5592), 1, sym_comment, - ACTIONS(1472), 4, + ACTIONS(1569), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1571), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1470), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [204716] = 7, - ACTIONS(3), 1, + [206592] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(889), 1, + ACTIONS(970), 1, anon_sym_DASH, - ACTIONS(9097), 1, + ACTIONS(9004), 1, + anon_sym_QMARK2, + STATE(5593), 1, + sym_comment, + ACTIONS(972), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT, - STATE(5563), 1, + sym__table_head_separator, + [206614] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8998), 1, + anon_sym_DASH, + STATE(5594), 1, sym_comment, - STATE(5564), 1, - aux_sym_cell_path_repeat1, - STATE(5826), 1, - sym_path, - ACTIONS(891), 5, - ts_builtin_sym_end, + ACTIONS(8996), 8, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [204742] = 6, - ACTIONS(3), 1, + [206634] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(980), 1, anon_sym_DASH, - ACTIONS(9223), 1, - anon_sym_DOT, - STATE(5826), 1, - sym_path, - STATE(5564), 2, + ACTIONS(9006), 1, + anon_sym_QMARK2, + STATE(5595), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(895), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(982), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [204766] = 9, - ACTIONS(3), 1, + anon_sym_DOT, + sym__table_head_separator, + [206656] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(6535), 1, anon_sym_DOLLAR, - ACTIONS(6681), 1, + ACTIONS(6557), 1, anon_sym_LPAREN2, - ACTIONS(6683), 1, - anon_sym_DOT, - ACTIONS(6687), 1, + ACTIONS(6561), 1, aux_sym__immediate_decimal_token4, - STATE(4039), 1, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(2018), 1, sym__immediate_decimal, - STATE(5565), 1, + STATE(5596), 1, sym_comment, - ACTIONS(6685), 2, + ACTIONS(6575), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2052), 2, + STATE(2017), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204796] = 6, - ACTIONS(3), 1, + [206686] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9226), 1, - sym_long_flag_identifier, - ACTIONS(9228), 1, - anon_sym_EQ2, - STATE(5566), 1, + ACTIONS(9010), 1, + anon_sym_DASH, + STATE(5597), 1, sym_comment, - ACTIONS(4966), 2, + ACTIONS(9008), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [206706] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9014), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(4968), 5, + STATE(5598), 1, + sym_comment, + ACTIONS(9012), 8, + anon_sym_EQ, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [204820] = 11, - ACTIONS(121), 1, + [206726] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2925), 1, - sym__space, - ACTIONS(2927), 1, - sym__newline, - ACTIONS(2931), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2933), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7205), 1, - aux_sym_unquoted_token4, - ACTIONS(7207), 1, - aux_sym_unquoted_token6, - ACTIONS(7407), 1, - anon_sym_DOT, - ACTIONS(7409), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8374), 1, + anon_sym_DOLLAR, + ACTIONS(8380), 1, aux_sym__immediate_decimal_token4, - STATE(5567), 1, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(5599), 1, sym_comment, - STATE(6258), 1, + STATE(6726), 1, sym__immediate_decimal, - [204854] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2925), 1, - anon_sym_DOLLAR, - ACTIONS(2927), 1, - sym_identifier, - ACTIONS(2931), 1, + ACTIONS(8378), 2, aux_sym__immediate_decimal_token1, - ACTIONS(2933), 1, aux_sym__immediate_decimal_token3, - ACTIONS(2935), 1, + STATE(6884), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [206756] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(8380), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - anon_sym_DOT, - ACTIONS(8907), 1, - aux_sym_unquoted_token4, - ACTIONS(8909), 1, - aux_sym_unquoted_token6, - STATE(5568), 1, - sym_comment, - STATE(6258), 1, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8681), 1, + anon_sym_DOLLAR, + STATE(3725), 1, sym__immediate_decimal, - [204888] = 4, - ACTIONS(3), 1, + STATE(5600), 1, + sym_comment, + ACTIONS(8715), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3604), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [206786] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9017), 1, + ACTIONS(9018), 1, anon_sym_DASH, - STATE(5569), 1, + STATE(5601), 1, sym_comment, - ACTIONS(9013), 8, + ACTIONS(9016), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400440,63 +408310,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [204908] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9230), 1, - aux_sym__immediate_decimal_token2, - STATE(5570), 1, - sym_comment, - ACTIONS(1518), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1520), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204930] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5571), 1, - sym_comment, - ACTIONS(1537), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1535), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - [204950] = 4, - ACTIONS(3), 1, + [206806] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9234), 1, + ACTIONS(9018), 1, anon_sym_DASH, - STATE(5572), 1, + STATE(5602), 1, sym_comment, - ACTIONS(9232), 8, - anon_sym_EQ, + ACTIONS(9016), 8, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - [204970] = 4, - ACTIONS(3), 1, + [206826] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9017), 1, + ACTIONS(9022), 1, anon_sym_DASH, - STATE(5573), 1, + STATE(5603), 1, sym_comment, - ACTIONS(9013), 8, + ACTIONS(9020), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400505,14 +408342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [204990] = 4, - ACTIONS(3), 1, + [206846] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9017), 1, + ACTIONS(9026), 1, anon_sym_DASH, - STATE(5574), 1, + STATE(5604), 1, sym_comment, - ACTIONS(9013), 8, + ACTIONS(9024), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400521,14 +408358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205010] = 4, - ACTIONS(3), 1, + [206866] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9017), 1, + ACTIONS(8613), 1, anon_sym_DASH, - STATE(5575), 1, + STATE(5605), 1, sym_comment, - ACTIONS(9013), 8, + ACTIONS(8609), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400537,14 +408374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205030] = 4, - ACTIONS(3), 1, + [206886] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9025), 1, + ACTIONS(8140), 1, anon_sym_DASH, - STATE(5576), 1, + STATE(5606), 1, sym_comment, - ACTIONS(9021), 8, + ACTIONS(8134), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400553,30 +408390,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205050] = 4, - ACTIONS(121), 1, + [206906] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5577), 1, + ACTIONS(9028), 1, + aux_sym__immediate_decimal_token2, + STATE(5607), 1, sym_comment, - ACTIONS(1610), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1608), 5, + ACTIONS(1648), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym__unquoted_in_list_token2, - [205070] = 4, - ACTIONS(3), 1, + ACTIONS(1650), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [206928] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8616), 1, + ACTIONS(8741), 1, anon_sym_DASH, - STATE(5578), 1, + STATE(5608), 1, sym_comment, - ACTIONS(8610), 8, + ACTIONS(8737), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400585,111 +408423,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205090] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9236), 1, - anon_sym_DOT, - ACTIONS(9239), 1, - aux_sym__immediate_decimal_token2, - STATE(5579), 1, - sym_comment, - ACTIONS(1398), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - ACTIONS(1400), 5, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [205114] = 5, + [206948] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9239), 1, - aux_sym__immediate_decimal_token2, - STATE(5580), 1, + STATE(5609), 1, sym_comment, - ACTIONS(1398), 3, + ACTIONS(1585), 3, + anon_sym_RBRACK, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1400), 5, - aux_sym_ctrl_match_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1587), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [205136] = 8, - ACTIONS(3), 1, + sym__entry_separator, + [206968] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(883), 1, + ACTIONS(8645), 1, anon_sym_DASH, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3262), 1, - sym_cell_path, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, - sym_path, - STATE(5581), 1, + STATE(5610), 1, sym_comment, - ACTIONS(885), 4, + ACTIONS(8641), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - [205164] = 9, - ACTIONS(3), 1, + [206988] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6400), 1, + ACTIONS(6535), 1, anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(6557), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6561), 1, aux_sym__immediate_decimal_token4, - STATE(3496), 1, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(4052), 1, sym__immediate_decimal, - STATE(5582), 1, + STATE(5611), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6575), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3494), 2, + STATE(2061), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205194] = 9, - ACTIONS(3), 1, + [207018] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(8148), 1, + anon_sym_DASH, + STATE(5612), 1, + sym_comment, + ACTIONS(8144), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(5615), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [207038] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6557), 1, anon_sym_LPAREN2, - ACTIONS(5623), 1, + ACTIONS(6561), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9241), 1, - anon_sym_DOT, - STATE(3110), 1, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6989), 1, + anon_sym_DOLLAR, + STATE(4772), 1, sym__immediate_decimal, - STATE(5583), 1, + STATE(5613), 1, sym_comment, - ACTIONS(5621), 2, + ACTIONS(6575), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3116), 2, + STATE(4762), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205224] = 4, - ACTIONS(3), 1, + [207068] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8622), 1, + ACTIONS(8583), 1, anon_sym_DASH, - STATE(5584), 1, + STATE(5614), 1, sym_comment, - ACTIONS(8618), 8, + ACTIONS(8579), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400698,35 +408529,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205244] = 9, - ACTIONS(3), 1, + [207088] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8434), 1, + ACTIONS(7033), 1, anon_sym_LPAREN2, - ACTIONS(8662), 1, - anon_sym_DOT, - ACTIONS(9243), 1, + ACTIONS(9030), 1, anon_sym_DOLLAR, - ACTIONS(9245), 1, + ACTIONS(9032), 1, aux_sym__immediate_decimal_token4, - STATE(5585), 1, - sym_comment, - STATE(6334), 1, + ACTIONS(9034), 1, + aux_sym__immediate_decimal_token5, + STATE(4774), 1, sym__immediate_decimal, - ACTIONS(8664), 2, + STATE(5615), 1, + sym_comment, + ACTIONS(7073), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3129), 2, + STATE(5117), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205274] = 4, - ACTIONS(3), 1, + [207118] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8622), 1, + ACTIONS(8583), 1, anon_sym_DASH, - STATE(5586), 1, + STATE(5616), 1, sym_comment, - ACTIONS(8618), 8, + ACTIONS(8579), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400735,30 +408566,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205294] = 4, - ACTIONS(3), 1, + [207138] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9249), 1, + ACTIONS(8645), 1, anon_sym_DASH, - STATE(5587), 1, + STATE(5617), 1, sym_comment, - ACTIONS(9247), 8, - anon_sym_EQ, + ACTIONS(8641), 8, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - [205314] = 4, - ACTIONS(3), 1, + [207158] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8454), 1, + ACTIONS(8583), 1, anon_sym_DASH, - STATE(5588), 1, + STATE(5618), 1, sym_comment, - ACTIONS(8448), 8, + ACTIONS(8579), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400767,30 +408598,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205334] = 4, - ACTIONS(3), 1, + [207178] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8622), 1, + ACTIONS(9038), 1, anon_sym_DASH, - STATE(5589), 1, + STATE(5619), 1, sym_comment, - ACTIONS(8618), 8, - sym_identifier, + ACTIONS(9036), 8, + anon_sym_EQ, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205354] = 4, - ACTIONS(3), 1, + anon_sym_in, + anon_sym_RBRACE, + [207198] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, + anon_sym_LPAREN2, + ACTIONS(5615), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5617), 1, + aux_sym__immediate_decimal_token5, + STATE(3239), 1, + sym__immediate_decimal, + STATE(5620), 1, + sym_comment, + ACTIONS(5613), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3268), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [207228] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8628), 1, + ACTIONS(9042), 1, anon_sym_DASH, - STATE(5590), 1, + STATE(5621), 1, sym_comment, - ACTIONS(8624), 8, + ACTIONS(9040), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400799,14 +408651,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205374] = 4, - ACTIONS(3), 1, + [207248] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5622), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [207268] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8502), 1, + ACTIONS(8645), 1, anon_sym_DASH, - STATE(5591), 1, + STATE(5623), 1, sym_comment, - ACTIONS(8498), 8, + ACTIONS(8641), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400815,14 +408683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205394] = 4, - ACTIONS(3), 1, + [207288] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8466), 1, + ACTIONS(8306), 1, anon_sym_DASH, - STATE(5592), 1, + STATE(5624), 1, sym_comment, - ACTIONS(8462), 8, + ACTIONS(8300), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400831,1026 +408699,1228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205414] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9251), 1, - anon_sym_DOT, - ACTIONS(9254), 1, - aux_sym__immediate_decimal_token2, - STATE(5593), 1, - sym_comment, - ACTIONS(1398), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token6, - ACTIONS(1400), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [205438] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9254), 1, - aux_sym__immediate_decimal_token2, - STATE(5594), 1, - sym_comment, - ACTIONS(1398), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1400), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [205460] = 9, - ACTIONS(3), 1, + [207308] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(8875), 1, + ACTIONS(8681), 1, anon_sym_DOLLAR, - ACTIONS(8889), 1, - anon_sym_DOT, - STATE(5595), 1, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8687), 1, + aux_sym__immediate_decimal_token5, + STATE(5625), 1, sym_comment, - STATE(6236), 1, + STATE(7617), 1, sym__immediate_decimal, - ACTIONS(9072), 2, + ACTIONS(8683), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6248), 2, + STATE(3569), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205490] = 9, - ACTIONS(3), 1, + [207338] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(8889), 1, - anon_sym_DOT, - STATE(3677), 1, - sym__immediate_decimal, - STATE(5596), 1, + ACTIONS(8110), 1, + anon_sym_DASH, + STATE(5626), 1, sym_comment, - ACTIONS(8891), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3511), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [205520] = 9, - ACTIONS(3), 1, + ACTIONS(8106), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [207358] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7242), 1, + ACTIONS(4126), 1, anon_sym_LPAREN2, - ACTIONS(7264), 1, - anon_sym_DOT, - ACTIONS(9256), 1, - anon_sym_DOLLAR, - ACTIONS(9258), 1, + ACTIONS(4132), 1, aux_sym__immediate_decimal_token4, - STATE(4462), 1, + ACTIONS(4134), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8490), 1, + anon_sym_DOLLAR, + STATE(1681), 1, sym__immediate_decimal, - STATE(5597), 1, + STATE(5627), 1, sym_comment, - ACTIONS(7266), 2, + ACTIONS(4130), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5030), 2, + STATE(2061), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205550] = 9, - ACTIONS(3), 1, + [207388] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5678), 1, - anon_sym_DOLLAR, - ACTIONS(5680), 1, + ACTIONS(9044), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9046), 1, + aux_sym__immediate_decimal_token2, + STATE(5628), 1, + sym_comment, + ACTIONS(1569), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1571), 5, + sym__newline, + aux_sym_ctrl_match_token1, anon_sym_LPAREN2, - ACTIONS(5688), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207412] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(9048), 1, + anon_sym_DOLLAR, + ACTIONS(9050), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9260), 1, - anon_sym_DOT, - STATE(3098), 1, + ACTIONS(9052), 1, + aux_sym__immediate_decimal_token5, + STATE(3143), 1, sym__immediate_decimal, - STATE(5598), 1, + STATE(5629), 1, sym_comment, - ACTIONS(5686), 2, + ACTIONS(8442), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3228), 2, + STATE(3139), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205580] = 9, - ACTIONS(3), 1, + [207442] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3985), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(4177), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8677), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6284), 1, anon_sym_DOLLAR, - ACTIONS(9262), 1, - anon_sym_DOT, - STATE(1921), 1, + STATE(3716), 1, sym__immediate_decimal, - STATE(5599), 1, + STATE(5630), 1, sym_comment, - ACTIONS(4175), 2, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1920), 2, + STATE(3569), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205610] = 5, - ACTIONS(3), 1, + [207472] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9264), 1, - aux_sym__immediate_decimal_token2, - STATE(5600), 1, + ACTIONS(8268), 1, + anon_sym_DASH, + STATE(5631), 1, sym_comment, - ACTIONS(1535), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1537), 5, + ACTIONS(8264), 8, + sym_identifier, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205632] = 6, - ACTIONS(121), 1, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [207492] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9153), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9266), 1, + ACTIONS(9054), 1, anon_sym_DOT, - STATE(5601), 1, + ACTIONS(9056), 1, + aux_sym__immediate_decimal_token2, + STATE(5632), 1, sym_comment, - ACTIONS(1518), 3, - anon_sym_RBRACK, + ACTIONS(1473), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1475), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [205656] = 10, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [207516] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8850), 1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - ACTIONS(8911), 1, + ACTIONS(8631), 1, sym_identifier, - ACTIONS(9099), 1, + ACTIONS(8959), 1, anon_sym_DASH_DASH, - ACTIONS(9101), 1, + ACTIONS(8961), 1, anon_sym_DASH, - STATE(5587), 1, + STATE(5619), 1, sym_val_variable, - STATE(5602), 1, + STATE(5633), 1, sym_comment, - STATE(6147), 1, + STATE(6187), 1, sym__variable_name, - STATE(6668), 1, + STATE(6945), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [205688] = 9, - ACTIONS(3), 1, + [207548] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9058), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9060), 1, + aux_sym__immediate_decimal_token2, + STATE(5634), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [207572] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(4126), 1, + anon_sym_LPAREN2, + ACTIONS(4214), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4216), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8490), 1, + anon_sym_DOLLAR, + STATE(2018), 1, + sym__immediate_decimal, + STATE(5635), 1, + sym_comment, + ACTIONS(4212), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [207602] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5636), 1, + sym_comment, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [207622] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5458), 1, anon_sym_DOLLAR, - ACTIONS(5599), 1, + ACTIONS(5460), 1, anon_sym_LPAREN2, - ACTIONS(5607), 1, + ACTIONS(5468), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9269), 1, - anon_sym_DOT, - STATE(2832), 1, + ACTIONS(5470), 1, + aux_sym__immediate_decimal_token5, + STATE(2839), 1, sym__immediate_decimal, - STATE(5603), 1, + STATE(5637), 1, sym_comment, - ACTIONS(5605), 2, + ACTIONS(5466), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2791), 2, + STATE(2851), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205718] = 9, - ACTIONS(3), 1, + [207652] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR, - ACTIONS(5615), 1, + ACTIONS(5530), 1, anon_sym_LPAREN2, - ACTIONS(5623), 1, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9241), 1, - anon_sym_DOT, - STATE(3089), 1, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(3117), 1, sym__immediate_decimal, - STATE(5604), 1, + STATE(5638), 1, sym_comment, - ACTIONS(5621), 2, + ACTIONS(5534), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3091), 2, + STATE(3150), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205748] = 9, - ACTIONS(3), 1, + [207682] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8104), 1, + anon_sym_DASH, + STATE(5639), 1, + sym_comment, + ACTIONS(8100), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [207702] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8645), 1, + anon_sym_DASH, + STATE(5640), 1, + sym_comment, + ACTIONS(8641), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [207722] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5641), 1, + sym_comment, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [207742] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(7003), 1, anon_sym_LPAREN2, - ACTIONS(7217), 1, - anon_sym_DOT, - ACTIONS(9271), 1, + ACTIONS(9062), 1, anon_sym_DOLLAR, - ACTIONS(9273), 1, + ACTIONS(9064), 1, aux_sym__immediate_decimal_token4, - STATE(4378), 1, + ACTIONS(9066), 1, + aux_sym__immediate_decimal_token5, + STATE(4648), 1, sym__immediate_decimal, - STATE(5605), 1, + STATE(5642), 1, sym_comment, - ACTIONS(7219), 2, + ACTIONS(7019), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4776), 2, + STATE(5016), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205778] = 9, - ACTIONS(3), 1, + [207772] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(8470), 1, + ACTIONS(8118), 1, anon_sym_DOLLAR, - ACTIONS(8634), 1, - anon_sym_DOT, - ACTIONS(8638), 1, + ACTIONS(8296), 1, aux_sym__immediate_decimal_token4, - STATE(5606), 1, + ACTIONS(8298), 1, + aux_sym__immediate_decimal_token5, + STATE(5643), 1, sym_comment, - STATE(6397), 1, + STATE(7024), 1, sym__immediate_decimal, - ACTIONS(8636), 2, + ACTIONS(8294), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3491), 2, + STATE(3569), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205808] = 9, - ACTIONS(3), 1, + [207802] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7242), 1, + ACTIONS(7033), 1, anon_sym_LPAREN2, - ACTIONS(7326), 1, - anon_sym_DOT, - ACTIONS(9256), 1, + ACTIONS(9030), 1, anon_sym_DOLLAR, - ACTIONS(9275), 1, + ACTIONS(9068), 1, aux_sym__immediate_decimal_token4, - STATE(5029), 1, + ACTIONS(9070), 1, + aux_sym__immediate_decimal_token5, + STATE(5116), 1, sym__immediate_decimal, - STATE(5607), 1, + STATE(5644), 1, sym_comment, - ACTIONS(7328), 2, + ACTIONS(7105), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5028), 2, + STATE(5196), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205838] = 9, - ACTIONS(3), 1, + [207832] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5645), 1, + sym_comment, + ACTIONS(1585), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [207852] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8434), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(8800), 1, - anon_sym_DOT, - ACTIONS(9243), 1, + ACTIONS(8118), 1, anon_sym_DOLLAR, - ACTIONS(9277), 1, + ACTIONS(8122), 1, aux_sym__immediate_decimal_token4, - STATE(5608), 1, + ACTIONS(8124), 1, + aux_sym__immediate_decimal_token5, + STATE(5646), 1, sym_comment, - STATE(6219), 1, + STATE(6789), 1, sym__immediate_decimal, - ACTIONS(8802), 2, + ACTIONS(8120), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3129), 2, + STATE(3569), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205868] = 9, + [207882] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9072), 1, + anon_sym_EQ2, + ACTIONS(9074), 1, + sym_short_flag_identifier, + STATE(5647), 1, + sym_comment, + ACTIONS(4942), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4944), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207906] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_LPAREN2, - ACTIONS(7272), 1, + ACTIONS(8791), 1, anon_sym_DOT, - ACTIONS(9271), 1, + STATE(5648), 1, + sym_comment, + STATE(5685), 1, + aux_sym_cell_path_repeat1, + STATE(5845), 1, + sym_path, + ACTIONS(951), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(953), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [207932] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(9062), 1, anon_sym_DOLLAR, - ACTIONS(9279), 1, + ACTIONS(9076), 1, aux_sym__immediate_decimal_token4, - STATE(4746), 1, + ACTIONS(9078), 1, + aux_sym__immediate_decimal_token5, + STATE(5015), 1, sym__immediate_decimal, - STATE(5609), 1, + STATE(5649), 1, sym_comment, - ACTIONS(7274), 2, + ACTIONS(7095), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4765), 2, + STATE(5014), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205898] = 5, + [207962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9121), 1, - aux_sym__immediate_decimal_token2, - STATE(5610), 1, + STATE(5650), 1, sym_comment, - ACTIONS(1368), 3, + ACTIONS(1473), 3, + anon_sym_RBRACK, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 5, - aux_sym_ctrl_match_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1475), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [205920] = 9, - ACTIONS(3), 1, + sym__entry_separator, + [207982] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1537), 1, + anon_sym_DASH_DASH, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(8797), 1, + aux_sym_unquoted_token2, + ACTIONS(9080), 1, + sym_filesize_unit, + ACTIONS(9082), 1, + sym_duration_unit, + STATE(5651), 1, + sym_comment, + ACTIONS(1525), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208012] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3925), 1, + ACTIONS(4062), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(4068), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8410), 1, + ACTIONS(4070), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8216), 1, anon_sym_DOLLAR, - ACTIONS(9281), 1, - anon_sym_DOT, - STATE(1579), 1, + STATE(1612), 1, sym__immediate_decimal, - STATE(5611), 1, + STATE(5652), 1, sym_comment, - ACTIONS(3931), 2, + ACTIONS(4066), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1851), 2, + STATE(1855), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205950] = 9, - ACTIONS(3), 1, + [208042] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3925), 1, + ACTIONS(4062), 1, anon_sym_LPAREN2, - ACTIONS(4012), 1, + ACTIONS(4148), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8410), 1, + ACTIONS(4150), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8216), 1, anon_sym_DOLLAR, - ACTIONS(9283), 1, - anon_sym_DOT, - STATE(1850), 1, + STATE(1854), 1, sym__immediate_decimal, - STATE(5612), 1, + STATE(5653), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4146), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1849), 2, + STATE(1853), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205980] = 9, - ACTIONS(3), 1, + [208072] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(8675), 1, + anon_sym_DASH, + STATE(5654), 1, + sym_comment, + ACTIONS(8671), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(6681), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [208092] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6557), 1, anon_sym_LPAREN2, - ACTIONS(7176), 1, - anon_sym_DOT, - ACTIONS(7180), 1, + ACTIONS(6989), 1, + anon_sym_DOLLAR, + ACTIONS(6993), 1, aux_sym__immediate_decimal_token4, - STATE(4311), 1, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token5, + STATE(4519), 1, sym__immediate_decimal, - STATE(5613), 1, + STATE(5655), 1, sym_comment, - ACTIONS(7178), 2, + ACTIONS(6991), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4661), 2, + STATE(4776), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206010] = 9, - ACTIONS(3), 1, + [208122] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5678), 1, + ACTIONS(5607), 1, anon_sym_DOLLAR, - ACTIONS(5680), 1, + ACTIONS(5609), 1, anon_sym_LPAREN2, - ACTIONS(5758), 1, + ACTIONS(5698), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9285), 1, - anon_sym_DOT, - STATE(3217), 1, + ACTIONS(5700), 1, + aux_sym__immediate_decimal_token5, + STATE(3267), 1, sym__immediate_decimal, - STATE(5614), 1, + STATE(5656), 1, sym_comment, - ACTIONS(5756), 2, + ACTIONS(5696), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3198), 2, + STATE(3263), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206040] = 9, - ACTIONS(3), 1, + [208152] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(7160), 1, - anon_sym_DOT, - ACTIONS(7164), 1, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(6985), 1, aux_sym__immediate_decimal_token4, - STATE(4211), 1, + ACTIONS(6987), 1, + aux_sym__immediate_decimal_token5, + STATE(4325), 1, sym__immediate_decimal, - STATE(5615), 1, + STATE(5657), 1, sym_comment, - ACTIONS(7162), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3491), 2, + STATE(3569), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206070] = 9, - ACTIONS(3), 1, + [208182] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7387), 1, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(7434), 1, - anon_sym_DOLLAR, - ACTIONS(7500), 1, + ACTIONS(7153), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9287), 1, - anon_sym_DOT, - STATE(5323), 1, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7224), 1, + anon_sym_DOLLAR, + STATE(5411), 1, sym__immediate_decimal, - STATE(5616), 1, + STATE(5658), 1, sym_comment, - ACTIONS(7498), 2, + ACTIONS(7266), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5322), 2, + STATE(5399), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206100] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9289), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9291), 1, - aux_sym__immediate_decimal_token2, - STATE(5617), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1472), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206124] = 9, - ACTIONS(3), 1, + [208212] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7387), 1, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(7434), 1, + ACTIONS(7224), 1, anon_sym_DOLLAR, - ACTIONS(7442), 1, + ACTIONS(7230), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9293), 1, - anon_sym_DOT, - STATE(4918), 1, + ACTIONS(7232), 1, + aux_sym__immediate_decimal_token5, + STATE(5077), 1, sym__immediate_decimal, - STATE(5618), 1, + STATE(5659), 1, sym_comment, - ACTIONS(7440), 2, + ACTIONS(7228), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5324), 2, + STATE(5425), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206154] = 9, - ACTIONS(3), 1, + [208242] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5631), 1, + ACTIONS(5550), 1, anon_sym_LPAREN2, - ACTIONS(9295), 1, + ACTIONS(9084), 1, anon_sym_DOLLAR, - ACTIONS(9297), 1, - anon_sym_DOT, - ACTIONS(9301), 1, + ACTIONS(9088), 1, aux_sym__immediate_decimal_token4, - STATE(3123), 1, + ACTIONS(9090), 1, + aux_sym__immediate_decimal_token5, + STATE(3143), 1, sym__immediate_decimal, - STATE(5619), 1, + STATE(5660), 1, sym_comment, - ACTIONS(9299), 2, + ACTIONS(9086), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3120), 2, + STATE(3139), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206184] = 9, - ACTIONS(3), 1, + [208272] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5631), 1, + STATE(5661), 1, + sym_comment, + ACTIONS(1475), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1473), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [208292] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8362), 1, + anon_sym_DASH, + STATE(5662), 1, + sym_comment, + ACTIONS(8358), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [208312] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5550), 1, anon_sym_LPAREN2, - ACTIONS(9295), 1, + ACTIONS(9084), 1, anon_sym_DOLLAR, - ACTIONS(9303), 1, - anon_sym_DOT, - ACTIONS(9307), 1, + ACTIONS(9092), 1, aux_sym__immediate_decimal_token4, - STATE(2896), 1, + ACTIONS(9094), 1, + aux_sym__immediate_decimal_token5, + STATE(3049), 1, sym__immediate_decimal, - STATE(5620), 1, + STATE(5663), 1, sym_comment, - ACTIONS(9305), 2, + ACTIONS(8877), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3129), 2, + STATE(3144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206214] = 9, - ACTIONS(3), 1, + [208342] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR, - ACTIONS(5615), 1, + ACTIONS(5530), 1, anon_sym_LPAREN2, - ACTIONS(5623), 1, + ACTIONS(5536), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9241), 1, - anon_sym_DOT, - STATE(3099), 1, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(3088), 1, sym__immediate_decimal, - STATE(5621), 1, + STATE(5664), 1, sym_comment, - ACTIONS(5621), 2, + ACTIONS(5534), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3103), 2, + STATE(3087), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206244] = 9, - ACTIONS(3), 1, + [208372] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7387), 1, + ACTIONS(9096), 1, + aux_sym__immediate_decimal_token2, + STATE(5665), 1, + sym_comment, + ACTIONS(1521), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1519), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [208394] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7145), 1, anon_sym_LPAREN2, - ACTIONS(7434), 1, + ACTIONS(7224), 1, anon_sym_DOLLAR, - ACTIONS(7535), 1, + ACTIONS(7275), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9309), 1, - anon_sym_DOT, - STATE(5004), 1, + ACTIONS(7277), 1, + aux_sym__immediate_decimal_token5, + STATE(5281), 1, sym__immediate_decimal, - STATE(5622), 1, + STATE(5666), 1, sym_comment, - ACTIONS(7533), 2, + ACTIONS(7273), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5324), 2, + STATE(5425), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206274] = 9, - ACTIONS(3), 1, + [208424] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1490), 1, + ACTIONS(1489), 1, anon_sym_DOLLAR, - ACTIONS(1492), 1, + ACTIONS(1491), 1, anon_sym_LPAREN2, - ACTIONS(1533), 1, + ACTIONS(1581), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9311), 1, - anon_sym_DOT, - STATE(602), 1, + ACTIONS(1583), 1, + aux_sym__immediate_decimal_token5, + STATE(606), 1, sym__immediate_decimal, - STATE(5623), 1, + STATE(5667), 1, sym_comment, - ACTIONS(1531), 2, + ACTIONS(1579), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(601), 2, + STATE(605), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206304] = 9, - ACTIONS(3), 1, + [208454] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5668), 1, + sym_comment, + ACTIONS(1483), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1481), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [208474] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1490), 1, + ACTIONS(1489), 1, anon_sym_DOLLAR, - ACTIONS(1492), 1, + ACTIONS(1491), 1, anon_sym_LPAREN2, - ACTIONS(1500), 1, + ACTIONS(1497), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9313), 1, - anon_sym_DOT, - STATE(444), 1, + ACTIONS(1499), 1, + aux_sym__immediate_decimal_token5, + STATE(521), 1, sym__immediate_decimal, - STATE(5624), 1, + STATE(5669), 1, sym_comment, - ACTIONS(1498), 2, + ACTIONS(1495), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(603), 2, + STATE(610), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206334] = 9, - ACTIONS(3), 1, + [208504] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1408), 1, + ACTIONS(1447), 1, anon_sym_LPAREN2, - ACTIONS(9315), 1, + ACTIONS(9098), 1, anon_sym_DOLLAR, - ACTIONS(9317), 1, - anon_sym_DOT, - ACTIONS(9321), 1, + ACTIONS(9102), 1, aux_sym__immediate_decimal_token4, - STATE(530), 1, + ACTIONS(9104), 1, + aux_sym__immediate_decimal_token5, + STATE(577), 1, sym__immediate_decimal, - STATE(5625), 1, + STATE(5670), 1, sym_comment, - ACTIONS(9319), 2, + ACTIONS(9100), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(529), 2, + STATE(576), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206364] = 5, + [208534] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9323), 1, - aux_sym__immediate_decimal_token2, - STATE(5626), 1, + STATE(5671), 1, sym_comment, - ACTIONS(1518), 3, + ACTIONS(1473), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1520), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206386] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5627), 1, - sym_comment, - ACTIONS(1370), 3, - anon_sym_DOLLAR, + aux_sym__unquoted_in_record_token2, + ACTIONS(1475), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1368), 6, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [206406] = 5, - ACTIONS(3), 1, + sym__entry_separator, + [208554] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9149), 1, - aux_sym__immediate_decimal_token2, - STATE(5628), 1, + STATE(5672), 1, sym_comment, - ACTIONS(1368), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 5, - anon_sym_in, + ACTIONS(1521), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1519), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [206428] = 9, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [208574] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1408), 1, + ACTIONS(1447), 1, anon_sym_LPAREN2, - ACTIONS(9315), 1, + ACTIONS(9098), 1, anon_sym_DOLLAR, - ACTIONS(9325), 1, - anon_sym_DOT, - ACTIONS(9329), 1, + ACTIONS(9106), 1, aux_sym__immediate_decimal_token4, - STATE(393), 1, + ACTIONS(9108), 1, + aux_sym__immediate_decimal_token5, + STATE(436), 1, sym__immediate_decimal, - STATE(5629), 1, + STATE(5673), 1, sym_comment, - ACTIONS(9327), 2, + ACTIONS(8893), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(531), 2, + STATE(578), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206458] = 6, - ACTIONS(3), 1, + [208604] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9323), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9331), 1, - anon_sym_DOT, - STATE(5630), 1, + STATE(5674), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1587), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206482] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5631), 1, - sym_comment, - ACTIONS(1368), 3, + ACTIONS(1585), 6, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [206502] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [208624] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9093), 1, + ACTIONS(9110), 1, + anon_sym_DOT, + ACTIONS(9112), 1, aux_sym__immediate_decimal_token2, - STATE(5632), 1, + STATE(5675), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1589), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(1472), 5, + ACTIONS(1591), 5, sym__newline, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206524] = 5, + [208648] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9089), 1, + ACTIONS(8967), 1, aux_sym__immediate_decimal_token2, - STATE(5633), 1, + STATE(5676), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1473), 3, + sym__newline, anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [208670] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9114), 1, anon_sym_DOT, + ACTIONS(9116), 1, + aux_sym__immediate_decimal_token2, + STATE(5677), 1, + sym_comment, + ACTIONS(1589), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1472), 5, + ACTIONS(1591), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206546] = 4, + [208694] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5634), 1, + ACTIONS(9118), 1, + aux_sym__immediate_decimal_token2, + STATE(5678), 1, sym_comment, - ACTIONS(1378), 3, - anon_sym_DOLLAR, + ACTIONS(1519), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1376), 6, - sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token6, - [206566] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8434), 1, - anon_sym_LPAREN2, - ACTIONS(8748), 1, - anon_sym_DOT, - ACTIONS(9243), 1, - anon_sym_DOLLAR, - ACTIONS(9334), 1, - aux_sym__immediate_decimal_token4, - STATE(3123), 1, - sym__immediate_decimal, - STATE(5635), 1, - sym_comment, - ACTIONS(8750), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3120), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206596] = 9, - ACTIONS(3), 1, + [208716] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6400), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - STATE(3682), 1, - sym__immediate_decimal, - STATE(5636), 1, + ACTIONS(9120), 1, + sym_long_flag_identifier, + ACTIONS(9122), 1, + anon_sym_EQ2, + STATE(5679), 1, sym_comment, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3491), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206626] = 4, + ACTIONS(4950), 2, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4952), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [208740] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5637), 1, + STATE(5680), 1, sym_comment, - ACTIONS(1376), 3, + ACTIONS(1481), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + aux_sym__unquoted_in_record_token2, + ACTIONS(1483), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [206646] = 5, - ACTIONS(3), 1, + sym__entry_separator, + [208760] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9336), 1, - aux_sym__immediate_decimal_token2, - STATE(5638), 1, + ACTIONS(8707), 1, + anon_sym_DASH, + STATE(5681), 1, sym_comment, - ACTIONS(1535), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1537), 5, + ACTIONS(8703), 8, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206668] = 4, - ACTIONS(3), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [208780] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5639), 1, + ACTIONS(8707), 1, + anon_sym_DASH, + STATE(5682), 1, sym_comment, - ACTIONS(1506), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1504), 6, + ACTIONS(8703), 8, sym_identifier, - anon_sym_DOT_DOT2, - anon_sym_DOT, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token6, - [206688] = 5, - ACTIONS(3), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [208800] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9338), 1, - aux_sym__immediate_decimal_token2, - STATE(5640), 1, + ACTIONS(8707), 1, + anon_sym_DASH, + STATE(5683), 1, sym_comment, - ACTIONS(1376), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [206710] = 4, - ACTIONS(3), 1, + ACTIONS(8703), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [208820] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5641), 1, + ACTIONS(8707), 1, + anon_sym_DASH, + STATE(5684), 1, sym_comment, - ACTIONS(1504), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1506), 6, + ACTIONS(8703), 8, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [206730] = 5, - ACTIONS(121), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [208840] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9113), 1, - aux_sym__immediate_decimal_token2, - STATE(5642), 1, + ACTIONS(9124), 1, + anon_sym_DOT, + STATE(5845), 1, + sym_path, + STATE(5685), 2, sym_comment, - ACTIONS(1470), 4, + aux_sym_cell_path_repeat1, + ACTIONS(955), 3, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token2, - ACTIONS(1472), 4, - anon_sym_LPAREN2, + ACTIONS(957), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [206752] = 10, - ACTIONS(3), 1, + [208864] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8850), 1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - ACTIONS(8911), 1, + ACTIONS(8631), 1, sym_identifier, - ACTIONS(9099), 1, + ACTIONS(8959), 1, anon_sym_DASH_DASH, - ACTIONS(9101), 1, + ACTIONS(8961), 1, anon_sym_DASH, - STATE(5587), 1, + STATE(5619), 1, sym_val_variable, - STATE(5643), 1, + STATE(5686), 1, sym_comment, - STATE(6080), 1, + STATE(6179), 1, sym__variable_name, - STATE(6463), 1, + STATE(6389), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [206784] = 9, + [208896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6402), 1, + STATE(5687), 1, + sym_comment, + ACTIONS(1519), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1521), 6, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8850), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [208916] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8735), 1, + anon_sym_DASH, + STATE(5688), 1, + sym_comment, + ACTIONS(8731), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - STATE(3682), 1, - sym__immediate_decimal, - STATE(5644), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [208936] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8460), 1, + anon_sym_DASH, + STATE(5689), 1, sym_comment, - ACTIONS(6406), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3491), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206814] = 4, - ACTIONS(3), 1, + ACTIONS(8456), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [208956] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8856), 1, + ACTIONS(8472), 1, anon_sym_DASH, - STATE(5645), 1, + STATE(5690), 1, sym_comment, - ACTIONS(8852), 8, + ACTIONS(8468), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -401859,14 +409929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [206834] = 4, - ACTIONS(3), 1, + [208976] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8856), 1, + ACTIONS(8472), 1, anon_sym_DASH, - STATE(5646), 1, + STATE(5691), 1, sym_comment, - ACTIONS(8852), 8, + ACTIONS(8468), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -401875,14 +409945,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [206854] = 4, - ACTIONS(3), 1, + [208996] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9342), 1, + ACTIONS(8472), 1, anon_sym_DASH, - STATE(5647), 1, + STATE(5692), 1, sym_comment, - ACTIONS(9340), 8, + ACTIONS(8468), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -401891,14 +409961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [206874] = 4, - ACTIONS(3), 1, + [209016] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8856), 1, + ACTIONS(8480), 1, anon_sym_DASH, - STATE(5648), 1, + STATE(5693), 1, sym_comment, - ACTIONS(8852), 8, + ACTIONS(8476), 8, sym_identifier, sym__newline, anon_sym_PIPE, @@ -401907,1684 +409977,1806 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [206894] = 9, - ACTIONS(3), 1, + [209036] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8250), 1, + anon_sym_DASH, + STATE(5694), 1, + sym_comment, + ACTIONS(8246), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [209056] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(3645), 1, + anon_sym_DOLLAR, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8848), 1, - anon_sym_DOLLAR, - STATE(5649), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + STATE(5695), 1, sym_comment, - STATE(6150), 1, + STATE(6913), 1, sym__immediate_decimal, - ACTIONS(6416), 2, + ACTIONS(6266), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6152), 2, + STATE(6189), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206924] = 9, - ACTIONS(3), 1, + [209086] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8850), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8118), 1, anon_sym_DOLLAR, - STATE(3677), 1, + STATE(3725), 1, sym__immediate_decimal, - STATE(5650), 1, + STATE(5696), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3511), 2, + STATE(3604), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206954] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8866), 1, - anon_sym_DASH, - STATE(5651), 1, - sym_comment, - ACTIONS(8862), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [206974] = 9, - ACTIONS(3), 1, + [209116] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8850), 1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8118), 1, anon_sym_DOLLAR, - STATE(3496), 1, + STATE(3610), 1, sym__immediate_decimal, - STATE(5652), 1, + STATE(5697), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6286), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3494), 2, + STATE(3609), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [207004] = 9, - ACTIONS(3), 1, + [209146] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6400), 1, + ACTIONS(6260), 1, anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(8889), 1, - anon_sym_DOT, - STATE(3496), 1, - sym__immediate_decimal, - STATE(5653), 1, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(5698), 1, sym_comment, - ACTIONS(8891), 2, + STATE(6376), 1, + sym__immediate_decimal, + ACTIONS(8378), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3494), 2, + STATE(6375), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [207034] = 9, - ACTIONS(3), 1, + [209176] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(8086), 1, + anon_sym_LPAREN2, + ACTIONS(9048), 1, + anon_sym_DOLLAR, + ACTIONS(9127), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6400), 1, + ACTIONS(9129), 1, + aux_sym__immediate_decimal_token5, + STATE(5699), 1, + sym_comment, + STATE(6660), 1, + sym__immediate_decimal, + ACTIONS(8553), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3144), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [209206] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6535), 1, anon_sym_DOLLAR, - ACTIONS(6402), 1, + ACTIONS(6557), 1, anon_sym_LPAREN2, - ACTIONS(8889), 1, - anon_sym_DOT, - STATE(3682), 1, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token5, + STATE(4051), 1, sym__immediate_decimal, - STATE(5654), 1, + STATE(5700), 1, sym_comment, - ACTIONS(8891), 2, + ACTIONS(6575), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3491), 2, + STATE(2085), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [207064] = 5, + [209236] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9344), 1, - aux_sym__immediate_decimal_token2, - STATE(5655), 1, + STATE(5701), 1, sym_comment, - ACTIONS(1376), 3, + ACTIONS(1585), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 5, - aux_sym_ctrl_match_token1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1587), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [207086] = 9, + sym__entry_separator, + [209256] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(8921), 1, + aux_sym__immediate_decimal_token2, + STATE(5702), 1, + sym_comment, + ACTIONS(1589), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [209278] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8470), 1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - STATE(3682), 1, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(3610), 1, sym__immediate_decimal, - STATE(5656), 1, + STATE(5703), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(8715), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3491), 2, + STATE(3609), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [207116] = 9, - ACTIONS(121), 1, + [209308] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - sym__newline, - ACTIONS(1441), 1, - sym__space, - ACTIONS(4075), 1, - anon_sym_DOT_DOT2, - ACTIONS(9346), 1, - sym_filesize_unit, - ACTIONS(9348), 1, - sym_duration_unit, - STATE(5657), 1, + ACTIONS(6262), 1, + anon_sym_LPAREN2, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(3716), 1, + sym__immediate_decimal, + STATE(5704), 1, sym_comment, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7205), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [207146] = 9, - ACTIONS(3), 1, + ACTIONS(8715), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3569), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [209338] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(6262), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8470), 1, + ACTIONS(6284), 1, anon_sym_DOLLAR, - STATE(3677), 1, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + STATE(3725), 1, sym__immediate_decimal, - STATE(5658), 1, + STATE(5705), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(8715), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3511), 2, + STATE(3604), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [207176] = 9, - ACTIONS(3), 1, + [209368] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(8086), 1, anon_sym_LPAREN2, - ACTIONS(6404), 1, - anon_sym_DOT, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8470), 1, + ACTIONS(9048), 1, anon_sym_DOLLAR, - STATE(3496), 1, - sym__immediate_decimal, - STATE(5659), 1, + ACTIONS(9131), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9133), 1, + aux_sym__immediate_decimal_token5, + STATE(5706), 1, sym_comment, - ACTIONS(6406), 2, + STATE(6652), 1, + sym__immediate_decimal, + ACTIONS(8398), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3494), 2, + STATE(3144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [207206] = 4, - ACTIONS(3), 1, + [209398] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9056), 1, + aux_sym__immediate_decimal_token2, + STATE(5707), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [209419] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8570), 1, + ACTIONS(5131), 1, anon_sym_DASH, - STATE(5660), 1, + STATE(5708), 1, sym_comment, - ACTIONS(8566), 8, - sym_identifier, + ACTIONS(5129), 7, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [209438] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4286), 1, + anon_sym_DQUOTE, + ACTIONS(9135), 1, + sym_identifier, + ACTIONS(9137), 1, + anon_sym_GT, + STATE(4863), 1, + sym__str_double_quotes, + STATE(5709), 1, + sym_comment, + STATE(5834), 1, + aux_sym_collection_type_repeat1, + STATE(5882), 1, + sym_val_string, + ACTIONS(4288), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [209467] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4286), 1, + anon_sym_DQUOTE, + ACTIONS(9135), 1, + sym_identifier, + ACTIONS(9139), 1, + anon_sym_GT, + STATE(4863), 1, + sym__str_double_quotes, + STATE(5710), 1, + sym_comment, + STATE(5834), 1, + aux_sym_collection_type_repeat1, + STATE(5882), 1, + sym_val_string, + ACTIONS(4288), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [209496] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(994), 1, + anon_sym_DASH, + STATE(5711), 1, + sym_comment, + ACTIONS(996), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [207226] = 4, - ACTIONS(3), 1, + anon_sym_DOT, + sym__table_head_separator, + [209515] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8576), 1, + ACTIONS(1774), 1, anon_sym_DASH, - STATE(5661), 1, + ACTIONS(8853), 1, + anon_sym_DOT, + STATE(5247), 1, + sym_cell_path, + STATE(5525), 1, + aux_sym_cell_path_repeat1, + STATE(5711), 1, + sym_path, + STATE(5712), 1, sym_comment, - ACTIONS(8572), 8, + ACTIONS(1776), 3, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [207246] = 5, - ACTIONS(3), 1, + [209542] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(900), 1, + ACTIONS(5135), 1, anon_sym_DASH, - ACTIONS(9350), 1, - anon_sym_QMARK2, - STATE(5662), 1, + STATE(5713), 1, sym_comment, - ACTIONS(902), 7, + ACTIONS(5133), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT, - [207268] = 5, - ACTIONS(3), 1, + [209561] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(906), 1, + ACTIONS(5153), 1, anon_sym_DASH, - ACTIONS(9352), 1, - anon_sym_QMARK2, - STATE(5663), 1, + STATE(5714), 1, sym_comment, - ACTIONS(908), 7, + ACTIONS(5151), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, anon_sym_as, + [209580] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_DASH, + ACTIONS(8853), 1, + anon_sym_DOT, + STATE(5227), 1, + sym_cell_path, + STATE(5525), 1, + aux_sym_cell_path_repeat1, + STATE(5711), 1, + sym_path, + STATE(5715), 1, + sym_comment, + ACTIONS(1780), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [209607] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(2649), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5716), 1, + sym_comment, + ACTIONS(1603), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [209632] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5717), 1, + sym_comment, + ACTIONS(1569), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [209651] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5718), 1, + sym_comment, + ACTIONS(964), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(962), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - [207290] = 4, + [209670] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9112), 1, + aux_sym__immediate_decimal_token2, + STATE(5719), 1, + sym_comment, + ACTIONS(1589), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1591), 5, + sym__newline, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209691] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9116), 1, + aux_sym__immediate_decimal_token2, + STATE(5720), 1, + sym_comment, + ACTIONS(1589), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1591), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209712] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8584), 1, - anon_sym_DASH, - STATE(5664), 1, + ACTIONS(1525), 1, + sym__newline, + ACTIONS(1537), 1, + sym__space, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(7127), 1, + aux_sym_unquoted_token2, + ACTIONS(9141), 1, + sym_filesize_unit, + ACTIONS(9143), 1, + sym_duration_unit, + STATE(5721), 1, + sym_comment, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209741] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2128), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5722), 1, + sym_comment, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1849), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [209766] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2131), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5723), 1, + sym_comment, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1873), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [209791] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5724), 1, + sym_comment, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1877), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [209816] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2166), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5725), 1, + sym_comment, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1881), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [209841] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2172), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5726), 1, sym_comment, - ACTIONS(8580), 8, - sym_identifier, - sym__newline, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1885), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207310] = 9, - ACTIONS(3), 1, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [209866] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6402), 1, - anon_sym_LPAREN2, - ACTIONS(6412), 1, - anon_sym_DOLLAR, - ACTIONS(8889), 1, + ACTIONS(9145), 1, anon_sym_DOT, - STATE(5665), 1, + STATE(2145), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5727), 1, sym_comment, - STATE(6236), 1, - sym__immediate_decimal, - ACTIONS(9072), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6248), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207340] = 8, - ACTIONS(3), 1, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1893), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [209891] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9354), 1, - anon_sym_DOT_DOT2, - ACTIONS(9358), 1, - sym_filesize_unit, - ACTIONS(9360), 1, - sym_duration_unit, - STATE(5666), 1, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2124), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5728), 1, sym_comment, - ACTIONS(1441), 2, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1897), 4, anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_EQ_GT, - ACTIONS(5002), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(9356), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207368] = 4, - ACTIONS(3), 1, + [209916] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(920), 1, - anon_sym_DASH, - STATE(5667), 1, - sym_comment, - ACTIONS(922), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, + ACTIONS(9145), 1, anon_sym_DOT, - [207387] = 8, - ACTIONS(3), 1, + STATE(2173), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5729), 1, + sym_comment, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1749), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [209941] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(9145), 1, anon_sym_DOT, - STATE(5105), 1, + STATE(2133), 1, sym_cell_path, - STATE(5668), 1, + STATE(2760), 1, + sym_path, + STATE(5730), 1, sym_comment, - STATE(5836), 1, + STATE(5898), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1778), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [207414] = 4, - ACTIONS(3), 1, + ACTIONS(1826), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [209966] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5165), 1, - anon_sym_DASH, - STATE(5669), 1, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2136), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5731), 1, sym_comment, - ACTIONS(5163), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [207433] = 4, - ACTIONS(3), 1, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1857), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [209991] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5169), 1, - anon_sym_DASH, - STATE(5670), 1, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2138), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5732), 1, sym_comment, - ACTIONS(5167), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [207452] = 8, - ACTIONS(3), 1, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1798), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [210016] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(9145), 1, anon_sym_DOT, - STATE(5106), 1, + STATE(2150), 1, sym_cell_path, - STATE(5671), 1, + STATE(2760), 1, + sym_path, + STATE(5733), 1, sym_comment, - STATE(5836), 1, + STATE(5898), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1782), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [207479] = 6, - ACTIONS(3), 1, + ACTIONS(1810), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [210041] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9364), 1, - anon_sym_EQ2, - ACTIONS(9366), 1, - sym_short_flag_identifier, - STATE(5672), 1, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2156), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5734), 1, sym_comment, - ACTIONS(4888), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4890), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [207502] = 4, - ACTIONS(3), 1, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1822), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [210066] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5137), 1, - anon_sym_DASH, - STATE(5673), 1, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2167), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5735), 1, sym_comment, - ACTIONS(5135), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [207521] = 8, - ACTIONS(3), 1, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1745), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [210091] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1784), 1, - anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(9145), 1, anon_sym_DOT, - STATE(5107), 1, + STATE(2169), 1, sym_cell_path, - STATE(5674), 1, + STATE(2760), 1, + sym_path, + STATE(5736), 1, sym_comment, - STATE(5836), 1, + STATE(5898), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1786), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [207548] = 6, - ACTIONS(3), 1, + ACTIONS(1901), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [210116] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9368), 1, - anon_sym_DOT_DOT2, - STATE(5675), 1, - sym_comment, - ACTIONS(1576), 2, + ACTIONS(9145), 1, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(9370), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1580), 3, + STATE(2171), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5737), 1, + sym_comment, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1833), 4, anon_sym_PIPE, anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_EQ_GT, - [207571] = 4, - ACTIONS(121), 1, + [210141] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5676), 1, - sym_comment, - ACTIONS(918), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(916), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, + ACTIONS(9145), 1, anon_sym_DOT, - [207590] = 8, - ACTIONS(3), 1, + STATE(2127), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5738), 1, + sym_comment, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1837), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [210166] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(9145), 1, anon_sym_DOT, - STATE(5108), 1, + STATE(2129), 1, sym_cell_path, - STATE(5677), 1, + STATE(2760), 1, + sym_path, + STATE(5739), 1, sym_comment, - STATE(5836), 1, + STATE(5898), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1790), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [207617] = 4, - ACTIONS(3), 1, + ACTIONS(1841), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [210191] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(912), 1, - anon_sym_DASH, - STATE(5678), 1, + ACTIONS(5704), 1, + anon_sym_DOT, + STATE(1743), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5740), 1, sym_comment, - ACTIONS(914), 7, - ts_builtin_sym_end, + ACTIONS(1764), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [207636] = 8, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210216] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1570), 1, - anon_sym_RBRACK, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, - sym__entry_separator, - ACTIONS(9372), 1, - anon_sym_DOT_DOT2, - STATE(5679), 1, + STATE(5741), 1, sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(9374), 2, + ACTIONS(1483), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [207663] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DQUOTE, - ACTIONS(9376), 1, + ACTIONS(1481), 5, sym_identifier, - ACTIONS(9378), 1, - anon_sym_GT, - STATE(4973), 1, - sym__str_double_quotes, - STATE(5680), 1, - sym_comment, - STATE(5715), 1, - aux_sym_collection_type_repeat1, - STATE(5856), 1, - sym_val_string, - ACTIONS(4217), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [207692] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1723), 1, - anon_sym_DASH, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, - sym_path, - STATE(5286), 1, - sym_cell_path, - STATE(5681), 1, - sym_comment, - ACTIONS(1725), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [207719] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [210235] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4798), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(1552), 1, + STATE(1782), 1, sym_cell_path, - STATE(1585), 1, - aux_sym_cell_path_repeat1, - STATE(1694), 1, + STATE(2760), 1, sym_path, - STATE(5682), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5742), 1, sym_comment, - ACTIONS(1549), 4, + ACTIONS(1772), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [207744] = 8, - ACTIONS(3), 1, + [210260] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(945), 1, + anon_sym_DOT_DOT2, + ACTIONS(9147), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(1399), 1, sym_path, - STATE(5296), 1, + STATE(3345), 1, sym_cell_path, - STATE(5683), 1, + STATE(5743), 1, sym_comment, - ACTIONS(1735), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(5911), 1, + aux_sym_cell_path_repeat1, + ACTIONS(947), 3, aux_sym_ctrl_match_token1, - [207771] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210287] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1762), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5300), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5382), 1, sym_cell_path, - STATE(5684), 1, + STATE(5744), 1, sym_comment, - ACTIONS(1754), 3, + ACTIONS(1764), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [207798] = 8, - ACTIONS(3), 1, + [210314] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(1770), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5099), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5210), 1, sym_cell_path, - STATE(5685), 1, + STATE(5745), 1, sym_comment, - ACTIONS(1758), 3, + ACTIONS(1772), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [207825] = 8, - ACTIONS(3), 1, + [210341] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1760), 1, + ACTIONS(1847), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5101), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5327), 1, sym_cell_path, - STATE(5686), 1, + STATE(5746), 1, sym_comment, - ACTIONS(1762), 3, + ACTIONS(1849), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [207852] = 8, - ACTIONS(3), 1, + [210368] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1764), 1, + ACTIONS(1871), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5102), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5202), 1, sym_cell_path, - STATE(5687), 1, + STATE(5747), 1, sym_comment, - ACTIONS(1766), 3, + ACTIONS(1873), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [207879] = 8, - ACTIONS(3), 1, + [210395] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1768), 1, + ACTIONS(1875), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5103), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5203), 1, sym_cell_path, - STATE(5688), 1, + STATE(5748), 1, sym_comment, - ACTIONS(1770), 3, + ACTIONS(1877), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [207906] = 8, - ACTIONS(3), 1, + [210422] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1879), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5104), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5211), 1, sym_cell_path, - STATE(5689), 1, + STATE(5749), 1, sym_comment, - ACTIONS(1774), 3, + ACTIONS(1881), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [207933] = 8, - ACTIONS(3), 1, + [210449] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1883), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5105), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5212), 1, sym_cell_path, - STATE(5690), 1, + STATE(5750), 1, sym_comment, - ACTIONS(1778), 3, + ACTIONS(1885), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [207960] = 8, - ACTIONS(3), 1, + [210476] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(1891), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5106), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5216), 1, sym_cell_path, - STATE(5691), 1, + STATE(5751), 1, sym_comment, - ACTIONS(1782), 3, + ACTIONS(1893), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [207987] = 8, - ACTIONS(3), 1, + [210503] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1784), 1, + ACTIONS(1895), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5107), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5221), 1, sym_cell_path, - STATE(5692), 1, + STATE(5752), 1, sym_comment, - ACTIONS(1786), 3, + ACTIONS(1897), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208014] = 8, - ACTIONS(3), 1, + [210530] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1788), 1, + ACTIONS(1747), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5108), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5233), 1, sym_cell_path, - STATE(5693), 1, + STATE(5753), 1, sym_comment, - ACTIONS(1790), 3, + ACTIONS(1749), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208041] = 8, - ACTIONS(3), 1, + [210557] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1792), 1, + ACTIONS(1824), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5109), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5267), 1, sym_cell_path, - STATE(5694), 1, + STATE(5754), 1, sym_comment, - ACTIONS(1794), 3, + ACTIONS(1826), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208068] = 8, - ACTIONS(3), 1, + [210584] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1855), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5110), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5268), 1, sym_cell_path, - STATE(5695), 1, + STATE(5755), 1, sym_comment, - ACTIONS(1798), 3, + ACTIONS(1857), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208095] = 8, - ACTIONS(3), 1, + [210611] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1796), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5111), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5269), 1, sym_cell_path, - STATE(5696), 1, + STATE(5756), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(1798), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208122] = 8, - ACTIONS(3), 1, + [210638] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1808), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5112), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5279), 1, sym_cell_path, - STATE(5697), 1, + STATE(5757), 1, sym_comment, - ACTIONS(1806), 3, + ACTIONS(1810), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208149] = 8, - ACTIONS(3), 1, + [210665] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1808), 1, + ACTIONS(1820), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5302), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5280), 1, sym_cell_path, - STATE(5698), 1, + STATE(5758), 1, sym_comment, - ACTIONS(1810), 3, + ACTIONS(1822), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208176] = 8, - ACTIONS(3), 1, + [210692] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1812), 1, + ACTIONS(1741), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5113), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5284), 1, sym_cell_path, - STATE(5699), 1, + STATE(5759), 1, sym_comment, - ACTIONS(1814), 3, + ACTIONS(1745), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208203] = 8, - ACTIONS(3), 1, + [210719] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1816), 1, + ACTIONS(1899), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5114), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5286), 1, sym_cell_path, - STATE(5700), 1, + STATE(5760), 1, sym_comment, - ACTIONS(1818), 3, + ACTIONS(1901), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208230] = 8, - ACTIONS(3), 1, + [210746] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1831), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5115), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5292), 1, sym_cell_path, - STATE(5701), 1, + STATE(5761), 1, sym_comment, - ACTIONS(1822), 3, + ACTIONS(1833), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208257] = 8, - ACTIONS(3), 1, + [210773] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1740), 1, + ACTIONS(1835), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5121), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5293), 1, sym_cell_path, - STATE(5702), 1, + STATE(5762), 1, sym_comment, - ACTIONS(1742), 3, + ACTIONS(1837), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208284] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9153), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9380), 1, - anon_sym_DOT, - STATE(5703), 1, - sym_comment, - ACTIONS(1518), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1520), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [208307] = 8, - ACTIONS(3), 1, + [210800] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1839), 1, anon_sym_DASH, - ACTIONS(6727), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, + STATE(2760), 1, sym_path, - STATE(5128), 1, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5301), 1, sym_cell_path, - STATE(5704), 1, + STATE(5763), 1, sym_comment, - ACTIONS(1746), 3, + ACTIONS(1841), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [208334] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2925), 1, - anon_sym_DOLLAR, - ACTIONS(2927), 1, - sym_identifier, - ACTIONS(2975), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2977), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(8907), 1, - aux_sym_unquoted_token5, - STATE(5705), 1, - sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - [208365] = 8, - ACTIONS(3), 1, + [210827] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1792), 1, + ACTIONS(1774), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(5109), 1, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5247), 1, sym_cell_path, - STATE(5706), 1, + STATE(5764), 1, sym_comment, - STATE(5836), 1, - aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1794), 3, - sym_identifier, + ACTIONS(1776), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [208392] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DASH, - STATE(5707), 1, - sym_comment, - ACTIONS(5123), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [208411] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5129), 1, - anon_sym_DASH, - STATE(5708), 1, - sym_comment, - ACTIONS(5127), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [208430] = 8, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [210854] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1778), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(5704), 1, anon_sym_DOT, - STATE(5110), 1, + STATE(2760), 1, + sym_path, + STATE(2761), 1, + aux_sym_cell_path_repeat1, + STATE(5227), 1, sym_cell_path, - STATE(5709), 1, + STATE(5765), 1, sym_comment, - STATE(5836), 1, - aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1798), 3, - sym_identifier, + ACTIONS(1780), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [208457] = 4, + aux_sym_ctrl_match_token1, + [210881] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5710), 1, + ACTIONS(8978), 1, + aux_sym__immediate_decimal_token2, + STATE(5766), 1, sym_comment, - ACTIONS(1504), 3, + ACTIONS(1589), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1506), 5, - aux_sym_ctrl_match_token1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1591), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [208476] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5711), 1, - sym_comment, - ACTIONS(2073), 4, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - aux_sym_unquoted_token7, - ACTIONS(2075), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208495] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9382), 1, - sym_long_flag_identifier, - ACTIONS(9384), 1, - anon_sym_EQ2, - STATE(5712), 1, - sym_comment, - ACTIONS(4966), 2, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4968), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - [208518] = 10, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2925), 1, - sym__space, - ACTIONS(2927), 1, - sym__newline, - ACTIONS(2975), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(2977), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4834), 1, - anon_sym_DOT, - ACTIONS(7205), 1, - aux_sym_unquoted_token5, - ACTIONS(7444), 1, - aux_sym__immediate_decimal_token4, - STATE(5713), 1, - sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - [208549] = 8, - ACTIONS(3), 1, + sym__entry_separator, + [210902] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(9149), 1, anon_sym_DOT, - STATE(5111), 1, - sym_cell_path, - STATE(5714), 1, - sym_comment, - STATE(5836), 1, - aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1802), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [208576] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9386), 1, - sym_identifier, - ACTIONS(9389), 1, - anon_sym_GT, - ACTIONS(9391), 1, - anon_sym_DQUOTE, - STATE(4973), 1, - sym__str_double_quotes, - STATE(5856), 1, - sym_val_string, - ACTIONS(9394), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5715), 2, - sym_comment, - aux_sym_collection_type_repeat1, - [208603] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9399), 1, - anon_sym_COMMA, - ACTIONS(9401), 1, - anon_sym_AT, - STATE(5716), 1, - sym_comment, - STATE(6111), 1, - sym_param_cmd, - ACTIONS(9397), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [208626] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DQUOTE, - ACTIONS(9376), 1, - sym_identifier, - ACTIONS(9403), 1, - anon_sym_GT, - STATE(4973), 1, - sym__str_double_quotes, - STATE(5717), 1, + ACTIONS(9151), 1, + aux_sym__immediate_decimal_token2, + STATE(5767), 1, sym_comment, - STATE(5719), 1, - aux_sym_collection_type_repeat1, - STATE(5856), 1, - sym_val_string, - ACTIONS(4217), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [208655] = 4, + ACTIONS(1589), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1591), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210925] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5718), 1, + STATE(5768), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(1648), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1537), 5, - sym__newline, - aux_sym_ctrl_match_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208674] = 9, + sym__entry_separator, + [210944] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DQUOTE, - ACTIONS(9376), 1, - sym_identifier, - ACTIONS(9405), 1, - anon_sym_GT, - STATE(4973), 1, - sym__str_double_quotes, - STATE(5715), 1, - aux_sym_collection_type_repeat1, - STATE(5719), 1, - sym_comment, - STATE(5856), 1, - sym_val_string, - ACTIONS(4217), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [208703] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9407), 1, + ACTIONS(9153), 1, anon_sym_QMARK2, - STATE(5720), 1, + STATE(5769), 1, sym_comment, - ACTIONS(902), 3, + ACTIONS(972), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(900), 4, + ACTIONS(970), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - [208724] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9409), 1, - anon_sym_DASH_DASH, - ACTIONS(9412), 1, - anon_sym_DASH, - STATE(6298), 1, - sym__flag, - ACTIONS(9031), 2, - sym_identifier, - anon_sym_DOLLAR, - STATE(5721), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [208749] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9230), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9415), 1, - anon_sym_DOT, - STATE(5722), 1, - sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 4, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208772] = 8, - ACTIONS(3), 1, + [210965] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(5139), 1, anon_sym_DASH, - ACTIONS(9362), 1, - anon_sym_DOT, - STATE(5112), 1, - sym_cell_path, - STATE(5723), 1, + STATE(5770), 1, sym_comment, - STATE(5836), 1, - aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1806), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(5137), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [208799] = 5, - ACTIONS(121), 1, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [210984] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9418), 1, + ACTIONS(9155), 1, anon_sym_QMARK2, - STATE(5724), 1, + STATE(5771), 1, sym_comment, - ACTIONS(908), 3, + ACTIONS(982), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(906), 4, + ACTIONS(980), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - [208820] = 5, - ACTIONS(121), 1, + [211005] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(5725), 1, - sym_comment, - ACTIONS(2077), 3, - anon_sym_DASH_DASH, + ACTIONS(5143), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(2081), 4, + STATE(5772), 1, + sym_comment, + ACTIONS(5141), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [208841] = 6, - ACTIONS(3), 1, + anon_sym_as, + [211024] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9401), 1, - anon_sym_AT, - ACTIONS(9422), 1, - anon_sym_COMMA, - STATE(5726), 1, + STATE(5773), 1, sym_comment, - STATE(6128), 1, - sym_param_cmd, - ACTIONS(9420), 5, + ACTIONS(1521), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1519), 5, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [208864] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [211043] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9424), 1, - aux_sym__immediate_decimal_token2, - STATE(5727), 1, + ACTIONS(986), 1, + anon_sym_DASH, + STATE(5774), 1, sym_comment, - ACTIONS(1518), 3, - anon_sym_DOT_DOT2, + ACTIONS(988), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1520), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208885] = 4, + sym__table_head_separator, + [211062] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(990), 1, + anon_sym_DASH, + STATE(5775), 1, + sym_comment, + ACTIONS(992), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT, + sym__table_head_separator, + [211081] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5728), 1, + ACTIONS(9157), 1, + aux_sym__immediate_decimal_token2, + STATE(5776), 1, sym_comment, - ACTIONS(1368), 3, + ACTIONS(1648), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 5, - aux_sym_ctrl_match_token1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1650), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [208904] = 8, - ACTIONS(121), 1, + sym__entry_separator, + [211102] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1587), 1, + STATE(5777), 1, + sym_comment, + ACTIONS(1721), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1589), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 4, anon_sym_LPAREN2, - ACTIONS(1595), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9426), 1, - anon_sym_DOT_DOT2, - STATE(5729), 1, + [211121] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9159), 1, + aux_sym__immediate_decimal_token2, + STATE(5778), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token2, - ACTIONS(9428), 2, + ACTIONS(1648), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1650), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208931] = 4, - ACTIONS(121), 1, + [211142] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5730), 1, + STATE(5779), 1, sym_comment, - ACTIONS(922), 3, + ACTIONS(978), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(920), 5, + ACTIONS(976), 5, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [208950] = 9, - ACTIONS(3), 1, + [211161] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9161), 1, + anon_sym_EQ2, + ACTIONS(9163), 1, + sym_short_flag_identifier, + STATE(5780), 1, + sym_comment, + ACTIONS(4942), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4944), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [211184] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1762), 1, + anon_sym_DASH, + ACTIONS(8853), 1, + anon_sym_DOT, + STATE(5382), 1, + sym_cell_path, + STATE(5525), 1, + aux_sym_cell_path_repeat1, + STATE(5711), 1, + sym_path, + STATE(5781), 1, + sym_comment, + ACTIONS(1764), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [211211] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4215), 1, + ACTIONS(4286), 1, anon_sym_DQUOTE, - ACTIONS(9376), 1, + ACTIONS(9135), 1, sym_identifier, - ACTIONS(9430), 1, + ACTIONS(9165), 1, anon_sym_GT, - STATE(4973), 1, + STATE(4863), 1, sym__str_double_quotes, - STATE(5715), 1, - aux_sym_collection_type_repeat1, - STATE(5731), 1, + STATE(5782), 1, sym_comment, - STATE(5856), 1, + STATE(5834), 1, + aux_sym_collection_type_repeat1, + STATE(5882), 1, sym_val_string, - ACTIONS(4217), 2, + ACTIONS(4288), 2, sym__str_single_quotes, sym__str_back_ticks, - [208979] = 8, - ACTIONS(3), 1, + [211240] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1812), 1, + ACTIONS(1525), 1, anon_sym_DASH, - ACTIONS(9362), 1, - anon_sym_DOT, - STATE(5113), 1, - sym_cell_path, - STATE(5732), 1, + ACTIONS(7059), 1, + aux_sym_unquoted_token2, + STATE(5783), 1, sym_comment, - STATE(5836), 1, - aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1814), 3, + ACTIONS(1537), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [211261] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5784), 1, + sym_comment, + ACTIONS(1587), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1585), 5, sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [211280] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9167), 1, + anon_sym_DASH_DASH, + ACTIONS(9170), 1, + anon_sym_DASH, + STATE(6260), 1, + sym__flag, + ACTIONS(8757), 2, anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + STATE(5785), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [211305] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9173), 1, anon_sym_DASH_DASH, - [209006] = 5, - ACTIONS(3), 1, + ACTIONS(9176), 1, + anon_sym_DASH, + STATE(6260), 1, + sym__flag, + ACTIONS(8757), 2, + sym_identifier, + anon_sym_DOLLAR, + STATE(5786), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [211330] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9291), 1, + ACTIONS(9179), 1, aux_sym__immediate_decimal_token2, - STATE(5733), 1, + STATE(5787), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1519), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(1472), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209027] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1587), 1, - anon_sym_RBRACK, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - ACTIONS(1595), 1, - sym__entry_separator, - ACTIONS(9432), 1, - anon_sym_DOT_DOT2, - STATE(5734), 1, - sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym__unquoted_in_list_token2, - ACTIONS(9434), 2, + ACTIONS(1521), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209054] = 8, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [211351] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1816), 1, + ACTIONS(1839), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5114), 1, + STATE(5301), 1, sym_cell_path, - STATE(5735), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(1818), 3, + STATE(5788), 1, + sym_comment, + ACTIONS(1841), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [209081] = 8, - ACTIONS(3), 1, + [211378] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_DASH, - ACTIONS(9362), 1, - anon_sym_DOT, - STATE(5099), 1, - sym_cell_path, - STATE(5736), 1, - sym_comment, - STATE(5836), 1, - aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1758), 3, + ACTIONS(4286), 1, + anon_sym_DQUOTE, + ACTIONS(9135), 1, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [209108] = 5, - ACTIONS(121), 1, + ACTIONS(9181), 1, + anon_sym_GT, + STATE(4863), 1, + sym__str_double_quotes, + STATE(5710), 1, + aux_sym_collection_type_repeat1, + STATE(5789), 1, + sym_comment, + STATE(5882), 1, + sym_val_string, + ACTIONS(4288), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [211407] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(5737), 1, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(5790), 1, sym_comment, - ACTIONS(2155), 3, + ACTIONS(1006), 3, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_as, - ACTIONS(2159), 4, + ACTIONS(1008), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [209129] = 5, - ACTIONS(121), 1, + [211428] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(5738), 1, + ACTIONS(9183), 1, + sym_long_flag_identifier, + ACTIONS(9185), 1, + anon_sym_EQ2, + STATE(5791), 1, sym_comment, - ACTIONS(2163), 3, - anon_sym_DASH_DASH, + ACTIONS(4950), 2, anon_sym_DASH, anon_sym_as, - ACTIONS(2165), 4, + ACTIONS(4952), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [209150] = 8, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + [211451] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1760), 1, + ACTIONS(1770), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5101), 1, + STATE(5210), 1, sym_cell_path, - STATE(5739), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(1762), 3, + STATE(5792), 1, + sym_comment, + ACTIONS(1772), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [209177] = 8, - ACTIONS(3), 1, + [211478] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_DASH, - ACTIONS(9362), 1, - anon_sym_DOT, - STATE(5115), 1, - sym_cell_path, - STATE(5740), 1, - sym_comment, - STATE(5836), 1, - aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1822), 3, + ACTIONS(1525), 1, sym_identifier, + ACTIONS(1537), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [209204] = 4, - ACTIONS(3), 1, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(8797), 1, + aux_sym_unquoted_token2, + ACTIONS(9187), 1, + sym_filesize_unit, + ACTIONS(9189), 1, + sym_duration_unit, + STATE(5793), 1, + sym_comment, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211507] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5117), 1, + ACTIONS(5160), 1, anon_sym_DASH, - STATE(5741), 1, + STATE(5794), 1, sym_comment, - ACTIONS(5115), 7, + ACTIONS(5158), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -403592,14 +411784,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [209223] = 4, - ACTIONS(3), 1, + [211526] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(5164), 1, anon_sym_DASH, - STATE(5742), 1, + STATE(5795), 1, sym_comment, - ACTIONS(5119), 7, + ACTIONS(5162), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -403607,38530 +411799,38355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [209242] = 7, + [211545] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9436), 1, + ACTIONS(7824), 1, + sym__newline, + ACTIONS(7826), 1, + sym__space, + ACTIONS(7828), 1, anon_sym_DASH_DASH, - ACTIONS(9439), 1, + ACTIONS(7830), 1, anon_sym_DASH, - STATE(6298), 1, - sym__flag, - ACTIONS(9031), 2, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - STATE(5743), 2, + STATE(5796), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6174), 2, + STATE(5840), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7712), 1, + sym__flag, + STATE(4979), 2, sym_short_flag, sym_long_flag, - [209267] = 5, - ACTIONS(3), 1, + [211574] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9442), 1, - aux_sym__immediate_decimal_token2, - STATE(5744), 1, + STATE(5797), 1, sym_comment, - ACTIONS(1535), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1537), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1475), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209288] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5745), 1, - sym_comment, - ACTIONS(1368), 3, + ACTIONS(1473), 5, + sym_identifier, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1370), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [209307] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9444), 1, - anon_sym_DOT_DOT2, - STATE(5746), 1, - sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(9446), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [209330] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5747), 1, - sym_comment, - ACTIONS(1608), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1610), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209349] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5748), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1472), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209368] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2925), 1, - anon_sym_in, - ACTIONS(2935), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4687), 1, - aux_sym_unquoted_token4, - ACTIONS(4744), 1, - anon_sym_DOT, - ACTIONS(4746), 1, - aux_sym_unquoted_token6, - STATE(5749), 1, - sym_comment, - STATE(6258), 1, - sym__immediate_decimal, - ACTIONS(2933), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [209397] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5750), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(1472), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209416] = 8, - ACTIONS(3), 1, + [211593] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(945), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5300), 1, + STATE(4906), 1, sym_cell_path, - STATE(5751), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(1754), 3, + STATE(5798), 1, + sym_comment, + ACTIONS(947), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [209443] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1441), 1, - aux_sym_ctrl_match_token1, - ACTIONS(4075), 1, - anon_sym_DOT_DOT2, - ACTIONS(9448), 1, - sym_filesize_unit, - ACTIONS(9450), 1, - sym_duration_unit, - STATE(5752), 1, - sym_comment, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5002), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [209470] = 8, - ACTIONS(3), 1, + [211620] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1740), 1, + ACTIONS(1847), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5121), 1, + STATE(5327), 1, sym_cell_path, - STATE(5753), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(1742), 3, + STATE(5799), 1, + sym_comment, + ACTIONS(1849), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [209497] = 4, - ACTIONS(3), 1, + [211647] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5754), 1, + ACTIONS(9191), 1, + aux_sym__immediate_decimal_token2, + STATE(5800), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(1648), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(1537), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1650), 5, + sym__newline, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209516] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1764), 1, - anon_sym_DASH, - ACTIONS(9362), 1, - anon_sym_DOT, - STATE(5102), 1, - sym_cell_path, - STATE(5755), 1, - sym_comment, - STATE(5836), 1, - aux_sym_cell_path_repeat1, - STATE(6349), 1, - sym_path, - ACTIONS(1766), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [209543] = 6, + [211668] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9424), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9452), 1, - anon_sym_DOT, - STATE(5756), 1, + STATE(5801), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(968), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209566] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1570), 1, - anon_sym_RBRACE, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1580), 1, sym__entry_separator, - ACTIONS(9455), 1, + ACTIONS(966), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - STATE(5757), 1, - sym_comment, - ACTIONS(1576), 2, anon_sym_DOT, - aux_sym__unquoted_in_record_token2, - ACTIONS(9457), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209593] = 4, - ACTIONS(3), 1, + [211687] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5758), 1, - sym_comment, - ACTIONS(1376), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6577), 1, sym_filesize_unit, + ACTIONS(6579), 1, sym_duration_unit, - [209612] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5759), 1, - sym_comment, - ACTIONS(1608), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(6636), 1, aux_sym_unquoted_token2, - ACTIONS(1610), 5, + ACTIONS(9193), 1, + anon_sym_DOT_DOT2, + STATE(5802), 1, + sym_comment, + ACTIONS(1537), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, + ACTIONS(9195), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209631] = 4, + [211714] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5760), 1, + STATE(5803), 1, sym_comment, - ACTIONS(1504), 3, + ACTIONS(1473), 3, + sym__newline, anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1506), 5, - anon_sym_in, + aux_sym_unquoted_token2, + ACTIONS(1475), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [209650] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5761), 1, - sym_comment, - ACTIONS(1535), 4, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token2, - ACTIONS(1537), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [209669] = 4, - ACTIONS(121), 1, + [211733] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5762), 1, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(5804), 1, sym_comment, - ACTIONS(914), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(912), 5, - anon_sym_RBRACK, + ACTIONS(2089), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2093), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [209688] = 9, - ACTIONS(3), 1, + [211754] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4215), 1, + ACTIONS(4286), 1, anon_sym_DQUOTE, - ACTIONS(9376), 1, + ACTIONS(9135), 1, sym_identifier, - ACTIONS(9459), 1, + ACTIONS(9197), 1, anon_sym_GT, - STATE(4973), 1, + STATE(4863), 1, sym__str_double_quotes, - STATE(5680), 1, + STATE(5709), 1, aux_sym_collection_type_repeat1, - STATE(5763), 1, + STATE(5805), 1, sym_comment, - STATE(5856), 1, + STATE(5882), 1, sym_val_string, - ACTIONS(4217), 2, + ACTIONS(4288), 2, sym__str_single_quotes, sym__str_back_ticks, - [209717] = 5, + [211783] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, - anon_sym_DASH, - ACTIONS(9461), 1, - anon_sym_EQ2, - STATE(5764), 1, + STATE(5806), 1, + sym_comment, + ACTIONS(1481), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [211802] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(5807), 1, sym_comment, - ACTIONS(5014), 6, + ACTIONS(2097), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2101), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [209738] = 5, + [211823] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5088), 1, - anon_sym_DASH, - ACTIONS(9463), 1, - anon_sym_EQ2, - STATE(5765), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(5808), 1, sym_comment, - ACTIONS(5086), 6, + ACTIONS(2105), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2107), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [209759] = 9, - ACTIONS(3), 1, + [211844] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DQUOTE, - ACTIONS(9376), 1, + ACTIONS(9201), 1, + anon_sym_COMMA, + ACTIONS(9203), 1, + anon_sym_AT, + STATE(5809), 1, + sym_comment, + STATE(6025), 1, + sym_param_cmd, + ACTIONS(9199), 5, sym_identifier, - ACTIONS(9465), 1, anon_sym_GT, - STATE(4973), 1, - sym__str_double_quotes, - STATE(5731), 1, - aux_sym_collection_type_repeat1, - STATE(5766), 1, - sym_comment, - STATE(5856), 1, - sym_val_string, - ACTIONS(4217), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [209788] = 5, + [211867] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(900), 1, - anon_sym_DASH, - ACTIONS(9467), 1, - anon_sym_QMARK2, - STATE(5767), 1, + STATE(5810), 1, sym_comment, - ACTIONS(902), 6, - ts_builtin_sym_end, + ACTIONS(1519), 3, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [209809] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [211886] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1723), 1, + STATE(5811), 1, + sym_comment, + ACTIONS(1585), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [211905] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1871), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5286), 1, + STATE(5202), 1, sym_cell_path, - STATE(5768), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(1725), 3, + STATE(5812), 1, + sym_comment, + ACTIONS(1873), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [209836] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(906), 1, - anon_sym_DASH, - ACTIONS(9469), 1, - anon_sym_QMARK2, - STATE(5769), 1, - sym_comment, - ACTIONS(908), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [209857] = 8, - ACTIONS(3), 1, + [211932] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1768), 1, + ACTIONS(1875), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5103), 1, + STATE(5203), 1, sym_cell_path, - STATE(5770), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(1770), 3, + STATE(5813), 1, + sym_comment, + ACTIONS(1877), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [209884] = 8, - ACTIONS(3), 1, + [211959] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(883), 1, - anon_sym_DOT_DOT2, - ACTIONS(9471), 1, - anon_sym_DOT, - STATE(1261), 1, - sym_path, - STATE(3262), 1, - sym_cell_path, - STATE(5771), 1, + ACTIONS(9203), 1, + anon_sym_AT, + ACTIONS(9207), 1, + anon_sym_COMMA, + STATE(5814), 1, sym_comment, - STATE(5839), 1, - aux_sym_cell_path_repeat1, - ACTIONS(885), 3, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209911] = 8, - ACTIONS(3), 1, + STATE(6031), 1, + sym_param_cmd, + ACTIONS(9205), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [211982] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1879), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5104), 1, + STATE(5211), 1, sym_cell_path, - STATE(5772), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(1774), 3, + STATE(5815), 1, + sym_comment, + ACTIONS(1881), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [209938] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_comment, - ACTIONS(1376), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(1378), 5, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [209957] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(5774), 1, - sym_comment, - ACTIONS(948), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(950), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [209978] = 8, - ACTIONS(3), 1, + [212009] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(883), 1, + ACTIONS(1883), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(4850), 1, + STATE(5212), 1, sym_cell_path, - STATE(5775), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(885), 3, + STATE(5816), 1, + sym_comment, + ACTIONS(1885), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [210005] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5776), 1, - sym_comment, - ACTIONS(1608), 4, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token2, - ACTIONS(1610), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [210024] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - anon_sym_DASH, - ACTIONS(6629), 1, - aux_sym_unquoted_token6, - STATE(5777), 1, - sym_comment, - ACTIONS(1441), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [210045] = 4, - ACTIONS(3), 1, + [212036] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(928), 1, + ACTIONS(5007), 1, anon_sym_DASH, - STATE(5778), 1, + ACTIONS(9209), 1, + anon_sym_EQ2, + STATE(5817), 1, sym_comment, - ACTIONS(930), 7, + ACTIONS(5005), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT, - [210064] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5779), 1, - sym_comment, - ACTIONS(1470), 4, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym__unquoted_in_record_token2, - ACTIONS(1472), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [210083] = 4, - ACTIONS(3), 1, + [212057] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(916), 1, + ACTIONS(1891), 1, anon_sym_DASH, - STATE(5780), 1, - sym_comment, - ACTIONS(918), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, + ACTIONS(8853), 1, anon_sym_DOT, - [210102] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - STATE(5781), 1, + STATE(5216), 1, + sym_cell_path, + STATE(5525), 1, + aux_sym_cell_path_repeat1, + STATE(5711), 1, + sym_path, + STATE(5818), 1, sym_comment, - ACTIONS(5131), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1893), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [210121] = 8, - ACTIONS(3), 1, + [212084] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1895), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5128), 1, + STATE(5221), 1, sym_cell_path, - STATE(5782), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(1746), 3, + STATE(5819), 1, + sym_comment, + ACTIONS(1897), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [210148] = 4, - ACTIONS(3), 1, + [212111] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(924), 1, + ACTIONS(5041), 1, anon_sym_DASH, - STATE(5783), 1, + ACTIONS(9211), 1, + anon_sym_EQ2, + STATE(5820), 1, sym_comment, - ACTIONS(926), 7, + ACTIONS(5039), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT, - [210167] = 4, - ACTIONS(3), 1, + [212132] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(932), 1, + ACTIONS(5168), 1, anon_sym_DASH, - STATE(5784), 1, + STATE(5821), 1, sym_comment, - ACTIONS(934), 7, + ACTIONS(5166), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT, - [210186] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1441), 1, - anon_sym_in, - ACTIONS(4075), 1, - anon_sym_DOT_DOT2, - ACTIONS(9473), 1, - sym_filesize_unit, - ACTIONS(9475), 1, - sym_duration_unit, - STATE(5785), 1, - sym_comment, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4687), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - [210213] = 4, - ACTIONS(121), 1, + [212151] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6844), 1, - aux_sym_unquoted_token3, - STATE(5786), 1, + ACTIONS(5172), 1, + anon_sym_DASH, + STATE(5822), 1, sym_comment, - ACTIONS(3239), 7, + ACTIONS(5170), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [210232] = 9, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(8144), 1, - sym__newline, - ACTIONS(8146), 1, - sym__space, - ACTIONS(8148), 1, - anon_sym_DASH_DASH, - ACTIONS(8150), 1, - anon_sym_DASH, - STATE(5787), 1, - sym_comment, - STATE(5830), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7478), 1, - sym__flag, - STATE(4833), 2, - sym_short_flag, - sym_long_flag, - [210261] = 8, - ACTIONS(3), 1, + [212170] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1733), 1, + ACTIONS(1747), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5296), 1, + STATE(5233), 1, sym_cell_path, - STATE(5788), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(1735), 3, + STATE(5823), 1, + sym_comment, + ACTIONS(1749), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [210288] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2927), 1, - anon_sym_DASH, - ACTIONS(9477), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9479), 1, - aux_sym_unquoted_token2, - STATE(5789), 1, - sym_comment, - ACTIONS(2925), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [210311] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5113), 1, - anon_sym_DASH, - STATE(5790), 1, - sym_comment, - ACTIONS(5111), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [210330] = 8, - ACTIONS(3), 1, + [212197] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1808), 1, + ACTIONS(1824), 1, anon_sym_DASH, - ACTIONS(9362), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(5302), 1, + STATE(5267), 1, sym_cell_path, - STATE(5791), 1, - sym_comment, - STATE(5836), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6349), 1, + STATE(5711), 1, sym_path, - ACTIONS(1810), 3, + STATE(5824), 1, + sym_comment, + ACTIONS(1826), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [210357] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(9481), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9483), 1, - aux_sym__immediate_decimal_token2, - STATE(5792), 1, - sym_comment, - ACTIONS(1472), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [210379] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5793), 1, - sym_comment, - ACTIONS(1608), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1610), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210397] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9485), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9487), 1, - aux_sym__immediate_decimal_token2, - STATE(5794), 1, - sym_comment, - ACTIONS(1470), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1472), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [210419] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4798), 1, - anon_sym_DOT, - STATE(1585), 1, - aux_sym_cell_path_repeat1, - STATE(1694), 1, - sym_path, - STATE(5795), 1, - sym_comment, - STATE(7170), 1, - sym_cell_path, - ACTIONS(6089), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [210443] = 8, - ACTIONS(121), 1, + [212224] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1790), 1, - sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(1855), 1, + anon_sym_DASH, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(3066), 1, + STATE(5268), 1, sym_cell_path, - STATE(5796), 1, - sym_comment, - STATE(5888), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(5711), 1, sym_path, - ACTIONS(1788), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210469] = 8, - ACTIONS(121), 1, + STATE(5825), 1, + sym_comment, + ACTIONS(1857), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [212251] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1794), 1, - sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(1796), 1, + anon_sym_DASH, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(3067), 1, + STATE(5269), 1, sym_cell_path, - STATE(5797), 1, - sym_comment, - STATE(5888), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(5711), 1, sym_path, - ACTIONS(1792), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210495] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(5798), 1, + STATE(5826), 1, sym_comment, - ACTIONS(2163), 3, + ACTIONS(1798), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2165), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [210515] = 8, - ACTIONS(121), 1, + [212278] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(1808), 1, + anon_sym_DASH, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(3068), 1, + STATE(5279), 1, sym_cell_path, - STATE(5799), 1, - sym_comment, - STATE(5888), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(5711), 1, sym_path, - ACTIONS(1796), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210541] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1802), 1, - sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(3069), 1, - sym_cell_path, - STATE(5800), 1, + STATE(5827), 1, sym_comment, - STATE(5888), 1, - aux_sym_cell_path_repeat1, - STATE(6887), 1, - sym_path, - ACTIONS(1800), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210567] = 8, - ACTIONS(121), 1, + ACTIONS(1810), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [212305] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1782), 1, - sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(1820), 1, + anon_sym_DASH, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(3064), 1, + STATE(5280), 1, sym_cell_path, - STATE(5801), 1, - sym_comment, - STATE(5888), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(5711), 1, sym_path, - ACTIONS(1780), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210593] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9491), 1, + STATE(5828), 1, + sym_comment, + ACTIONS(1822), 3, sym_identifier, - ACTIONS(9493), 1, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(9495), 1, - anon_sym_DASH, - STATE(5802), 1, - sym_comment, - STATE(5868), 1, - aux_sym_ctrl_do_repeat1, - STATE(6298), 1, - sym__flag, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [210619] = 8, - ACTIONS(121), 1, + [212332] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1725), 1, - sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(1741), 1, + anon_sym_DASH, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(505), 1, + STATE(5284), 1, sym_cell_path, - STATE(5803), 1, - sym_comment, - STATE(5888), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(5711), 1, sym_path, - ACTIONS(1723), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210645] = 8, - ACTIONS(121), 1, + STATE(5829), 1, + sym_comment, + ACTIONS(1745), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [212359] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(495), 1, - sym_cell_path, - STATE(5804), 1, + STATE(5830), 1, sym_comment, - STATE(5888), 1, - aux_sym_cell_path_repeat1, - STATE(6887), 1, - sym_path, - ACTIONS(1744), 2, + ACTIONS(1589), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [210671] = 3, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [212378] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5805), 1, - sym_comment, - ACTIONS(5273), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_record_entry_token1, - [210687] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(5806), 1, + STATE(5831), 1, sym_comment, - ACTIONS(2077), 3, + ACTIONS(2131), 4, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_as, - ACTIONS(2081), 3, - ts_builtin_sym_end, + aux_sym_unquoted_token4, + ACTIONS(2133), 4, sym__newline, anon_sym_SEMI, - [210707] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1735), 1, - sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(481), 1, - sym_cell_path, - STATE(5807), 1, - sym_comment, - STATE(5888), 1, - aux_sym_cell_path_repeat1, - STATE(6887), 1, - sym_path, - ACTIONS(1733), 2, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - [210733] = 6, - ACTIONS(3), 1, + [212397] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9497), 1, - anon_sym_DOT_DOT2, - STATE(5808), 1, + ACTIONS(9213), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9215), 1, + aux_sym__immediate_decimal_token2, + STATE(5832), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, + ACTIONS(1569), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1595), 2, + ACTIONS(1571), 4, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(9499), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [210755] = 6, - ACTIONS(3), 1, + [212420] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(1899), 1, anon_sym_DASH, - ACTIONS(9501), 1, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(6349), 1, + STATE(5286), 1, + sym_cell_path, + STATE(5525), 1, + aux_sym_cell_path_repeat1, + STATE(5711), 1, sym_path, - STATE(5809), 2, + STATE(5833), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(895), 3, + ACTIONS(1901), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [210777] = 8, - ACTIONS(121), 1, + [212447] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1814), 1, - sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9217), 1, + sym_identifier, + ACTIONS(9220), 1, + anon_sym_GT, + ACTIONS(9222), 1, + anon_sym_DQUOTE, + STATE(4863), 1, + sym__str_double_quotes, + STATE(5882), 1, + sym_val_string, + ACTIONS(9225), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5834), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [212474] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1831), 1, + anon_sym_DASH, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(3072), 1, + STATE(5292), 1, sym_cell_path, - STATE(5810), 1, - sym_comment, - STATE(5888), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(5711), 1, sym_path, - ACTIONS(1812), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210803] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5811), 1, + STATE(5835), 1, sym_comment, - ACTIONS(9504), 7, + ACTIONS(1833), 3, sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [210819] = 3, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [212501] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5812), 1, + ACTIONS(1835), 1, + anon_sym_DASH, + ACTIONS(8853), 1, + anon_sym_DOT, + STATE(5293), 1, + sym_cell_path, + STATE(5525), 1, + aux_sym_cell_path_repeat1, + STATE(5711), 1, + sym_path, + STATE(5836), 1, sym_comment, - ACTIONS(5245), 7, + ACTIONS(1837), 3, sym_identifier, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [212528] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4286), 1, anon_sym_DQUOTE, + ACTIONS(9135), 1, + sym_identifier, + ACTIONS(9228), 1, + anon_sym_GT, + STATE(4863), 1, + sym__str_double_quotes, + STATE(5782), 1, + aux_sym_collection_type_repeat1, + STATE(5837), 1, + sym_comment, + STATE(5882), 1, + sym_val_string, + ACTIONS(4288), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_record_entry_token1, - [210835] = 8, + [212557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9493), 1, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(5838), 1, + sym_comment, + ACTIONS(1006), 3, anon_sym_DASH_DASH, - ACTIONS(9495), 1, anon_sym_DASH, - ACTIONS(9506), 1, - sym_identifier, - STATE(5813), 1, - sym_comment, - STATE(5834), 1, - aux_sym_ctrl_do_repeat1, - STATE(6298), 1, - sym__flag, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [210861] = 8, + anon_sym_as, + ACTIONS(1008), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212577] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2925), 1, - anon_sym_in, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4687), 1, - aux_sym_unquoted_token5, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(5814), 1, - sym_comment, - STATE(7521), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [210887] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(1861), 1, sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(496), 1, + STATE(489), 1, sym_cell_path, - STATE(5815), 1, + STATE(5839), 1, sym_comment, - STATE(5888), 1, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6792), 1, sym_path, - ACTIONS(1683), 2, + ACTIONS(1859), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [210913] = 8, - ACTIONS(121), 1, + [212603] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, + ACTIONS(9232), 1, + sym__newline, + ACTIONS(9235), 1, + sym__space, + STATE(5840), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3933), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_ctrl_match_token1, + [212623] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1865), 1, sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(3074), 1, + STATE(491), 1, sym_cell_path, - STATE(5816), 1, + STATE(5841), 1, sym_comment, - STATE(5888), 1, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6792), 1, sym_path, - ACTIONS(1820), 2, + ACTIONS(1863), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [210939] = 8, - ACTIONS(3), 1, + [212649] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, + ACTIONS(1537), 1, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, - anon_sym_DASH_DASH, - ACTIONS(9510), 1, - anon_sym_DASH, - STATE(5817), 1, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(6608), 1, + sym_filesize_unit, + ACTIONS(6610), 1, + sym_duration_unit, + ACTIONS(6636), 1, + aux_sym_unquoted_token2, + STATE(5842), 1, sym_comment, - STATE(7218), 1, - sym_block, - STATE(7554), 1, - sym__flag, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [210965] = 6, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212675] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4075), 1, + ACTIONS(1709), 1, + anon_sym_RBRACE, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1717), 1, + sym__entry_separator, + ACTIONS(1719), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9238), 1, anon_sym_DOT_DOT2, - STATE(5818), 1, + STATE(5843), 1, sym_comment, - ACTIONS(4079), 2, + ACTIONS(9240), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5002), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(9512), 2, - sym_filesize_unit, - sym_duration_unit, - [210987] = 8, - ACTIONS(3), 1, + [212701] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9244), 1, anon_sym_DASH, - STATE(5819), 1, + STATE(5844), 1, sym_comment, - STATE(7224), 1, + STATE(6728), 1, sym_block, - STATE(7516), 1, + STATE(7559), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [211013] = 8, + [212727] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, + STATE(5845), 1, + sym_comment, + ACTIONS(996), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(994), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [212745] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5846), 1, + sym_comment, + ACTIONS(1589), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1591), 5, + sym__newline, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212763] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9246), 1, + sym_identifier, + ACTIONS(9248), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9250), 1, anon_sym_DASH, - STATE(5820), 1, + STATE(5847), 1, sym_comment, - STATE(6590), 1, - sym_block, - STATE(7676), 1, + STATE(5916), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [211039] = 9, - ACTIONS(3), 1, + [212789] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(9514), 1, - anon_sym_alias, - ACTIONS(9516), 1, - anon_sym_const, - ACTIONS(9518), 1, - anon_sym_def, - ACTIONS(9520), 1, - anon_sym_extern, - ACTIONS(9522), 1, - anon_sym_module, - ACTIONS(9524), 1, - anon_sym_use, - STATE(5821), 1, + ACTIONS(5007), 1, + anon_sym_DASH, + ACTIONS(9252), 1, + anon_sym_EQ2, + STATE(5848), 1, sym_comment, - [211067] = 8, + ACTIONS(5005), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [212809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, + STATE(5849), 1, + sym_comment, + ACTIONS(988), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(986), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [212827] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9244), 1, anon_sym_DASH, - STATE(5822), 1, + STATE(5850), 1, sym_comment, - STATE(7237), 1, + STATE(6416), 1, sym_block, - STATE(7572), 1, + STATE(7551), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [211093] = 8, - ACTIONS(121), 1, + [212853] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5851), 1, + sym_comment, + ACTIONS(992), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(990), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [212871] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1758), 1, + ACTIONS(1849), 1, sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(3051), 1, + STATE(3161), 1, sym_cell_path, - STATE(5823), 1, + STATE(5852), 1, sym_comment, - STATE(5888), 1, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6792), 1, sym_path, - ACTIONS(1756), 2, + ACTIONS(1847), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [211119] = 5, + [212897] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2178), 1, - anon_sym_DASH, - ACTIONS(9526), 1, - anon_sym_LBRACK2, - STATE(5824), 1, + ACTIONS(1709), 1, + anon_sym_RBRACK, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1717), 1, + sym__entry_separator, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9254), 1, + anon_sym_DOT_DOT2, + STATE(5853), 1, sym_comment, - ACTIONS(2182), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(9256), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212923] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - anon_sym_as, - [211139] = 8, - ACTIONS(121), 1, + ACTIONS(9244), 1, + anon_sym_DASH, + STATE(5854), 1, + sym_comment, + STATE(6858), 1, + sym_block, + STATE(7553), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [212949] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1754), 1, + ACTIONS(1745), 1, sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(3086), 1, sym_cell_path, - STATE(5825), 1, + STATE(5855), 1, sym_comment, - STATE(5888), 1, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6792), 1, sym_path, - ACTIONS(1752), 2, + ACTIONS(1741), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [211165] = 4, + [212975] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(928), 1, - anon_sym_DASH, - STATE(5826), 1, - sym_comment, - ACTIONS(930), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [211183] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9528), 1, + ACTIONS(1833), 1, + sym__entry_separator, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(5827), 1, + STATE(3093), 1, + sym_cell_path, + STATE(5856), 1, sym_comment, - STATE(5903), 1, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6479), 1, + STATE(6792), 1, sym_path, - STATE(7441), 1, - sym_cell_path, - ACTIONS(1744), 3, + ACTIONS(1831), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [211207] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5828), 1, - sym_comment, - ACTIONS(5224), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_record_entry_token1, - [211223] = 8, - ACTIONS(3), 1, + anon_sym_RBRACE, + [213001] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9244), 1, anon_sym_DASH, - STATE(5829), 1, + STATE(5857), 1, sym_comment, - STATE(6572), 1, + STATE(6860), 1, sym_block, - STATE(7656), 1, + STATE(7554), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [211249] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9530), 1, - sym__newline, - ACTIONS(9533), 1, - sym__space, - STATE(5830), 2, - sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(9536), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_ctrl_match_token1, - [211269] = 8, - ACTIONS(3), 1, + [213027] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9244), 1, anon_sym_DASH, - STATE(5831), 1, + STATE(5858), 1, sym_comment, - STATE(6574), 1, + STATE(7013), 1, sym_block, - STATE(7657), 1, + STATE(7690), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [211295] = 5, - ACTIONS(121), 1, + [213053] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(5832), 1, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + ACTIONS(9258), 1, + anon_sym_DOT_DOT2, + STATE(5859), 1, sym_comment, - ACTIONS(948), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(950), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [211315] = 8, - ACTIONS(3), 1, + ACTIONS(9260), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1717), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213075] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9244), 1, anon_sym_DASH, - STATE(5833), 1, + STATE(5860), 1, sym_comment, - STATE(6576), 1, + STATE(7032), 1, sym_block, - STATE(7662), 1, + STATE(7558), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [211341] = 8, - ACTIONS(3), 1, + [213101] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9493), 1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9495), 1, + ACTIONS(9244), 1, anon_sym_DASH, - ACTIONS(9538), 1, - sym_identifier, - STATE(5834), 1, + STATE(5861), 1, sym_comment, - STATE(5847), 1, - aux_sym_ctrl_do_repeat1, - STATE(6298), 1, + STATE(7046), 1, + sym_block, + STATE(7618), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [211367] = 6, + [213127] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5862), 1, + sym_comment, + ACTIONS(5210), 7, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_record_entry_token1, + [213143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1518), 1, - anon_sym_DOT_DOT2, - ACTIONS(9230), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(5835), 1, + STATE(5863), 1, sym_comment, - ACTIONS(1520), 4, - sym__newline, - aux_sym_ctrl_match_token1, + ACTIONS(1589), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1591), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [211389] = 7, + sym__entry_separator, + [213161] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(889), 1, - anon_sym_DASH, - ACTIONS(9362), 1, - anon_sym_DOT, - STATE(5809), 1, - aux_sym_cell_path_repeat1, - STATE(5836), 1, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(5864), 1, sym_comment, - STATE(6349), 1, - sym_path, - ACTIONS(891), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2089), 3, anon_sym_DASH_DASH, - [211413] = 8, - ACTIONS(3), 1, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2093), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213181] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9244), 1, anon_sym_DASH, - STATE(5837), 1, + STATE(5865), 1, sym_comment, - STATE(7085), 1, + STATE(6782), 1, sym_block, - STATE(7581), 1, + STATE(7589), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [211439] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - anon_sym_DASH, - ACTIONS(8380), 1, - aux_sym_unquoted_token6, - STATE(5838), 1, - sym_comment, - ACTIONS(1441), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [211459] = 7, + [213207] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(889), 1, - anon_sym_DOT_DOT2, - ACTIONS(9471), 1, - anon_sym_DOT, - STATE(1261), 1, - sym_path, - STATE(5839), 1, - sym_comment, - STATE(5887), 1, - aux_sym_cell_path_repeat1, - ACTIONS(891), 3, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211483] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(1837), 1, sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(3073), 1, + STATE(3097), 1, sym_cell_path, - STATE(5840), 1, + STATE(5866), 1, sym_comment, - STATE(5888), 1, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6792), 1, sym_path, - ACTIONS(1816), 2, + ACTIONS(1835), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [211509] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9544), 1, - anon_sym_COLON, - ACTIONS(9546), 1, - anon_sym_COMMA, - STATE(5841), 1, - sym_comment, - ACTIONS(9542), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [211529] = 4, - ACTIONS(121), 1, + [213233] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5842), 1, + ACTIONS(9264), 1, + anon_sym_DASH, + STATE(5867), 1, sym_comment, - ACTIONS(2075), 3, - ts_builtin_sym_end, + ACTIONS(9262), 6, sym__newline, anon_sym_SEMI, - ACTIONS(2073), 4, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_RBRACE, anon_sym_as, - aux_sym_unquoted_token7, - [211547] = 8, - ACTIONS(121), 1, + [213251] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1810), 1, - sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(3071), 1, - sym_cell_path, - STATE(5843), 1, + STATE(5868), 1, sym_comment, - STATE(5888), 1, - aux_sym_cell_path_repeat1, - STATE(6887), 1, - sym_path, - ACTIONS(1808), 2, - anon_sym_RBRACK, + ACTIONS(1648), 3, anon_sym_RBRACE, - [211573] = 4, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1650), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [213269] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(924), 1, - anon_sym_DASH, - STATE(5844), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(5869), 1, sym_comment, - ACTIONS(926), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(2097), 3, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [211591] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(3059), 1, - sym_cell_path, - STATE(5845), 1, - sym_comment, - STATE(5888), 1, - aux_sym_cell_path_repeat1, - STATE(6887), 1, - sym_path, - ACTIONS(1764), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [211617] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(932), 1, anon_sym_DASH, - STATE(5846), 1, - sym_comment, - ACTIONS(934), 6, + anon_sym_as, + ACTIONS(2101), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [211635] = 7, + [213289] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9031), 1, - sym_identifier, - ACTIONS(9548), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + STATE(5870), 1, + sym_comment, + ACTIONS(2105), 3, anon_sym_DASH_DASH, - ACTIONS(9551), 1, anon_sym_DASH, - STATE(6298), 1, - sym__flag, - STATE(5847), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [211659] = 4, - ACTIONS(121), 1, + anon_sym_as, + ACTIONS(2107), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213309] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5848), 1, + STATE(5871), 1, sym_comment, - ACTIONS(926), 3, + ACTIONS(1648), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1650), 5, + sym__newline, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(924), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [211677] = 8, - ACTIONS(121), 1, + [213327] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1770), 1, + ACTIONS(1901), 1, sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(3060), 1, + STATE(3090), 1, sym_cell_path, - STATE(5849), 1, + STATE(5872), 1, sym_comment, - STATE(5888), 1, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6792), 1, sym_path, - ACTIONS(1768), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [211703] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5850), 1, - sym_comment, - ACTIONS(934), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(932), 4, + ACTIONS(1899), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [211721] = 8, - ACTIONS(3), 1, + [213353] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9508), 1, - anon_sym_DASH_DASH, - ACTIONS(9510), 1, - anon_sym_DASH, - ACTIONS(9554), 1, - aux_sym_ctrl_match_token1, - STATE(5851), 1, + STATE(5873), 1, sym_comment, - STATE(7126), 1, - sym_val_record, - STATE(7645), 1, - sym__flag, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [211747] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9556), 1, + ACTIONS(1589), 2, anon_sym_DOT_DOT2, - STATE(5852), 1, - sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, aux_sym_unquoted_token2, - ACTIONS(1580), 2, + ACTIONS(1591), 5, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - ACTIONS(9558), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [211769] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9528), 1, - anon_sym_DOT, - STATE(5853), 1, - sym_comment, - STATE(5903), 1, - aux_sym_cell_path_repeat1, - STATE(6479), 1, - sym_path, - STATE(7150), 1, - sym_cell_path, - ACTIONS(1740), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [211793] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5088), 1, - anon_sym_DASH, - ACTIONS(9560), 1, - anon_sym_EQ2, - STATE(5854), 1, - sym_comment, - ACTIONS(5086), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [211813] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, - anon_sym_DASH_DASH, - ACTIONS(9510), 1, - anon_sym_DASH, - STATE(5855), 1, - sym_comment, - STATE(6691), 1, - sym_block, - STATE(7467), 1, - sym__flag, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [211839] = 5, + [213371] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9564), 1, - anon_sym_COLON, - ACTIONS(9566), 1, - anon_sym_COMMA, - STATE(5856), 1, - sym_comment, - ACTIONS(9562), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [211859] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(1764), 1, sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(3061), 1, + STATE(523), 1, sym_cell_path, - STATE(5857), 1, + STATE(5874), 1, sym_comment, - STATE(5888), 1, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6792), 1, sym_path, - ACTIONS(1772), 2, + ACTIONS(1762), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [211885] = 8, - ACTIONS(121), 1, + [213397] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(947), 1, sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(3062), 1, - sym_cell_path, - STATE(5858), 1, + STATE(5875), 1, sym_comment, - STATE(5888), 1, + STATE(6154), 1, + sym_cell_path, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6792), 1, sym_path, - ACTIONS(1776), 2, + ACTIONS(945), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [211911] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, - anon_sym_DASH_DASH, - ACTIONS(9510), 1, - anon_sym_DASH, - STATE(5859), 1, - sym_comment, - STATE(7152), 1, - sym_block, - STATE(7670), 1, - sym__flag, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [211937] = 7, - ACTIONS(3), 1, + [213423] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4798), 1, + ACTIONS(9145), 1, anon_sym_DOT, - STATE(1585), 1, - aux_sym_cell_path_repeat1, - STATE(1694), 1, + STATE(2760), 1, sym_path, - STATE(5860), 1, + STATE(5876), 1, sym_comment, - STATE(6946), 1, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + STATE(7126), 1, sym_cell_path, - ACTIONS(6085), 3, + ACTIONS(5993), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [211961] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(3241), 1, - ts_builtin_sym_end, - ACTIONS(9568), 1, - aux_sym_unquoted_token3, - STATE(5861), 1, - sym_comment, - ACTIONS(3239), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - [211981] = 8, - ACTIONS(121), 1, + [213447] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9266), 1, anon_sym_DOT, - STATE(3052), 1, - sym_cell_path, - STATE(5862), 1, + STATE(5877), 1, sym_comment, - STATE(5888), 1, + STATE(6077), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6519), 1, sym_path, - ACTIONS(1760), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [212007] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(3070), 1, + STATE(7056), 1, sym_cell_path, - STATE(5863), 1, - sym_comment, - STATE(5888), 1, - aux_sym_cell_path_repeat1, - STATE(6887), 1, - sym_path, - ACTIONS(1804), 2, + ACTIONS(1774), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [212033] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1731), 1, sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(473), 1, - sym_cell_path, - STATE(5864), 1, + sym__table_head_separator, + [213471] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1525), 1, + anon_sym_DASH, + ACTIONS(7091), 1, + aux_sym_unquoted_token2, + STATE(5878), 1, sym_comment, - STATE(5888), 1, - aux_sym_cell_path_repeat1, - STATE(6887), 1, - sym_path, - ACTIONS(1729), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [212059] = 8, - ACTIONS(121), 1, + ACTIONS(1537), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [213491] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(885), 1, - sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9266), 1, anon_sym_DOT, - STATE(5865), 1, + STATE(5879), 1, sym_comment, - STATE(5888), 1, + STATE(6077), 1, aux_sym_cell_path_repeat1, - STATE(5948), 1, - sym_cell_path, - STATE(6887), 1, + STATE(6519), 1, sym_path, - ACTIONS(883), 2, + STATE(7371), 1, + sym_cell_path, + ACTIONS(1778), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [212085] = 4, - ACTIONS(121), 1, + sym__entry_separator, + sym__table_head_separator, + [213515] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5866), 1, + STATE(5880), 1, sym_comment, - ACTIONS(930), 3, + ACTIONS(1648), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1650), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(928), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [212103] = 8, - ACTIONS(121), 1, + [213533] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(3065), 1, - sym_cell_path, - STATE(5867), 1, + STATE(5881), 1, sym_comment, - STATE(5888), 1, - aux_sym_cell_path_repeat1, - STATE(6887), 1, - sym_path, - ACTIONS(1784), 2, - anon_sym_RBRACK, + ACTIONS(1721), 3, anon_sym_RBRACE, - [212129] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1723), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [213551] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9493), 1, - anon_sym_DASH_DASH, - ACTIONS(9495), 1, - anon_sym_DASH, - ACTIONS(9570), 1, - sym_identifier, - STATE(5847), 1, - aux_sym_ctrl_do_repeat1, - STATE(5868), 1, + ACTIONS(9270), 1, + anon_sym_COLON, + ACTIONS(9272), 1, + anon_sym_COMMA, + STATE(5882), 1, sym_comment, - STATE(6298), 1, - sym__flag, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [212155] = 8, - ACTIONS(3), 1, + ACTIONS(9268), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213571] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9244), 1, anon_sym_DASH, - STATE(5869), 1, - sym_comment, - STATE(6408), 1, - sym_block, - STATE(7550), 1, - sym__flag, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [212181] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(9274), 1, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, - anon_sym_DASH_DASH, - ACTIONS(9510), 1, - anon_sym_DASH, - STATE(5870), 1, + STATE(5883), 1, sym_comment, - STATE(6410), 1, - sym_block, - STATE(7575), 1, + STATE(6495), 1, + sym_val_record, + STATE(7676), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [212207] = 8, - ACTIONS(3), 1, + [213597] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, - anon_sym_DASH_DASH, - ACTIONS(9510), 1, - anon_sym_DASH, - STATE(5871), 1, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(9276), 1, + anon_sym_alias, + ACTIONS(9278), 1, + anon_sym_const, + ACTIONS(9280), 1, + anon_sym_def, + ACTIONS(9282), 1, + anon_sym_extern, + ACTIONS(9284), 1, + anon_sym_module, + ACTIONS(9286), 1, + anon_sym_use, + STATE(5884), 1, sym_comment, - STATE(6412), 1, - sym_block, - STATE(7687), 1, - sym__flag, - STATE(6174), 2, - sym_short_flag, - sym_long_flag, - [212233] = 4, - ACTIONS(3), 1, + [213625] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5872), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(1429), 1, aux_sym_unquoted_token2, - ACTIONS(1472), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(9288), 1, + anon_sym_DOT_DOT2, + STATE(5885), 1, + sym_comment, + ACTIONS(9290), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [212251] = 9, - ACTIONS(3), 1, + ACTIONS(1698), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213647] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3199), 1, + ACTIONS(3269), 1, aux_sym_record_entry_token1, - ACTIONS(9514), 1, + ACTIONS(9276), 1, anon_sym_alias, - ACTIONS(9516), 1, + ACTIONS(9278), 1, anon_sym_const, - ACTIONS(9518), 1, + ACTIONS(9280), 1, anon_sym_def, - ACTIONS(9520), 1, + ACTIONS(9282), 1, anon_sym_extern, - ACTIONS(9522), 1, + ACTIONS(9284), 1, anon_sym_module, - ACTIONS(9524), 1, + ACTIONS(9286), 1, anon_sym_use, - STATE(5873), 1, - sym_comment, - [212279] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(5874), 1, - sym_comment, - ACTIONS(2155), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2159), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [212299] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1742), 1, - sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(469), 1, - sym_cell_path, - STATE(5875), 1, - sym_comment, - STATE(5888), 1, - aux_sym_cell_path_repeat1, - STATE(6887), 1, - sym_path, - ACTIONS(1740), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [212325] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5016), 1, - anon_sym_DASH, - ACTIONS(9572), 1, - anon_sym_EQ2, - STATE(5876), 1, + STATE(5886), 1, sym_comment, - ACTIONS(5014), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [212345] = 6, - ACTIONS(3), 1, + [213675] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4075), 1, + ACTIONS(1537), 1, + anon_sym_in, + ACTIONS(4694), 1, anon_sym_DOT_DOT2, - STATE(5877), 1, - sym_comment, - ACTIONS(4079), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5189), 2, - anon_sym_DOT, - aux_sym_unquoted_token6, - ACTIONS(9512), 2, + ACTIONS(7059), 1, + aux_sym_unquoted_token2, + ACTIONS(9292), 1, sym_filesize_unit, + ACTIONS(9294), 1, sym_duration_unit, - [212367] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9576), 1, - anon_sym_DASH, - STATE(5878), 1, - sym_comment, - ACTIONS(9574), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [212385] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9578), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9580), 1, - aux_sym__immediate_decimal_token2, - STATE(5879), 1, - sym_comment, - ACTIONS(1470), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [212407] = 5, - ACTIONS(3), 1, + STATE(5887), 1, + sym_comment, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213701] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5514), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9582), 1, - aux_sym_unquoted_token2, - STATE(5880), 1, + ACTIONS(9248), 1, + anon_sym_DASH_DASH, + ACTIONS(9250), 1, + anon_sym_DASH, + ACTIONS(9296), 1, + sym_identifier, + STATE(5847), 1, + aux_sym_ctrl_do_repeat1, + STATE(5888), 1, sym_comment, - ACTIONS(2925), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [212427] = 8, - ACTIONS(121), 1, + STATE(6260), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [213727] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, + ACTIONS(1841), 1, sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(475), 1, + STATE(3098), 1, sym_cell_path, - STATE(5881), 1, + STATE(5889), 1, sym_comment, - STATE(5888), 1, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6792), 1, sym_path, - ACTIONS(1689), 2, + ACTIONS(1839), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [212453] = 8, - ACTIONS(3), 1, + [213753] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9244), 1, anon_sym_DASH, - STATE(5882), 1, + STATE(5890), 1, sym_comment, - STATE(7092), 1, + STATE(7525), 1, sym_block, - STATE(7598), 1, + STATE(7718), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [212479] = 8, + [213779] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + ACTIONS(1772), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(507), 1, + sym_cell_path, + STATE(5891), 1, + sym_comment, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1770), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [213805] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9248), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9250), 1, anon_sym_DASH, - STATE(5883), 1, + ACTIONS(9298), 1, + sym_identifier, + STATE(5892), 1, sym_comment, - STATE(7116), 1, - sym_block, - STATE(7643), 1, + STATE(5904), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [212505] = 8, - ACTIONS(3), 1, + [213831] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, + STATE(5893), 1, + sym_comment, + ACTIONS(1569), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1571), 5, + sym__newline, aux_sym_ctrl_match_token1, - ACTIONS(9508), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213849] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9244), 1, anon_sym_DASH, - STATE(5884), 1, + STATE(5894), 1, sym_comment, - STATE(7137), 1, + STATE(7211), 1, sym_block, - STATE(7649), 1, + STATE(7679), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [212531] = 8, - ACTIONS(3), 1, + [213875] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9508), 1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - ACTIONS(9510), 1, + ACTIONS(9244), 1, anon_sym_DASH, - ACTIONS(9584), 1, + ACTIONS(9300), 1, aux_sym_ctrl_match_token1, - STATE(5885), 1, + STATE(5895), 1, sym_comment, - STATE(6517), 1, + STATE(7258), 1, sym_val_record, - STATE(7628), 1, + STATE(7546), 1, sym__flag, - STATE(6174), 2, + STATE(6245), 2, sym_short_flag, sym_long_flag, - [212557] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5886), 1, - sym_comment, - ACTIONS(1535), 3, - anon_sym_DOT_DOT2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(1537), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212575] = 6, + [213901] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, - anon_sym_DOT_DOT2, - ACTIONS(9586), 1, - anon_sym_DOT, - STATE(1261), 1, - sym_path, - STATE(5887), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(895), 3, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212597] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(891), 1, + ACTIONS(1873), 1, sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9230), 1, anon_sym_DOT, - STATE(5888), 1, + STATE(3124), 1, + sym_cell_path, + STATE(5896), 1, sym_comment, - STATE(6114), 1, + STATE(6174), 1, aux_sym_cell_path_repeat1, - STATE(6887), 1, + STATE(6792), 1, sym_path, - ACTIONS(889), 2, + ACTIONS(1871), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [212620] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9591), 1, - anon_sym_RBRACK, - STATE(5889), 1, - sym_comment, - STATE(6292), 1, - aux_sym_shebang_repeat1, - STATE(7317), 1, - sym_val_list, - STATE(7323), 1, - aux_sym_val_table_repeat1, - [212645] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1764), 1, - anon_sym_DASH, - STATE(5890), 1, - sym_comment, - ACTIONS(1766), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [212662] = 7, + [213927] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - anon_sym_DQUOTE, - ACTIONS(9593), 1, - aux_sym_path_token1, - STATE(5676), 1, - sym__str_double_quotes, - STATE(5724), 1, - sym_val_string, - STATE(5891), 1, + ACTIONS(1776), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(476), 1, + sym_cell_path, + STATE(5897), 1, sym_comment, - ACTIONS(2905), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212685] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9595), 1, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1774), 2, anon_sym_RBRACK, - STATE(5892), 1, - sym_comment, - STATE(6351), 1, - aux_sym_shebang_repeat1, - STATE(7002), 1, - sym_val_list, - STATE(7003), 1, - aux_sym_val_table_repeat1, - [212710] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9487), 1, - aux_sym__immediate_decimal_token2, - STATE(5893), 1, - sym_comment, - ACTIONS(1470), 2, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1472), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [212729] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9597), 1, - sym__newline, - ACTIONS(9599), 1, - anon_sym_SEMI, - ACTIONS(9601), 1, - anon_sym_RPAREN, - STATE(281), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5894), 1, - sym_comment, - STATE(6430), 1, - aux_sym__block_body_repeat1, - STATE(6987), 1, - aux_sym_shebang_repeat1, - [212754] = 7, - ACTIONS(121), 1, + [213953] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9607), 1, - anon_sym_DQUOTE2, - STATE(5895), 1, - sym_comment, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, STATE(5898), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212777] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2337), 1, - anon_sym_DASH, - STATE(5896), 1, sym_comment, - ACTIONS(2339), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [212794] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9609), 1, + STATE(5899), 1, + aux_sym_cell_path_repeat1, + ACTIONS(953), 4, + anon_sym_PIPE, + anon_sym_if, aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(5153), 1, - sym__blosure, - STATE(5897), 1, - sym_comment, - STATE(5992), 1, - aux_sym_shebang_repeat1, - [212819] = 7, - ACTIONS(121), 1, + anon_sym_EQ_GT, + [213975] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9611), 1, - anon_sym_DQUOTE2, - STATE(5898), 1, + ACTIONS(9302), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(5899), 2, sym_comment, - STATE(6158), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212842] = 4, - ACTIONS(3), 1, + aux_sym_cell_path_repeat1, + ACTIONS(957), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [213995] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2341), 1, - anon_sym_DASH, - STATE(5899), 1, - sym_comment, - ACTIONS(2343), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9242), 1, anon_sym_DASH_DASH, - anon_sym_as, - [212859] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9613), 1, - anon_sym_RBRACK, + ACTIONS(9244), 1, + anon_sym_DASH, STATE(5900), 1, sym_comment, - STATE(6295), 1, - aux_sym_shebang_repeat1, - STATE(6907), 1, - sym_val_list, - STATE(7328), 1, - aux_sym_val_table_repeat1, - [212884] = 4, + STATE(6952), 1, + sym_block, + STATE(7627), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [214021] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_DASH, + ACTIONS(1877), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3127), 1, + sym_cell_path, STATE(5901), 1, sym_comment, - ACTIONS(1782), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [212901] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9615), 1, - anon_sym_DOT, - STATE(2276), 1, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, sym_path, - STATE(3262), 1, - sym_cell_path, + ACTIONS(1875), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214047] = 4, + ACTIONS(247), 1, + anon_sym_POUND, STATE(5902), 1, sym_comment, - STATE(6238), 1, - aux_sym_cell_path_repeat1, - ACTIONS(885), 2, - anon_sym_EQ, - anon_sym_COLON, - [212924] = 6, - ACTIONS(121), 1, + ACTIONS(1721), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1723), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214065] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9528), 1, - anon_sym_DOT, STATE(5903), 1, sym_comment, - STATE(6144), 1, - aux_sym_cell_path_repeat1, - STATE(6479), 1, - sym_path, - ACTIONS(889), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [212945] = 8, - ACTIONS(3), 1, + ACTIONS(1473), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1475), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [214083] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9617), 1, - anon_sym_RBRACK, + ACTIONS(9248), 1, + anon_sym_DASH_DASH, + ACTIONS(9250), 1, + anon_sym_DASH, + ACTIONS(9305), 1, + sym_identifier, STATE(5904), 1, sym_comment, - STATE(6296), 1, - aux_sym_shebang_repeat1, - STATE(6911), 1, - sym_val_list, - STATE(7330), 1, - aux_sym_val_table_repeat1, - [212970] = 7, - ACTIONS(3), 1, + STATE(5916), 1, + aux_sym_ctrl_do_repeat1, + STATE(6260), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [214109] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9619), 1, - anon_sym_DQUOTE, - ACTIONS(9623), 1, - aux_sym_path_token1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9242), 1, + anon_sym_DASH_DASH, + ACTIONS(9244), 1, + anon_sym_DASH, STATE(5905), 1, sym_comment, - STATE(6194), 1, - sym_val_string, - STATE(6315), 1, - sym__str_double_quotes, - ACTIONS(9621), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212993] = 8, - ACTIONS(3), 1, + STATE(7323), 1, + sym_block, + STATE(7648), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [214135] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, STATE(5906), 1, sym_comment, - STATE(6873), 1, - sym__assignment_pattern, - STATE(7055), 1, - sym__variable_name, - [213018] = 4, - ACTIONS(3), 1, + ACTIONS(1721), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1723), 5, + sym__newline, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214153] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_DASH, STATE(5907), 1, sym_comment, - ACTIONS(1790), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213035] = 4, - ACTIONS(3), 1, + ACTIONS(1481), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1483), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [214171] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1792), 1, - anon_sym_DASH, + ACTIONS(9309), 1, + anon_sym_COLON, + ACTIONS(9311), 1, + anon_sym_COMMA, STATE(5908), 1, sym_comment, - ACTIONS(1794), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213052] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9627), 1, - anon_sym_DQUOTE2, - STATE(5909), 1, - sym_comment, - STATE(5911), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213075] = 4, + ACTIONS(9307), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214191] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5117), 1, - anon_sym_DASH, - STATE(5910), 1, + STATE(5909), 1, sym_comment, - ACTIONS(5115), 5, + ACTIONS(2133), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + ACTIONS(2131), 4, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_as, - [213092] = 7, - ACTIONS(121), 1, + aux_sym_unquoted_token4, + [214209] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9629), 1, - anon_sym_DQUOTE2, - STATE(5911), 1, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(4362), 1, + sym_cell_path, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + STATE(5910), 1, sym_comment, - STATE(6158), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213115] = 8, - ACTIONS(3), 1, + ACTIONS(947), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [214233] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9631), 1, - anon_sym_RBRACK, + ACTIONS(951), 1, + anon_sym_DOT_DOT2, + ACTIONS(9147), 1, + anon_sym_DOT, + STATE(1399), 1, + sym_path, + STATE(5911), 1, + sym_comment, STATE(5912), 1, + aux_sym_cell_path_repeat1, + ACTIONS(953), 3, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214257] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(955), 1, + anon_sym_DOT_DOT2, + ACTIONS(9313), 1, + anon_sym_DOT, + STATE(1399), 1, + sym_path, + STATE(5912), 2, sym_comment, - STATE(6299), 1, - aux_sym_shebang_repeat1, - STATE(6930), 1, - sym_val_list, - STATE(7335), 1, - aux_sym_val_table_repeat1, - [213140] = 4, - ACTIONS(3), 1, + aux_sym_cell_path_repeat1, + ACTIONS(957), 3, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214279] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2345), 1, + ACTIONS(5041), 1, anon_sym_DASH, + ACTIONS(9316), 1, + anon_sym_EQ2, STATE(5913), 1, sym_comment, - ACTIONS(2347), 5, + ACTIONS(5039), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [213157] = 4, + [214299] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_DASH, + ACTIONS(1429), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1690), 1, + anon_sym_RBRACE, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(1698), 1, + sym__entry_separator, + ACTIONS(9318), 1, + anon_sym_DOT_DOT2, STATE(5914), 1, sym_comment, - ACTIONS(1806), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213174] = 7, - ACTIONS(121), 1, + ACTIONS(9320), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214325] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9633), 1, - anon_sym_DQUOTE2, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9322), 1, + anon_sym_DOT, STATE(5915), 1, sym_comment, - STATE(5968), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213197] = 8, - ACTIONS(3), 1, + STATE(6216), 1, + sym__immediate_decimal, + ACTIONS(8378), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [214351] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9635), 1, - anon_sym_RBRACK, - STATE(5916), 1, + ACTIONS(8757), 1, + sym_identifier, + ACTIONS(9324), 1, + anon_sym_DASH_DASH, + ACTIONS(9327), 1, + anon_sym_DASH, + STATE(6260), 1, + sym__flag, + STATE(5916), 2, sym_comment, - STATE(6300), 1, - aux_sym_shebang_repeat1, - STATE(6935), 1, - sym_val_list, - STATE(7338), 1, - aux_sym_val_table_repeat1, - [213222] = 7, - ACTIONS(3), 1, + aux_sym_ctrl_do_repeat1, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [214375] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9637), 1, - anon_sym_DQUOTE, - ACTIONS(9641), 1, - aux_sym_path_token1, - STATE(1245), 1, - sym__str_double_quotes, - STATE(1252), 1, - sym_val_string, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(5898), 1, + aux_sym_cell_path_repeat1, STATE(5917), 1, sym_comment, - ACTIONS(9639), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213245] = 5, - ACTIONS(3), 1, + STATE(7120), 1, + sym_cell_path, + ACTIONS(6011), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [214399] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(900), 1, - anon_sym_DASH, - ACTIONS(9643), 1, - anon_sym_QMARK2, STATE(5918), 1, sym_comment, - ACTIONS(902), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [213264] = 4, - ACTIONS(3), 1, + ACTIONS(1519), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1521), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [214417] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9242), 1, + anon_sym_DASH_DASH, + ACTIONS(9244), 1, anon_sym_DASH, STATE(5919), 1, sym_comment, - ACTIONS(2351), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213281] = 4, + STATE(6961), 1, + sym_block, + STATE(7552), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [214443] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2353), 1, - anon_sym_DASH, + ACTIONS(1881), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3142), 1, + sym_cell_path, STATE(5920), 1, sym_comment, - ACTIONS(2355), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213298] = 4, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1879), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214469] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1808), 1, - anon_sym_DASH, + ACTIONS(1885), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3145), 1, + sym_cell_path, STATE(5921), 1, sym_comment, - ACTIONS(1810), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213315] = 7, - ACTIONS(121), 1, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1883), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214495] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9645), 1, - anon_sym_DQUOTE2, + ACTIONS(1893), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3154), 1, + sym_cell_path, STATE(5922), 1, sym_comment, - STATE(5924), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213338] = 6, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1891), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214521] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9647), 1, - anon_sym_EQ2, - ACTIONS(9649), 1, - sym_short_flag_identifier, + ACTIONS(1897), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3156), 1, + sym_cell_path, STATE(5923), 1, sym_comment, - ACTIONS(4888), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(4890), 2, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - [213359] = 7, - ACTIONS(121), 1, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1895), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214547] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9651), 1, - anon_sym_DQUOTE2, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(8380), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8382), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9330), 1, + anon_sym_DOT, STATE(5924), 1, sym_comment, - STATE(6158), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213382] = 6, - ACTIONS(3), 1, + STATE(6802), 1, + sym__immediate_decimal, + ACTIONS(8378), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [214573] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(9653), 1, - anon_sym_DOT_DOT2, + ACTIONS(9151), 1, + aux_sym__immediate_decimal_token2, STATE(5925), 1, sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, + ACTIONS(1589), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(9655), 2, + ACTIONS(1591), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [213403] = 8, + [214593] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9657), 1, - anon_sym_RBRACK, + ACTIONS(1869), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(499), 1, + sym_cell_path, STATE(5926), 1, sym_comment, - STATE(6303), 1, - aux_sym_shebang_repeat1, - STATE(6956), 1, - sym_val_list, - STATE(7344), 1, - aux_sym_val_table_repeat1, - [213428] = 4, - ACTIONS(3), 1, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1867), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214619] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1816), 1, - anon_sym_DASH, STATE(5927), 1, sym_comment, - ACTIONS(1818), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213445] = 6, + ACTIONS(5218), 7, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_record_entry_token1, + [214635] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1398), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9659), 1, + ACTIONS(1780), 1, + sym__entry_separator, + ACTIONS(9230), 1, anon_sym_DOT, - ACTIONS(9661), 1, - aux_sym__immediate_decimal_token2, + STATE(488), 1, + sym_cell_path, STATE(5928), 1, sym_comment, - ACTIONS(1400), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [213466] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9663), 1, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1778), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [214661] = 4, + ACTIONS(247), 1, + anon_sym_POUND, STATE(5929), 1, sym_comment, - STATE(6304), 1, - aux_sym_shebang_repeat1, - STATE(6959), 1, - sym_val_list, - STATE(7347), 1, - aux_sym_val_table_repeat1, - [213491] = 4, - ACTIONS(3), 1, + ACTIONS(1585), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [214679] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2357), 1, - anon_sym_DASH, STATE(5930), 1, sym_comment, - ACTIONS(2359), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213508] = 7, + ACTIONS(1569), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1571), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214697] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9665), 1, - anon_sym_DQUOTE, - ACTIONS(9669), 1, - aux_sym_path_token1, - STATE(1809), 1, - sym_val_string, - STATE(1881), 1, - sym__str_double_quotes, STATE(5931), 1, sym_comment, - ACTIONS(9667), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213531] = 8, + ACTIONS(1569), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1571), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [214715] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(5154), 1, - sym__blosure, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1690), 1, + anon_sym_RBRACK, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(1698), 1, + sym__entry_separator, + ACTIONS(9332), 1, + anon_sym_DOT_DOT2, STATE(5932), 1, sym_comment, - STATE(6095), 1, - aux_sym_shebang_repeat1, - [213556] = 4, + ACTIONS(9334), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214741] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2277), 1, - anon_sym_DASH, + ACTIONS(1822), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3085), 1, + sym_cell_path, STATE(5933), 1, sym_comment, - ACTIONS(2279), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213573] = 4, - ACTIONS(3), 1, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1820), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214767] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_DASH, + ACTIONS(9336), 1, + aux_sym__immediate_decimal_token2, STATE(5934), 1, sym_comment, - ACTIONS(1822), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213590] = 7, - ACTIONS(121), 1, + ACTIONS(1648), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1650), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214787] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9671), 1, - anon_sym_DQUOTE2, STATE(5935), 1, sym_comment, - STATE(5937), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213613] = 4, - ACTIONS(3), 1, + ACTIONS(5202), 7, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_record_entry_token1, + [214803] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9242), 1, + anon_sym_DASH_DASH, + ACTIONS(9244), 1, anon_sym_DASH, STATE(5936), 1, sym_comment, - ACTIONS(2363), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213630] = 7, - ACTIONS(121), 1, + STATE(6853), 1, + sym_block, + STATE(7710), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [214829] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9673), 1, - anon_sym_DQUOTE2, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9242), 1, + anon_sym_DASH_DASH, + ACTIONS(9244), 1, + anon_sym_DASH, STATE(5937), 1, sym_comment, - STATE(6158), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213653] = 4, + STATE(6854), 1, + sym_block, + STATE(7713), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [214855] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9242), 1, + anon_sym_DASH_DASH, + ACTIONS(9244), 1, + anon_sym_DASH, + STATE(5938), 1, + sym_comment, + STATE(6855), 1, + sym_block, + STATE(7714), 1, + sym__flag, + STATE(6245), 2, + sym_short_flag, + sym_long_flag, + [214881] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3159), 1, + sym_cell_path, + STATE(5939), 1, + sym_comment, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1747), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214907] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3080), 1, + sym_cell_path, + STATE(5940), 1, + sym_comment, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1824), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214933] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1857), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3082), 1, + sym_cell_path, + STATE(5941), 1, + sym_comment, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1855), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214959] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1798), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3083), 1, + sym_cell_path, + STATE(5942), 1, + sym_comment, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1796), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214985] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2365), 1, - anon_sym_DASH, - STATE(5938), 1, + ACTIONS(1810), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(3084), 1, + sym_cell_path, + STATE(5943), 1, + sym_comment, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + ACTIONS(1808), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [215011] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5944), 1, sym_comment, - ACTIONS(2367), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213670] = 8, - ACTIONS(3), 1, + ACTIONS(9338), 7, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215027] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9675), 1, + ACTIONS(9342), 1, anon_sym_RBRACK, - STATE(5939), 1, + STATE(5945), 1, sym_comment, - STATE(6307), 1, + STATE(6339), 1, aux_sym_shebang_repeat1, - STATE(6980), 1, - sym_val_list, - STATE(7353), 1, + STATE(7415), 1, aux_sym_val_table_repeat1, - [213695] = 6, - ACTIONS(3), 1, + STATE(7526), 1, + sym_val_list, + [215052] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - ACTIONS(9677), 1, - anon_sym_DOT_DOT2, - STATE(5940), 1, + ACTIONS(9344), 1, + anon_sym_DQUOTE, + ACTIONS(9348), 1, + aux_sym_path_token1, + STATE(5946), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(9679), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213716] = 7, - ACTIONS(3), 1, + STATE(6294), 1, + sym_val_string, + STATE(6380), 1, + sym__str_double_quotes, + ACTIONS(9346), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [215075] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, + ACTIONS(9276), 1, + anon_sym_alias, + ACTIONS(9278), 1, + anon_sym_const, + ACTIONS(9280), 1, + anon_sym_def, + ACTIONS(9282), 1, + anon_sym_extern, + ACTIONS(9284), 1, + anon_sym_module, + ACTIONS(9286), 1, + anon_sym_use, + STATE(5947), 1, + sym_comment, + [215100] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(2935), 1, + ACTIONS(8685), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9681), 1, - anon_sym_DOT, - STATE(5925), 1, - sym__immediate_decimal, - STATE(5941), 1, + ACTIONS(8687), 1, + aux_sym__immediate_decimal_token5, + STATE(5948), 1, sym_comment, - ACTIONS(2933), 2, + STATE(7915), 1, + sym__immediate_decimal, + ACTIONS(8683), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [213739] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9576), 1, - anon_sym_DASH, - STATE(5942), 1, - sym_comment, - ACTIONS(9574), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213756] = 8, - ACTIONS(3), 1, + [215123] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9683), 1, + ACTIONS(9350), 1, anon_sym_RBRACK, - STATE(5943), 1, + STATE(5949), 1, sym_comment, - STATE(6308), 1, + STATE(6319), 1, aux_sym_shebang_repeat1, - STATE(6985), 1, + STATE(7292), 1, sym_val_list, - STATE(7356), 1, + STATE(7321), 1, aux_sym_val_table_repeat1, - [213781] = 4, - ACTIONS(3), 1, + [215148] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - anon_sym_DASH, - STATE(5944), 1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(5950), 1, sym_comment, - ACTIONS(1441), 5, - ts_builtin_sym_end, + STATE(6737), 1, + sym_block, + ACTIONS(9352), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213798] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3329), 1, - anon_sym_DQUOTE, - ACTIONS(9685), 1, - aux_sym_path_token1, - STATE(3606), 1, - sym_val_string, - STATE(3639), 1, - sym__str_double_quotes, - STATE(5945), 1, - sym_comment, - ACTIONS(3331), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213821] = 4, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215167] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9687), 1, - aux_sym_unquoted_token3, - STATE(5946), 1, - sym_comment, - ACTIONS(3239), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - [213838] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9580), 1, - aux_sym__immediate_decimal_token2, - STATE(5947), 1, - sym_comment, - ACTIONS(1470), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [213857] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(5948), 1, + STATE(5951), 1, sym_comment, - ACTIONS(936), 3, - anon_sym_RBRACK, + STATE(6739), 1, + sym_block, + ACTIONS(9352), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(938), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [213874] = 4, - ACTIONS(3), 1, + [215186] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2369), 1, - anon_sym_DASH, - STATE(5949), 1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(5952), 1, sym_comment, - ACTIONS(2371), 5, - ts_builtin_sym_end, + STATE(6767), 1, + sym_block, + ACTIONS(9354), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213891] = 7, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215205] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(9689), 1, + ACTIONS(9360), 1, anon_sym_DQUOTE2, - STATE(5950), 1, + STATE(5953), 1, sym_comment, - STATE(5952), 1, + STATE(5956), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [213914] = 4, + [215228] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_DASH, - STATE(5951), 1, + ACTIONS(4722), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, + STATE(5954), 1, sym_comment, - ACTIONS(2218), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213931] = 7, - ACTIONS(121), 1, + STATE(6684), 1, + sym__immediate_decimal, + [215253] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(4722), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, + STATE(5955), 1, + sym_comment, + STATE(7761), 1, + sym__immediate_decimal, + [215278] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(9691), 1, + ACTIONS(9362), 1, anon_sym_DQUOTE2, - STATE(5952), 1, + STATE(5956), 1, sym_comment, - STATE(6158), 1, + STATE(6177), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [213954] = 4, - ACTIONS(3), 1, + [215301] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_DASH, - STATE(5953), 1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9364), 1, + anon_sym_RBRACK, + STATE(5957), 1, sym_comment, - ACTIONS(2218), 5, - ts_builtin_sym_end, + STATE(6334), 1, + aux_sym_shebang_repeat1, + STATE(7334), 1, + sym_val_list, + STATE(7399), 1, + aux_sym_val_table_repeat1, + [215326] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213971] = 8, - ACTIONS(3), 1, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(5323), 1, + sym__blosure, + STATE(5958), 1, + sym_comment, + [215351] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9693), 1, + ACTIONS(9368), 1, anon_sym_RBRACK, - STATE(5954), 1, + STATE(5959), 1, sym_comment, - STATE(6310), 1, + STATE(6299), 1, aux_sym_shebang_repeat1, - STATE(7009), 1, + STATE(7041), 1, sym_val_list, - STATE(7362), 1, + STATE(7312), 1, aux_sym_val_table_repeat1, - [213996] = 4, - ACTIONS(3), 1, + [215376] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DASH, - STATE(5955), 1, - sym_comment, - ACTIONS(5119), 5, - ts_builtin_sym_end, + ACTIONS(2738), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [214013] = 8, - ACTIONS(3), 1, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5244), 1, + sym__blosure, + STATE(5960), 1, + sym_comment, + STATE(6043), 1, + aux_sym_shebang_repeat1, + [215401] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9695), 1, + ACTIONS(9370), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5961), 1, sym_comment, - STATE(6311), 1, + STATE(6335), 1, aux_sym_shebang_repeat1, - STATE(7014), 1, + STATE(7342), 1, sym_val_list, - STATE(7365), 1, + STATE(7401), 1, aux_sym_val_table_repeat1, - [214038] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, - STATE(5957), 1, - sym_comment, - STATE(6874), 1, - sym__assignment_pattern, - STATE(7055), 1, - sym__variable_name, - [214063] = 7, - ACTIONS(3), 1, + [215426] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(235), 1, + ACTIONS(2939), 1, anon_sym_DQUOTE, - ACTIONS(9697), 1, + ACTIONS(9372), 1, aux_sym_path_token1, - STATE(1437), 1, + STATE(5771), 1, sym_val_string, - STATE(1452), 1, + STATE(5801), 1, sym__str_double_quotes, - STATE(5958), 1, + STATE(5962), 1, sym_comment, - ACTIONS(237), 2, + ACTIONS(2941), 2, sym__str_single_quotes, sym__str_back_ticks, - [214086] = 6, - ACTIONS(121), 1, + [215449] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(950), 1, - sym__entry_separator, - ACTIONS(9699), 1, - anon_sym_DOT_DOT2, - STATE(5959), 1, + ACTIONS(9374), 1, + anon_sym_alias, + ACTIONS(9376), 1, + anon_sym_const, + ACTIONS(9378), 1, + anon_sym_def, + ACTIONS(9380), 1, + anon_sym_extern, + ACTIONS(9382), 1, + anon_sym_module, + ACTIONS(9384), 1, + anon_sym_use, + STATE(5963), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9701), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214107] = 7, + [215474] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(2979), 1, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(5960), 1, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9386), 1, + aux_sym_unquoted_token3, + STATE(5964), 1, sym_comment, - STATE(7450), 1, + STATE(6684), 1, sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [214130] = 7, - ACTIONS(121), 1, + [215499] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9703), 1, - anon_sym_DQUOTE2, - STATE(5961), 1, + ACTIONS(4944), 1, + anon_sym_DOLLAR, + ACTIONS(9388), 1, + anon_sym_EQ2, + ACTIONS(9390), 1, + sym_short_flag_identifier, + STATE(5965), 1, sym_comment, - STATE(5963), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [214153] = 7, - ACTIONS(121), 1, + ACTIONS(4942), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [215520] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(1782), 1, + anon_sym_RBRACE, + ACTIONS(1784), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(569), 1, + sym_cell_path, + STATE(5966), 1, + sym_comment, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + [215545] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(9705), 1, + ACTIONS(9392), 1, anon_sym_DQUOTE2, - STATE(5962), 1, + STATE(5967), 1, sym_comment, - STATE(6158), 1, + STATE(5970), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [214176] = 7, - ACTIONS(121), 1, + [215568] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(7183), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, + STATE(5968), 1, + sym_comment, + STATE(6684), 1, + sym__immediate_decimal, + [215593] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7183), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, + STATE(5969), 1, + sym_comment, + STATE(7761), 1, + sym__immediate_decimal, + [215618] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(9707), 1, + ACTIONS(9394), 1, anon_sym_DQUOTE2, - STATE(5963), 1, + STATE(5970), 1, sym_comment, - STATE(6158), 1, + STATE(6177), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [214199] = 4, - ACTIONS(3), 1, + [215641] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_DASH, - STATE(5964), 1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(5971), 1, sym_comment, - ACTIONS(3441), 5, - ts_builtin_sym_end, + STATE(6402), 1, + sym_block, + ACTIONS(9396), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [214216] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215660] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9709), 1, + ACTIONS(9398), 1, anon_sym_RBRACK, - STATE(5965), 1, + STATE(5972), 1, sym_comment, - STATE(6313), 1, + STATE(6336), 1, aux_sym_shebang_repeat1, - STATE(7033), 1, - sym_val_list, - STATE(7371), 1, + STATE(7406), 1, aux_sym_val_table_repeat1, - [214241] = 4, - ACTIONS(3), 1, + STATE(7427), 1, + sym_val_list, + [215685] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(5973), 1, + sym_comment, + STATE(6414), 1, + sym_block, + ACTIONS(9396), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215704] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1733), 1, + ACTIONS(5131), 1, anon_sym_DASH, - STATE(5966), 1, + STATE(5974), 1, sym_comment, - ACTIONS(1735), 5, + ACTIONS(5129), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [214258] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1953), 1, - sym__entry_separator, - ACTIONS(9711), 1, - anon_sym_DOT_DOT2, - STATE(5967), 1, - sym_comment, - ACTIONS(1947), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9713), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214279] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9715), 1, - anon_sym_DQUOTE2, - STATE(5968), 1, - sym_comment, - STATE(6158), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [214302] = 8, - ACTIONS(3), 1, + [215721] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9717), 1, + ACTIONS(9400), 1, anon_sym_RBRACK, - STATE(5969), 1, + STATE(5975), 1, sym_comment, - STATE(6314), 1, + STATE(6337), 1, aux_sym_shebang_repeat1, - STATE(7037), 1, - sym_val_list, - STATE(7374), 1, + STATE(7408), 1, aux_sym_val_table_repeat1, - [214327] = 7, - ACTIONS(3), 1, + STATE(7444), 1, + sym_val_list, + [215746] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9719), 1, + ACTIONS(9402), 1, anon_sym_DQUOTE, - ACTIONS(9723), 1, + ACTIONS(9406), 1, aux_sym_path_token1, - STATE(1696), 1, - sym__str_double_quotes, - STATE(1735), 1, - sym_val_string, - STATE(5970), 1, + STATE(5976), 1, sym_comment, - ACTIONS(9721), 2, + STATE(6259), 1, + sym_val_string, + STATE(6301), 1, + sym__str_double_quotes, + ACTIONS(9404), 2, sym__str_single_quotes, sym__str_back_ticks, - [214350] = 8, + [215769] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(5215), 1, - sym__blosure, - STATE(5971), 1, + ACTIONS(9408), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9410), 1, + aux_sym__immediate_decimal_token2, + STATE(5977), 1, sym_comment, - [214375] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(7607), 1, - anon_sym_RBRACK, - ACTIONS(7609), 1, + ACTIONS(1569), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1571), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(5888), 1, - aux_sym_cell_path_repeat1, - STATE(5972), 1, - sym_comment, - STATE(6887), 1, - sym_path, - STATE(7560), 1, - sym_cell_path, - [214400] = 7, - ACTIONS(121), 1, + [215790] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(9725), 1, + ACTIONS(9412), 1, anon_sym_DQUOTE2, - STATE(5973), 1, + STATE(5978), 1, sym_comment, - STATE(5975), 1, + STATE(5982), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [214423] = 8, + [215813] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5168), 1, + anon_sym_DASH, + STATE(5979), 1, + sym_comment, + ACTIONS(5166), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [215830] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9518), 1, - anon_sym_def, - ACTIONS(9520), 1, - anon_sym_extern, - ACTIONS(9522), 1, - anon_sym_module, - ACTIONS(9524), 1, - anon_sym_use, - ACTIONS(9727), 1, - anon_sym_alias, - ACTIONS(9729), 1, - anon_sym_const, - STATE(5974), 1, + ACTIONS(7127), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, + STATE(5980), 1, + sym_comment, + STATE(6684), 1, + sym__immediate_decimal, + [215855] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7127), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, + STATE(5981), 1, sym_comment, - [214448] = 7, - ACTIONS(121), 1, + STATE(7761), 1, + sym__immediate_decimal, + [215880] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(9731), 1, + ACTIONS(9414), 1, anon_sym_DQUOTE2, - STATE(5975), 1, + STATE(5982), 1, sym_comment, - STATE(6158), 1, + STATE(6177), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [214471] = 6, - ACTIONS(121), 1, + [215903] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1869), 1, + ACTIONS(7353), 1, + anon_sym_RBRACK, + ACTIONS(7355), 1, sym__entry_separator, - ACTIONS(9733), 1, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(5983), 1, + sym_comment, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + STATE(7593), 1, + sym_cell_path, + [215928] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1941), 1, + sym__entry_separator, + ACTIONS(9416), 1, anon_sym_DOT_DOT2, - STATE(5976), 1, + STATE(5984), 1, sym_comment, - ACTIONS(1863), 2, + ACTIONS(1935), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9735), 2, + ACTIONS(9418), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [214492] = 8, - ACTIONS(3), 1, + [215949] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9737), 1, + ACTIONS(9420), 1, anon_sym_RBRACK, - STATE(5977), 1, + STATE(5985), 1, sym_comment, - STATE(6316), 1, + STATE(6340), 1, aux_sym_shebang_repeat1, - STATE(7054), 1, - sym_val_list, - STATE(7380), 1, + STATE(7417), 1, aux_sym_val_table_repeat1, - [214517] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(5153), 1, - sym__blosure, - STATE(5978), 1, - sym_comment, - [214542] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9514), 1, - anon_sym_alias, - ACTIONS(9516), 1, - anon_sym_const, - ACTIONS(9518), 1, - anon_sym_def, - ACTIONS(9520), 1, - anon_sym_extern, - ACTIONS(9522), 1, - anon_sym_module, - ACTIONS(9524), 1, - anon_sym_use, - STATE(5979), 1, - sym_comment, - [214567] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9739), 1, - anon_sym_DOT, - ACTIONS(9742), 1, - aux_sym__immediate_decimal_token2, - STATE(5980), 1, - sym_comment, - ACTIONS(1518), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1520), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [214588] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9744), 1, - anon_sym_RBRACK, - STATE(5981), 1, - sym_comment, - STATE(6317), 1, - aux_sym_shebang_repeat1, - STATE(7059), 1, + STATE(7534), 1, sym_val_list, - STATE(7383), 1, - aux_sym_val_table_repeat1, - [214613] = 7, - ACTIONS(3), 1, + [215974] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9746), 1, + ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(9750), 1, + ACTIONS(9422), 1, aux_sym_path_token1, - STATE(1312), 1, + STATE(1851), 1, sym__str_double_quotes, - STATE(1328), 1, + STATE(2157), 1, sym_val_string, - STATE(5982), 1, + STATE(5986), 1, sym_comment, - ACTIONS(9748), 2, + ACTIONS(513), 2, sym__str_single_quotes, sym__str_back_ticks, - [214636] = 4, - ACTIONS(3), 1, + [215997] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2184), 1, - anon_sym_DASH, - STATE(5983), 1, - sym_comment, - ACTIONS(2186), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [214653] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2200), 1, - anon_sym_DASH, - STATE(5984), 1, - sym_comment, - ACTIONS(2202), 5, - ts_builtin_sym_end, + ACTIONS(2738), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [214670] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9752), 1, - anon_sym_DQUOTE2, - STATE(5985), 1, - sym_comment, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9424), 1, + anon_sym_RBRACK, STATE(5987), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [214693] = 5, - ACTIONS(3), 1, + sym_comment, + STATE(6297), 1, + aux_sym_shebang_repeat1, + STATE(7307), 1, + aux_sym_val_table_repeat1, + STATE(7436), 1, + sym_val_list, + [216022] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(9274), 1, aux_sym_ctrl_match_token1, - STATE(5986), 1, + STATE(5988), 1, sym_comment, - STATE(6389), 1, - sym_block, - ACTIONS(9754), 4, + STATE(6595), 1, + sym_val_record, + ACTIONS(9426), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214712] = 7, - ACTIONS(121), 1, + [216041] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(9756), 1, + ACTIONS(9428), 1, anon_sym_DQUOTE2, - STATE(5987), 1, + STATE(5989), 1, sym_comment, - STATE(6158), 1, + STATE(5992), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [214735] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9758), 1, - anon_sym_RBRACK, - STATE(5988), 1, - sym_comment, - STATE(6319), 1, - aux_sym_shebang_repeat1, - STATE(7072), 1, - sym_val_list, - STATE(7389), 1, - aux_sym_val_table_repeat1, - [214760] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(5989), 1, - sym_comment, - STATE(6390), 1, - sym_block, - ACTIONS(9754), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214779] = 8, + [216064] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9760), 1, - anon_sym_RBRACK, + ACTIONS(6600), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, STATE(5990), 1, sym_comment, - STATE(6172), 1, - aux_sym_shebang_repeat1, - STATE(7075), 1, - sym_val_list, - STATE(7392), 1, - aux_sym_val_table_repeat1, - [214804] = 7, + STATE(6684), 1, + sym__immediate_decimal, + [216089] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4338), 1, - anon_sym_DQUOTE, - ACTIONS(9762), 1, - aux_sym_path_token1, - STATE(4635), 1, - sym__str_double_quotes, - STATE(4714), 1, - sym_val_string, + ACTIONS(6600), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, STATE(5991), 1, sym_comment, - ACTIONS(4340), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214827] = 8, + STATE(7761), 1, + sym__immediate_decimal, + [216114] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(5150), 1, - sym__blosure, - STATE(5992), 1, - sym_comment, - [214852] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(9764), 1, + ACTIONS(9430), 1, anon_sym_DQUOTE2, - STATE(5993), 1, + STATE(5992), 1, sym_comment, - STATE(5994), 1, + STATE(6177), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [214875] = 7, - ACTIONS(121), 1, + [216137] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9766), 1, - anon_sym_DQUOTE2, - STATE(5994), 1, + ACTIONS(9432), 1, + anon_sym_DQUOTE, + ACTIONS(9436), 1, + aux_sym_path_token1, + STATE(1394), 1, + sym_val_string, + STATE(1401), 1, + sym__str_double_quotes, + STATE(5993), 1, sym_comment, - STATE(6158), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [214898] = 8, - ACTIONS(3), 1, + ACTIONS(9434), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [216160] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9768), 1, + ACTIONS(9438), 1, anon_sym_RBRACK, - STATE(5995), 1, + STATE(5994), 1, sym_comment, - STATE(6321), 1, + STATE(6342), 1, aux_sym_shebang_repeat1, - STATE(7090), 1, + STATE(6962), 1, sym_val_list, - STATE(7397), 1, + STATE(7422), 1, aux_sym_val_table_repeat1, - [214923] = 8, - ACTIONS(3), 1, + [216185] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(5135), 1, + anon_sym_DASH, + STATE(5995), 1, + sym_comment, + ACTIONS(5133), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9589), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [216202] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, + ACTIONS(9440), 1, anon_sym_RBRACK, STATE(5996), 1, sym_comment, - STATE(6322), 1, + STATE(6343), 1, aux_sym_shebang_repeat1, - STATE(7094), 1, + STATE(6966), 1, sym_val_list, - STATE(7400), 1, + STATE(7424), 1, aux_sym_val_table_repeat1, - [214948] = 7, - ACTIONS(3), 1, + [216227] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9772), 1, + ACTIONS(9442), 1, anon_sym_DQUOTE, - ACTIONS(9776), 1, + ACTIONS(9446), 1, aux_sym_path_token1, - STATE(2109), 1, - sym_val_string, - STATE(2361), 1, + STATE(1319), 1, sym__str_double_quotes, + STATE(1381), 1, + sym_val_string, STATE(5997), 1, sym_comment, - ACTIONS(9774), 2, + ACTIONS(9444), 2, sym__str_single_quotes, sym__str_back_ticks, - [214971] = 7, - ACTIONS(121), 1, + [216250] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(9778), 1, - anon_sym_DQUOTE2, + ACTIONS(1473), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9448), 1, + anon_sym_DOT, + ACTIONS(9450), 1, + aux_sym__immediate_decimal_token2, STATE(5998), 1, sym_comment, - STATE(6000), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [214994] = 6, - ACTIONS(3), 1, + ACTIONS(1475), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [216271] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4966), 1, - anon_sym_DASH, - ACTIONS(9780), 1, - sym_long_flag_identifier, - ACTIONS(9782), 1, - anon_sym_EQ2, + ACTIONS(9274), 1, + aux_sym_ctrl_match_token1, STATE(5999), 1, sym_comment, - ACTIONS(4968), 3, + STATE(6599), 1, + sym_val_record, + ACTIONS(9452), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216290] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1008), 1, + aux_sym_ctrl_match_token1, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + STATE(6000), 1, + sym_comment, + ACTIONS(1006), 4, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [215015] = 7, - ACTIONS(121), 1, + anon_sym_DASH, + [216309] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(9784), 1, + ACTIONS(9454), 1, anon_sym_DQUOTE2, - STATE(6000), 1, + STATE(6001), 1, sym_comment, - STATE(6158), 1, + STATE(6004), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [215038] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9786), 1, - anon_sym_RBRACK, - STATE(6001), 1, - sym_comment, - STATE(6323), 1, - aux_sym_shebang_repeat1, - STATE(7110), 1, - sym_val_list, - STATE(7405), 1, - aux_sym_val_table_repeat1, - [215063] = 8, + [216332] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9788), 1, - anon_sym_RBRACK, + ACTIONS(4702), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, STATE(6002), 1, sym_comment, - STATE(6324), 1, - aux_sym_shebang_repeat1, - STATE(7114), 1, - sym_val_list, - STATE(7408), 1, - aux_sym_val_table_repeat1, - [215088] = 7, + STATE(6684), 1, + sym__immediate_decimal, + [216357] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9697), 1, - aux_sym_path_token1, - ACTIONS(9790), 1, - anon_sym_DQUOTE, - STATE(1437), 1, - sym_val_string, - STATE(1545), 1, - sym__str_double_quotes, + ACTIONS(4702), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, STATE(6003), 1, sym_comment, - ACTIONS(9792), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215111] = 4, + STATE(7761), 1, + sym__immediate_decimal, + [216382] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DASH, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, + anon_sym_DQUOTE2, STATE(6004), 1, sym_comment, - ACTIONS(5123), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [215128] = 8, - ACTIONS(3), 1, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [216405] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(5150), 1, - sym__blosure, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9458), 1, + anon_sym_RBRACK, STATE(6005), 1, sym_comment, - STATE(6089), 1, + STATE(6344), 1, aux_sym_shebang_repeat1, - [215153] = 4, - ACTIONS(121), 1, + STATE(6986), 1, + sym_val_list, + STATE(7429), 1, + aux_sym_val_table_repeat1, + [216430] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9264), 1, + anon_sym_DASH, STATE(6006), 1, sym_comment, - ACTIONS(1959), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(9262), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [216447] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6687), 1, anon_sym_DOT_DOT2, - ACTIONS(1961), 3, + STATE(6007), 1, + sym_comment, + ACTIONS(6689), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [215170] = 8, + ACTIONS(6042), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [216466] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9794), 1, - anon_sym_RBRACK, - STATE(6007), 1, + ACTIONS(4920), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, + STATE(6008), 1, sym_comment, - STATE(6325), 1, - aux_sym_shebang_repeat1, - STATE(7125), 1, - sym_val_list, - STATE(7413), 1, - aux_sym_val_table_repeat1, - [215195] = 8, - ACTIONS(3), 1, + STATE(6287), 1, + sym__immediate_decimal, + [216491] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, + ACTIONS(9460), 1, anon_sym_RBRACK, - STATE(6008), 1, + STATE(6009), 1, sym_comment, - STATE(6326), 1, + STATE(6345), 1, aux_sym_shebang_repeat1, - STATE(7130), 1, + STATE(6991), 1, sym_val_list, - STATE(7415), 1, + STATE(7432), 1, aux_sym_val_table_repeat1, - [215220] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4376), 1, + [216516] = 7, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(9798), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9462), 1, aux_sym_path_token1, - STATE(4505), 1, - sym__str_double_quotes, - STATE(4536), 1, + STATE(1560), 1, sym_val_string, - STATE(6009), 1, + STATE(1668), 1, + sym__str_double_quotes, + STATE(6010), 1, sym_comment, - ACTIONS(4378), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - [215243] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9584), 1, - aux_sym_ctrl_match_token1, - STATE(6010), 1, - sym_comment, - STATE(6811), 1, - sym_val_record, - ACTIONS(9800), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215262] = 5, - ACTIONS(3), 1, + [216539] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9584), 1, - aux_sym_ctrl_match_token1, + ACTIONS(6687), 1, + anon_sym_DOT_DOT2, STATE(6011), 1, sym_comment, - STATE(6813), 1, - sym_val_record, - ACTIONS(9802), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215281] = 5, + ACTIONS(6689), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6048), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [216558] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5514), 1, + ACTIONS(4920), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9804), 1, - aux_sym_unquoted_token2, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, STATE(6012), 1, sym_comment, - ACTIONS(2925), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [215300] = 8, + STATE(7647), 1, + sym__immediate_decimal, + [216583] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9806), 1, - anon_sym_RBRACK, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9464), 1, + anon_sym_DQUOTE2, STATE(6013), 1, sym_comment, - STATE(6327), 1, - aux_sym_shebang_repeat1, - STATE(7141), 1, - sym_val_list, - STATE(7420), 1, - aux_sym_val_table_repeat1, - [215325] = 8, + STATE(6017), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [216606] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9808), 1, - anon_sym_RBRACK, + ACTIONS(7091), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, STATE(6014), 1, sym_comment, - STATE(6328), 1, - aux_sym_shebang_repeat1, - STATE(7145), 1, - sym_val_list, - STATE(7422), 1, - aux_sym_val_table_repeat1, - [215350] = 7, + STATE(6684), 1, + sym__immediate_decimal, + [216631] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(9641), 1, - aux_sym_path_token1, - STATE(1252), 1, - sym_val_string, - STATE(1452), 1, - sym__str_double_quotes, + ACTIONS(7091), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, STATE(6015), 1, sym_comment, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215373] = 4, - ACTIONS(121), 1, + STATE(7761), 1, + sym__immediate_decimal, + [216656] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9812), 1, - sym__space, + ACTIONS(9466), 1, + sym__newline, + ACTIONS(9468), 1, + anon_sym_SEMI, + ACTIONS(9470), 1, + anon_sym_RPAREN, + STATE(247), 1, + aux_sym__parenthesized_body_repeat1, STATE(6016), 1, sym_comment, - ACTIONS(9810), 5, - sym__newline, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_ctrl_match_token1, - [215390] = 8, + STATE(6501), 1, + aux_sym__block_body_repeat1, + STATE(7297), 1, + aux_sym_shebang_repeat1, + [216681] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9472), 1, + anon_sym_DQUOTE2, + STATE(6017), 1, + sym_comment, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [216704] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9814), 1, + ACTIONS(9474), 1, anon_sym_RBRACK, - STATE(6017), 1, + STATE(6018), 1, sym_comment, - STATE(6329), 1, + STATE(6347), 1, aux_sym_shebang_repeat1, - STATE(7153), 1, + STATE(7019), 1, sym_val_list, - STATE(7427), 1, + STATE(7437), 1, aux_sym_val_table_repeat1, - [215415] = 8, + [216729] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(6636), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, + STATE(6019), 1, + sym_comment, + STATE(6684), 1, + sym__immediate_decimal, + [216754] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9816), 1, + ACTIONS(9476), 1, anon_sym_RBRACK, - STATE(6018), 1, + STATE(6020), 1, sym_comment, - STATE(6330), 1, + STATE(6348), 1, aux_sym_shebang_repeat1, - STATE(7157), 1, + STATE(7022), 1, sym_val_list, - STATE(7429), 1, + STATE(7440), 1, aux_sym_val_table_repeat1, - [215440] = 7, - ACTIONS(3), 1, + [216779] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9818), 1, + ACTIONS(9478), 1, anon_sym_DQUOTE, - ACTIONS(9822), 1, + ACTIONS(9482), 1, aux_sym_path_token1, - STATE(1494), 1, + STATE(1267), 1, sym_val_string, - STATE(1501), 1, + STATE(1273), 1, sym__str_double_quotes, - STATE(6019), 1, + STATE(6021), 1, sym_comment, - ACTIONS(9820), 2, + ACTIONS(9480), 2, sym__str_single_quotes, sym__str_back_ticks, - [215463] = 5, - ACTIONS(3), 1, + [216802] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6878), 1, - anon_sym_DOT_DOT2, - STATE(6020), 1, + ACTIONS(1569), 1, + aux_sym_unquoted_token2, + ACTIONS(9484), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9486), 1, + aux_sym__immediate_decimal_token2, + STATE(6022), 1, sym_comment, - ACTIONS(6880), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6156), 3, + ACTIONS(1571), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [215482] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9824), 1, - anon_sym_RBRACK, - STATE(6021), 1, - sym_comment, - STATE(6331), 1, - aux_sym_shebang_repeat1, - STATE(7168), 1, - sym_val_list, - STATE(7434), 1, - aux_sym_val_table_repeat1, - [215507] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(9826), 1, - anon_sym_RBRACK, - STATE(6022), 1, - sym_comment, - STATE(6332), 1, - aux_sym_shebang_repeat1, - STATE(7173), 1, - sym_val_list, - STATE(7436), 1, - aux_sym_val_table_repeat1, - [215532] = 7, + [216823] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(9828), 1, - aux_sym_path_token1, - STATE(1452), 1, - sym__str_double_quotes, - STATE(1738), 1, - sym_val_string, + ACTIONS(6636), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, STATE(6023), 1, sym_comment, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215555] = 7, + STATE(7761), 1, + sym__immediate_decimal, + [216848] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9830), 1, - anon_sym_DQUOTE, - ACTIONS(9834), 1, - aux_sym_path_token1, - STATE(1660), 1, - sym__str_double_quotes, - STATE(1663), 1, - sym_val_string, STATE(6024), 1, sym_comment, - ACTIONS(9832), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215578] = 4, - ACTIONS(3), 1, + ACTIONS(1943), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1945), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [216865] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5165), 1, - anon_sym_DASH, + ACTIONS(9490), 1, + anon_sym_COMMA, STATE(6025), 1, sym_comment, - ACTIONS(5163), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [215595] = 7, + ACTIONS(9488), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216882] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9836), 1, - anon_sym_DQUOTE, - ACTIONS(9840), 1, - aux_sym_path_token1, - STATE(4306), 1, - sym__str_double_quotes, - STATE(4319), 1, - sym_val_string, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9492), 1, + anon_sym_DQUOTE2, STATE(6026), 1, sym_comment, - ACTIONS(9838), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215618] = 4, + STATE(6028), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [216905] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_DASH, + ACTIONS(9494), 1, + anon_sym_DOT, + ACTIONS(9496), 1, + aux_sym__immediate_decimal_token2, STATE(6027), 1, sym_comment, - ACTIONS(2210), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [215635] = 7, + ACTIONS(1589), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [216926] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9842), 1, - anon_sym_DQUOTE, - ACTIONS(9846), 1, - aux_sym_path_token1, - STATE(2760), 1, - sym__str_double_quotes, - STATE(2766), 1, - sym_val_string, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9498), 1, + anon_sym_DQUOTE2, STATE(6028), 1, sym_comment, - ACTIONS(9844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215658] = 7, - ACTIONS(3), 1, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [216949] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9848), 1, - anon_sym_DQUOTE, - ACTIONS(9852), 1, - aux_sym_path_token1, - STATE(4217), 1, - sym__str_double_quotes, - STATE(4222), 1, - sym_val_string, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(6636), 1, + aux_sym_unquoted_token2, STATE(6029), 1, sym_comment, - ACTIONS(9850), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215681] = 7, - ACTIONS(3), 1, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9500), 2, + sym_filesize_unit, + sym_duration_unit, + [216970] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_DQUOTE, - ACTIONS(9854), 1, - aux_sym_path_token1, - STATE(4973), 1, - sym__str_double_quotes, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9502), 1, + anon_sym_RBRACK, STATE(6030), 1, sym_comment, - STATE(6091), 1, - sym_val_string, - ACTIONS(4217), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215704] = 7, - ACTIONS(3), 1, + STATE(6350), 1, + aux_sym_shebang_repeat1, + STATE(7038), 1, + sym_val_list, + STATE(7446), 1, + aux_sym_val_table_repeat1, + [216995] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4542), 1, - anon_sym_DQUOTE, - ACTIONS(9856), 1, - aux_sym_path_token1, - STATE(3441), 1, - sym__str_double_quotes, - STATE(3596), 1, - sym_val_string, + ACTIONS(9506), 1, + anon_sym_COMMA, STATE(6031), 1, sym_comment, - ACTIONS(4544), 2, + ACTIONS(9504), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [215727] = 7, + [217012] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9858), 1, - anon_sym_DQUOTE, - ACTIONS(9862), 1, - aux_sym_path_token1, - STATE(1425), 1, - sym_val_string, - STATE(1430), 1, - sym__str_double_quotes, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9508), 1, + anon_sym_DQUOTE2, STATE(6032), 1, sym_comment, - ACTIONS(9860), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215750] = 7, + STATE(6119), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [217035] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9864), 1, - anon_sym_DQUOTE, - ACTIONS(9868), 1, - aux_sym_path_token1, - STATE(2800), 1, - sym_val_string, - STATE(2809), 1, - sym__str_double_quotes, + ACTIONS(5562), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, STATE(6033), 1, sym_comment, - ACTIONS(9866), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215773] = 7, - ACTIONS(3), 1, + STATE(6684), 1, + sym__immediate_decimal, + [217060] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9870), 1, - anon_sym_DQUOTE, - ACTIONS(9874), 1, - aux_sym_path_token1, - STATE(3079), 1, - sym__str_double_quotes, - STATE(3114), 1, - sym_val_string, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9510), 1, + anon_sym_RBRACK, STATE(6034), 1, sym_comment, - ACTIONS(9872), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215796] = 7, + STATE(6351), 1, + aux_sym_shebang_repeat1, + STATE(7044), 1, + sym_val_list, + STATE(7448), 1, + aux_sym_val_table_repeat1, + [217085] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9876), 1, - anon_sym_DQUOTE, - ACTIONS(9880), 1, - aux_sym_path_token1, - STATE(399), 1, - sym__str_double_quotes, - STATE(412), 1, - sym_val_string, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9386), 1, + aux_sym_unquoted_token3, STATE(6035), 1, sym_comment, - ACTIONS(9878), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215819] = 7, - ACTIONS(3), 1, + STATE(7761), 1, + sym__immediate_decimal, + [217110] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9882), 1, + ACTIONS(9512), 1, anon_sym_DQUOTE, - ACTIONS(9886), 1, + ACTIONS(9516), 1, aux_sym_path_token1, - STATE(474), 1, - sym__str_double_quotes, - STATE(510), 1, + STATE(1724), 1, sym_val_string, + STATE(1778), 1, + sym__str_double_quotes, STATE(6036), 1, sym_comment, - ACTIONS(9884), 2, + ACTIONS(9514), 2, sym__str_single_quotes, sym__str_back_ticks, - [215842] = 7, + [217133] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3583), 1, - anon_sym_DQUOTE, - ACTIONS(9888), 1, - aux_sym_path_token1, - STATE(4836), 1, - sym__str_double_quotes, - STATE(4965), 1, - sym_val_string, + ACTIONS(5562), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, STATE(6037), 1, sym_comment, - ACTIONS(3585), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215865] = 7, + STATE(7761), 1, + sym__immediate_decimal, + [217158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9890), 1, - anon_sym_DQUOTE, - ACTIONS(9894), 1, - aux_sym_path_token1, - STATE(4547), 1, - sym_val_string, - STATE(4581), 1, - sym__str_double_quotes, - STATE(6038), 1, + ACTIONS(957), 1, + sym__entry_separator, + ACTIONS(9518), 1, + anon_sym_DOT, + STATE(6792), 1, + sym_path, + ACTIONS(955), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6038), 2, sym_comment, - ACTIONS(9892), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215888] = 7, - ACTIONS(3), 1, + aux_sym_cell_path_repeat1, + [217179] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9896), 1, - anon_sym_DQUOTE, - ACTIONS(9900), 1, - aux_sym_path_token1, - STATE(3697), 1, - sym_val_string, - STATE(3711), 1, - sym__str_double_quotes, + ACTIONS(5139), 1, + anon_sym_DASH, STATE(6039), 1, sym_comment, - ACTIONS(9898), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215911] = 7, + ACTIONS(5137), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [217196] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9902), 1, - anon_sym_DQUOTE, - ACTIONS(9906), 1, - aux_sym_path_token1, - STATE(2728), 1, - sym_val_string, - STATE(2768), 1, - sym__str_double_quotes, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9521), 1, + anon_sym_DQUOTE2, STATE(6040), 1, sym_comment, - ACTIONS(9904), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215934] = 7, + STATE(6041), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [217219] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9908), 1, - anon_sym_DQUOTE, - ACTIONS(9912), 1, - aux_sym_path_token1, - STATE(2981), 1, - sym_val_string, - STATE(2989), 1, - sym__str_double_quotes, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9523), 1, + anon_sym_DQUOTE2, STATE(6041), 1, sym_comment, - ACTIONS(9910), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215957] = 7, - ACTIONS(3), 1, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [217242] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9914), 1, - anon_sym_DQUOTE, - ACTIONS(9918), 1, - aux_sym_path_token1, - STATE(958), 1, - sym_val_string, - STATE(980), 1, - sym__str_double_quotes, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9525), 1, + anon_sym_RBRACK, STATE(6042), 1, sym_comment, - ACTIONS(9916), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [215980] = 7, - ACTIONS(3), 1, + STATE(6353), 1, + aux_sym_shebang_repeat1, + STATE(7066), 1, + sym_val_list, + STATE(7453), 1, + aux_sym_val_table_repeat1, + [217267] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9920), 1, - anon_sym_DQUOTE, - ACTIONS(9924), 1, - aux_sym_path_token1, - STATE(754), 1, - sym__str_double_quotes, - STATE(756), 1, - sym_val_string, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(5271), 1, + sym__blosure, STATE(6043), 1, sym_comment, - ACTIONS(9922), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [216003] = 7, - ACTIONS(3), 1, + [217292] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, + ACTIONS(5143), 1, + anon_sym_DASH, STATE(6044), 1, sym_comment, - STATE(7511), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [216026] = 7, - ACTIONS(3), 1, + ACTIONS(5141), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [217309] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9926), 1, - anon_sym_DQUOTE, - ACTIONS(9930), 1, - aux_sym_path_token1, - STATE(5537), 1, - sym__str_double_quotes, - STATE(5663), 1, - sym_val_string, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9527), 1, + anon_sym_RBRACK, STATE(6045), 1, sym_comment, - ACTIONS(9928), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [216049] = 7, - ACTIONS(3), 1, + STATE(6354), 1, + aux_sym_shebang_repeat1, + STATE(7070), 1, + sym_val_list, + STATE(7456), 1, + aux_sym_val_table_repeat1, + [217334] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9932), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(9936), 1, + ACTIONS(9462), 1, aux_sym_path_token1, - STATE(132), 1, + STATE(1560), 1, sym_val_string, - STATE(134), 1, + STATE(1969), 1, sym__str_double_quotes, STATE(6046), 1, sym_comment, - ACTIONS(9934), 2, + ACTIONS(443), 2, sym__str_single_quotes, sym__str_back_ticks, - [216072] = 7, - ACTIONS(3), 1, + [217357] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9938), 1, - anon_sym_DQUOTE, - ACTIONS(9942), 1, - aux_sym_path_token1, - STATE(430), 1, - sym_val_string, - STATE(459), 1, - sym__str_double_quotes, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5271), 1, + sym__blosure, STATE(6047), 1, sym_comment, - ACTIONS(9940), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [216095] = 7, + STATE(6180), 1, + aux_sym_shebang_repeat1, + [217382] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9944), 1, - anon_sym_DQUOTE, - ACTIONS(9948), 1, - aux_sym_path_token1, - STATE(291), 1, - sym_val_string, - STATE(296), 1, - sym__str_double_quotes, + ACTIONS(2133), 1, + aux_sym_ctrl_match_token1, STATE(6048), 1, sym_comment, - ACTIONS(9946), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [216118] = 7, + ACTIONS(2131), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token4, + [217399] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9950), 1, - anon_sym_DQUOTE, - ACTIONS(9954), 1, - aux_sym_path_token1, - STATE(2713), 1, - sym__str_double_quotes, - STATE(2724), 1, - sym_val_string, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9529), 1, + anon_sym_DQUOTE2, STATE(6049), 1, sym_comment, - ACTIONS(9952), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [216141] = 7, + STATE(6050), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [217422] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9956), 1, - anon_sym_DQUOTE, - ACTIONS(9960), 1, - aux_sym_path_token1, - STATE(2915), 1, - sym__str_double_quotes, - STATE(2937), 1, - sym_val_string, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9531), 1, + anon_sym_DQUOTE2, STATE(6050), 1, sym_comment, - ACTIONS(9958), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [216164] = 7, - ACTIONS(3), 1, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [217445] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9962), 1, - anon_sym_DQUOTE, - ACTIONS(9966), 1, - aux_sym_path_token1, - STATE(242), 1, - sym_val_string, - STATE(258), 1, - sym__str_double_quotes, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9533), 1, + anon_sym_RBRACK, STATE(6051), 1, sym_comment, - ACTIONS(9964), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [216187] = 4, - ACTIONS(3), 1, + STATE(6355), 1, + aux_sym_shebang_repeat1, + STATE(7087), 1, + sym_val_list, + STATE(7461), 1, + aux_sym_val_table_repeat1, + [217470] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(5160), 1, anon_sym_DASH, STATE(6052), 1, sym_comment, - ACTIONS(2214), 5, + ACTIONS(5158), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [216204] = 4, - ACTIONS(3), 1, + [217487] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5169), 1, - anon_sym_DASH, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9535), 1, + anon_sym_RBRACK, STATE(6053), 1, sym_comment, - ACTIONS(5167), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [216221] = 8, - ACTIONS(3), 1, + STATE(6356), 1, + aux_sym_shebang_repeat1, + STATE(7091), 1, + sym_val_list, + STATE(7463), 1, + aux_sym_val_table_repeat1, + [217512] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9968), 1, - anon_sym_alias, - ACTIONS(9970), 1, - anon_sym_const, - ACTIONS(9972), 1, - anon_sym_def, - ACTIONS(9974), 1, - anon_sym_extern, - ACTIONS(9976), 1, - anon_sym_module, - ACTIONS(9978), 1, - anon_sym_use, + ACTIONS(4431), 1, + anon_sym_DQUOTE, + ACTIONS(9537), 1, + aux_sym_path_token1, + STATE(4755), 1, + sym__str_double_quotes, + STATE(4784), 1, + sym_val_string, STATE(6054), 1, sym_comment, - [216246] = 6, + ACTIONS(4433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [217535] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(9980), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9982), 1, + ACTIONS(9539), 1, + anon_sym_DOT, + ACTIONS(9541), 1, aux_sym__immediate_decimal_token2, STATE(6055), 1, sym_comment, - ACTIONS(1472), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [216267] = 7, - ACTIONS(3), 1, + ACTIONS(1589), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1591), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [217556] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, + ACTIONS(5164), 1, + anon_sym_DASH, STATE(6056), 1, sym_comment, - STATE(6908), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [216290] = 4, - ACTIONS(121), 1, + ACTIONS(5162), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [217573] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9543), 1, + anon_sym_DQUOTE2, STATE(6057), 1, sym_comment, - ACTIONS(1963), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1965), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [216307] = 5, - ACTIONS(3), 1, + STATE(6059), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [217596] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6878), 1, - anon_sym_DOT_DOT2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5376), 1, + sym__blosure, STATE(6058), 1, sym_comment, - ACTIONS(6880), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6162), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [216326] = 6, + STATE(6201), 1, + aux_sym_shebang_repeat1, + [217621] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4890), 1, - anon_sym_DOLLAR, - ACTIONS(9984), 1, - anon_sym_EQ2, - ACTIONS(9986), 1, - sym_short_flag_identifier, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + anon_sym_DQUOTE2, STATE(6059), 1, sym_comment, - ACTIONS(4888), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [216347] = 5, - ACTIONS(3), 1, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [217644] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9547), 1, + anon_sym_RBRACK, STATE(6060), 1, sym_comment, - STATE(6888), 1, - sym_block, - ACTIONS(9988), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216366] = 4, - ACTIONS(121), 1, + STATE(6357), 1, + aux_sym_shebang_repeat1, + STATE(7105), 1, + sym_val_list, + STATE(7467), 1, + aux_sym_val_table_repeat1, + [217669] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2075), 1, - aux_sym_ctrl_match_token1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9549), 1, + anon_sym_RBRACK, STATE(6061), 1, sym_comment, - ACTIONS(2073), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token7, - [216383] = 4, - ACTIONS(3), 1, + STATE(6358), 1, + aux_sym_shebang_repeat1, + STATE(7109), 1, + sym_val_list, + STATE(7470), 1, + aux_sym_val_table_repeat1, + [217694] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5129), 1, - anon_sym_DASH, + ACTIONS(9551), 1, + anon_sym_DQUOTE, + ACTIONS(9555), 1, + aux_sym_path_token1, + STATE(1274), 1, + sym_val_string, + STATE(1292), 1, + sym__str_double_quotes, STATE(6062), 1, sym_comment, - ACTIONS(5127), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [216400] = 8, - ACTIONS(3), 1, + ACTIONS(9553), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [217717] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, + ACTIONS(3269), 1, aux_sym_record_entry_token1, - ACTIONS(8911), 1, + ACTIONS(8631), 1, sym_identifier, - ACTIONS(9625), 1, + ACTIONS(9557), 1, anon_sym_DOLLAR, - STATE(5587), 1, + STATE(5619), 1, sym_val_variable, STATE(6063), 1, sym_comment, - STATE(6873), 1, + STATE(6891), 1, sym__assignment_pattern, - STATE(7055), 1, + STATE(7113), 1, sym__variable_name, - [216425] = 8, + [217742] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9559), 1, + anon_sym_DQUOTE2, STATE(6064), 1, sym_comment, - STATE(6874), 1, - sym__assignment_pattern, - STATE(7055), 1, - sym__variable_name, - [216450] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, STATE(6065), 1, - sym_comment, - STATE(6875), 1, - sym__assignment_pattern, - STATE(7055), 1, - sym__variable_name, - [216475] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9742), 1, - aux_sym__immediate_decimal_token2, - STATE(6066), 1, - sym_comment, - ACTIONS(1518), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1520), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [216494] = 8, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1701), 1, - anon_sym_RBRACE, - ACTIONS(1705), 1, - sym__entry_separator, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(9990), 1, - aux_sym__immediate_decimal_token1, - STATE(6067), 1, - sym_comment, - [216519] = 7, - ACTIONS(121), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [217765] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(9992), 1, + ACTIONS(9561), 1, anon_sym_DQUOTE2, - STATE(6068), 1, + STATE(6065), 1, sym_comment, - STATE(6072), 1, + STATE(6177), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [216542] = 4, - ACTIONS(3), 1, + [217788] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_DASH, - STATE(6069), 1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9563), 1, + anon_sym_RBRACK, + STATE(6066), 1, sym_comment, - ACTIONS(2250), 5, - ts_builtin_sym_end, + STATE(6359), 1, + aux_sym_shebang_repeat1, + STATE(7128), 1, + sym_val_list, + STATE(7475), 1, + aux_sym_val_table_repeat1, + [217813] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [216559] = 7, - ACTIONS(3), 1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9565), 1, + anon_sym_RBRACK, + STATE(6067), 1, + sym_comment, + STATE(6360), 1, + aux_sym_shebang_repeat1, + STATE(7132), 1, + sym_val_list, + STATE(7478), 1, + aux_sym_val_table_repeat1, + [217838] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(111), 1, + ACTIONS(9567), 1, anon_sym_DQUOTE, - ACTIONS(9994), 1, + ACTIONS(9571), 1, aux_sym_path_token1, - STATE(2116), 1, - sym__str_double_quotes, - STATE(2124), 1, + STATE(2378), 1, sym_val_string, - STATE(6070), 1, + STATE(2405), 1, + sym__str_double_quotes, + STATE(6068), 1, sym_comment, - ACTIONS(113), 2, + ACTIONS(9569), 2, sym__str_single_quotes, sym__str_back_ticks, - [216582] = 6, - ACTIONS(121), 1, + [217861] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1877), 1, - sym__entry_separator, - ACTIONS(9996), 1, - anon_sym_DOT_DOT2, - STATE(6071), 1, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, + STATE(6069), 1, sym_comment, - ACTIONS(1871), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216603] = 7, - ACTIONS(121), 1, + STATE(6895), 1, + sym__assignment_pattern, + STATE(7113), 1, + sym__variable_name, + [217886] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(10000), 1, + ACTIONS(9573), 1, anon_sym_DQUOTE2, - STATE(6072), 1, + STATE(6070), 1, sym_comment, - STATE(6158), 1, + STATE(6071), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [216626] = 4, + [217909] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2325), 1, - anon_sym_DASH, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9575), 1, + anon_sym_DQUOTE2, + STATE(6071), 1, sym_comment, - ACTIONS(2327), 5, - ts_builtin_sym_end, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [217932] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [216643] = 5, - ACTIONS(121), 1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9577), 1, + anon_sym_RBRACK, + STATE(6072), 1, + sym_comment, + STATE(6361), 1, + aux_sym_shebang_repeat1, + STATE(7147), 1, + sym_val_list, + STATE(7483), 1, + aux_sym_val_table_repeat1, + [217957] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2081), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9579), 1, + anon_sym_RBRACK, + STATE(6073), 1, + sym_comment, + STATE(6362), 1, + aux_sym_shebang_repeat1, + STATE(7151), 1, + sym_val_list, + STATE(7486), 1, + aux_sym_val_table_repeat1, + [217982] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9581), 1, + anon_sym_DQUOTE, + ACTIONS(9585), 1, + aux_sym_path_token1, + STATE(3349), 1, + sym_val_string, + STATE(3356), 1, + sym__str_double_quotes, STATE(6074), 1, sym_comment, - ACTIONS(2077), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [216662] = 8, - ACTIONS(121), 1, + ACTIONS(9583), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218005] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1715), 1, - anon_sym_RBRACE, - ACTIONS(1717), 1, - sym__entry_separator, - ACTIONS(9489), 1, - anon_sym_DOT, - STATE(565), 1, - sym_cell_path, - STATE(5888), 1, - aux_sym_cell_path_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9587), 1, + anon_sym_RBRACK, STATE(6075), 1, sym_comment, - STATE(6887), 1, - sym_path, - [216687] = 5, - ACTIONS(121), 1, + STATE(6214), 1, + aux_sym_shebang_repeat1, + STATE(7372), 1, + sym_val_list, + STATE(7374), 1, + aux_sym_val_table_repeat1, + [218030] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10002), 1, - aux_sym__immediate_decimal_token2, STATE(6076), 1, sym_comment, - ACTIONS(1535), 2, + ACTIONS(1953), 3, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 3, - anon_sym_LPAREN2, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1955), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - [216706] = 5, - ACTIONS(121), 1, + [218047] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(950), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, + ACTIONS(9266), 1, + anon_sym_DOT, STATE(6077), 1, sym_comment, - ACTIONS(948), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [216725] = 8, - ACTIONS(3), 1, + STATE(6129), 1, + aux_sym_cell_path_repeat1, + STATE(6519), 1, + sym_path, + ACTIONS(951), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [218068] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(10004), 1, + ACTIONS(9589), 1, anon_sym_RBRACK, STATE(6078), 1, sym_comment, - STATE(6262), 1, + STATE(6363), 1, aux_sym_shebang_repeat1, - STATE(7084), 1, + STATE(7164), 1, sym_val_list, - STATE(7290), 1, + STATE(7491), 1, aux_sym_val_table_repeat1, - [216750] = 4, - ACTIONS(3), 1, + [218093] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(936), 1, - anon_sym_DASH, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9591), 1, + anon_sym_RBRACK, STATE(6079), 1, sym_comment, - ACTIONS(938), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [216767] = 7, - ACTIONS(3), 1, + STATE(6364), 1, + aux_sym_shebang_repeat1, + STATE(7167), 1, + sym_val_list, + STATE(7493), 1, + aux_sym_val_table_repeat1, + [218118] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10006), 1, - anon_sym_DASH_DASH, - ACTIONS(10008), 1, - anon_sym_DASH, - ACTIONS(10010), 1, - anon_sym_in, + ACTIONS(4469), 1, + anon_sym_DQUOTE, + ACTIONS(9593), 1, + aux_sym_path_token1, + STATE(4660), 1, + sym__str_double_quotes, + STATE(4689), 1, + sym_val_string, STATE(6080), 1, sym_comment, - STATE(7915), 1, - sym__flag, - STATE(5790), 2, - sym_short_flag, - sym_long_flag, - [216790] = 5, - ACTIONS(3), 1, + ACTIONS(4471), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218141] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6081), 1, - sym_comment, - STATE(6821), 1, - sym_block, - ACTIONS(10012), 4, + ACTIONS(9466), 1, sym__newline, + ACTIONS(9468), 1, anon_sym_SEMI, + ACTIONS(9595), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [216809] = 5, - ACTIONS(3), 1, + STATE(247), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6081), 1, + sym_comment, + STATE(6400), 1, + aux_sym__block_body_repeat1, + STATE(7297), 1, + aux_sym_shebang_repeat1, + [218166] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9597), 1, + anon_sym_RBRACK, STATE(6082), 1, sym_comment, - STATE(6838), 1, - sym_block, - ACTIONS(10012), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216828] = 8, - ACTIONS(3), 1, + STATE(6365), 1, + aux_sym_shebang_repeat1, + STATE(7180), 1, + sym_val_list, + STATE(7497), 1, + aux_sym_val_table_repeat1, + [218191] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9597), 1, + ACTIONS(2738), 1, sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, ACTIONS(9599), 1, - anon_sym_SEMI, - ACTIONS(10014), 1, - anon_sym_RPAREN, - STATE(281), 1, - aux_sym__parenthesized_body_repeat1, + anon_sym_RBRACK, STATE(6083), 1, sym_comment, - STATE(6443), 1, - aux_sym__block_body_repeat1, - STATE(6987), 1, + STATE(6366), 1, aux_sym_shebang_repeat1, - [216853] = 7, - ACTIONS(3), 1, + STATE(7185), 1, + sym_val_list, + STATE(7499), 1, + aux_sym_val_table_repeat1, + [218216] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10006), 1, - anon_sym_DASH_DASH, - ACTIONS(10008), 1, - anon_sym_DASH, - ACTIONS(10016), 1, - anon_sym_in, + ACTIONS(9446), 1, + aux_sym_path_token1, + ACTIONS(9581), 1, + anon_sym_DQUOTE, + STATE(1381), 1, + sym_val_string, + STATE(3356), 1, + sym__str_double_quotes, STATE(6084), 1, sym_comment, - STATE(7954), 1, - sym__flag, - STATE(5790), 2, - sym_short_flag, - sym_long_flag, - [216876] = 6, + ACTIONS(9583), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218239] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10018), 1, - sym_long_flag_identifier, - ACTIONS(10020), 1, - anon_sym_EQ2, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9601), 1, + anon_sym_DQUOTE2, STATE(6085), 1, sym_comment, - ACTIONS(4966), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(4968), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [216897] = 4, - ACTIONS(3), 1, + STATE(6130), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [218262] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_DASH, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9603), 1, + anon_sym_RBRACK, STATE(6086), 1, sym_comment, - ACTIONS(2275), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [216914] = 8, - ACTIONS(3), 1, + STATE(6367), 1, + aux_sym_shebang_repeat1, + STATE(7197), 1, + sym_val_list, + STATE(7504), 1, + aux_sym_val_table_repeat1, + [218287] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(10022), 1, + ACTIONS(9605), 1, anon_sym_RBRACK, STATE(6087), 1, sym_comment, - STATE(6263), 1, + STATE(6368), 1, aux_sym_shebang_repeat1, - STATE(7108), 1, + STATE(7202), 1, sym_val_list, - STATE(7292), 1, + STATE(7506), 1, aux_sym_val_table_repeat1, - [216939] = 4, - ACTIONS(3), 1, + [218312] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2204), 1, - anon_sym_DASH, + ACTIONS(511), 1, + anon_sym_DQUOTE, + ACTIONS(9607), 1, + aux_sym_path_token1, + STATE(1851), 1, + sym__str_double_quotes, + STATE(2723), 1, + sym_val_string, STATE(6088), 1, sym_comment, - ACTIONS(2206), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [216956] = 8, - ACTIONS(3), 1, + ACTIONS(513), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218335] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(5194), 1, - sym__blosure, + anon_sym_RBRACK, STATE(6089), 1, sym_comment, - [216981] = 4, - ACTIONS(3), 1, + STATE(6332), 1, + aux_sym_shebang_repeat1, + STATE(7280), 1, + sym_val_list, + STATE(7393), 1, + aux_sym_val_table_repeat1, + [218360] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2927), 1, - anon_sym_DASH, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9611), 1, + anon_sym_RBRACK, STATE(6090), 1, sym_comment, - ACTIONS(2925), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [216998] = 5, - ACTIONS(3), 1, + STATE(6370), 1, + aux_sym_shebang_repeat1, + STATE(7218), 1, + sym_val_list, + STATE(7513), 1, + aux_sym_val_table_repeat1, + [218385] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(906), 1, - anon_sym_DASH, - ACTIONS(10024), 1, - anon_sym_QMARK2, + ACTIONS(9613), 1, + anon_sym_DQUOTE, + ACTIONS(9617), 1, + aux_sym_path_token1, + STATE(1452), 1, + sym_val_string, + STATE(1504), 1, + sym__str_double_quotes, STATE(6091), 1, sym_comment, - ACTIONS(908), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [217017] = 8, - ACTIONS(3), 1, + ACTIONS(9615), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218408] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(5195), 1, - sym__blosure, + ACTIONS(9619), 1, + anon_sym_DQUOTE, + ACTIONS(9623), 1, + aux_sym_path_token1, + STATE(1617), 1, + sym__str_double_quotes, + STATE(1624), 1, + sym_val_string, STATE(6092), 1, sym_comment, - [217042] = 8, - ACTIONS(3), 1, + ACTIONS(9621), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218431] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(5195), 1, - sym__blosure, - STATE(5971), 1, - aux_sym_shebang_repeat1, + ACTIONS(9625), 1, + anon_sym_DASH_DASH, + ACTIONS(9627), 1, + anon_sym_DASH, + ACTIONS(9629), 1, + anon_sym_in, STATE(6093), 1, sym_comment, - [217067] = 4, - ACTIONS(3), 1, + STATE(7732), 1, + sym__flag, + STATE(5714), 2, + sym_short_flag, + sym_long_flag, + [218454] = 7, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5113), 1, - anon_sym_DASH, + ACTIONS(9631), 1, + aux_sym_path_token1, + STATE(1668), 1, + sym__str_double_quotes, STATE(6094), 1, sym_comment, - ACTIONS(5111), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [217084] = 8, - ACTIONS(3), 1, + STATE(7291), 1, + sym_val_string, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218477] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(5151), 1, - sym__blosure, + ACTIONS(3581), 1, + anon_sym_DQUOTE, + ACTIONS(9633), 1, + aux_sym_path_token1, + STATE(3756), 1, + sym__str_double_quotes, + STATE(3776), 1, + sym_val_string, STATE(6095), 1, sym_comment, - [217109] = 5, - ACTIONS(121), 1, + ACTIONS(3583), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218500] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2159), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, + ACTIONS(9635), 1, + anon_sym_DQUOTE, + ACTIONS(9639), 1, + aux_sym_path_token1, + STATE(4364), 1, + sym_val_string, + STATE(4392), 1, + sym__str_double_quotes, STATE(6096), 1, sym_comment, - ACTIONS(2155), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [217128] = 5, - ACTIONS(121), 1, + ACTIONS(9637), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218523] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - ACTIONS(2165), 1, - aux_sym_ctrl_match_token1, + ACTIONS(9641), 1, + anon_sym_DQUOTE, + ACTIONS(9645), 1, + aux_sym_path_token1, + STATE(2788), 1, + sym_val_string, + STATE(2801), 1, + sym__str_double_quotes, STATE(6097), 1, sym_comment, - ACTIONS(2163), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [217147] = 6, - ACTIONS(3), 1, + ACTIONS(9643), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218546] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1580), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10026), 1, - anon_sym_DOT_DOT2, + ACTIONS(9647), 1, + anon_sym_DQUOTE, + ACTIONS(9651), 1, + aux_sym_path_token1, + STATE(4286), 1, + sym_val_string, + STATE(4311), 1, + sym__str_double_quotes, STATE(6098), 1, sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(10028), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [217168] = 6, - ACTIONS(3), 1, + ACTIONS(9649), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218569] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1595), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10030), 1, - anon_sym_DOT_DOT2, + ACTIONS(9653), 1, + anon_sym_DQUOTE, + ACTIONS(9657), 1, + aux_sym_path_token1, + STATE(3626), 1, + sym_val_string, + STATE(3630), 1, + sym__str_double_quotes, STATE(6099), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(10032), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [217189] = 4, - ACTIONS(121), 1, + ACTIONS(9655), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218592] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5662), 1, - aux_sym_unquoted_token3, + ACTIONS(9659), 1, + anon_sym_DQUOTE, + ACTIONS(9663), 1, + aux_sym_path_token1, + STATE(1432), 1, + sym_val_string, + STATE(1434), 1, + sym__str_double_quotes, STATE(6100), 1, sym_comment, - ACTIONS(3239), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [217206] = 7, - ACTIONS(3), 1, + ACTIONS(9661), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218615] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4215), 1, + ACTIONS(9665), 1, anon_sym_DQUOTE, - ACTIONS(9776), 1, + ACTIONS(9669), 1, aux_sym_path_token1, - STATE(2109), 1, - sym_val_string, - STATE(4973), 1, + STATE(4222), 1, sym__str_double_quotes, + STATE(4239), 1, + sym_val_string, STATE(6101), 1, sym_comment, - ACTIONS(4217), 2, + ACTIONS(9667), 2, sym__str_single_quotes, sym__str_back_ticks, - [217229] = 6, - ACTIONS(121), 1, + [218638] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__entry_separator, - ACTIONS(10034), 1, - anon_sym_DOT_DOT2, + ACTIONS(9671), 1, + anon_sym_DQUOTE, + ACTIONS(9675), 1, + aux_sym_path_token1, + STATE(2836), 1, + sym_val_string, + STATE(2906), 1, + sym__str_double_quotes, STATE(6102), 1, sym_comment, - ACTIONS(1879), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(10036), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [217250] = 5, - ACTIONS(3), 1, + ACTIONS(9673), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218661] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, + ACTIONS(9677), 1, + anon_sym_DQUOTE, + ACTIONS(9681), 1, + aux_sym_path_token1, + STATE(3102), 1, + sym_val_string, + STATE(3178), 1, + sym__str_double_quotes, STATE(6103), 1, sym_comment, - STATE(6446), 1, - sym_block, - ACTIONS(10038), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217269] = 4, - ACTIONS(3), 1, + ACTIONS(9679), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218684] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1744), 1, - anon_sym_DASH, + ACTIONS(9683), 1, + anon_sym_DQUOTE, + ACTIONS(9687), 1, + aux_sym_path_token1, + STATE(399), 1, + sym_val_string, + STATE(402), 1, + sym__str_double_quotes, STATE(6104), 1, sym_comment, - ACTIONS(1746), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [217286] = 6, - ACTIONS(3), 1, + ACTIONS(9685), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218707] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10040), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10042), 1, - aux_sym_unquoted_token2, + ACTIONS(9689), 1, + anon_sym_DQUOTE, + ACTIONS(9693), 1, + aux_sym_path_token1, + STATE(478), 1, + sym__str_double_quotes, + STATE(514), 1, + sym_val_string, STATE(6105), 1, sym_comment, - ACTIONS(2925), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - ACTIONS(2927), 2, - sym_identifier, - anon_sym_DASH, - [217307] = 5, - ACTIONS(121), 1, + ACTIONS(9691), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218730] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10044), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3705), 1, + anon_sym_DQUOTE, + ACTIONS(9695), 1, + aux_sym_path_token1, + STATE(4919), 1, + sym__str_double_quotes, + STATE(5098), 1, + sym_val_string, STATE(6106), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [217326] = 7, - ACTIONS(3), 1, + ACTIONS(3707), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218753] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10046), 1, + ACTIONS(9697), 1, anon_sym_DQUOTE, - ACTIONS(10050), 1, + ACTIONS(9701), 1, aux_sym_path_token1, - STATE(1385), 1, - sym_val_string, - STATE(1394), 1, + STATE(4549), 1, sym__str_double_quotes, + STATE(4664), 1, + sym_val_string, STATE(6107), 1, sym_comment, - ACTIONS(10048), 2, + ACTIONS(9699), 2, sym__str_single_quotes, sym__str_back_ticks, - [217349] = 6, - ACTIONS(121), 1, + [218776] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10044), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10052), 1, - anon_sym_DOT, + ACTIONS(4525), 1, + anon_sym_DQUOTE, + ACTIONS(9703), 1, + aux_sym_path_token1, + STATE(3735), 1, + sym__str_double_quotes, + STATE(3750), 1, + sym_val_string, STATE(6108), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [217370] = 8, - ACTIONS(3), 1, + ACTIONS(4527), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218799] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9597), 1, - sym__newline, - ACTIONS(9599), 1, - anon_sym_SEMI, - ACTIONS(10055), 1, - anon_sym_RPAREN, - STATE(281), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(9705), 1, + anon_sym_DQUOTE, + ACTIONS(9709), 1, + aux_sym_path_token1, + STATE(2825), 1, + sym_val_string, + STATE(2833), 1, + sym__str_double_quotes, STATE(6109), 1, sym_comment, - STATE(6757), 1, - aux_sym__block_body_repeat1, - STATE(6987), 1, - aux_sym_shebang_repeat1, - [217395] = 6, - ACTIONS(3), 1, + ACTIONS(9707), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218822] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(10057), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9711), 1, + anon_sym_DQUOTE, + ACTIONS(9715), 1, + aux_sym_path_token1, + STATE(3030), 1, + sym_val_string, + STATE(3067), 1, + sym__str_double_quotes, STATE(6110), 1, sym_comment, - ACTIONS(1705), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [217416] = 4, - ACTIONS(3), 1, + ACTIONS(9713), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218845] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10061), 1, - anon_sym_COMMA, + ACTIONS(9717), 1, + anon_sym_DQUOTE, + ACTIONS(9721), 1, + aux_sym_path_token1, + STATE(967), 1, + sym_val_string, + STATE(972), 1, + sym__str_double_quotes, STATE(6111), 1, sym_comment, - ACTIONS(10059), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, + ACTIONS(9719), 2, sym__str_single_quotes, sym__str_back_ticks, - [217433] = 6, - ACTIONS(3), 1, + [218868] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(10063), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10065), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9723), 1, + anon_sym_DQUOTE, + ACTIONS(9727), 1, + aux_sym_path_token1, + STATE(764), 1, + sym_val_string, + STATE(769), 1, + sym__str_double_quotes, STATE(6112), 1, sym_comment, - ACTIONS(1472), 3, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT, - [217454] = 4, - ACTIONS(3), 1, + ACTIONS(9725), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218891] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, + ACTIONS(9729), 1, + anon_sym_DQUOTE, + ACTIONS(9733), 1, + aux_sym_path_token1, + STATE(146), 1, + sym__str_double_quotes, + STATE(149), 1, + sym_val_string, STATE(6113), 1, sym_comment, - ACTIONS(5131), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [217471] = 6, - ACTIONS(121), 1, + ACTIONS(9731), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218914] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(895), 1, - sym__entry_separator, - ACTIONS(10067), 1, - anon_sym_DOT, - STATE(6887), 1, - sym_path, - ACTIONS(893), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6114), 2, + ACTIONS(9735), 1, + anon_sym_DQUOTE, + ACTIONS(9739), 1, + aux_sym_path_token1, + STATE(433), 1, + sym_val_string, + STATE(438), 1, + sym__str_double_quotes, + STATE(6114), 1, sym_comment, - aux_sym_cell_path_repeat1, - [217492] = 4, - ACTIONS(3), 1, + ACTIONS(9737), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218937] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2329), 1, - anon_sym_DASH, + ACTIONS(9741), 1, + anon_sym_DQUOTE, + ACTIONS(9745), 1, + aux_sym_path_token1, + STATE(297), 1, + sym__str_double_quotes, + STATE(320), 1, + sym_val_string, STATE(6115), 1, sym_comment, - ACTIONS(2331), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [217509] = 7, - ACTIONS(3), 1, + ACTIONS(9743), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [218960] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(433), 1, + ACTIONS(9747), 1, anon_sym_DQUOTE, - ACTIONS(10070), 1, + ACTIONS(9751), 1, aux_sym_path_token1, - STATE(1651), 1, + STATE(2775), 1, sym_val_string, - STATE(1682), 1, + STATE(2776), 1, sym__str_double_quotes, STATE(6116), 1, sym_comment, - ACTIONS(435), 2, + ACTIONS(9749), 2, sym__str_single_quotes, sym__str_back_ticks, - [217532] = 4, - ACTIONS(121), 1, + [218983] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9753), 1, + anon_sym_DQUOTE, + ACTIONS(9757), 1, + aux_sym_path_token1, + STATE(2983), 1, + sym__str_double_quotes, + STATE(3011), 1, + sym_val_string, STATE(6117), 1, sym_comment, - ACTIONS(1913), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1915), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [217549] = 7, - ACTIONS(121), 1, + ACTIONS(9755), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [219006] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(10072), 1, - anon_sym_DQUOTE2, + ACTIONS(9759), 1, + anon_sym_DQUOTE, + ACTIONS(9763), 1, + aux_sym_path_token1, + STATE(255), 1, + sym__str_double_quotes, + STATE(259), 1, + sym_val_string, STATE(6118), 1, sym_comment, - STATE(6120), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217572] = 4, + ACTIONS(9761), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [219029] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(948), 1, - anon_sym_DASH, - STATE(6119), 1, - sym_comment, - ACTIONS(950), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [217589] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9603), 1, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(10074), 1, + ACTIONS(9765), 1, anon_sym_DQUOTE2, - STATE(6120), 1, + STATE(6119), 1, sym_comment, - STATE(6158), 1, + STATE(6177), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(9605), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [217612] = 8, - ACTIONS(3), 1, + [219052] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(10076), 1, + ACTIONS(9767), 1, anon_sym_RBRACK, - STATE(6121), 1, + STATE(6120), 1, sym_comment, - STATE(6282), 1, + STATE(6322), 1, aux_sym_shebang_repeat1, - STATE(7187), 1, + STATE(6999), 1, sym_val_list, - STATE(7305), 1, + STATE(7365), 1, aux_sym_val_table_repeat1, - [217637] = 4, + [219077] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5137), 1, - anon_sym_DASH, - STATE(6122), 1, + ACTIONS(3954), 1, + sym__space, + STATE(6121), 1, sym_comment, - ACTIONS(5135), 5, - ts_builtin_sym_end, + ACTIONS(3952), 5, sym__newline, - anon_sym_SEMI, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [217654] = 6, - ACTIONS(3), 1, + anon_sym_DASH, + aux_sym_ctrl_match_token1, + [219094] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1368), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(10078), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10080), 1, - aux_sym__immediate_decimal_token2, - STATE(6123), 1, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + ACTIONS(9769), 1, + anon_sym_DOT_DOT2, + STATE(6122), 1, sym_comment, - ACTIONS(1370), 3, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(1717), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9771), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [219115] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3239), 1, aux_sym_record_entry_token1, - [217675] = 8, - ACTIONS(3), 1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, + STATE(6123), 1, + sym_comment, + STATE(6891), 1, + sym__assignment_pattern, + STATE(7113), 1, + sym__variable_name, + [219140] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(10082), 1, - anon_sym_RBRACK, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, STATE(6124), 1, sym_comment, - STATE(6283), 1, - aux_sym_shebang_repeat1, - STATE(7194), 1, - sym_val_list, - STATE(7307), 1, - aux_sym_val_table_repeat1, - [217700] = 8, - ACTIONS(3), 1, + STATE(6895), 1, + sym__assignment_pattern, + STATE(7113), 1, + sym__variable_name, + [219165] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(10084), 1, - anon_sym_RBRACK, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, STATE(6125), 1, sym_comment, - STATE(6217), 1, - aux_sym_shebang_repeat1, - STATE(7265), 1, - aux_sym_val_table_repeat1, - STATE(7346), 1, - sym_val_list, - [217725] = 8, - ACTIONS(3), 1, + STATE(6935), 1, + sym__assignment_pattern, + STATE(7113), 1, + sym__variable_name, + [219190] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(10086), 1, - anon_sym_RBRACK, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, STATE(6126), 1, sym_comment, - STATE(6212), 1, - aux_sym_shebang_repeat1, - STATE(7262), 1, - aux_sym_val_table_repeat1, - STATE(7269), 1, - sym_val_list, - [217750] = 5, - ACTIONS(121), 1, + STATE(6935), 1, + sym__assignment_pattern, + STATE(7113), 1, + sym__variable_name, + [219215] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10088), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(5386), 1, + sym__blosure, STATE(6127), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1537), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [217769] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10092), 1, - anon_sym_COMMA, - STATE(6128), 1, - sym_comment, - ACTIONS(10090), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217786] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10094), 1, - anon_sym_DQUOTE, - ACTIONS(10098), 1, - aux_sym_path_token1, - STATE(2512), 1, - sym__str_double_quotes, - STATE(2530), 1, - sym_val_string, - STATE(6129), 1, - sym_comment, - ACTIONS(10096), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [217809] = 4, - ACTIONS(3), 1, + [219240] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, + ACTIONS(5172), 1, anon_sym_DASH, - STATE(6130), 1, + STATE(6128), 1, sym_comment, - ACTIONS(3241), 5, + ACTIONS(5170), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [217826] = 8, - ACTIONS(121), 1, + [219257] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7637), 1, - anon_sym_RBRACK, - ACTIONS(7639), 1, - sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(9773), 1, anon_sym_DOT, - STATE(5888), 1, + STATE(6519), 1, + sym_path, + STATE(6129), 2, + sym_comment, aux_sym_cell_path_repeat1, + ACTIONS(955), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [219276] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9776), 1, + anon_sym_DQUOTE2, + STATE(6130), 1, + sym_comment, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [219299] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1481), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9778), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9780), 1, + aux_sym__immediate_decimal_token2, STATE(6131), 1, sym_comment, - STATE(6887), 1, - sym_path, - STATE(7513), 1, - sym_cell_path, - [217851] = 4, - ACTIONS(3), 1, + ACTIONS(1483), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [219320] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_DASH, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, STATE(6132), 1, sym_comment, - ACTIONS(2228), 5, - ts_builtin_sym_end, + STATE(6428), 1, + sym_block, + ACTIONS(9782), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [217868] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219339] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1518), 1, - aux_sym_unquoted_token2, - ACTIONS(10100), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9784), 1, + sym_long_flag_identifier, + ACTIONS(9786), 1, + anon_sym_EQ2, STATE(6133), 1, sym_comment, - ACTIONS(1520), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [217887] = 7, - ACTIONS(121), 1, + ACTIONS(4950), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(4952), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [219360] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(10102), 1, - anon_sym_DQUOTE2, - STATE(5962), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(4286), 1, + anon_sym_DQUOTE, + ACTIONS(9788), 1, + aux_sym_path_token1, + STATE(4863), 1, + sym__str_double_quotes, + STATE(5595), 1, + sym_val_string, STATE(6134), 1, - sym_comment, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217910] = 8, - ACTIONS(121), 1, + sym_comment, + ACTIONS(4288), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [219383] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1701), 1, - anon_sym_RBRACK, - ACTIONS(1705), 1, - sym__entry_separator, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(10104), 1, - aux_sym__immediate_decimal_token1, STATE(6135), 1, sym_comment, - [217935] = 7, - ACTIONS(121), 1, + ACTIONS(1982), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1984), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [219400] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(10106), 1, - anon_sym_DQUOTE2, + ACTIONS(2101), 1, + aux_sym_ctrl_match_token1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, STATE(6136), 1, sym_comment, - STATE(6138), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217958] = 8, - ACTIONS(121), 1, + ACTIONS(2097), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [219419] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_RBRACE, - ACTIONS(1699), 1, - sym__entry_separator, - ACTIONS(9489), 1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + ACTIONS(2107), 1, + aux_sym_ctrl_match_token1, + STATE(6137), 1, + sym_comment, + ACTIONS(2105), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [219438] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8853), 1, anon_sym_DOT, - STATE(540), 1, + STATE(3345), 1, sym_cell_path, - STATE(5888), 1, + STATE(5525), 1, aux_sym_cell_path_repeat1, - STATE(6137), 1, - sym_comment, - STATE(6887), 1, + STATE(5711), 1, sym_path, - [217983] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(10108), 1, - anon_sym_DQUOTE2, STATE(6138), 1, sym_comment, - STATE(6158), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [218006] = 8, - ACTIONS(3), 1, + ACTIONS(947), 2, + anon_sym_EQ, + anon_sym_COLON, + [219461] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(10110), 1, - anon_sym_RBRACK, + ACTIONS(9790), 1, + anon_sym_EQ2, + ACTIONS(9792), 1, + sym_short_flag_identifier, STATE(6139), 1, sym_comment, - STATE(6287), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym_val_list, - STATE(7313), 1, - aux_sym_val_table_repeat1, - [218031] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2394), 1, + ACTIONS(4942), 2, + anon_sym_DASH_DASH, anon_sym_DASH, + ACTIONS(4944), 2, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + [219482] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8687), 1, + aux_sym__immediate_decimal_token5, STATE(6140), 1, sym_comment, - ACTIONS(2396), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [218048] = 6, - ACTIONS(3), 1, + STATE(7575), 1, + sym__immediate_decimal, + ACTIONS(8683), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [219505] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1518), 1, + ACTIONS(1589), 1, aux_sym_unquoted_token2, - ACTIONS(10100), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10112), 1, + ACTIONS(9794), 1, anon_sym_DOT, + ACTIONS(9796), 1, + aux_sym__immediate_decimal_token2, STATE(6141), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1591), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [218069] = 8, + [219526] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, + ACTIONS(4817), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, STATE(6142), 1, sym_comment, - STATE(6875), 1, - sym__assignment_pattern, - STATE(7055), 1, - sym__variable_name, - [218094] = 7, - ACTIONS(3), 1, + STATE(6287), 1, + sym__immediate_decimal, + [219551] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, + ACTIONS(1429), 1, aux_sym_unquoted_token2, - ACTIONS(2979), 1, + ACTIONS(8685), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, + ACTIONS(8687), 1, + aux_sym__immediate_decimal_token5, STATE(6143), 1, sym_comment, - STATE(7473), 1, + STATE(7729), 1, sym__immediate_decimal, - ACTIONS(2977), 2, + ACTIONS(8683), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [218117] = 5, - ACTIONS(121), 1, + [219574] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10115), 1, - anon_sym_DOT, - STATE(6479), 1, - sym_path, - STATE(6144), 2, + ACTIONS(4817), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, + STATE(6144), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(893), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [218136] = 8, - ACTIONS(3), 1, + STATE(7647), 1, + sym__immediate_decimal, + [219599] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(10118), 1, - anon_sym_RBRACK, + ACTIONS(4950), 1, + anon_sym_DASH, + ACTIONS(9798), 1, + sym_long_flag_identifier, + ACTIONS(9800), 1, + anon_sym_EQ2, STATE(6145), 1, sym_comment, - STATE(6305), 1, - aux_sym_shebang_repeat1, - STATE(7404), 1, - sym_val_list, - STATE(7438), 1, - aux_sym_val_table_repeat1, - [218161] = 5, + ACTIONS(4952), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [219620] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(9483), 1, + ACTIONS(9802), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9804), 1, aux_sym__immediate_decimal_token2, STATE(6146), 1, sym_comment, - ACTIONS(1472), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [218180] = 7, + ACTIONS(1569), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [219641] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10006), 1, - anon_sym_DASH_DASH, - ACTIONS(10008), 1, - anon_sym_DASH, - ACTIONS(10120), 1, - anon_sym_in, + ACTIONS(1843), 1, + anon_sym_RBRACE, + ACTIONS(1845), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(567), 1, + sym_cell_path, STATE(6147), 1, sym_comment, - STATE(7997), 1, - sym__flag, - STATE(5790), 2, - sym_short_flag, - sym_long_flag, - [218203] = 8, - ACTIONS(3), 1, + STATE(6174), 1, + aux_sym_cell_path_repeat1, + STATE(6792), 1, + sym_path, + [219666] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - ACTIONS(10122), 1, - anon_sym_RBRACK, + ACTIONS(4694), 1, + anon_sym_DOT_DOT2, + ACTIONS(9386), 1, + aux_sym_unquoted_token2, STATE(6148), 1, sym_comment, - STATE(6288), 1, - aux_sym_shebang_repeat1, - STATE(7230), 1, - sym_val_list, - STATE(7315), 1, - aux_sym_val_table_repeat1, - [218228] = 7, + ACTIONS(4696), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9500), 2, + sym_filesize_unit, + sym_duration_unit, + [219687] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10006), 1, - anon_sym_DASH_DASH, - ACTIONS(10008), 1, - anon_sym_DASH, - ACTIONS(10124), 1, - anon_sym_in, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9806), 1, + anon_sym_DQUOTE2, STATE(6149), 1, sym_comment, - STATE(7999), 1, - sym__flag, - STATE(5790), 2, - sym_short_flag, - sym_long_flag, - [218251] = 6, - ACTIONS(3), 1, + STATE(6197), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [219710] = 7, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1587), 1, - anon_sym_DASH, - ACTIONS(10126), 1, - anon_sym_DOT_DOT2, + ACTIONS(9808), 1, + aux_sym_path_token1, + STATE(2140), 1, + sym_val_string, + STATE(2144), 1, + sym__str_double_quotes, STATE(6150), 1, sym_comment, - ACTIONS(1595), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(10128), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218272] = 6, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [219733] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1570), 1, - anon_sym_DASH, - ACTIONS(10130), 1, - anon_sym_DOT_DOT2, + ACTIONS(4889), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, STATE(6151), 1, sym_comment, - ACTIONS(1580), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(10132), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218293] = 6, + STATE(6287), 1, + sym__immediate_decimal, + [219758] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, - anon_sym_DASH, - ACTIONS(10134), 1, - anon_sym_DOT_DOT2, + ACTIONS(4889), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, STATE(6152), 1, sym_comment, - ACTIONS(1953), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(10136), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218314] = 8, + STATE(7647), 1, + sym__immediate_decimal, + [219783] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(5172), 1, - sym__blosure, - STATE(5978), 1, - aux_sym_shebang_repeat1, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9810), 1, + anon_sym_DQUOTE2, STATE(6153), 1, sym_comment, - [218339] = 6, + STATE(6158), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [219806] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1863), 1, - anon_sym_DASH, - ACTIONS(10138), 1, - anon_sym_DOT_DOT2, STATE(6154), 1, sym_comment, - ACTIONS(1869), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(10140), 2, + ACTIONS(1021), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1023), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [218360] = 6, + sym__entry_separator, + [219823] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1871), 1, - anon_sym_DASH, - ACTIONS(10142), 1, - anon_sym_DOT_DOT2, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8797), 1, + aux_sym_unquoted_token3, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, STATE(6155), 1, sym_comment, - ACTIONS(1877), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(10144), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218381] = 6, + STATE(6684), 1, + sym__immediate_decimal, + [219848] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - ACTIONS(10146), 1, - anon_sym_DOT_DOT2, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8797), 1, + aux_sym_unquoted_token3, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, STATE(6156), 1, sym_comment, - ACTIONS(1885), 2, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - ACTIONS(10148), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218402] = 7, - ACTIONS(3), 1, + STATE(7761), 1, + sym__immediate_decimal, + [219873] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10150), 1, - anon_sym_DQUOTE, - ACTIONS(10154), 1, - aux_sym_path_token1, + ACTIONS(9466), 1, + sym__newline, + ACTIONS(9468), 1, + anon_sym_SEMI, + ACTIONS(9812), 1, + anon_sym_RPAREN, + STATE(247), 1, + aux_sym__parenthesized_body_repeat1, STATE(6157), 1, sym_comment, - STATE(6244), 1, - sym__str_double_quotes, - STATE(6367), 1, - sym_val_string, - ACTIONS(10152), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218425] = 6, - ACTIONS(121), 1, + STATE(6411), 1, + aux_sym__block_body_repeat1, + STATE(7297), 1, + aux_sym_shebang_repeat1, + [219898] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10156), 1, + ACTIONS(9356), 1, anon_sym_LPAREN, - ACTIONS(10162), 1, + ACTIONS(9814), 1, anon_sym_DQUOTE2, - STATE(6542), 1, + STATE(6158), 1, + sym_comment, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, sym_expr_interpolated, - ACTIONS(10159), 2, + ACTIONS(9358), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(6158), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [218446] = 5, - ACTIONS(3), 1, + [219921] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10164), 1, - anon_sym_DOT_DOT2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9816), 1, + anon_sym_RBRACK, STATE(6159), 1, sym_comment, - ACTIONS(10166), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1953), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218465] = 5, - ACTIONS(3), 1, + STATE(6323), 1, + aux_sym_shebang_repeat1, + STATE(7052), 1, + sym_val_list, + STATE(7368), 1, + aux_sym_val_table_repeat1, + [219946] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10168), 1, - anon_sym_DOT_DOT2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9818), 1, + anon_sym_RBRACK, STATE(6160), 1, sym_comment, - ACTIONS(10170), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1869), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218484] = 5, - ACTIONS(3), 1, + STATE(6326), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym_val_list, + STATE(7376), 1, + aux_sym_val_table_repeat1, + [219971] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10172), 1, - anon_sym_DOT_DOT2, + ACTIONS(5153), 1, + anon_sym_DASH, STATE(6161), 1, sym_comment, - ACTIONS(10174), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1877), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218503] = 5, - ACTIONS(3), 1, + ACTIONS(5151), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [219988] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10176), 1, - anon_sym_DOT_DOT2, + ACTIONS(9280), 1, + anon_sym_def, + ACTIONS(9282), 1, + anon_sym_extern, + ACTIONS(9284), 1, + anon_sym_module, + ACTIONS(9286), 1, + anon_sym_use, + ACTIONS(9820), 1, + anon_sym_alias, + ACTIONS(9822), 1, + anon_sym_const, STATE(6162), 1, sym_comment, - ACTIONS(10178), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1885), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218522] = 8, + [220013] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(5151), 1, - sym__blosure, - STATE(6092), 1, - aux_sym_shebang_repeat1, + ACTIONS(2957), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, STATE(6163), 1, sym_comment, - [218547] = 6, - ACTIONS(3), 1, + STATE(6287), 1, + sym__immediate_decimal, + [220038] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2927), 1, - anon_sym_DASH, - ACTIONS(10042), 1, - aux_sym_unquoted_token2, - ACTIONS(10180), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9824), 1, + anon_sym_RBRACK, STATE(6164), 1, sym_comment, - ACTIONS(2925), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [218568] = 7, - ACTIONS(121), 1, + STATE(6329), 1, + aux_sym_shebang_repeat1, + STATE(7344), 1, + sym_val_list, + STATE(7383), 1, + aux_sym_val_table_repeat1, + [220063] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(10182), 1, - anon_sym_DQUOTE2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9826), 1, + anon_sym_RBRACK, STATE(6165), 1, sym_comment, - STATE(6167), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [218591] = 4, + STATE(6330), 1, + aux_sym_shebang_repeat1, + STATE(7348), 1, + sym_val_list, + STATE(7386), 1, + aux_sym_val_table_repeat1, + [220088] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2333), 1, - anon_sym_DASH, + ACTIONS(2957), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, STATE(6166), 1, sym_comment, - ACTIONS(2335), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [218608] = 7, - ACTIONS(121), 1, + STATE(7647), 1, + sym__immediate_decimal, + [220113] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_LPAREN, - ACTIONS(10184), 1, - anon_sym_DQUOTE2, - STATE(6158), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(9828), 1, + anon_sym_DOT_DOT2, STATE(6167), 1, sym_comment, - STATE(6542), 1, - sym_expr_interpolated, - ACTIONS(9605), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [218631] = 5, + ACTIONS(1698), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9830), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220134] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1535), 1, - aux_sym_unquoted_token2, - ACTIONS(10186), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2093), 1, + aux_sym_ctrl_match_token1, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, STATE(6168), 1, sym_comment, - ACTIONS(1537), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [218650] = 8, - ACTIONS(3), 1, + ACTIONS(2089), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [220153] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(10188), 1, + ACTIONS(9832), 1, anon_sym_RBRACK, STATE(6169), 1, sym_comment, - STATE(6291), 1, + STATE(6327), 1, aux_sym_shebang_repeat1, - STATE(7294), 1, + STATE(7240), 1, sym_val_list, - STATE(7321), 1, + STATE(7378), 1, aux_sym_val_table_repeat1, - [218675] = 7, - ACTIONS(3), 1, + [220178] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, + ACTIONS(1457), 1, aux_sym_unquoted_token2, - ACTIONS(2935), 1, + ACTIONS(8685), 1, aux_sym__immediate_decimal_token4, - ACTIONS(10190), 1, - anon_sym_DOT, + ACTIONS(8687), 1, + aux_sym__immediate_decimal_token5, STATE(6170), 1, sym_comment, - STATE(6276), 1, + STATE(7636), 1, sym__immediate_decimal, - ACTIONS(2933), 2, + ACTIONS(8683), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [218698] = 7, - ACTIONS(3), 1, + [220201] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(5391), 1, + sym__blosure, + STATE(6171), 1, + sym_comment, + [220226] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4504), 1, + ACTIONS(9834), 1, anon_sym_DQUOTE, - ACTIONS(10192), 1, + ACTIONS(9838), 1, aux_sym_path_token1, - STATE(5769), 1, - sym_val_string, - STATE(5780), 1, + STATE(2622), 1, sym__str_double_quotes, - STATE(6171), 1, + STATE(2624), 1, + sym_val_string, + STATE(6172), 1, sym_comment, - ACTIONS(4506), 2, + ACTIONS(9836), 2, sym__str_single_quotes, sym__str_back_ticks, - [218721] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(6172), 1, - sym_comment, - STATE(7077), 1, - sym_val_list, - STATE(7393), 1, - aux_sym_val_table_repeat1, - [218743] = 7, - ACTIONS(3), 1, + [220249] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, STATE(6173), 1, sym_comment, - STATE(6874), 1, - sym__assignment_pattern, - STATE(7055), 1, - sym__variable_name, - [218765] = 4, + ACTIONS(1589), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1591), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220266] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5113), 1, - anon_sym_DASH, + ACTIONS(953), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(6038), 1, + aux_sym_cell_path_repeat1, STATE(6174), 1, sym_comment, - ACTIONS(5111), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [218781] = 7, + STATE(6792), 1, + sym_path, + ACTIONS(951), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220289] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, + ACTIONS(1008), 1, + sym__entry_separator, + ACTIONS(9840), 1, + anon_sym_DOT_DOT2, STATE(6175), 1, sym_comment, - STATE(6875), 1, - sym__assignment_pattern, - STATE(7055), 1, - sym__variable_name, - [218803] = 7, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9842), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220310] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10198), 1, - anon_sym_SQUOTE, + ACTIONS(7391), 1, + anon_sym_RBRACK, + ACTIONS(7393), 1, + sym__entry_separator, + ACTIONS(9230), 1, + anon_sym_DOT, + STATE(6174), 1, + aux_sym_cell_path_repeat1, STATE(6176), 1, sym_comment, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [218825] = 7, - ACTIONS(121), 1, + STATE(6792), 1, + sym_path, + STATE(7723), 1, + sym_cell_path, + [220335] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9844), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10200), 1, - anon_sym_SQUOTE, - STATE(6177), 1, - sym_comment, - STATE(6181), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + ACTIONS(9850), 1, + anon_sym_DQUOTE2, + STATE(6937), 1, sym_expr_interpolated, - [218847] = 7, - ACTIONS(3), 1, + ACTIONS(9847), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(6177), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [220356] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1549), 1, - aux_sym_record_entry_token1, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(2045), 1, - sym_cell_path, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, - sym_path, STATE(6178), 1, sym_comment, - [218869] = 7, - ACTIONS(3), 1, + ACTIONS(1569), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1571), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220373] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, + anon_sym_DASH_DASH, + ACTIONS(9627), 1, + anon_sym_DASH, + ACTIONS(9852), 1, + anon_sym_in, STATE(6179), 1, sym_comment, - STATE(6920), 1, - sym__variable_name, - STATE(6969), 1, - sym__assignment_pattern, - [218891] = 5, - ACTIONS(3), 1, + STATE(7790), 1, + sym__flag, + STATE(5714), 2, + sym_short_flag, + sym_long_flag, + [220396] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - anon_sym_DASH, - ACTIONS(8907), 1, - aux_sym_unquoted_token6, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(5237), 1, + sym__blosure, STATE(6180), 1, sym_comment, - ACTIONS(1441), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [218909] = 7, - ACTIONS(121), 1, + [220421] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10202), 1, - anon_sym_SQUOTE, + ACTIONS(2072), 1, + sym__entry_separator, + ACTIONS(9854), 1, + anon_sym_DOT_DOT2, STATE(6181), 1, sym_comment, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [218931] = 7, + ACTIONS(2066), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9856), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220442] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, + ACTIONS(1978), 1, + sym__entry_separator, + ACTIONS(9858), 1, + anon_sym_DOT_DOT2, STATE(6182), 1, sym_comment, - STATE(7091), 1, - sym__assignment_pattern_parenthesized, - STATE(7183), 1, - sym__variable_name, - [218953] = 4, - ACTIONS(3), 1, + ACTIONS(1972), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9860), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220463] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1608), 1, - aux_sym_unquoted_token2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5237), 1, + sym__blosure, + STATE(6127), 1, + aux_sym_shebang_repeat1, STATE(6183), 1, sym_comment, - ACTIONS(1610), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [218969] = 7, + [220488] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9862), 1, + anon_sym_DQUOTE2, STATE(6184), 1, sym_comment, - STATE(6940), 1, - sym__assignment_pattern_parenthesized, - STATE(7183), 1, - sym__variable_name, - [218991] = 7, - ACTIONS(3), 1, + STATE(6196), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [220511] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, STATE(6185), 1, sym_comment, - STATE(7154), 1, - sym__assignment_pattern_parenthesized, - STATE(7183), 1, - sym__variable_name, - [219013] = 4, - ACTIONS(121), 1, + ACTIONS(1648), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1650), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220528] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(6186), 1, sym_comment, - ACTIONS(1470), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1472), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [219029] = 3, - ACTIONS(3), 1, + ACTIONS(1721), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1723), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220545] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9625), 1, + anon_sym_DASH_DASH, + ACTIONS(9627), 1, + anon_sym_DASH, + ACTIONS(9864), 1, + anon_sym_in, STATE(6187), 1, sym_comment, - ACTIONS(10204), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [219043] = 5, - ACTIONS(3), 1, + STATE(8009), 1, + sym__flag, + STATE(5714), 2, + sym_short_flag, + sym_long_flag, + [220568] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, + ACTIONS(9625), 1, + anon_sym_DASH_DASH, + ACTIONS(9627), 1, + anon_sym_DASH, + ACTIONS(9866), 1, + anon_sym_in, STATE(6188), 1, sym_comment, - STATE(7038), 1, - sym_block, - ACTIONS(9754), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219061] = 5, - ACTIONS(3), 1, + STATE(8011), 1, + sym__flag, + STATE(5714), 2, + sym_short_flag, + sym_long_flag, + [220591] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, + ACTIONS(9868), 1, + anon_sym_DOT_DOT2, STATE(6189), 1, sym_comment, - STATE(7100), 1, - sym_block, - ACTIONS(9754), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219079] = 3, + ACTIONS(9870), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1941), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220610] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7059), 1, + aux_sym_unquoted_token3, + ACTIONS(8378), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, STATE(6190), 1, sym_comment, - ACTIONS(10206), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [219093] = 3, + STATE(6684), 1, + sym__immediate_decimal, + [220635] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7059), 1, + aux_sym_unquoted_token3, + ACTIONS(8683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token5, STATE(6191), 1, sym_comment, - ACTIONS(10208), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [219107] = 5, + STATE(7761), 1, + sym__immediate_decimal, + [220660] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, - aux_sym_unquoted_token2, - ACTIONS(7525), 1, - anon_sym_DOT, + ACTIONS(1966), 1, + sym__entry_separator, + ACTIONS(9872), 1, + anon_sym_DOT_DOT2, STATE(6192), 1, sym_comment, - ACTIONS(1945), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [219125] = 7, - ACTIONS(121), 1, + ACTIONS(1960), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9874), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220681] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10210), 1, - anon_sym_SQUOTE, + ACTIONS(9876), 1, + anon_sym_DOT_DOT2, STATE(6193), 1, sym_comment, - STATE(6198), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [219147] = 5, - ACTIONS(121), 1, + ACTIONS(9878), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220700] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10212), 1, - anon_sym_QMARK2, + ACTIONS(9880), 1, + anon_sym_DOT_DOT2, STATE(6194), 1, sym_comment, - ACTIONS(906), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(908), 2, - anon_sym_DOT, - sym__entry_separator, - [219165] = 5, - ACTIONS(3), 1, + ACTIONS(9882), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1978), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220719] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1535), 1, - aux_sym_unquoted_token2, - ACTIONS(10214), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9884), 1, + anon_sym_DOT_DOT2, STATE(6195), 1, sym_comment, - ACTIONS(1537), 3, + ACTIONS(9886), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1966), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - anon_sym_DOT, - [219183] = 6, + [220738] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9888), 1, + anon_sym_DQUOTE2, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, STATE(6196), 1, sym_comment, - STATE(7596), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [219203] = 7, - ACTIONS(121), 1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [220761] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1570), 1, - anon_sym_RBRACE, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1580), 1, - sym__entry_separator, - ACTIONS(7472), 1, - anon_sym_DOT, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9890), 1, + anon_sym_DQUOTE2, + STATE(6177), 1, + aux_sym__inter_double_quotes_repeat1, STATE(6197), 1, sym_comment, - [219225] = 7, - ACTIONS(121), 1, + STATE(6937), 1, + sym_expr_interpolated, + ACTIONS(9358), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [220784] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10216), 1, - anon_sym_SQUOTE, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9892), 1, + anon_sym_RBRACK, STATE(6198), 1, sym_comment, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [219247] = 7, - ACTIONS(121), 1, + STATE(6331), 1, + aux_sym_shebang_repeat1, + STATE(7271), 1, + sym_val_list, + STATE(7390), 1, + aux_sym_val_table_repeat1, + [220809] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10218), 1, - anon_sym_SQUOTE, - STATE(6199), 1, - sym_comment, - STATE(6203), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [219269] = 5, - ACTIONS(121), 1, + ACTIONS(3527), 1, + anon_sym_DQUOTE, + ACTIONS(9607), 1, + aux_sym_path_token1, + STATE(2723), 1, + sym_val_string, + STATE(2802), 1, + sym__str_double_quotes, + STATE(6199), 1, + sym_comment, + ACTIONS(3529), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [220832] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3241), 1, - ts_builtin_sym_end, - ACTIONS(5690), 1, - aux_sym_unquoted_token3, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5391), 1, + sym__blosure, + STATE(5958), 1, + aux_sym_shebang_repeat1, STATE(6200), 1, sym_comment, - ACTIONS(3239), 3, + [220857] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9366), 1, aux_sym_ctrl_match_token1, - [219287] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1535), 1, - aux_sym_unquoted_token2, - ACTIONS(10220), 1, - aux_sym__immediate_decimal_token2, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(5240), 1, + sym__blosure, STATE(6201), 1, sym_comment, - ACTIONS(1537), 3, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT, - [219305] = 5, - ACTIONS(3), 1, + [220882] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1376), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(10222), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5240), 1, + sym__blosure, + STATE(6171), 1, + aux_sym_shebang_repeat1, STATE(6202), 1, sym_comment, - ACTIONS(1378), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [219323] = 7, - ACTIONS(121), 1, + [220907] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10224), 1, - anon_sym_SQUOTE, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9894), 1, + anon_sym_RBRACK, STATE(6203), 1, sym_comment, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [219345] = 7, - ACTIONS(3), 1, + STATE(6369), 1, + aux_sym_shebang_repeat1, + STATE(7215), 1, + sym_val_list, + STATE(7510), 1, + aux_sym_val_table_repeat1, + [220932] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(10226), 1, - anon_sym_use, - ACTIONS(10228), 1, - anon_sym_list, - ACTIONS(10230), 1, - anon_sym_hide, - ACTIONS(10232), 1, - anon_sym_new, + ACTIONS(9896), 1, + anon_sym_DOT_DOT2, STATE(6204), 1, sym_comment, - [219367] = 4, - ACTIONS(3), 1, + ACTIONS(2072), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(9898), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220950] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2927), 1, - anon_sym_DASH, + ACTIONS(947), 1, + aux_sym_record_entry_token1, + ACTIONS(9900), 1, + anon_sym_DOT, + STATE(1409), 1, + sym_cell_path, STATE(6205), 1, sym_comment, - ACTIONS(2925), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [219383] = 4, - ACTIONS(121), 1, + STATE(6439), 1, + aux_sym_cell_path_repeat1, + STATE(7697), 1, + sym_path, + [220972] = 5, + ACTIONS(247), 1, anon_sym_POUND, + STATE(224), 1, + aux_sym__block_body_repeat1, STATE(6206), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1537), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [219399] = 3, - ACTIONS(3), 1, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1609), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220990] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1698), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9902), 1, + anon_sym_DOT_DOT2, STATE(6207), 1, sym_comment, - ACTIONS(10234), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [219413] = 5, - ACTIONS(3), 1, + ACTIONS(9904), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [221010] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(5131), 1, anon_sym_DASH, - ACTIONS(10236), 1, - anon_sym_EQ2, STATE(6208), 1, sym_comment, - ACTIONS(5014), 3, + ACTIONS(5129), 4, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [219431] = 6, - ACTIONS(121), 1, + [221026] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_RBRACE, - ACTIONS(1957), 1, - sym__entry_separator, - ACTIONS(9699), 1, - anon_sym_DOT_DOT2, + ACTIONS(5135), 1, + anon_sym_DASH, STATE(6209), 1, sym_comment, - ACTIONS(9701), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219451] = 6, - ACTIONS(121), 1, + ACTIONS(5133), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [221042] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1931), 1, - anon_sym_RBRACE, - ACTIONS(1937), 1, - sym__entry_separator, - ACTIONS(9699), 1, - anon_sym_DOT_DOT2, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9910), 1, + anon_sym_SQUOTE, STATE(6210), 1, sym_comment, - ACTIONS(9701), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219471] = 4, + STATE(6211), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221064] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_DASH, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9912), 1, + anon_sym_SQUOTE, STATE(6211), 1, sym_comment, - ACTIONS(3441), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [219487] = 7, - ACTIONS(3), 1, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221086] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8687), 1, + aux_sym__immediate_decimal_token5, STATE(6212), 1, sym_comment, - STATE(7264), 1, - aux_sym_val_table_repeat1, - STATE(7341), 1, - sym_val_list, - [219509] = 7, - ACTIONS(121), 1, + STATE(7645), 1, + sym__immediate_decimal, + ACTIONS(8683), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [221106] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8144), 1, - sym__newline, - ACTIONS(8146), 1, - sym__space, - STATE(4910), 1, - aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9914), 1, + anon_sym_SQUOTE, STATE(6213), 1, sym_comment, - STATE(6216), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(7675), 1, - sym__flags_parenthesized, - [219531] = 6, - ACTIONS(3), 1, + STATE(6230), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221128] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2979), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4834), 1, - anon_sym_DOT, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6214), 1, sym_comment, - STATE(7273), 1, - sym__immediate_decimal, - ACTIONS(2977), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [219551] = 4, + STATE(7515), 1, + sym_val_list, + STATE(7521), 1, + aux_sym_val_table_repeat1, + [221150] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(932), 1, - anon_sym_DASH, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9916), 1, + anon_sym_SQUOTE, STATE(6215), 1, sym_comment, - ACTIONS(934), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [219567] = 7, - ACTIONS(121), 1, + STATE(6218), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221172] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8144), 1, - sym__newline, - ACTIONS(8146), 1, - sym__space, - STATE(4778), 1, - aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + ACTIONS(9918), 1, + anon_sym_DOT_DOT2, STATE(6216), 1, sym_comment, - STATE(6364), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(7675), 1, - sym__flags_parenthesized, - [219589] = 7, - ACTIONS(3), 1, + ACTIONS(9920), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [221192] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, STATE(6217), 1, sym_comment, - STATE(7004), 1, - sym_val_list, - STATE(7266), 1, - aux_sym_val_table_repeat1, - [219611] = 7, - ACTIONS(121), 1, + STATE(6409), 1, + sym__assignment_pattern, + STATE(7113), 1, + sym__variable_name, + [221214] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10238), 1, + ACTIONS(9922), 1, anon_sym_SQUOTE, STATE(6218), 1, sym_comment, - STATE(6222), 1, + STATE(6241), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(7246), 1, sym_expr_interpolated, - [219633] = 7, - ACTIONS(121), 1, + [221236] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1923), 1, - anon_sym_RBRACE, - ACTIONS(1925), 1, - anon_sym_LPAREN2, - ACTIONS(1927), 1, - sym__entry_separator, - ACTIONS(7502), 1, - anon_sym_DOT, + ACTIONS(1717), 1, + aux_sym_ctrl_match_token1, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + ACTIONS(9924), 1, + anon_sym_DOT_DOT2, STATE(6219), 1, sym_comment, - [219655] = 5, - ACTIONS(3), 1, + ACTIONS(9926), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [221256] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9554), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, STATE(6220), 1, sym_comment, - STATE(7025), 1, - sym_val_record, - ACTIONS(9802), 3, + STATE(7205), 1, + sym_block, + ACTIONS(9352), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219673] = 4, - ACTIONS(3), 1, + [221274] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5165), 1, - anon_sym_DASH, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, STATE(6221), 1, sym_comment, - ACTIONS(5163), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [219689] = 7, - ACTIONS(121), 1, + STATE(7209), 1, + sym_block, + ACTIONS(9352), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221292] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10240), 1, + ACTIONS(9928), 1, anon_sym_SQUOTE, STATE(6222), 1, sym_comment, - STATE(6350), 1, + STATE(6225), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(7246), 1, sym_expr_interpolated, - [219711] = 7, - ACTIONS(121), 1, + [221314] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10242), 1, - anon_sym_SQUOTE, + ACTIONS(1569), 1, + aux_sym_unquoted_token2, + ACTIONS(9930), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9932), 1, + aux_sym__immediate_decimal_token2, STATE(6223), 1, sym_comment, - STATE(6231), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [219733] = 7, + ACTIONS(1571), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [221334] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9934), 1, + anon_sym_SQUOTE, STATE(6224), 1, sym_comment, - STATE(6920), 1, - sym__variable_name, - STATE(6982), 1, - sym__assignment_pattern, - [219755] = 4, + STATE(6228), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221356] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5117), 1, - anon_sym_DASH, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9936), 1, + anon_sym_SQUOTE, STATE(6225), 1, sym_comment, - ACTIONS(5115), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [219771] = 5, - ACTIONS(3), 1, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221378] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5088), 1, - anon_sym_DASH, - ACTIONS(10244), 1, - anon_sym_EQ2, + ACTIONS(1603), 1, + aux_sym_record_entry_token1, + ACTIONS(9900), 1, + anon_sym_DOT, + STATE(1528), 1, + sym_cell_path, STATE(6226), 1, sym_comment, - ACTIONS(5086), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [219789] = 6, - ACTIONS(121), 1, + STATE(6439), 1, + aux_sym_cell_path_repeat1, + STATE(7697), 1, + sym_path, + [221400] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1520), 1, - sym__entry_separator, - ACTIONS(9153), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10246), 1, - anon_sym_DOT, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9938), 1, + anon_sym_SQUOTE, STATE(6227), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219809] = 7, - ACTIONS(121), 1, + STATE(6229), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221422] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10248), 1, + ACTIONS(9940), 1, anon_sym_SQUOTE, STATE(6228), 1, sym_comment, - STATE(6359), 1, + STATE(6241), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(7246), 1, sym_expr_interpolated, - [219831] = 4, + [221444] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DASH, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9942), 1, + anon_sym_SQUOTE, STATE(6229), 1, sym_comment, - ACTIONS(5119), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [219847] = 5, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221466] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10250), 1, - anon_sym_EQ2, - ACTIONS(10252), 1, - sym_short_flag_identifier, - STATE(6230), 1, - sym_comment, - ACTIONS(4888), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [219865] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10254), 1, + ACTIONS(9944), 1, anon_sym_SQUOTE, - STATE(6231), 1, + STATE(6230), 1, sym_comment, - STATE(6350), 1, + STATE(6241), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(7246), 1, sym_expr_interpolated, - [219887] = 7, + [221488] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1589), 1, + aux_sym_unquoted_token2, + ACTIONS(9946), 1, + anon_sym_DOT, + ACTIONS(9948), 1, + aux_sym__immediate_decimal_token2, + STATE(6231), 1, + sym_comment, + ACTIONS(1591), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [221508] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, + ACTIONS(978), 1, + anon_sym_DOT, STATE(6232), 1, sym_comment, - STATE(7040), 1, - sym__assignment_pattern_parenthesized, - STATE(7183), 1, - sym__variable_name, - [219909] = 7, - ACTIONS(121), 1, + ACTIONS(976), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [221524] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1587), 1, - anon_sym_RBRACE, ACTIONS(1589), 1, - anon_sym_LPAREN2, - ACTIONS(1595), 1, - sym__entry_separator, - ACTIONS(7564), 1, - anon_sym_DOT, + aux_sym_unquoted_token2, + ACTIONS(9796), 1, + aux_sym__immediate_decimal_token2, STATE(6233), 1, sym_comment, - [219931] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10256), 1, + ACTIONS(1591), 3, anon_sym_PIPE, - ACTIONS(10258), 1, anon_sym_if, - ACTIONS(10260), 1, anon_sym_EQ_GT, + [221542] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9950), 1, + anon_sym_SQUOTE, STATE(6234), 1, sym_comment, - STATE(7046), 1, - aux_sym_match_pattern_repeat1, - STATE(7969), 1, - sym_match_guard, - [219953] = 4, - ACTIONS(121), 1, + STATE(6235), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221564] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9952), 1, + anon_sym_SQUOTE, STATE(6235), 1, sym_comment, - ACTIONS(1535), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1537), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [219969] = 5, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221586] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10262), 1, - anon_sym_DOT_DOT2, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9954), 1, + anon_sym_SQUOTE, STATE(6236), 1, sym_comment, - ACTIONS(1595), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(10264), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219987] = 6, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221608] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1518), 1, - aux_sym_unquoted_token2, - ACTIONS(10266), 1, - anon_sym_DOT, - ACTIONS(10269), 1, - aux_sym__immediate_decimal_token2, - STATE(6237), 1, + ACTIONS(9956), 1, + sym__newline, + ACTIONS(9959), 1, + sym__space, + STATE(5796), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7571), 1, + sym__flags_parenthesized, + STATE(6237), 2, sym_comment, - ACTIONS(1520), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [220007] = 6, - ACTIONS(3), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + [221628] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9615), 1, - anon_sym_DOT, - STATE(2276), 1, - sym_path, + ACTIONS(5160), 1, + anon_sym_DASH, STATE(6238), 1, sym_comment, - STATE(6297), 1, - aux_sym_cell_path_repeat1, - ACTIONS(891), 2, - anon_sym_EQ, - anon_sym_COLON, - [220027] = 7, - ACTIONS(121), 1, + ACTIONS(5158), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [221644] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9300), 1, + aux_sym_ctrl_match_token1, + STATE(6239), 1, + sym_comment, + STATE(7324), 1, + sym_val_record, + ACTIONS(9426), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221662] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9300), 1, + aux_sym_ctrl_match_token1, + STATE(6240), 1, + sym_comment, + STATE(7326), 1, + sym_val_record, + ACTIONS(9452), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221680] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9962), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9965), 1, sym_unescaped_interpolated_content, - ACTIONS(10271), 1, + ACTIONS(9968), 1, anon_sym_SQUOTE, - STATE(6239), 1, + STATE(7246), 1, + sym_expr_interpolated, + STATE(6241), 2, sym_comment, - STATE(6243), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [220049] = 7, - ACTIONS(121), 1, + [221700] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10273), 1, + ACTIONS(9970), 1, anon_sym_SQUOTE, - STATE(6240), 1, + STATE(6242), 1, sym_comment, - STATE(6350), 1, + STATE(6243), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(7246), 1, sym_expr_interpolated, - [220071] = 7, + [221722] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, - STATE(6241), 1, - sym_comment, - STATE(6434), 1, - sym__assignment_pattern, - STATE(7055), 1, - sym__variable_name, - [220093] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - STATE(6242), 1, - sym_comment, - ACTIONS(1608), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1610), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [220109] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10275), 1, + ACTIONS(9972), 1, anon_sym_SQUOTE, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6243), 1, sym_comment, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(7246), 1, sym_expr_interpolated, - [220131] = 4, - ACTIONS(121), 1, + [221744] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(918), 1, - anon_sym_DOT, + STATE(223), 1, + aux_sym__block_body_repeat1, STATE(6244), 1, sym_comment, - ACTIONS(916), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [220147] = 7, - ACTIONS(3), 1, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1613), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221762] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, + ACTIONS(5153), 1, + anon_sym_DASH, STATE(6245), 1, sym_comment, - STATE(6905), 1, - sym__assignment_pattern, - STATE(6920), 1, - sym__variable_name, - [220169] = 3, + ACTIONS(5151), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [221778] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9974), 1, + anon_sym_SQUOTE, STATE(6246), 1, sym_comment, - ACTIONS(10277), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [220183] = 7, - ACTIONS(121), 1, + STATE(6247), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221800] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10279), 1, + ACTIONS(9976), 1, anon_sym_SQUOTE, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6247), 1, sym_comment, - STATE(6255), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(7246), 1, sym_expr_interpolated, - [220205] = 5, - ACTIONS(3), 1, + [221822] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10281), 1, - anon_sym_DOT_DOT2, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(9978), 1, + anon_sym_use, + ACTIONS(9980), 1, + anon_sym_list, + ACTIONS(9982), 1, + anon_sym_hide, + ACTIONS(9984), 1, + anon_sym_new, STATE(6248), 1, sym_comment, - ACTIONS(1953), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(10283), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220223] = 5, + [221844] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(7564), 1, - anon_sym_DOT, + ACTIONS(1905), 1, + anon_sym_RBRACE, + ACTIONS(1911), 1, + sym__entry_separator, + ACTIONS(9840), 1, + anon_sym_DOT_DOT2, STATE(6249), 1, sym_comment, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220241] = 7, - ACTIONS(3), 1, + ACTIONS(9842), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [221864] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(885), 1, - aux_sym_record_entry_token1, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(1445), 1, - sym_cell_path, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, - sym_path, STATE(6250), 1, sym_comment, - [220263] = 7, - ACTIONS(121), 1, + ACTIONS(9986), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [221878] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10285), 1, + ACTIONS(9988), 1, anon_sym_SQUOTE, STATE(6251), 1, sym_comment, - STATE(6254), 1, + STATE(6252), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(7246), 1, sym_expr_interpolated, - [220285] = 5, + [221900] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10287), 1, - anon_sym_DOT_DOT2, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9990), 1, + anon_sym_SQUOTE, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6252), 1, sym_comment, - ACTIONS(1580), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(10289), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220303] = 5, - ACTIONS(3), 1, + STATE(7246), 1, + sym_expr_interpolated, + [221922] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1518), 1, - aux_sym_unquoted_token2, - ACTIONS(10291), 1, - aux_sym__immediate_decimal_token2, STATE(6253), 1, sym_comment, - ACTIONS(1520), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [220321] = 7, - ACTIONS(121), 1, + ACTIONS(9992), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [221936] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10293), 1, - anon_sym_SQUOTE, + ACTIONS(1525), 1, + anon_sym_DASH, + ACTIONS(8797), 1, + aux_sym_unquoted_token2, STATE(6254), 1, sym_comment, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [220343] = 7, - ACTIONS(121), 1, + ACTIONS(1537), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [221954] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10295), 1, - anon_sym_SQUOTE, + ACTIONS(9994), 1, + anon_sym_QMARK2, STATE(6255), 1, sym_comment, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [220365] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(970), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1941), 1, - anon_sym_LPAREN2, - ACTIONS(1943), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1945), 1, - sym__entry_separator, - ACTIONS(7525), 1, + ACTIONS(972), 2, anon_sym_DOT, + sym__entry_separator, + [221972] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9996), 1, + anon_sym_SQUOTE, STATE(6256), 1, sym_comment, - [220387] = 5, - ACTIONS(3), 1, + STATE(6258), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [221994] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(10065), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3487), 1, + anon_sym_DASH, STATE(6257), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(3485), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT, - [220405] = 5, + [222010] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10297), 1, - anon_sym_DOT_DOT2, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(9998), 1, + anon_sym_SQUOTE, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6258), 1, sym_comment, - ACTIONS(1418), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(10299), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220423] = 5, + STATE(7246), 1, + sym_expr_interpolated, + [222032] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10301), 1, - anon_sym_DOT_DOT2, + ACTIONS(10000), 1, + anon_sym_QMARK2, STATE(6259), 1, sym_comment, - ACTIONS(1869), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(10303), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220441] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6260), 1, - sym_comment, - ACTIONS(10305), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [220455] = 5, - ACTIONS(3), 1, + ACTIONS(980), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(982), 2, + anon_sym_DOT, + sym__entry_separator, + [222050] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(9264), 1, anon_sym_DASH, - ACTIONS(10307), 1, - anon_sym_EQ2, - STATE(6261), 1, + STATE(6260), 1, sym_comment, - ACTIONS(5014), 3, + ACTIONS(9262), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [220473] = 7, + aux_sym_ctrl_match_token1, + [222066] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(6262), 1, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(10002), 1, + anon_sym_SQUOTE, + STATE(6261), 1, sym_comment, - STATE(7102), 1, - sym_val_list, - STATE(7291), 1, - aux_sym_val_table_repeat1, - [220495] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, STATE(6263), 1, - sym_comment, - STATE(7123), 1, - sym_val_list, - STATE(7293), 1, - aux_sym_val_table_repeat1, - [220517] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_DASH_DASH, - ACTIONS(10309), 1, - sym_long_flag_identifier, - ACTIONS(10311), 1, - anon_sym_EQ2, - STATE(6264), 1, - sym_comment, - ACTIONS(4966), 2, - sym_identifier, - anon_sym_DASH, - [220537] = 7, - ACTIONS(3), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [222088] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8911), 1, + ACTIONS(8631), 1, sym_identifier, - ACTIONS(9625), 1, + ACTIONS(9557), 1, anon_sym_DOLLAR, - STATE(5587), 1, + STATE(5619), 1, sym_val_variable, - STATE(6265), 1, + STATE(6262), 1, sym_comment, - STATE(6920), 1, - sym__variable_name, - STATE(7276), 1, + STATE(6953), 1, sym__assignment_pattern, - [220559] = 7, - ACTIONS(121), 1, + STATE(7002), 1, + sym__variable_name, + [222110] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10313), 1, + ACTIONS(10004), 1, anon_sym_SQUOTE, - STATE(6266), 1, - sym_comment, - STATE(6270), 1, + STATE(6241), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(6263), 1, + sym_comment, + STATE(7246), 1, sym_expr_interpolated, - [220581] = 5, + [222132] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5088), 1, + ACTIONS(1591), 1, + sym__entry_separator, + ACTIONS(8921), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10006), 1, + anon_sym_DOT, + STATE(6264), 1, + sym_comment, + ACTIONS(1589), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222152] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5164), 1, anon_sym_DASH, - ACTIONS(10315), 1, - anon_sym_EQ2, - STATE(6267), 1, + STATE(6265), 1, sym_comment, - ACTIONS(5086), 3, + ACTIONS(5162), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [220599] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10317), 1, - anon_sym_DOT_DOT2, - STATE(6268), 1, - sym_comment, - ACTIONS(1877), 2, - sym__newline, aux_sym_ctrl_match_token1, - ACTIONS(10319), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220617] = 7, - ACTIONS(121), 1, + [222168] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10321), 1, + ACTIONS(10008), 1, anon_sym_SQUOTE, - STATE(6269), 1, + STATE(6266), 1, sym_comment, - STATE(6277), 1, + STATE(6267), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(7246), 1, sym_expr_interpolated, - [220639] = 7, - ACTIONS(121), 1, + [222190] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10323), 1, + ACTIONS(10010), 1, anon_sym_SQUOTE, - STATE(6270), 1, - sym_comment, - STATE(6350), 1, + STATE(6241), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [220661] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(10226), 1, - anon_sym_use, - ACTIONS(10228), 1, - anon_sym_list, - ACTIONS(10230), 1, - anon_sym_hide, - ACTIONS(10232), 1, - anon_sym_new, - STATE(6271), 1, + STATE(6267), 1, sym_comment, - [220683] = 5, - ACTIONS(3), 1, + STATE(7246), 1, + sym_expr_interpolated, + [222212] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10325), 1, - anon_sym_DOT_DOT2, - STATE(6272), 1, + ACTIONS(3375), 1, + anon_sym_DASH, + STATE(6268), 1, sym_comment, - ACTIONS(1885), 2, - sym__newline, + ACTIONS(3373), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - ACTIONS(10327), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220701] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(7502), 1, - anon_sym_DOT, - STATE(6273), 1, - sym_comment, - ACTIONS(1927), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220719] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10329), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10331), 1, - aux_sym_unquoted_token2, - STATE(6274), 1, - sym_comment, - ACTIONS(2925), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220737] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - STATE(6275), 1, - sym_comment, - ACTIONS(1580), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220755] = 5, - ACTIONS(3), 1, + [222228] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10333), 1, - anon_sym_DOT_DOT2, - STATE(6276), 1, - sym_comment, - ACTIONS(1576), 2, - anon_sym_DOT, - aux_sym_unquoted_token2, - ACTIONS(10335), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220773] = 7, - ACTIONS(121), 1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(6269), 1, + sym_comment, + STATE(7516), 1, + sym_block, + ACTIONS(9354), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222246] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10337), 1, + ACTIONS(10012), 1, anon_sym_SQUOTE, - STATE(6277), 1, + STATE(6270), 1, sym_comment, - STATE(6350), 1, + STATE(6271), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(7246), 1, sym_expr_interpolated, - [220795] = 7, - ACTIONS(121), 1, + [222268] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10194), 1, + ACTIONS(9906), 1, anon_sym_LPAREN, - ACTIONS(10196), 1, + ACTIONS(9908), 1, sym_unescaped_interpolated_content, - ACTIONS(10339), 1, + ACTIONS(10014), 1, anon_sym_SQUOTE, - STATE(6278), 1, - sym_comment, - STATE(6284), 1, + STATE(6241), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, + STATE(6271), 1, + sym_comment, + STATE(7246), 1, sym_expr_interpolated, - [220817] = 5, - ACTIONS(3), 1, + [222290] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8907), 1, - aux_sym_unquoted_token6, - STATE(6279), 1, + ACTIONS(5168), 1, + anon_sym_DASH, + STATE(6272), 1, sym_comment, - ACTIONS(1429), 2, + ACTIONS(5166), 4, sym_identifier, - anon_sym_DASH, - ACTIONS(1441), 2, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [220835] = 7, - ACTIONS(121), 1, + aux_sym_ctrl_match_token1, + [222306] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, - anon_sym_RBRACK, - ACTIONS(1941), 1, - anon_sym_LPAREN2, - ACTIONS(1943), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1945), 1, + ACTIONS(1949), 1, + anon_sym_RBRACE, + ACTIONS(1951), 1, sym__entry_separator, - ACTIONS(7525), 1, - anon_sym_DOT, - STATE(6280), 1, + ACTIONS(9840), 1, + anon_sym_DOT_DOT2, + STATE(6273), 1, sym_comment, - [220857] = 5, - ACTIONS(3), 1, + ACTIONS(9842), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [222326] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1368), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(10080), 1, - aux_sym__immediate_decimal_token2, - STATE(6281), 1, + ACTIONS(5172), 1, + anon_sym_DASH, + STATE(6274), 1, sym_comment, - ACTIONS(1370), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [220875] = 7, - ACTIONS(3), 1, + ACTIONS(5170), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [222342] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(6282), 1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, + STATE(6275), 1, sym_comment, - STATE(7192), 1, - sym_val_list, - STATE(7306), 1, - aux_sym_val_table_repeat1, - [220897] = 7, + STATE(7276), 1, + sym__variable_name, + STATE(7320), 1, + sym__assignment_pattern_parenthesized, + [222364] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(6283), 1, + ACTIONS(964), 1, + anon_sym_DOT, + STATE(6276), 1, sym_comment, - STATE(7200), 1, - sym_val_list, - STATE(7308), 1, - aux_sym_val_table_repeat1, - [220919] = 7, - ACTIONS(121), 1, + ACTIONS(962), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [222380] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10341), 1, - anon_sym_SQUOTE, - STATE(6284), 1, + ACTIONS(1648), 1, + aux_sym_unquoted_token2, + ACTIONS(10016), 1, + aux_sym__immediate_decimal_token2, + STATE(6277), 1, sym_comment, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [220941] = 5, + ACTIONS(1650), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222398] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1398), 1, + ACTIONS(9496), 1, + aux_sym__immediate_decimal_token2, + STATE(6278), 1, + sym_comment, + ACTIONS(1589), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [222416] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1519), 1, aux_sym_cmd_identifier_token41, - ACTIONS(9661), 1, + ACTIONS(10018), 1, aux_sym__immediate_decimal_token2, - STATE(6285), 1, + STATE(6279), 1, sym_comment, - ACTIONS(1400), 3, + ACTIONS(1521), 3, sym_filesize_unit, sym_duration_unit, aux_sym_record_entry_token1, - [220959] = 6, - ACTIONS(3), 1, + [222434] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1518), 1, + ACTIONS(1589), 1, aux_sym_unquoted_token2, - ACTIONS(10291), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10343), 1, + ACTIONS(10020), 1, anon_sym_DOT, - STATE(6286), 1, + ACTIONS(10022), 1, + aux_sym__immediate_decimal_token2, + STATE(6280), 1, sym_comment, - ACTIONS(1520), 2, + ACTIONS(1591), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [220979] = 7, - ACTIONS(3), 1, + [222454] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(6287), 1, + STATE(6281), 1, sym_comment, - STATE(7228), 1, - sym_val_list, - STATE(7314), 1, - aux_sym_val_table_repeat1, - [221001] = 7, - ACTIONS(3), 1, + ACTIONS(10024), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [222468] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(6288), 1, + STATE(6282), 1, sym_comment, - STATE(7235), 1, - sym_val_list, - STATE(7316), 1, - aux_sym_val_table_repeat1, - [221023] = 5, - ACTIONS(3), 1, + ACTIONS(10026), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [222482] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, + ACTIONS(6300), 1, aux_sym_ctrl_match_token1, - STATE(6289), 1, + STATE(6283), 1, sym_comment, - STATE(7355), 1, + STATE(7322), 1, sym_block, - ACTIONS(9988), 3, + ACTIONS(9396), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [221041] = 5, - ACTIONS(3), 1, + [222500] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(238), 1, - aux_sym__block_body_repeat1, - STATE(6290), 1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(6284), 1, sym_comment, - ACTIONS(145), 2, + STATE(7325), 1, + sym_block, + ACTIONS(9396), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(1563), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221059] = 7, - ACTIONS(3), 1, + [222518] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(6285), 1, + sym_comment, + STATE(7157), 1, + sym_block, + ACTIONS(9782), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(6291), 1, + anon_sym_SEMI, + [222536] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, + STATE(6286), 1, sym_comment, - STATE(7309), 1, - sym_val_list, - STATE(7322), 1, - aux_sym_val_table_repeat1, - [221081] = 7, + STATE(7002), 1, + sym__variable_name, + STATE(7057), 1, + sym__assignment_pattern, + [222558] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(10028), 1, + anon_sym_DOT_DOT2, + STATE(6287), 1, + sym_comment, + ACTIONS(10030), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [222578] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(7824), 1, sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(6292), 1, + ACTIONS(7826), 1, + sym__space, + STATE(4967), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6237), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6288), 1, sym_comment, - STATE(7324), 1, - aux_sym_val_table_repeat1, - STATE(7391), 1, - sym_val_list, - [221103] = 4, - ACTIONS(3), 1, + STATE(7571), 1, + sym__flags_parenthesized, + [222600] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5137), 1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, + STATE(6289), 1, + sym_comment, + STATE(7275), 1, + sym__assignment_pattern_parenthesized, + STATE(7276), 1, + sym__variable_name, + [222622] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(9978), 1, + anon_sym_use, + ACTIONS(9980), 1, + anon_sym_list, + ACTIONS(9982), 1, + anon_sym_hide, + ACTIONS(9984), 1, + anon_sym_new, + STATE(6290), 1, + sym_comment, + [222644] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5139), 1, anon_sym_DASH, - STATE(6293), 1, + STATE(6291), 1, sym_comment, - ACTIONS(5135), 4, + ACTIONS(5137), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [221119] = 5, - ACTIONS(3), 1, + [222660] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, + ACTIONS(5143), 1, + anon_sym_DASH, + STATE(6292), 1, + sym_comment, + ACTIONS(5141), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - STATE(6294), 1, + [222676] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(972), 1, + anon_sym_DOT, + ACTIONS(10032), 1, + anon_sym_QMARK2, + STATE(6293), 1, sym_comment, - STATE(6899), 1, - sym_block, - ACTIONS(10012), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221137] = 7, + ACTIONS(970), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [222694] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(982), 1, + anon_sym_DOT, + ACTIONS(10034), 1, + anon_sym_QMARK2, + STATE(6294), 1, + sym_comment, + ACTIONS(980), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [222712] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5007), 1, + anon_sym_DASH, + ACTIONS(10036), 1, + anon_sym_EQ2, STATE(6295), 1, sym_comment, - STATE(6909), 1, - sym_val_list, - STATE(7329), 1, - aux_sym_val_table_repeat1, - [221159] = 7, - ACTIONS(3), 1, + ACTIONS(5005), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [222730] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, + STATE(6296), 1, + sym_comment, + STATE(7276), 1, + sym__variable_name, + STATE(7278), 1, + sym__assignment_pattern_parenthesized, + [222752] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, - STATE(6296), 1, + STATE(6297), 1, sym_comment, - STATE(6915), 1, + STATE(7039), 1, sym_val_list, - STATE(7331), 1, + STATE(7311), 1, aux_sym_val_table_repeat1, - [221181] = 5, - ACTIONS(3), 1, + [222774] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10346), 1, + ACTIONS(1776), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9145), 1, anon_sym_DOT, - STATE(2276), 1, + STATE(2435), 1, + sym_cell_path, + STATE(2760), 1, sym_path, - ACTIONS(895), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6297), 2, - sym_comment, + STATE(5898), 1, aux_sym_cell_path_repeat1, - [221199] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9576), 1, - anon_sym_DASH, STATE(6298), 1, sym_comment, - ACTIONS(9574), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [221215] = 7, - ACTIONS(3), 1, + [222796] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6299), 1, sym_comment, - STATE(6933), 1, + STATE(7179), 1, sym_val_list, - STATE(7336), 1, + STATE(7314), 1, aux_sym_val_table_repeat1, - [221237] = 7, - ACTIONS(3), 1, + [222818] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(1525), 1, + anon_sym_DASH, + ACTIONS(8797), 1, + aux_sym_unquoted_token2, STATE(6300), 1, sym_comment, - STATE(6938), 1, - sym_val_list, - STATE(7339), 1, - aux_sym_val_table_repeat1, - [221259] = 4, - ACTIONS(121), 1, + ACTIONS(1537), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [222836] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6301), 1, sym_comment, - ACTIONS(1470), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1472), 3, - anon_sym_LPAREN2, + ACTIONS(968), 2, anon_sym_DOT, sym__entry_separator, - [221275] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1570), 1, + ACTIONS(966), 3, anon_sym_RBRACK, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1580), 1, - sym__entry_separator, - ACTIONS(7472), 1, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_QMARK2, + [222852] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_DASH, + ACTIONS(10038), 1, + anon_sym_EQ2, STATE(6302), 1, sym_comment, - [221297] = 7, - ACTIONS(3), 1, + ACTIONS(5039), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [222870] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(1776), 1, + sym__table_head_separator, + ACTIONS(8853), 1, + anon_sym_DOT, + STATE(2864), 1, + sym_cell_path, + STATE(5525), 1, + aux_sym_cell_path_repeat1, + STATE(5711), 1, + sym_path, STATE(6303), 1, sym_comment, - STATE(6957), 1, - sym_val_list, - STATE(7345), 1, - aux_sym_val_table_repeat1, - [221319] = 7, - ACTIONS(3), 1, + [222892] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(1780), 1, + sym__table_head_separator, + ACTIONS(8853), 1, + anon_sym_DOT, + STATE(2866), 1, + sym_cell_path, + STATE(5525), 1, + aux_sym_cell_path_repeat1, + STATE(5711), 1, + sym_path, STATE(6304), 1, sym_comment, - STATE(6963), 1, - sym_val_list, - STATE(7348), 1, - aux_sym_val_table_repeat1, - [221341] = 7, - ACTIONS(3), 1, + [222914] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(10040), 1, + anon_sym_EQ2, + ACTIONS(10042), 1, + sym_short_flag_identifier, STATE(6305), 1, sym_comment, - STATE(6991), 1, - sym_val_list, - STATE(6993), 1, - aux_sym_val_table_repeat1, - [221363] = 5, - ACTIONS(121), 1, + ACTIONS(4942), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [222932] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10349), 1, - anon_sym_QMARK2, + ACTIONS(9541), 1, + aux_sym__immediate_decimal_token2, STATE(6306), 1, sym_comment, - ACTIONS(900), 2, - anon_sym_RBRACK, + ACTIONS(1589), 2, anon_sym_RBRACE, - ACTIONS(902), 2, - anon_sym_DOT, + aux_sym__unquoted_in_record_token2, + ACTIONS(1591), 2, + anon_sym_LPAREN2, sym__entry_separator, - [221381] = 7, + [222950] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(10044), 1, + anon_sym_SQUOTE, STATE(6307), 1, sym_comment, - STATE(6983), 1, - sym_val_list, - STATE(7354), 1, - aux_sym_val_table_repeat1, - [221403] = 7, - ACTIONS(3), 1, + STATE(6313), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [222972] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, STATE(6308), 1, sym_comment, - STATE(6989), 1, - sym_val_list, - STATE(7357), 1, - aux_sym_val_table_repeat1, - [221425] = 4, + STATE(7276), 1, + sym__variable_name, + STATE(7279), 1, + sym__assignment_pattern_parenthesized, + [222994] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, STATE(6309), 1, sym_comment, - ACTIONS(5131), 4, + ACTIONS(978), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(976), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [223010] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8631), 1, sym_identifier, + ACTIONS(9557), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [221441] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + STATE(5619), 1, + sym_val_variable, STATE(6310), 1, sym_comment, - STATE(7012), 1, - sym_val_list, - STATE(7363), 1, - aux_sym_val_table_repeat1, - [221463] = 7, + STATE(7002), 1, + sym__variable_name, + STATE(7058), 1, + sym__assignment_pattern, + [223032] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, STATE(6311), 1, sym_comment, - STATE(7018), 1, - sym_val_list, - STATE(7366), 1, - aux_sym_val_table_repeat1, - [221485] = 7, - ACTIONS(121), 1, + ACTIONS(964), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(962), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [223048] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10351), 1, - anon_sym_SQUOTE, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8687), 1, + aux_sym__immediate_decimal_token5, STATE(6312), 1, sym_comment, - STATE(6337), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [221507] = 7, + STATE(8004), 1, + sym__immediate_decimal, + ACTIONS(8683), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [223068] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(10046), 1, + anon_sym_SQUOTE, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6313), 1, sym_comment, - STATE(7035), 1, - sym_val_list, - STATE(7372), 1, - aux_sym_val_table_repeat1, - [221529] = 7, - ACTIONS(3), 1, + STATE(7246), 1, + sym_expr_interpolated, + [223090] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(1780), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2538), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5898), 1, + aux_sym_cell_path_repeat1, STATE(6314), 1, sym_comment, - STATE(7041), 1, - sym_val_list, - STATE(7375), 1, - aux_sym_val_table_repeat1, - [221551] = 4, - ACTIONS(121), 1, + [223112] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1772), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2456), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5898), 1, + aux_sym_cell_path_repeat1, STATE(6315), 1, sym_comment, - ACTIONS(918), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(916), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [221567] = 7, - ACTIONS(3), 1, + [223134] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, STATE(6316), 1, sym_comment, - STATE(7057), 1, - sym_val_list, - STATE(7381), 1, - aux_sym_val_table_repeat1, - [221589] = 7, + STATE(7002), 1, + sym__variable_name, + STATE(7079), 1, + sym__assignment_pattern, + [223156] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(5942), 1, + anon_sym_RBRACK, + ACTIONS(5948), 1, + sym__entry_separator, + ACTIONS(9840), 1, + anon_sym_DOT_DOT2, STATE(6317), 1, sym_comment, - STATE(7061), 1, - sym_val_list, - STATE(7384), 1, - aux_sym_val_table_repeat1, - [221611] = 5, - ACTIONS(3), 1, + ACTIONS(9842), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [223176] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(232), 1, - aux_sym__block_body_repeat1, + ACTIONS(10048), 1, + anon_sym_PIPE, + ACTIONS(10050), 1, + anon_sym_if, + ACTIONS(10052), 1, + anon_sym_EQ_GT, STATE(6318), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(551), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221629] = 7, - ACTIONS(3), 1, + STATE(7141), 1, + aux_sym_match_pattern_repeat1, + STATE(7849), 1, + sym_match_guard, + [223198] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6319), 1, sym_comment, - STATE(7073), 1, + STATE(7362), 1, sym_val_list, - STATE(7390), 1, + STATE(7363), 1, aux_sym_val_table_repeat1, - [221651] = 7, - ACTIONS(121), 1, + [223220] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10353), 1, - anon_sym_SQUOTE, - STATE(6240), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(947), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9145), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_path, + STATE(3345), 1, + sym_cell_path, + STATE(5898), 1, + aux_sym_cell_path_repeat1, STATE(6320), 1, sym_comment, - STATE(6929), 1, - sym_expr_interpolated, - [221673] = 7, - ACTIONS(3), 1, + [223242] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(5007), 1, + anon_sym_DASH, + ACTIONS(10054), 1, + anon_sym_EQ2, STATE(6321), 1, sym_comment, - STATE(7093), 1, - sym_val_list, - STATE(7398), 1, - aux_sym_val_table_repeat1, - [221695] = 7, - ACTIONS(3), 1, + ACTIONS(5005), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [223260] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6322), 1, sym_comment, - STATE(7097), 1, + STATE(7049), 1, sym_val_list, - STATE(7401), 1, + STATE(7366), 1, aux_sym_val_table_repeat1, - [221717] = 7, - ACTIONS(3), 1, + [223282] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6323), 1, sym_comment, - STATE(7112), 1, + STATE(7106), 1, sym_val_list, - STATE(7406), 1, + STATE(7369), 1, aux_sym_val_table_repeat1, - [221739] = 7, - ACTIONS(3), 1, + [223304] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(4952), 1, + anon_sym_DASH_DASH, + ACTIONS(10056), 1, + sym_long_flag_identifier, + ACTIONS(10058), 1, + anon_sym_EQ2, STATE(6324), 1, sym_comment, - STATE(7118), 1, - sym_val_list, - STATE(7409), 1, - aux_sym_val_table_repeat1, - [221761] = 7, - ACTIONS(3), 1, + ACTIONS(4950), 2, + sym_identifier, + anon_sym_DASH, + [223324] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(5041), 1, + anon_sym_DASH, + ACTIONS(10060), 1, + anon_sym_EQ2, STATE(6325), 1, sym_comment, - STATE(7128), 1, - sym_val_list, - STATE(7414), 1, - aux_sym_val_table_repeat1, - [221783] = 7, - ACTIONS(3), 1, + ACTIONS(5039), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [223342] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6326), 1, sym_comment, - STATE(7134), 1, + STATE(7238), 1, sym_val_list, - STATE(7416), 1, + STATE(7377), 1, aux_sym_val_table_repeat1, - [221805] = 7, - ACTIONS(3), 1, + [223364] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6327), 1, sym_comment, - STATE(7143), 1, + STATE(7243), 1, sym_val_list, - STATE(7421), 1, + STATE(7379), 1, aux_sym_val_table_repeat1, - [221827] = 7, + [223386] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(10062), 1, + anon_sym_SQUOTE, + STATE(6236), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6328), 1, sym_comment, - STATE(7147), 1, - sym_val_list, - STATE(7423), 1, - aux_sym_val_table_repeat1, - [221849] = 7, - ACTIONS(3), 1, + STATE(7246), 1, + sym_expr_interpolated, + [223408] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6329), 1, sym_comment, - STATE(7155), 1, + STATE(7346), 1, sym_val_list, - STATE(7428), 1, + STATE(7384), 1, aux_sym_val_table_repeat1, - [221871] = 7, - ACTIONS(3), 1, + [223430] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6330), 1, sym_comment, - STATE(7161), 1, + STATE(7351), 1, sym_val_list, - STATE(7430), 1, + STATE(7387), 1, aux_sym_val_table_repeat1, - [221893] = 7, - ACTIONS(3), 1, + [223452] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6331), 1, sym_comment, - STATE(7171), 1, + STATE(7273), 1, sym_val_list, - STATE(7435), 1, + STATE(7391), 1, aux_sym_val_table_repeat1, - [221915] = 7, - ACTIONS(3), 1, + [223474] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6332), 1, sym_comment, - STATE(7174), 1, + STATE(7288), 1, sym_val_list, - STATE(7437), 1, + STATE(7394), 1, aux_sym_val_table_repeat1, - [221937] = 4, - ACTIONS(121), 1, + [223496] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7824), 1, + sym__newline, + ACTIONS(7826), 1, + sym__space, + STATE(4865), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6288), 1, + aux_sym_ctrl_do_parenthesized_repeat1, STATE(6333), 1, sym_comment, - ACTIONS(922), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(920), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [221953] = 7, - ACTIONS(121), 1, + STATE(7571), 1, + sym__flags_parenthesized, + [223518] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1923), 1, - anon_sym_RBRACK, - ACTIONS(1925), 1, - anon_sym_LPAREN2, - ACTIONS(1927), 1, - sym__entry_separator, - ACTIONS(7502), 1, - anon_sym_DOT, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6334), 1, sym_comment, - [221975] = 4, - ACTIONS(121), 1, + STATE(7339), 1, + sym_val_list, + STATE(7400), 1, + aux_sym_val_table_repeat1, + [223540] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6335), 1, sym_comment, - ACTIONS(914), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(912), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [221991] = 5, - ACTIONS(3), 1, + STATE(7345), 1, + sym_val_list, + STATE(7402), 1, + aux_sym_val_table_repeat1, + [223562] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(9982), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6336), 1, sym_comment, - ACTIONS(1472), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [222009] = 7, - ACTIONS(121), 1, + STATE(7407), 1, + aux_sym_val_table_repeat1, + STATE(7439), 1, + sym_val_list, + [223584] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10355), 1, - anon_sym_SQUOTE, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6337), 1, sym_comment, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [222031] = 5, - ACTIONS(3), 1, + STATE(7409), 1, + aux_sym_val_table_repeat1, + STATE(7458), 1, + sym_val_list, + [223606] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, STATE(6338), 1, sym_comment, - STATE(7205), 1, - sym_block, - ACTIONS(10038), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222049] = 4, - ACTIONS(121), 1, + ACTIONS(10064), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [223620] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(922), 1, - anon_sym_DOT, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6339), 1, sym_comment, - ACTIONS(920), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [222065] = 4, - ACTIONS(3), 1, + STATE(7416), 1, + aux_sym_val_table_repeat1, + STATE(7530), 1, + sym_val_list, + [223642] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6340), 1, sym_comment, - ACTIONS(1472), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [222081] = 4, - ACTIONS(121), 1, + STATE(7418), 1, + aux_sym_val_table_repeat1, + STATE(7538), 1, + sym_val_list, + [223664] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6341), 1, sym_comment, - ACTIONS(1608), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1610), 3, - anon_sym_LPAREN2, - anon_sym_DOT, - sym__entry_separator, - [222097] = 5, - ACTIONS(3), 1, + ACTIONS(10066), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [223678] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(222), 1, - aux_sym__block_body_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6342), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(1599), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222115] = 4, - ACTIONS(3), 1, + STATE(6964), 1, + sym_val_list, + STATE(7423), 1, + aux_sym_val_table_repeat1, + [223700] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, - anon_sym_DASH, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6343), 1, sym_comment, - ACTIONS(3241), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222131] = 7, - ACTIONS(3), 1, + STATE(6968), 1, + sym_val_list, + STATE(7425), 1, + aux_sym_val_table_repeat1, + [223722] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1742), 1, - sym__table_head_separator, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(2840), 1, - sym_cell_path, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, - sym_path, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6344), 1, sym_comment, - [222153] = 7, - ACTIONS(3), 1, + STATE(6989), 1, + sym_val_list, + STATE(7430), 1, + aux_sym_val_table_repeat1, + [223744] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__table_head_separator, - ACTIONS(6727), 1, - anon_sym_DOT, - STATE(2847), 1, - sym_cell_path, - STATE(3562), 1, - aux_sym_cell_path_repeat1, - STATE(3689), 1, - sym_path, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6345), 1, sym_comment, - [222175] = 5, - ACTIONS(3), 1, + STATE(6996), 1, + sym_val_list, + STATE(7433), 1, + aux_sym_val_table_repeat1, + [223766] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, + ACTIONS(1473), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9450), 1, + aux_sym__immediate_decimal_token2, STATE(6346), 1, sym_comment, - STATE(6974), 1, - sym_block, - ACTIONS(10012), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222193] = 4, - ACTIONS(3), 1, + ACTIONS(1475), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [223784] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DASH, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6347), 1, sym_comment, - ACTIONS(5123), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222209] = 4, - ACTIONS(3), 1, + STATE(7020), 1, + sym_val_list, + STATE(7438), 1, + aux_sym_val_table_repeat1, + [223806] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5129), 1, - anon_sym_DASH, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6348), 1, sym_comment, - ACTIONS(5127), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222225] = 4, + STATE(7025), 1, + sym_val_list, + STATE(7441), 1, + aux_sym_val_table_repeat1, + [223828] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(928), 1, - anon_sym_DASH, + ACTIONS(10068), 1, + aux_sym__immediate_decimal_token2, STATE(6349), 1, sym_comment, - ACTIONS(930), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [222241] = 6, - ACTIONS(121), 1, + ACTIONS(1648), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1650), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [223846] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10357), 1, - anon_sym_LPAREN, - ACTIONS(10360), 1, - sym_unescaped_interpolated_content, - ACTIONS(10363), 1, - anon_sym_SQUOTE, - STATE(6929), 1, - sym_expr_interpolated, - STATE(6350), 2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(6350), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [222261] = 7, - ACTIONS(3), 1, + STATE(7042), 1, + sym_val_list, + STATE(7447), 1, + aux_sym_val_table_repeat1, + [223868] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(6351), 1, sym_comment, - STATE(7209), 1, - aux_sym_val_table_repeat1, - STATE(7454), 1, + STATE(7047), 1, sym_val_list, - [222283] = 6, - ACTIONS(121), 1, + STATE(7449), 1, + aux_sym_val_table_repeat1, + [223890] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1350), 1, - anon_sym_RBRACE, - ACTIONS(10365), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10367), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(10070), 1, + aux_sym__immediate_decimal_token2, STATE(6352), 1, sym_comment, - ACTIONS(1362), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [222303] = 7, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 1, + ACTIONS(1648), 2, anon_sym_RBRACK, - ACTIONS(1589), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 2, anon_sym_LPAREN2, - ACTIONS(1595), 1, sym__entry_separator, - ACTIONS(7564), 1, - anon_sym_DOT, + [223908] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6353), 1, sym_comment, - [222325] = 7, - ACTIONS(121), 1, + STATE(7068), 1, + sym_val_list, + STATE(7454), 1, + aux_sym_val_table_repeat1, + [223930] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10369), 1, - anon_sym_SQUOTE, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6354), 1, sym_comment, - STATE(6357), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6929), 1, - sym_expr_interpolated, - [222347] = 6, - ACTIONS(3), 1, + STATE(7074), 1, + sym_val_list, + STATE(7457), 1, + aux_sym_val_table_repeat1, + [223952] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(10371), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6355), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [222367] = 5, - ACTIONS(3), 1, + STATE(7089), 1, + sym_val_list, + STATE(7462), 1, + aux_sym_val_table_repeat1, + [223974] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9554), 1, - aux_sym_ctrl_match_token1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6356), 1, sym_comment, - STATE(6981), 1, - sym_val_record, - ACTIONS(9800), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222385] = 7, - ACTIONS(121), 1, + STATE(7095), 1, + sym_val_list, + STATE(7464), 1, + aux_sym_val_table_repeat1, + [223996] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10373), 1, - anon_sym_SQUOTE, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6357), 1, sym_comment, - STATE(6929), 1, - sym_expr_interpolated, - [222407] = 6, - ACTIONS(121), 1, + STATE(7107), 1, + sym_val_list, + STATE(7468), 1, + aux_sym_val_table_repeat1, + [224018] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_RBRACK, - ACTIONS(6078), 1, - sym__entry_separator, - ACTIONS(9699), 1, - anon_sym_DOT_DOT2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6358), 1, sym_comment, - ACTIONS(9701), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [222427] = 7, - ACTIONS(121), 1, + STATE(7114), 1, + sym_val_list, + STATE(7471), 1, + aux_sym_val_table_repeat1, + [224040] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10375), 1, - anon_sym_SQUOTE, - STATE(6350), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6359), 1, sym_comment, - STATE(6929), 1, - sym_expr_interpolated, - [222449] = 4, - ACTIONS(3), 1, + STATE(7130), 1, + sym_val_list, + STATE(7476), 1, + aux_sym_val_table_repeat1, + [224062] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(924), 1, - anon_sym_DASH, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6360), 1, sym_comment, - ACTIONS(926), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [222465] = 4, - ACTIONS(3), 1, + STATE(7136), 1, + sym_val_list, + STATE(7479), 1, + aux_sym_val_table_repeat1, + [224084] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5169), 1, - anon_sym_DASH, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6361), 1, sym_comment, - ACTIONS(5167), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222481] = 4, - ACTIONS(121), 1, + STATE(7149), 1, + sym_val_list, + STATE(7484), 1, + aux_sym_val_table_repeat1, + [224106] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(914), 1, - anon_sym_DOT, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6362), 1, sym_comment, - ACTIONS(912), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [222497] = 5, - ACTIONS(121), 1, + STATE(7155), 1, + sym_val_list, + STATE(7487), 1, + aux_sym_val_table_repeat1, + [224128] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(902), 1, - anon_sym_DOT, - ACTIONS(10377), 1, - anon_sym_QMARK2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6363), 1, sym_comment, - ACTIONS(900), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [222515] = 6, - ACTIONS(121), 1, + STATE(7165), 1, + sym_val_list, + STATE(7492), 1, + aux_sym_val_table_repeat1, + [224150] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10379), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(10382), 1, - sym__space, - STATE(5787), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7675), 1, - sym__flags_parenthesized, - STATE(6364), 2, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(6364), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [222535] = 4, - ACTIONS(3), 1, + STATE(7171), 1, + sym_val_list, + STATE(7494), 1, + aux_sym_val_table_repeat1, + [224172] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1535), 1, - aux_sym_unquoted_token2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6365), 1, sym_comment, - ACTIONS(1537), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT, - [222551] = 6, - ACTIONS(3), 1, + STATE(7183), 1, + sym_val_list, + STATE(7498), 1, + aux_sym_val_table_repeat1, + [224194] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2925), 1, - anon_sym_DASH_DASH, - ACTIONS(10385), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10387), 1, - aux_sym_unquoted_token2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6366), 1, sym_comment, - ACTIONS(2927), 2, - sym_identifier, - anon_sym_DASH, - [222571] = 5, - ACTIONS(121), 1, + STATE(7188), 1, + sym_val_list, + STATE(7500), 1, + aux_sym_val_table_repeat1, + [224216] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(908), 1, - anon_sym_DOT, - ACTIONS(10389), 1, - anon_sym_QMARK2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6367), 1, sym_comment, - ACTIONS(906), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [222589] = 5, - ACTIONS(3), 1, + STATE(7200), 1, + sym_val_list, + STATE(7505), 1, + aux_sym_val_table_repeat1, + [224238] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1518), 1, - aux_sym_unquoted_token2, - ACTIONS(10269), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6368), 1, sym_comment, - ACTIONS(1520), 3, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT, - [222607] = 7, - ACTIONS(3), 1, + STATE(7206), 1, + sym_val_list, + STATE(7507), 1, + aux_sym_val_table_repeat1, + [224260] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(9625), 1, - anon_sym_DOLLAR, - STATE(5587), 1, - sym_val_variable, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6369), 1, sym_comment, - STATE(6873), 1, - sym__assignment_pattern, - STATE(7055), 1, - sym__variable_name, - [222629] = 7, - ACTIONS(121), 1, + STATE(7216), 1, + sym_val_list, + STATE(7511), 1, + aux_sym_val_table_repeat1, + [224282] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10194), 1, - anon_sym_LPAREN, - ACTIONS(10196), 1, - sym_unescaped_interpolated_content, - ACTIONS(10391), 1, - anon_sym_SQUOTE, - STATE(6176), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6370), 1, sym_comment, - STATE(6929), 1, - sym_expr_interpolated, - [222651] = 6, - ACTIONS(121), 1, + STATE(7221), 1, + sym_val_list, + STATE(7514), 1, + aux_sym_val_table_repeat1, + [224304] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_RBRACK, - ACTIONS(10393), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10395), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(10072), 1, + anon_sym_SQUOTE, STATE(6371), 1, sym_comment, - ACTIONS(5395), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [222671] = 3, - ACTIONS(3), 1, + STATE(6374), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7246), 1, + sym_expr_interpolated, + [224326] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, STATE(6372), 1, sym_comment, - ACTIONS(10397), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222684] = 6, - ACTIONS(121), 1, + STATE(6891), 1, + sym__assignment_pattern, + STATE(7113), 1, + sym__variable_name, + [224348] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10401), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, STATE(6373), 1, sym_comment, - [222703] = 6, - ACTIONS(121), 1, + STATE(6895), 1, + sym__assignment_pattern, + STATE(7113), 1, + sym__variable_name, + [224370] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10403), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9906), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + sym_unescaped_interpolated_content, + ACTIONS(10074), 1, + anon_sym_SQUOTE, + STATE(6241), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6374), 1, sym_comment, - [222722] = 6, - ACTIONS(121), 1, + STATE(7246), 1, + sym_expr_interpolated, + [224392] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10405), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10076), 1, + anon_sym_DOT_DOT2, STATE(6375), 1, sym_comment, - [222741] = 6, - ACTIONS(121), 1, + ACTIONS(1941), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(10078), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [224410] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10407), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10080), 1, + anon_sym_DOT_DOT2, STATE(6376), 1, sym_comment, - [222760] = 4, - ACTIONS(3), 1, + ACTIONS(1698), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(10082), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [224428] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1535), 1, - aux_sym_unquoted_token2, + ACTIONS(10084), 1, + anon_sym_DOT_DOT2, STATE(6377), 1, sym_comment, - ACTIONS(1537), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [222775] = 4, - ACTIONS(3), 1, + ACTIONS(1717), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(10086), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [224446] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1608), 1, - aux_sym_unquoted_token2, + ACTIONS(10088), 1, + anon_sym_DOT_DOT2, STATE(6378), 1, sym_comment, - ACTIONS(1610), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [222790] = 3, - ACTIONS(3), 1, + ACTIONS(1978), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(10090), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [224464] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10092), 1, + anon_sym_DOT_DOT2, STATE(6379), 1, sym_comment, - ACTIONS(10409), 4, + ACTIONS(1966), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222803] = 5, + aux_sym_ctrl_match_token1, + ACTIONS(10094), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [224482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, + ACTIONS(968), 1, anon_sym_DOT, STATE(6380), 1, sym_comment, - ACTIONS(1580), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [222820] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10411), 1, + ACTIONS(966), 4, anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, - STATE(6381), 1, - sym_comment, - [222839] = 3, - ACTIONS(3), 1, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [224498] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6382), 1, + STATE(225), 1, + aux_sym__block_body_repeat1, + STATE(6381), 1, sym_comment, - ACTIONS(10413), 4, + ACTIONS(145), 2, sym__newline, anon_sym_SEMI, + ACTIONS(609), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [222852] = 4, - ACTIONS(3), 1, + [224516] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token6, - STATE(6383), 1, + ACTIONS(1569), 1, + aux_sym_unquoted_token2, + ACTIONS(10096), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10098), 1, + aux_sym__immediate_decimal_token2, + STATE(6382), 1, sym_comment, - ACTIONS(1441), 3, + ACTIONS(1571), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [222867] = 3, - ACTIONS(3), 1, + [224536] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6384), 1, + ACTIONS(8631), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_DOLLAR, + STATE(5619), 1, + sym_val_variable, + STATE(6383), 1, sym_comment, - ACTIONS(10413), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222880] = 5, - ACTIONS(3), 1, + STATE(6935), 1, + sym__assignment_pattern, + STATE(7113), 1, + sym__variable_name, + [224558] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9230), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10415), 1, + ACTIONS(1764), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9145), 1, anon_sym_DOT, + STATE(2436), 1, + sym_cell_path, + STATE(2760), 1, + sym_path, + STATE(5898), 1, + aux_sym_cell_path_repeat1, + STATE(6384), 1, + sym_comment, + [224580] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, STATE(6385), 1, sym_comment, - ACTIONS(1520), 2, - sym__newline, - aux_sym_ctrl_match_token1, - [222897] = 3, + ACTIONS(1723), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224595] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4950), 1, + sym__newline, + ACTIONS(4952), 1, + sym__space, + ACTIONS(10100), 1, + sym_long_flag_identifier, + ACTIONS(10102), 1, + anon_sym_EQ2, STATE(6386), 1, sym_comment, - ACTIONS(10417), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222910] = 3, - ACTIONS(3), 1, + [224614] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1525), 1, + anon_sym_DASH, + ACTIONS(8797), 1, + aux_sym_unquoted_token2, STATE(6387), 1, sym_comment, - ACTIONS(10419), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222923] = 6, - ACTIONS(121), 1, + ACTIONS(1537), 2, + sym_identifier, + anon_sym_DASH_DASH, + [224631] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_RBRACK, - ACTIONS(2079), 1, + ACTIONS(5625), 1, anon_sym_LPAREN2, - ACTIONS(2081), 1, + ACTIONS(5942), 1, + anon_sym_RBRACK, + ACTIONS(5948), 1, sym__entry_separator, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token7, STATE(6388), 1, sym_comment, - [222942] = 3, - ACTIONS(3), 1, + STATE(7650), 1, + sym__expr_parenthesized_immediate, + [224650] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(8631), 1, + sym_identifier, + STATE(5619), 1, + sym_val_variable, + STATE(6093), 1, + sym__variable_name, STATE(6389), 1, sym_comment, - ACTIONS(10421), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222955] = 3, + [224669] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1006), 1, + anon_sym_RBRACK, + ACTIONS(1008), 1, + sym__entry_separator, + ACTIONS(2081), 1, + anon_sym_LPAREN2, + ACTIONS(2083), 1, + aux_sym__unquoted_in_list_token4, STATE(6390), 1, sym_comment, - ACTIONS(10421), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222968] = 3, - ACTIONS(3), 1, + [224688] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6391), 1, sym_comment, - ACTIONS(10423), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222981] = 3, + ACTIONS(8320), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + [224701] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10106), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6392), 1, sym_comment, - ACTIONS(10425), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222994] = 6, - ACTIONS(121), 1, + [224720] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10427), 1, + ACTIONS(10108), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6393), 1, sym_comment, - [223013] = 6, - ACTIONS(121), 1, + [224739] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10429), 1, + ACTIONS(10110), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6394), 1, sym_comment, - [223032] = 6, - ACTIONS(121), 1, + [224758] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10431), 1, + ACTIONS(10112), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6395), 1, sym_comment, - [223051] = 3, + [224777] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10114), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6396), 1, sym_comment, - ACTIONS(10433), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223064] = 5, + [224796] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(7502), 1, - anon_sym_DOT, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10116), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6397), 1, sym_comment, - ACTIONS(1927), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [223081] = 5, + [224815] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1441), 1, - aux_sym_record_entry_token1, - ACTIONS(10435), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10118), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6398), 1, sym_comment, - ACTIONS(10437), 2, - sym_filesize_unit, - sym_duration_unit, - [223098] = 6, - ACTIONS(121), 1, + [224834] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10439), 1, + ACTIONS(10120), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6399), 1, sym_comment, - [223117] = 3, - ACTIONS(3), 1, + [224853] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10122), 1, + anon_sym_RPAREN, + STATE(226), 1, + aux_sym__block_body_repeat1, STATE(6400), 1, sym_comment, - ACTIONS(6456), 4, - ts_builtin_sym_end, + ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [223130] = 3, - ACTIONS(3), 1, + [224870] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6401), 1, sym_comment, - ACTIONS(6470), 4, - ts_builtin_sym_end, + ACTIONS(10124), 4, sym__newline, anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [223143] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224883] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6402), 1, sym_comment, - ACTIONS(10441), 4, + ACTIONS(10126), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223156] = 3, + [224896] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10128), 1, + anon_sym_DQUOTE, STATE(6403), 1, sym_comment, - ACTIONS(10443), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223169] = 4, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224913] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, STATE(6404), 1, sym_comment, - ACTIONS(2077), 3, + ACTIONS(10132), 4, sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [223184] = 4, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [224926] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10134), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6405), 1, sym_comment, - ACTIONS(1472), 3, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT, - [223199] = 3, + [224945] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10136), 1, + anon_sym_DQUOTE, STATE(6406), 1, sym_comment, - ACTIONS(10441), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223212] = 3, + STATE(6410), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224962] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10138), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6407), 1, sym_comment, - ACTIONS(10413), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223225] = 3, + [224981] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10140), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6408), 1, sym_comment, - ACTIONS(10445), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223238] = 4, - ACTIONS(3), 1, + [225000] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1368), 1, - aux_sym_cmd_identifier_token41, STATE(6409), 1, sym_comment, - ACTIONS(1370), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [223253] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6410), 1, - sym_comment, - ACTIONS(10445), 4, + ACTIONS(10142), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223266] = 5, + [225013] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, - aux_sym_unquoted_token2, - ACTIONS(7525), 1, - anon_sym_DOT, + ACTIONS(10144), 1, + anon_sym_DQUOTE, + STATE(6410), 1, + sym_comment, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [225030] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9470), 1, + anon_sym_RPAREN, + STATE(226), 1, + aux_sym__block_body_repeat1, STATE(6411), 1, sym_comment, - ACTIONS(1945), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [223283] = 3, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [225047] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10146), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6412), 1, sym_comment, - ACTIONS(10447), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223296] = 6, + [225066] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4888), 1, - sym_identifier, - ACTIONS(4890), 1, - anon_sym_DOLLAR, - ACTIONS(10449), 1, - anon_sym_EQ2, - ACTIONS(10451), 1, - sym_short_flag_identifier, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, STATE(6413), 1, sym_comment, - [223315] = 6, - ACTIONS(121), 1, + ACTIONS(2089), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [225081] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8388), 1, - sym__entry_separator, - ACTIONS(8390), 1, - anon_sym_RBRACK, STATE(6414), 1, sym_comment, - STATE(8032), 1, - sym__expr_parenthesized_immediate, - [223334] = 4, - ACTIONS(121), 1, + ACTIONS(10126), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225094] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(926), 1, - anon_sym_DOT, STATE(6415), 1, sym_comment, - ACTIONS(924), 3, + ACTIONS(2131), 2, anon_sym_RBRACK, + aux_sym__unquoted_in_list_token4, + ACTIONS(2133), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - [223349] = 3, - ACTIONS(3), 1, + [225109] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6416), 1, sym_comment, - ACTIONS(10413), 4, + ACTIONS(10148), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223362] = 3, - ACTIONS(3), 1, + [225122] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9978), 1, + anon_sym_use, + ACTIONS(9980), 1, + anon_sym_list, + ACTIONS(9982), 1, + anon_sym_hide, + ACTIONS(9984), 1, + anon_sym_new, STATE(6417), 1, sym_comment, - ACTIONS(10453), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223375] = 6, - ACTIONS(121), 1, + [225141] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8392), 1, - sym__entry_separator, - ACTIONS(8394), 1, - anon_sym_RBRACK, + ACTIONS(1569), 1, + aux_sym_unquoted_token2, STATE(6418), 1, sym_comment, - STATE(8032), 1, - sym__expr_parenthesized_immediate, - [223394] = 6, - ACTIONS(3), 1, + ACTIONS(1571), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225156] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10455), 1, - anon_sym_LBRACK, - ACTIONS(10457), 1, - anon_sym_LPAREN, - STATE(6294), 1, - sym_parameter_parens, - STATE(6346), 1, - sym_parameter_bracks, STATE(6419), 1, sym_comment, - [223413] = 4, - ACTIONS(121), 1, + ACTIONS(10150), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225169] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10152), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6420), 1, sym_comment, - ACTIONS(2155), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [223428] = 3, + [225188] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10154), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6421), 1, sym_comment, - ACTIONS(10459), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223441] = 4, - ACTIONS(121), 1, + [225207] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10156), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6422), 1, sym_comment, - ACTIONS(924), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(926), 2, - anon_sym_DOT, - sym__entry_separator, - [223456] = 4, - ACTIONS(121), 1, + [225226] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10158), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6423), 1, sym_comment, - ACTIONS(932), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(934), 2, - anon_sym_DOT, - sym__entry_separator, - [223471] = 6, - ACTIONS(121), 1, + [225245] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(948), 1, - anon_sym_RBRACK, - ACTIONS(950), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym__unquoted_in_list_token7, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10160), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6424), 1, sym_comment, - [223490] = 4, - ACTIONS(121), 1, + [225264] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10461), 1, - anon_sym_DQUOTE, - ACTIONS(10463), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6425), 2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10162), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6425), 1, sym_comment, - aux_sym__str_double_quotes_repeat1, - [223505] = 3, + [225283] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10164), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6426), 1, sym_comment, - ACTIONS(10466), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223518] = 6, - ACTIONS(121), 1, + [225302] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8424), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(8426), 1, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10166), 1, anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6427), 1, sym_comment, - STATE(8032), 1, - sym__expr_parenthesized_immediate, - [223537] = 4, - ACTIONS(121), 1, + [225321] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, STATE(6428), 1, sym_comment, - ACTIONS(2163), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [223552] = 4, - ACTIONS(121), 1, + ACTIONS(10168), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225334] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(934), 1, - anon_sym_DOT, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, STATE(6429), 1, sym_comment, - ACTIONS(932), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [223567] = 5, + ACTIONS(2097), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [225349] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10055), 1, - anon_sym_RPAREN, - STATE(233), 1, - aux_sym__block_body_repeat1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, STATE(6430), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [223584] = 6, - ACTIONS(121), 1, + ACTIONS(2105), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [225364] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10468), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6431), 1, sym_comment, - [223603] = 6, - ACTIONS(121), 1, + ACTIONS(10170), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [225377] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(8428), 1, - sym__entry_separator, - ACTIONS(8430), 1, - anon_sym_RBRACK, STATE(6432), 1, sym_comment, - STATE(8032), 1, - sym__expr_parenthesized_immediate, - [223622] = 5, - ACTIONS(121), 1, + ACTIONS(10172), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225390] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10470), 1, + ACTIONS(10174), 1, anon_sym_DQUOTE, STATE(6433), 1, sym_comment, - STATE(6483), 1, + STATE(6437), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [223639] = 3, + [225407] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10176), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6434), 1, sym_comment, - ACTIONS(10474), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223652] = 3, - ACTIONS(3), 1, + [225426] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6435), 1, sym_comment, - ACTIONS(10476), 4, + ACTIONS(10178), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223665] = 3, - ACTIONS(3), 1, + [225439] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(5004), 1, + sym_block, STATE(6436), 1, sym_comment, - ACTIONS(10478), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [223678] = 3, + [225458] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6437), 1, - sym_comment, - ACTIONS(10476), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223691] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(10480), 1, + ACTIONS(10180), 1, anon_sym_DQUOTE, - STATE(6438), 1, + STATE(6437), 1, sym_comment, - STATE(6442), 1, + STATE(6882), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [223708] = 3, - ACTIONS(3), 1, + [225475] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6439), 1, + STATE(6438), 1, sym_comment, - ACTIONS(10482), 4, + ACTIONS(10182), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223721] = 3, - ACTIONS(3), 1, + [225488] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(953), 1, + aux_sym_record_entry_token1, + ACTIONS(9900), 1, + anon_sym_DOT, + STATE(6439), 1, + sym_comment, STATE(6440), 1, + aux_sym_cell_path_repeat1, + STATE(7697), 1, + sym_path, + [225507] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(957), 1, + aux_sym_record_entry_token1, + ACTIONS(10184), 1, + anon_sym_DOT, + STATE(7697), 1, + sym_path, + STATE(6440), 2, sym_comment, - ACTIONS(10484), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223734] = 3, + aux_sym_cell_path_repeat1, + [225524] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(8230), 1, + sym__entry_separator, + ACTIONS(8232), 1, + anon_sym_RBRACK, STATE(6441), 1, sym_comment, - ACTIONS(10486), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223747] = 5, - ACTIONS(121), 1, + STATE(7970), 1, + sym__expr_parenthesized_immediate, + [225543] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10488), 1, + ACTIONS(10187), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6442), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6861), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [223764] = 5, - ACTIONS(3), 1, + [225560] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10490), 1, - anon_sym_RPAREN, - STATE(233), 1, - aux_sym__block_body_repeat1, STATE(6443), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [223781] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6444), 1, - sym_comment, - ACTIONS(10492), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223794] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - ACTIONS(6162), 1, - anon_sym_PIPE, - STATE(6445), 1, - sym_comment, - ACTIONS(6080), 2, - anon_sym_if, - anon_sym_EQ_GT, - [223811] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6446), 1, - sym_comment, - ACTIONS(10494), 4, + ACTIONS(10189), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223824] = 5, + [225573] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10490), 1, - anon_sym_RPAREN, - STATE(6447), 1, - sym_comment, - STATE(6893), 1, - aux_sym__block_body_repeat1, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [223841] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10496), 1, + ACTIONS(10191), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6448), 1, + STATE(6444), 1, sym_comment, - [223860] = 6, - ACTIONS(121), 1, + [225592] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10193), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6449), 1, + STATE(6445), 1, sym_comment, - [223879] = 6, - ACTIONS(121), 1, + [225611] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10500), 1, + ACTIONS(10195), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6450), 1, + STATE(6446), 1, sym_comment, - [223898] = 6, - ACTIONS(121), 1, + [225630] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10502), 1, + ACTIONS(10197), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6451), 1, + STATE(6447), 1, sym_comment, - [223917] = 6, - ACTIONS(121), 1, + [225649] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10504), 1, + ACTIONS(10199), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6452), 1, + STATE(6448), 1, sym_comment, - [223936] = 6, - ACTIONS(121), 1, + [225668] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10506), 1, + ACTIONS(10201), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6453), 1, + STATE(6449), 1, sym_comment, - [223955] = 6, - ACTIONS(121), 1, + [225687] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10508), 1, + ACTIONS(10203), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6454), 1, + STATE(6450), 1, sym_comment, - [223974] = 6, - ACTIONS(121), 1, + [225706] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10510), 1, + ACTIONS(10205), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6455), 1, - sym_comment, - [223993] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6456), 1, - sym_comment, - ACTIONS(10512), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224006] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6457), 1, + STATE(6451), 1, sym_comment, - ACTIONS(10514), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224019] = 3, - ACTIONS(3), 1, + [225725] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6458), 1, + STATE(6452), 1, sym_comment, - ACTIONS(10516), 4, + ACTIONS(10207), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [224032] = 3, + [225738] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6459), 1, - sym_comment, - ACTIONS(10518), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224045] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, - STATE(6460), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10209), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6453), 1, sym_comment, - ACTIONS(3239), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224060] = 3, - ACTIONS(3), 1, + [225757] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6461), 1, + STATE(6454), 1, sym_comment, - ACTIONS(10520), 4, + ACTIONS(10211), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [224073] = 3, - ACTIONS(3), 1, + [225770] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6462), 1, + STATE(6455), 1, sym_comment, - ACTIONS(10522), 4, + ACTIONS(10213), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224086] = 6, + [225783] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8850), 1, - anon_sym_DOLLAR, - ACTIONS(8911), 1, - sym_identifier, - STATE(5587), 1, - sym_val_variable, - STATE(6084), 1, - sym__variable_name, - STATE(6463), 1, - sym_comment, - [224105] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(10524), 1, + ACTIONS(10215), 1, anon_sym_DQUOTE, - STATE(6464), 1, + STATE(6456), 1, sym_comment, - STATE(6466), 1, + STATE(6459), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [224122] = 6, + [225800] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2925), 1, - anon_sym_DOLLAR, - ACTIONS(2927), 1, - sym_identifier, - ACTIONS(10526), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10528), 1, - aux_sym_unquoted_token2, - STATE(6465), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10217), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6457), 1, + sym_comment, + [225819] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10219), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6458), 1, sym_comment, - [224141] = 5, - ACTIONS(121), 1, + [225838] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10530), 1, + ACTIONS(10221), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6466), 1, + STATE(6459), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [224158] = 5, - ACTIONS(121), 1, + [225855] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10223), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6460), 1, + sym_comment, + [225874] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2093), 1, anon_sym_PIPE, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - STATE(6467), 1, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + STATE(6461), 1, sym_comment, - ACTIONS(2077), 2, + ACTIONS(2089), 2, anon_sym_if, anon_sym_EQ_GT, - [224175] = 6, - ACTIONS(3), 1, + [225891] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(4857), 1, - sym_block, - STATE(6468), 1, + ACTIONS(1613), 1, + ts_builtin_sym_end, + STATE(243), 1, + aux_sym__block_body_repeat1, + STATE(6462), 1, sym_comment, - [224194] = 6, - ACTIONS(121), 1, + ACTIONS(33), 2, + sym__newline, + anon_sym_SEMI, + [225908] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(948), 1, + ACTIONS(1006), 1, anon_sym_RBRACE, - ACTIONS(950), 1, + ACTIONS(1008), 1, sym__entry_separator, - ACTIONS(2039), 1, + ACTIONS(2081), 1, anon_sym_LPAREN2, - ACTIONS(2041), 1, - aux_sym__unquoted_in_record_token7, - STATE(6469), 1, + ACTIONS(2083), 1, + aux_sym__unquoted_in_record_token4, + STATE(6463), 1, sym_comment, - [224213] = 6, - ACTIONS(121), 1, + [225927] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2925), 1, - sym__space, - ACTIONS(2927), 1, + ACTIONS(9112), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10225), 1, + anon_sym_DOT, + STATE(6464), 1, + sym_comment, + ACTIONS(1591), 2, sym__newline, - ACTIONS(10532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10534), 1, - aux_sym_unquoted_token2, - STATE(6470), 1, + aux_sym_ctrl_match_token1, + [225944] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10227), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6465), 1, sym_comment, - [224232] = 6, - ACTIONS(121), 1, + [225963] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10536), 1, + ACTIONS(10229), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6471), 1, + STATE(6466), 1, sym_comment, - [224251] = 6, - ACTIONS(121), 1, + [225982] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10538), 1, + ACTIONS(10231), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6472), 1, + STATE(6467), 1, sym_comment, - [224270] = 6, - ACTIONS(121), 1, + [226001] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10540), 1, + ACTIONS(10233), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6473), 1, + STATE(6468), 1, sym_comment, - [224289] = 6, - ACTIONS(121), 1, + [226020] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10542), 1, + ACTIONS(10235), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6474), 1, + STATE(6469), 1, sym_comment, - [224308] = 6, - ACTIONS(121), 1, + [226039] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10544), 1, + ACTIONS(10237), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6475), 1, + STATE(6470), 1, sym_comment, - [224327] = 6, - ACTIONS(121), 1, + [226058] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10546), 1, + ACTIONS(10239), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6476), 1, + STATE(6471), 1, sym_comment, - [224346] = 6, - ACTIONS(121), 1, + [226077] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10548), 1, + ACTIONS(10241), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6477), 1, + STATE(6472), 1, sym_comment, - [224365] = 6, - ACTIONS(121), 1, + [226096] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10550), 1, + ACTIONS(10243), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6478), 1, + STATE(6473), 1, sym_comment, - [224384] = 4, - ACTIONS(121), 1, + [226115] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(930), 1, - anon_sym_DOT, - STATE(6479), 1, + ACTIONS(10245), 1, + anon_sym_LBRACK, + ACTIONS(10247), 1, + anon_sym_LPAREN, + STATE(3323), 1, + sym_parameter_parens, + STATE(3328), 1, + sym_parameter_bracks, + STATE(6474), 1, sym_comment, - ACTIONS(928), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [224399] = 3, + [226134] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6480), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10249), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6475), 1, sym_comment, - ACTIONS(10552), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224412] = 3, - ACTIONS(3), 1, + [226153] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6481), 1, + STATE(6476), 1, sym_comment, - ACTIONS(10554), 4, + ACTIONS(10251), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224425] = 5, - ACTIONS(121), 1, + [226166] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10556), 1, + ACTIONS(10253), 1, anon_sym_DQUOTE, - STATE(6482), 1, + STATE(6477), 1, sym_comment, - STATE(6484), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224442] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(10558), 1, - anon_sym_DQUOTE, - STATE(6425), 1, + STATE(6481), 1, aux_sym__str_double_quotes_repeat1, - STATE(6483), 1, - sym_comment, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [224459] = 5, - ACTIONS(121), 1, + [226183] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10560), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6484), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10255), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6478), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224476] = 6, + [226202] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(4848), 1, - sym_block, - STATE(6485), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10257), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6479), 1, sym_comment, - [224495] = 4, - ACTIONS(3), 1, + [226221] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1535), 1, + ACTIONS(4889), 1, aux_sym_unquoted_token2, - STATE(6486), 1, + STATE(6480), 1, sym_comment, ACTIONS(1537), 3, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT, - [224510] = 6, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [226236] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(4876), 1, - sym_block, - STATE(6468), 1, - aux_sym_shebang_repeat1, - STATE(6487), 1, + ACTIONS(10259), 1, + anon_sym_DQUOTE, + STATE(6481), 1, sym_comment, - [224529] = 3, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [226253] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6488), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10261), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6482), 1, sym_comment, - ACTIONS(10562), 4, + [226272] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6483), 1, + sym_comment, + ACTIONS(10263), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [224542] = 6, - ACTIONS(121), 1, + [226285] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10122), 1, + anon_sym_RPAREN, + STATE(6484), 1, + sym_comment, + STATE(6784), 1, + aux_sym__block_body_repeat1, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [226302] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + sym__entry_separator, + ACTIONS(8214), 1, + anon_sym_RBRACK, + STATE(6485), 1, + sym_comment, + STATE(7970), 1, + sym__expr_parenthesized_immediate, + [226321] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10564), 1, + ACTIONS(10265), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6489), 1, + STATE(6486), 1, sym_comment, - [224561] = 6, - ACTIONS(121), 1, + [226340] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10566), 1, + ACTIONS(10267), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6490), 1, + STATE(6487), 1, sym_comment, - [224580] = 6, - ACTIONS(121), 1, + [226359] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10568), 1, + ACTIONS(10269), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6491), 1, + STATE(6488), 1, sym_comment, - [224599] = 6, - ACTIONS(121), 1, + [226378] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10570), 1, + ACTIONS(10271), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6492), 1, + STATE(6489), 1, sym_comment, - [224618] = 6, - ACTIONS(121), 1, + [226397] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10572), 1, + ACTIONS(10273), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6493), 1, + STATE(6490), 1, sym_comment, - [224637] = 6, - ACTIONS(121), 1, + [226416] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10574), 1, + ACTIONS(10275), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6494), 1, + STATE(6491), 1, sym_comment, - [224656] = 6, - ACTIONS(121), 1, + [226435] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10576), 1, + ACTIONS(10277), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6495), 1, + STATE(6492), 1, sym_comment, - [224675] = 6, - ACTIONS(121), 1, + [226454] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10578), 1, + ACTIONS(10279), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6496), 1, + STATE(6493), 1, sym_comment, - [224694] = 5, + [226473] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(551), 1, - ts_builtin_sym_end, - STATE(285), 1, - aux_sym__block_body_repeat1, - STATE(6497), 1, + STATE(6494), 1, sym_comment, - ACTIONS(33), 2, + ACTIONS(2131), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token4, + ACTIONS(2133), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [226488] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6495), 1, + sym_comment, + ACTIONS(10281), 4, sym__newline, anon_sym_SEMI, - [224711] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226501] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6498), 1, + STATE(6496), 1, sym_comment, - ACTIONS(10580), 4, + ACTIONS(10283), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224724] = 5, - ACTIONS(121), 1, + [226514] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10582), 1, + ACTIONS(10285), 1, anon_sym_DQUOTE, - STATE(6499), 1, + STATE(6497), 1, sym_comment, - STATE(6501), 1, + STATE(6500), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [224741] = 6, + [226531] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(1705), 1, - aux_sym_ctrl_match_token1, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(10584), 1, - aux_sym__immediate_decimal_token1, - STATE(6500), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10287), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6498), 1, + sym_comment, + [226550] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10245), 1, + anon_sym_LBRACK, + ACTIONS(10247), 1, + anon_sym_LPAREN, + STATE(3338), 1, + sym_parameter_parens, + STATE(3340), 1, + sym_parameter_bracks, + STATE(6499), 1, sym_comment, - [224760] = 5, - ACTIONS(121), 1, + [226569] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10586), 1, + ACTIONS(10289), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6501), 1, + STATE(6500), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [224777] = 5, - ACTIONS(121), 1, + [226586] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2159), 1, - anon_sym_PIPE, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - STATE(6502), 1, + ACTIONS(9595), 1, + anon_sym_RPAREN, + STATE(226), 1, + aux_sym__block_body_repeat1, + STATE(6501), 1, sym_comment, - ACTIONS(2155), 2, - anon_sym_if, - anon_sym_EQ_GT, - [224794] = 5, - ACTIONS(121), 1, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [226603] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - ACTIONS(2165), 1, - anon_sym_PIPE, - STATE(6503), 1, + STATE(6502), 1, sym_comment, - ACTIONS(2163), 2, - anon_sym_if, - anon_sym_EQ_GT, - [224811] = 6, - ACTIONS(121), 1, + ACTIONS(10291), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226616] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10588), 1, + ACTIONS(10293), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, + STATE(6503), 1, + sym_comment, + [226635] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10295), 1, + anon_sym_LBRACK, + ACTIONS(10297), 1, + anon_sym_LPAREN, + STATE(6220), 1, + sym_parameter_parens, + STATE(6221), 1, + sym_parameter_bracks, STATE(6504), 1, sym_comment, - [224830] = 6, - ACTIONS(121), 1, + [226654] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10590), 1, + ACTIONS(10299), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6505), 1, sym_comment, - [224849] = 6, - ACTIONS(121), 1, + [226673] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10592), 1, + ACTIONS(10301), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6506), 1, sym_comment, - [224868] = 6, - ACTIONS(121), 1, + [226692] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10594), 1, + ACTIONS(10303), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6507), 1, sym_comment, - [224887] = 6, - ACTIONS(121), 1, + [226711] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10596), 1, + ACTIONS(10305), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6508), 1, sym_comment, - [224906] = 6, - ACTIONS(121), 1, + [226730] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10598), 1, + ACTIONS(10307), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6509), 1, sym_comment, - [224925] = 6, - ACTIONS(121), 1, + [226749] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10600), 1, + ACTIONS(10309), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6510), 1, sym_comment, - [224944] = 6, - ACTIONS(121), 1, + [226768] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10602), 1, + ACTIONS(10311), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6511), 1, sym_comment, - [224963] = 3, + [226787] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10313), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6512), 1, sym_comment, - ACTIONS(10604), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224976] = 3, + [226806] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(8260), 1, + sym__entry_separator, + ACTIONS(8262), 1, + anon_sym_RBRACK, STATE(6513), 1, sym_comment, - ACTIONS(10606), 4, + STATE(7970), 1, + sym__expr_parenthesized_immediate, + [226825] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6514), 1, + sym_comment, + ACTIONS(10315), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224989] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(10608), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(6514), 1, - sym_comment, - STATE(7910), 1, - sym_val_list, - [225008] = 5, - ACTIONS(121), 1, + [226838] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10610), 1, - anon_sym_DQUOTE, STATE(6515), 1, sym_comment, - STATE(6516), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225025] = 5, - ACTIONS(121), 1, + ACTIONS(10317), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226851] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10612), 1, + ACTIONS(10319), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6516), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6520), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [225042] = 3, + [226868] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4942), 1, + sym__newline, + ACTIONS(4944), 1, + sym__space, + ACTIONS(10321), 1, + anon_sym_EQ2, + ACTIONS(10323), 1, + sym_short_flag_identifier, STATE(6517), 1, sym_comment, - ACTIONS(10614), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225055] = 6, - ACTIONS(121), 1, + [226887] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10616), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2101), 1, + anon_sym_PIPE, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, STATE(6518), 1, sym_comment, - [225074] = 6, - ACTIONS(121), 1, + ACTIONS(2097), 2, + anon_sym_if, + anon_sym_EQ_GT, + [226904] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10618), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(996), 1, + anon_sym_DOT, STATE(6519), 1, sym_comment, - [225093] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10620), 1, + ACTIONS(994), 3, anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + sym__entry_separator, + sym__table_head_separator, + [226919] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10325), 1, + anon_sym_DQUOTE, STATE(6520), 1, sym_comment, - [225112] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [226936] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10622), 1, + ACTIONS(10327), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6521), 1, sym_comment, - [225131] = 6, - ACTIONS(121), 1, + [226955] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10624), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + ACTIONS(2107), 1, + anon_sym_PIPE, STATE(6522), 1, sym_comment, - [225150] = 6, - ACTIONS(121), 1, + ACTIONS(2105), 2, + anon_sym_if, + anon_sym_EQ_GT, + [226972] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10626), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6523), 1, sym_comment, - [225169] = 6, - ACTIONS(121), 1, + ACTIONS(10329), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [226985] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10628), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10331), 1, + anon_sym_DQUOTE, STATE(6524), 1, sym_comment, - [225188] = 6, - ACTIONS(121), 1, + STATE(6648), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227002] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10630), 1, + ACTIONS(10333), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6525), 1, sym_comment, - [225207] = 3, + [227021] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10335), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6526), 1, sym_comment, - ACTIONS(10632), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225220] = 4, + [227040] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1608), 1, - aux_sym_unquoted_token2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10337), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6527), 1, sym_comment, - ACTIONS(1610), 3, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT, - [225235] = 5, - ACTIONS(121), 1, + [227059] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10634), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10339), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6528), 1, sym_comment, - STATE(6529), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225252] = 5, - ACTIONS(121), 1, + [227078] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10636), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10341), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6529), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225269] = 3, + [227097] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10343), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6530), 1, sym_comment, - ACTIONS(10638), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225282] = 6, - ACTIONS(121), 1, + [227116] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10640), 1, + ACTIONS(10345), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6531), 1, sym_comment, - [225301] = 6, - ACTIONS(121), 1, + [227135] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10642), 1, + ACTIONS(10347), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6532), 1, sym_comment, - [225320] = 6, - ACTIONS(121), 1, + [227154] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10644), 1, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2105), 1, anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2107), 1, + sym__entry_separator, STATE(6533), 1, sym_comment, - [225339] = 6, - ACTIONS(121), 1, + [227173] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10646), 1, + ACTIONS(10349), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6534), 1, sym_comment, - [225358] = 6, - ACTIONS(121), 1, + [227192] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10648), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6535), 1, sym_comment, - [225377] = 6, - ACTIONS(121), 1, + ACTIONS(10351), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [227205] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10650), 1, + ACTIONS(10353), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6536), 1, sym_comment, - [225396] = 6, - ACTIONS(121), 1, + [227224] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10652), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10355), 1, + anon_sym_DQUOTE, STATE(6537), 1, sym_comment, - [225415] = 6, - ACTIONS(121), 1, + STATE(6539), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227241] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10654), 1, + ACTIONS(10357), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6538), 1, sym_comment, - [225434] = 3, + [227260] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10359), 1, + anon_sym_DQUOTE, STATE(6539), 1, sym_comment, - ACTIONS(10656), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225447] = 4, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227277] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10658), 1, - anon_sym_LPAREN, + ACTIONS(9366), 1, + aux_sym_ctrl_match_token1, + STATE(1814), 1, + sym_val_closure, + STATE(1850), 1, + sym_block, + STATE(5056), 1, + sym__blosure, STATE(6540), 1, sym_comment, - ACTIONS(10660), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [225462] = 5, - ACTIONS(121), 1, + [227296] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10662), 1, - anon_sym_DQUOTE, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, STATE(6541), 1, sym_comment, - STATE(6543), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225479] = 4, - ACTIONS(121), 1, + ACTIONS(1698), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [227311] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10664), 1, - anon_sym_LPAREN, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10361), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6542), 1, sym_comment, - ACTIONS(10666), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [225494] = 5, - ACTIONS(121), 1, + [227330] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10668), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6543), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225511] = 6, - ACTIONS(121), 1, + [227349] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10670), 1, + ACTIONS(10365), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6544), 1, sym_comment, - [225530] = 6, - ACTIONS(121), 1, + [227368] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10672), 1, + ACTIONS(10367), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6545), 1, sym_comment, - [225549] = 6, - ACTIONS(121), 1, + [227387] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10674), 1, + ACTIONS(10369), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6546), 1, sym_comment, - [225568] = 6, - ACTIONS(121), 1, + [227406] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10676), 1, + ACTIONS(10371), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6547), 1, sym_comment, - [225587] = 6, - ACTIONS(121), 1, + [227425] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10678), 1, + ACTIONS(10373), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6548), 1, sym_comment, - [225606] = 6, - ACTIONS(121), 1, + [227444] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10680), 1, + ACTIONS(10375), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6549), 1, sym_comment, - [225625] = 6, - ACTIONS(121), 1, + [227463] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10682), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6550), 1, sym_comment, - [225644] = 6, - ACTIONS(121), 1, + ACTIONS(10377), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227476] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(8256), 1, sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10684), 1, + ACTIONS(8258), 1, anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6551), 1, sym_comment, - [225663] = 6, - ACTIONS(121), 1, + STATE(7970), 1, + sym__expr_parenthesized_immediate, + [227495] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10686), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6552), 1, sym_comment, - [225682] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6553), 1, - sym_comment, - ACTIONS(10688), 4, + ACTIONS(10379), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [225695] = 5, - ACTIONS(121), 1, + [227508] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10690), 1, + ACTIONS(10381), 1, anon_sym_DQUOTE, - STATE(6554), 1, + STATE(6553), 1, sym_comment, - STATE(6556), 1, + STATE(6555), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [225712] = 6, - ACTIONS(121), 1, + [227525] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(6072), 1, - anon_sym_RBRACK, - ACTIONS(6078), 1, - sym__entry_separator, - STATE(6555), 1, + ACTIONS(10383), 1, + aux_sym_ctrl_match_token1, + STATE(1997), 1, + sym_block, + STATE(2090), 1, + sym_val_closure, + STATE(5336), 1, + sym__blosure, + STATE(6554), 1, sym_comment, - STATE(7684), 1, - sym__expr_parenthesized_immediate, - [225731] = 5, - ACTIONS(121), 1, + [227544] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10692), 1, + ACTIONS(10385), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6556), 1, + STATE(6555), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [225748] = 5, + [227561] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6556), 1, + sym_comment, + ACTIONS(10387), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227574] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10055), 1, - anon_sym_RPAREN, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10389), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6557), 1, sym_comment, - STATE(6757), 1, - aux_sym__block_body_repeat1, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [225765] = 6, + [227593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10694), 1, - aux_sym_ctrl_match_token1, - STATE(1937), 1, - sym_block, - STATE(1938), 1, - sym_val_closure, - STATE(5285), 1, - sym__blosure, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10391), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6558), 1, sym_comment, - [225784] = 6, - ACTIONS(121), 1, + [227612] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10696), 1, + ACTIONS(10393), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6559), 1, sym_comment, - [225803] = 6, - ACTIONS(121), 1, + [227631] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10698), 1, + ACTIONS(10395), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6560), 1, sym_comment, - [225822] = 6, - ACTIONS(121), 1, + [227650] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10700), 1, + ACTIONS(10397), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6561), 1, sym_comment, - [225841] = 6, - ACTIONS(121), 1, + [227669] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10702), 1, + ACTIONS(10399), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6562), 1, sym_comment, - [225860] = 6, - ACTIONS(121), 1, + [227688] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10704), 1, + ACTIONS(10401), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6563), 1, sym_comment, - [225879] = 6, - ACTIONS(121), 1, + [227707] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10706), 1, + ACTIONS(10403), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6564), 1, sym_comment, - [225898] = 6, - ACTIONS(121), 1, + [227726] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10708), 1, + ACTIONS(10405), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6565), 1, sym_comment, - [225917] = 6, - ACTIONS(121), 1, + [227745] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10710), 1, + ACTIONS(10407), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6566), 1, sym_comment, - [225936] = 3, + [227764] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10409), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6567), 1, sym_comment, - ACTIONS(10712), 4, + [227783] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6568), 1, + sym_comment, + ACTIONS(10411), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [225949] = 5, - ACTIONS(121), 1, + [227796] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10714), 1, + ACTIONS(10413), 1, anon_sym_DQUOTE, - STATE(6568), 1, + STATE(6569), 1, sym_comment, STATE(6570), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [225966] = 3, + [227813] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6569), 1, - sym_comment, - ACTIONS(10716), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225979] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(10718), 1, + ACTIONS(10415), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6570), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [225996] = 3, + [227830] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10417), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6571), 1, sym_comment, - ACTIONS(10716), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226009] = 3, - ACTIONS(3), 1, + [227849] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1648), 1, + aux_sym_unquoted_token2, STATE(6572), 1, sym_comment, - ACTIONS(10720), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226022] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6573), 1, - sym_comment, - ACTIONS(10722), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226035] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6574), 1, - sym_comment, - ACTIONS(10724), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226048] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2075), 1, + ACTIONS(1650), 3, anon_sym_PIPE, - STATE(6575), 1, - sym_comment, - ACTIONS(2073), 3, anon_sym_if, anon_sym_EQ_GT, - aux_sym_unquoted_token7, - [226063] = 3, + [227864] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6576), 1, - sym_comment, - ACTIONS(10724), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226076] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10726), 1, + ACTIONS(10419), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6577), 1, + STATE(6573), 1, sym_comment, - [226095] = 6, - ACTIONS(121), 1, + [227883] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10728), 1, + ACTIONS(10421), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6578), 1, + STATE(6574), 1, sym_comment, - [226114] = 6, - ACTIONS(121), 1, + [227902] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10730), 1, + ACTIONS(10423), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6579), 1, + STATE(6575), 1, sym_comment, - [226133] = 6, - ACTIONS(121), 1, + [227921] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10732), 1, + ACTIONS(10425), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6580), 1, + STATE(6576), 1, sym_comment, - [226152] = 6, - ACTIONS(121), 1, + [227940] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10734), 1, + ACTIONS(10427), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6581), 1, + STATE(6577), 1, sym_comment, - [226171] = 6, - ACTIONS(121), 1, + [227959] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10736), 1, + ACTIONS(10429), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6582), 1, + STATE(6578), 1, sym_comment, - [226190] = 6, - ACTIONS(121), 1, + [227978] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10738), 1, + ACTIONS(10431), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6583), 1, + STATE(6579), 1, sym_comment, - [226209] = 6, - ACTIONS(121), 1, + [227997] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10740), 1, + ACTIONS(10433), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6584), 1, + STATE(6580), 1, sym_comment, - [226228] = 5, - ACTIONS(121), 1, + [228016] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6169), 1, - anon_sym_LPAREN2, - ACTIONS(6171), 1, - aux_sym__unquoted_in_list_token3, - STATE(6585), 1, + STATE(6581), 1, sym_comment, - ACTIONS(6167), 2, - anon_sym_RBRACK, - sym__entry_separator, - [226245] = 3, - ACTIONS(3), 1, + ACTIONS(10435), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228029] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6586), 1, + STATE(6582), 1, sym_comment, - ACTIONS(10742), 4, + ACTIONS(10437), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [226258] = 5, - ACTIONS(121), 1, + [228042] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10744), 1, + ACTIONS(10439), 1, anon_sym_DQUOTE, - STATE(6587), 1, + STATE(6583), 1, sym_comment, - STATE(6589), 1, + STATE(6584), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [226275] = 3, + [228059] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6588), 1, - sym_comment, - ACTIONS(10746), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226288] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(10748), 1, + ACTIONS(10441), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6589), 1, + STATE(6584), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [226305] = 3, - ACTIONS(3), 1, + [228076] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6590), 1, + STATE(6585), 1, sym_comment, - ACTIONS(10750), 4, + ACTIONS(10443), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226318] = 6, - ACTIONS(3), 1, + [228089] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10226), 1, - anon_sym_use, - ACTIONS(10228), 1, - anon_sym_list, - ACTIONS(10230), 1, - anon_sym_hide, - ACTIONS(10232), 1, - anon_sym_new, - STATE(6591), 1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(4883), 1, + sym_block, + STATE(6586), 1, sym_comment, - [226337] = 6, - ACTIONS(121), 1, + [228108] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10752), 1, + ACTIONS(10445), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6592), 1, + STATE(6587), 1, sym_comment, - [226356] = 6, - ACTIONS(121), 1, + [228127] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10754), 1, + ACTIONS(10447), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6593), 1, + STATE(6588), 1, sym_comment, - [226375] = 6, - ACTIONS(121), 1, + [228146] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10756), 1, + ACTIONS(10449), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6594), 1, + STATE(6589), 1, sym_comment, - [226394] = 6, - ACTIONS(121), 1, + [228165] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10758), 1, + ACTIONS(10451), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6595), 1, + STATE(6590), 1, sym_comment, - [226413] = 6, - ACTIONS(121), 1, + [228184] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10760), 1, + ACTIONS(10453), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6596), 1, + STATE(6591), 1, sym_comment, - [226432] = 6, - ACTIONS(121), 1, + [228203] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10762), 1, + ACTIONS(10455), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6597), 1, + STATE(6592), 1, sym_comment, - [226451] = 6, - ACTIONS(121), 1, + [228222] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10764), 1, + ACTIONS(10457), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6598), 1, + STATE(6593), 1, sym_comment, - [226470] = 6, - ACTIONS(121), 1, + [228241] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10766), 1, + ACTIONS(10459), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6599), 1, + STATE(6594), 1, sym_comment, - [226489] = 6, - ACTIONS(3), 1, + [228260] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(4829), 1, - sym_block, - STATE(6600), 1, + STATE(6595), 1, sym_comment, - STATE(6830), 1, - aux_sym_shebang_repeat1, - [226508] = 4, - ACTIONS(121), 1, + ACTIONS(10461), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228273] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - STATE(6601), 1, + STATE(6596), 1, sym_comment, - ACTIONS(948), 3, + ACTIONS(10463), 4, sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [226523] = 3, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [228286] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6602), 1, + ACTIONS(10465), 1, + anon_sym_DQUOTE, + STATE(6597), 1, + sym_comment, + STATE(6598), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228303] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10467), 1, + anon_sym_DQUOTE, + STATE(6598), 1, + sym_comment, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228320] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6599), 1, + sym_comment, + ACTIONS(10469), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228333] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6600), 1, sym_comment, - ACTIONS(10768), 4, + ACTIONS(10471), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [226536] = 5, - ACTIONS(121), 1, + [228346] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10770), 1, + ACTIONS(10473), 1, anon_sym_DQUOTE, - STATE(6603), 1, + STATE(6601), 1, sym_comment, - STATE(6606), 1, + STATE(6603), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [226553] = 5, - ACTIONS(121), 1, + [228363] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6602), 1, + sym_comment, + ACTIONS(10475), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228376] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10772), 1, + ACTIONS(10477), 1, anon_sym_DQUOTE, - STATE(6604), 1, + STATE(6603), 1, sym_comment, - STATE(6643), 1, + STATE(6882), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [226570] = 3, - ACTIONS(3), 1, + [228393] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6605), 1, + STATE(6604), 1, sym_comment, - ACTIONS(10774), 4, + ACTIONS(10479), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226583] = 5, - ACTIONS(121), 1, + [228406] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6605), 1, + sym_comment, + ACTIONS(10481), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [228419] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10776), 1, + ACTIONS(10483), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6606), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6607), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [226600] = 6, + [228436] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10778), 1, - anon_sym_LBRACK, - ACTIONS(10780), 1, - anon_sym_LPAREN, - STATE(3243), 1, - sym_parameter_bracks, - STATE(3258), 1, - sym_parameter_parens, + ACTIONS(10485), 1, + anon_sym_DQUOTE, STATE(6607), 1, sym_comment, - [226619] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228453] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10245), 1, anon_sym_LBRACK, - ACTIONS(10782), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10247), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_parameter_bracks, + STATE(3339), 1, + sym_parameter_parens, STATE(6608), 1, sym_comment, - [226638] = 6, - ACTIONS(121), 1, + [228472] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10784), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6609), 1, sym_comment, - [226657] = 6, - ACTIONS(121), 1, + ACTIONS(10487), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [228485] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10786), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10489), 1, + anon_sym_DQUOTE, STATE(6610), 1, sym_comment, - [226676] = 6, - ACTIONS(121), 1, + STATE(6611), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228502] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10788), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10491), 1, + anon_sym_DQUOTE, STATE(6611), 1, sym_comment, - [226695] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228519] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10790), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6612), 1, sym_comment, - [226714] = 6, - ACTIONS(121), 1, + ACTIONS(10493), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228532] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10792), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6613), 1, sym_comment, - [226733] = 6, - ACTIONS(121), 1, + ACTIONS(10495), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [228545] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10794), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10497), 1, + anon_sym_DQUOTE, STATE(6614), 1, sym_comment, - [226752] = 6, - ACTIONS(121), 1, + STATE(6615), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228562] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10796), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10499), 1, + anon_sym_DQUOTE, STATE(6615), 1, sym_comment, - [226771] = 3, - ACTIONS(3), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228579] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6616), 1, sym_comment, - ACTIONS(10798), 4, + ACTIONS(10501), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226784] = 6, - ACTIONS(3), 1, + [228592] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10778), 1, - anon_sym_LBRACK, - ACTIONS(10780), 1, - anon_sym_LPAREN, - STATE(6081), 1, - sym_parameter_parens, - STATE(6082), 1, - sym_parameter_bracks, STATE(6617), 1, sym_comment, - [226803] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6618), 1, - sym_comment, - ACTIONS(10800), 4, + ACTIONS(10503), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [226816] = 5, - ACTIONS(121), 1, + [228605] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10802), 1, + ACTIONS(10505), 1, anon_sym_DQUOTE, - STATE(6619), 1, + STATE(6618), 1, sym_comment, - STATE(6620), 1, + STATE(6619), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [226833] = 5, - ACTIONS(121), 1, + [228622] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10804), 1, + ACTIONS(10507), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6620), 1, + STATE(6619), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [226850] = 6, - ACTIONS(121), 1, + [228639] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6620), 1, + sym_comment, + ACTIONS(10509), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228652] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10806), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6621), 1, sym_comment, - [226869] = 6, - ACTIONS(121), 1, + ACTIONS(10511), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [228665] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10808), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10513), 1, + anon_sym_DQUOTE, STATE(6622), 1, sym_comment, - [226888] = 6, - ACTIONS(121), 1, + STATE(6623), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228682] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10810), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10515), 1, + anon_sym_DQUOTE, STATE(6623), 1, sym_comment, - [226907] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228699] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10812), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6624), 1, sym_comment, - [226926] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10814), 1, + ACTIONS(1589), 2, anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1591), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [228714] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6625), 1, sym_comment, - [226945] = 6, - ACTIONS(121), 1, + ACTIONS(10517), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [228727] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10816), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10519), 1, + anon_sym_DQUOTE, STATE(6626), 1, sym_comment, - [226964] = 6, - ACTIONS(121), 1, + STATE(6627), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228744] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10818), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10521), 1, + anon_sym_DQUOTE, STATE(6627), 1, sym_comment, - [226983] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228761] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10820), 1, + ACTIONS(10523), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6628), 1, sym_comment, - [227002] = 3, - ACTIONS(3), 1, + [228780] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6629), 1, sym_comment, - ACTIONS(10822), 4, + ACTIONS(10525), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [227015] = 5, - ACTIONS(121), 1, + [228793] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10824), 1, + ACTIONS(10527), 1, anon_sym_DQUOTE, STATE(6630), 1, sym_comment, STATE(6631), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [227032] = 5, - ACTIONS(121), 1, + [228810] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10826), 1, + ACTIONS(10529), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6631), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [227049] = 6, - ACTIONS(121), 1, + [228827] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10245), 1, anon_sym_LBRACK, - ACTIONS(10828), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10247), 1, + anon_sym_LPAREN, + STATE(3336), 1, + sym_parameter_parens, + STATE(3337), 1, + sym_parameter_bracks, STATE(6632), 1, sym_comment, - [227068] = 6, - ACTIONS(121), 1, + [228846] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10830), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6633), 1, sym_comment, - [227087] = 6, - ACTIONS(121), 1, + ACTIONS(10531), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [228859] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10832), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10533), 1, + anon_sym_DQUOTE, STATE(6634), 1, sym_comment, - [227106] = 6, - ACTIONS(121), 1, + STATE(6635), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228876] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10834), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10535), 1, + anon_sym_DQUOTE, STATE(6635), 1, sym_comment, - [227125] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228893] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10836), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1519), 1, + aux_sym_cmd_identifier_token41, STATE(6636), 1, sym_comment, - [227144] = 6, - ACTIONS(121), 1, + ACTIONS(1521), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [228908] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10838), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6637), 1, sym_comment, - [227163] = 6, - ACTIONS(121), 1, + ACTIONS(10537), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [228921] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10840), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10539), 1, + anon_sym_DQUOTE, STATE(6638), 1, sym_comment, - [227182] = 6, - ACTIONS(121), 1, + STATE(6639), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228938] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10842), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10541), 1, + anon_sym_DQUOTE, STATE(6639), 1, sym_comment, - [227201] = 3, - ACTIONS(3), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228955] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(4884), 1, + sym_block, + STATE(6436), 1, + aux_sym_shebang_repeat1, STATE(6640), 1, sym_comment, - ACTIONS(10844), 4, + [228974] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6641), 1, + sym_comment, + ACTIONS(10543), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [227214] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(10846), 1, - anon_sym_DQUOTE, - STATE(6641), 1, - sym_comment, - STATE(6642), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227231] = 5, - ACTIONS(121), 1, + [228987] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10848), 1, + ACTIONS(10545), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6642), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6643), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [227248] = 5, - ACTIONS(121), 1, + [229004] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10850), 1, + ACTIONS(10547), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6643), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [227265] = 3, - ACTIONS(121), 1, + [229021] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10295), 1, + anon_sym_LBRACK, + ACTIONS(10297), 1, + anon_sym_LPAREN, + STATE(6283), 1, + sym_parameter_parens, + STATE(6284), 1, + sym_parameter_bracks, STATE(6644), 1, sym_comment, - ACTIONS(2073), 4, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token7, - [227278] = 6, - ACTIONS(121), 1, + [229040] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10852), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6645), 1, sym_comment, - [227297] = 6, - ACTIONS(121), 1, + ACTIONS(10549), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229053] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10854), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10551), 1, + anon_sym_DQUOTE, STATE(6646), 1, sym_comment, - [227316] = 6, - ACTIONS(121), 1, + STATE(6647), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229070] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10856), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10553), 1, + anon_sym_DQUOTE, STATE(6647), 1, sym_comment, - [227335] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229087] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10858), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10555), 1, + anon_sym_DQUOTE, STATE(6648), 1, sym_comment, - [227354] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229104] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10860), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6649), 1, sym_comment, - [227373] = 6, - ACTIONS(121), 1, + ACTIONS(10557), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229117] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10862), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10559), 1, + anon_sym_DQUOTE, STATE(6650), 1, sym_comment, - [227392] = 6, - ACTIONS(121), 1, + STATE(6651), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229134] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10864), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10561), 1, + anon_sym_DQUOTE, STATE(6651), 1, sym_comment, - [227411] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229151] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2117), 1, + anon_sym_RBRACE, + ACTIONS(2119), 1, + anon_sym_LPAREN2, + ACTIONS(2121), 1, sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10866), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6652), 1, sym_comment, - [227430] = 3, - ACTIONS(3), 1, + [229170] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6653), 1, sym_comment, - ACTIONS(10868), 4, + ACTIONS(10563), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [227443] = 5, - ACTIONS(121), 1, + [229183] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10870), 1, + ACTIONS(10565), 1, anon_sym_DQUOTE, STATE(6654), 1, sym_comment, STATE(6655), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [227460] = 5, - ACTIONS(121), 1, + [229200] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10872), 1, + ACTIONS(10567), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6655), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [227477] = 6, - ACTIONS(3), 1, + [229217] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(4788), 1, - sym_block, - STATE(6485), 1, - aux_sym_shebang_repeat1, + ACTIONS(609), 1, + ts_builtin_sym_end, + STATE(233), 1, + aux_sym__block_body_repeat1, STATE(6656), 1, sym_comment, - [227496] = 6, - ACTIONS(121), 1, + ACTIONS(33), 2, + sym__newline, + anon_sym_SEMI, + [229234] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10874), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6657), 1, sym_comment, - [227515] = 6, - ACTIONS(121), 1, + ACTIONS(10569), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229247] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10876), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10571), 1, + anon_sym_DQUOTE, STATE(6658), 1, sym_comment, - [227534] = 6, - ACTIONS(121), 1, + STATE(6659), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229264] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10878), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10573), 1, + anon_sym_DQUOTE, STATE(6659), 1, sym_comment, - [227553] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229281] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10880), 1, + ACTIONS(1457), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2117), 1, anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2119), 1, + anon_sym_LPAREN2, + ACTIONS(2121), 1, + sym__entry_separator, STATE(6660), 1, sym_comment, - [227572] = 6, - ACTIONS(121), 1, + [229300] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10882), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6661), 1, sym_comment, - [227591] = 6, - ACTIONS(121), 1, + ACTIONS(10575), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229313] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10884), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10577), 1, + anon_sym_DQUOTE, STATE(6662), 1, sym_comment, - [227610] = 6, - ACTIONS(121), 1, + STATE(6663), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229330] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10886), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10579), 1, + anon_sym_DQUOTE, STATE(6663), 1, sym_comment, - [227629] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229347] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10888), 1, + ACTIONS(10581), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6664), 1, sym_comment, - [227648] = 3, - ACTIONS(3), 1, + [229366] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6665), 1, sym_comment, - ACTIONS(10890), 4, + ACTIONS(10583), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [227661] = 5, - ACTIONS(121), 1, + [229379] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10892), 1, + ACTIONS(10585), 1, anon_sym_DQUOTE, STATE(6666), 1, sym_comment, STATE(6667), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [227678] = 5, - ACTIONS(121), 1, + [229396] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10894), 1, + ACTIONS(10587), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6667), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [227695] = 6, + [229413] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8850), 1, - anon_sym_DOLLAR, - ACTIONS(8911), 1, - sym_identifier, - STATE(5587), 1, - sym_val_variable, - STATE(6149), 1, - sym__variable_name, - STATE(6668), 1, - sym_comment, - [227714] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10896), 1, + ACTIONS(10589), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, + STATE(6668), 1, + sym_comment, + [229432] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6669), 1, sym_comment, - [227733] = 6, - ACTIONS(121), 1, + ACTIONS(10591), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229445] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10898), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10593), 1, + anon_sym_DQUOTE, STATE(6670), 1, sym_comment, - [227752] = 6, - ACTIONS(121), 1, + STATE(6671), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229462] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10900), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10595), 1, + anon_sym_DQUOTE, STATE(6671), 1, sym_comment, - [227771] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229479] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10902), 1, + ACTIONS(10597), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6672), 1, sym_comment, - [227790] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10904), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, - STATE(6673), 1, - sym_comment, - [227809] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10906), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, - STATE(6674), 1, - sym_comment, - [227828] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10908), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, - STATE(6675), 1, - sym_comment, - [227847] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10910), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, - STATE(6676), 1, - sym_comment, - [227866] = 3, - ACTIONS(3), 1, + [229498] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6677), 1, + STATE(6673), 1, sym_comment, - ACTIONS(10912), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227879] = 3, + ACTIONS(10599), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229511] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6678), 1, + ACTIONS(10601), 1, + anon_sym_DQUOTE, + STATE(6674), 1, sym_comment, - ACTIONS(10912), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227892] = 3, + STATE(6675), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229528] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6679), 1, + ACTIONS(10603), 1, + anon_sym_DQUOTE, + STATE(6675), 1, + sym_comment, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229545] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1481), 1, + aux_sym_cmd_identifier_token41, + STATE(6676), 1, + sym_comment, + ACTIONS(1483), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [229560] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6677), 1, sym_comment, - ACTIONS(10914), 4, + ACTIONS(10605), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [227905] = 5, - ACTIONS(121), 1, + [229573] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10916), 1, + ACTIONS(10607), 1, anon_sym_DQUOTE, - STATE(6680), 1, + STATE(6678), 1, sym_comment, - STATE(6681), 1, + STATE(6679), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [227922] = 5, - ACTIONS(121), 1, + [229590] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10918), 1, + ACTIONS(10609), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6681), 1, + STATE(6679), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [227939] = 6, + [229607] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10778), 1, - anon_sym_LBRACK, - ACTIONS(10780), 1, - anon_sym_LPAREN, - STATE(5986), 1, - sym_parameter_parens, - STATE(5989), 1, - sym_parameter_bracks, - STATE(6682), 1, - sym_comment, - [227958] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10920), 1, + ACTIONS(10611), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, + STATE(6680), 1, + sym_comment, + [229626] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6681), 1, + sym_comment, + ACTIONS(10613), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229639] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10615), 1, + anon_sym_DQUOTE, + STATE(6682), 1, + sym_comment, + STATE(6683), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229656] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10617), 1, + anon_sym_DQUOTE, STATE(6683), 1, sym_comment, - [227977] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229673] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10922), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(10619), 1, + anon_sym_DOT_DOT2, STATE(6684), 1, sym_comment, - [227996] = 6, - ACTIONS(121), 1, + ACTIONS(10621), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [229690] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10924), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6685), 1, sym_comment, - [228015] = 6, - ACTIONS(121), 1, + ACTIONS(10623), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229703] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10926), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10625), 1, + anon_sym_DQUOTE, STATE(6686), 1, sym_comment, - [228034] = 6, - ACTIONS(121), 1, + STATE(6687), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229720] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10928), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10627), 1, + anon_sym_DQUOTE, STATE(6687), 1, sym_comment, - [228053] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229737] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10930), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6688), 1, sym_comment, - [228072] = 6, - ACTIONS(121), 1, + ACTIONS(10629), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [229750] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10932), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6689), 1, sym_comment, - [228091] = 6, - ACTIONS(121), 1, + ACTIONS(10631), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229763] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10934), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10633), 1, + anon_sym_DQUOTE, STATE(6690), 1, sym_comment, - [228110] = 3, + STATE(6691), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229780] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10635), 1, + anon_sym_DQUOTE, STATE(6691), 1, sym_comment, - ACTIONS(10936), 4, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229797] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6692), 1, + sym_comment, + ACTIONS(10443), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [228123] = 3, - ACTIONS(3), 1, + [229810] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6692), 1, + STATE(6693), 1, sym_comment, - ACTIONS(10938), 4, + ACTIONS(10637), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228136] = 5, - ACTIONS(121), 1, + [229823] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10940), 1, + ACTIONS(10639), 1, anon_sym_DQUOTE, - STATE(6693), 1, - sym_comment, STATE(6694), 1, + sym_comment, + STATE(6695), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228153] = 5, - ACTIONS(121), 1, + [229840] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10942), 1, + ACTIONS(10641), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6694), 1, + STATE(6695), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228170] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10944), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, - STATE(6695), 1, - sym_comment, - [228189] = 6, - ACTIONS(121), 1, + [229857] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10946), 1, + ACTIONS(10643), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6696), 1, sym_comment, - [228208] = 6, - ACTIONS(121), 1, + [229876] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10948), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6697), 1, sym_comment, - [228227] = 6, - ACTIONS(121), 1, + ACTIONS(10645), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229889] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10950), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10647), 1, + anon_sym_DQUOTE, STATE(6698), 1, sym_comment, - [228246] = 6, - ACTIONS(121), 1, + STATE(6699), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229906] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10952), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10649), 1, + anon_sym_DQUOTE, STATE(6699), 1, sym_comment, - [228265] = 6, - ACTIONS(121), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229923] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10954), 1, + ACTIONS(10651), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6700), 1, sym_comment, - [228284] = 6, - ACTIONS(121), 1, + [229942] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10956), 1, + ACTIONS(10653), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6701), 1, sym_comment, - [228303] = 6, - ACTIONS(121), 1, + [229961] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(10958), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10655), 1, + anon_sym_DQUOTE, STATE(6702), 1, sym_comment, - [228322] = 3, + STATE(6703), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229978] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10657), 1, + anon_sym_DQUOTE, STATE(6703), 1, sym_comment, - ACTIONS(10960), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228335] = 3, - ACTIONS(3), 1, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [229995] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6704), 1, sym_comment, - ACTIONS(10962), 4, + ACTIONS(10659), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228348] = 5, - ACTIONS(121), 1, + [230008] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10964), 1, + ACTIONS(10661), 1, anon_sym_DQUOTE, STATE(6705), 1, sym_comment, STATE(6706), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228365] = 5, - ACTIONS(121), 1, + [230025] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10966), 1, + ACTIONS(10663), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6706), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228382] = 3, - ACTIONS(3), 1, + [230042] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6707), 1, sym_comment, - ACTIONS(10968), 4, + ACTIONS(10665), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228395] = 5, - ACTIONS(121), 1, + [230055] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10970), 1, + ACTIONS(10667), 1, anon_sym_DQUOTE, STATE(6708), 1, sym_comment, STATE(6709), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228412] = 5, - ACTIONS(121), 1, + [230072] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10972), 1, + ACTIONS(10669), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6709), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228429] = 3, - ACTIONS(3), 1, + [230089] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6710), 1, sym_comment, - ACTIONS(10974), 4, + ACTIONS(10671), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228442] = 5, - ACTIONS(121), 1, + [230102] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10976), 1, + ACTIONS(10673), 1, anon_sym_DQUOTE, STATE(6711), 1, sym_comment, STATE(6712), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228459] = 5, - ACTIONS(121), 1, + [230119] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10978), 1, + ACTIONS(10675), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6712), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228476] = 3, + [230136] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10677), 1, + anon_sym_DQUOTE, STATE(6713), 1, sym_comment, - ACTIONS(10980), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228489] = 5, - ACTIONS(121), 1, + STATE(6714), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [230153] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10982), 1, + ACTIONS(10679), 1, anon_sym_DQUOTE, STATE(6714), 1, sym_comment, - STATE(6715), 1, + STATE(6882), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228506] = 5, - ACTIONS(121), 1, + [230170] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10984), 1, + ACTIONS(10681), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6715), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6716), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228523] = 6, - ACTIONS(121), 1, + [230187] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_RBRACE, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2081), 1, - sym__entry_separator, - ACTIONS(2083), 1, - aux_sym__unquoted_in_record_token7, + ACTIONS(10683), 1, + anon_sym_DQUOTE, STATE(6716), 1, sym_comment, - [228542] = 3, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [230204] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10685), 1, + anon_sym_DQUOTE, STATE(6717), 1, sym_comment, - ACTIONS(10986), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228555] = 5, - ACTIONS(121), 1, + STATE(6718), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [230221] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10988), 1, + ACTIONS(10687), 1, anon_sym_DQUOTE, STATE(6718), 1, sym_comment, - STATE(6719), 1, + STATE(6882), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228572] = 5, - ACTIONS(121), 1, + [230238] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10990), 1, + ACTIONS(10689), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6719), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6720), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228589] = 3, + [230255] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6720), 1, - sym_comment, - ACTIONS(10992), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228602] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(10994), 1, + ACTIONS(10691), 1, anon_sym_DQUOTE, - STATE(6721), 1, + STATE(6720), 1, sym_comment, - STATE(6722), 1, + STATE(6882), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [228619] = 5, - ACTIONS(121), 1, + [230272] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1537), 1, + aux_sym_record_entry_token1, + ACTIONS(10693), 1, + aux_sym_cmd_identifier_token41, + STATE(6721), 1, + sym_comment, + ACTIONS(10695), 2, + sym_filesize_unit, + sym_duration_unit, + [230289] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10996), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6722), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228636] = 3, - ACTIONS(3), 1, + ACTIONS(10697), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230302] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10245), 1, + anon_sym_LBRACK, + ACTIONS(10247), 1, + anon_sym_LPAREN, + STATE(3321), 1, + sym_parameter_parens, + STATE(3322), 1, + sym_parameter_bracks, STATE(6723), 1, sym_comment, - ACTIONS(10998), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228649] = 5, - ACTIONS(121), 1, + [230321] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11000), 1, - anon_sym_DQUOTE, STATE(6724), 1, sym_comment, - STATE(6725), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228666] = 5, - ACTIONS(121), 1, + ACTIONS(986), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(988), 2, + anon_sym_DOT, + sym__entry_separator, + [230336] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11002), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(1429), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1690), 1, + anon_sym_RBRACE, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(1698), 1, + sym__entry_separator, STATE(6725), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228683] = 3, - ACTIONS(3), 1, + [230355] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1698), 1, + aux_sym_ctrl_match_token1, + ACTIONS(10699), 1, + anon_sym_DOT_DOT2, STATE(6726), 1, sym_comment, - ACTIONS(11004), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228696] = 5, - ACTIONS(121), 1, + ACTIONS(10701), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [230372] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11006), 1, - anon_sym_DQUOTE, STATE(6727), 1, sym_comment, - STATE(6728), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228713] = 5, - ACTIONS(121), 1, + ACTIONS(990), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(992), 2, + anon_sym_DOT, + sym__entry_separator, + [230387] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11008), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6728), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228730] = 3, - ACTIONS(3), 1, + ACTIONS(10703), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230400] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym_cmd_identifier_token41, STATE(6729), 1, sym_comment, - ACTIONS(11010), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228743] = 5, - ACTIONS(121), 1, + ACTIONS(1587), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [230415] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11012), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10705), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6730), 1, sym_comment, - STATE(6731), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228760] = 5, - ACTIONS(121), 1, + [230434] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11014), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(10707), 1, + anon_sym_LPAREN, STATE(6731), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228777] = 3, - ACTIONS(3), 1, + ACTIONS(10709), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [230449] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10245), 1, + anon_sym_LBRACK, + ACTIONS(10247), 1, + anon_sym_LPAREN, + STATE(5971), 1, + sym_parameter_parens, + STATE(5973), 1, + sym_parameter_bracks, STATE(6732), 1, sym_comment, - ACTIONS(11016), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228790] = 5, - ACTIONS(121), 1, + [230468] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11018), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10711), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6733), 1, sym_comment, - STATE(6734), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228807] = 5, - ACTIONS(121), 1, + [230487] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11020), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6734), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228824] = 3, - ACTIONS(3), 1, + ACTIONS(10713), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230500] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6735), 1, sym_comment, - ACTIONS(11022), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228837] = 5, - ACTIONS(121), 1, + ACTIONS(10715), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230513] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11024), 1, - anon_sym_DQUOTE, STATE(6736), 1, sym_comment, - STATE(6737), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228854] = 5, - ACTIONS(121), 1, + ACTIONS(10715), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230526] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11026), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6737), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228871] = 3, + ACTIONS(10717), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230539] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10719), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6738), 1, sym_comment, - ACTIONS(11028), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228884] = 5, - ACTIONS(121), 1, + [230558] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11030), 1, - anon_sym_DQUOTE, STATE(6739), 1, sym_comment, - STATE(6740), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228901] = 5, - ACTIONS(121), 1, + ACTIONS(10717), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230571] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11032), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6740), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228918] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6741), 1, - sym_comment, - ACTIONS(11034), 4, + ACTIONS(10721), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [228931] = 3, + [230584] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6741), 1, + sym_comment, + [230603] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1717), 1, + aux_sym_ctrl_match_token1, + ACTIONS(10725), 1, + anon_sym_DOT_DOT2, STATE(6742), 1, sym_comment, - ACTIONS(11036), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228944] = 5, - ACTIONS(121), 1, + ACTIONS(10727), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [230620] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11038), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10729), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6743), 1, sym_comment, - STATE(6744), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228961] = 5, - ACTIONS(121), 1, + [230639] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11040), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10731), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6744), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228978] = 3, - ACTIONS(3), 1, + [230658] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10245), 1, + anon_sym_LBRACK, + ACTIONS(10247), 1, + anon_sym_LPAREN, + STATE(3324), 1, + sym_parameter_parens, + STATE(3325), 1, + sym_parameter_bracks, STATE(6745), 1, sym_comment, - ACTIONS(11042), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228991] = 5, - ACTIONS(121), 1, + [230677] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11044), 1, - anon_sym_DQUOTE, + ACTIONS(10245), 1, + anon_sym_LBRACK, + ACTIONS(10247), 1, + anon_sym_LPAREN, + STATE(3326), 1, + sym_parameter_parens, + STATE(3327), 1, + sym_parameter_bracks, STATE(6746), 1, sym_comment, - STATE(6747), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229008] = 5, - ACTIONS(121), 1, + [230696] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11046), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6747), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229025] = 3, + [230715] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10735), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6748), 1, sym_comment, - ACTIONS(11048), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229038] = 5, - ACTIONS(121), 1, + [230734] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11050), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10737), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6749), 1, sym_comment, - STATE(6750), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229055] = 5, - ACTIONS(121), 1, + [230753] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11052), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6750), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229072] = 3, - ACTIONS(3), 1, + ACTIONS(6367), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + aux_sym_ctrl_match_token1, + [230766] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6751), 1, sym_comment, - ACTIONS(11054), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229085] = 5, - ACTIONS(121), 1, + ACTIONS(6421), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + aux_sym_ctrl_match_token1, + [230779] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11056), 1, - anon_sym_DQUOTE, STATE(6752), 1, sym_comment, - STATE(6753), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229102] = 5, - ACTIONS(121), 1, + ACTIONS(10739), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230792] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11058), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(10245), 1, + anon_sym_LBRACK, + ACTIONS(10247), 1, + anon_sym_LPAREN, + STATE(3320), 1, + sym_parameter_parens, + STATE(3329), 1, + sym_parameter_bracks, STATE(6753), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229119] = 3, - ACTIONS(3), 1, + [230811] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6754), 1, sym_comment, - ACTIONS(11060), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229132] = 5, - ACTIONS(121), 1, + ACTIONS(10739), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230824] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11062), 1, - anon_sym_DQUOTE, STATE(6755), 1, sym_comment, - STATE(6756), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229149] = 5, - ACTIONS(121), 1, + ACTIONS(10715), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230837] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11064), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6756), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229166] = 5, - ACTIONS(3), 1, + ACTIONS(10741), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [230850] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10014), 1, - anon_sym_RPAREN, - STATE(233), 1, - aux_sym__block_body_repeat1, STATE(6757), 1, sym_comment, - ACTIONS(145), 2, + ACTIONS(10715), 4, sym__newline, anon_sym_SEMI, - [229183] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230863] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6758), 1, sym_comment, - ACTIONS(11066), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229196] = 5, - ACTIONS(121), 1, + ACTIONS(10743), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230876] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11068), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6759), 1, sym_comment, - STATE(6760), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229213] = 5, - ACTIONS(121), 1, + [230895] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11070), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6760), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229230] = 3, - ACTIONS(3), 1, + ACTIONS(10747), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [230908] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6761), 1, sym_comment, - ACTIONS(11072), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [229243] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6762), 1, - sym_comment, - ACTIONS(11074), 4, + ACTIONS(10749), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229256] = 5, - ACTIONS(121), 1, + [230921] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11076), 1, + ACTIONS(10751), 1, anon_sym_DQUOTE, - STATE(6763), 1, + STATE(6762), 1, sym_comment, - STATE(6764), 1, + STATE(6777), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [229273] = 5, - ACTIONS(121), 1, + [230938] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6763), 1, + sym_comment, + ACTIONS(2131), 4, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token4, + [230951] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11078), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6764), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229290] = 3, - ACTIONS(3), 1, + ACTIONS(10753), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230964] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6765), 1, sym_comment, - ACTIONS(11080), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229303] = 5, - ACTIONS(121), 1, + ACTIONS(10755), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [230977] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - anon_sym_DQUOTE, STATE(6766), 1, sym_comment, - STATE(6767), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229320] = 5, - ACTIONS(121), 1, + ACTIONS(1569), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1571), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [230992] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11084), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6767), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229337] = 3, - ACTIONS(3), 1, + ACTIONS(10757), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231005] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6768), 1, sym_comment, - ACTIONS(11086), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229350] = 5, - ACTIONS(121), 1, + ACTIONS(10759), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231018] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11088), 1, - anon_sym_DQUOTE, + ACTIONS(1589), 1, + aux_sym_unquoted_token2, + ACTIONS(9948), 1, + aux_sym__immediate_decimal_token2, STATE(6769), 1, sym_comment, - STATE(6770), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229367] = 5, - ACTIONS(121), 1, + ACTIONS(1591), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [231035] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11090), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6770), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229384] = 3, + ACTIONS(1589), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1591), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [231050] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6771), 1, - sym_comment, - ACTIONS(11092), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229397] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(11094), 1, + ACTIONS(10761), 1, anon_sym_DQUOTE, - STATE(6772), 1, + STATE(6771), 1, sym_comment, - STATE(6773), 1, + STATE(6850), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [229414] = 5, - ACTIONS(121), 1, + [231067] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11096), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6773), 1, + ACTIONS(10763), 1, + anon_sym_use, + ACTIONS(10765), 1, + anon_sym_list, + ACTIONS(10767), 1, + anon_sym_hide, + ACTIONS(10769), 1, + anon_sym_new, + STATE(6772), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229431] = 3, - ACTIONS(3), 1, + [231086] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6774), 1, + STATE(6773), 1, sym_comment, - ACTIONS(11098), 4, + ACTIONS(10771), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229444] = 5, - ACTIONS(121), 1, + [231099] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6774), 1, + sym_comment, + ACTIONS(10773), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231112] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11100), 1, - anon_sym_DQUOTE, STATE(6775), 1, sym_comment, - STATE(6776), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229461] = 5, - ACTIONS(121), 1, + ACTIONS(10775), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231125] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11102), 1, + ACTIONS(10777), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6776), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6790), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [229478] = 3, + [231142] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6777), 1, - sym_comment, - ACTIONS(11104), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229491] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(11106), 1, + ACTIONS(10779), 1, anon_sym_DQUOTE, - STATE(6778), 1, + STATE(6777), 1, sym_comment, - STATE(6779), 1, + STATE(6882), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [229508] = 5, - ACTIONS(121), 1, + [231159] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6778), 1, + sym_comment, + ACTIONS(10781), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231172] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11108), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6779), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229525] = 3, + ACTIONS(10783), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231185] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6780), 1, sym_comment, - ACTIONS(6476), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [229538] = 3, + ACTIONS(1721), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1723), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [231200] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, STATE(6781), 1, sym_comment, - ACTIONS(11110), 4, + ACTIONS(1006), 3, sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229551] = 5, - ACTIONS(121), 1, + anon_sym_DASH_DASH, + anon_sym_DASH, + [231215] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11112), 1, - anon_sym_DQUOTE, STATE(6782), 1, sym_comment, - STATE(6783), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229568] = 5, - ACTIONS(121), 1, + ACTIONS(10785), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231228] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11114), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(5006), 1, + sym_block, + STATE(6586), 1, + aux_sym_shebang_repeat1, STATE(6783), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229585] = 3, - ACTIONS(3), 1, + [231247] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10787), 1, + anon_sym_RPAREN, + STATE(226), 1, + aux_sym__block_body_repeat1, STATE(6784), 1, sym_comment, - ACTIONS(6482), 4, - ts_builtin_sym_end, + ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [229598] = 3, + [231264] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + ACTIONS(6048), 1, + anon_sym_PIPE, STATE(6785), 1, sym_comment, - ACTIONS(11116), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229611] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(11118), 1, - anon_sym_DQUOTE, - STATE(6786), 1, - sym_comment, - STATE(6787), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229628] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(11120), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6787), 1, + ACTIONS(5964), 2, + anon_sym_if, + anon_sym_EQ_GT, + [231281] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(988), 1, + anon_sym_DOT, + STATE(6786), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229645] = 3, + ACTIONS(986), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [231296] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6788), 1, + ACTIONS(992), 1, + anon_sym_DOT, + STATE(6787), 1, sym_comment, - ACTIONS(11122), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229658] = 5, - ACTIONS(121), 1, + ACTIONS(990), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [231311] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11124), 1, + ACTIONS(10789), 1, anon_sym_DQUOTE, - STATE(6789), 1, + STATE(6788), 1, sym_comment, - STATE(6790), 1, + STATE(6882), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [229675] = 5, - ACTIONS(121), 1, + [231328] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11126), 1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + STATE(6789), 1, + sym_comment, + ACTIONS(2121), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [231343] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10791), 1, anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, STATE(6790), 1, sym_comment, - ACTIONS(10472), 2, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, sym__escaped_str_content, sym_escape_sequence, - [229692] = 3, - ACTIONS(3), 1, + [231360] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1648), 1, + aux_sym_unquoted_token2, + ACTIONS(10793), 1, + aux_sym__immediate_decimal_token2, STATE(6791), 1, sym_comment, - ACTIONS(11128), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229705] = 5, - ACTIONS(121), 1, + ACTIONS(1650), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [231377] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11130), 1, - anon_sym_DQUOTE, STATE(6792), 1, sym_comment, - STATE(6793), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229722] = 5, - ACTIONS(121), 1, + ACTIONS(994), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(996), 2, + anon_sym_DOT, + sym__entry_separator, + [231392] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11132), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10795), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6793), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229739] = 3, - ACTIONS(3), 1, + [231411] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6794), 1, sym_comment, - ACTIONS(11134), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229752] = 5, - ACTIONS(121), 1, + ACTIONS(10797), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231424] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11136), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10799), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6795), 1, sym_comment, - STATE(6796), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229769] = 5, - ACTIONS(121), 1, + [231443] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11138), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(2123), 1, + anon_sym_RBRACK, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2127), 1, + sym__entry_separator, + ACTIONS(2129), 1, + aux_sym__unquoted_in_list_token2, STATE(6796), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229786] = 3, - ACTIONS(3), 1, + [231462] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(2777), 1, + aux_sym_shebang_repeat1, + STATE(4916), 1, + sym_block, STATE(6797), 1, sym_comment, - ACTIONS(11140), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [229799] = 5, - ACTIONS(121), 1, + [231481] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11142), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10801), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6798), 1, sym_comment, - STATE(6799), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229816] = 5, - ACTIONS(121), 1, + [231500] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11144), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10803), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6799), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229833] = 5, - ACTIONS(121), 1, + [231519] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11146), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10805), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6800), 1, sym_comment, - STATE(6801), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229850] = 5, - ACTIONS(121), 1, + [231538] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11148), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10807), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6801), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229867] = 5, - ACTIONS(121), 1, + [231557] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11150), 1, - anon_sym_DQUOTE, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + ACTIONS(10809), 1, + anon_sym_DOT_DOT2, STATE(6802), 1, sym_comment, - STATE(6803), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229884] = 5, - ACTIONS(121), 1, + ACTIONS(10811), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [231574] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11152), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10813), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6803), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229901] = 5, - ACTIONS(121), 1, + [231593] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11154), 1, - anon_sym_DQUOTE, + ACTIONS(2072), 1, + aux_sym_ctrl_match_token1, + ACTIONS(10815), 1, + anon_sym_DOT_DOT2, STATE(6804), 1, sym_comment, - STATE(6805), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229918] = 5, - ACTIONS(121), 1, + ACTIONS(10817), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [231610] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11156), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(1978), 1, + aux_sym_ctrl_match_token1, + ACTIONS(10819), 1, + anon_sym_DOT_DOT2, STATE(6805), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229935] = 5, - ACTIONS(121), 1, + ACTIONS(10821), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [231627] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11158), 1, - anon_sym_DQUOTE, + ACTIONS(2089), 1, + anon_sym_RBRACK, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2093), 1, + sym__entry_separator, + ACTIONS(2095), 1, + aux_sym__unquoted_in_list_token4, STATE(6806), 1, sym_comment, - STATE(6807), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229952] = 5, - ACTIONS(121), 1, + [231646] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11160), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(1966), 1, + aux_sym_ctrl_match_token1, + ACTIONS(10823), 1, + anon_sym_DOT_DOT2, STATE(6807), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229969] = 5, - ACTIONS(121), 1, + ACTIONS(10825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [231663] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11162), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10827), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6808), 1, sym_comment, - STATE(6809), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229986] = 5, - ACTIONS(121), 1, + [231682] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11164), 1, - anon_sym_DQUOTE, - STATE(6425), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6809), 1, sym_comment, - ACTIONS(10472), 2, - sym__escaped_str_content, - sym_escape_sequence, - [230003] = 3, + [231701] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1429), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1690), 1, + anon_sym_RBRACK, + ACTIONS(1692), 1, + anon_sym_LPAREN2, + ACTIONS(1698), 1, + sym__entry_separator, STATE(6810), 1, sym_comment, - ACTIONS(11166), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230016] = 3, - ACTIONS(3), 1, + [231720] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6811), 1, sym_comment, - ACTIONS(11168), 4, + ACTIONS(10831), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [230029] = 5, - ACTIONS(3), 1, + [231733] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10014), 1, - anon_sym_RPAREN, - STATE(6443), 1, - aux_sym__block_body_repeat1, STATE(6812), 1, sym_comment, - ACTIONS(145), 2, + ACTIONS(10831), 4, sym__newline, anon_sym_SEMI, - [230046] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231746] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6813), 1, sym_comment, - ACTIONS(11170), 4, + ACTIONS(10833), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [230059] = 6, - ACTIONS(3), 1, + [231759] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10778), 1, - anon_sym_LBRACK, - ACTIONS(10780), 1, - anon_sym_LPAREN, - STATE(3252), 1, - sym_parameter_parens, - STATE(3257), 1, - sym_parameter_bracks, STATE(6814), 1, sym_comment, - [230078] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6815), 1, - sym_comment, - ACTIONS(11172), 4, + ACTIONS(10833), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [230091] = 3, + [231772] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10835), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6815), 1, + sym_comment, + [231791] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10837), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6816), 1, sym_comment, - ACTIONS(11166), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230104] = 6, + [231810] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1665), 1, - anon_sym_SEMI, - ACTIONS(2759), 1, - sym__newline, - STATE(281), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6817), 1, sym_comment, - STATE(6987), 1, - aux_sym_shebang_repeat1, - [230123] = 6, + [231829] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9609), 1, - aux_sym_ctrl_match_token1, - STATE(1872), 1, - sym_block, - STATE(1873), 1, - sym_val_closure, - STATE(4940), 1, - sym__blosure, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10841), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6818), 1, sym_comment, - [230142] = 3, + [231848] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10843), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6819), 1, sym_comment, - ACTIONS(11174), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230155] = 5, - ACTIONS(121), 1, + [231867] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2267), 1, + ACTIONS(5770), 1, sym__entry_separator, ACTIONS(10104), 1, - aux_sym__immediate_decimal_token1, + anon_sym_LBRACK, + ACTIONS(10845), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6820), 1, sym_comment, - ACTIONS(2263), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [230172] = 3, + [231886] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6821), 1, sym_comment, - ACTIONS(11176), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230185] = 3, + [231905] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6822), 1, sym_comment, - ACTIONS(11178), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230198] = 3, + [231924] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10851), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6823), 1, sym_comment, - ACTIONS(11180), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230211] = 5, + [231943] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11182), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11184), 1, - aux_sym_unquoted_token2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10853), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6824), 1, sym_comment, - ACTIONS(2925), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [230228] = 6, - ACTIONS(121), 1, + [231962] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2155), 1, - anon_sym_RBRACE, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2159), 1, - sym__entry_separator, - ACTIONS(2161), 1, - aux_sym__unquoted_in_record_token7, STATE(6825), 1, sym_comment, - [230247] = 4, - ACTIONS(3), 1, + ACTIONS(10855), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [231975] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1376), 1, - aux_sym_cmd_identifier_token41, STATE(6826), 1, sym_comment, - ACTIONS(1378), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [230262] = 6, - ACTIONS(121), 1, + ACTIONS(10857), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [231988] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym__unquoted_in_record_token7, - ACTIONS(2163), 1, - anon_sym_RBRACE, - ACTIONS(2165), 1, - sym__entry_separator, STATE(6827), 1, sym_comment, - [230281] = 6, - ACTIONS(3), 1, + ACTIONS(6419), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + aux_sym_ctrl_match_token1, + [232001] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10778), 1, - anon_sym_LBRACK, - ACTIONS(10780), 1, - anon_sym_LPAREN, - STATE(3253), 1, - sym_parameter_parens, - STATE(3254), 1, - sym_parameter_bracks, STATE(6828), 1, sym_comment, - [230300] = 6, - ACTIONS(3), 1, + ACTIONS(6333), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + aux_sym_ctrl_match_token1, + [232014] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10778), 1, - anon_sym_LBRACK, - ACTIONS(10780), 1, - anon_sym_LPAREN, - STATE(3242), 1, - sym_parameter_parens, - STATE(3259), 1, - sym_parameter_bracks, STATE(6829), 1, sym_comment, - [230319] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(10831), 4, sym__newline, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(2706), 1, - aux_sym_shebang_repeat1, - STATE(4919), 1, - sym_block, - STATE(6830), 1, - sym_comment, - [230338] = 5, - ACTIONS(121), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [232027] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2057), 1, - anon_sym_LPAREN2, - ACTIONS(2059), 1, - aux_sym__unquoted_in_record_token3, - STATE(6831), 1, + STATE(6830), 1, sym_comment, - ACTIONS(2055), 2, + ACTIONS(10831), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__entry_separator, - [230355] = 6, - ACTIONS(121), 1, + [232040] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(11186), 1, + ACTIONS(10859), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, - STATE(6832), 1, + STATE(6831), 1, sym_comment, - [230374] = 6, + [232059] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10778), 1, - anon_sym_LBRACK, - ACTIONS(10780), 1, - anon_sym_LPAREN, - STATE(3255), 1, - sym_parameter_parens, - STATE(3256), 1, - sym_parameter_bracks, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2085), 1, + anon_sym_RBRACK, + ACTIONS(2087), 1, + sym__entry_separator, + STATE(6832), 1, + sym_comment, + [232078] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + anon_sym_SEMI, + ACTIONS(2738), 1, + sym__newline, + STATE(247), 1, + aux_sym__parenthesized_body_repeat1, STATE(6833), 1, sym_comment, - [230393] = 3, - ACTIONS(3), 1, + STATE(7297), 1, + aux_sym_shebang_repeat1, + [232097] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6834), 1, sym_comment, - ACTIONS(11180), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230406] = 3, - ACTIONS(3), 1, + ACTIONS(10861), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [232110] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9470), 1, + anon_sym_RPAREN, + STATE(6501), 1, + aux_sym__block_body_repeat1, STATE(6835), 1, sym_comment, - ACTIONS(11188), 4, + ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230419] = 5, - ACTIONS(3), 1, + [232127] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1599), 1, - ts_builtin_sym_end, - STATE(259), 1, - aux_sym__block_body_repeat1, STATE(6836), 1, sym_comment, - ACTIONS(33), 2, + ACTIONS(10863), 4, sym__newline, anon_sym_SEMI, - [230436] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [232140] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6837), 1, sym_comment, - ACTIONS(11188), 4, + ACTIONS(10865), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [230449] = 3, - ACTIONS(3), 1, + [232153] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6838), 1, sym_comment, - ACTIONS(11176), 4, + ACTIONS(10867), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [230462] = 6, - ACTIONS(121), 1, + [232166] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4966), 1, - sym__newline, - ACTIONS(4968), 1, - sym__space, - ACTIONS(11190), 1, - sym_long_flag_identifier, - ACTIONS(11192), 1, - anon_sym_EQ2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10869), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6839), 1, sym_comment, - [230481] = 3, + [232185] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10871), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6840), 1, sym_comment, - ACTIONS(6448), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [230494] = 6, - ACTIONS(3), 1, + [232204] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10778), 1, - anon_sym_LBRACK, - ACTIONS(10780), 1, - anon_sym_LPAREN, - STATE(3244), 1, - sym_parameter_bracks, - STATE(3250), 1, - sym_parameter_parens, + ACTIONS(5007), 1, + anon_sym_DASH, + ACTIONS(10873), 1, + anon_sym_EQ2, STATE(6841), 1, sym_comment, - [230513] = 3, + ACTIONS(5005), 2, + sym_identifier, + anon_sym_DASH_DASH, + [232221] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10875), 1, + anon_sym_DQUOTE, STATE(6842), 1, sym_comment, - ACTIONS(6450), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [230526] = 6, - ACTIONS(121), 1, + STATE(6857), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232238] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2155), 1, - anon_sym_RBRACK, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2159), 1, - sym__entry_separator, - ACTIONS(2161), 1, - aux_sym__unquoted_in_list_token7, + ACTIONS(1609), 1, + ts_builtin_sym_end, + STATE(235), 1, + aux_sym__block_body_repeat1, STATE(6843), 1, sym_comment, - [230545] = 3, - ACTIONS(3), 1, + ACTIONS(33), 2, + sym__newline, + anon_sym_SEMI, + [232255] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5041), 1, + anon_sym_DASH, + ACTIONS(10877), 1, + anon_sym_EQ2, STATE(6844), 1, sym_comment, - ACTIONS(11180), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230558] = 3, + ACTIONS(5039), 2, + sym_identifier, + anon_sym_DASH_DASH, + [232272] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6845), 1, sym_comment, - ACTIONS(11180), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230571] = 3, + [232291] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10881), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6846), 1, sym_comment, - ACTIONS(11194), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230584] = 6, + [232310] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10455), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10457), 1, - anon_sym_LPAREN, - STATE(6188), 1, - sym_parameter_parens, - STATE(6189), 1, - sym_parameter_bracks, + ACTIONS(10883), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6847), 1, sym_comment, - [230603] = 3, + [232329] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2133), 1, + anon_sym_PIPE, STATE(6848), 1, sym_comment, - ACTIONS(11196), 4, + ACTIONS(2131), 3, + anon_sym_if, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [232344] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6849), 1, + sym_comment, + ACTIONS(10885), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [230616] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(4888), 1, - sym__newline, - ACTIONS(4890), 1, - sym__space, - ACTIONS(11198), 1, - anon_sym_EQ2, - ACTIONS(11200), 1, - sym_short_flag_identifier, - STATE(6849), 1, - sym_comment, - [230635] = 3, + [232357] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10887), 1, + anon_sym_DQUOTE, STATE(6850), 1, sym_comment, - ACTIONS(11202), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230648] = 6, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232374] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11204), 1, - anon_sym_use, - ACTIONS(11206), 1, - anon_sym_list, - ACTIONS(11208), 1, - anon_sym_hide, - ACTIONS(11210), 1, - anon_sym_new, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6851), 1, sym_comment, - [230667] = 4, - ACTIONS(121), 1, + [232393] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6852), 1, sym_comment, - ACTIONS(2073), 2, + ACTIONS(1569), 2, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token7, - ACTIONS(2075), 2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1571), 2, anon_sym_LPAREN2, sym__entry_separator, - [230682] = 3, - ACTIONS(3), 1, + [232408] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6853), 1, sym_comment, - ACTIONS(11212), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [230695] = 3, - ACTIONS(3), 1, + ACTIONS(10891), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [232421] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6854), 1, sym_comment, - ACTIONS(11214), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [230708] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6855), 1, - sym_comment, - ACTIONS(11216), 4, + ACTIONS(10891), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [230721] = 3, - ACTIONS(3), 1, + [232434] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6856), 1, + STATE(6855), 1, sym_comment, - ACTIONS(11218), 4, + ACTIONS(10893), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [230734] = 5, - ACTIONS(3), 1, + [232447] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, + ACTIONS(1719), 1, aux_sym_unquoted_token2, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(6857), 1, + STATE(6856), 1, sym_comment, - ACTIONS(1595), 2, + ACTIONS(2087), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [230751] = 3, + [232462] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10895), 1, + anon_sym_DQUOTE, + STATE(6857), 1, + sym_comment, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232479] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6858), 1, sym_comment, - ACTIONS(11220), 4, + ACTIONS(10897), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [230764] = 4, - ACTIONS(3), 1, + [232492] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1504), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(9595), 1, + anon_sym_RPAREN, + STATE(6400), 1, + aux_sym__block_body_repeat1, STATE(6859), 1, sym_comment, - ACTIONS(1506), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [230779] = 3, - ACTIONS(3), 1, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [232509] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6860), 1, sym_comment, - ACTIONS(11222), 4, + ACTIONS(10897), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [230792] = 3, + [232522] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10899), 1, + anon_sym_DQUOTE, STATE(6861), 1, sym_comment, - ACTIONS(11224), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230805] = 3, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232539] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2123), 1, + anon_sym_RBRACE, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2127), 1, + sym__entry_separator, + ACTIONS(2129), 1, + aux_sym__unquoted_in_record_token2, STATE(6862), 1, sym_comment, - ACTIONS(11226), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230818] = 5, - ACTIONS(3), 1, + [232558] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5016), 1, - anon_sym_DASH, - ACTIONS(11228), 1, - anon_sym_EQ2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, STATE(6863), 1, sym_comment, - ACTIONS(5014), 2, - sym_identifier, - anon_sym_DASH_DASH, - [230835] = 5, + ACTIONS(1717), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232573] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5088), 1, - anon_sym_DASH, - ACTIONS(11230), 1, - anon_sym_EQ2, + ACTIONS(2097), 1, + anon_sym_RBRACE, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2101), 1, + sym__entry_separator, + ACTIONS(2103), 1, + aux_sym__unquoted_in_record_token4, STATE(6864), 1, sym_comment, - ACTIONS(5086), 2, - sym_identifier, - anon_sym_DASH_DASH, - [230852] = 3, - ACTIONS(3), 1, + [232592] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(10901), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6865), 1, sym_comment, - ACTIONS(11232), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230865] = 3, + STATE(7886), 1, + sym_val_list, + [232611] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2105), 1, + anon_sym_RBRACE, + ACTIONS(2107), 1, + sym__entry_separator, STATE(6866), 1, sym_comment, - ACTIONS(11234), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230878] = 6, - ACTIONS(121), 1, + [232630] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(11236), 1, + ACTIONS(10903), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6867), 1, sym_comment, - [230897] = 5, + [232649] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1563), 1, - ts_builtin_sym_end, - STATE(240), 1, - aux_sym__block_body_repeat1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2085), 1, + anon_sym_RBRACE, + ACTIONS(2087), 1, + sym__entry_separator, STATE(6868), 1, sym_comment, - ACTIONS(33), 2, - sym__newline, - anon_sym_SEMI, - [230914] = 3, + [232668] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6869), 1, sym_comment, - ACTIONS(11238), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [230927] = 6, - ACTIONS(121), 1, + [232687] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(11240), 1, + ACTIONS(10907), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6870), 1, sym_comment, - [230946] = 6, + [232706] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10778), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(10780), 1, - anon_sym_LPAREN, - STATE(3245), 1, - sym_parameter_bracks, - STATE(3247), 1, - sym_parameter_parens, + ACTIONS(10909), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6871), 1, sym_comment, - [230965] = 5, + [232725] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1441), 1, - anon_sym_DASH_DASH, - ACTIONS(8907), 1, - aux_sym_unquoted_token6, + ACTIONS(10911), 1, + anon_sym_DQUOTE, + STATE(6788), 1, + aux_sym__str_double_quotes_repeat1, STATE(6872), 1, sym_comment, - ACTIONS(1429), 2, - sym_identifier, - anon_sym_DASH, - [230982] = 3, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232742] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_RBRACE, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1717), 1, + sym__entry_separator, + ACTIONS(1719), 1, + aux_sym__unquoted_in_record_token2, STATE(6873), 1, sym_comment, - ACTIONS(11242), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230995] = 3, + [232761] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10913), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6874), 1, sym_comment, - ACTIONS(11244), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231008] = 3, + [232780] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10915), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6875), 1, sym_comment, - ACTIONS(11246), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231021] = 3, - ACTIONS(3), 1, + [232799] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1473), 1, + aux_sym_cmd_identifier_token41, STATE(6876), 1, sym_comment, - ACTIONS(8686), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - [231034] = 6, + ACTIONS(1475), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [232814] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4966), 1, - sym_identifier, - ACTIONS(4968), 1, - anon_sym_DOLLAR, - ACTIONS(11248), 1, - sym_long_flag_identifier, - ACTIONS(11250), 1, - anon_sym_EQ2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10917), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6877), 1, sym_comment, - [231053] = 3, + [232833] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10919), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6878), 1, sym_comment, - ACTIONS(11252), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231066] = 4, - ACTIONS(121), 1, + [232852] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1589), 1, + aux_sym_unquoted_token2, STATE(6879), 1, sym_comment, - ACTIONS(2073), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token7, - ACTIONS(2075), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [231081] = 4, - ACTIONS(121), 1, + ACTIONS(1591), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232867] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9687), 1, - aux_sym_unquoted_token3, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10921), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6880), 1, sym_comment, - ACTIONS(3239), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [231096] = 4, - ACTIONS(121), 1, + [232886] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11254), 1, - anon_sym_LPAREN, + ACTIONS(2129), 1, + aux_sym_unquoted_token2, STATE(6881), 1, sym_comment, - ACTIONS(11256), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [231111] = 6, - ACTIONS(121), 1, + ACTIONS(2127), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232901] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_LPAREN2, - ACTIONS(2161), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(2163), 1, - anon_sym_RBRACK, - ACTIONS(2165), 1, - sym__entry_separator, - STATE(6882), 1, + ACTIONS(10923), 1, + anon_sym_DQUOTE, + ACTIONS(10925), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(6882), 2, sym_comment, - [231130] = 6, - ACTIONS(121), 1, + aux_sym__str_double_quotes_repeat1, + [232916] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(10399), 1, - anon_sym_LBRACK, - ACTIONS(11258), 1, - anon_sym_RBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, STATE(6883), 1, sym_comment, - [231149] = 6, - ACTIONS(3), 1, + ACTIONS(10928), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [232929] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(10584), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1941), 1, + aux_sym_ctrl_match_token1, + ACTIONS(10930), 1, + anon_sym_DOT_DOT2, STATE(6884), 1, sym_comment, - [231168] = 6, + ACTIONS(10932), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [232946] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10778), 1, - anon_sym_LBRACK, - ACTIONS(10780), 1, - anon_sym_LPAREN, - STATE(3249), 1, - sym_parameter_parens, - STATE(3251), 1, - sym_parameter_bracks, + ACTIONS(10934), 1, + anon_sym_DQUOTE, STATE(6885), 1, sym_comment, - [231187] = 6, - ACTIONS(3), 1, + STATE(6892), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232963] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(10608), 1, - anon_sym_LBRACK, - STATE(2706), 1, - aux_sym_shebang_repeat1, STATE(6886), 1, sym_comment, - STATE(7722), 1, - sym_val_list, - [231206] = 4, - ACTIONS(121), 1, + ACTIONS(6339), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + aux_sym_ctrl_match_token1, + [232976] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6887), 1, sym_comment, - ACTIONS(928), 2, - anon_sym_RBRACK, + ACTIONS(1648), 2, anon_sym_RBRACE, - ACTIONS(930), 2, - anon_sym_DOT, + aux_sym__unquoted_in_record_token2, + ACTIONS(1650), 2, + anon_sym_LPAREN2, sym__entry_separator, - [231221] = 3, + [232991] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6888), 1, sym_comment, - ACTIONS(11260), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231234] = 5, + ACTIONS(1648), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1650), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [233006] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1595), 1, - anon_sym_EQ_GT, - ACTIONS(11262), 1, - anon_sym_DOT_DOT2, + ACTIONS(1709), 1, + anon_sym_RBRACK, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1717), 1, + sym__entry_separator, + ACTIONS(1719), 1, + aux_sym__unquoted_in_list_token2, STATE(6889), 1, sym_comment, - ACTIONS(11264), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [231251] = 5, + [233025] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1580), 1, - anon_sym_EQ_GT, - ACTIONS(11266), 1, - anon_sym_DOT_DOT2, - STATE(6890), 1, - sym_comment, - ACTIONS(11268), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [231268] = 6, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(10399), 1, + ACTIONS(10104), 1, anon_sym_LBRACK, - ACTIONS(11270), 1, + ACTIONS(10936), 1, anon_sym_RBRACK, - STATE(2758), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, + STATE(6890), 1, + sym_comment, + [233044] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(6891), 1, sym_comment, - [231287] = 4, + ACTIONS(10938), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233057] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, + ACTIONS(10940), 1, + anon_sym_DQUOTE, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, STATE(6892), 1, sym_comment, - ACTIONS(1472), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT, - [231302] = 5, - ACTIONS(3), 1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [233074] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11272), 1, - anon_sym_RPAREN, - STATE(233), 1, - aux_sym__block_body_repeat1, STATE(6893), 1, sym_comment, - ACTIONS(145), 2, + ACTIONS(6417), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231319] = 3, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [233087] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6894), 1, sym_comment, - ACTIONS(11274), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231332] = 3, - ACTIONS(3), 1, + ACTIONS(10942), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [233100] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6895), 1, sym_comment, - ACTIONS(11276), 4, + ACTIONS(10944), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [231345] = 5, - ACTIONS(121), 1, + [233113] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11278), 1, - anon_sym_RBRACK, - STATE(6634), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10946), 1, + anon_sym_LPAREN, STATE(6896), 1, sym_comment, - [231361] = 3, - ACTIONS(3), 1, + ACTIONS(10948), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [233128] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6897), 1, sym_comment, - ACTIONS(10443), 3, - ts_builtin_sym_end, + ACTIONS(10950), 4, sym__newline, anon_sym_SEMI, - [231373] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233141] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11280), 1, - anon_sym_RBRACK, - ACTIONS(11282), 1, - sym_hex_digit, STATE(6898), 1, sym_comment, - STATE(6904), 1, - aux_sym_val_binary_repeat1, - [231389] = 3, + ACTIONS(10950), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233154] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10952), 1, + anon_sym_DQUOTE, + STATE(6403), 1, + aux_sym__str_double_quotes_repeat1, STATE(6899), 1, sym_comment, - ACTIONS(11176), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231401] = 5, - ACTIONS(121), 1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [233171] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8524), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(8528), 1, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10954), 1, anon_sym_RBRACK, - ACTIONS(11284), 1, - anon_sym_LT, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6900), 1, sym_comment, - [231417] = 5, - ACTIONS(121), 1, + [233190] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11286), 1, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, anon_sym_RBRACK, - STATE(2759), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6901), 1, sym_comment, - [231433] = 5, + [233209] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6878), 1, - sym_block, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10958), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6902), 1, sym_comment, - [231449] = 5, - ACTIONS(121), 1, + [233228] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(6656), 1, - aux_sym_unquoted_token7, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10960), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6903), 1, sym_comment, - STATE(7477), 1, - sym__expr_parenthesized_immediate, - [231465] = 5, + [233247] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11288), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10962), 1, anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6904), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [231481] = 3, - ACTIONS(3), 1, + [233266] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6905), 1, sym_comment, - ACTIONS(11242), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231493] = 3, - ACTIONS(3), 1, + ACTIONS(10964), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [233279] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6906), 1, sym_comment, - ACTIONS(10774), 3, - ts_builtin_sym_end, + ACTIONS(10966), 4, sym__newline, anon_sym_SEMI, - [231505] = 5, - ACTIONS(121), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233292] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11290), 1, - anon_sym_RBRACK, - STATE(6518), 1, - aux_sym__multiple_types_repeat1, STATE(6907), 1, sym_comment, - [231521] = 5, + ACTIONS(10968), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233305] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(2089), 1, + anon_sym_RBRACE, + ACTIONS(2091), 1, anon_sym_LPAREN2, - ACTIONS(1943), 1, - aux_sym_unquoted_token2, - ACTIONS(7525), 1, - anon_sym_DOT, + ACTIONS(2093), 1, + sym__entry_separator, + ACTIONS(2095), 1, + aux_sym__unquoted_in_record_token4, STATE(6908), 1, sym_comment, - [231537] = 5, - ACTIONS(121), 1, + [233324] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11292), 1, - anon_sym_RBRACK, - STATE(6519), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10970), 1, + anon_sym_DQUOTE, STATE(6909), 1, sym_comment, - [231553] = 5, - ACTIONS(121), 1, + STATE(6920), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [233341] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11294), 1, - anon_sym_RBRACK, - STATE(6520), 1, - aux_sym__multiple_types_repeat1, STATE(6910), 1, sym_comment, - [231569] = 5, - ACTIONS(121), 1, + ACTIONS(10972), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233354] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11296), 1, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10974), 1, anon_sym_RBRACK, - STATE(6521), 1, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(6911), 1, sym_comment, - [231585] = 5, - ACTIONS(121), 1, + [233373] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11298), 1, - anon_sym_RBRACK, - STATE(6522), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(10901), 1, + anon_sym_LBRACK, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(6912), 1, sym_comment, - [231601] = 5, - ACTIONS(121), 1, + STATE(7926), 1, + sym_val_list, + [233392] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11300), 1, - anon_sym_RBRACK, - STATE(2744), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1698), 1, + anon_sym_EQ_GT, + ACTIONS(10976), 1, + anon_sym_DOT_DOT2, STATE(6913), 1, sym_comment, - [231617] = 3, - ACTIONS(3), 1, + ACTIONS(10978), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [233409] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1717), 1, + anon_sym_EQ_GT, + ACTIONS(10980), 1, + anon_sym_DOT_DOT2, STATE(6914), 1, sym_comment, - ACTIONS(10441), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231629] = 5, - ACTIONS(121), 1, + ACTIONS(10982), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [233426] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11302), 1, - anon_sym_RBRACK, - STATE(6523), 1, - aux_sym__multiple_types_repeat1, STATE(6915), 1, sym_comment, - [231645] = 5, - ACTIONS(121), 1, + ACTIONS(10984), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233439] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11304), 1, - anon_sym_RBRACK, - STATE(6524), 1, - aux_sym__multiple_types_repeat1, STATE(6916), 1, sym_comment, - [231661] = 5, - ACTIONS(121), 1, + ACTIONS(10986), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233452] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11306), 1, - anon_sym_RBRACK, - STATE(6525), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(4867), 1, + sym_block, + STATE(6797), 1, + aux_sym_shebang_repeat1, STATE(6917), 1, sym_comment, - [231677] = 3, + [233471] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10988), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6918), 1, sym_comment, - ACTIONS(10419), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231689] = 5, + [233490] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(1595), 1, - aux_sym_ctrl_match_token1, - ACTIONS(7564), 1, - anon_sym_DOT, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10990), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6919), 1, sym_comment, - [231705] = 5, + [233509] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11308), 1, - anon_sym_EQ, - ACTIONS(11310), 1, - anon_sym_COLON, + ACTIONS(10992), 1, + anon_sym_DQUOTE, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, STATE(6920), 1, sym_comment, - STATE(7857), 1, - sym_param_type, - [231721] = 3, - ACTIONS(3), 1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [233526] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10245), 1, + anon_sym_LBRACK, + ACTIONS(10247), 1, + anon_sym_LPAREN, + STATE(5950), 1, + sym_parameter_parens, + STATE(5951), 1, + sym_parameter_bracks, STATE(6921), 1, sym_comment, - ACTIONS(10413), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231733] = 5, - ACTIONS(121), 1, + [233545] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5014), 1, - sym__space, - ACTIONS(5016), 1, - sym__newline, - ACTIONS(11312), 1, - anon_sym_EQ2, STATE(6922), 1, sym_comment, - [231749] = 5, + ACTIONS(10972), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233558] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11314), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10994), 1, anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6923), 1, sym_comment, - STATE(6928), 1, - aux_sym_val_binary_repeat1, - [231765] = 3, - ACTIONS(3), 1, + [233577] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6924), 1, sym_comment, - ACTIONS(6336), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231777] = 4, - ACTIONS(121), 1, + ACTIONS(10996), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233590] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11316), 1, - anon_sym_LPAREN, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(10104), 1, + anon_sym_LBRACK, + ACTIONS(10998), 1, + anon_sym_RBRACK, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, STATE(6925), 1, sym_comment, - ACTIONS(11318), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [231791] = 3, - ACTIONS(3), 1, + [233609] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6926), 1, sym_comment, - ACTIONS(10798), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231803] = 5, - ACTIONS(121), 1, + ACTIONS(11000), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [233622] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2937), 1, - aux_sym_unquoted_token7, STATE(6927), 1, sym_comment, - STATE(7559), 1, - sym__expr_parenthesized_immediate, - [231819] = 5, + ACTIONS(10509), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233635] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11320), 1, - anon_sym_RBRACK, + ACTIONS(11002), 1, + anon_sym_DQUOTE, STATE(6928), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [231835] = 4, - ACTIONS(121), 1, + STATE(6943), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [233652] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11322), 1, - anon_sym_LPAREN, STATE(6929), 1, sym_comment, - ACTIONS(11324), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [231849] = 5, - ACTIONS(121), 1, + ACTIONS(11004), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [233665] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11326), 1, - anon_sym_RBRACK, - STATE(6531), 1, - aux_sym__multiple_types_repeat1, STATE(6930), 1, sym_comment, - [231865] = 4, - ACTIONS(3), 1, + ACTIONS(1721), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1723), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [233680] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11330), 1, - anon_sym_COMMA, + ACTIONS(1589), 1, + aux_sym_unquoted_token2, + ACTIONS(10022), 1, + aux_sym__immediate_decimal_token2, STATE(6931), 1, sym_comment, - ACTIONS(11328), 2, - sym__newline, - anon_sym_RBRACE, - [231879] = 3, - ACTIONS(3), 1, + ACTIONS(1591), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [233697] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4942), 1, + sym_identifier, + ACTIONS(4944), 1, + anon_sym_DOLLAR, + ACTIONS(11006), 1, + anon_sym_EQ2, + ACTIONS(11008), 1, + sym_short_flag_identifier, STATE(6932), 1, sym_comment, - ACTIONS(10413), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231891] = 5, - ACTIONS(121), 1, + [233716] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11332), 1, - anon_sym_RBRACK, - STATE(6532), 1, - aux_sym__multiple_types_repeat1, STATE(6933), 1, sym_comment, - [231907] = 5, - ACTIONS(121), 1, + ACTIONS(11010), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233729] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11334), 1, - anon_sym_RBRACK, - STATE(6533), 1, - aux_sym__multiple_types_repeat1, STATE(6934), 1, sym_comment, - [231923] = 5, - ACTIONS(121), 1, + ACTIONS(11012), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233742] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11336), 1, - anon_sym_RBRACK, - STATE(6534), 1, - aux_sym__multiple_types_repeat1, STATE(6935), 1, sym_comment, - [231939] = 5, - ACTIONS(121), 1, + ACTIONS(11014), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233755] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11338), 1, - anon_sym_RBRACK, - STATE(6535), 1, - aux_sym__multiple_types_repeat1, STATE(6936), 1, sym_comment, - [231955] = 3, + ACTIONS(11016), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233768] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11018), 1, + anon_sym_LPAREN, STATE(6937), 1, sym_comment, - ACTIONS(11180), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231967] = 5, - ACTIONS(121), 1, + ACTIONS(11020), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [233783] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11340), 1, - anon_sym_RBRACK, - STATE(6536), 1, - aux_sym__multiple_types_repeat1, STATE(6938), 1, sym_comment, - [231983] = 5, - ACTIONS(121), 1, + ACTIONS(11022), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233796] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11342), 1, - anon_sym_RBRACK, - STATE(6537), 1, - aux_sym__multiple_types_repeat1, STATE(6939), 1, sym_comment, - [231999] = 3, - ACTIONS(3), 1, + ACTIONS(11024), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233809] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6940), 1, sym_comment, - ACTIONS(11344), 3, + ACTIONS(11026), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [232011] = 5, - ACTIONS(121), 1, + anon_sym_RBRACE, + [233822] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11346), 1, - anon_sym_RBRACK, - STATE(6538), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4950), 1, + sym_identifier, + ACTIONS(4952), 1, + anon_sym_DOLLAR, + ACTIONS(11028), 1, + sym_long_flag_identifier, + ACTIONS(11030), 1, + anon_sym_EQ2, STATE(6941), 1, sym_comment, - [232027] = 5, - ACTIONS(121), 1, + [233841] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8524), 1, - sym__entry_separator, - ACTIONS(8528), 1, - anon_sym_RBRACK, - ACTIONS(11348), 1, - anon_sym_LT, + ACTIONS(1648), 1, + aux_sym_unquoted_token2, + ACTIONS(11032), 1, + aux_sym__immediate_decimal_token2, STATE(6942), 1, sym_comment, - [232043] = 3, + ACTIONS(1650), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [233858] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11034), 1, + anon_sym_DQUOTE, + STATE(6882), 1, + aux_sym__str_double_quotes_repeat1, STATE(6943), 1, sym_comment, - ACTIONS(11216), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232055] = 5, - ACTIONS(121), 1, + ACTIONS(10130), 2, + sym__escaped_str_content, + sym_escape_sequence, + [233875] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1366), 1, - aux_sym__unquoted_in_record_token7, - ACTIONS(1431), 1, + ACTIONS(2097), 1, + anon_sym_RBRACK, + ACTIONS(2099), 1, anon_sym_LPAREN2, + ACTIONS(2101), 1, + sym__entry_separator, + ACTIONS(2103), 1, + aux_sym__unquoted_in_list_token4, STATE(6944), 1, sym_comment, - STATE(7542), 1, - sym__expr_parenthesized_immediate, - [232071] = 3, - ACTIONS(3), 1, + [233894] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6284), 1, + anon_sym_DOLLAR, + ACTIONS(8631), 1, + sym_identifier, + STATE(5619), 1, + sym_val_variable, + STATE(6188), 1, + sym__variable_name, STATE(6945), 1, sym_comment, - ACTIONS(10453), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232083] = 3, - ACTIONS(3), 1, + [233913] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6946), 1, sym_comment, - ACTIONS(6340), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232095] = 5, - ACTIONS(121), 1, + ACTIONS(11036), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [233926] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(11350), 1, - anon_sym_RBRACK, - STATE(2749), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11038), 1, + sym__table_head_separator, STATE(6947), 1, sym_comment, - [232111] = 5, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [233940] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11352), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11040), 1, anon_sym_RBRACK, + STATE(6831), 1, + aux_sym__multiple_types_repeat1, STATE(6948), 1, sym_comment, - STATE(6954), 1, - aux_sym_val_binary_repeat1, - [232127] = 5, - ACTIONS(121), 1, + [233956] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(11354), 1, - anon_sym_RBRACK, - STATE(2751), 1, - aux_sym__multiple_types_repeat1, STATE(6949), 1, sym_comment, - [232143] = 4, - ACTIONS(3), 1, + ACTIONS(11042), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [233968] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11358), 1, - anon_sym_COMMA, STATE(6950), 1, sym_comment, - ACTIONS(11356), 2, - sym__newline, - anon_sym_RBRACE, - [232157] = 4, - ACTIONS(3), 1, + ACTIONS(6042), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [233980] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11362), 1, - anon_sym_COMMA, STATE(6951), 1, sym_comment, - ACTIONS(11360), 2, - anon_sym_RBRACK, - sym_hex_digit, - [232171] = 4, - ACTIONS(121), 1, + ACTIONS(11044), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [233992] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11364), 1, - sym__table_head_separator, STATE(6952), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [232185] = 5, - ACTIONS(121), 1, + ACTIONS(10891), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234004] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6693), 1, - sym__entry_separator, - ACTIONS(11366), 1, - anon_sym_RBRACK, - STATE(3553), 1, - aux_sym__multiple_types_repeat1, STATE(6953), 1, sym_comment, - [232201] = 5, - ACTIONS(3), 1, + ACTIONS(10938), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234016] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11368), 1, + ACTIONS(11046), 1, anon_sym_RBRACK, + ACTIONS(11048), 1, + sym_hex_digit, STATE(6954), 1, sym_comment, - STATE(7279), 1, + STATE(6960), 1, aux_sym_val_binary_repeat1, - [232217] = 3, - ACTIONS(3), 1, + [234032] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11050), 1, + anon_sym_RBRACK, STATE(6955), 1, sym_comment, - ACTIONS(10423), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232229] = 5, - ACTIONS(121), 1, + STATE(6992), 1, + aux_sym_val_binary_repeat1, + [234048] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11370), 1, - anon_sym_RBRACK, - STATE(6545), 1, - aux_sym__multiple_types_repeat1, STATE(6956), 1, sym_comment, - [232245] = 5, - ACTIONS(121), 1, + ACTIONS(11052), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [234060] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11372), 1, - anon_sym_RBRACK, - STATE(6546), 1, - aux_sym__multiple_types_repeat1, STATE(6957), 1, sym_comment, - [232261] = 5, - ACTIONS(121), 1, + ACTIONS(6234), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [234072] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11374), 1, - anon_sym_RBRACK, - STATE(6547), 1, - aux_sym__multiple_types_repeat1, STATE(6958), 1, sym_comment, - [232277] = 5, - ACTIONS(121), 1, + ACTIONS(6238), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [234084] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11376), 1, - anon_sym_RBRACK, - STATE(6548), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(7059), 1, + aux_sym_unquoted_token4, STATE(6959), 1, sym_comment, - [232293] = 5, - ACTIONS(121), 1, + STATE(7585), 1, + sym__expr_parenthesized_immediate, + [234100] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(11378), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11054), 1, anon_sym_RBRACK, - STATE(2754), 1, - aux_sym__multiple_types_repeat1, STATE(6960), 1, sym_comment, - [232309] = 5, - ACTIONS(121), 1, + STATE(7162), 1, + aux_sym_val_binary_repeat1, + [234116] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11380), 1, - anon_sym_RBRACK, - STATE(6549), 1, - aux_sym__multiple_types_repeat1, STATE(6961), 1, sym_comment, - [232325] = 5, + ACTIONS(10893), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234128] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11382), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11056), 1, anon_sym_RBRACK, + STATE(6867), 1, + aux_sym__multiple_types_repeat1, STATE(6962), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [232341] = 5, - ACTIONS(121), 1, + [234144] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11384), 1, - anon_sym_RBRACK, - STATE(6550), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, STATE(6963), 1, sym_comment, - [232357] = 5, - ACTIONS(121), 1, + ACTIONS(2087), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [234158] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11386), 1, + ACTIONS(11058), 1, anon_sym_RBRACK, - STATE(6551), 1, + STATE(6869), 1, aux_sym__multiple_types_repeat1, STATE(6964), 1, sym_comment, - [232373] = 5, - ACTIONS(121), 1, + [234174] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11388), 1, + ACTIONS(11060), 1, anon_sym_RBRACK, - STATE(6552), 1, + STATE(6870), 1, aux_sym__multiple_types_repeat1, STATE(6965), 1, sym_comment, - [232389] = 5, - ACTIONS(121), 1, + [234190] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11390), 1, + ACTIONS(11062), 1, anon_sym_RBRACK, - STATE(6393), 1, + STATE(6871), 1, aux_sym__multiple_types_repeat1, STATE(6966), 1, sym_comment, - [232405] = 3, + [234206] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11064), 1, + anon_sym_RBRACK, + STATE(6874), 1, + aux_sym__multiple_types_repeat1, STATE(6967), 1, sym_comment, - ACTIONS(10413), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232417] = 5, + [234222] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6894), 1, - sym_block, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11066), 1, + anon_sym_RBRACK, + STATE(6875), 1, + aux_sym__multiple_types_repeat1, STATE(6968), 1, sym_comment, - [232433] = 3, + [234238] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11068), 1, + anon_sym_RBRACK, + STATE(6877), 1, + aux_sym__multiple_types_repeat1, STATE(6969), 1, sym_comment, - ACTIONS(11244), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232445] = 4, - ACTIONS(3), 1, + [234254] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11392), 1, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, + STATE(6970), 1, + sym_comment, + ACTIONS(1717), 2, anon_sym_PIPE, - ACTIONS(11395), 1, anon_sym_EQ_GT, - STATE(6970), 2, + [234268] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11072), 1, + anon_sym_COMMA, + STATE(6971), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [232459] = 5, - ACTIONS(121), 1, + ACTIONS(11070), 2, + anon_sym_RBRACK, + sym_hex_digit, + [234282] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11397), 1, + ACTIONS(11074), 1, anon_sym_RBRACK, - STATE(2743), 1, + STATE(6878), 1, aux_sym__multiple_types_repeat1, - STATE(6971), 1, - sym_comment, - [232475] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, STATE(6972), 1, sym_comment, - ACTIONS(2077), 2, - sym_identifier, - anon_sym_DOLLAR, - [232489] = 5, + [234298] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11399), 1, - anon_sym_RBRACK, + ACTIONS(1006), 1, + sym__newline, + ACTIONS(1008), 1, + sym__space, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, STATE(6973), 1, sym_comment, - STATE(6978), 1, - aux_sym_val_binary_repeat1, - [232505] = 3, - ACTIONS(3), 1, + [234314] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11076), 1, + anon_sym_RBRACK, STATE(6974), 1, sym_comment, - ACTIONS(11176), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232517] = 3, - ACTIONS(3), 1, + STATE(7162), 1, + aux_sym_val_binary_repeat1, + [234330] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6975), 1, sym_comment, - ACTIONS(11180), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232529] = 4, - ACTIONS(121), 1, + ACTIONS(5886), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [234342] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, + ACTIONS(2279), 1, + sym__entry_separator, + ACTIONS(11078), 1, + anon_sym_RBRACE, + STATE(528), 1, + aux_sym__multiple_types_repeat1, STATE(6976), 1, sym_comment, - ACTIONS(948), 2, - sym_identifier, - anon_sym_DOLLAR, - [232543] = 5, - ACTIONS(121), 1, + [234358] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5399), 1, - aux_sym__unquoted_in_list_token7, - ACTIONS(5641), 1, - anon_sym_LPAREN2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11080), 1, + anon_sym_RBRACK, + STATE(2799), 1, + aux_sym__multiple_types_repeat1, STATE(6977), 1, sym_comment, - STATE(7534), 1, - sym__expr_parenthesized_immediate, - [232559] = 5, - ACTIONS(3), 1, + [234374] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11401), 1, - anon_sym_RBRACK, STATE(6978), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [232575] = 5, + ACTIONS(6048), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [234386] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(11082), 1, + anon_sym_POUND_BANG, + ACTIONS(11084), 1, sym__newline, - ACTIONS(11403), 1, - anon_sym_RBRACE, - STATE(2706), 1, - aux_sym_shebang_repeat1, STATE(6979), 1, sym_comment, - [232591] = 5, - ACTIONS(121), 1, + STATE(7053), 1, + aux_sym_shebang_repeat1, + [234402] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(2279), 1, sym__entry_separator, - ACTIONS(11405), 1, - anon_sym_RBRACK, - STATE(6559), 1, + ACTIONS(11086), 1, + anon_sym_RBRACE, + STATE(498), 1, aux_sym__multiple_types_repeat1, STATE(6980), 1, sym_comment, - [232607] = 3, - ACTIONS(3), 1, + [234418] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(6981), 1, sym_comment, - ACTIONS(11168), 3, + ACTIONS(10759), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232619] = 3, - ACTIONS(3), 1, + [234430] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11088), 1, + anon_sym_RBRACK, STATE(6982), 1, sym_comment, - ACTIONS(11246), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232631] = 5, - ACTIONS(121), 1, + STATE(6985), 1, + aux_sym_val_binary_repeat1, + [234446] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11407), 1, - anon_sym_RBRACK, - STATE(6560), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(4920), 1, + aux_sym_unquoted_token4, STATE(6983), 1, sym_comment, - [232647] = 5, - ACTIONS(121), 1, + STATE(7583), 1, + sym__expr_parenthesized_immediate, + [234462] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11409), 1, - anon_sym_RBRACK, - STATE(6561), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(2957), 1, + aux_sym_unquoted_token4, STATE(6984), 1, sym_comment, - [232663] = 5, - ACTIONS(121), 1, + STATE(7594), 1, + sym__expr_parenthesized_immediate, + [234478] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11411), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11090), 1, anon_sym_RBRACK, - STATE(6562), 1, - aux_sym__multiple_types_repeat1, STATE(6985), 1, sym_comment, - [232679] = 5, - ACTIONS(121), 1, + STATE(7162), 1, + aux_sym_val_binary_repeat1, + [234494] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11413), 1, + ACTIONS(11092), 1, anon_sym_RBRACK, - STATE(6563), 1, + STATE(6900), 1, aux_sym__multiple_types_repeat1, STATE(6986), 1, sym_comment, - [232695] = 5, - ACTIONS(3), 1, + [234510] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(11415), 1, - anon_sym_SEMI, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(1271), 1, + anon_sym_RPAREN, STATE(6987), 1, sym_comment, - [232711] = 5, - ACTIONS(121), 1, + ACTIONS(1268), 2, + sym__newline, + anon_sym_SEMI, + [234524] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - anon_sym_RBRACK, - ACTIONS(1441), 1, - sym__entry_separator, - ACTIONS(5397), 1, - aux_sym__unquoted_in_list_token6, STATE(6988), 1, sym_comment, - [232727] = 5, - ACTIONS(121), 1, + ACTIONS(10773), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234536] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11417), 1, + ACTIONS(11094), 1, anon_sym_RBRACK, - STATE(6564), 1, + STATE(6901), 1, aux_sym__multiple_types_repeat1, STATE(6989), 1, sym_comment, - [232743] = 5, - ACTIONS(121), 1, + [234552] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11419), 1, + ACTIONS(11096), 1, anon_sym_RBRACK, - STATE(6565), 1, + STATE(6902), 1, aux_sym__multiple_types_repeat1, STATE(6990), 1, sym_comment, - [232759] = 5, - ACTIONS(121), 1, + [234568] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11421), 1, + ACTIONS(11098), 1, anon_sym_RBRACK, - STATE(6832), 1, + STATE(6903), 1, aux_sym__multiple_types_repeat1, STATE(6991), 1, sym_comment, - [232775] = 5, - ACTIONS(121), 1, + [234584] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11423), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11100), 1, anon_sym_RBRACK, - STATE(6566), 1, - aux_sym__multiple_types_repeat1, STATE(6992), 1, sym_comment, - [232791] = 5, + STATE(7162), 1, + aux_sym_val_binary_repeat1, + [234600] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6993), 1, - sym_comment, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7270), 1, - sym_val_list, - [232807] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11425), 1, + ACTIONS(11102), 1, anon_sym_RBRACK, - STATE(6867), 1, + STATE(6904), 1, aux_sym__multiple_types_repeat1, - STATE(6994), 1, + STATE(6993), 1, sym_comment, - [232823] = 3, - ACTIONS(3), 1, + [234616] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6995), 1, + STATE(6994), 1, sym_comment, - ACTIONS(11232), 3, + ACTIONS(10753), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232835] = 3, + [234628] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11104), 1, + anon_sym_RBRACK, + STATE(6974), 1, + aux_sym_val_binary_repeat1, + STATE(6995), 1, + sym_comment, + [234644] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11106), 1, + anon_sym_RBRACK, + STATE(6911), 1, + aux_sym__multiple_types_repeat1, STATE(6996), 1, sym_comment, - ACTIONS(11180), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232847] = 4, + [234660] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11427), 1, - anon_sym_LBRACK, - STATE(7612), 1, - sym_val_list, - STATE(6997), 2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11108), 1, + anon_sym_RBRACK, + STATE(6918), 1, + aux_sym__multiple_types_repeat1, + STATE(6997), 1, sym_comment, - aux_sym_val_table_repeat1, - [232861] = 5, + [234676] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, - aux_sym_unquoted_token2, - ACTIONS(1945), 1, - aux_sym_ctrl_match_token1, - ACTIONS(7525), 1, - anon_sym_DOT, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11110), 1, + anon_sym_RBRACK, + STATE(6919), 1, + aux_sym__multiple_types_repeat1, STATE(6998), 1, sym_comment, - [232877] = 3, + [234692] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11112), 1, + anon_sym_RBRACK, + STATE(6453), 1, + aux_sym__multiple_types_repeat1, STATE(6999), 1, sym_comment, - ACTIONS(11194), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232889] = 3, - ACTIONS(3), 1, + [234708] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7000), 1, sym_comment, - ACTIONS(11234), 3, + ACTIONS(10755), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232901] = 5, - ACTIONS(3), 1, + [234720] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11430), 1, - anon_sym_RBRACK, STATE(7001), 1, sym_comment, - STATE(7006), 1, - aux_sym_val_binary_repeat1, - [232917] = 5, - ACTIONS(121), 1, + ACTIONS(10509), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234732] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11432), 1, - anon_sym_RBRACK, - STATE(6891), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11114), 1, + anon_sym_EQ, + ACTIONS(11116), 1, + anon_sym_COLON, STATE(7002), 1, sym_comment, - [232933] = 5, - ACTIONS(3), 1, + STATE(7991), 1, + sym_param_type, + [234748] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, STATE(7003), 1, sym_comment, - STATE(7233), 1, - sym_val_list, - [232949] = 5, - ACTIONS(121), 1, + ACTIONS(10781), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234760] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11434), 1, - anon_sym_RBRACK, - STATE(6394), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(3717), 1, + anon_sym_RBRACE, STATE(7004), 1, sym_comment, - [232965] = 5, - ACTIONS(121), 1, + STATE(7143), 1, + aux_sym_shebang_repeat1, + [234776] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11436), 1, - anon_sym_RBRACK, - STATE(6395), 1, - aux_sym__multiple_types_repeat1, STATE(7005), 1, sym_comment, - [232981] = 5, - ACTIONS(3), 1, + ACTIONS(10797), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234788] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11438), 1, - anon_sym_RBRACK, STATE(7006), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [232997] = 5, - ACTIONS(121), 1, + ACTIONS(11118), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [234800] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - ACTIONS(11440), 1, - sym__space, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(3667), 1, + anon_sym_RBRACE, STATE(7007), 1, sym_comment, - [233013] = 5, - ACTIONS(121), 1, + STATE(7148), 1, + aux_sym_shebang_repeat1, + [234816] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11442), 1, - anon_sym_RBRACK, - STATE(2762), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, + ACTIONS(5964), 1, + anon_sym_EQ_GT, + ACTIONS(6048), 1, + anon_sym_PIPE, STATE(7008), 1, sym_comment, - [233029] = 5, - ACTIONS(121), 1, + [234832] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11444), 1, - anon_sym_RBRACK, - STATE(6577), 1, - aux_sym__multiple_types_repeat1, STATE(7009), 1, sym_comment, - [233045] = 3, - ACTIONS(3), 1, + ACTIONS(11120), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [234844] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11122), 1, + anon_sym_RBRACK, STATE(7010), 1, sym_comment, - ACTIONS(11188), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233057] = 3, + STATE(7016), 1, + aux_sym_val_binary_repeat1, + [234860] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + ACTIONS(11124), 1, + sym__space, STATE(7011), 1, sym_comment, - ACTIONS(11446), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [233069] = 5, - ACTIONS(121), 1, + [234876] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11448), 1, - anon_sym_RBRACK, - STATE(6578), 1, - aux_sym__multiple_types_repeat1, STATE(7012), 1, sym_comment, - [233085] = 5, - ACTIONS(121), 1, + ACTIONS(10509), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234888] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11450), 1, - anon_sym_RBRACK, - STATE(6579), 1, - aux_sym__multiple_types_repeat1, STATE(7013), 1, sym_comment, - [233101] = 5, - ACTIONS(121), 1, + ACTIONS(10148), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234900] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11452), 1, - anon_sym_RBRACK, - STATE(6580), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11126), 1, + sym__table_head_separator, STATE(7014), 1, sym_comment, - [233117] = 3, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234914] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11128), 1, + anon_sym_RBRACK, + STATE(2821), 1, + aux_sym__multiple_types_repeat1, STATE(7015), 1, sym_comment, - ACTIONS(11454), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [233129] = 5, - ACTIONS(121), 1, + [234930] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11456), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11130), 1, anon_sym_RBRACK, - STATE(6581), 1, - aux_sym__multiple_types_repeat1, STATE(7016), 1, sym_comment, - [233145] = 5, - ACTIONS(3), 1, + STATE(7162), 1, + aux_sym_val_binary_repeat1, + [234946] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(11458), 1, - anon_sym_RBRACE, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(6337), 1, + anon_sym_AT, + ACTIONS(8240), 1, + anon_sym_EQ, + STATE(5414), 1, + sym_param_cmd, STATE(7017), 1, sym_comment, - [233161] = 5, - ACTIONS(121), 1, + [234962] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11460), 1, - anon_sym_RBRACK, - STATE(6582), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1527), 1, + anon_sym_LPAREN2, + ACTIONS(1567), 1, + aux_sym__unquoted_in_record_token4, STATE(7018), 1, sym_comment, - [233177] = 5, - ACTIONS(121), 1, + STATE(7625), 1, + sym__expr_parenthesized_immediate, + [234978] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11462), 1, + ACTIONS(11132), 1, anon_sym_RBRACK, - STATE(6583), 1, + STATE(6392), 1, aux_sym__multiple_types_repeat1, STATE(7019), 1, sym_comment, - [233193] = 5, + [234994] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(11464), 1, - anon_sym_RBRACE, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11134), 1, + anon_sym_RBRACK, + STATE(6393), 1, + aux_sym__multiple_types_repeat1, STATE(7020), 1, sym_comment, - [233209] = 5, - ACTIONS(121), 1, + [235010] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11466), 1, + ACTIONS(11136), 1, anon_sym_RBRACK, - STATE(6584), 1, + STATE(6394), 1, aux_sym__multiple_types_repeat1, STATE(7021), 1, sym_comment, - [233225] = 3, + [235026] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11138), 1, + anon_sym_RBRACK, + STATE(6395), 1, + aux_sym__multiple_types_repeat1, STATE(7022), 1, sym_comment, - ACTIONS(11196), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233237] = 5, + [235042] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(11468), 1, - anon_sym_RBRACE, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11140), 1, + anon_sym_RBRACK, + STATE(6396), 1, + aux_sym__multiple_types_repeat1, STATE(7023), 1, sym_comment, - [233253] = 4, - ACTIONS(3), 1, + [235058] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10584), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, STATE(7024), 1, sym_comment, - ACTIONS(1705), 2, - sym__newline, - aux_sym_ctrl_match_token1, - [233267] = 3, + ACTIONS(2121), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [235072] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11142), 1, + anon_sym_RBRACK, + STATE(6397), 1, + aux_sym__multiple_types_repeat1, STATE(7025), 1, sym_comment, - ACTIONS(11170), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233279] = 5, + [235088] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11470), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11144), 1, anon_sym_RBRACK, + STATE(6398), 1, + aux_sym__multiple_types_repeat1, STATE(7026), 1, sym_comment, - STATE(7031), 1, - aux_sym_val_binary_repeat1, - [233295] = 5, + [235104] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(4824), 1, - sym_block, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11146), 1, + anon_sym_RBRACK, + STATE(6399), 1, + aux_sym__multiple_types_repeat1, STATE(7027), 1, sym_comment, - [233311] = 5, - ACTIONS(3), 1, + [235120] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2925), 1, - anon_sym_in, - ACTIONS(11472), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11474), 1, + ACTIONS(8797), 1, aux_sym_unquoted_token2, STATE(7028), 1, sym_comment, - [233327] = 3, - ACTIONS(3), 1, + ACTIONS(1537), 2, + sym_identifier, + anon_sym_DOLLAR, + [235134] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7029), 1, sym_comment, - ACTIONS(11188), 3, + ACTIONS(10377), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233339] = 4, - ACTIONS(3), 1, + [235146] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5026), 1, - aux_sym_cmd_identifier_token41, STATE(7030), 1, sym_comment, - ACTIONS(11476), 2, - sym_filesize_unit, - sym_duration_unit, - [233353] = 5, - ACTIONS(3), 1, + ACTIONS(10317), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235158] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11478), 1, - anon_sym_RBRACK, + ACTIONS(6636), 1, + aux_sym_unquoted_token2, STATE(7031), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [233369] = 3, - ACTIONS(3), 1, + ACTIONS(1537), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [235172] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7032), 1, sym_comment, - ACTIONS(11172), 3, + ACTIONS(10897), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233381] = 5, - ACTIONS(121), 1, + [235184] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11480), 1, - anon_sym_RBRACK, - STATE(6592), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11148), 1, + anon_sym_EQ2, STATE(7033), 1, sym_comment, - [233397] = 5, - ACTIONS(3), 1, + ACTIONS(5039), 2, + sym_identifier, + anon_sym_DOLLAR, + [235198] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(3844), 1, - anon_sym_RBRACE, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11150), 1, + anon_sym_RBRACK, STATE(7034), 1, sym_comment, - [233413] = 5, - ACTIONS(121), 1, + STATE(7037), 1, + aux_sym_val_binary_repeat1, + [235214] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5745), 1, sym__entry_separator, - ACTIONS(11482), 1, + ACTIONS(11152), 1, anon_sym_RBRACK, - STATE(6593), 1, + STATE(2783), 1, aux_sym__multiple_types_repeat1, STATE(7035), 1, sym_comment, - [233429] = 5, - ACTIONS(121), 1, + [235230] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5745), 1, sym__entry_separator, - ACTIONS(11484), 1, + ACTIONS(11154), 1, anon_sym_RBRACK, - STATE(6594), 1, + STATE(2784), 1, aux_sym__multiple_types_repeat1, STATE(7036), 1, sym_comment, - [233445] = 5, - ACTIONS(121), 1, + [235246] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11486), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11156), 1, anon_sym_RBRACK, - STATE(6595), 1, - aux_sym__multiple_types_repeat1, STATE(7037), 1, sym_comment, - [233461] = 3, + STATE(7162), 1, + aux_sym_val_binary_repeat1, + [235262] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11158), 1, + anon_sym_RBRACK, + STATE(6420), 1, + aux_sym__multiple_types_repeat1, STATE(7038), 1, sym_comment, - ACTIONS(10421), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233473] = 5, - ACTIONS(121), 1, + [235278] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11488), 1, + ACTIONS(11160), 1, anon_sym_RBRACK, - STATE(6596), 1, + STATE(6405), 1, aux_sym__multiple_types_repeat1, STATE(7039), 1, sym_comment, - [233489] = 3, + [235294] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11162), 1, + anon_sym_RBRACK, + STATE(6408), 1, + aux_sym__multiple_types_repeat1, STATE(7040), 1, sym_comment, - ACTIONS(11490), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [233501] = 5, - ACTIONS(121), 1, + [235310] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11492), 1, + ACTIONS(11164), 1, anon_sym_RBRACK, - STATE(6597), 1, + STATE(6412), 1, aux_sym__multiple_types_repeat1, STATE(7041), 1, sym_comment, - [233517] = 5, - ACTIONS(121), 1, + [235326] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11494), 1, + ACTIONS(11166), 1, anon_sym_RBRACK, - STATE(6598), 1, + STATE(6421), 1, aux_sym__multiple_types_repeat1, STATE(7042), 1, sym_comment, - [233533] = 5, - ACTIONS(121), 1, + [235342] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11496), 1, + ACTIONS(11168), 1, anon_sym_RBRACK, - STATE(6599), 1, + STATE(6422), 1, aux_sym__multiple_types_repeat1, STATE(7043), 1, sym_comment, - [233549] = 5, + [235358] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4966), 1, - anon_sym_in, - ACTIONS(11498), 1, - sym_long_flag_identifier, - ACTIONS(11500), 1, - anon_sym_EQ2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11170), 1, + anon_sym_RBRACK, + STATE(6423), 1, + aux_sym__multiple_types_repeat1, STATE(7044), 1, sym_comment, - [233565] = 4, + [235374] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11502), 1, - anon_sym_EQ2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11172), 1, + anon_sym_RBRACK, + STATE(6424), 1, + aux_sym__multiple_types_repeat1, STATE(7045), 1, sym_comment, - ACTIONS(5086), 2, - sym_identifier, - anon_sym_DOLLAR, - [233579] = 5, - ACTIONS(3), 1, + [235390] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10256), 1, - anon_sym_PIPE, - ACTIONS(11504), 1, - anon_sym_EQ_GT, - STATE(6970), 1, - aux_sym_match_pattern_repeat1, STATE(7046), 1, sym_comment, - [233595] = 5, + ACTIONS(10897), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235402] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11506), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11174), 1, anon_sym_RBRACK, + STATE(6425), 1, + aux_sym__multiple_types_repeat1, STATE(7047), 1, sym_comment, - STATE(7079), 1, - aux_sym_val_binary_repeat1, - [233611] = 5, + [235418] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11508), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11176), 1, anon_sym_RBRACK, + STATE(6426), 1, + aux_sym__multiple_types_repeat1, STATE(7048), 1, sym_comment, - STATE(7052), 1, - aux_sym_val_binary_repeat1, - [233627] = 3, + [235434] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11178), 1, + anon_sym_RBRACK, + STATE(6534), 1, + aux_sym__multiple_types_repeat1, STATE(7049), 1, sym_comment, - ACTIONS(10716), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233639] = 3, + [235450] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11180), 1, + anon_sym_RBRACK, + STATE(6536), 1, + aux_sym__multiple_types_repeat1, STATE(7050), 1, sym_comment, - ACTIONS(10716), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233651] = 4, + [235466] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1214), 1, - anon_sym_RPAREN, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11182), 1, + anon_sym_RBRACK, + STATE(6427), 1, + aux_sym__multiple_types_repeat1, STATE(7051), 1, sym_comment, - ACTIONS(1211), 2, - sym__newline, - anon_sym_SEMI, - [233665] = 5, + [235482] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11510), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11184), 1, anon_sym_RBRACK, + STATE(6538), 1, + aux_sym__multiple_types_repeat1, STATE(7052), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [233681] = 4, + [235498] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11512), 1, - aux_sym_cmd_identifier_token41, - STATE(7053), 1, + ACTIONS(1757), 1, + anon_sym_POUND_BANG, + ACTIONS(11186), 1, + sym__newline, + STATE(7053), 2, sym_comment, - ACTIONS(11514), 2, - sym_filesize_unit, - sym_duration_unit, - [233695] = 5, - ACTIONS(121), 1, + aux_sym_shebang_repeat1, + [235512] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11516), 1, - anon_sym_RBRACK, - STATE(6608), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2129), 1, + aux_sym_unquoted_token2, STATE(7054), 1, sym_comment, - [233711] = 5, + ACTIONS(2127), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [235526] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11310), 1, - anon_sym_COLON, - ACTIONS(11518), 1, - anon_sym_EQ, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11189), 1, + anon_sym_RBRACK, + STATE(2822), 1, + aux_sym__multiple_types_repeat1, STATE(7055), 1, sym_comment, - STATE(8030), 1, - sym_param_type, - [233727] = 5, + [235542] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10258), 1, - anon_sym_if, - ACTIONS(11520), 1, - anon_sym_EQ_GT, STATE(7056), 1, sym_comment, - STATE(7969), 1, - sym_match_guard, - [233743] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11522), 1, + ACTIONS(1778), 3, anon_sym_RBRACK, - STATE(6609), 1, - aux_sym__multiple_types_repeat1, + sym__entry_separator, + sym__table_head_separator, + [235554] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7057), 1, sym_comment, - [233759] = 5, - ACTIONS(121), 1, + ACTIONS(10944), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235566] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11524), 1, - anon_sym_RBRACK, - STATE(6610), 1, - aux_sym__multiple_types_repeat1, STATE(7058), 1, sym_comment, - [233775] = 5, - ACTIONS(121), 1, + ACTIONS(11014), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235578] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(2279), 1, sym__entry_separator, - ACTIONS(11526), 1, - anon_sym_RBRACK, - STATE(6611), 1, + ACTIONS(11191), 1, + anon_sym_RBRACE, + STATE(502), 1, aux_sym__multiple_types_repeat1, STATE(7059), 1, sym_comment, - [233791] = 5, - ACTIONS(121), 1, + [235594] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11528), 1, - anon_sym_RBRACK, - STATE(6612), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(3941), 1, + anon_sym_RBRACE, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(7060), 1, sym_comment, - [233807] = 5, - ACTIONS(121), 1, + [235610] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11530), 1, - anon_sym_RBRACK, - STATE(6613), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, STATE(7061), 1, sym_comment, - [233823] = 5, - ACTIONS(121), 1, + ACTIONS(1723), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [235624] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11532), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11193), 1, anon_sym_RBRACK, - STATE(6614), 1, - aux_sym__multiple_types_repeat1, STATE(7062), 1, sym_comment, - [233839] = 5, - ACTIONS(121), 1, + STATE(7064), 1, + aux_sym_val_binary_repeat1, + [235640] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11534), 1, - anon_sym_RBRACK, - STATE(6615), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4952), 1, + aux_sym_ctrl_match_token1, + ACTIONS(11195), 1, + sym_long_flag_identifier, + ACTIONS(11197), 1, + anon_sym_EQ2, STATE(7063), 1, sym_comment, - [233855] = 3, - ACTIONS(3), 1, + [235656] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11199), 1, + anon_sym_RBRACK, STATE(7064), 1, sym_comment, - ACTIONS(10397), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233867] = 3, - ACTIONS(3), 1, + STATE(7162), 1, + aux_sym_val_binary_repeat1, + [235672] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7065), 1, sym_comment, - ACTIONS(11276), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233879] = 5, + ACTIONS(6242), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [235684] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11536), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11201), 1, anon_sym_RBRACK, + STATE(6444), 1, + aux_sym__multiple_types_repeat1, STATE(7066), 1, sym_comment, - STATE(7070), 1, - aux_sym_val_binary_repeat1, - [233895] = 5, - ACTIONS(121), 1, + [235700] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(4844), 1, - aux_sym_unquoted_token7, + ACTIONS(2089), 1, + sym__newline, + ACTIONS(2093), 1, + sym__space, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, STATE(7067), 1, sym_comment, - STATE(7592), 1, - sym__expr_parenthesized_immediate, - [233911] = 5, - ACTIONS(121), 1, + [235716] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - ACTIONS(7399), 1, - aux_sym__unquoted_in_list_token7, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11203), 1, + anon_sym_RBRACK, + STATE(6445), 1, + aux_sym__multiple_types_repeat1, STATE(7068), 1, sym_comment, - STATE(7484), 1, - sym__expr_parenthesized_immediate, - [233927] = 3, + [235732] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11205), 1, + anon_sym_RBRACK, + STATE(6446), 1, + aux_sym__multiple_types_repeat1, STATE(7069), 1, sym_comment, - ACTIONS(10912), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233939] = 5, + [235748] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11538), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11207), 1, anon_sym_RBRACK, + STATE(6447), 1, + aux_sym__multiple_types_repeat1, STATE(7070), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [233955] = 3, + [235764] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7071), 1, - sym_comment, - ACTIONS(10912), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233967] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11540), 1, + ACTIONS(11209), 1, anon_sym_RBRACK, - STATE(6621), 1, + STATE(6448), 1, aux_sym__multiple_types_repeat1, + STATE(7071), 1, + sym_comment, + [235780] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(3745), 1, + anon_sym_RBRACE, STATE(7072), 1, sym_comment, - [233983] = 5, - ACTIONS(121), 1, + STATE(7283), 1, + aux_sym_shebang_repeat1, + [235796] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11542), 1, - anon_sym_RBRACK, - STATE(6622), 1, - aux_sym__multiple_types_repeat1, STATE(7073), 1, sym_comment, - [233999] = 5, - ACTIONS(121), 1, + ACTIONS(11016), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235808] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11544), 1, + ACTIONS(11211), 1, anon_sym_RBRACK, - STATE(6623), 1, + STATE(6449), 1, aux_sym__multiple_types_repeat1, STATE(7074), 1, sym_comment, - [234015] = 5, - ACTIONS(121), 1, + [235824] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11546), 1, + ACTIONS(11213), 1, anon_sym_RBRACK, - STATE(6624), 1, + STATE(6450), 1, aux_sym__multiple_types_repeat1, STATE(7075), 1, sym_comment, - [234031] = 5, - ACTIONS(121), 1, + [235840] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11548), 1, - anon_sym_RBRACK, - STATE(6625), 1, - aux_sym__multiple_types_repeat1, STATE(7076), 1, sym_comment, - [234047] = 5, - ACTIONS(121), 1, + ACTIONS(11022), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235852] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11550), 1, - anon_sym_RBRACK, - STATE(6626), 1, - aux_sym__multiple_types_repeat1, STATE(7077), 1, sym_comment, - [234063] = 5, - ACTIONS(121), 1, + ACTIONS(10831), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235864] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11552), 1, + ACTIONS(11215), 1, anon_sym_RBRACK, - STATE(6627), 1, + STATE(6451), 1, aux_sym__multiple_types_repeat1, STATE(7078), 1, sym_comment, - [234079] = 5, - ACTIONS(3), 1, + [235880] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11554), 1, - anon_sym_RBRACK, STATE(7079), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [234095] = 5, - ACTIONS(121), 1, + ACTIONS(10142), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235892] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11556), 1, - anon_sym_RBRACK, - STATE(6628), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2097), 1, + sym__newline, + ACTIONS(2101), 1, + sym__space, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, STATE(7080), 1, sym_comment, - [234111] = 3, + [235908] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + ACTIONS(2105), 1, + sym__newline, + ACTIONS(2107), 1, + sym__space, STATE(7081), 1, sym_comment, - ACTIONS(11166), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234123] = 5, - ACTIONS(3), 1, + [235924] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10258), 1, - anon_sym_if, - ACTIONS(11558), 1, - anon_sym_EQ_GT, STATE(7082), 1, sym_comment, - STATE(7969), 1, - sym_match_guard, - [234139] = 5, - ACTIONS(121), 1, + ACTIONS(10831), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235936] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(11560), 1, - anon_sym_RBRACK, - STATE(2756), 1, - aux_sym__multiple_types_repeat1, STATE(7083), 1, sym_comment, - [234155] = 5, - ACTIONS(121), 1, + ACTIONS(6246), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [235948] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11562), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11217), 1, anon_sym_RBRACK, - STATE(6448), 1, - aux_sym__multiple_types_repeat1, STATE(7084), 1, sym_comment, - [234171] = 3, - ACTIONS(3), 1, + STATE(7086), 1, + aux_sym_val_binary_repeat1, + [235964] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1569), 1, + aux_sym_unquoted_token2, STATE(7085), 1, sym_comment, - ACTIONS(10936), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234183] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7086), 1, - sym_comment, - ACTIONS(11220), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234195] = 5, - ACTIONS(3), 1, + ACTIONS(1571), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [235978] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11282), 1, + ACTIONS(11048), 1, sym_hex_digit, - ACTIONS(11564), 1, + ACTIONS(11219), 1, anon_sym_RBRACK, - STATE(7087), 1, + STATE(7086), 1, sym_comment, - STATE(7089), 1, + STATE(7162), 1, aux_sym_val_binary_repeat1, - [234211] = 5, - ACTIONS(121), 1, + [235994] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11566), 1, + ACTIONS(11221), 1, anon_sym_RBRACK, - STATE(6399), 1, + STATE(6465), 1, aux_sym__multiple_types_repeat1, + STATE(7087), 1, + sym_comment, + [236010] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7088), 1, sym_comment, - [234227] = 5, + ACTIONS(11012), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11568), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11223), 1, anon_sym_RBRACK, + STATE(6466), 1, + aux_sym__multiple_types_repeat1, STATE(7089), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [234243] = 5, - ACTIONS(121), 1, + [236038] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11570), 1, + ACTIONS(11225), 1, anon_sym_RBRACK, - STATE(6632), 1, + STATE(6467), 1, aux_sym__multiple_types_repeat1, STATE(7090), 1, sym_comment, - [234259] = 3, + [236054] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11227), 1, + anon_sym_RBRACK, + STATE(6468), 1, + aux_sym__multiple_types_repeat1, STATE(7091), 1, sym_comment, - ACTIONS(11572), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [234271] = 3, - ACTIONS(3), 1, + [236070] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7092), 1, sym_comment, - ACTIONS(10720), 3, + ACTIONS(10629), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234283] = 5, - ACTIONS(121), 1, + [236082] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11574), 1, + ACTIONS(11229), 1, anon_sym_RBRACK, - STATE(6633), 1, + STATE(6469), 1, aux_sym__multiple_types_repeat1, STATE(7093), 1, sym_comment, - [234299] = 5, - ACTIONS(121), 1, + [236098] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11576), 1, - anon_sym_RBRACK, - STATE(6635), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11231), 1, + anon_sym_DQUOTE, STATE(7094), 1, sym_comment, - [234315] = 5, - ACTIONS(121), 1, + ACTIONS(11233), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236112] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11578), 1, + ACTIONS(11235), 1, anon_sym_RBRACK, - STATE(6636), 1, + STATE(6470), 1, aux_sym__multiple_types_repeat1, STATE(7095), 1, sym_comment, - [234331] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3978), 1, - aux_sym_unquoted_token7, - STATE(7096), 1, - sym_comment, - STATE(7497), 1, - sym__expr_parenthesized_immediate, - [234347] = 5, - ACTIONS(121), 1, + [236128] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11580), 1, + ACTIONS(11237), 1, anon_sym_RBRACK, - STATE(6637), 1, + STATE(6471), 1, aux_sym__multiple_types_repeat1, + STATE(7096), 1, + sym_comment, + [236144] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4944), 1, + aux_sym_ctrl_match_token1, + ACTIONS(11239), 1, + anon_sym_EQ2, + ACTIONS(11241), 1, + sym_short_flag_identifier, STATE(7097), 1, sym_comment, - [234363] = 5, - ACTIONS(121), 1, + [236160] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11582), 1, + ACTIONS(11243), 1, anon_sym_RBRACK, - STATE(6638), 1, + STATE(6472), 1, aux_sym__multiple_types_repeat1, STATE(7098), 1, sym_comment, - [234379] = 5, - ACTIONS(121), 1, + [236176] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11584), 1, - anon_sym_RBRACK, - STATE(6639), 1, - aux_sym__multiple_types_repeat1, STATE(7099), 1, sym_comment, - [234395] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7100), 1, - sym_comment, - ACTIONS(10421), 3, + ACTIONS(10833), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234407] = 5, - ACTIONS(3), 1, + [236188] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(3844), 1, - anon_sym_RBRACE, - STATE(6979), 1, - aux_sym_shebang_repeat1, + ACTIONS(6337), 1, + anon_sym_AT, + ACTIONS(11245), 1, + anon_sym_GT, + STATE(7100), 1, + sym_comment, + STATE(7733), 1, + sym_param_cmd, + [236204] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11247), 1, + anon_sym_RBRACK, STATE(7101), 1, sym_comment, - [234423] = 5, - ACTIONS(121), 1, + STATE(7104), 1, + aux_sym_val_binary_repeat1, + [236220] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11586), 1, + ACTIONS(11249), 1, anon_sym_RBRACK, - STATE(6449), 1, + STATE(6664), 1, aux_sym__multiple_types_repeat1, STATE(7102), 1, sym_comment, - [234439] = 4, - ACTIONS(121), 1, + [236236] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, STATE(7103), 1, sym_comment, - ACTIONS(2155), 2, - sym_identifier, - anon_sym_DOLLAR, - [234453] = 5, - ACTIONS(121), 1, + ACTIONS(10833), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236248] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11588), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11251), 1, anon_sym_RBRACK, - STATE(6450), 1, - aux_sym__multiple_types_repeat1, STATE(7104), 1, sym_comment, - [234469] = 4, - ACTIONS(121), 1, + STATE(7162), 1, + aux_sym_val_binary_repeat1, + [236264] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11253), 1, + anon_sym_RBRACK, + STATE(6486), 1, + aux_sym__multiple_types_repeat1, STATE(7105), 1, sym_comment, - ACTIONS(2163), 2, - sym_identifier, - anon_sym_DOLLAR, - [234483] = 5, + [236280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11590), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11255), 1, anon_sym_RBRACK, + STATE(6668), 1, + aux_sym__multiple_types_repeat1, STATE(7106), 1, sym_comment, - STATE(7245), 1, - aux_sym_val_binary_repeat1, - [234499] = 5, + [236296] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11592), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11257), 1, anon_sym_RBRACK, + STATE(6487), 1, + aux_sym__multiple_types_repeat1, STATE(7107), 1, sym_comment, - STATE(7109), 1, - aux_sym_val_binary_repeat1, - [234515] = 5, - ACTIONS(121), 1, + [236312] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11594), 1, + ACTIONS(11259), 1, anon_sym_RBRACK, - STATE(6451), 1, + STATE(6488), 1, aux_sym__multiple_types_repeat1, STATE(7108), 1, sym_comment, - [234531] = 5, + [236328] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11596), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11261), 1, anon_sym_RBRACK, + STATE(6489), 1, + aux_sym__multiple_types_repeat1, STATE(7109), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [234547] = 5, - ACTIONS(121), 1, + [236344] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11598), 1, + ACTIONS(11263), 1, anon_sym_RBRACK, - STATE(6645), 1, + STATE(6672), 1, aux_sym__multiple_types_repeat1, STATE(7110), 1, sym_comment, - [234563] = 3, + [236360] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7111), 1, - sym_comment, - ACTIONS(10722), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234575] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11600), 1, + ACTIONS(11265), 1, anon_sym_RBRACK, - STATE(6646), 1, + STATE(6490), 1, aux_sym__multiple_types_repeat1, + STATE(7111), 1, + sym_comment, + [236376] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11267), 1, + aux_sym_cmd_identifier_token41, STATE(7112), 1, sym_comment, - [234591] = 5, - ACTIONS(121), 1, + ACTIONS(11269), 2, + sym_filesize_unit, + sym_duration_unit, + [236390] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11602), 1, - anon_sym_RBRACK, - STATE(6647), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11116), 1, + anon_sym_COLON, + ACTIONS(11271), 1, + anon_sym_EQ, STATE(7113), 1, sym_comment, - [234607] = 5, - ACTIONS(121), 1, + STATE(7777), 1, + sym_param_type, + [236406] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11604), 1, + ACTIONS(11273), 1, anon_sym_RBRACK, - STATE(6648), 1, + STATE(6491), 1, aux_sym__multiple_types_repeat1, STATE(7114), 1, sym_comment, - [234623] = 5, - ACTIONS(121), 1, + [236422] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11606), 1, + ACTIONS(11275), 1, anon_sym_RBRACK, - STATE(6649), 1, + STATE(6492), 1, aux_sym__multiple_types_repeat1, STATE(7115), 1, sym_comment, - [234639] = 3, + [236438] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11277), 1, + anon_sym_RBRACK, + STATE(6493), 1, + aux_sym__multiple_types_repeat1, STATE(7116), 1, sym_comment, - ACTIONS(10724), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234651] = 5, - ACTIONS(3), 1, + [236454] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6454), 1, - anon_sym_AT, - ACTIONS(11608), 1, - anon_sym_GT, STATE(7117), 1, sym_comment, - STATE(7907), 1, - sym_param_cmd, - [234667] = 5, - ACTIONS(121), 1, + ACTIONS(10124), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236466] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11610), 1, - anon_sym_RBRACK, - STATE(6650), 1, - aux_sym__multiple_types_repeat1, STATE(7118), 1, sym_comment, - [234683] = 5, - ACTIONS(121), 1, + ACTIONS(9012), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236478] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11612), 1, - anon_sym_RBRACK, - STATE(6651), 1, - aux_sym__multiple_types_repeat1, STATE(7119), 1, sym_comment, - [234699] = 3, - ACTIONS(3), 1, + ACTIONS(6252), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [236490] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7120), 1, sym_comment, - ACTIONS(11202), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234711] = 5, - ACTIONS(121), 1, + ACTIONS(6250), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [236502] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11614), 1, - anon_sym_RBRACK, - STATE(6652), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4950), 1, + anon_sym_in, + ACTIONS(11279), 1, + sym_long_flag_identifier, + ACTIONS(11281), 1, + anon_sym_EQ2, STATE(7121), 1, sym_comment, - [234727] = 5, - ACTIONS(121), 1, + [236518] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11616), 1, - anon_sym_RBRACK, - STATE(6452), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5039), 1, + sym__space, + ACTIONS(5041), 1, + sym__newline, + ACTIONS(11283), 1, + anon_sym_EQ2, STATE(7122), 1, sym_comment, - [234743] = 5, - ACTIONS(121), 1, + [236534] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11618), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11285), 1, anon_sym_RBRACK, - STATE(6453), 1, - aux_sym__multiple_types_repeat1, STATE(7123), 1, sym_comment, - [234759] = 5, - ACTIONS(121), 1, + STATE(7127), 1, + aux_sym_val_binary_repeat1, + [236550] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11620), 1, - anon_sym_RBRACK, - STATE(6454), 1, - aux_sym__multiple_types_repeat1, STATE(7124), 1, sym_comment, - [234775] = 5, - ACTIONS(121), 1, + ACTIONS(6252), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [236562] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11622), 1, - anon_sym_RBRACK, - STATE(6657), 1, - aux_sym__multiple_types_repeat1, STATE(7125), 1, sym_comment, - [234791] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7126), 1, - sym_comment, - ACTIONS(10614), 3, + ACTIONS(10775), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234803] = 5, - ACTIONS(121), 1, + [236574] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(11624), 1, + STATE(7126), 1, + sym_comment, + ACTIONS(6256), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [236586] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11287), 1, anon_sym_RBRACK, - STATE(2752), 1, - aux_sym__multiple_types_repeat1, STATE(7127), 1, sym_comment, - [234819] = 5, - ACTIONS(121), 1, + STATE(7162), 1, + aux_sym_val_binary_repeat1, + [236602] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11626), 1, + ACTIONS(11289), 1, anon_sym_RBRACK, - STATE(6658), 1, + STATE(6505), 1, aux_sym__multiple_types_repeat1, STATE(7128), 1, sym_comment, - [234835] = 5, - ACTIONS(121), 1, + [236618] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11628), 1, - anon_sym_RBRACK, - STATE(6659), 1, - aux_sym__multiple_types_repeat1, STATE(7129), 1, sym_comment, - [234851] = 5, - ACTIONS(121), 1, + ACTIONS(9036), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236630] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11630), 1, + ACTIONS(11291), 1, anon_sym_RBRACK, - STATE(6660), 1, + STATE(6506), 1, aux_sym__multiple_types_repeat1, STATE(7130), 1, sym_comment, - [234867] = 5, - ACTIONS(121), 1, + [236646] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11632), 1, + ACTIONS(11293), 1, anon_sym_RBRACK, - STATE(6661), 1, + STATE(6507), 1, aux_sym__multiple_types_repeat1, STATE(7131), 1, sym_comment, - [234883] = 5, - ACTIONS(121), 1, + [236662] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11634), 1, + ACTIONS(11295), 1, anon_sym_RBRACK, - STATE(6455), 1, + STATE(6508), 1, aux_sym__multiple_types_repeat1, STATE(7132), 1, sym_comment, - [234899] = 3, - ACTIONS(3), 1, + [236678] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1648), 1, + aux_sym_unquoted_token2, STATE(7133), 1, sym_comment, - ACTIONS(11636), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [234911] = 5, - ACTIONS(121), 1, + ACTIONS(1650), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [236692] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11638), 1, + ACTIONS(11297), 1, anon_sym_RBRACK, - STATE(6662), 1, + STATE(6509), 1, aux_sym__multiple_types_repeat1, STATE(7134), 1, sym_comment, - [234927] = 5, - ACTIONS(121), 1, + [236708] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11640), 1, - anon_sym_RBRACK, - STATE(6663), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4942), 1, + anon_sym_in, + ACTIONS(11299), 1, + anon_sym_EQ2, + ACTIONS(11301), 1, + sym_short_flag_identifier, STATE(7135), 1, sym_comment, - [234943] = 5, - ACTIONS(121), 1, + [236724] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11642), 1, + ACTIONS(11303), 1, anon_sym_RBRACK, - STATE(6664), 1, + STATE(6510), 1, aux_sym__multiple_types_repeat1, STATE(7136), 1, sym_comment, - [234959] = 3, + [236740] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11305), 1, + anon_sym_RBRACK, + STATE(6511), 1, + aux_sym__multiple_types_repeat1, STATE(7137), 1, sym_comment, - ACTIONS(10724), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234971] = 5, + [236756] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(3625), 1, - anon_sym_RBRACE, - STATE(7034), 1, - aux_sym_shebang_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11307), 1, + anon_sym_RBRACK, + STATE(6512), 1, + aux_sym__multiple_types_repeat1, STATE(7138), 1, sym_comment, - [234987] = 5, + [236772] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4968), 1, - aux_sym_ctrl_match_token1, - ACTIONS(11644), 1, - sym_long_flag_identifier, - ACTIONS(11646), 1, - anon_sym_EQ2, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(7303), 1, + aux_sym__unquoted_in_list_token4, STATE(7139), 1, sym_comment, - [235003] = 4, - ACTIONS(3), 1, + STATE(7549), 1, + sym__expr_parenthesized_immediate, + [236788] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11648), 1, - anon_sym_EQ2, STATE(7140), 1, sym_comment, - ACTIONS(5014), 2, - sym_identifier, - anon_sym_DOLLAR, - [235017] = 5, - ACTIONS(121), 1, + ACTIONS(10263), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236800] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11650), 1, - anon_sym_RBRACK, - STATE(6669), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10048), 1, + anon_sym_PIPE, + ACTIONS(11309), 1, + anon_sym_EQ_GT, STATE(7141), 1, sym_comment, - [235033] = 5, - ACTIONS(3), 1, + STATE(7277), 1, + aux_sym_match_pattern_repeat1, + [236816] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4888), 1, - anon_sym_in, - ACTIONS(11652), 1, - anon_sym_EQ2, - ACTIONS(11654), 1, - sym_short_flag_identifier, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11311), 1, + anon_sym_RBRACK, STATE(7142), 1, sym_comment, - [235049] = 5, - ACTIONS(121), 1, + STATE(7146), 1, + aux_sym_val_binary_repeat1, + [236832] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11656), 1, - anon_sym_RBRACK, - STATE(6670), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(3998), 1, + anon_sym_RBRACE, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(7143), 1, sym_comment, - [235065] = 5, - ACTIONS(121), 1, + [236848] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11658), 1, - anon_sym_RBRACK, - STATE(6671), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(3998), 1, + anon_sym_RBRACE, STATE(7144), 1, sym_comment, - [235081] = 5, - ACTIONS(121), 1, + STATE(7249), 1, + aux_sym_shebang_repeat1, + [236864] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11660), 1, - anon_sym_RBRACK, - STATE(6672), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10050), 1, + anon_sym_if, + ACTIONS(11313), 1, + anon_sym_EQ_GT, STATE(7145), 1, sym_comment, - [235097] = 5, - ACTIONS(121), 1, + STATE(7849), 1, + sym_match_guard, + [236880] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11662), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11315), 1, anon_sym_RBRACK, - STATE(6673), 1, - aux_sym__multiple_types_repeat1, STATE(7146), 1, sym_comment, - [235113] = 5, - ACTIONS(121), 1, + STATE(7162), 1, + aux_sym_val_binary_repeat1, + [236896] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11664), 1, + ACTIONS(11317), 1, anon_sym_RBRACK, - STATE(6674), 1, + STATE(6525), 1, aux_sym__multiple_types_repeat1, STATE(7147), 1, sym_comment, - [235129] = 5, - ACTIONS(121), 1, + [236912] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11666), 1, - anon_sym_RBRACK, - STATE(6675), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(4000), 1, + anon_sym_RBRACE, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(7148), 1, sym_comment, - [235145] = 5, - ACTIONS(121), 1, + [236928] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11668), 1, + ACTIONS(11319), 1, anon_sym_RBRACK, - STATE(6676), 1, + STATE(6526), 1, aux_sym__multiple_types_repeat1, STATE(7149), 1, sym_comment, - [235161] = 3, - ACTIONS(121), 1, + [236944] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11321), 1, + anon_sym_RBRACK, + STATE(6527), 1, + aux_sym__multiple_types_repeat1, STATE(7150), 1, sym_comment, - ACTIONS(1744), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [235173] = 5, + [236960] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11670), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11323), 1, anon_sym_RBRACK, - STATE(6962), 1, - aux_sym_val_binary_repeat1, + STATE(6528), 1, + aux_sym__multiple_types_repeat1, STATE(7151), 1, sym_comment, - [235189] = 3, - ACTIONS(3), 1, + [236976] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(4000), 1, + anon_sym_RBRACE, STATE(7152), 1, sym_comment, - ACTIONS(10750), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235201] = 5, - ACTIONS(121), 1, + STATE(7250), 1, + aux_sym_shebang_repeat1, + [236992] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11672), 1, + ACTIONS(11325), 1, anon_sym_RBRACK, - STATE(6683), 1, + STATE(6529), 1, aux_sym__multiple_types_repeat1, STATE(7153), 1, sym_comment, - [235217] = 3, + [237008] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11327), 1, + anon_sym_RBRACK, + STATE(6696), 1, + aux_sym__multiple_types_repeat1, STATE(7154), 1, sym_comment, - ACTIONS(11674), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [235229] = 5, - ACTIONS(121), 1, + [237024] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11676), 1, + ACTIONS(11329), 1, anon_sym_RBRACK, - STATE(6684), 1, + STATE(6530), 1, aux_sym__multiple_types_repeat1, STATE(7155), 1, sym_comment, - [235245] = 5, - ACTIONS(121), 1, + [237040] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11678), 1, + ACTIONS(11331), 1, anon_sym_RBRACK, - STATE(6685), 1, + STATE(6531), 1, aux_sym__multiple_types_repeat1, STATE(7156), 1, sym_comment, - [235261] = 5, - ACTIONS(121), 1, + [237056] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11680), 1, - anon_sym_RBRACK, - STATE(6686), 1, - aux_sym__multiple_types_repeat1, STATE(7157), 1, sym_comment, - [235277] = 4, + ACTIONS(10168), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11682), 1, - aux_sym_cmd_identifier_token41, - STATE(7158), 1, - sym_comment, - ACTIONS(11684), 2, - sym_filesize_unit, - sym_duration_unit, - [235291] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11686), 1, + ACTIONS(11333), 1, anon_sym_RBRACK, - STATE(6687), 1, + STATE(6532), 1, aux_sym__multiple_types_repeat1, + STATE(7158), 1, + sym_comment, + [237084] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(3941), 1, + anon_sym_RBRACE, STATE(7159), 1, sym_comment, - [235307] = 3, - ACTIONS(3), 1, + STATE(7281), 1, + aux_sym_shebang_repeat1, + [237100] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6401), 1, + sym_block, STATE(7160), 1, sym_comment, - ACTIONS(6342), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [235319] = 5, - ACTIONS(121), 1, + [237116] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11688), 1, - anon_sym_RBRACK, - STATE(6688), 1, - aux_sym__multiple_types_repeat1, STATE(7161), 1, sym_comment, - [235335] = 5, - ACTIONS(121), 1, + ACTIONS(10172), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237128] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11690), 1, + ACTIONS(11335), 1, anon_sym_RBRACK, - STATE(6689), 1, - aux_sym__multiple_types_repeat1, - STATE(7162), 1, + ACTIONS(11337), 1, + sym_hex_digit, + STATE(7162), 2, sym_comment, - [235351] = 3, + aux_sym_val_binary_repeat1, + [237142] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10707), 1, + anon_sym_LPAREN, STATE(7163), 1, sym_comment, - ACTIONS(6342), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [235363] = 5, - ACTIONS(121), 1, + ACTIONS(10709), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [237156] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11692), 1, + ACTIONS(11340), 1, anon_sym_RBRACK, - STATE(6690), 1, + STATE(6542), 1, aux_sym__multiple_types_repeat1, STATE(7164), 1, sym_comment, - [235379] = 3, + [237172] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11342), 1, + anon_sym_RBRACK, + STATE(6543), 1, + aux_sym__multiple_types_repeat1, STATE(7165), 1, sym_comment, - ACTIONS(11694), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [235391] = 3, + [237188] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11344), 1, + anon_sym_RBRACK, + STATE(6544), 1, + aux_sym__multiple_types_repeat1, STATE(7166), 1, sym_comment, - ACTIONS(6156), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [235403] = 3, + [237204] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7167), 1, - sym_comment, - ACTIONS(6354), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [235415] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11696), 1, + ACTIONS(11346), 1, anon_sym_RBRACK, - STATE(6695), 1, + STATE(6545), 1, aux_sym__multiple_types_repeat1, + STATE(7167), 1, + sym_comment, + [237220] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6337), 1, + anon_sym_AT, + ACTIONS(11348), 1, + anon_sym_GT, STATE(7168), 1, sym_comment, - [235431] = 3, - ACTIONS(121), 1, + STATE(7869), 1, + sym_param_cmd, + [237236] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11350), 1, + anon_sym_RBRACK, + STATE(6546), 1, + aux_sym__multiple_types_repeat1, STATE(7169), 1, sym_comment, - ACTIONS(2073), 3, - sym_identifier, - anon_sym_DOLLAR, - aux_sym_unquoted_token7, - [235443] = 3, - ACTIONS(3), 1, + [237252] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7170), 1, sym_comment, - ACTIONS(6350), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [235455] = 5, - ACTIONS(121), 1, + ACTIONS(10178), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237264] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11698), 1, + ACTIONS(11352), 1, anon_sym_RBRACK, - STATE(6696), 1, + STATE(6547), 1, aux_sym__multiple_types_repeat1, STATE(7171), 1, sym_comment, - [235471] = 5, - ACTIONS(121), 1, + [237280] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11700), 1, + ACTIONS(11354), 1, anon_sym_RBRACK, - STATE(6697), 1, + STATE(6548), 1, aux_sym__multiple_types_repeat1, STATE(7172), 1, sym_comment, - [235487] = 5, - ACTIONS(121), 1, + [237296] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11702), 1, + ACTIONS(11356), 1, anon_sym_RBRACK, - STATE(6698), 1, + STATE(6549), 1, aux_sym__multiple_types_repeat1, STATE(7173), 1, sym_comment, - [235503] = 5, - ACTIONS(121), 1, + [237312] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5745), 1, sym__entry_separator, - ACTIONS(11704), 1, + ACTIONS(11358), 1, anon_sym_RBRACK, - STATE(6700), 1, + STATE(2785), 1, aux_sym__multiple_types_repeat1, STATE(7174), 1, sym_comment, - [235519] = 5, - ACTIONS(121), 1, + [237328] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11706), 1, - anon_sym_RBRACK, - STATE(6701), 1, - aux_sym__multiple_types_repeat1, STATE(7175), 1, sym_comment, - [235535] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, - ACTIONS(6080), 1, - anon_sym_EQ_GT, - ACTIONS(6162), 1, - anon_sym_PIPE, - STATE(7176), 1, - sym_comment, - [235551] = 5, - ACTIONS(121), 1, + ACTIONS(10435), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237340] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11708), 1, + ACTIONS(11360), 1, anon_sym_RBRACK, - STATE(6702), 1, + STATE(6566), 1, aux_sym__multiple_types_repeat1, + STATE(7176), 1, + sym_comment, + [237356] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7177), 1, sym_comment, - [235567] = 3, - ACTIONS(3), 1, + ACTIONS(10189), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237368] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7178), 1, sym_comment, - ACTIONS(11180), 3, + ACTIONS(10207), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235579] = 4, - ACTIONS(121), 1, + [237380] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11710), 1, - anon_sym_DQUOTE, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11362), 1, + anon_sym_RBRACK, + STATE(6567), 1, + aux_sym__multiple_types_repeat1, STATE(7179), 1, sym_comment, - ACTIONS(11712), 2, - sym__escaped_str_content, - sym_escape_sequence, - [235593] = 4, + [237396] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11364), 1, + anon_sym_RBRACK, + STATE(6558), 1, + aux_sym__multiple_types_repeat1, STATE(7180), 1, sym_comment, - ACTIONS(11714), 2, - sym_filesize_unit, - sym_duration_unit, - [235607] = 5, + [237412] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11716), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11366), 1, anon_sym_RBRACK, + STATE(6571), 1, + aux_sym__multiple_types_repeat1, STATE(7181), 1, sym_comment, - STATE(7186), 1, - aux_sym_val_binary_repeat1, - [235623] = 3, - ACTIONS(3), 1, + [237428] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7182), 1, sym_comment, - ACTIONS(11718), 3, + ACTIONS(10443), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [235635] = 5, + [237440] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11310), 1, - anon_sym_COLON, - ACTIONS(11720), 1, - anon_sym_EQ, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11368), 1, + anon_sym_RBRACK, + STATE(6559), 1, + aux_sym__multiple_types_repeat1, STATE(7183), 1, sym_comment, - STATE(8003), 1, - sym_param_type, - [235651] = 4, + [237456] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11724), 1, - anon_sym_COMMA, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11370), 1, + anon_sym_RBRACK, + STATE(6560), 1, + aux_sym__multiple_types_repeat1, STATE(7184), 1, sym_comment, - ACTIONS(11722), 2, - sym__newline, - anon_sym_RBRACE, - [235665] = 5, - ACTIONS(121), 1, + [237472] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(7207), 1, - aux_sym_unquoted_token7, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11372), 1, + anon_sym_RBRACK, + STATE(6561), 1, + aux_sym__multiple_types_repeat1, STATE(7185), 1, sym_comment, - STATE(7489), 1, - sym__expr_parenthesized_immediate, - [235681] = 5, + [237488] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11726), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11374), 1, anon_sym_RBRACK, + STATE(6562), 1, + aux_sym__multiple_types_repeat1, STATE(7186), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [235697] = 5, - ACTIONS(121), 1, + [237504] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11728), 1, - anon_sym_RBRACK, - STATE(6471), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5005), 1, + sym__space, + ACTIONS(5007), 1, + sym__newline, + ACTIONS(11376), 1, + anon_sym_EQ2, STATE(7187), 1, sym_comment, - [235713] = 4, + [237520] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11732), 1, - anon_sym_COMMA, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11378), 1, + anon_sym_RBRACK, + STATE(6563), 1, + aux_sym__multiple_types_repeat1, STATE(7188), 1, sym_comment, - ACTIONS(11730), 2, - sym__newline, - anon_sym_RBRACE, - [235727] = 3, + [237536] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11380), 1, + anon_sym_RBRACK, + STATE(6564), 1, + aux_sym__multiple_types_repeat1, STATE(7189), 1, sym_comment, - ACTIONS(10433), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235739] = 5, - ACTIONS(121), 1, + [237552] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2077), 1, - sym__newline, - ACTIONS(2081), 1, - sym__space, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, STATE(7190), 1, sym_comment, - [235755] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7191), 1, - sym_comment, - ACTIONS(11166), 3, + ACTIONS(10713), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235767] = 5, - ACTIONS(121), 1, + [237564] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11734), 1, + ACTIONS(11382), 1, anon_sym_RBRACK, - STATE(6472), 1, + STATE(6565), 1, aux_sym__multiple_types_repeat1, + STATE(7191), 1, + sym_comment, + [237580] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7192), 1, sym_comment, - [235783] = 5, - ACTIONS(121), 1, + ACTIONS(10715), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237592] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11736), 1, - anon_sym_RBRACK, - STATE(6473), 1, - aux_sym__multiple_types_repeat1, STATE(7193), 1, sym_comment, - [235799] = 5, - ACTIONS(121), 1, + ACTIONS(10443), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237604] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11738), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11384), 1, anon_sym_RBRACK, - STATE(6474), 1, - aux_sym__multiple_types_repeat1, STATE(7194), 1, sym_comment, - [235815] = 5, - ACTIONS(121), 1, + STATE(7336), 1, + aux_sym_val_binary_repeat1, + [237620] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11740), 1, - anon_sym_RBRACK, - STATE(6544), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11388), 1, + anon_sym_COMMA, STATE(7195), 1, sym_comment, - [235831] = 3, - ACTIONS(3), 1, + ACTIONS(11386), 2, + sym__newline, + anon_sym_RBRACE, + [237634] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11392), 1, + anon_sym_COMMA, STATE(7196), 1, sym_comment, - ACTIONS(11742), 3, + ACTIONS(11390), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [235843] = 5, - ACTIONS(121), 1, + anon_sym_RBRACE, + [237648] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11744), 1, + ACTIONS(11394), 1, anon_sym_RBRACK, - STATE(6475), 1, + STATE(6573), 1, aux_sym__multiple_types_repeat1, STATE(7197), 1, sym_comment, - [235859] = 5, - ACTIONS(121), 1, + [237664] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2196), 1, - sym__entry_separator, - ACTIONS(11746), 1, - anon_sym_RBRACE, - STATE(490), 1, - aux_sym__multiple_types_repeat1, STATE(7198), 1, sym_comment, - [235875] = 3, - ACTIONS(3), 1, + ACTIONS(10715), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237676] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6337), 1, + anon_sym_AT, + ACTIONS(11396), 1, + anon_sym_GT, STATE(7199), 1, sym_comment, - ACTIONS(11748), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [235887] = 5, - ACTIONS(121), 1, + STATE(7922), 1, + sym_param_cmd, + [237692] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11750), 1, + ACTIONS(11398), 1, anon_sym_RBRACK, - STATE(6476), 1, + STATE(6574), 1, aux_sym__multiple_types_repeat1, STATE(7200), 1, sym_comment, - [235903] = 5, - ACTIONS(121), 1, + [237708] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11752), 1, + ACTIONS(11400), 1, anon_sym_RBRACK, - STATE(6477), 1, + STATE(6575), 1, aux_sym__multiple_types_repeat1, STATE(7201), 1, sym_comment, - [235919] = 3, + [237724] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11402), 1, + anon_sym_RBRACK, + STATE(6576), 1, + aux_sym__multiple_types_repeat1, STATE(7202), 1, sym_comment, - ACTIONS(11226), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235931] = 3, + [237740] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7203), 1, - sym_comment, - ACTIONS(11754), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [235943] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11756), 1, + ACTIONS(11404), 1, anon_sym_RBRACK, - STATE(6478), 1, + STATE(6577), 1, aux_sym__multiple_types_repeat1, + STATE(7203), 1, + sym_comment, + [237756] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11408), 1, + anon_sym_COMMA, STATE(7204), 1, sym_comment, - [235959] = 3, - ACTIONS(3), 1, + ACTIONS(11406), 2, + sym__newline, + anon_sym_RBRACE, + [237770] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7205), 1, sym_comment, - ACTIONS(10494), 3, + ACTIONS(10717), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235971] = 3, + [237782] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11410), 1, + anon_sym_RBRACK, + STATE(6578), 1, + aux_sym__multiple_types_repeat1, STATE(7206), 1, sym_comment, - ACTIONS(6358), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [235983] = 5, + [237798] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4890), 1, - aux_sym_ctrl_match_token1, - ACTIONS(11758), 1, - anon_sym_EQ2, - ACTIONS(11760), 1, - sym_short_flag_identifier, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11412), 1, + anon_sym_RBRACK, + STATE(6579), 1, + aux_sym__multiple_types_repeat1, STATE(7207), 1, sym_comment, - [235999] = 5, - ACTIONS(121), 1, + [237814] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2194), 1, - anon_sym_RBRACE, - ACTIONS(2196), 1, + ACTIONS(5770), 1, sym__entry_separator, - STATE(515), 1, + ACTIONS(10104), 1, + anon_sym_LBRACK, + STATE(2820), 1, aux_sym__multiple_types_repeat1, STATE(7208), 1, sym_comment, - [236015] = 5, - ACTIONS(3), 1, + [237830] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7195), 1, - sym_val_list, STATE(7209), 1, sym_comment, - [236031] = 5, + ACTIONS(10717), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237842] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(1927), 1, - aux_sym_ctrl_match_token1, - ACTIONS(7502), 1, - anon_sym_DOT, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11414), 1, + anon_sym_RBRACK, + STATE(6580), 1, + aux_sym__multiple_types_repeat1, STATE(7210), 1, sym_comment, - [236047] = 3, - ACTIONS(3), 1, + [237858] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7211), 1, sym_comment, - ACTIONS(11218), 3, + ACTIONS(10703), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [236059] = 4, - ACTIONS(3), 1, + [237870] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11762), 1, - aux_sym_cmd_identifier_token41, STATE(7212), 1, sym_comment, - ACTIONS(11764), 2, - sym_filesize_unit, - sym_duration_unit, - [236073] = 3, - ACTIONS(3), 1, + ACTIONS(10783), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237882] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11418), 1, + anon_sym_COMMA, STATE(7213), 1, sym_comment, - ACTIONS(11766), 3, + ACTIONS(11416), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [236085] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [237896] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token41, STATE(7214), 1, sym_comment, - ACTIONS(11768), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [236097] = 3, + ACTIONS(11420), 2, + sym_filesize_unit, + sym_duration_unit, + [237910] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11422), 1, + anon_sym_RBRACK, + STATE(6587), 1, + aux_sym__multiple_types_repeat1, STATE(7215), 1, sym_comment, - ACTIONS(5982), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [236109] = 5, + [237926] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11770), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11424), 1, anon_sym_RBRACK, + STATE(6588), 1, + aux_sym__multiple_types_repeat1, STATE(7216), 1, sym_comment, - STATE(7222), 1, - aux_sym_val_binary_repeat1, - [236125] = 5, + [237942] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, - ACTIONS(10584), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11426), 1, + anon_sym_RBRACK, + STATE(6589), 1, + aux_sym__multiple_types_repeat1, STATE(7217), 1, sym_comment, - [236141] = 3, + [237958] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11428), 1, + anon_sym_RBRACK, + STATE(6590), 1, + aux_sym__multiple_types_repeat1, STATE(7218), 1, sym_comment, - ACTIONS(10445), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236153] = 3, + [237974] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1525), 1, + anon_sym_RBRACE, + ACTIONS(1537), 1, + sym__entry_separator, + ACTIONS(1539), 1, + aux_sym__unquoted_in_record_token2, STATE(7219), 1, sym_comment, - ACTIONS(11222), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236165] = 5, + [237990] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6454), 1, - anon_sym_AT, - ACTIONS(11772), 1, - anon_sym_GT, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11430), 1, + anon_sym_RBRACK, + STATE(6591), 1, + aux_sym__multiple_types_repeat1, STATE(7220), 1, sym_comment, - STATE(7727), 1, - sym_param_cmd, - [236181] = 5, - ACTIONS(121), 1, + [238006] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(4746), 1, - aux_sym_unquoted_token7, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11432), 1, + anon_sym_RBRACK, + STATE(6592), 1, + aux_sym__multiple_types_repeat1, STATE(7221), 1, sym_comment, - STATE(7514), 1, - sym__expr_parenthesized_immediate, - [236197] = 5, + [238022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11774), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11434), 1, anon_sym_RBRACK, + STATE(6593), 1, + aux_sym__multiple_types_repeat1, STATE(7222), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [236213] = 3, - ACTIONS(3), 1, + [238038] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7223), 1, sym_comment, - ACTIONS(6162), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [236225] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7224), 1, - sym_comment, - ACTIONS(10445), 3, - ts_builtin_sym_end, + ACTIONS(11436), 3, sym__newline, anon_sym_SEMI, - [236237] = 5, - ACTIONS(121), 1, + anon_sym_RPAREN, + [238050] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11776), 1, + ACTIONS(11438), 1, anon_sym_RBRACK, - STATE(6489), 1, + STATE(6594), 1, aux_sym__multiple_types_repeat1, + STATE(7224), 1, + sym_comment, + [238066] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11440), 1, + anon_sym_RBRACK, STATE(7225), 1, sym_comment, - [236253] = 3, + STATE(7232), 1, + aux_sym_val_binary_repeat1, + [238082] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11442), 1, + anon_sym_LPAREN, STATE(7226), 1, sym_comment, - ACTIONS(11778), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [236265] = 4, - ACTIONS(121), 1, + ACTIONS(11444), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [238096] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7826), 1, - aux_sym_unquoted_token3, - STATE(7227), 1, - sym_comment, - ACTIONS(3239), 2, + ACTIONS(3893), 1, sym__newline, + ACTIONS(3895), 1, sym__space, - [236279] = 5, - ACTIONS(121), 1, + STATE(1227), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7227), 1, + sym_comment, + [238112] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11780), 1, - anon_sym_RBRACK, - STATE(6490), 1, - aux_sym__multiple_types_repeat1, STATE(7228), 1, sym_comment, - [236295] = 5, - ACTIONS(121), 1, + ACTIONS(11446), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [238124] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11782), 1, - anon_sym_RBRACK, - STATE(6491), 1, - aux_sym__multiple_types_repeat1, STATE(7229), 1, sym_comment, - [236311] = 5, - ACTIONS(121), 1, + ACTIONS(10721), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [238136] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11784), 1, - anon_sym_RBRACK, - STATE(6492), 1, - aux_sym__multiple_types_repeat1, STATE(7230), 1, sym_comment, - [236327] = 5, - ACTIONS(121), 1, + ACTIONS(10387), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [238148] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(2947), 1, anon_sym_LPAREN2, - ACTIONS(7254), 1, - aux_sym_unquoted_token7, + ACTIONS(7127), 1, + aux_sym_unquoted_token4, STATE(7231), 1, sym_comment, - STATE(7576), 1, + STATE(7699), 1, sym__expr_parenthesized_immediate, - [236343] = 5, - ACTIONS(121), 1, + [238164] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11786), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11448), 1, anon_sym_RBRACK, - STATE(6493), 1, - aux_sym__multiple_types_repeat1, + STATE(7162), 1, + aux_sym_val_binary_repeat1, STATE(7232), 1, sym_comment, - [236359] = 5, - ACTIONS(121), 1, + [238180] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11788), 1, - anon_sym_RBRACK, - STATE(6381), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + ACTIONS(5635), 1, + aux_sym__unquoted_in_list_token4, STATE(7233), 1, sym_comment, - [236375] = 4, - ACTIONS(121), 1, + STATE(7640), 1, + sym__expr_parenthesized_immediate, + [238196] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11790), 1, - sym__table_head_separator, + ACTIONS(6585), 1, + sym__entry_separator, + ACTIONS(11450), 1, + anon_sym_RBRACK, + STATE(3633), 1, + aux_sym__multiple_types_repeat1, STATE(7234), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236389] = 5, - ACTIONS(121), 1, + [238212] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11792), 1, + ACTIONS(11452), 1, anon_sym_RBRACK, - STATE(6494), 1, + STATE(6809), 1, aux_sym__multiple_types_repeat1, STATE(7235), 1, sym_comment, - [236405] = 5, - ACTIONS(121), 1, + [238228] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(6585), 1, sym__entry_separator, - ACTIONS(11794), 1, + ACTIONS(11454), 1, anon_sym_RBRACK, - STATE(6495), 1, + STATE(3634), 1, aux_sym__multiple_types_repeat1, STATE(7236), 1, sym_comment, - [236421] = 3, - ACTIONS(3), 1, + [238244] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7237), 1, sym_comment, - ACTIONS(10447), 3, + ACTIONS(11024), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [236433] = 3, + [238256] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11456), 1, + anon_sym_RBRACK, + STATE(6815), 1, + aux_sym__multiple_types_repeat1, STATE(7238), 1, sym_comment, - ACTIONS(10492), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236445] = 3, + [238272] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11458), 1, + anon_sym_RBRACK, + STATE(6816), 1, + aux_sym__multiple_types_repeat1, STATE(7239), 1, sym_comment, - ACTIONS(10638), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236457] = 5, + [238288] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6878), 1, - sym_block, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11460), 1, + anon_sym_RBRACK, + STATE(6839), 1, + aux_sym__multiple_types_repeat1, STATE(7240), 1, sym_comment, - [236473] = 3, + [238304] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1525), 1, + sym__newline, + ACTIONS(1537), 1, + sym__space, + ACTIONS(7127), 1, + aux_sym_unquoted_token2, STATE(7241), 1, sym_comment, - ACTIONS(10512), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236485] = 5, - ACTIONS(121), 1, + [238320] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11796), 1, + ACTIONS(11462), 1, anon_sym_RBRACK, - STATE(6496), 1, + STATE(6840), 1, aux_sym__multiple_types_repeat1, STATE(7242), 1, sym_comment, - [236501] = 4, + [238336] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5002), 1, - aux_sym_unquoted_token6, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11464), 1, + anon_sym_RBRACK, + STATE(6845), 1, + aux_sym__multiple_types_repeat1, STATE(7243), 1, sym_comment, - ACTIONS(1441), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [236515] = 5, + [238352] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6894), 1, - sym_block, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11466), 1, + anon_sym_RBRACK, + STATE(6846), 1, + aux_sym__multiple_types_repeat1, STATE(7244), 1, sym_comment, - [236531] = 5, + [238368] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11798), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11468), 1, anon_sym_RBRACK, + STATE(6847), 1, + aux_sym__multiple_types_repeat1, STATE(7245), 1, sym_comment, - STATE(7279), 1, - aux_sym_val_binary_repeat1, - [236547] = 3, + [238384] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11470), 1, + anon_sym_LPAREN, STATE(7246), 1, sym_comment, - ACTIONS(10514), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236559] = 5, - ACTIONS(3), 1, + ACTIONS(11472), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [238398] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(4824), 1, - sym_block, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, STATE(7247), 1, sym_comment, - [236575] = 4, - ACTIONS(121), 1, + ACTIONS(1698), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [238412] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1858), 1, - anon_sym_POUND_BANG, - ACTIONS(11800), 1, - sym__newline, - STATE(7248), 2, + STATE(7248), 1, sym_comment, - aux_sym_shebang_repeat1, - [236589] = 5, - ACTIONS(3), 1, + ACTIONS(10986), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [238424] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(3899), 1, + ACTIONS(11474), 1, anon_sym_RBRACE, - STATE(2706), 1, + STATE(2777), 1, aux_sym_shebang_repeat1, STATE(7249), 1, sym_comment, - [236605] = 4, - ACTIONS(121), 1, + [238440] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2075), 1, - sym__space, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(11476), 1, + anon_sym_RBRACE, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(7250), 1, sym_comment, - ACTIONS(2073), 2, - sym__newline, - aux_sym_unquoted_token7, - [236619] = 3, + [238456] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6585), 1, + sym__entry_separator, + ACTIONS(11478), 1, + anon_sym_RBRACK, + STATE(3640), 1, + aux_sym__multiple_types_repeat1, STATE(7251), 1, sym_comment, - ACTIONS(10417), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236631] = 3, - ACTIONS(3), 1, + [238472] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7252), 1, sym_comment, - ACTIONS(11274), 3, + ACTIONS(10739), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [236643] = 5, - ACTIONS(3), 1, + [238484] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(3899), 1, - anon_sym_RBRACE, - STATE(7023), 1, - aux_sym_shebang_repeat1, STATE(7253), 1, sym_comment, - [236659] = 5, - ACTIONS(121), 1, + ACTIONS(10739), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [238496] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2196), 1, - sym__entry_separator, - ACTIONS(11803), 1, - anon_sym_RBRACE, - STATE(491), 1, - aux_sym__multiple_types_repeat1, STATE(7254), 1, sym_comment, - [236675] = 4, - ACTIONS(121), 1, + ACTIONS(10715), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [238508] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9687), 1, - aux_sym_unquoted_token3, + ACTIONS(2133), 1, + sym__space, STATE(7255), 1, sym_comment, - ACTIONS(3239), 2, - sym_identifier, - anon_sym_DOLLAR, - [236689] = 4, - ACTIONS(121), 1, + ACTIONS(2131), 2, + sym__newline, + aux_sym_unquoted_token4, + [238522] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11805), 1, - sym__table_head_separator, STATE(7256), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236703] = 3, + ACTIONS(10715), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [238534] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11480), 1, + anon_sym_RBRACK, + STATE(6700), 1, + aux_sym__multiple_types_repeat1, STATE(7257), 1, sym_comment, - ACTIONS(10516), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236715] = 5, - ACTIONS(121), 1, + [238550] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, - ACTIONS(11807), 1, - sym__space, STATE(7258), 1, sym_comment, - [236731] = 3, - ACTIONS(3), 1, + ACTIONS(10281), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [238562] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7259), 1, sym_comment, - ACTIONS(11034), 3, + ACTIONS(10743), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [236743] = 5, - ACTIONS(121), 1, + [238574] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2155), 1, - sym__newline, - ACTIONS(2159), 1, - sym__space, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, STATE(7260), 1, sym_comment, - [236759] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - ACTIONS(2163), 1, + ACTIONS(10831), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(2165), 1, - sym__space, + anon_sym_SEMI, + [238586] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7261), 1, sym_comment, - [236775] = 5, - ACTIONS(3), 1, + ACTIONS(10831), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [238598] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, STATE(7262), 1, sym_comment, - STATE(7343), 1, - sym_val_list, - [236791] = 4, - ACTIONS(3), 1, + ACTIONS(11482), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [238610] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11809), 1, + ACTIONS(11484), 1, aux_sym_cmd_identifier_token41, STATE(7263), 1, sym_comment, - ACTIONS(11811), 2, + ACTIONS(11486), 2, sym_filesize_unit, sym_duration_unit, - [236805] = 5, + [238624] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6966), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, STATE(7264), 1, sym_comment, - [236821] = 5, + ACTIONS(2089), 2, + sym_identifier, + anon_sym_DOLLAR, + [238638] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7005), 1, - sym_val_list, + ACTIONS(5745), 1, + sym__entry_separator, + ACTIONS(11488), 1, + anon_sym_RBRACK, + STATE(2798), 1, + aux_sym__multiple_types_repeat1, STATE(7265), 1, sym_comment, - [236837] = 5, - ACTIONS(3), 1, + [238654] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7088), 1, - sym_val_list, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11490), 1, + anon_sym_RBRACK, STATE(7266), 1, sym_comment, - [236853] = 5, - ACTIONS(121), 1, + STATE(7270), 1, + aux_sym_val_binary_repeat1, + [238670] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(11813), 1, - anon_sym_RBRACK, - STATE(2745), 1, - aux_sym__multiple_types_repeat1, STATE(7267), 1, sym_comment, - [236869] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5086), 1, - sym__space, - ACTIONS(5088), 1, + ACTIONS(10211), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(11815), 1, - anon_sym_EQ2, - STATE(7268), 1, - sym_comment, - [236885] = 5, - ACTIONS(121), 1, + anon_sym_SEMI, + [238682] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5745), 1, sym__entry_separator, - ACTIONS(11817), 1, + ACTIONS(11492), 1, anon_sym_RBRACK, - STATE(6870), 1, + STATE(2828), 1, aux_sym__multiple_types_repeat1, + STATE(7268), 1, + sym_comment, + [238698] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(4889), 1, + aux_sym_unquoted_token4, STATE(7269), 1, sym_comment, - [236901] = 5, - ACTIONS(121), 1, + STATE(7561), 1, + sym__expr_parenthesized_immediate, + [238714] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11819), 1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11494), 1, anon_sym_RBRACK, - STATE(6883), 1, - aux_sym__multiple_types_repeat1, + STATE(7162), 1, + aux_sym_val_binary_repeat1, STATE(7270), 1, sym_comment, - [236917] = 3, + [238730] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11496), 1, + anon_sym_RBRACK, + STATE(6701), 1, + aux_sym__multiple_types_repeat1, STATE(7271), 1, sym_comment, - ACTIONS(10459), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236929] = 3, - ACTIONS(3), 1, + [238746] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7272), 1, sym_comment, - ACTIONS(10466), 3, + ACTIONS(10863), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [236941] = 5, + [238758] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(1925), 1, - anon_sym_LPAREN2, - ACTIONS(7502), 1, - anon_sym_DOT, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11498), 1, + anon_sym_RBRACK, + STATE(6521), 1, + aux_sym__multiple_types_repeat1, STATE(7273), 1, sym_comment, - [236957] = 3, + [238774] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11500), 1, + anon_sym_RBRACK, + STATE(6557), 1, + aux_sym__multiple_types_repeat1, STATE(7274), 1, sym_comment, - ACTIONS(10476), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236969] = 3, - ACTIONS(3), 1, + [238790] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7275), 1, sym_comment, - ACTIONS(10476), 3, - ts_builtin_sym_end, + ACTIONS(11502), 3, sym__newline, anon_sym_SEMI, - [236981] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [238802] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11116), 1, + anon_sym_COLON, + ACTIONS(11504), 1, + anon_sym_EQ, STATE(7276), 1, sym_comment, - ACTIONS(10474), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236993] = 3, - ACTIONS(3), 1, + STATE(7861), 1, + sym_param_type, + [238818] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7277), 1, + ACTIONS(11506), 1, + anon_sym_PIPE, + ACTIONS(11509), 1, + anon_sym_EQ_GT, + STATE(7277), 2, sym_comment, - ACTIONS(10960), 3, - ts_builtin_sym_end, + aux_sym_match_pattern_repeat1, + [238832] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7278), 1, + sym_comment, + ACTIONS(11511), 3, sym__newline, anon_sym_SEMI, - [237005] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + [238844] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11821), 1, - anon_sym_RBRACK, - STATE(7278), 1, + STATE(7279), 1, sym_comment, - STATE(7286), 1, - aux_sym_val_binary_repeat1, - [237021] = 4, + ACTIONS(11513), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [238856] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11823), 1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11515), 1, anon_sym_RBRACK, - ACTIONS(11825), 1, - sym_hex_digit, - STATE(7279), 2, - sym_comment, - aux_sym_val_binary_repeat1, - [237035] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - sym__newline, - ACTIONS(1441), 1, - sym__space, - ACTIONS(7205), 1, - aux_sym_unquoted_token6, + STATE(6628), 1, + aux_sym__multiple_types_repeat1, STATE(7280), 1, sym_comment, - [237051] = 4, - ACTIONS(121), 1, + [238872] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2075), 1, - anon_sym_PIPE, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(11517), 1, + anon_sym_RBRACE, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(7281), 1, sym_comment, - ACTIONS(2073), 2, - anon_sym_EQ_GT, - aux_sym_unquoted_token7, - [237065] = 5, + [238888] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(1580), 1, - aux_sym_ctrl_match_token1, - ACTIONS(7472), 1, - anon_sym_DOT, + ACTIONS(11519), 1, + sym__table_head_separator, STATE(7282), 1, sym_comment, - [237081] = 5, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [238902] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3919), 1, - aux_sym_unquoted_token7, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(4027), 1, + anon_sym_RBRACE, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(7283), 1, sym_comment, - STATE(7585), 1, - sym__expr_parenthesized_immediate, - [237097] = 5, + [238918] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_DOLLAR, - ACTIONS(8907), 1, - aux_sym_unquoted_token6, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11521), 1, + anon_sym_RBRACK, + STATE(6851), 1, + aux_sym__multiple_types_repeat1, STATE(7284), 1, sym_comment, - [237113] = 4, - ACTIONS(121), 1, + [238934] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11828), 1, - sym__table_head_separator, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, STATE(7285), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237127] = 5, - ACTIONS(3), 1, + ACTIONS(1006), 2, + sym_identifier, + anon_sym_DOLLAR, + [238948] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11282), 1, - sym_hex_digit, - ACTIONS(11830), 1, - anon_sym_RBRACK, - STATE(7279), 1, - aux_sym_val_binary_repeat1, + ACTIONS(11523), 1, + anon_sym_QMARK2, STATE(7286), 1, sym_comment, - [237143] = 5, - ACTIONS(121), 1, + ACTIONS(972), 2, + anon_sym_DOT, + aux_sym_record_entry_token1, + [238962] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(948), 1, - sym__newline, - ACTIONS(950), 1, - sym__space, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6401), 1, + sym_block, STATE(7287), 1, sym_comment, - [237159] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(11832), 1, - sym__table_head_separator, - STATE(7288), 1, - sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237173] = 5, - ACTIONS(121), 1, + [238978] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6693), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11834), 1, + ACTIONS(11525), 1, anon_sym_RBRACK, - STATE(3552), 1, + STATE(6880), 1, aux_sym__multiple_types_repeat1, + STATE(7288), 1, + sym_comment, + [238994] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(11527), 1, + anon_sym_RBRACE, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(7289), 1, sym_comment, - [237189] = 5, + [239010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7104), 1, - sym_val_list, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11529), 1, + anon_sym_RBRACK, + STATE(6923), 1, + aux_sym__multiple_types_repeat1, STATE(7290), 1, sym_comment, - [237205] = 5, - ACTIONS(3), 1, + [239026] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7122), 1, - sym_val_list, + ACTIONS(11531), 1, + anon_sym_QMARK2, STATE(7291), 1, sym_comment, - [237221] = 5, + ACTIONS(982), 2, + anon_sym_DOT, + aux_sym_record_entry_token1, + [239040] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7124), 1, - sym_val_list, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11533), 1, + anon_sym_RBRACK, + STATE(6503), 1, + aux_sym__multiple_types_repeat1, STATE(7292), 1, sym_comment, - [237237] = 5, + [239056] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7132), 1, - sym_val_list, - STATE(7293), 1, - sym_comment, - [237253] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11836), 1, + ACTIONS(11535), 1, anon_sym_RBRACK, - STATE(6504), 1, + STATE(6407), 1, aux_sym__multiple_types_repeat1, + STATE(7293), 1, + sym_comment, + [239072] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6515), 1, + sym_block, STATE(7294), 1, sym_comment, - [237269] = 4, - ACTIONS(121), 1, + [239088] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11254), 1, - anon_sym_LPAREN, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(4872), 1, + sym_block, STATE(7295), 1, sym_comment, - ACTIONS(11256), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [237283] = 3, - ACTIONS(3), 1, + [239104] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1721), 1, + aux_sym_unquoted_token2, STATE(7296), 1, sym_comment, - ACTIONS(11252), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237295] = 5, - ACTIONS(3), 1, + ACTIONS(1723), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [239118] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(3627), 1, - anon_sym_RBRACE, + ACTIONS(11537), 1, + anon_sym_SEMI, + STATE(2777), 1, + aux_sym_shebang_repeat1, STATE(7297), 1, sym_comment, - STATE(7455), 1, - aux_sym_shebang_repeat1, - [237311] = 5, - ACTIONS(121), 1, + [239134] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2196), 1, - sym__entry_separator, - ACTIONS(11838), 1, - anon_sym_RBRACE, - STATE(506), 1, - aux_sym__multiple_types_repeat1, STATE(7298), 1, sym_comment, - [237327] = 5, + ACTIONS(10865), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(3653), 1, - anon_sym_RBRACE, - STATE(7249), 1, - aux_sym_shebang_repeat1, + ACTIONS(5745), 1, + sym__entry_separator, + ACTIONS(11539), 1, + anon_sym_RBRACK, + STATE(2796), 1, + aux_sym__multiple_types_repeat1, STATE(7299), 1, sym_comment, - [237343] = 5, - ACTIONS(3), 1, + [239162] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, + ACTIONS(2738), 1, sym__newline, - ACTIONS(3607), 1, + ACTIONS(4027), 1, anon_sym_RBRACE, + STATE(7289), 1, + aux_sym_shebang_repeat1, STATE(7300), 1, sym_comment, - STATE(7460), 1, - aux_sym_shebang_repeat1, - [237359] = 4, - ACTIONS(121), 1, + [239178] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11840), 1, + ACTIONS(11541), 1, sym__table_head_separator, STATE(7301), 1, sym_comment, - ACTIONS(948), 2, + ACTIONS(1006), 2, anon_sym_RBRACK, sym__entry_separator, - [237373] = 5, - ACTIONS(121), 1, + [239192] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6693), 1, - sym__entry_separator, - ACTIONS(11842), 1, - anon_sym_RBRACK, - STATE(3534), 1, - aux_sym__multiple_types_repeat1, STATE(7302), 1, sym_comment, - [237389] = 4, - ACTIONS(121), 1, + ACTIONS(10867), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239204] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11844), 1, - sym__table_head_separator, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11543), 1, + anon_sym_RBRACK, + STATE(2795), 1, + aux_sym__multiple_types_repeat1, STATE(7303), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237403] = 5, - ACTIONS(121), 1, + [239220] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1396), 1, - aux_sym__unquoted_in_record_token7, - ACTIONS(1431), 1, + ACTIONS(2091), 1, anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, + ACTIONS(11545), 1, + sym__space, STATE(7304), 1, sym_comment, - STATE(7491), 1, - sym__expr_parenthesized_immediate, - [237419] = 5, + [239236] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7193), 1, - sym_val_list, + ACTIONS(8166), 1, + sym__entry_separator, + ACTIONS(8170), 1, + anon_sym_RBRACK, + ACTIONS(11547), 1, + anon_sym_LT, STATE(7305), 1, sym_comment, - [237435] = 5, + [239252] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7197), 1, - sym_val_list, + ACTIONS(8166), 1, + sym__entry_separator, + ACTIONS(8170), 1, + anon_sym_RBRACK, + ACTIONS(11549), 1, + anon_sym_LT, STATE(7306), 1, sym_comment, - [237451] = 5, - ACTIONS(3), 1, + [239268] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7201), 1, + STATE(7040), 1, sym_val_list, STATE(7307), 1, sym_comment, - [237467] = 5, + STATE(7367), 1, + aux_sym_val_table_repeat1, + [239284] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7204), 1, - sym_val_list, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(7183), 1, + aux_sym_unquoted_token4, STATE(7308), 1, sym_comment, - [237483] = 5, - ACTIONS(121), 1, + STATE(7619), 1, + sym__expr_parenthesized_immediate, + [239300] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(2279), 1, sym__entry_separator, - ACTIONS(11846), 1, - anon_sym_RBRACK, - STATE(6505), 1, + ACTIONS(2301), 1, + anon_sym_RBRACE, + STATE(516), 1, aux_sym__multiple_types_repeat1, STATE(7309), 1, sym_comment, - [237499] = 4, - ACTIONS(121), 1, + [239316] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11848), 1, - sym__table_head_separator, STATE(7310), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237513] = 5, - ACTIONS(121), 1, + ACTIONS(10950), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239328] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11850), 1, - anon_sym_RBRACK, - STATE(6506), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7176), 1, + sym_val_list, STATE(7311), 1, sym_comment, - [237529] = 4, - ACTIONS(121), 1, + STATE(7367), 1, + aux_sym_val_table_repeat1, + [239344] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11852), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7181), 1, + sym_val_list, STATE(7312), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237543] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, + STATE(7367), 1, aux_sym_val_table_repeat1, - STATE(7229), 1, - sym_val_list, + [239360] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7313), 1, sym_comment, - [237559] = 5, - ACTIONS(3), 1, + ACTIONS(10291), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239372] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7232), 1, + STATE(7257), 1, sym_val_list, STATE(7314), 1, sym_comment, - [237575] = 5, + STATE(7367), 1, + aux_sym_val_table_repeat1, + [239388] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7236), 1, - sym_val_list, + ACTIONS(1527), 1, + anon_sym_LPAREN2, + ACTIONS(1539), 1, + aux_sym__unquoted_in_record_token4, STATE(7315), 1, sym_comment, - [237591] = 5, + STATE(7599), 1, + sym__expr_parenthesized_immediate, + [239404] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7242), 1, - sym_val_list, - STATE(7316), 1, - sym_comment, - [237607] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11854), 1, + ACTIONS(11551), 1, anon_sym_RBRACK, - STATE(6507), 1, + STATE(6890), 1, aux_sym__multiple_types_repeat1, + STATE(7316), 1, + sym_comment, + [239420] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7317), 1, sym_comment, - [237623] = 4, - ACTIONS(121), 1, + ACTIONS(10950), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239432] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11856), 1, - sym__table_head_separator, + ACTIONS(11553), 1, + aux_sym_cmd_identifier_token41, STATE(7318), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237637] = 4, - ACTIONS(3), 1, + ACTIONS(11555), 2, + sym_filesize_unit, + sym_duration_unit, + [239446] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(317), 1, - aux_sym__block_body_repeat1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11557), 1, + anon_sym_RBRACK, STATE(7319), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [237651] = 4, - ACTIONS(121), 1, + STATE(7333), 1, + aux_sym_val_binary_repeat1, + [239462] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11858), 1, - sym__table_head_separator, STATE(7320), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237665] = 5, - ACTIONS(3), 1, + ACTIONS(11559), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [239474] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7311), 1, - sym_val_list, STATE(7321), 1, sym_comment, - [237681] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, + STATE(7364), 1, + sym_val_list, + STATE(7367), 1, aux_sym_val_table_repeat1, + [239490] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7322), 1, sym_comment, - STATE(7352), 1, - sym_val_list, - [237697] = 5, - ACTIONS(3), 1, + ACTIONS(10126), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239502] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, STATE(7323), 1, sym_comment, - STATE(7396), 1, - sym_val_list, - [237713] = 5, - ACTIONS(3), 1, + ACTIONS(10785), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239514] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, STATE(7324), 1, sym_comment, - STATE(7412), 1, - sym_val_list, - [237729] = 4, - ACTIONS(121), 1, + ACTIONS(10461), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239526] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11860), 1, - sym__table_head_separator, STATE(7325), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237743] = 3, - ACTIONS(3), 1, + ACTIONS(10126), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239538] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7326), 1, sym_comment, - ACTIONS(10482), 3, + ACTIONS(10469), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [237755] = 4, - ACTIONS(121), 1, + [239550] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11862), 1, - sym__table_head_separator, STATE(7327), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237769] = 5, + ACTIONS(10150), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6910), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(5745), 1, + sym__entry_separator, + ACTIONS(11561), 1, + anon_sym_RBRACK, + STATE(2793), 1, + aux_sym__multiple_types_repeat1, STATE(7328), 1, sym_comment, - [237785] = 5, - ACTIONS(3), 1, + [239578] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6912), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(4872), 1, + sym_block, STATE(7329), 1, sym_comment, - [237801] = 5, - ACTIONS(3), 1, + [239594] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6916), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, STATE(7330), 1, sym_comment, - [237817] = 5, - ACTIONS(3), 1, + ACTIONS(10475), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239606] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6917), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, STATE(7331), 1, sym_comment, - [237833] = 4, - ACTIONS(121), 1, + ACTIONS(10182), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239618] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11864), 1, - sym__table_head_separator, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(4817), 1, + aux_sym_unquoted_token4, STATE(7332), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237847] = 4, - ACTIONS(121), 1, + STATE(7615), 1, + sym__expr_parenthesized_immediate, + [239634] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11866), 1, - sym__table_head_separator, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11563), 1, + anon_sym_RBRACK, + STATE(7162), 1, + aux_sym_val_binary_repeat1, STATE(7333), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237861] = 5, - ACTIONS(121), 1, + [239650] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11868), 1, + ACTIONS(11565), 1, anon_sym_RBRACK, - STATE(2746), 1, + STATE(6457), 1, aux_sym__multiple_types_repeat1, STATE(7334), 1, sym_comment, - [237877] = 5, - ACTIONS(3), 1, + [239666] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6934), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, STATE(7335), 1, sym_comment, - [237893] = 5, - ACTIONS(3), 1, + ACTIONS(10479), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239678] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6936), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11567), 1, + anon_sym_RBRACK, + STATE(7162), 1, + aux_sym_val_binary_repeat1, STATE(7336), 1, sym_comment, - [237909] = 5, - ACTIONS(121), 1, + [239694] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - ACTIONS(11870), 1, + ACTIONS(1525), 1, anon_sym_RBRACK, - STATE(2771), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1537), 1, + sym__entry_separator, + ACTIONS(5635), 1, + aux_sym__unquoted_in_list_token2, STATE(7337), 1, sym_comment, - [237925] = 5, - ACTIONS(3), 1, + [239710] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6939), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, STATE(7338), 1, sym_comment, - [237941] = 5, + ACTIONS(10966), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6941), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11569), 1, + anon_sym_RBRACK, + STATE(6458), 1, + aux_sym__multiple_types_repeat1, STATE(7339), 1, sym_comment, - [237957] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(11872), 1, - sym__table_head_separator, - STATE(7340), 1, - sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [237971] = 5, - ACTIONS(121), 1, + [239738] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11874), 1, + ACTIONS(11571), 1, anon_sym_RBRACK, - STATE(6374), 1, + STATE(6460), 1, aux_sym__multiple_types_repeat1, + STATE(7340), 1, + sym_comment, + [239754] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(7341), 1, sym_comment, - [237987] = 4, - ACTIONS(121), 1, + ACTIONS(10968), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [239766] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11876), 1, - sym__table_head_separator, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11573), 1, + anon_sym_RBRACK, + STATE(6473), 1, + aux_sym__multiple_types_repeat1, STATE(7342), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238001] = 5, - ACTIONS(121), 1, + [239782] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11878), 1, + ACTIONS(11575), 1, anon_sym_RBRACK, - STATE(6375), 1, + STATE(6475), 1, aux_sym__multiple_types_repeat1, STATE(7343), 1, sym_comment, - [238017] = 5, + [239798] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6958), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11577), 1, + anon_sym_RBRACK, + STATE(6817), 1, + aux_sym__multiple_types_repeat1, STATE(7344), 1, sym_comment, - [238033] = 5, + [239814] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6961), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11579), 1, + anon_sym_RBRACK, + STATE(6478), 1, + aux_sym__multiple_types_repeat1, STATE(7345), 1, sym_comment, - [238049] = 5, - ACTIONS(121), 1, + [239830] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11880), 1, + ACTIONS(11581), 1, anon_sym_RBRACK, - STATE(6376), 1, + STATE(6818), 1, aux_sym__multiple_types_repeat1, STATE(7346), 1, sym_comment, - [238065] = 5, + [239846] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6964), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11583), 1, + anon_sym_RBRACK, + STATE(6819), 1, + aux_sym__multiple_types_repeat1, STATE(7347), 1, sym_comment, - [238081] = 5, + [239862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6965), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11585), 1, + anon_sym_RBRACK, + STATE(6820), 1, + aux_sym__multiple_types_repeat1, STATE(7348), 1, sym_comment, - [238097] = 5, - ACTIONS(121), 1, + [239878] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6693), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11882), 1, + ACTIONS(11587), 1, anon_sym_RBRACK, - STATE(3554), 1, + STATE(6479), 1, aux_sym__multiple_types_repeat1, STATE(7349), 1, sym_comment, - [238113] = 4, - ACTIONS(121), 1, + [239894] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11884), 1, - sym__table_head_separator, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11589), 1, + anon_sym_RBRACK, + STATE(6821), 1, + aux_sym__multiple_types_repeat1, STATE(7350), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238127] = 4, - ACTIONS(121), 1, + [239910] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11886), 1, - sym__table_head_separator, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11591), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym__multiple_types_repeat1, STATE(7351), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238141] = 5, - ACTIONS(121), 1, + [239926] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(11888), 1, + ACTIONS(11593), 1, anon_sym_RBRACK, - STATE(6508), 1, + STATE(6823), 1, aux_sym__multiple_types_repeat1, STATE(7352), 1, sym_comment, - [238157] = 5, + [239942] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6984), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11595), 1, + anon_sym_RBRACK, + STATE(6482), 1, + aux_sym__multiple_types_repeat1, STATE(7353), 1, sym_comment, - [238173] = 5, + [239958] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6986), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11597), 1, + anon_sym_RBRACK, + STATE(6824), 1, + aux_sym__multiple_types_repeat1, STATE(7354), 1, sym_comment, - [238189] = 3, + [239974] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, STATE(7355), 1, sym_comment, - ACTIONS(11260), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238201] = 5, - ACTIONS(3), 1, + ACTIONS(2097), 2, + sym_identifier, + anon_sym_DOLLAR, + [239988] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6990), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + STATE(270), 1, + aux_sym__block_body_repeat1, STATE(7356), 1, sym_comment, - [238217] = 5, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [240002] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6992), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, STATE(7357), 1, sym_comment, - [238233] = 4, - ACTIONS(121), 1, + ACTIONS(2105), 2, + sym_identifier, + anon_sym_DOLLAR, + [240016] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11890), 1, + ACTIONS(11599), 1, sym__table_head_separator, STATE(7358), 1, sym_comment, - ACTIONS(948), 2, + ACTIONS(1006), 2, anon_sym_RBRACK, sym__entry_separator, - [238247] = 3, - ACTIONS(3), 1, + [240030] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7359), 1, sym_comment, - ACTIONS(10552), 3, + ACTIONS(10984), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [238259] = 4, - ACTIONS(121), 1, + [240042] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11892), 1, - sym__table_head_separator, STATE(7360), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238273] = 3, + ACTIONS(10996), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [240054] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11601), 1, + sym__table_head_separator, STATE(7361), 1, sym_comment, - ACTIONS(10562), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238285] = 5, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7013), 1, - sym_val_list, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11603), 1, + anon_sym_RBRACK, + STATE(6799), 1, + aux_sym__multiple_types_repeat1, STATE(7362), 1, sym_comment, - [238301] = 5, - ACTIONS(3), 1, + [240084] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7016), 1, + STATE(7316), 1, sym_val_list, STATE(7363), 1, sym_comment, - [238317] = 3, + STATE(7367), 1, + aux_sym_val_table_repeat1, + [240100] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11605), 1, + anon_sym_RBRACK, + STATE(6680), 1, + aux_sym__multiple_types_repeat1, STATE(7364), 1, sym_comment, - ACTIONS(10604), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238329] = 5, - ACTIONS(3), 1, + [240116] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7019), 1, + STATE(7050), 1, sym_val_list, STATE(7365), 1, sym_comment, - [238345] = 5, - ACTIONS(3), 1, + STATE(7367), 1, + aux_sym_val_table_repeat1, + [240132] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7021), 1, + STATE(7102), 1, sym_val_list, STATE(7366), 1, sym_comment, - [238361] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(11894), 1, - sym__table_head_separator, STATE(7367), 1, + aux_sym_val_table_repeat1, + [240148] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11607), 1, + anon_sym_LBRACK, + STATE(7698), 1, + sym_val_list, + STATE(7367), 2, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238375] = 3, - ACTIONS(3), 1, + aux_sym_val_table_repeat1, + [240162] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7110), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7368), 1, sym_comment, - ACTIONS(10484), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238387] = 4, - ACTIONS(121), 1, + [240178] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11896), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7154), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7369), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238401] = 5, - ACTIONS(121), 1, + [240194] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_EQ_GT, - ACTIONS(2081), 1, - anon_sym_PIPE, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6515), 1, + sym_block, STATE(7370), 1, sym_comment, - [238417] = 5, + [240210] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7036), 1, - sym_val_list, STATE(7371), 1, sym_comment, - [238433] = 5, + ACTIONS(2255), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [240222] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7039), 1, - sym_val_list, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11610), 1, + anon_sym_RBRACK, + STATE(6759), 1, + aux_sym__multiple_types_repeat1, STATE(7372), 1, sym_comment, - [238449] = 3, + [240238] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11612), 1, + sym__table_head_separator, STATE(7373), 1, sym_comment, - ACTIONS(10486), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238461] = 5, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240252] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, + STATE(7367), 1, aux_sym_val_table_repeat1, - STATE(7042), 1, - sym_val_list, STATE(7374), 1, sym_comment, - [238477] = 5, + STATE(7529), 1, + sym_val_list, + [240268] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7043), 1, - sym_val_list, + ACTIONS(11614), 1, + sym__table_head_separator, STATE(7375), 1, sym_comment, - [238493] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240282] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11898), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7239), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7376), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238507] = 5, - ACTIONS(3), 1, + [240298] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6454), 1, - anon_sym_AT, - ACTIONS(8558), 1, - anon_sym_EQ, - STATE(5405), 1, - sym_param_cmd, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7242), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7377), 1, sym_comment, - [238523] = 4, - ACTIONS(121), 1, + [240314] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11900), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7244), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7378), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238537] = 3, - ACTIONS(3), 1, + [240330] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7245), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7379), 1, sym_comment, - ACTIONS(9232), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238549] = 5, + [240346] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7058), 1, - sym_val_list, + ACTIONS(11616), 1, + sym__table_head_separator, STATE(7380), 1, sym_comment, - [238565] = 5, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240360] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7060), 1, - sym_val_list, + ACTIONS(10693), 1, + aux_sym_cmd_identifier_token41, STATE(7381), 1, sym_comment, - [238581] = 3, + ACTIONS(10695), 2, + sym_filesize_unit, + sym_duration_unit, + [240374] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11618), 1, + sym__table_head_separator, STATE(7382), 1, sym_comment, - ACTIONS(10413), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238593] = 5, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240388] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7062), 1, + STATE(7347), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7383), 1, sym_comment, - [238609] = 5, - ACTIONS(3), 1, + [240404] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7063), 1, + STATE(7350), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7384), 1, sym_comment, - [238625] = 4, - ACTIONS(121), 1, + [240420] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11902), 1, - sym__table_head_separator, STATE(7385), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238639] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7386), 1, - sym_comment, - ACTIONS(9247), 3, + ACTIONS(10493), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [238651] = 4, - ACTIONS(121), 1, + [240432] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11904), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7352), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, + STATE(7386), 1, + sym_comment, + [240448] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7354), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7387), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238665] = 3, + [240464] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11620), 1, + sym__table_head_separator, STATE(7388), 1, sym_comment, - ACTIONS(10518), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238677] = 5, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240478] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7074), 1, - sym_val_list, + ACTIONS(11622), 1, + sym__table_head_separator, STATE(7389), 1, sym_comment, - [238693] = 5, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240492] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7076), 1, + STATE(7274), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7390), 1, sym_comment, - [238709] = 5, - ACTIONS(121), 1, + [240508] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11906), 1, - anon_sym_RBRACK, - STATE(6509), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7284), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7391), 1, sym_comment, - [238725] = 5, - ACTIONS(3), 1, + [240524] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7078), 1, - sym_val_list, STATE(7392), 1, sym_comment, - [238741] = 5, - ACTIONS(3), 1, + ACTIONS(10697), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [240536] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7080), 1, + STATE(7290), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7393), 1, sym_comment, - [238757] = 4, - ACTIONS(121), 1, + [240552] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11908), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7293), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7394), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238771] = 4, - ACTIONS(121), 1, + [240568] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11910), 1, - sym__table_head_separator, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11624), 1, + anon_sym_RBRACK, STATE(7395), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238785] = 5, - ACTIONS(121), 1, + STATE(7420), 1, + aux_sym_val_binary_repeat1, + [240584] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11912), 1, - anon_sym_RBRACK, - STATE(6510), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11626), 1, + sym__table_head_separator, STATE(7396), 1, sym_comment, - [238801] = 5, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240598] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6896), 1, - sym_val_list, - STATE(6997), 1, - aux_sym_val_table_repeat1, STATE(7397), 1, sym_comment, - [238817] = 5, + ACTIONS(10972), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [240610] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7095), 1, - sym_val_list, + ACTIONS(11628), 1, + sym__table_head_separator, STATE(7398), 1, sym_comment, - [238833] = 3, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240624] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7340), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7399), 1, sym_comment, - ACTIONS(10520), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238845] = 5, - ACTIONS(3), 1, + [240640] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7098), 1, + STATE(7343), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7400), 1, sym_comment, - [238861] = 5, - ACTIONS(3), 1, + [240656] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7099), 1, + STATE(7349), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7401), 1, sym_comment, - [238877] = 4, - ACTIONS(121), 1, + [240672] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11914), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7353), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7402), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238891] = 4, - ACTIONS(121), 1, + [240688] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11916), 1, - sym__table_head_separator, STATE(7403), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238905] = 5, - ACTIONS(121), 1, + ACTIONS(10972), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [240700] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11918), 1, - anon_sym_RBRACK, - STATE(6431), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11630), 1, + sym__table_head_separator, STATE(7404), 1, sym_comment, - [238921] = 5, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240714] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7113), 1, - sym_val_list, + ACTIONS(11632), 1, + sym__table_head_separator, STATE(7405), 1, sym_comment, - [238937] = 5, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240728] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, + STATE(7367), 1, aux_sym_val_table_repeat1, - STATE(7115), 1, - sym_val_list, STATE(7406), 1, sym_comment, - [238953] = 5, - ACTIONS(3), 1, + STATE(7442), 1, + sym_val_list, + [240744] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(1589), 1, - anon_sym_LPAREN2, - ACTIONS(7564), 1, - anon_sym_DOT, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7407), 1, sym_comment, - [238969] = 5, - ACTIONS(3), 1, + STATE(7452), 1, + sym_val_list, + [240760] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, + STATE(7367), 1, aux_sym_val_table_repeat1, - STATE(7119), 1, - sym_val_list, STATE(7408), 1, sym_comment, - [238985] = 5, - ACTIONS(3), 1, + STATE(7460), 1, + sym_val_list, + [240776] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, + STATE(7367), 1, aux_sym_val_table_repeat1, - STATE(7121), 1, - sym_val_list, STATE(7409), 1, sym_comment, - [239001] = 4, - ACTIONS(121), 1, + STATE(7469), 1, + sym_val_list, + [240792] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11920), 1, - sym__table_head_separator, STATE(7410), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [239015] = 4, - ACTIONS(121), 1, + ACTIONS(10501), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [240804] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11922), 1, + ACTIONS(11634), 1, sym__table_head_separator, STATE(7411), 1, sym_comment, - ACTIONS(948), 2, + ACTIONS(1006), 2, anon_sym_RBRACK, sym__entry_separator, - [239029] = 5, - ACTIONS(121), 1, + [240818] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5745), 1, sym__entry_separator, - ACTIONS(11924), 1, + ACTIONS(11636), 1, anon_sym_RBRACK, - STATE(6511), 1, + STATE(2827), 1, aux_sym__multiple_types_repeat1, STATE(7412), 1, sym_comment, - [239045] = 5, + [240834] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7129), 1, - sym_val_list, + ACTIONS(11638), 1, + sym__table_head_separator, STATE(7413), 1, sym_comment, - [239061] = 5, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240848] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7131), 1, - sym_val_list, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(4122), 1, + aux_sym_unquoted_token4, STATE(7414), 1, sym_comment, - [239077] = 5, - ACTIONS(3), 1, + STATE(7677), 1, + sym__expr_parenthesized_immediate, + [240864] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, + STATE(7367), 1, aux_sym_val_table_repeat1, - STATE(7135), 1, - sym_val_list, STATE(7415), 1, sym_comment, - [239093] = 5, - ACTIONS(3), 1, + STATE(7531), 1, + sym_val_list, + [240880] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, + STATE(7367), 1, aux_sym_val_table_repeat1, - STATE(7136), 1, - sym_val_list, STATE(7416), 1, sym_comment, - [239109] = 4, - ACTIONS(121), 1, + STATE(7536), 1, + sym_val_list, + [240896] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11926), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7417), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [239123] = 4, - ACTIONS(121), 1, + STATE(7539), 1, + sym_val_list, + [240912] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11928), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6948), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7418), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [239137] = 5, + [240928] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6454), 1, - anon_sym_AT, - ACTIONS(11930), 1, - anon_sym_GT, + ACTIONS(11640), 1, + sym__table_head_separator, STATE(7419), 1, sym_comment, - STATE(7784), 1, - sym_param_cmd, - [239153] = 5, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240942] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7144), 1, - sym_val_list, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11642), 1, + anon_sym_RBRACK, + STATE(7162), 1, + aux_sym_val_binary_repeat1, STATE(7420), 1, sym_comment, - [239169] = 5, + [240958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7146), 1, - sym_val_list, + ACTIONS(11644), 1, + sym__table_head_separator, STATE(7421), 1, sym_comment, - [239185] = 5, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [240972] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7148), 1, + STATE(6965), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7422), 1, sym_comment, - [239201] = 5, - ACTIONS(3), 1, + [240988] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7149), 1, + STATE(6967), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7423), 1, sym_comment, - [239217] = 4, - ACTIONS(121), 1, + [241004] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11932), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6969), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7424), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [239231] = 4, - ACTIONS(121), 1, + [241020] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11934), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6972), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7425), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [239245] = 5, + [241036] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2925), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6815), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9582), 1, - aux_sym_unquoted_token2, + ACTIONS(11646), 1, + sym__table_head_separator, STATE(7426), 1, sym_comment, - [239261] = 5, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241050] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7156), 1, - sym_val_list, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11648), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym__multiple_types_repeat1, STATE(7427), 1, sym_comment, - [239277] = 5, + [241066] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7159), 1, - sym_val_list, + ACTIONS(11650), 1, + sym__table_head_separator, STATE(7428), 1, sym_comment, - [239293] = 5, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241080] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7162), 1, + STATE(6990), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7429), 1, sym_comment, - [239309] = 5, - ACTIONS(3), 1, + [241096] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7164), 1, + STATE(6993), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7430), 1, sym_comment, - [239325] = 4, - ACTIONS(121), 1, + [241112] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11936), 1, - sym__table_head_separator, STATE(7431), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [239339] = 4, - ACTIONS(121), 1, + ACTIONS(11652), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [241124] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11938), 1, - sym__table_head_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6997), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7432), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [239353] = 5, - ACTIONS(121), 1, + [241140] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11940), 1, - anon_sym_POUND_BANG, - ACTIONS(11942), 1, - sym__newline, - STATE(7248), 1, - aux_sym_shebang_repeat1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6998), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7433), 1, sym_comment, - [239369] = 5, + [241156] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7172), 1, - sym_val_list, + ACTIONS(11654), 1, + sym__table_head_separator, STATE(7434), 1, sym_comment, - [239385] = 5, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241170] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, + ACTIONS(11656), 1, + sym__table_head_separator, STATE(7435), 1, sym_comment, - STATE(7462), 1, - sym_val_list, - [239401] = 5, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7175), 1, - sym_val_list, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11658), 1, + anon_sym_RBRACK, + STATE(6498), 1, + aux_sym__multiple_types_repeat1, STATE(7436), 1, sym_comment, - [239417] = 5, - ACTIONS(3), 1, + [241200] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6997), 1, - aux_sym_val_table_repeat1, - STATE(7177), 1, + STATE(7021), 1, sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7437), 1, sym_comment, - [239433] = 5, - ACTIONS(3), 1, + [241216] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9589), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6994), 1, + STATE(7023), 1, sym_val_list, - STATE(6997), 1, + STATE(7367), 1, aux_sym_val_table_repeat1, STATE(7438), 1, sym_comment, - [239449] = 3, + [241232] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11660), 1, + anon_sym_RBRACK, + STATE(6738), 1, + aux_sym__multiple_types_repeat1, STATE(7439), 1, sym_comment, - ACTIONS(11174), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239461] = 3, - ACTIONS(3), 1, + [241248] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7026), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7440), 1, sym_comment, - ACTIONS(11178), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239473] = 3, - ACTIONS(121), 1, + [241264] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7027), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7441), 1, sym_comment, - ACTIONS(2226), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [239485] = 4, + [241280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10584), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11662), 1, + anon_sym_RBRACK, + STATE(6741), 1, + aux_sym__multiple_types_repeat1, STATE(7442), 1, sym_comment, - ACTIONS(2267), 2, - sym__newline, - aux_sym_ctrl_match_token1, - [239499] = 3, + [241296] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11664), 1, + sym__table_head_separator, STATE(7443), 1, sym_comment, - ACTIONS(6332), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [239511] = 3, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241310] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11666), 1, + anon_sym_RBRACK, + STATE(6743), 1, + aux_sym__multiple_types_repeat1, STATE(7444), 1, sym_comment, - ACTIONS(11224), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239523] = 3, + [241326] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11668), 1, + sym__table_head_separator, STATE(7445), 1, sym_comment, - ACTIONS(10441), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239535] = 5, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(10399), 1, + [241340] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(2758), 1, - aux_sym__multiple_types_repeat1, + STATE(7043), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7446), 1, sym_comment, - [239551] = 4, - ACTIONS(121), 1, + [241356] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5662), 1, - aux_sym_unquoted_token3, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7045), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7447), 1, sym_comment, - ACTIONS(3239), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [239565] = 5, - ACTIONS(121), 1, + [241372] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2155), 1, - anon_sym_EQ_GT, - ACTIONS(2159), 1, - anon_sym_PIPE, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7048), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7448), 1, sym_comment, - [239581] = 5, - ACTIONS(121), 1, + [241388] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - ACTIONS(2163), 1, - anon_sym_EQ_GT, - ACTIONS(2165), 1, - anon_sym_PIPE, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7051), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7449), 1, sym_comment, - [239597] = 5, + [241404] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LPAREN2, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, + ACTIONS(11670), 1, + sym__table_head_separator, STATE(7450), 1, sym_comment, - [239613] = 3, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241418] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11672), 1, + sym__table_head_separator, STATE(7451), 1, sym_comment, - ACTIONS(10425), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239625] = 3, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241432] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11674), 1, + anon_sym_RBRACK, + STATE(6744), 1, + aux_sym__multiple_types_repeat1, STATE(7452), 1, sym_comment, - ACTIONS(10409), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239637] = 5, - ACTIONS(121), 1, + [241448] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1364), 1, - aux_sym__unquoted_in_record_token6, - ACTIONS(1429), 1, - anon_sym_RBRACE, - ACTIONS(1441), 1, - sym__entry_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7069), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7453), 1, sym_comment, - [239653] = 5, - ACTIONS(121), 1, + [241464] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11944), 1, - anon_sym_RBRACK, - STATE(6373), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7071), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7454), 1, sym_comment, - [239669] = 5, - ACTIONS(3), 1, + [241480] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(3893), 1, - anon_sym_RBRACE, - STATE(2706), 1, - aux_sym_shebang_repeat1, STATE(7455), 1, sym_comment, - [239685] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7456), 1, - sym_comment, - ACTIONS(11072), 3, + ACTIONS(11010), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [239697] = 5, - ACTIONS(3), 1, + [241492] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(3893), 1, - anon_sym_RBRACE, - STATE(7017), 1, - aux_sym_shebang_repeat1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7075), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, + STATE(7456), 1, + sym_comment, + [241508] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7078), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7457), 1, sym_comment, - [239713] = 4, - ACTIONS(121), 1, + [241524] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11946), 1, - sym__table_head_separator, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11676), 1, + anon_sym_RBRACK, + STATE(6747), 1, + aux_sym__multiple_types_repeat1, STATE(7458), 1, sym_comment, - ACTIONS(948), 2, - anon_sym_RBRACK, - sym__entry_separator, - [239727] = 4, + [241540] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10435), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11678), 1, + sym__table_head_separator, STATE(7459), 1, sym_comment, - ACTIONS(10437), 2, - sym_filesize_unit, - sym_duration_unit, - [239741] = 5, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241554] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(3901), 1, - anon_sym_RBRACE, - STATE(2706), 1, - aux_sym_shebang_repeat1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11680), 1, + anon_sym_RBRACK, + STATE(6748), 1, + aux_sym__multiple_types_repeat1, STATE(7460), 1, sym_comment, - [239757] = 5, - ACTIONS(3), 1, + [241570] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2759), 1, - sym__newline, - ACTIONS(3901), 1, - anon_sym_RBRACE, - STATE(7020), 1, - aux_sym_shebang_repeat1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7090), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7461), 1, sym_comment, - [239773] = 5, - ACTIONS(121), 1, + [241586] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - ACTIONS(11948), 1, - anon_sym_RBRACK, - STATE(6699), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7093), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7462), 1, sym_comment, - [239789] = 4, - ACTIONS(3), 1, + [241602] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7096), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7463), 1, sym_comment, - STATE(7489), 1, - sym__expr_parenthesized_immediate, - [239802] = 3, - ACTIONS(3), 1, + [241618] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7098), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7464), 1, sym_comment, - ACTIONS(11950), 2, - sym__newline, - anon_sym_RBRACE, - [239813] = 3, + [241634] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11682), 1, + sym__table_head_separator, STATE(7465), 1, sym_comment, - ACTIONS(11952), 2, - sym__newline, - anon_sym_RBRACE, - [239824] = 4, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241648] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11954), 1, - anon_sym_DASH, + ACTIONS(11684), 1, + sym__table_head_separator, STATE(7466), 1, sym_comment, - STATE(7753), 1, - sym_param_short_flag, - [239837] = 4, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241662] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6741), 1, - sym_block, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7108), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7467), 1, sym_comment, - [239850] = 4, - ACTIONS(121), 1, + [241678] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11956), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7111), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7468), 1, sym_comment, - STATE(7502), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [239863] = 4, + [241694] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11686), 1, + anon_sym_RBRACK, + STATE(6749), 1, + aux_sym__multiple_types_repeat1, STATE(7469), 1, sym_comment, - STATE(7534), 1, - sym__expr_parenthesized_immediate, - [239876] = 4, - ACTIONS(3), 1, + [241710] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5189), 1, - aux_sym_unquoted_token2, - ACTIONS(11958), 1, - anon_sym_DOT, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7115), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7470), 1, sym_comment, - [239889] = 4, - ACTIONS(121), 1, + [241726] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9568), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7116), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7471), 1, sym_comment, - [239902] = 4, - ACTIONS(121), 1, + [241742] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__entry_separator, - STATE(2819), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11688), 1, + sym__table_head_separator, STATE(7472), 1, sym_comment, - [239915] = 4, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, - aux_sym_unquoted_token2, - ACTIONS(7525), 1, - anon_sym_DOT, + ACTIONS(11690), 1, + sym__table_head_separator, STATE(7473), 1, sym_comment, - [239928] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241770] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3243), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(4302), 1, + aux_sym_unquoted_token4, STATE(7474), 1, sym_comment, - [239941] = 4, - ACTIONS(121), 1, + STATE(7630), 1, + sym__expr_parenthesized_immediate, + [241786] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11962), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7131), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7475), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [239954] = 4, - ACTIONS(121), 1, + [241802] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5662), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7134), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7476), 1, sym_comment, - [239967] = 4, - ACTIONS(121), 1, + [241818] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11964), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1589), 1, + aux_sym_unquoted_token2, STATE(7477), 1, sym_comment, - STATE(7537), 1, - aux_sym__unquoted_with_expr_repeat1, - [239980] = 4, - ACTIONS(121), 1, + ACTIONS(1591), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [241832] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11966), 1, - sym__newline, - ACTIONS(11968), 1, - sym__space, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7137), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7478), 1, sym_comment, - [239993] = 4, - ACTIONS(121), 1, + [241848] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8025), 1, - aux_sym_unquoted_token3, - ACTIONS(11970), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7138), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7479), 1, sym_comment, - [240006] = 4, - ACTIONS(121), 1, + [241864] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5976), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(11692), 1, + sym__table_head_separator, STATE(7480), 1, sym_comment, - [240019] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241878] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6215), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6291), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(11694), 1, + sym__table_head_separator, STATE(7481), 1, sym_comment, - [240032] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [241892] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11972), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11696), 1, + aux_sym_cmd_identifier_token41, STATE(7482), 1, sym_comment, - STATE(7541), 1, - aux_sym__unquoted_with_expr_repeat1, - [240045] = 4, - ACTIONS(121), 1, + ACTIONS(11698), 2, + sym_filesize_unit, + sym_duration_unit, + [241906] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - STATE(2814), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7150), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7483), 1, sym_comment, - [240058] = 4, - ACTIONS(121), 1, + [241922] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11974), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7153), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7484), 1, sym_comment, - STATE(7553), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [240071] = 4, - ACTIONS(121), 1, + [241938] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11976), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(10050), 1, + anon_sym_if, + ACTIONS(11700), 1, + anon_sym_EQ_GT, STATE(7485), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [240084] = 4, - ACTIONS(3), 1, + STATE(7849), 1, + sym_match_guard, + [241954] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1431), 1, - anon_sym_LPAREN2, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7156), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7486), 1, sym_comment, - STATE(7542), 1, - sym__expr_parenthesized_immediate, - [240097] = 4, - ACTIONS(3), 1, + [241970] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5014), 1, - anon_sym_in, - ACTIONS(11978), 1, - anon_sym_EQ2, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7158), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7487), 1, sym_comment, - [240110] = 4, - ACTIONS(121), 1, + [241986] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11980), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(11702), 1, + sym__table_head_separator, STATE(7488), 1, sym_comment, - STATE(7555), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [240123] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [242000] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11982), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11704), 1, + sym__table_head_separator, STATE(7489), 1, sym_comment, - STATE(7492), 1, - aux_sym__unquoted_with_expr_repeat1, - [240136] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [242014] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11984), 1, - aux_sym__unquoted_with_expr_token1, STATE(7490), 1, sym_comment, - STATE(7493), 1, - aux_sym__unquoted_with_expr_repeat1, - [240149] = 4, - ACTIONS(121), 1, + ACTIONS(11706), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [242026] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11986), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7166), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7491), 1, sym_comment, - STATE(7660), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [240162] = 4, - ACTIONS(121), 1, + [242042] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11988), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7169), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7492), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [240175] = 4, - ACTIONS(121), 1, + [242058] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11990), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7172), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7493), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [240188] = 4, - ACTIONS(121), 1, + [242074] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11992), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7173), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7494), 1, sym_comment, - STATE(7502), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [240201] = 4, + [242090] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(6937), 1, - sym_block, + ACTIONS(11708), 1, + sym__table_head_separator, STATE(7495), 1, sym_comment, - [240214] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [242104] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11710), 1, + sym__table_head_separator, STATE(7496), 1, sym_comment, - [240227] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [242118] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11994), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7475), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7184), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7497), 1, sym_comment, - [240240] = 4, - ACTIONS(3), 1, + [242134] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6435), 1, - sym_block, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7186), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7498), 1, sym_comment, - [240253] = 4, - ACTIONS(3), 1, + [242150] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, - aux_sym_ctrl_match_token1, - ACTIONS(5002), 1, - aux_sym_unquoted_token6, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7189), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7499), 1, sym_comment, - [240266] = 4, - ACTIONS(3), 1, + [242166] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7274), 1, - sym_block, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7191), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7500), 1, sym_comment, - [240279] = 4, + [242182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6437), 1, - sym_block, + ACTIONS(11712), 1, + sym__table_head_separator, STATE(7501), 1, sym_comment, - [240292] = 3, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [242196] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11996), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7502), 2, + ACTIONS(11714), 1, + sym__table_head_separator, + STATE(7502), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [240303] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [242210] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7826), 1, - aux_sym_unquoted_token3, - ACTIONS(11999), 1, - aux_sym__immediate_decimal_token1, STATE(7503), 1, sym_comment, - [240316] = 4, - ACTIONS(121), 1, + ACTIONS(11026), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [242222] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, - aux_sym_record_entry_token1, - ACTIONS(10435), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7201), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7504), 1, sym_comment, - [240329] = 4, - ACTIONS(121), 1, + [242238] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6171), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(12001), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7203), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7505), 1, sym_comment, - [240342] = 4, - ACTIONS(121), 1, + [242254] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8732), 1, - sym__entry_separator, - ACTIONS(8734), 1, - anon_sym_RBRACK, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7207), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7506), 1, sym_comment, - [240355] = 4, - ACTIONS(121), 1, + [242270] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, - ACTIONS(12003), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7210), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7507), 1, sym_comment, - [240368] = 3, + [242286] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11716), 1, + sym__table_head_separator, STATE(7508), 1, sym_comment, - ACTIONS(11395), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [240379] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [242300] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5302), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11718), 1, + sym__table_head_separator, STATE(7509), 1, sym_comment, - [240392] = 4, - ACTIONS(121), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [242314] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8359), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8510), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7217), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7510), 1, sym_comment, - [240405] = 4, - ACTIONS(3), 1, + [242330] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1576), 1, - aux_sym_unquoted_token2, - ACTIONS(7472), 1, - anon_sym_DOT, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7220), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7511), 1, sym_comment, - [240418] = 4, - ACTIONS(121), 1, + [242346] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12005), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7468), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(2738), 1, + sym__newline, + ACTIONS(3743), 1, + anon_sym_RBRACE, + STATE(7060), 1, + aux_sym_shebang_repeat1, STATE(7512), 1, sym_comment, - [240431] = 4, - ACTIONS(121), 1, + [242362] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8217), 1, - anon_sym_RBRACK, - ACTIONS(8219), 1, - sym__entry_separator, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7222), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7513), 1, sym_comment, - [240444] = 4, - ACTIONS(121), 1, + [242378] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12007), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7224), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, STATE(7514), 1, sym_comment, - STATE(7518), 1, - aux_sym__unquoted_with_expr_repeat1, - [240457] = 4, - ACTIONS(121), 1, + [242394] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12009), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11720), 1, + anon_sym_RBRACK, + STATE(6925), 1, + aux_sym__multiple_types_repeat1, STATE(7515), 1, sym_comment, - STATE(7520), 1, - aux_sym__unquoted_with_expr_repeat1, - [240470] = 4, - ACTIONS(3), 1, + [242410] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7050), 1, - sym_block, STATE(7516), 1, sym_comment, - [240483] = 4, - ACTIONS(121), 1, + ACTIONS(10757), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [242422] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2081), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11722), 1, + anon_sym_RBRACK, STATE(7517), 1, sym_comment, - [240496] = 4, - ACTIONS(121), 1, + STATE(7524), 1, + aux_sym_val_binary_repeat1, + [242438] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12011), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11724), 1, + anon_sym_RBRACK, + STATE(6730), 1, + aux_sym__multiple_types_repeat1, STATE(7518), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [240509] = 4, - ACTIONS(3), 1, + [242454] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5014), 1, - aux_sym_ctrl_match_token1, - ACTIONS(12013), 1, - anon_sym_EQ2, STATE(7519), 1, sym_comment, - [240522] = 4, - ACTIONS(121), 1, + ACTIONS(11726), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [242466] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12015), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11728), 1, + sym__table_head_separator, STATE(7520), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [240535] = 4, - ACTIONS(3), 1, + ACTIONS(1006), 2, + anon_sym_RBRACK, + sym__entry_separator, + [242480] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1418), 1, - aux_sym_unquoted_token2, - ACTIONS(7564), 1, - anon_sym_DOT, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7367), 1, + aux_sym_val_table_repeat1, + STATE(7518), 1, + sym_val_list, STATE(7521), 1, sym_comment, - [240548] = 4, - ACTIONS(121), 1, + [242496] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4867), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5012), 1, - aux_sym_unquoted_token3, STATE(7522), 1, sym_comment, - [240561] = 4, + ACTIONS(10885), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [242508] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5002), 1, - aux_sym_unquoted_token2, - ACTIONS(12017), 1, - anon_sym_DOT, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + ACTIONS(7091), 1, + aux_sym_unquoted_token4, STATE(7523), 1, sym_comment, - [240574] = 4, - ACTIONS(3), 1, + STATE(7719), 1, + sym__expr_parenthesized_immediate, + [242524] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, + ACTIONS(11048), 1, + sym_hex_digit, + ACTIONS(11730), 1, + anon_sym_RBRACK, + STATE(7162), 1, + aux_sym_val_binary_repeat1, STATE(7524), 1, sym_comment, - STATE(8032), 1, - sym__expr_parenthesized_immediate, - [240587] = 4, - ACTIONS(3), 1, + [242540] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5535), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(12019), 1, - anon_sym_DOT, STATE(7525), 1, sym_comment, - [240600] = 4, + ACTIONS(10891), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [242552] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_LPAREN2, - STATE(7484), 1, - sym__expr_parenthesized_immediate, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11732), 1, + anon_sym_RBRACK, + STATE(6793), 1, + aux_sym__multiple_types_repeat1, STATE(7526), 1, sym_comment, - [240613] = 4, - ACTIONS(3), 1, + [242568] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12021), 1, - sym_identifier, - ACTIONS(12023), 1, - anon_sym_DOLLAR, + ACTIONS(5071), 1, + aux_sym_cmd_identifier_token41, STATE(7527), 1, sym_comment, - [240626] = 4, - ACTIONS(121), 1, + ACTIONS(11734), 2, + sym_filesize_unit, + sym_duration_unit, + [242582] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7946), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8510), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(1589), 1, + aux_sym_unquoted_token2, STATE(7528), 1, sym_comment, - [240639] = 4, - ACTIONS(121), 1, + ACTIONS(1591), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [242596] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2073), 1, - aux_sym_unquoted_token7, - ACTIONS(2075), 1, - aux_sym_ctrl_match_token1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11736), 1, + anon_sym_RBRACK, + STATE(6434), 1, + aux_sym__multiple_types_repeat1, STATE(7529), 1, sym_comment, - [240652] = 4, + [242612] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12025), 1, - aux_sym_ctrl_match_token1, - STATE(4950), 1, - sym_block, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11738), 1, + anon_sym_RBRACK, + STATE(6795), 1, + aux_sym__multiple_types_repeat1, STATE(7530), 1, sym_comment, - [240665] = 4, + [242628] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, - ACTIONS(12027), 1, - anon_sym_make, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11740), 1, + anon_sym_RBRACK, + STATE(6798), 1, + aux_sym__multiple_types_repeat1, STATE(7531), 1, sym_comment, - [240678] = 4, - ACTIONS(121), 1, + [242644] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, STATE(7532), 1, sym_comment, - [240691] = 4, - ACTIONS(121), 1, + ACTIONS(2131), 3, + sym_identifier, + anon_sym_DOLLAR, + aux_sym_unquoted_token4, + [242656] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12029), 1, - anon_sym_RBRACK, - ACTIONS(12031), 1, + ACTIONS(6585), 1, sym__entry_separator, + ACTIONS(11742), 1, + anon_sym_RBRACK, + STATE(3621), 1, + aux_sym__multiple_types_repeat1, STATE(7533), 1, sym_comment, - [240704] = 4, - ACTIONS(121), 1, + [242672] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12033), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11744), 1, + anon_sym_RBRACK, + STATE(6800), 1, + aux_sym__multiple_types_repeat1, STATE(7534), 1, sym_comment, - STATE(7574), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [240717] = 4, - ACTIONS(121), 1, + [242688] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5259), 1, - sym__entry_separator, - ACTIONS(5261), 1, - anon_sym_RBRACK, + ACTIONS(1569), 1, + aux_sym_unquoted_token2, STATE(7535), 1, sym_comment, - [240730] = 4, - ACTIONS(121), 1, + ACTIONS(1571), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [242702] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5265), 1, + ACTIONS(5770), 1, sym__entry_separator, - ACTIONS(5267), 1, + ACTIONS(11746), 1, anon_sym_RBRACK, + STATE(6801), 1, + aux_sym__multiple_types_repeat1, STATE(7536), 1, sym_comment, - [240743] = 4, - ACTIONS(121), 1, + [242718] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12035), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1648), 1, + aux_sym_unquoted_token2, STATE(7537), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [240756] = 4, - ACTIONS(121), 1, + ACTIONS(1650), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [242732] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2059), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(12037), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11748), 1, + anon_sym_RBRACK, + STATE(6803), 1, + aux_sym__multiple_types_repeat1, STATE(7538), 1, sym_comment, - [240769] = 4, + [242748] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, + ACTIONS(5770), 1, + sym__entry_separator, + ACTIONS(11750), 1, + anon_sym_RBRACK, + STATE(6808), 1, + aux_sym__multiple_types_repeat1, STATE(7539), 1, sym_comment, - STATE(7576), 1, - sym__expr_parenthesized_immediate, - [240782] = 4, - ACTIONS(121), 1, + [242764] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5185), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11752), 1, + anon_sym_EQ2, STATE(7540), 1, sym_comment, - [240795] = 4, - ACTIONS(121), 1, + ACTIONS(5005), 2, + sym_identifier, + anon_sym_DOLLAR, + [242778] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12039), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, STATE(7541), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [240808] = 4, - ACTIONS(121), 1, + STATE(7583), 1, + sym__expr_parenthesized_immediate, + [242791] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12041), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7494), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7261), 1, + sym_block, STATE(7542), 1, sym_comment, - [240821] = 4, - ACTIONS(121), 1, + [242804] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12043), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6812), 1, + sym_block, STATE(7543), 1, sym_comment, - STATE(7565), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [240834] = 4, - ACTIONS(121), 1, + [242817] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym__unquoted_in_record_token7, + ACTIONS(5039), 1, + aux_sym_ctrl_match_token1, + ACTIONS(11754), 1, + anon_sym_EQ2, STATE(7544), 1, sym_comment, - [240847] = 4, + [242830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1394), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(12045), 1, - anon_sym_DOT, STATE(7545), 1, sym_comment, - [240860] = 4, - ACTIONS(3), 1, + ACTIONS(2131), 2, + anon_sym_in, + aux_sym_unquoted_token4, + [242841] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1431), 1, - anon_sym_LPAREN2, - STATE(7491), 1, - sym__expr_parenthesized_immediate, + ACTIONS(9300), 1, + aux_sym_ctrl_match_token1, + STATE(7230), 1, + sym_val_record, STATE(7546), 1, sym_comment, - [240873] = 4, - ACTIONS(121), 1, + [242854] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, - ACTIONS(12047), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(6662), 1, + anon_sym_LPAREN2, + ACTIONS(11756), 1, + aux_sym__record_key_token1, STATE(7547), 1, sym_comment, - [240886] = 4, - ACTIONS(121), 1, + [242867] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8698), 1, + ACTIONS(5233), 1, sym__entry_separator, - ACTIONS(8700), 1, + ACTIONS(5235), 1, anon_sym_RBRACK, STATE(7548), 1, sym_comment, - [240899] = 4, + [242880] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6402), 1, - sym_block, + ACTIONS(11758), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7549), 1, sym_comment, - [240912] = 4, + STATE(7675), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [242893] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6569), 1, - sym_block, + ACTIONS(4037), 1, + sym__space, + STATE(1251), 1, + aux_sym_pipe_element_repeat1, STATE(7550), 1, sym_comment, - [240925] = 4, - ACTIONS(3), 1, + [242906] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(6406), 1, + STATE(6581), 1, sym_block, STATE(7551), 1, sym_comment, - [240938] = 4, - ACTIONS(121), 1, + [242919] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8702), 1, - sym__entry_separator, - ACTIONS(8704), 1, - anon_sym_RBRACK, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7029), 1, + sym_block, STATE(7552), 1, sym_comment, - [240951] = 4, - ACTIONS(121), 1, + [242932] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12049), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6585), 1, + sym_block, STATE(7553), 1, sym_comment, - STATE(7569), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [240964] = 4, - ACTIONS(3), 1, + [242945] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(7049), 1, + STATE(6692), 1, sym_block, STATE(7554), 1, sym_comment, - [240977] = 4, - ACTIONS(121), 1, + [242958] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12051), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7313), 1, + sym_block, STATE(7555), 1, sym_comment, - STATE(7569), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [240990] = 3, - ACTIONS(121), 1, + [242971] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6515), 1, + sym_block, STATE(7556), 1, sym_comment, - ACTIONS(1220), 2, - anon_sym_POUND_BANG, - sym__newline, - [241001] = 3, + [242984] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11760), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7557), 1, sym_comment, - ACTIONS(12053), 2, - anon_sym_RBRACK, - sym_hex_digit, - [241012] = 3, - ACTIONS(121), 1, + STATE(7685), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [242997] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7182), 1, + sym_block, STATE(7558), 1, sym_comment, - ACTIONS(2073), 2, - anon_sym_in, - aux_sym_unquoted_token7, - [241023] = 4, - ACTIONS(121), 1, + [243010] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12055), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6915), 1, + sym_block, STATE(7559), 1, sym_comment, - STATE(7570), 1, - aux_sym__unquoted_with_expr_repeat1, - [241036] = 4, - ACTIONS(121), 1, + [243023] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7637), 1, - anon_sym_RBRACK, - ACTIONS(7639), 1, - sym__entry_separator, + ACTIONS(1006), 1, + anon_sym_in, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, STATE(7560), 1, sym_comment, - [241049] = 4, - ACTIONS(121), 1, + [243036] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12057), 1, - anon_sym_RBRACK, - ACTIONS(12059), 1, - sym__entry_separator, + ACTIONS(11762), 1, + aux_sym__unquoted_with_expr_token1, STATE(7561), 1, sym_comment, - [241062] = 4, + STATE(7564), 1, + aux_sym__unquoted_with_expr_repeat1, + [243049] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10258), 1, - anon_sym_if, + ACTIONS(11764), 1, + aux_sym__unquoted_with_expr_token1, STATE(7562), 1, sym_comment, - STATE(7969), 1, - sym_match_guard, - [241075] = 4, - ACTIONS(121), 1, + STATE(7567), 1, + aux_sym__unquoted_with_expr_repeat1, + [243062] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12061), 1, - aux_sym__unquoted_with_expr_token1, STATE(7563), 1, sym_comment, - STATE(7578), 1, - aux_sym__unquoted_with_expr_repeat1, - [241088] = 4, - ACTIONS(121), 1, + ACTIONS(11509), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [243073] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5974), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11766), 1, + aux_sym__unquoted_with_expr_token1, STATE(7564), 1, sym_comment, - [241101] = 4, - ACTIONS(121), 1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, + [243086] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12063), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7502), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + STATE(7549), 1, + sym__expr_parenthesized_immediate, STATE(7565), 1, sym_comment, - [241114] = 4, - ACTIONS(3), 1, + [243099] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6530), 1, - sym_block, + ACTIONS(10050), 1, + anon_sym_if, STATE(7566), 1, sym_comment, - [241127] = 4, + STATE(7849), 1, + sym_match_guard, + [243112] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3976), 1, - aux_sym_unquoted_token2, - ACTIONS(12065), 1, - anon_sym_DOT, + ACTIONS(11768), 1, + aux_sym__unquoted_with_expr_token1, STATE(7567), 1, sym_comment, - [241140] = 4, - ACTIONS(3), 1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, + [243125] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7397), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(12067), 1, - anon_sym_DOT, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7030), 1, + sym_block, STATE(7568), 1, sym_comment, - [241153] = 3, - ACTIONS(121), 1, + [243138] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12069), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7569), 2, + ACTIONS(2127), 1, + aux_sym_ctrl_match_token1, + ACTIONS(2129), 1, + aux_sym_unquoted_token2, + STATE(7569), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [241164] = 4, - ACTIONS(121), 1, + [243151] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12072), 1, - aux_sym__unquoted_with_expr_token1, STATE(7570), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [241177] = 4, + ACTIONS(1277), 2, + anon_sym_POUND_BANG, + sym__newline, + [243162] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, + ACTIONS(11770), 1, + sym__newline, + ACTIONS(11772), 1, + sym__space, STATE(7571), 1, sym_comment, - STATE(7592), 1, - sym__expr_parenthesized_immediate, - [241190] = 4, - ACTIONS(3), 1, + [243175] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(7111), 1, + STATE(6829), 1, sym_block, STATE(7572), 1, sym_comment, - [241203] = 4, - ACTIONS(3), 1, + [243188] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(4881), 1, - sym_block, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, + ACTIONS(11774), 1, + anon_sym_make, STATE(7573), 1, sym_comment, - [241216] = 4, - ACTIONS(121), 1, + [243201] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12074), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7569), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6830), 1, + sym_block, STATE(7574), 1, sym_comment, - [241229] = 4, - ACTIONS(3), 1, + [243214] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6571), 1, - sym_block, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, STATE(7575), 1, sym_comment, - [241242] = 4, - ACTIONS(121), 1, + [243227] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12076), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11776), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7576), 1, sym_comment, - STATE(7679), 1, - aux_sym__unquoted_with_expr_repeat1, - [241255] = 4, - ACTIONS(121), 1, + STATE(7709), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [243240] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12078), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7252), 1, + sym_block, STATE(7577), 1, sym_comment, - STATE(7680), 1, - aux_sym__unquoted_with_expr_repeat1, - [241268] = 4, - ACTIONS(121), 1, + [243253] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12080), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11778), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7578), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [241281] = 4, + STATE(7709), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [243266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7252), 1, - sym_block, + ACTIONS(11780), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7579), 1, sym_comment, - [241294] = 4, - ACTIONS(121), 1, + STATE(7614), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [243279] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_in, - ACTIONS(2083), 1, - aux_sym_unquoted_token7, STATE(7580), 1, sym_comment, - [241307] = 4, - ACTIONS(3), 1, + ACTIONS(988), 2, + anon_sym_DOT, + aux_sym_record_entry_token1, + [243290] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7259), 1, - sym_block, STATE(7581), 1, sym_comment, - [241320] = 4, - ACTIONS(121), 1, + ACTIONS(992), 2, + anon_sym_DOT, + aux_sym_record_entry_token1, + [243301] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8025), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(5210), 1, + sym__entry_separator, + ACTIONS(5212), 1, + anon_sym_RBRACK, STATE(7582), 1, sym_comment, - [241333] = 4, + [243314] = 4, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7252), 1, - aux_sym_unquoted_token2, - ACTIONS(12082), 1, - anon_sym_DOT, + anon_sym_POUND, + ACTIONS(11782), 1, + aux_sym__unquoted_with_expr_token1, STATE(7583), 1, sym_comment, - [241346] = 4, - ACTIONS(3), 1, + STATE(7708), 1, + aux_sym__unquoted_with_expr_repeat1, + [243327] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(7497), 1, - sym__expr_parenthesized_immediate, + ACTIONS(5005), 1, + aux_sym_ctrl_match_token1, + ACTIONS(11784), 1, + anon_sym_EQ2, STATE(7584), 1, sym_comment, - [241359] = 4, - ACTIONS(121), 1, + [243340] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12084), 1, + ACTIONS(11786), 1, aux_sym__unquoted_with_expr_token1, STATE(7585), 1, sym_comment, - STATE(7605), 1, + STATE(7612), 1, aux_sym__unquoted_with_expr_repeat1, - [241372] = 4, - ACTIONS(121), 1, + [243353] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5302), 1, - aux_sym_unquoted_token3, - ACTIONS(12086), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11788), 1, + aux_sym__unquoted_with_expr_token1, STATE(7586), 1, sym_comment, - [241385] = 4, - ACTIONS(121), 1, + STATE(7711), 1, + aux_sym__unquoted_with_expr_repeat1, + [243366] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8686), 1, - sym__entry_separator, - ACTIONS(8688), 1, - anon_sym_RBRACK, + ACTIONS(2947), 1, + anon_sym_LPAREN2, STATE(7587), 1, sym_comment, - [241398] = 4, - ACTIONS(121), 1, + STATE(7619), 1, + sym__expr_parenthesized_immediate, + [243379] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5224), 1, + ACTIONS(8166), 1, sym__entry_separator, - ACTIONS(5226), 1, + ACTIONS(8170), 1, anon_sym_RBRACK, STATE(7588), 1, sym_comment, - [241411] = 4, - ACTIONS(121), 1, + [243392] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12088), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6849), 1, + sym_block, STATE(7589), 1, sym_comment, - STATE(7622), 1, - aux_sym__unquoted_with_expr_repeat1, - [241424] = 4, - ACTIONS(121), 1, + [243405] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12090), 1, + ACTIONS(11790), 1, aux_sym__unquoted_with_expr_token1, - STATE(7485), 1, - aux_sym__unquoted_with_expr_repeat1, STATE(7590), 1, sym_comment, - [241437] = 4, + STATE(7613), 1, + aux_sym__unquoted_with_expr_repeat1, + [243418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4781), 1, - aux_sym_unquoted_token2, - ACTIONS(12092), 1, - anon_sym_DOT, + ACTIONS(8320), 1, + sym__entry_separator, + ACTIONS(8322), 1, + anon_sym_RBRACK, STATE(7591), 1, sym_comment, - [241450] = 4, - ACTIONS(121), 1, + [243431] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12094), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1527), 1, + anon_sym_LPAREN2, STATE(7592), 1, sym_comment, - STATE(7618), 1, - aux_sym__unquoted_with_expr_repeat1, - [241463] = 4, - ACTIONS(121), 1, + STATE(7599), 1, + sym__expr_parenthesized_immediate, + [243444] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12096), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(7990), 1, + anon_sym_RBRACK, + ACTIONS(7992), 1, + sym__entry_separator, STATE(7593), 1, sym_comment, - STATE(7619), 1, - aux_sym__unquoted_with_expr_repeat1, - [241476] = 4, + [243457] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(7514), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11792), 1, + aux_sym__unquoted_with_expr_token1, STATE(7594), 1, sym_comment, - [241489] = 4, + STATE(7609), 1, + aux_sym__unquoted_with_expr_repeat1, + [243470] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6823), 1, - sym_block, + ACTIONS(5745), 1, + sym__entry_separator, + STATE(2838), 1, + aux_sym__multiple_types_repeat1, STATE(7595), 1, sym_comment, - [241502] = 4, - ACTIONS(3), 1, + [243483] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_unquoted_token2, - ACTIONS(7502), 1, - anon_sym_DOT, + ACTIONS(1527), 1, + anon_sym_LPAREN2, STATE(7596), 1, sym_comment, - [241515] = 4, + STATE(7625), 1, + sym__expr_parenthesized_immediate, + [243496] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6834), 1, - sym_block, + ACTIONS(11794), 1, + aux_sym__unquoted_with_expr_token1, STATE(7597), 1, sym_comment, - [241528] = 4, + STATE(7611), 1, + aux_sym__unquoted_with_expr_repeat1, + [243509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7065), 1, - sym_block, + ACTIONS(11796), 1, + aux_sym__unquoted_with_expr_token1, STATE(7598), 1, sym_comment, - [241541] = 4, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, + [243522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(6914), 1, - sym_block, + ACTIONS(11798), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7576), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7599), 1, sym_comment, - [241554] = 4, + [243535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5492), 1, - aux_sym_unquoted_token2, - ACTIONS(12098), 1, - anon_sym_DOT, + ACTIONS(11800), 1, + aux_sym__unquoted_with_expr_token1, STATE(7600), 1, sym_comment, - [241567] = 4, - ACTIONS(121), 1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, + [243548] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5690), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7253), 1, + sym_block, STATE(7601), 1, sym_comment, - [241580] = 4, - ACTIONS(3), 1, + [243561] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(6975), 1, - sym_block, + ACTIONS(5625), 1, + anon_sym_LPAREN2, STATE(7602), 1, sym_comment, - [241593] = 4, + STATE(7970), 1, + sym__expr_parenthesized_immediate, + [243574] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(7585), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11802), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7578), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7603), 1, sym_comment, - [241606] = 4, - ACTIONS(121), 1, + [243587] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6693), 1, - sym__entry_separator, - STATE(3558), 1, - aux_sym__multiple_types_repeat1, STATE(7604), 1, sym_comment, - [241619] = 4, - ACTIONS(121), 1, + ACTIONS(11804), 2, + sym__newline, + anon_sym_RBRACE, + [243598] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12100), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5770), 1, + sym__entry_separator, + STATE(2860), 1, + aux_sym__multiple_types_repeat1, STATE(7605), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [241632] = 4, - ACTIONS(121), 1, + [243611] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8524), 1, - sym__entry_separator, - ACTIONS(8528), 1, - anon_sym_RBRACK, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6502), 1, + sym_block, STATE(7606), 1, sym_comment, - [241645] = 4, + [243624] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7205), 1, - aux_sym_unquoted_token2, - ACTIONS(12102), 1, - anon_sym_DOT, + ACTIONS(2089), 1, + anon_sym_in, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, STATE(7607), 1, sym_comment, - [241658] = 4, - ACTIONS(3), 1, + [243637] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7445), 1, - sym_block, + ACTIONS(1537), 1, + anon_sym_in, + ACTIONS(7059), 1, + aux_sym_unquoted_token2, STATE(7608), 1, sym_comment, - [241671] = 3, + [243650] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11806), 1, + aux_sym__unquoted_with_expr_token1, STATE(7609), 1, sym_comment, - ACTIONS(12104), 2, - sym__newline, - anon_sym_RBRACE, - [241682] = 4, - ACTIONS(3), 1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, + [243663] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, - ACTIONS(12027), 1, - anon_sym_make, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(4872), 1, + sym_block, STATE(7610), 1, sym_comment, - [241695] = 4, + [243676] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(7477), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11808), 1, + aux_sym__unquoted_with_expr_token1, STATE(7611), 1, sym_comment, - [241708] = 4, - ACTIONS(121), 1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, + [243689] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, - sym__entry_separator, - STATE(7446), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11810), 1, + aux_sym__unquoted_with_expr_token1, STATE(7612), 1, sym_comment, - [241721] = 4, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, + [243702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6844), 1, - sym_block, + ACTIONS(11812), 1, + aux_sym__unquoted_with_expr_token1, STATE(7613), 1, sym_comment, - [241734] = 4, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, + [243715] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7296), 1, - sym_block, - STATE(7614), 1, + ACTIONS(11814), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7614), 2, sym_comment, - [241747] = 4, + aux_sym__unquoted_in_list_with_expr_repeat1, + [243726] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6845), 1, - sym_block, + ACTIONS(11817), 1, + aux_sym__unquoted_with_expr_token1, STATE(7615), 1, sym_comment, - [241760] = 4, + STATE(7620), 1, + aux_sym__unquoted_with_expr_repeat1, + [243739] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_unquoted_token2, - ACTIONS(12106), 1, - anon_sym_DOT, + ACTIONS(11819), 1, + aux_sym__unquoted_with_expr_token1, STATE(7616), 1, sym_comment, - [241773] = 4, - ACTIONS(3), 1, + STATE(7621), 1, + aux_sym__unquoted_with_expr_repeat1, + [243752] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - STATE(7559), 1, - sym__expr_parenthesized_immediate, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(2121), 1, + aux_sym_ctrl_match_token1, STATE(7617), 1, sym_comment, - [241786] = 4, - ACTIONS(121), 1, + [243765] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12108), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7193), 1, + sym_block, STATE(7618), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [241799] = 4, - ACTIONS(121), 1, + [243778] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12110), 1, + ACTIONS(11821), 1, aux_sym__unquoted_with_expr_token1, + STATE(7598), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7619), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [241812] = 4, - ACTIONS(121), 1, + [243791] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7826), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11823), 1, + aux_sym__unquoted_with_expr_token1, STATE(7620), 1, sym_comment, - [241825] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(5245), 1, - sym__entry_separator, - ACTIONS(5247), 1, - anon_sym_RBRACK, - STATE(7621), 1, - sym_comment, - [241838] = 4, - ACTIONS(121), 1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, + [243804] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12112), 1, + ACTIONS(11825), 1, aux_sym__unquoted_with_expr_token1, - STATE(7622), 1, + STATE(7621), 1, sym_comment, STATE(7642), 1, aux_sym__unquoted_with_expr_repeat1, - [241851] = 4, + [243817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8907), 1, - aux_sym_unquoted_token2, - ACTIONS(12114), 1, - anon_sym_DOT, + ACTIONS(8448), 1, + sym__entry_separator, + ACTIONS(8450), 1, + anon_sym_RBRACK, + STATE(7622), 1, + sym_comment, + [243830] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5039), 1, + anon_sym_in, + ACTIONS(11827), 1, + anon_sym_EQ2, STATE(7623), 1, sym_comment, - [241864] = 4, + [243843] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1364), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(12116), 1, - anon_sym_DOT, + ACTIONS(11829), 1, + anon_sym_RBRACK, + ACTIONS(11831), 1, + sym__entry_separator, STATE(7624), 1, sym_comment, - [241877] = 4, - ACTIONS(121), 1, + [243856] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1703), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2059), 1, - aux_sym__unquoted_in_record_token3, + ACTIONS(11833), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7625), 1, sym_comment, - [241890] = 4, + STATE(7725), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [243869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3917), 1, - aux_sym_unquoted_token2, - ACTIONS(12118), 1, - anon_sym_DOT, + ACTIONS(11835), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7600), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7626), 1, sym_comment, - [241903] = 4, - ACTIONS(121), 1, + [243882] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2196), 1, - sym__entry_separator, - STATE(566), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7012), 1, + sym_block, STATE(7627), 1, sym_comment, - [241916] = 4, + [243895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9584), 1, - aux_sym_ctrl_match_token1, - STATE(6444), 1, - sym_val_record, + ACTIONS(11837), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7628), 1, sym_comment, - [241929] = 4, - ACTIONS(121), 1, + STATE(7726), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [243908] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4775), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4950), 1, - aux_sym_unquoted_token3, + ACTIONS(5942), 1, + anon_sym_RBRACK, + ACTIONS(5948), 1, + sym__entry_separator, STATE(7629), 1, sym_comment, - [241942] = 4, + [243921] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4632), 1, - aux_sym_unquoted_token2, - ACTIONS(12120), 1, - anon_sym_DOT, + ACTIONS(11839), 1, + aux_sym__unquoted_with_expr_token1, STATE(7630), 1, sym_comment, - [241955] = 4, + STATE(7703), 1, + aux_sym__unquoted_with_expr_repeat1, + [243934] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5086), 1, - anon_sym_in, - ACTIONS(12122), 1, - anon_sym_EQ2, + ACTIONS(11841), 1, + sym__newline, + ACTIONS(11843), 1, + sym__space, STATE(7631), 1, sym_comment, - [241968] = 3, - ACTIONS(3), 1, + [243947] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(7632), 1, sym_comment, - ACTIONS(12124), 2, - sym__newline, - anon_sym_RBRACE, - [241979] = 4, - ACTIONS(3), 1, + ACTIONS(11845), 2, + anon_sym_RBRACK, + sym_hex_digit, + [243958] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12025), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(4968), 1, + STATE(4904), 1, sym_block, STATE(7633), 1, sym_comment, - [241992] = 4, + [243971] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6642), 1, - aux_sym_unquoted_token2, - ACTIONS(12126), 1, - anon_sym_DOT, + ACTIONS(11847), 1, + aux_sym__unquoted_with_expr_token1, STATE(7634), 1, sym_comment, - [242005] = 4, - ACTIONS(3), 1, + STATE(7656), 1, + aux_sym__unquoted_with_expr_repeat1, + [243984] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1431), 1, - anon_sym_LPAREN2, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6910), 1, + sym_block, STATE(7635), 1, sym_comment, - STATE(7789), 1, - sym__expr_parenthesized_immediate, - [242018] = 4, - ACTIONS(121), 1, + [243997] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6842), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(2125), 1, + anon_sym_LPAREN2, + ACTIONS(2129), 1, + aux_sym_unquoted_token2, STATE(7636), 1, sym_comment, - [242031] = 4, + [244010] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6629), 1, - aux_sym_unquoted_token2, - ACTIONS(12128), 1, - anon_sym_DOT, + ACTIONS(8452), 1, + sym__entry_separator, + ACTIONS(8454), 1, + anon_sym_RBRACK, STATE(7637), 1, sym_comment, - [242044] = 4, + [244023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6878), 1, - sym_block, + ACTIONS(11849), 1, + anon_sym_RBRACK, + ACTIONS(11851), 1, + sym__entry_separator, STATE(7638), 1, sym_comment, - [242057] = 4, - ACTIONS(121), 1, + [244036] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - ACTIONS(2163), 1, - anon_sym_in, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6922), 1, + sym_block, STATE(7639), 1, sym_comment, - [242070] = 4, - ACTIONS(121), 1, + [244049] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12130), 1, - anon_sym_LPAREN2, - ACTIONS(12132), 1, - aux_sym__record_key_token1, + ACTIONS(11853), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7579), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7640), 1, sym_comment, - [242083] = 4, - ACTIONS(3), 1, + [244062] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4077), 1, - aux_sym_unquoted_token2, - ACTIONS(12134), 1, - anon_sym_DOT, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7260), 1, + sym_block, STATE(7641), 1, sym_comment, - [242096] = 3, - ACTIONS(121), 1, + [244075] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12136), 1, + ACTIONS(11855), 1, aux_sym__unquoted_with_expr_token1, STATE(7642), 2, sym_comment, aux_sym__unquoted_with_expr_repeat1, - [242107] = 4, + [244086] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7069), 1, - sym_block, + ACTIONS(2279), 1, + sym__entry_separator, + STATE(570), 1, + aux_sym__multiple_types_repeat1, STATE(7643), 1, sym_comment, - [242120] = 4, - ACTIONS(3), 1, + [244099] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(6996), 1, - sym_block, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(7630), 1, + sym__expr_parenthesized_immediate, STATE(7644), 1, sym_comment, - [242133] = 4, - ACTIONS(3), 1, + [244112] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9554), 1, - aux_sym_ctrl_match_token1, - STATE(7238), 1, - sym_val_record, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, + ACTIONS(2119), 1, + anon_sym_LPAREN2, STATE(7645), 1, sym_comment, - [242146] = 4, - ACTIONS(121), 1, + [244125] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(948), 1, - anon_sym_in, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, + ACTIONS(11858), 1, + sym_identifier, + ACTIONS(11860), 1, + anon_sym_DOLLAR, STATE(7646), 1, sym_comment, - [242159] = 4, - ACTIONS(3), 1, + [244138] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8380), 1, + ACTIONS(1429), 1, aux_sym_unquoted_token2, - ACTIONS(12139), 1, - anon_sym_DOT, + ACTIONS(1692), 1, + anon_sym_LPAREN2, STATE(7647), 1, sym_comment, - [242172] = 4, - ACTIONS(121), 1, + [244151] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2025), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(2198), 1, - aux_sym__unquoted_in_record_token3, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7522), 1, + sym_block, STATE(7648), 1, sym_comment, - [242185] = 4, - ACTIONS(3), 1, + [244164] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7071), 1, - sym_block, + ACTIONS(2947), 1, + anon_sym_LPAREN2, STATE(7649), 1, sym_comment, - [242198] = 4, - ACTIONS(121), 1, + STATE(7699), 1, + sym__expr_parenthesized_immediate, + [244177] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6844), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11862), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7650), 1, sym_comment, - [242211] = 4, - ACTIONS(3), 1, + STATE(7661), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [244190] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(1719), 1, aux_sym_unquoted_token2, - ACTIONS(12141), 1, - anon_sym_DOT, + ACTIONS(2087), 1, + aux_sym_ctrl_match_token1, STATE(7651), 1, sym_comment, - [242224] = 4, - ACTIONS(121), 1, + [244203] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12143), 1, - anon_sym_RBRACK, - ACTIONS(12145), 1, - sym__entry_separator, + ACTIONS(5625), 1, + anon_sym_LPAREN2, + STATE(7640), 1, + sym__expr_parenthesized_immediate, STATE(7652), 1, sym_comment, - [242237] = 4, - ACTIONS(121), 1, + [244216] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9687), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(7561), 1, + sym__expr_parenthesized_immediate, STATE(7653), 1, sym_comment, - [242250] = 4, - ACTIONS(121), 1, + [244229] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8710), 1, - sym__entry_separator, - ACTIONS(8712), 1, - anon_sym_RBRACK, + ACTIONS(2947), 1, + anon_sym_LPAREN2, STATE(7654), 1, sym_comment, - [242263] = 4, - ACTIONS(3), 1, + STATE(7887), 1, + sym__expr_parenthesized_immediate, + [244242] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7275), 1, - sym_block, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(7615), 1, + sym__expr_parenthesized_immediate, STATE(7655), 1, sym_comment, - [242276] = 4, + [244255] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(6895), 1, - sym_block, + ACTIONS(11864), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7656), 1, sym_comment, - [242289] = 4, - ACTIONS(3), 1, + [244268] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(1717), 1, aux_sym_ctrl_match_token1, - STATE(6677), 1, - sym_block, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, STATE(7657), 1, sym_comment, - [242302] = 4, - ACTIONS(121), 1, + [244281] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12147), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7569), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6752), 1, + sym_block, STATE(7658), 1, sym_comment, - [242315] = 4, - ACTIONS(121), 1, + [244294] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2079), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token7, + ACTIONS(5202), 1, + sym__entry_separator, + ACTIONS(5204), 1, + anon_sym_RBRACK, STATE(7659), 1, sym_comment, - [242328] = 4, - ACTIONS(121), 1, + [244307] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12149), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7502), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, STATE(7660), 1, sym_comment, - [242341] = 4, - ACTIONS(121), 1, + STATE(7677), 1, + sym__expr_parenthesized_immediate, + [244320] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(950), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, + ACTIONS(11866), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7614), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7661), 1, sym_comment, - [242354] = 4, - ACTIONS(3), 1, + [244333] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(6298), 1, aux_sym_ctrl_match_token1, - STATE(6678), 1, + STATE(6754), 1, sym_block, STATE(7662), 1, sym_comment, - [242367] = 4, - ACTIONS(3), 1, + [244346] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2856), 1, - anon_sym_LPAREN2, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7077), 1, + sym_block, STATE(7663), 1, sym_comment, - STATE(7895), 1, - sym__expr_parenthesized_immediate, - [242380] = 4, - ACTIONS(121), 1, + [244359] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_RBRACK, - ACTIONS(6078), 1, - sym__entry_separator, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7117), 1, + sym_block, STATE(7664), 1, sym_comment, - [242393] = 4, - ACTIONS(121), 1, + [244372] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8714), 1, - sym__entry_separator, - ACTIONS(8716), 1, - anon_sym_RBRACK, + ACTIONS(2947), 1, + anon_sym_LPAREN2, STATE(7665), 1, sym_comment, - [242406] = 4, - ACTIONS(3), 1, + STATE(7719), 1, + sym__expr_parenthesized_immediate, + [244385] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, - anon_sym_in, - ACTIONS(4687), 1, - aux_sym_unquoted_token6, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7082), 1, + sym_block, STATE(7666), 1, sym_comment, - [242419] = 4, + [244398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7178), 1, - sym_block, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym__unquoted_in_list_token4, STATE(7667), 1, sym_comment, - [242432] = 4, - ACTIONS(121), 1, + [244411] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8718), 1, - sym__entry_separator, - ACTIONS(8720), 1, - anon_sym_RBRACK, + ACTIONS(2097), 1, + anon_sym_in, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, STATE(7668), 1, sym_comment, - [242445] = 4, - ACTIONS(121), 1, + [244424] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5662), 1, - aux_sym_unquoted_token3, - ACTIONS(12151), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(7585), 1, + sym__expr_parenthesized_immediate, STATE(7669), 1, sym_comment, - [242458] = 4, + [244437] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(6897), 1, - sym_block, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, + ACTIONS(2105), 1, + anon_sym_in, STATE(7670), 1, sym_comment, - [242471] = 4, - ACTIONS(3), 1, + [244450] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(11868), 1, aux_sym_ctrl_match_token1, - STATE(6894), 1, + STATE(5069), 1, sym_block, STATE(7671), 1, sym_comment, - [242484] = 4, - ACTIONS(121), 1, + [244463] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2159), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, + ACTIONS(2947), 1, + anon_sym_LPAREN2, + STATE(7594), 1, + sym__expr_parenthesized_immediate, STATE(7672), 1, sym_comment, - [242497] = 4, - ACTIONS(121), 1, + [244476] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, - ACTIONS(2165), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11870), 1, + anon_sym_RBRACK, + ACTIONS(11872), 1, + sym__entry_separator, STATE(7673), 1, sym_comment, - [242510] = 4, - ACTIONS(121), 1, + [244489] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2155), 1, - anon_sym_in, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym_unquoted_token4, STATE(7674), 1, sym_comment, - [242523] = 4, - ACTIONS(121), 1, + [244502] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12153), 1, - sym__newline, - ACTIONS(12155), 1, - sym__space, + ACTIONS(11874), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7614), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7675), 1, sym_comment, - [242536] = 4, - ACTIONS(3), 1, + [244515] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(9274), 1, aux_sym_ctrl_match_token1, - STATE(6403), 1, - sym_block, + STATE(6556), 1, + sym_val_record, STATE(7676), 1, sym_comment, - [242549] = 4, + [244528] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6372), 1, - aux_sym_ctrl_match_token1, - STATE(4824), 1, - sym_block, + ACTIONS(11876), 1, + aux_sym__unquoted_with_expr_token1, STATE(7677), 1, sym_comment, - [242562] = 4, + STATE(7682), 1, + aux_sym__unquoted_with_expr_repeat1, + [244541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5397), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(12157), 1, - anon_sym_DOT, + ACTIONS(11878), 1, + aux_sym__unquoted_with_expr_token1, STATE(7678), 1, sym_comment, - [242575] = 4, - ACTIONS(121), 1, - anon_sym_POUND, - ACTIONS(12159), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, + STATE(7683), 1, aux_sym__unquoted_with_expr_repeat1, + [244554] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7359), 1, + sym_block, STATE(7679), 1, sym_comment, - [242588] = 4, - ACTIONS(121), 1, + [244567] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12161), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8549), 1, + sym__entry_separator, + ACTIONS(8551), 1, + anon_sym_RBRACK, STATE(7680), 1, sym_comment, - [242601] = 4, - ACTIONS(121), 1, + [244580] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5273), 1, - sym__entry_separator, - ACTIONS(5275), 1, - anon_sym_RBRACK, + ACTIONS(5005), 1, + anon_sym_in, + ACTIONS(11880), 1, + anon_sym_EQ2, STATE(7681), 1, sym_comment, - [242614] = 4, + [244593] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6374), 1, - aux_sym_ctrl_match_token1, - STATE(7239), 1, - sym_block, + ACTIONS(11882), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7682), 1, sym_comment, - [242627] = 4, - ACTIONS(121), 1, + [244606] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3239), 1, - anon_sym_in, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, + ACTIONS(11884), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7683), 1, sym_comment, - [242640] = 4, - ACTIONS(121), 1, + [244619] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12163), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7658), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(2091), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + aux_sym__unquoted_in_record_token4, STATE(7684), 1, sym_comment, - [242653] = 4, - ACTIONS(121), 1, + [244632] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5092), 1, - aux_sym_unquoted_token3, - ACTIONS(11960), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11886), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7614), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7685), 1, sym_comment, - [242666] = 4, - ACTIONS(3), 1, + [244645] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5086), 1, - aux_sym_ctrl_match_token1, - ACTIONS(12165), 1, - anon_sym_EQ2, + ACTIONS(11888), 1, + anon_sym_DASH, STATE(7686), 1, sym_comment, - [242679] = 4, - ACTIONS(3), 1, + STATE(7806), 1, + sym_param_short_flag, + [244658] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6372), 1, + ACTIONS(11868), 1, aux_sym_ctrl_match_token1, - STATE(6573), 1, + STATE(5102), 1, sym_block, STATE(7687), 1, sym_comment, - [242692] = 3, - ACTIONS(3), 1, + [244671] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12167), 1, - anon_sym_RPAREN, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7397), 1, + sym_block, STATE(7688), 1, sym_comment, - [242702] = 3, - ACTIONS(3), 1, + [244684] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(503), 1, - anon_sym_RPAREN2, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + ACTIONS(11774), 1, + anon_sym_make, STATE(7689), 1, sym_comment, - [242712] = 3, - ACTIONS(3), 1, + [244697] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6803), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7175), 1, + sym_block, STATE(7690), 1, sym_comment, - [242722] = 3, + [244710] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12169), 1, + ACTIONS(5206), 1, + sym__entry_separator, + ACTIONS(5208), 1, anon_sym_RBRACK, STATE(7691), 1, sym_comment, - [242732] = 3, - ACTIONS(121), 1, + [244723] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2059), 1, - aux_sym__unquoted_in_record_token3, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6401), 1, + sym_block, STATE(7692), 1, sym_comment, - [242742] = 3, - ACTIONS(3), 1, + [244736] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12171), 1, - anon_sym_RPAREN, STATE(7693), 1, sym_comment, - [242752] = 3, - ACTIONS(3), 1, + ACTIONS(11890), 2, + sym__newline, + anon_sym_RBRACE, + [244747] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(481), 1, - anon_sym_RPAREN2, STATE(7694), 1, sym_comment, - [242762] = 3, + ACTIONS(11892), 2, + sym__newline, + anon_sym_RBRACE, + [244758] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12173), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(5218), 1, + sym__entry_separator, + ACTIONS(5220), 1, + anon_sym_RBRACK, STATE(7695), 1, sym_comment, - [242772] = 3, + [244771] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(1537), 1, aux_sym_record_entry_token1, + ACTIONS(10693), 1, + aux_sym_cmd_identifier_token37, STATE(7696), 1, sym_comment, - [242782] = 3, - ACTIONS(3), 1, + [244784] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12175), 1, - anon_sym_EQ_GT, STATE(7697), 1, sym_comment, - [242792] = 3, - ACTIONS(121), 1, + ACTIONS(996), 2, + anon_sym_DOT, + aux_sym_record_entry_token1, + [244795] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5092), 1, - aux_sym_unquoted_token3, + ACTIONS(5770), 1, + sym__entry_separator, + STATE(7208), 1, + aux_sym__multiple_types_repeat1, STATE(7698), 1, sym_comment, - [242802] = 3, + [244808] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12177), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11894), 1, + aux_sym__unquoted_with_expr_token1, STATE(7699), 1, sym_comment, - [242812] = 3, + STATE(7704), 1, + aux_sym__unquoted_with_expr_repeat1, + [244821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12179), 1, - anon_sym_RBRACE, + ACTIONS(11896), 1, + aux_sym__unquoted_with_expr_token1, STATE(7700), 1, sym_comment, - [242822] = 3, - ACTIONS(3), 1, + STATE(7705), 1, + aux_sym__unquoted_with_expr_repeat1, + [244834] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12181), 1, - sym__table_head_separator, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6811), 1, + sym_block, STATE(7701), 1, sym_comment, - [242832] = 3, + [244847] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12183), 1, - anon_sym_RBRACE, + ACTIONS(6585), 1, + sym__entry_separator, + STATE(3657), 1, + aux_sym__multiple_types_repeat1, STATE(7702), 1, sym_comment, - [242842] = 3, - ACTIONS(121), 1, + [244860] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2198), 1, - aux_sym__unquoted_in_record_token3, + ACTIONS(11898), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7703), 1, sym_comment, - [242852] = 3, + [244873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12185), 1, - sym_identifier, + ACTIONS(11900), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7704), 1, sym_comment, - [242862] = 3, + [244886] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12187), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11902), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7705), 1, sym_comment, - [242872] = 3, - ACTIONS(3), 1, + [244899] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12189), 1, - anon_sym_RBRACE, + ACTIONS(1527), 1, + anon_sym_LPAREN2, STATE(7706), 1, sym_comment, - [242882] = 3, - ACTIONS(121), 1, + STATE(7950), 1, + sym__expr_parenthesized_immediate, + [244912] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11762), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7403), 1, + sym_block, STATE(7707), 1, sym_comment, - [242892] = 3, + [244925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(511), 1, - anon_sym_RPAREN2, + ACTIONS(11904), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7708), 1, sym_comment, - [242902] = 3, + [244938] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12191), 1, - anon_sym_RPAREN, - STATE(7709), 1, + ACTIONS(11906), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7709), 2, sym_comment, - [242912] = 3, - ACTIONS(3), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [244949] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12193), 1, - anon_sym_RBRACK, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6927), 1, + sym_block, STATE(7710), 1, sym_comment, - [242922] = 3, + [244962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12195), 1, - anon_sym_RBRACK, + ACTIONS(11909), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7711), 1, sym_comment, - [242932] = 3, - ACTIONS(121), 1, + [244975] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4654), 1, - aux_sym_unquoted_token7, + ACTIONS(11911), 1, + sym__newline, + ACTIONS(11913), 1, + sym__space, STATE(7712), 1, sym_comment, - [242942] = 3, - ACTIONS(121), 1, + [244988] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4950), 1, - aux_sym_unquoted_token3, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6620), 1, + sym_block, STATE(7713), 1, sym_comment, - [242952] = 3, - ACTIONS(3), 1, + [245001] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12197), 1, - anon_sym_RBRACK, + ACTIONS(6298), 1, + aux_sym_ctrl_match_token1, + STATE(6550), 1, + sym_block, STATE(7714), 1, sym_comment, - [242962] = 3, + [245014] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12199), 1, - anon_sym_RPAREN, + ACTIONS(8506), 1, + sym__entry_separator, + ACTIONS(8508), 1, + anon_sym_RBRACK, STATE(7715), 1, sym_comment, - [242972] = 3, - ACTIONS(121), 1, + [245027] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8510), 1, + sym__entry_separator, + ACTIONS(8512), 1, + anon_sym_RBRACK, STATE(7716), 1, sym_comment, - [242982] = 3, + [245040] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12201), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8520), 1, + sym__entry_separator, + ACTIONS(8522), 1, + anon_sym_RBRACK, STATE(7717), 1, sym_comment, - [242992] = 3, - ACTIONS(3), 1, + [245053] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12203), 1, - anon_sym_DASH_GT, + ACTIONS(6300), 1, + aux_sym_ctrl_match_token1, + STATE(7001), 1, + sym_block, STATE(7718), 1, sym_comment, - [243002] = 3, + [245066] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12205), 1, - sym__table_head_separator, + ACTIONS(11915), 1, + aux_sym__unquoted_with_expr_token1, STATE(7719), 1, sym_comment, - [243012] = 3, + STATE(7721), 1, + aux_sym__unquoted_with_expr_repeat1, + [245079] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12207), 1, - anon_sym_RPAREN, + ACTIONS(11917), 1, + aux_sym__unquoted_with_expr_token1, STATE(7720), 1, sym_comment, - [243022] = 3, + STATE(7722), 1, + aux_sym__unquoted_with_expr_repeat1, + [245092] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12209), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11919), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7721), 1, sym_comment, - [243032] = 3, + [245105] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12211), 1, - sym__table_head_separator, + ACTIONS(11921), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7722), 1, sym_comment, - [243042] = 3, + [245118] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12213), 1, - anon_sym_RPAREN, + ACTIONS(7353), 1, + anon_sym_RBRACK, + ACTIONS(7355), 1, + sym__entry_separator, STATE(7723), 1, sym_comment, - [243052] = 3, - ACTIONS(3), 1, + [245131] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12215), 1, - anon_sym_RBRACE, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, + ACTIONS(1698), 1, + aux_sym_ctrl_match_token1, STATE(7724), 1, sym_comment, - [243062] = 3, + [245144] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12217), 1, - anon_sym_RPAREN, + ACTIONS(11923), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7709), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7725), 1, sym_comment, - [243072] = 3, + [245157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12219), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11925), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7709), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7726), 1, sym_comment, - [243082] = 3, - ACTIONS(3), 1, + [245170] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12221), 1, - anon_sym_GT, STATE(7727), 1, sym_comment, - [243092] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12223), 1, + ACTIONS(11927), 2, + sym__newline, anon_sym_RBRACE, + [245181] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11929), 1, + anon_sym_RBRACK, STATE(7728), 1, sym_comment, - [243102] = 3, - ACTIONS(121), 1, + [245191] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2161), 1, - aux_sym_unquoted_token7, + ACTIONS(1719), 1, + aux_sym_unquoted_token2, STATE(7729), 1, sym_comment, - [243112] = 3, - ACTIONS(3), 1, + [245201] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12225), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11931), 1, + anon_sym_RBRACE, STATE(7730), 1, sym_comment, - [243122] = 3, - ACTIONS(3), 1, + [245211] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12227), 1, - anon_sym_RBRACE, + ACTIONS(547), 1, + anon_sym_RPAREN2, STATE(7731), 1, sym_comment, - [243132] = 3, - ACTIONS(3), 1, + [245221] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12229), 1, - anon_sym_RPAREN, + ACTIONS(11933), 1, + anon_sym_in, STATE(7732), 1, sym_comment, - [243142] = 3, - ACTIONS(3), 1, + [245231] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12231), 1, - anon_sym_RPAREN, + ACTIONS(11935), 1, + anon_sym_GT, STATE(7733), 1, sym_comment, - [243152] = 3, - ACTIONS(3), 1, + [245241] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12233), 1, + ACTIONS(11937), 1, anon_sym_RBRACE, STATE(7734), 1, sym_comment, - [243162] = 3, + [245251] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12235), 1, - anon_sym_RBRACE, + ACTIONS(9386), 1, + aux_sym_unquoted_token4, STATE(7735), 1, sym_comment, - [243172] = 3, - ACTIONS(3), 1, + [245261] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12237), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11939), 1, + anon_sym_RBRACE, STATE(7736), 1, sym_comment, - [243182] = 3, - ACTIONS(3), 1, + [245271] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12239), 1, + ACTIONS(11941), 1, anon_sym_RBRACE, STATE(7737), 1, sym_comment, - [243192] = 3, + [245281] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12241), 1, - anon_sym_RBRACE, + ACTIONS(7127), 1, + aux_sym_unquoted_token4, STATE(7738), 1, sym_comment, - [243202] = 3, - ACTIONS(121), 1, + [245291] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12243), 1, - aux_sym_comment_token1, + ACTIONS(11943), 1, + anon_sym_RBRACK, STATE(7739), 1, sym_comment, - [243212] = 3, - ACTIONS(3), 1, + [245301] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12245), 1, + ACTIONS(11945), 1, anon_sym_RBRACE, STATE(7740), 1, sym_comment, - [243222] = 3, - ACTIONS(121), 1, + [245311] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5191), 1, - aux_sym_unquoted_token7, + ACTIONS(4889), 1, + aux_sym_unquoted_token4, STATE(7741), 1, sym_comment, - [243232] = 3, - ACTIONS(3), 1, + [245321] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12247), 1, - anon_sym_EQ, + ACTIONS(11947), 1, + ts_builtin_sym_end, STATE(7742), 1, sym_comment, - [243242] = 3, - ACTIONS(3), 1, + [245331] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12249), 1, - anon_sym_RPAREN, + ACTIONS(11949), 1, + aux_sym_ctrl_match_token1, STATE(7743), 1, sym_comment, - [243252] = 3, - ACTIONS(3), 1, + [245341] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(499), 1, - anon_sym_RPAREN2, + ACTIONS(11951), 1, + aux_sym_ctrl_match_token1, STATE(7744), 1, sym_comment, - [243262] = 3, - ACTIONS(3), 1, + [245351] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12251), 1, - anon_sym_RBRACK, + ACTIONS(11953), 1, + anon_sym_EQ_GT, STATE(7745), 1, sym_comment, - [243272] = 3, - ACTIONS(3), 1, + [245361] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10104), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11955), 1, + anon_sym_RBRACE, STATE(7746), 1, sym_comment, - [243282] = 3, - ACTIONS(3), 1, + [245371] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12253), 1, - anon_sym_RBRACE, + ACTIONS(11957), 1, + sym_identifier, STATE(7747), 1, sym_comment, - [243292] = 3, - ACTIONS(3), 1, + [245381] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12255), 1, + ACTIONS(11959), 1, anon_sym_RPAREN, STATE(7748), 1, sym_comment, - [243302] = 3, - ACTIONS(3), 1, + [245391] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12257), 1, - aux_sym_ctrl_match_token1, + ACTIONS(527), 1, + anon_sym_RPAREN2, STATE(7749), 1, sym_comment, - [243312] = 3, - ACTIONS(121), 1, + [245401] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5263), 1, - aux_sym_unquoted_token3, + ACTIONS(11961), 1, + anon_sym_RBRACK, STATE(7750), 1, sym_comment, - [243322] = 3, - ACTIONS(3), 1, + [245411] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12259), 1, - anon_sym_RBRACE, + ACTIONS(11963), 1, + anon_sym_RBRACK, STATE(7751), 1, sym_comment, - [243332] = 3, - ACTIONS(3), 1, + [245421] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12261), 1, - anon_sym_GT, + ACTIONS(11965), 1, + anon_sym_RBRACE, STATE(7752), 1, sym_comment, - [243342] = 3, - ACTIONS(3), 1, + [245431] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12263), 1, - anon_sym_RPAREN, + ACTIONS(4702), 1, + aux_sym_unquoted_token2, STATE(7753), 1, sym_comment, - [243352] = 3, - ACTIONS(3), 1, + [245441] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12265), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11967), 1, + anon_sym_RBRACE, STATE(7754), 1, sym_comment, - [243362] = 3, - ACTIONS(121), 1, + [245451] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12132), 1, - aux_sym__record_key_token1, + ACTIONS(11969), 1, + anon_sym_RBRACK, STATE(7755), 1, sym_comment, - [243372] = 3, - ACTIONS(3), 1, + [245461] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(465), 1, - anon_sym_RPAREN2, + ACTIONS(11971), 1, + anon_sym_RPAREN, STATE(7756), 1, sym_comment, - [243382] = 3, - ACTIONS(121), 1, + [245471] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5974), 1, - aux_sym_unquoted_token3, + ACTIONS(11973), 1, + anon_sym_RPAREN, STATE(7757), 1, sym_comment, - [243392] = 3, - ACTIONS(3), 1, + [245481] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12267), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11975), 1, + anon_sym_RBRACE, STATE(7758), 1, sym_comment, - [243402] = 3, - ACTIONS(121), 1, + [245491] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1963), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11977), 1, + anon_sym_RBRACE, STATE(7759), 1, sym_comment, - [243412] = 3, - ACTIONS(3), 1, + [245501] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12269), 1, - anon_sym_RPAREN, + ACTIONS(11979), 1, + anon_sym_RBRACE, STATE(7760), 1, sym_comment, - [243422] = 3, - ACTIONS(121), 1, + [245511] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5537), 1, - aux_sym__unquoted_in_list_token7, + ACTIONS(1429), 1, + aux_sym_unquoted_token2, STATE(7761), 1, sym_comment, - [243432] = 3, - ACTIONS(3), 1, + [245521] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12271), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(11981), 1, + anon_sym_RBRACE, STATE(7762), 1, sym_comment, - [243442] = 3, - ACTIONS(3), 1, + [245531] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12273), 1, - sym_identifier, + ACTIONS(11983), 1, + anon_sym_RBRACE, STATE(7763), 1, sym_comment, - [243452] = 3, - ACTIONS(3), 1, + [245541] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12275), 1, - anon_sym_RBRACE, + ACTIONS(11985), 1, + aux_sym_record_entry_token1, STATE(7764), 1, sym_comment, - [243462] = 3, + [245551] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_LBRACK2, + ACTIONS(6636), 1, + aux_sym_unquoted_token4, STATE(7765), 1, sym_comment, - [243472] = 3, - ACTIONS(3), 1, + [245561] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12277), 1, + ACTIONS(11987), 1, anon_sym_RPAREN, STATE(7766), 1, sym_comment, - [243482] = 3, - ACTIONS(3), 1, + [245571] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12279), 1, - anon_sym_RBRACK, + ACTIONS(11989), 1, + anon_sym_RPAREN, STATE(7767), 1, sym_comment, - [243492] = 3, + [245581] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12281), 1, - anon_sym_RBRACE, + ACTIONS(11991), 1, + aux_sym_shebang_token1, STATE(7768), 1, sym_comment, - [243502] = 3, - ACTIONS(3), 1, + [245591] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12283), 1, - anon_sym_RPAREN, + ACTIONS(11993), 1, + anon_sym_RBRACK, STATE(7769), 1, sym_comment, - [243512] = 3, - ACTIONS(3), 1, + [245601] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12285), 1, - anon_sym_RPAREN, + ACTIONS(5635), 1, + aux_sym__unquoted_in_list_token2, STATE(7770), 1, sym_comment, - [243522] = 3, - ACTIONS(3), 1, + [245611] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_record_entry_token1, + ACTIONS(11995), 1, + anon_sym_RBRACK, STATE(7771), 1, sym_comment, - [243532] = 3, - ACTIONS(3), 1, + [245621] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12287), 1, - anon_sym_RBRACE, + ACTIONS(11997), 1, + anon_sym_RPAREN, STATE(7772), 1, sym_comment, - [243542] = 3, - ACTIONS(3), 1, + [245631] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12289), 1, - anon_sym_RPAREN, + ACTIONS(11851), 1, + aux_sym_ctrl_match_token1, STATE(7773), 1, sym_comment, - [243552] = 3, - ACTIONS(3), 1, + [245641] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12291), 1, - anon_sym_RPAREN, + ACTIONS(5194), 1, + anon_sym_LBRACK2, STATE(7774), 1, sym_comment, - [243562] = 3, - ACTIONS(121), 1, + [245651] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1959), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(11999), 1, + anon_sym_RBRACE, STATE(7775), 1, sym_comment, - [243572] = 3, - ACTIONS(3), 1, + [245661] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(495), 1, - anon_sym_RPAREN2, + ACTIONS(7059), 1, + aux_sym_unquoted_token2, STATE(7776), 1, sym_comment, - [243582] = 3, - ACTIONS(3), 1, + [245671] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12293), 1, - anon_sym_RBRACK, + ACTIONS(12001), 1, + anon_sym_EQ, STATE(7777), 1, sym_comment, - [243592] = 3, - ACTIONS(3), 1, + [245681] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12295), 1, - anon_sym_RPAREN, + ACTIONS(3239), 1, + aux_sym_record_entry_token1, STATE(7778), 1, sym_comment, - [243602] = 3, - ACTIONS(121), 1, + [245691] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5662), 1, - aux_sym_unquoted_token3, + ACTIONS(12003), 1, + anon_sym_RBRACK, STATE(7779), 1, sym_comment, - [243612] = 3, - ACTIONS(3), 1, + [245701] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12297), 1, - anon_sym_RBRACE, + ACTIONS(12005), 1, + anon_sym_RPAREN, STATE(7780), 1, sym_comment, - [243622] = 3, - ACTIONS(121), 1, + [245711] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1959), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(12007), 1, + anon_sym_RPAREN, STATE(7781), 1, sym_comment, - [243632] = 3, - ACTIONS(3), 1, + [245721] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7755), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12009), 1, + aux_sym_ctrl_match_token1, STATE(7782), 1, sym_comment, - [243642] = 3, - ACTIONS(3), 1, + [245731] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12299), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12011), 1, + anon_sym_RPAREN, STATE(7783), 1, sym_comment, - [243652] = 3, - ACTIONS(3), 1, + [245741] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12301), 1, - anon_sym_GT, + ACTIONS(12009), 1, + aux_sym_ctrl_match_token1, STATE(7784), 1, sym_comment, - [243662] = 3, - ACTIONS(121), 1, + [245751] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2041), 1, - aux_sym_unquoted_token7, + ACTIONS(12013), 1, + anon_sym_RBRACE, STATE(7785), 1, sym_comment, - [243672] = 3, - ACTIONS(3), 1, + [245761] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12303), 1, - aux_sym_ctrl_match_token1, + ACTIONS(12015), 1, + anon_sym_RBRACE, STATE(7786), 1, sym_comment, - [243682] = 3, - ACTIONS(3), 1, + [245771] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12305), 1, - aux_sym_ctrl_match_token1, + ACTIONS(12017), 1, + aux_sym_cmd_identifier_token41, STATE(7787), 1, sym_comment, - [243692] = 3, - ACTIONS(3), 1, + [245781] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12307), 1, - anon_sym_EQ, + ACTIONS(7303), 1, + aux_sym__unquoted_in_list_token2, STATE(7788), 1, sym_comment, - [243702] = 3, - ACTIONS(121), 1, + [245791] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12309), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(559), 1, + anon_sym_RPAREN2, STATE(7789), 1, sym_comment, - [243712] = 3, - ACTIONS(3), 1, + [245801] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12311), 1, - anon_sym_RBRACE, + ACTIONS(12019), 1, + anon_sym_in, STATE(7790), 1, sym_comment, - [243722] = 3, - ACTIONS(3), 1, + [245811] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12313), 1, - anon_sym_RBRACE, + ACTIONS(12021), 1, + aux_sym_env_var_token2, STATE(7791), 1, sym_comment, - [243732] = 3, - ACTIONS(3), 1, + [245821] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12315), 1, - anon_sym_DASH_GT, + ACTIONS(12023), 1, + aux_sym_ctrl_match_token1, STATE(7792), 1, sym_comment, - [243742] = 3, - ACTIONS(3), 1, + [245831] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12317), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12025), 1, + anon_sym_GT, STATE(7793), 1, sym_comment, - [243752] = 3, - ACTIONS(3), 1, + [245841] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12319), 1, - anon_sym_RBRACE, + ACTIONS(605), 1, + ts_builtin_sym_end, STATE(7794), 1, sym_comment, - [243762] = 3, - ACTIONS(3), 1, + [245851] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12321), 1, - anon_sym_RBRACE, + ACTIONS(4981), 1, + anon_sym_LBRACK2, STATE(7795), 1, sym_comment, - [243772] = 3, - ACTIONS(121), 1, + [245861] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9568), 1, - aux_sym_unquoted_token3, + ACTIONS(12027), 1, + aux_sym_ctrl_match_token1, STATE(7796), 1, sym_comment, - [243782] = 3, - ACTIONS(3), 1, + [245871] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5101), 1, - anon_sym_LBRACK2, + ACTIONS(12029), 1, + anon_sym_RPAREN2, STATE(7797), 1, sym_comment, - [243792] = 3, - ACTIONS(3), 1, + [245881] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12323), 1, - anon_sym_RPAREN, + ACTIONS(12031), 1, + anon_sym_RBRACE, STATE(7798), 1, sym_comment, - [243802] = 3, - ACTIONS(3), 1, + [245891] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12325), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12033), 1, + sym_identifier, STATE(7799), 1, sym_comment, - [243812] = 3, - ACTIONS(3), 1, + [245901] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12327), 1, - anon_sym_RBRACE, + ACTIONS(12035), 1, + anon_sym_RPAREN, STATE(7800), 1, sym_comment, - [243822] = 3, - ACTIONS(3), 1, + [245911] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12329), 1, + ACTIONS(12037), 1, anon_sym_RPAREN, STATE(7801), 1, sym_comment, - [243832] = 3, + [245921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12331), 1, - aux_sym_ctrl_match_token1, + ACTIONS(5786), 1, + aux_sym__unquoted_in_list_token4, STATE(7802), 1, sym_comment, - [243842] = 3, - ACTIONS(121), 1, + [245931] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7826), 1, - aux_sym_unquoted_token3, + ACTIONS(1539), 1, + aux_sym__unquoted_in_record_token2, STATE(7803), 1, sym_comment, - [243852] = 3, - ACTIONS(3), 1, + [245941] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12333), 1, - anon_sym_RBRACK, + ACTIONS(12039), 1, + anon_sym_make, STATE(7804), 1, sym_comment, - [243862] = 3, - ACTIONS(121), 1, + [245951] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10435), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(12041), 1, + anon_sym_RPAREN, STATE(7805), 1, sym_comment, - [243872] = 3, - ACTIONS(3), 1, + [245961] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12335), 1, - anon_sym_RBRACE, + ACTIONS(12043), 1, + anon_sym_RPAREN, STATE(7806), 1, sym_comment, - [243882] = 3, - ACTIONS(121), 1, + [245971] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1959), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(12045), 1, + sym_long_flag_identifier, STATE(7807), 1, sym_comment, - [243892] = 3, - ACTIONS(121), 1, + [245981] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6171), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(12047), 1, + anon_sym_RBRACE, STATE(7808), 1, sym_comment, - [243902] = 3, - ACTIONS(3), 1, + [245991] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12337), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12049), 1, + aux_sym_ctrl_match_token1, STATE(7809), 1, sym_comment, - [243912] = 3, - ACTIONS(121), 1, + [246001] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5494), 1, - aux_sym_unquoted_token7, + ACTIONS(571), 1, + anon_sym_RPAREN2, STATE(7810), 1, sym_comment, - [243922] = 3, - ACTIONS(3), 1, + [246011] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6635), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12051), 1, + aux_sym_ctrl_match_token1, STATE(7811), 1, sym_comment, - [243932] = 3, - ACTIONS(121), 1, + [246021] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4746), 1, - aux_sym_unquoted_token7, + ACTIONS(5174), 1, + anon_sym_LBRACK2, STATE(7812), 1, sym_comment, - [243942] = 3, + [246031] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12257), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11553), 1, + aux_sym_cmd_identifier_token37, STATE(7813), 1, sym_comment, - [243952] = 3, - ACTIONS(3), 1, + [246041] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8191), 1, - anon_sym_LBRACK2, + ACTIONS(12053), 1, + anon_sym_RPAREN, STATE(7814), 1, sym_comment, - [243962] = 3, - ACTIONS(3), 1, + [246051] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12339), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12055), 1, + anon_sym_RBRACE, STATE(7815), 1, sym_comment, - [243972] = 3, - ACTIONS(3), 1, + [246061] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12341), 1, - anon_sym_RPAREN, + ACTIONS(7127), 1, + aux_sym_unquoted_token2, STATE(7816), 1, sym_comment, - [243982] = 3, - ACTIONS(3), 1, + [246071] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12343), 1, - sym_identifier, + ACTIONS(12057), 1, + anon_sym_EQ_GT, STATE(7817), 1, sym_comment, - [243992] = 3, - ACTIONS(3), 1, + [246081] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12345), 1, - anon_sym_RBRACE, + ACTIONS(12059), 1, + anon_sym_RPAREN, STATE(7818), 1, sym_comment, - [244002] = 3, - ACTIONS(3), 1, + [246091] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12347), 1, - anon_sym_RBRACK, + ACTIONS(5424), 1, + anon_sym_LBRACK2, STATE(7819), 1, sym_comment, - [244012] = 3, - ACTIONS(3), 1, + [246101] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12349), 1, - anon_sym_RPAREN, + ACTIONS(12061), 1, + anon_sym_RBRACK, STATE(7820), 1, sym_comment, - [244022] = 3, - ACTIONS(121), 1, + [246111] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6844), 1, - aux_sym_unquoted_token3, + ACTIONS(12063), 1, + anon_sym_RBRACK, STATE(7821), 1, sym_comment, - [244032] = 3, - ACTIONS(3), 1, + [246121] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12351), 1, - anon_sym_RBRACE, + ACTIONS(12065), 1, + anon_sym_RPAREN, STATE(7822), 1, sym_comment, - [244042] = 3, - ACTIONS(3), 1, + [246131] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12353), 1, - anon_sym_RPAREN2, + ACTIONS(12067), 1, + anon_sym_RBRACE, STATE(7823), 1, sym_comment, - [244052] = 3, - ACTIONS(3), 1, + [246141] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12355), 1, - anon_sym_RBRACE, + ACTIONS(12069), 1, + anon_sym_RPAREN, STATE(7824), 1, sym_comment, - [244062] = 3, - ACTIONS(121), 1, + [246151] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12357), 1, - sym__space, + ACTIONS(4722), 1, + aux_sym_unquoted_token4, STATE(7825), 1, sym_comment, - [244072] = 3, - ACTIONS(3), 1, + [246161] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12359), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(7977), 1, + anon_sym_LBRACK2, STATE(7826), 1, sym_comment, - [244082] = 3, - ACTIONS(3), 1, + [246171] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5986), 1, - anon_sym_LBRACK2, + ACTIONS(12071), 1, + anon_sym_RBRACK, STATE(7827), 1, sym_comment, - [244092] = 3, - ACTIONS(3), 1, + [246181] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10584), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12073), 1, + anon_sym_RBRACE, STATE(7828), 1, sym_comment, - [244102] = 3, - ACTIONS(3), 1, + [246191] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12361), 1, - anon_sym_RBRACE, + ACTIONS(12075), 1, + anon_sym_RPAREN, STATE(7829), 1, sym_comment, - [244112] = 3, - ACTIONS(3), 1, + [246201] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12363), 1, - sym_identifier, + ACTIONS(12077), 1, + anon_sym_RBRACE, STATE(7830), 1, sym_comment, - [244122] = 3, - ACTIONS(121), 1, + [246211] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11512), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(12079), 1, + anon_sym_RBRACE, STATE(7831), 1, sym_comment, - [244132] = 3, + [246221] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12365), 1, - aux_sym_ctrl_match_token1, + ACTIONS(11267), 1, + aux_sym_cmd_identifier_token37, STATE(7832), 1, sym_comment, - [244142] = 3, - ACTIONS(121), 1, + [246231] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1963), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(12081), 1, + anon_sym_RBRACE, STATE(7833), 1, sym_comment, - [244152] = 3, - ACTIONS(3), 1, + [246241] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12367), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12083), 1, + anon_sym_RPAREN, STATE(7834), 1, sym_comment, - [244162] = 3, - ACTIONS(3), 1, + [246251] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12369), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12085), 1, + sym_identifier, STATE(7835), 1, sym_comment, - [244172] = 3, - ACTIONS(3), 1, + [246261] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12371), 1, - anon_sym_RBRACK, + ACTIONS(12087), 1, + anon_sym_RPAREN, STATE(7836), 1, sym_comment, - [244182] = 3, - ACTIONS(3), 1, + [246271] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12373), 1, - anon_sym_RBRACE, + ACTIONS(12089), 1, + sym_identifier, STATE(7837), 1, sym_comment, - [244192] = 3, - ACTIONS(3), 1, + [246281] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12209), 1, - aux_sym_ctrl_match_token1, + ACTIONS(12091), 1, + anon_sym_RBRACE, STATE(7838), 1, sym_comment, - [244202] = 3, - ACTIONS(121), 1, + [246291] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5302), 1, - aux_sym_unquoted_token3, + ACTIONS(4122), 1, + aux_sym_unquoted_token2, STATE(7839), 1, sym_comment, - [244212] = 3, - ACTIONS(3), 1, + [246301] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7960), 1, + ACTIONS(5855), 1, anon_sym_LBRACK2, STATE(7840), 1, sym_comment, - [244222] = 3, - ACTIONS(3), 1, + [246311] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12375), 1, - anon_sym_RPAREN, + ACTIONS(12093), 1, + anon_sym_RBRACE, STATE(7841), 1, sym_comment, - [244232] = 3, - ACTIONS(3), 1, + [246321] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12377), 1, - anon_sym_RPAREN, + ACTIONS(12095), 1, + anon_sym_RBRACE, STATE(7842), 1, sym_comment, - [244242] = 3, + [246331] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12379), 1, - anon_sym_EQ_GT, + ACTIONS(2103), 1, + aux_sym_unquoted_token4, STATE(7843), 1, sym_comment, - [244252] = 3, - ACTIONS(121), 1, + [246341] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(12097), 1, + anon_sym_RBRACE, STATE(7844), 1, sym_comment, - [244262] = 3, - ACTIONS(3), 1, + [246351] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12381), 1, + ACTIONS(12099), 1, anon_sym_RPAREN, STATE(7845), 1, sym_comment, - [244272] = 3, - ACTIONS(3), 1, + [246361] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5304), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12101), 1, + anon_sym_DASH_GT, STATE(7846), 1, sym_comment, - [244282] = 3, - ACTIONS(3), 1, + [246371] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12383), 1, + ACTIONS(12103), 1, anon_sym_RPAREN, STATE(7847), 1, sym_comment, - [244292] = 3, - ACTIONS(3), 1, + [246381] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12385), 1, - anon_sym_RBRACK, + ACTIONS(2285), 1, + aux_sym_record_entry_token1, STATE(7848), 1, sym_comment, - [244302] = 3, - ACTIONS(3), 1, + [246391] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12387), 1, - anon_sym_RPAREN, + ACTIONS(11309), 1, + anon_sym_EQ_GT, STATE(7849), 1, sym_comment, - [244312] = 3, + [246401] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12389), 1, - anon_sym_RBRACE, + ACTIONS(4702), 1, + aux_sym_unquoted_token4, STATE(7850), 1, sym_comment, - [244322] = 3, - ACTIONS(3), 1, + [246411] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12391), 1, - anon_sym_RBRACE, + ACTIONS(12105), 1, + anon_sym_RBRACK, STATE(7851), 1, sym_comment, - [244332] = 3, - ACTIONS(3), 1, + [246421] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12393), 1, - anon_sym_EQ, + ACTIONS(7796), 1, + anon_sym_LBRACK2, STATE(7852), 1, sym_comment, - [244342] = 3, - ACTIONS(3), 1, + [246431] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8486), 1, - anon_sym_LBRACK2, + ACTIONS(12107), 1, + anon_sym_RPAREN, STATE(7853), 1, sym_comment, - [244352] = 3, - ACTIONS(3), 1, + [246441] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12395), 1, - anon_sym_RBRACE, + ACTIONS(12109), 1, + anon_sym_GT, STATE(7854), 1, sym_comment, - [244362] = 3, - ACTIONS(3), 1, + [246451] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12397), 1, - anon_sym_RPAREN, + ACTIONS(12111), 1, + anon_sym_RBRACE, STATE(7855), 1, sym_comment, - [244372] = 3, - ACTIONS(3), 1, + [246461] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12399), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12113), 1, + anon_sym_RBRACE, STATE(7856), 1, sym_comment, - [244382] = 3, - ACTIONS(3), 1, + [246471] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12401), 1, - anon_sym_EQ, + ACTIONS(12115), 1, + anon_sym_RBRACE, STATE(7857), 1, sym_comment, - [244392] = 3, - ACTIONS(121), 1, + [246481] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8382), 1, - aux_sym_unquoted_token7, + ACTIONS(12117), 1, + aux_sym_cmd_identifier_token41, STATE(7858), 1, sym_comment, - [244402] = 3, - ACTIONS(3), 1, + [246491] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12403), 1, + ACTIONS(12119), 1, anon_sym_RBRACE, STATE(7859), 1, sym_comment, - [244412] = 3, - ACTIONS(3), 1, + [246501] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12405), 1, - anon_sym_RBRACK, + ACTIONS(12121), 1, + anon_sym_RPAREN, STATE(7860), 1, sym_comment, - [244422] = 3, - ACTIONS(3), 1, + [246511] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12407), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12123), 1, + anon_sym_EQ, STATE(7861), 1, sym_comment, - [244432] = 3, - ACTIONS(3), 1, + [246521] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(487), 1, - anon_sym_RPAREN2, + ACTIONS(12125), 1, + anon_sym_DASH_GT, STATE(7862), 1, sym_comment, - [244442] = 3, - ACTIONS(121), 1, + [246531] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3243), 1, - aux_sym_unquoted_token3, + ACTIONS(12127), 1, + anon_sym_RPAREN, STATE(7863), 1, sym_comment, - [244452] = 3, - ACTIONS(3), 1, + [246541] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12409), 1, - anon_sym_RPAREN, + ACTIONS(8098), 1, + anon_sym_LBRACK2, STATE(7864), 1, sym_comment, - [244462] = 3, - ACTIONS(3), 1, + [246551] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12411), 1, - anon_sym_RPAREN, + ACTIONS(8797), 1, + aux_sym_unquoted_token2, STATE(7865), 1, sym_comment, - [244472] = 3, - ACTIONS(3), 1, + [246561] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6732), 1, - anon_sym_LBRACK2, + ACTIONS(12129), 1, + anon_sym_RPAREN, STATE(7866), 1, sym_comment, - [244482] = 3, - ACTIONS(3), 1, + [246571] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5545), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12131), 1, + anon_sym_RBRACK, STATE(7867), 1, sym_comment, - [244492] = 3, - ACTIONS(3), 1, + [246581] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12413), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12133), 1, + anon_sym_RPAREN, STATE(7868), 1, sym_comment, - [244502] = 3, - ACTIONS(3), 1, + [246591] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12415), 1, - anon_sym_RPAREN, + ACTIONS(12135), 1, + anon_sym_GT, STATE(7869), 1, sym_comment, - [244512] = 3, - ACTIONS(3), 1, + [246601] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12417), 1, - anon_sym_RPAREN, + ACTIONS(12137), 1, + anon_sym_RBRACE, STATE(7870), 1, sym_comment, - [244522] = 3, - ACTIONS(3), 1, + [246611] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12419), 1, - anon_sym_RBRACE, + ACTIONS(12139), 1, + anon_sym_RBRACK, STATE(7871), 1, sym_comment, - [244532] = 3, - ACTIONS(121), 1, + [246621] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12421), 1, - sym__space, + ACTIONS(541), 1, + anon_sym_RPAREN2, STATE(7872), 1, sym_comment, - [244542] = 3, - ACTIONS(3), 1, + [246631] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12423), 1, + ACTIONS(12141), 1, anon_sym_RBRACE, STATE(7873), 1, sym_comment, - [244552] = 3, - ACTIONS(3), 1, + [246641] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12425), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12143), 1, + anon_sym_LPAREN2, STATE(7874), 1, sym_comment, - [244562] = 3, - ACTIONS(3), 1, + [246651] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12427), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12145), 1, + anon_sym_RPAREN, STATE(7875), 1, sym_comment, - [244572] = 3, - ACTIONS(3), 1, + [246661] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12429), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(5059), 1, + anon_sym_LBRACK2, STATE(7876), 1, sym_comment, - [244582] = 3, - ACTIONS(121), 1, + [246671] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6291), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(12147), 1, + anon_sym_RPAREN, STATE(7877), 1, sym_comment, - [244592] = 3, - ACTIONS(3), 1, + [246681] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5082), 1, - anon_sym_LBRACK2, + ACTIONS(12149), 1, + anon_sym_EQ, STATE(7878), 1, sym_comment, - [244602] = 3, - ACTIONS(3), 1, + [246691] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12431), 1, + ACTIONS(12151), 1, anon_sym_RPAREN, STATE(7879), 1, sym_comment, - [244612] = 3, - ACTIONS(121), 1, + [246701] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8025), 1, - aux_sym_unquoted_token3, + ACTIONS(12153), 1, + anon_sym_RPAREN, STATE(7880), 1, sym_comment, - [244622] = 3, - ACTIONS(3), 1, + [246711] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12433), 1, - aux_sym_ctrl_match_token1, + ACTIONS(12155), 1, + aux_sym_record_entry_token1, STATE(7881), 1, sym_comment, - [244632] = 3, - ACTIONS(121), 1, + [246721] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4181), 1, - aux_sym_unquoted_token7, + ACTIONS(5786), 1, + aux_sym__unquoted_in_list_token2, STATE(7882), 1, sym_comment, - [244642] = 3, + [246731] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12435), 1, - anon_sym_RBRACK, + ACTIONS(1953), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7883), 1, sym_comment, - [244652] = 3, - ACTIONS(3), 1, + [246741] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12437), 1, + ACTIONS(12157), 1, anon_sym_RBRACE, STATE(7884), 1, sym_comment, - [244662] = 3, - ACTIONS(121), 1, + [246751] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5185), 1, - aux_sym_unquoted_token3, + ACTIONS(551), 1, + anon_sym_RPAREN2, STATE(7885), 1, sym_comment, - [244672] = 3, - ACTIONS(3), 1, + [246761] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12439), 1, - anon_sym_GT, + ACTIONS(12159), 1, + sym__table_head_separator, STATE(7886), 1, sym_comment, - [244682] = 3, - ACTIONS(121), 1, + [246771] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8909), 1, - aux_sym_unquoted_token7, + ACTIONS(12161), 1, + aux_sym__unquoted_with_expr_token1, STATE(7887), 1, sym_comment, - [244692] = 3, - ACTIONS(121), 1, + [246781] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11682), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(7289), 1, + anon_sym_LBRACK2, STATE(7888), 1, sym_comment, - [244702] = 3, - ACTIONS(3), 1, + [246791] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12441), 1, - anon_sym_RBRACK, + ACTIONS(12163), 1, + sym_identifier, STATE(7889), 1, sym_comment, - [244712] = 3, - ACTIONS(3), 1, + [246801] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6306), 1, - anon_sym_LBRACK2, + ACTIONS(4817), 1, + aux_sym_unquoted_token2, STATE(7890), 1, sym_comment, - [244722] = 3, - ACTIONS(3), 1, + [246811] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12443), 1, - anon_sym_RPAREN, + ACTIONS(1567), 1, + aux_sym__unquoted_in_record_token2, STATE(7891), 1, sym_comment, - [244732] = 3, - ACTIONS(3), 1, + [246821] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12445), 1, - anon_sym_RPAREN, + ACTIONS(12165), 1, + anon_sym_RBRACK, STATE(7892), 1, sym_comment, - [244742] = 3, - ACTIONS(3), 1, + [246831] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12447), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12167), 1, + ts_builtin_sym_end, STATE(7893), 1, sym_comment, - [244752] = 3, - ACTIONS(3), 1, + [246841] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12027), 1, - anon_sym_make, + ACTIONS(4722), 1, + aux_sym_unquoted_token2, STATE(7894), 1, sym_comment, - [244762] = 3, - ACTIONS(121), 1, + [246851] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12449), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(12169), 1, + anon_sym_RBRACK, STATE(7895), 1, sym_comment, - [244772] = 3, - ACTIONS(121), 1, + [246861] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12451), 1, - aux_sym_shebang_token1, + ACTIONS(12171), 1, + anon_sym_RPAREN, STATE(7896), 1, sym_comment, - [244782] = 3, - ACTIONS(3), 1, + [246871] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12453), 1, + ACTIONS(12173), 1, anon_sym_RBRACE, STATE(7897), 1, sym_comment, - [244792] = 3, - ACTIONS(3), 1, + [246881] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12455), 1, - anon_sym_RBRACK, + ACTIONS(12175), 1, + anon_sym_RBRACE, STATE(7898), 1, sym_comment, - [244802] = 3, - ACTIONS(3), 1, + [246891] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12457), 1, - anon_sym_RPAREN, + ACTIONS(7173), 1, + anon_sym_LBRACK2, STATE(7899), 1, sym_comment, - [244812] = 3, - ACTIONS(3), 1, + [246901] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12459), 1, - anon_sym_RBRACE, + ACTIONS(12177), 1, + anon_sym_EQ, STATE(7900), 1, sym_comment, - [244822] = 3, + [246911] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6876), 1, - anon_sym_LBRACK2, + ACTIONS(12179), 1, + sym__space, STATE(7901), 1, sym_comment, - [244832] = 3, - ACTIONS(3), 1, + [246921] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12461), 1, - anon_sym_RPAREN, + ACTIONS(12181), 1, + anon_sym_RBRACE, STATE(7902), 1, sym_comment, - [244842] = 3, - ACTIONS(3), 1, + [246931] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12463), 1, - anon_sym_RBRACE, + ACTIONS(12183), 1, + anon_sym_RPAREN, STATE(7903), 1, sym_comment, - [244852] = 3, - ACTIONS(3), 1, + [246941] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7591), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12185), 1, + anon_sym_RPAREN, STATE(7904), 1, sym_comment, - [244862] = 3, - ACTIONS(3), 1, + [246951] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12465), 1, - anon_sym_RPAREN, + ACTIONS(12187), 1, + sym_param_short_flag_identifier, STATE(7905), 1, sym_comment, - [244872] = 3, - ACTIONS(3), 1, + [246961] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12467), 1, - anon_sym_RPAREN, + ACTIONS(12189), 1, + anon_sym_RBRACE, STATE(7906), 1, sym_comment, - [244882] = 3, - ACTIONS(3), 1, + [246971] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12469), 1, - anon_sym_GT, + ACTIONS(12191), 1, + anon_sym_RBRACK, STATE(7907), 1, sym_comment, - [244892] = 3, - ACTIONS(3), 1, + [246981] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12471), 1, + ACTIONS(12193), 1, anon_sym_RPAREN, STATE(7908), 1, sym_comment, - [244902] = 3, + [246991] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_record_entry_token1, + ACTIONS(12195), 1, + aux_sym_comment_token1, STATE(7909), 1, sym_comment, - [244912] = 3, - ACTIONS(3), 1, + [247001] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12473), 1, - sym__table_head_separator, + ACTIONS(6220), 1, + anon_sym_LBRACK2, STATE(7910), 1, sym_comment, - [244922] = 3, - ACTIONS(121), 1, + [247011] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6668), 1, - aux_sym_unquoted_token7, + ACTIONS(4920), 1, + aux_sym_unquoted_token2, STATE(7911), 1, sym_comment, - [244932] = 3, + [247021] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3427), 1, - anon_sym_LBRACK2, + ACTIONS(10693), 1, + aux_sym_cmd_identifier_token37, STATE(7912), 1, sym_comment, - [244942] = 3, - ACTIONS(3), 1, + [247031] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6189), 1, - anon_sym_LBRACK2, + ACTIONS(12197), 1, + anon_sym_RPAREN, STATE(7913), 1, sym_comment, - [244952] = 3, - ACTIONS(3), 1, + [247041] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12475), 1, - anon_sym_RBRACK, + ACTIONS(12199), 1, + anon_sym_RPAREN, STATE(7914), 1, sym_comment, - [244962] = 3, - ACTIONS(3), 1, + [247051] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12477), 1, - anon_sym_in, + ACTIONS(2129), 1, + aux_sym_unquoted_token2, STATE(7915), 1, sym_comment, - [244972] = 3, - ACTIONS(3), 1, + [247061] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12479), 1, - anon_sym_RPAREN, + ACTIONS(7183), 1, + aux_sym_unquoted_token2, STATE(7916), 1, sym_comment, - [244982] = 3, - ACTIONS(3), 1, + [247071] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12481), 1, - sym_identifier, + ACTIONS(12201), 1, + anon_sym_GT, STATE(7917), 1, sym_comment, - [244992] = 3, - ACTIONS(3), 1, + [247081] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12483), 1, - anon_sym_RBRACE, + ACTIONS(12203), 1, + sym__table_head_separator, STATE(7918), 1, sym_comment, - [245002] = 3, + [247091] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12485), 1, - anon_sym_RBRACE, + ACTIONS(2083), 1, + aux_sym_unquoted_token4, STATE(7919), 1, sym_comment, - [245012] = 3, - ACTIONS(121), 1, + [247101] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5012), 1, - aux_sym_unquoted_token3, + ACTIONS(1953), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7920), 1, sym_comment, - [245022] = 3, - ACTIONS(3), 1, + [247111] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12487), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(6723), 1, + anon_sym_LBRACK2, STATE(7921), 1, sym_comment, - [245032] = 3, - ACTIONS(3), 1, + [247121] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12489), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12205), 1, + anon_sym_GT, STATE(7922), 1, sym_comment, - [245042] = 3, - ACTIONS(3), 1, + [247131] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9526), 1, - anon_sym_LBRACK2, + ACTIONS(12207), 1, + anon_sym_RBRACE, STATE(7923), 1, sym_comment, - [245052] = 3, - ACTIONS(121), 1, + [247141] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5690), 1, - aux_sym_unquoted_token3, + ACTIONS(12209), 1, + aux_sym_ctrl_match_token1, STATE(7924), 1, sym_comment, - [245062] = 3, - ACTIONS(3), 1, + [247151] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5002), 1, - aux_sym_unquoted_token6, + ACTIONS(12211), 1, + anon_sym_RPAREN, STATE(7925), 1, sym_comment, - [245072] = 3, - ACTIONS(3), 1, + [247161] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12491), 1, - anon_sym_RPAREN, + ACTIONS(12213), 1, + sym__table_head_separator, STATE(7926), 1, sym_comment, - [245082] = 3, + [247171] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12493), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(8797), 1, + aux_sym_unquoted_token4, STATE(7927), 1, sym_comment, - [245092] = 3, - ACTIONS(3), 1, + [247181] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12495), 1, - aux_sym_ctrl_match_token1, + ACTIONS(9386), 1, + aux_sym_unquoted_token2, STATE(7928), 1, sym_comment, - [245102] = 3, - ACTIONS(3), 1, + [247191] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12497), 1, - anon_sym_EQ, + ACTIONS(12215), 1, + sym_identifier, STATE(7929), 1, sym_comment, - [245112] = 3, + [247201] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12499), 1, - aux_sym_ctrl_match_token1, + ACTIONS(6600), 1, + aux_sym_unquoted_token4, STATE(7930), 1, sym_comment, - [245122] = 3, - ACTIONS(3), 1, + [247211] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12501), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12217), 1, + anon_sym_RBRACE, STATE(7931), 1, sym_comment, - [245132] = 3, - ACTIONS(3), 1, + [247221] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12503), 1, - anon_sym_RPAREN, + ACTIONS(3377), 1, + anon_sym_LBRACK2, STATE(7932), 1, sym_comment, - [245142] = 3, + [247231] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12505), 1, - anon_sym_RPAREN, + ACTIONS(12219), 1, + sym__space, STATE(7933), 1, sym_comment, - [245152] = 3, - ACTIONS(3), 1, + [247241] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2323), 1, - anon_sym_LBRACK2, + ACTIONS(12221), 1, + sym_identifier, STATE(7934), 1, sym_comment, - [245162] = 3, - ACTIONS(3), 1, + [247251] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12507), 1, - anon_sym_RPAREN, + ACTIONS(12223), 1, + anon_sym_RBRACK, STATE(7935), 1, sym_comment, - [245172] = 3, - ACTIONS(3), 1, + [247261] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12509), 1, - anon_sym_RBRACE, + ACTIONS(12225), 1, + anon_sym_RBRACK, STATE(7936), 1, sym_comment, - [245182] = 3, - ACTIONS(3), 1, + [247271] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12511), 1, - anon_sym_RBRACK, + ACTIONS(12227), 1, + anon_sym_RPAREN, STATE(7937), 1, sym_comment, - [245192] = 3, - ACTIONS(3), 1, + [247281] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12513), 1, - anon_sym_RPAREN, + ACTIONS(12229), 1, + anon_sym_RBRACE, STATE(7938), 1, sym_comment, - [245202] = 3, - ACTIONS(3), 1, + [247291] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12515), 1, - anon_sym_RBRACE, + ACTIONS(4728), 1, + aux_sym_record_entry_token1, STATE(7939), 1, sym_comment, - [245212] = 3, - ACTIONS(3), 1, + [247301] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12517), 1, - ts_builtin_sym_end, + ACTIONS(12231), 1, + anon_sym_RBRACE, STATE(7940), 1, sym_comment, - [245222] = 3, - ACTIONS(3), 1, + [247311] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12519), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12233), 1, + anon_sym_RBRACE, STATE(7941), 1, sym_comment, - [245232] = 3, - ACTIONS(3), 1, + [247321] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12521), 1, - anon_sym_RBRACE, + ACTIONS(2387), 1, + anon_sym_LBRACK2, STATE(7942), 1, sym_comment, - [245242] = 3, - ACTIONS(3), 1, + [247331] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12523), 1, + ACTIONS(12235), 1, anon_sym_RPAREN, STATE(7943), 1, sym_comment, - [245252] = 3, - ACTIONS(3), 1, + [247341] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2180), 1, - anon_sym_LBRACK2, + ACTIONS(12237), 1, + anon_sym_EQ, STATE(7944), 1, sym_comment, - [245262] = 3, - ACTIONS(3), 1, + [247351] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12525), 1, - anon_sym_RBRACE, + ACTIONS(12239), 1, + sym_identifier, STATE(7945), 1, sym_comment, - [245272] = 3, - ACTIONS(3), 1, + [247361] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12527), 1, - ts_builtin_sym_end, + ACTIONS(12241), 1, + anon_sym_RPAREN, STATE(7946), 1, sym_comment, - [245282] = 3, - ACTIONS(3), 1, + [247371] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12529), 1, + ACTIONS(12243), 1, anon_sym_RPAREN, STATE(7947), 1, sym_comment, - [245292] = 3, - ACTIONS(3), 1, + [247381] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12531), 1, - anon_sym_RBRACE, + ACTIONS(12245), 1, + anon_sym_EQ, STATE(7948), 1, sym_comment, - [245302] = 3, - ACTIONS(3), 1, + [247391] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4675), 1, - aux_sym_record_entry_token1, + ACTIONS(12247), 1, + anon_sym_RBRACK, STATE(7949), 1, sym_comment, - [245312] = 3, - ACTIONS(121), 1, + [247401] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9687), 1, - aux_sym_unquoted_token3, + ACTIONS(12249), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7950), 1, sym_comment, - [245322] = 3, - ACTIONS(3), 1, + [247411] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12533), 1, - aux_sym_ctrl_match_token1, + ACTIONS(2237), 1, + anon_sym_LBRACK2, STATE(7951), 1, sym_comment, - [245332] = 3, - ACTIONS(3), 1, + [247421] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12535), 1, - aux_sym_ctrl_match_token1, + ACTIONS(12251), 1, + anon_sym_RPAREN, STATE(7952), 1, sym_comment, - [245342] = 3, - ACTIONS(3), 1, + [247431] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12537), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(5335), 1, + aux_sym_cmd_identifier_token41, STATE(7953), 1, sym_comment, - [245352] = 3, - ACTIONS(3), 1, + [247441] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12539), 1, - anon_sym_in, + ACTIONS(12253), 1, + aux_sym_ctrl_match_token1, STATE(7954), 1, sym_comment, - [245362] = 3, - ACTIONS(121), 1, + [247451] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8510), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(12255), 1, + anon_sym_RPAREN, STATE(7955), 1, sym_comment, - [245372] = 3, - ACTIONS(3), 1, + [247461] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12541), 1, + ACTIONS(12257), 1, anon_sym_RPAREN, STATE(7956), 1, sym_comment, - [245382] = 3, - ACTIONS(3), 1, + [247471] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12059), 1, - aux_sym_ctrl_match_token1, + ACTIONS(7091), 1, + aux_sym_unquoted_token2, STATE(7957), 1, sym_comment, - [245392] = 3, - ACTIONS(3), 1, + [247481] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12543), 1, - anon_sym_RBRACE, + ACTIONS(12259), 1, + anon_sym_RPAREN, STATE(7958), 1, sym_comment, - [245402] = 3, - ACTIONS(3), 1, + [247491] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12545), 1, - anon_sym_EQ, + ACTIONS(12261), 1, + anon_sym_RPAREN, STATE(7959), 1, sym_comment, - [245412] = 3, - ACTIONS(3), 1, + [247501] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12547), 1, - anon_sym_RPAREN, + ACTIONS(12263), 1, + anon_sym_RBRACE, STATE(7960), 1, sym_comment, - [245422] = 3, - ACTIONS(3), 1, + [247511] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12549), 1, - anon_sym_RBRACK, + ACTIONS(12265), 1, + anon_sym_RBRACE, STATE(7961), 1, sym_comment, - [245432] = 3, - ACTIONS(3), 1, + [247521] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12551), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12267), 1, + anon_sym_RBRACE, STATE(7962), 1, sym_comment, - [245442] = 3, - ACTIONS(121), 1, + [247531] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7207), 1, - aux_sym_unquoted_token7, + ACTIONS(12269), 1, + anon_sym_RPAREN, STATE(7963), 1, sym_comment, - [245452] = 3, - ACTIONS(3), 1, + [247541] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12553), 1, + ACTIONS(12271), 1, anon_sym_RPAREN, STATE(7964), 1, sym_comment, - [245462] = 3, - ACTIONS(3), 1, + [247551] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12555), 1, - sym_identifier, + ACTIONS(12273), 1, + aux_sym_cmd_identifier_token41, STATE(7965), 1, sym_comment, - [245472] = 3, - ACTIONS(3), 1, + [247561] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12557), 1, - anon_sym_EQ_GT, + ACTIONS(12275), 1, + anon_sym_RBRACE, STATE(7966), 1, sym_comment, - [245482] = 3, - ACTIONS(3), 1, + [247571] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6848), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12277), 1, + anon_sym_RPAREN, STATE(7967), 1, sym_comment, - [245492] = 3, - ACTIONS(3), 1, + [247581] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12559), 1, - anon_sym_RBRACK, + ACTIONS(555), 1, + anon_sym_RPAREN2, STATE(7968), 1, sym_comment, - [245502] = 3, - ACTIONS(3), 1, + [247591] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11504), 1, - anon_sym_EQ_GT, + ACTIONS(12279), 1, + anon_sym_RPAREN, STATE(7969), 1, sym_comment, - [245512] = 3, + [247601] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12561), 1, - aux_sym_record_entry_token1, + ACTIONS(12281), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7970), 1, sym_comment, - [245522] = 3, + [247611] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12563), 1, - anon_sym_RBRACK, + ACTIONS(11696), 1, + aux_sym_cmd_identifier_token37, STATE(7971), 1, sym_comment, - [245532] = 3, + [247621] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12565), 1, - anon_sym_RPAREN, + ACTIONS(1953), 1, + aux_sym__unquoted_with_expr_token1, STATE(7972), 1, sym_comment, - [245542] = 3, - ACTIONS(3), 1, + [247631] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12567), 1, - anon_sym_EQ, + ACTIONS(12283), 1, + anon_sym_RPAREN, STATE(7973), 1, sym_comment, - [245552] = 3, - ACTIONS(3), 1, + [247641] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12569), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(603), 1, + anon_sym_RPAREN2, STATE(7974), 1, sym_comment, - [245562] = 3, - ACTIONS(3), 1, + [247651] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12571), 1, - anon_sym_RBRACE, + ACTIONS(12285), 1, + anon_sym_RPAREN, STATE(7975), 1, sym_comment, - [245572] = 3, - ACTIONS(121), 1, + [247661] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12573), 1, - aux_sym_shebang_token1, + ACTIONS(11484), 1, + aux_sym_cmd_identifier_token37, STATE(7976), 1, sym_comment, - [245582] = 3, - ACTIONS(3), 1, + [247671] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12575), 1, - sym_long_flag_identifier, + ACTIONS(5430), 1, + aux_sym_cmd_identifier_token41, STATE(7977), 1, sym_comment, - [245592] = 3, - ACTIONS(121), 1, + [247681] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5004), 1, - aux_sym_unquoted_token7, + ACTIONS(12287), 1, + anon_sym_RBRACE, STATE(7978), 1, sym_comment, - [245602] = 3, - ACTIONS(3), 1, + [247691] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12577), 1, - anon_sym_RPAREN, + ACTIONS(12289), 1, + anon_sym_RBRACK, STATE(7979), 1, sym_comment, - [245612] = 3, - ACTIONS(3), 1, + [247701] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12579), 1, - anon_sym_RBRACE, + ACTIONS(12291), 1, + anon_sym_RPAREN, STATE(7980), 1, sym_comment, - [245622] = 3, - ACTIONS(3), 1, + [247711] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12581), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(5562), 1, + aux_sym_unquoted_token2, STATE(7981), 1, sym_comment, - [245632] = 3, - ACTIONS(3), 1, + [247721] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12583), 1, - anon_sym_RBRACE, + ACTIONS(12293), 1, + anon_sym_RPAREN, STATE(7982), 1, sym_comment, - [245642] = 3, - ACTIONS(3), 1, + [247731] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12585), 1, - anon_sym_RPAREN2, + ACTIONS(12295), 1, + anon_sym_RPAREN, STATE(7983), 1, sym_comment, - [245652] = 3, - ACTIONS(121), 1, + [247741] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6656), 1, - aux_sym_unquoted_token7, + ACTIONS(11774), 1, + anon_sym_make, STATE(7984), 1, sym_comment, - [245662] = 3, - ACTIONS(3), 1, + [247751] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12587), 1, - anon_sym_RBRACK, + ACTIONS(12297), 1, + anon_sym_RBRACE, STATE(7985), 1, sym_comment, - [245672] = 3, + [247761] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12589), 1, - anon_sym_RPAREN, + ACTIONS(7059), 1, + aux_sym_unquoted_token4, STATE(7986), 1, sym_comment, - [245682] = 3, - ACTIONS(3), 1, + [247771] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12591), 1, + ACTIONS(12299), 1, anon_sym_RPAREN, STATE(7987), 1, sym_comment, - [245692] = 3, - ACTIONS(3), 1, + [247781] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12130), 1, - anon_sym_LPAREN2, + ACTIONS(12301), 1, + anon_sym_RBRACK, STATE(7988), 1, sym_comment, - [245702] = 3, - ACTIONS(3), 1, + [247791] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12593), 1, - anon_sym_RBRACE, + ACTIONS(12303), 1, + anon_sym_RPAREN, STATE(7989), 1, sym_comment, - [245712] = 3, - ACTIONS(3), 1, + [247801] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12595), 1, - anon_sym_RBRACE, + ACTIONS(12305), 1, + aux_sym_ctrl_match_token1, STATE(7990), 1, sym_comment, - [245722] = 3, - ACTIONS(3), 1, + [247811] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12597), 1, - anon_sym_make, + ACTIONS(12307), 1, + anon_sym_EQ, STATE(7991), 1, sym_comment, - [245732] = 3, - ACTIONS(3), 1, + [247821] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12599), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12309), 1, + anon_sym_RBRACE, STATE(7992), 1, sym_comment, - [245742] = 3, - ACTIONS(3), 1, + [247831] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12601), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12311), 1, + anon_sym_RPAREN, STATE(7993), 1, sym_comment, - [245752] = 3, + [247841] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12603), 1, - sym_identifier, + ACTIONS(1943), 1, + aux_sym__unquoted_with_expr_token1, STATE(7994), 1, sym_comment, - [245762] = 3, - ACTIONS(3), 1, + [247851] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12605), 1, - anon_sym_RBRACK, + ACTIONS(12313), 1, + anon_sym_RBRACE, STATE(7995), 1, sym_comment, - [245772] = 3, + [247861] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12607), 1, - anon_sym_RPAREN, + ACTIONS(1943), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7996), 1, sym_comment, - [245782] = 3, - ACTIONS(3), 1, + [247871] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12609), 1, - anon_sym_in, + ACTIONS(12315), 1, + anon_sym_RBRACK, STATE(7997), 1, sym_comment, - [245792] = 3, - ACTIONS(3), 1, + [247881] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12611), 1, - anon_sym_GT, + ACTIONS(12317), 1, + anon_sym_EQ, STATE(7998), 1, sym_comment, - [245802] = 3, - ACTIONS(3), 1, + [247891] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12613), 1, - anon_sym_in, + ACTIONS(12319), 1, + anon_sym_RPAREN, STATE(7999), 1, sym_comment, - [245812] = 3, - ACTIONS(3), 1, + [247901] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12615), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(4889), 1, + aux_sym_unquoted_token2, STATE(8000), 1, sym_comment, - [245822] = 3, - ACTIONS(3), 1, + [247911] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12617), 1, - anon_sym_RBRACK, + ACTIONS(12321), 1, + anon_sym_LPAREN2, STATE(8001), 1, sym_comment, - [245832] = 3, - ACTIONS(121), 1, + [247921] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5026), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(12323), 1, + aux_sym_ctrl_match_token1, STATE(8002), 1, sym_comment, - [245842] = 3, - ACTIONS(3), 1, + [247931] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12619), 1, - anon_sym_EQ, + ACTIONS(12325), 1, + anon_sym_EQ_GT, STATE(8003), 1, sym_comment, - [245852] = 3, - ACTIONS(3), 1, + [247941] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12621), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1457), 1, + aux_sym_unquoted_token2, STATE(8004), 1, sym_comment, - [245862] = 3, + [247951] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12623), 1, - anon_sym_RBRACK, + ACTIONS(7183), 1, + aux_sym_unquoted_token4, STATE(8005), 1, sym_comment, - [245872] = 3, - ACTIONS(3), 1, + [247961] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12625), 1, - anon_sym_LPAREN2, + ACTIONS(12327), 1, + anon_sym_RBRACK, STATE(8006), 1, sym_comment, - [245882] = 3, - ACTIONS(3), 1, + [247971] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12627), 1, - anon_sym_RBRACE, + ACTIONS(12329), 1, + aux_sym_ctrl_match_token1, STATE(8007), 1, sym_comment, - [245892] = 3, - ACTIONS(3), 1, + [247981] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12629), 1, - aux_sym_record_entry_token1, + ACTIONS(12331), 1, + anon_sym_RPAREN, STATE(8008), 1, sym_comment, - [245902] = 3, - ACTIONS(3), 1, + [247991] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(549), 1, - ts_builtin_sym_end, + ACTIONS(12333), 1, + anon_sym_in, STATE(8009), 1, sym_comment, - [245912] = 3, - ACTIONS(3), 1, + [248001] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6791), 1, - anon_sym_LPAREN2, + ACTIONS(12335), 1, + anon_sym_RBRACE, STATE(8010), 1, sym_comment, - [245922] = 3, - ACTIONS(3), 1, + [248011] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12631), 1, - anon_sym_RPAREN2, + ACTIONS(12337), 1, + anon_sym_in, STATE(8011), 1, sym_comment, - [245932] = 3, - ACTIONS(3), 1, + [248021] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12633), 1, - sym_param_short_flag_identifier, + ACTIONS(12339), 1, + anon_sym_RBRACE, STATE(8012), 1, sym_comment, - [245942] = 3, - ACTIONS(3), 1, + [248031] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12635), 1, - sym_identifier, + ACTIONS(2957), 1, + aux_sym_unquoted_token2, STATE(8013), 1, sym_comment, - [245952] = 3, - ACTIONS(3), 1, + [248041] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12637), 1, + ACTIONS(12341), 1, anon_sym_RBRACK, STATE(8014), 1, sym_comment, - [245962] = 3, - ACTIONS(3), 1, + [248051] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5189), 1, - aux_sym_unquoted_token6, + ACTIONS(12343), 1, + aux_sym_cmd_identifier_token41, STATE(8015), 1, sym_comment, - [245972] = 3, - ACTIONS(121), 1, + [248061] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6842), 1, - aux_sym_unquoted_token3, + ACTIONS(12345), 1, + anon_sym_RPAREN, STATE(8016), 1, sym_comment, - [245982] = 3, - ACTIONS(3), 1, + [248071] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12639), 1, - anon_sym_RPAREN, + ACTIONS(12347), 1, + anon_sym_RBRACK, STATE(8017), 1, sym_comment, - [245992] = 3, - ACTIONS(3), 1, + [248081] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12641), 1, - anon_sym_LPAREN2, + ACTIONS(12349), 1, + anon_sym_RPAREN, STATE(8018), 1, sym_comment, - [246002] = 3, - ACTIONS(3), 1, + [248091] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12643), 1, - anon_sym_RBRACE, + ACTIONS(12351), 1, + anon_sym_EQ, STATE(8019), 1, sym_comment, - [246012] = 3, + [248101] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12645), 1, - anon_sym_RBRACE, + ACTIONS(12353), 1, + aux_sym_shebang_token1, STATE(8020), 1, sym_comment, - [246022] = 3, - ACTIONS(3), 1, + [248111] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12647), 1, + ACTIONS(12355), 1, anon_sym_RBRACE, STATE(8021), 1, sym_comment, - [246032] = 3, - ACTIONS(3), 1, + [248121] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5569), 1, - anon_sym_RBRACK, + ACTIONS(12357), 1, + anon_sym_RBRACE, STATE(8022), 1, sym_comment, - [246042] = 3, - ACTIONS(3), 1, + [248131] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12649), 1, - anon_sym_RBRACK, + ACTIONS(12359), 1, + anon_sym_RPAREN, STATE(8023), 1, sym_comment, - [246052] = 3, + [248141] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12651), 1, - anon_sym_RPAREN, + ACTIONS(7091), 1, + aux_sym_unquoted_token4, STATE(8024), 1, sym_comment, - [246062] = 3, - ACTIONS(3), 1, + [248151] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12653), 1, + ACTIONS(12361), 1, anon_sym_RPAREN, STATE(8025), 1, sym_comment, - [246072] = 3, - ACTIONS(3), 1, + [248161] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5521), 1, - anon_sym_RBRACK, + ACTIONS(6081), 1, + anon_sym_LBRACK2, STATE(8026), 1, sym_comment, - [246082] = 3, - ACTIONS(3), 1, + [248171] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12655), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12363), 1, + anon_sym_RPAREN, STATE(8027), 1, sym_comment, - [246092] = 3, + [248181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, - anon_sym_LBRACK2, + ACTIONS(1943), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(8028), 1, sym_comment, - [246102] = 3, - ACTIONS(121), 1, + [248191] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11809), 1, - aux_sym_cmd_identifier_token37, + ACTIONS(12365), 1, + anon_sym_RPAREN2, STATE(8029), 1, sym_comment, - [246112] = 3, + [248201] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12657), 1, - anon_sym_EQ, + ACTIONS(5071), 1, + aux_sym_cmd_identifier_token37, STATE(8030), 1, sym_comment, - [246122] = 3, - ACTIONS(3), 1, + [248211] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12659), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12367), 1, + aux_sym_cmd_identifier_token41, STATE(8031), 1, sym_comment, - [246132] = 3, - ACTIONS(121), 1, + [248221] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12661), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(6600), 1, + aux_sym_unquoted_token2, STATE(8032), 1, sym_comment, - [246142] = 3, - ACTIONS(3), 1, + [248231] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12663), 1, + ACTIONS(12369), 1, anon_sym_RBRACE, STATE(8033), 1, sym_comment, - [246152] = 3, - ACTIONS(3), 1, + [248241] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12665), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(6662), 1, + anon_sym_LPAREN2, STATE(8034), 1, sym_comment, - [246162] = 3, - ACTIONS(3), 1, + [248251] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12667), 1, - aux_sym_ctrl_match_token1, + ACTIONS(12371), 1, + anon_sym_RBRACK, STATE(8035), 1, sym_comment, - [246172] = 3, - ACTIONS(3), 1, + [248261] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12669), 1, - anon_sym_RPAREN, + ACTIONS(12373), 1, + anon_sym_LPAREN2, STATE(8036), 1, sym_comment, - [246182] = 3, - ACTIONS(121), 1, + [248271] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7254), 1, - aux_sym_unquoted_token7, + ACTIONS(12375), 1, + anon_sym_RBRACE, STATE(8037), 1, sym_comment, - [246192] = 3, - ACTIONS(3), 1, + [248281] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12671), 1, - anon_sym_RPAREN, + ACTIONS(12377), 1, + anon_sym_LPAREN2, STATE(8038), 1, sym_comment, - [246202] = 3, - ACTIONS(3), 1, + [248291] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12673), 1, - anon_sym_RPAREN, + ACTIONS(12379), 1, + anon_sym_RBRACK, STATE(8039), 1, sym_comment, - [246212] = 3, - ACTIONS(3), 1, + [248301] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6787), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(12381), 1, + anon_sym_LPAREN2, STATE(8040), 1, sym_comment, - [246222] = 1, - ACTIONS(12675), 1, + [248311] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12383), 1, + anon_sym_RBRACK, + STATE(8041), 1, + sym_comment, + [248321] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12385), 1, + anon_sym_RPAREN, + STATE(8042), 1, + sym_comment, + [248331] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12387), 1, + anon_sym_RBRACE, + STATE(8043), 1, + sym_comment, + [248341] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12389), 1, + aux_sym_ctrl_match_token1, + STATE(8044), 1, + sym_comment, + [248351] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12389), 1, + aux_sym_ctrl_match_token1, + STATE(8045), 1, + sym_comment, + [248361] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12391), 1, + anon_sym_RBRACE, + STATE(8046), 1, + sym_comment, + [248371] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12393), 1, + anon_sym_RBRACE, + STATE(8047), 1, + sym_comment, + [248381] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12395), 1, + anon_sym_RBRACK, + STATE(8048), 1, + sym_comment, + [248391] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6636), 1, + aux_sym_unquoted_token2, + STATE(8049), 1, + sym_comment, + [248401] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12397), 1, + aux_sym_ctrl_match_token1, + STATE(8050), 1, + sym_comment, + [248411] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4302), 1, + aux_sym_unquoted_token2, + STATE(8051), 1, + sym_comment, + [248421] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12399), 1, + anon_sym_RPAREN, + STATE(8052), 1, + sym_comment, + [248431] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3269), 1, + aux_sym_record_entry_token1, + STATE(8053), 1, + sym_comment, + [248441] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12401), 1, + sym__table_head_separator, + STATE(8054), 1, + sym_comment, + [248451] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12403), 1, + anon_sym_RPAREN, + STATE(8055), 1, + sym_comment, + [248461] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12405), 1, + anon_sym_RBRACE, + STATE(8056), 1, + sym_comment, + [248471] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12407), 1, + anon_sym_RPAREN, + STATE(8057), 1, + sym_comment, + [248481] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11756), 1, + aux_sym__record_key_token1, + STATE(8058), 1, + sym_comment, + [248491] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5562), 1, + aux_sym_unquoted_token4, + STATE(8059), 1, + sym_comment, + [248501] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token37, + STATE(8060), 1, + sym_comment, + [248511] = 1, + ACTIONS(12409), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1684)] = 0, - [SMALL_STATE(1685)] = 73, - [SMALL_STATE(1686)] = 150, - [SMALL_STATE(1687)] = 223, - [SMALL_STATE(1688)] = 298, - [SMALL_STATE(1689)] = 383, - [SMALL_STATE(1690)] = 460, - [SMALL_STATE(1691)] = 565, - [SMALL_STATE(1692)] = 640, - [SMALL_STATE(1693)] = 713, - [SMALL_STATE(1694)] = 788, - [SMALL_STATE(1695)] = 861, - [SMALL_STATE(1696)] = 938, - [SMALL_STATE(1697)] = 1011, - [SMALL_STATE(1698)] = 1088, - [SMALL_STATE(1699)] = 1165, - [SMALL_STATE(1700)] = 1242, - [SMALL_STATE(1701)] = 1319, - [SMALL_STATE(1702)] = 1394, - [SMALL_STATE(1703)] = 1471, - [SMALL_STATE(1704)] = 1544, - [SMALL_STATE(1705)] = 1649, - [SMALL_STATE(1706)] = 1724, - [SMALL_STATE(1707)] = 1801, - [SMALL_STATE(1708)] = 1874, - [SMALL_STATE(1709)] = 1947, - [SMALL_STATE(1710)] = 2020, - [SMALL_STATE(1711)] = 2099, - [SMALL_STATE(1712)] = 2176, - [SMALL_STATE(1713)] = 2251, - [SMALL_STATE(1714)] = 2326, - [SMALL_STATE(1715)] = 2401, - [SMALL_STATE(1716)] = 2478, - [SMALL_STATE(1717)] = 2561, - [SMALL_STATE(1718)] = 2634, - [SMALL_STATE(1719)] = 2707, - [SMALL_STATE(1720)] = 2784, - [SMALL_STATE(1721)] = 2861, - [SMALL_STATE(1722)] = 2938, - [SMALL_STATE(1723)] = 3015, - [SMALL_STATE(1724)] = 3088, - [SMALL_STATE(1725)] = 3161, - [SMALL_STATE(1726)] = 3238, - [SMALL_STATE(1727)] = 3311, - [SMALL_STATE(1728)] = 3384, - [SMALL_STATE(1729)] = 3461, - [SMALL_STATE(1730)] = 3538, - [SMALL_STATE(1731)] = 3613, - [SMALL_STATE(1732)] = 3690, - [SMALL_STATE(1733)] = 3767, - [SMALL_STATE(1734)] = 3842, - [SMALL_STATE(1735)] = 3919, - [SMALL_STATE(1736)] = 3994, - [SMALL_STATE(1737)] = 4067, - [SMALL_STATE(1738)] = 4140, - [SMALL_STATE(1739)] = 4215, - [SMALL_STATE(1740)] = 4324, - [SMALL_STATE(1741)] = 4401, - [SMALL_STATE(1742)] = 4506, - [SMALL_STATE(1743)] = 4579, - [SMALL_STATE(1744)] = 4656, - [SMALL_STATE(1745)] = 4733, - [SMALL_STATE(1746)] = 4806, - [SMALL_STATE(1747)] = 4915, - [SMALL_STATE(1748)] = 4992, - [SMALL_STATE(1749)] = 5069, - [SMALL_STATE(1750)] = 5146, - [SMALL_STATE(1751)] = 5221, - [SMALL_STATE(1752)] = 5298, - [SMALL_STATE(1753)] = 5373, - [SMALL_STATE(1754)] = 5448, - [SMALL_STATE(1755)] = 5521, - [SMALL_STATE(1756)] = 5598, - [SMALL_STATE(1757)] = 5675, - [SMALL_STATE(1758)] = 5752, - [SMALL_STATE(1759)] = 5829, - [SMALL_STATE(1760)] = 5906, - [SMALL_STATE(1761)] = 5983, - [SMALL_STATE(1762)] = 6058, - [SMALL_STATE(1763)] = 6167, - [SMALL_STATE(1764)] = 6242, - [SMALL_STATE(1765)] = 6317, - [SMALL_STATE(1766)] = 6392, - [SMALL_STATE(1767)] = 6465, - [SMALL_STATE(1768)] = 6537, - [SMALL_STATE(1769)] = 6609, - [SMALL_STATE(1770)] = 6681, - [SMALL_STATE(1771)] = 6753, - [SMALL_STATE(1772)] = 6825, - [SMALL_STATE(1773)] = 6897, - [SMALL_STATE(1774)] = 6969, - [SMALL_STATE(1775)] = 7041, - [SMALL_STATE(1776)] = 7113, - [SMALL_STATE(1777)] = 7185, - [SMALL_STATE(1778)] = 7257, - [SMALL_STATE(1779)] = 7329, - [SMALL_STATE(1780)] = 7401, - [SMALL_STATE(1781)] = 7473, - [SMALL_STATE(1782)] = 7545, - [SMALL_STATE(1783)] = 7617, - [SMALL_STATE(1784)] = 7689, - [SMALL_STATE(1785)] = 7761, - [SMALL_STATE(1786)] = 7833, - [SMALL_STATE(1787)] = 7905, - [SMALL_STATE(1788)] = 7979, - [SMALL_STATE(1789)] = 8053, - [SMALL_STATE(1790)] = 8125, - [SMALL_STATE(1791)] = 8199, - [SMALL_STATE(1792)] = 8271, - [SMALL_STATE(1793)] = 8343, - [SMALL_STATE(1794)] = 8415, - [SMALL_STATE(1795)] = 8487, - [SMALL_STATE(1796)] = 8559, - [SMALL_STATE(1797)] = 8631, - [SMALL_STATE(1798)] = 8703, - [SMALL_STATE(1799)] = 8775, - [SMALL_STATE(1800)] = 8919, - [SMALL_STATE(1801)] = 8991, - [SMALL_STATE(1802)] = 9063, - [SMALL_STATE(1803)] = 9135, - [SMALL_STATE(1804)] = 9207, - [SMALL_STATE(1805)] = 9279, - [SMALL_STATE(1806)] = 9351, - [SMALL_STATE(1807)] = 9423, - [SMALL_STATE(1808)] = 9567, - [SMALL_STATE(1809)] = 9641, - [SMALL_STATE(1810)] = 9715, - [SMALL_STATE(1811)] = 9787, - [SMALL_STATE(1812)] = 9859, - [SMALL_STATE(1813)] = 9931, - [SMALL_STATE(1814)] = 10003, - [SMALL_STATE(1815)] = 10075, - [SMALL_STATE(1816)] = 10147, - [SMALL_STATE(1817)] = 10219, - [SMALL_STATE(1818)] = 10291, - [SMALL_STATE(1819)] = 10363, - [SMALL_STATE(1820)] = 10435, - [SMALL_STATE(1821)] = 10507, - [SMALL_STATE(1822)] = 10579, - [SMALL_STATE(1823)] = 10651, - [SMALL_STATE(1824)] = 10723, - [SMALL_STATE(1825)] = 10795, - [SMALL_STATE(1826)] = 10867, - [SMALL_STATE(1827)] = 10939, - [SMALL_STATE(1828)] = 11011, - [SMALL_STATE(1829)] = 11083, - [SMALL_STATE(1830)] = 11155, - [SMALL_STATE(1831)] = 11227, - [SMALL_STATE(1832)] = 11299, - [SMALL_STATE(1833)] = 11371, - [SMALL_STATE(1834)] = 11443, - [SMALL_STATE(1835)] = 11515, - [SMALL_STATE(1836)] = 11587, - [SMALL_STATE(1837)] = 11659, - [SMALL_STATE(1838)] = 11731, - [SMALL_STATE(1839)] = 11803, - [SMALL_STATE(1840)] = 11875, - [SMALL_STATE(1841)] = 11947, - [SMALL_STATE(1842)] = 12019, - [SMALL_STATE(1843)] = 12091, - [SMALL_STATE(1844)] = 12163, - [SMALL_STATE(1845)] = 12235, - [SMALL_STATE(1846)] = 12307, - [SMALL_STATE(1847)] = 12379, - [SMALL_STATE(1848)] = 12451, - [SMALL_STATE(1849)] = 12523, - [SMALL_STATE(1850)] = 12595, - [SMALL_STATE(1851)] = 12667, - [SMALL_STATE(1852)] = 12739, - [SMALL_STATE(1853)] = 12811, - [SMALL_STATE(1854)] = 12883, - [SMALL_STATE(1855)] = 12955, - [SMALL_STATE(1856)] = 13027, - [SMALL_STATE(1857)] = 13099, - [SMALL_STATE(1858)] = 13171, - [SMALL_STATE(1859)] = 13243, - [SMALL_STATE(1860)] = 13315, - [SMALL_STATE(1861)] = 13387, - [SMALL_STATE(1862)] = 13459, - [SMALL_STATE(1863)] = 13533, - [SMALL_STATE(1864)] = 13607, - [SMALL_STATE(1865)] = 13681, - [SMALL_STATE(1866)] = 13753, - [SMALL_STATE(1867)] = 13825, - [SMALL_STATE(1868)] = 13897, - [SMALL_STATE(1869)] = 13971, - [SMALL_STATE(1870)] = 14045, - [SMALL_STATE(1871)] = 14119, - [SMALL_STATE(1872)] = 14193, - [SMALL_STATE(1873)] = 14265, - [SMALL_STATE(1874)] = 14337, - [SMALL_STATE(1875)] = 14411, - [SMALL_STATE(1876)] = 14485, - [SMALL_STATE(1877)] = 14557, - [SMALL_STATE(1878)] = 14629, - [SMALL_STATE(1879)] = 14701, - [SMALL_STATE(1880)] = 14773, - [SMALL_STATE(1881)] = 14845, - [SMALL_STATE(1882)] = 14917, - [SMALL_STATE(1883)] = 14989, - [SMALL_STATE(1884)] = 15061, - [SMALL_STATE(1885)] = 15133, - [SMALL_STATE(1886)] = 15205, - [SMALL_STATE(1887)] = 15277, - [SMALL_STATE(1888)] = 15349, - [SMALL_STATE(1889)] = 15421, - [SMALL_STATE(1890)] = 15505, - [SMALL_STATE(1891)] = 15585, - [SMALL_STATE(1892)] = 15661, - [SMALL_STATE(1893)] = 15743, - [SMALL_STATE(1894)] = 15815, - [SMALL_STATE(1895)] = 15887, - [SMALL_STATE(1896)] = 16031, - [SMALL_STATE(1897)] = 16103, - [SMALL_STATE(1898)] = 16247, - [SMALL_STATE(1899)] = 16321, - [SMALL_STATE(1900)] = 16393, - [SMALL_STATE(1901)] = 16537, - [SMALL_STATE(1902)] = 16681, - [SMALL_STATE(1903)] = 16825, - [SMALL_STATE(1904)] = 16969, - [SMALL_STATE(1905)] = 17043, - [SMALL_STATE(1906)] = 17115, - [SMALL_STATE(1907)] = 17186, - [SMALL_STATE(1908)] = 17263, - [SMALL_STATE(1909)] = 17334, - [SMALL_STATE(1910)] = 17411, - [SMALL_STATE(1911)] = 17488, - [SMALL_STATE(1912)] = 17565, - [SMALL_STATE(1913)] = 17636, - [SMALL_STATE(1914)] = 17713, - [SMALL_STATE(1915)] = 17784, - [SMALL_STATE(1916)] = 17855, - [SMALL_STATE(1917)] = 17932, - [SMALL_STATE(1918)] = 18009, - [SMALL_STATE(1919)] = 18086, - [SMALL_STATE(1920)] = 18157, - [SMALL_STATE(1921)] = 18228, - [SMALL_STATE(1922)] = 18299, - [SMALL_STATE(1923)] = 18370, - [SMALL_STATE(1924)] = 18447, - [SMALL_STATE(1925)] = 18518, - [SMALL_STATE(1926)] = 18589, - [SMALL_STATE(1927)] = 18666, - [SMALL_STATE(1928)] = 18737, - [SMALL_STATE(1929)] = 18808, - [SMALL_STATE(1930)] = 18885, - [SMALL_STATE(1931)] = 18956, - [SMALL_STATE(1932)] = 19027, - [SMALL_STATE(1933)] = 19104, - [SMALL_STATE(1934)] = 19175, - [SMALL_STATE(1935)] = 19246, - [SMALL_STATE(1936)] = 19317, - [SMALL_STATE(1937)] = 19388, - [SMALL_STATE(1938)] = 19459, - [SMALL_STATE(1939)] = 19530, - [SMALL_STATE(1940)] = 19601, - [SMALL_STATE(1941)] = 19672, - [SMALL_STATE(1942)] = 19743, - [SMALL_STATE(1943)] = 19814, - [SMALL_STATE(1944)] = 19885, - [SMALL_STATE(1945)] = 19956, - [SMALL_STATE(1946)] = 20027, - [SMALL_STATE(1947)] = 20098, - [SMALL_STATE(1948)] = 20169, - [SMALL_STATE(1949)] = 20240, - [SMALL_STATE(1950)] = 20315, - [SMALL_STATE(1951)] = 20386, - [SMALL_STATE(1952)] = 20465, - [SMALL_STATE(1953)] = 20544, - [SMALL_STATE(1954)] = 20623, - [SMALL_STATE(1955)] = 20694, - [SMALL_STATE(1956)] = 20765, - [SMALL_STATE(1957)] = 20842, - [SMALL_STATE(1958)] = 20921, - [SMALL_STATE(1959)] = 20992, - [SMALL_STATE(1960)] = 21063, - [SMALL_STATE(1961)] = 21134, - [SMALL_STATE(1962)] = 21205, - [SMALL_STATE(1963)] = 21276, - [SMALL_STATE(1964)] = 21347, - [SMALL_STATE(1965)] = 21418, - [SMALL_STATE(1966)] = 21489, - [SMALL_STATE(1967)] = 21560, - [SMALL_STATE(1968)] = 21631, - [SMALL_STATE(1969)] = 21710, - [SMALL_STATE(1970)] = 21789, - [SMALL_STATE(1971)] = 21860, - [SMALL_STATE(1972)] = 21939, - [SMALL_STATE(1973)] = 22018, - [SMALL_STATE(1974)] = 22089, - [SMALL_STATE(1975)] = 22160, - [SMALL_STATE(1976)] = 22231, - [SMALL_STATE(1977)] = 22302, - [SMALL_STATE(1978)] = 22373, - [SMALL_STATE(1979)] = 22444, - [SMALL_STATE(1980)] = 22515, - [SMALL_STATE(1981)] = 22586, - [SMALL_STATE(1982)] = 22657, - [SMALL_STATE(1983)] = 22728, - [SMALL_STATE(1984)] = 22799, - [SMALL_STATE(1985)] = 22870, - [SMALL_STATE(1986)] = 22941, - [SMALL_STATE(1987)] = 23012, - [SMALL_STATE(1988)] = 23083, - [SMALL_STATE(1989)] = 23154, - [SMALL_STATE(1990)] = 23225, - [SMALL_STATE(1991)] = 23296, - [SMALL_STATE(1992)] = 23367, - [SMALL_STATE(1993)] = 23438, - [SMALL_STATE(1994)] = 23509, - [SMALL_STATE(1995)] = 23580, - [SMALL_STATE(1996)] = 23651, - [SMALL_STATE(1997)] = 23722, - [SMALL_STATE(1998)] = 23793, - [SMALL_STATE(1999)] = 23864, - [SMALL_STATE(2000)] = 23935, - [SMALL_STATE(2001)] = 24006, - [SMALL_STATE(2002)] = 24077, - [SMALL_STATE(2003)] = 24154, - [SMALL_STATE(2004)] = 24231, - [SMALL_STATE(2005)] = 24308, - [SMALL_STATE(2006)] = 24385, - [SMALL_STATE(2007)] = 24462, - [SMALL_STATE(2008)] = 24539, - [SMALL_STATE(2009)] = 24616, - [SMALL_STATE(2010)] = 24693, - [SMALL_STATE(2011)] = 24770, - [SMALL_STATE(2012)] = 24847, - [SMALL_STATE(2013)] = 24924, - [SMALL_STATE(2014)] = 25001, - [SMALL_STATE(2015)] = 25072, - [SMALL_STATE(2016)] = 25149, - [SMALL_STATE(2017)] = 25226, - [SMALL_STATE(2018)] = 25297, - [SMALL_STATE(2019)] = 25374, - [SMALL_STATE(2020)] = 25455, - [SMALL_STATE(2021)] = 25526, - [SMALL_STATE(2022)] = 25597, - [SMALL_STATE(2023)] = 25668, - [SMALL_STATE(2024)] = 25747, - [SMALL_STATE(2025)] = 25826, - [SMALL_STATE(2026)] = 25903, - [SMALL_STATE(2027)] = 25982, - [SMALL_STATE(2028)] = 26061, - [SMALL_STATE(2029)] = 26140, - [SMALL_STATE(2030)] = 26219, - [SMALL_STATE(2031)] = 26298, - [SMALL_STATE(2032)] = 26377, - [SMALL_STATE(2033)] = 26456, - [SMALL_STATE(2034)] = 26535, - [SMALL_STATE(2035)] = 26614, - [SMALL_STATE(2036)] = 26693, - [SMALL_STATE(2037)] = 26768, - [SMALL_STATE(2038)] = 26839, - [SMALL_STATE(2039)] = 26916, - [SMALL_STATE(2040)] = 26987, - [SMALL_STATE(2041)] = 27064, - [SMALL_STATE(2042)] = 27135, - [SMALL_STATE(2043)] = 27212, - [SMALL_STATE(2044)] = 27283, - [SMALL_STATE(2045)] = 27354, - [SMALL_STATE(2046)] = 27425, - [SMALL_STATE(2047)] = 27502, - [SMALL_STATE(2048)] = 27573, - [SMALL_STATE(2049)] = 27644, - [SMALL_STATE(2050)] = 27715, - [SMALL_STATE(2051)] = 27786, - [SMALL_STATE(2052)] = 27857, - [SMALL_STATE(2053)] = 27928, - [SMALL_STATE(2054)] = 27999, - [SMALL_STATE(2055)] = 28070, - [SMALL_STATE(2056)] = 28141, - [SMALL_STATE(2057)] = 28212, - [SMALL_STATE(2058)] = 28283, - [SMALL_STATE(2059)] = 28354, - [SMALL_STATE(2060)] = 28425, - [SMALL_STATE(2061)] = 28496, - [SMALL_STATE(2062)] = 28567, - [SMALL_STATE(2063)] = 28638, - [SMALL_STATE(2064)] = 28709, - [SMALL_STATE(2065)] = 28780, - [SMALL_STATE(2066)] = 28851, - [SMALL_STATE(2067)] = 28926, - [SMALL_STATE(2068)] = 29005, - [SMALL_STATE(2069)] = 29076, - [SMALL_STATE(2070)] = 29153, - [SMALL_STATE(2071)] = 29230, - [SMALL_STATE(2072)] = 29307, - [SMALL_STATE(2073)] = 29384, - [SMALL_STATE(2074)] = 29461, - [SMALL_STATE(2075)] = 29538, - [SMALL_STATE(2076)] = 29615, - [SMALL_STATE(2077)] = 29692, - [SMALL_STATE(2078)] = 29769, - [SMALL_STATE(2079)] = 29846, - [SMALL_STATE(2080)] = 29927, - [SMALL_STATE(2081)] = 30004, - [SMALL_STATE(2082)] = 30081, - [SMALL_STATE(2083)] = 30160, - [SMALL_STATE(2084)] = 30237, - [SMALL_STATE(2085)] = 30308, - [SMALL_STATE(2086)] = 30385, - [SMALL_STATE(2087)] = 30456, - [SMALL_STATE(2088)] = 30533, - [SMALL_STATE(2089)] = 30612, - [SMALL_STATE(2090)] = 30683, - [SMALL_STATE(2091)] = 30754, - [SMALL_STATE(2092)] = 30831, - [SMALL_STATE(2093)] = 30902, - [SMALL_STATE(2094)] = 30973, - [SMALL_STATE(2095)] = 31052, - [SMALL_STATE(2096)] = 31123, - [SMALL_STATE(2097)] = 31194, - [SMALL_STATE(2098)] = 31265, - [SMALL_STATE(2099)] = 31346, - [SMALL_STATE(2100)] = 31423, - [SMALL_STATE(2101)] = 31500, - [SMALL_STATE(2102)] = 31571, - [SMALL_STATE(2103)] = 31648, - [SMALL_STATE(2104)] = 31719, - [SMALL_STATE(2105)] = 31790, - [SMALL_STATE(2106)] = 31867, - [SMALL_STATE(2107)] = 31937, - [SMALL_STATE(2108)] = 32011, - [SMALL_STATE(2109)] = 32083, - [SMALL_STATE(2110)] = 32155, - [SMALL_STATE(2111)] = 32225, - [SMALL_STATE(2112)] = 32299, - [SMALL_STATE(2113)] = 32369, - [SMALL_STATE(2114)] = 32449, - [SMALL_STATE(2115)] = 32519, - [SMALL_STATE(2116)] = 32597, - [SMALL_STATE(2117)] = 32667, - [SMALL_STATE(2118)] = 32737, - [SMALL_STATE(2119)] = 32815, - [SMALL_STATE(2120)] = 32889, - [SMALL_STATE(2121)] = 32959, - [SMALL_STATE(2122)] = 33031, - [SMALL_STATE(2123)] = 33101, - [SMALL_STATE(2124)] = 33241, - [SMALL_STATE(2125)] = 33313, - [SMALL_STATE(2126)] = 33387, - [SMALL_STATE(2127)] = 33461, - [SMALL_STATE(2128)] = 33531, - [SMALL_STATE(2129)] = 33609, - [SMALL_STATE(2130)] = 33679, - [SMALL_STATE(2131)] = 33751, - [SMALL_STATE(2132)] = 33821, - [SMALL_STATE(2133)] = 33895, - [SMALL_STATE(2134)] = 33965, - [SMALL_STATE(2135)] = 34105, - [SMALL_STATE(2136)] = 34179, - [SMALL_STATE(2137)] = 34249, - [SMALL_STATE(2138)] = 34319, - [SMALL_STATE(2139)] = 34390, - [SMALL_STATE(2140)] = 34461, - [SMALL_STATE(2141)] = 34532, - [SMALL_STATE(2142)] = 34603, - [SMALL_STATE(2143)] = 34674, - [SMALL_STATE(2144)] = 34745, - [SMALL_STATE(2145)] = 34816, - [SMALL_STATE(2146)] = 34887, - [SMALL_STATE(2147)] = 34958, - [SMALL_STATE(2148)] = 35029, - [SMALL_STATE(2149)] = 35100, - [SMALL_STATE(2150)] = 35171, - [SMALL_STATE(2151)] = 35242, - [SMALL_STATE(2152)] = 35313, - [SMALL_STATE(2153)] = 35384, - [SMALL_STATE(2154)] = 35455, - [SMALL_STATE(2155)] = 35526, - [SMALL_STATE(2156)] = 35597, - [SMALL_STATE(2157)] = 35668, - [SMALL_STATE(2158)] = 35737, - [SMALL_STATE(2159)] = 35806, - [SMALL_STATE(2160)] = 35877, - [SMALL_STATE(2161)] = 35948, - [SMALL_STATE(2162)] = 36019, - [SMALL_STATE(2163)] = 36090, - [SMALL_STATE(2164)] = 36161, - [SMALL_STATE(2165)] = 36232, - [SMALL_STATE(2166)] = 36303, - [SMALL_STATE(2167)] = 36376, - [SMALL_STATE(2168)] = 36447, - [SMALL_STATE(2169)] = 36518, - [SMALL_STATE(2170)] = 36587, - [SMALL_STATE(2171)] = 36658, - [SMALL_STATE(2172)] = 36729, - [SMALL_STATE(2173)] = 36800, - [SMALL_STATE(2174)] = 36871, - [SMALL_STATE(2175)] = 36942, - [SMALL_STATE(2176)] = 37015, - [SMALL_STATE(2177)] = 37088, - [SMALL_STATE(2178)] = 37159, - [SMALL_STATE(2179)] = 37230, - [SMALL_STATE(2180)] = 37303, - [SMALL_STATE(2181)] = 37374, - [SMALL_STATE(2182)] = 37447, - [SMALL_STATE(2183)] = 37520, - [SMALL_STATE(2184)] = 37593, - [SMALL_STATE(2185)] = 37664, - [SMALL_STATE(2186)] = 37735, - [SMALL_STATE(2187)] = 37808, - [SMALL_STATE(2188)] = 37881, - [SMALL_STATE(2189)] = 37950, - [SMALL_STATE(2190)] = 38023, - [SMALL_STATE(2191)] = 38096, - [SMALL_STATE(2192)] = 38169, - [SMALL_STATE(2193)] = 38242, - [SMALL_STATE(2194)] = 38315, - [SMALL_STATE(2195)] = 38388, - [SMALL_STATE(2196)] = 38461, - [SMALL_STATE(2197)] = 38538, - [SMALL_STATE(2198)] = 38609, - [SMALL_STATE(2199)] = 38680, - [SMALL_STATE(2200)] = 38751, - [SMALL_STATE(2201)] = 38824, - [SMALL_STATE(2202)] = 38925, - [SMALL_STATE(2203)] = 38994, - [SMALL_STATE(2204)] = 39065, - [SMALL_STATE(2205)] = 39136, - [SMALL_STATE(2206)] = 39207, - [SMALL_STATE(2207)] = 39280, - [SMALL_STATE(2208)] = 39351, - [SMALL_STATE(2209)] = 39422, - [SMALL_STATE(2210)] = 39495, - [SMALL_STATE(2211)] = 39566, - [SMALL_STATE(2212)] = 39637, - [SMALL_STATE(2213)] = 39708, - [SMALL_STATE(2214)] = 39779, - [SMALL_STATE(2215)] = 39848, - [SMALL_STATE(2216)] = 39919, - [SMALL_STATE(2217)] = 39990, - [SMALL_STATE(2218)] = 40063, - [SMALL_STATE(2219)] = 40134, - [SMALL_STATE(2220)] = 40205, - [SMALL_STATE(2221)] = 40276, - [SMALL_STATE(2222)] = 40347, - [SMALL_STATE(2223)] = 40418, - [SMALL_STATE(2224)] = 40489, - [SMALL_STATE(2225)] = 40560, - [SMALL_STATE(2226)] = 40631, - [SMALL_STATE(2227)] = 40702, - [SMALL_STATE(2228)] = 40771, - [SMALL_STATE(2229)] = 40842, - [SMALL_STATE(2230)] = 40913, - [SMALL_STATE(2231)] = 40984, - [SMALL_STATE(2232)] = 41121, - [SMALL_STATE(2233)] = 41192, - [SMALL_STATE(2234)] = 41263, - [SMALL_STATE(2235)] = 41334, - [SMALL_STATE(2236)] = 41405, - [SMALL_STATE(2237)] = 41476, - [SMALL_STATE(2238)] = 41547, - [SMALL_STATE(2239)] = 41620, - [SMALL_STATE(2240)] = 41691, - [SMALL_STATE(2241)] = 41762, - [SMALL_STATE(2242)] = 41833, - [SMALL_STATE(2243)] = 41902, - [SMALL_STATE(2244)] = 41973, - [SMALL_STATE(2245)] = 42044, - [SMALL_STATE(2246)] = 42115, - [SMALL_STATE(2247)] = 42186, - [SMALL_STATE(2248)] = 42257, - [SMALL_STATE(2249)] = 42328, - [SMALL_STATE(2250)] = 42399, - [SMALL_STATE(2251)] = 42470, - [SMALL_STATE(2252)] = 42541, - [SMALL_STATE(2253)] = 42642, - [SMALL_STATE(2254)] = 42711, - [SMALL_STATE(2255)] = 42782, - [SMALL_STATE(2256)] = 42853, - [SMALL_STATE(2257)] = 42924, - [SMALL_STATE(2258)] = 42995, - [SMALL_STATE(2259)] = 43066, - [SMALL_STATE(2260)] = 43139, - [SMALL_STATE(2261)] = 43210, - [SMALL_STATE(2262)] = 43281, - [SMALL_STATE(2263)] = 43352, - [SMALL_STATE(2264)] = 43423, - [SMALL_STATE(2265)] = 43494, - [SMALL_STATE(2266)] = 43565, - [SMALL_STATE(2267)] = 43636, - [SMALL_STATE(2268)] = 43707, - [SMALL_STATE(2269)] = 43778, - [SMALL_STATE(2270)] = 43849, - [SMALL_STATE(2271)] = 43920, - [SMALL_STATE(2272)] = 43991, - [SMALL_STATE(2273)] = 44062, - [SMALL_STATE(2274)] = 44133, - [SMALL_STATE(2275)] = 44204, - [SMALL_STATE(2276)] = 44275, - [SMALL_STATE(2277)] = 44344, - [SMALL_STATE(2278)] = 44415, - [SMALL_STATE(2279)] = 44486, - [SMALL_STATE(2280)] = 44623, - [SMALL_STATE(2281)] = 44714, - [SMALL_STATE(2282)] = 44791, - [SMALL_STATE(2283)] = 44862, - [SMALL_STATE(2284)] = 44999, - [SMALL_STATE(2285)] = 45136, - [SMALL_STATE(2286)] = 45207, - [SMALL_STATE(2287)] = 45278, - [SMALL_STATE(2288)] = 45349, - [SMALL_STATE(2289)] = 45420, - [SMALL_STATE(2290)] = 45491, - [SMALL_STATE(2291)] = 45592, - [SMALL_STATE(2292)] = 45663, - [SMALL_STATE(2293)] = 45734, - [SMALL_STATE(2294)] = 45871, - [SMALL_STATE(2295)] = 45972, - [SMALL_STATE(2296)] = 46109, - [SMALL_STATE(2297)] = 46246, - [SMALL_STATE(2298)] = 46383, - [SMALL_STATE(2299)] = 46454, - [SMALL_STATE(2300)] = 46525, - [SMALL_STATE(2301)] = 46596, - [SMALL_STATE(2302)] = 46667, - [SMALL_STATE(2303)] = 46738, - [SMALL_STATE(2304)] = 46813, - [SMALL_STATE(2305)] = 46886, - [SMALL_STATE(2306)] = 46957, - [SMALL_STATE(2307)] = 47028, - [SMALL_STATE(2308)] = 47099, - [SMALL_STATE(2309)] = 47170, - [SMALL_STATE(2310)] = 47241, - [SMALL_STATE(2311)] = 47312, - [SMALL_STATE(2312)] = 47390, - [SMALL_STATE(2313)] = 47488, - [SMALL_STATE(2314)] = 47588, - [SMALL_STATE(2315)] = 47676, - [SMALL_STATE(2316)] = 47772, - [SMALL_STATE(2317)] = 47844, - [SMALL_STATE(2318)] = 47924, - [SMALL_STATE(2319)] = 48020, - [SMALL_STATE(2320)] = 48110, - [SMALL_STATE(2321)] = 48202, - [SMALL_STATE(2322)] = 48300, - [SMALL_STATE(2323)] = 48394, - [SMALL_STATE(2324)] = 48492, - [SMALL_STATE(2325)] = 48592, - [SMALL_STATE(2326)] = 48690, - [SMALL_STATE(2327)] = 48758, - [SMALL_STATE(2328)] = 48840, - [SMALL_STATE(2329)] = 48924, - [SMALL_STATE(2330)] = 48992, - [SMALL_STATE(2331)] = 49126, - [SMALL_STATE(2332)] = 49214, - [SMALL_STATE(2333)] = 49314, - [SMALL_STATE(2334)] = 49392, - [SMALL_STATE(2335)] = 49480, - [SMALL_STATE(2336)] = 49560, - [SMALL_STATE(2337)] = 49650, - [SMALL_STATE(2338)] = 49742, - [SMALL_STATE(2339)] = 49816, - [SMALL_STATE(2340)] = 49910, - [SMALL_STATE(2341)] = 49984, - [SMALL_STATE(2342)] = 50052, - [SMALL_STATE(2343)] = 50132, - [SMALL_STATE(2344)] = 50230, - [SMALL_STATE(2345)] = 50330, - [SMALL_STATE(2346)] = 50412, - [SMALL_STATE(2347)] = 50514, - [SMALL_STATE(2348)] = 50598, - [SMALL_STATE(2349)] = 50666, - [SMALL_STATE(2350)] = 50754, - [SMALL_STATE(2351)] = 50854, - [SMALL_STATE(2352)] = 50938, - [SMALL_STATE(2353)] = 51012, - [SMALL_STATE(2354)] = 51080, - [SMALL_STATE(2355)] = 51156, - [SMALL_STATE(2356)] = 51234, - [SMALL_STATE(2357)] = 51320, - [SMALL_STATE(2358)] = 51408, - [SMALL_STATE(2359)] = 51480, - [SMALL_STATE(2360)] = 51552, - [SMALL_STATE(2361)] = 51642, - [SMALL_STATE(2362)] = 51710, - [SMALL_STATE(2363)] = 51782, - [SMALL_STATE(2364)] = 51850, - [SMALL_STATE(2365)] = 51918, - [SMALL_STATE(2366)] = 51992, - [SMALL_STATE(2367)] = 52070, - [SMALL_STATE(2368)] = 52172, - [SMALL_STATE(2369)] = 52240, - [SMALL_STATE(2370)] = 52336, - [SMALL_STATE(2371)] = 52412, - [SMALL_STATE(2372)] = 52510, - [SMALL_STATE(2373)] = 52600, - [SMALL_STATE(2374)] = 52698, - [SMALL_STATE(2375)] = 52776, - [SMALL_STATE(2376)] = 52876, - [SMALL_STATE(2377)] = 52974, - [SMALL_STATE(2378)] = 53074, - [SMALL_STATE(2379)] = 53176, - [SMALL_STATE(2380)] = 53274, - [SMALL_STATE(2381)] = 53360, - [SMALL_STATE(2382)] = 53448, - [SMALL_STATE(2383)] = 53520, - [SMALL_STATE(2384)] = 53610, - [SMALL_STATE(2385)] = 53680, - [SMALL_STATE(2386)] = 53748, - [SMALL_STATE(2387)] = 53832, - [SMALL_STATE(2388)] = 53914, - [SMALL_STATE(2389)] = 54002, - [SMALL_STATE(2390)] = 54082, - [SMALL_STATE(2391)] = 54160, - [SMALL_STATE(2392)] = 54240, - [SMALL_STATE(2393)] = 54328, - [SMALL_STATE(2394)] = 54410, - [SMALL_STATE(2395)] = 54492, - [SMALL_STATE(2396)] = 54566, - [SMALL_STATE(2397)] = 54636, - [SMALL_STATE(2398)] = 54734, - [SMALL_STATE(2399)] = 54824, - [SMALL_STATE(2400)] = 54922, - [SMALL_STATE(2401)] = 55022, - [SMALL_STATE(2402)] = 55114, - [SMALL_STATE(2403)] = 55186, - [SMALL_STATE(2404)] = 55276, - [SMALL_STATE(2405)] = 55378, - [SMALL_STATE(2406)] = 55470, - [SMALL_STATE(2407)] = 55540, - [SMALL_STATE(2408)] = 55630, - [SMALL_STATE(2409)] = 55724, - [SMALL_STATE(2410)] = 55816, - [SMALL_STATE(2411)] = 55910, - [SMALL_STATE(2412)] = 56002, - [SMALL_STATE(2413)] = 56098, - [SMALL_STATE(2414)] = 56180, - [SMALL_STATE(2415)] = 56314, - [SMALL_STATE(2416)] = 56406, - [SMALL_STATE(2417)] = 56498, - [SMALL_STATE(2418)] = 56568, - [SMALL_STATE(2419)] = 56638, - [SMALL_STATE(2420)] = 56732, - [SMALL_STATE(2421)] = 56802, - [SMALL_STATE(2422)] = 56872, - [SMALL_STATE(2423)] = 56964, - [SMALL_STATE(2424)] = 57032, - [SMALL_STATE(2425)] = 57124, - [SMALL_STATE(2426)] = 57218, - [SMALL_STATE(2427)] = 57352, - [SMALL_STATE(2428)] = 57486, - [SMALL_STATE(2429)] = 57560, - [SMALL_STATE(2430)] = 57656, - [SMALL_STATE(2431)] = 57738, - [SMALL_STATE(2432)] = 57830, - [SMALL_STATE(2433)] = 57900, - [SMALL_STATE(2434)] = 57970, - [SMALL_STATE(2435)] = 58040, - [SMALL_STATE(2436)] = 58174, - [SMALL_STATE(2437)] = 58270, - [SMALL_STATE(2438)] = 58366, - [SMALL_STATE(2439)] = 58460, - [SMALL_STATE(2440)] = 58558, - [SMALL_STATE(2441)] = 58634, - [SMALL_STATE(2442)] = 58732, - [SMALL_STATE(2443)] = 58818, - [SMALL_STATE(2444)] = 58898, - [SMALL_STATE(2445)] = 58972, - [SMALL_STATE(2446)] = 59056, - [SMALL_STATE(2447)] = 59126, - [SMALL_STATE(2448)] = 59220, - [SMALL_STATE(2449)] = 59354, - [SMALL_STATE(2450)] = 59488, - [SMALL_STATE(2451)] = 59584, - [SMALL_STATE(2452)] = 59654, - [SMALL_STATE(2453)] = 59724, - [SMALL_STATE(2454)] = 59822, - [SMALL_STATE(2455)] = 59920, - [SMALL_STATE(2456)] = 60054, - [SMALL_STATE(2457)] = 60122, - [SMALL_STATE(2458)] = 60192, - [SMALL_STATE(2459)] = 60326, - [SMALL_STATE(2460)] = 60460, - [SMALL_STATE(2461)] = 60542, - [SMALL_STATE(2462)] = 60676, - [SMALL_STATE(2463)] = 60744, - [SMALL_STATE(2464)] = 60820, - [SMALL_STATE(2465)] = 60954, - [SMALL_STATE(2466)] = 61040, - [SMALL_STATE(2467)] = 61126, - [SMALL_STATE(2468)] = 61214, - [SMALL_STATE(2469)] = 61304, - [SMALL_STATE(2470)] = 61396, - [SMALL_STATE(2471)] = 61530, - [SMALL_STATE(2472)] = 61628, - [SMALL_STATE(2473)] = 61726, - [SMALL_STATE(2474)] = 61824, - [SMALL_STATE(2475)] = 61922, - [SMALL_STATE(2476)] = 61994, - [SMALL_STATE(2477)] = 62088, - [SMALL_STATE(2478)] = 62184, - [SMALL_STATE(2479)] = 62276, - [SMALL_STATE(2480)] = 62343, - [SMALL_STATE(2481)] = 62410, - [SMALL_STATE(2482)] = 62477, - [SMALL_STATE(2483)] = 62570, - [SMALL_STATE(2484)] = 62637, - [SMALL_STATE(2485)] = 62720, - [SMALL_STATE(2486)] = 62787, - [SMALL_STATE(2487)] = 62854, - [SMALL_STATE(2488)] = 62921, - [SMALL_STATE(2489)] = 62988, - [SMALL_STATE(2490)] = 63085, - [SMALL_STATE(2491)] = 63162, - [SMALL_STATE(2492)] = 63229, - [SMALL_STATE(2493)] = 63296, - [SMALL_STATE(2494)] = 63381, - [SMALL_STATE(2495)] = 63468, - [SMALL_STATE(2496)] = 63535, - [SMALL_STATE(2497)] = 63602, - [SMALL_STATE(2498)] = 63669, - [SMALL_STATE(2499)] = 63736, - [SMALL_STATE(2500)] = 63813, - [SMALL_STATE(2501)] = 63880, - [SMALL_STATE(2502)] = 63947, - [SMALL_STATE(2503)] = 64034, - [SMALL_STATE(2504)] = 64101, - [SMALL_STATE(2505)] = 64168, - [SMALL_STATE(2506)] = 64257, - [SMALL_STATE(2507)] = 64324, - [SMALL_STATE(2508)] = 64407, - [SMALL_STATE(2509)] = 64474, - [SMALL_STATE(2510)] = 64565, - [SMALL_STATE(2511)] = 64632, - [SMALL_STATE(2512)] = 64699, - [SMALL_STATE(2513)] = 64766, - [SMALL_STATE(2514)] = 64833, - [SMALL_STATE(2515)] = 64900, - [SMALL_STATE(2516)] = 64971, - [SMALL_STATE(2517)] = 65038, - [SMALL_STATE(2518)] = 65105, - [SMALL_STATE(2519)] = 65188, - [SMALL_STATE(2520)] = 65255, - [SMALL_STATE(2521)] = 65338, - [SMALL_STATE(2522)] = 65405, - [SMALL_STATE(2523)] = 65474, - [SMALL_STATE(2524)] = 65541, - [SMALL_STATE(2525)] = 65608, - [SMALL_STATE(2526)] = 65691, - [SMALL_STATE(2527)] = 65758, - [SMALL_STATE(2528)] = 65839, - [SMALL_STATE(2529)] = 65906, - [SMALL_STATE(2530)] = 65973, - [SMALL_STATE(2531)] = 66042, - [SMALL_STATE(2532)] = 66109, - [SMALL_STATE(2533)] = 66192, - [SMALL_STATE(2534)] = 66259, - [SMALL_STATE(2535)] = 66326, - [SMALL_STATE(2536)] = 66393, - [SMALL_STATE(2537)] = 66462, - [SMALL_STATE(2538)] = 66529, - [SMALL_STATE(2539)] = 66596, - [SMALL_STATE(2540)] = 66663, - [SMALL_STATE(2541)] = 66730, - [SMALL_STATE(2542)] = 66797, - [SMALL_STATE(2543)] = 66866, - [SMALL_STATE(2544)] = 66935, - [SMALL_STATE(2545)] = 67018, - [SMALL_STATE(2546)] = 67085, - [SMALL_STATE(2547)] = 67156, - [SMALL_STATE(2548)] = 67223, - [SMALL_STATE(2549)] = 67290, - [SMALL_STATE(2550)] = 67361, - [SMALL_STATE(2551)] = 67428, - [SMALL_STATE(2552)] = 67495, - [SMALL_STATE(2553)] = 67578, - [SMALL_STATE(2554)] = 67645, - [SMALL_STATE(2555)] = 67712, - [SMALL_STATE(2556)] = 67791, - [SMALL_STATE(2557)] = 67858, - [SMALL_STATE(2558)] = 67925, - [SMALL_STATE(2559)] = 67992, - [SMALL_STATE(2560)] = 68059, - [SMALL_STATE(2561)] = 68126, - [SMALL_STATE(2562)] = 68193, - [SMALL_STATE(2563)] = 68266, - [SMALL_STATE(2564)] = 68349, - [SMALL_STATE(2565)] = 68432, - [SMALL_STATE(2566)] = 68499, - [SMALL_STATE(2567)] = 68582, - [SMALL_STATE(2568)] = 68665, - [SMALL_STATE(2569)] = 68732, - [SMALL_STATE(2570)] = 68799, - [SMALL_STATE(2571)] = 68868, - [SMALL_STATE(2572)] = 68951, - [SMALL_STATE(2573)] = 69046, - [SMALL_STATE(2574)] = 69112, - [SMALL_STATE(2575)] = 69192, - [SMALL_STATE(2576)] = 69258, - [SMALL_STATE(2577)] = 69350, - [SMALL_STATE(2578)] = 69416, - [SMALL_STATE(2579)] = 69496, - [SMALL_STATE(2580)] = 69562, - [SMALL_STATE(2581)] = 69628, - [SMALL_STATE(2582)] = 69720, - [SMALL_STATE(2583)] = 69786, - [SMALL_STATE(2584)] = 69878, - [SMALL_STATE(2585)] = 69970, - [SMALL_STATE(2586)] = 70036, - [SMALL_STATE(2587)] = 70102, - [SMALL_STATE(2588)] = 70194, - [SMALL_STATE(2589)] = 70286, - [SMALL_STATE(2590)] = 70360, - [SMALL_STATE(2591)] = 70440, - [SMALL_STATE(2592)] = 70524, - [SMALL_STATE(2593)] = 70590, - [SMALL_STATE(2594)] = 70674, - [SMALL_STATE(2595)] = 70766, - [SMALL_STATE(2596)] = 70832, - [SMALL_STATE(2597)] = 70898, - [SMALL_STATE(2598)] = 70964, - [SMALL_STATE(2599)] = 71056, - [SMALL_STATE(2600)] = 71122, - [SMALL_STATE(2601)] = 71188, - [SMALL_STATE(2602)] = 71254, - [SMALL_STATE(2603)] = 71322, - [SMALL_STATE(2604)] = 71392, - [SMALL_STATE(2605)] = 71458, - [SMALL_STATE(2606)] = 71528, - [SMALL_STATE(2607)] = 71620, - [SMALL_STATE(2608)] = 71686, - [SMALL_STATE(2609)] = 71778, - [SMALL_STATE(2610)] = 71868, - [SMALL_STATE(2611)] = 71960, - [SMALL_STATE(2612)] = 72026, - [SMALL_STATE(2613)] = 72118, - [SMALL_STATE(2614)] = 72198, - [SMALL_STATE(2615)] = 72282, - [SMALL_STATE(2616)] = 72348, - [SMALL_STATE(2617)] = 72432, - [SMALL_STATE(2618)] = 72498, - [SMALL_STATE(2619)] = 72564, - [SMALL_STATE(2620)] = 72630, - [SMALL_STATE(2621)] = 72710, - [SMALL_STATE(2622)] = 72799, - [SMALL_STATE(2623)] = 72864, - [SMALL_STATE(2624)] = 72929, - [SMALL_STATE(2625)] = 73002, - [SMALL_STATE(2626)] = 73091, - [SMALL_STATE(2627)] = 73180, - [SMALL_STATE(2628)] = 73269, - [SMALL_STATE(2629)] = 73358, - [SMALL_STATE(2630)] = 73447, - [SMALL_STATE(2631)] = 73536, - [SMALL_STATE(2632)] = 73601, - [SMALL_STATE(2633)] = 73666, - [SMALL_STATE(2634)] = 73755, - [SMALL_STATE(2635)] = 73828, - [SMALL_STATE(2636)] = 73901, - [SMALL_STATE(2637)] = 73974, - [SMALL_STATE(2638)] = 74043, - [SMALL_STATE(2639)] = 74110, - [SMALL_STATE(2640)] = 74177, - [SMALL_STATE(2641)] = 74250, - [SMALL_STATE(2642)] = 74317, - [SMALL_STATE(2643)] = 74384, - [SMALL_STATE(2644)] = 74451, - [SMALL_STATE(2645)] = 74518, - [SMALL_STATE(2646)] = 74583, - [SMALL_STATE(2647)] = 74648, - [SMALL_STATE(2648)] = 74729, - [SMALL_STATE(2649)] = 74810, - [SMALL_STATE(2650)] = 74899, - [SMALL_STATE(2651)] = 74972, - [SMALL_STATE(2652)] = 75045, - [SMALL_STATE(2653)] = 75118, - [SMALL_STATE(2654)] = 75191, - [SMALL_STATE(2655)] = 75280, - [SMALL_STATE(2656)] = 75369, - [SMALL_STATE(2657)] = 75450, - [SMALL_STATE(2658)] = 75521, - [SMALL_STATE(2659)] = 75602, - [SMALL_STATE(2660)] = 75683, - [SMALL_STATE(2661)] = 75756, - [SMALL_STATE(2662)] = 75829, - [SMALL_STATE(2663)] = 75902, - [SMALL_STATE(2664)] = 75975, - [SMALL_STATE(2665)] = 76048, - [SMALL_STATE(2666)] = 76121, - [SMALL_STATE(2667)] = 76194, - [SMALL_STATE(2668)] = 76283, - [SMALL_STATE(2669)] = 76352, - [SMALL_STATE(2670)] = 76425, - [SMALL_STATE(2671)] = 76514, - [SMALL_STATE(2672)] = 76579, - [SMALL_STATE(2673)] = 76652, - [SMALL_STATE(2674)] = 76725, - [SMALL_STATE(2675)] = 76798, - [SMALL_STATE(2676)] = 76871, - [SMALL_STATE(2677)] = 76960, - [SMALL_STATE(2678)] = 77049, - [SMALL_STATE(2679)] = 77138, - [SMALL_STATE(2680)] = 77227, - [SMALL_STATE(2681)] = 77300, - [SMALL_STATE(2682)] = 77389, - [SMALL_STATE(2683)] = 77478, - [SMALL_STATE(2684)] = 77567, - [SMALL_STATE(2685)] = 77656, - [SMALL_STATE(2686)] = 77745, - [SMALL_STATE(2687)] = 77834, - [SMALL_STATE(2688)] = 77923, - [SMALL_STATE(2689)] = 78012, - [SMALL_STATE(2690)] = 78077, - [SMALL_STATE(2691)] = 78150, - [SMALL_STATE(2692)] = 78239, - [SMALL_STATE(2693)] = 78304, - [SMALL_STATE(2694)] = 78377, - [SMALL_STATE(2695)] = 78442, - [SMALL_STATE(2696)] = 78507, - [SMALL_STATE(2697)] = 78596, - [SMALL_STATE(2698)] = 78685, - [SMALL_STATE(2699)] = 78774, - [SMALL_STATE(2700)] = 78863, - [SMALL_STATE(2701)] = 78936, - [SMALL_STATE(2702)] = 79025, - [SMALL_STATE(2703)] = 79094, - [SMALL_STATE(2704)] = 79158, - [SMALL_STATE(2705)] = 79222, - [SMALL_STATE(2706)] = 79292, - [SMALL_STATE(2707)] = 79358, - [SMALL_STATE(2708)] = 79426, - [SMALL_STATE(2709)] = 79490, - [SMALL_STATE(2710)] = 79554, - [SMALL_STATE(2711)] = 79622, - [SMALL_STATE(2712)] = 79690, - [SMALL_STATE(2713)] = 79754, - [SMALL_STATE(2714)] = 79818, - [SMALL_STATE(2715)] = 79892, - [SMALL_STATE(2716)] = 79962, - [SMALL_STATE(2717)] = 80030, - [SMALL_STATE(2718)] = 80098, - [SMALL_STATE(2719)] = 80162, - [SMALL_STATE(2720)] = 80226, - [SMALL_STATE(2721)] = 80290, - [SMALL_STATE(2722)] = 80362, - [SMALL_STATE(2723)] = 80434, - [SMALL_STATE(2724)] = 80500, - [SMALL_STATE(2725)] = 80566, - [SMALL_STATE(2726)] = 80638, - [SMALL_STATE(2727)] = 80710, - [SMALL_STATE(2728)] = 80777, - [SMALL_STATE(2729)] = 80842, - [SMALL_STATE(2730)] = 80907, - [SMALL_STATE(2731)] = 80970, - [SMALL_STATE(2732)] = 81037, - [SMALL_STATE(2733)] = 81108, - [SMALL_STATE(2734)] = 81175, - [SMALL_STATE(2735)] = 81242, - [SMALL_STATE(2736)] = 81307, - [SMALL_STATE(2737)] = 81374, - [SMALL_STATE(2738)] = 81437, - [SMALL_STATE(2739)] = 81500, - [SMALL_STATE(2740)] = 81565, - [SMALL_STATE(2741)] = 81632, - [SMALL_STATE(2742)] = 81697, - [SMALL_STATE(2743)] = 81762, - [SMALL_STATE(2744)] = 81829, - [SMALL_STATE(2745)] = 81896, - [SMALL_STATE(2746)] = 81963, - [SMALL_STATE(2747)] = 82030, - [SMALL_STATE(2748)] = 82093, - [SMALL_STATE(2749)] = 82158, - [SMALL_STATE(2750)] = 82225, - [SMALL_STATE(2751)] = 82298, - [SMALL_STATE(2752)] = 82365, - [SMALL_STATE(2753)] = 82432, - [SMALL_STATE(2754)] = 82501, - [SMALL_STATE(2755)] = 82568, - [SMALL_STATE(2756)] = 82635, - [SMALL_STATE(2757)] = 82702, - [SMALL_STATE(2758)] = 82765, - [SMALL_STATE(2759)] = 82828, - [SMALL_STATE(2760)] = 82895, - [SMALL_STATE(2761)] = 82958, - [SMALL_STATE(2762)] = 83021, - [SMALL_STATE(2763)] = 83088, - [SMALL_STATE(2764)] = 83153, - [SMALL_STATE(2765)] = 83220, - [SMALL_STATE(2766)] = 83285, - [SMALL_STATE(2767)] = 83350, - [SMALL_STATE(2768)] = 83413, - [SMALL_STATE(2769)] = 83476, - [SMALL_STATE(2770)] = 83539, - [SMALL_STATE(2771)] = 83602, - [SMALL_STATE(2772)] = 83669, - [SMALL_STATE(2773)] = 83735, - [SMALL_STATE(2774)] = 83797, - [SMALL_STATE(2775)] = 83859, - [SMALL_STATE(2776)] = 83921, - [SMALL_STATE(2777)] = 83983, - [SMALL_STATE(2778)] = 84045, - [SMALL_STATE(2779)] = 84107, - [SMALL_STATE(2780)] = 84177, - [SMALL_STATE(2781)] = 84241, - [SMALL_STATE(2782)] = 84305, - [SMALL_STATE(2783)] = 84369, - [SMALL_STATE(2784)] = 84435, - [SMALL_STATE(2785)] = 84499, - [SMALL_STATE(2786)] = 84561, - [SMALL_STATE(2787)] = 84623, - [SMALL_STATE(2788)] = 84685, - [SMALL_STATE(2789)] = 84747, - [SMALL_STATE(2790)] = 84809, - [SMALL_STATE(2791)] = 84921, - [SMALL_STATE(2792)] = 84987, - [SMALL_STATE(2793)] = 85055, - [SMALL_STATE(2794)] = 85121, - [SMALL_STATE(2795)] = 85187, - [SMALL_STATE(2796)] = 85251, - [SMALL_STATE(2797)] = 85315, - [SMALL_STATE(2798)] = 85379, - [SMALL_STATE(2799)] = 85443, - [SMALL_STATE(2800)] = 85509, - [SMALL_STATE(2801)] = 85573, - [SMALL_STATE(2802)] = 85635, - [SMALL_STATE(2803)] = 85697, - [SMALL_STATE(2804)] = 85759, - [SMALL_STATE(2805)] = 85821, - [SMALL_STATE(2806)] = 85889, - [SMALL_STATE(2807)] = 85957, - [SMALL_STATE(2808)] = 86029, - [SMALL_STATE(2809)] = 86093, - [SMALL_STATE(2810)] = 86155, - [SMALL_STATE(2811)] = 86221, - [SMALL_STATE(2812)] = 86283, - [SMALL_STATE(2813)] = 86345, - [SMALL_STATE(2814)] = 86407, - [SMALL_STATE(2815)] = 86471, - [SMALL_STATE(2816)] = 86585, - [SMALL_STATE(2817)] = 86647, - [SMALL_STATE(2818)] = 86717, - [SMALL_STATE(2819)] = 86781, - [SMALL_STATE(2820)] = 86845, - [SMALL_STATE(2821)] = 86907, - [SMALL_STATE(2822)] = 86977, - [SMALL_STATE(2823)] = 87047, - [SMALL_STATE(2824)] = 87109, - [SMALL_STATE(2825)] = 87179, - [SMALL_STATE(2826)] = 87249, - [SMALL_STATE(2827)] = 87319, - [SMALL_STATE(2828)] = 87389, - [SMALL_STATE(2829)] = 87459, - [SMALL_STATE(2830)] = 87529, - [SMALL_STATE(2831)] = 87599, - [SMALL_STATE(2832)] = 87669, - [SMALL_STATE(2833)] = 87735, - [SMALL_STATE(2834)] = 87805, - [SMALL_STATE(2835)] = 87875, - [SMALL_STATE(2836)] = 87945, - [SMALL_STATE(2837)] = 88015, - [SMALL_STATE(2838)] = 88085, - [SMALL_STATE(2839)] = 88155, - [SMALL_STATE(2840)] = 88225, - [SMALL_STATE(2841)] = 88287, - [SMALL_STATE(2842)] = 88349, - [SMALL_STATE(2843)] = 88411, - [SMALL_STATE(2844)] = 88479, - [SMALL_STATE(2845)] = 88543, - [SMALL_STATE(2846)] = 88607, - [SMALL_STATE(2847)] = 88669, - [SMALL_STATE(2848)] = 88731, - [SMALL_STATE(2849)] = 88795, - [SMALL_STATE(2850)] = 88861, - [SMALL_STATE(2851)] = 88973, - [SMALL_STATE(2852)] = 89087, - [SMALL_STATE(2853)] = 89153, - [SMALL_STATE(2854)] = 89219, - [SMALL_STATE(2855)] = 89291, - [SMALL_STATE(2856)] = 89355, - [SMALL_STATE(2857)] = 89417, - [SMALL_STATE(2858)] = 89481, - [SMALL_STATE(2859)] = 89590, - [SMALL_STATE(2860)] = 89651, - [SMALL_STATE(2861)] = 89712, - [SMALL_STATE(2862)] = 89773, - [SMALL_STATE(2863)] = 89834, - [SMALL_STATE(2864)] = 89895, - [SMALL_STATE(2865)] = 90004, - [SMALL_STATE(2866)] = 90065, - [SMALL_STATE(2867)] = 90126, - [SMALL_STATE(2868)] = 90201, - [SMALL_STATE(2869)] = 90266, - [SMALL_STATE(2870)] = 90331, - [SMALL_STATE(2871)] = 90392, - [SMALL_STATE(2872)] = 90453, - [SMALL_STATE(2873)] = 90514, - [SMALL_STATE(2874)] = 90575, - [SMALL_STATE(2875)] = 90636, - [SMALL_STATE(2876)] = 90701, - [SMALL_STATE(2877)] = 90766, - [SMALL_STATE(2878)] = 90831, - [SMALL_STATE(2879)] = 90892, - [SMALL_STATE(2880)] = 90953, - [SMALL_STATE(2881)] = 91014, - [SMALL_STATE(2882)] = 91075, - [SMALL_STATE(2883)] = 91140, - [SMALL_STATE(2884)] = 91205, - [SMALL_STATE(2885)] = 91274, - [SMALL_STATE(2886)] = 91385, - [SMALL_STATE(2887)] = 91448, - [SMALL_STATE(2888)] = 91557, - [SMALL_STATE(2889)] = 91618, - [SMALL_STATE(2890)] = 91679, - [SMALL_STATE(2891)] = 91740, - [SMALL_STATE(2892)] = 91807, - [SMALL_STATE(2893)] = 91868, - [SMALL_STATE(2894)] = 91929, - [SMALL_STATE(2895)] = 91996, - [SMALL_STATE(2896)] = 92065, - [SMALL_STATE(2897)] = 92130, - [SMALL_STATE(2898)] = 92193, - [SMALL_STATE(2899)] = 92256, - [SMALL_STATE(2900)] = 92317, - [SMALL_STATE(2901)] = 92380, - [SMALL_STATE(2902)] = 92443, - [SMALL_STATE(2903)] = 92508, - [SMALL_STATE(2904)] = 92577, - [SMALL_STATE(2905)] = 92638, - [SMALL_STATE(2906)] = 92699, - [SMALL_STATE(2907)] = 92762, - [SMALL_STATE(2908)] = 92823, - [SMALL_STATE(2909)] = 92884, - [SMALL_STATE(2910)] = 92945, - [SMALL_STATE(2911)] = 93006, - [SMALL_STATE(2912)] = 93069, - [SMALL_STATE(2913)] = 93130, - [SMALL_STATE(2914)] = 93191, - [SMALL_STATE(2915)] = 93252, - [SMALL_STATE(2916)] = 93313, - [SMALL_STATE(2917)] = 93374, - [SMALL_STATE(2918)] = 93443, - [SMALL_STATE(2919)] = 93512, - [SMALL_STATE(2920)] = 93573, - [SMALL_STATE(2921)] = 93634, - [SMALL_STATE(2922)] = 93703, - [SMALL_STATE(2923)] = 93764, - [SMALL_STATE(2924)] = 93873, - [SMALL_STATE(2925)] = 93934, - [SMALL_STATE(2926)] = 94001, - [SMALL_STATE(2927)] = 94062, - [SMALL_STATE(2928)] = 94123, - [SMALL_STATE(2929)] = 94188, - [SMALL_STATE(2930)] = 94249, - [SMALL_STATE(2931)] = 94314, - [SMALL_STATE(2932)] = 94383, - [SMALL_STATE(2933)] = 94452, - [SMALL_STATE(2934)] = 94517, - [SMALL_STATE(2935)] = 94578, - [SMALL_STATE(2936)] = 94639, - [SMALL_STATE(2937)] = 94702, - [SMALL_STATE(2938)] = 94765, - [SMALL_STATE(2939)] = 94830, - [SMALL_STATE(2940)] = 94891, - [SMALL_STATE(2941)] = 94960, - [SMALL_STATE(2942)] = 95021, - [SMALL_STATE(2943)] = 95082, - [SMALL_STATE(2944)] = 95143, - [SMALL_STATE(2945)] = 95212, - [SMALL_STATE(2946)] = 95277, - [SMALL_STATE(2947)] = 95338, - [SMALL_STATE(2948)] = 95403, - [SMALL_STATE(2949)] = 95464, - [SMALL_STATE(2950)] = 95527, - [SMALL_STATE(2951)] = 95588, - [SMALL_STATE(2952)] = 95649, - [SMALL_STATE(2953)] = 95718, - [SMALL_STATE(2954)] = 95787, - [SMALL_STATE(2955)] = 95848, - [SMALL_STATE(2956)] = 95917, - [SMALL_STATE(2957)] = 95978, - [SMALL_STATE(2958)] = 96039, - [SMALL_STATE(2959)] = 96100, - [SMALL_STATE(2960)] = 96169, - [SMALL_STATE(2961)] = 96238, - [SMALL_STATE(2962)] = 96307, - [SMALL_STATE(2963)] = 96368, - [SMALL_STATE(2964)] = 96437, - [SMALL_STATE(2965)] = 96506, - [SMALL_STATE(2966)] = 96575, - [SMALL_STATE(2967)] = 96644, - [SMALL_STATE(2968)] = 96705, - [SMALL_STATE(2969)] = 96816, - [SMALL_STATE(2970)] = 96877, - [SMALL_STATE(2971)] = 96946, - [SMALL_STATE(2972)] = 97007, - [SMALL_STATE(2973)] = 97068, - [SMALL_STATE(2974)] = 97128, - [SMALL_STATE(2975)] = 97188, - [SMALL_STATE(2976)] = 97248, - [SMALL_STATE(2977)] = 97308, - [SMALL_STATE(2978)] = 97370, - [SMALL_STATE(2979)] = 97430, - [SMALL_STATE(2980)] = 97494, - [SMALL_STATE(2981)] = 97556, - [SMALL_STATE(2982)] = 97618, - [SMALL_STATE(2983)] = 97682, - [SMALL_STATE(2984)] = 97746, - [SMALL_STATE(2985)] = 97810, - [SMALL_STATE(2986)] = 97874, - [SMALL_STATE(2987)] = 97934, - [SMALL_STATE(2988)] = 97998, - [SMALL_STATE(2989)] = 98064, - [SMALL_STATE(2990)] = 98124, - [SMALL_STATE(2991)] = 98184, - [SMALL_STATE(2992)] = 98248, - [SMALL_STATE(2993)] = 98308, - [SMALL_STATE(2994)] = 98372, - [SMALL_STATE(2995)] = 98436, - [SMALL_STATE(2996)] = 98498, - [SMALL_STATE(2997)] = 98560, - [SMALL_STATE(2998)] = 98620, - [SMALL_STATE(2999)] = 98684, - [SMALL_STATE(3000)] = 98748, - [SMALL_STATE(3001)] = 98814, - [SMALL_STATE(3002)] = 98874, - [SMALL_STATE(3003)] = 98942, - [SMALL_STATE(3004)] = 99004, - [SMALL_STATE(3005)] = 99064, - [SMALL_STATE(3006)] = 99124, - [SMALL_STATE(3007)] = 99184, - [SMALL_STATE(3008)] = 99244, - [SMALL_STATE(3009)] = 99304, - [SMALL_STATE(3010)] = 99366, - [SMALL_STATE(3011)] = 99428, - [SMALL_STATE(3012)] = 99502, - [SMALL_STATE(3013)] = 99566, - [SMALL_STATE(3014)] = 99630, - [SMALL_STATE(3015)] = 99692, - [SMALL_STATE(3016)] = 99754, - [SMALL_STATE(3017)] = 99814, - [SMALL_STATE(3018)] = 99874, - [SMALL_STATE(3019)] = 99936, - [SMALL_STATE(3020)] = 100000, - [SMALL_STATE(3021)] = 100062, - [SMALL_STATE(3022)] = 100126, - [SMALL_STATE(3023)] = 100188, - [SMALL_STATE(3024)] = 100260, - [SMALL_STATE(3025)] = 100320, - [SMALL_STATE(3026)] = 100382, - [SMALL_STATE(3027)] = 100444, - [SMALL_STATE(3028)] = 100508, - [SMALL_STATE(3029)] = 100572, - [SMALL_STATE(3030)] = 100631, - [SMALL_STATE(3031)] = 100690, - [SMALL_STATE(3032)] = 100749, - [SMALL_STATE(3033)] = 100808, - [SMALL_STATE(3034)] = 100869, - [SMALL_STATE(3035)] = 100928, - [SMALL_STATE(3036)] = 100989, - [SMALL_STATE(3037)] = 101050, - [SMALL_STATE(3038)] = 101109, - [SMALL_STATE(3039)] = 101170, - [SMALL_STATE(3040)] = 101231, - [SMALL_STATE(3041)] = 101290, - [SMALL_STATE(3042)] = 101349, - [SMALL_STATE(3043)] = 101410, - [SMALL_STATE(3044)] = 101469, - [SMALL_STATE(3045)] = 101528, - [SMALL_STATE(3046)] = 101587, - [SMALL_STATE(3047)] = 101646, - [SMALL_STATE(3048)] = 101705, - [SMALL_STATE(3049)] = 101764, - [SMALL_STATE(3050)] = 101823, - [SMALL_STATE(3051)] = 101882, - [SMALL_STATE(3052)] = 101941, - [SMALL_STATE(3053)] = 102000, - [SMALL_STATE(3054)] = 102059, - [SMALL_STATE(3055)] = 102120, - [SMALL_STATE(3056)] = 102189, - [SMALL_STATE(3057)] = 102250, - [SMALL_STATE(3058)] = 102311, - [SMALL_STATE(3059)] = 102372, - [SMALL_STATE(3060)] = 102431, - [SMALL_STATE(3061)] = 102490, - [SMALL_STATE(3062)] = 102549, - [SMALL_STATE(3063)] = 102608, - [SMALL_STATE(3064)] = 102671, - [SMALL_STATE(3065)] = 102730, - [SMALL_STATE(3066)] = 102789, - [SMALL_STATE(3067)] = 102848, - [SMALL_STATE(3068)] = 102907, - [SMALL_STATE(3069)] = 102966, - [SMALL_STATE(3070)] = 103025, - [SMALL_STATE(3071)] = 103084, - [SMALL_STATE(3072)] = 103143, - [SMALL_STATE(3073)] = 103202, - [SMALL_STATE(3074)] = 103261, - [SMALL_STATE(3075)] = 103320, - [SMALL_STATE(3076)] = 103379, - [SMALL_STATE(3077)] = 103438, - [SMALL_STATE(3078)] = 103501, - [SMALL_STATE(3079)] = 103560, - [SMALL_STATE(3080)] = 103619, - [SMALL_STATE(3081)] = 103678, - [SMALL_STATE(3082)] = 103737, - [SMALL_STATE(3083)] = 103796, - [SMALL_STATE(3084)] = 103855, - [SMALL_STATE(3085)] = 103918, - [SMALL_STATE(3086)] = 103977, - [SMALL_STATE(3087)] = 104036, - [SMALL_STATE(3088)] = 104095, - [SMALL_STATE(3089)] = 104158, - [SMALL_STATE(3090)] = 104217, - [SMALL_STATE(3091)] = 104276, - [SMALL_STATE(3092)] = 104335, - [SMALL_STATE(3093)] = 104394, - [SMALL_STATE(3094)] = 104453, - [SMALL_STATE(3095)] = 104512, - [SMALL_STATE(3096)] = 104571, - [SMALL_STATE(3097)] = 104630, - [SMALL_STATE(3098)] = 104691, - [SMALL_STATE(3099)] = 104752, - [SMALL_STATE(3100)] = 104811, - [SMALL_STATE(3101)] = 104870, - [SMALL_STATE(3102)] = 104931, - [SMALL_STATE(3103)] = 104990, - [SMALL_STATE(3104)] = 105049, - [SMALL_STATE(3105)] = 105110, - [SMALL_STATE(3106)] = 105169, - [SMALL_STATE(3107)] = 105228, - [SMALL_STATE(3108)] = 105289, - [SMALL_STATE(3109)] = 105348, - [SMALL_STATE(3110)] = 105407, - [SMALL_STATE(3111)] = 105466, - [SMALL_STATE(3112)] = 105525, - [SMALL_STATE(3113)] = 105596, - [SMALL_STATE(3114)] = 105657, - [SMALL_STATE(3115)] = 105718, - [SMALL_STATE(3116)] = 105781, - [SMALL_STATE(3117)] = 105840, - [SMALL_STATE(3118)] = 105899, - [SMALL_STATE(3119)] = 105958, - [SMALL_STATE(3120)] = 106017, - [SMALL_STATE(3121)] = 106076, - [SMALL_STATE(3122)] = 106135, - [SMALL_STATE(3123)] = 106194, - [SMALL_STATE(3124)] = 106253, - [SMALL_STATE(3125)] = 106312, - [SMALL_STATE(3126)] = 106371, - [SMALL_STATE(3127)] = 106430, - [SMALL_STATE(3128)] = 106491, - [SMALL_STATE(3129)] = 106552, - [SMALL_STATE(3130)] = 106611, - [SMALL_STATE(3131)] = 106670, - [SMALL_STATE(3132)] = 106731, - [SMALL_STATE(3133)] = 106790, - [SMALL_STATE(3134)] = 106850, - [SMALL_STATE(3135)] = 106910, - [SMALL_STATE(3136)] = 106970, - [SMALL_STATE(3137)] = 107028, - [SMALL_STATE(3138)] = 107086, - [SMALL_STATE(3139)] = 107144, - [SMALL_STATE(3140)] = 107204, - [SMALL_STATE(3141)] = 107262, - [SMALL_STATE(3142)] = 107320, - [SMALL_STATE(3143)] = 107380, - [SMALL_STATE(3144)] = 107438, - [SMALL_STATE(3145)] = 107506, - [SMALL_STATE(3146)] = 107566, - [SMALL_STATE(3147)] = 107624, - [SMALL_STATE(3148)] = 107682, - [SMALL_STATE(3149)] = 107740, - [SMALL_STATE(3150)] = 107800, - [SMALL_STATE(3151)] = 107858, - [SMALL_STATE(3152)] = 107916, - [SMALL_STATE(3153)] = 107976, - [SMALL_STATE(3154)] = 108034, - [SMALL_STATE(3155)] = 108094, - [SMALL_STATE(3156)] = 108160, - [SMALL_STATE(3157)] = 108218, - [SMALL_STATE(3158)] = 108278, - [SMALL_STATE(3159)] = 108336, - [SMALL_STATE(3160)] = 108396, - [SMALL_STATE(3161)] = 108456, - [SMALL_STATE(3162)] = 108516, - [SMALL_STATE(3163)] = 108574, - [SMALL_STATE(3164)] = 108632, - [SMALL_STATE(3165)] = 108690, - [SMALL_STATE(3166)] = 108748, - [SMALL_STATE(3167)] = 108806, - [SMALL_STATE(3168)] = 108866, - [SMALL_STATE(3169)] = 108924, - [SMALL_STATE(3170)] = 108984, - [SMALL_STATE(3171)] = 109052, - [SMALL_STATE(3172)] = 109110, - [SMALL_STATE(3173)] = 109168, - [SMALL_STATE(3174)] = 109226, - [SMALL_STATE(3175)] = 109284, - [SMALL_STATE(3176)] = 109344, - [SMALL_STATE(3177)] = 109401, - [SMALL_STATE(3178)] = 109468, - [SMALL_STATE(3179)] = 109525, - [SMALL_STATE(3180)] = 109582, - [SMALL_STATE(3181)] = 109639, - [SMALL_STATE(3182)] = 109696, - [SMALL_STATE(3183)] = 109753, - [SMALL_STATE(3184)] = 109810, - [SMALL_STATE(3185)] = 109867, - [SMALL_STATE(3186)] = 109924, - [SMALL_STATE(3187)] = 109981, - [SMALL_STATE(3188)] = 110038, - [SMALL_STATE(3189)] = 110095, - [SMALL_STATE(3190)] = 110152, - [SMALL_STATE(3191)] = 110209, - [SMALL_STATE(3192)] = 110266, - [SMALL_STATE(3193)] = 110323, - [SMALL_STATE(3194)] = 110380, - [SMALL_STATE(3195)] = 110437, - [SMALL_STATE(3196)] = 110494, - [SMALL_STATE(3197)] = 110551, - [SMALL_STATE(3198)] = 110610, - [SMALL_STATE(3199)] = 110667, - [SMALL_STATE(3200)] = 110724, - [SMALL_STATE(3201)] = 110781, - [SMALL_STATE(3202)] = 110838, - [SMALL_STATE(3203)] = 110895, - [SMALL_STATE(3204)] = 110952, - [SMALL_STATE(3205)] = 111009, - [SMALL_STATE(3206)] = 111066, - [SMALL_STATE(3207)] = 111123, - [SMALL_STATE(3208)] = 111180, - [SMALL_STATE(3209)] = 111237, - [SMALL_STATE(3210)] = 111294, - [SMALL_STATE(3211)] = 111351, - [SMALL_STATE(3212)] = 111408, - [SMALL_STATE(3213)] = 111465, - [SMALL_STATE(3214)] = 111522, - [SMALL_STATE(3215)] = 111579, - [SMALL_STATE(3216)] = 111636, - [SMALL_STATE(3217)] = 111693, - [SMALL_STATE(3218)] = 111750, - [SMALL_STATE(3219)] = 111807, - [SMALL_STATE(3220)] = 111864, - [SMALL_STATE(3221)] = 111921, - [SMALL_STATE(3222)] = 111978, - [SMALL_STATE(3223)] = 112035, - [SMALL_STATE(3224)] = 112092, - [SMALL_STATE(3225)] = 112149, - [SMALL_STATE(3226)] = 112206, - [SMALL_STATE(3227)] = 112263, - [SMALL_STATE(3228)] = 112320, - [SMALL_STATE(3229)] = 112377, - [SMALL_STATE(3230)] = 112434, - [SMALL_STATE(3231)] = 112491, - [SMALL_STATE(3232)] = 112548, - [SMALL_STATE(3233)] = 112605, - [SMALL_STATE(3234)] = 112662, - [SMALL_STATE(3235)] = 112719, - [SMALL_STATE(3236)] = 112776, - [SMALL_STATE(3237)] = 112833, - [SMALL_STATE(3238)] = 112890, - [SMALL_STATE(3239)] = 112957, - [SMALL_STATE(3240)] = 113014, - [SMALL_STATE(3241)] = 113071, - [SMALL_STATE(3242)] = 113128, - [SMALL_STATE(3243)] = 113204, - [SMALL_STATE(3244)] = 113280, - [SMALL_STATE(3245)] = 113356, - [SMALL_STATE(3246)] = 113432, - [SMALL_STATE(3247)] = 113488, - [SMALL_STATE(3248)] = 113564, - [SMALL_STATE(3249)] = 113628, - [SMALL_STATE(3250)] = 113704, - [SMALL_STATE(3251)] = 113780, - [SMALL_STATE(3252)] = 113856, - [SMALL_STATE(3253)] = 113932, - [SMALL_STATE(3254)] = 114008, - [SMALL_STATE(3255)] = 114084, - [SMALL_STATE(3256)] = 114160, - [SMALL_STATE(3257)] = 114236, - [SMALL_STATE(3258)] = 114312, - [SMALL_STATE(3259)] = 114388, - [SMALL_STATE(3260)] = 114464, - [SMALL_STATE(3261)] = 114529, - [SMALL_STATE(3262)] = 114584, - [SMALL_STATE(3263)] = 114639, - [SMALL_STATE(3264)] = 114698, - [SMALL_STATE(3265)] = 114753, - [SMALL_STATE(3266)] = 114808, - [SMALL_STATE(3267)] = 114864, - [SMALL_STATE(3268)] = 114922, - [SMALL_STATE(3269)] = 114980, - [SMALL_STATE(3270)] = 115038, - [SMALL_STATE(3271)] = 115092, - [SMALL_STATE(3272)] = 115150, - [SMALL_STATE(3273)] = 115208, - [SMALL_STATE(3274)] = 115266, - [SMALL_STATE(3275)] = 115324, - [SMALL_STATE(3276)] = 115379, - [SMALL_STATE(3277)] = 115434, - [SMALL_STATE(3278)] = 115491, - [SMALL_STATE(3279)] = 115546, - [SMALL_STATE(3280)] = 115613, - [SMALL_STATE(3281)] = 115668, - [SMALL_STATE(3282)] = 115735, - [SMALL_STATE(3283)] = 115792, - [SMALL_STATE(3284)] = 115845, - [SMALL_STATE(3285)] = 115912, - [SMALL_STATE(3286)] = 115969, - [SMALL_STATE(3287)] = 116024, - [SMALL_STATE(3288)] = 116079, - [SMALL_STATE(3289)] = 116134, - [SMALL_STATE(3290)] = 116189, - [SMALL_STATE(3291)] = 116244, - [SMALL_STATE(3292)] = 116301, - [SMALL_STATE(3293)] = 116368, - [SMALL_STATE(3294)] = 116423, - [SMALL_STATE(3295)] = 116490, - [SMALL_STATE(3296)] = 116557, - [SMALL_STATE(3297)] = 116624, - [SMALL_STATE(3298)] = 116679, - [SMALL_STATE(3299)] = 116761, - [SMALL_STATE(3300)] = 116813, - [SMALL_STATE(3301)] = 116863, - [SMALL_STATE(3302)] = 116913, - [SMALL_STATE(3303)] = 116965, - [SMALL_STATE(3304)] = 117017, - [SMALL_STATE(3305)] = 117071, - [SMALL_STATE(3306)] = 117123, - [SMALL_STATE(3307)] = 117187, - [SMALL_STATE(3308)] = 117239, - [SMALL_STATE(3309)] = 117289, - [SMALL_STATE(3310)] = 117353, - [SMALL_STATE(3311)] = 117403, - [SMALL_STATE(3312)] = 117459, - [SMALL_STATE(3313)] = 117509, - [SMALL_STATE(3314)] = 117567, - [SMALL_STATE(3315)] = 117633, - [SMALL_STATE(3316)] = 117687, - [SMALL_STATE(3317)] = 117737, - [SMALL_STATE(3318)] = 117813, - [SMALL_STATE(3319)] = 117877, - [SMALL_STATE(3320)] = 117955, - [SMALL_STATE(3321)] = 118035, - [SMALL_STATE(3322)] = 118103, - [SMALL_STATE(3323)] = 118157, - [SMALL_STATE(3324)] = 118219, - [SMALL_STATE(3325)] = 118289, - [SMALL_STATE(3326)] = 118361, - [SMALL_STATE(3327)] = 118429, - [SMALL_STATE(3328)] = 118491, - [SMALL_STATE(3329)] = 118561, - [SMALL_STATE(3330)] = 118619, - [SMALL_STATE(3331)] = 118699, - [SMALL_STATE(3332)] = 118781, - [SMALL_STATE(3333)] = 118865, - [SMALL_STATE(3334)] = 118937, - [SMALL_STATE(3335)] = 119003, - [SMALL_STATE(3336)] = 119077, - [SMALL_STATE(3337)] = 119153, - [SMALL_STATE(3338)] = 119231, - [SMALL_STATE(3339)] = 119295, - [SMALL_STATE(3340)] = 119361, - [SMALL_STATE(3341)] = 119429, - [SMALL_STATE(3342)] = 119489, - [SMALL_STATE(3343)] = 119551, - [SMALL_STATE(3344)] = 119619, - [SMALL_STATE(3345)] = 119689, - [SMALL_STATE(3346)] = 119745, - [SMALL_STATE(3347)] = 119803, - [SMALL_STATE(3348)] = 119881, - [SMALL_STATE(3349)] = 119961, - [SMALL_STATE(3350)] = 120041, - [SMALL_STATE(3351)] = 120123, - [SMALL_STATE(3352)] = 120205, - [SMALL_STATE(3353)] = 120289, - [SMALL_STATE(3354)] = 120359, - [SMALL_STATE(3355)] = 120431, - [SMALL_STATE(3356)] = 120495, - [SMALL_STATE(3357)] = 120561, - [SMALL_STATE(3358)] = 120633, - [SMALL_STATE(3359)] = 120707, - [SMALL_STATE(3360)] = 120781, - [SMALL_STATE(3361)] = 120857, - [SMALL_STATE(3362)] = 120933, - [SMALL_STATE(3363)] = 121011, - [SMALL_STATE(3364)] = 121079, - [SMALL_STATE(3365)] = 121141, - [SMALL_STATE(3366)] = 121211, - [SMALL_STATE(3367)] = 121269, - [SMALL_STATE(3368)] = 121349, - [SMALL_STATE(3369)] = 121431, - [SMALL_STATE(3370)] = 121515, - [SMALL_STATE(3371)] = 121569, - [SMALL_STATE(3372)] = 121635, - [SMALL_STATE(3373)] = 121709, - [SMALL_STATE(3374)] = 121785, - [SMALL_STATE(3375)] = 121863, - [SMALL_STATE(3376)] = 121929, - [SMALL_STATE(3377)] = 121989, - [SMALL_STATE(3378)] = 122057, - [SMALL_STATE(3379)] = 122113, - [SMALL_STATE(3380)] = 122191, - [SMALL_STATE(3381)] = 122271, - [SMALL_STATE(3382)] = 122341, - [SMALL_STATE(3383)] = 122405, - [SMALL_STATE(3384)] = 122477, - [SMALL_STATE(3385)] = 122551, - [SMALL_STATE(3386)] = 122627, - [SMALL_STATE(3387)] = 122693, - [SMALL_STATE(3388)] = 122761, - [SMALL_STATE(3389)] = 122821, - [SMALL_STATE(3390)] = 122883, - [SMALL_STATE(3391)] = 122951, - [SMALL_STATE(3392)] = 123021, - [SMALL_STATE(3393)] = 123077, - [SMALL_STATE(3394)] = 123135, - [SMALL_STATE(3395)] = 123213, - [SMALL_STATE(3396)] = 123293, - [SMALL_STATE(3397)] = 123373, - [SMALL_STATE(3398)] = 123455, - [SMALL_STATE(3399)] = 123537, - [SMALL_STATE(3400)] = 123621, - [SMALL_STATE(3401)] = 123691, - [SMALL_STATE(3402)] = 123763, - [SMALL_STATE(3403)] = 123827, - [SMALL_STATE(3404)] = 123893, - [SMALL_STATE(3405)] = 123965, - [SMALL_STATE(3406)] = 124039, - [SMALL_STATE(3407)] = 124113, - [SMALL_STATE(3408)] = 124189, - [SMALL_STATE(3409)] = 124265, - [SMALL_STATE(3410)] = 124343, - [SMALL_STATE(3411)] = 124409, - [SMALL_STATE(3412)] = 124469, - [SMALL_STATE(3413)] = 124537, - [SMALL_STATE(3414)] = 124593, - [SMALL_STATE(3415)] = 124671, - [SMALL_STATE(3416)] = 124751, - [SMALL_STATE(3417)] = 124833, - [SMALL_STATE(3418)] = 124903, - [SMALL_STATE(3419)] = 124967, - [SMALL_STATE(3420)] = 125039, - [SMALL_STATE(3421)] = 125113, - [SMALL_STATE(3422)] = 125189, - [SMALL_STATE(3423)] = 125249, - [SMALL_STATE(3424)] = 125313, - [SMALL_STATE(3425)] = 125367, - [SMALL_STATE(3426)] = 125421, - [SMALL_STATE(3427)] = 125495, - [SMALL_STATE(3428)] = 125549, - [SMALL_STATE(3429)] = 125621, - [SMALL_STATE(3430)] = 125676, - [SMALL_STATE(3431)] = 125741, - [SMALL_STATE(3432)] = 125794, - [SMALL_STATE(3433)] = 125847, - [SMALL_STATE(3434)] = 125900, - [SMALL_STATE(3435)] = 125951, - [SMALL_STATE(3436)] = 126012, - [SMALL_STATE(3437)] = 126065, - [SMALL_STATE(3438)] = 126120, - [SMALL_STATE(3439)] = 126181, - [SMALL_STATE(3440)] = 126240, - [SMALL_STATE(3441)] = 126295, - [SMALL_STATE(3442)] = 126346, - [SMALL_STATE(3443)] = 126397, - [SMALL_STATE(3444)] = 126448, - [SMALL_STATE(3445)] = 126511, - [SMALL_STATE(3446)] = 126568, - [SMALL_STATE(3447)] = 126633, - [SMALL_STATE(3448)] = 126686, - [SMALL_STATE(3449)] = 126761, - [SMALL_STATE(3450)] = 126838, - [SMALL_STATE(3451)] = 126917, - [SMALL_STATE(3452)] = 126984, - [SMALL_STATE(3453)] = 127045, - [SMALL_STATE(3454)] = 127114, - [SMALL_STATE(3455)] = 127185, - [SMALL_STATE(3456)] = 127258, - [SMALL_STATE(3457)] = 127309, - [SMALL_STATE(3458)] = 127360, - [SMALL_STATE(3459)] = 127415, - [SMALL_STATE(3460)] = 127470, - [SMALL_STATE(3461)] = 127556, - [SMALL_STATE(3462)] = 127620, - [SMALL_STATE(3463)] = 127674, - [SMALL_STATE(3464)] = 127738, - [SMALL_STATE(3465)] = 127802, - [SMALL_STATE(3466)] = 127854, - [SMALL_STATE(3467)] = 127904, - [SMALL_STATE(3468)] = 127954, - [SMALL_STATE(3469)] = 128006, - [SMALL_STATE(3470)] = 128056, - [SMALL_STATE(3471)] = 128108, - [SMALL_STATE(3472)] = 128160, - [SMALL_STATE(3473)] = 128212, - [SMALL_STATE(3474)] = 128270, - [SMALL_STATE(3475)] = 128324, - [SMALL_STATE(3476)] = 128376, - [SMALL_STATE(3477)] = 128428, - [SMALL_STATE(3478)] = 128480, - [SMALL_STATE(3479)] = 128532, - [SMALL_STATE(3480)] = 128590, - [SMALL_STATE(3481)] = 128644, - [SMALL_STATE(3482)] = 128698, - [SMALL_STATE(3483)] = 128762, - [SMALL_STATE(3484)] = 128848, - [SMALL_STATE(3485)] = 128910, - [SMALL_STATE(3486)] = 128974, - [SMALL_STATE(3487)] = 129032, - [SMALL_STATE(3488)] = 129084, - [SMALL_STATE(3489)] = 129137, - [SMALL_STATE(3490)] = 129188, - [SMALL_STATE(3491)] = 129237, - [SMALL_STATE(3492)] = 129286, - [SMALL_STATE(3493)] = 129345, - [SMALL_STATE(3494)] = 129394, - [SMALL_STATE(3495)] = 129443, - [SMALL_STATE(3496)] = 129492, - [SMALL_STATE(3497)] = 129541, - [SMALL_STATE(3498)] = 129590, - [SMALL_STATE(3499)] = 129645, - [SMALL_STATE(3500)] = 129694, - [SMALL_STATE(3501)] = 129743, - [SMALL_STATE(3502)] = 129798, - [SMALL_STATE(3503)] = 129881, - [SMALL_STATE(3504)] = 129942, - [SMALL_STATE(3505)] = 129991, - [SMALL_STATE(3506)] = 130046, - [SMALL_STATE(3507)] = 130129, - [SMALL_STATE(3508)] = 130184, - [SMALL_STATE(3509)] = 130233, - [SMALL_STATE(3510)] = 130282, - [SMALL_STATE(3511)] = 130333, - [SMALL_STATE(3512)] = 130382, - [SMALL_STATE(3513)] = 130431, - [SMALL_STATE(3514)] = 130480, - [SMALL_STATE(3515)] = 130529, - [SMALL_STATE(3516)] = 130578, - [SMALL_STATE(3517)] = 130641, - [SMALL_STATE(3518)] = 130696, - [SMALL_STATE(3519)] = 130757, - [SMALL_STATE(3520)] = 130808, - [SMALL_STATE(3521)] = 130857, - [SMALL_STATE(3522)] = 130910, - [SMALL_STATE(3523)] = 130969, - [SMALL_STATE(3524)] = 131032, - [SMALL_STATE(3525)] = 131087, - [SMALL_STATE(3526)] = 131142, - [SMALL_STATE(3527)] = 131195, - [SMALL_STATE(3528)] = 131244, - [SMALL_STATE(3529)] = 131293, - [SMALL_STATE(3530)] = 131342, - [SMALL_STATE(3531)] = 131391, - [SMALL_STATE(3532)] = 131440, - [SMALL_STATE(3533)] = 131500, - [SMALL_STATE(3534)] = 131562, - [SMALL_STATE(3535)] = 131614, - [SMALL_STATE(3536)] = 131672, - [SMALL_STATE(3537)] = 131724, - [SMALL_STATE(3538)] = 131786, - [SMALL_STATE(3539)] = 131842, - [SMALL_STATE(3540)] = 131904, - [SMALL_STATE(3541)] = 131966, - [SMALL_STATE(3542)] = 132014, - [SMALL_STATE(3543)] = 132070, - [SMALL_STATE(3544)] = 132132, - [SMALL_STATE(3545)] = 132194, - [SMALL_STATE(3546)] = 132256, - [SMALL_STATE(3547)] = 132318, - [SMALL_STATE(3548)] = 132366, - [SMALL_STATE(3549)] = 132414, - [SMALL_STATE(3550)] = 132472, - [SMALL_STATE(3551)] = 132520, - [SMALL_STATE(3552)] = 132580, - [SMALL_STATE(3553)] = 132632, - [SMALL_STATE(3554)] = 132684, - [SMALL_STATE(3555)] = 132736, - [SMALL_STATE(3556)] = 132787, - [SMALL_STATE(3557)] = 132842, - [SMALL_STATE(3558)] = 132899, - [SMALL_STATE(3559)] = 132948, - [SMALL_STATE(3560)] = 132995, - [SMALL_STATE(3561)] = 133048, - [SMALL_STATE(3562)] = 133099, - [SMALL_STATE(3563)] = 133152, - [SMALL_STATE(3564)] = 133199, - [SMALL_STATE(3565)] = 133250, - [SMALL_STATE(3566)] = 133307, - [SMALL_STATE(3567)] = 133354, - [SMALL_STATE(3568)] = 133403, - [SMALL_STATE(3569)] = 133454, - [SMALL_STATE(3570)] = 133505, - [SMALL_STATE(3571)] = 133556, - [SMALL_STATE(3572)] = 133607, - [SMALL_STATE(3573)] = 133658, - [SMALL_STATE(3574)] = 133705, - [SMALL_STATE(3575)] = 133751, - [SMALL_STATE(3576)] = 133797, - [SMALL_STATE(3577)] = 133843, - [SMALL_STATE(3578)] = 133889, - [SMALL_STATE(3579)] = 133935, - [SMALL_STATE(3580)] = 133981, - [SMALL_STATE(3581)] = 134027, - [SMALL_STATE(3582)] = 134073, - [SMALL_STATE(3583)] = 134121, - [SMALL_STATE(3584)] = 134167, - [SMALL_STATE(3585)] = 134213, - [SMALL_STATE(3586)] = 134259, - [SMALL_STATE(3587)] = 134307, - [SMALL_STATE(3588)] = 134353, - [SMALL_STATE(3589)] = 134399, - [SMALL_STATE(3590)] = 134445, - [SMALL_STATE(3591)] = 134491, - [SMALL_STATE(3592)] = 134537, - [SMALL_STATE(3593)] = 134583, - [SMALL_STATE(3594)] = 134629, - [SMALL_STATE(3595)] = 134675, - [SMALL_STATE(3596)] = 134723, - [SMALL_STATE(3597)] = 134771, - [SMALL_STATE(3598)] = 134817, - [SMALL_STATE(3599)] = 134863, - [SMALL_STATE(3600)] = 134909, - [SMALL_STATE(3601)] = 134955, - [SMALL_STATE(3602)] = 135003, - [SMALL_STATE(3603)] = 135057, - [SMALL_STATE(3604)] = 135111, - [SMALL_STATE(3605)] = 135157, - [SMALL_STATE(3606)] = 135205, - [SMALL_STATE(3607)] = 135253, - [SMALL_STATE(3608)] = 135307, - [SMALL_STATE(3609)] = 135361, - [SMALL_STATE(3610)] = 135415, - [SMALL_STATE(3611)] = 135469, - [SMALL_STATE(3612)] = 135523, - [SMALL_STATE(3613)] = 135577, - [SMALL_STATE(3614)] = 135631, - [SMALL_STATE(3615)] = 135685, - [SMALL_STATE(3616)] = 135739, - [SMALL_STATE(3617)] = 135793, - [SMALL_STATE(3618)] = 135847, - [SMALL_STATE(3619)] = 135901, - [SMALL_STATE(3620)] = 135955, - [SMALL_STATE(3621)] = 136009, - [SMALL_STATE(3622)] = 136063, - [SMALL_STATE(3623)] = 136117, - [SMALL_STATE(3624)] = 136163, - [SMALL_STATE(3625)] = 136209, - [SMALL_STATE(3626)] = 136263, - [SMALL_STATE(3627)] = 136317, - [SMALL_STATE(3628)] = 136363, - [SMALL_STATE(3629)] = 136417, - [SMALL_STATE(3630)] = 136471, - [SMALL_STATE(3631)] = 136517, - [SMALL_STATE(3632)] = 136571, - [SMALL_STATE(3633)] = 136617, - [SMALL_STATE(3634)] = 136663, - [SMALL_STATE(3635)] = 136709, - [SMALL_STATE(3636)] = 136755, - [SMALL_STATE(3637)] = 136801, - [SMALL_STATE(3638)] = 136847, - [SMALL_STATE(3639)] = 136893, - [SMALL_STATE(3640)] = 136939, - [SMALL_STATE(3641)] = 136987, - [SMALL_STATE(3642)] = 137033, - [SMALL_STATE(3643)] = 137079, - [SMALL_STATE(3644)] = 137125, - [SMALL_STATE(3645)] = 137179, - [SMALL_STATE(3646)] = 137233, - [SMALL_STATE(3647)] = 137286, - [SMALL_STATE(3648)] = 137339, - [SMALL_STATE(3649)] = 137384, - [SMALL_STATE(3650)] = 137429, - [SMALL_STATE(3651)] = 137474, - [SMALL_STATE(3652)] = 137527, - [SMALL_STATE(3653)] = 137580, - [SMALL_STATE(3654)] = 137633, - [SMALL_STATE(3655)] = 137686, - [SMALL_STATE(3656)] = 137739, - [SMALL_STATE(3657)] = 137792, - [SMALL_STATE(3658)] = 137845, - [SMALL_STATE(3659)] = 137898, - [SMALL_STATE(3660)] = 137951, - [SMALL_STATE(3661)] = 137996, - [SMALL_STATE(3662)] = 138041, - [SMALL_STATE(3663)] = 138094, - [SMALL_STATE(3664)] = 138147, - [SMALL_STATE(3665)] = 138192, - [SMALL_STATE(3666)] = 138237, - [SMALL_STATE(3667)] = 138290, - [SMALL_STATE(3668)] = 138343, - [SMALL_STATE(3669)] = 138396, - [SMALL_STATE(3670)] = 138449, - [SMALL_STATE(3671)] = 138494, - [SMALL_STATE(3672)] = 138547, - [SMALL_STATE(3673)] = 138592, - [SMALL_STATE(3674)] = 138645, - [SMALL_STATE(3675)] = 138696, - [SMALL_STATE(3676)] = 138749, - [SMALL_STATE(3677)] = 138794, - [SMALL_STATE(3678)] = 138839, - [SMALL_STATE(3679)] = 138888, - [SMALL_STATE(3680)] = 138941, - [SMALL_STATE(3681)] = 138994, - [SMALL_STATE(3682)] = 139047, - [SMALL_STATE(3683)] = 139092, - [SMALL_STATE(3684)] = 139137, - [SMALL_STATE(3685)] = 139190, - [SMALL_STATE(3686)] = 139235, - [SMALL_STATE(3687)] = 139288, - [SMALL_STATE(3688)] = 139341, - [SMALL_STATE(3689)] = 139390, - [SMALL_STATE(3690)] = 139435, - [SMALL_STATE(3691)] = 139480, - [SMALL_STATE(3692)] = 139531, - [SMALL_STATE(3693)] = 139579, - [SMALL_STATE(3694)] = 139627, - [SMALL_STATE(3695)] = 139673, - [SMALL_STATE(3696)] = 139717, - [SMALL_STATE(3697)] = 139765, - [SMALL_STATE(3698)] = 139811, - [SMALL_STATE(3699)] = 139857, - [SMALL_STATE(3700)] = 139905, - [SMALL_STATE(3701)] = 139953, - [SMALL_STATE(3702)] = 140005, - [SMALL_STATE(3703)] = 140053, - [SMALL_STATE(3704)] = 140101, - [SMALL_STATE(3705)] = 140149, - [SMALL_STATE(3706)] = 140197, - [SMALL_STATE(3707)] = 140245, - [SMALL_STATE(3708)] = 140293, - [SMALL_STATE(3709)] = 140341, - [SMALL_STATE(3710)] = 140385, - [SMALL_STATE(3711)] = 140433, - [SMALL_STATE(3712)] = 140477, - [SMALL_STATE(3713)] = 140521, - [SMALL_STATE(3714)] = 140565, - [SMALL_STATE(3715)] = 140609, - [SMALL_STATE(3716)] = 140661, - [SMALL_STATE(3717)] = 140708, - [SMALL_STATE(3718)] = 140753, - [SMALL_STATE(3719)] = 140798, - [SMALL_STATE(3720)] = 140847, - [SMALL_STATE(3721)] = 140894, - [SMALL_STATE(3722)] = 140937, - [SMALL_STATE(3723)] = 140984, - [SMALL_STATE(3724)] = 141031, - [SMALL_STATE(3725)] = 141076, - [SMALL_STATE(3726)] = 141121, - [SMALL_STATE(3727)] = 141168, - [SMALL_STATE(3728)] = 141215, - [SMALL_STATE(3729)] = 141258, - [SMALL_STATE(3730)] = 141301, - [SMALL_STATE(3731)] = 141346, - [SMALL_STATE(3732)] = 141389, - [SMALL_STATE(3733)] = 141432, - [SMALL_STATE(3734)] = 141475, - [SMALL_STATE(3735)] = 141520, - [SMALL_STATE(3736)] = 141565, - [SMALL_STATE(3737)] = 141612, - [SMALL_STATE(3738)] = 141659, - [SMALL_STATE(3739)] = 141748, - [SMALL_STATE(3740)] = 141795, - [SMALL_STATE(3741)] = 141840, - [SMALL_STATE(3742)] = 141887, - [SMALL_STATE(3743)] = 141934, - [SMALL_STATE(3744)] = 141979, - [SMALL_STATE(3745)] = 142026, - [SMALL_STATE(3746)] = 142073, - [SMALL_STATE(3747)] = 142116, - [SMALL_STATE(3748)] = 142163, - [SMALL_STATE(3749)] = 142208, - [SMALL_STATE(3750)] = 142297, - [SMALL_STATE(3751)] = 142344, - [SMALL_STATE(3752)] = 142391, - [SMALL_STATE(3753)] = 142438, - [SMALL_STATE(3754)] = 142485, - [SMALL_STATE(3755)] = 142532, - [SMALL_STATE(3756)] = 142579, - [SMALL_STATE(3757)] = 142626, - [SMALL_STATE(3758)] = 142671, - [SMALL_STATE(3759)] = 142720, - [SMALL_STATE(3760)] = 142767, - [SMALL_STATE(3761)] = 142814, - [SMALL_STATE(3762)] = 142861, - [SMALL_STATE(3763)] = 142908, - [SMALL_STATE(3764)] = 142955, - [SMALL_STATE(3765)] = 143002, - [SMALL_STATE(3766)] = 143047, - [SMALL_STATE(3767)] = 143094, - [SMALL_STATE(3768)] = 143160, - [SMALL_STATE(3769)] = 143232, - [SMALL_STATE(3770)] = 143304, - [SMALL_STATE(3771)] = 143378, - [SMALL_STATE(3772)] = 143438, - [SMALL_STATE(3773)] = 143500, - [SMALL_STATE(3774)] = 143554, - [SMALL_STATE(3775)] = 143610, - [SMALL_STATE(3776)] = 143672, - [SMALL_STATE(3777)] = 143736, - [SMALL_STATE(3778)] = 143800, - [SMALL_STATE(3779)] = 143866, - [SMALL_STATE(3780)] = 143932, - [SMALL_STATE(3781)] = 144000, - [SMALL_STATE(3782)] = 144058, - [SMALL_STATE(3783)] = 144122, - [SMALL_STATE(3784)] = 144164, - [SMALL_STATE(3785)] = 144206, - [SMALL_STATE(3786)] = 144248, - [SMALL_STATE(3787)] = 144300, - [SMALL_STATE(3788)] = 144342, - [SMALL_STATE(3789)] = 144402, - [SMALL_STATE(3790)] = 144444, - [SMALL_STATE(3791)] = 144492, - [SMALL_STATE(3792)] = 144534, - [SMALL_STATE(3793)] = 144604, - [SMALL_STATE(3794)] = 144676, - [SMALL_STATE(3795)] = 144750, - [SMALL_STATE(3796)] = 144792, - [SMALL_STATE(3797)] = 144854, - [SMALL_STATE(3798)] = 144910, - [SMALL_STATE(3799)] = 144952, - [SMALL_STATE(3800)] = 145016, - [SMALL_STATE(3801)] = 145058, - [SMALL_STATE(3802)] = 145118, - [SMALL_STATE(3803)] = 145184, - [SMALL_STATE(3804)] = 145232, - [SMALL_STATE(3805)] = 145274, - [SMALL_STATE(3806)] = 145316, - [SMALL_STATE(3807)] = 145358, - [SMALL_STATE(3808)] = 145424, - [SMALL_STATE(3809)] = 145492, - [SMALL_STATE(3810)] = 145562, - [SMALL_STATE(3811)] = 145630, - [SMALL_STATE(3812)] = 145672, - [SMALL_STATE(3813)] = 145714, - [SMALL_STATE(3814)] = 145786, - [SMALL_STATE(3815)] = 145828, - [SMALL_STATE(3816)] = 145870, - [SMALL_STATE(3817)] = 145912, - [SMALL_STATE(3818)] = 145954, - [SMALL_STATE(3819)] = 145996, - [SMALL_STATE(3820)] = 146052, - [SMALL_STATE(3821)] = 146102, - [SMALL_STATE(3822)] = 146160, - [SMALL_STATE(3823)] = 146206, - [SMALL_STATE(3824)] = 146274, - [SMALL_STATE(3825)] = 146344, - [SMALL_STATE(3826)] = 146416, - [SMALL_STATE(3827)] = 146476, - [SMALL_STATE(3828)] = 146530, - [SMALL_STATE(3829)] = 146592, - [SMALL_STATE(3830)] = 146656, - [SMALL_STATE(3831)] = 146702, - [SMALL_STATE(3832)] = 146744, - [SMALL_STATE(3833)] = 146786, - [SMALL_STATE(3834)] = 146830, - [SMALL_STATE(3835)] = 146872, - [SMALL_STATE(3836)] = 146918, - [SMALL_STATE(3837)] = 146960, - [SMALL_STATE(3838)] = 147002, - [SMALL_STATE(3839)] = 147044, - [SMALL_STATE(3840)] = 147086, - [SMALL_STATE(3841)] = 147138, - [SMALL_STATE(3842)] = 147194, - [SMALL_STATE(3843)] = 147240, - [SMALL_STATE(3844)] = 147298, - [SMALL_STATE(3845)] = 147348, - [SMALL_STATE(3846)] = 147400, - [SMALL_STATE(3847)] = 147446, - [SMALL_STATE(3848)] = 147504, - [SMALL_STATE(3849)] = 147564, - [SMALL_STATE(3850)] = 147610, - [SMALL_STATE(3851)] = 147656, - [SMALL_STATE(3852)] = 147704, - [SMALL_STATE(3853)] = 147772, - [SMALL_STATE(3854)] = 147842, - [SMALL_STATE(3855)] = 147886, - [SMALL_STATE(3856)] = 147956, - [SMALL_STATE(3857)] = 147998, - [SMALL_STATE(3858)] = 148070, - [SMALL_STATE(3859)] = 148142, - [SMALL_STATE(3860)] = 148184, - [SMALL_STATE(3861)] = 148244, - [SMALL_STATE(3862)] = 148306, - [SMALL_STATE(3863)] = 148360, - [SMALL_STATE(3864)] = 148416, - [SMALL_STATE(3865)] = 148478, - [SMALL_STATE(3866)] = 148542, - [SMALL_STATE(3867)] = 148584, - [SMALL_STATE(3868)] = 148626, - [SMALL_STATE(3869)] = 148668, - [SMALL_STATE(3870)] = 148712, - [SMALL_STATE(3871)] = 148756, - [SMALL_STATE(3872)] = 148800, - [SMALL_STATE(3873)] = 148844, - [SMALL_STATE(3874)] = 148886, - [SMALL_STATE(3875)] = 148928, - [SMALL_STATE(3876)] = 148970, - [SMALL_STATE(3877)] = 149034, - [SMALL_STATE(3878)] = 149076, - [SMALL_STATE(3879)] = 149118, - [SMALL_STATE(3880)] = 149160, - [SMALL_STATE(3881)] = 149202, - [SMALL_STATE(3882)] = 149268, - [SMALL_STATE(3883)] = 149334, - [SMALL_STATE(3884)] = 149402, - [SMALL_STATE(3885)] = 149444, - [SMALL_STATE(3886)] = 149486, - [SMALL_STATE(3887)] = 149528, - [SMALL_STATE(3888)] = 149584, - [SMALL_STATE(3889)] = 149634, - [SMALL_STATE(3890)] = 149692, - [SMALL_STATE(3891)] = 149738, - [SMALL_STATE(3892)] = 149806, - [SMALL_STATE(3893)] = 149876, - [SMALL_STATE(3894)] = 149948, - [SMALL_STATE(3895)] = 150008, - [SMALL_STATE(3896)] = 150062, - [SMALL_STATE(3897)] = 150124, - [SMALL_STATE(3898)] = 150188, - [SMALL_STATE(3899)] = 150254, - [SMALL_STATE(3900)] = 150296, - [SMALL_STATE(3901)] = 150350, - [SMALL_STATE(3902)] = 150398, - [SMALL_STATE(3903)] = 150454, - [SMALL_STATE(3904)] = 150498, - [SMALL_STATE(3905)] = 150564, - [SMALL_STATE(3906)] = 150632, - [SMALL_STATE(3907)] = 150702, - [SMALL_STATE(3908)] = 150760, - [SMALL_STATE(3909)] = 150812, - [SMALL_STATE(3910)] = 150872, - [SMALL_STATE(3911)] = 150934, - [SMALL_STATE(3912)] = 150998, - [SMALL_STATE(3913)] = 151040, - [SMALL_STATE(3914)] = 151082, - [SMALL_STATE(3915)] = 151156, - [SMALL_STATE(3916)] = 151218, - [SMALL_STATE(3917)] = 151260, - [SMALL_STATE(3918)] = 151302, - [SMALL_STATE(3919)] = 151344, - [SMALL_STATE(3920)] = 151386, - [SMALL_STATE(3921)] = 151428, - [SMALL_STATE(3922)] = 151484, - [SMALL_STATE(3923)] = 151542, - [SMALL_STATE(3924)] = 151584, - [SMALL_STATE(3925)] = 151628, - [SMALL_STATE(3926)] = 151670, - [SMALL_STATE(3927)] = 151716, - [SMALL_STATE(3928)] = 151766, - [SMALL_STATE(3929)] = 151818, - [SMALL_STATE(3930)] = 151876, - [SMALL_STATE(3931)] = 151918, - [SMALL_STATE(3932)] = 151960, - [SMALL_STATE(3933)] = 152020, - [SMALL_STATE(3934)] = 152066, - [SMALL_STATE(3935)] = 152114, - [SMALL_STATE(3936)] = 152170, - [SMALL_STATE(3937)] = 152238, - [SMALL_STATE(3938)] = 152308, - [SMALL_STATE(3939)] = 152366, - [SMALL_STATE(3940)] = 152436, - [SMALL_STATE(3941)] = 152510, - [SMALL_STATE(3942)] = 152551, - [SMALL_STATE(3943)] = 152592, - [SMALL_STATE(3944)] = 152657, - [SMALL_STATE(3945)] = 152704, - [SMALL_STATE(3946)] = 152771, - [SMALL_STATE(3947)] = 152854, - [SMALL_STATE(3948)] = 152899, - [SMALL_STATE(3949)] = 152954, - [SMALL_STATE(3950)] = 153027, - [SMALL_STATE(3951)] = 153076, - [SMALL_STATE(3952)] = 153149, - [SMALL_STATE(3953)] = 153206, - [SMALL_STATE(3954)] = 153265, - [SMALL_STATE(3955)] = 153326, - [SMALL_STATE(3956)] = 153399, - [SMALL_STATE(3957)] = 153452, - [SMALL_STATE(3958)] = 153495, - [SMALL_STATE(3959)] = 153538, - [SMALL_STATE(3960)] = 153621, - [SMALL_STATE(3961)] = 153704, - [SMALL_STATE(3962)] = 153787, - [SMALL_STATE(3963)] = 153870, - [SMALL_STATE(3964)] = 153953, - [SMALL_STATE(3965)] = 154036, - [SMALL_STATE(3966)] = 154079, - [SMALL_STATE(3967)] = 154162, - [SMALL_STATE(3968)] = 154207, - [SMALL_STATE(3969)] = 154248, - [SMALL_STATE(3970)] = 154331, - [SMALL_STATE(3971)] = 154414, - [SMALL_STATE(3972)] = 154497, - [SMALL_STATE(3973)] = 154538, - [SMALL_STATE(3974)] = 154579, - [SMALL_STATE(3975)] = 154620, - [SMALL_STATE(3976)] = 154703, - [SMALL_STATE(3977)] = 154786, - [SMALL_STATE(3978)] = 154869, - [SMALL_STATE(3979)] = 154910, - [SMALL_STATE(3980)] = 154951, - [SMALL_STATE(3981)] = 154992, - [SMALL_STATE(3982)] = 155075, - [SMALL_STATE(3983)] = 155116, - [SMALL_STATE(3984)] = 155157, - [SMALL_STATE(3985)] = 155198, - [SMALL_STATE(3986)] = 155281, - [SMALL_STATE(3987)] = 155322, - [SMALL_STATE(3988)] = 155405, - [SMALL_STATE(3989)] = 155478, - [SMALL_STATE(3990)] = 155519, - [SMALL_STATE(3991)] = 155602, - [SMALL_STATE(3992)] = 155643, - [SMALL_STATE(3993)] = 155716, - [SMALL_STATE(3994)] = 155799, - [SMALL_STATE(3995)] = 155882, - [SMALL_STATE(3996)] = 155923, - [SMALL_STATE(3997)] = 156006, - [SMALL_STATE(3998)] = 156047, - [SMALL_STATE(3999)] = 156130, - [SMALL_STATE(4000)] = 156203, - [SMALL_STATE(4001)] = 156286, - [SMALL_STATE(4002)] = 156327, - [SMALL_STATE(4003)] = 156410, - [SMALL_STATE(4004)] = 156451, - [SMALL_STATE(4005)] = 156514, - [SMALL_STATE(4006)] = 156555, - [SMALL_STATE(4007)] = 156606, - [SMALL_STATE(4008)] = 156647, - [SMALL_STATE(4009)] = 156688, - [SMALL_STATE(4010)] = 156771, - [SMALL_STATE(4011)] = 156854, - [SMALL_STATE(4012)] = 156922, - [SMALL_STATE(4013)] = 156972, - [SMALL_STATE(4014)] = 157038, - [SMALL_STATE(4015)] = 157104, - [SMALL_STATE(4016)] = 157168, - [SMALL_STATE(4017)] = 157236, - [SMALL_STATE(4018)] = 157294, - [SMALL_STATE(4019)] = 157336, - [SMALL_STATE(4020)] = 157388, - [SMALL_STATE(4021)] = 157444, - [SMALL_STATE(4022)] = 157504, - [SMALL_STATE(4023)] = 157558, - [SMALL_STATE(4024)] = 157620, - [SMALL_STATE(4025)] = 157666, - [SMALL_STATE(4026)] = 157716, - [SMALL_STATE(4027)] = 157774, - [SMALL_STATE(4028)] = 157834, - [SMALL_STATE(4029)] = 157890, - [SMALL_STATE(4030)] = 157942, - [SMALL_STATE(4031)] = 158004, - [SMALL_STATE(4032)] = 158050, - [SMALL_STATE(4033)] = 158104, - [SMALL_STATE(4034)] = 158146, - [SMALL_STATE(4035)] = 158188, - [SMALL_STATE(4036)] = 158228, - [SMALL_STATE(4037)] = 158272, - [SMALL_STATE(4038)] = 158316, - [SMALL_STATE(4039)] = 158380, - [SMALL_STATE(4040)] = 158419, - [SMALL_STATE(4041)] = 158458, - [SMALL_STATE(4042)] = 158525, - [SMALL_STATE(4043)] = 158602, - [SMALL_STATE(4044)] = 158679, - [SMALL_STATE(4045)] = 158756, - [SMALL_STATE(4046)] = 158833, - [SMALL_STATE(4047)] = 158910, - [SMALL_STATE(4048)] = 158987, - [SMALL_STATE(4049)] = 159026, - [SMALL_STATE(4050)] = 159093, - [SMALL_STATE(4051)] = 159160, - [SMALL_STATE(4052)] = 159227, - [SMALL_STATE(4053)] = 159294, - [SMALL_STATE(4054)] = 159361, - [SMALL_STATE(4055)] = 159438, - [SMALL_STATE(4056)] = 159477, - [SMALL_STATE(4057)] = 159544, - [SMALL_STATE(4058)] = 159621, - [SMALL_STATE(4059)] = 159698, - [SMALL_STATE(4060)] = 159775, - [SMALL_STATE(4061)] = 159852, - [SMALL_STATE(4062)] = 159919, - [SMALL_STATE(4063)] = 159958, - [SMALL_STATE(4064)] = 160003, - [SMALL_STATE(4065)] = 160070, - [SMALL_STATE(4066)] = 160147, - [SMALL_STATE(4067)] = 160191, - [SMALL_STATE(4068)] = 160245, - [SMALL_STATE(4069)] = 160296, - [SMALL_STATE(4070)] = 160347, - [SMALL_STATE(4071)] = 160388, - [SMALL_STATE(4072)] = 160439, - [SMALL_STATE(4073)] = 160492, - [SMALL_STATE(4074)] = 160543, - [SMALL_STATE(4075)] = 160593, - [SMALL_STATE(4076)] = 160633, - [SMALL_STATE(4077)] = 160671, - [SMALL_STATE(4078)] = 160721, - [SMALL_STATE(4079)] = 160761, - [SMALL_STATE(4080)] = 160799, - [SMALL_STATE(4081)] = 160855, - [SMALL_STATE(4082)] = 160905, - [SMALL_STATE(4083)] = 160953, - [SMALL_STATE(4084)] = 161003, - [SMALL_STATE(4085)] = 161041, - [SMALL_STATE(4086)] = 161094, - [SMALL_STATE(4087)] = 161141, - [SMALL_STATE(4088)] = 161178, - [SMALL_STATE(4089)] = 161217, - [SMALL_STATE(4090)] = 161254, - [SMALL_STATE(4091)] = 161293, - [SMALL_STATE(4092)] = 161328, - [SMALL_STATE(4093)] = 161375, - [SMALL_STATE(4094)] = 161422, - [SMALL_STATE(4095)] = 161469, - [SMALL_STATE(4096)] = 161516, - [SMALL_STATE(4097)] = 161551, - [SMALL_STATE(4098)] = 161604, - [SMALL_STATE(4099)] = 161657, - [SMALL_STATE(4100)] = 161696, - [SMALL_STATE(4101)] = 161733, - [SMALL_STATE(4102)] = 161788, - [SMALL_STATE(4103)] = 161835, - [SMALL_STATE(4104)] = 161888, - [SMALL_STATE(4105)] = 161923, - [SMALL_STATE(4106)] = 161975, - [SMALL_STATE(4107)] = 162025, - [SMALL_STATE(4108)] = 162077, - [SMALL_STATE(4109)] = 162113, - [SMALL_STATE(4110)] = 162147, - [SMALL_STATE(4111)] = 162195, - [SMALL_STATE(4112)] = 162245, - [SMALL_STATE(4113)] = 162279, - [SMALL_STATE(4114)] = 162329, - [SMALL_STATE(4115)] = 162367, - [SMALL_STATE(4116)] = 162419, - [SMALL_STATE(4117)] = 162457, - [SMALL_STATE(4118)] = 162493, - [SMALL_STATE(4119)] = 162529, - [SMALL_STATE(4120)] = 162565, - [SMALL_STATE(4121)] = 162601, - [SMALL_STATE(4122)] = 162637, - [SMALL_STATE(4123)] = 162687, - [SMALL_STATE(4124)] = 162739, - [SMALL_STATE(4125)] = 162781, - [SMALL_STATE(4126)] = 162815, - [SMALL_STATE(4127)] = 162853, - [SMALL_STATE(4128)] = 162903, - [SMALL_STATE(4129)] = 162941, - [SMALL_STATE(4130)] = 162990, - [SMALL_STATE(4131)] = 163025, - [SMALL_STATE(4132)] = 163064, - [SMALL_STATE(4133)] = 163113, - [SMALL_STATE(4134)] = 163148, - [SMALL_STATE(4135)] = 163181, - [SMALL_STATE(4136)] = 163214, - [SMALL_STATE(4137)] = 163263, - [SMALL_STATE(4138)] = 163312, - [SMALL_STATE(4139)] = 163347, - [SMALL_STATE(4140)] = 163388, - [SMALL_STATE(4141)] = 163437, - [SMALL_STATE(4142)] = 163472, - [SMALL_STATE(4143)] = 163507, - [SMALL_STATE(4144)] = 163542, - [SMALL_STATE(4145)] = 163575, - [SMALL_STATE(4146)] = 163612, - [SMALL_STATE(4147)] = 163649, - [SMALL_STATE(4148)] = 163696, - [SMALL_STATE(4149)] = 163729, - [SMALL_STATE(4150)] = 163766, - [SMALL_STATE(4151)] = 163799, - [SMALL_STATE(4152)] = 163838, - [SMALL_STATE(4153)] = 163871, - [SMALL_STATE(4154)] = 163907, - [SMALL_STATE(4155)] = 163945, - [SMALL_STATE(4156)] = 163985, - [SMALL_STATE(4157)] = 164017, - [SMALL_STATE(4158)] = 164057, - [SMALL_STATE(4159)] = 164089, - [SMALL_STATE(4160)] = 164121, - [SMALL_STATE(4161)] = 164157, - [SMALL_STATE(4162)] = 164199, - [SMALL_STATE(4163)] = 164231, - [SMALL_STATE(4164)] = 164265, - [SMALL_STATE(4165)] = 164301, - [SMALL_STATE(4166)] = 164339, - [SMALL_STATE(4167)] = 164371, - [SMALL_STATE(4168)] = 164423, - [SMALL_STATE(4169)] = 164457, - [SMALL_STATE(4170)] = 164491, - [SMALL_STATE(4171)] = 164527, - [SMALL_STATE(4172)] = 164559, - [SMALL_STATE(4173)] = 164605, - [SMALL_STATE(4174)] = 164638, - [SMALL_STATE(4175)] = 164671, - [SMALL_STATE(4176)] = 164702, - [SMALL_STATE(4177)] = 164737, - [SMALL_STATE(4178)] = 164772, - [SMALL_STATE(4179)] = 164811, - [SMALL_STATE(4180)] = 164846, - [SMALL_STATE(4181)] = 164881, - [SMALL_STATE(4182)] = 164914, - [SMALL_STATE(4183)] = 164959, - [SMALL_STATE(4184)] = 165008, - [SMALL_STATE(4185)] = 165051, - [SMALL_STATE(4186)] = 165084, - [SMALL_STATE(4187)] = 165117, - [SMALL_STATE(4188)] = 165148, - [SMALL_STATE(4189)] = 165181, - [SMALL_STATE(4190)] = 165212, - [SMALL_STATE(4191)] = 165261, - [SMALL_STATE(4192)] = 165296, - [SMALL_STATE(4193)] = 165345, - [SMALL_STATE(4194)] = 165380, - [SMALL_STATE(4195)] = 165417, - [SMALL_STATE(4196)] = 165450, - [SMALL_STATE(4197)] = 165489, - [SMALL_STATE(4198)] = 165540, - [SMALL_STATE(4199)] = 165577, - [SMALL_STATE(4200)] = 165626, - [SMALL_STATE(4201)] = 165659, - [SMALL_STATE(4202)] = 165698, - [SMALL_STATE(4203)] = 165731, - [SMALL_STATE(4204)] = 165772, - [SMALL_STATE(4205)] = 165811, - [SMALL_STATE(4206)] = 165844, - [SMALL_STATE(4207)] = 165889, - [SMALL_STATE(4208)] = 165921, - [SMALL_STATE(4209)] = 165967, - [SMALL_STATE(4210)] = 166013, - [SMALL_STATE(4211)] = 166043, - [SMALL_STATE(4212)] = 166077, - [SMALL_STATE(4213)] = 166113, - [SMALL_STATE(4214)] = 166147, - [SMALL_STATE(4215)] = 166179, - [SMALL_STATE(4216)] = 166211, - [SMALL_STATE(4217)] = 166243, - [SMALL_STATE(4218)] = 166273, - [SMALL_STATE(4219)] = 166303, - [SMALL_STATE(4220)] = 166333, - [SMALL_STATE(4221)] = 166367, - [SMALL_STATE(4222)] = 166399, - [SMALL_STATE(4223)] = 166431, - [SMALL_STATE(4224)] = 166463, - [SMALL_STATE(4225)] = 166497, - [SMALL_STATE(4226)] = 166527, - [SMALL_STATE(4227)] = 166569, - [SMALL_STATE(4228)] = 166599, - [SMALL_STATE(4229)] = 166629, - [SMALL_STATE(4230)] = 166677, - [SMALL_STATE(4231)] = 166725, - [SMALL_STATE(4232)] = 166771, - [SMALL_STATE(4233)] = 166805, - [SMALL_STATE(4234)] = 166837, - [SMALL_STATE(4235)] = 166869, - [SMALL_STATE(4236)] = 166917, - [SMALL_STATE(4237)] = 166949, - [SMALL_STATE(4238)] = 166995, - [SMALL_STATE(4239)] = 167041, - [SMALL_STATE(4240)] = 167071, - [SMALL_STATE(4241)] = 167119, - [SMALL_STATE(4242)] = 167151, - [SMALL_STATE(4243)] = 167181, - [SMALL_STATE(4244)] = 167213, - [SMALL_STATE(4245)] = 167257, - [SMALL_STATE(4246)] = 167291, - [SMALL_STATE(4247)] = 167321, - [SMALL_STATE(4248)] = 167359, - [SMALL_STATE(4249)] = 167395, - [SMALL_STATE(4250)] = 167425, - [SMALL_STATE(4251)] = 167455, - [SMALL_STATE(4252)] = 167489, - [SMALL_STATE(4253)] = 167523, - [SMALL_STATE(4254)] = 167557, - [SMALL_STATE(4255)] = 167591, - [SMALL_STATE(4256)] = 167629, - [SMALL_STATE(4257)] = 167659, - [SMALL_STATE(4258)] = 167696, - [SMALL_STATE(4259)] = 167729, - [SMALL_STATE(4260)] = 167760, - [SMALL_STATE(4261)] = 167797, - [SMALL_STATE(4262)] = 167828, - [SMALL_STATE(4263)] = 167857, - [SMALL_STATE(4264)] = 167890, - [SMALL_STATE(4265)] = 167919, - [SMALL_STATE(4266)] = 167952, - [SMALL_STATE(4267)] = 167981, - [SMALL_STATE(4268)] = 168012, - [SMALL_STATE(4269)] = 168041, - [SMALL_STATE(4270)] = 168078, - [SMALL_STATE(4271)] = 168115, - [SMALL_STATE(4272)] = 168152, - [SMALL_STATE(4273)] = 168189, - [SMALL_STATE(4274)] = 168220, - [SMALL_STATE(4275)] = 168257, - [SMALL_STATE(4276)] = 168294, - [SMALL_STATE(4277)] = 168325, - [SMALL_STATE(4278)] = 168358, - [SMALL_STATE(4279)] = 168395, - [SMALL_STATE(4280)] = 168432, - [SMALL_STATE(4281)] = 168469, - [SMALL_STATE(4282)] = 168506, - [SMALL_STATE(4283)] = 168539, - [SMALL_STATE(4284)] = 168576, - [SMALL_STATE(4285)] = 168613, - [SMALL_STATE(4286)] = 168650, - [SMALL_STATE(4287)] = 168687, - [SMALL_STATE(4288)] = 168724, - [SMALL_STATE(4289)] = 168753, - [SMALL_STATE(4290)] = 168782, - [SMALL_STATE(4291)] = 168813, - [SMALL_STATE(4292)] = 168850, - [SMALL_STATE(4293)] = 168883, - [SMALL_STATE(4294)] = 168916, - [SMALL_STATE(4295)] = 168949, - [SMALL_STATE(4296)] = 168978, - [SMALL_STATE(4297)] = 169009, - [SMALL_STATE(4298)] = 169042, - [SMALL_STATE(4299)] = 169071, - [SMALL_STATE(4300)] = 169108, - [SMALL_STATE(4301)] = 169139, - [SMALL_STATE(4302)] = 169170, - [SMALL_STATE(4303)] = 169199, - [SMALL_STATE(4304)] = 169236, - [SMALL_STATE(4305)] = 169267, - [SMALL_STATE(4306)] = 169304, - [SMALL_STATE(4307)] = 169333, - [SMALL_STATE(4308)] = 169362, - [SMALL_STATE(4309)] = 169399, - [SMALL_STATE(4310)] = 169436, - [SMALL_STATE(4311)] = 169473, - [SMALL_STATE(4312)] = 169506, - [SMALL_STATE(4313)] = 169543, - [SMALL_STATE(4314)] = 169580, - [SMALL_STATE(4315)] = 169617, - [SMALL_STATE(4316)] = 169650, - [SMALL_STATE(4317)] = 169687, - [SMALL_STATE(4318)] = 169718, - [SMALL_STATE(4319)] = 169747, - [SMALL_STATE(4320)] = 169778, - [SMALL_STATE(4321)] = 169807, - [SMALL_STATE(4322)] = 169838, - [SMALL_STATE(4323)] = 169875, - [SMALL_STATE(4324)] = 169906, - [SMALL_STATE(4325)] = 169937, - [SMALL_STATE(4326)] = 169968, - [SMALL_STATE(4327)] = 169999, - [SMALL_STATE(4328)] = 170030, - [SMALL_STATE(4329)] = 170061, - [SMALL_STATE(4330)] = 170094, - [SMALL_STATE(4331)] = 170125, - [SMALL_STATE(4332)] = 170162, - [SMALL_STATE(4333)] = 170199, - [SMALL_STATE(4334)] = 170236, - [SMALL_STATE(4335)] = 170267, - [SMALL_STATE(4336)] = 170300, - [SMALL_STATE(4337)] = 170336, - [SMALL_STATE(4338)] = 170372, - [SMALL_STATE(4339)] = 170404, - [SMALL_STATE(4340)] = 170450, - [SMALL_STATE(4341)] = 170484, - [SMALL_STATE(4342)] = 170512, - [SMALL_STATE(4343)] = 170548, - [SMALL_STATE(4344)] = 170580, - [SMALL_STATE(4345)] = 170608, - [SMALL_STATE(4346)] = 170642, - [SMALL_STATE(4347)] = 170674, - [SMALL_STATE(4348)] = 170706, - [SMALL_STATE(4349)] = 170742, - [SMALL_STATE(4350)] = 170774, - [SMALL_STATE(4351)] = 170806, - [SMALL_STATE(4352)] = 170842, - [SMALL_STATE(4353)] = 170878, - [SMALL_STATE(4354)] = 170912, - [SMALL_STATE(4355)] = 170950, - [SMALL_STATE(4356)] = 170986, - [SMALL_STATE(4357)] = 171022, - [SMALL_STATE(4358)] = 171058, - [SMALL_STATE(4359)] = 171094, - [SMALL_STATE(4360)] = 171126, - [SMALL_STATE(4361)] = 171154, - [SMALL_STATE(4362)] = 171188, - [SMALL_STATE(4363)] = 171224, - [SMALL_STATE(4364)] = 171260, - [SMALL_STATE(4365)] = 171288, - [SMALL_STATE(4366)] = 171320, - [SMALL_STATE(4367)] = 171356, - [SMALL_STATE(4368)] = 171394, - [SMALL_STATE(4369)] = 171430, - [SMALL_STATE(4370)] = 171460, - [SMALL_STATE(4371)] = 171488, - [SMALL_STATE(4372)] = 171518, - [SMALL_STATE(4373)] = 171548, - [SMALL_STATE(4374)] = 171582, - [SMALL_STATE(4375)] = 171618, - [SMALL_STATE(4376)] = 171664, - [SMALL_STATE(4377)] = 171694, - [SMALL_STATE(4378)] = 171724, - [SMALL_STATE(4379)] = 171758, - [SMALL_STATE(4380)] = 171786, - [SMALL_STATE(4381)] = 171814, - [SMALL_STATE(4382)] = 171850, - [SMALL_STATE(4383)] = 171886, - [SMALL_STATE(4384)] = 171922, - [SMALL_STATE(4385)] = 171950, - [SMALL_STATE(4386)] = 171980, - [SMALL_STATE(4387)] = 172016, - [SMALL_STATE(4388)] = 172044, - [SMALL_STATE(4389)] = 172076, - [SMALL_STATE(4390)] = 172104, - [SMALL_STATE(4391)] = 172136, - [SMALL_STATE(4392)] = 172166, - [SMALL_STATE(4393)] = 172198, - [SMALL_STATE(4394)] = 172234, - [SMALL_STATE(4395)] = 172270, - [SMALL_STATE(4396)] = 172300, - [SMALL_STATE(4397)] = 172332, - [SMALL_STATE(4398)] = 172364, - [SMALL_STATE(4399)] = 172394, - [SMALL_STATE(4400)] = 172422, - [SMALL_STATE(4401)] = 172450, - [SMALL_STATE(4402)] = 172478, - [SMALL_STATE(4403)] = 172514, - [SMALL_STATE(4404)] = 172550, - [SMALL_STATE(4405)] = 172586, - [SMALL_STATE(4406)] = 172616, - [SMALL_STATE(4407)] = 172644, - [SMALL_STATE(4408)] = 172676, - [SMALL_STATE(4409)] = 172712, - [SMALL_STATE(4410)] = 172744, - [SMALL_STATE(4411)] = 172796, - [SMALL_STATE(4412)] = 172824, - [SMALL_STATE(4413)] = 172860, - [SMALL_STATE(4414)] = 172896, - [SMALL_STATE(4415)] = 172932, - [SMALL_STATE(4416)] = 172968, - [SMALL_STATE(4417)] = 173004, - [SMALL_STATE(4418)] = 173040, - [SMALL_STATE(4419)] = 173076, - [SMALL_STATE(4420)] = 173101, - [SMALL_STATE(4421)] = 173128, - [SMALL_STATE(4422)] = 173155, - [SMALL_STATE(4423)] = 173186, - [SMALL_STATE(4424)] = 173215, - [SMALL_STATE(4425)] = 173244, - [SMALL_STATE(4426)] = 173275, - [SMALL_STATE(4427)] = 173310, - [SMALL_STATE(4428)] = 173337, - [SMALL_STATE(4429)] = 173364, - [SMALL_STATE(4430)] = 173399, - [SMALL_STATE(4431)] = 173434, - [SMALL_STATE(4432)] = 173465, - [SMALL_STATE(4433)] = 173492, - [SMALL_STATE(4434)] = 173519, - [SMALL_STATE(4435)] = 173550, - [SMALL_STATE(4436)] = 173581, - [SMALL_STATE(4437)] = 173610, - [SMALL_STATE(4438)] = 173637, - [SMALL_STATE(4439)] = 173666, - [SMALL_STATE(4440)] = 173697, - [SMALL_STATE(4441)] = 173728, - [SMALL_STATE(4442)] = 173759, - [SMALL_STATE(4443)] = 173786, - [SMALL_STATE(4444)] = 173817, - [SMALL_STATE(4445)] = 173852, - [SMALL_STATE(4446)] = 173885, - [SMALL_STATE(4447)] = 173918, - [SMALL_STATE(4448)] = 173945, - [SMALL_STATE(4449)] = 173976, - [SMALL_STATE(4450)] = 174007, - [SMALL_STATE(4451)] = 174034, - [SMALL_STATE(4452)] = 174061, - [SMALL_STATE(4453)] = 174094, - [SMALL_STATE(4454)] = 174121, - [SMALL_STATE(4455)] = 174148, - [SMALL_STATE(4456)] = 174179, - [SMALL_STATE(4457)] = 174206, - [SMALL_STATE(4458)] = 174237, - [SMALL_STATE(4459)] = 174270, - [SMALL_STATE(4460)] = 174303, - [SMALL_STATE(4461)] = 174330, - [SMALL_STATE(4462)] = 174357, - [SMALL_STATE(4463)] = 174390, - [SMALL_STATE(4464)] = 174421, - [SMALL_STATE(4465)] = 174448, - [SMALL_STATE(4466)] = 174477, - [SMALL_STATE(4467)] = 174506, - [SMALL_STATE(4468)] = 174537, - [SMALL_STATE(4469)] = 174568, - [SMALL_STATE(4470)] = 174595, - [SMALL_STATE(4471)] = 174624, - [SMALL_STATE(4472)] = 174651, - [SMALL_STATE(4473)] = 174682, - [SMALL_STATE(4474)] = 174709, - [SMALL_STATE(4475)] = 174738, - [SMALL_STATE(4476)] = 174767, - [SMALL_STATE(4477)] = 174798, - [SMALL_STATE(4478)] = 174829, - [SMALL_STATE(4479)] = 174862, - [SMALL_STATE(4480)] = 174893, - [SMALL_STATE(4481)] = 174924, - [SMALL_STATE(4482)] = 174957, - [SMALL_STATE(4483)] = 174990, - [SMALL_STATE(4484)] = 175023, - [SMALL_STATE(4485)] = 175056, - [SMALL_STATE(4486)] = 175083, - [SMALL_STATE(4487)] = 175110, - [SMALL_STATE(4488)] = 175137, - [SMALL_STATE(4489)] = 175168, - [SMALL_STATE(4490)] = 175199, - [SMALL_STATE(4491)] = 175228, - [SMALL_STATE(4492)] = 175259, - [SMALL_STATE(4493)] = 175288, - [SMALL_STATE(4494)] = 175321, - [SMALL_STATE(4495)] = 175346, - [SMALL_STATE(4496)] = 175377, - [SMALL_STATE(4497)] = 175412, - [SMALL_STATE(4498)] = 175443, - [SMALL_STATE(4499)] = 175474, - [SMALL_STATE(4500)] = 175505, - [SMALL_STATE(4501)] = 175536, - [SMALL_STATE(4502)] = 175561, - [SMALL_STATE(4503)] = 175588, - [SMALL_STATE(4504)] = 175619, - [SMALL_STATE(4505)] = 175646, - [SMALL_STATE(4506)] = 175673, - [SMALL_STATE(4507)] = 175704, - [SMALL_STATE(4508)] = 175729, - [SMALL_STATE(4509)] = 175756, - [SMALL_STATE(4510)] = 175781, - [SMALL_STATE(4511)] = 175808, - [SMALL_STATE(4512)] = 175835, - [SMALL_STATE(4513)] = 175866, - [SMALL_STATE(4514)] = 175893, - [SMALL_STATE(4515)] = 175918, - [SMALL_STATE(4516)] = 175949, - [SMALL_STATE(4517)] = 175974, - [SMALL_STATE(4518)] = 175999, - [SMALL_STATE(4519)] = 176030, - [SMALL_STATE(4520)] = 176061, - [SMALL_STATE(4521)] = 176088, - [SMALL_STATE(4522)] = 176115, - [SMALL_STATE(4523)] = 176144, - [SMALL_STATE(4524)] = 176175, - [SMALL_STATE(4525)] = 176202, - [SMALL_STATE(4526)] = 176231, - [SMALL_STATE(4527)] = 176262, - [SMALL_STATE(4528)] = 176293, - [SMALL_STATE(4529)] = 176324, - [SMALL_STATE(4530)] = 176353, - [SMALL_STATE(4531)] = 176380, - [SMALL_STATE(4532)] = 176405, - [SMALL_STATE(4533)] = 176430, - [SMALL_STATE(4534)] = 176463, - [SMALL_STATE(4535)] = 176492, - [SMALL_STATE(4536)] = 176519, - [SMALL_STATE(4537)] = 176548, - [SMALL_STATE(4538)] = 176577, - [SMALL_STATE(4539)] = 176604, - [SMALL_STATE(4540)] = 176633, - [SMALL_STATE(4541)] = 176664, - [SMALL_STATE(4542)] = 176693, - [SMALL_STATE(4543)] = 176720, - [SMALL_STATE(4544)] = 176747, - [SMALL_STATE(4545)] = 176778, - [SMALL_STATE(4546)] = 176805, - [SMALL_STATE(4547)] = 176834, - [SMALL_STATE(4548)] = 176863, - [SMALL_STATE(4549)] = 176898, - [SMALL_STATE(4550)] = 176929, - [SMALL_STATE(4551)] = 176956, - [SMALL_STATE(4552)] = 176987, - [SMALL_STATE(4553)] = 177014, - [SMALL_STATE(4554)] = 177049, - [SMALL_STATE(4555)] = 177082, - [SMALL_STATE(4556)] = 177109, - [SMALL_STATE(4557)] = 177142, - [SMALL_STATE(4558)] = 177175, - [SMALL_STATE(4559)] = 177206, - [SMALL_STATE(4560)] = 177237, - [SMALL_STATE(4561)] = 177264, - [SMALL_STATE(4562)] = 177297, - [SMALL_STATE(4563)] = 177330, - [SMALL_STATE(4564)] = 177357, - [SMALL_STATE(4565)] = 177384, - [SMALL_STATE(4566)] = 177417, - [SMALL_STATE(4567)] = 177450, - [SMALL_STATE(4568)] = 177483, - [SMALL_STATE(4569)] = 177514, - [SMALL_STATE(4570)] = 177543, - [SMALL_STATE(4571)] = 177574, - [SMALL_STATE(4572)] = 177603, - [SMALL_STATE(4573)] = 177634, - [SMALL_STATE(4574)] = 177661, - [SMALL_STATE(4575)] = 177694, - [SMALL_STATE(4576)] = 177725, - [SMALL_STATE(4577)] = 177752, - [SMALL_STATE(4578)] = 177783, - [SMALL_STATE(4579)] = 177814, - [SMALL_STATE(4580)] = 177849, - [SMALL_STATE(4581)] = 177880, - [SMALL_STATE(4582)] = 177907, - [SMALL_STATE(4583)] = 177938, - [SMALL_STATE(4584)] = 177969, - [SMALL_STATE(4585)] = 178000, - [SMALL_STATE(4586)] = 178031, - [SMALL_STATE(4587)] = 178062, - [SMALL_STATE(4588)] = 178095, - [SMALL_STATE(4589)] = 178126, - [SMALL_STATE(4590)] = 178151, - [SMALL_STATE(4591)] = 178178, - [SMALL_STATE(4592)] = 178205, - [SMALL_STATE(4593)] = 178232, - [SMALL_STATE(4594)] = 178259, - [SMALL_STATE(4595)] = 178286, - [SMALL_STATE(4596)] = 178319, - [SMALL_STATE(4597)] = 178346, - [SMALL_STATE(4598)] = 178381, - [SMALL_STATE(4599)] = 178410, - [SMALL_STATE(4600)] = 178439, - [SMALL_STATE(4601)] = 178472, - [SMALL_STATE(4602)] = 178503, - [SMALL_STATE(4603)] = 178534, - [SMALL_STATE(4604)] = 178558, - [SMALL_STATE(4605)] = 178588, - [SMALL_STATE(4606)] = 178618, - [SMALL_STATE(4607)] = 178652, - [SMALL_STATE(4608)] = 178676, - [SMALL_STATE(4609)] = 178710, - [SMALL_STATE(4610)] = 178734, - [SMALL_STATE(4611)] = 178758, - [SMALL_STATE(4612)] = 178792, - [SMALL_STATE(4613)] = 178832, - [SMALL_STATE(4614)] = 178884, - [SMALL_STATE(4615)] = 178910, - [SMALL_STATE(4616)] = 178944, - [SMALL_STATE(4617)] = 178978, - [SMALL_STATE(4618)] = 179006, - [SMALL_STATE(4619)] = 179058, - [SMALL_STATE(4620)] = 179090, - [SMALL_STATE(4621)] = 179116, - [SMALL_STATE(4622)] = 179142, - [SMALL_STATE(4623)] = 179194, - [SMALL_STATE(4624)] = 179224, - [SMALL_STATE(4625)] = 179258, - [SMALL_STATE(4626)] = 179292, - [SMALL_STATE(4627)] = 179318, - [SMALL_STATE(4628)] = 179352, - [SMALL_STATE(4629)] = 179380, - [SMALL_STATE(4630)] = 179410, - [SMALL_STATE(4631)] = 179438, - [SMALL_STATE(4632)] = 179462, - [SMALL_STATE(4633)] = 179490, - [SMALL_STATE(4634)] = 179516, - [SMALL_STATE(4635)] = 179542, - [SMALL_STATE(4636)] = 179568, - [SMALL_STATE(4637)] = 179612, - [SMALL_STATE(4638)] = 179642, - [SMALL_STATE(4639)] = 179672, - [SMALL_STATE(4640)] = 179700, - [SMALL_STATE(4641)] = 179726, - [SMALL_STATE(4642)] = 179760, - [SMALL_STATE(4643)] = 179784, - [SMALL_STATE(4644)] = 179810, - [SMALL_STATE(4645)] = 179834, - [SMALL_STATE(4646)] = 179864, - [SMALL_STATE(4647)] = 179894, - [SMALL_STATE(4648)] = 179928, - [SMALL_STATE(4649)] = 179956, - [SMALL_STATE(4650)] = 179986, - [SMALL_STATE(4651)] = 180014, - [SMALL_STATE(4652)] = 180048, - [SMALL_STATE(4653)] = 180072, - [SMALL_STATE(4654)] = 180096, - [SMALL_STATE(4655)] = 180124, - [SMALL_STATE(4656)] = 180148, - [SMALL_STATE(4657)] = 180172, - [SMALL_STATE(4658)] = 180196, - [SMALL_STATE(4659)] = 180222, - [SMALL_STATE(4660)] = 180250, - [SMALL_STATE(4661)] = 180290, - [SMALL_STATE(4662)] = 180314, - [SMALL_STATE(4663)] = 180344, - [SMALL_STATE(4664)] = 180396, - [SMALL_STATE(4665)] = 180448, - [SMALL_STATE(4666)] = 180476, - [SMALL_STATE(4667)] = 180528, - [SMALL_STATE(4668)] = 180552, - [SMALL_STATE(4669)] = 180604, - [SMALL_STATE(4670)] = 180656, - [SMALL_STATE(4671)] = 180680, - [SMALL_STATE(4672)] = 180724, - [SMALL_STATE(4673)] = 180752, - [SMALL_STATE(4674)] = 180780, - [SMALL_STATE(4675)] = 180806, - [SMALL_STATE(4676)] = 180836, - [SMALL_STATE(4677)] = 180864, - [SMALL_STATE(4678)] = 180898, - [SMALL_STATE(4679)] = 180928, - [SMALL_STATE(4680)] = 180954, - [SMALL_STATE(4681)] = 180978, - [SMALL_STATE(4682)] = 181006, - [SMALL_STATE(4683)] = 181040, - [SMALL_STATE(4684)] = 181080, - [SMALL_STATE(4685)] = 181114, - [SMALL_STATE(4686)] = 181142, - [SMALL_STATE(4687)] = 181170, - [SMALL_STATE(4688)] = 181204, - [SMALL_STATE(4689)] = 181230, - [SMALL_STATE(4690)] = 181260, - [SMALL_STATE(4691)] = 181290, - [SMALL_STATE(4692)] = 181316, - [SMALL_STATE(4693)] = 181340, - [SMALL_STATE(4694)] = 181374, - [SMALL_STATE(4695)] = 181418, - [SMALL_STATE(4696)] = 181444, - [SMALL_STATE(4697)] = 181478, - [SMALL_STATE(4698)] = 181508, - [SMALL_STATE(4699)] = 181534, - [SMALL_STATE(4700)] = 181564, - [SMALL_STATE(4701)] = 181594, - [SMALL_STATE(4702)] = 181620, - [SMALL_STATE(4703)] = 181648, - [SMALL_STATE(4704)] = 181676, - [SMALL_STATE(4705)] = 181702, - [SMALL_STATE(4706)] = 181730, - [SMALL_STATE(4707)] = 181754, - [SMALL_STATE(4708)] = 181784, - [SMALL_STATE(4709)] = 181808, - [SMALL_STATE(4710)] = 181848, - [SMALL_STATE(4711)] = 181882, - [SMALL_STATE(4712)] = 181916, - [SMALL_STATE(4713)] = 181944, - [SMALL_STATE(4714)] = 181972, - [SMALL_STATE(4715)] = 182000, - [SMALL_STATE(4716)] = 182028, - [SMALL_STATE(4717)] = 182054, - [SMALL_STATE(4718)] = 182080, - [SMALL_STATE(4719)] = 182112, - [SMALL_STATE(4720)] = 182140, - [SMALL_STATE(4721)] = 182168, - [SMALL_STATE(4722)] = 182196, - [SMALL_STATE(4723)] = 182230, - [SMALL_STATE(4724)] = 182254, - [SMALL_STATE(4725)] = 182288, - [SMALL_STATE(4726)] = 182316, - [SMALL_STATE(4727)] = 182346, - [SMALL_STATE(4728)] = 182376, - [SMALL_STATE(4729)] = 182400, - [SMALL_STATE(4730)] = 182424, - [SMALL_STATE(4731)] = 182454, - [SMALL_STATE(4732)] = 182488, - [SMALL_STATE(4733)] = 182512, - [SMALL_STATE(4734)] = 182536, - [SMALL_STATE(4735)] = 182564, - [SMALL_STATE(4736)] = 182588, - [SMALL_STATE(4737)] = 182640, - [SMALL_STATE(4738)] = 182674, - [SMALL_STATE(4739)] = 182698, - [SMALL_STATE(4740)] = 182724, - [SMALL_STATE(4741)] = 182776, - [SMALL_STATE(4742)] = 182808, - [SMALL_STATE(4743)] = 182852, - [SMALL_STATE(4744)] = 182878, - [SMALL_STATE(4745)] = 182902, - [SMALL_STATE(4746)] = 182932, - [SMALL_STATE(4747)] = 182957, - [SMALL_STATE(4748)] = 182982, - [SMALL_STATE(4749)] = 183007, - [SMALL_STATE(4750)] = 183032, - [SMALL_STATE(4751)] = 183057, - [SMALL_STATE(4752)] = 183082, - [SMALL_STATE(4753)] = 183105, - [SMALL_STATE(4754)] = 183130, - [SMALL_STATE(4755)] = 183171, - [SMALL_STATE(4756)] = 183200, - [SMALL_STATE(4757)] = 183225, - [SMALL_STATE(4758)] = 183250, - [SMALL_STATE(4759)] = 183275, - [SMALL_STATE(4760)] = 183300, - [SMALL_STATE(4761)] = 183325, - [SMALL_STATE(4762)] = 183350, - [SMALL_STATE(4763)] = 183379, - [SMALL_STATE(4764)] = 183404, - [SMALL_STATE(4765)] = 183433, - [SMALL_STATE(4766)] = 183458, - [SMALL_STATE(4767)] = 183487, - [SMALL_STATE(4768)] = 183512, - [SMALL_STATE(4769)] = 183537, - [SMALL_STATE(4770)] = 183566, - [SMALL_STATE(4771)] = 183595, - [SMALL_STATE(4772)] = 183620, - [SMALL_STATE(4773)] = 183645, - [SMALL_STATE(4774)] = 183672, - [SMALL_STATE(4775)] = 183697, - [SMALL_STATE(4776)] = 183722, - [SMALL_STATE(4777)] = 183747, - [SMALL_STATE(4778)] = 183772, - [SMALL_STATE(4779)] = 183817, - [SMALL_STATE(4780)] = 183844, - [SMALL_STATE(4781)] = 183869, - [SMALL_STATE(4782)] = 183894, - [SMALL_STATE(4783)] = 183923, - [SMALL_STATE(4784)] = 183952, - [SMALL_STATE(4785)] = 183981, - [SMALL_STATE(4786)] = 184004, - [SMALL_STATE(4787)] = 184031, - [SMALL_STATE(4788)] = 184068, - [SMALL_STATE(4789)] = 184097, - [SMALL_STATE(4790)] = 184122, - [SMALL_STATE(4791)] = 184151, - [SMALL_STATE(4792)] = 184178, - [SMALL_STATE(4793)] = 184207, - [SMALL_STATE(4794)] = 184232, - [SMALL_STATE(4795)] = 184257, - [SMALL_STATE(4796)] = 184286, - [SMALL_STATE(4797)] = 184313, - [SMALL_STATE(4798)] = 184338, - [SMALL_STATE(4799)] = 184363, - [SMALL_STATE(4800)] = 184388, - [SMALL_STATE(4801)] = 184413, - [SMALL_STATE(4802)] = 184442, - [SMALL_STATE(4803)] = 184469, - [SMALL_STATE(4804)] = 184494, - [SMALL_STATE(4805)] = 184519, - [SMALL_STATE(4806)] = 184544, - [SMALL_STATE(4807)] = 184573, - [SMALL_STATE(4808)] = 184598, - [SMALL_STATE(4809)] = 184625, - [SMALL_STATE(4810)] = 184654, - [SMALL_STATE(4811)] = 184683, - [SMALL_STATE(4812)] = 184712, - [SMALL_STATE(4813)] = 184739, - [SMALL_STATE(4814)] = 184764, - [SMALL_STATE(4815)] = 184791, - [SMALL_STATE(4816)] = 184822, - [SMALL_STATE(4817)] = 184847, - [SMALL_STATE(4818)] = 184872, - [SMALL_STATE(4819)] = 184899, - [SMALL_STATE(4820)] = 184926, - [SMALL_STATE(4821)] = 184951, - [SMALL_STATE(4822)] = 184974, - [SMALL_STATE(4823)] = 184999, - [SMALL_STATE(4824)] = 185028, - [SMALL_STATE(4825)] = 185053, - [SMALL_STATE(4826)] = 185078, - [SMALL_STATE(4827)] = 185109, - [SMALL_STATE(4828)] = 185134, - [SMALL_STATE(4829)] = 185159, - [SMALL_STATE(4830)] = 185188, - [SMALL_STATE(4831)] = 185217, - [SMALL_STATE(4832)] = 185246, - [SMALL_STATE(4833)] = 185271, - [SMALL_STATE(4834)] = 185296, - [SMALL_STATE(4835)] = 185321, - [SMALL_STATE(4836)] = 185346, - [SMALL_STATE(4837)] = 185371, - [SMALL_STATE(4838)] = 185400, - [SMALL_STATE(4839)] = 185429, - [SMALL_STATE(4840)] = 185454, - [SMALL_STATE(4841)] = 185479, - [SMALL_STATE(4842)] = 185504, - [SMALL_STATE(4843)] = 185529, - [SMALL_STATE(4844)] = 185554, - [SMALL_STATE(4845)] = 185579, - [SMALL_STATE(4846)] = 185614, - [SMALL_STATE(4847)] = 185643, - [SMALL_STATE(4848)] = 185672, - [SMALL_STATE(4849)] = 185701, - [SMALL_STATE(4850)] = 185726, - [SMALL_STATE(4851)] = 185751, - [SMALL_STATE(4852)] = 185780, - [SMALL_STATE(4853)] = 185805, - [SMALL_STATE(4854)] = 185830, - [SMALL_STATE(4855)] = 185857, - [SMALL_STATE(4856)] = 185882, - [SMALL_STATE(4857)] = 185907, - [SMALL_STATE(4858)] = 185936, - [SMALL_STATE(4859)] = 185965, - [SMALL_STATE(4860)] = 185990, - [SMALL_STATE(4861)] = 186013, - [SMALL_STATE(4862)] = 186038, - [SMALL_STATE(4863)] = 186063, - [SMALL_STATE(4864)] = 186088, - [SMALL_STATE(4865)] = 186113, - [SMALL_STATE(4866)] = 186138, - [SMALL_STATE(4867)] = 186163, - [SMALL_STATE(4868)] = 186192, - [SMALL_STATE(4869)] = 186217, - [SMALL_STATE(4870)] = 186246, - [SMALL_STATE(4871)] = 186275, - [SMALL_STATE(4872)] = 186300, - [SMALL_STATE(4873)] = 186325, - [SMALL_STATE(4874)] = 186350, - [SMALL_STATE(4875)] = 186375, - [SMALL_STATE(4876)] = 186402, - [SMALL_STATE(4877)] = 186431, - [SMALL_STATE(4878)] = 186456, - [SMALL_STATE(4879)] = 186481, - [SMALL_STATE(4880)] = 186510, - [SMALL_STATE(4881)] = 186535, - [SMALL_STATE(4882)] = 186560, - [SMALL_STATE(4883)] = 186583, - [SMALL_STATE(4884)] = 186608, - [SMALL_STATE(4885)] = 186633, - [SMALL_STATE(4886)] = 186658, - [SMALL_STATE(4887)] = 186683, - [SMALL_STATE(4888)] = 186712, - [SMALL_STATE(4889)] = 186737, - [SMALL_STATE(4890)] = 186762, - [SMALL_STATE(4891)] = 186793, - [SMALL_STATE(4892)] = 186818, - [SMALL_STATE(4893)] = 186843, - [SMALL_STATE(4894)] = 186868, - [SMALL_STATE(4895)] = 186893, - [SMALL_STATE(4896)] = 186922, - [SMALL_STATE(4897)] = 186951, - [SMALL_STATE(4898)] = 186976, - [SMALL_STATE(4899)] = 187001, - [SMALL_STATE(4900)] = 187026, - [SMALL_STATE(4901)] = 187055, - [SMALL_STATE(4902)] = 187086, - [SMALL_STATE(4903)] = 187117, - [SMALL_STATE(4904)] = 187142, - [SMALL_STATE(4905)] = 187173, - [SMALL_STATE(4906)] = 187198, - [SMALL_STATE(4907)] = 187223, - [SMALL_STATE(4908)] = 187248, - [SMALL_STATE(4909)] = 187273, - [SMALL_STATE(4910)] = 187302, - [SMALL_STATE(4911)] = 187347, - [SMALL_STATE(4912)] = 187372, - [SMALL_STATE(4913)] = 187397, - [SMALL_STATE(4914)] = 187422, - [SMALL_STATE(4915)] = 187447, - [SMALL_STATE(4916)] = 187472, - [SMALL_STATE(4917)] = 187497, - [SMALL_STATE(4918)] = 187524, - [SMALL_STATE(4919)] = 187553, - [SMALL_STATE(4920)] = 187582, - [SMALL_STATE(4921)] = 187608, - [SMALL_STATE(4922)] = 187644, - [SMALL_STATE(4923)] = 187678, - [SMALL_STATE(4924)] = 187706, - [SMALL_STATE(4925)] = 187730, - [SMALL_STATE(4926)] = 187754, - [SMALL_STATE(4927)] = 187778, - [SMALL_STATE(4928)] = 187802, - [SMALL_STATE(4929)] = 187830, - [SMALL_STATE(4930)] = 187858, - [SMALL_STATE(4931)] = 187882, - [SMALL_STATE(4932)] = 187906, - [SMALL_STATE(4933)] = 187930, - [SMALL_STATE(4934)] = 187952, - [SMALL_STATE(4935)] = 187980, - [SMALL_STATE(4936)] = 188002, - [SMALL_STATE(4937)] = 188028, - [SMALL_STATE(4938)] = 188054, - [SMALL_STATE(4939)] = 188096, - [SMALL_STATE(4940)] = 188120, - [SMALL_STATE(4941)] = 188142, - [SMALL_STATE(4942)] = 188170, - [SMALL_STATE(4943)] = 188198, - [SMALL_STATE(4944)] = 188220, - [SMALL_STATE(4945)] = 188248, - [SMALL_STATE(4946)] = 188276, - [SMALL_STATE(4947)] = 188300, - [SMALL_STATE(4948)] = 188324, - [SMALL_STATE(4949)] = 188352, - [SMALL_STATE(4950)] = 188380, - [SMALL_STATE(4951)] = 188404, - [SMALL_STATE(4952)] = 188448, - [SMALL_STATE(4953)] = 188472, - [SMALL_STATE(4954)] = 188496, - [SMALL_STATE(4955)] = 188530, - [SMALL_STATE(4956)] = 188564, - [SMALL_STATE(4957)] = 188586, - [SMALL_STATE(4958)] = 188608, - [SMALL_STATE(4959)] = 188642, - [SMALL_STATE(4960)] = 188676, - [SMALL_STATE(4961)] = 188698, - [SMALL_STATE(4962)] = 188736, - [SMALL_STATE(4963)] = 188758, - [SMALL_STATE(4964)] = 188804, - [SMALL_STATE(4965)] = 188830, - [SMALL_STATE(4966)] = 188856, - [SMALL_STATE(4967)] = 188882, - [SMALL_STATE(4968)] = 188928, - [SMALL_STATE(4969)] = 188952, - [SMALL_STATE(4970)] = 188974, - [SMALL_STATE(4971)] = 188996, - [SMALL_STATE(4972)] = 189018, - [SMALL_STATE(4973)] = 189040, - [SMALL_STATE(4974)] = 189064, - [SMALL_STATE(4975)] = 189088, - [SMALL_STATE(4976)] = 189116, - [SMALL_STATE(4977)] = 189140, - [SMALL_STATE(4978)] = 189174, - [SMALL_STATE(4979)] = 189208, - [SMALL_STATE(4980)] = 189248, - [SMALL_STATE(4981)] = 189274, - [SMALL_STATE(4982)] = 189318, - [SMALL_STATE(4983)] = 189364, - [SMALL_STATE(4984)] = 189410, - [SMALL_STATE(4985)] = 189434, - [SMALL_STATE(4986)] = 189458, - [SMALL_STATE(4987)] = 189482, - [SMALL_STATE(4988)] = 189506, - [SMALL_STATE(4989)] = 189530, - [SMALL_STATE(4990)] = 189554, - [SMALL_STATE(4991)] = 189578, - [SMALL_STATE(4992)] = 189602, - [SMALL_STATE(4993)] = 189626, - [SMALL_STATE(4994)] = 189650, - [SMALL_STATE(4995)] = 189674, - [SMALL_STATE(4996)] = 189698, - [SMALL_STATE(4997)] = 189724, - [SMALL_STATE(4998)] = 189750, - [SMALL_STATE(4999)] = 189774, - [SMALL_STATE(5000)] = 189802, - [SMALL_STATE(5001)] = 189826, - [SMALL_STATE(5002)] = 189854, - [SMALL_STATE(5003)] = 189882, - [SMALL_STATE(5004)] = 189910, - [SMALL_STATE(5005)] = 189938, - [SMALL_STATE(5006)] = 189966, - [SMALL_STATE(5007)] = 189990, - [SMALL_STATE(5008)] = 190014, - [SMALL_STATE(5009)] = 190038, - [SMALL_STATE(5010)] = 190062, - [SMALL_STATE(5011)] = 190108, - [SMALL_STATE(5012)] = 190154, - [SMALL_STATE(5013)] = 190176, - [SMALL_STATE(5014)] = 190198, - [SMALL_STATE(5015)] = 190222, - [SMALL_STATE(5016)] = 190244, - [SMALL_STATE(5017)] = 190268, - [SMALL_STATE(5018)] = 190290, - [SMALL_STATE(5019)] = 190336, - [SMALL_STATE(5020)] = 190382, - [SMALL_STATE(5021)] = 190428, - [SMALL_STATE(5022)] = 190474, - [SMALL_STATE(5023)] = 190498, - [SMALL_STATE(5024)] = 190522, - [SMALL_STATE(5025)] = 190546, - [SMALL_STATE(5026)] = 190584, - [SMALL_STATE(5027)] = 190608, - [SMALL_STATE(5028)] = 190632, - [SMALL_STATE(5029)] = 190656, - [SMALL_STATE(5030)] = 190680, - [SMALL_STATE(5031)] = 190704, - [SMALL_STATE(5032)] = 190726, - [SMALL_STATE(5033)] = 190750, - [SMALL_STATE(5034)] = 190774, - [SMALL_STATE(5035)] = 190798, - [SMALL_STATE(5036)] = 190822, - [SMALL_STATE(5037)] = 190846, - [SMALL_STATE(5038)] = 190870, - [SMALL_STATE(5039)] = 190894, - [SMALL_STATE(5040)] = 190918, - [SMALL_STATE(5041)] = 190942, - [SMALL_STATE(5042)] = 190964, - [SMALL_STATE(5043)] = 190986, - [SMALL_STATE(5044)] = 191010, - [SMALL_STATE(5045)] = 191034, - [SMALL_STATE(5046)] = 191058, - [SMALL_STATE(5047)] = 191086, - [SMALL_STATE(5048)] = 191110, - [SMALL_STATE(5049)] = 191134, - [SMALL_STATE(5050)] = 191158, - [SMALL_STATE(5051)] = 191192, - [SMALL_STATE(5052)] = 191216, - [SMALL_STATE(5053)] = 191240, - [SMALL_STATE(5054)] = 191264, - [SMALL_STATE(5055)] = 191288, - [SMALL_STATE(5056)] = 191312, - [SMALL_STATE(5057)] = 191350, - [SMALL_STATE(5058)] = 191388, - [SMALL_STATE(5059)] = 191412, - [SMALL_STATE(5060)] = 191436, - [SMALL_STATE(5061)] = 191460, - [SMALL_STATE(5062)] = 191486, - [SMALL_STATE(5063)] = 191512, - [SMALL_STATE(5064)] = 191554, - [SMALL_STATE(5065)] = 191578, - [SMALL_STATE(5066)] = 191602, - [SMALL_STATE(5067)] = 191630, - [SMALL_STATE(5068)] = 191654, - [SMALL_STATE(5069)] = 191678, - [SMALL_STATE(5070)] = 191702, - [SMALL_STATE(5071)] = 191726, - [SMALL_STATE(5072)] = 191754, - [SMALL_STATE(5073)] = 191778, - [SMALL_STATE(5074)] = 191802, - [SMALL_STATE(5075)] = 191836, - [SMALL_STATE(5076)] = 191870, - [SMALL_STATE(5077)] = 191894, - [SMALL_STATE(5078)] = 191918, - [SMALL_STATE(5079)] = 191952, - [SMALL_STATE(5080)] = 191976, - [SMALL_STATE(5081)] = 192010, - [SMALL_STATE(5082)] = 192034, - [SMALL_STATE(5083)] = 192068, - [SMALL_STATE(5084)] = 192092, - [SMALL_STATE(5085)] = 192116, - [SMALL_STATE(5086)] = 192150, - [SMALL_STATE(5087)] = 192174, - [SMALL_STATE(5088)] = 192198, - [SMALL_STATE(5089)] = 192222, - [SMALL_STATE(5090)] = 192246, - [SMALL_STATE(5091)] = 192270, - [SMALL_STATE(5092)] = 192294, - [SMALL_STATE(5093)] = 192318, - [SMALL_STATE(5094)] = 192342, - [SMALL_STATE(5095)] = 192366, - [SMALL_STATE(5096)] = 192390, - [SMALL_STATE(5097)] = 192414, - [SMALL_STATE(5098)] = 192436, - [SMALL_STATE(5099)] = 192457, - [SMALL_STATE(5100)] = 192480, - [SMALL_STATE(5101)] = 192507, - [SMALL_STATE(5102)] = 192530, - [SMALL_STATE(5103)] = 192553, - [SMALL_STATE(5104)] = 192576, - [SMALL_STATE(5105)] = 192599, - [SMALL_STATE(5106)] = 192622, - [SMALL_STATE(5107)] = 192645, - [SMALL_STATE(5108)] = 192668, - [SMALL_STATE(5109)] = 192691, - [SMALL_STATE(5110)] = 192714, - [SMALL_STATE(5111)] = 192737, - [SMALL_STATE(5112)] = 192760, - [SMALL_STATE(5113)] = 192783, - [SMALL_STATE(5114)] = 192806, - [SMALL_STATE(5115)] = 192829, - [SMALL_STATE(5116)] = 192852, - [SMALL_STATE(5117)] = 192875, - [SMALL_STATE(5118)] = 192898, - [SMALL_STATE(5119)] = 192919, - [SMALL_STATE(5120)] = 192942, - [SMALL_STATE(5121)] = 192963, - [SMALL_STATE(5122)] = 192986, - [SMALL_STATE(5123)] = 193009, - [SMALL_STATE(5124)] = 193030, - [SMALL_STATE(5125)] = 193051, - [SMALL_STATE(5126)] = 193074, - [SMALL_STATE(5127)] = 193105, - [SMALL_STATE(5128)] = 193136, - [SMALL_STATE(5129)] = 193159, - [SMALL_STATE(5130)] = 193182, - [SMALL_STATE(5131)] = 193213, - [SMALL_STATE(5132)] = 193234, - [SMALL_STATE(5133)] = 193265, - [SMALL_STATE(5134)] = 193290, - [SMALL_STATE(5135)] = 193313, - [SMALL_STATE(5136)] = 193350, - [SMALL_STATE(5137)] = 193371, - [SMALL_STATE(5138)] = 193394, - [SMALL_STATE(5139)] = 193417, - [SMALL_STATE(5140)] = 193440, - [SMALL_STATE(5141)] = 193461, - [SMALL_STATE(5142)] = 193482, - [SMALL_STATE(5143)] = 193505, - [SMALL_STATE(5144)] = 193526, - [SMALL_STATE(5145)] = 193547, - [SMALL_STATE(5146)] = 193568, - [SMALL_STATE(5147)] = 193589, - [SMALL_STATE(5148)] = 193612, - [SMALL_STATE(5149)] = 193635, - [SMALL_STATE(5150)] = 193656, - [SMALL_STATE(5151)] = 193677, - [SMALL_STATE(5152)] = 193698, - [SMALL_STATE(5153)] = 193725, - [SMALL_STATE(5154)] = 193746, - [SMALL_STATE(5155)] = 193767, - [SMALL_STATE(5156)] = 193808, - [SMALL_STATE(5157)] = 193831, - [SMALL_STATE(5158)] = 193854, - [SMALL_STATE(5159)] = 193879, - [SMALL_STATE(5160)] = 193906, - [SMALL_STATE(5161)] = 193929, - [SMALL_STATE(5162)] = 193954, - [SMALL_STATE(5163)] = 193975, - [SMALL_STATE(5164)] = 194016, - [SMALL_STATE(5165)] = 194037, - [SMALL_STATE(5166)] = 194076, - [SMALL_STATE(5167)] = 194103, - [SMALL_STATE(5168)] = 194126, - [SMALL_STATE(5169)] = 194153, - [SMALL_STATE(5170)] = 194176, - [SMALL_STATE(5171)] = 194199, - [SMALL_STATE(5172)] = 194224, - [SMALL_STATE(5173)] = 194245, - [SMALL_STATE(5174)] = 194266, - [SMALL_STATE(5175)] = 194287, - [SMALL_STATE(5176)] = 194312, - [SMALL_STATE(5177)] = 194343, - [SMALL_STATE(5178)] = 194366, - [SMALL_STATE(5179)] = 194391, - [SMALL_STATE(5180)] = 194414, - [SMALL_STATE(5181)] = 194435, - [SMALL_STATE(5182)] = 194456, - [SMALL_STATE(5183)] = 194479, - [SMALL_STATE(5184)] = 194502, - [SMALL_STATE(5185)] = 194525, - [SMALL_STATE(5186)] = 194546, - [SMALL_STATE(5187)] = 194567, - [SMALL_STATE(5188)] = 194588, - [SMALL_STATE(5189)] = 194609, - [SMALL_STATE(5190)] = 194630, - [SMALL_STATE(5191)] = 194653, - [SMALL_STATE(5192)] = 194674, - [SMALL_STATE(5193)] = 194695, - [SMALL_STATE(5194)] = 194720, - [SMALL_STATE(5195)] = 194741, - [SMALL_STATE(5196)] = 194762, - [SMALL_STATE(5197)] = 194783, - [SMALL_STATE(5198)] = 194804, - [SMALL_STATE(5199)] = 194843, - [SMALL_STATE(5200)] = 194864, - [SMALL_STATE(5201)] = 194903, - [SMALL_STATE(5202)] = 194942, - [SMALL_STATE(5203)] = 194969, - [SMALL_STATE(5204)] = 195002, - [SMALL_STATE(5205)] = 195041, - [SMALL_STATE(5206)] = 195062, - [SMALL_STATE(5207)] = 195083, - [SMALL_STATE(5208)] = 195122, - [SMALL_STATE(5209)] = 195149, - [SMALL_STATE(5210)] = 195170, - [SMALL_STATE(5211)] = 195191, - [SMALL_STATE(5212)] = 195212, - [SMALL_STATE(5213)] = 195233, - [SMALL_STATE(5214)] = 195254, - [SMALL_STATE(5215)] = 195275, - [SMALL_STATE(5216)] = 195296, - [SMALL_STATE(5217)] = 195321, - [SMALL_STATE(5218)] = 195342, - [SMALL_STATE(5219)] = 195363, - [SMALL_STATE(5220)] = 195384, - [SMALL_STATE(5221)] = 195405, - [SMALL_STATE(5222)] = 195426, - [SMALL_STATE(5223)] = 195447, - [SMALL_STATE(5224)] = 195468, - [SMALL_STATE(5225)] = 195489, - [SMALL_STATE(5226)] = 195510, - [SMALL_STATE(5227)] = 195531, - [SMALL_STATE(5228)] = 195568, - [SMALL_STATE(5229)] = 195605, - [SMALL_STATE(5230)] = 195632, - [SMALL_STATE(5231)] = 195653, - [SMALL_STATE(5232)] = 195674, - [SMALL_STATE(5233)] = 195695, - [SMALL_STATE(5234)] = 195736, - [SMALL_STATE(5235)] = 195763, - [SMALL_STATE(5236)] = 195786, - [SMALL_STATE(5237)] = 195809, - [SMALL_STATE(5238)] = 195832, - [SMALL_STATE(5239)] = 195869, - [SMALL_STATE(5240)] = 195890, - [SMALL_STATE(5241)] = 195913, - [SMALL_STATE(5242)] = 195952, - [SMALL_STATE(5243)] = 195991, - [SMALL_STATE(5244)] = 196018, - [SMALL_STATE(5245)] = 196049, - [SMALL_STATE(5246)] = 196070, - [SMALL_STATE(5247)] = 196091, - [SMALL_STATE(5248)] = 196116, - [SMALL_STATE(5249)] = 196157, - [SMALL_STATE(5250)] = 196198, - [SMALL_STATE(5251)] = 196237, - [SMALL_STATE(5252)] = 196258, - [SMALL_STATE(5253)] = 196289, - [SMALL_STATE(5254)] = 196312, - [SMALL_STATE(5255)] = 196335, - [SMALL_STATE(5256)] = 196358, - [SMALL_STATE(5257)] = 196379, - [SMALL_STATE(5258)] = 196420, - [SMALL_STATE(5259)] = 196443, - [SMALL_STATE(5260)] = 196466, - [SMALL_STATE(5261)] = 196507, - [SMALL_STATE(5262)] = 196530, - [SMALL_STATE(5263)] = 196553, - [SMALL_STATE(5264)] = 196590, - [SMALL_STATE(5265)] = 196627, - [SMALL_STATE(5266)] = 196664, - [SMALL_STATE(5267)] = 196701, - [SMALL_STATE(5268)] = 196738, - [SMALL_STATE(5269)] = 196775, - [SMALL_STATE(5270)] = 196812, - [SMALL_STATE(5271)] = 196849, - [SMALL_STATE(5272)] = 196890, - [SMALL_STATE(5273)] = 196921, - [SMALL_STATE(5274)] = 196944, - [SMALL_STATE(5275)] = 196977, - [SMALL_STATE(5276)] = 197008, - [SMALL_STATE(5277)] = 197043, - [SMALL_STATE(5278)] = 197078, - [SMALL_STATE(5279)] = 197113, - [SMALL_STATE(5280)] = 197148, - [SMALL_STATE(5281)] = 197183, - [SMALL_STATE(5282)] = 197208, - [SMALL_STATE(5283)] = 197231, - [SMALL_STATE(5284)] = 197270, - [SMALL_STATE(5285)] = 197301, - [SMALL_STATE(5286)] = 197322, - [SMALL_STATE(5287)] = 197345, - [SMALL_STATE(5288)] = 197368, - [SMALL_STATE(5289)] = 197391, - [SMALL_STATE(5290)] = 197422, - [SMALL_STATE(5291)] = 197449, - [SMALL_STATE(5292)] = 197472, - [SMALL_STATE(5293)] = 197499, - [SMALL_STATE(5294)] = 197526, - [SMALL_STATE(5295)] = 197547, - [SMALL_STATE(5296)] = 197578, - [SMALL_STATE(5297)] = 197601, - [SMALL_STATE(5298)] = 197628, - [SMALL_STATE(5299)] = 197671, - [SMALL_STATE(5300)] = 197694, - [SMALL_STATE(5301)] = 197717, - [SMALL_STATE(5302)] = 197738, - [SMALL_STATE(5303)] = 197761, - [SMALL_STATE(5304)] = 197791, - [SMALL_STATE(5305)] = 197825, - [SMALL_STATE(5306)] = 197857, - [SMALL_STATE(5307)] = 197889, - [SMALL_STATE(5308)] = 197923, - [SMALL_STATE(5309)] = 197961, - [SMALL_STATE(5310)] = 197983, - [SMALL_STATE(5311)] = 198005, - [SMALL_STATE(5312)] = 198037, - [SMALL_STATE(5313)] = 198063, - [SMALL_STATE(5314)] = 198087, - [SMALL_STATE(5315)] = 198113, - [SMALL_STATE(5316)] = 198135, - [SMALL_STATE(5317)] = 198157, - [SMALL_STATE(5318)] = 198179, - [SMALL_STATE(5319)] = 198201, - [SMALL_STATE(5320)] = 198233, - [SMALL_STATE(5321)] = 198265, - [SMALL_STATE(5322)] = 198287, - [SMALL_STATE(5323)] = 198309, - [SMALL_STATE(5324)] = 198331, - [SMALL_STATE(5325)] = 198353, - [SMALL_STATE(5326)] = 198385, - [SMALL_STATE(5327)] = 198409, - [SMALL_STATE(5328)] = 198435, - [SMALL_STATE(5329)] = 198457, - [SMALL_STATE(5330)] = 198493, - [SMALL_STATE(5331)] = 198527, - [SMALL_STATE(5332)] = 198561, - [SMALL_STATE(5333)] = 198595, - [SMALL_STATE(5334)] = 198617, - [SMALL_STATE(5335)] = 198645, - [SMALL_STATE(5336)] = 198667, - [SMALL_STATE(5337)] = 198689, - [SMALL_STATE(5338)] = 198711, - [SMALL_STATE(5339)] = 198733, - [SMALL_STATE(5340)] = 198755, - [SMALL_STATE(5341)] = 198777, - [SMALL_STATE(5342)] = 198799, - [SMALL_STATE(5343)] = 198833, - [SMALL_STATE(5344)] = 198861, - [SMALL_STATE(5345)] = 198889, - [SMALL_STATE(5346)] = 198917, - [SMALL_STATE(5347)] = 198947, - [SMALL_STATE(5348)] = 198977, - [SMALL_STATE(5349)] = 199007, - [SMALL_STATE(5350)] = 199037, - [SMALL_STATE(5351)] = 199067, - [SMALL_STATE(5352)] = 199097, - [SMALL_STATE(5353)] = 199127, - [SMALL_STATE(5354)] = 199157, - [SMALL_STATE(5355)] = 199187, - [SMALL_STATE(5356)] = 199217, - [SMALL_STATE(5357)] = 199247, - [SMALL_STATE(5358)] = 199277, - [SMALL_STATE(5359)] = 199307, - [SMALL_STATE(5360)] = 199337, - [SMALL_STATE(5361)] = 199367, - [SMALL_STATE(5362)] = 199397, - [SMALL_STATE(5363)] = 199427, - [SMALL_STATE(5364)] = 199457, - [SMALL_STATE(5365)] = 199487, - [SMALL_STATE(5366)] = 199517, - [SMALL_STATE(5367)] = 199547, - [SMALL_STATE(5368)] = 199577, - [SMALL_STATE(5369)] = 199613, - [SMALL_STATE(5370)] = 199645, - [SMALL_STATE(5371)] = 199673, - [SMALL_STATE(5372)] = 199697, - [SMALL_STATE(5373)] = 199731, - [SMALL_STATE(5374)] = 199755, - [SMALL_STATE(5375)] = 199779, - [SMALL_STATE(5376)] = 199803, - [SMALL_STATE(5377)] = 199831, - [SMALL_STATE(5378)] = 199853, - [SMALL_STATE(5379)] = 199875, - [SMALL_STATE(5380)] = 199911, - [SMALL_STATE(5381)] = 199947, - [SMALL_STATE(5382)] = 199973, - [SMALL_STATE(5383)] = 200005, - [SMALL_STATE(5384)] = 200027, - [SMALL_STATE(5385)] = 200049, - [SMALL_STATE(5386)] = 200081, - [SMALL_STATE(5387)] = 200107, - [SMALL_STATE(5388)] = 200139, - [SMALL_STATE(5389)] = 200163, - [SMALL_STATE(5390)] = 200191, - [SMALL_STATE(5391)] = 200219, - [SMALL_STATE(5392)] = 200255, - [SMALL_STATE(5393)] = 200293, - [SMALL_STATE(5394)] = 200315, - [SMALL_STATE(5395)] = 200339, - [SMALL_STATE(5396)] = 200361, - [SMALL_STATE(5397)] = 200397, - [SMALL_STATE(5398)] = 200419, - [SMALL_STATE(5399)] = 200447, - [SMALL_STATE(5400)] = 200475, - [SMALL_STATE(5401)] = 200499, - [SMALL_STATE(5402)] = 200527, - [SMALL_STATE(5403)] = 200555, - [SMALL_STATE(5404)] = 200583, - [SMALL_STATE(5405)] = 200611, - [SMALL_STATE(5406)] = 200633, - [SMALL_STATE(5407)] = 200661, - [SMALL_STATE(5408)] = 200689, - [SMALL_STATE(5409)] = 200717, - [SMALL_STATE(5410)] = 200745, - [SMALL_STATE(5411)] = 200777, - [SMALL_STATE(5412)] = 200805, - [SMALL_STATE(5413)] = 200827, - [SMALL_STATE(5414)] = 200853, - [SMALL_STATE(5415)] = 200881, - [SMALL_STATE(5416)] = 200909, - [SMALL_STATE(5417)] = 200941, - [SMALL_STATE(5418)] = 200967, - [SMALL_STATE(5419)] = 200991, - [SMALL_STATE(5420)] = 201019, - [SMALL_STATE(5421)] = 201049, - [SMALL_STATE(5422)] = 201077, - [SMALL_STATE(5423)] = 201101, - [SMALL_STATE(5424)] = 201125, - [SMALL_STATE(5425)] = 201161, - [SMALL_STATE(5426)] = 201185, - [SMALL_STATE(5427)] = 201207, - [SMALL_STATE(5428)] = 201241, - [SMALL_STATE(5429)] = 201275, - [SMALL_STATE(5430)] = 201297, - [SMALL_STATE(5431)] = 201321, - [SMALL_STATE(5432)] = 201347, - [SMALL_STATE(5433)] = 201379, - [SMALL_STATE(5434)] = 201404, - [SMALL_STATE(5435)] = 201429, - [SMALL_STATE(5436)] = 201448, - [SMALL_STATE(5437)] = 201483, - [SMALL_STATE(5438)] = 201518, - [SMALL_STATE(5439)] = 201537, - [SMALL_STATE(5440)] = 201566, - [SMALL_STATE(5441)] = 201585, - [SMALL_STATE(5442)] = 201620, - [SMALL_STATE(5443)] = 201649, - [SMALL_STATE(5444)] = 201684, - [SMALL_STATE(5445)] = 201715, - [SMALL_STATE(5446)] = 201744, - [SMALL_STATE(5447)] = 201767, - [SMALL_STATE(5448)] = 201800, - [SMALL_STATE(5449)] = 201829, - [SMALL_STATE(5450)] = 201858, - [SMALL_STATE(5451)] = 201883, - [SMALL_STATE(5452)] = 201902, - [SMALL_STATE(5453)] = 201925, - [SMALL_STATE(5454)] = 201958, - [SMALL_STATE(5455)] = 201987, - [SMALL_STATE(5456)] = 202016, - [SMALL_STATE(5457)] = 202037, - [SMALL_STATE(5458)] = 202058, - [SMALL_STATE(5459)] = 202081, - [SMALL_STATE(5460)] = 202110, - [SMALL_STATE(5461)] = 202139, - [SMALL_STATE(5462)] = 202164, - [SMALL_STATE(5463)] = 202185, - [SMALL_STATE(5464)] = 202206, - [SMALL_STATE(5465)] = 202235, - [SMALL_STATE(5466)] = 202264, - [SMALL_STATE(5467)] = 202293, - [SMALL_STATE(5468)] = 202322, - [SMALL_STATE(5469)] = 202343, - [SMALL_STATE(5470)] = 202364, - [SMALL_STATE(5471)] = 202393, - [SMALL_STATE(5472)] = 202414, - [SMALL_STATE(5473)] = 202433, - [SMALL_STATE(5474)] = 202456, - [SMALL_STATE(5475)] = 202479, - [SMALL_STATE(5476)] = 202508, - [SMALL_STATE(5477)] = 202537, - [SMALL_STATE(5478)] = 202570, - [SMALL_STATE(5479)] = 202603, - [SMALL_STATE(5480)] = 202636, - [SMALL_STATE(5481)] = 202671, - [SMALL_STATE(5482)] = 202704, - [SMALL_STATE(5483)] = 202729, - [SMALL_STATE(5484)] = 202752, - [SMALL_STATE(5485)] = 202775, - [SMALL_STATE(5486)] = 202804, - [SMALL_STATE(5487)] = 202829, - [SMALL_STATE(5488)] = 202850, - [SMALL_STATE(5489)] = 202885, - [SMALL_STATE(5490)] = 202914, - [SMALL_STATE(5491)] = 202943, - [SMALL_STATE(5492)] = 202974, - [SMALL_STATE(5493)] = 202999, - [SMALL_STATE(5494)] = 203028, - [SMALL_STATE(5495)] = 203059, - [SMALL_STATE(5496)] = 203090, - [SMALL_STATE(5497)] = 203113, - [SMALL_STATE(5498)] = 203134, - [SMALL_STATE(5499)] = 203163, - [SMALL_STATE(5500)] = 203190, - [SMALL_STATE(5501)] = 203219, - [SMALL_STATE(5502)] = 203248, - [SMALL_STATE(5503)] = 203269, - [SMALL_STATE(5504)] = 203292, - [SMALL_STATE(5505)] = 203327, - [SMALL_STATE(5506)] = 203354, - [SMALL_STATE(5507)] = 203385, - [SMALL_STATE(5508)] = 203410, - [SMALL_STATE(5509)] = 203433, - [SMALL_STATE(5510)] = 203458, - [SMALL_STATE(5511)] = 203487, - [SMALL_STATE(5512)] = 203516, - [SMALL_STATE(5513)] = 203545, - [SMALL_STATE(5514)] = 203566, - [SMALL_STATE(5515)] = 203589, - [SMALL_STATE(5516)] = 203608, - [SMALL_STATE(5517)] = 203637, - [SMALL_STATE(5518)] = 203656, - [SMALL_STATE(5519)] = 203679, - [SMALL_STATE(5520)] = 203710, - [SMALL_STATE(5521)] = 203739, - [SMALL_STATE(5522)] = 203760, - [SMALL_STATE(5523)] = 203790, - [SMALL_STATE(5524)] = 203812, - [SMALL_STATE(5525)] = 203832, - [SMALL_STATE(5526)] = 203852, - [SMALL_STATE(5527)] = 203872, - [SMALL_STATE(5528)] = 203892, - [SMALL_STATE(5529)] = 203912, - [SMALL_STATE(5530)] = 203932, - [SMALL_STATE(5531)] = 203952, - [SMALL_STATE(5532)] = 203972, - [SMALL_STATE(5533)] = 203992, - [SMALL_STATE(5534)] = 204016, - [SMALL_STATE(5535)] = 204036, - [SMALL_STATE(5536)] = 204062, - [SMALL_STATE(5537)] = 204086, - [SMALL_STATE(5538)] = 204106, - [SMALL_STATE(5539)] = 204126, - [SMALL_STATE(5540)] = 204146, - [SMALL_STATE(5541)] = 204176, - [SMALL_STATE(5542)] = 204206, - [SMALL_STATE(5543)] = 204236, - [SMALL_STATE(5544)] = 204266, - [SMALL_STATE(5545)] = 204296, - [SMALL_STATE(5546)] = 204316, - [SMALL_STATE(5547)] = 204336, - [SMALL_STATE(5548)] = 204356, - [SMALL_STATE(5549)] = 204376, - [SMALL_STATE(5550)] = 204396, - [SMALL_STATE(5551)] = 204420, - [SMALL_STATE(5552)] = 204450, - [SMALL_STATE(5553)] = 204474, - [SMALL_STATE(5554)] = 204494, - [SMALL_STATE(5555)] = 204514, - [SMALL_STATE(5556)] = 204544, - [SMALL_STATE(5557)] = 204564, - [SMALL_STATE(5558)] = 204584, - [SMALL_STATE(5559)] = 204606, - [SMALL_STATE(5560)] = 204636, - [SMALL_STATE(5561)] = 204666, - [SMALL_STATE(5562)] = 204696, - [SMALL_STATE(5563)] = 204716, - [SMALL_STATE(5564)] = 204742, - [SMALL_STATE(5565)] = 204766, - [SMALL_STATE(5566)] = 204796, - [SMALL_STATE(5567)] = 204820, - [SMALL_STATE(5568)] = 204854, - [SMALL_STATE(5569)] = 204888, - [SMALL_STATE(5570)] = 204908, - [SMALL_STATE(5571)] = 204930, - [SMALL_STATE(5572)] = 204950, - [SMALL_STATE(5573)] = 204970, - [SMALL_STATE(5574)] = 204990, - [SMALL_STATE(5575)] = 205010, - [SMALL_STATE(5576)] = 205030, - [SMALL_STATE(5577)] = 205050, - [SMALL_STATE(5578)] = 205070, - [SMALL_STATE(5579)] = 205090, - [SMALL_STATE(5580)] = 205114, - [SMALL_STATE(5581)] = 205136, - [SMALL_STATE(5582)] = 205164, - [SMALL_STATE(5583)] = 205194, - [SMALL_STATE(5584)] = 205224, - [SMALL_STATE(5585)] = 205244, - [SMALL_STATE(5586)] = 205274, - [SMALL_STATE(5587)] = 205294, - [SMALL_STATE(5588)] = 205314, - [SMALL_STATE(5589)] = 205334, - [SMALL_STATE(5590)] = 205354, - [SMALL_STATE(5591)] = 205374, - [SMALL_STATE(5592)] = 205394, - [SMALL_STATE(5593)] = 205414, - [SMALL_STATE(5594)] = 205438, - [SMALL_STATE(5595)] = 205460, - [SMALL_STATE(5596)] = 205490, - [SMALL_STATE(5597)] = 205520, - [SMALL_STATE(5598)] = 205550, - [SMALL_STATE(5599)] = 205580, - [SMALL_STATE(5600)] = 205610, - [SMALL_STATE(5601)] = 205632, - [SMALL_STATE(5602)] = 205656, - [SMALL_STATE(5603)] = 205688, - [SMALL_STATE(5604)] = 205718, - [SMALL_STATE(5605)] = 205748, - [SMALL_STATE(5606)] = 205778, - [SMALL_STATE(5607)] = 205808, - [SMALL_STATE(5608)] = 205838, - [SMALL_STATE(5609)] = 205868, - [SMALL_STATE(5610)] = 205898, - [SMALL_STATE(5611)] = 205920, - [SMALL_STATE(5612)] = 205950, - [SMALL_STATE(5613)] = 205980, - [SMALL_STATE(5614)] = 206010, - [SMALL_STATE(5615)] = 206040, - [SMALL_STATE(5616)] = 206070, - [SMALL_STATE(5617)] = 206100, - [SMALL_STATE(5618)] = 206124, - [SMALL_STATE(5619)] = 206154, - [SMALL_STATE(5620)] = 206184, - [SMALL_STATE(5621)] = 206214, - [SMALL_STATE(5622)] = 206244, - [SMALL_STATE(5623)] = 206274, - [SMALL_STATE(5624)] = 206304, - [SMALL_STATE(5625)] = 206334, - [SMALL_STATE(5626)] = 206364, - [SMALL_STATE(5627)] = 206386, - [SMALL_STATE(5628)] = 206406, - [SMALL_STATE(5629)] = 206428, - [SMALL_STATE(5630)] = 206458, - [SMALL_STATE(5631)] = 206482, - [SMALL_STATE(5632)] = 206502, - [SMALL_STATE(5633)] = 206524, - [SMALL_STATE(5634)] = 206546, - [SMALL_STATE(5635)] = 206566, - [SMALL_STATE(5636)] = 206596, - [SMALL_STATE(5637)] = 206626, - [SMALL_STATE(5638)] = 206646, - [SMALL_STATE(5639)] = 206668, - [SMALL_STATE(5640)] = 206688, - [SMALL_STATE(5641)] = 206710, - [SMALL_STATE(5642)] = 206730, - [SMALL_STATE(5643)] = 206752, - [SMALL_STATE(5644)] = 206784, - [SMALL_STATE(5645)] = 206814, - [SMALL_STATE(5646)] = 206834, - [SMALL_STATE(5647)] = 206854, - [SMALL_STATE(5648)] = 206874, - [SMALL_STATE(5649)] = 206894, - [SMALL_STATE(5650)] = 206924, - [SMALL_STATE(5651)] = 206954, - [SMALL_STATE(5652)] = 206974, - [SMALL_STATE(5653)] = 207004, - [SMALL_STATE(5654)] = 207034, - [SMALL_STATE(5655)] = 207064, - [SMALL_STATE(5656)] = 207086, - [SMALL_STATE(5657)] = 207116, - [SMALL_STATE(5658)] = 207146, - [SMALL_STATE(5659)] = 207176, - [SMALL_STATE(5660)] = 207206, - [SMALL_STATE(5661)] = 207226, - [SMALL_STATE(5662)] = 207246, - [SMALL_STATE(5663)] = 207268, - [SMALL_STATE(5664)] = 207290, - [SMALL_STATE(5665)] = 207310, - [SMALL_STATE(5666)] = 207340, - [SMALL_STATE(5667)] = 207368, - [SMALL_STATE(5668)] = 207387, - [SMALL_STATE(5669)] = 207414, - [SMALL_STATE(5670)] = 207433, - [SMALL_STATE(5671)] = 207452, - [SMALL_STATE(5672)] = 207479, - [SMALL_STATE(5673)] = 207502, - [SMALL_STATE(5674)] = 207521, - [SMALL_STATE(5675)] = 207548, - [SMALL_STATE(5676)] = 207571, - [SMALL_STATE(5677)] = 207590, - [SMALL_STATE(5678)] = 207617, - [SMALL_STATE(5679)] = 207636, - [SMALL_STATE(5680)] = 207663, - [SMALL_STATE(5681)] = 207692, - [SMALL_STATE(5682)] = 207719, - [SMALL_STATE(5683)] = 207744, - [SMALL_STATE(5684)] = 207771, - [SMALL_STATE(5685)] = 207798, - [SMALL_STATE(5686)] = 207825, - [SMALL_STATE(5687)] = 207852, - [SMALL_STATE(5688)] = 207879, - [SMALL_STATE(5689)] = 207906, - [SMALL_STATE(5690)] = 207933, - [SMALL_STATE(5691)] = 207960, - [SMALL_STATE(5692)] = 207987, - [SMALL_STATE(5693)] = 208014, - [SMALL_STATE(5694)] = 208041, - [SMALL_STATE(5695)] = 208068, - [SMALL_STATE(5696)] = 208095, - [SMALL_STATE(5697)] = 208122, - [SMALL_STATE(5698)] = 208149, - [SMALL_STATE(5699)] = 208176, - [SMALL_STATE(5700)] = 208203, - [SMALL_STATE(5701)] = 208230, - [SMALL_STATE(5702)] = 208257, - [SMALL_STATE(5703)] = 208284, - [SMALL_STATE(5704)] = 208307, - [SMALL_STATE(5705)] = 208334, - [SMALL_STATE(5706)] = 208365, - [SMALL_STATE(5707)] = 208392, - [SMALL_STATE(5708)] = 208411, - [SMALL_STATE(5709)] = 208430, - [SMALL_STATE(5710)] = 208457, - [SMALL_STATE(5711)] = 208476, - [SMALL_STATE(5712)] = 208495, - [SMALL_STATE(5713)] = 208518, - [SMALL_STATE(5714)] = 208549, - [SMALL_STATE(5715)] = 208576, - [SMALL_STATE(5716)] = 208603, - [SMALL_STATE(5717)] = 208626, - [SMALL_STATE(5718)] = 208655, - [SMALL_STATE(5719)] = 208674, - [SMALL_STATE(5720)] = 208703, - [SMALL_STATE(5721)] = 208724, - [SMALL_STATE(5722)] = 208749, - [SMALL_STATE(5723)] = 208772, - [SMALL_STATE(5724)] = 208799, - [SMALL_STATE(5725)] = 208820, - [SMALL_STATE(5726)] = 208841, - [SMALL_STATE(5727)] = 208864, - [SMALL_STATE(5728)] = 208885, - [SMALL_STATE(5729)] = 208904, - [SMALL_STATE(5730)] = 208931, - [SMALL_STATE(5731)] = 208950, - [SMALL_STATE(5732)] = 208979, - [SMALL_STATE(5733)] = 209006, - [SMALL_STATE(5734)] = 209027, - [SMALL_STATE(5735)] = 209054, - [SMALL_STATE(5736)] = 209081, - [SMALL_STATE(5737)] = 209108, - [SMALL_STATE(5738)] = 209129, - [SMALL_STATE(5739)] = 209150, - [SMALL_STATE(5740)] = 209177, - [SMALL_STATE(5741)] = 209204, - [SMALL_STATE(5742)] = 209223, - [SMALL_STATE(5743)] = 209242, - [SMALL_STATE(5744)] = 209267, - [SMALL_STATE(5745)] = 209288, - [SMALL_STATE(5746)] = 209307, - [SMALL_STATE(5747)] = 209330, - [SMALL_STATE(5748)] = 209349, - [SMALL_STATE(5749)] = 209368, - [SMALL_STATE(5750)] = 209397, - [SMALL_STATE(5751)] = 209416, - [SMALL_STATE(5752)] = 209443, - [SMALL_STATE(5753)] = 209470, - [SMALL_STATE(5754)] = 209497, - [SMALL_STATE(5755)] = 209516, - [SMALL_STATE(5756)] = 209543, - [SMALL_STATE(5757)] = 209566, - [SMALL_STATE(5758)] = 209593, - [SMALL_STATE(5759)] = 209612, - [SMALL_STATE(5760)] = 209631, - [SMALL_STATE(5761)] = 209650, - [SMALL_STATE(5762)] = 209669, - [SMALL_STATE(5763)] = 209688, - [SMALL_STATE(5764)] = 209717, - [SMALL_STATE(5765)] = 209738, - [SMALL_STATE(5766)] = 209759, - [SMALL_STATE(5767)] = 209788, - [SMALL_STATE(5768)] = 209809, - [SMALL_STATE(5769)] = 209836, - [SMALL_STATE(5770)] = 209857, - [SMALL_STATE(5771)] = 209884, - [SMALL_STATE(5772)] = 209911, - [SMALL_STATE(5773)] = 209938, - [SMALL_STATE(5774)] = 209957, - [SMALL_STATE(5775)] = 209978, - [SMALL_STATE(5776)] = 210005, - [SMALL_STATE(5777)] = 210024, - [SMALL_STATE(5778)] = 210045, - [SMALL_STATE(5779)] = 210064, - [SMALL_STATE(5780)] = 210083, - [SMALL_STATE(5781)] = 210102, - [SMALL_STATE(5782)] = 210121, - [SMALL_STATE(5783)] = 210148, - [SMALL_STATE(5784)] = 210167, - [SMALL_STATE(5785)] = 210186, - [SMALL_STATE(5786)] = 210213, - [SMALL_STATE(5787)] = 210232, - [SMALL_STATE(5788)] = 210261, - [SMALL_STATE(5789)] = 210288, - [SMALL_STATE(5790)] = 210311, - [SMALL_STATE(5791)] = 210330, - [SMALL_STATE(5792)] = 210357, - [SMALL_STATE(5793)] = 210379, - [SMALL_STATE(5794)] = 210397, - [SMALL_STATE(5795)] = 210419, - [SMALL_STATE(5796)] = 210443, - [SMALL_STATE(5797)] = 210469, - [SMALL_STATE(5798)] = 210495, - [SMALL_STATE(5799)] = 210515, - [SMALL_STATE(5800)] = 210541, - [SMALL_STATE(5801)] = 210567, - [SMALL_STATE(5802)] = 210593, - [SMALL_STATE(5803)] = 210619, - [SMALL_STATE(5804)] = 210645, - [SMALL_STATE(5805)] = 210671, - [SMALL_STATE(5806)] = 210687, - [SMALL_STATE(5807)] = 210707, - [SMALL_STATE(5808)] = 210733, - [SMALL_STATE(5809)] = 210755, - [SMALL_STATE(5810)] = 210777, - [SMALL_STATE(5811)] = 210803, - [SMALL_STATE(5812)] = 210819, - [SMALL_STATE(5813)] = 210835, - [SMALL_STATE(5814)] = 210861, - [SMALL_STATE(5815)] = 210887, - [SMALL_STATE(5816)] = 210913, - [SMALL_STATE(5817)] = 210939, - [SMALL_STATE(5818)] = 210965, - [SMALL_STATE(5819)] = 210987, - [SMALL_STATE(5820)] = 211013, - [SMALL_STATE(5821)] = 211039, - [SMALL_STATE(5822)] = 211067, - [SMALL_STATE(5823)] = 211093, - [SMALL_STATE(5824)] = 211119, - [SMALL_STATE(5825)] = 211139, - [SMALL_STATE(5826)] = 211165, - [SMALL_STATE(5827)] = 211183, - [SMALL_STATE(5828)] = 211207, - [SMALL_STATE(5829)] = 211223, - [SMALL_STATE(5830)] = 211249, - [SMALL_STATE(5831)] = 211269, - [SMALL_STATE(5832)] = 211295, - [SMALL_STATE(5833)] = 211315, - [SMALL_STATE(5834)] = 211341, - [SMALL_STATE(5835)] = 211367, - [SMALL_STATE(5836)] = 211389, - [SMALL_STATE(5837)] = 211413, - [SMALL_STATE(5838)] = 211439, - [SMALL_STATE(5839)] = 211459, - [SMALL_STATE(5840)] = 211483, - [SMALL_STATE(5841)] = 211509, - [SMALL_STATE(5842)] = 211529, - [SMALL_STATE(5843)] = 211547, - [SMALL_STATE(5844)] = 211573, - [SMALL_STATE(5845)] = 211591, - [SMALL_STATE(5846)] = 211617, - [SMALL_STATE(5847)] = 211635, - [SMALL_STATE(5848)] = 211659, - [SMALL_STATE(5849)] = 211677, - [SMALL_STATE(5850)] = 211703, - [SMALL_STATE(5851)] = 211721, - [SMALL_STATE(5852)] = 211747, - [SMALL_STATE(5853)] = 211769, - [SMALL_STATE(5854)] = 211793, - [SMALL_STATE(5855)] = 211813, - [SMALL_STATE(5856)] = 211839, - [SMALL_STATE(5857)] = 211859, - [SMALL_STATE(5858)] = 211885, - [SMALL_STATE(5859)] = 211911, - [SMALL_STATE(5860)] = 211937, - [SMALL_STATE(5861)] = 211961, - [SMALL_STATE(5862)] = 211981, - [SMALL_STATE(5863)] = 212007, - [SMALL_STATE(5864)] = 212033, - [SMALL_STATE(5865)] = 212059, - [SMALL_STATE(5866)] = 212085, - [SMALL_STATE(5867)] = 212103, - [SMALL_STATE(5868)] = 212129, - [SMALL_STATE(5869)] = 212155, - [SMALL_STATE(5870)] = 212181, - [SMALL_STATE(5871)] = 212207, - [SMALL_STATE(5872)] = 212233, - [SMALL_STATE(5873)] = 212251, - [SMALL_STATE(5874)] = 212279, - [SMALL_STATE(5875)] = 212299, - [SMALL_STATE(5876)] = 212325, - [SMALL_STATE(5877)] = 212345, - [SMALL_STATE(5878)] = 212367, - [SMALL_STATE(5879)] = 212385, - [SMALL_STATE(5880)] = 212407, - [SMALL_STATE(5881)] = 212427, - [SMALL_STATE(5882)] = 212453, - [SMALL_STATE(5883)] = 212479, - [SMALL_STATE(5884)] = 212505, - [SMALL_STATE(5885)] = 212531, - [SMALL_STATE(5886)] = 212557, - [SMALL_STATE(5887)] = 212575, - [SMALL_STATE(5888)] = 212597, - [SMALL_STATE(5889)] = 212620, - [SMALL_STATE(5890)] = 212645, - [SMALL_STATE(5891)] = 212662, - [SMALL_STATE(5892)] = 212685, - [SMALL_STATE(5893)] = 212710, - [SMALL_STATE(5894)] = 212729, - [SMALL_STATE(5895)] = 212754, - [SMALL_STATE(5896)] = 212777, - [SMALL_STATE(5897)] = 212794, - [SMALL_STATE(5898)] = 212819, - [SMALL_STATE(5899)] = 212842, - [SMALL_STATE(5900)] = 212859, - [SMALL_STATE(5901)] = 212884, - [SMALL_STATE(5902)] = 212901, - [SMALL_STATE(5903)] = 212924, - [SMALL_STATE(5904)] = 212945, - [SMALL_STATE(5905)] = 212970, - [SMALL_STATE(5906)] = 212993, - [SMALL_STATE(5907)] = 213018, - [SMALL_STATE(5908)] = 213035, - [SMALL_STATE(5909)] = 213052, - [SMALL_STATE(5910)] = 213075, - [SMALL_STATE(5911)] = 213092, - [SMALL_STATE(5912)] = 213115, - [SMALL_STATE(5913)] = 213140, - [SMALL_STATE(5914)] = 213157, - [SMALL_STATE(5915)] = 213174, - [SMALL_STATE(5916)] = 213197, - [SMALL_STATE(5917)] = 213222, - [SMALL_STATE(5918)] = 213245, - [SMALL_STATE(5919)] = 213264, - [SMALL_STATE(5920)] = 213281, - [SMALL_STATE(5921)] = 213298, - [SMALL_STATE(5922)] = 213315, - [SMALL_STATE(5923)] = 213338, - [SMALL_STATE(5924)] = 213359, - [SMALL_STATE(5925)] = 213382, - [SMALL_STATE(5926)] = 213403, - [SMALL_STATE(5927)] = 213428, - [SMALL_STATE(5928)] = 213445, - [SMALL_STATE(5929)] = 213466, - [SMALL_STATE(5930)] = 213491, - [SMALL_STATE(5931)] = 213508, - [SMALL_STATE(5932)] = 213531, - [SMALL_STATE(5933)] = 213556, - [SMALL_STATE(5934)] = 213573, - [SMALL_STATE(5935)] = 213590, - [SMALL_STATE(5936)] = 213613, - [SMALL_STATE(5937)] = 213630, - [SMALL_STATE(5938)] = 213653, - [SMALL_STATE(5939)] = 213670, - [SMALL_STATE(5940)] = 213695, - [SMALL_STATE(5941)] = 213716, - [SMALL_STATE(5942)] = 213739, - [SMALL_STATE(5943)] = 213756, - [SMALL_STATE(5944)] = 213781, - [SMALL_STATE(5945)] = 213798, - [SMALL_STATE(5946)] = 213821, - [SMALL_STATE(5947)] = 213838, - [SMALL_STATE(5948)] = 213857, - [SMALL_STATE(5949)] = 213874, - [SMALL_STATE(5950)] = 213891, - [SMALL_STATE(5951)] = 213914, - [SMALL_STATE(5952)] = 213931, - [SMALL_STATE(5953)] = 213954, - [SMALL_STATE(5954)] = 213971, - [SMALL_STATE(5955)] = 213996, - [SMALL_STATE(5956)] = 214013, - [SMALL_STATE(5957)] = 214038, - [SMALL_STATE(5958)] = 214063, - [SMALL_STATE(5959)] = 214086, - [SMALL_STATE(5960)] = 214107, - [SMALL_STATE(5961)] = 214130, - [SMALL_STATE(5962)] = 214153, - [SMALL_STATE(5963)] = 214176, - [SMALL_STATE(5964)] = 214199, - [SMALL_STATE(5965)] = 214216, - [SMALL_STATE(5966)] = 214241, - [SMALL_STATE(5967)] = 214258, - [SMALL_STATE(5968)] = 214279, - [SMALL_STATE(5969)] = 214302, - [SMALL_STATE(5970)] = 214327, - [SMALL_STATE(5971)] = 214350, - [SMALL_STATE(5972)] = 214375, - [SMALL_STATE(5973)] = 214400, - [SMALL_STATE(5974)] = 214423, - [SMALL_STATE(5975)] = 214448, - [SMALL_STATE(5976)] = 214471, - [SMALL_STATE(5977)] = 214492, - [SMALL_STATE(5978)] = 214517, - [SMALL_STATE(5979)] = 214542, - [SMALL_STATE(5980)] = 214567, - [SMALL_STATE(5981)] = 214588, - [SMALL_STATE(5982)] = 214613, - [SMALL_STATE(5983)] = 214636, - [SMALL_STATE(5984)] = 214653, - [SMALL_STATE(5985)] = 214670, - [SMALL_STATE(5986)] = 214693, - [SMALL_STATE(5987)] = 214712, - [SMALL_STATE(5988)] = 214735, - [SMALL_STATE(5989)] = 214760, - [SMALL_STATE(5990)] = 214779, - [SMALL_STATE(5991)] = 214804, - [SMALL_STATE(5992)] = 214827, - [SMALL_STATE(5993)] = 214852, - [SMALL_STATE(5994)] = 214875, - [SMALL_STATE(5995)] = 214898, - [SMALL_STATE(5996)] = 214923, - [SMALL_STATE(5997)] = 214948, - [SMALL_STATE(5998)] = 214971, - [SMALL_STATE(5999)] = 214994, - [SMALL_STATE(6000)] = 215015, - [SMALL_STATE(6001)] = 215038, - [SMALL_STATE(6002)] = 215063, - [SMALL_STATE(6003)] = 215088, - [SMALL_STATE(6004)] = 215111, - [SMALL_STATE(6005)] = 215128, - [SMALL_STATE(6006)] = 215153, - [SMALL_STATE(6007)] = 215170, - [SMALL_STATE(6008)] = 215195, - [SMALL_STATE(6009)] = 215220, - [SMALL_STATE(6010)] = 215243, - [SMALL_STATE(6011)] = 215262, - [SMALL_STATE(6012)] = 215281, - [SMALL_STATE(6013)] = 215300, - [SMALL_STATE(6014)] = 215325, - [SMALL_STATE(6015)] = 215350, - [SMALL_STATE(6016)] = 215373, - [SMALL_STATE(6017)] = 215390, - [SMALL_STATE(6018)] = 215415, - [SMALL_STATE(6019)] = 215440, - [SMALL_STATE(6020)] = 215463, - [SMALL_STATE(6021)] = 215482, - [SMALL_STATE(6022)] = 215507, - [SMALL_STATE(6023)] = 215532, - [SMALL_STATE(6024)] = 215555, - [SMALL_STATE(6025)] = 215578, - [SMALL_STATE(6026)] = 215595, - [SMALL_STATE(6027)] = 215618, - [SMALL_STATE(6028)] = 215635, - [SMALL_STATE(6029)] = 215658, - [SMALL_STATE(6030)] = 215681, - [SMALL_STATE(6031)] = 215704, - [SMALL_STATE(6032)] = 215727, - [SMALL_STATE(6033)] = 215750, - [SMALL_STATE(6034)] = 215773, - [SMALL_STATE(6035)] = 215796, - [SMALL_STATE(6036)] = 215819, - [SMALL_STATE(6037)] = 215842, - [SMALL_STATE(6038)] = 215865, - [SMALL_STATE(6039)] = 215888, - [SMALL_STATE(6040)] = 215911, - [SMALL_STATE(6041)] = 215934, - [SMALL_STATE(6042)] = 215957, - [SMALL_STATE(6043)] = 215980, - [SMALL_STATE(6044)] = 216003, - [SMALL_STATE(6045)] = 216026, - [SMALL_STATE(6046)] = 216049, - [SMALL_STATE(6047)] = 216072, - [SMALL_STATE(6048)] = 216095, - [SMALL_STATE(6049)] = 216118, - [SMALL_STATE(6050)] = 216141, - [SMALL_STATE(6051)] = 216164, - [SMALL_STATE(6052)] = 216187, - [SMALL_STATE(6053)] = 216204, - [SMALL_STATE(6054)] = 216221, - [SMALL_STATE(6055)] = 216246, - [SMALL_STATE(6056)] = 216267, - [SMALL_STATE(6057)] = 216290, - [SMALL_STATE(6058)] = 216307, - [SMALL_STATE(6059)] = 216326, - [SMALL_STATE(6060)] = 216347, - [SMALL_STATE(6061)] = 216366, - [SMALL_STATE(6062)] = 216383, - [SMALL_STATE(6063)] = 216400, - [SMALL_STATE(6064)] = 216425, - [SMALL_STATE(6065)] = 216450, - [SMALL_STATE(6066)] = 216475, - [SMALL_STATE(6067)] = 216494, - [SMALL_STATE(6068)] = 216519, - [SMALL_STATE(6069)] = 216542, - [SMALL_STATE(6070)] = 216559, - [SMALL_STATE(6071)] = 216582, - [SMALL_STATE(6072)] = 216603, - [SMALL_STATE(6073)] = 216626, - [SMALL_STATE(6074)] = 216643, - [SMALL_STATE(6075)] = 216662, - [SMALL_STATE(6076)] = 216687, - [SMALL_STATE(6077)] = 216706, - [SMALL_STATE(6078)] = 216725, - [SMALL_STATE(6079)] = 216750, - [SMALL_STATE(6080)] = 216767, - [SMALL_STATE(6081)] = 216790, - [SMALL_STATE(6082)] = 216809, - [SMALL_STATE(6083)] = 216828, - [SMALL_STATE(6084)] = 216853, - [SMALL_STATE(6085)] = 216876, - [SMALL_STATE(6086)] = 216897, - [SMALL_STATE(6087)] = 216914, - [SMALL_STATE(6088)] = 216939, - [SMALL_STATE(6089)] = 216956, - [SMALL_STATE(6090)] = 216981, - [SMALL_STATE(6091)] = 216998, - [SMALL_STATE(6092)] = 217017, - [SMALL_STATE(6093)] = 217042, - [SMALL_STATE(6094)] = 217067, - [SMALL_STATE(6095)] = 217084, - [SMALL_STATE(6096)] = 217109, - [SMALL_STATE(6097)] = 217128, - [SMALL_STATE(6098)] = 217147, - [SMALL_STATE(6099)] = 217168, - [SMALL_STATE(6100)] = 217189, - [SMALL_STATE(6101)] = 217206, - [SMALL_STATE(6102)] = 217229, - [SMALL_STATE(6103)] = 217250, - [SMALL_STATE(6104)] = 217269, - [SMALL_STATE(6105)] = 217286, - [SMALL_STATE(6106)] = 217307, - [SMALL_STATE(6107)] = 217326, - [SMALL_STATE(6108)] = 217349, - [SMALL_STATE(6109)] = 217370, - [SMALL_STATE(6110)] = 217395, - [SMALL_STATE(6111)] = 217416, - [SMALL_STATE(6112)] = 217433, - [SMALL_STATE(6113)] = 217454, - [SMALL_STATE(6114)] = 217471, - [SMALL_STATE(6115)] = 217492, - [SMALL_STATE(6116)] = 217509, - [SMALL_STATE(6117)] = 217532, - [SMALL_STATE(6118)] = 217549, - [SMALL_STATE(6119)] = 217572, - [SMALL_STATE(6120)] = 217589, - [SMALL_STATE(6121)] = 217612, - [SMALL_STATE(6122)] = 217637, - [SMALL_STATE(6123)] = 217654, - [SMALL_STATE(6124)] = 217675, - [SMALL_STATE(6125)] = 217700, - [SMALL_STATE(6126)] = 217725, - [SMALL_STATE(6127)] = 217750, - [SMALL_STATE(6128)] = 217769, - [SMALL_STATE(6129)] = 217786, - [SMALL_STATE(6130)] = 217809, - [SMALL_STATE(6131)] = 217826, - [SMALL_STATE(6132)] = 217851, - [SMALL_STATE(6133)] = 217868, - [SMALL_STATE(6134)] = 217887, - [SMALL_STATE(6135)] = 217910, - [SMALL_STATE(6136)] = 217935, - [SMALL_STATE(6137)] = 217958, - [SMALL_STATE(6138)] = 217983, - [SMALL_STATE(6139)] = 218006, - [SMALL_STATE(6140)] = 218031, - [SMALL_STATE(6141)] = 218048, - [SMALL_STATE(6142)] = 218069, - [SMALL_STATE(6143)] = 218094, - [SMALL_STATE(6144)] = 218117, - [SMALL_STATE(6145)] = 218136, - [SMALL_STATE(6146)] = 218161, - [SMALL_STATE(6147)] = 218180, - [SMALL_STATE(6148)] = 218203, - [SMALL_STATE(6149)] = 218228, - [SMALL_STATE(6150)] = 218251, - [SMALL_STATE(6151)] = 218272, - [SMALL_STATE(6152)] = 218293, - [SMALL_STATE(6153)] = 218314, - [SMALL_STATE(6154)] = 218339, - [SMALL_STATE(6155)] = 218360, - [SMALL_STATE(6156)] = 218381, - [SMALL_STATE(6157)] = 218402, - [SMALL_STATE(6158)] = 218425, - [SMALL_STATE(6159)] = 218446, - [SMALL_STATE(6160)] = 218465, - [SMALL_STATE(6161)] = 218484, - [SMALL_STATE(6162)] = 218503, - [SMALL_STATE(6163)] = 218522, - [SMALL_STATE(6164)] = 218547, - [SMALL_STATE(6165)] = 218568, - [SMALL_STATE(6166)] = 218591, - [SMALL_STATE(6167)] = 218608, - [SMALL_STATE(6168)] = 218631, - [SMALL_STATE(6169)] = 218650, - [SMALL_STATE(6170)] = 218675, - [SMALL_STATE(6171)] = 218698, - [SMALL_STATE(6172)] = 218721, - [SMALL_STATE(6173)] = 218743, - [SMALL_STATE(6174)] = 218765, - [SMALL_STATE(6175)] = 218781, - [SMALL_STATE(6176)] = 218803, - [SMALL_STATE(6177)] = 218825, - [SMALL_STATE(6178)] = 218847, - [SMALL_STATE(6179)] = 218869, - [SMALL_STATE(6180)] = 218891, - [SMALL_STATE(6181)] = 218909, - [SMALL_STATE(6182)] = 218931, - [SMALL_STATE(6183)] = 218953, - [SMALL_STATE(6184)] = 218969, - [SMALL_STATE(6185)] = 218991, - [SMALL_STATE(6186)] = 219013, - [SMALL_STATE(6187)] = 219029, - [SMALL_STATE(6188)] = 219043, - [SMALL_STATE(6189)] = 219061, - [SMALL_STATE(6190)] = 219079, - [SMALL_STATE(6191)] = 219093, - [SMALL_STATE(6192)] = 219107, - [SMALL_STATE(6193)] = 219125, - [SMALL_STATE(6194)] = 219147, - [SMALL_STATE(6195)] = 219165, - [SMALL_STATE(6196)] = 219183, - [SMALL_STATE(6197)] = 219203, - [SMALL_STATE(6198)] = 219225, - [SMALL_STATE(6199)] = 219247, - [SMALL_STATE(6200)] = 219269, - [SMALL_STATE(6201)] = 219287, - [SMALL_STATE(6202)] = 219305, - [SMALL_STATE(6203)] = 219323, - [SMALL_STATE(6204)] = 219345, - [SMALL_STATE(6205)] = 219367, - [SMALL_STATE(6206)] = 219383, - [SMALL_STATE(6207)] = 219399, - [SMALL_STATE(6208)] = 219413, - [SMALL_STATE(6209)] = 219431, - [SMALL_STATE(6210)] = 219451, - [SMALL_STATE(6211)] = 219471, - [SMALL_STATE(6212)] = 219487, - [SMALL_STATE(6213)] = 219509, - [SMALL_STATE(6214)] = 219531, - [SMALL_STATE(6215)] = 219551, - [SMALL_STATE(6216)] = 219567, - [SMALL_STATE(6217)] = 219589, - [SMALL_STATE(6218)] = 219611, - [SMALL_STATE(6219)] = 219633, - [SMALL_STATE(6220)] = 219655, - [SMALL_STATE(6221)] = 219673, - [SMALL_STATE(6222)] = 219689, - [SMALL_STATE(6223)] = 219711, - [SMALL_STATE(6224)] = 219733, - [SMALL_STATE(6225)] = 219755, - [SMALL_STATE(6226)] = 219771, - [SMALL_STATE(6227)] = 219789, - [SMALL_STATE(6228)] = 219809, - [SMALL_STATE(6229)] = 219831, - [SMALL_STATE(6230)] = 219847, - [SMALL_STATE(6231)] = 219865, - [SMALL_STATE(6232)] = 219887, - [SMALL_STATE(6233)] = 219909, - [SMALL_STATE(6234)] = 219931, - [SMALL_STATE(6235)] = 219953, - [SMALL_STATE(6236)] = 219969, - [SMALL_STATE(6237)] = 219987, - [SMALL_STATE(6238)] = 220007, - [SMALL_STATE(6239)] = 220027, - [SMALL_STATE(6240)] = 220049, - [SMALL_STATE(6241)] = 220071, - [SMALL_STATE(6242)] = 220093, - [SMALL_STATE(6243)] = 220109, - [SMALL_STATE(6244)] = 220131, - [SMALL_STATE(6245)] = 220147, - [SMALL_STATE(6246)] = 220169, - [SMALL_STATE(6247)] = 220183, - [SMALL_STATE(6248)] = 220205, - [SMALL_STATE(6249)] = 220223, - [SMALL_STATE(6250)] = 220241, - [SMALL_STATE(6251)] = 220263, - [SMALL_STATE(6252)] = 220285, - [SMALL_STATE(6253)] = 220303, - [SMALL_STATE(6254)] = 220321, - [SMALL_STATE(6255)] = 220343, - [SMALL_STATE(6256)] = 220365, - [SMALL_STATE(6257)] = 220387, - [SMALL_STATE(6258)] = 220405, - [SMALL_STATE(6259)] = 220423, - [SMALL_STATE(6260)] = 220441, - [SMALL_STATE(6261)] = 220455, - [SMALL_STATE(6262)] = 220473, - [SMALL_STATE(6263)] = 220495, - [SMALL_STATE(6264)] = 220517, - [SMALL_STATE(6265)] = 220537, - [SMALL_STATE(6266)] = 220559, - [SMALL_STATE(6267)] = 220581, - [SMALL_STATE(6268)] = 220599, - [SMALL_STATE(6269)] = 220617, - [SMALL_STATE(6270)] = 220639, - [SMALL_STATE(6271)] = 220661, - [SMALL_STATE(6272)] = 220683, - [SMALL_STATE(6273)] = 220701, - [SMALL_STATE(6274)] = 220719, - [SMALL_STATE(6275)] = 220737, - [SMALL_STATE(6276)] = 220755, - [SMALL_STATE(6277)] = 220773, - [SMALL_STATE(6278)] = 220795, - [SMALL_STATE(6279)] = 220817, - [SMALL_STATE(6280)] = 220835, - [SMALL_STATE(6281)] = 220857, - [SMALL_STATE(6282)] = 220875, - [SMALL_STATE(6283)] = 220897, - [SMALL_STATE(6284)] = 220919, - [SMALL_STATE(6285)] = 220941, - [SMALL_STATE(6286)] = 220959, - [SMALL_STATE(6287)] = 220979, - [SMALL_STATE(6288)] = 221001, - [SMALL_STATE(6289)] = 221023, - [SMALL_STATE(6290)] = 221041, - [SMALL_STATE(6291)] = 221059, - [SMALL_STATE(6292)] = 221081, - [SMALL_STATE(6293)] = 221103, - [SMALL_STATE(6294)] = 221119, - [SMALL_STATE(6295)] = 221137, - [SMALL_STATE(6296)] = 221159, - [SMALL_STATE(6297)] = 221181, - [SMALL_STATE(6298)] = 221199, - [SMALL_STATE(6299)] = 221215, - [SMALL_STATE(6300)] = 221237, - [SMALL_STATE(6301)] = 221259, - [SMALL_STATE(6302)] = 221275, - [SMALL_STATE(6303)] = 221297, - [SMALL_STATE(6304)] = 221319, - [SMALL_STATE(6305)] = 221341, - [SMALL_STATE(6306)] = 221363, - [SMALL_STATE(6307)] = 221381, - [SMALL_STATE(6308)] = 221403, - [SMALL_STATE(6309)] = 221425, - [SMALL_STATE(6310)] = 221441, - [SMALL_STATE(6311)] = 221463, - [SMALL_STATE(6312)] = 221485, - [SMALL_STATE(6313)] = 221507, - [SMALL_STATE(6314)] = 221529, - [SMALL_STATE(6315)] = 221551, - [SMALL_STATE(6316)] = 221567, - [SMALL_STATE(6317)] = 221589, - [SMALL_STATE(6318)] = 221611, - [SMALL_STATE(6319)] = 221629, - [SMALL_STATE(6320)] = 221651, - [SMALL_STATE(6321)] = 221673, - [SMALL_STATE(6322)] = 221695, - [SMALL_STATE(6323)] = 221717, - [SMALL_STATE(6324)] = 221739, - [SMALL_STATE(6325)] = 221761, - [SMALL_STATE(6326)] = 221783, - [SMALL_STATE(6327)] = 221805, - [SMALL_STATE(6328)] = 221827, - [SMALL_STATE(6329)] = 221849, - [SMALL_STATE(6330)] = 221871, - [SMALL_STATE(6331)] = 221893, - [SMALL_STATE(6332)] = 221915, - [SMALL_STATE(6333)] = 221937, - [SMALL_STATE(6334)] = 221953, - [SMALL_STATE(6335)] = 221975, - [SMALL_STATE(6336)] = 221991, - [SMALL_STATE(6337)] = 222009, - [SMALL_STATE(6338)] = 222031, - [SMALL_STATE(6339)] = 222049, - [SMALL_STATE(6340)] = 222065, - [SMALL_STATE(6341)] = 222081, - [SMALL_STATE(6342)] = 222097, - [SMALL_STATE(6343)] = 222115, - [SMALL_STATE(6344)] = 222131, - [SMALL_STATE(6345)] = 222153, - [SMALL_STATE(6346)] = 222175, - [SMALL_STATE(6347)] = 222193, - [SMALL_STATE(6348)] = 222209, - [SMALL_STATE(6349)] = 222225, - [SMALL_STATE(6350)] = 222241, - [SMALL_STATE(6351)] = 222261, - [SMALL_STATE(6352)] = 222283, - [SMALL_STATE(6353)] = 222303, - [SMALL_STATE(6354)] = 222325, - [SMALL_STATE(6355)] = 222347, - [SMALL_STATE(6356)] = 222367, - [SMALL_STATE(6357)] = 222385, - [SMALL_STATE(6358)] = 222407, - [SMALL_STATE(6359)] = 222427, - [SMALL_STATE(6360)] = 222449, - [SMALL_STATE(6361)] = 222465, - [SMALL_STATE(6362)] = 222481, - [SMALL_STATE(6363)] = 222497, - [SMALL_STATE(6364)] = 222515, - [SMALL_STATE(6365)] = 222535, - [SMALL_STATE(6366)] = 222551, - [SMALL_STATE(6367)] = 222571, - [SMALL_STATE(6368)] = 222589, - [SMALL_STATE(6369)] = 222607, - [SMALL_STATE(6370)] = 222629, - [SMALL_STATE(6371)] = 222651, - [SMALL_STATE(6372)] = 222671, - [SMALL_STATE(6373)] = 222684, - [SMALL_STATE(6374)] = 222703, - [SMALL_STATE(6375)] = 222722, - [SMALL_STATE(6376)] = 222741, - [SMALL_STATE(6377)] = 222760, - [SMALL_STATE(6378)] = 222775, - [SMALL_STATE(6379)] = 222790, - [SMALL_STATE(6380)] = 222803, - [SMALL_STATE(6381)] = 222820, - [SMALL_STATE(6382)] = 222839, - [SMALL_STATE(6383)] = 222852, - [SMALL_STATE(6384)] = 222867, - [SMALL_STATE(6385)] = 222880, - [SMALL_STATE(6386)] = 222897, - [SMALL_STATE(6387)] = 222910, - [SMALL_STATE(6388)] = 222923, - [SMALL_STATE(6389)] = 222942, - [SMALL_STATE(6390)] = 222955, - [SMALL_STATE(6391)] = 222968, - [SMALL_STATE(6392)] = 222981, - [SMALL_STATE(6393)] = 222994, - [SMALL_STATE(6394)] = 223013, - [SMALL_STATE(6395)] = 223032, - [SMALL_STATE(6396)] = 223051, - [SMALL_STATE(6397)] = 223064, - [SMALL_STATE(6398)] = 223081, - [SMALL_STATE(6399)] = 223098, - [SMALL_STATE(6400)] = 223117, - [SMALL_STATE(6401)] = 223130, - [SMALL_STATE(6402)] = 223143, - [SMALL_STATE(6403)] = 223156, - [SMALL_STATE(6404)] = 223169, - [SMALL_STATE(6405)] = 223184, - [SMALL_STATE(6406)] = 223199, - [SMALL_STATE(6407)] = 223212, - [SMALL_STATE(6408)] = 223225, - [SMALL_STATE(6409)] = 223238, - [SMALL_STATE(6410)] = 223253, - [SMALL_STATE(6411)] = 223266, - [SMALL_STATE(6412)] = 223283, - [SMALL_STATE(6413)] = 223296, - [SMALL_STATE(6414)] = 223315, - [SMALL_STATE(6415)] = 223334, - [SMALL_STATE(6416)] = 223349, - [SMALL_STATE(6417)] = 223362, - [SMALL_STATE(6418)] = 223375, - [SMALL_STATE(6419)] = 223394, - [SMALL_STATE(6420)] = 223413, - [SMALL_STATE(6421)] = 223428, - [SMALL_STATE(6422)] = 223441, - [SMALL_STATE(6423)] = 223456, - [SMALL_STATE(6424)] = 223471, - [SMALL_STATE(6425)] = 223490, - [SMALL_STATE(6426)] = 223505, - [SMALL_STATE(6427)] = 223518, - [SMALL_STATE(6428)] = 223537, - [SMALL_STATE(6429)] = 223552, - [SMALL_STATE(6430)] = 223567, - [SMALL_STATE(6431)] = 223584, - [SMALL_STATE(6432)] = 223603, - [SMALL_STATE(6433)] = 223622, - [SMALL_STATE(6434)] = 223639, - [SMALL_STATE(6435)] = 223652, - [SMALL_STATE(6436)] = 223665, - [SMALL_STATE(6437)] = 223678, - [SMALL_STATE(6438)] = 223691, - [SMALL_STATE(6439)] = 223708, - [SMALL_STATE(6440)] = 223721, - [SMALL_STATE(6441)] = 223734, - [SMALL_STATE(6442)] = 223747, - [SMALL_STATE(6443)] = 223764, - [SMALL_STATE(6444)] = 223781, - [SMALL_STATE(6445)] = 223794, - [SMALL_STATE(6446)] = 223811, - [SMALL_STATE(6447)] = 223824, - [SMALL_STATE(6448)] = 223841, - [SMALL_STATE(6449)] = 223860, - [SMALL_STATE(6450)] = 223879, - [SMALL_STATE(6451)] = 223898, - [SMALL_STATE(6452)] = 223917, - [SMALL_STATE(6453)] = 223936, - [SMALL_STATE(6454)] = 223955, - [SMALL_STATE(6455)] = 223974, - [SMALL_STATE(6456)] = 223993, - [SMALL_STATE(6457)] = 224006, - [SMALL_STATE(6458)] = 224019, - [SMALL_STATE(6459)] = 224032, - [SMALL_STATE(6460)] = 224045, - [SMALL_STATE(6461)] = 224060, - [SMALL_STATE(6462)] = 224073, - [SMALL_STATE(6463)] = 224086, - [SMALL_STATE(6464)] = 224105, - [SMALL_STATE(6465)] = 224122, - [SMALL_STATE(6466)] = 224141, - [SMALL_STATE(6467)] = 224158, - [SMALL_STATE(6468)] = 224175, - [SMALL_STATE(6469)] = 224194, - [SMALL_STATE(6470)] = 224213, - [SMALL_STATE(6471)] = 224232, - [SMALL_STATE(6472)] = 224251, - [SMALL_STATE(6473)] = 224270, - [SMALL_STATE(6474)] = 224289, - [SMALL_STATE(6475)] = 224308, - [SMALL_STATE(6476)] = 224327, - [SMALL_STATE(6477)] = 224346, - [SMALL_STATE(6478)] = 224365, - [SMALL_STATE(6479)] = 224384, - [SMALL_STATE(6480)] = 224399, - [SMALL_STATE(6481)] = 224412, - [SMALL_STATE(6482)] = 224425, - [SMALL_STATE(6483)] = 224442, - [SMALL_STATE(6484)] = 224459, - [SMALL_STATE(6485)] = 224476, - [SMALL_STATE(6486)] = 224495, - [SMALL_STATE(6487)] = 224510, - [SMALL_STATE(6488)] = 224529, - [SMALL_STATE(6489)] = 224542, - [SMALL_STATE(6490)] = 224561, - [SMALL_STATE(6491)] = 224580, - [SMALL_STATE(6492)] = 224599, - [SMALL_STATE(6493)] = 224618, - [SMALL_STATE(6494)] = 224637, - [SMALL_STATE(6495)] = 224656, - [SMALL_STATE(6496)] = 224675, - [SMALL_STATE(6497)] = 224694, - [SMALL_STATE(6498)] = 224711, - [SMALL_STATE(6499)] = 224724, - [SMALL_STATE(6500)] = 224741, - [SMALL_STATE(6501)] = 224760, - [SMALL_STATE(6502)] = 224777, - [SMALL_STATE(6503)] = 224794, - [SMALL_STATE(6504)] = 224811, - [SMALL_STATE(6505)] = 224830, - [SMALL_STATE(6506)] = 224849, - [SMALL_STATE(6507)] = 224868, - [SMALL_STATE(6508)] = 224887, - [SMALL_STATE(6509)] = 224906, - [SMALL_STATE(6510)] = 224925, - [SMALL_STATE(6511)] = 224944, - [SMALL_STATE(6512)] = 224963, - [SMALL_STATE(6513)] = 224976, - [SMALL_STATE(6514)] = 224989, - [SMALL_STATE(6515)] = 225008, - [SMALL_STATE(6516)] = 225025, - [SMALL_STATE(6517)] = 225042, - [SMALL_STATE(6518)] = 225055, - [SMALL_STATE(6519)] = 225074, - [SMALL_STATE(6520)] = 225093, - [SMALL_STATE(6521)] = 225112, - [SMALL_STATE(6522)] = 225131, - [SMALL_STATE(6523)] = 225150, - [SMALL_STATE(6524)] = 225169, - [SMALL_STATE(6525)] = 225188, - [SMALL_STATE(6526)] = 225207, - [SMALL_STATE(6527)] = 225220, - [SMALL_STATE(6528)] = 225235, - [SMALL_STATE(6529)] = 225252, - [SMALL_STATE(6530)] = 225269, - [SMALL_STATE(6531)] = 225282, - [SMALL_STATE(6532)] = 225301, - [SMALL_STATE(6533)] = 225320, - [SMALL_STATE(6534)] = 225339, - [SMALL_STATE(6535)] = 225358, - [SMALL_STATE(6536)] = 225377, - [SMALL_STATE(6537)] = 225396, - [SMALL_STATE(6538)] = 225415, - [SMALL_STATE(6539)] = 225434, - [SMALL_STATE(6540)] = 225447, - [SMALL_STATE(6541)] = 225462, - [SMALL_STATE(6542)] = 225479, - [SMALL_STATE(6543)] = 225494, - [SMALL_STATE(6544)] = 225511, - [SMALL_STATE(6545)] = 225530, - [SMALL_STATE(6546)] = 225549, - [SMALL_STATE(6547)] = 225568, - [SMALL_STATE(6548)] = 225587, - [SMALL_STATE(6549)] = 225606, - [SMALL_STATE(6550)] = 225625, - [SMALL_STATE(6551)] = 225644, - [SMALL_STATE(6552)] = 225663, - [SMALL_STATE(6553)] = 225682, - [SMALL_STATE(6554)] = 225695, - [SMALL_STATE(6555)] = 225712, - [SMALL_STATE(6556)] = 225731, - [SMALL_STATE(6557)] = 225748, - [SMALL_STATE(6558)] = 225765, - [SMALL_STATE(6559)] = 225784, - [SMALL_STATE(6560)] = 225803, - [SMALL_STATE(6561)] = 225822, - [SMALL_STATE(6562)] = 225841, - [SMALL_STATE(6563)] = 225860, - [SMALL_STATE(6564)] = 225879, - [SMALL_STATE(6565)] = 225898, - [SMALL_STATE(6566)] = 225917, - [SMALL_STATE(6567)] = 225936, - [SMALL_STATE(6568)] = 225949, - [SMALL_STATE(6569)] = 225966, - [SMALL_STATE(6570)] = 225979, - [SMALL_STATE(6571)] = 225996, - [SMALL_STATE(6572)] = 226009, - [SMALL_STATE(6573)] = 226022, - [SMALL_STATE(6574)] = 226035, - [SMALL_STATE(6575)] = 226048, - [SMALL_STATE(6576)] = 226063, - [SMALL_STATE(6577)] = 226076, - [SMALL_STATE(6578)] = 226095, - [SMALL_STATE(6579)] = 226114, - [SMALL_STATE(6580)] = 226133, - [SMALL_STATE(6581)] = 226152, - [SMALL_STATE(6582)] = 226171, - [SMALL_STATE(6583)] = 226190, - [SMALL_STATE(6584)] = 226209, - [SMALL_STATE(6585)] = 226228, - [SMALL_STATE(6586)] = 226245, - [SMALL_STATE(6587)] = 226258, - [SMALL_STATE(6588)] = 226275, - [SMALL_STATE(6589)] = 226288, - [SMALL_STATE(6590)] = 226305, - [SMALL_STATE(6591)] = 226318, - [SMALL_STATE(6592)] = 226337, - [SMALL_STATE(6593)] = 226356, - [SMALL_STATE(6594)] = 226375, - [SMALL_STATE(6595)] = 226394, - [SMALL_STATE(6596)] = 226413, - [SMALL_STATE(6597)] = 226432, - [SMALL_STATE(6598)] = 226451, - [SMALL_STATE(6599)] = 226470, - [SMALL_STATE(6600)] = 226489, - [SMALL_STATE(6601)] = 226508, - [SMALL_STATE(6602)] = 226523, - [SMALL_STATE(6603)] = 226536, - [SMALL_STATE(6604)] = 226553, - [SMALL_STATE(6605)] = 226570, - [SMALL_STATE(6606)] = 226583, - [SMALL_STATE(6607)] = 226600, - [SMALL_STATE(6608)] = 226619, - [SMALL_STATE(6609)] = 226638, - [SMALL_STATE(6610)] = 226657, - [SMALL_STATE(6611)] = 226676, - [SMALL_STATE(6612)] = 226695, - [SMALL_STATE(6613)] = 226714, - [SMALL_STATE(6614)] = 226733, - [SMALL_STATE(6615)] = 226752, - [SMALL_STATE(6616)] = 226771, - [SMALL_STATE(6617)] = 226784, - [SMALL_STATE(6618)] = 226803, - [SMALL_STATE(6619)] = 226816, - [SMALL_STATE(6620)] = 226833, - [SMALL_STATE(6621)] = 226850, - [SMALL_STATE(6622)] = 226869, - [SMALL_STATE(6623)] = 226888, - [SMALL_STATE(6624)] = 226907, - [SMALL_STATE(6625)] = 226926, - [SMALL_STATE(6626)] = 226945, - [SMALL_STATE(6627)] = 226964, - [SMALL_STATE(6628)] = 226983, - [SMALL_STATE(6629)] = 227002, - [SMALL_STATE(6630)] = 227015, - [SMALL_STATE(6631)] = 227032, - [SMALL_STATE(6632)] = 227049, - [SMALL_STATE(6633)] = 227068, - [SMALL_STATE(6634)] = 227087, - [SMALL_STATE(6635)] = 227106, - [SMALL_STATE(6636)] = 227125, - [SMALL_STATE(6637)] = 227144, - [SMALL_STATE(6638)] = 227163, - [SMALL_STATE(6639)] = 227182, - [SMALL_STATE(6640)] = 227201, - [SMALL_STATE(6641)] = 227214, - [SMALL_STATE(6642)] = 227231, - [SMALL_STATE(6643)] = 227248, - [SMALL_STATE(6644)] = 227265, - [SMALL_STATE(6645)] = 227278, - [SMALL_STATE(6646)] = 227297, - [SMALL_STATE(6647)] = 227316, - [SMALL_STATE(6648)] = 227335, - [SMALL_STATE(6649)] = 227354, - [SMALL_STATE(6650)] = 227373, - [SMALL_STATE(6651)] = 227392, - [SMALL_STATE(6652)] = 227411, - [SMALL_STATE(6653)] = 227430, - [SMALL_STATE(6654)] = 227443, - [SMALL_STATE(6655)] = 227460, - [SMALL_STATE(6656)] = 227477, - [SMALL_STATE(6657)] = 227496, - [SMALL_STATE(6658)] = 227515, - [SMALL_STATE(6659)] = 227534, - [SMALL_STATE(6660)] = 227553, - [SMALL_STATE(6661)] = 227572, - [SMALL_STATE(6662)] = 227591, - [SMALL_STATE(6663)] = 227610, - [SMALL_STATE(6664)] = 227629, - [SMALL_STATE(6665)] = 227648, - [SMALL_STATE(6666)] = 227661, - [SMALL_STATE(6667)] = 227678, - [SMALL_STATE(6668)] = 227695, - [SMALL_STATE(6669)] = 227714, - [SMALL_STATE(6670)] = 227733, - [SMALL_STATE(6671)] = 227752, - [SMALL_STATE(6672)] = 227771, - [SMALL_STATE(6673)] = 227790, - [SMALL_STATE(6674)] = 227809, - [SMALL_STATE(6675)] = 227828, - [SMALL_STATE(6676)] = 227847, - [SMALL_STATE(6677)] = 227866, - [SMALL_STATE(6678)] = 227879, - [SMALL_STATE(6679)] = 227892, - [SMALL_STATE(6680)] = 227905, - [SMALL_STATE(6681)] = 227922, - [SMALL_STATE(6682)] = 227939, - [SMALL_STATE(6683)] = 227958, - [SMALL_STATE(6684)] = 227977, - [SMALL_STATE(6685)] = 227996, - [SMALL_STATE(6686)] = 228015, - [SMALL_STATE(6687)] = 228034, - [SMALL_STATE(6688)] = 228053, - [SMALL_STATE(6689)] = 228072, - [SMALL_STATE(6690)] = 228091, - [SMALL_STATE(6691)] = 228110, - [SMALL_STATE(6692)] = 228123, - [SMALL_STATE(6693)] = 228136, - [SMALL_STATE(6694)] = 228153, - [SMALL_STATE(6695)] = 228170, - [SMALL_STATE(6696)] = 228189, - [SMALL_STATE(6697)] = 228208, - [SMALL_STATE(6698)] = 228227, - [SMALL_STATE(6699)] = 228246, - [SMALL_STATE(6700)] = 228265, - [SMALL_STATE(6701)] = 228284, - [SMALL_STATE(6702)] = 228303, - [SMALL_STATE(6703)] = 228322, - [SMALL_STATE(6704)] = 228335, - [SMALL_STATE(6705)] = 228348, - [SMALL_STATE(6706)] = 228365, - [SMALL_STATE(6707)] = 228382, - [SMALL_STATE(6708)] = 228395, - [SMALL_STATE(6709)] = 228412, - [SMALL_STATE(6710)] = 228429, - [SMALL_STATE(6711)] = 228442, - [SMALL_STATE(6712)] = 228459, - [SMALL_STATE(6713)] = 228476, - [SMALL_STATE(6714)] = 228489, - [SMALL_STATE(6715)] = 228506, - [SMALL_STATE(6716)] = 228523, - [SMALL_STATE(6717)] = 228542, - [SMALL_STATE(6718)] = 228555, - [SMALL_STATE(6719)] = 228572, - [SMALL_STATE(6720)] = 228589, - [SMALL_STATE(6721)] = 228602, - [SMALL_STATE(6722)] = 228619, - [SMALL_STATE(6723)] = 228636, - [SMALL_STATE(6724)] = 228649, - [SMALL_STATE(6725)] = 228666, - [SMALL_STATE(6726)] = 228683, - [SMALL_STATE(6727)] = 228696, - [SMALL_STATE(6728)] = 228713, - [SMALL_STATE(6729)] = 228730, - [SMALL_STATE(6730)] = 228743, - [SMALL_STATE(6731)] = 228760, - [SMALL_STATE(6732)] = 228777, - [SMALL_STATE(6733)] = 228790, - [SMALL_STATE(6734)] = 228807, - [SMALL_STATE(6735)] = 228824, - [SMALL_STATE(6736)] = 228837, - [SMALL_STATE(6737)] = 228854, - [SMALL_STATE(6738)] = 228871, - [SMALL_STATE(6739)] = 228884, - [SMALL_STATE(6740)] = 228901, - [SMALL_STATE(6741)] = 228918, - [SMALL_STATE(6742)] = 228931, - [SMALL_STATE(6743)] = 228944, - [SMALL_STATE(6744)] = 228961, - [SMALL_STATE(6745)] = 228978, - [SMALL_STATE(6746)] = 228991, - [SMALL_STATE(6747)] = 229008, - [SMALL_STATE(6748)] = 229025, - [SMALL_STATE(6749)] = 229038, - [SMALL_STATE(6750)] = 229055, - [SMALL_STATE(6751)] = 229072, - [SMALL_STATE(6752)] = 229085, - [SMALL_STATE(6753)] = 229102, - [SMALL_STATE(6754)] = 229119, - [SMALL_STATE(6755)] = 229132, - [SMALL_STATE(6756)] = 229149, - [SMALL_STATE(6757)] = 229166, - [SMALL_STATE(6758)] = 229183, - [SMALL_STATE(6759)] = 229196, - [SMALL_STATE(6760)] = 229213, - [SMALL_STATE(6761)] = 229230, - [SMALL_STATE(6762)] = 229243, - [SMALL_STATE(6763)] = 229256, - [SMALL_STATE(6764)] = 229273, - [SMALL_STATE(6765)] = 229290, - [SMALL_STATE(6766)] = 229303, - [SMALL_STATE(6767)] = 229320, - [SMALL_STATE(6768)] = 229337, - [SMALL_STATE(6769)] = 229350, - [SMALL_STATE(6770)] = 229367, - [SMALL_STATE(6771)] = 229384, - [SMALL_STATE(6772)] = 229397, - [SMALL_STATE(6773)] = 229414, - [SMALL_STATE(6774)] = 229431, - [SMALL_STATE(6775)] = 229444, - [SMALL_STATE(6776)] = 229461, - [SMALL_STATE(6777)] = 229478, - [SMALL_STATE(6778)] = 229491, - [SMALL_STATE(6779)] = 229508, - [SMALL_STATE(6780)] = 229525, - [SMALL_STATE(6781)] = 229538, - [SMALL_STATE(6782)] = 229551, - [SMALL_STATE(6783)] = 229568, - [SMALL_STATE(6784)] = 229585, - [SMALL_STATE(6785)] = 229598, - [SMALL_STATE(6786)] = 229611, - [SMALL_STATE(6787)] = 229628, - [SMALL_STATE(6788)] = 229645, - [SMALL_STATE(6789)] = 229658, - [SMALL_STATE(6790)] = 229675, - [SMALL_STATE(6791)] = 229692, - [SMALL_STATE(6792)] = 229705, - [SMALL_STATE(6793)] = 229722, - [SMALL_STATE(6794)] = 229739, - [SMALL_STATE(6795)] = 229752, - [SMALL_STATE(6796)] = 229769, - [SMALL_STATE(6797)] = 229786, - [SMALL_STATE(6798)] = 229799, - [SMALL_STATE(6799)] = 229816, - [SMALL_STATE(6800)] = 229833, - [SMALL_STATE(6801)] = 229850, - [SMALL_STATE(6802)] = 229867, - [SMALL_STATE(6803)] = 229884, - [SMALL_STATE(6804)] = 229901, - [SMALL_STATE(6805)] = 229918, - [SMALL_STATE(6806)] = 229935, - [SMALL_STATE(6807)] = 229952, - [SMALL_STATE(6808)] = 229969, - [SMALL_STATE(6809)] = 229986, - [SMALL_STATE(6810)] = 230003, - [SMALL_STATE(6811)] = 230016, - [SMALL_STATE(6812)] = 230029, - [SMALL_STATE(6813)] = 230046, - [SMALL_STATE(6814)] = 230059, - [SMALL_STATE(6815)] = 230078, - [SMALL_STATE(6816)] = 230091, - [SMALL_STATE(6817)] = 230104, - [SMALL_STATE(6818)] = 230123, - [SMALL_STATE(6819)] = 230142, - [SMALL_STATE(6820)] = 230155, - [SMALL_STATE(6821)] = 230172, - [SMALL_STATE(6822)] = 230185, - [SMALL_STATE(6823)] = 230198, - [SMALL_STATE(6824)] = 230211, - [SMALL_STATE(6825)] = 230228, - [SMALL_STATE(6826)] = 230247, - [SMALL_STATE(6827)] = 230262, - [SMALL_STATE(6828)] = 230281, - [SMALL_STATE(6829)] = 230300, - [SMALL_STATE(6830)] = 230319, - [SMALL_STATE(6831)] = 230338, - [SMALL_STATE(6832)] = 230355, - [SMALL_STATE(6833)] = 230374, - [SMALL_STATE(6834)] = 230393, - [SMALL_STATE(6835)] = 230406, - [SMALL_STATE(6836)] = 230419, - [SMALL_STATE(6837)] = 230436, - [SMALL_STATE(6838)] = 230449, - [SMALL_STATE(6839)] = 230462, - [SMALL_STATE(6840)] = 230481, - [SMALL_STATE(6841)] = 230494, - [SMALL_STATE(6842)] = 230513, - [SMALL_STATE(6843)] = 230526, - [SMALL_STATE(6844)] = 230545, - [SMALL_STATE(6845)] = 230558, - [SMALL_STATE(6846)] = 230571, - [SMALL_STATE(6847)] = 230584, - [SMALL_STATE(6848)] = 230603, - [SMALL_STATE(6849)] = 230616, - [SMALL_STATE(6850)] = 230635, - [SMALL_STATE(6851)] = 230648, - [SMALL_STATE(6852)] = 230667, - [SMALL_STATE(6853)] = 230682, - [SMALL_STATE(6854)] = 230695, - [SMALL_STATE(6855)] = 230708, - [SMALL_STATE(6856)] = 230721, - [SMALL_STATE(6857)] = 230734, - [SMALL_STATE(6858)] = 230751, - [SMALL_STATE(6859)] = 230764, - [SMALL_STATE(6860)] = 230779, - [SMALL_STATE(6861)] = 230792, - [SMALL_STATE(6862)] = 230805, - [SMALL_STATE(6863)] = 230818, - [SMALL_STATE(6864)] = 230835, - [SMALL_STATE(6865)] = 230852, - [SMALL_STATE(6866)] = 230865, - [SMALL_STATE(6867)] = 230878, - [SMALL_STATE(6868)] = 230897, - [SMALL_STATE(6869)] = 230914, - [SMALL_STATE(6870)] = 230927, - [SMALL_STATE(6871)] = 230946, - [SMALL_STATE(6872)] = 230965, - [SMALL_STATE(6873)] = 230982, - [SMALL_STATE(6874)] = 230995, - [SMALL_STATE(6875)] = 231008, - [SMALL_STATE(6876)] = 231021, - [SMALL_STATE(6877)] = 231034, - [SMALL_STATE(6878)] = 231053, - [SMALL_STATE(6879)] = 231066, - [SMALL_STATE(6880)] = 231081, - [SMALL_STATE(6881)] = 231096, - [SMALL_STATE(6882)] = 231111, - [SMALL_STATE(6883)] = 231130, - [SMALL_STATE(6884)] = 231149, - [SMALL_STATE(6885)] = 231168, - [SMALL_STATE(6886)] = 231187, - [SMALL_STATE(6887)] = 231206, - [SMALL_STATE(6888)] = 231221, - [SMALL_STATE(6889)] = 231234, - [SMALL_STATE(6890)] = 231251, - [SMALL_STATE(6891)] = 231268, - [SMALL_STATE(6892)] = 231287, - [SMALL_STATE(6893)] = 231302, - [SMALL_STATE(6894)] = 231319, - [SMALL_STATE(6895)] = 231332, - [SMALL_STATE(6896)] = 231345, - [SMALL_STATE(6897)] = 231361, - [SMALL_STATE(6898)] = 231373, - [SMALL_STATE(6899)] = 231389, - [SMALL_STATE(6900)] = 231401, - [SMALL_STATE(6901)] = 231417, - [SMALL_STATE(6902)] = 231433, - [SMALL_STATE(6903)] = 231449, - [SMALL_STATE(6904)] = 231465, - [SMALL_STATE(6905)] = 231481, - [SMALL_STATE(6906)] = 231493, - [SMALL_STATE(6907)] = 231505, - [SMALL_STATE(6908)] = 231521, - [SMALL_STATE(6909)] = 231537, - [SMALL_STATE(6910)] = 231553, - [SMALL_STATE(6911)] = 231569, - [SMALL_STATE(6912)] = 231585, - [SMALL_STATE(6913)] = 231601, - [SMALL_STATE(6914)] = 231617, - [SMALL_STATE(6915)] = 231629, - [SMALL_STATE(6916)] = 231645, - [SMALL_STATE(6917)] = 231661, - [SMALL_STATE(6918)] = 231677, - [SMALL_STATE(6919)] = 231689, - [SMALL_STATE(6920)] = 231705, - [SMALL_STATE(6921)] = 231721, - [SMALL_STATE(6922)] = 231733, - [SMALL_STATE(6923)] = 231749, - [SMALL_STATE(6924)] = 231765, - [SMALL_STATE(6925)] = 231777, - [SMALL_STATE(6926)] = 231791, - [SMALL_STATE(6927)] = 231803, - [SMALL_STATE(6928)] = 231819, - [SMALL_STATE(6929)] = 231835, - [SMALL_STATE(6930)] = 231849, - [SMALL_STATE(6931)] = 231865, - [SMALL_STATE(6932)] = 231879, - [SMALL_STATE(6933)] = 231891, - [SMALL_STATE(6934)] = 231907, - [SMALL_STATE(6935)] = 231923, - [SMALL_STATE(6936)] = 231939, - [SMALL_STATE(6937)] = 231955, - [SMALL_STATE(6938)] = 231967, - [SMALL_STATE(6939)] = 231983, - [SMALL_STATE(6940)] = 231999, - [SMALL_STATE(6941)] = 232011, - [SMALL_STATE(6942)] = 232027, - [SMALL_STATE(6943)] = 232043, - [SMALL_STATE(6944)] = 232055, - [SMALL_STATE(6945)] = 232071, - [SMALL_STATE(6946)] = 232083, - [SMALL_STATE(6947)] = 232095, - [SMALL_STATE(6948)] = 232111, - [SMALL_STATE(6949)] = 232127, - [SMALL_STATE(6950)] = 232143, - [SMALL_STATE(6951)] = 232157, - [SMALL_STATE(6952)] = 232171, - [SMALL_STATE(6953)] = 232185, - [SMALL_STATE(6954)] = 232201, - [SMALL_STATE(6955)] = 232217, - [SMALL_STATE(6956)] = 232229, - [SMALL_STATE(6957)] = 232245, - [SMALL_STATE(6958)] = 232261, - [SMALL_STATE(6959)] = 232277, - [SMALL_STATE(6960)] = 232293, - [SMALL_STATE(6961)] = 232309, - [SMALL_STATE(6962)] = 232325, - [SMALL_STATE(6963)] = 232341, - [SMALL_STATE(6964)] = 232357, - [SMALL_STATE(6965)] = 232373, - [SMALL_STATE(6966)] = 232389, - [SMALL_STATE(6967)] = 232405, - [SMALL_STATE(6968)] = 232417, - [SMALL_STATE(6969)] = 232433, - [SMALL_STATE(6970)] = 232445, - [SMALL_STATE(6971)] = 232459, - [SMALL_STATE(6972)] = 232475, - [SMALL_STATE(6973)] = 232489, - [SMALL_STATE(6974)] = 232505, - [SMALL_STATE(6975)] = 232517, - [SMALL_STATE(6976)] = 232529, - [SMALL_STATE(6977)] = 232543, - [SMALL_STATE(6978)] = 232559, - [SMALL_STATE(6979)] = 232575, - [SMALL_STATE(6980)] = 232591, - [SMALL_STATE(6981)] = 232607, - [SMALL_STATE(6982)] = 232619, - [SMALL_STATE(6983)] = 232631, - [SMALL_STATE(6984)] = 232647, - [SMALL_STATE(6985)] = 232663, - [SMALL_STATE(6986)] = 232679, - [SMALL_STATE(6987)] = 232695, - [SMALL_STATE(6988)] = 232711, - [SMALL_STATE(6989)] = 232727, - [SMALL_STATE(6990)] = 232743, - [SMALL_STATE(6991)] = 232759, - [SMALL_STATE(6992)] = 232775, - [SMALL_STATE(6993)] = 232791, - [SMALL_STATE(6994)] = 232807, - [SMALL_STATE(6995)] = 232823, - [SMALL_STATE(6996)] = 232835, - [SMALL_STATE(6997)] = 232847, - [SMALL_STATE(6998)] = 232861, - [SMALL_STATE(6999)] = 232877, - [SMALL_STATE(7000)] = 232889, - [SMALL_STATE(7001)] = 232901, - [SMALL_STATE(7002)] = 232917, - [SMALL_STATE(7003)] = 232933, - [SMALL_STATE(7004)] = 232949, - [SMALL_STATE(7005)] = 232965, - [SMALL_STATE(7006)] = 232981, - [SMALL_STATE(7007)] = 232997, - [SMALL_STATE(7008)] = 233013, - [SMALL_STATE(7009)] = 233029, - [SMALL_STATE(7010)] = 233045, - [SMALL_STATE(7011)] = 233057, - [SMALL_STATE(7012)] = 233069, - [SMALL_STATE(7013)] = 233085, - [SMALL_STATE(7014)] = 233101, - [SMALL_STATE(7015)] = 233117, - [SMALL_STATE(7016)] = 233129, - [SMALL_STATE(7017)] = 233145, - [SMALL_STATE(7018)] = 233161, - [SMALL_STATE(7019)] = 233177, - [SMALL_STATE(7020)] = 233193, - [SMALL_STATE(7021)] = 233209, - [SMALL_STATE(7022)] = 233225, - [SMALL_STATE(7023)] = 233237, - [SMALL_STATE(7024)] = 233253, - [SMALL_STATE(7025)] = 233267, - [SMALL_STATE(7026)] = 233279, - [SMALL_STATE(7027)] = 233295, - [SMALL_STATE(7028)] = 233311, - [SMALL_STATE(7029)] = 233327, - [SMALL_STATE(7030)] = 233339, - [SMALL_STATE(7031)] = 233353, - [SMALL_STATE(7032)] = 233369, - [SMALL_STATE(7033)] = 233381, - [SMALL_STATE(7034)] = 233397, - [SMALL_STATE(7035)] = 233413, - [SMALL_STATE(7036)] = 233429, - [SMALL_STATE(7037)] = 233445, - [SMALL_STATE(7038)] = 233461, - [SMALL_STATE(7039)] = 233473, - [SMALL_STATE(7040)] = 233489, - [SMALL_STATE(7041)] = 233501, - [SMALL_STATE(7042)] = 233517, - [SMALL_STATE(7043)] = 233533, - [SMALL_STATE(7044)] = 233549, - [SMALL_STATE(7045)] = 233565, - [SMALL_STATE(7046)] = 233579, - [SMALL_STATE(7047)] = 233595, - [SMALL_STATE(7048)] = 233611, - [SMALL_STATE(7049)] = 233627, - [SMALL_STATE(7050)] = 233639, - [SMALL_STATE(7051)] = 233651, - [SMALL_STATE(7052)] = 233665, - [SMALL_STATE(7053)] = 233681, - [SMALL_STATE(7054)] = 233695, - [SMALL_STATE(7055)] = 233711, - [SMALL_STATE(7056)] = 233727, - [SMALL_STATE(7057)] = 233743, - [SMALL_STATE(7058)] = 233759, - [SMALL_STATE(7059)] = 233775, - [SMALL_STATE(7060)] = 233791, - [SMALL_STATE(7061)] = 233807, - [SMALL_STATE(7062)] = 233823, - [SMALL_STATE(7063)] = 233839, - [SMALL_STATE(7064)] = 233855, - [SMALL_STATE(7065)] = 233867, - [SMALL_STATE(7066)] = 233879, - [SMALL_STATE(7067)] = 233895, - [SMALL_STATE(7068)] = 233911, - [SMALL_STATE(7069)] = 233927, - [SMALL_STATE(7070)] = 233939, - [SMALL_STATE(7071)] = 233955, - [SMALL_STATE(7072)] = 233967, - [SMALL_STATE(7073)] = 233983, - [SMALL_STATE(7074)] = 233999, - [SMALL_STATE(7075)] = 234015, - [SMALL_STATE(7076)] = 234031, - [SMALL_STATE(7077)] = 234047, - [SMALL_STATE(7078)] = 234063, - [SMALL_STATE(7079)] = 234079, - [SMALL_STATE(7080)] = 234095, - [SMALL_STATE(7081)] = 234111, - [SMALL_STATE(7082)] = 234123, - [SMALL_STATE(7083)] = 234139, - [SMALL_STATE(7084)] = 234155, - [SMALL_STATE(7085)] = 234171, - [SMALL_STATE(7086)] = 234183, - [SMALL_STATE(7087)] = 234195, - [SMALL_STATE(7088)] = 234211, - [SMALL_STATE(7089)] = 234227, - [SMALL_STATE(7090)] = 234243, - [SMALL_STATE(7091)] = 234259, - [SMALL_STATE(7092)] = 234271, - [SMALL_STATE(7093)] = 234283, - [SMALL_STATE(7094)] = 234299, - [SMALL_STATE(7095)] = 234315, - [SMALL_STATE(7096)] = 234331, - [SMALL_STATE(7097)] = 234347, - [SMALL_STATE(7098)] = 234363, - [SMALL_STATE(7099)] = 234379, - [SMALL_STATE(7100)] = 234395, - [SMALL_STATE(7101)] = 234407, - [SMALL_STATE(7102)] = 234423, - [SMALL_STATE(7103)] = 234439, - [SMALL_STATE(7104)] = 234453, - [SMALL_STATE(7105)] = 234469, - [SMALL_STATE(7106)] = 234483, - [SMALL_STATE(7107)] = 234499, - [SMALL_STATE(7108)] = 234515, - [SMALL_STATE(7109)] = 234531, - [SMALL_STATE(7110)] = 234547, - [SMALL_STATE(7111)] = 234563, - [SMALL_STATE(7112)] = 234575, - [SMALL_STATE(7113)] = 234591, - [SMALL_STATE(7114)] = 234607, - [SMALL_STATE(7115)] = 234623, - [SMALL_STATE(7116)] = 234639, - [SMALL_STATE(7117)] = 234651, - [SMALL_STATE(7118)] = 234667, - [SMALL_STATE(7119)] = 234683, - [SMALL_STATE(7120)] = 234699, - [SMALL_STATE(7121)] = 234711, - [SMALL_STATE(7122)] = 234727, - [SMALL_STATE(7123)] = 234743, - [SMALL_STATE(7124)] = 234759, - [SMALL_STATE(7125)] = 234775, - [SMALL_STATE(7126)] = 234791, - [SMALL_STATE(7127)] = 234803, - [SMALL_STATE(7128)] = 234819, - [SMALL_STATE(7129)] = 234835, - [SMALL_STATE(7130)] = 234851, - [SMALL_STATE(7131)] = 234867, - [SMALL_STATE(7132)] = 234883, - [SMALL_STATE(7133)] = 234899, - [SMALL_STATE(7134)] = 234911, - [SMALL_STATE(7135)] = 234927, - [SMALL_STATE(7136)] = 234943, - [SMALL_STATE(7137)] = 234959, - [SMALL_STATE(7138)] = 234971, - [SMALL_STATE(7139)] = 234987, - [SMALL_STATE(7140)] = 235003, - [SMALL_STATE(7141)] = 235017, - [SMALL_STATE(7142)] = 235033, - [SMALL_STATE(7143)] = 235049, - [SMALL_STATE(7144)] = 235065, - [SMALL_STATE(7145)] = 235081, - [SMALL_STATE(7146)] = 235097, - [SMALL_STATE(7147)] = 235113, - [SMALL_STATE(7148)] = 235129, - [SMALL_STATE(7149)] = 235145, - [SMALL_STATE(7150)] = 235161, - [SMALL_STATE(7151)] = 235173, - [SMALL_STATE(7152)] = 235189, - [SMALL_STATE(7153)] = 235201, - [SMALL_STATE(7154)] = 235217, - [SMALL_STATE(7155)] = 235229, - [SMALL_STATE(7156)] = 235245, - [SMALL_STATE(7157)] = 235261, - [SMALL_STATE(7158)] = 235277, - [SMALL_STATE(7159)] = 235291, - [SMALL_STATE(7160)] = 235307, - [SMALL_STATE(7161)] = 235319, - [SMALL_STATE(7162)] = 235335, - [SMALL_STATE(7163)] = 235351, - [SMALL_STATE(7164)] = 235363, - [SMALL_STATE(7165)] = 235379, - [SMALL_STATE(7166)] = 235391, - [SMALL_STATE(7167)] = 235403, - [SMALL_STATE(7168)] = 235415, - [SMALL_STATE(7169)] = 235431, - [SMALL_STATE(7170)] = 235443, - [SMALL_STATE(7171)] = 235455, - [SMALL_STATE(7172)] = 235471, - [SMALL_STATE(7173)] = 235487, - [SMALL_STATE(7174)] = 235503, - [SMALL_STATE(7175)] = 235519, - [SMALL_STATE(7176)] = 235535, - [SMALL_STATE(7177)] = 235551, - [SMALL_STATE(7178)] = 235567, - [SMALL_STATE(7179)] = 235579, - [SMALL_STATE(7180)] = 235593, - [SMALL_STATE(7181)] = 235607, - [SMALL_STATE(7182)] = 235623, - [SMALL_STATE(7183)] = 235635, - [SMALL_STATE(7184)] = 235651, - [SMALL_STATE(7185)] = 235665, - [SMALL_STATE(7186)] = 235681, - [SMALL_STATE(7187)] = 235697, - [SMALL_STATE(7188)] = 235713, - [SMALL_STATE(7189)] = 235727, - [SMALL_STATE(7190)] = 235739, - [SMALL_STATE(7191)] = 235755, - [SMALL_STATE(7192)] = 235767, - [SMALL_STATE(7193)] = 235783, - [SMALL_STATE(7194)] = 235799, - [SMALL_STATE(7195)] = 235815, - [SMALL_STATE(7196)] = 235831, - [SMALL_STATE(7197)] = 235843, - [SMALL_STATE(7198)] = 235859, - [SMALL_STATE(7199)] = 235875, - [SMALL_STATE(7200)] = 235887, - [SMALL_STATE(7201)] = 235903, - [SMALL_STATE(7202)] = 235919, - [SMALL_STATE(7203)] = 235931, - [SMALL_STATE(7204)] = 235943, - [SMALL_STATE(7205)] = 235959, - [SMALL_STATE(7206)] = 235971, - [SMALL_STATE(7207)] = 235983, - [SMALL_STATE(7208)] = 235999, - [SMALL_STATE(7209)] = 236015, - [SMALL_STATE(7210)] = 236031, - [SMALL_STATE(7211)] = 236047, - [SMALL_STATE(7212)] = 236059, - [SMALL_STATE(7213)] = 236073, - [SMALL_STATE(7214)] = 236085, - [SMALL_STATE(7215)] = 236097, - [SMALL_STATE(7216)] = 236109, - [SMALL_STATE(7217)] = 236125, - [SMALL_STATE(7218)] = 236141, - [SMALL_STATE(7219)] = 236153, - [SMALL_STATE(7220)] = 236165, - [SMALL_STATE(7221)] = 236181, - [SMALL_STATE(7222)] = 236197, - [SMALL_STATE(7223)] = 236213, - [SMALL_STATE(7224)] = 236225, - [SMALL_STATE(7225)] = 236237, - [SMALL_STATE(7226)] = 236253, - [SMALL_STATE(7227)] = 236265, - [SMALL_STATE(7228)] = 236279, - [SMALL_STATE(7229)] = 236295, - [SMALL_STATE(7230)] = 236311, - [SMALL_STATE(7231)] = 236327, - [SMALL_STATE(7232)] = 236343, - [SMALL_STATE(7233)] = 236359, - [SMALL_STATE(7234)] = 236375, - [SMALL_STATE(7235)] = 236389, - [SMALL_STATE(7236)] = 236405, - [SMALL_STATE(7237)] = 236421, - [SMALL_STATE(7238)] = 236433, - [SMALL_STATE(7239)] = 236445, - [SMALL_STATE(7240)] = 236457, - [SMALL_STATE(7241)] = 236473, - [SMALL_STATE(7242)] = 236485, - [SMALL_STATE(7243)] = 236501, - [SMALL_STATE(7244)] = 236515, - [SMALL_STATE(7245)] = 236531, - [SMALL_STATE(7246)] = 236547, - [SMALL_STATE(7247)] = 236559, - [SMALL_STATE(7248)] = 236575, - [SMALL_STATE(7249)] = 236589, - [SMALL_STATE(7250)] = 236605, - [SMALL_STATE(7251)] = 236619, - [SMALL_STATE(7252)] = 236631, - [SMALL_STATE(7253)] = 236643, - [SMALL_STATE(7254)] = 236659, - [SMALL_STATE(7255)] = 236675, - [SMALL_STATE(7256)] = 236689, - [SMALL_STATE(7257)] = 236703, - [SMALL_STATE(7258)] = 236715, - [SMALL_STATE(7259)] = 236731, - [SMALL_STATE(7260)] = 236743, - [SMALL_STATE(7261)] = 236759, - [SMALL_STATE(7262)] = 236775, - [SMALL_STATE(7263)] = 236791, - [SMALL_STATE(7264)] = 236805, - [SMALL_STATE(7265)] = 236821, - [SMALL_STATE(7266)] = 236837, - [SMALL_STATE(7267)] = 236853, - [SMALL_STATE(7268)] = 236869, - [SMALL_STATE(7269)] = 236885, - [SMALL_STATE(7270)] = 236901, - [SMALL_STATE(7271)] = 236917, - [SMALL_STATE(7272)] = 236929, - [SMALL_STATE(7273)] = 236941, - [SMALL_STATE(7274)] = 236957, - [SMALL_STATE(7275)] = 236969, - [SMALL_STATE(7276)] = 236981, - [SMALL_STATE(7277)] = 236993, - [SMALL_STATE(7278)] = 237005, - [SMALL_STATE(7279)] = 237021, - [SMALL_STATE(7280)] = 237035, - [SMALL_STATE(7281)] = 237051, - [SMALL_STATE(7282)] = 237065, - [SMALL_STATE(7283)] = 237081, - [SMALL_STATE(7284)] = 237097, - [SMALL_STATE(7285)] = 237113, - [SMALL_STATE(7286)] = 237127, - [SMALL_STATE(7287)] = 237143, - [SMALL_STATE(7288)] = 237159, - [SMALL_STATE(7289)] = 237173, - [SMALL_STATE(7290)] = 237189, - [SMALL_STATE(7291)] = 237205, - [SMALL_STATE(7292)] = 237221, - [SMALL_STATE(7293)] = 237237, - [SMALL_STATE(7294)] = 237253, - [SMALL_STATE(7295)] = 237269, - [SMALL_STATE(7296)] = 237283, - [SMALL_STATE(7297)] = 237295, - [SMALL_STATE(7298)] = 237311, - [SMALL_STATE(7299)] = 237327, - [SMALL_STATE(7300)] = 237343, - [SMALL_STATE(7301)] = 237359, - [SMALL_STATE(7302)] = 237373, - [SMALL_STATE(7303)] = 237389, - [SMALL_STATE(7304)] = 237403, - [SMALL_STATE(7305)] = 237419, - [SMALL_STATE(7306)] = 237435, - [SMALL_STATE(7307)] = 237451, - [SMALL_STATE(7308)] = 237467, - [SMALL_STATE(7309)] = 237483, - [SMALL_STATE(7310)] = 237499, - [SMALL_STATE(7311)] = 237513, - [SMALL_STATE(7312)] = 237529, - [SMALL_STATE(7313)] = 237543, - [SMALL_STATE(7314)] = 237559, - [SMALL_STATE(7315)] = 237575, - [SMALL_STATE(7316)] = 237591, - [SMALL_STATE(7317)] = 237607, - [SMALL_STATE(7318)] = 237623, - [SMALL_STATE(7319)] = 237637, - [SMALL_STATE(7320)] = 237651, - [SMALL_STATE(7321)] = 237665, - [SMALL_STATE(7322)] = 237681, - [SMALL_STATE(7323)] = 237697, - [SMALL_STATE(7324)] = 237713, - [SMALL_STATE(7325)] = 237729, - [SMALL_STATE(7326)] = 237743, - [SMALL_STATE(7327)] = 237755, - [SMALL_STATE(7328)] = 237769, - [SMALL_STATE(7329)] = 237785, - [SMALL_STATE(7330)] = 237801, - [SMALL_STATE(7331)] = 237817, - [SMALL_STATE(7332)] = 237833, - [SMALL_STATE(7333)] = 237847, - [SMALL_STATE(7334)] = 237861, - [SMALL_STATE(7335)] = 237877, - [SMALL_STATE(7336)] = 237893, - [SMALL_STATE(7337)] = 237909, - [SMALL_STATE(7338)] = 237925, - [SMALL_STATE(7339)] = 237941, - [SMALL_STATE(7340)] = 237957, - [SMALL_STATE(7341)] = 237971, - [SMALL_STATE(7342)] = 237987, - [SMALL_STATE(7343)] = 238001, - [SMALL_STATE(7344)] = 238017, - [SMALL_STATE(7345)] = 238033, - [SMALL_STATE(7346)] = 238049, - [SMALL_STATE(7347)] = 238065, - [SMALL_STATE(7348)] = 238081, - [SMALL_STATE(7349)] = 238097, - [SMALL_STATE(7350)] = 238113, - [SMALL_STATE(7351)] = 238127, - [SMALL_STATE(7352)] = 238141, - [SMALL_STATE(7353)] = 238157, - [SMALL_STATE(7354)] = 238173, - [SMALL_STATE(7355)] = 238189, - [SMALL_STATE(7356)] = 238201, - [SMALL_STATE(7357)] = 238217, - [SMALL_STATE(7358)] = 238233, - [SMALL_STATE(7359)] = 238247, - [SMALL_STATE(7360)] = 238259, - [SMALL_STATE(7361)] = 238273, - [SMALL_STATE(7362)] = 238285, - [SMALL_STATE(7363)] = 238301, - [SMALL_STATE(7364)] = 238317, - [SMALL_STATE(7365)] = 238329, - [SMALL_STATE(7366)] = 238345, - [SMALL_STATE(7367)] = 238361, - [SMALL_STATE(7368)] = 238375, - [SMALL_STATE(7369)] = 238387, - [SMALL_STATE(7370)] = 238401, - [SMALL_STATE(7371)] = 238417, - [SMALL_STATE(7372)] = 238433, - [SMALL_STATE(7373)] = 238449, - [SMALL_STATE(7374)] = 238461, - [SMALL_STATE(7375)] = 238477, - [SMALL_STATE(7376)] = 238493, - [SMALL_STATE(7377)] = 238507, - [SMALL_STATE(7378)] = 238523, - [SMALL_STATE(7379)] = 238537, - [SMALL_STATE(7380)] = 238549, - [SMALL_STATE(7381)] = 238565, - [SMALL_STATE(7382)] = 238581, - [SMALL_STATE(7383)] = 238593, - [SMALL_STATE(7384)] = 238609, - [SMALL_STATE(7385)] = 238625, - [SMALL_STATE(7386)] = 238639, - [SMALL_STATE(7387)] = 238651, - [SMALL_STATE(7388)] = 238665, - [SMALL_STATE(7389)] = 238677, - [SMALL_STATE(7390)] = 238693, - [SMALL_STATE(7391)] = 238709, - [SMALL_STATE(7392)] = 238725, - [SMALL_STATE(7393)] = 238741, - [SMALL_STATE(7394)] = 238757, - [SMALL_STATE(7395)] = 238771, - [SMALL_STATE(7396)] = 238785, - [SMALL_STATE(7397)] = 238801, - [SMALL_STATE(7398)] = 238817, - [SMALL_STATE(7399)] = 238833, - [SMALL_STATE(7400)] = 238845, - [SMALL_STATE(7401)] = 238861, - [SMALL_STATE(7402)] = 238877, - [SMALL_STATE(7403)] = 238891, - [SMALL_STATE(7404)] = 238905, - [SMALL_STATE(7405)] = 238921, - [SMALL_STATE(7406)] = 238937, - [SMALL_STATE(7407)] = 238953, - [SMALL_STATE(7408)] = 238969, - [SMALL_STATE(7409)] = 238985, - [SMALL_STATE(7410)] = 239001, - [SMALL_STATE(7411)] = 239015, - [SMALL_STATE(7412)] = 239029, - [SMALL_STATE(7413)] = 239045, - [SMALL_STATE(7414)] = 239061, - [SMALL_STATE(7415)] = 239077, - [SMALL_STATE(7416)] = 239093, - [SMALL_STATE(7417)] = 239109, - [SMALL_STATE(7418)] = 239123, - [SMALL_STATE(7419)] = 239137, - [SMALL_STATE(7420)] = 239153, - [SMALL_STATE(7421)] = 239169, - [SMALL_STATE(7422)] = 239185, - [SMALL_STATE(7423)] = 239201, - [SMALL_STATE(7424)] = 239217, - [SMALL_STATE(7425)] = 239231, - [SMALL_STATE(7426)] = 239245, - [SMALL_STATE(7427)] = 239261, - [SMALL_STATE(7428)] = 239277, - [SMALL_STATE(7429)] = 239293, - [SMALL_STATE(7430)] = 239309, - [SMALL_STATE(7431)] = 239325, - [SMALL_STATE(7432)] = 239339, - [SMALL_STATE(7433)] = 239353, - [SMALL_STATE(7434)] = 239369, - [SMALL_STATE(7435)] = 239385, - [SMALL_STATE(7436)] = 239401, - [SMALL_STATE(7437)] = 239417, - [SMALL_STATE(7438)] = 239433, - [SMALL_STATE(7439)] = 239449, - [SMALL_STATE(7440)] = 239461, - [SMALL_STATE(7441)] = 239473, - [SMALL_STATE(7442)] = 239485, - [SMALL_STATE(7443)] = 239499, - [SMALL_STATE(7444)] = 239511, - [SMALL_STATE(7445)] = 239523, - [SMALL_STATE(7446)] = 239535, - [SMALL_STATE(7447)] = 239551, - [SMALL_STATE(7448)] = 239565, - [SMALL_STATE(7449)] = 239581, - [SMALL_STATE(7450)] = 239597, - [SMALL_STATE(7451)] = 239613, - [SMALL_STATE(7452)] = 239625, - [SMALL_STATE(7453)] = 239637, - [SMALL_STATE(7454)] = 239653, - [SMALL_STATE(7455)] = 239669, - [SMALL_STATE(7456)] = 239685, - [SMALL_STATE(7457)] = 239697, - [SMALL_STATE(7458)] = 239713, - [SMALL_STATE(7459)] = 239727, - [SMALL_STATE(7460)] = 239741, - [SMALL_STATE(7461)] = 239757, - [SMALL_STATE(7462)] = 239773, - [SMALL_STATE(7463)] = 239789, - [SMALL_STATE(7464)] = 239802, - [SMALL_STATE(7465)] = 239813, - [SMALL_STATE(7466)] = 239824, - [SMALL_STATE(7467)] = 239837, - [SMALL_STATE(7468)] = 239850, - [SMALL_STATE(7469)] = 239863, - [SMALL_STATE(7470)] = 239876, - [SMALL_STATE(7471)] = 239889, - [SMALL_STATE(7472)] = 239902, - [SMALL_STATE(7473)] = 239915, - [SMALL_STATE(7474)] = 239928, - [SMALL_STATE(7475)] = 239941, - [SMALL_STATE(7476)] = 239954, - [SMALL_STATE(7477)] = 239967, - [SMALL_STATE(7478)] = 239980, - [SMALL_STATE(7479)] = 239993, - [SMALL_STATE(7480)] = 240006, - [SMALL_STATE(7481)] = 240019, - [SMALL_STATE(7482)] = 240032, - [SMALL_STATE(7483)] = 240045, - [SMALL_STATE(7484)] = 240058, - [SMALL_STATE(7485)] = 240071, - [SMALL_STATE(7486)] = 240084, - [SMALL_STATE(7487)] = 240097, - [SMALL_STATE(7488)] = 240110, - [SMALL_STATE(7489)] = 240123, - [SMALL_STATE(7490)] = 240136, - [SMALL_STATE(7491)] = 240149, - [SMALL_STATE(7492)] = 240162, - [SMALL_STATE(7493)] = 240175, - [SMALL_STATE(7494)] = 240188, - [SMALL_STATE(7495)] = 240201, - [SMALL_STATE(7496)] = 240214, - [SMALL_STATE(7497)] = 240227, - [SMALL_STATE(7498)] = 240240, - [SMALL_STATE(7499)] = 240253, - [SMALL_STATE(7500)] = 240266, - [SMALL_STATE(7501)] = 240279, - [SMALL_STATE(7502)] = 240292, - [SMALL_STATE(7503)] = 240303, - [SMALL_STATE(7504)] = 240316, - [SMALL_STATE(7505)] = 240329, - [SMALL_STATE(7506)] = 240342, - [SMALL_STATE(7507)] = 240355, - [SMALL_STATE(7508)] = 240368, - [SMALL_STATE(7509)] = 240379, - [SMALL_STATE(7510)] = 240392, - [SMALL_STATE(7511)] = 240405, - [SMALL_STATE(7512)] = 240418, - [SMALL_STATE(7513)] = 240431, - [SMALL_STATE(7514)] = 240444, - [SMALL_STATE(7515)] = 240457, - [SMALL_STATE(7516)] = 240470, - [SMALL_STATE(7517)] = 240483, - [SMALL_STATE(7518)] = 240496, - [SMALL_STATE(7519)] = 240509, - [SMALL_STATE(7520)] = 240522, - [SMALL_STATE(7521)] = 240535, - [SMALL_STATE(7522)] = 240548, - [SMALL_STATE(7523)] = 240561, - [SMALL_STATE(7524)] = 240574, - [SMALL_STATE(7525)] = 240587, - [SMALL_STATE(7526)] = 240600, - [SMALL_STATE(7527)] = 240613, - [SMALL_STATE(7528)] = 240626, - [SMALL_STATE(7529)] = 240639, - [SMALL_STATE(7530)] = 240652, - [SMALL_STATE(7531)] = 240665, - [SMALL_STATE(7532)] = 240678, - [SMALL_STATE(7533)] = 240691, - [SMALL_STATE(7534)] = 240704, - [SMALL_STATE(7535)] = 240717, - [SMALL_STATE(7536)] = 240730, - [SMALL_STATE(7537)] = 240743, - [SMALL_STATE(7538)] = 240756, - [SMALL_STATE(7539)] = 240769, - [SMALL_STATE(7540)] = 240782, - [SMALL_STATE(7541)] = 240795, - [SMALL_STATE(7542)] = 240808, - [SMALL_STATE(7543)] = 240821, - [SMALL_STATE(7544)] = 240834, - [SMALL_STATE(7545)] = 240847, - [SMALL_STATE(7546)] = 240860, - [SMALL_STATE(7547)] = 240873, - [SMALL_STATE(7548)] = 240886, - [SMALL_STATE(7549)] = 240899, - [SMALL_STATE(7550)] = 240912, - [SMALL_STATE(7551)] = 240925, - [SMALL_STATE(7552)] = 240938, - [SMALL_STATE(7553)] = 240951, - [SMALL_STATE(7554)] = 240964, - [SMALL_STATE(7555)] = 240977, - [SMALL_STATE(7556)] = 240990, - [SMALL_STATE(7557)] = 241001, - [SMALL_STATE(7558)] = 241012, - [SMALL_STATE(7559)] = 241023, - [SMALL_STATE(7560)] = 241036, - [SMALL_STATE(7561)] = 241049, - [SMALL_STATE(7562)] = 241062, - [SMALL_STATE(7563)] = 241075, - [SMALL_STATE(7564)] = 241088, - [SMALL_STATE(7565)] = 241101, - [SMALL_STATE(7566)] = 241114, - [SMALL_STATE(7567)] = 241127, - [SMALL_STATE(7568)] = 241140, - [SMALL_STATE(7569)] = 241153, - [SMALL_STATE(7570)] = 241164, - [SMALL_STATE(7571)] = 241177, - [SMALL_STATE(7572)] = 241190, - [SMALL_STATE(7573)] = 241203, - [SMALL_STATE(7574)] = 241216, - [SMALL_STATE(7575)] = 241229, - [SMALL_STATE(7576)] = 241242, - [SMALL_STATE(7577)] = 241255, - [SMALL_STATE(7578)] = 241268, - [SMALL_STATE(7579)] = 241281, - [SMALL_STATE(7580)] = 241294, - [SMALL_STATE(7581)] = 241307, - [SMALL_STATE(7582)] = 241320, - [SMALL_STATE(7583)] = 241333, - [SMALL_STATE(7584)] = 241346, - [SMALL_STATE(7585)] = 241359, - [SMALL_STATE(7586)] = 241372, - [SMALL_STATE(7587)] = 241385, - [SMALL_STATE(7588)] = 241398, - [SMALL_STATE(7589)] = 241411, - [SMALL_STATE(7590)] = 241424, - [SMALL_STATE(7591)] = 241437, - [SMALL_STATE(7592)] = 241450, - [SMALL_STATE(7593)] = 241463, - [SMALL_STATE(7594)] = 241476, - [SMALL_STATE(7595)] = 241489, - [SMALL_STATE(7596)] = 241502, - [SMALL_STATE(7597)] = 241515, - [SMALL_STATE(7598)] = 241528, - [SMALL_STATE(7599)] = 241541, - [SMALL_STATE(7600)] = 241554, - [SMALL_STATE(7601)] = 241567, - [SMALL_STATE(7602)] = 241580, - [SMALL_STATE(7603)] = 241593, - [SMALL_STATE(7604)] = 241606, - [SMALL_STATE(7605)] = 241619, - [SMALL_STATE(7606)] = 241632, - [SMALL_STATE(7607)] = 241645, - [SMALL_STATE(7608)] = 241658, - [SMALL_STATE(7609)] = 241671, - [SMALL_STATE(7610)] = 241682, - [SMALL_STATE(7611)] = 241695, - [SMALL_STATE(7612)] = 241708, - [SMALL_STATE(7613)] = 241721, - [SMALL_STATE(7614)] = 241734, - [SMALL_STATE(7615)] = 241747, - [SMALL_STATE(7616)] = 241760, - [SMALL_STATE(7617)] = 241773, - [SMALL_STATE(7618)] = 241786, - [SMALL_STATE(7619)] = 241799, - [SMALL_STATE(7620)] = 241812, - [SMALL_STATE(7621)] = 241825, - [SMALL_STATE(7622)] = 241838, - [SMALL_STATE(7623)] = 241851, - [SMALL_STATE(7624)] = 241864, - [SMALL_STATE(7625)] = 241877, - [SMALL_STATE(7626)] = 241890, - [SMALL_STATE(7627)] = 241903, - [SMALL_STATE(7628)] = 241916, - [SMALL_STATE(7629)] = 241929, - [SMALL_STATE(7630)] = 241942, - [SMALL_STATE(7631)] = 241955, - [SMALL_STATE(7632)] = 241968, - [SMALL_STATE(7633)] = 241979, - [SMALL_STATE(7634)] = 241992, - [SMALL_STATE(7635)] = 242005, - [SMALL_STATE(7636)] = 242018, - [SMALL_STATE(7637)] = 242031, - [SMALL_STATE(7638)] = 242044, - [SMALL_STATE(7639)] = 242057, - [SMALL_STATE(7640)] = 242070, - [SMALL_STATE(7641)] = 242083, - [SMALL_STATE(7642)] = 242096, - [SMALL_STATE(7643)] = 242107, - [SMALL_STATE(7644)] = 242120, - [SMALL_STATE(7645)] = 242133, - [SMALL_STATE(7646)] = 242146, - [SMALL_STATE(7647)] = 242159, - [SMALL_STATE(7648)] = 242172, - [SMALL_STATE(7649)] = 242185, - [SMALL_STATE(7650)] = 242198, - [SMALL_STATE(7651)] = 242211, - [SMALL_STATE(7652)] = 242224, - [SMALL_STATE(7653)] = 242237, - [SMALL_STATE(7654)] = 242250, - [SMALL_STATE(7655)] = 242263, - [SMALL_STATE(7656)] = 242276, - [SMALL_STATE(7657)] = 242289, - [SMALL_STATE(7658)] = 242302, - [SMALL_STATE(7659)] = 242315, - [SMALL_STATE(7660)] = 242328, - [SMALL_STATE(7661)] = 242341, - [SMALL_STATE(7662)] = 242354, - [SMALL_STATE(7663)] = 242367, - [SMALL_STATE(7664)] = 242380, - [SMALL_STATE(7665)] = 242393, - [SMALL_STATE(7666)] = 242406, - [SMALL_STATE(7667)] = 242419, - [SMALL_STATE(7668)] = 242432, - [SMALL_STATE(7669)] = 242445, - [SMALL_STATE(7670)] = 242458, - [SMALL_STATE(7671)] = 242471, - [SMALL_STATE(7672)] = 242484, - [SMALL_STATE(7673)] = 242497, - [SMALL_STATE(7674)] = 242510, - [SMALL_STATE(7675)] = 242523, - [SMALL_STATE(7676)] = 242536, - [SMALL_STATE(7677)] = 242549, - [SMALL_STATE(7678)] = 242562, - [SMALL_STATE(7679)] = 242575, - [SMALL_STATE(7680)] = 242588, - [SMALL_STATE(7681)] = 242601, - [SMALL_STATE(7682)] = 242614, - [SMALL_STATE(7683)] = 242627, - [SMALL_STATE(7684)] = 242640, - [SMALL_STATE(7685)] = 242653, - [SMALL_STATE(7686)] = 242666, - [SMALL_STATE(7687)] = 242679, - [SMALL_STATE(7688)] = 242692, - [SMALL_STATE(7689)] = 242702, - [SMALL_STATE(7690)] = 242712, - [SMALL_STATE(7691)] = 242722, - [SMALL_STATE(7692)] = 242732, - [SMALL_STATE(7693)] = 242742, - [SMALL_STATE(7694)] = 242752, - [SMALL_STATE(7695)] = 242762, - [SMALL_STATE(7696)] = 242772, - [SMALL_STATE(7697)] = 242782, - [SMALL_STATE(7698)] = 242792, - [SMALL_STATE(7699)] = 242802, - [SMALL_STATE(7700)] = 242812, - [SMALL_STATE(7701)] = 242822, - [SMALL_STATE(7702)] = 242832, - [SMALL_STATE(7703)] = 242842, - [SMALL_STATE(7704)] = 242852, - [SMALL_STATE(7705)] = 242862, - [SMALL_STATE(7706)] = 242872, - [SMALL_STATE(7707)] = 242882, - [SMALL_STATE(7708)] = 242892, - [SMALL_STATE(7709)] = 242902, - [SMALL_STATE(7710)] = 242912, - [SMALL_STATE(7711)] = 242922, - [SMALL_STATE(7712)] = 242932, - [SMALL_STATE(7713)] = 242942, - [SMALL_STATE(7714)] = 242952, - [SMALL_STATE(7715)] = 242962, - [SMALL_STATE(7716)] = 242972, - [SMALL_STATE(7717)] = 242982, - [SMALL_STATE(7718)] = 242992, - [SMALL_STATE(7719)] = 243002, - [SMALL_STATE(7720)] = 243012, - [SMALL_STATE(7721)] = 243022, - [SMALL_STATE(7722)] = 243032, - [SMALL_STATE(7723)] = 243042, - [SMALL_STATE(7724)] = 243052, - [SMALL_STATE(7725)] = 243062, - [SMALL_STATE(7726)] = 243072, - [SMALL_STATE(7727)] = 243082, - [SMALL_STATE(7728)] = 243092, - [SMALL_STATE(7729)] = 243102, - [SMALL_STATE(7730)] = 243112, - [SMALL_STATE(7731)] = 243122, - [SMALL_STATE(7732)] = 243132, - [SMALL_STATE(7733)] = 243142, - [SMALL_STATE(7734)] = 243152, - [SMALL_STATE(7735)] = 243162, - [SMALL_STATE(7736)] = 243172, - [SMALL_STATE(7737)] = 243182, - [SMALL_STATE(7738)] = 243192, - [SMALL_STATE(7739)] = 243202, - [SMALL_STATE(7740)] = 243212, - [SMALL_STATE(7741)] = 243222, - [SMALL_STATE(7742)] = 243232, - [SMALL_STATE(7743)] = 243242, - [SMALL_STATE(7744)] = 243252, - [SMALL_STATE(7745)] = 243262, - [SMALL_STATE(7746)] = 243272, - [SMALL_STATE(7747)] = 243282, - [SMALL_STATE(7748)] = 243292, - [SMALL_STATE(7749)] = 243302, - [SMALL_STATE(7750)] = 243312, - [SMALL_STATE(7751)] = 243322, - [SMALL_STATE(7752)] = 243332, - [SMALL_STATE(7753)] = 243342, - [SMALL_STATE(7754)] = 243352, - [SMALL_STATE(7755)] = 243362, - [SMALL_STATE(7756)] = 243372, - [SMALL_STATE(7757)] = 243382, - [SMALL_STATE(7758)] = 243392, - [SMALL_STATE(7759)] = 243402, - [SMALL_STATE(7760)] = 243412, - [SMALL_STATE(7761)] = 243422, - [SMALL_STATE(7762)] = 243432, - [SMALL_STATE(7763)] = 243442, - [SMALL_STATE(7764)] = 243452, - [SMALL_STATE(7765)] = 243462, - [SMALL_STATE(7766)] = 243472, - [SMALL_STATE(7767)] = 243482, - [SMALL_STATE(7768)] = 243492, - [SMALL_STATE(7769)] = 243502, - [SMALL_STATE(7770)] = 243512, - [SMALL_STATE(7771)] = 243522, - [SMALL_STATE(7772)] = 243532, - [SMALL_STATE(7773)] = 243542, - [SMALL_STATE(7774)] = 243552, - [SMALL_STATE(7775)] = 243562, - [SMALL_STATE(7776)] = 243572, - [SMALL_STATE(7777)] = 243582, - [SMALL_STATE(7778)] = 243592, - [SMALL_STATE(7779)] = 243602, - [SMALL_STATE(7780)] = 243612, - [SMALL_STATE(7781)] = 243622, - [SMALL_STATE(7782)] = 243632, - [SMALL_STATE(7783)] = 243642, - [SMALL_STATE(7784)] = 243652, - [SMALL_STATE(7785)] = 243662, - [SMALL_STATE(7786)] = 243672, - [SMALL_STATE(7787)] = 243682, - [SMALL_STATE(7788)] = 243692, - [SMALL_STATE(7789)] = 243702, - [SMALL_STATE(7790)] = 243712, - [SMALL_STATE(7791)] = 243722, - [SMALL_STATE(7792)] = 243732, - [SMALL_STATE(7793)] = 243742, - [SMALL_STATE(7794)] = 243752, - [SMALL_STATE(7795)] = 243762, - [SMALL_STATE(7796)] = 243772, - [SMALL_STATE(7797)] = 243782, - [SMALL_STATE(7798)] = 243792, - [SMALL_STATE(7799)] = 243802, - [SMALL_STATE(7800)] = 243812, - [SMALL_STATE(7801)] = 243822, - [SMALL_STATE(7802)] = 243832, - [SMALL_STATE(7803)] = 243842, - [SMALL_STATE(7804)] = 243852, - [SMALL_STATE(7805)] = 243862, - [SMALL_STATE(7806)] = 243872, - [SMALL_STATE(7807)] = 243882, - [SMALL_STATE(7808)] = 243892, - [SMALL_STATE(7809)] = 243902, - [SMALL_STATE(7810)] = 243912, - [SMALL_STATE(7811)] = 243922, - [SMALL_STATE(7812)] = 243932, - [SMALL_STATE(7813)] = 243942, - [SMALL_STATE(7814)] = 243952, - [SMALL_STATE(7815)] = 243962, - [SMALL_STATE(7816)] = 243972, - [SMALL_STATE(7817)] = 243982, - [SMALL_STATE(7818)] = 243992, - [SMALL_STATE(7819)] = 244002, - [SMALL_STATE(7820)] = 244012, - [SMALL_STATE(7821)] = 244022, - [SMALL_STATE(7822)] = 244032, - [SMALL_STATE(7823)] = 244042, - [SMALL_STATE(7824)] = 244052, - [SMALL_STATE(7825)] = 244062, - [SMALL_STATE(7826)] = 244072, - [SMALL_STATE(7827)] = 244082, - [SMALL_STATE(7828)] = 244092, - [SMALL_STATE(7829)] = 244102, - [SMALL_STATE(7830)] = 244112, - [SMALL_STATE(7831)] = 244122, - [SMALL_STATE(7832)] = 244132, - [SMALL_STATE(7833)] = 244142, - [SMALL_STATE(7834)] = 244152, - [SMALL_STATE(7835)] = 244162, - [SMALL_STATE(7836)] = 244172, - [SMALL_STATE(7837)] = 244182, - [SMALL_STATE(7838)] = 244192, - [SMALL_STATE(7839)] = 244202, - [SMALL_STATE(7840)] = 244212, - [SMALL_STATE(7841)] = 244222, - [SMALL_STATE(7842)] = 244232, - [SMALL_STATE(7843)] = 244242, - [SMALL_STATE(7844)] = 244252, - [SMALL_STATE(7845)] = 244262, - [SMALL_STATE(7846)] = 244272, - [SMALL_STATE(7847)] = 244282, - [SMALL_STATE(7848)] = 244292, - [SMALL_STATE(7849)] = 244302, - [SMALL_STATE(7850)] = 244312, - [SMALL_STATE(7851)] = 244322, - [SMALL_STATE(7852)] = 244332, - [SMALL_STATE(7853)] = 244342, - [SMALL_STATE(7854)] = 244352, - [SMALL_STATE(7855)] = 244362, - [SMALL_STATE(7856)] = 244372, - [SMALL_STATE(7857)] = 244382, - [SMALL_STATE(7858)] = 244392, - [SMALL_STATE(7859)] = 244402, - [SMALL_STATE(7860)] = 244412, - [SMALL_STATE(7861)] = 244422, - [SMALL_STATE(7862)] = 244432, - [SMALL_STATE(7863)] = 244442, - [SMALL_STATE(7864)] = 244452, - [SMALL_STATE(7865)] = 244462, - [SMALL_STATE(7866)] = 244472, - [SMALL_STATE(7867)] = 244482, - [SMALL_STATE(7868)] = 244492, - [SMALL_STATE(7869)] = 244502, - [SMALL_STATE(7870)] = 244512, - [SMALL_STATE(7871)] = 244522, - [SMALL_STATE(7872)] = 244532, - [SMALL_STATE(7873)] = 244542, - [SMALL_STATE(7874)] = 244552, - [SMALL_STATE(7875)] = 244562, - [SMALL_STATE(7876)] = 244572, - [SMALL_STATE(7877)] = 244582, - [SMALL_STATE(7878)] = 244592, - [SMALL_STATE(7879)] = 244602, - [SMALL_STATE(7880)] = 244612, - [SMALL_STATE(7881)] = 244622, - [SMALL_STATE(7882)] = 244632, - [SMALL_STATE(7883)] = 244642, - [SMALL_STATE(7884)] = 244652, - [SMALL_STATE(7885)] = 244662, - [SMALL_STATE(7886)] = 244672, - [SMALL_STATE(7887)] = 244682, - [SMALL_STATE(7888)] = 244692, - [SMALL_STATE(7889)] = 244702, - [SMALL_STATE(7890)] = 244712, - [SMALL_STATE(7891)] = 244722, - [SMALL_STATE(7892)] = 244732, - [SMALL_STATE(7893)] = 244742, - [SMALL_STATE(7894)] = 244752, - [SMALL_STATE(7895)] = 244762, - [SMALL_STATE(7896)] = 244772, - [SMALL_STATE(7897)] = 244782, - [SMALL_STATE(7898)] = 244792, - [SMALL_STATE(7899)] = 244802, - [SMALL_STATE(7900)] = 244812, - [SMALL_STATE(7901)] = 244822, - [SMALL_STATE(7902)] = 244832, - [SMALL_STATE(7903)] = 244842, - [SMALL_STATE(7904)] = 244852, - [SMALL_STATE(7905)] = 244862, - [SMALL_STATE(7906)] = 244872, - [SMALL_STATE(7907)] = 244882, - [SMALL_STATE(7908)] = 244892, - [SMALL_STATE(7909)] = 244902, - [SMALL_STATE(7910)] = 244912, - [SMALL_STATE(7911)] = 244922, - [SMALL_STATE(7912)] = 244932, - [SMALL_STATE(7913)] = 244942, - [SMALL_STATE(7914)] = 244952, - [SMALL_STATE(7915)] = 244962, - [SMALL_STATE(7916)] = 244972, - [SMALL_STATE(7917)] = 244982, - [SMALL_STATE(7918)] = 244992, - [SMALL_STATE(7919)] = 245002, - [SMALL_STATE(7920)] = 245012, - [SMALL_STATE(7921)] = 245022, - [SMALL_STATE(7922)] = 245032, - [SMALL_STATE(7923)] = 245042, - [SMALL_STATE(7924)] = 245052, - [SMALL_STATE(7925)] = 245062, - [SMALL_STATE(7926)] = 245072, - [SMALL_STATE(7927)] = 245082, - [SMALL_STATE(7928)] = 245092, - [SMALL_STATE(7929)] = 245102, - [SMALL_STATE(7930)] = 245112, - [SMALL_STATE(7931)] = 245122, - [SMALL_STATE(7932)] = 245132, - [SMALL_STATE(7933)] = 245142, - [SMALL_STATE(7934)] = 245152, - [SMALL_STATE(7935)] = 245162, - [SMALL_STATE(7936)] = 245172, - [SMALL_STATE(7937)] = 245182, - [SMALL_STATE(7938)] = 245192, - [SMALL_STATE(7939)] = 245202, - [SMALL_STATE(7940)] = 245212, - [SMALL_STATE(7941)] = 245222, - [SMALL_STATE(7942)] = 245232, - [SMALL_STATE(7943)] = 245242, - [SMALL_STATE(7944)] = 245252, - [SMALL_STATE(7945)] = 245262, - [SMALL_STATE(7946)] = 245272, - [SMALL_STATE(7947)] = 245282, - [SMALL_STATE(7948)] = 245292, - [SMALL_STATE(7949)] = 245302, - [SMALL_STATE(7950)] = 245312, - [SMALL_STATE(7951)] = 245322, - [SMALL_STATE(7952)] = 245332, - [SMALL_STATE(7953)] = 245342, - [SMALL_STATE(7954)] = 245352, - [SMALL_STATE(7955)] = 245362, - [SMALL_STATE(7956)] = 245372, - [SMALL_STATE(7957)] = 245382, - [SMALL_STATE(7958)] = 245392, - [SMALL_STATE(7959)] = 245402, - [SMALL_STATE(7960)] = 245412, - [SMALL_STATE(7961)] = 245422, - [SMALL_STATE(7962)] = 245432, - [SMALL_STATE(7963)] = 245442, - [SMALL_STATE(7964)] = 245452, - [SMALL_STATE(7965)] = 245462, - [SMALL_STATE(7966)] = 245472, - [SMALL_STATE(7967)] = 245482, - [SMALL_STATE(7968)] = 245492, - [SMALL_STATE(7969)] = 245502, - [SMALL_STATE(7970)] = 245512, - [SMALL_STATE(7971)] = 245522, - [SMALL_STATE(7972)] = 245532, - [SMALL_STATE(7973)] = 245542, - [SMALL_STATE(7974)] = 245552, - [SMALL_STATE(7975)] = 245562, - [SMALL_STATE(7976)] = 245572, - [SMALL_STATE(7977)] = 245582, - [SMALL_STATE(7978)] = 245592, - [SMALL_STATE(7979)] = 245602, - [SMALL_STATE(7980)] = 245612, - [SMALL_STATE(7981)] = 245622, - [SMALL_STATE(7982)] = 245632, - [SMALL_STATE(7983)] = 245642, - [SMALL_STATE(7984)] = 245652, - [SMALL_STATE(7985)] = 245662, - [SMALL_STATE(7986)] = 245672, - [SMALL_STATE(7987)] = 245682, - [SMALL_STATE(7988)] = 245692, - [SMALL_STATE(7989)] = 245702, - [SMALL_STATE(7990)] = 245712, - [SMALL_STATE(7991)] = 245722, - [SMALL_STATE(7992)] = 245732, - [SMALL_STATE(7993)] = 245742, - [SMALL_STATE(7994)] = 245752, - [SMALL_STATE(7995)] = 245762, - [SMALL_STATE(7996)] = 245772, - [SMALL_STATE(7997)] = 245782, - [SMALL_STATE(7998)] = 245792, - [SMALL_STATE(7999)] = 245802, - [SMALL_STATE(8000)] = 245812, - [SMALL_STATE(8001)] = 245822, - [SMALL_STATE(8002)] = 245832, - [SMALL_STATE(8003)] = 245842, - [SMALL_STATE(8004)] = 245852, - [SMALL_STATE(8005)] = 245862, - [SMALL_STATE(8006)] = 245872, - [SMALL_STATE(8007)] = 245882, - [SMALL_STATE(8008)] = 245892, - [SMALL_STATE(8009)] = 245902, - [SMALL_STATE(8010)] = 245912, - [SMALL_STATE(8011)] = 245922, - [SMALL_STATE(8012)] = 245932, - [SMALL_STATE(8013)] = 245942, - [SMALL_STATE(8014)] = 245952, - [SMALL_STATE(8015)] = 245962, - [SMALL_STATE(8016)] = 245972, - [SMALL_STATE(8017)] = 245982, - [SMALL_STATE(8018)] = 245992, - [SMALL_STATE(8019)] = 246002, - [SMALL_STATE(8020)] = 246012, - [SMALL_STATE(8021)] = 246022, - [SMALL_STATE(8022)] = 246032, - [SMALL_STATE(8023)] = 246042, - [SMALL_STATE(8024)] = 246052, - [SMALL_STATE(8025)] = 246062, - [SMALL_STATE(8026)] = 246072, - [SMALL_STATE(8027)] = 246082, - [SMALL_STATE(8028)] = 246092, - [SMALL_STATE(8029)] = 246102, - [SMALL_STATE(8030)] = 246112, - [SMALL_STATE(8031)] = 246122, - [SMALL_STATE(8032)] = 246132, - [SMALL_STATE(8033)] = 246142, - [SMALL_STATE(8034)] = 246152, - [SMALL_STATE(8035)] = 246162, - [SMALL_STATE(8036)] = 246172, - [SMALL_STATE(8037)] = 246182, - [SMALL_STATE(8038)] = 246192, - [SMALL_STATE(8039)] = 246202, - [SMALL_STATE(8040)] = 246212, - [SMALL_STATE(8041)] = 246222, + [SMALL_STATE(1678)] = 0, + [SMALL_STATE(1679)] = 73, + [SMALL_STATE(1680)] = 146, + [SMALL_STATE(1681)] = 219, + [SMALL_STATE(1682)] = 296, + [SMALL_STATE(1683)] = 369, + [SMALL_STATE(1684)] = 442, + [SMALL_STATE(1685)] = 517, + [SMALL_STATE(1686)] = 622, + [SMALL_STATE(1687)] = 695, + [SMALL_STATE(1688)] = 772, + [SMALL_STATE(1689)] = 845, + [SMALL_STATE(1690)] = 918, + [SMALL_STATE(1691)] = 993, + [SMALL_STATE(1692)] = 1070, + [SMALL_STATE(1693)] = 1143, + [SMALL_STATE(1694)] = 1226, + [SMALL_STATE(1695)] = 1303, + [SMALL_STATE(1696)] = 1378, + [SMALL_STATE(1697)] = 1455, + [SMALL_STATE(1698)] = 1562, + [SMALL_STATE(1699)] = 1637, + [SMALL_STATE(1700)] = 1710, + [SMALL_STATE(1701)] = 1785, + [SMALL_STATE(1702)] = 1892, + [SMALL_STATE(1703)] = 1965, + [SMALL_STATE(1704)] = 2042, + [SMALL_STATE(1705)] = 2115, + [SMALL_STATE(1706)] = 2188, + [SMALL_STATE(1707)] = 2261, + [SMALL_STATE(1708)] = 2338, + [SMALL_STATE(1709)] = 2413, + [SMALL_STATE(1710)] = 2486, + [SMALL_STATE(1711)] = 2561, + [SMALL_STATE(1712)] = 2636, + [SMALL_STATE(1713)] = 2711, + [SMALL_STATE(1714)] = 2786, + [SMALL_STATE(1715)] = 2893, + [SMALL_STATE(1716)] = 2966, + [SMALL_STATE(1717)] = 3039, + [SMALL_STATE(1718)] = 3116, + [SMALL_STATE(1719)] = 3193, + [SMALL_STATE(1720)] = 3268, + [SMALL_STATE(1721)] = 3341, + [SMALL_STATE(1722)] = 3414, + [SMALL_STATE(1723)] = 3487, + [SMALL_STATE(1724)] = 3562, + [SMALL_STATE(1725)] = 3637, + [SMALL_STATE(1726)] = 3714, + [SMALL_STATE(1727)] = 3787, + [SMALL_STATE(1728)] = 3860, + [SMALL_STATE(1729)] = 3937, + [SMALL_STATE(1730)] = 4042, + [SMALL_STATE(1731)] = 4115, + [SMALL_STATE(1732)] = 4188, + [SMALL_STATE(1733)] = 4265, + [SMALL_STATE(1734)] = 4342, + [SMALL_STATE(1735)] = 4415, + [SMALL_STATE(1736)] = 4492, + [SMALL_STATE(1737)] = 4565, + [SMALL_STATE(1738)] = 4638, + [SMALL_STATE(1739)] = 4711, + [SMALL_STATE(1740)] = 4788, + [SMALL_STATE(1741)] = 4861, + [SMALL_STATE(1742)] = 4938, + [SMALL_STATE(1743)] = 5021, + [SMALL_STATE(1744)] = 5094, + [SMALL_STATE(1745)] = 5167, + [SMALL_STATE(1746)] = 5240, + [SMALL_STATE(1747)] = 5345, + [SMALL_STATE(1748)] = 5418, + [SMALL_STATE(1749)] = 5491, + [SMALL_STATE(1750)] = 5564, + [SMALL_STATE(1751)] = 5637, + [SMALL_STATE(1752)] = 5718, + [SMALL_STATE(1753)] = 5799, + [SMALL_STATE(1754)] = 5880, + [SMALL_STATE(1755)] = 5961, + [SMALL_STATE(1756)] = 6042, + [SMALL_STATE(1757)] = 6123, + [SMALL_STATE(1758)] = 6204, + [SMALL_STATE(1759)] = 6285, + [SMALL_STATE(1760)] = 6366, + [SMALL_STATE(1761)] = 6447, + [SMALL_STATE(1762)] = 6528, + [SMALL_STATE(1763)] = 6609, + [SMALL_STATE(1764)] = 6690, + [SMALL_STATE(1765)] = 6771, + [SMALL_STATE(1766)] = 6852, + [SMALL_STATE(1767)] = 6933, + [SMALL_STATE(1768)] = 7014, + [SMALL_STATE(1769)] = 7095, + [SMALL_STATE(1770)] = 7176, + [SMALL_STATE(1771)] = 7257, + [SMALL_STATE(1772)] = 7338, + [SMALL_STATE(1773)] = 7411, + [SMALL_STATE(1774)] = 7484, + [SMALL_STATE(1775)] = 7561, + [SMALL_STATE(1776)] = 7634, + [SMALL_STATE(1777)] = 7711, + [SMALL_STATE(1778)] = 7784, + [SMALL_STATE(1779)] = 7857, + [SMALL_STATE(1780)] = 7930, + [SMALL_STATE(1781)] = 8003, + [SMALL_STATE(1782)] = 8076, + [SMALL_STATE(1783)] = 8149, + [SMALL_STATE(1784)] = 8222, + [SMALL_STATE(1785)] = 8295, + [SMALL_STATE(1786)] = 8368, + [SMALL_STATE(1787)] = 8441, + [SMALL_STATE(1788)] = 8514, + [SMALL_STATE(1789)] = 8587, + [SMALL_STATE(1790)] = 8660, + [SMALL_STATE(1791)] = 8733, + [SMALL_STATE(1792)] = 8806, + [SMALL_STATE(1793)] = 8879, + [SMALL_STATE(1794)] = 8952, + [SMALL_STATE(1795)] = 9025, + [SMALL_STATE(1796)] = 9098, + [SMALL_STATE(1797)] = 9171, + [SMALL_STATE(1798)] = 9244, + [SMALL_STATE(1799)] = 9317, + [SMALL_STATE(1800)] = 9390, + [SMALL_STATE(1801)] = 9463, + [SMALL_STATE(1802)] = 9536, + [SMALL_STATE(1803)] = 9609, + [SMALL_STATE(1804)] = 9682, + [SMALL_STATE(1805)] = 9757, + [SMALL_STATE(1806)] = 9830, + [SMALL_STATE(1807)] = 9903, + [SMALL_STATE(1808)] = 9980, + [SMALL_STATE(1809)] = 10053, + [SMALL_STATE(1810)] = 10130, + [SMALL_STATE(1811)] = 10203, + [SMALL_STATE(1812)] = 10276, + [SMALL_STATE(1813)] = 10349, + [SMALL_STATE(1814)] = 10430, + [SMALL_STATE(1815)] = 10502, + [SMALL_STATE(1816)] = 10582, + [SMALL_STATE(1817)] = 10688, + [SMALL_STATE(1818)] = 10832, + [SMALL_STATE(1819)] = 10906, + [SMALL_STATE(1820)] = 10978, + [SMALL_STATE(1821)] = 11084, + [SMALL_STATE(1822)] = 11156, + [SMALL_STATE(1823)] = 11236, + [SMALL_STATE(1824)] = 11316, + [SMALL_STATE(1825)] = 11388, + [SMALL_STATE(1826)] = 11462, + [SMALL_STATE(1827)] = 11534, + [SMALL_STATE(1828)] = 11606, + [SMALL_STATE(1829)] = 11712, + [SMALL_STATE(1830)] = 11792, + [SMALL_STATE(1831)] = 11936, + [SMALL_STATE(1832)] = 12008, + [SMALL_STATE(1833)] = 12080, + [SMALL_STATE(1834)] = 12152, + [SMALL_STATE(1835)] = 12224, + [SMALL_STATE(1836)] = 12304, + [SMALL_STATE(1837)] = 12378, + [SMALL_STATE(1838)] = 12458, + [SMALL_STATE(1839)] = 12532, + [SMALL_STATE(1840)] = 12606, + [SMALL_STATE(1841)] = 12678, + [SMALL_STATE(1842)] = 12750, + [SMALL_STATE(1843)] = 12822, + [SMALL_STATE(1844)] = 12894, + [SMALL_STATE(1845)] = 12966, + [SMALL_STATE(1846)] = 13038, + [SMALL_STATE(1847)] = 13110, + [SMALL_STATE(1848)] = 13182, + [SMALL_STATE(1849)] = 13254, + [SMALL_STATE(1850)] = 13326, + [SMALL_STATE(1851)] = 13398, + [SMALL_STATE(1852)] = 13470, + [SMALL_STATE(1853)] = 13544, + [SMALL_STATE(1854)] = 13616, + [SMALL_STATE(1855)] = 13688, + [SMALL_STATE(1856)] = 13760, + [SMALL_STATE(1857)] = 13840, + [SMALL_STATE(1858)] = 13912, + [SMALL_STATE(1859)] = 13984, + [SMALL_STATE(1860)] = 14056, + [SMALL_STATE(1861)] = 14128, + [SMALL_STATE(1862)] = 14200, + [SMALL_STATE(1863)] = 14272, + [SMALL_STATE(1864)] = 14344, + [SMALL_STATE(1865)] = 14424, + [SMALL_STATE(1866)] = 14504, + [SMALL_STATE(1867)] = 14584, + [SMALL_STATE(1868)] = 14656, + [SMALL_STATE(1869)] = 14728, + [SMALL_STATE(1870)] = 14800, + [SMALL_STATE(1871)] = 14872, + [SMALL_STATE(1872)] = 14944, + [SMALL_STATE(1873)] = 15024, + [SMALL_STATE(1874)] = 15096, + [SMALL_STATE(1875)] = 15168, + [SMALL_STATE(1876)] = 15248, + [SMALL_STATE(1877)] = 15328, + [SMALL_STATE(1878)] = 15408, + [SMALL_STATE(1879)] = 15482, + [SMALL_STATE(1880)] = 15562, + [SMALL_STATE(1881)] = 15634, + [SMALL_STATE(1882)] = 15714, + [SMALL_STATE(1883)] = 15794, + [SMALL_STATE(1884)] = 15866, + [SMALL_STATE(1885)] = 15938, + [SMALL_STATE(1886)] = 16018, + [SMALL_STATE(1887)] = 16098, + [SMALL_STATE(1888)] = 16170, + [SMALL_STATE(1889)] = 16250, + [SMALL_STATE(1890)] = 16330, + [SMALL_STATE(1891)] = 16410, + [SMALL_STATE(1892)] = 16482, + [SMALL_STATE(1893)] = 16554, + [SMALL_STATE(1894)] = 16634, + [SMALL_STATE(1895)] = 16714, + [SMALL_STATE(1896)] = 16794, + [SMALL_STATE(1897)] = 16866, + [SMALL_STATE(1898)] = 16938, + [SMALL_STATE(1899)] = 17018, + [SMALL_STATE(1900)] = 17090, + [SMALL_STATE(1901)] = 17162, + [SMALL_STATE(1902)] = 17242, + [SMALL_STATE(1903)] = 17314, + [SMALL_STATE(1904)] = 17386, + [SMALL_STATE(1905)] = 17458, + [SMALL_STATE(1906)] = 17530, + [SMALL_STATE(1907)] = 17602, + [SMALL_STATE(1908)] = 17674, + [SMALL_STATE(1909)] = 17746, + [SMALL_STATE(1910)] = 17818, + [SMALL_STATE(1911)] = 17890, + [SMALL_STATE(1912)] = 17964, + [SMALL_STATE(1913)] = 18036, + [SMALL_STATE(1914)] = 18108, + [SMALL_STATE(1915)] = 18180, + [SMALL_STATE(1916)] = 18252, + [SMALL_STATE(1917)] = 18324, + [SMALL_STATE(1918)] = 18396, + [SMALL_STATE(1919)] = 18470, + [SMALL_STATE(1920)] = 18614, + [SMALL_STATE(1921)] = 18758, + [SMALL_STATE(1922)] = 18902, + [SMALL_STATE(1923)] = 19046, + [SMALL_STATE(1924)] = 19118, + [SMALL_STATE(1925)] = 19190, + [SMALL_STATE(1926)] = 19262, + [SMALL_STATE(1927)] = 19334, + [SMALL_STATE(1928)] = 19406, + [SMALL_STATE(1929)] = 19478, + [SMALL_STATE(1930)] = 19550, + [SMALL_STATE(1931)] = 19622, + [SMALL_STATE(1932)] = 19694, + [SMALL_STATE(1933)] = 19766, + [SMALL_STATE(1934)] = 19844, + [SMALL_STATE(1935)] = 19920, + [SMALL_STATE(1936)] = 19992, + [SMALL_STATE(1937)] = 20064, + [SMALL_STATE(1938)] = 20136, + [SMALL_STATE(1939)] = 20208, + [SMALL_STATE(1940)] = 20280, + [SMALL_STATE(1941)] = 20352, + [SMALL_STATE(1942)] = 20424, + [SMALL_STATE(1943)] = 20496, + [SMALL_STATE(1944)] = 20568, + [SMALL_STATE(1945)] = 20640, + [SMALL_STATE(1946)] = 20712, + [SMALL_STATE(1947)] = 20784, + [SMALL_STATE(1948)] = 20856, + [SMALL_STATE(1949)] = 20928, + [SMALL_STATE(1950)] = 21072, + [SMALL_STATE(1951)] = 21146, + [SMALL_STATE(1952)] = 21218, + [SMALL_STATE(1953)] = 21362, + [SMALL_STATE(1954)] = 21436, + [SMALL_STATE(1955)] = 21508, + [SMALL_STATE(1956)] = 21579, + [SMALL_STATE(1957)] = 21650, + [SMALL_STATE(1958)] = 21721, + [SMALL_STATE(1959)] = 21798, + [SMALL_STATE(1960)] = 21877, + [SMALL_STATE(1961)] = 21948, + [SMALL_STATE(1962)] = 22019, + [SMALL_STATE(1963)] = 22096, + [SMALL_STATE(1964)] = 22173, + [SMALL_STATE(1965)] = 22250, + [SMALL_STATE(1966)] = 22321, + [SMALL_STATE(1967)] = 22400, + [SMALL_STATE(1968)] = 22471, + [SMALL_STATE(1969)] = 22550, + [SMALL_STATE(1970)] = 22621, + [SMALL_STATE(1971)] = 22692, + [SMALL_STATE(1972)] = 22769, + [SMALL_STATE(1973)] = 22848, + [SMALL_STATE(1974)] = 22919, + [SMALL_STATE(1975)] = 22996, + [SMALL_STATE(1976)] = 23067, + [SMALL_STATE(1977)] = 23144, + [SMALL_STATE(1978)] = 23221, + [SMALL_STATE(1979)] = 23298, + [SMALL_STATE(1980)] = 23369, + [SMALL_STATE(1981)] = 23446, + [SMALL_STATE(1982)] = 23517, + [SMALL_STATE(1983)] = 23588, + [SMALL_STATE(1984)] = 23659, + [SMALL_STATE(1985)] = 23730, + [SMALL_STATE(1986)] = 23807, + [SMALL_STATE(1987)] = 23878, + [SMALL_STATE(1988)] = 23955, + [SMALL_STATE(1989)] = 24026, + [SMALL_STATE(1990)] = 24099, + [SMALL_STATE(1991)] = 24170, + [SMALL_STATE(1992)] = 24241, + [SMALL_STATE(1993)] = 24318, + [SMALL_STATE(1994)] = 24389, + [SMALL_STATE(1995)] = 24468, + [SMALL_STATE(1996)] = 24545, + [SMALL_STATE(1997)] = 24616, + [SMALL_STATE(1998)] = 24687, + [SMALL_STATE(1999)] = 24766, + [SMALL_STATE(2000)] = 24843, + [SMALL_STATE(2001)] = 24922, + [SMALL_STATE(2002)] = 24993, + [SMALL_STATE(2003)] = 25064, + [SMALL_STATE(2004)] = 25135, + [SMALL_STATE(2005)] = 25212, + [SMALL_STATE(2006)] = 25287, + [SMALL_STATE(2007)] = 25364, + [SMALL_STATE(2008)] = 25435, + [SMALL_STATE(2009)] = 25512, + [SMALL_STATE(2010)] = 25589, + [SMALL_STATE(2011)] = 25660, + [SMALL_STATE(2012)] = 25731, + [SMALL_STATE(2013)] = 25802, + [SMALL_STATE(2014)] = 25879, + [SMALL_STATE(2015)] = 25950, + [SMALL_STATE(2016)] = 26027, + [SMALL_STATE(2017)] = 26104, + [SMALL_STATE(2018)] = 26175, + [SMALL_STATE(2019)] = 26246, + [SMALL_STATE(2020)] = 26323, + [SMALL_STATE(2021)] = 26394, + [SMALL_STATE(2022)] = 26465, + [SMALL_STATE(2023)] = 26542, + [SMALL_STATE(2024)] = 26613, + [SMALL_STATE(2025)] = 26684, + [SMALL_STATE(2026)] = 26755, + [SMALL_STATE(2027)] = 26834, + [SMALL_STATE(2028)] = 26905, + [SMALL_STATE(2029)] = 26976, + [SMALL_STATE(2030)] = 27055, + [SMALL_STATE(2031)] = 27134, + [SMALL_STATE(2032)] = 27211, + [SMALL_STATE(2033)] = 27282, + [SMALL_STATE(2034)] = 27359, + [SMALL_STATE(2035)] = 27430, + [SMALL_STATE(2036)] = 27507, + [SMALL_STATE(2037)] = 27578, + [SMALL_STATE(2038)] = 27649, + [SMALL_STATE(2039)] = 27726, + [SMALL_STATE(2040)] = 27797, + [SMALL_STATE(2041)] = 27868, + [SMALL_STATE(2042)] = 27939, + [SMALL_STATE(2043)] = 28010, + [SMALL_STATE(2044)] = 28081, + [SMALL_STATE(2045)] = 28152, + [SMALL_STATE(2046)] = 28229, + [SMALL_STATE(2047)] = 28306, + [SMALL_STATE(2048)] = 28377, + [SMALL_STATE(2049)] = 28448, + [SMALL_STATE(2050)] = 28527, + [SMALL_STATE(2051)] = 28604, + [SMALL_STATE(2052)] = 28681, + [SMALL_STATE(2053)] = 28758, + [SMALL_STATE(2054)] = 28829, + [SMALL_STATE(2055)] = 28906, + [SMALL_STATE(2056)] = 28977, + [SMALL_STATE(2057)] = 29056, + [SMALL_STATE(2058)] = 29127, + [SMALL_STATE(2059)] = 29204, + [SMALL_STATE(2060)] = 29281, + [SMALL_STATE(2061)] = 29352, + [SMALL_STATE(2062)] = 29423, + [SMALL_STATE(2063)] = 29494, + [SMALL_STATE(2064)] = 29571, + [SMALL_STATE(2065)] = 29642, + [SMALL_STATE(2066)] = 29713, + [SMALL_STATE(2067)] = 29790, + [SMALL_STATE(2068)] = 29861, + [SMALL_STATE(2069)] = 29938, + [SMALL_STATE(2070)] = 30009, + [SMALL_STATE(2071)] = 30088, + [SMALL_STATE(2072)] = 30159, + [SMALL_STATE(2073)] = 30236, + [SMALL_STATE(2074)] = 30307, + [SMALL_STATE(2075)] = 30378, + [SMALL_STATE(2076)] = 30449, + [SMALL_STATE(2077)] = 30526, + [SMALL_STATE(2078)] = 30597, + [SMALL_STATE(2079)] = 30668, + [SMALL_STATE(2080)] = 30739, + [SMALL_STATE(2081)] = 30810, + [SMALL_STATE(2082)] = 30887, + [SMALL_STATE(2083)] = 30964, + [SMALL_STATE(2084)] = 31035, + [SMALL_STATE(2085)] = 31106, + [SMALL_STATE(2086)] = 31177, + [SMALL_STATE(2087)] = 31248, + [SMALL_STATE(2088)] = 31319, + [SMALL_STATE(2089)] = 31390, + [SMALL_STATE(2090)] = 31461, + [SMALL_STATE(2091)] = 31532, + [SMALL_STATE(2092)] = 31611, + [SMALL_STATE(2093)] = 31688, + [SMALL_STATE(2094)] = 31767, + [SMALL_STATE(2095)] = 31838, + [SMALL_STATE(2096)] = 31915, + [SMALL_STATE(2097)] = 31994, + [SMALL_STATE(2098)] = 32073, + [SMALL_STATE(2099)] = 32150, + [SMALL_STATE(2100)] = 32225, + [SMALL_STATE(2101)] = 32304, + [SMALL_STATE(2102)] = 32375, + [SMALL_STATE(2103)] = 32446, + [SMALL_STATE(2104)] = 32525, + [SMALL_STATE(2105)] = 32596, + [SMALL_STATE(2106)] = 32673, + [SMALL_STATE(2107)] = 32752, + [SMALL_STATE(2108)] = 32829, + [SMALL_STATE(2109)] = 32906, + [SMALL_STATE(2110)] = 32983, + [SMALL_STATE(2111)] = 33060, + [SMALL_STATE(2112)] = 33131, + [SMALL_STATE(2113)] = 33202, + [SMALL_STATE(2114)] = 33281, + [SMALL_STATE(2115)] = 33352, + [SMALL_STATE(2116)] = 33423, + [SMALL_STATE(2117)] = 33502, + [SMALL_STATE(2118)] = 33581, + [SMALL_STATE(2119)] = 33652, + [SMALL_STATE(2120)] = 33729, + [SMALL_STATE(2121)] = 33806, + [SMALL_STATE(2122)] = 33885, + [SMALL_STATE(2123)] = 33962, + [SMALL_STATE(2124)] = 34041, + [SMALL_STATE(2125)] = 34111, + [SMALL_STATE(2126)] = 34181, + [SMALL_STATE(2127)] = 34251, + [SMALL_STATE(2128)] = 34321, + [SMALL_STATE(2129)] = 34391, + [SMALL_STATE(2130)] = 34461, + [SMALL_STATE(2131)] = 34531, + [SMALL_STATE(2132)] = 34601, + [SMALL_STATE(2133)] = 34671, + [SMALL_STATE(2134)] = 34741, + [SMALL_STATE(2135)] = 34811, + [SMALL_STATE(2136)] = 34881, + [SMALL_STATE(2137)] = 34951, + [SMALL_STATE(2138)] = 35021, + [SMALL_STATE(2139)] = 35091, + [SMALL_STATE(2140)] = 35165, + [SMALL_STATE(2141)] = 35237, + [SMALL_STATE(2142)] = 35309, + [SMALL_STATE(2143)] = 35379, + [SMALL_STATE(2144)] = 35453, + [SMALL_STATE(2145)] = 35523, + [SMALL_STATE(2146)] = 35593, + [SMALL_STATE(2147)] = 35663, + [SMALL_STATE(2148)] = 35733, + [SMALL_STATE(2149)] = 35803, + [SMALL_STATE(2150)] = 35877, + [SMALL_STATE(2151)] = 35947, + [SMALL_STATE(2152)] = 36019, + [SMALL_STATE(2153)] = 36089, + [SMALL_STATE(2154)] = 36163, + [SMALL_STATE(2155)] = 36241, + [SMALL_STATE(2156)] = 36311, + [SMALL_STATE(2157)] = 36381, + [SMALL_STATE(2158)] = 36453, + [SMALL_STATE(2159)] = 36523, + [SMALL_STATE(2160)] = 36599, + [SMALL_STATE(2161)] = 36677, + [SMALL_STATE(2162)] = 36751, + [SMALL_STATE(2163)] = 36825, + [SMALL_STATE(2164)] = 36965, + [SMALL_STATE(2165)] = 37035, + [SMALL_STATE(2166)] = 37109, + [SMALL_STATE(2167)] = 37179, + [SMALL_STATE(2168)] = 37249, + [SMALL_STATE(2169)] = 37319, + [SMALL_STATE(2170)] = 37389, + [SMALL_STATE(2171)] = 37459, + [SMALL_STATE(2172)] = 37529, + [SMALL_STATE(2173)] = 37599, + [SMALL_STATE(2174)] = 37669, + [SMALL_STATE(2175)] = 37809, + [SMALL_STATE(2176)] = 37883, + [SMALL_STATE(2177)] = 37961, + [SMALL_STATE(2178)] = 38035, + [SMALL_STATE(2179)] = 38109, + [SMALL_STATE(2180)] = 38179, + [SMALL_STATE(2181)] = 38250, + [SMALL_STATE(2182)] = 38321, + [SMALL_STATE(2183)] = 38392, + [SMALL_STATE(2184)] = 38463, + [SMALL_STATE(2185)] = 38534, + [SMALL_STATE(2186)] = 38605, + [SMALL_STATE(2187)] = 38676, + [SMALL_STATE(2188)] = 38747, + [SMALL_STATE(2189)] = 38818, + [SMALL_STATE(2190)] = 38889, + [SMALL_STATE(2191)] = 39026, + [SMALL_STATE(2192)] = 39163, + [SMALL_STATE(2193)] = 39234, + [SMALL_STATE(2194)] = 39307, + [SMALL_STATE(2195)] = 39380, + [SMALL_STATE(2196)] = 39453, + [SMALL_STATE(2197)] = 39526, + [SMALL_STATE(2198)] = 39595, + [SMALL_STATE(2199)] = 39664, + [SMALL_STATE(2200)] = 39733, + [SMALL_STATE(2201)] = 39804, + [SMALL_STATE(2202)] = 39875, + [SMALL_STATE(2203)] = 39946, + [SMALL_STATE(2204)] = 40015, + [SMALL_STATE(2205)] = 40086, + [SMALL_STATE(2206)] = 40157, + [SMALL_STATE(2207)] = 40228, + [SMALL_STATE(2208)] = 40299, + [SMALL_STATE(2209)] = 40370, + [SMALL_STATE(2210)] = 40441, + [SMALL_STATE(2211)] = 40512, + [SMALL_STATE(2212)] = 40583, + [SMALL_STATE(2213)] = 40654, + [SMALL_STATE(2214)] = 40725, + [SMALL_STATE(2215)] = 40796, + [SMALL_STATE(2216)] = 40867, + [SMALL_STATE(2217)] = 40938, + [SMALL_STATE(2218)] = 41009, + [SMALL_STATE(2219)] = 41080, + [SMALL_STATE(2220)] = 41151, + [SMALL_STATE(2221)] = 41222, + [SMALL_STATE(2222)] = 41293, + [SMALL_STATE(2223)] = 41364, + [SMALL_STATE(2224)] = 41435, + [SMALL_STATE(2225)] = 41506, + [SMALL_STATE(2226)] = 41577, + [SMALL_STATE(2227)] = 41648, + [SMALL_STATE(2228)] = 41719, + [SMALL_STATE(2229)] = 41792, + [SMALL_STATE(2230)] = 41863, + [SMALL_STATE(2231)] = 41934, + [SMALL_STATE(2232)] = 42005, + [SMALL_STATE(2233)] = 42076, + [SMALL_STATE(2234)] = 42147, + [SMALL_STATE(2235)] = 42218, + [SMALL_STATE(2236)] = 42291, + [SMALL_STATE(2237)] = 42362, + [SMALL_STATE(2238)] = 42433, + [SMALL_STATE(2239)] = 42504, + [SMALL_STATE(2240)] = 42575, + [SMALL_STATE(2241)] = 42646, + [SMALL_STATE(2242)] = 42717, + [SMALL_STATE(2243)] = 42790, + [SMALL_STATE(2244)] = 42861, + [SMALL_STATE(2245)] = 42932, + [SMALL_STATE(2246)] = 43003, + [SMALL_STATE(2247)] = 43076, + [SMALL_STATE(2248)] = 43149, + [SMALL_STATE(2249)] = 43222, + [SMALL_STATE(2250)] = 43359, + [SMALL_STATE(2251)] = 43496, + [SMALL_STATE(2252)] = 43569, + [SMALL_STATE(2253)] = 43642, + [SMALL_STATE(2254)] = 43715, + [SMALL_STATE(2255)] = 43788, + [SMALL_STATE(2256)] = 43861, + [SMALL_STATE(2257)] = 43930, + [SMALL_STATE(2258)] = 44003, + [SMALL_STATE(2259)] = 44076, + [SMALL_STATE(2260)] = 44147, + [SMALL_STATE(2261)] = 44218, + [SMALL_STATE(2262)] = 44289, + [SMALL_STATE(2263)] = 44360, + [SMALL_STATE(2264)] = 44431, + [SMALL_STATE(2265)] = 44502, + [SMALL_STATE(2266)] = 44573, + [SMALL_STATE(2267)] = 44644, + [SMALL_STATE(2268)] = 44715, + [SMALL_STATE(2269)] = 44786, + [SMALL_STATE(2270)] = 44857, + [SMALL_STATE(2271)] = 44928, + [SMALL_STATE(2272)] = 44999, + [SMALL_STATE(2273)] = 45070, + [SMALL_STATE(2274)] = 45143, + [SMALL_STATE(2275)] = 45216, + [SMALL_STATE(2276)] = 45291, + [SMALL_STATE(2277)] = 45364, + [SMALL_STATE(2278)] = 45433, + [SMALL_STATE(2279)] = 45502, + [SMALL_STATE(2280)] = 45571, + [SMALL_STATE(2281)] = 45640, + [SMALL_STATE(2282)] = 45717, + [SMALL_STATE(2283)] = 45788, + [SMALL_STATE(2284)] = 45859, + [SMALL_STATE(2285)] = 45930, + [SMALL_STATE(2286)] = 46001, + [SMALL_STATE(2287)] = 46072, + [SMALL_STATE(2288)] = 46143, + [SMALL_STATE(2289)] = 46214, + [SMALL_STATE(2290)] = 46285, + [SMALL_STATE(2291)] = 46356, + [SMALL_STATE(2292)] = 46427, + [SMALL_STATE(2293)] = 46498, + [SMALL_STATE(2294)] = 46569, + [SMALL_STATE(2295)] = 46640, + [SMALL_STATE(2296)] = 46711, + [SMALL_STATE(2297)] = 46812, + [SMALL_STATE(2298)] = 46881, + [SMALL_STATE(2299)] = 46952, + [SMALL_STATE(2300)] = 47029, + [SMALL_STATE(2301)] = 47130, + [SMALL_STATE(2302)] = 47201, + [SMALL_STATE(2303)] = 47272, + [SMALL_STATE(2304)] = 47343, + [SMALL_STATE(2305)] = 47414, + [SMALL_STATE(2306)] = 47487, + [SMALL_STATE(2307)] = 47560, + [SMALL_STATE(2308)] = 47633, + [SMALL_STATE(2309)] = 47706, + [SMALL_STATE(2310)] = 47775, + [SMALL_STATE(2311)] = 47844, + [SMALL_STATE(2312)] = 47945, + [SMALL_STATE(2313)] = 48016, + [SMALL_STATE(2314)] = 48087, + [SMALL_STATE(2315)] = 48158, + [SMALL_STATE(2316)] = 48229, + [SMALL_STATE(2317)] = 48300, + [SMALL_STATE(2318)] = 48371, + [SMALL_STATE(2319)] = 48442, + [SMALL_STATE(2320)] = 48513, + [SMALL_STATE(2321)] = 48584, + [SMALL_STATE(2322)] = 48655, + [SMALL_STATE(2323)] = 48792, + [SMALL_STATE(2324)] = 48863, + [SMALL_STATE(2325)] = 48934, + [SMALL_STATE(2326)] = 49005, + [SMALL_STATE(2327)] = 49076, + [SMALL_STATE(2328)] = 49213, + [SMALL_STATE(2329)] = 49284, + [SMALL_STATE(2330)] = 49355, + [SMALL_STATE(2331)] = 49456, + [SMALL_STATE(2332)] = 49593, + [SMALL_STATE(2333)] = 49730, + [SMALL_STATE(2334)] = 49801, + [SMALL_STATE(2335)] = 49872, + [SMALL_STATE(2336)] = 49943, + [SMALL_STATE(2337)] = 50014, + [SMALL_STATE(2338)] = 50087, + [SMALL_STATE(2339)] = 50160, + [SMALL_STATE(2340)] = 50231, + [SMALL_STATE(2341)] = 50302, + [SMALL_STATE(2342)] = 50373, + [SMALL_STATE(2343)] = 50444, + [SMALL_STATE(2344)] = 50515, + [SMALL_STATE(2345)] = 50586, + [SMALL_STATE(2346)] = 50657, + [SMALL_STATE(2347)] = 50730, + [SMALL_STATE(2348)] = 50803, + [SMALL_STATE(2349)] = 50874, + [SMALL_STATE(2350)] = 50945, + [SMALL_STATE(2351)] = 51016, + [SMALL_STATE(2352)] = 51087, + [SMALL_STATE(2353)] = 51158, + [SMALL_STATE(2354)] = 51229, + [SMALL_STATE(2355)] = 51300, + [SMALL_STATE(2356)] = 51370, + [SMALL_STATE(2357)] = 51464, + [SMALL_STATE(2358)] = 51534, + [SMALL_STATE(2359)] = 51614, + [SMALL_STATE(2360)] = 51692, + [SMALL_STATE(2361)] = 51764, + [SMALL_STATE(2362)] = 51838, + [SMALL_STATE(2363)] = 51914, + [SMALL_STATE(2364)] = 51996, + [SMALL_STATE(2365)] = 52080, + [SMALL_STATE(2366)] = 52166, + [SMALL_STATE(2367)] = 52254, + [SMALL_STATE(2368)] = 52326, + [SMALL_STATE(2369)] = 52416, + [SMALL_STATE(2370)] = 52508, + [SMALL_STATE(2371)] = 52582, + [SMALL_STATE(2372)] = 52676, + [SMALL_STATE(2373)] = 52746, + [SMALL_STATE(2374)] = 52826, + [SMALL_STATE(2375)] = 52900, + [SMALL_STATE(2376)] = 52978, + [SMALL_STATE(2377)] = 53054, + [SMALL_STATE(2378)] = 53124, + [SMALL_STATE(2379)] = 53194, + [SMALL_STATE(2380)] = 53270, + [SMALL_STATE(2381)] = 53340, + [SMALL_STATE(2382)] = 53410, + [SMALL_STATE(2383)] = 53480, + [SMALL_STATE(2384)] = 53558, + [SMALL_STATE(2385)] = 53626, + [SMALL_STATE(2386)] = 53724, + [SMALL_STATE(2387)] = 53792, + [SMALL_STATE(2388)] = 53890, + [SMALL_STATE(2389)] = 53960, + [SMALL_STATE(2390)] = 54030, + [SMALL_STATE(2391)] = 54128, + [SMALL_STATE(2392)] = 54210, + [SMALL_STATE(2393)] = 54278, + [SMALL_STATE(2394)] = 54372, + [SMALL_STATE(2395)] = 54456, + [SMALL_STATE(2396)] = 54530, + [SMALL_STATE(2397)] = 54618, + [SMALL_STATE(2398)] = 54694, + [SMALL_STATE(2399)] = 54778, + [SMALL_STATE(2400)] = 54848, + [SMALL_STATE(2401)] = 54926, + [SMALL_STATE(2402)] = 55022, + [SMALL_STATE(2403)] = 55106, + [SMALL_STATE(2404)] = 55192, + [SMALL_STATE(2405)] = 55278, + [SMALL_STATE(2406)] = 55346, + [SMALL_STATE(2407)] = 55416, + [SMALL_STATE(2408)] = 55484, + [SMALL_STATE(2409)] = 55572, + [SMALL_STATE(2410)] = 55640, + [SMALL_STATE(2411)] = 55730, + [SMALL_STATE(2412)] = 55816, + [SMALL_STATE(2413)] = 55908, + [SMALL_STATE(2414)] = 55978, + [SMALL_STATE(2415)] = 56048, + [SMALL_STATE(2416)] = 56142, + [SMALL_STATE(2417)] = 56230, + [SMALL_STATE(2418)] = 56300, + [SMALL_STATE(2419)] = 56396, + [SMALL_STATE(2420)] = 56478, + [SMALL_STATE(2421)] = 56546, + [SMALL_STATE(2422)] = 56628, + [SMALL_STATE(2423)] = 56708, + [SMALL_STATE(2424)] = 56796, + [SMALL_STATE(2425)] = 56894, + [SMALL_STATE(2426)] = 56966, + [SMALL_STATE(2427)] = 57056, + [SMALL_STATE(2428)] = 57190, + [SMALL_STATE(2429)] = 57280, + [SMALL_STATE(2430)] = 57350, + [SMALL_STATE(2431)] = 57420, + [SMALL_STATE(2432)] = 57488, + [SMALL_STATE(2433)] = 57568, + [SMALL_STATE(2434)] = 57638, + [SMALL_STATE(2435)] = 57708, + [SMALL_STATE(2436)] = 57776, + [SMALL_STATE(2437)] = 57844, + [SMALL_STATE(2438)] = 57912, + [SMALL_STATE(2439)] = 58002, + [SMALL_STATE(2440)] = 58072, + [SMALL_STATE(2441)] = 58144, + [SMALL_STATE(2442)] = 58218, + [SMALL_STATE(2443)] = 58298, + [SMALL_STATE(2444)] = 58380, + [SMALL_STATE(2445)] = 58464, + [SMALL_STATE(2446)] = 58550, + [SMALL_STATE(2447)] = 58638, + [SMALL_STATE(2448)] = 58728, + [SMALL_STATE(2449)] = 58820, + [SMALL_STATE(2450)] = 58898, + [SMALL_STATE(2451)] = 58974, + [SMALL_STATE(2452)] = 59066, + [SMALL_STATE(2453)] = 59164, + [SMALL_STATE(2454)] = 59232, + [SMALL_STATE(2455)] = 59316, + [SMALL_STATE(2456)] = 59408, + [SMALL_STATE(2457)] = 59476, + [SMALL_STATE(2458)] = 59548, + [SMALL_STATE(2459)] = 59640, + [SMALL_STATE(2460)] = 59714, + [SMALL_STATE(2461)] = 59808, + [SMALL_STATE(2462)] = 59942, + [SMALL_STATE(2463)] = 60036, + [SMALL_STATE(2464)] = 60170, + [SMALL_STATE(2465)] = 60304, + [SMALL_STATE(2466)] = 60372, + [SMALL_STATE(2467)] = 60440, + [SMALL_STATE(2468)] = 60510, + [SMALL_STATE(2469)] = 60578, + [SMALL_STATE(2470)] = 60646, + [SMALL_STATE(2471)] = 60732, + [SMALL_STATE(2472)] = 60800, + [SMALL_STATE(2473)] = 60868, + [SMALL_STATE(2474)] = 60964, + [SMALL_STATE(2475)] = 61040, + [SMALL_STATE(2476)] = 61112, + [SMALL_STATE(2477)] = 61192, + [SMALL_STATE(2478)] = 61266, + [SMALL_STATE(2479)] = 61340, + [SMALL_STATE(2480)] = 61422, + [SMALL_STATE(2481)] = 61498, + [SMALL_STATE(2482)] = 61580, + [SMALL_STATE(2483)] = 61656, + [SMALL_STATE(2484)] = 61724, + [SMALL_STATE(2485)] = 61802, + [SMALL_STATE(2486)] = 61880, + [SMALL_STATE(2487)] = 61964, + [SMALL_STATE(2488)] = 62046, + [SMALL_STATE(2489)] = 62126, + [SMALL_STATE(2490)] = 62210, + [SMALL_STATE(2491)] = 62294, + [SMALL_STATE(2492)] = 62428, + [SMALL_STATE(2493)] = 62514, + [SMALL_STATE(2494)] = 62648, + [SMALL_STATE(2495)] = 62734, + [SMALL_STATE(2496)] = 62820, + [SMALL_STATE(2497)] = 62908, + [SMALL_STATE(2498)] = 63042, + [SMALL_STATE(2499)] = 63176, + [SMALL_STATE(2500)] = 63264, + [SMALL_STATE(2501)] = 63334, + [SMALL_STATE(2502)] = 63432, + [SMALL_STATE(2503)] = 63566, + [SMALL_STATE(2504)] = 63656, + [SMALL_STATE(2505)] = 63790, + [SMALL_STATE(2506)] = 63924, + [SMALL_STATE(2507)] = 64058, + [SMALL_STATE(2508)] = 64144, + [SMALL_STATE(2509)] = 64234, + [SMALL_STATE(2510)] = 64320, + [SMALL_STATE(2511)] = 64412, + [SMALL_STATE(2512)] = 64480, + [SMALL_STATE(2513)] = 64548, + [SMALL_STATE(2514)] = 64618, + [SMALL_STATE(2515)] = 64710, + [SMALL_STATE(2516)] = 64804, + [SMALL_STATE(2517)] = 64892, + [SMALL_STATE(2518)] = 64986, + [SMALL_STATE(2519)] = 65082, + [SMALL_STATE(2520)] = 65174, + [SMALL_STATE(2521)] = 65254, + [SMALL_STATE(2522)] = 65322, + [SMALL_STATE(2523)] = 65404, + [SMALL_STATE(2524)] = 65478, + [SMALL_STATE(2525)] = 65568, + [SMALL_STATE(2526)] = 65654, + [SMALL_STATE(2527)] = 65732, + [SMALL_STATE(2528)] = 65812, + [SMALL_STATE(2529)] = 65882, + [SMALL_STATE(2530)] = 65956, + [SMALL_STATE(2531)] = 66054, + [SMALL_STATE(2532)] = 66152, + [SMALL_STATE(2533)] = 66250, + [SMALL_STATE(2534)] = 66348, + [SMALL_STATE(2535)] = 66420, + [SMALL_STATE(2536)] = 66496, + [SMALL_STATE(2537)] = 66574, + [SMALL_STATE(2538)] = 66708, + [SMALL_STATE(2539)] = 66776, + [SMALL_STATE(2540)] = 66843, + [SMALL_STATE(2541)] = 66910, + [SMALL_STATE(2542)] = 66977, + [SMALL_STATE(2543)] = 67068, + [SMALL_STATE(2544)] = 67135, + [SMALL_STATE(2545)] = 67202, + [SMALL_STATE(2546)] = 67269, + [SMALL_STATE(2547)] = 67336, + [SMALL_STATE(2548)] = 67403, + [SMALL_STATE(2549)] = 67470, + [SMALL_STATE(2550)] = 67537, + [SMALL_STATE(2551)] = 67604, + [SMALL_STATE(2552)] = 67671, + [SMALL_STATE(2553)] = 67748, + [SMALL_STATE(2554)] = 67831, + [SMALL_STATE(2555)] = 67898, + [SMALL_STATE(2556)] = 67965, + [SMALL_STATE(2557)] = 68032, + [SMALL_STATE(2558)] = 68099, + [SMALL_STATE(2559)] = 68174, + [SMALL_STATE(2560)] = 68257, + [SMALL_STATE(2561)] = 68324, + [SMALL_STATE(2562)] = 68391, + [SMALL_STATE(2563)] = 68462, + [SMALL_STATE(2564)] = 68529, + [SMALL_STATE(2565)] = 68596, + [SMALL_STATE(2566)] = 68663, + [SMALL_STATE(2567)] = 68730, + [SMALL_STATE(2568)] = 68797, + [SMALL_STATE(2569)] = 68864, + [SMALL_STATE(2570)] = 68931, + [SMALL_STATE(2571)] = 69014, + [SMALL_STATE(2572)] = 69081, + [SMALL_STATE(2573)] = 69148, + [SMALL_STATE(2574)] = 69233, + [SMALL_STATE(2575)] = 69300, + [SMALL_STATE(2576)] = 69367, + [SMALL_STATE(2577)] = 69434, + [SMALL_STATE(2578)] = 69501, + [SMALL_STATE(2579)] = 69568, + [SMALL_STATE(2580)] = 69635, + [SMALL_STATE(2581)] = 69702, + [SMALL_STATE(2582)] = 69769, + [SMALL_STATE(2583)] = 69840, + [SMALL_STATE(2584)] = 69913, + [SMALL_STATE(2585)] = 69984, + [SMALL_STATE(2586)] = 70051, + [SMALL_STATE(2587)] = 70118, + [SMALL_STATE(2588)] = 70185, + [SMALL_STATE(2589)] = 70252, + [SMALL_STATE(2590)] = 70331, + [SMALL_STATE(2591)] = 70398, + [SMALL_STATE(2592)] = 70465, + [SMALL_STATE(2593)] = 70548, + [SMALL_STATE(2594)] = 70617, + [SMALL_STATE(2595)] = 70684, + [SMALL_STATE(2596)] = 70767, + [SMALL_STATE(2597)] = 70834, + [SMALL_STATE(2598)] = 70901, + [SMALL_STATE(2599)] = 70978, + [SMALL_STATE(2600)] = 71045, + [SMALL_STATE(2601)] = 71112, + [SMALL_STATE(2602)] = 71195, + [SMALL_STATE(2603)] = 71262, + [SMALL_STATE(2604)] = 71329, + [SMALL_STATE(2605)] = 71398, + [SMALL_STATE(2606)] = 71485, + [SMALL_STATE(2607)] = 71566, + [SMALL_STATE(2608)] = 71633, + [SMALL_STATE(2609)] = 71700, + [SMALL_STATE(2610)] = 71767, + [SMALL_STATE(2611)] = 71834, + [SMALL_STATE(2612)] = 71921, + [SMALL_STATE(2613)] = 71988, + [SMALL_STATE(2614)] = 72055, + [SMALL_STATE(2615)] = 72122, + [SMALL_STATE(2616)] = 72205, + [SMALL_STATE(2617)] = 72288, + [SMALL_STATE(2618)] = 72355, + [SMALL_STATE(2619)] = 72422, + [SMALL_STATE(2620)] = 72489, + [SMALL_STATE(2621)] = 72556, + [SMALL_STATE(2622)] = 72623, + [SMALL_STATE(2623)] = 72690, + [SMALL_STATE(2624)] = 72759, + [SMALL_STATE(2625)] = 72828, + [SMALL_STATE(2626)] = 72911, + [SMALL_STATE(2627)] = 72978, + [SMALL_STATE(2628)] = 73045, + [SMALL_STATE(2629)] = 73112, + [SMALL_STATE(2630)] = 73201, + [SMALL_STATE(2631)] = 73268, + [SMALL_STATE(2632)] = 73351, + [SMALL_STATE(2633)] = 73443, + [SMALL_STATE(2634)] = 73533, + [SMALL_STATE(2635)] = 73625, + [SMALL_STATE(2636)] = 73709, + [SMALL_STATE(2637)] = 73801, + [SMALL_STATE(2638)] = 73893, + [SMALL_STATE(2639)] = 73977, + [SMALL_STATE(2640)] = 74057, + [SMALL_STATE(2641)] = 74123, + [SMALL_STATE(2642)] = 74203, + [SMALL_STATE(2643)] = 74283, + [SMALL_STATE(2644)] = 74349, + [SMALL_STATE(2645)] = 74415, + [SMALL_STATE(2646)] = 74481, + [SMALL_STATE(2647)] = 74573, + [SMALL_STATE(2648)] = 74665, + [SMALL_STATE(2649)] = 74757, + [SMALL_STATE(2650)] = 74823, + [SMALL_STATE(2651)] = 74889, + [SMALL_STATE(2652)] = 74955, + [SMALL_STATE(2653)] = 75021, + [SMALL_STATE(2654)] = 75087, + [SMALL_STATE(2655)] = 75153, + [SMALL_STATE(2656)] = 75245, + [SMALL_STATE(2657)] = 75337, + [SMALL_STATE(2658)] = 75403, + [SMALL_STATE(2659)] = 75469, + [SMALL_STATE(2660)] = 75561, + [SMALL_STATE(2661)] = 75653, + [SMALL_STATE(2662)] = 75745, + [SMALL_STATE(2663)] = 75811, + [SMALL_STATE(2664)] = 75877, + [SMALL_STATE(2665)] = 75957, + [SMALL_STATE(2666)] = 76041, + [SMALL_STATE(2667)] = 76107, + [SMALL_STATE(2668)] = 76175, + [SMALL_STATE(2669)] = 76255, + [SMALL_STATE(2670)] = 76329, + [SMALL_STATE(2671)] = 76395, + [SMALL_STATE(2672)] = 76463, + [SMALL_STATE(2673)] = 76529, + [SMALL_STATE(2674)] = 76595, + [SMALL_STATE(2675)] = 76668, + [SMALL_STATE(2676)] = 76733, + [SMALL_STATE(2677)] = 76798, + [SMALL_STATE(2678)] = 76887, + [SMALL_STATE(2679)] = 76960, + [SMALL_STATE(2680)] = 77049, + [SMALL_STATE(2681)] = 77138, + [SMALL_STATE(2682)] = 77227, + [SMALL_STATE(2683)] = 77300, + [SMALL_STATE(2684)] = 77389, + [SMALL_STATE(2685)] = 77462, + [SMALL_STATE(2686)] = 77531, + [SMALL_STATE(2687)] = 77620, + [SMALL_STATE(2688)] = 77689, + [SMALL_STATE(2689)] = 77762, + [SMALL_STATE(2690)] = 77851, + [SMALL_STATE(2691)] = 77920, + [SMALL_STATE(2692)] = 77985, + [SMALL_STATE(2693)] = 78058, + [SMALL_STATE(2694)] = 78131, + [SMALL_STATE(2695)] = 78204, + [SMALL_STATE(2696)] = 78277, + [SMALL_STATE(2697)] = 78342, + [SMALL_STATE(2698)] = 78407, + [SMALL_STATE(2699)] = 78472, + [SMALL_STATE(2700)] = 78537, + [SMALL_STATE(2701)] = 78626, + [SMALL_STATE(2702)] = 78695, + [SMALL_STATE(2703)] = 78766, + [SMALL_STATE(2704)] = 78835, + [SMALL_STATE(2705)] = 78924, + [SMALL_STATE(2706)] = 79013, + [SMALL_STATE(2707)] = 79102, + [SMALL_STATE(2708)] = 79191, + [SMALL_STATE(2709)] = 79264, + [SMALL_STATE(2710)] = 79329, + [SMALL_STATE(2711)] = 79402, + [SMALL_STATE(2712)] = 79491, + [SMALL_STATE(2713)] = 79556, + [SMALL_STATE(2714)] = 79629, + [SMALL_STATE(2715)] = 79718, + [SMALL_STATE(2716)] = 79807, + [SMALL_STATE(2717)] = 79872, + [SMALL_STATE(2718)] = 79937, + [SMALL_STATE(2719)] = 80026, + [SMALL_STATE(2720)] = 80099, + [SMALL_STATE(2721)] = 80172, + [SMALL_STATE(2722)] = 80239, + [SMALL_STATE(2723)] = 80328, + [SMALL_STATE(2724)] = 80395, + [SMALL_STATE(2725)] = 80468, + [SMALL_STATE(2726)] = 80541, + [SMALL_STATE(2727)] = 80630, + [SMALL_STATE(2728)] = 80703, + [SMALL_STATE(2729)] = 80776, + [SMALL_STATE(2730)] = 80849, + [SMALL_STATE(2731)] = 80938, + [SMALL_STATE(2732)] = 81011, + [SMALL_STATE(2733)] = 81084, + [SMALL_STATE(2734)] = 81173, + [SMALL_STATE(2735)] = 81246, + [SMALL_STATE(2736)] = 81335, + [SMALL_STATE(2737)] = 81424, + [SMALL_STATE(2738)] = 81513, + [SMALL_STATE(2739)] = 81602, + [SMALL_STATE(2740)] = 81691, + [SMALL_STATE(2741)] = 81780, + [SMALL_STATE(2742)] = 81845, + [SMALL_STATE(2743)] = 81910, + [SMALL_STATE(2744)] = 81999, + [SMALL_STATE(2745)] = 82080, + [SMALL_STATE(2746)] = 82169, + [SMALL_STATE(2747)] = 82258, + [SMALL_STATE(2748)] = 82323, + [SMALL_STATE(2749)] = 82388, + [SMALL_STATE(2750)] = 82469, + [SMALL_STATE(2751)] = 82542, + [SMALL_STATE(2752)] = 82623, + [SMALL_STATE(2753)] = 82704, + [SMALL_STATE(2754)] = 82793, + [SMALL_STATE(2755)] = 82866, + [SMALL_STATE(2756)] = 82955, + [SMALL_STATE(2757)] = 83028, + [SMALL_STATE(2758)] = 83094, + [SMALL_STATE(2759)] = 83164, + [SMALL_STATE(2760)] = 83230, + [SMALL_STATE(2761)] = 83294, + [SMALL_STATE(2762)] = 83364, + [SMALL_STATE(2763)] = 83430, + [SMALL_STATE(2764)] = 83494, + [SMALL_STATE(2765)] = 83564, + [SMALL_STATE(2766)] = 83632, + [SMALL_STATE(2767)] = 83700, + [SMALL_STATE(2768)] = 83764, + [SMALL_STATE(2769)] = 83828, + [SMALL_STATE(2770)] = 83896, + [SMALL_STATE(2771)] = 83960, + [SMALL_STATE(2772)] = 84032, + [SMALL_STATE(2773)] = 84098, + [SMALL_STATE(2774)] = 84166, + [SMALL_STATE(2775)] = 84232, + [SMALL_STATE(2776)] = 84298, + [SMALL_STATE(2777)] = 84362, + [SMALL_STATE(2778)] = 84428, + [SMALL_STATE(2779)] = 84496, + [SMALL_STATE(2780)] = 84568, + [SMALL_STATE(2781)] = 84635, + [SMALL_STATE(2782)] = 84704, + [SMALL_STATE(2783)] = 84767, + [SMALL_STATE(2784)] = 84834, + [SMALL_STATE(2785)] = 84901, + [SMALL_STATE(2786)] = 84968, + [SMALL_STATE(2787)] = 85033, + [SMALL_STATE(2788)] = 85100, + [SMALL_STATE(2789)] = 85165, + [SMALL_STATE(2790)] = 85232, + [SMALL_STATE(2791)] = 85297, + [SMALL_STATE(2792)] = 85360, + [SMALL_STATE(2793)] = 85423, + [SMALL_STATE(2794)] = 85490, + [SMALL_STATE(2795)] = 85555, + [SMALL_STATE(2796)] = 85622, + [SMALL_STATE(2797)] = 85689, + [SMALL_STATE(2798)] = 85752, + [SMALL_STATE(2799)] = 85819, + [SMALL_STATE(2800)] = 85886, + [SMALL_STATE(2801)] = 85959, + [SMALL_STATE(2802)] = 86022, + [SMALL_STATE(2803)] = 86085, + [SMALL_STATE(2804)] = 86148, + [SMALL_STATE(2805)] = 86219, + [SMALL_STATE(2806)] = 86286, + [SMALL_STATE(2807)] = 86349, + [SMALL_STATE(2808)] = 86412, + [SMALL_STATE(2809)] = 86475, + [SMALL_STATE(2810)] = 86538, + [SMALL_STATE(2811)] = 86609, + [SMALL_STATE(2812)] = 86676, + [SMALL_STATE(2813)] = 86739, + [SMALL_STATE(2814)] = 86802, + [SMALL_STATE(2815)] = 86865, + [SMALL_STATE(2816)] = 86928, + [SMALL_STATE(2817)] = 86991, + [SMALL_STATE(2818)] = 87054, + [SMALL_STATE(2819)] = 87117, + [SMALL_STATE(2820)] = 87184, + [SMALL_STATE(2821)] = 87247, + [SMALL_STATE(2822)] = 87314, + [SMALL_STATE(2823)] = 87381, + [SMALL_STATE(2824)] = 87446, + [SMALL_STATE(2825)] = 87509, + [SMALL_STATE(2826)] = 87574, + [SMALL_STATE(2827)] = 87637, + [SMALL_STATE(2828)] = 87704, + [SMALL_STATE(2829)] = 87771, + [SMALL_STATE(2830)] = 87842, + [SMALL_STATE(2831)] = 87909, + [SMALL_STATE(2832)] = 87982, + [SMALL_STATE(2833)] = 88045, + [SMALL_STATE(2834)] = 88108, + [SMALL_STATE(2835)] = 88170, + [SMALL_STATE(2836)] = 88234, + [SMALL_STATE(2837)] = 88298, + [SMALL_STATE(2838)] = 88364, + [SMALL_STATE(2839)] = 88428, + [SMALL_STATE(2840)] = 88494, + [SMALL_STATE(2841)] = 88556, + [SMALL_STATE(2842)] = 88618, + [SMALL_STATE(2843)] = 88684, + [SMALL_STATE(2844)] = 88748, + [SMALL_STATE(2845)] = 88810, + [SMALL_STATE(2846)] = 88872, + [SMALL_STATE(2847)] = 88934, + [SMALL_STATE(2848)] = 89000, + [SMALL_STATE(2849)] = 89064, + [SMALL_STATE(2850)] = 89134, + [SMALL_STATE(2851)] = 89196, + [SMALL_STATE(2852)] = 89262, + [SMALL_STATE(2853)] = 89324, + [SMALL_STATE(2854)] = 89388, + [SMALL_STATE(2855)] = 89450, + [SMALL_STATE(2856)] = 89512, + [SMALL_STATE(2857)] = 89574, + [SMALL_STATE(2858)] = 89636, + [SMALL_STATE(2859)] = 89700, + [SMALL_STATE(2860)] = 89764, + [SMALL_STATE(2861)] = 89828, + [SMALL_STATE(2862)] = 89940, + [SMALL_STATE(2863)] = 90012, + [SMALL_STATE(2864)] = 90076, + [SMALL_STATE(2865)] = 90138, + [SMALL_STATE(2866)] = 90200, + [SMALL_STATE(2867)] = 90262, + [SMALL_STATE(2868)] = 90324, + [SMALL_STATE(2869)] = 90394, + [SMALL_STATE(2870)] = 90464, + [SMALL_STATE(2871)] = 90534, + [SMALL_STATE(2872)] = 90604, + [SMALL_STATE(2873)] = 90674, + [SMALL_STATE(2874)] = 90738, + [SMALL_STATE(2875)] = 90810, + [SMALL_STATE(2876)] = 90880, + [SMALL_STATE(2877)] = 90950, + [SMALL_STATE(2878)] = 91016, + [SMALL_STATE(2879)] = 91082, + [SMALL_STATE(2880)] = 91152, + [SMALL_STATE(2881)] = 91222, + [SMALL_STATE(2882)] = 91292, + [SMALL_STATE(2883)] = 91362, + [SMALL_STATE(2884)] = 91474, + [SMALL_STATE(2885)] = 91544, + [SMALL_STATE(2886)] = 91606, + [SMALL_STATE(2887)] = 91676, + [SMALL_STATE(2888)] = 91790, + [SMALL_STATE(2889)] = 91860, + [SMALL_STATE(2890)] = 91930, + [SMALL_STATE(2891)] = 92000, + [SMALL_STATE(2892)] = 92070, + [SMALL_STATE(2893)] = 92132, + [SMALL_STATE(2894)] = 92194, + [SMALL_STATE(2895)] = 92256, + [SMALL_STATE(2896)] = 92320, + [SMALL_STATE(2897)] = 92384, + [SMALL_STATE(2898)] = 92446, + [SMALL_STATE(2899)] = 92508, + [SMALL_STATE(2900)] = 92572, + [SMALL_STATE(2901)] = 92686, + [SMALL_STATE(2902)] = 92752, + [SMALL_STATE(2903)] = 92818, + [SMALL_STATE(2904)] = 92882, + [SMALL_STATE(2905)] = 92950, + [SMALL_STATE(2906)] = 93016, + [SMALL_STATE(2907)] = 93078, + [SMALL_STATE(2908)] = 93140, + [SMALL_STATE(2909)] = 93206, + [SMALL_STATE(2910)] = 93268, + [SMALL_STATE(2911)] = 93332, + [SMALL_STATE(2912)] = 93402, + [SMALL_STATE(2913)] = 93511, + [SMALL_STATE(2914)] = 93572, + [SMALL_STATE(2915)] = 93641, + [SMALL_STATE(2916)] = 93704, + [SMALL_STATE(2917)] = 93765, + [SMALL_STATE(2918)] = 93826, + [SMALL_STATE(2919)] = 93887, + [SMALL_STATE(2920)] = 93948, + [SMALL_STATE(2921)] = 94015, + [SMALL_STATE(2922)] = 94076, + [SMALL_STATE(2923)] = 94137, + [SMALL_STATE(2924)] = 94198, + [SMALL_STATE(2925)] = 94259, + [SMALL_STATE(2926)] = 94368, + [SMALL_STATE(2927)] = 94433, + [SMALL_STATE(2928)] = 94494, + [SMALL_STATE(2929)] = 94555, + [SMALL_STATE(2930)] = 94616, + [SMALL_STATE(2931)] = 94727, + [SMALL_STATE(2932)] = 94838, + [SMALL_STATE(2933)] = 94903, + [SMALL_STATE(2934)] = 94968, + [SMALL_STATE(2935)] = 95077, + [SMALL_STATE(2936)] = 95186, + [SMALL_STATE(2937)] = 95247, + [SMALL_STATE(2938)] = 95314, + [SMALL_STATE(2939)] = 95377, + [SMALL_STATE(2940)] = 95438, + [SMALL_STATE(2941)] = 95503, + [SMALL_STATE(2942)] = 95572, + [SMALL_STATE(2943)] = 95641, + [SMALL_STATE(2944)] = 95702, + [SMALL_STATE(2945)] = 95763, + [SMALL_STATE(2946)] = 95824, + [SMALL_STATE(2947)] = 95891, + [SMALL_STATE(2948)] = 95956, + [SMALL_STATE(2949)] = 96017, + [SMALL_STATE(2950)] = 96086, + [SMALL_STATE(2951)] = 96147, + [SMALL_STATE(2952)] = 96216, + [SMALL_STATE(2953)] = 96285, + [SMALL_STATE(2954)] = 96354, + [SMALL_STATE(2955)] = 96417, + [SMALL_STATE(2956)] = 96486, + [SMALL_STATE(2957)] = 96551, + [SMALL_STATE(2958)] = 96620, + [SMALL_STATE(2959)] = 96681, + [SMALL_STATE(2960)] = 96750, + [SMALL_STATE(2961)] = 96819, + [SMALL_STATE(2962)] = 96888, + [SMALL_STATE(2963)] = 96957, + [SMALL_STATE(2964)] = 97026, + [SMALL_STATE(2965)] = 97095, + [SMALL_STATE(2966)] = 97164, + [SMALL_STATE(2967)] = 97233, + [SMALL_STATE(2968)] = 97302, + [SMALL_STATE(2969)] = 97363, + [SMALL_STATE(2970)] = 97432, + [SMALL_STATE(2971)] = 97493, + [SMALL_STATE(2972)] = 97556, + [SMALL_STATE(2973)] = 97625, + [SMALL_STATE(2974)] = 97686, + [SMALL_STATE(2975)] = 97753, + [SMALL_STATE(2976)] = 97816, + [SMALL_STATE(2977)] = 97881, + [SMALL_STATE(2978)] = 97942, + [SMALL_STATE(2979)] = 98007, + [SMALL_STATE(2980)] = 98068, + [SMALL_STATE(2981)] = 98129, + [SMALL_STATE(2982)] = 98190, + [SMALL_STATE(2983)] = 98251, + [SMALL_STATE(2984)] = 98312, + [SMALL_STATE(2985)] = 98373, + [SMALL_STATE(2986)] = 98434, + [SMALL_STATE(2987)] = 98495, + [SMALL_STATE(2988)] = 98556, + [SMALL_STATE(2989)] = 98617, + [SMALL_STATE(2990)] = 98678, + [SMALL_STATE(2991)] = 98739, + [SMALL_STATE(2992)] = 98806, + [SMALL_STATE(2993)] = 98867, + [SMALL_STATE(2994)] = 98928, + [SMALL_STATE(2995)] = 98997, + [SMALL_STATE(2996)] = 99058, + [SMALL_STATE(2997)] = 99119, + [SMALL_STATE(2998)] = 99180, + [SMALL_STATE(2999)] = 99241, + [SMALL_STATE(3000)] = 99304, + [SMALL_STATE(3001)] = 99365, + [SMALL_STATE(3002)] = 99426, + [SMALL_STATE(3003)] = 99487, + [SMALL_STATE(3004)] = 99548, + [SMALL_STATE(3005)] = 99609, + [SMALL_STATE(3006)] = 99670, + [SMALL_STATE(3007)] = 99731, + [SMALL_STATE(3008)] = 99792, + [SMALL_STATE(3009)] = 99857, + [SMALL_STATE(3010)] = 99918, + [SMALL_STATE(3011)] = 99981, + [SMALL_STATE(3012)] = 100044, + [SMALL_STATE(3013)] = 100105, + [SMALL_STATE(3014)] = 100166, + [SMALL_STATE(3015)] = 100227, + [SMALL_STATE(3016)] = 100288, + [SMALL_STATE(3017)] = 100349, + [SMALL_STATE(3018)] = 100410, + [SMALL_STATE(3019)] = 100471, + [SMALL_STATE(3020)] = 100532, + [SMALL_STATE(3021)] = 100593, + [SMALL_STATE(3022)] = 100662, + [SMALL_STATE(3023)] = 100722, + [SMALL_STATE(3024)] = 100794, + [SMALL_STATE(3025)] = 100854, + [SMALL_STATE(3026)] = 100918, + [SMALL_STATE(3027)] = 100980, + [SMALL_STATE(3028)] = 101040, + [SMALL_STATE(3029)] = 101100, + [SMALL_STATE(3030)] = 101162, + [SMALL_STATE(3031)] = 101224, + [SMALL_STATE(3032)] = 101290, + [SMALL_STATE(3033)] = 101354, + [SMALL_STATE(3034)] = 101418, + [SMALL_STATE(3035)] = 101482, + [SMALL_STATE(3036)] = 101546, + [SMALL_STATE(3037)] = 101610, + [SMALL_STATE(3038)] = 101674, + [SMALL_STATE(3039)] = 101738, + [SMALL_STATE(3040)] = 101802, + [SMALL_STATE(3041)] = 101862, + [SMALL_STATE(3042)] = 101926, + [SMALL_STATE(3043)] = 101990, + [SMALL_STATE(3044)] = 102054, + [SMALL_STATE(3045)] = 102118, + [SMALL_STATE(3046)] = 102178, + [SMALL_STATE(3047)] = 102242, + [SMALL_STATE(3048)] = 102306, + [SMALL_STATE(3049)] = 102366, + [SMALL_STATE(3050)] = 102430, + [SMALL_STATE(3051)] = 102490, + [SMALL_STATE(3052)] = 102554, + [SMALL_STATE(3053)] = 102618, + [SMALL_STATE(3054)] = 102680, + [SMALL_STATE(3055)] = 102742, + [SMALL_STATE(3056)] = 102804, + [SMALL_STATE(3057)] = 102864, + [SMALL_STATE(3058)] = 102924, + [SMALL_STATE(3059)] = 102986, + [SMALL_STATE(3060)] = 103050, + [SMALL_STATE(3061)] = 103114, + [SMALL_STATE(3062)] = 103174, + [SMALL_STATE(3063)] = 103234, + [SMALL_STATE(3064)] = 103294, + [SMALL_STATE(3065)] = 103360, + [SMALL_STATE(3066)] = 103420, + [SMALL_STATE(3067)] = 103480, + [SMALL_STATE(3068)] = 103540, + [SMALL_STATE(3069)] = 103600, + [SMALL_STATE(3070)] = 103660, + [SMALL_STATE(3071)] = 103720, + [SMALL_STATE(3072)] = 103784, + [SMALL_STATE(3073)] = 103848, + [SMALL_STATE(3074)] = 103908, + [SMALL_STATE(3075)] = 103972, + [SMALL_STATE(3076)] = 104036, + [SMALL_STATE(3077)] = 104104, + [SMALL_STATE(3078)] = 104164, + [SMALL_STATE(3079)] = 104228, + [SMALL_STATE(3080)] = 104287, + [SMALL_STATE(3081)] = 104346, + [SMALL_STATE(3082)] = 104405, + [SMALL_STATE(3083)] = 104464, + [SMALL_STATE(3084)] = 104523, + [SMALL_STATE(3085)] = 104582, + [SMALL_STATE(3086)] = 104641, + [SMALL_STATE(3087)] = 104700, + [SMALL_STATE(3088)] = 104759, + [SMALL_STATE(3089)] = 104818, + [SMALL_STATE(3090)] = 104877, + [SMALL_STATE(3091)] = 104936, + [SMALL_STATE(3092)] = 104995, + [SMALL_STATE(3093)] = 105054, + [SMALL_STATE(3094)] = 105113, + [SMALL_STATE(3095)] = 105172, + [SMALL_STATE(3096)] = 105231, + [SMALL_STATE(3097)] = 105292, + [SMALL_STATE(3098)] = 105351, + [SMALL_STATE(3099)] = 105410, + [SMALL_STATE(3100)] = 105471, + [SMALL_STATE(3101)] = 105532, + [SMALL_STATE(3102)] = 105593, + [SMALL_STATE(3103)] = 105654, + [SMALL_STATE(3104)] = 105715, + [SMALL_STATE(3105)] = 105776, + [SMALL_STATE(3106)] = 105837, + [SMALL_STATE(3107)] = 105896, + [SMALL_STATE(3108)] = 105955, + [SMALL_STATE(3109)] = 106016, + [SMALL_STATE(3110)] = 106075, + [SMALL_STATE(3111)] = 106136, + [SMALL_STATE(3112)] = 106195, + [SMALL_STATE(3113)] = 106256, + [SMALL_STATE(3114)] = 106315, + [SMALL_STATE(3115)] = 106374, + [SMALL_STATE(3116)] = 106433, + [SMALL_STATE(3117)] = 106494, + [SMALL_STATE(3118)] = 106553, + [SMALL_STATE(3119)] = 106612, + [SMALL_STATE(3120)] = 106671, + [SMALL_STATE(3121)] = 106730, + [SMALL_STATE(3122)] = 106789, + [SMALL_STATE(3123)] = 106848, + [SMALL_STATE(3124)] = 106907, + [SMALL_STATE(3125)] = 106966, + [SMALL_STATE(3126)] = 107025, + [SMALL_STATE(3127)] = 107084, + [SMALL_STATE(3128)] = 107143, + [SMALL_STATE(3129)] = 107202, + [SMALL_STATE(3130)] = 107261, + [SMALL_STATE(3131)] = 107320, + [SMALL_STATE(3132)] = 107379, + [SMALL_STATE(3133)] = 107440, + [SMALL_STATE(3134)] = 107499, + [SMALL_STATE(3135)] = 107558, + [SMALL_STATE(3136)] = 107617, + [SMALL_STATE(3137)] = 107676, + [SMALL_STATE(3138)] = 107735, + [SMALL_STATE(3139)] = 107794, + [SMALL_STATE(3140)] = 107853, + [SMALL_STATE(3141)] = 107912, + [SMALL_STATE(3142)] = 107971, + [SMALL_STATE(3143)] = 108030, + [SMALL_STATE(3144)] = 108089, + [SMALL_STATE(3145)] = 108148, + [SMALL_STATE(3146)] = 108207, + [SMALL_STATE(3147)] = 108270, + [SMALL_STATE(3148)] = 108331, + [SMALL_STATE(3149)] = 108390, + [SMALL_STATE(3150)] = 108451, + [SMALL_STATE(3151)] = 108510, + [SMALL_STATE(3152)] = 108571, + [SMALL_STATE(3153)] = 108632, + [SMALL_STATE(3154)] = 108691, + [SMALL_STATE(3155)] = 108750, + [SMALL_STATE(3156)] = 108813, + [SMALL_STATE(3157)] = 108872, + [SMALL_STATE(3158)] = 108933, + [SMALL_STATE(3159)] = 108996, + [SMALL_STATE(3160)] = 109055, + [SMALL_STATE(3161)] = 109118, + [SMALL_STATE(3162)] = 109177, + [SMALL_STATE(3163)] = 109236, + [SMALL_STATE(3164)] = 109295, + [SMALL_STATE(3165)] = 109368, + [SMALL_STATE(3166)] = 109427, + [SMALL_STATE(3167)] = 109486, + [SMALL_STATE(3168)] = 109545, + [SMALL_STATE(3169)] = 109616, + [SMALL_STATE(3170)] = 109675, + [SMALL_STATE(3171)] = 109734, + [SMALL_STATE(3172)] = 109793, + [SMALL_STATE(3173)] = 109852, + [SMALL_STATE(3174)] = 109911, + [SMALL_STATE(3175)] = 109974, + [SMALL_STATE(3176)] = 110033, + [SMALL_STATE(3177)] = 110094, + [SMALL_STATE(3178)] = 110153, + [SMALL_STATE(3179)] = 110212, + [SMALL_STATE(3180)] = 110271, + [SMALL_STATE(3181)] = 110330, + [SMALL_STATE(3182)] = 110389, + [SMALL_STATE(3183)] = 110448, + [SMALL_STATE(3184)] = 110511, + [SMALL_STATE(3185)] = 110571, + [SMALL_STATE(3186)] = 110629, + [SMALL_STATE(3187)] = 110687, + [SMALL_STATE(3188)] = 110745, + [SMALL_STATE(3189)] = 110805, + [SMALL_STATE(3190)] = 110863, + [SMALL_STATE(3191)] = 110921, + [SMALL_STATE(3192)] = 110979, + [SMALL_STATE(3193)] = 111037, + [SMALL_STATE(3194)] = 111097, + [SMALL_STATE(3195)] = 111155, + [SMALL_STATE(3196)] = 111213, + [SMALL_STATE(3197)] = 111273, + [SMALL_STATE(3198)] = 111331, + [SMALL_STATE(3199)] = 111391, + [SMALL_STATE(3200)] = 111449, + [SMALL_STATE(3201)] = 111507, + [SMALL_STATE(3202)] = 111565, + [SMALL_STATE(3203)] = 111623, + [SMALL_STATE(3204)] = 111681, + [SMALL_STATE(3205)] = 111739, + [SMALL_STATE(3206)] = 111797, + [SMALL_STATE(3207)] = 111855, + [SMALL_STATE(3208)] = 111913, + [SMALL_STATE(3209)] = 111971, + [SMALL_STATE(3210)] = 112031, + [SMALL_STATE(3211)] = 112091, + [SMALL_STATE(3212)] = 112151, + [SMALL_STATE(3213)] = 112211, + [SMALL_STATE(3214)] = 112271, + [SMALL_STATE(3215)] = 112331, + [SMALL_STATE(3216)] = 112391, + [SMALL_STATE(3217)] = 112449, + [SMALL_STATE(3218)] = 112507, + [SMALL_STATE(3219)] = 112565, + [SMALL_STATE(3220)] = 112623, + [SMALL_STATE(3221)] = 112681, + [SMALL_STATE(3222)] = 112739, + [SMALL_STATE(3223)] = 112797, + [SMALL_STATE(3224)] = 112855, + [SMALL_STATE(3225)] = 112921, + [SMALL_STATE(3226)] = 112979, + [SMALL_STATE(3227)] = 113037, + [SMALL_STATE(3228)] = 113095, + [SMALL_STATE(3229)] = 113153, + [SMALL_STATE(3230)] = 113211, + [SMALL_STATE(3231)] = 113269, + [SMALL_STATE(3232)] = 113327, + [SMALL_STATE(3233)] = 113385, + [SMALL_STATE(3234)] = 113443, + [SMALL_STATE(3235)] = 113503, + [SMALL_STATE(3236)] = 113563, + [SMALL_STATE(3237)] = 113623, + [SMALL_STATE(3238)] = 113683, + [SMALL_STATE(3239)] = 113743, + [SMALL_STATE(3240)] = 113803, + [SMALL_STATE(3241)] = 113863, + [SMALL_STATE(3242)] = 113923, + [SMALL_STATE(3243)] = 113980, + [SMALL_STATE(3244)] = 114037, + [SMALL_STATE(3245)] = 114094, + [SMALL_STATE(3246)] = 114151, + [SMALL_STATE(3247)] = 114208, + [SMALL_STATE(3248)] = 114265, + [SMALL_STATE(3249)] = 114322, + [SMALL_STATE(3250)] = 114379, + [SMALL_STATE(3251)] = 114436, + [SMALL_STATE(3252)] = 114493, + [SMALL_STATE(3253)] = 114550, + [SMALL_STATE(3254)] = 114607, + [SMALL_STATE(3255)] = 114664, + [SMALL_STATE(3256)] = 114721, + [SMALL_STATE(3257)] = 114778, + [SMALL_STATE(3258)] = 114835, + [SMALL_STATE(3259)] = 114892, + [SMALL_STATE(3260)] = 114949, + [SMALL_STATE(3261)] = 115006, + [SMALL_STATE(3262)] = 115063, + [SMALL_STATE(3263)] = 115120, + [SMALL_STATE(3264)] = 115177, + [SMALL_STATE(3265)] = 115234, + [SMALL_STATE(3266)] = 115291, + [SMALL_STATE(3267)] = 115348, + [SMALL_STATE(3268)] = 115405, + [SMALL_STATE(3269)] = 115462, + [SMALL_STATE(3270)] = 115519, + [SMALL_STATE(3271)] = 115576, + [SMALL_STATE(3272)] = 115633, + [SMALL_STATE(3273)] = 115690, + [SMALL_STATE(3274)] = 115747, + [SMALL_STATE(3275)] = 115804, + [SMALL_STATE(3276)] = 115861, + [SMALL_STATE(3277)] = 115918, + [SMALL_STATE(3278)] = 115975, + [SMALL_STATE(3279)] = 116032, + [SMALL_STATE(3280)] = 116089, + [SMALL_STATE(3281)] = 116146, + [SMALL_STATE(3282)] = 116203, + [SMALL_STATE(3283)] = 116260, + [SMALL_STATE(3284)] = 116317, + [SMALL_STATE(3285)] = 116374, + [SMALL_STATE(3286)] = 116431, + [SMALL_STATE(3287)] = 116488, + [SMALL_STATE(3288)] = 116545, + [SMALL_STATE(3289)] = 116602, + [SMALL_STATE(3290)] = 116659, + [SMALL_STATE(3291)] = 116716, + [SMALL_STATE(3292)] = 116773, + [SMALL_STATE(3293)] = 116830, + [SMALL_STATE(3294)] = 116887, + [SMALL_STATE(3295)] = 116944, + [SMALL_STATE(3296)] = 117001, + [SMALL_STATE(3297)] = 117058, + [SMALL_STATE(3298)] = 117115, + [SMALL_STATE(3299)] = 117172, + [SMALL_STATE(3300)] = 117229, + [SMALL_STATE(3301)] = 117286, + [SMALL_STATE(3302)] = 117343, + [SMALL_STATE(3303)] = 117400, + [SMALL_STATE(3304)] = 117457, + [SMALL_STATE(3305)] = 117514, + [SMALL_STATE(3306)] = 117571, + [SMALL_STATE(3307)] = 117628, + [SMALL_STATE(3308)] = 117685, + [SMALL_STATE(3309)] = 117758, + [SMALL_STATE(3310)] = 117815, + [SMALL_STATE(3311)] = 117872, + [SMALL_STATE(3312)] = 117929, + [SMALL_STATE(3313)] = 117986, + [SMALL_STATE(3314)] = 118051, + [SMALL_STATE(3315)] = 118108, + [SMALL_STATE(3316)] = 118167, + [SMALL_STATE(3317)] = 118232, + [SMALL_STATE(3318)] = 118299, + [SMALL_STATE(3319)] = 118356, + [SMALL_STATE(3320)] = 118426, + [SMALL_STATE(3321)] = 118502, + [SMALL_STATE(3322)] = 118578, + [SMALL_STATE(3323)] = 118654, + [SMALL_STATE(3324)] = 118730, + [SMALL_STATE(3325)] = 118806, + [SMALL_STATE(3326)] = 118882, + [SMALL_STATE(3327)] = 118958, + [SMALL_STATE(3328)] = 119034, + [SMALL_STATE(3329)] = 119110, + [SMALL_STATE(3330)] = 119186, + [SMALL_STATE(3331)] = 119262, + [SMALL_STATE(3332)] = 119324, + [SMALL_STATE(3333)] = 119380, + [SMALL_STATE(3334)] = 119450, + [SMALL_STATE(3335)] = 119520, + [SMALL_STATE(3336)] = 119590, + [SMALL_STATE(3337)] = 119666, + [SMALL_STATE(3338)] = 119742, + [SMALL_STATE(3339)] = 119818, + [SMALL_STATE(3340)] = 119894, + [SMALL_STATE(3341)] = 119970, + [SMALL_STATE(3342)] = 120033, + [SMALL_STATE(3343)] = 120094, + [SMALL_STATE(3344)] = 120159, + [SMALL_STATE(3345)] = 120218, + [SMALL_STATE(3346)] = 120273, + [SMALL_STATE(3347)] = 120327, + [SMALL_STATE(3348)] = 120383, + [SMALL_STATE(3349)] = 120439, + [SMALL_STATE(3350)] = 120495, + [SMALL_STATE(3351)] = 120551, + [SMALL_STATE(3352)] = 120621, + [SMALL_STATE(3353)] = 120683, + [SMALL_STATE(3354)] = 120739, + [SMALL_STATE(3355)] = 120797, + [SMALL_STATE(3356)] = 120859, + [SMALL_STATE(3357)] = 120913, + [SMALL_STATE(3358)] = 120967, + [SMALL_STATE(3359)] = 121025, + [SMALL_STATE(3360)] = 121079, + [SMALL_STATE(3361)] = 121135, + [SMALL_STATE(3362)] = 121190, + [SMALL_STATE(3363)] = 121243, + [SMALL_STATE(3364)] = 121296, + [SMALL_STATE(3365)] = 121353, + [SMALL_STATE(3366)] = 121406, + [SMALL_STATE(3367)] = 121461, + [SMALL_STATE(3368)] = 121514, + [SMALL_STATE(3369)] = 121567, + [SMALL_STATE(3370)] = 121634, + [SMALL_STATE(3371)] = 121687, + [SMALL_STATE(3372)] = 121742, + [SMALL_STATE(3373)] = 121799, + [SMALL_STATE(3374)] = 121852, + [SMALL_STATE(3375)] = 121909, + [SMALL_STATE(3376)] = 121962, + [SMALL_STATE(3377)] = 122029, + [SMALL_STATE(3378)] = 122096, + [SMALL_STATE(3379)] = 122151, + [SMALL_STATE(3380)] = 122206, + [SMALL_STATE(3381)] = 122273, + [SMALL_STATE(3382)] = 122326, + [SMALL_STATE(3383)] = 122383, + [SMALL_STATE(3384)] = 122436, + [SMALL_STATE(3385)] = 122489, + [SMALL_STATE(3386)] = 122544, + [SMALL_STATE(3387)] = 122600, + [SMALL_STATE(3388)] = 122650, + [SMALL_STATE(3389)] = 122714, + [SMALL_STATE(3390)] = 122766, + [SMALL_STATE(3391)] = 122818, + [SMALL_STATE(3392)] = 122870, + [SMALL_STATE(3393)] = 122922, + [SMALL_STATE(3394)] = 122974, + [SMALL_STATE(3395)] = 123038, + [SMALL_STATE(3396)] = 123088, + [SMALL_STATE(3397)] = 123140, + [SMALL_STATE(3398)] = 123194, + [SMALL_STATE(3399)] = 123250, + [SMALL_STATE(3400)] = 123312, + [SMALL_STATE(3401)] = 123376, + [SMALL_STATE(3402)] = 123442, + [SMALL_STATE(3403)] = 123510, + [SMALL_STATE(3404)] = 123580, + [SMALL_STATE(3405)] = 123652, + [SMALL_STATE(3406)] = 123726, + [SMALL_STATE(3407)] = 123786, + [SMALL_STATE(3408)] = 123844, + [SMALL_STATE(3409)] = 123908, + [SMALL_STATE(3410)] = 123962, + [SMALL_STATE(3411)] = 124012, + [SMALL_STATE(3412)] = 124068, + [SMALL_STATE(3413)] = 124120, + [SMALL_STATE(3414)] = 124178, + [SMALL_STATE(3415)] = 124238, + [SMALL_STATE(3416)] = 124304, + [SMALL_STATE(3417)] = 124356, + [SMALL_STATE(3418)] = 124424, + [SMALL_STATE(3419)] = 124494, + [SMALL_STATE(3420)] = 124566, + [SMALL_STATE(3421)] = 124640, + [SMALL_STATE(3422)] = 124716, + [SMALL_STATE(3423)] = 124794, + [SMALL_STATE(3424)] = 124848, + [SMALL_STATE(3425)] = 124912, + [SMALL_STATE(3426)] = 124974, + [SMALL_STATE(3427)] = 125038, + [SMALL_STATE(3428)] = 125094, + [SMALL_STATE(3429)] = 125150, + [SMALL_STATE(3430)] = 125208, + [SMALL_STATE(3431)] = 125266, + [SMALL_STATE(3432)] = 125326, + [SMALL_STATE(3433)] = 125386, + [SMALL_STATE(3434)] = 125452, + [SMALL_STATE(3435)] = 125518, + [SMALL_STATE(3436)] = 125586, + [SMALL_STATE(3437)] = 125654, + [SMALL_STATE(3438)] = 125724, + [SMALL_STATE(3439)] = 125794, + [SMALL_STATE(3440)] = 125866, + [SMALL_STATE(3441)] = 125938, + [SMALL_STATE(3442)] = 126012, + [SMALL_STATE(3443)] = 126086, + [SMALL_STATE(3444)] = 126162, + [SMALL_STATE(3445)] = 126238, + [SMALL_STATE(3446)] = 126316, + [SMALL_STATE(3447)] = 126394, + [SMALL_STATE(3448)] = 126458, + [SMALL_STATE(3449)] = 126522, + [SMALL_STATE(3450)] = 126584, + [SMALL_STATE(3451)] = 126646, + [SMALL_STATE(3452)] = 126702, + [SMALL_STATE(3453)] = 126760, + [SMALL_STATE(3454)] = 126820, + [SMALL_STATE(3455)] = 126886, + [SMALL_STATE(3456)] = 126954, + [SMALL_STATE(3457)] = 127024, + [SMALL_STATE(3458)] = 127096, + [SMALL_STATE(3459)] = 127170, + [SMALL_STATE(3460)] = 127246, + [SMALL_STATE(3461)] = 127324, + [SMALL_STATE(3462)] = 127376, + [SMALL_STATE(3463)] = 127440, + [SMALL_STATE(3464)] = 127492, + [SMALL_STATE(3465)] = 127554, + [SMALL_STATE(3466)] = 127610, + [SMALL_STATE(3467)] = 127668, + [SMALL_STATE(3468)] = 127728, + [SMALL_STATE(3469)] = 127794, + [SMALL_STATE(3470)] = 127862, + [SMALL_STATE(3471)] = 127932, + [SMALL_STATE(3472)] = 128004, + [SMALL_STATE(3473)] = 128078, + [SMALL_STATE(3474)] = 128154, + [SMALL_STATE(3475)] = 128232, + [SMALL_STATE(3476)] = 128296, + [SMALL_STATE(3477)] = 128358, + [SMALL_STATE(3478)] = 128414, + [SMALL_STATE(3479)] = 128464, + [SMALL_STATE(3480)] = 128522, + [SMALL_STATE(3481)] = 128580, + [SMALL_STATE(3482)] = 128640, + [SMALL_STATE(3483)] = 128700, + [SMALL_STATE(3484)] = 128766, + [SMALL_STATE(3485)] = 128832, + [SMALL_STATE(3486)] = 128900, + [SMALL_STATE(3487)] = 128968, + [SMALL_STATE(3488)] = 129038, + [SMALL_STATE(3489)] = 129108, + [SMALL_STATE(3490)] = 129180, + [SMALL_STATE(3491)] = 129252, + [SMALL_STATE(3492)] = 129326, + [SMALL_STATE(3493)] = 129400, + [SMALL_STATE(3494)] = 129476, + [SMALL_STATE(3495)] = 129552, + [SMALL_STATE(3496)] = 129630, + [SMALL_STATE(3497)] = 129708, + [SMALL_STATE(3498)] = 129772, + [SMALL_STATE(3499)] = 129836, + [SMALL_STATE(3500)] = 129898, + [SMALL_STATE(3501)] = 129960, + [SMALL_STATE(3502)] = 130016, + [SMALL_STATE(3503)] = 130074, + [SMALL_STATE(3504)] = 130134, + [SMALL_STATE(3505)] = 130200, + [SMALL_STATE(3506)] = 130268, + [SMALL_STATE(3507)] = 130338, + [SMALL_STATE(3508)] = 130410, + [SMALL_STATE(3509)] = 130484, + [SMALL_STATE(3510)] = 130560, + [SMALL_STATE(3511)] = 130638, + [SMALL_STATE(3512)] = 130702, + [SMALL_STATE(3513)] = 130764, + [SMALL_STATE(3514)] = 130816, + [SMALL_STATE(3515)] = 130868, + [SMALL_STATE(3516)] = 130920, + [SMALL_STATE(3517)] = 130972, + [SMALL_STATE(3518)] = 131026, + [SMALL_STATE(3519)] = 131080, + [SMALL_STATE(3520)] = 131130, + [SMALL_STATE(3521)] = 131184, + [SMALL_STATE(3522)] = 131238, + [SMALL_STATE(3523)] = 131288, + [SMALL_STATE(3524)] = 131347, + [SMALL_STATE(3525)] = 131408, + [SMALL_STATE(3526)] = 131459, + [SMALL_STATE(3527)] = 131512, + [SMALL_STATE(3528)] = 131567, + [SMALL_STATE(3529)] = 131628, + [SMALL_STATE(3530)] = 131691, + [SMALL_STATE(3531)] = 131756, + [SMALL_STATE(3532)] = 131823, + [SMALL_STATE(3533)] = 131892, + [SMALL_STATE(3534)] = 131963, + [SMALL_STATE(3535)] = 132036, + [SMALL_STATE(3536)] = 132095, + [SMALL_STATE(3537)] = 132152, + [SMALL_STATE(3538)] = 132207, + [SMALL_STATE(3539)] = 132262, + [SMALL_STATE(3540)] = 132313, + [SMALL_STATE(3541)] = 132362, + [SMALL_STATE(3542)] = 132417, + [SMALL_STATE(3543)] = 132466, + [SMALL_STATE(3544)] = 132521, + [SMALL_STATE(3545)] = 132574, + [SMALL_STATE(3546)] = 132629, + [SMALL_STATE(3547)] = 132678, + [SMALL_STATE(3548)] = 132739, + [SMALL_STATE(3549)] = 132793, + [SMALL_STATE(3550)] = 132847, + [SMALL_STATE(3551)] = 132901, + [SMALL_STATE(3552)] = 132955, + [SMALL_STATE(3553)] = 133007, + [SMALL_STATE(3554)] = 133065, + [SMALL_STATE(3555)] = 133127, + [SMALL_STATE(3556)] = 133185, + [SMALL_STATE(3557)] = 133271, + [SMALL_STATE(3558)] = 133323, + [SMALL_STATE(3559)] = 133377, + [SMALL_STATE(3560)] = 133429, + [SMALL_STATE(3561)] = 133483, + [SMALL_STATE(3562)] = 133547, + [SMALL_STATE(3563)] = 133633, + [SMALL_STATE(3564)] = 133687, + [SMALL_STATE(3565)] = 133741, + [SMALL_STATE(3566)] = 133795, + [SMALL_STATE(3567)] = 133849, + [SMALL_STATE(3568)] = 133901, + [SMALL_STATE(3569)] = 133956, + [SMALL_STATE(3570)] = 134005, + [SMALL_STATE(3571)] = 134054, + [SMALL_STATE(3572)] = 134105, + [SMALL_STATE(3573)] = 134188, + [SMALL_STATE(3574)] = 134243, + [SMALL_STATE(3575)] = 134292, + [SMALL_STATE(3576)] = 134345, + [SMALL_STATE(3577)] = 134398, + [SMALL_STATE(3578)] = 134481, + [SMALL_STATE(3579)] = 134536, + [SMALL_STATE(3580)] = 134585, + [SMALL_STATE(3581)] = 134640, + [SMALL_STATE(3582)] = 134689, + [SMALL_STATE(3583)] = 134738, + [SMALL_STATE(3584)] = 134801, + [SMALL_STATE(3585)] = 134850, + [SMALL_STATE(3586)] = 134899, + [SMALL_STATE(3587)] = 134948, + [SMALL_STATE(3588)] = 134997, + [SMALL_STATE(3589)] = 135048, + [SMALL_STATE(3590)] = 135097, + [SMALL_STATE(3591)] = 135146, + [SMALL_STATE(3592)] = 135195, + [SMALL_STATE(3593)] = 135244, + [SMALL_STATE(3594)] = 135299, + [SMALL_STATE(3595)] = 135348, + [SMALL_STATE(3596)] = 135397, + [SMALL_STATE(3597)] = 135446, + [SMALL_STATE(3598)] = 135501, + [SMALL_STATE(3599)] = 135552, + [SMALL_STATE(3600)] = 135601, + [SMALL_STATE(3601)] = 135652, + [SMALL_STATE(3602)] = 135717, + [SMALL_STATE(3603)] = 135772, + [SMALL_STATE(3604)] = 135837, + [SMALL_STATE(3605)] = 135886, + [SMALL_STATE(3606)] = 135937, + [SMALL_STATE(3607)] = 135990, + [SMALL_STATE(3608)] = 136041, + [SMALL_STATE(3609)] = 136090, + [SMALL_STATE(3610)] = 136139, + [SMALL_STATE(3611)] = 136188, + [SMALL_STATE(3612)] = 136237, + [SMALL_STATE(3613)] = 136299, + [SMALL_STATE(3614)] = 136347, + [SMALL_STATE(3615)] = 136395, + [SMALL_STATE(3616)] = 136443, + [SMALL_STATE(3617)] = 136491, + [SMALL_STATE(3618)] = 136551, + [SMALL_STATE(3619)] = 136599, + [SMALL_STATE(3620)] = 136647, + [SMALL_STATE(3621)] = 136709, + [SMALL_STATE(3622)] = 136761, + [SMALL_STATE(3623)] = 136809, + [SMALL_STATE(3624)] = 136857, + [SMALL_STATE(3625)] = 136907, + [SMALL_STATE(3626)] = 136957, + [SMALL_STATE(3627)] = 137007, + [SMALL_STATE(3628)] = 137055, + [SMALL_STATE(3629)] = 137103, + [SMALL_STATE(3630)] = 137161, + [SMALL_STATE(3631)] = 137209, + [SMALL_STATE(3632)] = 137259, + [SMALL_STATE(3633)] = 137307, + [SMALL_STATE(3634)] = 137359, + [SMALL_STATE(3635)] = 137411, + [SMALL_STATE(3636)] = 137473, + [SMALL_STATE(3637)] = 137521, + [SMALL_STATE(3638)] = 137583, + [SMALL_STATE(3639)] = 137645, + [SMALL_STATE(3640)] = 137707, + [SMALL_STATE(3641)] = 137759, + [SMALL_STATE(3642)] = 137807, + [SMALL_STATE(3643)] = 137855, + [SMALL_STATE(3644)] = 137915, + [SMALL_STATE(3645)] = 137963, + [SMALL_STATE(3646)] = 138018, + [SMALL_STATE(3647)] = 138069, + [SMALL_STATE(3648)] = 138116, + [SMALL_STATE(3649)] = 138163, + [SMALL_STATE(3650)] = 138210, + [SMALL_STATE(3651)] = 138257, + [SMALL_STATE(3652)] = 138308, + [SMALL_STATE(3653)] = 138355, + [SMALL_STATE(3654)] = 138402, + [SMALL_STATE(3655)] = 138457, + [SMALL_STATE(3656)] = 138508, + [SMALL_STATE(3657)] = 138559, + [SMALL_STATE(3658)] = 138608, + [SMALL_STATE(3659)] = 138663, + [SMALL_STATE(3660)] = 138718, + [SMALL_STATE(3661)] = 138773, + [SMALL_STATE(3662)] = 138828, + [SMALL_STATE(3663)] = 138875, + [SMALL_STATE(3664)] = 138930, + [SMALL_STATE(3665)] = 138985, + [SMALL_STATE(3666)] = 139040, + [SMALL_STATE(3667)] = 139095, + [SMALL_STATE(3668)] = 139150, + [SMALL_STATE(3669)] = 139205, + [SMALL_STATE(3670)] = 139260, + [SMALL_STATE(3671)] = 139315, + [SMALL_STATE(3672)] = 139370, + [SMALL_STATE(3673)] = 139425, + [SMALL_STATE(3674)] = 139480, + [SMALL_STATE(3675)] = 139535, + [SMALL_STATE(3676)] = 139590, + [SMALL_STATE(3677)] = 139645, + [SMALL_STATE(3678)] = 139700, + [SMALL_STATE(3679)] = 139755, + [SMALL_STATE(3680)] = 139810, + [SMALL_STATE(3681)] = 139865, + [SMALL_STATE(3682)] = 139912, + [SMALL_STATE(3683)] = 139966, + [SMALL_STATE(3684)] = 140020, + [SMALL_STATE(3685)] = 140074, + [SMALL_STATE(3686)] = 140128, + [SMALL_STATE(3687)] = 140182, + [SMALL_STATE(3688)] = 140236, + [SMALL_STATE(3689)] = 140290, + [SMALL_STATE(3690)] = 140338, + [SMALL_STATE(3691)] = 140392, + [SMALL_STATE(3692)] = 140446, + [SMALL_STATE(3693)] = 140500, + [SMALL_STATE(3694)] = 140552, + [SMALL_STATE(3695)] = 140604, + [SMALL_STATE(3696)] = 140658, + [SMALL_STATE(3697)] = 140712, + [SMALL_STATE(3698)] = 140766, + [SMALL_STATE(3699)] = 140812, + [SMALL_STATE(3700)] = 140866, + [SMALL_STATE(3701)] = 140920, + [SMALL_STATE(3702)] = 140974, + [SMALL_STATE(3703)] = 141028, + [SMALL_STATE(3704)] = 141080, + [SMALL_STATE(3705)] = 141134, + [SMALL_STATE(3706)] = 141188, + [SMALL_STATE(3707)] = 141242, + [SMALL_STATE(3708)] = 141296, + [SMALL_STATE(3709)] = 141350, + [SMALL_STATE(3710)] = 141398, + [SMALL_STATE(3711)] = 141448, + [SMALL_STATE(3712)] = 141502, + [SMALL_STATE(3713)] = 141548, + [SMALL_STATE(3714)] = 141594, + [SMALL_STATE(3715)] = 141648, + [SMALL_STATE(3716)] = 141702, + [SMALL_STATE(3717)] = 141747, + [SMALL_STATE(3718)] = 141798, + [SMALL_STATE(3719)] = 141843, + [SMALL_STATE(3720)] = 141888, + [SMALL_STATE(3721)] = 141937, + [SMALL_STATE(3722)] = 141982, + [SMALL_STATE(3723)] = 142027, + [SMALL_STATE(3724)] = 142072, + [SMALL_STATE(3725)] = 142117, + [SMALL_STATE(3726)] = 142162, + [SMALL_STATE(3727)] = 142207, + [SMALL_STATE(3728)] = 142252, + [SMALL_STATE(3729)] = 142303, + [SMALL_STATE(3730)] = 142348, + [SMALL_STATE(3731)] = 142399, + [SMALL_STATE(3732)] = 142444, + [SMALL_STATE(3733)] = 142495, + [SMALL_STATE(3734)] = 142545, + [SMALL_STATE(3735)] = 142593, + [SMALL_STATE(3736)] = 142637, + [SMALL_STATE(3737)] = 142685, + [SMALL_STATE(3738)] = 142733, + [SMALL_STATE(3739)] = 142781, + [SMALL_STATE(3740)] = 142831, + [SMALL_STATE(3741)] = 142879, + [SMALL_STATE(3742)] = 142923, + [SMALL_STATE(3743)] = 142967, + [SMALL_STATE(3744)] = 143015, + [SMALL_STATE(3745)] = 143063, + [SMALL_STATE(3746)] = 143111, + [SMALL_STATE(3747)] = 143161, + [SMALL_STATE(3748)] = 143209, + [SMALL_STATE(3749)] = 143253, + [SMALL_STATE(3750)] = 143299, + [SMALL_STATE(3751)] = 143345, + [SMALL_STATE(3752)] = 143393, + [SMALL_STATE(3753)] = 143437, + [SMALL_STATE(3754)] = 143485, + [SMALL_STATE(3755)] = 143533, + [SMALL_STATE(3756)] = 143578, + [SMALL_STATE(3757)] = 143621, + [SMALL_STATE(3758)] = 143710, + [SMALL_STATE(3759)] = 143755, + [SMALL_STATE(3760)] = 143802, + [SMALL_STATE(3761)] = 143845, + [SMALL_STATE(3762)] = 143892, + [SMALL_STATE(3763)] = 143937, + [SMALL_STATE(3764)] = 143980, + [SMALL_STATE(3765)] = 144023, + [SMALL_STATE(3766)] = 144068, + [SMALL_STATE(3767)] = 144115, + [SMALL_STATE(3768)] = 144160, + [SMALL_STATE(3769)] = 144205, + [SMALL_STATE(3770)] = 144248, + [SMALL_STATE(3771)] = 144299, + [SMALL_STATE(3772)] = 144388, + [SMALL_STATE(3773)] = 144433, + [SMALL_STATE(3774)] = 144480, + [SMALL_STATE(3775)] = 144527, + [SMALL_STATE(3776)] = 144570, + [SMALL_STATE(3777)] = 144615, + [SMALL_STATE(3778)] = 144658, + [SMALL_STATE(3779)] = 144705, + [SMALL_STATE(3780)] = 144748, + [SMALL_STATE(3781)] = 144793, + [SMALL_STATE(3782)] = 144840, + [SMALL_STATE(3783)] = 144885, + [SMALL_STATE(3784)] = 144928, + [SMALL_STATE(3785)] = 144975, + [SMALL_STATE(3786)] = 145020, + [SMALL_STATE(3787)] = 145065, + [SMALL_STATE(3788)] = 145108, + [SMALL_STATE(3789)] = 145155, + [SMALL_STATE(3790)] = 145200, + [SMALL_STATE(3791)] = 145246, + [SMALL_STATE(3792)] = 145292, + [SMALL_STATE(3793)] = 145338, + [SMALL_STATE(3794)] = 145386, + [SMALL_STATE(3795)] = 145434, + [SMALL_STATE(3796)] = 145484, + [SMALL_STATE(3797)] = 145534, + [SMALL_STATE(3798)] = 145590, + [SMALL_STATE(3799)] = 145646, + [SMALL_STATE(3800)] = 145704, + [SMALL_STATE(3801)] = 145762, + [SMALL_STATE(3802)] = 145822, + [SMALL_STATE(3803)] = 145882, + [SMALL_STATE(3804)] = 145944, + [SMALL_STATE(3805)] = 146006, + [SMALL_STATE(3806)] = 146070, + [SMALL_STATE(3807)] = 146134, + [SMALL_STATE(3808)] = 146200, + [SMALL_STATE(3809)] = 146266, + [SMALL_STATE(3810)] = 146334, + [SMALL_STATE(3811)] = 146402, + [SMALL_STATE(3812)] = 146456, + [SMALL_STATE(3813)] = 146510, + [SMALL_STATE(3814)] = 146562, + [SMALL_STATE(3815)] = 146614, + [SMALL_STATE(3816)] = 146660, + [SMALL_STATE(3817)] = 146708, + [SMALL_STATE(3818)] = 146758, + [SMALL_STATE(3819)] = 146814, + [SMALL_STATE(3820)] = 146872, + [SMALL_STATE(3821)] = 146932, + [SMALL_STATE(3822)] = 146994, + [SMALL_STATE(3823)] = 147058, + [SMALL_STATE(3824)] = 147124, + [SMALL_STATE(3825)] = 147192, + [SMALL_STATE(3826)] = 147246, + [SMALL_STATE(3827)] = 147298, + [SMALL_STATE(3828)] = 147344, + [SMALL_STATE(3829)] = 147392, + [SMALL_STATE(3830)] = 147442, + [SMALL_STATE(3831)] = 147498, + [SMALL_STATE(3832)] = 147556, + [SMALL_STATE(3833)] = 147616, + [SMALL_STATE(3834)] = 147678, + [SMALL_STATE(3835)] = 147742, + [SMALL_STATE(3836)] = 147808, + [SMALL_STATE(3837)] = 147876, + [SMALL_STATE(3838)] = 147930, + [SMALL_STATE(3839)] = 147982, + [SMALL_STATE(3840)] = 148028, + [SMALL_STATE(3841)] = 148074, + [SMALL_STATE(3842)] = 148122, + [SMALL_STATE(3843)] = 148170, + [SMALL_STATE(3844)] = 148220, + [SMALL_STATE(3845)] = 148270, + [SMALL_STATE(3846)] = 148326, + [SMALL_STATE(3847)] = 148382, + [SMALL_STATE(3848)] = 148440, + [SMALL_STATE(3849)] = 148498, + [SMALL_STATE(3850)] = 148558, + [SMALL_STATE(3851)] = 148618, + [SMALL_STATE(3852)] = 148680, + [SMALL_STATE(3853)] = 148742, + [SMALL_STATE(3854)] = 148806, + [SMALL_STATE(3855)] = 148870, + [SMALL_STATE(3856)] = 148936, + [SMALL_STATE(3857)] = 149002, + [SMALL_STATE(3858)] = 149070, + [SMALL_STATE(3859)] = 149138, + [SMALL_STATE(3860)] = 149192, + [SMALL_STATE(3861)] = 149246, + [SMALL_STATE(3862)] = 149298, + [SMALL_STATE(3863)] = 149350, + [SMALL_STATE(3864)] = 149396, + [SMALL_STATE(3865)] = 149444, + [SMALL_STATE(3866)] = 149494, + [SMALL_STATE(3867)] = 149550, + [SMALL_STATE(3868)] = 149608, + [SMALL_STATE(3869)] = 149668, + [SMALL_STATE(3870)] = 149730, + [SMALL_STATE(3871)] = 149794, + [SMALL_STATE(3872)] = 149860, + [SMALL_STATE(3873)] = 149928, + [SMALL_STATE(3874)] = 149982, + [SMALL_STATE(3875)] = 150034, + [SMALL_STATE(3876)] = 150076, + [SMALL_STATE(3877)] = 150118, + [SMALL_STATE(3878)] = 150160, + [SMALL_STATE(3879)] = 150202, + [SMALL_STATE(3880)] = 150244, + [SMALL_STATE(3881)] = 150286, + [SMALL_STATE(3882)] = 150330, + [SMALL_STATE(3883)] = 150372, + [SMALL_STATE(3884)] = 150414, + [SMALL_STATE(3885)] = 150456, + [SMALL_STATE(3886)] = 150498, + [SMALL_STATE(3887)] = 150540, + [SMALL_STATE(3888)] = 150590, + [SMALL_STATE(3889)] = 150632, + [SMALL_STATE(3890)] = 150674, + [SMALL_STATE(3891)] = 150720, + [SMALL_STATE(3892)] = 150762, + [SMALL_STATE(3893)] = 150808, + [SMALL_STATE(3894)] = 150850, + [SMALL_STATE(3895)] = 150892, + [SMALL_STATE(3896)] = 150934, + [SMALL_STATE(3897)] = 150976, + [SMALL_STATE(3898)] = 151018, + [SMALL_STATE(3899)] = 151064, + [SMALL_STATE(3900)] = 151106, + [SMALL_STATE(3901)] = 151148, + [SMALL_STATE(3902)] = 151190, + [SMALL_STATE(3903)] = 151232, + [SMALL_STATE(3904)] = 151274, + [SMALL_STATE(3905)] = 151316, + [SMALL_STATE(3906)] = 151358, + [SMALL_STATE(3907)] = 151400, + [SMALL_STATE(3908)] = 151442, + [SMALL_STATE(3909)] = 151484, + [SMALL_STATE(3910)] = 151526, + [SMALL_STATE(3911)] = 151568, + [SMALL_STATE(3912)] = 151610, + [SMALL_STATE(3913)] = 151654, + [SMALL_STATE(3914)] = 151696, + [SMALL_STATE(3915)] = 151738, + [SMALL_STATE(3916)] = 151780, + [SMALL_STATE(3917)] = 151824, + [SMALL_STATE(3918)] = 151866, + [SMALL_STATE(3919)] = 151908, + [SMALL_STATE(3920)] = 151950, + [SMALL_STATE(3921)] = 151992, + [SMALL_STATE(3922)] = 152036, + [SMALL_STATE(3923)] = 152082, + [SMALL_STATE(3924)] = 152130, + [SMALL_STATE(3925)] = 152184, + [SMALL_STATE(3926)] = 152240, + [SMALL_STATE(3927)] = 152298, + [SMALL_STATE(3928)] = 152358, + [SMALL_STATE(3929)] = 152420, + [SMALL_STATE(3930)] = 152484, + [SMALL_STATE(3931)] = 152550, + [SMALL_STATE(3932)] = 152602, + [SMALL_STATE(3933)] = 152652, + [SMALL_STATE(3934)] = 152694, + [SMALL_STATE(3935)] = 152736, + [SMALL_STATE(3936)] = 152778, + [SMALL_STATE(3937)] = 152822, + [SMALL_STATE(3938)] = 152868, + [SMALL_STATE(3939)] = 152920, + [SMALL_STATE(3940)] = 152974, + [SMALL_STATE(3941)] = 153030, + [SMALL_STATE(3942)] = 153088, + [SMALL_STATE(3943)] = 153148, + [SMALL_STATE(3944)] = 153210, + [SMALL_STATE(3945)] = 153274, + [SMALL_STATE(3946)] = 153324, + [SMALL_STATE(3947)] = 153372, + [SMALL_STATE(3948)] = 153414, + [SMALL_STATE(3949)] = 153460, + [SMALL_STATE(3950)] = 153502, + [SMALL_STATE(3951)] = 153544, + [SMALL_STATE(3952)] = 153586, + [SMALL_STATE(3953)] = 153632, + [SMALL_STATE(3954)] = 153680, + [SMALL_STATE(3955)] = 153730, + [SMALL_STATE(3956)] = 153786, + [SMALL_STATE(3957)] = 153844, + [SMALL_STATE(3958)] = 153904, + [SMALL_STATE(3959)] = 153966, + [SMALL_STATE(3960)] = 154030, + [SMALL_STATE(3961)] = 154096, + [SMALL_STATE(3962)] = 154164, + [SMALL_STATE(3963)] = 154218, + [SMALL_STATE(3964)] = 154260, + [SMALL_STATE(3965)] = 154302, + [SMALL_STATE(3966)] = 154354, + [SMALL_STATE(3967)] = 154396, + [SMALL_STATE(3968)] = 154438, + [SMALL_STATE(3969)] = 154484, + [SMALL_STATE(3970)] = 154526, + [SMALL_STATE(3971)] = 154568, + [SMALL_STATE(3972)] = 154610, + [SMALL_STATE(3973)] = 154654, + [SMALL_STATE(3974)] = 154698, + [SMALL_STATE(3975)] = 154744, + [SMALL_STATE(3976)] = 154786, + [SMALL_STATE(3977)] = 154869, + [SMALL_STATE(3978)] = 154952, + [SMALL_STATE(3979)] = 154993, + [SMALL_STATE(3980)] = 155076, + [SMALL_STATE(3981)] = 155159, + [SMALL_STATE(3982)] = 155226, + [SMALL_STATE(3983)] = 155267, + [SMALL_STATE(3984)] = 155312, + [SMALL_STATE(3985)] = 155395, + [SMALL_STATE(3986)] = 155462, + [SMALL_STATE(3987)] = 155503, + [SMALL_STATE(3988)] = 155586, + [SMALL_STATE(3989)] = 155669, + [SMALL_STATE(3990)] = 155752, + [SMALL_STATE(3991)] = 155835, + [SMALL_STATE(3992)] = 155918, + [SMALL_STATE(3993)] = 156001, + [SMALL_STATE(3994)] = 156084, + [SMALL_STATE(3995)] = 156167, + [SMALL_STATE(3996)] = 156250, + [SMALL_STATE(3997)] = 156291, + [SMALL_STATE(3998)] = 156374, + [SMALL_STATE(3999)] = 156457, + [SMALL_STATE(4000)] = 156540, + [SMALL_STATE(4001)] = 156623, + [SMALL_STATE(4002)] = 156706, + [SMALL_STATE(4003)] = 156789, + [SMALL_STATE(4004)] = 156834, + [SMALL_STATE(4005)] = 156917, + [SMALL_STATE(4006)] = 156958, + [SMALL_STATE(4007)] = 157041, + [SMALL_STATE(4008)] = 157108, + [SMALL_STATE(4009)] = 157191, + [SMALL_STATE(4010)] = 157258, + [SMALL_STATE(4011)] = 157341, + [SMALL_STATE(4012)] = 157424, + [SMALL_STATE(4013)] = 157465, + [SMALL_STATE(4014)] = 157506, + [SMALL_STATE(4015)] = 157573, + [SMALL_STATE(4016)] = 157640, + [SMALL_STATE(4017)] = 157723, + [SMALL_STATE(4018)] = 157781, + [SMALL_STATE(4019)] = 157843, + [SMALL_STATE(4020)] = 157883, + [SMALL_STATE(4021)] = 157923, + [SMALL_STATE(4022)] = 157965, + [SMALL_STATE(4023)] = 158009, + [SMALL_STATE(4024)] = 158059, + [SMALL_STATE(4025)] = 158111, + [SMALL_STATE(4026)] = 158165, + [SMALL_STATE(4027)] = 158221, + [SMALL_STATE(4028)] = 158281, + [SMALL_STATE(4029)] = 158343, + [SMALL_STATE(4030)] = 158391, + [SMALL_STATE(4031)] = 158437, + [SMALL_STATE(4032)] = 158491, + [SMALL_STATE(4033)] = 158537, + [SMALL_STATE(4034)] = 158581, + [SMALL_STATE(4035)] = 158637, + [SMALL_STATE(4036)] = 158681, + [SMALL_STATE(4037)] = 158729, + [SMALL_STATE(4038)] = 158771, + [SMALL_STATE(4039)] = 158815, + [SMALL_STATE(4040)] = 158859, + [SMALL_STATE(4041)] = 158903, + [SMALL_STATE(4042)] = 158943, + [SMALL_STATE(4043)] = 158995, + [SMALL_STATE(4044)] = 159053, + [SMALL_STATE(4045)] = 159113, + [SMALL_STATE(4046)] = 159163, + [SMALL_STATE(4047)] = 159240, + [SMALL_STATE(4048)] = 159285, + [SMALL_STATE(4049)] = 159346, + [SMALL_STATE(4050)] = 159385, + [SMALL_STATE(4051)] = 159446, + [SMALL_STATE(4052)] = 159485, + [SMALL_STATE(4053)] = 159524, + [SMALL_STATE(4054)] = 159601, + [SMALL_STATE(4055)] = 159678, + [SMALL_STATE(4056)] = 159739, + [SMALL_STATE(4057)] = 159800, + [SMALL_STATE(4058)] = 159877, + [SMALL_STATE(4059)] = 159916, + [SMALL_STATE(4060)] = 159993, + [SMALL_STATE(4061)] = 160070, + [SMALL_STATE(4062)] = 160147, + [SMALL_STATE(4063)] = 160186, + [SMALL_STATE(4064)] = 160263, + [SMALL_STATE(4065)] = 160340, + [SMALL_STATE(4066)] = 160401, + [SMALL_STATE(4067)] = 160462, + [SMALL_STATE(4068)] = 160523, + [SMALL_STATE(4069)] = 160600, + [SMALL_STATE(4070)] = 160661, + [SMALL_STATE(4071)] = 160700, + [SMALL_STATE(4072)] = 160777, + [SMALL_STATE(4073)] = 160854, + [SMALL_STATE(4074)] = 160915, + [SMALL_STATE(4075)] = 160959, + [SMALL_STATE(4076)] = 161013, + [SMALL_STATE(4077)] = 161066, + [SMALL_STATE(4078)] = 161117, + [SMALL_STATE(4079)] = 161168, + [SMALL_STATE(4080)] = 161218, + [SMALL_STATE(4081)] = 161258, + [SMALL_STATE(4082)] = 161308, + [SMALL_STATE(4083)] = 161358, + [SMALL_STATE(4084)] = 161414, + [SMALL_STATE(4085)] = 161454, + [SMALL_STATE(4086)] = 161497, + [SMALL_STATE(4087)] = 161540, + [SMALL_STATE(4088)] = 161593, + [SMALL_STATE(4089)] = 161632, + [SMALL_STATE(4090)] = 161679, + [SMALL_STATE(4091)] = 161722, + [SMALL_STATE(4092)] = 161765, + [SMALL_STATE(4093)] = 161802, + [SMALL_STATE(4094)] = 161857, + [SMALL_STATE(4095)] = 161900, + [SMALL_STATE(4096)] = 161937, + [SMALL_STATE(4097)] = 161980, + [SMALL_STATE(4098)] = 162033, + [SMALL_STATE(4099)] = 162076, + [SMALL_STATE(4100)] = 162115, + [SMALL_STATE(4101)] = 162158, + [SMALL_STATE(4102)] = 162201, + [SMALL_STATE(4103)] = 162254, + [SMALL_STATE(4104)] = 162297, + [SMALL_STATE(4105)] = 162340, + [SMALL_STATE(4106)] = 162387, + [SMALL_STATE(4107)] = 162430, + [SMALL_STATE(4108)] = 162473, + [SMALL_STATE(4109)] = 162520, + [SMALL_STATE(4110)] = 162567, + [SMALL_STATE(4111)] = 162614, + [SMALL_STATE(4112)] = 162657, + [SMALL_STATE(4113)] = 162700, + [SMALL_STATE(4114)] = 162743, + [SMALL_STATE(4115)] = 162786, + [SMALL_STATE(4116)] = 162829, + [SMALL_STATE(4117)] = 162872, + [SMALL_STATE(4118)] = 162915, + [SMALL_STATE(4119)] = 162958, + [SMALL_STATE(4120)] = 163001, + [SMALL_STATE(4121)] = 163039, + [SMALL_STATE(4122)] = 163081, + [SMALL_STATE(4123)] = 163119, + [SMALL_STATE(4124)] = 163153, + [SMALL_STATE(4125)] = 163191, + [SMALL_STATE(4126)] = 163243, + [SMALL_STATE(4127)] = 163279, + [SMALL_STATE(4128)] = 163325, + [SMALL_STATE(4129)] = 163377, + [SMALL_STATE(4130)] = 163411, + [SMALL_STATE(4131)] = 163463, + [SMALL_STATE(4132)] = 163513, + [SMALL_STATE(4133)] = 163549, + [SMALL_STATE(4134)] = 163583, + [SMALL_STATE(4135)] = 163633, + [SMALL_STATE(4136)] = 163683, + [SMALL_STATE(4137)] = 163717, + [SMALL_STATE(4138)] = 163755, + [SMALL_STATE(4139)] = 163805, + [SMALL_STATE(4140)] = 163846, + [SMALL_STATE(4141)] = 163887, + [SMALL_STATE(4142)] = 163928, + [SMALL_STATE(4143)] = 163977, + [SMALL_STATE(4144)] = 164018, + [SMALL_STATE(4145)] = 164059, + [SMALL_STATE(4146)] = 164100, + [SMALL_STATE(4147)] = 164141, + [SMALL_STATE(4148)] = 164182, + [SMALL_STATE(4149)] = 164223, + [SMALL_STATE(4150)] = 164256, + [SMALL_STATE(4151)] = 164297, + [SMALL_STATE(4152)] = 164338, + [SMALL_STATE(4153)] = 164387, + [SMALL_STATE(4154)] = 164428, + [SMALL_STATE(4155)] = 164469, + [SMALL_STATE(4156)] = 164510, + [SMALL_STATE(4157)] = 164551, + [SMALL_STATE(4158)] = 164588, + [SMALL_STATE(4159)] = 164625, + [SMALL_STATE(4160)] = 164666, + [SMALL_STATE(4161)] = 164701, + [SMALL_STATE(4162)] = 164748, + [SMALL_STATE(4163)] = 164789, + [SMALL_STATE(4164)] = 164830, + [SMALL_STATE(4165)] = 164867, + [SMALL_STATE(4166)] = 164908, + [SMALL_STATE(4167)] = 164949, + [SMALL_STATE(4168)] = 164990, + [SMALL_STATE(4169)] = 165027, + [SMALL_STATE(4170)] = 165068, + [SMALL_STATE(4171)] = 165103, + [SMALL_STATE(4172)] = 165144, + [SMALL_STATE(4173)] = 165185, + [SMALL_STATE(4174)] = 165220, + [SMALL_STATE(4175)] = 165269, + [SMALL_STATE(4176)] = 165302, + [SMALL_STATE(4177)] = 165335, + [SMALL_STATE(4178)] = 165368, + [SMALL_STATE(4179)] = 165403, + [SMALL_STATE(4180)] = 165452, + [SMALL_STATE(4181)] = 165493, + [SMALL_STATE(4182)] = 165531, + [SMALL_STATE(4183)] = 165565, + [SMALL_STATE(4184)] = 165597, + [SMALL_STATE(4185)] = 165649, + [SMALL_STATE(4186)] = 165687, + [SMALL_STATE(4187)] = 165725, + [SMALL_STATE(4188)] = 165757, + [SMALL_STATE(4189)] = 165791, + [SMALL_STATE(4190)] = 165827, + [SMALL_STATE(4191)] = 165861, + [SMALL_STATE(4192)] = 165897, + [SMALL_STATE(4193)] = 165929, + [SMALL_STATE(4194)] = 165963, + [SMALL_STATE(4195)] = 165997, + [SMALL_STATE(4196)] = 166043, + [SMALL_STATE(4197)] = 166075, + [SMALL_STATE(4198)] = 166107, + [SMALL_STATE(4199)] = 166139, + [SMALL_STATE(4200)] = 166171, + [SMALL_STATE(4201)] = 166203, + [SMALL_STATE(4202)] = 166235, + [SMALL_STATE(4203)] = 166271, + [SMALL_STATE(4204)] = 166311, + [SMALL_STATE(4205)] = 166343, + [SMALL_STATE(4206)] = 166375, + [SMALL_STATE(4207)] = 166415, + [SMALL_STATE(4208)] = 166446, + [SMALL_STATE(4209)] = 166479, + [SMALL_STATE(4210)] = 166510, + [SMALL_STATE(4211)] = 166541, + [SMALL_STATE(4212)] = 166572, + [SMALL_STATE(4213)] = 166603, + [SMALL_STATE(4214)] = 166634, + [SMALL_STATE(4215)] = 166665, + [SMALL_STATE(4216)] = 166696, + [SMALL_STATE(4217)] = 166729, + [SMALL_STATE(4218)] = 166760, + [SMALL_STATE(4219)] = 166791, + [SMALL_STATE(4220)] = 166828, + [SMALL_STATE(4221)] = 166859, + [SMALL_STATE(4222)] = 166910, + [SMALL_STATE(4223)] = 166941, + [SMALL_STATE(4224)] = 166972, + [SMALL_STATE(4225)] = 167003, + [SMALL_STATE(4226)] = 167044, + [SMALL_STATE(4227)] = 167083, + [SMALL_STATE(4228)] = 167116, + [SMALL_STATE(4229)] = 167147, + [SMALL_STATE(4230)] = 167178, + [SMALL_STATE(4231)] = 167209, + [SMALL_STATE(4232)] = 167240, + [SMALL_STATE(4233)] = 167277, + [SMALL_STATE(4234)] = 167326, + [SMALL_STATE(4235)] = 167361, + [SMALL_STATE(4236)] = 167392, + [SMALL_STATE(4237)] = 167427, + [SMALL_STATE(4238)] = 167466, + [SMALL_STATE(4239)] = 167499, + [SMALL_STATE(4240)] = 167532, + [SMALL_STATE(4241)] = 167581, + [SMALL_STATE(4242)] = 167616, + [SMALL_STATE(4243)] = 167647, + [SMALL_STATE(4244)] = 167678, + [SMALL_STATE(4245)] = 167709, + [SMALL_STATE(4246)] = 167740, + [SMALL_STATE(4247)] = 167771, + [SMALL_STATE(4248)] = 167806, + [SMALL_STATE(4249)] = 167841, + [SMALL_STATE(4250)] = 167878, + [SMALL_STATE(4251)] = 167909, + [SMALL_STATE(4252)] = 167940, + [SMALL_STATE(4253)] = 167971, + [SMALL_STATE(4254)] = 168020, + [SMALL_STATE(4255)] = 168051, + [SMALL_STATE(4256)] = 168086, + [SMALL_STATE(4257)] = 168121, + [SMALL_STATE(4258)] = 168152, + [SMALL_STATE(4259)] = 168183, + [SMALL_STATE(4260)] = 168214, + [SMALL_STATE(4261)] = 168245, + [SMALL_STATE(4262)] = 168276, + [SMALL_STATE(4263)] = 168307, + [SMALL_STATE(4264)] = 168338, + [SMALL_STATE(4265)] = 168369, + [SMALL_STATE(4266)] = 168400, + [SMALL_STATE(4267)] = 168431, + [SMALL_STATE(4268)] = 168462, + [SMALL_STATE(4269)] = 168493, + [SMALL_STATE(4270)] = 168524, + [SMALL_STATE(4271)] = 168555, + [SMALL_STATE(4272)] = 168586, + [SMALL_STATE(4273)] = 168617, + [SMALL_STATE(4274)] = 168648, + [SMALL_STATE(4275)] = 168680, + [SMALL_STATE(4276)] = 168714, + [SMALL_STATE(4277)] = 168760, + [SMALL_STATE(4278)] = 168790, + [SMALL_STATE(4279)] = 168826, + [SMALL_STATE(4280)] = 168860, + [SMALL_STATE(4281)] = 168906, + [SMALL_STATE(4282)] = 168954, + [SMALL_STATE(4283)] = 168988, + [SMALL_STATE(4284)] = 169018, + [SMALL_STATE(4285)] = 169052, + [SMALL_STATE(4286)] = 169082, + [SMALL_STATE(4287)] = 169114, + [SMALL_STATE(4288)] = 169146, + [SMALL_STATE(4289)] = 169178, + [SMALL_STATE(4290)] = 169208, + [SMALL_STATE(4291)] = 169240, + [SMALL_STATE(4292)] = 169272, + [SMALL_STATE(4293)] = 169302, + [SMALL_STATE(4294)] = 169334, + [SMALL_STATE(4295)] = 169364, + [SMALL_STATE(4296)] = 169394, + [SMALL_STATE(4297)] = 169426, + [SMALL_STATE(4298)] = 169470, + [SMALL_STATE(4299)] = 169504, + [SMALL_STATE(4300)] = 169550, + [SMALL_STATE(4301)] = 169582, + [SMALL_STATE(4302)] = 169622, + [SMALL_STATE(4303)] = 169652, + [SMALL_STATE(4304)] = 169684, + [SMALL_STATE(4305)] = 169716, + [SMALL_STATE(4306)] = 169746, + [SMALL_STATE(4307)] = 169794, + [SMALL_STATE(4308)] = 169832, + [SMALL_STATE(4309)] = 169870, + [SMALL_STATE(4310)] = 169902, + [SMALL_STATE(4311)] = 169934, + [SMALL_STATE(4312)] = 169964, + [SMALL_STATE(4313)] = 169994, + [SMALL_STATE(4314)] = 170024, + [SMALL_STATE(4315)] = 170070, + [SMALL_STATE(4316)] = 170100, + [SMALL_STATE(4317)] = 170129, + [SMALL_STATE(4318)] = 170158, + [SMALL_STATE(4319)] = 170187, + [SMALL_STATE(4320)] = 170218, + [SMALL_STATE(4321)] = 170247, + [SMALL_STATE(4322)] = 170278, + [SMALL_STATE(4323)] = 170307, + [SMALL_STATE(4324)] = 170344, + [SMALL_STATE(4325)] = 170375, + [SMALL_STATE(4326)] = 170406, + [SMALL_STATE(4327)] = 170437, + [SMALL_STATE(4328)] = 170466, + [SMALL_STATE(4329)] = 170495, + [SMALL_STATE(4330)] = 170532, + [SMALL_STATE(4331)] = 170561, + [SMALL_STATE(4332)] = 170590, + [SMALL_STATE(4333)] = 170619, + [SMALL_STATE(4334)] = 170656, + [SMALL_STATE(4335)] = 170685, + [SMALL_STATE(4336)] = 170722, + [SMALL_STATE(4337)] = 170753, + [SMALL_STATE(4338)] = 170786, + [SMALL_STATE(4339)] = 170815, + [SMALL_STATE(4340)] = 170844, + [SMALL_STATE(4341)] = 170873, + [SMALL_STATE(4342)] = 170910, + [SMALL_STATE(4343)] = 170939, + [SMALL_STATE(4344)] = 170968, + [SMALL_STATE(4345)] = 170997, + [SMALL_STATE(4346)] = 171026, + [SMALL_STATE(4347)] = 171063, + [SMALL_STATE(4348)] = 171094, + [SMALL_STATE(4349)] = 171123, + [SMALL_STATE(4350)] = 171152, + [SMALL_STATE(4351)] = 171189, + [SMALL_STATE(4352)] = 171218, + [SMALL_STATE(4353)] = 171247, + [SMALL_STATE(4354)] = 171276, + [SMALL_STATE(4355)] = 171313, + [SMALL_STATE(4356)] = 171350, + [SMALL_STATE(4357)] = 171379, + [SMALL_STATE(4358)] = 171408, + [SMALL_STATE(4359)] = 171437, + [SMALL_STATE(4360)] = 171466, + [SMALL_STATE(4361)] = 171495, + [SMALL_STATE(4362)] = 171526, + [SMALL_STATE(4363)] = 171555, + [SMALL_STATE(4364)] = 171584, + [SMALL_STATE(4365)] = 171615, + [SMALL_STATE(4366)] = 171646, + [SMALL_STATE(4367)] = 171675, + [SMALL_STATE(4368)] = 171704, + [SMALL_STATE(4369)] = 171737, + [SMALL_STATE(4370)] = 171774, + [SMALL_STATE(4371)] = 171811, + [SMALL_STATE(4372)] = 171840, + [SMALL_STATE(4373)] = 171877, + [SMALL_STATE(4374)] = 171910, + [SMALL_STATE(4375)] = 171943, + [SMALL_STATE(4376)] = 171980, + [SMALL_STATE(4377)] = 172013, + [SMALL_STATE(4378)] = 172050, + [SMALL_STATE(4379)] = 172079, + [SMALL_STATE(4380)] = 172110, + [SMALL_STATE(4381)] = 172147, + [SMALL_STATE(4382)] = 172176, + [SMALL_STATE(4383)] = 172213, + [SMALL_STATE(4384)] = 172250, + [SMALL_STATE(4385)] = 172281, + [SMALL_STATE(4386)] = 172324, + [SMALL_STATE(4387)] = 172355, + [SMALL_STATE(4388)] = 172384, + [SMALL_STATE(4389)] = 172421, + [SMALL_STATE(4390)] = 172450, + [SMALL_STATE(4391)] = 172483, + [SMALL_STATE(4392)] = 172520, + [SMALL_STATE(4393)] = 172549, + [SMALL_STATE(4394)] = 172580, + [SMALL_STATE(4395)] = 172611, + [SMALL_STATE(4396)] = 172648, + [SMALL_STATE(4397)] = 172677, + [SMALL_STATE(4398)] = 172706, + [SMALL_STATE(4399)] = 172737, + [SMALL_STATE(4400)] = 172768, + [SMALL_STATE(4401)] = 172797, + [SMALL_STATE(4402)] = 172834, + [SMALL_STATE(4403)] = 172863, + [SMALL_STATE(4404)] = 172900, + [SMALL_STATE(4405)] = 172929, + [SMALL_STATE(4406)] = 172960, + [SMALL_STATE(4407)] = 172989, + [SMALL_STATE(4408)] = 173018, + [SMALL_STATE(4409)] = 173047, + [SMALL_STATE(4410)] = 173076, + [SMALL_STATE(4411)] = 173113, + [SMALL_STATE(4412)] = 173142, + [SMALL_STATE(4413)] = 173179, + [SMALL_STATE(4414)] = 173208, + [SMALL_STATE(4415)] = 173245, + [SMALL_STATE(4416)] = 173274, + [SMALL_STATE(4417)] = 173307, + [SMALL_STATE(4418)] = 173336, + [SMALL_STATE(4419)] = 173367, + [SMALL_STATE(4420)] = 173398, + [SMALL_STATE(4421)] = 173429, + [SMALL_STATE(4422)] = 173460, + [SMALL_STATE(4423)] = 173489, + [SMALL_STATE(4424)] = 173518, + [SMALL_STATE(4425)] = 173547, + [SMALL_STATE(4426)] = 173584, + [SMALL_STATE(4427)] = 173621, + [SMALL_STATE(4428)] = 173652, + [SMALL_STATE(4429)] = 173683, + [SMALL_STATE(4430)] = 173716, + [SMALL_STATE(4431)] = 173753, + [SMALL_STATE(4432)] = 173784, + [SMALL_STATE(4433)] = 173821, + [SMALL_STATE(4434)] = 173858, + [SMALL_STATE(4435)] = 173895, + [SMALL_STATE(4436)] = 173924, + [SMALL_STATE(4437)] = 173955, + [SMALL_STATE(4438)] = 173992, + [SMALL_STATE(4439)] = 174029, + [SMALL_STATE(4440)] = 174058, + [SMALL_STATE(4441)] = 174094, + [SMALL_STATE(4442)] = 174126, + [SMALL_STATE(4443)] = 174154, + [SMALL_STATE(4444)] = 174186, + [SMALL_STATE(4445)] = 174214, + [SMALL_STATE(4446)] = 174250, + [SMALL_STATE(4447)] = 174282, + [SMALL_STATE(4448)] = 174310, + [SMALL_STATE(4449)] = 174338, + [SMALL_STATE(4450)] = 174368, + [SMALL_STATE(4451)] = 174400, + [SMALL_STATE(4452)] = 174432, + [SMALL_STATE(4453)] = 174460, + [SMALL_STATE(4454)] = 174496, + [SMALL_STATE(4455)] = 174526, + [SMALL_STATE(4456)] = 174572, + [SMALL_STATE(4457)] = 174602, + [SMALL_STATE(4458)] = 174654, + [SMALL_STATE(4459)] = 174690, + [SMALL_STATE(4460)] = 174722, + [SMALL_STATE(4461)] = 174750, + [SMALL_STATE(4462)] = 174786, + [SMALL_STATE(4463)] = 174822, + [SMALL_STATE(4464)] = 174854, + [SMALL_STATE(4465)] = 174890, + [SMALL_STATE(4466)] = 174922, + [SMALL_STATE(4467)] = 174958, + [SMALL_STATE(4468)] = 174986, + [SMALL_STATE(4469)] = 175022, + [SMALL_STATE(4470)] = 175058, + [SMALL_STATE(4471)] = 175088, + [SMALL_STATE(4472)] = 175124, + [SMALL_STATE(4473)] = 175154, + [SMALL_STATE(4474)] = 175182, + [SMALL_STATE(4475)] = 175210, + [SMALL_STATE(4476)] = 175238, + [SMALL_STATE(4477)] = 175274, + [SMALL_STATE(4478)] = 175306, + [SMALL_STATE(4479)] = 175342, + [SMALL_STATE(4480)] = 175370, + [SMALL_STATE(4481)] = 175406, + [SMALL_STATE(4482)] = 175444, + [SMALL_STATE(4483)] = 175474, + [SMALL_STATE(4484)] = 175504, + [SMALL_STATE(4485)] = 175540, + [SMALL_STATE(4486)] = 175572, + [SMALL_STATE(4487)] = 175600, + [SMALL_STATE(4488)] = 175630, + [SMALL_STATE(4489)] = 175666, + [SMALL_STATE(4490)] = 175702, + [SMALL_STATE(4491)] = 175732, + [SMALL_STATE(4492)] = 175768, + [SMALL_STATE(4493)] = 175804, + [SMALL_STATE(4494)] = 175840, + [SMALL_STATE(4495)] = 175870, + [SMALL_STATE(4496)] = 175906, + [SMALL_STATE(4497)] = 175942, + [SMALL_STATE(4498)] = 175976, + [SMALL_STATE(4499)] = 176008, + [SMALL_STATE(4500)] = 176040, + [SMALL_STATE(4501)] = 176076, + [SMALL_STATE(4502)] = 176106, + [SMALL_STATE(4503)] = 176142, + [SMALL_STATE(4504)] = 176178, + [SMALL_STATE(4505)] = 176224, + [SMALL_STATE(4506)] = 176254, + [SMALL_STATE(4507)] = 176290, + [SMALL_STATE(4508)] = 176318, + [SMALL_STATE(4509)] = 176354, + [SMALL_STATE(4510)] = 176388, + [SMALL_STATE(4511)] = 176420, + [SMALL_STATE(4512)] = 176456, + [SMALL_STATE(4513)] = 176484, + [SMALL_STATE(4514)] = 176512, + [SMALL_STATE(4515)] = 176550, + [SMALL_STATE(4516)] = 176578, + [SMALL_STATE(4517)] = 176608, + [SMALL_STATE(4518)] = 176636, + [SMALL_STATE(4519)] = 176666, + [SMALL_STATE(4520)] = 176696, + [SMALL_STATE(4521)] = 176728, + [SMALL_STATE(4522)] = 176760, + [SMALL_STATE(4523)] = 176796, + [SMALL_STATE(4524)] = 176828, + [SMALL_STATE(4525)] = 176858, + [SMALL_STATE(4526)] = 176885, + [SMALL_STATE(4527)] = 176914, + [SMALL_STATE(4528)] = 176939, + [SMALL_STATE(4529)] = 176968, + [SMALL_STATE(4530)] = 176999, + [SMALL_STATE(4531)] = 177028, + [SMALL_STATE(4532)] = 177055, + [SMALL_STATE(4533)] = 177082, + [SMALL_STATE(4534)] = 177113, + [SMALL_STATE(4535)] = 177144, + [SMALL_STATE(4536)] = 177171, + [SMALL_STATE(4537)] = 177202, + [SMALL_STATE(4538)] = 177229, + [SMALL_STATE(4539)] = 177256, + [SMALL_STATE(4540)] = 177283, + [SMALL_STATE(4541)] = 177316, + [SMALL_STATE(4542)] = 177345, + [SMALL_STATE(4543)] = 177374, + [SMALL_STATE(4544)] = 177403, + [SMALL_STATE(4545)] = 177434, + [SMALL_STATE(4546)] = 177463, + [SMALL_STATE(4547)] = 177494, + [SMALL_STATE(4548)] = 177525, + [SMALL_STATE(4549)] = 177556, + [SMALL_STATE(4550)] = 177583, + [SMALL_STATE(4551)] = 177614, + [SMALL_STATE(4552)] = 177645, + [SMALL_STATE(4553)] = 177672, + [SMALL_STATE(4554)] = 177703, + [SMALL_STATE(4555)] = 177730, + [SMALL_STATE(4556)] = 177761, + [SMALL_STATE(4557)] = 177788, + [SMALL_STATE(4558)] = 177819, + [SMALL_STATE(4559)] = 177850, + [SMALL_STATE(4560)] = 177877, + [SMALL_STATE(4561)] = 177912, + [SMALL_STATE(4562)] = 177943, + [SMALL_STATE(4563)] = 177974, + [SMALL_STATE(4564)] = 178001, + [SMALL_STATE(4565)] = 178028, + [SMALL_STATE(4566)] = 178059, + [SMALL_STATE(4567)] = 178088, + [SMALL_STATE(4568)] = 178115, + [SMALL_STATE(4569)] = 178148, + [SMALL_STATE(4570)] = 178181, + [SMALL_STATE(4571)] = 178210, + [SMALL_STATE(4572)] = 178237, + [SMALL_STATE(4573)] = 178266, + [SMALL_STATE(4574)] = 178295, + [SMALL_STATE(4575)] = 178322, + [SMALL_STATE(4576)] = 178357, + [SMALL_STATE(4577)] = 178388, + [SMALL_STATE(4578)] = 178413, + [SMALL_STATE(4579)] = 178444, + [SMALL_STATE(4580)] = 178475, + [SMALL_STATE(4581)] = 178510, + [SMALL_STATE(4582)] = 178545, + [SMALL_STATE(4583)] = 178572, + [SMALL_STATE(4584)] = 178599, + [SMALL_STATE(4585)] = 178632, + [SMALL_STATE(4586)] = 178659, + [SMALL_STATE(4587)] = 178692, + [SMALL_STATE(4588)] = 178719, + [SMALL_STATE(4589)] = 178746, + [SMALL_STATE(4590)] = 178773, + [SMALL_STATE(4591)] = 178804, + [SMALL_STATE(4592)] = 178831, + [SMALL_STATE(4593)] = 178856, + [SMALL_STATE(4594)] = 178883, + [SMALL_STATE(4595)] = 178910, + [SMALL_STATE(4596)] = 178939, + [SMALL_STATE(4597)] = 178968, + [SMALL_STATE(4598)] = 178995, + [SMALL_STATE(4599)] = 179022, + [SMALL_STATE(4600)] = 179053, + [SMALL_STATE(4601)] = 179088, + [SMALL_STATE(4602)] = 179115, + [SMALL_STATE(4603)] = 179146, + [SMALL_STATE(4604)] = 179171, + [SMALL_STATE(4605)] = 179198, + [SMALL_STATE(4606)] = 179233, + [SMALL_STATE(4607)] = 179260, + [SMALL_STATE(4608)] = 179293, + [SMALL_STATE(4609)] = 179324, + [SMALL_STATE(4610)] = 179355, + [SMALL_STATE(4611)] = 179384, + [SMALL_STATE(4612)] = 179409, + [SMALL_STATE(4613)] = 179440, + [SMALL_STATE(4614)] = 179473, + [SMALL_STATE(4615)] = 179504, + [SMALL_STATE(4616)] = 179537, + [SMALL_STATE(4617)] = 179564, + [SMALL_STATE(4618)] = 179595, + [SMALL_STATE(4619)] = 179622, + [SMALL_STATE(4620)] = 179655, + [SMALL_STATE(4621)] = 179688, + [SMALL_STATE(4622)] = 179717, + [SMALL_STATE(4623)] = 179748, + [SMALL_STATE(4624)] = 179779, + [SMALL_STATE(4625)] = 179810, + [SMALL_STATE(4626)] = 179835, + [SMALL_STATE(4627)] = 179862, + [SMALL_STATE(4628)] = 179895, + [SMALL_STATE(4629)] = 179924, + [SMALL_STATE(4630)] = 179951, + [SMALL_STATE(4631)] = 179982, + [SMALL_STATE(4632)] = 180013, + [SMALL_STATE(4633)] = 180046, + [SMALL_STATE(4634)] = 180079, + [SMALL_STATE(4635)] = 180112, + [SMALL_STATE(4636)] = 180145, + [SMALL_STATE(4637)] = 180178, + [SMALL_STATE(4638)] = 180205, + [SMALL_STATE(4639)] = 180232, + [SMALL_STATE(4640)] = 180263, + [SMALL_STATE(4641)] = 180294, + [SMALL_STATE(4642)] = 180325, + [SMALL_STATE(4643)] = 180350, + [SMALL_STATE(4644)] = 180385, + [SMALL_STATE(4645)] = 180412, + [SMALL_STATE(4646)] = 180441, + [SMALL_STATE(4647)] = 180476, + [SMALL_STATE(4648)] = 180503, + [SMALL_STATE(4649)] = 180534, + [SMALL_STATE(4650)] = 180565, + [SMALL_STATE(4651)] = 180592, + [SMALL_STATE(4652)] = 180623, + [SMALL_STATE(4653)] = 180654, + [SMALL_STATE(4654)] = 180685, + [SMALL_STATE(4655)] = 180718, + [SMALL_STATE(4656)] = 180743, + [SMALL_STATE(4657)] = 180774, + [SMALL_STATE(4658)] = 180805, + [SMALL_STATE(4659)] = 180832, + [SMALL_STATE(4660)] = 180865, + [SMALL_STATE(4661)] = 180892, + [SMALL_STATE(4662)] = 180917, + [SMALL_STATE(4663)] = 180944, + [SMALL_STATE(4664)] = 180973, + [SMALL_STATE(4665)] = 181002, + [SMALL_STATE(4666)] = 181033, + [SMALL_STATE(4667)] = 181068, + [SMALL_STATE(4668)] = 181099, + [SMALL_STATE(4669)] = 181126, + [SMALL_STATE(4670)] = 181157, + [SMALL_STATE(4671)] = 181182, + [SMALL_STATE(4672)] = 181209, + [SMALL_STATE(4673)] = 181238, + [SMALL_STATE(4674)] = 181265, + [SMALL_STATE(4675)] = 181296, + [SMALL_STATE(4676)] = 181323, + [SMALL_STATE(4677)] = 181352, + [SMALL_STATE(4678)] = 181383, + [SMALL_STATE(4679)] = 181410, + [SMALL_STATE(4680)] = 181441, + [SMALL_STATE(4681)] = 181466, + [SMALL_STATE(4682)] = 181499, + [SMALL_STATE(4683)] = 181528, + [SMALL_STATE(4684)] = 181553, + [SMALL_STATE(4685)] = 181582, + [SMALL_STATE(4686)] = 181609, + [SMALL_STATE(4687)] = 181634, + [SMALL_STATE(4688)] = 181661, + [SMALL_STATE(4689)] = 181690, + [SMALL_STATE(4690)] = 181719, + [SMALL_STATE(4691)] = 181746, + [SMALL_STATE(4692)] = 181777, + [SMALL_STATE(4693)] = 181804, + [SMALL_STATE(4694)] = 181835, + [SMALL_STATE(4695)] = 181868, + [SMALL_STATE(4696)] = 181895, + [SMALL_STATE(4697)] = 181924, + [SMALL_STATE(4698)] = 181951, + [SMALL_STATE(4699)] = 181982, + [SMALL_STATE(4700)] = 182013, + [SMALL_STATE(4701)] = 182044, + [SMALL_STATE(4702)] = 182075, + [SMALL_STATE(4703)] = 182104, + [SMALL_STATE(4704)] = 182135, + [SMALL_STATE(4705)] = 182164, + [SMALL_STATE(4706)] = 182191, + [SMALL_STATE(4707)] = 182222, + [SMALL_STATE(4708)] = 182255, + [SMALL_STATE(4709)] = 182280, + [SMALL_STATE(4710)] = 182311, + [SMALL_STATE(4711)] = 182336, + [SMALL_STATE(4712)] = 182367, + [SMALL_STATE(4713)] = 182394, + [SMALL_STATE(4714)] = 182428, + [SMALL_STATE(4715)] = 182460, + [SMALL_STATE(4716)] = 182494, + [SMALL_STATE(4717)] = 182528, + [SMALL_STATE(4718)] = 182562, + [SMALL_STATE(4719)] = 182588, + [SMALL_STATE(4720)] = 182612, + [SMALL_STATE(4721)] = 182664, + [SMALL_STATE(4722)] = 182716, + [SMALL_STATE(4723)] = 182740, + [SMALL_STATE(4724)] = 182774, + [SMALL_STATE(4725)] = 182798, + [SMALL_STATE(4726)] = 182822, + [SMALL_STATE(4727)] = 182846, + [SMALL_STATE(4728)] = 182870, + [SMALL_STATE(4729)] = 182894, + [SMALL_STATE(4730)] = 182920, + [SMALL_STATE(4731)] = 182944, + [SMALL_STATE(4732)] = 182970, + [SMALL_STATE(4733)] = 182998, + [SMALL_STATE(4734)] = 183022, + [SMALL_STATE(4735)] = 183046, + [SMALL_STATE(4736)] = 183074, + [SMALL_STATE(4737)] = 183108, + [SMALL_STATE(4738)] = 183132, + [SMALL_STATE(4739)] = 183166, + [SMALL_STATE(4740)] = 183190, + [SMALL_STATE(4741)] = 183216, + [SMALL_STATE(4742)] = 183242, + [SMALL_STATE(4743)] = 183270, + [SMALL_STATE(4744)] = 183294, + [SMALL_STATE(4745)] = 183328, + [SMALL_STATE(4746)] = 183372, + [SMALL_STATE(4747)] = 183424, + [SMALL_STATE(4748)] = 183476, + [SMALL_STATE(4749)] = 183510, + [SMALL_STATE(4750)] = 183540, + [SMALL_STATE(4751)] = 183568, + [SMALL_STATE(4752)] = 183598, + [SMALL_STATE(4753)] = 183628, + [SMALL_STATE(4754)] = 183656, + [SMALL_STATE(4755)] = 183686, + [SMALL_STATE(4756)] = 183712, + [SMALL_STATE(4757)] = 183740, + [SMALL_STATE(4758)] = 183770, + [SMALL_STATE(4759)] = 183800, + [SMALL_STATE(4760)] = 183826, + [SMALL_STATE(4761)] = 183856, + [SMALL_STATE(4762)] = 183882, + [SMALL_STATE(4763)] = 183906, + [SMALL_STATE(4764)] = 183936, + [SMALL_STATE(4765)] = 183966, + [SMALL_STATE(4766)] = 183996, + [SMALL_STATE(4767)] = 184040, + [SMALL_STATE(4768)] = 184066, + [SMALL_STATE(4769)] = 184110, + [SMALL_STATE(4770)] = 184162, + [SMALL_STATE(4771)] = 184192, + [SMALL_STATE(4772)] = 184216, + [SMALL_STATE(4773)] = 184240, + [SMALL_STATE(4774)] = 184270, + [SMALL_STATE(4775)] = 184300, + [SMALL_STATE(4776)] = 184334, + [SMALL_STATE(4777)] = 184358, + [SMALL_STATE(4778)] = 184384, + [SMALL_STATE(4779)] = 184414, + [SMALL_STATE(4780)] = 184440, + [SMALL_STATE(4781)] = 184492, + [SMALL_STATE(4782)] = 184526, + [SMALL_STATE(4783)] = 184566, + [SMALL_STATE(4784)] = 184594, + [SMALL_STATE(4785)] = 184622, + [SMALL_STATE(4786)] = 184656, + [SMALL_STATE(4787)] = 184708, + [SMALL_STATE(4788)] = 184748, + [SMALL_STATE(4789)] = 184776, + [SMALL_STATE(4790)] = 184828, + [SMALL_STATE(4791)] = 184854, + [SMALL_STATE(4792)] = 184888, + [SMALL_STATE(4793)] = 184918, + [SMALL_STATE(4794)] = 184952, + [SMALL_STATE(4795)] = 184982, + [SMALL_STATE(4796)] = 185016, + [SMALL_STATE(4797)] = 185060, + [SMALL_STATE(4798)] = 185084, + [SMALL_STATE(4799)] = 185110, + [SMALL_STATE(4800)] = 185136, + [SMALL_STATE(4801)] = 185176, + [SMALL_STATE(4802)] = 185206, + [SMALL_STATE(4803)] = 185230, + [SMALL_STATE(4804)] = 185260, + [SMALL_STATE(4805)] = 185288, + [SMALL_STATE(4806)] = 185312, + [SMALL_STATE(4807)] = 185338, + [SMALL_STATE(4808)] = 185364, + [SMALL_STATE(4809)] = 185388, + [SMALL_STATE(4810)] = 185412, + [SMALL_STATE(4811)] = 185442, + [SMALL_STATE(4812)] = 185472, + [SMALL_STATE(4813)] = 185506, + [SMALL_STATE(4814)] = 185532, + [SMALL_STATE(4815)] = 185556, + [SMALL_STATE(4816)] = 185582, + [SMALL_STATE(4817)] = 185606, + [SMALL_STATE(4818)] = 185636, + [SMALL_STATE(4819)] = 185670, + [SMALL_STATE(4820)] = 185700, + [SMALL_STATE(4821)] = 185726, + [SMALL_STATE(4822)] = 185758, + [SMALL_STATE(4823)] = 185786, + [SMALL_STATE(4824)] = 185812, + [SMALL_STATE(4825)] = 185836, + [SMALL_STATE(4826)] = 185864, + [SMALL_STATE(4827)] = 185890, + [SMALL_STATE(4828)] = 185924, + [SMALL_STATE(4829)] = 185950, + [SMALL_STATE(4830)] = 185978, + [SMALL_STATE(4831)] = 186006, + [SMALL_STATE(4832)] = 186032, + [SMALL_STATE(4833)] = 186058, + [SMALL_STATE(4834)] = 186092, + [SMALL_STATE(4835)] = 186122, + [SMALL_STATE(4836)] = 186156, + [SMALL_STATE(4837)] = 186190, + [SMALL_STATE(4838)] = 186242, + [SMALL_STATE(4839)] = 186294, + [SMALL_STATE(4840)] = 186318, + [SMALL_STATE(4841)] = 186352, + [SMALL_STATE(4842)] = 186382, + [SMALL_STATE(4843)] = 186410, + [SMALL_STATE(4844)] = 186438, + [SMALL_STATE(4845)] = 186472, + [SMALL_STATE(4846)] = 186496, + [SMALL_STATE(4847)] = 186522, + [SMALL_STATE(4848)] = 186548, + [SMALL_STATE(4849)] = 186574, + [SMALL_STATE(4850)] = 186598, + [SMALL_STATE(4851)] = 186622, + [SMALL_STATE(4852)] = 186652, + [SMALL_STATE(4853)] = 186676, + [SMALL_STATE(4854)] = 186702, + [SMALL_STATE(4855)] = 186726, + [SMALL_STATE(4856)] = 186750, + [SMALL_STATE(4857)] = 186784, + [SMALL_STATE(4858)] = 186814, + [SMALL_STATE(4859)] = 186848, + [SMALL_STATE(4860)] = 186888, + [SMALL_STATE(4861)] = 186913, + [SMALL_STATE(4862)] = 186944, + [SMALL_STATE(4863)] = 186969, + [SMALL_STATE(4864)] = 186994, + [SMALL_STATE(4865)] = 187019, + [SMALL_STATE(4866)] = 187064, + [SMALL_STATE(4867)] = 187089, + [SMALL_STATE(4868)] = 187118, + [SMALL_STATE(4869)] = 187143, + [SMALL_STATE(4870)] = 187172, + [SMALL_STATE(4871)] = 187199, + [SMALL_STATE(4872)] = 187224, + [SMALL_STATE(4873)] = 187249, + [SMALL_STATE(4874)] = 187274, + [SMALL_STATE(4875)] = 187301, + [SMALL_STATE(4876)] = 187326, + [SMALL_STATE(4877)] = 187353, + [SMALL_STATE(4878)] = 187378, + [SMALL_STATE(4879)] = 187403, + [SMALL_STATE(4880)] = 187428, + [SMALL_STATE(4881)] = 187453, + [SMALL_STATE(4882)] = 187480, + [SMALL_STATE(4883)] = 187509, + [SMALL_STATE(4884)] = 187538, + [SMALL_STATE(4885)] = 187567, + [SMALL_STATE(4886)] = 187592, + [SMALL_STATE(4887)] = 187621, + [SMALL_STATE(4888)] = 187646, + [SMALL_STATE(4889)] = 187671, + [SMALL_STATE(4890)] = 187696, + [SMALL_STATE(4891)] = 187721, + [SMALL_STATE(4892)] = 187746, + [SMALL_STATE(4893)] = 187773, + [SMALL_STATE(4894)] = 187798, + [SMALL_STATE(4895)] = 187823, + [SMALL_STATE(4896)] = 187848, + [SMALL_STATE(4897)] = 187879, + [SMALL_STATE(4898)] = 187904, + [SMALL_STATE(4899)] = 187929, + [SMALL_STATE(4900)] = 187954, + [SMALL_STATE(4901)] = 187981, + [SMALL_STATE(4902)] = 188010, + [SMALL_STATE(4903)] = 188035, + [SMALL_STATE(4904)] = 188060, + [SMALL_STATE(4905)] = 188085, + [SMALL_STATE(4906)] = 188126, + [SMALL_STATE(4907)] = 188151, + [SMALL_STATE(4908)] = 188176, + [SMALL_STATE(4909)] = 188201, + [SMALL_STATE(4910)] = 188226, + [SMALL_STATE(4911)] = 188251, + [SMALL_STATE(4912)] = 188274, + [SMALL_STATE(4913)] = 188299, + [SMALL_STATE(4914)] = 188324, + [SMALL_STATE(4915)] = 188349, + [SMALL_STATE(4916)] = 188374, + [SMALL_STATE(4917)] = 188403, + [SMALL_STATE(4918)] = 188430, + [SMALL_STATE(4919)] = 188457, + [SMALL_STATE(4920)] = 188482, + [SMALL_STATE(4921)] = 188507, + [SMALL_STATE(4922)] = 188532, + [SMALL_STATE(4923)] = 188557, + [SMALL_STATE(4924)] = 188588, + [SMALL_STATE(4925)] = 188617, + [SMALL_STATE(4926)] = 188642, + [SMALL_STATE(4927)] = 188671, + [SMALL_STATE(4928)] = 188696, + [SMALL_STATE(4929)] = 188721, + [SMALL_STATE(4930)] = 188746, + [SMALL_STATE(4931)] = 188775, + [SMALL_STATE(4932)] = 188804, + [SMALL_STATE(4933)] = 188829, + [SMALL_STATE(4934)] = 188854, + [SMALL_STATE(4935)] = 188879, + [SMALL_STATE(4936)] = 188908, + [SMALL_STATE(4937)] = 188933, + [SMALL_STATE(4938)] = 188962, + [SMALL_STATE(4939)] = 188991, + [SMALL_STATE(4940)] = 189020, + [SMALL_STATE(4941)] = 189045, + [SMALL_STATE(4942)] = 189070, + [SMALL_STATE(4943)] = 189097, + [SMALL_STATE(4944)] = 189128, + [SMALL_STATE(4945)] = 189157, + [SMALL_STATE(4946)] = 189182, + [SMALL_STATE(4947)] = 189207, + [SMALL_STATE(4948)] = 189232, + [SMALL_STATE(4949)] = 189261, + [SMALL_STATE(4950)] = 189286, + [SMALL_STATE(4951)] = 189311, + [SMALL_STATE(4952)] = 189336, + [SMALL_STATE(4953)] = 189367, + [SMALL_STATE(4954)] = 189396, + [SMALL_STATE(4955)] = 189421, + [SMALL_STATE(4956)] = 189450, + [SMALL_STATE(4957)] = 189475, + [SMALL_STATE(4958)] = 189500, + [SMALL_STATE(4959)] = 189525, + [SMALL_STATE(4960)] = 189550, + [SMALL_STATE(4961)] = 189579, + [SMALL_STATE(4962)] = 189604, + [SMALL_STATE(4963)] = 189629, + [SMALL_STATE(4964)] = 189654, + [SMALL_STATE(4965)] = 189683, + [SMALL_STATE(4966)] = 189706, + [SMALL_STATE(4967)] = 189735, + [SMALL_STATE(4968)] = 189780, + [SMALL_STATE(4969)] = 189809, + [SMALL_STATE(4970)] = 189834, + [SMALL_STATE(4971)] = 189863, + [SMALL_STATE(4972)] = 189892, + [SMALL_STATE(4973)] = 189917, + [SMALL_STATE(4974)] = 189942, + [SMALL_STATE(4975)] = 189965, + [SMALL_STATE(4976)] = 189994, + [SMALL_STATE(4977)] = 190019, + [SMALL_STATE(4978)] = 190048, + [SMALL_STATE(4979)] = 190077, + [SMALL_STATE(4980)] = 190102, + [SMALL_STATE(4981)] = 190127, + [SMALL_STATE(4982)] = 190152, + [SMALL_STATE(4983)] = 190181, + [SMALL_STATE(4984)] = 190206, + [SMALL_STATE(4985)] = 190231, + [SMALL_STATE(4986)] = 190256, + [SMALL_STATE(4987)] = 190285, + [SMALL_STATE(4988)] = 190310, + [SMALL_STATE(4989)] = 190335, + [SMALL_STATE(4990)] = 190362, + [SMALL_STATE(4991)] = 190387, + [SMALL_STATE(4992)] = 190412, + [SMALL_STATE(4993)] = 190437, + [SMALL_STATE(4994)] = 190462, + [SMALL_STATE(4995)] = 190487, + [SMALL_STATE(4996)] = 190512, + [SMALL_STATE(4997)] = 190537, + [SMALL_STATE(4998)] = 190566, + [SMALL_STATE(4999)] = 190591, + [SMALL_STATE(5000)] = 190616, + [SMALL_STATE(5001)] = 190641, + [SMALL_STATE(5002)] = 190666, + [SMALL_STATE(5003)] = 190691, + [SMALL_STATE(5004)] = 190714, + [SMALL_STATE(5005)] = 190743, + [SMALL_STATE(5006)] = 190766, + [SMALL_STATE(5007)] = 190795, + [SMALL_STATE(5008)] = 190824, + [SMALL_STATE(5009)] = 190853, + [SMALL_STATE(5010)] = 190882, + [SMALL_STATE(5011)] = 190907, + [SMALL_STATE(5012)] = 190932, + [SMALL_STATE(5013)] = 190961, + [SMALL_STATE(5014)] = 190990, + [SMALL_STATE(5015)] = 191015, + [SMALL_STATE(5016)] = 191040, + [SMALL_STATE(5017)] = 191065, + [SMALL_STATE(5018)] = 191090, + [SMALL_STATE(5019)] = 191115, + [SMALL_STATE(5020)] = 191139, + [SMALL_STATE(5021)] = 191183, + [SMALL_STATE(5022)] = 191209, + [SMALL_STATE(5023)] = 191233, + [SMALL_STATE(5024)] = 191257, + [SMALL_STATE(5025)] = 191291, + [SMALL_STATE(5026)] = 191315, + [SMALL_STATE(5027)] = 191339, + [SMALL_STATE(5028)] = 191363, + [SMALL_STATE(5029)] = 191397, + [SMALL_STATE(5030)] = 191421, + [SMALL_STATE(5031)] = 191467, + [SMALL_STATE(5032)] = 191493, + [SMALL_STATE(5033)] = 191517, + [SMALL_STATE(5034)] = 191541, + [SMALL_STATE(5035)] = 191565, + [SMALL_STATE(5036)] = 191589, + [SMALL_STATE(5037)] = 191613, + [SMALL_STATE(5038)] = 191651, + [SMALL_STATE(5039)] = 191689, + [SMALL_STATE(5040)] = 191717, + [SMALL_STATE(5041)] = 191741, + [SMALL_STATE(5042)] = 191765, + [SMALL_STATE(5043)] = 191787, + [SMALL_STATE(5044)] = 191815, + [SMALL_STATE(5045)] = 191839, + [SMALL_STATE(5046)] = 191873, + [SMALL_STATE(5047)] = 191897, + [SMALL_STATE(5048)] = 191931, + [SMALL_STATE(5049)] = 191965, + [SMALL_STATE(5050)] = 191999, + [SMALL_STATE(5051)] = 192023, + [SMALL_STATE(5052)] = 192069, + [SMALL_STATE(5053)] = 192093, + [SMALL_STATE(5054)] = 192117, + [SMALL_STATE(5055)] = 192141, + [SMALL_STATE(5056)] = 192169, + [SMALL_STATE(5057)] = 192191, + [SMALL_STATE(5058)] = 192215, + [SMALL_STATE(5059)] = 192239, + [SMALL_STATE(5060)] = 192267, + [SMALL_STATE(5061)] = 192291, + [SMALL_STATE(5062)] = 192315, + [SMALL_STATE(5063)] = 192339, + [SMALL_STATE(5064)] = 192363, + [SMALL_STATE(5065)] = 192385, + [SMALL_STATE(5066)] = 192407, + [SMALL_STATE(5067)] = 192431, + [SMALL_STATE(5068)] = 192455, + [SMALL_STATE(5069)] = 192501, + [SMALL_STATE(5070)] = 192525, + [SMALL_STATE(5071)] = 192549, + [SMALL_STATE(5072)] = 192573, + [SMALL_STATE(5073)] = 192619, + [SMALL_STATE(5074)] = 192647, + [SMALL_STATE(5075)] = 192671, + [SMALL_STATE(5076)] = 192695, + [SMALL_STATE(5077)] = 192723, + [SMALL_STATE(5078)] = 192751, + [SMALL_STATE(5079)] = 192775, + [SMALL_STATE(5080)] = 192799, + [SMALL_STATE(5081)] = 192823, + [SMALL_STATE(5082)] = 192847, + [SMALL_STATE(5083)] = 192869, + [SMALL_STATE(5084)] = 192891, + [SMALL_STATE(5085)] = 192913, + [SMALL_STATE(5086)] = 192937, + [SMALL_STATE(5087)] = 192963, + [SMALL_STATE(5088)] = 192987, + [SMALL_STATE(5089)] = 193027, + [SMALL_STATE(5090)] = 193051, + [SMALL_STATE(5091)] = 193077, + [SMALL_STATE(5092)] = 193101, + [SMALL_STATE(5093)] = 193129, + [SMALL_STATE(5094)] = 193153, + [SMALL_STATE(5095)] = 193175, + [SMALL_STATE(5096)] = 193197, + [SMALL_STATE(5097)] = 193219, + [SMALL_STATE(5098)] = 193245, + [SMALL_STATE(5099)] = 193271, + [SMALL_STATE(5100)] = 193317, + [SMALL_STATE(5101)] = 193341, + [SMALL_STATE(5102)] = 193365, + [SMALL_STATE(5103)] = 193389, + [SMALL_STATE(5104)] = 193413, + [SMALL_STATE(5105)] = 193437, + [SMALL_STATE(5106)] = 193461, + [SMALL_STATE(5107)] = 193487, + [SMALL_STATE(5108)] = 193511, + [SMALL_STATE(5109)] = 193535, + [SMALL_STATE(5110)] = 193561, + [SMALL_STATE(5111)] = 193585, + [SMALL_STATE(5112)] = 193609, + [SMALL_STATE(5113)] = 193633, + [SMALL_STATE(5114)] = 193657, + [SMALL_STATE(5115)] = 193679, + [SMALL_STATE(5116)] = 193701, + [SMALL_STATE(5117)] = 193725, + [SMALL_STATE(5118)] = 193749, + [SMALL_STATE(5119)] = 193773, + [SMALL_STATE(5120)] = 193797, + [SMALL_STATE(5121)] = 193819, + [SMALL_STATE(5122)] = 193843, + [SMALL_STATE(5123)] = 193867, + [SMALL_STATE(5124)] = 193891, + [SMALL_STATE(5125)] = 193915, + [SMALL_STATE(5126)] = 193939, + [SMALL_STATE(5127)] = 193961, + [SMALL_STATE(5128)] = 193985, + [SMALL_STATE(5129)] = 194009, + [SMALL_STATE(5130)] = 194033, + [SMALL_STATE(5131)] = 194057, + [SMALL_STATE(5132)] = 194081, + [SMALL_STATE(5133)] = 194105, + [SMALL_STATE(5134)] = 194129, + [SMALL_STATE(5135)] = 194153, + [SMALL_STATE(5136)] = 194175, + [SMALL_STATE(5137)] = 194199, + [SMALL_STATE(5138)] = 194223, + [SMALL_STATE(5139)] = 194269, + [SMALL_STATE(5140)] = 194297, + [SMALL_STATE(5141)] = 194339, + [SMALL_STATE(5142)] = 194363, + [SMALL_STATE(5143)] = 194385, + [SMALL_STATE(5144)] = 194409, + [SMALL_STATE(5145)] = 194435, + [SMALL_STATE(5146)] = 194459, + [SMALL_STATE(5147)] = 194487, + [SMALL_STATE(5148)] = 194515, + [SMALL_STATE(5149)] = 194537, + [SMALL_STATE(5150)] = 194563, + [SMALL_STATE(5151)] = 194587, + [SMALL_STATE(5152)] = 194613, + [SMALL_STATE(5153)] = 194639, + [SMALL_STATE(5154)] = 194665, + [SMALL_STATE(5155)] = 194699, + [SMALL_STATE(5156)] = 194741, + [SMALL_STATE(5157)] = 194767, + [SMALL_STATE(5158)] = 194789, + [SMALL_STATE(5159)] = 194813, + [SMALL_STATE(5160)] = 194859, + [SMALL_STATE(5161)] = 194883, + [SMALL_STATE(5162)] = 194911, + [SMALL_STATE(5163)] = 194945, + [SMALL_STATE(5164)] = 194973, + [SMALL_STATE(5165)] = 195019, + [SMALL_STATE(5166)] = 195057, + [SMALL_STATE(5167)] = 195091, + [SMALL_STATE(5168)] = 195125, + [SMALL_STATE(5169)] = 195171, + [SMALL_STATE(5170)] = 195195, + [SMALL_STATE(5171)] = 195223, + [SMALL_STATE(5172)] = 195251, + [SMALL_STATE(5173)] = 195285, + [SMALL_STATE(5174)] = 195319, + [SMALL_STATE(5175)] = 195343, + [SMALL_STATE(5176)] = 195371, + [SMALL_STATE(5177)] = 195413, + [SMALL_STATE(5178)] = 195437, + [SMALL_STATE(5179)] = 195483, + [SMALL_STATE(5180)] = 195507, + [SMALL_STATE(5181)] = 195535, + [SMALL_STATE(5182)] = 195559, + [SMALL_STATE(5183)] = 195583, + [SMALL_STATE(5184)] = 195627, + [SMALL_STATE(5185)] = 195661, + [SMALL_STATE(5186)] = 195685, + [SMALL_STATE(5187)] = 195709, + [SMALL_STATE(5188)] = 195733, + [SMALL_STATE(5189)] = 195757, + [SMALL_STATE(5190)] = 195781, + [SMALL_STATE(5191)] = 195803, + [SMALL_STATE(5192)] = 195827, + [SMALL_STATE(5193)] = 195855, + [SMALL_STATE(5194)] = 195877, + [SMALL_STATE(5195)] = 195899, + [SMALL_STATE(5196)] = 195923, + [SMALL_STATE(5197)] = 195947, + [SMALL_STATE(5198)] = 195984, + [SMALL_STATE(5199)] = 196005, + [SMALL_STATE(5200)] = 196036, + [SMALL_STATE(5201)] = 196057, + [SMALL_STATE(5202)] = 196078, + [SMALL_STATE(5203)] = 196101, + [SMALL_STATE(5204)] = 196124, + [SMALL_STATE(5205)] = 196147, + [SMALL_STATE(5206)] = 196168, + [SMALL_STATE(5207)] = 196195, + [SMALL_STATE(5208)] = 196222, + [SMALL_STATE(5209)] = 196245, + [SMALL_STATE(5210)] = 196266, + [SMALL_STATE(5211)] = 196289, + [SMALL_STATE(5212)] = 196312, + [SMALL_STATE(5213)] = 196335, + [SMALL_STATE(5214)] = 196356, + [SMALL_STATE(5215)] = 196387, + [SMALL_STATE(5216)] = 196410, + [SMALL_STATE(5217)] = 196433, + [SMALL_STATE(5218)] = 196454, + [SMALL_STATE(5219)] = 196475, + [SMALL_STATE(5220)] = 196496, + [SMALL_STATE(5221)] = 196519, + [SMALL_STATE(5222)] = 196542, + [SMALL_STATE(5223)] = 196563, + [SMALL_STATE(5224)] = 196590, + [SMALL_STATE(5225)] = 196621, + [SMALL_STATE(5226)] = 196642, + [SMALL_STATE(5227)] = 196663, + [SMALL_STATE(5228)] = 196686, + [SMALL_STATE(5229)] = 196707, + [SMALL_STATE(5230)] = 196734, + [SMALL_STATE(5231)] = 196775, + [SMALL_STATE(5232)] = 196816, + [SMALL_STATE(5233)] = 196837, + [SMALL_STATE(5234)] = 196860, + [SMALL_STATE(5235)] = 196881, + [SMALL_STATE(5236)] = 196904, + [SMALL_STATE(5237)] = 196927, + [SMALL_STATE(5238)] = 196948, + [SMALL_STATE(5239)] = 196979, + [SMALL_STATE(5240)] = 197002, + [SMALL_STATE(5241)] = 197023, + [SMALL_STATE(5242)] = 197062, + [SMALL_STATE(5243)] = 197087, + [SMALL_STATE(5244)] = 197128, + [SMALL_STATE(5245)] = 197149, + [SMALL_STATE(5246)] = 197172, + [SMALL_STATE(5247)] = 197195, + [SMALL_STATE(5248)] = 197218, + [SMALL_STATE(5249)] = 197241, + [SMALL_STATE(5250)] = 197264, + [SMALL_STATE(5251)] = 197285, + [SMALL_STATE(5252)] = 197312, + [SMALL_STATE(5253)] = 197351, + [SMALL_STATE(5254)] = 197374, + [SMALL_STATE(5255)] = 197395, + [SMALL_STATE(5256)] = 197416, + [SMALL_STATE(5257)] = 197437, + [SMALL_STATE(5258)] = 197458, + [SMALL_STATE(5259)] = 197481, + [SMALL_STATE(5260)] = 197504, + [SMALL_STATE(5261)] = 197525, + [SMALL_STATE(5262)] = 197546, + [SMALL_STATE(5263)] = 197573, + [SMALL_STATE(5264)] = 197596, + [SMALL_STATE(5265)] = 197637, + [SMALL_STATE(5266)] = 197658, + [SMALL_STATE(5267)] = 197685, + [SMALL_STATE(5268)] = 197708, + [SMALL_STATE(5269)] = 197731, + [SMALL_STATE(5270)] = 197754, + [SMALL_STATE(5271)] = 197777, + [SMALL_STATE(5272)] = 197798, + [SMALL_STATE(5273)] = 197837, + [SMALL_STATE(5274)] = 197860, + [SMALL_STATE(5275)] = 197891, + [SMALL_STATE(5276)] = 197914, + [SMALL_STATE(5277)] = 197935, + [SMALL_STATE(5278)] = 197962, + [SMALL_STATE(5279)] = 197983, + [SMALL_STATE(5280)] = 198006, + [SMALL_STATE(5281)] = 198029, + [SMALL_STATE(5282)] = 198056, + [SMALL_STATE(5283)] = 198079, + [SMALL_STATE(5284)] = 198106, + [SMALL_STATE(5285)] = 198129, + [SMALL_STATE(5286)] = 198150, + [SMALL_STATE(5287)] = 198173, + [SMALL_STATE(5288)] = 198196, + [SMALL_STATE(5289)] = 198223, + [SMALL_STATE(5290)] = 198244, + [SMALL_STATE(5291)] = 198267, + [SMALL_STATE(5292)] = 198288, + [SMALL_STATE(5293)] = 198311, + [SMALL_STATE(5294)] = 198334, + [SMALL_STATE(5295)] = 198357, + [SMALL_STATE(5296)] = 198380, + [SMALL_STATE(5297)] = 198403, + [SMALL_STATE(5298)] = 198442, + [SMALL_STATE(5299)] = 198463, + [SMALL_STATE(5300)] = 198486, + [SMALL_STATE(5301)] = 198509, + [SMALL_STATE(5302)] = 198532, + [SMALL_STATE(5303)] = 198563, + [SMALL_STATE(5304)] = 198584, + [SMALL_STATE(5305)] = 198611, + [SMALL_STATE(5306)] = 198632, + [SMALL_STATE(5307)] = 198653, + [SMALL_STATE(5308)] = 198676, + [SMALL_STATE(5309)] = 198717, + [SMALL_STATE(5310)] = 198748, + [SMALL_STATE(5311)] = 198769, + [SMALL_STATE(5312)] = 198800, + [SMALL_STATE(5313)] = 198823, + [SMALL_STATE(5314)] = 198844, + [SMALL_STATE(5315)] = 198879, + [SMALL_STATE(5316)] = 198916, + [SMALL_STATE(5317)] = 198951, + [SMALL_STATE(5318)] = 198986, + [SMALL_STATE(5319)] = 199021, + [SMALL_STATE(5320)] = 199042, + [SMALL_STATE(5321)] = 199073, + [SMALL_STATE(5322)] = 199110, + [SMALL_STATE(5323)] = 199131, + [SMALL_STATE(5324)] = 199152, + [SMALL_STATE(5325)] = 199191, + [SMALL_STATE(5326)] = 199212, + [SMALL_STATE(5327)] = 199233, + [SMALL_STATE(5328)] = 199256, + [SMALL_STATE(5329)] = 199279, + [SMALL_STATE(5330)] = 199300, + [SMALL_STATE(5331)] = 199327, + [SMALL_STATE(5332)] = 199350, + [SMALL_STATE(5333)] = 199371, + [SMALL_STATE(5334)] = 199394, + [SMALL_STATE(5335)] = 199417, + [SMALL_STATE(5336)] = 199440, + [SMALL_STATE(5337)] = 199461, + [SMALL_STATE(5338)] = 199482, + [SMALL_STATE(5339)] = 199503, + [SMALL_STATE(5340)] = 199530, + [SMALL_STATE(5341)] = 199553, + [SMALL_STATE(5342)] = 199576, + [SMALL_STATE(5343)] = 199607, + [SMALL_STATE(5344)] = 199628, + [SMALL_STATE(5345)] = 199649, + [SMALL_STATE(5346)] = 199670, + [SMALL_STATE(5347)] = 199709, + [SMALL_STATE(5348)] = 199730, + [SMALL_STATE(5349)] = 199769, + [SMALL_STATE(5350)] = 199808, + [SMALL_STATE(5351)] = 199835, + [SMALL_STATE(5352)] = 199876, + [SMALL_STATE(5353)] = 199899, + [SMALL_STATE(5354)] = 199920, + [SMALL_STATE(5355)] = 199941, + [SMALL_STATE(5356)] = 199964, + [SMALL_STATE(5357)] = 200005, + [SMALL_STATE(5358)] = 200026, + [SMALL_STATE(5359)] = 200051, + [SMALL_STATE(5360)] = 200074, + [SMALL_STATE(5361)] = 200105, + [SMALL_STATE(5362)] = 200126, + [SMALL_STATE(5363)] = 200147, + [SMALL_STATE(5364)] = 200170, + [SMALL_STATE(5365)] = 200197, + [SMALL_STATE(5366)] = 200218, + [SMALL_STATE(5367)] = 200239, + [SMALL_STATE(5368)] = 200262, + [SMALL_STATE(5369)] = 200285, + [SMALL_STATE(5370)] = 200308, + [SMALL_STATE(5371)] = 200329, + [SMALL_STATE(5372)] = 200352, + [SMALL_STATE(5373)] = 200393, + [SMALL_STATE(5374)] = 200414, + [SMALL_STATE(5375)] = 200435, + [SMALL_STATE(5376)] = 200456, + [SMALL_STATE(5377)] = 200477, + [SMALL_STATE(5378)] = 200518, + [SMALL_STATE(5379)] = 200541, + [SMALL_STATE(5380)] = 200584, + [SMALL_STATE(5381)] = 200617, + [SMALL_STATE(5382)] = 200656, + [SMALL_STATE(5383)] = 200679, + [SMALL_STATE(5384)] = 200700, + [SMALL_STATE(5385)] = 200723, + [SMALL_STATE(5386)] = 200750, + [SMALL_STATE(5387)] = 200771, + [SMALL_STATE(5388)] = 200792, + [SMALL_STATE(5389)] = 200813, + [SMALL_STATE(5390)] = 200836, + [SMALL_STATE(5391)] = 200859, + [SMALL_STATE(5392)] = 200880, + [SMALL_STATE(5393)] = 200911, + [SMALL_STATE(5394)] = 200948, + [SMALL_STATE(5395)] = 200969, + [SMALL_STATE(5396)] = 200997, + [SMALL_STATE(5397)] = 201029, + [SMALL_STATE(5398)] = 201053, + [SMALL_STATE(5399)] = 201079, + [SMALL_STATE(5400)] = 201101, + [SMALL_STATE(5401)] = 201133, + [SMALL_STATE(5402)] = 201159, + [SMALL_STATE(5403)] = 201195, + [SMALL_STATE(5404)] = 201227, + [SMALL_STATE(5405)] = 201255, + [SMALL_STATE(5406)] = 201277, + [SMALL_STATE(5407)] = 201303, + [SMALL_STATE(5408)] = 201335, + [SMALL_STATE(5409)] = 201363, + [SMALL_STATE(5410)] = 201385, + [SMALL_STATE(5411)] = 201411, + [SMALL_STATE(5412)] = 201433, + [SMALL_STATE(5413)] = 201471, + [SMALL_STATE(5414)] = 201493, + [SMALL_STATE(5415)] = 201515, + [SMALL_STATE(5416)] = 201543, + [SMALL_STATE(5417)] = 201571, + [SMALL_STATE(5418)] = 201597, + [SMALL_STATE(5419)] = 201621, + [SMALL_STATE(5420)] = 201653, + [SMALL_STATE(5421)] = 201675, + [SMALL_STATE(5422)] = 201697, + [SMALL_STATE(5423)] = 201723, + [SMALL_STATE(5424)] = 201745, + [SMALL_STATE(5425)] = 201777, + [SMALL_STATE(5426)] = 201799, + [SMALL_STATE(5427)] = 201821, + [SMALL_STATE(5428)] = 201853, + [SMALL_STATE(5429)] = 201875, + [SMALL_STATE(5430)] = 201903, + [SMALL_STATE(5431)] = 201931, + [SMALL_STATE(5432)] = 201953, + [SMALL_STATE(5433)] = 201975, + [SMALL_STATE(5434)] = 202003, + [SMALL_STATE(5435)] = 202025, + [SMALL_STATE(5436)] = 202053, + [SMALL_STATE(5437)] = 202075, + [SMALL_STATE(5438)] = 202111, + [SMALL_STATE(5439)] = 202133, + [SMALL_STATE(5440)] = 202155, + [SMALL_STATE(5441)] = 202183, + [SMALL_STATE(5442)] = 202205, + [SMALL_STATE(5443)] = 202227, + [SMALL_STATE(5444)] = 202255, + [SMALL_STATE(5445)] = 202287, + [SMALL_STATE(5446)] = 202323, + [SMALL_STATE(5447)] = 202347, + [SMALL_STATE(5448)] = 202375, + [SMALL_STATE(5449)] = 202397, + [SMALL_STATE(5450)] = 202423, + [SMALL_STATE(5451)] = 202455, + [SMALL_STATE(5452)] = 202483, + [SMALL_STATE(5453)] = 202511, + [SMALL_STATE(5454)] = 202533, + [SMALL_STATE(5455)] = 202555, + [SMALL_STATE(5456)] = 202579, + [SMALL_STATE(5457)] = 202601, + [SMALL_STATE(5458)] = 202623, + [SMALL_STATE(5459)] = 202657, + [SMALL_STATE(5460)] = 202691, + [SMALL_STATE(5461)] = 202725, + [SMALL_STATE(5462)] = 202759, + [SMALL_STATE(5463)] = 202793, + [SMALL_STATE(5464)] = 202827, + [SMALL_STATE(5465)] = 202849, + [SMALL_STATE(5466)] = 202875, + [SMALL_STATE(5467)] = 202907, + [SMALL_STATE(5468)] = 202939, + [SMALL_STATE(5469)] = 202977, + [SMALL_STATE(5470)] = 203005, + [SMALL_STATE(5471)] = 203033, + [SMALL_STATE(5472)] = 203061, + [SMALL_STATE(5473)] = 203097, + [SMALL_STATE(5474)] = 203133, + [SMALL_STATE(5475)] = 203165, + [SMALL_STATE(5476)] = 203189, + [SMALL_STATE(5477)] = 203213, + [SMALL_STATE(5478)] = 203241, + [SMALL_STATE(5479)] = 203263, + [SMALL_STATE(5480)] = 203291, + [SMALL_STATE(5481)] = 203323, + [SMALL_STATE(5482)] = 203351, + [SMALL_STATE(5483)] = 203379, + [SMALL_STATE(5484)] = 203407, + [SMALL_STATE(5485)] = 203435, + [SMALL_STATE(5486)] = 203470, + [SMALL_STATE(5487)] = 203505, + [SMALL_STATE(5488)] = 203540, + [SMALL_STATE(5489)] = 203565, + [SMALL_STATE(5490)] = 203600, + [SMALL_STATE(5491)] = 203625, + [SMALL_STATE(5492)] = 203660, + [SMALL_STATE(5493)] = 203693, + [SMALL_STATE(5494)] = 203728, + [SMALL_STATE(5495)] = 203763, + [SMALL_STATE(5496)] = 203792, + [SMALL_STATE(5497)] = 203827, + [SMALL_STATE(5498)] = 203846, + [SMALL_STATE(5499)] = 203877, + [SMALL_STATE(5500)] = 203912, + [SMALL_STATE(5501)] = 203933, + [SMALL_STATE(5502)] = 203968, + [SMALL_STATE(5503)] = 203989, + [SMALL_STATE(5504)] = 204024, + [SMALL_STATE(5505)] = 204059, + [SMALL_STATE(5506)] = 204094, + [SMALL_STATE(5507)] = 204129, + [SMALL_STATE(5508)] = 204162, + [SMALL_STATE(5509)] = 204183, + [SMALL_STATE(5510)] = 204204, + [SMALL_STATE(5511)] = 204239, + [SMALL_STATE(5512)] = 204274, + [SMALL_STATE(5513)] = 204305, + [SMALL_STATE(5514)] = 204328, + [SMALL_STATE(5515)] = 204351, + [SMALL_STATE(5516)] = 204374, + [SMALL_STATE(5517)] = 204409, + [SMALL_STATE(5518)] = 204444, + [SMALL_STATE(5519)] = 204475, + [SMALL_STATE(5520)] = 204498, + [SMALL_STATE(5521)] = 204521, + [SMALL_STATE(5522)] = 204550, + [SMALL_STATE(5523)] = 204569, + [SMALL_STATE(5524)] = 204602, + [SMALL_STATE(5525)] = 204621, + [SMALL_STATE(5526)] = 204648, + [SMALL_STATE(5527)] = 204683, + [SMALL_STATE(5528)] = 204708, + [SMALL_STATE(5529)] = 204731, + [SMALL_STATE(5530)] = 204766, + [SMALL_STATE(5531)] = 204801, + [SMALL_STATE(5532)] = 204832, + [SMALL_STATE(5533)] = 204861, + [SMALL_STATE(5534)] = 204880, + [SMALL_STATE(5535)] = 204909, + [SMALL_STATE(5536)] = 204944, + [SMALL_STATE(5537)] = 204979, + [SMALL_STATE(5538)] = 205014, + [SMALL_STATE(5539)] = 205049, + [SMALL_STATE(5540)] = 205070, + [SMALL_STATE(5541)] = 205091, + [SMALL_STATE(5542)] = 205126, + [SMALL_STATE(5543)] = 205161, + [SMALL_STATE(5544)] = 205194, + [SMALL_STATE(5545)] = 205227, + [SMALL_STATE(5546)] = 205260, + [SMALL_STATE(5547)] = 205281, + [SMALL_STATE(5548)] = 205302, + [SMALL_STATE(5549)] = 205337, + [SMALL_STATE(5550)] = 205372, + [SMALL_STATE(5551)] = 205403, + [SMALL_STATE(5552)] = 205434, + [SMALL_STATE(5553)] = 205469, + [SMALL_STATE(5554)] = 205504, + [SMALL_STATE(5555)] = 205531, + [SMALL_STATE(5556)] = 205556, + [SMALL_STATE(5557)] = 205591, + [SMALL_STATE(5558)] = 205626, + [SMALL_STATE(5559)] = 205661, + [SMALL_STATE(5560)] = 205696, + [SMALL_STATE(5561)] = 205731, + [SMALL_STATE(5562)] = 205766, + [SMALL_STATE(5563)] = 205801, + [SMALL_STATE(5564)] = 205836, + [SMALL_STATE(5565)] = 205871, + [SMALL_STATE(5566)] = 205894, + [SMALL_STATE(5567)] = 205913, + [SMALL_STATE(5568)] = 205936, + [SMALL_STATE(5569)] = 205961, + [SMALL_STATE(5570)] = 205986, + [SMALL_STATE(5571)] = 206021, + [SMALL_STATE(5572)] = 206054, + [SMALL_STATE(5573)] = 206087, + [SMALL_STATE(5574)] = 206106, + [SMALL_STATE(5575)] = 206125, + [SMALL_STATE(5576)] = 206150, + [SMALL_STATE(5577)] = 206180, + [SMALL_STATE(5578)] = 206200, + [SMALL_STATE(5579)] = 206230, + [SMALL_STATE(5580)] = 206252, + [SMALL_STATE(5581)] = 206282, + [SMALL_STATE(5582)] = 206312, + [SMALL_STATE(5583)] = 206342, + [SMALL_STATE(5584)] = 206366, + [SMALL_STATE(5585)] = 206394, + [SMALL_STATE(5586)] = 206424, + [SMALL_STATE(5587)] = 206448, + [SMALL_STATE(5588)] = 206468, + [SMALL_STATE(5589)] = 206498, + [SMALL_STATE(5590)] = 206528, + [SMALL_STATE(5591)] = 206548, + [SMALL_STATE(5592)] = 206568, + [SMALL_STATE(5593)] = 206592, + [SMALL_STATE(5594)] = 206614, + [SMALL_STATE(5595)] = 206634, + [SMALL_STATE(5596)] = 206656, + [SMALL_STATE(5597)] = 206686, + [SMALL_STATE(5598)] = 206706, + [SMALL_STATE(5599)] = 206726, + [SMALL_STATE(5600)] = 206756, + [SMALL_STATE(5601)] = 206786, + [SMALL_STATE(5602)] = 206806, + [SMALL_STATE(5603)] = 206826, + [SMALL_STATE(5604)] = 206846, + [SMALL_STATE(5605)] = 206866, + [SMALL_STATE(5606)] = 206886, + [SMALL_STATE(5607)] = 206906, + [SMALL_STATE(5608)] = 206928, + [SMALL_STATE(5609)] = 206948, + [SMALL_STATE(5610)] = 206968, + [SMALL_STATE(5611)] = 206988, + [SMALL_STATE(5612)] = 207018, + [SMALL_STATE(5613)] = 207038, + [SMALL_STATE(5614)] = 207068, + [SMALL_STATE(5615)] = 207088, + [SMALL_STATE(5616)] = 207118, + [SMALL_STATE(5617)] = 207138, + [SMALL_STATE(5618)] = 207158, + [SMALL_STATE(5619)] = 207178, + [SMALL_STATE(5620)] = 207198, + [SMALL_STATE(5621)] = 207228, + [SMALL_STATE(5622)] = 207248, + [SMALL_STATE(5623)] = 207268, + [SMALL_STATE(5624)] = 207288, + [SMALL_STATE(5625)] = 207308, + [SMALL_STATE(5626)] = 207338, + [SMALL_STATE(5627)] = 207358, + [SMALL_STATE(5628)] = 207388, + [SMALL_STATE(5629)] = 207412, + [SMALL_STATE(5630)] = 207442, + [SMALL_STATE(5631)] = 207472, + [SMALL_STATE(5632)] = 207492, + [SMALL_STATE(5633)] = 207516, + [SMALL_STATE(5634)] = 207548, + [SMALL_STATE(5635)] = 207572, + [SMALL_STATE(5636)] = 207602, + [SMALL_STATE(5637)] = 207622, + [SMALL_STATE(5638)] = 207652, + [SMALL_STATE(5639)] = 207682, + [SMALL_STATE(5640)] = 207702, + [SMALL_STATE(5641)] = 207722, + [SMALL_STATE(5642)] = 207742, + [SMALL_STATE(5643)] = 207772, + [SMALL_STATE(5644)] = 207802, + [SMALL_STATE(5645)] = 207832, + [SMALL_STATE(5646)] = 207852, + [SMALL_STATE(5647)] = 207882, + [SMALL_STATE(5648)] = 207906, + [SMALL_STATE(5649)] = 207932, + [SMALL_STATE(5650)] = 207962, + [SMALL_STATE(5651)] = 207982, + [SMALL_STATE(5652)] = 208012, + [SMALL_STATE(5653)] = 208042, + [SMALL_STATE(5654)] = 208072, + [SMALL_STATE(5655)] = 208092, + [SMALL_STATE(5656)] = 208122, + [SMALL_STATE(5657)] = 208152, + [SMALL_STATE(5658)] = 208182, + [SMALL_STATE(5659)] = 208212, + [SMALL_STATE(5660)] = 208242, + [SMALL_STATE(5661)] = 208272, + [SMALL_STATE(5662)] = 208292, + [SMALL_STATE(5663)] = 208312, + [SMALL_STATE(5664)] = 208342, + [SMALL_STATE(5665)] = 208372, + [SMALL_STATE(5666)] = 208394, + [SMALL_STATE(5667)] = 208424, + [SMALL_STATE(5668)] = 208454, + [SMALL_STATE(5669)] = 208474, + [SMALL_STATE(5670)] = 208504, + [SMALL_STATE(5671)] = 208534, + [SMALL_STATE(5672)] = 208554, + [SMALL_STATE(5673)] = 208574, + [SMALL_STATE(5674)] = 208604, + [SMALL_STATE(5675)] = 208624, + [SMALL_STATE(5676)] = 208648, + [SMALL_STATE(5677)] = 208670, + [SMALL_STATE(5678)] = 208694, + [SMALL_STATE(5679)] = 208716, + [SMALL_STATE(5680)] = 208740, + [SMALL_STATE(5681)] = 208760, + [SMALL_STATE(5682)] = 208780, + [SMALL_STATE(5683)] = 208800, + [SMALL_STATE(5684)] = 208820, + [SMALL_STATE(5685)] = 208840, + [SMALL_STATE(5686)] = 208864, + [SMALL_STATE(5687)] = 208896, + [SMALL_STATE(5688)] = 208916, + [SMALL_STATE(5689)] = 208936, + [SMALL_STATE(5690)] = 208956, + [SMALL_STATE(5691)] = 208976, + [SMALL_STATE(5692)] = 208996, + [SMALL_STATE(5693)] = 209016, + [SMALL_STATE(5694)] = 209036, + [SMALL_STATE(5695)] = 209056, + [SMALL_STATE(5696)] = 209086, + [SMALL_STATE(5697)] = 209116, + [SMALL_STATE(5698)] = 209146, + [SMALL_STATE(5699)] = 209176, + [SMALL_STATE(5700)] = 209206, + [SMALL_STATE(5701)] = 209236, + [SMALL_STATE(5702)] = 209256, + [SMALL_STATE(5703)] = 209278, + [SMALL_STATE(5704)] = 209308, + [SMALL_STATE(5705)] = 209338, + [SMALL_STATE(5706)] = 209368, + [SMALL_STATE(5707)] = 209398, + [SMALL_STATE(5708)] = 209419, + [SMALL_STATE(5709)] = 209438, + [SMALL_STATE(5710)] = 209467, + [SMALL_STATE(5711)] = 209496, + [SMALL_STATE(5712)] = 209515, + [SMALL_STATE(5713)] = 209542, + [SMALL_STATE(5714)] = 209561, + [SMALL_STATE(5715)] = 209580, + [SMALL_STATE(5716)] = 209607, + [SMALL_STATE(5717)] = 209632, + [SMALL_STATE(5718)] = 209651, + [SMALL_STATE(5719)] = 209670, + [SMALL_STATE(5720)] = 209691, + [SMALL_STATE(5721)] = 209712, + [SMALL_STATE(5722)] = 209741, + [SMALL_STATE(5723)] = 209766, + [SMALL_STATE(5724)] = 209791, + [SMALL_STATE(5725)] = 209816, + [SMALL_STATE(5726)] = 209841, + [SMALL_STATE(5727)] = 209866, + [SMALL_STATE(5728)] = 209891, + [SMALL_STATE(5729)] = 209916, + [SMALL_STATE(5730)] = 209941, + [SMALL_STATE(5731)] = 209966, + [SMALL_STATE(5732)] = 209991, + [SMALL_STATE(5733)] = 210016, + [SMALL_STATE(5734)] = 210041, + [SMALL_STATE(5735)] = 210066, + [SMALL_STATE(5736)] = 210091, + [SMALL_STATE(5737)] = 210116, + [SMALL_STATE(5738)] = 210141, + [SMALL_STATE(5739)] = 210166, + [SMALL_STATE(5740)] = 210191, + [SMALL_STATE(5741)] = 210216, + [SMALL_STATE(5742)] = 210235, + [SMALL_STATE(5743)] = 210260, + [SMALL_STATE(5744)] = 210287, + [SMALL_STATE(5745)] = 210314, + [SMALL_STATE(5746)] = 210341, + [SMALL_STATE(5747)] = 210368, + [SMALL_STATE(5748)] = 210395, + [SMALL_STATE(5749)] = 210422, + [SMALL_STATE(5750)] = 210449, + [SMALL_STATE(5751)] = 210476, + [SMALL_STATE(5752)] = 210503, + [SMALL_STATE(5753)] = 210530, + [SMALL_STATE(5754)] = 210557, + [SMALL_STATE(5755)] = 210584, + [SMALL_STATE(5756)] = 210611, + [SMALL_STATE(5757)] = 210638, + [SMALL_STATE(5758)] = 210665, + [SMALL_STATE(5759)] = 210692, + [SMALL_STATE(5760)] = 210719, + [SMALL_STATE(5761)] = 210746, + [SMALL_STATE(5762)] = 210773, + [SMALL_STATE(5763)] = 210800, + [SMALL_STATE(5764)] = 210827, + [SMALL_STATE(5765)] = 210854, + [SMALL_STATE(5766)] = 210881, + [SMALL_STATE(5767)] = 210902, + [SMALL_STATE(5768)] = 210925, + [SMALL_STATE(5769)] = 210944, + [SMALL_STATE(5770)] = 210965, + [SMALL_STATE(5771)] = 210984, + [SMALL_STATE(5772)] = 211005, + [SMALL_STATE(5773)] = 211024, + [SMALL_STATE(5774)] = 211043, + [SMALL_STATE(5775)] = 211062, + [SMALL_STATE(5776)] = 211081, + [SMALL_STATE(5777)] = 211102, + [SMALL_STATE(5778)] = 211121, + [SMALL_STATE(5779)] = 211142, + [SMALL_STATE(5780)] = 211161, + [SMALL_STATE(5781)] = 211184, + [SMALL_STATE(5782)] = 211211, + [SMALL_STATE(5783)] = 211240, + [SMALL_STATE(5784)] = 211261, + [SMALL_STATE(5785)] = 211280, + [SMALL_STATE(5786)] = 211305, + [SMALL_STATE(5787)] = 211330, + [SMALL_STATE(5788)] = 211351, + [SMALL_STATE(5789)] = 211378, + [SMALL_STATE(5790)] = 211407, + [SMALL_STATE(5791)] = 211428, + [SMALL_STATE(5792)] = 211451, + [SMALL_STATE(5793)] = 211478, + [SMALL_STATE(5794)] = 211507, + [SMALL_STATE(5795)] = 211526, + [SMALL_STATE(5796)] = 211545, + [SMALL_STATE(5797)] = 211574, + [SMALL_STATE(5798)] = 211593, + [SMALL_STATE(5799)] = 211620, + [SMALL_STATE(5800)] = 211647, + [SMALL_STATE(5801)] = 211668, + [SMALL_STATE(5802)] = 211687, + [SMALL_STATE(5803)] = 211714, + [SMALL_STATE(5804)] = 211733, + [SMALL_STATE(5805)] = 211754, + [SMALL_STATE(5806)] = 211783, + [SMALL_STATE(5807)] = 211802, + [SMALL_STATE(5808)] = 211823, + [SMALL_STATE(5809)] = 211844, + [SMALL_STATE(5810)] = 211867, + [SMALL_STATE(5811)] = 211886, + [SMALL_STATE(5812)] = 211905, + [SMALL_STATE(5813)] = 211932, + [SMALL_STATE(5814)] = 211959, + [SMALL_STATE(5815)] = 211982, + [SMALL_STATE(5816)] = 212009, + [SMALL_STATE(5817)] = 212036, + [SMALL_STATE(5818)] = 212057, + [SMALL_STATE(5819)] = 212084, + [SMALL_STATE(5820)] = 212111, + [SMALL_STATE(5821)] = 212132, + [SMALL_STATE(5822)] = 212151, + [SMALL_STATE(5823)] = 212170, + [SMALL_STATE(5824)] = 212197, + [SMALL_STATE(5825)] = 212224, + [SMALL_STATE(5826)] = 212251, + [SMALL_STATE(5827)] = 212278, + [SMALL_STATE(5828)] = 212305, + [SMALL_STATE(5829)] = 212332, + [SMALL_STATE(5830)] = 212359, + [SMALL_STATE(5831)] = 212378, + [SMALL_STATE(5832)] = 212397, + [SMALL_STATE(5833)] = 212420, + [SMALL_STATE(5834)] = 212447, + [SMALL_STATE(5835)] = 212474, + [SMALL_STATE(5836)] = 212501, + [SMALL_STATE(5837)] = 212528, + [SMALL_STATE(5838)] = 212557, + [SMALL_STATE(5839)] = 212577, + [SMALL_STATE(5840)] = 212603, + [SMALL_STATE(5841)] = 212623, + [SMALL_STATE(5842)] = 212649, + [SMALL_STATE(5843)] = 212675, + [SMALL_STATE(5844)] = 212701, + [SMALL_STATE(5845)] = 212727, + [SMALL_STATE(5846)] = 212745, + [SMALL_STATE(5847)] = 212763, + [SMALL_STATE(5848)] = 212789, + [SMALL_STATE(5849)] = 212809, + [SMALL_STATE(5850)] = 212827, + [SMALL_STATE(5851)] = 212853, + [SMALL_STATE(5852)] = 212871, + [SMALL_STATE(5853)] = 212897, + [SMALL_STATE(5854)] = 212923, + [SMALL_STATE(5855)] = 212949, + [SMALL_STATE(5856)] = 212975, + [SMALL_STATE(5857)] = 213001, + [SMALL_STATE(5858)] = 213027, + [SMALL_STATE(5859)] = 213053, + [SMALL_STATE(5860)] = 213075, + [SMALL_STATE(5861)] = 213101, + [SMALL_STATE(5862)] = 213127, + [SMALL_STATE(5863)] = 213143, + [SMALL_STATE(5864)] = 213161, + [SMALL_STATE(5865)] = 213181, + [SMALL_STATE(5866)] = 213207, + [SMALL_STATE(5867)] = 213233, + [SMALL_STATE(5868)] = 213251, + [SMALL_STATE(5869)] = 213269, + [SMALL_STATE(5870)] = 213289, + [SMALL_STATE(5871)] = 213309, + [SMALL_STATE(5872)] = 213327, + [SMALL_STATE(5873)] = 213353, + [SMALL_STATE(5874)] = 213371, + [SMALL_STATE(5875)] = 213397, + [SMALL_STATE(5876)] = 213423, + [SMALL_STATE(5877)] = 213447, + [SMALL_STATE(5878)] = 213471, + [SMALL_STATE(5879)] = 213491, + [SMALL_STATE(5880)] = 213515, + [SMALL_STATE(5881)] = 213533, + [SMALL_STATE(5882)] = 213551, + [SMALL_STATE(5883)] = 213571, + [SMALL_STATE(5884)] = 213597, + [SMALL_STATE(5885)] = 213625, + [SMALL_STATE(5886)] = 213647, + [SMALL_STATE(5887)] = 213675, + [SMALL_STATE(5888)] = 213701, + [SMALL_STATE(5889)] = 213727, + [SMALL_STATE(5890)] = 213753, + [SMALL_STATE(5891)] = 213779, + [SMALL_STATE(5892)] = 213805, + [SMALL_STATE(5893)] = 213831, + [SMALL_STATE(5894)] = 213849, + [SMALL_STATE(5895)] = 213875, + [SMALL_STATE(5896)] = 213901, + [SMALL_STATE(5897)] = 213927, + [SMALL_STATE(5898)] = 213953, + [SMALL_STATE(5899)] = 213975, + [SMALL_STATE(5900)] = 213995, + [SMALL_STATE(5901)] = 214021, + [SMALL_STATE(5902)] = 214047, + [SMALL_STATE(5903)] = 214065, + [SMALL_STATE(5904)] = 214083, + [SMALL_STATE(5905)] = 214109, + [SMALL_STATE(5906)] = 214135, + [SMALL_STATE(5907)] = 214153, + [SMALL_STATE(5908)] = 214171, + [SMALL_STATE(5909)] = 214191, + [SMALL_STATE(5910)] = 214209, + [SMALL_STATE(5911)] = 214233, + [SMALL_STATE(5912)] = 214257, + [SMALL_STATE(5913)] = 214279, + [SMALL_STATE(5914)] = 214299, + [SMALL_STATE(5915)] = 214325, + [SMALL_STATE(5916)] = 214351, + [SMALL_STATE(5917)] = 214375, + [SMALL_STATE(5918)] = 214399, + [SMALL_STATE(5919)] = 214417, + [SMALL_STATE(5920)] = 214443, + [SMALL_STATE(5921)] = 214469, + [SMALL_STATE(5922)] = 214495, + [SMALL_STATE(5923)] = 214521, + [SMALL_STATE(5924)] = 214547, + [SMALL_STATE(5925)] = 214573, + [SMALL_STATE(5926)] = 214593, + [SMALL_STATE(5927)] = 214619, + [SMALL_STATE(5928)] = 214635, + [SMALL_STATE(5929)] = 214661, + [SMALL_STATE(5930)] = 214679, + [SMALL_STATE(5931)] = 214697, + [SMALL_STATE(5932)] = 214715, + [SMALL_STATE(5933)] = 214741, + [SMALL_STATE(5934)] = 214767, + [SMALL_STATE(5935)] = 214787, + [SMALL_STATE(5936)] = 214803, + [SMALL_STATE(5937)] = 214829, + [SMALL_STATE(5938)] = 214855, + [SMALL_STATE(5939)] = 214881, + [SMALL_STATE(5940)] = 214907, + [SMALL_STATE(5941)] = 214933, + [SMALL_STATE(5942)] = 214959, + [SMALL_STATE(5943)] = 214985, + [SMALL_STATE(5944)] = 215011, + [SMALL_STATE(5945)] = 215027, + [SMALL_STATE(5946)] = 215052, + [SMALL_STATE(5947)] = 215075, + [SMALL_STATE(5948)] = 215100, + [SMALL_STATE(5949)] = 215123, + [SMALL_STATE(5950)] = 215148, + [SMALL_STATE(5951)] = 215167, + [SMALL_STATE(5952)] = 215186, + [SMALL_STATE(5953)] = 215205, + [SMALL_STATE(5954)] = 215228, + [SMALL_STATE(5955)] = 215253, + [SMALL_STATE(5956)] = 215278, + [SMALL_STATE(5957)] = 215301, + [SMALL_STATE(5958)] = 215326, + [SMALL_STATE(5959)] = 215351, + [SMALL_STATE(5960)] = 215376, + [SMALL_STATE(5961)] = 215401, + [SMALL_STATE(5962)] = 215426, + [SMALL_STATE(5963)] = 215449, + [SMALL_STATE(5964)] = 215474, + [SMALL_STATE(5965)] = 215499, + [SMALL_STATE(5966)] = 215520, + [SMALL_STATE(5967)] = 215545, + [SMALL_STATE(5968)] = 215568, + [SMALL_STATE(5969)] = 215593, + [SMALL_STATE(5970)] = 215618, + [SMALL_STATE(5971)] = 215641, + [SMALL_STATE(5972)] = 215660, + [SMALL_STATE(5973)] = 215685, + [SMALL_STATE(5974)] = 215704, + [SMALL_STATE(5975)] = 215721, + [SMALL_STATE(5976)] = 215746, + [SMALL_STATE(5977)] = 215769, + [SMALL_STATE(5978)] = 215790, + [SMALL_STATE(5979)] = 215813, + [SMALL_STATE(5980)] = 215830, + [SMALL_STATE(5981)] = 215855, + [SMALL_STATE(5982)] = 215880, + [SMALL_STATE(5983)] = 215903, + [SMALL_STATE(5984)] = 215928, + [SMALL_STATE(5985)] = 215949, + [SMALL_STATE(5986)] = 215974, + [SMALL_STATE(5987)] = 215997, + [SMALL_STATE(5988)] = 216022, + [SMALL_STATE(5989)] = 216041, + [SMALL_STATE(5990)] = 216064, + [SMALL_STATE(5991)] = 216089, + [SMALL_STATE(5992)] = 216114, + [SMALL_STATE(5993)] = 216137, + [SMALL_STATE(5994)] = 216160, + [SMALL_STATE(5995)] = 216185, + [SMALL_STATE(5996)] = 216202, + [SMALL_STATE(5997)] = 216227, + [SMALL_STATE(5998)] = 216250, + [SMALL_STATE(5999)] = 216271, + [SMALL_STATE(6000)] = 216290, + [SMALL_STATE(6001)] = 216309, + [SMALL_STATE(6002)] = 216332, + [SMALL_STATE(6003)] = 216357, + [SMALL_STATE(6004)] = 216382, + [SMALL_STATE(6005)] = 216405, + [SMALL_STATE(6006)] = 216430, + [SMALL_STATE(6007)] = 216447, + [SMALL_STATE(6008)] = 216466, + [SMALL_STATE(6009)] = 216491, + [SMALL_STATE(6010)] = 216516, + [SMALL_STATE(6011)] = 216539, + [SMALL_STATE(6012)] = 216558, + [SMALL_STATE(6013)] = 216583, + [SMALL_STATE(6014)] = 216606, + [SMALL_STATE(6015)] = 216631, + [SMALL_STATE(6016)] = 216656, + [SMALL_STATE(6017)] = 216681, + [SMALL_STATE(6018)] = 216704, + [SMALL_STATE(6019)] = 216729, + [SMALL_STATE(6020)] = 216754, + [SMALL_STATE(6021)] = 216779, + [SMALL_STATE(6022)] = 216802, + [SMALL_STATE(6023)] = 216823, + [SMALL_STATE(6024)] = 216848, + [SMALL_STATE(6025)] = 216865, + [SMALL_STATE(6026)] = 216882, + [SMALL_STATE(6027)] = 216905, + [SMALL_STATE(6028)] = 216926, + [SMALL_STATE(6029)] = 216949, + [SMALL_STATE(6030)] = 216970, + [SMALL_STATE(6031)] = 216995, + [SMALL_STATE(6032)] = 217012, + [SMALL_STATE(6033)] = 217035, + [SMALL_STATE(6034)] = 217060, + [SMALL_STATE(6035)] = 217085, + [SMALL_STATE(6036)] = 217110, + [SMALL_STATE(6037)] = 217133, + [SMALL_STATE(6038)] = 217158, + [SMALL_STATE(6039)] = 217179, + [SMALL_STATE(6040)] = 217196, + [SMALL_STATE(6041)] = 217219, + [SMALL_STATE(6042)] = 217242, + [SMALL_STATE(6043)] = 217267, + [SMALL_STATE(6044)] = 217292, + [SMALL_STATE(6045)] = 217309, + [SMALL_STATE(6046)] = 217334, + [SMALL_STATE(6047)] = 217357, + [SMALL_STATE(6048)] = 217382, + [SMALL_STATE(6049)] = 217399, + [SMALL_STATE(6050)] = 217422, + [SMALL_STATE(6051)] = 217445, + [SMALL_STATE(6052)] = 217470, + [SMALL_STATE(6053)] = 217487, + [SMALL_STATE(6054)] = 217512, + [SMALL_STATE(6055)] = 217535, + [SMALL_STATE(6056)] = 217556, + [SMALL_STATE(6057)] = 217573, + [SMALL_STATE(6058)] = 217596, + [SMALL_STATE(6059)] = 217621, + [SMALL_STATE(6060)] = 217644, + [SMALL_STATE(6061)] = 217669, + [SMALL_STATE(6062)] = 217694, + [SMALL_STATE(6063)] = 217717, + [SMALL_STATE(6064)] = 217742, + [SMALL_STATE(6065)] = 217765, + [SMALL_STATE(6066)] = 217788, + [SMALL_STATE(6067)] = 217813, + [SMALL_STATE(6068)] = 217838, + [SMALL_STATE(6069)] = 217861, + [SMALL_STATE(6070)] = 217886, + [SMALL_STATE(6071)] = 217909, + [SMALL_STATE(6072)] = 217932, + [SMALL_STATE(6073)] = 217957, + [SMALL_STATE(6074)] = 217982, + [SMALL_STATE(6075)] = 218005, + [SMALL_STATE(6076)] = 218030, + [SMALL_STATE(6077)] = 218047, + [SMALL_STATE(6078)] = 218068, + [SMALL_STATE(6079)] = 218093, + [SMALL_STATE(6080)] = 218118, + [SMALL_STATE(6081)] = 218141, + [SMALL_STATE(6082)] = 218166, + [SMALL_STATE(6083)] = 218191, + [SMALL_STATE(6084)] = 218216, + [SMALL_STATE(6085)] = 218239, + [SMALL_STATE(6086)] = 218262, + [SMALL_STATE(6087)] = 218287, + [SMALL_STATE(6088)] = 218312, + [SMALL_STATE(6089)] = 218335, + [SMALL_STATE(6090)] = 218360, + [SMALL_STATE(6091)] = 218385, + [SMALL_STATE(6092)] = 218408, + [SMALL_STATE(6093)] = 218431, + [SMALL_STATE(6094)] = 218454, + [SMALL_STATE(6095)] = 218477, + [SMALL_STATE(6096)] = 218500, + [SMALL_STATE(6097)] = 218523, + [SMALL_STATE(6098)] = 218546, + [SMALL_STATE(6099)] = 218569, + [SMALL_STATE(6100)] = 218592, + [SMALL_STATE(6101)] = 218615, + [SMALL_STATE(6102)] = 218638, + [SMALL_STATE(6103)] = 218661, + [SMALL_STATE(6104)] = 218684, + [SMALL_STATE(6105)] = 218707, + [SMALL_STATE(6106)] = 218730, + [SMALL_STATE(6107)] = 218753, + [SMALL_STATE(6108)] = 218776, + [SMALL_STATE(6109)] = 218799, + [SMALL_STATE(6110)] = 218822, + [SMALL_STATE(6111)] = 218845, + [SMALL_STATE(6112)] = 218868, + [SMALL_STATE(6113)] = 218891, + [SMALL_STATE(6114)] = 218914, + [SMALL_STATE(6115)] = 218937, + [SMALL_STATE(6116)] = 218960, + [SMALL_STATE(6117)] = 218983, + [SMALL_STATE(6118)] = 219006, + [SMALL_STATE(6119)] = 219029, + [SMALL_STATE(6120)] = 219052, + [SMALL_STATE(6121)] = 219077, + [SMALL_STATE(6122)] = 219094, + [SMALL_STATE(6123)] = 219115, + [SMALL_STATE(6124)] = 219140, + [SMALL_STATE(6125)] = 219165, + [SMALL_STATE(6126)] = 219190, + [SMALL_STATE(6127)] = 219215, + [SMALL_STATE(6128)] = 219240, + [SMALL_STATE(6129)] = 219257, + [SMALL_STATE(6130)] = 219276, + [SMALL_STATE(6131)] = 219299, + [SMALL_STATE(6132)] = 219320, + [SMALL_STATE(6133)] = 219339, + [SMALL_STATE(6134)] = 219360, + [SMALL_STATE(6135)] = 219383, + [SMALL_STATE(6136)] = 219400, + [SMALL_STATE(6137)] = 219419, + [SMALL_STATE(6138)] = 219438, + [SMALL_STATE(6139)] = 219461, + [SMALL_STATE(6140)] = 219482, + [SMALL_STATE(6141)] = 219505, + [SMALL_STATE(6142)] = 219526, + [SMALL_STATE(6143)] = 219551, + [SMALL_STATE(6144)] = 219574, + [SMALL_STATE(6145)] = 219599, + [SMALL_STATE(6146)] = 219620, + [SMALL_STATE(6147)] = 219641, + [SMALL_STATE(6148)] = 219666, + [SMALL_STATE(6149)] = 219687, + [SMALL_STATE(6150)] = 219710, + [SMALL_STATE(6151)] = 219733, + [SMALL_STATE(6152)] = 219758, + [SMALL_STATE(6153)] = 219783, + [SMALL_STATE(6154)] = 219806, + [SMALL_STATE(6155)] = 219823, + [SMALL_STATE(6156)] = 219848, + [SMALL_STATE(6157)] = 219873, + [SMALL_STATE(6158)] = 219898, + [SMALL_STATE(6159)] = 219921, + [SMALL_STATE(6160)] = 219946, + [SMALL_STATE(6161)] = 219971, + [SMALL_STATE(6162)] = 219988, + [SMALL_STATE(6163)] = 220013, + [SMALL_STATE(6164)] = 220038, + [SMALL_STATE(6165)] = 220063, + [SMALL_STATE(6166)] = 220088, + [SMALL_STATE(6167)] = 220113, + [SMALL_STATE(6168)] = 220134, + [SMALL_STATE(6169)] = 220153, + [SMALL_STATE(6170)] = 220178, + [SMALL_STATE(6171)] = 220201, + [SMALL_STATE(6172)] = 220226, + [SMALL_STATE(6173)] = 220249, + [SMALL_STATE(6174)] = 220266, + [SMALL_STATE(6175)] = 220289, + [SMALL_STATE(6176)] = 220310, + [SMALL_STATE(6177)] = 220335, + [SMALL_STATE(6178)] = 220356, + [SMALL_STATE(6179)] = 220373, + [SMALL_STATE(6180)] = 220396, + [SMALL_STATE(6181)] = 220421, + [SMALL_STATE(6182)] = 220442, + [SMALL_STATE(6183)] = 220463, + [SMALL_STATE(6184)] = 220488, + [SMALL_STATE(6185)] = 220511, + [SMALL_STATE(6186)] = 220528, + [SMALL_STATE(6187)] = 220545, + [SMALL_STATE(6188)] = 220568, + [SMALL_STATE(6189)] = 220591, + [SMALL_STATE(6190)] = 220610, + [SMALL_STATE(6191)] = 220635, + [SMALL_STATE(6192)] = 220660, + [SMALL_STATE(6193)] = 220681, + [SMALL_STATE(6194)] = 220700, + [SMALL_STATE(6195)] = 220719, + [SMALL_STATE(6196)] = 220738, + [SMALL_STATE(6197)] = 220761, + [SMALL_STATE(6198)] = 220784, + [SMALL_STATE(6199)] = 220809, + [SMALL_STATE(6200)] = 220832, + [SMALL_STATE(6201)] = 220857, + [SMALL_STATE(6202)] = 220882, + [SMALL_STATE(6203)] = 220907, + [SMALL_STATE(6204)] = 220932, + [SMALL_STATE(6205)] = 220950, + [SMALL_STATE(6206)] = 220972, + [SMALL_STATE(6207)] = 220990, + [SMALL_STATE(6208)] = 221010, + [SMALL_STATE(6209)] = 221026, + [SMALL_STATE(6210)] = 221042, + [SMALL_STATE(6211)] = 221064, + [SMALL_STATE(6212)] = 221086, + [SMALL_STATE(6213)] = 221106, + [SMALL_STATE(6214)] = 221128, + [SMALL_STATE(6215)] = 221150, + [SMALL_STATE(6216)] = 221172, + [SMALL_STATE(6217)] = 221192, + [SMALL_STATE(6218)] = 221214, + [SMALL_STATE(6219)] = 221236, + [SMALL_STATE(6220)] = 221256, + [SMALL_STATE(6221)] = 221274, + [SMALL_STATE(6222)] = 221292, + [SMALL_STATE(6223)] = 221314, + [SMALL_STATE(6224)] = 221334, + [SMALL_STATE(6225)] = 221356, + [SMALL_STATE(6226)] = 221378, + [SMALL_STATE(6227)] = 221400, + [SMALL_STATE(6228)] = 221422, + [SMALL_STATE(6229)] = 221444, + [SMALL_STATE(6230)] = 221466, + [SMALL_STATE(6231)] = 221488, + [SMALL_STATE(6232)] = 221508, + [SMALL_STATE(6233)] = 221524, + [SMALL_STATE(6234)] = 221542, + [SMALL_STATE(6235)] = 221564, + [SMALL_STATE(6236)] = 221586, + [SMALL_STATE(6237)] = 221608, + [SMALL_STATE(6238)] = 221628, + [SMALL_STATE(6239)] = 221644, + [SMALL_STATE(6240)] = 221662, + [SMALL_STATE(6241)] = 221680, + [SMALL_STATE(6242)] = 221700, + [SMALL_STATE(6243)] = 221722, + [SMALL_STATE(6244)] = 221744, + [SMALL_STATE(6245)] = 221762, + [SMALL_STATE(6246)] = 221778, + [SMALL_STATE(6247)] = 221800, + [SMALL_STATE(6248)] = 221822, + [SMALL_STATE(6249)] = 221844, + [SMALL_STATE(6250)] = 221864, + [SMALL_STATE(6251)] = 221878, + [SMALL_STATE(6252)] = 221900, + [SMALL_STATE(6253)] = 221922, + [SMALL_STATE(6254)] = 221936, + [SMALL_STATE(6255)] = 221954, + [SMALL_STATE(6256)] = 221972, + [SMALL_STATE(6257)] = 221994, + [SMALL_STATE(6258)] = 222010, + [SMALL_STATE(6259)] = 222032, + [SMALL_STATE(6260)] = 222050, + [SMALL_STATE(6261)] = 222066, + [SMALL_STATE(6262)] = 222088, + [SMALL_STATE(6263)] = 222110, + [SMALL_STATE(6264)] = 222132, + [SMALL_STATE(6265)] = 222152, + [SMALL_STATE(6266)] = 222168, + [SMALL_STATE(6267)] = 222190, + [SMALL_STATE(6268)] = 222212, + [SMALL_STATE(6269)] = 222228, + [SMALL_STATE(6270)] = 222246, + [SMALL_STATE(6271)] = 222268, + [SMALL_STATE(6272)] = 222290, + [SMALL_STATE(6273)] = 222306, + [SMALL_STATE(6274)] = 222326, + [SMALL_STATE(6275)] = 222342, + [SMALL_STATE(6276)] = 222364, + [SMALL_STATE(6277)] = 222380, + [SMALL_STATE(6278)] = 222398, + [SMALL_STATE(6279)] = 222416, + [SMALL_STATE(6280)] = 222434, + [SMALL_STATE(6281)] = 222454, + [SMALL_STATE(6282)] = 222468, + [SMALL_STATE(6283)] = 222482, + [SMALL_STATE(6284)] = 222500, + [SMALL_STATE(6285)] = 222518, + [SMALL_STATE(6286)] = 222536, + [SMALL_STATE(6287)] = 222558, + [SMALL_STATE(6288)] = 222578, + [SMALL_STATE(6289)] = 222600, + [SMALL_STATE(6290)] = 222622, + [SMALL_STATE(6291)] = 222644, + [SMALL_STATE(6292)] = 222660, + [SMALL_STATE(6293)] = 222676, + [SMALL_STATE(6294)] = 222694, + [SMALL_STATE(6295)] = 222712, + [SMALL_STATE(6296)] = 222730, + [SMALL_STATE(6297)] = 222752, + [SMALL_STATE(6298)] = 222774, + [SMALL_STATE(6299)] = 222796, + [SMALL_STATE(6300)] = 222818, + [SMALL_STATE(6301)] = 222836, + [SMALL_STATE(6302)] = 222852, + [SMALL_STATE(6303)] = 222870, + [SMALL_STATE(6304)] = 222892, + [SMALL_STATE(6305)] = 222914, + [SMALL_STATE(6306)] = 222932, + [SMALL_STATE(6307)] = 222950, + [SMALL_STATE(6308)] = 222972, + [SMALL_STATE(6309)] = 222994, + [SMALL_STATE(6310)] = 223010, + [SMALL_STATE(6311)] = 223032, + [SMALL_STATE(6312)] = 223048, + [SMALL_STATE(6313)] = 223068, + [SMALL_STATE(6314)] = 223090, + [SMALL_STATE(6315)] = 223112, + [SMALL_STATE(6316)] = 223134, + [SMALL_STATE(6317)] = 223156, + [SMALL_STATE(6318)] = 223176, + [SMALL_STATE(6319)] = 223198, + [SMALL_STATE(6320)] = 223220, + [SMALL_STATE(6321)] = 223242, + [SMALL_STATE(6322)] = 223260, + [SMALL_STATE(6323)] = 223282, + [SMALL_STATE(6324)] = 223304, + [SMALL_STATE(6325)] = 223324, + [SMALL_STATE(6326)] = 223342, + [SMALL_STATE(6327)] = 223364, + [SMALL_STATE(6328)] = 223386, + [SMALL_STATE(6329)] = 223408, + [SMALL_STATE(6330)] = 223430, + [SMALL_STATE(6331)] = 223452, + [SMALL_STATE(6332)] = 223474, + [SMALL_STATE(6333)] = 223496, + [SMALL_STATE(6334)] = 223518, + [SMALL_STATE(6335)] = 223540, + [SMALL_STATE(6336)] = 223562, + [SMALL_STATE(6337)] = 223584, + [SMALL_STATE(6338)] = 223606, + [SMALL_STATE(6339)] = 223620, + [SMALL_STATE(6340)] = 223642, + [SMALL_STATE(6341)] = 223664, + [SMALL_STATE(6342)] = 223678, + [SMALL_STATE(6343)] = 223700, + [SMALL_STATE(6344)] = 223722, + [SMALL_STATE(6345)] = 223744, + [SMALL_STATE(6346)] = 223766, + [SMALL_STATE(6347)] = 223784, + [SMALL_STATE(6348)] = 223806, + [SMALL_STATE(6349)] = 223828, + [SMALL_STATE(6350)] = 223846, + [SMALL_STATE(6351)] = 223868, + [SMALL_STATE(6352)] = 223890, + [SMALL_STATE(6353)] = 223908, + [SMALL_STATE(6354)] = 223930, + [SMALL_STATE(6355)] = 223952, + [SMALL_STATE(6356)] = 223974, + [SMALL_STATE(6357)] = 223996, + [SMALL_STATE(6358)] = 224018, + [SMALL_STATE(6359)] = 224040, + [SMALL_STATE(6360)] = 224062, + [SMALL_STATE(6361)] = 224084, + [SMALL_STATE(6362)] = 224106, + [SMALL_STATE(6363)] = 224128, + [SMALL_STATE(6364)] = 224150, + [SMALL_STATE(6365)] = 224172, + [SMALL_STATE(6366)] = 224194, + [SMALL_STATE(6367)] = 224216, + [SMALL_STATE(6368)] = 224238, + [SMALL_STATE(6369)] = 224260, + [SMALL_STATE(6370)] = 224282, + [SMALL_STATE(6371)] = 224304, + [SMALL_STATE(6372)] = 224326, + [SMALL_STATE(6373)] = 224348, + [SMALL_STATE(6374)] = 224370, + [SMALL_STATE(6375)] = 224392, + [SMALL_STATE(6376)] = 224410, + [SMALL_STATE(6377)] = 224428, + [SMALL_STATE(6378)] = 224446, + [SMALL_STATE(6379)] = 224464, + [SMALL_STATE(6380)] = 224482, + [SMALL_STATE(6381)] = 224498, + [SMALL_STATE(6382)] = 224516, + [SMALL_STATE(6383)] = 224536, + [SMALL_STATE(6384)] = 224558, + [SMALL_STATE(6385)] = 224580, + [SMALL_STATE(6386)] = 224595, + [SMALL_STATE(6387)] = 224614, + [SMALL_STATE(6388)] = 224631, + [SMALL_STATE(6389)] = 224650, + [SMALL_STATE(6390)] = 224669, + [SMALL_STATE(6391)] = 224688, + [SMALL_STATE(6392)] = 224701, + [SMALL_STATE(6393)] = 224720, + [SMALL_STATE(6394)] = 224739, + [SMALL_STATE(6395)] = 224758, + [SMALL_STATE(6396)] = 224777, + [SMALL_STATE(6397)] = 224796, + [SMALL_STATE(6398)] = 224815, + [SMALL_STATE(6399)] = 224834, + [SMALL_STATE(6400)] = 224853, + [SMALL_STATE(6401)] = 224870, + [SMALL_STATE(6402)] = 224883, + [SMALL_STATE(6403)] = 224896, + [SMALL_STATE(6404)] = 224913, + [SMALL_STATE(6405)] = 224926, + [SMALL_STATE(6406)] = 224945, + [SMALL_STATE(6407)] = 224962, + [SMALL_STATE(6408)] = 224981, + [SMALL_STATE(6409)] = 225000, + [SMALL_STATE(6410)] = 225013, + [SMALL_STATE(6411)] = 225030, + [SMALL_STATE(6412)] = 225047, + [SMALL_STATE(6413)] = 225066, + [SMALL_STATE(6414)] = 225081, + [SMALL_STATE(6415)] = 225094, + [SMALL_STATE(6416)] = 225109, + [SMALL_STATE(6417)] = 225122, + [SMALL_STATE(6418)] = 225141, + [SMALL_STATE(6419)] = 225156, + [SMALL_STATE(6420)] = 225169, + [SMALL_STATE(6421)] = 225188, + [SMALL_STATE(6422)] = 225207, + [SMALL_STATE(6423)] = 225226, + [SMALL_STATE(6424)] = 225245, + [SMALL_STATE(6425)] = 225264, + [SMALL_STATE(6426)] = 225283, + [SMALL_STATE(6427)] = 225302, + [SMALL_STATE(6428)] = 225321, + [SMALL_STATE(6429)] = 225334, + [SMALL_STATE(6430)] = 225349, + [SMALL_STATE(6431)] = 225364, + [SMALL_STATE(6432)] = 225377, + [SMALL_STATE(6433)] = 225390, + [SMALL_STATE(6434)] = 225407, + [SMALL_STATE(6435)] = 225426, + [SMALL_STATE(6436)] = 225439, + [SMALL_STATE(6437)] = 225458, + [SMALL_STATE(6438)] = 225475, + [SMALL_STATE(6439)] = 225488, + [SMALL_STATE(6440)] = 225507, + [SMALL_STATE(6441)] = 225524, + [SMALL_STATE(6442)] = 225543, + [SMALL_STATE(6443)] = 225560, + [SMALL_STATE(6444)] = 225573, + [SMALL_STATE(6445)] = 225592, + [SMALL_STATE(6446)] = 225611, + [SMALL_STATE(6447)] = 225630, + [SMALL_STATE(6448)] = 225649, + [SMALL_STATE(6449)] = 225668, + [SMALL_STATE(6450)] = 225687, + [SMALL_STATE(6451)] = 225706, + [SMALL_STATE(6452)] = 225725, + [SMALL_STATE(6453)] = 225738, + [SMALL_STATE(6454)] = 225757, + [SMALL_STATE(6455)] = 225770, + [SMALL_STATE(6456)] = 225783, + [SMALL_STATE(6457)] = 225800, + [SMALL_STATE(6458)] = 225819, + [SMALL_STATE(6459)] = 225838, + [SMALL_STATE(6460)] = 225855, + [SMALL_STATE(6461)] = 225874, + [SMALL_STATE(6462)] = 225891, + [SMALL_STATE(6463)] = 225908, + [SMALL_STATE(6464)] = 225927, + [SMALL_STATE(6465)] = 225944, + [SMALL_STATE(6466)] = 225963, + [SMALL_STATE(6467)] = 225982, + [SMALL_STATE(6468)] = 226001, + [SMALL_STATE(6469)] = 226020, + [SMALL_STATE(6470)] = 226039, + [SMALL_STATE(6471)] = 226058, + [SMALL_STATE(6472)] = 226077, + [SMALL_STATE(6473)] = 226096, + [SMALL_STATE(6474)] = 226115, + [SMALL_STATE(6475)] = 226134, + [SMALL_STATE(6476)] = 226153, + [SMALL_STATE(6477)] = 226166, + [SMALL_STATE(6478)] = 226183, + [SMALL_STATE(6479)] = 226202, + [SMALL_STATE(6480)] = 226221, + [SMALL_STATE(6481)] = 226236, + [SMALL_STATE(6482)] = 226253, + [SMALL_STATE(6483)] = 226272, + [SMALL_STATE(6484)] = 226285, + [SMALL_STATE(6485)] = 226302, + [SMALL_STATE(6486)] = 226321, + [SMALL_STATE(6487)] = 226340, + [SMALL_STATE(6488)] = 226359, + [SMALL_STATE(6489)] = 226378, + [SMALL_STATE(6490)] = 226397, + [SMALL_STATE(6491)] = 226416, + [SMALL_STATE(6492)] = 226435, + [SMALL_STATE(6493)] = 226454, + [SMALL_STATE(6494)] = 226473, + [SMALL_STATE(6495)] = 226488, + [SMALL_STATE(6496)] = 226501, + [SMALL_STATE(6497)] = 226514, + [SMALL_STATE(6498)] = 226531, + [SMALL_STATE(6499)] = 226550, + [SMALL_STATE(6500)] = 226569, + [SMALL_STATE(6501)] = 226586, + [SMALL_STATE(6502)] = 226603, + [SMALL_STATE(6503)] = 226616, + [SMALL_STATE(6504)] = 226635, + [SMALL_STATE(6505)] = 226654, + [SMALL_STATE(6506)] = 226673, + [SMALL_STATE(6507)] = 226692, + [SMALL_STATE(6508)] = 226711, + [SMALL_STATE(6509)] = 226730, + [SMALL_STATE(6510)] = 226749, + [SMALL_STATE(6511)] = 226768, + [SMALL_STATE(6512)] = 226787, + [SMALL_STATE(6513)] = 226806, + [SMALL_STATE(6514)] = 226825, + [SMALL_STATE(6515)] = 226838, + [SMALL_STATE(6516)] = 226851, + [SMALL_STATE(6517)] = 226868, + [SMALL_STATE(6518)] = 226887, + [SMALL_STATE(6519)] = 226904, + [SMALL_STATE(6520)] = 226919, + [SMALL_STATE(6521)] = 226936, + [SMALL_STATE(6522)] = 226955, + [SMALL_STATE(6523)] = 226972, + [SMALL_STATE(6524)] = 226985, + [SMALL_STATE(6525)] = 227002, + [SMALL_STATE(6526)] = 227021, + [SMALL_STATE(6527)] = 227040, + [SMALL_STATE(6528)] = 227059, + [SMALL_STATE(6529)] = 227078, + [SMALL_STATE(6530)] = 227097, + [SMALL_STATE(6531)] = 227116, + [SMALL_STATE(6532)] = 227135, + [SMALL_STATE(6533)] = 227154, + [SMALL_STATE(6534)] = 227173, + [SMALL_STATE(6535)] = 227192, + [SMALL_STATE(6536)] = 227205, + [SMALL_STATE(6537)] = 227224, + [SMALL_STATE(6538)] = 227241, + [SMALL_STATE(6539)] = 227260, + [SMALL_STATE(6540)] = 227277, + [SMALL_STATE(6541)] = 227296, + [SMALL_STATE(6542)] = 227311, + [SMALL_STATE(6543)] = 227330, + [SMALL_STATE(6544)] = 227349, + [SMALL_STATE(6545)] = 227368, + [SMALL_STATE(6546)] = 227387, + [SMALL_STATE(6547)] = 227406, + [SMALL_STATE(6548)] = 227425, + [SMALL_STATE(6549)] = 227444, + [SMALL_STATE(6550)] = 227463, + [SMALL_STATE(6551)] = 227476, + [SMALL_STATE(6552)] = 227495, + [SMALL_STATE(6553)] = 227508, + [SMALL_STATE(6554)] = 227525, + [SMALL_STATE(6555)] = 227544, + [SMALL_STATE(6556)] = 227561, + [SMALL_STATE(6557)] = 227574, + [SMALL_STATE(6558)] = 227593, + [SMALL_STATE(6559)] = 227612, + [SMALL_STATE(6560)] = 227631, + [SMALL_STATE(6561)] = 227650, + [SMALL_STATE(6562)] = 227669, + [SMALL_STATE(6563)] = 227688, + [SMALL_STATE(6564)] = 227707, + [SMALL_STATE(6565)] = 227726, + [SMALL_STATE(6566)] = 227745, + [SMALL_STATE(6567)] = 227764, + [SMALL_STATE(6568)] = 227783, + [SMALL_STATE(6569)] = 227796, + [SMALL_STATE(6570)] = 227813, + [SMALL_STATE(6571)] = 227830, + [SMALL_STATE(6572)] = 227849, + [SMALL_STATE(6573)] = 227864, + [SMALL_STATE(6574)] = 227883, + [SMALL_STATE(6575)] = 227902, + [SMALL_STATE(6576)] = 227921, + [SMALL_STATE(6577)] = 227940, + [SMALL_STATE(6578)] = 227959, + [SMALL_STATE(6579)] = 227978, + [SMALL_STATE(6580)] = 227997, + [SMALL_STATE(6581)] = 228016, + [SMALL_STATE(6582)] = 228029, + [SMALL_STATE(6583)] = 228042, + [SMALL_STATE(6584)] = 228059, + [SMALL_STATE(6585)] = 228076, + [SMALL_STATE(6586)] = 228089, + [SMALL_STATE(6587)] = 228108, + [SMALL_STATE(6588)] = 228127, + [SMALL_STATE(6589)] = 228146, + [SMALL_STATE(6590)] = 228165, + [SMALL_STATE(6591)] = 228184, + [SMALL_STATE(6592)] = 228203, + [SMALL_STATE(6593)] = 228222, + [SMALL_STATE(6594)] = 228241, + [SMALL_STATE(6595)] = 228260, + [SMALL_STATE(6596)] = 228273, + [SMALL_STATE(6597)] = 228286, + [SMALL_STATE(6598)] = 228303, + [SMALL_STATE(6599)] = 228320, + [SMALL_STATE(6600)] = 228333, + [SMALL_STATE(6601)] = 228346, + [SMALL_STATE(6602)] = 228363, + [SMALL_STATE(6603)] = 228376, + [SMALL_STATE(6604)] = 228393, + [SMALL_STATE(6605)] = 228406, + [SMALL_STATE(6606)] = 228419, + [SMALL_STATE(6607)] = 228436, + [SMALL_STATE(6608)] = 228453, + [SMALL_STATE(6609)] = 228472, + [SMALL_STATE(6610)] = 228485, + [SMALL_STATE(6611)] = 228502, + [SMALL_STATE(6612)] = 228519, + [SMALL_STATE(6613)] = 228532, + [SMALL_STATE(6614)] = 228545, + [SMALL_STATE(6615)] = 228562, + [SMALL_STATE(6616)] = 228579, + [SMALL_STATE(6617)] = 228592, + [SMALL_STATE(6618)] = 228605, + [SMALL_STATE(6619)] = 228622, + [SMALL_STATE(6620)] = 228639, + [SMALL_STATE(6621)] = 228652, + [SMALL_STATE(6622)] = 228665, + [SMALL_STATE(6623)] = 228682, + [SMALL_STATE(6624)] = 228699, + [SMALL_STATE(6625)] = 228714, + [SMALL_STATE(6626)] = 228727, + [SMALL_STATE(6627)] = 228744, + [SMALL_STATE(6628)] = 228761, + [SMALL_STATE(6629)] = 228780, + [SMALL_STATE(6630)] = 228793, + [SMALL_STATE(6631)] = 228810, + [SMALL_STATE(6632)] = 228827, + [SMALL_STATE(6633)] = 228846, + [SMALL_STATE(6634)] = 228859, + [SMALL_STATE(6635)] = 228876, + [SMALL_STATE(6636)] = 228893, + [SMALL_STATE(6637)] = 228908, + [SMALL_STATE(6638)] = 228921, + [SMALL_STATE(6639)] = 228938, + [SMALL_STATE(6640)] = 228955, + [SMALL_STATE(6641)] = 228974, + [SMALL_STATE(6642)] = 228987, + [SMALL_STATE(6643)] = 229004, + [SMALL_STATE(6644)] = 229021, + [SMALL_STATE(6645)] = 229040, + [SMALL_STATE(6646)] = 229053, + [SMALL_STATE(6647)] = 229070, + [SMALL_STATE(6648)] = 229087, + [SMALL_STATE(6649)] = 229104, + [SMALL_STATE(6650)] = 229117, + [SMALL_STATE(6651)] = 229134, + [SMALL_STATE(6652)] = 229151, + [SMALL_STATE(6653)] = 229170, + [SMALL_STATE(6654)] = 229183, + [SMALL_STATE(6655)] = 229200, + [SMALL_STATE(6656)] = 229217, + [SMALL_STATE(6657)] = 229234, + [SMALL_STATE(6658)] = 229247, + [SMALL_STATE(6659)] = 229264, + [SMALL_STATE(6660)] = 229281, + [SMALL_STATE(6661)] = 229300, + [SMALL_STATE(6662)] = 229313, + [SMALL_STATE(6663)] = 229330, + [SMALL_STATE(6664)] = 229347, + [SMALL_STATE(6665)] = 229366, + [SMALL_STATE(6666)] = 229379, + [SMALL_STATE(6667)] = 229396, + [SMALL_STATE(6668)] = 229413, + [SMALL_STATE(6669)] = 229432, + [SMALL_STATE(6670)] = 229445, + [SMALL_STATE(6671)] = 229462, + [SMALL_STATE(6672)] = 229479, + [SMALL_STATE(6673)] = 229498, + [SMALL_STATE(6674)] = 229511, + [SMALL_STATE(6675)] = 229528, + [SMALL_STATE(6676)] = 229545, + [SMALL_STATE(6677)] = 229560, + [SMALL_STATE(6678)] = 229573, + [SMALL_STATE(6679)] = 229590, + [SMALL_STATE(6680)] = 229607, + [SMALL_STATE(6681)] = 229626, + [SMALL_STATE(6682)] = 229639, + [SMALL_STATE(6683)] = 229656, + [SMALL_STATE(6684)] = 229673, + [SMALL_STATE(6685)] = 229690, + [SMALL_STATE(6686)] = 229703, + [SMALL_STATE(6687)] = 229720, + [SMALL_STATE(6688)] = 229737, + [SMALL_STATE(6689)] = 229750, + [SMALL_STATE(6690)] = 229763, + [SMALL_STATE(6691)] = 229780, + [SMALL_STATE(6692)] = 229797, + [SMALL_STATE(6693)] = 229810, + [SMALL_STATE(6694)] = 229823, + [SMALL_STATE(6695)] = 229840, + [SMALL_STATE(6696)] = 229857, + [SMALL_STATE(6697)] = 229876, + [SMALL_STATE(6698)] = 229889, + [SMALL_STATE(6699)] = 229906, + [SMALL_STATE(6700)] = 229923, + [SMALL_STATE(6701)] = 229942, + [SMALL_STATE(6702)] = 229961, + [SMALL_STATE(6703)] = 229978, + [SMALL_STATE(6704)] = 229995, + [SMALL_STATE(6705)] = 230008, + [SMALL_STATE(6706)] = 230025, + [SMALL_STATE(6707)] = 230042, + [SMALL_STATE(6708)] = 230055, + [SMALL_STATE(6709)] = 230072, + [SMALL_STATE(6710)] = 230089, + [SMALL_STATE(6711)] = 230102, + [SMALL_STATE(6712)] = 230119, + [SMALL_STATE(6713)] = 230136, + [SMALL_STATE(6714)] = 230153, + [SMALL_STATE(6715)] = 230170, + [SMALL_STATE(6716)] = 230187, + [SMALL_STATE(6717)] = 230204, + [SMALL_STATE(6718)] = 230221, + [SMALL_STATE(6719)] = 230238, + [SMALL_STATE(6720)] = 230255, + [SMALL_STATE(6721)] = 230272, + [SMALL_STATE(6722)] = 230289, + [SMALL_STATE(6723)] = 230302, + [SMALL_STATE(6724)] = 230321, + [SMALL_STATE(6725)] = 230336, + [SMALL_STATE(6726)] = 230355, + [SMALL_STATE(6727)] = 230372, + [SMALL_STATE(6728)] = 230387, + [SMALL_STATE(6729)] = 230400, + [SMALL_STATE(6730)] = 230415, + [SMALL_STATE(6731)] = 230434, + [SMALL_STATE(6732)] = 230449, + [SMALL_STATE(6733)] = 230468, + [SMALL_STATE(6734)] = 230487, + [SMALL_STATE(6735)] = 230500, + [SMALL_STATE(6736)] = 230513, + [SMALL_STATE(6737)] = 230526, + [SMALL_STATE(6738)] = 230539, + [SMALL_STATE(6739)] = 230558, + [SMALL_STATE(6740)] = 230571, + [SMALL_STATE(6741)] = 230584, + [SMALL_STATE(6742)] = 230603, + [SMALL_STATE(6743)] = 230620, + [SMALL_STATE(6744)] = 230639, + [SMALL_STATE(6745)] = 230658, + [SMALL_STATE(6746)] = 230677, + [SMALL_STATE(6747)] = 230696, + [SMALL_STATE(6748)] = 230715, + [SMALL_STATE(6749)] = 230734, + [SMALL_STATE(6750)] = 230753, + [SMALL_STATE(6751)] = 230766, + [SMALL_STATE(6752)] = 230779, + [SMALL_STATE(6753)] = 230792, + [SMALL_STATE(6754)] = 230811, + [SMALL_STATE(6755)] = 230824, + [SMALL_STATE(6756)] = 230837, + [SMALL_STATE(6757)] = 230850, + [SMALL_STATE(6758)] = 230863, + [SMALL_STATE(6759)] = 230876, + [SMALL_STATE(6760)] = 230895, + [SMALL_STATE(6761)] = 230908, + [SMALL_STATE(6762)] = 230921, + [SMALL_STATE(6763)] = 230938, + [SMALL_STATE(6764)] = 230951, + [SMALL_STATE(6765)] = 230964, + [SMALL_STATE(6766)] = 230977, + [SMALL_STATE(6767)] = 230992, + [SMALL_STATE(6768)] = 231005, + [SMALL_STATE(6769)] = 231018, + [SMALL_STATE(6770)] = 231035, + [SMALL_STATE(6771)] = 231050, + [SMALL_STATE(6772)] = 231067, + [SMALL_STATE(6773)] = 231086, + [SMALL_STATE(6774)] = 231099, + [SMALL_STATE(6775)] = 231112, + [SMALL_STATE(6776)] = 231125, + [SMALL_STATE(6777)] = 231142, + [SMALL_STATE(6778)] = 231159, + [SMALL_STATE(6779)] = 231172, + [SMALL_STATE(6780)] = 231185, + [SMALL_STATE(6781)] = 231200, + [SMALL_STATE(6782)] = 231215, + [SMALL_STATE(6783)] = 231228, + [SMALL_STATE(6784)] = 231247, + [SMALL_STATE(6785)] = 231264, + [SMALL_STATE(6786)] = 231281, + [SMALL_STATE(6787)] = 231296, + [SMALL_STATE(6788)] = 231311, + [SMALL_STATE(6789)] = 231328, + [SMALL_STATE(6790)] = 231343, + [SMALL_STATE(6791)] = 231360, + [SMALL_STATE(6792)] = 231377, + [SMALL_STATE(6793)] = 231392, + [SMALL_STATE(6794)] = 231411, + [SMALL_STATE(6795)] = 231424, + [SMALL_STATE(6796)] = 231443, + [SMALL_STATE(6797)] = 231462, + [SMALL_STATE(6798)] = 231481, + [SMALL_STATE(6799)] = 231500, + [SMALL_STATE(6800)] = 231519, + [SMALL_STATE(6801)] = 231538, + [SMALL_STATE(6802)] = 231557, + [SMALL_STATE(6803)] = 231574, + [SMALL_STATE(6804)] = 231593, + [SMALL_STATE(6805)] = 231610, + [SMALL_STATE(6806)] = 231627, + [SMALL_STATE(6807)] = 231646, + [SMALL_STATE(6808)] = 231663, + [SMALL_STATE(6809)] = 231682, + [SMALL_STATE(6810)] = 231701, + [SMALL_STATE(6811)] = 231720, + [SMALL_STATE(6812)] = 231733, + [SMALL_STATE(6813)] = 231746, + [SMALL_STATE(6814)] = 231759, + [SMALL_STATE(6815)] = 231772, + [SMALL_STATE(6816)] = 231791, + [SMALL_STATE(6817)] = 231810, + [SMALL_STATE(6818)] = 231829, + [SMALL_STATE(6819)] = 231848, + [SMALL_STATE(6820)] = 231867, + [SMALL_STATE(6821)] = 231886, + [SMALL_STATE(6822)] = 231905, + [SMALL_STATE(6823)] = 231924, + [SMALL_STATE(6824)] = 231943, + [SMALL_STATE(6825)] = 231962, + [SMALL_STATE(6826)] = 231975, + [SMALL_STATE(6827)] = 231988, + [SMALL_STATE(6828)] = 232001, + [SMALL_STATE(6829)] = 232014, + [SMALL_STATE(6830)] = 232027, + [SMALL_STATE(6831)] = 232040, + [SMALL_STATE(6832)] = 232059, + [SMALL_STATE(6833)] = 232078, + [SMALL_STATE(6834)] = 232097, + [SMALL_STATE(6835)] = 232110, + [SMALL_STATE(6836)] = 232127, + [SMALL_STATE(6837)] = 232140, + [SMALL_STATE(6838)] = 232153, + [SMALL_STATE(6839)] = 232166, + [SMALL_STATE(6840)] = 232185, + [SMALL_STATE(6841)] = 232204, + [SMALL_STATE(6842)] = 232221, + [SMALL_STATE(6843)] = 232238, + [SMALL_STATE(6844)] = 232255, + [SMALL_STATE(6845)] = 232272, + [SMALL_STATE(6846)] = 232291, + [SMALL_STATE(6847)] = 232310, + [SMALL_STATE(6848)] = 232329, + [SMALL_STATE(6849)] = 232344, + [SMALL_STATE(6850)] = 232357, + [SMALL_STATE(6851)] = 232374, + [SMALL_STATE(6852)] = 232393, + [SMALL_STATE(6853)] = 232408, + [SMALL_STATE(6854)] = 232421, + [SMALL_STATE(6855)] = 232434, + [SMALL_STATE(6856)] = 232447, + [SMALL_STATE(6857)] = 232462, + [SMALL_STATE(6858)] = 232479, + [SMALL_STATE(6859)] = 232492, + [SMALL_STATE(6860)] = 232509, + [SMALL_STATE(6861)] = 232522, + [SMALL_STATE(6862)] = 232539, + [SMALL_STATE(6863)] = 232558, + [SMALL_STATE(6864)] = 232573, + [SMALL_STATE(6865)] = 232592, + [SMALL_STATE(6866)] = 232611, + [SMALL_STATE(6867)] = 232630, + [SMALL_STATE(6868)] = 232649, + [SMALL_STATE(6869)] = 232668, + [SMALL_STATE(6870)] = 232687, + [SMALL_STATE(6871)] = 232706, + [SMALL_STATE(6872)] = 232725, + [SMALL_STATE(6873)] = 232742, + [SMALL_STATE(6874)] = 232761, + [SMALL_STATE(6875)] = 232780, + [SMALL_STATE(6876)] = 232799, + [SMALL_STATE(6877)] = 232814, + [SMALL_STATE(6878)] = 232833, + [SMALL_STATE(6879)] = 232852, + [SMALL_STATE(6880)] = 232867, + [SMALL_STATE(6881)] = 232886, + [SMALL_STATE(6882)] = 232901, + [SMALL_STATE(6883)] = 232916, + [SMALL_STATE(6884)] = 232929, + [SMALL_STATE(6885)] = 232946, + [SMALL_STATE(6886)] = 232963, + [SMALL_STATE(6887)] = 232976, + [SMALL_STATE(6888)] = 232991, + [SMALL_STATE(6889)] = 233006, + [SMALL_STATE(6890)] = 233025, + [SMALL_STATE(6891)] = 233044, + [SMALL_STATE(6892)] = 233057, + [SMALL_STATE(6893)] = 233074, + [SMALL_STATE(6894)] = 233087, + [SMALL_STATE(6895)] = 233100, + [SMALL_STATE(6896)] = 233113, + [SMALL_STATE(6897)] = 233128, + [SMALL_STATE(6898)] = 233141, + [SMALL_STATE(6899)] = 233154, + [SMALL_STATE(6900)] = 233171, + [SMALL_STATE(6901)] = 233190, + [SMALL_STATE(6902)] = 233209, + [SMALL_STATE(6903)] = 233228, + [SMALL_STATE(6904)] = 233247, + [SMALL_STATE(6905)] = 233266, + [SMALL_STATE(6906)] = 233279, + [SMALL_STATE(6907)] = 233292, + [SMALL_STATE(6908)] = 233305, + [SMALL_STATE(6909)] = 233324, + [SMALL_STATE(6910)] = 233341, + [SMALL_STATE(6911)] = 233354, + [SMALL_STATE(6912)] = 233373, + [SMALL_STATE(6913)] = 233392, + [SMALL_STATE(6914)] = 233409, + [SMALL_STATE(6915)] = 233426, + [SMALL_STATE(6916)] = 233439, + [SMALL_STATE(6917)] = 233452, + [SMALL_STATE(6918)] = 233471, + [SMALL_STATE(6919)] = 233490, + [SMALL_STATE(6920)] = 233509, + [SMALL_STATE(6921)] = 233526, + [SMALL_STATE(6922)] = 233545, + [SMALL_STATE(6923)] = 233558, + [SMALL_STATE(6924)] = 233577, + [SMALL_STATE(6925)] = 233590, + [SMALL_STATE(6926)] = 233609, + [SMALL_STATE(6927)] = 233622, + [SMALL_STATE(6928)] = 233635, + [SMALL_STATE(6929)] = 233652, + [SMALL_STATE(6930)] = 233665, + [SMALL_STATE(6931)] = 233680, + [SMALL_STATE(6932)] = 233697, + [SMALL_STATE(6933)] = 233716, + [SMALL_STATE(6934)] = 233729, + [SMALL_STATE(6935)] = 233742, + [SMALL_STATE(6936)] = 233755, + [SMALL_STATE(6937)] = 233768, + [SMALL_STATE(6938)] = 233783, + [SMALL_STATE(6939)] = 233796, + [SMALL_STATE(6940)] = 233809, + [SMALL_STATE(6941)] = 233822, + [SMALL_STATE(6942)] = 233841, + [SMALL_STATE(6943)] = 233858, + [SMALL_STATE(6944)] = 233875, + [SMALL_STATE(6945)] = 233894, + [SMALL_STATE(6946)] = 233913, + [SMALL_STATE(6947)] = 233926, + [SMALL_STATE(6948)] = 233940, + [SMALL_STATE(6949)] = 233956, + [SMALL_STATE(6950)] = 233968, + [SMALL_STATE(6951)] = 233980, + [SMALL_STATE(6952)] = 233992, + [SMALL_STATE(6953)] = 234004, + [SMALL_STATE(6954)] = 234016, + [SMALL_STATE(6955)] = 234032, + [SMALL_STATE(6956)] = 234048, + [SMALL_STATE(6957)] = 234060, + [SMALL_STATE(6958)] = 234072, + [SMALL_STATE(6959)] = 234084, + [SMALL_STATE(6960)] = 234100, + [SMALL_STATE(6961)] = 234116, + [SMALL_STATE(6962)] = 234128, + [SMALL_STATE(6963)] = 234144, + [SMALL_STATE(6964)] = 234158, + [SMALL_STATE(6965)] = 234174, + [SMALL_STATE(6966)] = 234190, + [SMALL_STATE(6967)] = 234206, + [SMALL_STATE(6968)] = 234222, + [SMALL_STATE(6969)] = 234238, + [SMALL_STATE(6970)] = 234254, + [SMALL_STATE(6971)] = 234268, + [SMALL_STATE(6972)] = 234282, + [SMALL_STATE(6973)] = 234298, + [SMALL_STATE(6974)] = 234314, + [SMALL_STATE(6975)] = 234330, + [SMALL_STATE(6976)] = 234342, + [SMALL_STATE(6977)] = 234358, + [SMALL_STATE(6978)] = 234374, + [SMALL_STATE(6979)] = 234386, + [SMALL_STATE(6980)] = 234402, + [SMALL_STATE(6981)] = 234418, + [SMALL_STATE(6982)] = 234430, + [SMALL_STATE(6983)] = 234446, + [SMALL_STATE(6984)] = 234462, + [SMALL_STATE(6985)] = 234478, + [SMALL_STATE(6986)] = 234494, + [SMALL_STATE(6987)] = 234510, + [SMALL_STATE(6988)] = 234524, + [SMALL_STATE(6989)] = 234536, + [SMALL_STATE(6990)] = 234552, + [SMALL_STATE(6991)] = 234568, + [SMALL_STATE(6992)] = 234584, + [SMALL_STATE(6993)] = 234600, + [SMALL_STATE(6994)] = 234616, + [SMALL_STATE(6995)] = 234628, + [SMALL_STATE(6996)] = 234644, + [SMALL_STATE(6997)] = 234660, + [SMALL_STATE(6998)] = 234676, + [SMALL_STATE(6999)] = 234692, + [SMALL_STATE(7000)] = 234708, + [SMALL_STATE(7001)] = 234720, + [SMALL_STATE(7002)] = 234732, + [SMALL_STATE(7003)] = 234748, + [SMALL_STATE(7004)] = 234760, + [SMALL_STATE(7005)] = 234776, + [SMALL_STATE(7006)] = 234788, + [SMALL_STATE(7007)] = 234800, + [SMALL_STATE(7008)] = 234816, + [SMALL_STATE(7009)] = 234832, + [SMALL_STATE(7010)] = 234844, + [SMALL_STATE(7011)] = 234860, + [SMALL_STATE(7012)] = 234876, + [SMALL_STATE(7013)] = 234888, + [SMALL_STATE(7014)] = 234900, + [SMALL_STATE(7015)] = 234914, + [SMALL_STATE(7016)] = 234930, + [SMALL_STATE(7017)] = 234946, + [SMALL_STATE(7018)] = 234962, + [SMALL_STATE(7019)] = 234978, + [SMALL_STATE(7020)] = 234994, + [SMALL_STATE(7021)] = 235010, + [SMALL_STATE(7022)] = 235026, + [SMALL_STATE(7023)] = 235042, + [SMALL_STATE(7024)] = 235058, + [SMALL_STATE(7025)] = 235072, + [SMALL_STATE(7026)] = 235088, + [SMALL_STATE(7027)] = 235104, + [SMALL_STATE(7028)] = 235120, + [SMALL_STATE(7029)] = 235134, + [SMALL_STATE(7030)] = 235146, + [SMALL_STATE(7031)] = 235158, + [SMALL_STATE(7032)] = 235172, + [SMALL_STATE(7033)] = 235184, + [SMALL_STATE(7034)] = 235198, + [SMALL_STATE(7035)] = 235214, + [SMALL_STATE(7036)] = 235230, + [SMALL_STATE(7037)] = 235246, + [SMALL_STATE(7038)] = 235262, + [SMALL_STATE(7039)] = 235278, + [SMALL_STATE(7040)] = 235294, + [SMALL_STATE(7041)] = 235310, + [SMALL_STATE(7042)] = 235326, + [SMALL_STATE(7043)] = 235342, + [SMALL_STATE(7044)] = 235358, + [SMALL_STATE(7045)] = 235374, + [SMALL_STATE(7046)] = 235390, + [SMALL_STATE(7047)] = 235402, + [SMALL_STATE(7048)] = 235418, + [SMALL_STATE(7049)] = 235434, + [SMALL_STATE(7050)] = 235450, + [SMALL_STATE(7051)] = 235466, + [SMALL_STATE(7052)] = 235482, + [SMALL_STATE(7053)] = 235498, + [SMALL_STATE(7054)] = 235512, + [SMALL_STATE(7055)] = 235526, + [SMALL_STATE(7056)] = 235542, + [SMALL_STATE(7057)] = 235554, + [SMALL_STATE(7058)] = 235566, + [SMALL_STATE(7059)] = 235578, + [SMALL_STATE(7060)] = 235594, + [SMALL_STATE(7061)] = 235610, + [SMALL_STATE(7062)] = 235624, + [SMALL_STATE(7063)] = 235640, + [SMALL_STATE(7064)] = 235656, + [SMALL_STATE(7065)] = 235672, + [SMALL_STATE(7066)] = 235684, + [SMALL_STATE(7067)] = 235700, + [SMALL_STATE(7068)] = 235716, + [SMALL_STATE(7069)] = 235732, + [SMALL_STATE(7070)] = 235748, + [SMALL_STATE(7071)] = 235764, + [SMALL_STATE(7072)] = 235780, + [SMALL_STATE(7073)] = 235796, + [SMALL_STATE(7074)] = 235808, + [SMALL_STATE(7075)] = 235824, + [SMALL_STATE(7076)] = 235840, + [SMALL_STATE(7077)] = 235852, + [SMALL_STATE(7078)] = 235864, + [SMALL_STATE(7079)] = 235880, + [SMALL_STATE(7080)] = 235892, + [SMALL_STATE(7081)] = 235908, + [SMALL_STATE(7082)] = 235924, + [SMALL_STATE(7083)] = 235936, + [SMALL_STATE(7084)] = 235948, + [SMALL_STATE(7085)] = 235964, + [SMALL_STATE(7086)] = 235978, + [SMALL_STATE(7087)] = 235994, + [SMALL_STATE(7088)] = 236010, + [SMALL_STATE(7089)] = 236022, + [SMALL_STATE(7090)] = 236038, + [SMALL_STATE(7091)] = 236054, + [SMALL_STATE(7092)] = 236070, + [SMALL_STATE(7093)] = 236082, + [SMALL_STATE(7094)] = 236098, + [SMALL_STATE(7095)] = 236112, + [SMALL_STATE(7096)] = 236128, + [SMALL_STATE(7097)] = 236144, + [SMALL_STATE(7098)] = 236160, + [SMALL_STATE(7099)] = 236176, + [SMALL_STATE(7100)] = 236188, + [SMALL_STATE(7101)] = 236204, + [SMALL_STATE(7102)] = 236220, + [SMALL_STATE(7103)] = 236236, + [SMALL_STATE(7104)] = 236248, + [SMALL_STATE(7105)] = 236264, + [SMALL_STATE(7106)] = 236280, + [SMALL_STATE(7107)] = 236296, + [SMALL_STATE(7108)] = 236312, + [SMALL_STATE(7109)] = 236328, + [SMALL_STATE(7110)] = 236344, + [SMALL_STATE(7111)] = 236360, + [SMALL_STATE(7112)] = 236376, + [SMALL_STATE(7113)] = 236390, + [SMALL_STATE(7114)] = 236406, + [SMALL_STATE(7115)] = 236422, + [SMALL_STATE(7116)] = 236438, + [SMALL_STATE(7117)] = 236454, + [SMALL_STATE(7118)] = 236466, + [SMALL_STATE(7119)] = 236478, + [SMALL_STATE(7120)] = 236490, + [SMALL_STATE(7121)] = 236502, + [SMALL_STATE(7122)] = 236518, + [SMALL_STATE(7123)] = 236534, + [SMALL_STATE(7124)] = 236550, + [SMALL_STATE(7125)] = 236562, + [SMALL_STATE(7126)] = 236574, + [SMALL_STATE(7127)] = 236586, + [SMALL_STATE(7128)] = 236602, + [SMALL_STATE(7129)] = 236618, + [SMALL_STATE(7130)] = 236630, + [SMALL_STATE(7131)] = 236646, + [SMALL_STATE(7132)] = 236662, + [SMALL_STATE(7133)] = 236678, + [SMALL_STATE(7134)] = 236692, + [SMALL_STATE(7135)] = 236708, + [SMALL_STATE(7136)] = 236724, + [SMALL_STATE(7137)] = 236740, + [SMALL_STATE(7138)] = 236756, + [SMALL_STATE(7139)] = 236772, + [SMALL_STATE(7140)] = 236788, + [SMALL_STATE(7141)] = 236800, + [SMALL_STATE(7142)] = 236816, + [SMALL_STATE(7143)] = 236832, + [SMALL_STATE(7144)] = 236848, + [SMALL_STATE(7145)] = 236864, + [SMALL_STATE(7146)] = 236880, + [SMALL_STATE(7147)] = 236896, + [SMALL_STATE(7148)] = 236912, + [SMALL_STATE(7149)] = 236928, + [SMALL_STATE(7150)] = 236944, + [SMALL_STATE(7151)] = 236960, + [SMALL_STATE(7152)] = 236976, + [SMALL_STATE(7153)] = 236992, + [SMALL_STATE(7154)] = 237008, + [SMALL_STATE(7155)] = 237024, + [SMALL_STATE(7156)] = 237040, + [SMALL_STATE(7157)] = 237056, + [SMALL_STATE(7158)] = 237068, + [SMALL_STATE(7159)] = 237084, + [SMALL_STATE(7160)] = 237100, + [SMALL_STATE(7161)] = 237116, + [SMALL_STATE(7162)] = 237128, + [SMALL_STATE(7163)] = 237142, + [SMALL_STATE(7164)] = 237156, + [SMALL_STATE(7165)] = 237172, + [SMALL_STATE(7166)] = 237188, + [SMALL_STATE(7167)] = 237204, + [SMALL_STATE(7168)] = 237220, + [SMALL_STATE(7169)] = 237236, + [SMALL_STATE(7170)] = 237252, + [SMALL_STATE(7171)] = 237264, + [SMALL_STATE(7172)] = 237280, + [SMALL_STATE(7173)] = 237296, + [SMALL_STATE(7174)] = 237312, + [SMALL_STATE(7175)] = 237328, + [SMALL_STATE(7176)] = 237340, + [SMALL_STATE(7177)] = 237356, + [SMALL_STATE(7178)] = 237368, + [SMALL_STATE(7179)] = 237380, + [SMALL_STATE(7180)] = 237396, + [SMALL_STATE(7181)] = 237412, + [SMALL_STATE(7182)] = 237428, + [SMALL_STATE(7183)] = 237440, + [SMALL_STATE(7184)] = 237456, + [SMALL_STATE(7185)] = 237472, + [SMALL_STATE(7186)] = 237488, + [SMALL_STATE(7187)] = 237504, + [SMALL_STATE(7188)] = 237520, + [SMALL_STATE(7189)] = 237536, + [SMALL_STATE(7190)] = 237552, + [SMALL_STATE(7191)] = 237564, + [SMALL_STATE(7192)] = 237580, + [SMALL_STATE(7193)] = 237592, + [SMALL_STATE(7194)] = 237604, + [SMALL_STATE(7195)] = 237620, + [SMALL_STATE(7196)] = 237634, + [SMALL_STATE(7197)] = 237648, + [SMALL_STATE(7198)] = 237664, + [SMALL_STATE(7199)] = 237676, + [SMALL_STATE(7200)] = 237692, + [SMALL_STATE(7201)] = 237708, + [SMALL_STATE(7202)] = 237724, + [SMALL_STATE(7203)] = 237740, + [SMALL_STATE(7204)] = 237756, + [SMALL_STATE(7205)] = 237770, + [SMALL_STATE(7206)] = 237782, + [SMALL_STATE(7207)] = 237798, + [SMALL_STATE(7208)] = 237814, + [SMALL_STATE(7209)] = 237830, + [SMALL_STATE(7210)] = 237842, + [SMALL_STATE(7211)] = 237858, + [SMALL_STATE(7212)] = 237870, + [SMALL_STATE(7213)] = 237882, + [SMALL_STATE(7214)] = 237896, + [SMALL_STATE(7215)] = 237910, + [SMALL_STATE(7216)] = 237926, + [SMALL_STATE(7217)] = 237942, + [SMALL_STATE(7218)] = 237958, + [SMALL_STATE(7219)] = 237974, + [SMALL_STATE(7220)] = 237990, + [SMALL_STATE(7221)] = 238006, + [SMALL_STATE(7222)] = 238022, + [SMALL_STATE(7223)] = 238038, + [SMALL_STATE(7224)] = 238050, + [SMALL_STATE(7225)] = 238066, + [SMALL_STATE(7226)] = 238082, + [SMALL_STATE(7227)] = 238096, + [SMALL_STATE(7228)] = 238112, + [SMALL_STATE(7229)] = 238124, + [SMALL_STATE(7230)] = 238136, + [SMALL_STATE(7231)] = 238148, + [SMALL_STATE(7232)] = 238164, + [SMALL_STATE(7233)] = 238180, + [SMALL_STATE(7234)] = 238196, + [SMALL_STATE(7235)] = 238212, + [SMALL_STATE(7236)] = 238228, + [SMALL_STATE(7237)] = 238244, + [SMALL_STATE(7238)] = 238256, + [SMALL_STATE(7239)] = 238272, + [SMALL_STATE(7240)] = 238288, + [SMALL_STATE(7241)] = 238304, + [SMALL_STATE(7242)] = 238320, + [SMALL_STATE(7243)] = 238336, + [SMALL_STATE(7244)] = 238352, + [SMALL_STATE(7245)] = 238368, + [SMALL_STATE(7246)] = 238384, + [SMALL_STATE(7247)] = 238398, + [SMALL_STATE(7248)] = 238412, + [SMALL_STATE(7249)] = 238424, + [SMALL_STATE(7250)] = 238440, + [SMALL_STATE(7251)] = 238456, + [SMALL_STATE(7252)] = 238472, + [SMALL_STATE(7253)] = 238484, + [SMALL_STATE(7254)] = 238496, + [SMALL_STATE(7255)] = 238508, + [SMALL_STATE(7256)] = 238522, + [SMALL_STATE(7257)] = 238534, + [SMALL_STATE(7258)] = 238550, + [SMALL_STATE(7259)] = 238562, + [SMALL_STATE(7260)] = 238574, + [SMALL_STATE(7261)] = 238586, + [SMALL_STATE(7262)] = 238598, + [SMALL_STATE(7263)] = 238610, + [SMALL_STATE(7264)] = 238624, + [SMALL_STATE(7265)] = 238638, + [SMALL_STATE(7266)] = 238654, + [SMALL_STATE(7267)] = 238670, + [SMALL_STATE(7268)] = 238682, + [SMALL_STATE(7269)] = 238698, + [SMALL_STATE(7270)] = 238714, + [SMALL_STATE(7271)] = 238730, + [SMALL_STATE(7272)] = 238746, + [SMALL_STATE(7273)] = 238758, + [SMALL_STATE(7274)] = 238774, + [SMALL_STATE(7275)] = 238790, + [SMALL_STATE(7276)] = 238802, + [SMALL_STATE(7277)] = 238818, + [SMALL_STATE(7278)] = 238832, + [SMALL_STATE(7279)] = 238844, + [SMALL_STATE(7280)] = 238856, + [SMALL_STATE(7281)] = 238872, + [SMALL_STATE(7282)] = 238888, + [SMALL_STATE(7283)] = 238902, + [SMALL_STATE(7284)] = 238918, + [SMALL_STATE(7285)] = 238934, + [SMALL_STATE(7286)] = 238948, + [SMALL_STATE(7287)] = 238962, + [SMALL_STATE(7288)] = 238978, + [SMALL_STATE(7289)] = 238994, + [SMALL_STATE(7290)] = 239010, + [SMALL_STATE(7291)] = 239026, + [SMALL_STATE(7292)] = 239040, + [SMALL_STATE(7293)] = 239056, + [SMALL_STATE(7294)] = 239072, + [SMALL_STATE(7295)] = 239088, + [SMALL_STATE(7296)] = 239104, + [SMALL_STATE(7297)] = 239118, + [SMALL_STATE(7298)] = 239134, + [SMALL_STATE(7299)] = 239146, + [SMALL_STATE(7300)] = 239162, + [SMALL_STATE(7301)] = 239178, + [SMALL_STATE(7302)] = 239192, + [SMALL_STATE(7303)] = 239204, + [SMALL_STATE(7304)] = 239220, + [SMALL_STATE(7305)] = 239236, + [SMALL_STATE(7306)] = 239252, + [SMALL_STATE(7307)] = 239268, + [SMALL_STATE(7308)] = 239284, + [SMALL_STATE(7309)] = 239300, + [SMALL_STATE(7310)] = 239316, + [SMALL_STATE(7311)] = 239328, + [SMALL_STATE(7312)] = 239344, + [SMALL_STATE(7313)] = 239360, + [SMALL_STATE(7314)] = 239372, + [SMALL_STATE(7315)] = 239388, + [SMALL_STATE(7316)] = 239404, + [SMALL_STATE(7317)] = 239420, + [SMALL_STATE(7318)] = 239432, + [SMALL_STATE(7319)] = 239446, + [SMALL_STATE(7320)] = 239462, + [SMALL_STATE(7321)] = 239474, + [SMALL_STATE(7322)] = 239490, + [SMALL_STATE(7323)] = 239502, + [SMALL_STATE(7324)] = 239514, + [SMALL_STATE(7325)] = 239526, + [SMALL_STATE(7326)] = 239538, + [SMALL_STATE(7327)] = 239550, + [SMALL_STATE(7328)] = 239562, + [SMALL_STATE(7329)] = 239578, + [SMALL_STATE(7330)] = 239594, + [SMALL_STATE(7331)] = 239606, + [SMALL_STATE(7332)] = 239618, + [SMALL_STATE(7333)] = 239634, + [SMALL_STATE(7334)] = 239650, + [SMALL_STATE(7335)] = 239666, + [SMALL_STATE(7336)] = 239678, + [SMALL_STATE(7337)] = 239694, + [SMALL_STATE(7338)] = 239710, + [SMALL_STATE(7339)] = 239722, + [SMALL_STATE(7340)] = 239738, + [SMALL_STATE(7341)] = 239754, + [SMALL_STATE(7342)] = 239766, + [SMALL_STATE(7343)] = 239782, + [SMALL_STATE(7344)] = 239798, + [SMALL_STATE(7345)] = 239814, + [SMALL_STATE(7346)] = 239830, + [SMALL_STATE(7347)] = 239846, + [SMALL_STATE(7348)] = 239862, + [SMALL_STATE(7349)] = 239878, + [SMALL_STATE(7350)] = 239894, + [SMALL_STATE(7351)] = 239910, + [SMALL_STATE(7352)] = 239926, + [SMALL_STATE(7353)] = 239942, + [SMALL_STATE(7354)] = 239958, + [SMALL_STATE(7355)] = 239974, + [SMALL_STATE(7356)] = 239988, + [SMALL_STATE(7357)] = 240002, + [SMALL_STATE(7358)] = 240016, + [SMALL_STATE(7359)] = 240030, + [SMALL_STATE(7360)] = 240042, + [SMALL_STATE(7361)] = 240054, + [SMALL_STATE(7362)] = 240068, + [SMALL_STATE(7363)] = 240084, + [SMALL_STATE(7364)] = 240100, + [SMALL_STATE(7365)] = 240116, + [SMALL_STATE(7366)] = 240132, + [SMALL_STATE(7367)] = 240148, + [SMALL_STATE(7368)] = 240162, + [SMALL_STATE(7369)] = 240178, + [SMALL_STATE(7370)] = 240194, + [SMALL_STATE(7371)] = 240210, + [SMALL_STATE(7372)] = 240222, + [SMALL_STATE(7373)] = 240238, + [SMALL_STATE(7374)] = 240252, + [SMALL_STATE(7375)] = 240268, + [SMALL_STATE(7376)] = 240282, + [SMALL_STATE(7377)] = 240298, + [SMALL_STATE(7378)] = 240314, + [SMALL_STATE(7379)] = 240330, + [SMALL_STATE(7380)] = 240346, + [SMALL_STATE(7381)] = 240360, + [SMALL_STATE(7382)] = 240374, + [SMALL_STATE(7383)] = 240388, + [SMALL_STATE(7384)] = 240404, + [SMALL_STATE(7385)] = 240420, + [SMALL_STATE(7386)] = 240432, + [SMALL_STATE(7387)] = 240448, + [SMALL_STATE(7388)] = 240464, + [SMALL_STATE(7389)] = 240478, + [SMALL_STATE(7390)] = 240492, + [SMALL_STATE(7391)] = 240508, + [SMALL_STATE(7392)] = 240524, + [SMALL_STATE(7393)] = 240536, + [SMALL_STATE(7394)] = 240552, + [SMALL_STATE(7395)] = 240568, + [SMALL_STATE(7396)] = 240584, + [SMALL_STATE(7397)] = 240598, + [SMALL_STATE(7398)] = 240610, + [SMALL_STATE(7399)] = 240624, + [SMALL_STATE(7400)] = 240640, + [SMALL_STATE(7401)] = 240656, + [SMALL_STATE(7402)] = 240672, + [SMALL_STATE(7403)] = 240688, + [SMALL_STATE(7404)] = 240700, + [SMALL_STATE(7405)] = 240714, + [SMALL_STATE(7406)] = 240728, + [SMALL_STATE(7407)] = 240744, + [SMALL_STATE(7408)] = 240760, + [SMALL_STATE(7409)] = 240776, + [SMALL_STATE(7410)] = 240792, + [SMALL_STATE(7411)] = 240804, + [SMALL_STATE(7412)] = 240818, + [SMALL_STATE(7413)] = 240834, + [SMALL_STATE(7414)] = 240848, + [SMALL_STATE(7415)] = 240864, + [SMALL_STATE(7416)] = 240880, + [SMALL_STATE(7417)] = 240896, + [SMALL_STATE(7418)] = 240912, + [SMALL_STATE(7419)] = 240928, + [SMALL_STATE(7420)] = 240942, + [SMALL_STATE(7421)] = 240958, + [SMALL_STATE(7422)] = 240972, + [SMALL_STATE(7423)] = 240988, + [SMALL_STATE(7424)] = 241004, + [SMALL_STATE(7425)] = 241020, + [SMALL_STATE(7426)] = 241036, + [SMALL_STATE(7427)] = 241050, + [SMALL_STATE(7428)] = 241066, + [SMALL_STATE(7429)] = 241080, + [SMALL_STATE(7430)] = 241096, + [SMALL_STATE(7431)] = 241112, + [SMALL_STATE(7432)] = 241124, + [SMALL_STATE(7433)] = 241140, + [SMALL_STATE(7434)] = 241156, + [SMALL_STATE(7435)] = 241170, + [SMALL_STATE(7436)] = 241184, + [SMALL_STATE(7437)] = 241200, + [SMALL_STATE(7438)] = 241216, + [SMALL_STATE(7439)] = 241232, + [SMALL_STATE(7440)] = 241248, + [SMALL_STATE(7441)] = 241264, + [SMALL_STATE(7442)] = 241280, + [SMALL_STATE(7443)] = 241296, + [SMALL_STATE(7444)] = 241310, + [SMALL_STATE(7445)] = 241326, + [SMALL_STATE(7446)] = 241340, + [SMALL_STATE(7447)] = 241356, + [SMALL_STATE(7448)] = 241372, + [SMALL_STATE(7449)] = 241388, + [SMALL_STATE(7450)] = 241404, + [SMALL_STATE(7451)] = 241418, + [SMALL_STATE(7452)] = 241432, + [SMALL_STATE(7453)] = 241448, + [SMALL_STATE(7454)] = 241464, + [SMALL_STATE(7455)] = 241480, + [SMALL_STATE(7456)] = 241492, + [SMALL_STATE(7457)] = 241508, + [SMALL_STATE(7458)] = 241524, + [SMALL_STATE(7459)] = 241540, + [SMALL_STATE(7460)] = 241554, + [SMALL_STATE(7461)] = 241570, + [SMALL_STATE(7462)] = 241586, + [SMALL_STATE(7463)] = 241602, + [SMALL_STATE(7464)] = 241618, + [SMALL_STATE(7465)] = 241634, + [SMALL_STATE(7466)] = 241648, + [SMALL_STATE(7467)] = 241662, + [SMALL_STATE(7468)] = 241678, + [SMALL_STATE(7469)] = 241694, + [SMALL_STATE(7470)] = 241710, + [SMALL_STATE(7471)] = 241726, + [SMALL_STATE(7472)] = 241742, + [SMALL_STATE(7473)] = 241756, + [SMALL_STATE(7474)] = 241770, + [SMALL_STATE(7475)] = 241786, + [SMALL_STATE(7476)] = 241802, + [SMALL_STATE(7477)] = 241818, + [SMALL_STATE(7478)] = 241832, + [SMALL_STATE(7479)] = 241848, + [SMALL_STATE(7480)] = 241864, + [SMALL_STATE(7481)] = 241878, + [SMALL_STATE(7482)] = 241892, + [SMALL_STATE(7483)] = 241906, + [SMALL_STATE(7484)] = 241922, + [SMALL_STATE(7485)] = 241938, + [SMALL_STATE(7486)] = 241954, + [SMALL_STATE(7487)] = 241970, + [SMALL_STATE(7488)] = 241986, + [SMALL_STATE(7489)] = 242000, + [SMALL_STATE(7490)] = 242014, + [SMALL_STATE(7491)] = 242026, + [SMALL_STATE(7492)] = 242042, + [SMALL_STATE(7493)] = 242058, + [SMALL_STATE(7494)] = 242074, + [SMALL_STATE(7495)] = 242090, + [SMALL_STATE(7496)] = 242104, + [SMALL_STATE(7497)] = 242118, + [SMALL_STATE(7498)] = 242134, + [SMALL_STATE(7499)] = 242150, + [SMALL_STATE(7500)] = 242166, + [SMALL_STATE(7501)] = 242182, + [SMALL_STATE(7502)] = 242196, + [SMALL_STATE(7503)] = 242210, + [SMALL_STATE(7504)] = 242222, + [SMALL_STATE(7505)] = 242238, + [SMALL_STATE(7506)] = 242254, + [SMALL_STATE(7507)] = 242270, + [SMALL_STATE(7508)] = 242286, + [SMALL_STATE(7509)] = 242300, + [SMALL_STATE(7510)] = 242314, + [SMALL_STATE(7511)] = 242330, + [SMALL_STATE(7512)] = 242346, + [SMALL_STATE(7513)] = 242362, + [SMALL_STATE(7514)] = 242378, + [SMALL_STATE(7515)] = 242394, + [SMALL_STATE(7516)] = 242410, + [SMALL_STATE(7517)] = 242422, + [SMALL_STATE(7518)] = 242438, + [SMALL_STATE(7519)] = 242454, + [SMALL_STATE(7520)] = 242466, + [SMALL_STATE(7521)] = 242480, + [SMALL_STATE(7522)] = 242496, + [SMALL_STATE(7523)] = 242508, + [SMALL_STATE(7524)] = 242524, + [SMALL_STATE(7525)] = 242540, + [SMALL_STATE(7526)] = 242552, + [SMALL_STATE(7527)] = 242568, + [SMALL_STATE(7528)] = 242582, + [SMALL_STATE(7529)] = 242596, + [SMALL_STATE(7530)] = 242612, + [SMALL_STATE(7531)] = 242628, + [SMALL_STATE(7532)] = 242644, + [SMALL_STATE(7533)] = 242656, + [SMALL_STATE(7534)] = 242672, + [SMALL_STATE(7535)] = 242688, + [SMALL_STATE(7536)] = 242702, + [SMALL_STATE(7537)] = 242718, + [SMALL_STATE(7538)] = 242732, + [SMALL_STATE(7539)] = 242748, + [SMALL_STATE(7540)] = 242764, + [SMALL_STATE(7541)] = 242778, + [SMALL_STATE(7542)] = 242791, + [SMALL_STATE(7543)] = 242804, + [SMALL_STATE(7544)] = 242817, + [SMALL_STATE(7545)] = 242830, + [SMALL_STATE(7546)] = 242841, + [SMALL_STATE(7547)] = 242854, + [SMALL_STATE(7548)] = 242867, + [SMALL_STATE(7549)] = 242880, + [SMALL_STATE(7550)] = 242893, + [SMALL_STATE(7551)] = 242906, + [SMALL_STATE(7552)] = 242919, + [SMALL_STATE(7553)] = 242932, + [SMALL_STATE(7554)] = 242945, + [SMALL_STATE(7555)] = 242958, + [SMALL_STATE(7556)] = 242971, + [SMALL_STATE(7557)] = 242984, + [SMALL_STATE(7558)] = 242997, + [SMALL_STATE(7559)] = 243010, + [SMALL_STATE(7560)] = 243023, + [SMALL_STATE(7561)] = 243036, + [SMALL_STATE(7562)] = 243049, + [SMALL_STATE(7563)] = 243062, + [SMALL_STATE(7564)] = 243073, + [SMALL_STATE(7565)] = 243086, + [SMALL_STATE(7566)] = 243099, + [SMALL_STATE(7567)] = 243112, + [SMALL_STATE(7568)] = 243125, + [SMALL_STATE(7569)] = 243138, + [SMALL_STATE(7570)] = 243151, + [SMALL_STATE(7571)] = 243162, + [SMALL_STATE(7572)] = 243175, + [SMALL_STATE(7573)] = 243188, + [SMALL_STATE(7574)] = 243201, + [SMALL_STATE(7575)] = 243214, + [SMALL_STATE(7576)] = 243227, + [SMALL_STATE(7577)] = 243240, + [SMALL_STATE(7578)] = 243253, + [SMALL_STATE(7579)] = 243266, + [SMALL_STATE(7580)] = 243279, + [SMALL_STATE(7581)] = 243290, + [SMALL_STATE(7582)] = 243301, + [SMALL_STATE(7583)] = 243314, + [SMALL_STATE(7584)] = 243327, + [SMALL_STATE(7585)] = 243340, + [SMALL_STATE(7586)] = 243353, + [SMALL_STATE(7587)] = 243366, + [SMALL_STATE(7588)] = 243379, + [SMALL_STATE(7589)] = 243392, + [SMALL_STATE(7590)] = 243405, + [SMALL_STATE(7591)] = 243418, + [SMALL_STATE(7592)] = 243431, + [SMALL_STATE(7593)] = 243444, + [SMALL_STATE(7594)] = 243457, + [SMALL_STATE(7595)] = 243470, + [SMALL_STATE(7596)] = 243483, + [SMALL_STATE(7597)] = 243496, + [SMALL_STATE(7598)] = 243509, + [SMALL_STATE(7599)] = 243522, + [SMALL_STATE(7600)] = 243535, + [SMALL_STATE(7601)] = 243548, + [SMALL_STATE(7602)] = 243561, + [SMALL_STATE(7603)] = 243574, + [SMALL_STATE(7604)] = 243587, + [SMALL_STATE(7605)] = 243598, + [SMALL_STATE(7606)] = 243611, + [SMALL_STATE(7607)] = 243624, + [SMALL_STATE(7608)] = 243637, + [SMALL_STATE(7609)] = 243650, + [SMALL_STATE(7610)] = 243663, + [SMALL_STATE(7611)] = 243676, + [SMALL_STATE(7612)] = 243689, + [SMALL_STATE(7613)] = 243702, + [SMALL_STATE(7614)] = 243715, + [SMALL_STATE(7615)] = 243726, + [SMALL_STATE(7616)] = 243739, + [SMALL_STATE(7617)] = 243752, + [SMALL_STATE(7618)] = 243765, + [SMALL_STATE(7619)] = 243778, + [SMALL_STATE(7620)] = 243791, + [SMALL_STATE(7621)] = 243804, + [SMALL_STATE(7622)] = 243817, + [SMALL_STATE(7623)] = 243830, + [SMALL_STATE(7624)] = 243843, + [SMALL_STATE(7625)] = 243856, + [SMALL_STATE(7626)] = 243869, + [SMALL_STATE(7627)] = 243882, + [SMALL_STATE(7628)] = 243895, + [SMALL_STATE(7629)] = 243908, + [SMALL_STATE(7630)] = 243921, + [SMALL_STATE(7631)] = 243934, + [SMALL_STATE(7632)] = 243947, + [SMALL_STATE(7633)] = 243958, + [SMALL_STATE(7634)] = 243971, + [SMALL_STATE(7635)] = 243984, + [SMALL_STATE(7636)] = 243997, + [SMALL_STATE(7637)] = 244010, + [SMALL_STATE(7638)] = 244023, + [SMALL_STATE(7639)] = 244036, + [SMALL_STATE(7640)] = 244049, + [SMALL_STATE(7641)] = 244062, + [SMALL_STATE(7642)] = 244075, + [SMALL_STATE(7643)] = 244086, + [SMALL_STATE(7644)] = 244099, + [SMALL_STATE(7645)] = 244112, + [SMALL_STATE(7646)] = 244125, + [SMALL_STATE(7647)] = 244138, + [SMALL_STATE(7648)] = 244151, + [SMALL_STATE(7649)] = 244164, + [SMALL_STATE(7650)] = 244177, + [SMALL_STATE(7651)] = 244190, + [SMALL_STATE(7652)] = 244203, + [SMALL_STATE(7653)] = 244216, + [SMALL_STATE(7654)] = 244229, + [SMALL_STATE(7655)] = 244242, + [SMALL_STATE(7656)] = 244255, + [SMALL_STATE(7657)] = 244268, + [SMALL_STATE(7658)] = 244281, + [SMALL_STATE(7659)] = 244294, + [SMALL_STATE(7660)] = 244307, + [SMALL_STATE(7661)] = 244320, + [SMALL_STATE(7662)] = 244333, + [SMALL_STATE(7663)] = 244346, + [SMALL_STATE(7664)] = 244359, + [SMALL_STATE(7665)] = 244372, + [SMALL_STATE(7666)] = 244385, + [SMALL_STATE(7667)] = 244398, + [SMALL_STATE(7668)] = 244411, + [SMALL_STATE(7669)] = 244424, + [SMALL_STATE(7670)] = 244437, + [SMALL_STATE(7671)] = 244450, + [SMALL_STATE(7672)] = 244463, + [SMALL_STATE(7673)] = 244476, + [SMALL_STATE(7674)] = 244489, + [SMALL_STATE(7675)] = 244502, + [SMALL_STATE(7676)] = 244515, + [SMALL_STATE(7677)] = 244528, + [SMALL_STATE(7678)] = 244541, + [SMALL_STATE(7679)] = 244554, + [SMALL_STATE(7680)] = 244567, + [SMALL_STATE(7681)] = 244580, + [SMALL_STATE(7682)] = 244593, + [SMALL_STATE(7683)] = 244606, + [SMALL_STATE(7684)] = 244619, + [SMALL_STATE(7685)] = 244632, + [SMALL_STATE(7686)] = 244645, + [SMALL_STATE(7687)] = 244658, + [SMALL_STATE(7688)] = 244671, + [SMALL_STATE(7689)] = 244684, + [SMALL_STATE(7690)] = 244697, + [SMALL_STATE(7691)] = 244710, + [SMALL_STATE(7692)] = 244723, + [SMALL_STATE(7693)] = 244736, + [SMALL_STATE(7694)] = 244747, + [SMALL_STATE(7695)] = 244758, + [SMALL_STATE(7696)] = 244771, + [SMALL_STATE(7697)] = 244784, + [SMALL_STATE(7698)] = 244795, + [SMALL_STATE(7699)] = 244808, + [SMALL_STATE(7700)] = 244821, + [SMALL_STATE(7701)] = 244834, + [SMALL_STATE(7702)] = 244847, + [SMALL_STATE(7703)] = 244860, + [SMALL_STATE(7704)] = 244873, + [SMALL_STATE(7705)] = 244886, + [SMALL_STATE(7706)] = 244899, + [SMALL_STATE(7707)] = 244912, + [SMALL_STATE(7708)] = 244925, + [SMALL_STATE(7709)] = 244938, + [SMALL_STATE(7710)] = 244949, + [SMALL_STATE(7711)] = 244962, + [SMALL_STATE(7712)] = 244975, + [SMALL_STATE(7713)] = 244988, + [SMALL_STATE(7714)] = 245001, + [SMALL_STATE(7715)] = 245014, + [SMALL_STATE(7716)] = 245027, + [SMALL_STATE(7717)] = 245040, + [SMALL_STATE(7718)] = 245053, + [SMALL_STATE(7719)] = 245066, + [SMALL_STATE(7720)] = 245079, + [SMALL_STATE(7721)] = 245092, + [SMALL_STATE(7722)] = 245105, + [SMALL_STATE(7723)] = 245118, + [SMALL_STATE(7724)] = 245131, + [SMALL_STATE(7725)] = 245144, + [SMALL_STATE(7726)] = 245157, + [SMALL_STATE(7727)] = 245170, + [SMALL_STATE(7728)] = 245181, + [SMALL_STATE(7729)] = 245191, + [SMALL_STATE(7730)] = 245201, + [SMALL_STATE(7731)] = 245211, + [SMALL_STATE(7732)] = 245221, + [SMALL_STATE(7733)] = 245231, + [SMALL_STATE(7734)] = 245241, + [SMALL_STATE(7735)] = 245251, + [SMALL_STATE(7736)] = 245261, + [SMALL_STATE(7737)] = 245271, + [SMALL_STATE(7738)] = 245281, + [SMALL_STATE(7739)] = 245291, + [SMALL_STATE(7740)] = 245301, + [SMALL_STATE(7741)] = 245311, + [SMALL_STATE(7742)] = 245321, + [SMALL_STATE(7743)] = 245331, + [SMALL_STATE(7744)] = 245341, + [SMALL_STATE(7745)] = 245351, + [SMALL_STATE(7746)] = 245361, + [SMALL_STATE(7747)] = 245371, + [SMALL_STATE(7748)] = 245381, + [SMALL_STATE(7749)] = 245391, + [SMALL_STATE(7750)] = 245401, + [SMALL_STATE(7751)] = 245411, + [SMALL_STATE(7752)] = 245421, + [SMALL_STATE(7753)] = 245431, + [SMALL_STATE(7754)] = 245441, + [SMALL_STATE(7755)] = 245451, + [SMALL_STATE(7756)] = 245461, + [SMALL_STATE(7757)] = 245471, + [SMALL_STATE(7758)] = 245481, + [SMALL_STATE(7759)] = 245491, + [SMALL_STATE(7760)] = 245501, + [SMALL_STATE(7761)] = 245511, + [SMALL_STATE(7762)] = 245521, + [SMALL_STATE(7763)] = 245531, + [SMALL_STATE(7764)] = 245541, + [SMALL_STATE(7765)] = 245551, + [SMALL_STATE(7766)] = 245561, + [SMALL_STATE(7767)] = 245571, + [SMALL_STATE(7768)] = 245581, + [SMALL_STATE(7769)] = 245591, + [SMALL_STATE(7770)] = 245601, + [SMALL_STATE(7771)] = 245611, + [SMALL_STATE(7772)] = 245621, + [SMALL_STATE(7773)] = 245631, + [SMALL_STATE(7774)] = 245641, + [SMALL_STATE(7775)] = 245651, + [SMALL_STATE(7776)] = 245661, + [SMALL_STATE(7777)] = 245671, + [SMALL_STATE(7778)] = 245681, + [SMALL_STATE(7779)] = 245691, + [SMALL_STATE(7780)] = 245701, + [SMALL_STATE(7781)] = 245711, + [SMALL_STATE(7782)] = 245721, + [SMALL_STATE(7783)] = 245731, + [SMALL_STATE(7784)] = 245741, + [SMALL_STATE(7785)] = 245751, + [SMALL_STATE(7786)] = 245761, + [SMALL_STATE(7787)] = 245771, + [SMALL_STATE(7788)] = 245781, + [SMALL_STATE(7789)] = 245791, + [SMALL_STATE(7790)] = 245801, + [SMALL_STATE(7791)] = 245811, + [SMALL_STATE(7792)] = 245821, + [SMALL_STATE(7793)] = 245831, + [SMALL_STATE(7794)] = 245841, + [SMALL_STATE(7795)] = 245851, + [SMALL_STATE(7796)] = 245861, + [SMALL_STATE(7797)] = 245871, + [SMALL_STATE(7798)] = 245881, + [SMALL_STATE(7799)] = 245891, + [SMALL_STATE(7800)] = 245901, + [SMALL_STATE(7801)] = 245911, + [SMALL_STATE(7802)] = 245921, + [SMALL_STATE(7803)] = 245931, + [SMALL_STATE(7804)] = 245941, + [SMALL_STATE(7805)] = 245951, + [SMALL_STATE(7806)] = 245961, + [SMALL_STATE(7807)] = 245971, + [SMALL_STATE(7808)] = 245981, + [SMALL_STATE(7809)] = 245991, + [SMALL_STATE(7810)] = 246001, + [SMALL_STATE(7811)] = 246011, + [SMALL_STATE(7812)] = 246021, + [SMALL_STATE(7813)] = 246031, + [SMALL_STATE(7814)] = 246041, + [SMALL_STATE(7815)] = 246051, + [SMALL_STATE(7816)] = 246061, + [SMALL_STATE(7817)] = 246071, + [SMALL_STATE(7818)] = 246081, + [SMALL_STATE(7819)] = 246091, + [SMALL_STATE(7820)] = 246101, + [SMALL_STATE(7821)] = 246111, + [SMALL_STATE(7822)] = 246121, + [SMALL_STATE(7823)] = 246131, + [SMALL_STATE(7824)] = 246141, + [SMALL_STATE(7825)] = 246151, + [SMALL_STATE(7826)] = 246161, + [SMALL_STATE(7827)] = 246171, + [SMALL_STATE(7828)] = 246181, + [SMALL_STATE(7829)] = 246191, + [SMALL_STATE(7830)] = 246201, + [SMALL_STATE(7831)] = 246211, + [SMALL_STATE(7832)] = 246221, + [SMALL_STATE(7833)] = 246231, + [SMALL_STATE(7834)] = 246241, + [SMALL_STATE(7835)] = 246251, + [SMALL_STATE(7836)] = 246261, + [SMALL_STATE(7837)] = 246271, + [SMALL_STATE(7838)] = 246281, + [SMALL_STATE(7839)] = 246291, + [SMALL_STATE(7840)] = 246301, + [SMALL_STATE(7841)] = 246311, + [SMALL_STATE(7842)] = 246321, + [SMALL_STATE(7843)] = 246331, + [SMALL_STATE(7844)] = 246341, + [SMALL_STATE(7845)] = 246351, + [SMALL_STATE(7846)] = 246361, + [SMALL_STATE(7847)] = 246371, + [SMALL_STATE(7848)] = 246381, + [SMALL_STATE(7849)] = 246391, + [SMALL_STATE(7850)] = 246401, + [SMALL_STATE(7851)] = 246411, + [SMALL_STATE(7852)] = 246421, + [SMALL_STATE(7853)] = 246431, + [SMALL_STATE(7854)] = 246441, + [SMALL_STATE(7855)] = 246451, + [SMALL_STATE(7856)] = 246461, + [SMALL_STATE(7857)] = 246471, + [SMALL_STATE(7858)] = 246481, + [SMALL_STATE(7859)] = 246491, + [SMALL_STATE(7860)] = 246501, + [SMALL_STATE(7861)] = 246511, + [SMALL_STATE(7862)] = 246521, + [SMALL_STATE(7863)] = 246531, + [SMALL_STATE(7864)] = 246541, + [SMALL_STATE(7865)] = 246551, + [SMALL_STATE(7866)] = 246561, + [SMALL_STATE(7867)] = 246571, + [SMALL_STATE(7868)] = 246581, + [SMALL_STATE(7869)] = 246591, + [SMALL_STATE(7870)] = 246601, + [SMALL_STATE(7871)] = 246611, + [SMALL_STATE(7872)] = 246621, + [SMALL_STATE(7873)] = 246631, + [SMALL_STATE(7874)] = 246641, + [SMALL_STATE(7875)] = 246651, + [SMALL_STATE(7876)] = 246661, + [SMALL_STATE(7877)] = 246671, + [SMALL_STATE(7878)] = 246681, + [SMALL_STATE(7879)] = 246691, + [SMALL_STATE(7880)] = 246701, + [SMALL_STATE(7881)] = 246711, + [SMALL_STATE(7882)] = 246721, + [SMALL_STATE(7883)] = 246731, + [SMALL_STATE(7884)] = 246741, + [SMALL_STATE(7885)] = 246751, + [SMALL_STATE(7886)] = 246761, + [SMALL_STATE(7887)] = 246771, + [SMALL_STATE(7888)] = 246781, + [SMALL_STATE(7889)] = 246791, + [SMALL_STATE(7890)] = 246801, + [SMALL_STATE(7891)] = 246811, + [SMALL_STATE(7892)] = 246821, + [SMALL_STATE(7893)] = 246831, + [SMALL_STATE(7894)] = 246841, + [SMALL_STATE(7895)] = 246851, + [SMALL_STATE(7896)] = 246861, + [SMALL_STATE(7897)] = 246871, + [SMALL_STATE(7898)] = 246881, + [SMALL_STATE(7899)] = 246891, + [SMALL_STATE(7900)] = 246901, + [SMALL_STATE(7901)] = 246911, + [SMALL_STATE(7902)] = 246921, + [SMALL_STATE(7903)] = 246931, + [SMALL_STATE(7904)] = 246941, + [SMALL_STATE(7905)] = 246951, + [SMALL_STATE(7906)] = 246961, + [SMALL_STATE(7907)] = 246971, + [SMALL_STATE(7908)] = 246981, + [SMALL_STATE(7909)] = 246991, + [SMALL_STATE(7910)] = 247001, + [SMALL_STATE(7911)] = 247011, + [SMALL_STATE(7912)] = 247021, + [SMALL_STATE(7913)] = 247031, + [SMALL_STATE(7914)] = 247041, + [SMALL_STATE(7915)] = 247051, + [SMALL_STATE(7916)] = 247061, + [SMALL_STATE(7917)] = 247071, + [SMALL_STATE(7918)] = 247081, + [SMALL_STATE(7919)] = 247091, + [SMALL_STATE(7920)] = 247101, + [SMALL_STATE(7921)] = 247111, + [SMALL_STATE(7922)] = 247121, + [SMALL_STATE(7923)] = 247131, + [SMALL_STATE(7924)] = 247141, + [SMALL_STATE(7925)] = 247151, + [SMALL_STATE(7926)] = 247161, + [SMALL_STATE(7927)] = 247171, + [SMALL_STATE(7928)] = 247181, + [SMALL_STATE(7929)] = 247191, + [SMALL_STATE(7930)] = 247201, + [SMALL_STATE(7931)] = 247211, + [SMALL_STATE(7932)] = 247221, + [SMALL_STATE(7933)] = 247231, + [SMALL_STATE(7934)] = 247241, + [SMALL_STATE(7935)] = 247251, + [SMALL_STATE(7936)] = 247261, + [SMALL_STATE(7937)] = 247271, + [SMALL_STATE(7938)] = 247281, + [SMALL_STATE(7939)] = 247291, + [SMALL_STATE(7940)] = 247301, + [SMALL_STATE(7941)] = 247311, + [SMALL_STATE(7942)] = 247321, + [SMALL_STATE(7943)] = 247331, + [SMALL_STATE(7944)] = 247341, + [SMALL_STATE(7945)] = 247351, + [SMALL_STATE(7946)] = 247361, + [SMALL_STATE(7947)] = 247371, + [SMALL_STATE(7948)] = 247381, + [SMALL_STATE(7949)] = 247391, + [SMALL_STATE(7950)] = 247401, + [SMALL_STATE(7951)] = 247411, + [SMALL_STATE(7952)] = 247421, + [SMALL_STATE(7953)] = 247431, + [SMALL_STATE(7954)] = 247441, + [SMALL_STATE(7955)] = 247451, + [SMALL_STATE(7956)] = 247461, + [SMALL_STATE(7957)] = 247471, + [SMALL_STATE(7958)] = 247481, + [SMALL_STATE(7959)] = 247491, + [SMALL_STATE(7960)] = 247501, + [SMALL_STATE(7961)] = 247511, + [SMALL_STATE(7962)] = 247521, + [SMALL_STATE(7963)] = 247531, + [SMALL_STATE(7964)] = 247541, + [SMALL_STATE(7965)] = 247551, + [SMALL_STATE(7966)] = 247561, + [SMALL_STATE(7967)] = 247571, + [SMALL_STATE(7968)] = 247581, + [SMALL_STATE(7969)] = 247591, + [SMALL_STATE(7970)] = 247601, + [SMALL_STATE(7971)] = 247611, + [SMALL_STATE(7972)] = 247621, + [SMALL_STATE(7973)] = 247631, + [SMALL_STATE(7974)] = 247641, + [SMALL_STATE(7975)] = 247651, + [SMALL_STATE(7976)] = 247661, + [SMALL_STATE(7977)] = 247671, + [SMALL_STATE(7978)] = 247681, + [SMALL_STATE(7979)] = 247691, + [SMALL_STATE(7980)] = 247701, + [SMALL_STATE(7981)] = 247711, + [SMALL_STATE(7982)] = 247721, + [SMALL_STATE(7983)] = 247731, + [SMALL_STATE(7984)] = 247741, + [SMALL_STATE(7985)] = 247751, + [SMALL_STATE(7986)] = 247761, + [SMALL_STATE(7987)] = 247771, + [SMALL_STATE(7988)] = 247781, + [SMALL_STATE(7989)] = 247791, + [SMALL_STATE(7990)] = 247801, + [SMALL_STATE(7991)] = 247811, + [SMALL_STATE(7992)] = 247821, + [SMALL_STATE(7993)] = 247831, + [SMALL_STATE(7994)] = 247841, + [SMALL_STATE(7995)] = 247851, + [SMALL_STATE(7996)] = 247861, + [SMALL_STATE(7997)] = 247871, + [SMALL_STATE(7998)] = 247881, + [SMALL_STATE(7999)] = 247891, + [SMALL_STATE(8000)] = 247901, + [SMALL_STATE(8001)] = 247911, + [SMALL_STATE(8002)] = 247921, + [SMALL_STATE(8003)] = 247931, + [SMALL_STATE(8004)] = 247941, + [SMALL_STATE(8005)] = 247951, + [SMALL_STATE(8006)] = 247961, + [SMALL_STATE(8007)] = 247971, + [SMALL_STATE(8008)] = 247981, + [SMALL_STATE(8009)] = 247991, + [SMALL_STATE(8010)] = 248001, + [SMALL_STATE(8011)] = 248011, + [SMALL_STATE(8012)] = 248021, + [SMALL_STATE(8013)] = 248031, + [SMALL_STATE(8014)] = 248041, + [SMALL_STATE(8015)] = 248051, + [SMALL_STATE(8016)] = 248061, + [SMALL_STATE(8017)] = 248071, + [SMALL_STATE(8018)] = 248081, + [SMALL_STATE(8019)] = 248091, + [SMALL_STATE(8020)] = 248101, + [SMALL_STATE(8021)] = 248111, + [SMALL_STATE(8022)] = 248121, + [SMALL_STATE(8023)] = 248131, + [SMALL_STATE(8024)] = 248141, + [SMALL_STATE(8025)] = 248151, + [SMALL_STATE(8026)] = 248161, + [SMALL_STATE(8027)] = 248171, + [SMALL_STATE(8028)] = 248181, + [SMALL_STATE(8029)] = 248191, + [SMALL_STATE(8030)] = 248201, + [SMALL_STATE(8031)] = 248211, + [SMALL_STATE(8032)] = 248221, + [SMALL_STATE(8033)] = 248231, + [SMALL_STATE(8034)] = 248241, + [SMALL_STATE(8035)] = 248251, + [SMALL_STATE(8036)] = 248261, + [SMALL_STATE(8037)] = 248271, + [SMALL_STATE(8038)] = 248281, + [SMALL_STATE(8039)] = 248291, + [SMALL_STATE(8040)] = 248301, + [SMALL_STATE(8041)] = 248311, + [SMALL_STATE(8042)] = 248321, + [SMALL_STATE(8043)] = 248331, + [SMALL_STATE(8044)] = 248341, + [SMALL_STATE(8045)] = 248351, + [SMALL_STATE(8046)] = 248361, + [SMALL_STATE(8047)] = 248371, + [SMALL_STATE(8048)] = 248381, + [SMALL_STATE(8049)] = 248391, + [SMALL_STATE(8050)] = 248401, + [SMALL_STATE(8051)] = 248411, + [SMALL_STATE(8052)] = 248421, + [SMALL_STATE(8053)] = 248431, + [SMALL_STATE(8054)] = 248441, + [SMALL_STATE(8055)] = 248451, + [SMALL_STATE(8056)] = 248461, + [SMALL_STATE(8057)] = 248471, + [SMALL_STATE(8058)] = 248481, + [SMALL_STATE(8059)] = 248491, + [SMALL_STATE(8060)] = 248501, + [SMALL_STATE(8061)] = 248511, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7909), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8006), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7633), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7993), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7739), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7640), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6539), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7909), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7894), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5974), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2621), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6182), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6184), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6185), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2160), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2161), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2162), - [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2162), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2471), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7638), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2697), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2677), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2858), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(703), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(34), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6481), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7894), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7988), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5197), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5199), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5602), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7671), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2448), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6213), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2123), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1117), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5541), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6600), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(965), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2885), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3502), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2678), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5480), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6591), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3749), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5416), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5543), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1383), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1383), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7953), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1417), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1620), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1705), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7765), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1906), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6482), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1682), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6370), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6118), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1704), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5979), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2696), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6369), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6173), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6175), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2160), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2161), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2162), - [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2162), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2471), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7638), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2697), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2677), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2858), - [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(703), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(34), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6481), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7894), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7988), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5012), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5013), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5602), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7671), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2448), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5198), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2449), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1117), - [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5541), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7677), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(965), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2885), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3502), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2678), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5480), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6591), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3946), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5416), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5543), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1383), - [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1383), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7953), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1417), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1620), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1705), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7765), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1906), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6482), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1682), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6370), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6118), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1690), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6046), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 99), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 99), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 100), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 100), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 146), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 146), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4825), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4825), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2160), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2162), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2162), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6853), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7988), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5197), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5199), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6213), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6600), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(965), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3749), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5416), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5543), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7953), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7765), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6482), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6370), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6118), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4825), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4825), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2160), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2162), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2162), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6853), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7988), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5012), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5013), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2449), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7677), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(965), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3946), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5416), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5543), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7953), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7765), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6482), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6370), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6118), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(7970), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(5805), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(7805), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(7504), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(7504), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(95), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(6742), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(7755), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(38), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(7704), - [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(5928), - [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(5928), - [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(7762), - [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(6285), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(2462), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(6499), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(1452), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 52), SHIFT_REPEAT(163), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7970), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7909), - [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5805), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7805), - [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7504), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7504), - [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(95), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6710), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7755), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(30), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7994), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5928), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5928), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7762), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6285), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2462), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6499), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1452), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(162), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7705), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(177), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 37), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 37), - [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(188), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(192), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(213), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6051), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7922), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6048), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT(2757), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(284), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 101), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 101), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 148), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 148), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 151), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 151), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 148), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 148), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 181), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 181), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 182), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 182), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 181), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 181), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 213), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 213), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 182), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 182), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 214), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 214), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 215), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 215), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 213), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 213), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 214), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 214), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 238), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 238), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 215), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 215), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 238), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 238), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6035), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6047), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(301), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 82), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 82), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 83), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 83), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7965), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7840), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 39), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 49), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 39), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 49), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 39), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 39), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6036), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 69), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 69), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 69), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 69), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(576), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 37), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 37), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 3, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 3, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 214), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 214), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 165), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 101), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 101), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 151), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 151), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 148), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 148), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 181), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 181), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 182), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 182), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 213), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 213), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 215), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 215), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 238), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 238), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(613), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7878), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7532), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1657), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1648), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1712), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(714), - [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(49), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6729), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1653), - [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1617), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1238), - [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1253), - [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1607), - [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1256), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1829), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1750), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7878), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1655), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6619), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1833), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6193), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5961), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7532), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7532), - [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1707), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1657), - [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1648), - [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1712), - [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(3016), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(714), - [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(49), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6729), - [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1653), - [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1617), - [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1238), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1253), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1255), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1255), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1607), - [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1256), - [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1829), - [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1750), - [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7878), - [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1655), - [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6619), - [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1833), - [2616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6193), - [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5961), - [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7532), - [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7532), - [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1707), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7797), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1703), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1689), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1874), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(707), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(37), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6704), - [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1700), - [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1719), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(9), - [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1259), - [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1284), - [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1283), - [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1283), - [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1645), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1286), - [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(2000), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1787), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7797), - [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1706), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6541), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1936), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6278), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5909), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(730), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(686), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7863), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(685), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6043), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6879), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6388), - [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6988), - [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(705), - [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(29), - [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6462), - [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7), - [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4981), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(30), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5155), - [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7994), - [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5417), - [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5417), - [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6371), - [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5418), - [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3083), - [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3010), - [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7913), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6424), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6464), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5676), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6269), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6068), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(693), - [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7659), - [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7659), - [3085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3087), - [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6042), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 81), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 81), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7912), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 3, 0, 0), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 3, 0, 0), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 80), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 80), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6575), - [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6467), - [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6383), - [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), - [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1237), - [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6513), - [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [3685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7562), - [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4754), - [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5025), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5314), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5314), - [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6274), - [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5326), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), - [3709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), - [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7765), - [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6445), - [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6482), - [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), - [3724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7532), - [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7532), - [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7934), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5917), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7890), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1241), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7629), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), - [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1233), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7920), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5982), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1244), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1249), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [4243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6107), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7901), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7923), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [4546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1275), - [4549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1288), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(3166), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(3133), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(3149), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(1229), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), - [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(51), - [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(6738), - [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(169), - [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(2494), - [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(2593), - [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(2637), - [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(2637), - [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(3084), - [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(2638), - [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(3215), - [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(3160), - [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(7890), - [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(3169), - [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(6705), - [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(3219), - [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(7659), - [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(7659), - [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), SHIFT_REPEAT(3190), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7885), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [4656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1300), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6032), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1381), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6019), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [4754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(1429), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1420), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [4800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6003), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [4827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(1454), - [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6116), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6024), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6023), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5970), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 42), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 184), - [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 184), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5931), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 94), - [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 94), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 95), - [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 95), - [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 140), - [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 140), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 94), - [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 94), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 95), - [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 95), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 140), - [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 140), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7924), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), - [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), - [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6070), - [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 81), - [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 81), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 49), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 49), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 81), - [5279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 81), - [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), - [5283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), - [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [5287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [5289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 154), - [5300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 154), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), - [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 80), - [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 80), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 80), - [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 80), - [5352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2132), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7861), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5997), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), SHIFT(2423), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), SHIFT(2423), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), SHIFT(2423), - [5503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6129), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 80), SHIFT(2423), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7877), - [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7826), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7927), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [5657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2362), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7962), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [5700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(7681), - [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(7681), - [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(7707), - [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(7707), - [5712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(5928), - [5715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(7762), - [5718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(6285), - [5721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(6464), - [5724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), SHIFT_REPEAT(5676), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [5733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2605), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [5760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(2603), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8029), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7805), - [5779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6049), - [5782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6040), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [5804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6028), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [5836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6033), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [5841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(2707), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), - [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 144), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), - [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [5897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2823), - [5900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), - [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2841), - [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [5933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [5958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6050), - [5961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(2764), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [6016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2810), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [6082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 199), - [6091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 199), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [6095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [6102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6041), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2986), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [6164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6034), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(2947), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [6210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(2933), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 3, 0, 0), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 3, 0, 0), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 201), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 201), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 201), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 201), - [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3151), - [6244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 10, 231), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [6277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 10, 231), - [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 231), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 231), - [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 10, 231), - [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 10, 231), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [6293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), - [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 10, 201), - [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 10, 201), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 201), - [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 201), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 231), - [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 231), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 195), - [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 195), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 197), - [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 197), - [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 229), - [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 229), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 199), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 199), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 109), - [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 109), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 110), - [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 110), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 196), - [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 196), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 177), SHIFT_REPEAT(5435), - [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 177), SHIFT_REPEAT(5317), - [6554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 177), SHIFT_REPEAT(5318), - [6557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3311), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [6610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3458), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [6619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3437), - [6622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3429), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7636), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(3462), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), - [6691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 96), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [6699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7928), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8035), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [6724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6031), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [6729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5945), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [6780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6039), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [6835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [7024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7825), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), - [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [7190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4070), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4075), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7880), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [7296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4090), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [7309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4088), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4128), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [7355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4114), - [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4146), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [7413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4153), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [7418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6029), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [7423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4160), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [7448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4239), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [7453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4170), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7510), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 80), - [7512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4193), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [7557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4180), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [7566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6026), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 81), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4213), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [7600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4253), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [7607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [7637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 60), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [7663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 60), - [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4335), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [7674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [7684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6009), - [7687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 72), - [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 72), - [7691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [7703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [7719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4315), - [7722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6038), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [7735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [7738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7917), - [7746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7527), - [7749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7977), - [7752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8012), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), - [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(730), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [7780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 224), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 224), SHIFT(730), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), - [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 224), - [7821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(730), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), - [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [7834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(730), - [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [7841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [7887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [7903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5991), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 163), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 163), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [7952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 10, 71), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [7964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4527), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4519), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [7984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 79), - [7986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 79), SHIFT_REPEAT(409), - [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 115), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [7993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 115), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), - [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [8023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 35), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 116), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [8031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 116), - [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 36), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [8037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 10, 4), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 57), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [8075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 57), - [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [8081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(730), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [8092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4568), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [8099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(730), - [8102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [8118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(730), - [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [8125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(6093), - [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(263), - [8131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6037), - [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 10, 4), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 79), - [8156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 79), SHIFT_REPEAT(452), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [8163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 10, 4), - [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 10, 71), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [8171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 79), SHIFT_REPEAT(443), - [8174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 79), SHIFT_REPEAT(443), - [8177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 79), - [8179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 55), SHIFT(730), - [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 55), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [8186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(4699), - [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [8193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(252), - [8196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 75), - [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 75), - [8200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [8204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(730), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 77), - [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 77), - [8217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [8221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 185), SHIFT(730), - [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 185), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 232), - [8230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 232), - [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [8236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(730), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(269), - [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 73), - [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 73), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [8256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4697), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), - [8263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(730), - [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 202), - [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 202), - [8274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 10, 35), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [8280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 152), SHIFT(730), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 152), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [8291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 55), SHIFT(730), - [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 55), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 152), SHIFT(730), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 152), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [8305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 10, 71), - [8307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 185), SHIFT(730), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 185), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [8318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), - [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), - [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 35), - [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 10, 36), - [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 162), - [8328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 162), - [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(730), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 55), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [8341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(261), - [8344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(730), - [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 36), - [8351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(6005), - [8354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(730), - [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [8365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(730), - [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7796), - [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 108), - [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 111), - [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 57), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 57), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 159), - [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 60), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [8466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 60), - [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 108), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 111), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [8490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 108), - [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 111), - [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 108), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 111), - [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 163), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 163), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 91), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [8528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 91), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), - [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 92), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [8562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 92), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), - [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 115), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [8570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 115), - [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 116), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [8576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 116), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [8584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [8586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 75), - [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 75), - [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 254), - [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [8598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 159), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 115), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [8616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 115), - [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 116), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 116), - [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [8630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), - [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 217), - [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), - [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), - [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [8652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 222), - [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 223), - [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 186), - [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), - [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [8672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4923), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [8681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4942), - [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 93), - [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 93), - [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), - [8692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 163), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [8696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 163), - [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [8700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [8704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 239), - [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), - [8710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 206), - [8712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 206), - [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 208), - [8716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 208), - [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 209), - [8720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 209), - [8722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), - [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), - [8726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [8730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), - [8732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 236), - [8734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 236), - [8736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 247), - [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), - [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), - [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), - [8764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), - [8766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), - [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), - [8770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), - [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 262), - [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), - [8780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [8786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), - [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 270), - [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 113), - [8810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 113), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 114), - [8814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 114), - [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 161), - [8842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 161), - [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 57), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [8856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 57), - [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), - [8860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), - [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [8866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 60), - [8868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), - [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [8879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 65), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [8901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7950), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [8927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5243), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), - [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 115), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [8960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 115), - [8962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 116), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [8966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 116), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 117), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [8974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 117), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), - [9000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [9004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5297), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 65), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 57), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [9017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 57), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [9021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 60), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [9025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 60), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [9033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5566), - [9036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5550), - [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), - [9041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [9057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5208), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 163), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [9066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 163), - [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [9078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5100), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [9135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5381), - [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [9140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5413), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [9155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5712), - [9158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5672), - [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), - [9165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5327), - [9168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6045), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [9177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 57), - [9179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 57), - [9181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 60), - [9183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 60), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [9189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5450), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [9198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 115), - [9200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 115), - [9202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 116), - [9204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 116), - [9206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 117), - [9208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 117), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [9214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5891), - [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, 0, 163), - [9219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 7, 0, 163), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [9223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6171), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [9232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [9234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [9236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5461), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [9247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [9249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [9251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(5492), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [9266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5312), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [9331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5433), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [9340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [9386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 207), SHIFT_REPEAT(5841), - [9389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 207), - [9391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 207), SHIFT_REPEAT(6587), - [9394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 207), SHIFT_REPEAT(4973), - [9397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 234), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [9409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6085), - [9412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6059), - [9415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5434), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [9420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [9436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5999), - [9439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5923), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), - [9452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5617), - [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [9501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6030), - [9504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 93), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [9530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6016), - [9533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6016), - [9536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [9542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 175), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [9548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6264), - [9551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6230), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [9562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [9586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6015), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [9687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [9739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5794), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 86), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [9802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [9810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), - [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [9900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), - [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 43), - [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [10038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [10052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5879), - [10055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [10059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 252), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [10067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5905), - [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [10090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [10112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(5792), - [10115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6157), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), - [10156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 70), SHIFT_REPEAT(89), - [10159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 70), SHIFT_REPEAT(6540), - [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 70), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 252), - [10206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), - [10208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 234), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [10234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [10266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6112), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [10277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 175), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [10305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), - [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [10343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), SHIFT(6055), - [10346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), - [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [10357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 70), SHIFT_REPEAT(87), - [10360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 70), SHIFT_REPEAT(6925), - [10363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 70), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [10379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6016), - [10382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6016), - [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), - [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 64), - [10399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 149), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [10409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), - [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [10413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [10417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [10419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [10421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), - [10423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [10425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [10433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 139), - [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [10441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 142), - [10443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 192), - [10445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 193), - [10447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 194), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), - [10453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 143), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [10459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 203), - [10461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [10463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(7179), - [10466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 204), - [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [10474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 40), - [10476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 205), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [10482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 179), - [10484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 212), - [10486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 180), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [10490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [10492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 107), - [10494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 44), - [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [10512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [10514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 45), - [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 46), - [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 47), - [10520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), - [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), - [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), - [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [10552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 88), - [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 89), - [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [10604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 90), - [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [10614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 53), - [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [10638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 54), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [10658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [10664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 225), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 226), - [10722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 227), - [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), - [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [10750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 158), - [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [10774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 233), - [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [10798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 212), - [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [10912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), - [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [10936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [10948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [10960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 80), - [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [11034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 263), - [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [11072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 164), - [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 97), - [11168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 62), - [11170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 63), - [11172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [11174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 66), - [11176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 98), - [11178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 67), - [11180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 173), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7447), - [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [11188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [11194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 143), - [11196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 179), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), - [11202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [11216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [11218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [11220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 180), - [11222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [11224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), - [11226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [11232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [11234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [11242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [11244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [11246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [11252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [11254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [11256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [11260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 87), - [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [11272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 5, 0, 0), - [11274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [11276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 249), - [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [11286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [11300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), - [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [11316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [11322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [11328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 200), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [11344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), - [11356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 200), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [11360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 68), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [11364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), - [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), - [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [11392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), - [11395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [11397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [11407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), - [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), - [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [11427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), SHIFT_REPEAT(696), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [11442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [11446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 89), - [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [11454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 90), - [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [11490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 40), - [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [11498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7631), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [11504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), - [11516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [11526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [11530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [11532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [11534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [11544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [11546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [11548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [11550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [11552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [11556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [11560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), - [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [11572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [11576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [11580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [11594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [11598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [11600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [11606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), - [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), - [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [11636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), - [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [11642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), - [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [11662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [11674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [11686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [11694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [11702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [11706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [11708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [11710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [11718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 139), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [11722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 10, 230), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [11728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [11730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 0, 230), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [11734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [11736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [11738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [11740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [11742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 80), - [11744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [11746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), - [11748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [11752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [11754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [11762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), - [11766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [11776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [11778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [11780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [11782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), - [11784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [11786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [11788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [11790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [11792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [11794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [11796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [11800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7556), - [11803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [11805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), - [11813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [11823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [11825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6951), - [11828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [11832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [11834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), - [11836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [11838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), - [11840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [11842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), - [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), - [11846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [11848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), - [11850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [11852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), - [11854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [11856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [11858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [11860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [11862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), - [11864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [11866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [11868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), - [11870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), - [11872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [11874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [11876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [11878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [11880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [11882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), - [11884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [11888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [11890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [11892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [11894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [11896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [11898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [11900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [11902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [11904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [11906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [11908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [11910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [11912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [11914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [11916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [11918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [11920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), - [11922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [11924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [11926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [11928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [11932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [11934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [11936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), - [11938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [11944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [11946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [11948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [11950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 10, 200), - [11952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 0, 200), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), - [11956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [11960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [11962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [11964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [11966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [11972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [11974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), - [11976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [11980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), - [11982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [11984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [11986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [11988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [11990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [11992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [11994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [11996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7635), - [11999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [12001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [12003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [12005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [12007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [12009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [12011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [12015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [12029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [12031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [12033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), - [12035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [12037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [12039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [12041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [12043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [12047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), - [12049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [12051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [12053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [12055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [12057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 178), - [12059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 178), - [12061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [12063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), - [12069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7524), - [12072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [12074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [12076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [12078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [12080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), - [12084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [12086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [12088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [12090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [12094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [12096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [12100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [12104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 5, 10, 230), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [12108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [12110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [12112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [12124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 5, 0, 230), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [12132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [12136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7663), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [12143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [12145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [12147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [12149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [12151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [12153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [12155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [12159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [12161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [12163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [12209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 96), - [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [12225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 237), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), - [12257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 92), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [12265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7621), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [12303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 92), - [12305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 210), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [12309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [12331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 211), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [12337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [12365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 92), - [12367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [12379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [12429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [12449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [12451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [12495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 210), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [12499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 237), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [12517] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [12527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [12573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [12581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [12605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [12629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [12633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [12661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [12667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 211), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [12675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7547), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6162), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2680), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6289), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6296), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6308), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4862), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4862), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2380), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2381), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2382), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2382), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2530), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7692), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2737), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2714), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2925), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(718), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(37), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6905), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7984), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8001), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5232), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5354), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5633), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7556), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2497), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6333), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2174), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1122), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5578), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6917), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(996), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2931), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3572), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2715), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5501), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6417), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3771), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5467), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5580), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1500), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1500), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1675), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1578), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2126), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1989), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7774), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2431), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6909), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1851), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6307), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6153), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7791), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1746), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5947), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2736), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6372), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6373), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6383), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4862), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4862), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2301), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2302), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2312), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2312), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2530), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7692), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2737), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2714), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2925), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(713), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(79), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6404), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7984), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8034), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5142), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5148), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5633), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7556), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2497), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5241), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2498), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1122), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5578), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7610), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(996), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2931), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3572), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2715), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5501), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6417), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4006), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5407), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5580), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1462), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1462), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1633), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1556), + [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2277), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1665), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7795), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1734), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6762), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1969), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6371), + [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6184), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7791), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6113), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 149), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 149), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(718), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6905), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8001), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5232), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5354), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6333), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6917), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(996), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3771), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5467), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5580), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7774), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2431), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6909), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6307), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6153), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6404), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8034), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5142), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5241), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7610), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(996), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4006), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5407), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5580), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2277), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7795), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6762), + [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6371), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7764), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5927), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7912), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7696), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7696), + [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(105), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6649), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8058), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), + [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(42), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7934), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5998), + [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5998), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6876), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6346), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1902), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6899), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1668), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(179), + [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8053), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5927), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7912), + [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7696), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7696), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(105), + [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6600), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8058), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(32), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7945), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5998), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5998), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6876), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6346), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1902), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6899), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1668), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(175), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 136), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 136), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 135), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 135), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6118), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT(2832), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6115), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 215), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 215), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(381), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 215), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 215), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6104), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 240), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 240), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 240), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 240), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 150), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 150), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 153), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 153), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 150), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 150), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 121), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 121), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6114), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6105), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 174), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 174), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7826), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 120), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 120), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 240), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 240), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 130), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 130), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 153), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 153), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 150), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 150), + [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 215), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 215), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1618), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1649), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1695), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(703), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(52), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6633), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1616), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1607), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(18), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5558), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5559), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1265), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1265), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1327), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1272), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1719), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7876), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1677), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6477), + [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1954), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6246), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6026), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7674), + [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7674), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1702), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1618), + [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1649), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1695), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(3048), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(703), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(52), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6633), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1616), + [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1607), + [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(18), + [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5558), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5559), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1265), + [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1265), + [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1327), + [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1272), + [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1944), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1719), + [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7876), + [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1677), + [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6477), + [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1954), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6246), + [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6026), + [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7674), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7674), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1702), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8026), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1775), + [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1725), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1852), + [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(714), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(45), + [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6568), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1807), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(12), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5493), + [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5494), + [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1287), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1287), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1408), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1308), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(2028), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1950), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7812), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1728), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6885), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(2042), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6227), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5989), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1827), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(738), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(691), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6112), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6415), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6806), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7337), + [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(724), + [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(33), + [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6773), + [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7), + [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5486), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(32), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5487), + [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7945), + [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5406), + [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5406), + [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5650), + [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5515), + [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3122), + [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3054), + [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8026), + [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6390), + [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6776), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5801), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6224), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6032), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(705), + [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7667), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7667), + [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3180), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6111), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6848), + [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6461), + [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6480), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(3228), + [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6629), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7566), + [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5505), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5506), + [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5422), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5422), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5622), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5513), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), + [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), + [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7774), + [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6785), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6909), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), + [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7674), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7674), + [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1991), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7942), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1235), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1235), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), + [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7791), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [4018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), + [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1253), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6021), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6062), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5997), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7840), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5993), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7921), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3201), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3196), + [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3193), + [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(1236), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(58), + [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(6645), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(182), + [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(5496), + [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(5499), + [4650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2685), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2685), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2797), + [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2772), + [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3248), + [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3212), + [4668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7910), + [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3213), + [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(6601), + [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3297), + [4680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7667), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7667), + [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3312), + [4689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6100), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6091), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6092), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6036), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 143), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 143), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6046), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 143), + [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 143), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 159), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 159), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [5196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5986), + [5199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6150), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2512), + [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 159), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 159), + [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6068), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [5355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), SHIFT(2512), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), SHIFT(2512), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(2512), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), SHIFT(2512), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [5493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6172), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(7695), + [5583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(7695), + [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(7976), + [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(7976), + [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(5998), + [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(6876), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(6346), + [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(6776), + [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(5801), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [5671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6116), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7912), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6109), + [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6199), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6097), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2844), + [5741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6102), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), + [5776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2819), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), + [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2984), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6117), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [5940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 201), + [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 201), + [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3045), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6110), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3048), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [6074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6103), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3228), + [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 203), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 203), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 203), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 203), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 10, 233), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 10, 233), + [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 233), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 233), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 10, 203), + [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 10, 203), + [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 203), + [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 203), + [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 10, 233), + [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 10, 233), + [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 233), + [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 233), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), + [6232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), + [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 197), + [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 197), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 199), + [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 199), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 231), + [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 231), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 201), + [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 201), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), + [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [6312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6074), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5566), + [6426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5454), + [6429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5457), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6099), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7809), + [6583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3662), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6010), + [6651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6108), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [6678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6095), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7901), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [7185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [7190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4305), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), + [7213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6098), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [7268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6096), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [7353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [7391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 119), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [7425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 119), + [7427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5144), + [7430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5456), + [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7929), + [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7646), + [7441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7807), + [7444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7905), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [7465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [7475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6107), + [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [7488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6080), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [7495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), + [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 128), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [7511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6054), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 226), + [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 128), + [7520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), SHIFT(738), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [7533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(738), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [7540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(738), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 128), + [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 128), SHIFT(738), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [7646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(738), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4693), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 10, 73), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(410), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 165), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [7745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 165), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 118), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [7777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 118), + [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 10, 4), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(738), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 36), + [7790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 37), + [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [7834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(738), + [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [7841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(284), + [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(456), + [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(419), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(419), + [7863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [7865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(738), + [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(738), + [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 155), SHIFT(738), + [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 155), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [7886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(6183), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [7891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(738), + [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [7896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(738), + [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [7919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(738), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 10, 73), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(6200), + [7949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6106), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 164), + [7954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 164), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 155), SHIFT(738), + [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 155), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [7971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 10, 36), + [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 234), + [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 234), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [7979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(738), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 36), + [7990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 10, 4), + [7996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 204), + [7998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 204), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 37), + [8002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 10, 73), + [8004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(277), + [8007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(286), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 10, 37), + [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(738), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [8023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(738), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [8030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(292), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 10, 4), + [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), SHIFT(738), + [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), SHIFT(738), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [8055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(738), + [8058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [8082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 132), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 132), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 119), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 119), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [8144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 126), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [8170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [8196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [8228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [8244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 165), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 165), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [8262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 118), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 118), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 162), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [8306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), + [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 263), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), + [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 162), + [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 224), + [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 165), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [8362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 165), + [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 126), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 273), + [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), + [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), + [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), + [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), + [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [8426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), + [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [8450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [8460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 271), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 118), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [8472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 118), + [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 119), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [8480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 119), + [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), + [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), + [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 264), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 248), + [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), + [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), + [8500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), + [8506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 208), + [8508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 208), + [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 210), + [8512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 210), + [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [8516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), + [8522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), + [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5456), + [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 163), + [8539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 163), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), + [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), + [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 238), + [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 238), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), + [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), + [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 250), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), + [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 165), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [8613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 165), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 140), + [8639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 140), + [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 118), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [8645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 118), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 119), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [8675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 119), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 127), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 59), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [8707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 59), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 127), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 62), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [8735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 62), + [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 117), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [8741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 117), + [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [8757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [8759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5679), + [8762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5647), + [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7477), + [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [8913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5791), + [8916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), + [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [8923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [8933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [8973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6134), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [8992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [8994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 59), + [8998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 59), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 117), + [9010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 117), + [9012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [9014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), + [9016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 118), + [9018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 118), + [9020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 62), + [9022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 62), + [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 119), + [9026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 119), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [9036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [9038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), + [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, 0, 165), + [9042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 7, 0, 165), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [9082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [9124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5962), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [9167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6145), + [9170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6139), + [9173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6133), + [9176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5965), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [9199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [9205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 237), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [9217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(5908), + [9220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), + [9222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(6433), + [9225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(4863), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [9232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6121), + [9235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6121), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [9268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 178), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [9302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6088), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [9307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [9313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6084), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7575), + [9324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6324), + [9327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6305), + [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [9352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [9354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [9396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [9504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 255), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [9518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5976), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [9595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [9773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5946), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [9844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(97), + [9847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6896), + [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [9956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), + [9959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), + [9962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(92), + [9965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7226), + [9968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [9986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [9992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 237), + [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), + [10026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 255), + [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [10052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), + [10066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 178), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [10104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [10122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [10124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [10126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [10148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), + [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [10172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [10178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 47), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [10182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 235), + [10184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6094), + [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [10189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 48), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [10207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [10211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [10263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [10279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [10281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [10291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [10293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [10329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [10377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [10387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [10443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [10461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [10469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [10475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [10479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [10493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [10501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [10509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 227), + [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [10629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [10697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 214), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [10703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 253), + [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [10707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [10713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 137), + [10715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), + [10717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 139), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 141), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [10739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 144), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 145), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [10753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [10755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [10757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [10759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [10773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [10775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [10783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [10785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 160), + [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 5, 0, 0), + [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 166), + [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [10833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 176), + [10835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [10857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [10861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 145), + [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), + [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), + [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [10875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 194), + [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), + [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), + [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), + [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [10923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(7094), + [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [10938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [10944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [10966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 205), + [10968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), + [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [10972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 207), + [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [10984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 265), + [10986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [10996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), + [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), + [11010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 214), + [11012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), + [11014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [11016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [11018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [11020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [11022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [11024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [11026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), + [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [11042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 137), + [11044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 141), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [11052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [11070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [11078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [11080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [11086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [11118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [11120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [11128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [11186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7570), + [11189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [11191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [11209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [11215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [11231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), + [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [11335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 131), + [11337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 131), SHIFT_REPEAT(6971), + [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [11364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [11386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 202), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [11390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 10, 232), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [11406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 0, 232), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [11416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 202), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), + [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [11436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [11442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), + [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), + [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [11470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7954), + [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [11482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7298), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [11498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [11502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [11506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), + [11509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [11543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [11559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [11607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 152), SHIFT_REPEAT(722), + [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), + [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [11648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [11652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [11662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [11686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [11694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [11702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [11706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [11708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [11710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [11712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [11718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [11720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [11724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [11726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [11728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [11732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [11736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [11738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [11740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [11742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7796), + [11744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [11746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [11748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [11750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [11756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7881), + [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [11760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [11762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [11764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [11766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [11768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [11770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [11776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [11778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [11780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [11782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [11786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [11788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [11790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [11792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [11794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [11796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [11798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [11800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [11802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [11804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 10, 202), + [11806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [11808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [11810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [11812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [11814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7602), + [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [11821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [11829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [11839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [11841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [11843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [11845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [11847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [11849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 180), + [11851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 180), + [11853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [11855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7654), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [11862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [11864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [11866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [11870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [11876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [11878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [11882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [11884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [11890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 5, 10, 232), + [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 5, 0, 232), + [11894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [11896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [11898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [11900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [11902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [11904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [11906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7706), + [11909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [11911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [11917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [11919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [11921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [11923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [11925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [11927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 0, 202), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [11991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [12009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [12017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [12023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 212), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [12027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 239), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [12049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 239), + [12051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 213), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [12057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [12117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [12155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [12161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [12167] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [12187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [12195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [12249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [12253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [12281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [12289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [12323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [12329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 212), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [12343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [12353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [12367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [12389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [12397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 213), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [12409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; #ifdef __cplusplus diff --git a/test/corpus/expr/binary-expr.nu b/test/corpus/expr/binary-expr.nu index 7827859..39158aa 100644 --- a/test/corpus/expr/binary-expr.nu +++ b/test/corpus/expr/binary-expr.nu @@ -74,6 +74,8 @@ binary-expr-005-multiline-fail-without-parenthesis ---- + + ==== binary-expr-006-multiline ==== @@ -171,8 +173,8 @@ binary-expr-008-multiline-precedence (comment) (expr_binary (val_number) - (val_number) - (comment))) + (val_number))) + (comment) (val_number)))))))) ==== diff --git a/test/corpus/expr/identifier.nu b/test/corpus/expr/identifier.nu index 2408f19..e187495 100644 --- a/test/corpus/expr/identifier.nu +++ b/test/corpus/expr/identifier.nu @@ -140,6 +140,8 @@ null 7b nan # commands +1+1 +nottrue g++ 7z 7mss @@ -188,6 +190,14 @@ users (pipe_element (command (cmd_identifier)))) + (pipeline + (pipe_element + (command + (cmd_identifier)))) + (pipeline + (pipe_element + (command + (cmd_identifier)))) (pipeline (pipe_element (command @@ -199,6 +209,8 @@ cmd-id-003-path /usr/bin/env nu ~/foo.nu +./test +\\test\exe ----- @@ -208,6 +220,14 @@ cmd-id-003-path (command (cmd_identifier) (val_string)))) + (pipeline + (pipe_element + (command + (cmd_identifier)))) + (pipeline + (pipe_element + (command + (cmd_identifier)))) (pipeline (pipe_element (command diff --git a/test/corpus/pipe/env.nu b/test/corpus/pipe/env.nu new file mode 100644 index 0000000..b2e7e64 --- /dev/null +++ b/test/corpus/pipe/env.nu @@ -0,0 +1,133 @@ +==== +env-001-smoke-test +==== + +FOO=BAR $env.FOO +FOO=BAR $env.FOO == $env.FOO +FOO=BAR foo + +----- + +(nu_script + (pipeline + (pipe_element + (env_var + variable: (identifier) + value: (val_string)) + (val_variable + (cell_path + (path))))) + (pipeline + (pipe_element + (env_var + variable: (identifier) + value: (val_string)) + (expr_binary + lhs: (val_variable + (cell_path + (path))) + rhs: (val_variable + (cell_path + (path)))))) + (pipeline + (pipe_element + (env_var + variable: (identifier) + value: (val_string)) + (command + head: (cmd_identifier))))) + +==== +env-002-repeat +==== + +FOO=BAR BAR=FOO foo + +----- + +(nu_script + (pipeline + (pipe_element + (env_var + variable: (identifier) + value: (val_string)) + (env_var + variable: (identifier) + value: (val_string)) + (command + head: (cmd_identifier))))) + +==== +env-003-parenthesized +==== + +(FOO=BAR BAR=FOO foo) +( + FOO=BAR +# comment +BAR=FOO + +$env.FOO + == # comment + $env.FOO + ) + +----- + +(nu_script + (pipeline + (pipe_element + (expr_parenthesized + (pipeline + (pipe_element + (env_var + variable: (identifier) + value: (val_string)) + (env_var + variable: (identifier) + value: (val_string)) + (command + head: (cmd_identifier))))))) + (pipeline + (pipe_element + (expr_parenthesized + (pipeline + (pipe_element + (env_var + variable: (identifier) + value: (val_string)) + (comment) + (env_var + variable: (identifier) + value: (val_string)) + (expr_binary + lhs: (val_variable + (cell_path + (path))) + (comment) + rhs: (val_variable + (cell_path + (path)))))))))) + +==== +env-004-special-characters +==== + +_SHELL_=🤖 hello=42 hello=你好 foo + +----- + +(nu_script + (pipeline + (pipe_element + (env_var + variable: (identifier) + value: (val_string)) + (env_var + variable: (identifier) + value: (val_string)) + (env_var + variable: (identifier) + value: (val_string)) + (command + head: (cmd_identifier)))))